From 066e71a9a63ef3a30a505865c3706edfd930c149 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 21 Aug 2011 02:18:34 +0200 Subject: [PATCH 01/59] First RPM release for that package. --- .gitignore | 3 ++ airrac.spec | 115 ++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 119 insertions(+) create mode 100644 airrac.spec diff --git a/.gitignore b/.gitignore index e69de29..54885d3 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,3 @@ +/airrac-*.tar.* +/tmp/ + diff --git a/airrac.spec b/airrac.spec new file mode 100644 index 0000000..3d6483e --- /dev/null +++ b/airrac.spec @@ -0,0 +1,115 @@ +# +%global mydocs __tmp_docdir +# +Name: airrac +Version: 0.1.0 +Release: 2%{?dist} + +Summary: C++ Simulated Revenue Accounting (RAC) System Library + +Group: System Environment/Libraries +License: LGPLv2+ +URL: http://sourceforge.net/projects/%{name}/ +Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + +BuildRequires: cmake, python-devel +BuildRequires: boost-devel, soci-mysql-devel, zeromq-devel +BuildRequires: stdair-devel + + +%description +%{name} is a C++ library of airline revenue accounting classes and +functions, mainly targeting simulation purposes. + +%{name} makes an extensive use of existing open-source libraries for +increased functionality, speed and accuracy. In particular the +Boost (C++ Standard Extensions: http://www.boost.org) library is used. + +Install the %{name} package if you need a library of basic C++ objects +for Airline Revenue Accounting, mainly for simulation purpose. + +%package devel +Summary: Header files, libraries and development documentation for %{name} +Group: Development/Libraries +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: pkgconfig + +%description devel +This package contains the header files, static libraries and +development documentation for %{name}. If you would like to develop +programs using %{name}, you will need to install %{name}-devel. + +%package doc +Summary: HTML documentation for the %{name} library +Group: Documentation +%{?fedora:BuildArch: noarch} +BuildRequires: tex(latex) +BuildRequires: doxygen, ghostscript, graphviz + +%description doc +This package contains the documentation in the HTML format of the %{name} +library. The documentation is the same as at the %{name} web page. + + +%prep +%setup -q +# Fix some permissions and formats +chmod -x AUTHORS ChangeLog COPYING NEWS README +find . -type f -name '*.[hc]pp' -exec chmod -x {} \; + + +%build +%cmake . +make %{?_smp_mflags} + +%install +rm -rf $RPM_BUILD_ROOT +make install DESTDIR=$RPM_BUILD_ROOT + +mkdir -p %{mydocs} +mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs} +rm -f %{mydocs}/html/installdox + +%check +ctest + +%clean +rm -rf $RPM_BUILD_ROOT + +%post -p /sbin/ldconfig + +%postun -p /sbin/ldconfig + + +%files +%defattr(-,root,root,-) +%doc AUTHORS ChangeLog COPYING NEWS README +%{_bindir}/%{name} +%{_libdir}/lib*.so.* +%{_mandir}/man1/%{name}.1.* + +%files devel +%defattr(-,root,root,-) +%{_includedir}/%{name} +%{_bindir}/%{name}-config +%{_libdir}/lib%{name}.so +%{_libdir}/pkgconfig/%{name}.pc +%{_datadir}/aclocal/%{name}.m4 +%dir %{_datadir}/%{name} +%{_datadir}/%{name}/CMake +%{_mandir}/man1/%{name}-config.1.* +%{_mandir}/man3/%{name}-library.3.* + +%files doc +%defattr(-,root,root,-) +%doc %{mydocs}/html +%doc COPYING + + +%changelog +* Fri Aug 19 2011 Denis Arnaud 0.1.0-2 +- Took into account the feedback from the package review (#728649) + +* Fri Aug 05 2011 Denis Arnaud 0.1.0-1 +- First package diff --git a/sources b/sources index e69de29..a27f82e 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +8f2e0e008b355f70c9ecee658675b85f airrac-0.1.0.tar.bz2 From e6a7547f480973d82b128f85ebb0eed8762c3252 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 21 Aug 2011 02:48:46 +0200 Subject: [PATCH 02/59] Upstream integration --- .gitignore | 1 + airrac.spec | 7 +++++-- sources | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/.gitignore b/.gitignore index 54885d3..87eeb99 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,4 @@ /airrac-*.tar.* /tmp/ +clog diff --git a/airrac.spec b/airrac.spec index 3d6483e..1fd912a 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,8 +2,8 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 0.1.0 -Release: 2%{?dist} +Version: 0.2.0 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -108,6 +108,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 20 2011 Denis Arnaud 0.2.0-1 +- Upstream integration + * Fri Aug 19 2011 Denis Arnaud 0.1.0-2 - Took into account the feedback from the package review (#728649) diff --git a/sources b/sources index a27f82e..fa86f49 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -8f2e0e008b355f70c9ecee658675b85f airrac-0.1.0.tar.bz2 +ac5644cb501887b6133350e0aa6758fe airrac-0.2.0.tar.bz2 From 2bb8d53fb1292a66c8dbdb36689c148b1154a83a Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 21 Aug 2011 02:50:42 +0200 Subject: [PATCH 03/59] Corrected the change-log comment. --- airrac.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 1fd912a..e88fd50 100644 --- a/airrac.spec +++ b/airrac.spec @@ -109,7 +109,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Sat Aug 20 2011 Denis Arnaud 0.2.0-1 -- Upstream integration +- Upstream update * Fri Aug 19 2011 Denis Arnaud 0.1.0-2 - Took into account the feedback from the package review (#728649) From f389aa6f4e4198961c4f8abcfd550c40baa9fcb6 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 21 Aug 2011 03:34:25 +0200 Subject: [PATCH 04/59] [Doc] Removed the need for Graphviz (and the class diagrams are no longer generated with it, as it seems to produce unstable RPM builds). --- airrac.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index e88fd50..d1f8e1e 100644 --- a/airrac.spec +++ b/airrac.spec @@ -45,7 +45,7 @@ Summary: HTML documentation for the %{name} library Group: Documentation %{?fedora:BuildArch: noarch} BuildRequires: tex(latex) -BuildRequires: doxygen, ghostscript, graphviz +BuildRequires: doxygen, ghostscript %description doc This package contains the documentation in the HTML format of the %{name} diff --git a/sources b/sources index fa86f49..61d6fb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -ac5644cb501887b6133350e0aa6758fe airrac-0.2.0.tar.bz2 +0e1232ad787cfa7ac73a038bffe7f170 airrac-0.2.0.tar.bz2 From 7fd7d9d5393df8d698766562d388e421a7b3a581 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 31 Aug 2011 17:21:43 +0300 Subject: [PATCH 05/59] Upstream update --- airrac.spec | 30 +++++++++++++++++------------- sources | 2 +- 2 files changed, 18 insertions(+), 14 deletions(-) diff --git a/airrac.spec b/airrac.spec index d1f8e1e..56ae9cb 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,7 +2,7 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 0.2.0 +Version: 0.1.2 Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -30,33 +30,32 @@ Install the %{name} package if you need a library of basic C++ objects for Airline Revenue Accounting, mainly for simulation purpose. %package devel -Summary: Header files, libraries and development documentation for %{name} +Summary: Header files, libraries and development helper tools for %{name} Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig %description devel -This package contains the header files, static libraries and -development documentation for %{name}. If you would like to develop +This package contains the header files, shared libraries and +development helper tools for %{name}. If you would like to develop programs using %{name}, you will need to install %{name}-devel. -%package doc +%package doc Summary: HTML documentation for the %{name} library Group: Documentation %{?fedora:BuildArch: noarch} BuildRequires: tex(latex) BuildRequires: doxygen, ghostscript -%description doc -This package contains the documentation in the HTML format of the %{name} -library. The documentation is the same as at the %{name} web page. +%description doc +This package contains HTML pages, as well as a PDF reference manual, +for %{name}. All that documentation is generated thanks to Doxygen +(http://doxygen.org). The content is the same as what can be browsed +online (http://%{name}.org). %prep %setup -q -# Fix some permissions and formats -chmod -x AUTHORS ChangeLog COPYING NEWS README -find . -type f -name '*.[hc]pp' -exec chmod -x {} \; %build @@ -86,7 +85,7 @@ rm -rf $RPM_BUILD_ROOT %defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README %{_bindir}/%{name} -%{_libdir}/lib*.so.* +%{_libdir}/lib%{name}.so.* %{_mandir}/man1/%{name}.1.* %files devel @@ -108,11 +107,16 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Sat Aug 20 2011 Denis Arnaud 0.2.0-1 +* Tue Aug 30 2011 Denis Arnaud 0.1.2-1 - Upstream update +* Sat Aug 20 2011 Denis Arnaud 0.1.1-1 +- Removed the need for Graphviz: the class diagrams are no longer + built with it + * Fri Aug 19 2011 Denis Arnaud 0.1.0-2 - Took into account the feedback from the package review (#728649) * Fri Aug 05 2011 Denis Arnaud 0.1.0-1 - First package + diff --git a/sources b/sources index 61d6fb4..b55b567 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0e1232ad787cfa7ac73a038bffe7f170 airrac-0.2.0.tar.bz2 +82be56b5612c606dc24ace4ac5e742e7 airrac-0.1.2.tar.bz2 From 39c67dcaa5b6172d23b717d9cd787b7fad1e1892 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 16 Oct 2011 02:52:29 +0200 Subject: [PATCH 06/59] Upstream update --- airrac.spec | 6 ++++-- sources | 2 +- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/airrac.spec b/airrac.spec index 56ae9cb..57abf80 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,7 +2,7 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 0.1.2 +Version: 0.2.0 Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Oct 15 2011 Denis Arnaud 0.2.0-1 +- Upstream update + * Tue Aug 30 2011 Denis Arnaud 0.1.2-1 - Upstream update @@ -119,4 +122,3 @@ rm -rf $RPM_BUILD_ROOT * Fri Aug 05 2011 Denis Arnaud 0.1.0-1 - First package - diff --git a/sources b/sources index b55b567..8bebbb4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -82be56b5612c606dc24ace4ac5e742e7 airrac-0.1.2.tar.bz2 +a0b04e7c87abe72c0f62c6cef843712f airrac-0.2.0.tar.bz2 From 41d550922b02c2011a63bc9814523c864593526f Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 16 Oct 2011 15:56:39 +0200 Subject: [PATCH 07/59] Rebuild for the new 0.43.0 version of the StdAir package --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 57abf80..561680a 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 0.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Oct 15 2011 Denis Arnaud 0.2.0-2 +- Rebuild for the new 0.43.0 version of the StdAir package + * Sat Oct 15 2011 Denis Arnaud 0.2.0-1 - Upstream update From d63c638c564a3b1d9fc7be02cd5f41d1cc6989e6 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 2 Nov 2011 23:30:58 +0100 Subject: [PATCH 08/59] Rebuilt for the new soci-3.1.0 and stdair-0.44.0 packages --- airrac.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 57abf80..d0c4d7c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 0.2.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Nov 02 2011 Denis Arnaud 0.2.0-2 +- Rebuilt for the new soci-3.1.0 and stdair-0.44.0 packages + * Sat Oct 15 2011 Denis Arnaud 0.2.0-1 - Upstream update @@ -122,3 +125,4 @@ rm -rf $RPM_BUILD_ROOT * Fri Aug 05 2011 Denis Arnaud 0.1.0-1 - First package + From fc1a12b880025c4ab5ad2d0dbc9c5f38b4e27645 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 2 Nov 2011 23:53:02 +0100 Subject: [PATCH 09/59] Upstream update --- airrac.spec | 11 +++++------ sources | 2 +- 2 files changed, 6 insertions(+), 7 deletions(-) diff --git a/airrac.spec b/airrac.spec index 8173a82..13ecc08 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,8 +2,8 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 0.2.0 -Release: 3%{?dist} +Version: 0.2.1 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,12 +107,12 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Nov 02 2011 Denis Arnaud 0.2.1-1 +- Upstream update + * Wed Nov 02 2011 Denis Arnaud 0.2.0-3 - Rebuilt for the new soci-3.1.0 and stdair-0.44.0 packages -* Sat Oct 15 2011 Denis Arnaud 0.2.0-2 -- Rebuild for the new 0.43.0 version of the StdAir package - * Sat Oct 15 2011 Denis Arnaud 0.2.0-1 - Upstream update @@ -128,4 +128,3 @@ rm -rf $RPM_BUILD_ROOT * Fri Aug 05 2011 Denis Arnaud 0.1.0-1 - First package - diff --git a/sources b/sources index 8bebbb4..76587e3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -a0b04e7c87abe72c0f62c6cef843712f airrac-0.2.0.tar.bz2 +0a31f82273498af37cdce445163ffd48 airrac-0.2.1.tar.bz2 From 6175f76a90f9abb9bc381d3ea2d6cf7d295ac406 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 20 Nov 2011 17:42:48 +0100 Subject: [PATCH 10/59] Rebuild for the new Boost-1.48.0 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 13ecc08..efc3732 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 0.2.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Nov 20 2011 Denis Arnaud 0.2.1-2 +- Rebuild for the new Boost-1.48.0 + * Wed Nov 02 2011 Denis Arnaud 0.2.1-1 - Upstream update From 581d04b99eeb3804cba83e470f1228fb5e0af205 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 5 Dec 2011 12:24:44 +0100 Subject: [PATCH 11/59] Upstream update --- airrac.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/airrac.spec b/airrac.spec index efc3732..9a20edd 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,8 +2,8 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 0.2.1 -Release: 2%{?dist} +Version: 0.2.3 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Dec 05 2011 Denis Arnaud 0.2.3-1 +- Upstream update + * Sun Nov 20 2011 Denis Arnaud 0.2.1-2 - Rebuild for the new Boost-1.48.0 diff --git a/sources b/sources index 76587e3..c2bc4f2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -0a31f82273498af37cdce445163ffd48 airrac-0.2.1.tar.bz2 +e12f959a867053124d5e359c1cb09c34 airrac-0.2.3.tar.bz2 From 1f2aec9b6fbee3d1f74d8afcb2eb6c3e557d0c35 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Thu, 12 Jan 2012 15:06:26 -0600 Subject: [PATCH 12/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 9a20edd..885ff2c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 0.2.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jan 12 2012 Fedora Release Engineering - 0.2.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + * Mon Dec 05 2011 Denis Arnaud 0.2.3-1 - Upstream update From df9e139b3ce1be9538e6c10fa85d5eea07d1c05d Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 28 Feb 2012 11:41:12 -0600 Subject: [PATCH 13/59] - Rebuilt for c++ ABI breakage --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 885ff2c..2420f47 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 0.2.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Feb 28 2012 Fedora Release Engineering - 0.2.3-3 +- Rebuilt for c++ ABI breakage + * Thu Jan 12 2012 Fedora Release Engineering - 0.2.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild From 9b288c7bc8023aec1ef3f800caf04f669901daa3 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 18 Jul 2012 10:43:14 -0500 Subject: [PATCH 14/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 2420f47..ee542b3 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 0.2.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 18 2012 Fedora Release Engineering - 0.2.3-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + * Tue Feb 28 2012 Fedora Release Engineering - 0.2.3-3 - Rebuilt for c++ ABI breakage From a8403633b5369c499a15f82202f95194dae4a15f Mon Sep 17 00:00:00 2001 From: Kevin Fenzi Date: Sun, 12 Aug 2012 12:43:57 -0600 Subject: [PATCH 15/59] Rebuild for new boost --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index ee542b3..9d3fc9a 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 0.2.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 12 2012 Kevin Fenzi - 0.2.3-5 +- Rebuild for new boost + * Wed Jul 18 2012 Fedora Release Engineering - 0.2.3-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild From 3260fdf24f0a35bc52bbfdce98d59f179379b413 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Tue, 25 Dec 2012 15:21:27 +0100 Subject: [PATCH 16/59] Upstream update --- .gitignore | 10 +++++++--- airrac.spec | 9 ++++++--- sources | 2 +- 3 files changed, 14 insertions(+), 7 deletions(-) diff --git a/.gitignore b/.gitignore index 87eeb99..7032222 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,8 @@ /airrac-*.tar.* -/tmp/ -clog - +/airrac-*.src.rpm +/airrac-*.*.*/ +/clog +.build-*.*.log +/noarch/ +/x86_64/ +/i?86/ diff --git a/airrac.spec b/airrac.spec index 9d3fc9a..cee8cdd 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,8 +2,8 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 0.2.3 -Release: 5%{?dist} +Version: 1.00.0 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -14,7 +14,7 @@ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar. BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake, python-devel -BuildRequires: boost-devel, soci-mysql-devel, zeromq-devel +BuildRequires: boost-devel, soci-mysql-devel, zeromq-devel, readline-devel BuildRequires: stdair-devel @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Dec 25 2012 Denis Arnaud - 1.00.0-1 +- Upstream update + * Sun Aug 12 2012 Kevin Fenzi - 0.2.3-5 - Rebuild for new boost diff --git a/sources b/sources index c2bc4f2..db9c557 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -e12f959a867053124d5e359c1cb09c34 airrac-0.2.3.tar.bz2 +28be07a348ab9933837c765568e5f263 airrac-1.00.0.tar.bz2 From dbab0e4a4fb00fb6f898144e2b6b323e0266285c Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 9 Feb 2013 22:46:49 +0100 Subject: [PATCH 17/59] Rebuild for Boost-1.53.0 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index cee8cdd..e39fddf 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Feb 09 2013 Denis Arnaud - 1.00.0-2 +- Rebuild for Boost-1.53.0 + * Tue Dec 25 2012 Denis Arnaud - 1.00.0-1 - Upstream update From ff01bdb0a7cb50d9dc2f174fe7efa973f8986c77 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 10 Feb 2013 02:37:44 +0100 Subject: [PATCH 18/59] Rebuild for Boost-1.53.0 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index e39fddf..f310ad0 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Feb 10 2013 Denis Arnaud - 1.00.0-3 +- Rebuild for Boost-1.53.0 + * Sat Feb 09 2013 Denis Arnaud - 1.00.0-2 - Rebuild for Boost-1.53.0 From 89f3bb2cdabdd1f8680f275f33df7533a7bb4222 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 22 May 2013 21:26:26 +0200 Subject: [PATCH 19/59] Rebuild for Soci-3.2.1 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index f310ad0..0a1ebd2 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed May 22 2013 Denis Arnaud - 1.00.0-4 +- Rebuild for Soci-3.2.1 + * Sun Feb 10 2013 Denis Arnaud - 1.00.0-3 - Rebuild for Boost-1.53.0 From cf6a6170618064b26adb723253976eaaf2d0a889 Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Sun, 28 Jul 2013 20:18:27 +0200 Subject: [PATCH 20/59] Rebuild for boost 1.54.0 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 0a1ebd2..48b2fbf 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 28 2013 Petr Machata - 1.00.0-5 +- Rebuild for boost 1.54.0 + * Wed May 22 2013 Denis Arnaud - 1.00.0-4 - Rebuild for Soci-3.2.1 From 8aa9b282bbe28aabfb7d18d77f290feefad70241 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 29 Jul 2013 22:30:00 +0300 Subject: [PATCH 21/59] Fixed the docdir issue, following the F20 System Wide Change --- airrac.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 48b2fbf..2a7856c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -70,6 +70,10 @@ mkdir -p %{mydocs} mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs} rm -f %{mydocs}/html/installdox +# Remove additional documentation files (those files are already available +# in the project top directory) +rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{NEWS,README,AUTHORS} + %check ctest @@ -107,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 29 2013 Denis Arnaud - 1.00.0-6 +- Fixed the docdir issue, following the F20 System Wide Change + * Sun Jul 28 2013 Petr Machata - 1.00.0-5 - Rebuild for boost 1.54.0 From 508e5baf7f360f0763885c2de0d81d29fc50d106 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 2 Aug 2013 19:28:24 -0500 Subject: [PATCH 22/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 2a7856c..95ea6f3 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 6%{?dist} +Release: 7%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 03 2013 Fedora Release Engineering - 1.00.0-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild + * Mon Jul 29 2013 Denis Arnaud - 1.00.0-6 - Fixed the docdir issue, following the F20 System Wide Change From 1a748d401b087544f68de3e9c54f50d3fdb6949c Mon Sep 17 00:00:00 2001 From: David Tardon Date: Fri, 23 May 2014 10:22:36 +0200 Subject: [PATCH 23/59] rebuild for boost 1.55.0 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 95ea6f3..4b60b68 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 7%{?dist} +Release: 8%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri May 23 2014 David Tardon - 1.00.0-8 +- rebuild for boost 1.55.0 + * Sat Aug 03 2013 Fedora Release Engineering - 1.00.0-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild From 19b29d36ea36499ee82228562a27bce4c3085659 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Fri, 6 Jun 2014 19:19:40 -0500 Subject: [PATCH 24/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 4b60b68..2d1aed1 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 8%{?dist} +Release: 9%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Jun 07 2014 Fedora Release Engineering - 1.00.0-9 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + * Fri May 23 2014 David Tardon - 1.00.0-8 - rebuild for boost 1.55.0 From 385be35f285e72afb84e50486d69316d2514281e Mon Sep 17 00:00:00 2001 From: Peter Robinson Date: Fri, 15 Aug 2014 20:11:51 +0000 Subject: [PATCH 25/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 2d1aed1..d0c0b9b 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 9%{?dist} +Release: 10%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Aug 15 2014 Fedora Release Engineering - 1.00.0-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + * Sat Jun 07 2014 Fedora Release Engineering - 1.00.0-9 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild From 0e1329f6450de62612f542d905775654d1e17ec9 Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Wed, 28 Jan 2015 00:28:07 +0100 Subject: [PATCH 26/59] Rebuild for boost 1.57.0 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index d0c0b9b..580c193 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 10%{?dist} +Release: 11%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -111,6 +111,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jan 27 2015 Petr Machata - 1.00.0-11 +- Rebuild for boost 1.57.0 + * Fri Aug 15 2014 Fedora Release Engineering - 1.00.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild From 1ef15ee0628021840b7a48170347fda3edb064b6 Mon Sep 17 00:00:00 2001 From: Petr Machata Date: Wed, 28 Jan 2015 16:54:12 +0100 Subject: [PATCH 27/59] Cmake should look for zmq.h, not zmq.hpp --- airrac.spec | 3 +++ stdair-1.00.1-cmake.patch | 14 ++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 stdair-1.00.1-cmake.patch diff --git a/airrac.spec b/airrac.spec index 580c193..5801a99 100644 --- a/airrac.spec +++ b/airrac.spec @@ -11,6 +11,7 @@ Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +Patch0: stdair-1.00.1-cmake.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake, python-devel @@ -56,6 +57,7 @@ online (http://%{name}.org). %prep %setup -q +%patch0 -p1 %build @@ -113,6 +115,7 @@ rm -rf $RPM_BUILD_ROOT %changelog * Tue Jan 27 2015 Petr Machata - 1.00.0-11 - Rebuild for boost 1.57.0 +- Cmake should look for zmq.h, not zmq.hpp (stdair-1.00.1-cmake.patch) * Fri Aug 15 2014 Fedora Release Engineering - 1.00.0-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild diff --git a/stdair-1.00.1-cmake.patch b/stdair-1.00.1-cmake.patch new file mode 100644 index 0000000..66c5091 --- /dev/null +++ b/stdair-1.00.1-cmake.patch @@ -0,0 +1,14 @@ +diff -up stdair-1.00.1/config/FindZeroMQ.cmake\~ stdair-1.00.1/config/FindZeroMQ.cmake +--- stdair-1.00.1/config/FindZeroMQ.cmake~ 2012-12-22 11:44:25.000000000 +0100 ++++ stdair-1.00.1/config/FindZeroMQ.cmake 2015-01-28 10:12:48.786823055 +0100 +@@ -25,7 +25,7 @@ find_library (ZeroMQ_LIBRARIES + HINTS ${ZeroMQ_ROOT_DIR}/lib) + + find_path (ZeroMQ_INCLUDE_DIR +- NAMES zmq.hpp ++ NAMES zmq.h + HINTS ${ZeroMQ_ROOT_DIR}/include) + + # + +Diff finished. Wed Jan 28 10:13:03 2015 From 4505eb81a4e77049d5b460193cf572963f5bf0f3 Mon Sep 17 00:00:00 2001 From: Kalev Lember Date: Sat, 2 May 2015 23:27:12 +0200 Subject: [PATCH 28/59] Rebuilt for GCC 5 C++11 ABI change --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 5801a99..ec00356 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.0 -Release: 11%{?dist} +Release: 12%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -113,6 +113,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat May 02 2015 Kalev Lember - 1.00.0-12 +- Rebuilt for GCC 5 C++11 ABI change + * Tue Jan 27 2015 Petr Machata - 1.00.0-11 - Rebuild for boost 1.57.0 - Cmake should look for zmq.h, not zmq.hpp (stdair-1.00.1-cmake.patch) From a3189bd76e189b2c51c9fc87b1e2fe62251c6d3b Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 7 Jun 2015 19:51:59 +0200 Subject: [PATCH 29/59] Added tarballs/ to .gitignore --- .gitignore | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.gitignore b/.gitignore index 7032222..60eaf62 100644 --- a/.gitignore +++ b/.gitignore @@ -6,3 +6,5 @@ /noarch/ /x86_64/ /i?86/ +/tarballs/ + From ae3e4eebf2b454349d1f76d031eecfa8f8122221 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 7 Jun 2015 22:10:58 +0200 Subject: [PATCH 30/59] Removed the dependency on ZeroMQ (only AirInv is dependent on it, not StdAir) --- airrac.spec | 14 ++++++++------ sources | 2 +- 2 files changed, 9 insertions(+), 7 deletions(-) diff --git a/airrac.spec b/airrac.spec index ec00356..b37fd93 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,8 +2,8 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 1.00.0 -Release: 12%{?dist} +Version: 1.00.1 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -11,11 +11,11 @@ Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 -Patch0: stdair-1.00.1-cmake.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake, python-devel -BuildRequires: boost-devel, soci-mysql-devel, zeromq-devel, readline-devel +BuildRequires: boost-devel, soci-mysql-devel, soci-sqlite3-devel +BuildRequires: readline-devel BuildRequires: stdair-devel @@ -57,7 +57,6 @@ online (http://%{name}.org). %prep %setup -q -%patch0 -p1 %build @@ -69,7 +68,7 @@ rm -rf $RPM_BUILD_ROOT make install DESTDIR=$RPM_BUILD_ROOT mkdir -p %{mydocs} -mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs} +mv $RPM_BUILD_ROOT%{_docdir}/%{name}/html %{mydocs} rm -f %{mydocs}/html/installdox # Remove additional documentation files (those files are already available @@ -113,6 +112,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jun 07 2015 Denis Arnaud - 1.00.1-1 +- Removed the dependency on ZeroMQ (only AirInv is dependent on it, not StdAir) + * Sat May 02 2015 Kalev Lember - 1.00.0-12 - Rebuilt for GCC 5 C++11 ABI change diff --git a/sources b/sources index db9c557..e80283c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -28be07a348ab9933837c765568e5f263 airrac-1.00.0.tar.bz2 +5abd241dfbd738d9f2fe9617c4047471 airrac-1.00.1.tar.bz2 From 62ef3a1d80fbfd1b6b9e4008cdb7c6fec592bda4 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 14 Jun 2015 15:00:54 +0200 Subject: [PATCH 31/59] The noarch clause for the -doc sub-package now also works for EPEL. --- airrac.spec | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index b37fd93..be0bf3b 100644 --- a/airrac.spec +++ b/airrac.spec @@ -44,7 +44,9 @@ programs using %{name}, you will need to install %{name}-devel. %package doc Summary: HTML documentation for the %{name} library Group: Documentation -%{?fedora:BuildArch: noarch} +%if 0%{?fedora} || 0%{?rhel} > 5 +BuildArch: noarch +%endif BuildRequires: tex(latex) BuildRequires: doxygen, ghostscript @@ -73,7 +75,7 @@ rm -f %{mydocs}/html/installdox # Remove additional documentation files (those files are already available # in the project top directory) -rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/{NEWS,README,AUTHORS} +rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} %check ctest From d6233b13e67a74e8ee50df7c4d75a90e29902c79 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:43:17 +0000 Subject: [PATCH 32/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index be0bf3b..e026249 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 1.00.1-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sun Jun 07 2015 Denis Arnaud - 1.00.1-1 - Removed the dependency on ZeroMQ (only AirInv is dependent on it, not StdAir) From 7eb6f55f9195d3a73589872ab2ae9dac9bff8bd9 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Wed, 22 Jul 2015 18:02:22 +0200 Subject: [PATCH 33/59] rebuild for Boost 1.58 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index e026249..14c46df 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2015 David Tardon - 1.00.1-3 +- rebuild for Boost 1.58 + * Tue Jun 16 2015 Fedora Release Engineering - 1.00.1-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From 3b609c53f1e9519fd399656e714128736381cf43 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 29 Jul 2015 11:56:27 -0500 Subject: [PATCH 34/59] - Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 14c46df..02c367d 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2015 Fedora Release Engineering - 1.00.1-4 +- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 + * Wed Jul 22 2015 David Tardon - 1.00.1-3 - rebuild for Boost 1.58 From f33995c1958ae23b30f6f2626a1a58945339c84f Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 29 Aug 2015 13:10:44 +0200 Subject: [PATCH 35/59] Mass rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 02c367d..8b51cdc 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -114,6 +114,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 29 2015 Denis Arnaud - 1.00.1-5 +- Mass rebuild + * Wed Jul 29 2015 Fedora Release Engineering - 1.00.1-4 - Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 From c818fb2ba0e05e2b182cfae74c340bdca9d8f8e5 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 27 Aug 2015 21:17:13 +0100 Subject: [PATCH 36/59] Patched and rebuilt for Boost 1.59 --- 0001-Fix-for-Boost-1.59.0-compatibility.patch | 38 +++++++++++++++++++ airrac.spec | 7 +++- 2 files changed, 44 insertions(+), 1 deletion(-) create mode 100644 0001-Fix-for-Boost-1.59.0-compatibility.patch diff --git a/0001-Fix-for-Boost-1.59.0-compatibility.patch b/0001-Fix-for-Boost-1.59.0-compatibility.patch new file mode 100644 index 0000000..198d805 --- /dev/null +++ b/0001-Fix-for-Boost-1.59.0-compatibility.patch @@ -0,0 +1,38 @@ +From dfb3407046ce37c1f4516d615c65eca94b680048 Mon Sep 17 00:00:00 2001 +From: Jonathan Wakely +Date: Sun, 30 Aug 2015 01:04:37 +0100 +Subject: [PATCH] Fix for Boost 1.59.0 compatibility. + +Boost.Test has major changes in 1.59.0 including renaming the +XML enumerator to OF_XML. +--- + test/airrac/YieldTestSuite.cpp | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/test/airrac/YieldTestSuite.cpp b/test/airrac/YieldTestSuite.cpp +index a0151e5..d08d35a 100644 +--- a/test/airrac/YieldTestSuite.cpp ++++ b/test/airrac/YieldTestSuite.cpp +@@ -14,6 +14,7 @@ + #define BOOST_TEST_MAIN + #define BOOST_TEST_MODULE YieldTestSuite + #include ++#include + // StdAir + #include + #include +@@ -36,7 +37,11 @@ struct UnitTestConfig { + /** Constructor. */ + UnitTestConfig() { + boost_utf::unit_test_log.set_stream (utfReportStream); ++#if BOOST_VERSION >= 105900 ++ boost_utf::unit_test_log.set_format (boost_utf::OF_XML); ++#else + boost_utf::unit_test_log.set_format (boost_utf::XML); ++#endif + boost_utf::unit_test_log.set_threshold_level (boost_utf::log_test_units); + //boost_utf::unit_test_log.set_threshold_level (boost_utf::log_successful_tests); + } +-- +2.4.3 + diff --git a/airrac.spec b/airrac.spec index 8b51cdc..5c717b1 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -11,6 +11,7 @@ Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 +Patch0: 0001-Fix-for-Boost-1.59.0-compatibility.patch BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake, python-devel @@ -59,6 +60,7 @@ online (http://%{name}.org). %prep %setup -q +%patch0 -p1 %build @@ -114,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 30 2015 Jonathan Wakely 1.00.1-6 +- Patched and rebuilt for Boost 1.59 + * Sat Aug 29 2015 Denis Arnaud - 1.00.1-5 - Mass rebuild From b893d1d0eb1a40dcb3fb9c3b921d51b89f89630d Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 18 Jan 2016 11:21:55 +0000 Subject: [PATCH 37/59] Rebuilt for Boost 1.60 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 5c717b1..5c5bd4a 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 6%{?dist} +Release: 7%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jan 18 2016 Jonathan Wakely - 1.00.1-7 +- Rebuilt for Boost 1.60 + * Sun Aug 30 2015 Jonathan Wakely 1.00.1-6 - Patched and rebuilt for Boost 1.59 From 73bf1f6d01741498a5412ac731d19bcd0b99cdd0 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 16:03:31 +0000 Subject: [PATCH 38/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 5c5bd4a..4812e51 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 7%{?dist} +Release: 8%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 1.00.1-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Mon Jan 18 2016 Jonathan Wakely - 1.00.1-7 - Rebuilt for Boost 1.60 From aa3a5a47591f0ef2ccf6b61c27a06da67480b2fd Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 12 Jan 2017 17:30:23 +0100 Subject: [PATCH 39/59] Rebuild for readline 7.x Signed-off-by: Igor Gnatenko --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 4812e51..42a6981 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 8%{?dist} +Release: 9%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jan 12 2017 Igor Gnatenko - 1.00.1-9 +- Rebuild for readline 7.x + * Wed Feb 03 2016 Fedora Release Engineering - 1.00.1-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 43156784fe5dceaa9f6e07d28cd1244f13cc2681 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:49:50 +0000 Subject: [PATCH 40/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 42a6981..29adddd 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 9%{?dist} +Release: 10%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.00.1-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Thu Jan 12 2017 Igor Gnatenko - 1.00.1-9 - Rebuild for readline 7.x From ee53b2efcb4e1ac5a13c5d669a853a8e3e8d487c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Sun, 23 Jul 2017 21:49:57 +0200 Subject: [PATCH 41/59] Rebuilt for Boost 1.64 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 29adddd..642e172 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 10%{?dist} +Release: 11%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Jul 23 2017 Björn Esser - 1.00.1-11 +- Rebuilt for Boost 1.64 + * Fri Feb 10 2017 Fedora Release Engineering - 1.00.1-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From e3c7ae9ce5f4701d76e0d5aa71a48b6f996d316c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:41:17 +0000 Subject: [PATCH 42/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 642e172..2b617b3 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 11%{?dist} +Release: 12%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.00.1-12 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Sun Jul 23 2017 Björn Esser - 1.00.1-11 - Rebuilt for Boost 1.64 From df3b46a62bc7287242c07de35cda69075af135c5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 17:27:37 +0000 Subject: [PATCH 43/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 2b617b3..eff4f83 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 12%{?dist} +Release: 13%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 1.00.1-13 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.00.1-12 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From dceb8ccc4022a5703850883ab241f32ecb6e68ac Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 22 Jan 2018 23:58:08 +0000 Subject: [PATCH 44/59] Rebuilt for Boost 1.66 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index eff4f83..f1c3b5b 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 13%{?dist} +Release: 14%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jan 22 2018 Jonathan Wakely - 1.00.1-14 +- Rebuilt for Boost 1.66 + * Wed Aug 02 2017 Fedora Release Engineering - 1.00.1-13 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From 7dd4223b3a760ee7579e4922f75d47482ea271dc Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 02:01:32 +0000 Subject: [PATCH 45/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index f1c3b5b..1819dc3 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 14%{?dist} +Release: 15%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -116,6 +116,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.00.1-15 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Mon Jan 22 2018 Jonathan Wakely - 1.00.1-14 - Rebuilt for Boost 1.66 From 1920959a815987ce99308c6864d0493a89486fa9 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:01:11 +0100 Subject: [PATCH 46/59] Remove BuildRoot definition None of currently supported distributions need that. It was needed last for EL5 which is EOL now Signed-off-by: Igor Gnatenko --- airrac.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 1819dc3..bdc76d1 100644 --- a/airrac.spec +++ b/airrac.spec @@ -12,7 +12,6 @@ License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Patch0: 0001-Fix-for-Boost-1.59.0-compatibility.patch -BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake, python-devel BuildRequires: boost-devel, soci-mysql-devel, soci-sqlite3-devel From a9adf31e248a9aa1f49bfbef75eb0211403216af Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 07:50:03 +0100 Subject: [PATCH 47/59] Remove %clean section None of currently supported distributions need that. Last one was EL5 which is EOL for a while. Signed-off-by: Igor Gnatenko --- airrac.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/airrac.spec b/airrac.spec index bdc76d1..7dc156e 100644 --- a/airrac.spec +++ b/airrac.spec @@ -81,9 +81,6 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} %check ctest -%clean -rm -rf $RPM_BUILD_ROOT - %post -p /sbin/ldconfig %postun -p /sbin/ldconfig From 49c63c8193fa76e0e98b997f83075dfb23eed514 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 10 May 2018 23:30:55 +0100 Subject: [PATCH 48/59] Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29 --- airrac.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 7dc156e..8223111 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 15%{?dist} +Release: 16%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -15,6 +15,7 @@ Patch0: 0001-Fix-for-Boost-1.59.0-compatibility.patch BuildRequires: cmake, python-devel BuildRequires: boost-devel, soci-mysql-devel, soci-sqlite3-devel +BuildRequires: boost-python2-devel BuildRequires: readline-devel BuildRequires: stdair-devel @@ -112,6 +113,9 @@ ctest %changelog +* Thu May 10 2018 Jonathan Wakely - 1.00.1-16 +- Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29 + * Wed Feb 07 2018 Fedora Release Engineering - 1.00.1-15 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From c86897526213a8f5987055d2fe4853f219422159 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:42 +0200 Subject: [PATCH 49/59] add BuildRequires: gcc-c++ Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- airrac.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/airrac.spec b/airrac.spec index 8223111..84316e3 100644 --- a/airrac.spec +++ b/airrac.spec @@ -13,6 +13,7 @@ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 Patch0: 0001-Fix-for-Boost-1.59.0-compatibility.patch +BuildRequires: gcc-c++ BuildRequires: cmake, python-devel BuildRequires: boost-devel, soci-mysql-devel, soci-sqlite3-devel BuildRequires: boost-python2-devel From 1ade817e3ac4fbebb18b7c7b946fb0c473a19b07 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 00:09:58 -0500 Subject: [PATCH 50/59] Remove needless use of %defattr --- airrac.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/airrac.spec b/airrac.spec index 84316e3..676120c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -89,14 +89,12 @@ ctest %files -%defattr(-,root,root,-) %doc AUTHORS ChangeLog COPYING NEWS README %{_bindir}/%{name} %{_libdir}/lib%{name}.so.* %{_mandir}/man1/%{name}.1.* %files devel -%defattr(-,root,root,-) %{_includedir}/%{name} %{_bindir}/%{name}-config %{_libdir}/lib%{name}.so @@ -108,7 +106,6 @@ ctest %{_mandir}/man3/%{name}-library.3.* %files doc -%defattr(-,root,root,-) %doc %{mydocs}/html %doc COPYING From b906161b682c929301285e1c925aa0df244abf81 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 20:04:54 +0000 Subject: [PATCH 51/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 676120c..6290b5c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.1 -Release: 16%{?dist} +Release: 17%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -111,6 +111,9 @@ ctest %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 1.00.1-17 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu May 10 2018 Jonathan Wakely - 1.00.1-16 - Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29 From 82842f0ad393a6f3989d8c32faeaa67cf6b3cc12 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Tue, 15 Jan 2019 22:35:29 +0100 Subject: [PATCH 52/59] Upstream update --- 0001-Fix-for-Boost-1.59.0-compatibility.patch | 38 ------------------- airrac.spec | 21 +++++----- sources | 2 +- 3 files changed, 12 insertions(+), 49 deletions(-) delete mode 100644 0001-Fix-for-Boost-1.59.0-compatibility.patch diff --git a/0001-Fix-for-Boost-1.59.0-compatibility.patch b/0001-Fix-for-Boost-1.59.0-compatibility.patch deleted file mode 100644 index 198d805..0000000 --- a/0001-Fix-for-Boost-1.59.0-compatibility.patch +++ /dev/null @@ -1,38 +0,0 @@ -From dfb3407046ce37c1f4516d615c65eca94b680048 Mon Sep 17 00:00:00 2001 -From: Jonathan Wakely -Date: Sun, 30 Aug 2015 01:04:37 +0100 -Subject: [PATCH] Fix for Boost 1.59.0 compatibility. - -Boost.Test has major changes in 1.59.0 including renaming the -XML enumerator to OF_XML. ---- - test/airrac/YieldTestSuite.cpp | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/test/airrac/YieldTestSuite.cpp b/test/airrac/YieldTestSuite.cpp -index a0151e5..d08d35a 100644 ---- a/test/airrac/YieldTestSuite.cpp -+++ b/test/airrac/YieldTestSuite.cpp -@@ -14,6 +14,7 @@ - #define BOOST_TEST_MAIN - #define BOOST_TEST_MODULE YieldTestSuite - #include -+#include - // StdAir - #include - #include -@@ -36,7 +37,11 @@ struct UnitTestConfig { - /** Constructor. */ - UnitTestConfig() { - boost_utf::unit_test_log.set_stream (utfReportStream); -+#if BOOST_VERSION >= 105900 -+ boost_utf::unit_test_log.set_format (boost_utf::OF_XML); -+#else - boost_utf::unit_test_log.set_format (boost_utf::XML); -+#endif - boost_utf::unit_test_log.set_threshold_level (boost_utf::log_test_units); - //boost_utf::unit_test_log.set_threshold_level (boost_utf::log_successful_tests); - } --- -2.4.3 - diff --git a/airrac.spec b/airrac.spec index 6290b5c..09ba5ed 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,21 +2,20 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 1.00.1 -Release: 17%{?dist} +Version: 1.00.2 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library Group: System Environment/Libraries License: LGPLv2+ -URL: http://sourceforge.net/projects/%{name}/ -Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2 -Patch0: 0001-Fix-for-Boost-1.59.0-compatibility.patch +URL: http://github.com/airsim/%{name} +Source0: https://github.com/airsim/%{name}/archive/%{name}-%{version}.tar.gz BuildRequires: gcc-c++ -BuildRequires: cmake, python-devel +BuildRequires: cmake, python3-devel BuildRequires: boost-devel, soci-mysql-devel, soci-sqlite3-devel -BuildRequires: boost-python2-devel +BuildRequires: boost-python3-devel BuildRequires: readline-devel BuildRequires: stdair-devel @@ -60,8 +59,7 @@ online (http://%{name}.org). %prep -%setup -q -%patch0 -p1 +%autosetup -n %{name}-%{name}-%{version} %build @@ -89,7 +87,7 @@ ctest %files -%doc AUTHORS ChangeLog COPYING NEWS README +%doc AUTHORS ChangeLog COPYING NEWS README.md %{_bindir}/%{name} %{_libdir}/lib%{name}.so.* %{_mandir}/man1/%{name}.1.* @@ -111,6 +109,9 @@ ctest %changelog +* Tue Jan 15 2019 Denis Arnaud - 1.00.2-1 +- Upstream update + * Thu Jul 12 2018 Fedora Release Engineering - 1.00.1-17 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index e80283c..72f1c7e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -5abd241dfbd738d9f2fe9617c4047471 airrac-1.00.1.tar.bz2 +SHA512 (airrac-1.00.2.tar.gz) = a096abdfa7cdc127e4633088d800b5b2c5d2b01f46314094b2d66e5caad37319f6b11cb99556099c8ccddee893a9a51fb9c143f52d50287acd86794cd937697e From 09d6726b993eee8b0ac4cf2e93fd26ee810500e3 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 17 Jan 2019 22:45:35 +0100 Subject: [PATCH 53/59] Fixed a typo in Python library directory --- airrac.spec | 33 +++++++++++++++------------------ sources | 2 +- stdair-1.00.1-cmake.patch | 14 -------------- 3 files changed, 16 insertions(+), 33 deletions(-) delete mode 100644 stdair-1.00.1-cmake.patch diff --git a/airrac.spec b/airrac.spec index 09ba5ed..a4ce2b0 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,19 +3,21 @@ # Name: airrac Version: 1.00.2 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library -Group: System Environment/Libraries License: LGPLv2+ URL: http://github.com/airsim/%{name} -Source0: https://github.com/airsim/%{name}/archive/%{name}-%{version}.tar.gz +Source0: %{url}/archive/%{name}-%{version}.tar.gz BuildRequires: gcc-c++ -BuildRequires: cmake, python3-devel -BuildRequires: boost-devel, soci-mysql-devel, soci-sqlite3-devel +BuildRequires: cmake +BuildRequires: python3-devel +BuildRequires: boost-devel BuildRequires: boost-python3-devel +BuildRequires: soci-mysql-devel +BuildRequires: soci-sqlite3-devel BuildRequires: readline-devel BuildRequires: stdair-devel @@ -33,7 +35,6 @@ for Airline Revenue Accounting, mainly for simulation purpose. %package devel Summary: Header files, libraries and development helper tools for %{name} -Group: Development/Libraries Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig @@ -44,12 +45,10 @@ programs using %{name}, you will need to install %{name}-devel. %package doc Summary: HTML documentation for the %{name} library -Group: Documentation -%if 0%{?fedora} || 0%{?rhel} > 5 BuildArch: noarch -%endif BuildRequires: tex(latex) -BuildRequires: doxygen, ghostscript +BuildRequires: doxygen +BuildRequires: ghostscript %description doc This package contains HTML pages, as well as a PDF reference manual, @@ -64,11 +63,10 @@ online (http://%{name}.org). %build %cmake . -make %{?_smp_mflags} +%make_build %install -rm -rf $RPM_BUILD_ROOT -make install DESTDIR=$RPM_BUILD_ROOT +%make_install mkdir -p %{mydocs} mv $RPM_BUILD_ROOT%{_docdir}/%{name}/html %{mydocs} @@ -76,15 +74,11 @@ rm -f %{mydocs}/html/installdox # Remove additional documentation files (those files are already available # in the project top directory) -rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} +rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %check ctest -%post -p /sbin/ldconfig - -%postun -p /sbin/ldconfig - %files %doc AUTHORS ChangeLog COPYING NEWS README.md @@ -109,6 +103,9 @@ ctest %changelog +* Thu Jan 17 2019 Denis Arnaud - 1.00.2-2 +- Fixed a typo in Python library directory + * Tue Jan 15 2019 Denis Arnaud - 1.00.2-1 - Upstream update diff --git a/sources b/sources index 72f1c7e..34451eb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.2.tar.gz) = a096abdfa7cdc127e4633088d800b5b2c5d2b01f46314094b2d66e5caad37319f6b11cb99556099c8ccddee893a9a51fb9c143f52d50287acd86794cd937697e +SHA512 (airrac-1.00.2.tar.gz) = a89cac2c52874f91590a3d4b80a551efade2df52fb5ea96e5184879723c106bd63c0c8c83f6a2ac69947df049ec7c9d10a93a0d17b58cf3d367d08eaaab46809 diff --git a/stdair-1.00.1-cmake.patch b/stdair-1.00.1-cmake.patch deleted file mode 100644 index 66c5091..0000000 --- a/stdair-1.00.1-cmake.patch +++ /dev/null @@ -1,14 +0,0 @@ -diff -up stdair-1.00.1/config/FindZeroMQ.cmake\~ stdair-1.00.1/config/FindZeroMQ.cmake ---- stdair-1.00.1/config/FindZeroMQ.cmake~ 2012-12-22 11:44:25.000000000 +0100 -+++ stdair-1.00.1/config/FindZeroMQ.cmake 2015-01-28 10:12:48.786823055 +0100 -@@ -25,7 +25,7 @@ find_library (ZeroMQ_LIBRARIES - HINTS ${ZeroMQ_ROOT_DIR}/lib) - - find_path (ZeroMQ_INCLUDE_DIR -- NAMES zmq.hpp -+ NAMES zmq.h - HINTS ${ZeroMQ_ROOT_DIR}/include) - - # - -Diff finished. Wed Jan 28 10:13:03 2015 From ab1ac8866febd0d8d4107be9b43e13893ae056f8 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 24 Jan 2019 20:41:34 +0000 Subject: [PATCH 54/59] Rebuilt for Boost 1.69 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index a4ce2b0..5f6b6f8 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.2 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ ctest %changelog +* Thu Jan 24 2019 Jonathan Wakely - 1.00.2-3 +- Rebuilt for Boost 1.69 + * Thu Jan 17 2019 Denis Arnaud - 1.00.2-2 - Fixed a typo in Python library directory From c47a355f13ea1cac5009db6a4340df5b50c17ffb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 13:06:43 +0000 Subject: [PATCH 55/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 5f6b6f8..0a1dd20 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.2 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ ctest %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.00.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Jan 24 2019 Jonathan Wakely - 1.00.2-3 - Rebuilt for Boost 1.69 From 835ae21dbfaa691fde0d214bff456c0a3ba92cd0 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 11 Jul 2019 20:38:52 +0200 Subject: [PATCH 56/59] CMake support files updated for Python 3.8 --- airrac.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/airrac.spec b/airrac.spec index 0a1dd20..e933d0c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,8 +2,8 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 1.00.2 -Release: 4%{?dist} +Version: 1.00.3 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ ctest %changelog +* Thu Jul 11 2019 Denis Arnaud - 1.00.3-1 +- CMake support files updated for Python 3.8 + * Thu Jan 31 2019 Fedora Release Engineering - 1.00.2-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/sources b/sources index 34451eb..2804f41 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.2.tar.gz) = a89cac2c52874f91590a3d4b80a551efade2df52fb5ea96e5184879723c106bd63c0c8c83f6a2ac69947df049ec7c9d10a93a0d17b58cf3d367d08eaaab46809 +SHA512 (airrac-1.00.3.tar.gz) = 165e5ad9c8d867b00830f051e7cc03a718243600999ccd287b70a46c16cb16c2c90f03002ef659e97ef59bf621329b516a235cc715da41b1e2764f0e81264cba From febba1df02b86124b770eab385de412ad4d56e85 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Fri, 12 Jul 2019 01:26:44 +0200 Subject: [PATCH 57/59] Explicit dependency on Python 3 --- airrac.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/airrac.spec b/airrac.spec index e933d0c..430ce2a 100644 --- a/airrac.spec +++ b/airrac.spec @@ -38,6 +38,9 @@ Summary: Header files, libraries and development helper tools for %{name} Requires: %{name}%{?_isa} = %{version}-%{release} Requires: pkgconfig +# The cmake files have Python version backed in them +Requires: (python(abi) = %{python3_version} if python3-devel) + %description devel This package contains the header files, shared libraries and development helper tools for %{name}. If you would like to develop From 423e62ab21b30738265c947ccba98fd086a02d03 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:41:20 +0000 Subject: [PATCH 58/59] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 430ce2a..cf96bfc 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -106,6 +106,9 @@ ctest %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 1.00.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jul 11 2019 Denis Arnaud - 1.00.3-1 - CMake support files updated for Python 3.8 From 1964fcd22ac69ecf8a008aad8363286ea58c7207 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 10:00:59 +0200 Subject: [PATCH 59/59] Rebuilt for Python 3.8 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index cf96bfc..0332526 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -106,6 +106,9 @@ ctest %changelog +* Mon Aug 19 2019 Miro Hrončok - 1.00.3-3 +- Rebuilt for Python 3.8 + * Wed Jul 24 2019 Fedora Release Engineering - 1.00.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild