Merge branch 'epel7' into epel8

This commit is contained in:
andreamanzi 2019-11-13 14:08:23 +01:00
commit 7d4158eb40
8 changed files with 515 additions and 21 deletions

View file

13
.gitignore vendored Normal file
View file

@ -0,0 +1,13 @@
activemq-cpp-library-3.2.1-src.tar.gz
/activemq-cpp-library-3.2.3-src.tar.gz
/activemq-cpp-library-3.2.4-src.tar.gz
/activemq-cpp-library-3.2.5-src.tar.gz
/activemq-cpp-library-3.3.0-src.tar.gz
/activemq-cpp-library-3.4.0-src.tar.gz
/activemq-cpp-library-3.4.1-src.tar.gz
/activemq-cpp-library-3.4.4-src.tar.gz
/activemq-cpp-library-3.7.1-src.tar.gz
/activemq-cpp-library-3.8.2-src.tar.gz
/activemq-cpp-library-3.8.3-src.tar.gz
/activemq-cpp-library-3.9.3-src.tar.bz2.asc
/activemq-cpp-library-3.9.3-src.tar.gz

View file

@ -1,21 +0,0 @@
# Makefile for source rpm: activemq-cpp
# $Id$
NAME := activemq-cpp
SPECFILE = $(firstword $(wildcard *.spec))
define find-makefile-common
for d in common ../common ../../common ; do if [ -f $$d/Makefile.common ] ; then if [ -f $$d/CVS/Root -a -w $$d/Makefile.common ] ; then cd $$d ; cvs -Q update ; fi ; echo "$$d/Makefile.common" ; break ; fi ; done
endef
MAKEFILE_COMMON := $(shell $(find-makefile-common))
ifeq ($(MAKEFILE_COMMON),)
# attept a checkout
define checkout-makefile-common
test -f CVS/Root && { cvs -Q -d $$(cat CVS/Root) checkout common && echo "common/Makefile.common" ; } || { echo "ERROR: I can't figure out how to checkout the 'common' module." ; exit -1 ; } >&2
endef
MAKEFILE_COMMON := $(shell $(checkout-makefile-common))
endif
include $(MAKEFILE_COMMON)

View file

@ -0,0 +1,177 @@
diff --git a/src/main/Makefile.am b/src/main/Makefile.am
index 5d117aa..9e71d92 100644
--- a/src/main/Makefile.am
+++ b/src/main/Makefile.am
@@ -385,20 +385,6 @@ cc_sources = \
decaf/internal/util/concurrent/Threading.cpp \
decaf/internal/util/concurrent/unix/Atomics.cpp \
decaf/internal/util/concurrent/unix/PlatformThread.cpp \
- decaf/internal/util/zip/adler32.c \
- decaf/internal/util/zip/crc32.c \
- decaf/internal/util/zip/deflate.c \
- decaf/internal/util/zip/gzclose.c \
- decaf/internal/util/zip/gzlib.c \
- decaf/internal/util/zip/gzread.c \
- decaf/internal/util/zip/gzwrite.c \
- decaf/internal/util/zip/infback.c \
- decaf/internal/util/zip/inffast.c \
- decaf/internal/util/zip/inflate.c \
- decaf/internal/util/zip/inftrees.c \
- decaf/internal/util/zip/trees.c \
- decaf/internal/util/zip/uncompr.c \
- decaf/internal/util/zip/zutil.c \
decaf/io/BlockingByteArrayInputStream.cpp \
decaf/io/BufferedInputStream.cpp \
decaf/io/BufferedOutputStream.cpp \
@@ -1042,17 +1028,6 @@ h_sources = \
decaf/internal/util/concurrent/Transferer.h \
decaf/internal/util/concurrent/unix/PlatformDefs.h \
decaf/internal/util/concurrent/windows/PlatformDefs.h \
- decaf/internal/util/zip/crc32.h \
- decaf/internal/util/zip/deflate.h \
- decaf/internal/util/zip/gzguts.h \
- decaf/internal/util/zip/inffast.h \
- decaf/internal/util/zip/inffixed.h \
- decaf/internal/util/zip/inflate.h \
- decaf/internal/util/zip/inftrees.h \
- decaf/internal/util/zip/trees.h \
- decaf/internal/util/zip/zconf.h \
- decaf/internal/util/zip/zlib.h \
- decaf/internal/util/zip/zutil.h \
decaf/io/BlockingByteArrayInputStream.h \
decaf/io/BufferedInputStream.h \
decaf/io/BufferedOutputStream.h \
@@ -1327,7 +1302,7 @@ libactivemq_cpp_la_SOURCES= $(h_sources) $(cc_sources)
libactivemq_cpp_la_CXXFLAGS= $(AMQ_CXXFLAGS)
libactivemq_cpp_la_CFLAGS= $(AMQ_CFLAGS)
libactivemq_cpp_la_LDFLAGS= -version-info $(ACTIVEMQ_LIBRARY_VERSION)
-libactivemq_cpp_la_LIBADD= $(AMQ_LIBS)
+libactivemq_cpp_la_LIBADD= $(AMQ_LIBS) -lz
##
## Packaging Info
diff --git a/src/main/Makefile.in b/src/main/Makefile.in
index a53e327..53e79c1 100644
--- a/src/main/Makefile.in
+++ b/src/main/Makefile.in
@@ -493,20 +493,6 @@ am__objects_2 = activemq/cmsutil/libactivemq_cpp_la-CachedConsumer.lo \
decaf/internal/util/concurrent/libactivemq_cpp_la-Threading.lo \
decaf/internal/util/concurrent/unix/libactivemq_cpp_la-Atomics.lo \
decaf/internal/util/concurrent/unix/libactivemq_cpp_la-PlatformThread.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-adler32.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-crc32.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-deflate.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-gzclose.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-gzlib.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-gzread.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-gzwrite.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-infback.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-inffast.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-inflate.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-inftrees.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-trees.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-uncompr.lo \
- decaf/internal/util/zip/libactivemq_cpp_la-zutil.lo \
decaf/io/libactivemq_cpp_la-BlockingByteArrayInputStream.lo \
decaf/io/libactivemq_cpp_la-BufferedInputStream.lo \
decaf/io/libactivemq_cpp_la-BufferedOutputStream.lo \
@@ -1346,20 +1332,6 @@ cc_sources = \
decaf/internal/util/concurrent/Threading.cpp \
decaf/internal/util/concurrent/unix/Atomics.cpp \
decaf/internal/util/concurrent/unix/PlatformThread.cpp \
- decaf/internal/util/zip/adler32.c \
- decaf/internal/util/zip/crc32.c \
- decaf/internal/util/zip/deflate.c \
- decaf/internal/util/zip/gzclose.c \
- decaf/internal/util/zip/gzlib.c \
- decaf/internal/util/zip/gzread.c \
- decaf/internal/util/zip/gzwrite.c \
- decaf/internal/util/zip/infback.c \
- decaf/internal/util/zip/inffast.c \
- decaf/internal/util/zip/inflate.c \
- decaf/internal/util/zip/inftrees.c \
- decaf/internal/util/zip/trees.c \
- decaf/internal/util/zip/uncompr.c \
- decaf/internal/util/zip/zutil.c \
decaf/io/BlockingByteArrayInputStream.cpp \
decaf/io/BufferedInputStream.cpp \
decaf/io/BufferedOutputStream.cpp \
@@ -2002,17 +1974,6 @@ h_sources = \
decaf/internal/util/concurrent/Transferer.h \
decaf/internal/util/concurrent/unix/PlatformDefs.h \
decaf/internal/util/concurrent/windows/PlatformDefs.h \
- decaf/internal/util/zip/crc32.h \
- decaf/internal/util/zip/deflate.h \
- decaf/internal/util/zip/gzguts.h \
- decaf/internal/util/zip/inffast.h \
- decaf/internal/util/zip/inffixed.h \
- decaf/internal/util/zip/inflate.h \
- decaf/internal/util/zip/inftrees.h \
- decaf/internal/util/zip/trees.h \
- decaf/internal/util/zip/zconf.h \
- decaf/internal/util/zip/zlib.h \
- decaf/internal/util/zip/zutil.h \
decaf/io/BlockingByteArrayInputStream.h \
decaf/io/BufferedInputStream.h \
decaf/io/BufferedOutputStream.h \
@@ -2282,7 +2243,7 @@ libactivemq_cpp_la_SOURCES = $(h_sources) $(cc_sources)
libactivemq_cpp_la_CXXFLAGS = $(AMQ_CXXFLAGS)
libactivemq_cpp_la_CFLAGS = $(AMQ_CFLAGS)
libactivemq_cpp_la_LDFLAGS = -version-info $(ACTIVEMQ_LIBRARY_VERSION)
-libactivemq_cpp_la_LIBADD = $(AMQ_LIBS)
+libactivemq_cpp_la_LIBADD = $(AMQ_LIBS) -lz
library_includedir = $(includedir)/$(ACTIVEMQ_LIBRARY_NAME)-$(ACTIVEMQ_VERSION)
nobase_library_include_HEADERS = $(h_sources)
all: all-am
diff --git a/src/main/decaf/util/zip/Adler32.cpp b/src/main/decaf/util/zip/Adler32.cpp
index 517fbb4..f1fcd3c 100644
--- a/src/main/decaf/util/zip/Adler32.cpp
+++ b/src/main/decaf/util/zip/Adler32.cpp
@@ -17,7 +17,7 @@
#include "Adler32.h"
-#include <decaf/internal/util/zip/zlib.h>
+#include <zlib.h>
using namespace decaf;
using namespace decaf::lang;
diff --git a/src/main/decaf/util/zip/CRC32.cpp b/src/main/decaf/util/zip/CRC32.cpp
index 5d3b308..8b100bc 100644
--- a/src/main/decaf/util/zip/CRC32.cpp
+++ b/src/main/decaf/util/zip/CRC32.cpp
@@ -17,7 +17,7 @@
#include "CRC32.h"
-#include <decaf/internal/util/zip/zlib.h>
+#include <zlib.h>
using namespace decaf;
using namespace decaf::lang;
diff --git a/src/main/decaf/util/zip/Deflater.cpp b/src/main/decaf/util/zip/Deflater.cpp
index 12f4184..be21808 100644
--- a/src/main/decaf/util/zip/Deflater.cpp
+++ b/src/main/decaf/util/zip/Deflater.cpp
@@ -20,7 +20,7 @@
#include <stdio.h>
#include <assert.h>
-#include <decaf/internal/util/zip/zlib.h>
+#include <zlib.h>
#include <decaf/lang/exceptions/RuntimeException.h>
using namespace decaf;
diff --git a/src/main/decaf/util/zip/Inflater.cpp b/src/main/decaf/util/zip/Inflater.cpp
index bb0923f..e0dde29 100644
--- a/src/main/decaf/util/zip/Inflater.cpp
+++ b/src/main/decaf/util/zip/Inflater.cpp
@@ -20,7 +20,7 @@
#include <stdio.h>
#include <assert.h>
-#include <decaf/internal/util/zip/zlib.h>
+#include <zlib.h>
#include <decaf/lang/exceptions/RuntimeException.h>

12
activemq-cpp-gcc47.patch Normal file
View file

@ -0,0 +1,12 @@
diff -uNr activemq-cpp-library-3.4.1.ORIG/src/main/decaf/util/AbstractQueue.h activemq-cpp-library-3.4.1/src/main/decaf/util/AbstractQueue.h
--- activemq-cpp-library-3.4.1.ORIG/src/main/decaf/util/AbstractQueue.h 2012-02-19 21:37:49.536000023 +0100
+++ activemq-cpp-library-3.4.1/src/main/decaf/util/AbstractQueue.h 2012-02-19 21:38:56.722000023 +0100
@@ -60,7 +60,7 @@
*/
virtual bool add( const E& value ) {
- if( offer( value ) ) {
+ if( this->offer( value ) ) {
return true;
}

View file

@ -0,0 +1,24 @@
diff -uNr activemq-cpp-2.2.6.ORIG/texmf.cnf activemq-cpp-2.2.6/texmf.cnf
--- activemq-cpp-2.2.6.ORIG/texmf.cnf 1970-01-01 01:00:00.000000000 +0100
+++ activemq-cpp-2.2.6/texmf.cnf 2009-11-07 20:47:00.466113909 +0100
@@ -0,0 +1,2 @@
+pool_size = 4000000
+
diff -uNr activemq-cpp-2.2.6.ORIG/doxygen-include.am activemq-cpp-2.2.6/doxygen-include.am
--- activemq-cpp-2.2.6.ORIG/doxygen-include.am 2009-01-23 14:56:26.000000000 +0100
+++ activemq-cpp-2.2.6/doxygen-include.am 2009-11-07 20:52:10.558509912 +0100
@@ -153,12 +153,12 @@
rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
$(DX_PDFLATEX) refman.tex; \
$(DX_MAKEINDEX) refman.idx; \
- $(DX_PDFLATEX) refman.tex; \
+ TEXMFCNF=.: $(DX_PDFLATEX) refman.tex; \
countdown=5; \
while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
refman.log > /dev/null 2>&1 \
&& test $$countdown -gt 0; do \
- $(DX_PDFLATEX) refman.tex; \
+ TEXMFCNF=.: $(DX_PDFLATEX) refman.tex; \
countdown=`expr $$countdown - 1`; \
done; \
mv refman.pdf ../@PACKAGE@.pdf

287
activemq-cpp.spec Normal file
View file

@ -0,0 +1,287 @@
%global with_docs 0
%global globalversion 3.9.3
%global globalrelease 3
Name: activemq-cpp
Version: %{globalversion}
Release: %{globalrelease}%{?dist}
Summary: C++ implementation of JMS-like messaging client
Group: Development/Libraries
License: ASL 2.0
URL: http://activemq.apache.org/cms/
Source0: http://www.apache.org/dist/activemq/activemq-cpp/%{globalversion}/activemq-cpp-library-%{globalversion}-src.tar.gz
Source1: http://www.apache.org/dist/activemq/activemq-cpp/3.8.3/activemq-cpp-library-3.8.3-src.tar.gz
Patch0: activemq-cpp-3.8.2-system-zlib.patch
# Some local texmf configuration to increase default pool_size.
Patch1: activemq-cpp-local-texmf.patch
BuildRoot: %{_tmppath}/%{name}-%{globalversion}-%{globalrelease}-root-%(%{__id_u} -n)
BuildRequires: openssl-devel
BuildRequires: zlib-devel
%if %{?with_docs}0
BuildRequires: doxygen
BuildRequires: graphviz
%if %{?fedora}%{!?fedora:0} >= 9 || %{?rhel}%{!?rhel:0} >= 6
BuildRequires: tex(latex)
%else
BuildRequires: tetex-latex
%endif
%endif
BuildRequires: apr-util-devel%{?_isa} >= 1.3
BuildRequires: cppunit-devel%{?_isa} >= 1.10.2
%if %{?fedora}%{!?fedora:0} >= 12 || %{?rhel}%{!?rhel:0} >= 6
BuildRequires: libuuid-devel%{?_isa}
%else
BuildRequires: e2fsprogs-devel%{?_isa}
%endif
%description
activemq-cpp is a JMS-like API for C++ for interfacing with Message
Brokers such as Apache ActiveMQ. C++ messaging service helps to make your
C++ client code much neater and easier to follow. To get a better feel for
CMS try the API Reference.
ActiveMQ-CPP is a client only library, a message broker such as Apache
ActiveMQ is still needed for your clients to communicate.
%package devel
Summary: C++ implementation header files for JMS-like messaging
Group: Development/Libraries
Requires: %{name} = %{globalversion}-%{globalrelease}%{?dist}
Requires: pkgconfig
%if %{?fedora}%{!?fedora:0} >= 12 || %{?rhel}%{!?rhel:0} >= 6
Requires: libuuid-devel%{?_isa}
%else
Requires: e2fsprogs-devel%{?_isa}
%endif
%description devel
activemq-cpp is a JMS-like API for C++ for interfacing with Message
Brokers such as Apache ActiveMQ. C++ messaging service helps to make
your C++ client code much neater and easier to follow. To get a better
feel for CMS try the API Reference. ActiveMQ-CPP is a client only
library, a message broker such as Apache ActiveMQ is still needed
for your clients to communicate.
%{name}-devel contains development header files.
%if %{?with_docs}0
%package doc
Summary: C++ implementation header files for JMS-like messaging
Group: Documentation
%if %{?fedora}%{!?fedora:0} >= 10 || %{?rhel}%{!?rhel:0} >= 6
BuildArch: noarch
%endif
%description doc
activemq-cpp is a JMS-like API for C++ for interfacing with Message
Brokers such as Apache ActiveMQ. C++ messaging service helps to make
your C++ client code much neater and easier to follow. To get a better
feel for CMS try the API Reference. ActiveMQ-CPP is a client only
library, a message broker such as Apache ActiveMQ is still needed
for your clients to communicate.
%{name}-doc contains api documentation.
%endif
%package -n activemq-cpp3.8
Version: 3.8.3
Release: %{globalrelease}%{?dist}
Summary: C++ implementation of JMS-like messaging client
%description -n activemq-cpp3.8
activemq-cpp is a JMS-like API for C++ for interfacing with Message
Brokers such as Apache ActiveMQ. C++ messaging service helps to make your
C++ client code much neater and easier to follow. To get a better feel for
CMS try the API Reference.
ActiveMQ-CPP is a client only library, a message broker such as Apache
ActiveMQ is still needed for your clients to communicate.
%prep
%setup -q -n activemq-cpp-library-3.9.3 -a 1
pushd activemq-cpp-library-3.8.3
%patch0 -p1
rm -r src/main/decaf/internal/util/zip
chmod 644 LICENSE.txt
chmod 644 src/main/activemq/transport/mock/MockTransport.cpp
popd
%patch0 -p1
rm -r src/main/decaf/internal/util/zip
%if %{?with_docs}0
%patch1 -p1
%endif
chmod 644 LICENSE.txt
chmod 644 src/main/activemq/transport/mock/MockTransport.cpp
%build
pushd activemq-cpp-library-3.8.3
%configure --disable-static
make %{?_smp_mflags}
popd
# Build pdf(30MB) rather than default html(400MB).
%if %{?with_docs}0
%configure --disable-static --disable-doxygen-html --enable-doxygen-pdf
%else
%configure --disable-static
%endif
make %{?_smp_mflags}
%if %{?with_docs}0
make %{?_smp_mflags} doxygen-run
cp -p texmf.cnf doc/latex/texmf.cnf
make %{?_smp_mflags} doxygen-pdf
%endif
%install
rm -rf $RPM_BUILD_ROOT
pushd activemq-cpp-library-3.8.3
make install DESTDIR=$RPM_BUILD_ROOT
rm $RPM_BUILD_ROOT/%{_libdir}/lib%{name}.la
rm $RPM_BUILD_ROOT/%{_bindir}/example
# Remove devel from compat.
rm $RPM_BUILD_ROOT/%{_bindir}/activemqcpp-config
rm -rf $RPM_BUILD_ROOT/%{_includedir}/activemq-cpp-3.8.3
rm $RPM_BUILD_ROOT/%{_libdir}/libactivemq-cpp.so
rm $RPM_BUILD_ROOT/%{_libdir}/pkgconfig/activemq-cpp.pc
popd
make install DESTDIR=$RPM_BUILD_ROOT
rm $RPM_BUILD_ROOT/%{_libdir}/lib%{name}.la
rm $RPM_BUILD_ROOT/%{_bindir}/example
%clean
rm -rf $RPM_BUILD_ROOT
%check
make %{?_smp_mflags} check
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%defattr(-,root,root,-)
%{_libdir}/lib%{name}.so.19*
%doc LICENSE.txt NOTICE.txt README.txt RELEASE_NOTES.txt
%files devel
%defattr(-,root,root,-)
%{_libdir}/lib%{name}.so
%{_includedir}/%{name}-%{globalversion}
%{_libdir}/pkgconfig/%{name}.pc
%{_bindir}/activemqcpp-config
%if %{?with_docs}0
%files doc
%defattr(-,root,root,-)
%doc doc/%{name}.pdf
%endif
%files -n activemq-cpp3.8
%{_libdir}/lib%{name}.so.18*
%doc LICENSE.txt
%changelog
* Fri Feb 17 2017 Steve Traylen <steve.traylen@cern.ch> - 3.9.3-3
- Correct inter dependecy.
* Wed Feb 15 2017 Steve Traylen <steve.traylen@cern.ch> - 3.9.3-3
- Upstream to 3.9.3
- Add activemqcpp-lib3.8 package to provide old version so.
* Wed Aug 27 2014 Steve Traylen <steve.traylen@cern.ch> - 3.8.4-1
- Upstream to 3.8.3
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-4
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.8.2-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
* Thu May 29 2014 Ville Skyttä <ville.skytta@iki.fi> - 3.8.2-2
- Patch to use system zlib instead of bundled one
* Thu Jan 23 2014 Steve Traylen <steve.traylen@cern.ch> - 3.8.2-1
- Upstream to 3.8.2
* Wed Sep 4 2013 Steve Traylen <steve.traylen@cern.ch> - 3.7.1-1
- Upstream to 3.7.1
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.4-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
* Wed Feb 13 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild
* Sun Sep 16 2012 Steve Traylen <steve.traylen@cern.ch> - 3.4.4-1
- Upstream to 3.4.4
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.1-3
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.1-2
- Rebuilt for c++ ABI breakage
* Sun Feb 12 2012 Steve Traylen <steve.traylen@cern.ch> - 3.4.1-1
- Upstream to 3.4.1
- Add patch for gcc47, AMQCPP-389
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.4.0-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
* Sun Jul 10 2011 Steve Traylen <steve.traylen@cern.ch> - 3.4.0-1
- Upstream to 3.4.0
* Mon Apr 18 2011 Steve Traylen <steve.traylen@cern.ch> - 3.3.0-1
- Upstream to 3.3.0
* Mon Mar 7 2011 Steve Traylen <steve.traylen@cern.ch> - 3.2.5-1
- autoconf step removed.
- Upstream to 3.2.5
* Mon Feb 07 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 3.2.4-2
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
* Sun Feb 6 2011 Steve Traylen <steve.traylen@cern.ch> - 3.2.4-1
- Upstream to 3.2.4
* Wed Nov 10 2010 Steve Traylen <steve.traylen@cern.ch> - 3.2.3-1
- Upstream to 3.2.3
* Thu Jul 22 2010 Steve Traylen <steve.traylen@cern.ch> - 3.2.1-1
- Upstream to 3.2.1
- Add BR of openssl-devel since library now supports ssl
connections.
* Sat Apr 3 2010 Steve Traylen <steve.traylen@cern.ch> - 3.1.2-1
- Upstream to 3.1.2
* Sat Jan 9 2010 Steve Traylen <steve.traylen@cern.ch> - 3.1.0-1
- Upstream to 3.1.0
* Fri Dec 11 2009 Steve Traylen <steve.traylen@cern.ch> - 3.0.1-1
- Upstream to 3.0.1
- Tar ball name change.
* Fri Dec 11 2009 Steve Traylen <steve.traylen@cern.ch> - 2.2.6-5
- Add libuuid-devel as Requires to -devel package.
* Sat Nov 14 2009 Steve Traylen <steve.traylen@cern.ch> - 2.2.6-4
- Remove patch to relocate headers from versioned directory.
- Add make smp options to make check.
* Fri Nov 6 2009 Steve Traylen <steve.traylen@cern.ch> - 2.2.6-3
- Relocate headers to non versioned directory with patch0
* Fri Nov 6 2009 Steve Traylen <steve.traylen@cern.ch> - 2.2.6-2
- Adapted to Fedora guidelines.
* Thu Feb 26 2009 Ricardo Rocha <ricardo.rocha@cern.ch> - 2.2.6-1
- First version of the spec file

View file

@ -0,0 +1,2 @@
SHA512 (activemq-cpp-library-3.8.3-src.tar.gz) = 204a4e484af5f7ec0615084c0d0ad272ebf89751d2bd4bcf8b56930c39cc7376534a3b284a7cfd6467bd8223a757961a696e2c92af2dc6cc08fe60144dfc250c
SHA512 (activemq-cpp-library-3.9.3-src.tar.gz) = 56efa04abd4bfb9f5df592326f1cdd3d1adfe1ba6e5310d73c72d89e9c64b0d1ab9bcfab3bd91f9ebc6446774e6cb65c038efe36987ff41b2d9d6a0ff81eea20