From 066e71a9a63ef3a30a505865c3706edfd930c149 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 21 Aug 2011 02:18:34 +0200 Subject: [PATCH 001/108] 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 002/108] 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 003/108] 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 004/108] [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 005/108] 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 006/108] 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 007/108] 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 008/108] 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 009/108] 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 010/108] 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 011/108] 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 012/108] - 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 013/108] - 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 014/108] - 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 015/108] 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 016/108] 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 017/108] 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 018/108] 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 019/108] 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 020/108] 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 021/108] 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 022/108] - 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 023/108] 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 024/108] - 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 025/108] - 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 026/108] 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 027/108] 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 028/108] 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 029/108] 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 030/108] 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 031/108] 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 032/108] - 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 033/108] 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 034/108] - 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 035/108] 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 036/108] 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 037/108] 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 038/108] - 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 039/108] 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 040/108] - 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 041/108] 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 042/108] - 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 043/108] - 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 044/108] 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 045/108] - 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 046/108] 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 047/108] 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 048/108] 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 049/108] 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 050/108] 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 051/108] - 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 052/108] 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 053/108] 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 054/108] 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 055/108] - 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 056/108] 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 057/108] 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 058/108] - 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 059/108] 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 From 21e8d0a8f55e1939ee269b801cc8be1fdf64a92f Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 4 Nov 2019 23:50:35 +0100 Subject: [PATCH 060/108] Rebuild for SOCI 4.0.0-rc1 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 0332526..e909e20 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -106,6 +106,9 @@ ctest %changelog +* Mon Nov 04 2019 Denis Arnaud - 1.00.3-4 +- Rebuild for SOCI 4.0.0-rc1 + * Mon Aug 19 2019 Miro Hrončok - 1.00.3-3 - Rebuilt for Python 3.8 From 615e46125983f71dac14d515c98d87edd7cfacf8 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Tue, 5 Nov 2019 11:30:35 +0100 Subject: [PATCH 061/108] Rebuild for SOCI 4.0.0-rc2 --- airrac.spec | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index e909e20..b7f6831 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -11,6 +11,10 @@ License: LGPLv2+ URL: http://github.com/airsim/%{name} Source0: %{url}/archive/%{name}-%{version}.tar.gz +# For some reason, as of November 2019, it does not compile on ARMv7hl +# See https://koji.fedoraproject.org/koji/taskinfo?taskID=38769808 +ExcludeArch: armv7hl + BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: python3-devel @@ -106,6 +110,9 @@ ctest %changelog +* Tue Nov 05 2019 Denis Arnaud - 1.00.3-5 +- Rebuild for SOCI 4.0.0-rc2 + * Mon Nov 04 2019 Denis Arnaud - 1.00.3-4 - Rebuild for SOCI 4.0.0-rc1 From 1fefc5f4a4bc99b144a3bab2f0cf04d88ec02903 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 11:21:02 +0000 Subject: [PATCH 062/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_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 b7f6831..471ed5e 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -110,6 +110,9 @@ ctest %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.00.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Tue Nov 05 2019 Denis Arnaud - 1.00.3-5 - Rebuild for SOCI 4.0.0-rc2 From ae59fa92c2ac29309866e61d808bc6c0f03b90bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 02:40:15 +0200 Subject: [PATCH 063/108] Rebuilt for Python 3.9 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 471ed5e..b66a896 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -110,6 +110,9 @@ ctest %changelog +* Tue May 26 2020 Miro Hrončok - 1.00.3-7 +- Rebuilt for Python 3.9 + * Tue Jan 28 2020 Fedora Release Engineering - 1.00.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild From 142f854d0cfc9c6d59b69f03712e04ed95dc7862 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 30 May 2020 17:34:11 +0200 Subject: [PATCH 064/108] Added missing dependency on epstopdf --- airrac.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/airrac.spec b/airrac.spec index b66a896..0e1ff01 100644 --- a/airrac.spec +++ b/airrac.spec @@ -54,6 +54,7 @@ programs using %{name}, you will need to install %{name}-devel. Summary: HTML documentation for the %{name} library BuildArch: noarch BuildRequires: tex(latex) +BuildRequires: texlive-epstopdf BuildRequires: doxygen BuildRequires: ghostscript From 8b0f7ed83255773879b7355488cab9b16e18900a Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 30 May 2020 17:47:50 +0200 Subject: [PATCH 065/108] Temporary attempt to fix the build issue by constraining to -j1 --- airrac.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/airrac.spec b/airrac.spec index 0e1ff01..ede78b4 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,4 +1,5 @@ # +%global _smp_mflags -j1 %global mydocs __tmp_docdir # Name: airrac From 0e821fd7df6115036b0a210bedac190db08a7816 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 31 May 2020 18:45:10 +0200 Subject: [PATCH 066/108] Upstream update --- airrac.spec | 13 +++++-------- sources | 2 +- 2 files changed, 6 insertions(+), 9 deletions(-) diff --git a/airrac.spec b/airrac.spec index ede78b4..b59153e 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,10 +1,9 @@ # -%global _smp_mflags -j1 %global mydocs __tmp_docdir # Name: airrac -Version: 1.00.3 -Release: 7%{?dist} +Version: 1.00.4 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -18,9 +17,7 @@ ExcludeArch: armv7hl BuildRequires: gcc-c++ BuildRequires: cmake -BuildRequires: python3-devel BuildRequires: boost-devel -BuildRequires: boost-python3-devel BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel BuildRequires: readline-devel @@ -43,9 +40,6 @@ 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 @@ -112,6 +106,9 @@ ctest %changelog +* Tue Nov 05 2019 Denis Arnaud - 1.00.4-1 +- Upstream update + * Tue May 26 2020 Miro Hrončok - 1.00.3-7 - Rebuilt for Python 3.9 diff --git a/sources b/sources index 2804f41..0d507a7 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.3.tar.gz) = 165e5ad9c8d867b00830f051e7cc03a718243600999ccd287b70a46c16cb16c2c90f03002ef659e97ef59bf621329b516a235cc715da41b1e2764f0e81264cba +SHA512 (airrac-1.00.4.tar.gz) = 701b5459910ad7ff8a7fbf6ee8ac7311c6c1ff1ac3bee8a49e1b2303e34152589a8ef1d893ecb8242557e18af05586ceef143fc1e4ba74085f68d5a8a61f020f From 0db5b3e97659312769c0fa84f1b3e831c90176f4 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 3 Jun 2020 20:38:08 +0200 Subject: [PATCH 067/108] Rebuilt for Boost 1.73 --- airrac.spec | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/airrac.spec b/airrac.spec index b59153e..3ac0757 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,12 +3,12 @@ # Name: airrac Version: 1.00.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library License: LGPLv2+ -URL: http://github.com/airsim/%{name} +URL: https://github.com/airsim/%{name} Source0: %{url}/archive/%{name}-%{version}.tar.gz # For some reason, as of November 2019, it does not compile on ARMv7hl @@ -106,7 +106,10 @@ ctest %changelog -* Tue Nov 05 2019 Denis Arnaud - 1.00.4-1 +* Wed Jun 03 2020 Denis Arnaud - 1.00.4-2 +- Rebuilt for Boost 1.73 + +* Sun May 31 2020 Denis Arnaud - 1.00.4-1 - Upstream update * Tue May 26 2020 Miro Hrončok - 1.00.3-7 From be08d4ffcf188f1d3f950d20baefe2be31f08108 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 6 Jun 2020 22:03:37 +0200 Subject: [PATCH 068/108] Rebuilt for SOCI 4.0.1.alpha2 --- airrac.spec | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/airrac.spec b/airrac.spec index 3ac0757..c23a7d7 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,7 +3,7 @@ # Name: airrac Version: 1.00.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -11,10 +11,6 @@ License: LGPLv2+ URL: https://github.com/airsim/%{name} Source0: %{url}/archive/%{name}-%{version}.tar.gz -# For some reason, as of November 2019, it does not compile on ARMv7hl -# See https://koji.fedoraproject.org/koji/taskinfo?taskID=38769808 -ExcludeArch: armv7hl - BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: boost-devel @@ -106,6 +102,9 @@ ctest %changelog +* Sat Jun 06 2020 Denis Arnaud - 1.00.4-3 +- Rebuilt for SOCI 4.0.1.alpha2 + * Wed Jun 03 2020 Denis Arnaud - 1.00.4-2 - Rebuilt for Boost 1.73 From 1998276a61ce5b542192883e6df794f77d5d13b8 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 5 Jul 2020 14:31:32 -0400 Subject: [PATCH 069/108] Update to new out-of-source build mechanism --- airrac.spec | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/airrac.spec b/airrac.spec index c23a7d7..a3c7a3d 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,3 +1,6 @@ +# Force out of source build +%undefine __cmake_in_source_build + # %global mydocs __tmp_docdir # @@ -57,15 +60,15 @@ online (http://%{name}.org). %prep -%autosetup -n %{name}-%{name}-%{version} +%autosetup -n %{name}-%{name}-%{version} %build -%cmake . -%make_build +%cmake +%cmake_build %install -%make_install +%cmake_install mkdir -p %{mydocs} mv $RPM_BUILD_ROOT%{_docdir}/%{name}/html %{mydocs} @@ -76,7 +79,7 @@ rm -f %{mydocs}/html/installdox rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %check -ctest +%ctest %files From 9aa562952b4411ead94cc98f5cfe845b680bd943 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 5 Jul 2020 14:32:03 -0400 Subject: [PATCH 070/108] Install license as license file --- airrac.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index a3c7a3d..90f5b30 100644 --- a/airrac.spec +++ b/airrac.spec @@ -83,7 +83,8 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %files -%doc AUTHORS ChangeLog COPYING NEWS README.md +%doc AUTHORS ChangeLog NEWS README.md +%license COPYING %{_bindir}/%{name} %{_libdir}/lib%{name}.so.* %{_mandir}/man1/%{name}.1.* @@ -101,7 +102,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %files doc %doc %{mydocs}/html -%doc COPYING +%license COPYING %changelog From 6c7fb0de55a18d5bed0a6ef505dbb75d6b65cf0c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 11:51:45 +0000 Subject: [PATCH 071/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_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 90f5b30..a3abf06 100644 --- a/airrac.spec +++ b/airrac.spec @@ -6,7 +6,7 @@ # Name: airrac Version: 1.00.4 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.00.4-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sat Jun 06 2020 Denis Arnaud - 1.00.4-3 - Rebuilt for SOCI 4.0.1.alpha2 From f9ad4297344d8574705b4d0f8b1e03690a81b436 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jul 2020 23:52:45 +0000 Subject: [PATCH 072/108] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airrac.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index a3abf06..ebd5c64 100644 --- a/airrac.spec +++ b/airrac.spec @@ -6,7 +6,7 @@ # Name: airrac Version: 1.00.4 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -106,6 +106,10 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Fri Jul 31 2020 Fedora Release Engineering - 1.00.4-5 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 1.00.4-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 748d02e2dd312df0afa37f9b16e2f7bcd407f403 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 10 Aug 2020 01:43:57 +0200 Subject: [PATCH 073/108] Removed the docdir work around (no longer needed) --- airrac.spec | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/airrac.spec b/airrac.spec index ebd5c64..aa6996d 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,8 +1,6 @@ # Force out of source build %undefine __cmake_in_source_build -# -%global mydocs __tmp_docdir # Name: airrac Version: 1.00.4 @@ -29,7 +27,7 @@ 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. +Boost (C++ Standard Extensions: https://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. @@ -70,9 +68,8 @@ online (http://%{name}.org). %install %cmake_install -mkdir -p %{mydocs} -mv $RPM_BUILD_ROOT%{_docdir}/%{name}/html %{mydocs} -rm -f %{mydocs}/html/installdox +# Remove the Doxygen installer +rm -f %{buildroot}%{_docdir}/%{name}/html/installdox # Remove additional documentation files (those files are already available # in the project top directory) @@ -101,7 +98,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %{_mandir}/man3/%{name}-library.3.* %files doc -%doc %{mydocs}/html +%doc %{_docdir}/%{name}/html %license COPYING From 464fd33c543a3d2fa2230e32c17f14aa523fdda6 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 22 Jan 2021 21:07:05 +0000 Subject: [PATCH 074/108] Rebuilt for Boost 1.75 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index aa6996d..8efd77e 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.4 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Fri Jan 22 2021 Jonathan Wakely - 1.00.4-6 +- Rebuilt for Boost 1.75 + * Fri Jul 31 2020 Fedora Release Engineering - 1.00.4-5 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 92a3b02ab71095185f4097540500c73f5856f738 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 25 Jan 2021 23:55:28 +0000 Subject: [PATCH 075/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_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 8efd77e..6552138 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.4 -Release: 6%{?dist} +Release: 7%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Jan 25 2021 Fedora Release Engineering - 1.00.4-7 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Fri Jan 22 2021 Jonathan Wakely - 1.00.4-6 - Rebuilt for Boost 1.75 From 65aece26a2cf900eae77f6b5886bf8b0413476df Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 12:27:29 +0000 Subject: [PATCH 076/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 612c28b786e103d3cb225d054e96fd91d4e6156d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 17:22:51 +0000 Subject: [PATCH 077/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_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 6552138..a9072b9 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.4 -Release: 7%{?dist} +Release: 8%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jul 21 2021 Fedora Release Engineering - 1.00.4-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Mon Jan 25 2021 Fedora Release Engineering - 1.00.4-7 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild From 4450135662cb25cc09ea822ed84be9ee717bf5e3 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Sat, 7 Aug 2021 02:44:37 +0100 Subject: [PATCH 078/108] Rebuilt for Boost 1.76 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index a9072b9..530127f 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.4 -Release: 8%{?dist} +Release: 9%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Sat Aug 07 2021 Jonathan Wakely - 1.00.4-9 +- Rebuilt for Boost 1.76 + * Wed Jul 21 2021 Fedora Release Engineering - 1.00.4-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From d48e61aeb4eebfa50b6c8fa0b0aa97f112c03335 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jan 2022 21:03:14 +0000 Subject: [PATCH 079/108] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_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 530127f..4104cec 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.4 -Release: 9%{?dist} +Release: 10%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jan 19 2022 Fedora Release Engineering - 1.00.4-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Sat Aug 07 2021 Jonathan Wakely - 1.00.4-9 - Rebuilt for Boost 1.76 From f9671c5cd19879bf527ffcd52cbe80c3bd943db2 Mon Sep 17 00:00:00 2001 From: Thomas Rodgers Date: Wed, 4 May 2022 11:37:27 +0200 Subject: [PATCH 080/108] Rebuilt for Boost 1.78 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 4104cec..955e6dc 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.4 -Release: 10%{?dist} +Release: 11%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed May 04 2022 Thomas Rodgers - 1.00.4-11 +- Rebuilt for Boost 1.78 + * Wed Jan 19 2022 Fedora Release Engineering - 1.00.4-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From acb18d4a8685568fb6e1729b0342035d3a79122f Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 10 Jul 2022 22:15:03 +0200 Subject: [PATCH 081/108] Upgraded to v1.00.6 --- airrac.spec | 199 +--------------------------------------------------- sources | 2 +- 2 files changed, 4 insertions(+), 197 deletions(-) diff --git a/airrac.spec b/airrac.spec index 955e6dc..290bafc 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,8 +3,8 @@ # Name: airrac -Version: 1.00.4 -Release: 11%{?dist} +Version: 1.00.6 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,197 +103,4 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog -* Wed May 04 2022 Thomas Rodgers - 1.00.4-11 -- Rebuilt for Boost 1.78 - -* Wed Jan 19 2022 Fedora Release Engineering - 1.00.4-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Sat Aug 07 2021 Jonathan Wakely - 1.00.4-9 -- Rebuilt for Boost 1.76 - -* Wed Jul 21 2021 Fedora Release Engineering - 1.00.4-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Mon Jan 25 2021 Fedora Release Engineering - 1.00.4-7 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Fri Jan 22 2021 Jonathan Wakely - 1.00.4-6 -- Rebuilt for Boost 1.75 - -* Fri Jul 31 2020 Fedora Release Engineering - 1.00.4-5 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 1.00.4-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Sat Jun 06 2020 Denis Arnaud - 1.00.4-3 -- Rebuilt for SOCI 4.0.1.alpha2 - -* Wed Jun 03 2020 Denis Arnaud - 1.00.4-2 -- Rebuilt for Boost 1.73 - -* Sun May 31 2020 Denis Arnaud - 1.00.4-1 -- Upstream update - -* Tue May 26 2020 Miro Hrončok - 1.00.3-7 -- Rebuilt for Python 3.9 - -* Tue Jan 28 2020 Fedora Release Engineering - 1.00.3-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Tue Nov 05 2019 Denis Arnaud - 1.00.3-5 -- Rebuild for SOCI 4.0.0-rc2 - -* Mon Nov 04 2019 Denis Arnaud - 1.00.3-4 -- Rebuild for SOCI 4.0.0-rc1 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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) - -* 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) - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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 - -* 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-1 -- Upstream update - -* 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 +%autochangelog diff --git a/sources b/sources index 0d507a7..b217a20 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.4.tar.gz) = 701b5459910ad7ff8a7fbf6ee8ac7311c6c1ff1ac3bee8a49e1b2303e34152589a8ef1d893ecb8242557e18af05586ceef143fc1e4ba74085f68d5a8a61f020f +SHA512 (airrac-1.00.6.tar.gz) = 0a9abf16f4ca88d72747014f299b8234e140b2ac359e898cb15aa216a3ea8f4371f8a1ce7e936bb203d78d15bb5681c0b205a75de685018260cc7111c10d9842 From c125e39bb4e60a24aec7458a01eac20bb070d3c2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 20 Jul 2022 20:34:25 +0000 Subject: [PATCH 082/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_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 290bafc..00ff0d2 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,4 +103,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jul 20 2022 Fedora Release Engineering - 1.00.6-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + %autochangelog From 5557811ff6d682573760677c2362f2ec3279ebbf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 18 Jan 2023 21:31:43 +0000 Subject: [PATCH 083/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_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 00ff0d2..41f87a6 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.6 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jan 18 2023 Fedora Release Engineering - 1.00.6-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Jul 20 2022 Fedora Release Engineering - 1.00.6-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 06a642c9ef0f80c1832fc73003506d3f01d145b4 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 20 Feb 2023 21:44:37 +0000 Subject: [PATCH 084/108] Rebuilt for Boost 1.81 --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 41f87a6..4915f4b 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.6 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Feb 20 2023 Jonathan Wakely - 1.00.6-4 +- Rebuilt for Boost 1.81 + * Wed Jan 18 2023 Fedora Release Engineering - 1.00.6-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From f310640119852dfe68e1e137fd8da8e92bb10aa8 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 1 May 2023 17:23:22 +0200 Subject: [PATCH 085/108] Upstream upgrade --- airrac.spec | 14 ++++++-------- sources | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/airrac.spec b/airrac.spec index 4915f4b..1fbba1e 100644 --- a/airrac.spec +++ b/airrac.spec @@ -3,8 +3,8 @@ # Name: airrac -Version: 1.00.6 -Release: 4%{?dist} +Version: 1.00.7 +Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,13 +103,11 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon May 01 2023 Denis Arnaud - 1.00.7-1 +- Upstream upgrade + * Mon Feb 20 2023 Jonathan Wakely - 1.00.6-4 - Rebuilt for Boost 1.81 -* Wed Jan 18 2023 Fedora Release Engineering - 1.00.6-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Wed Jul 20 2022 Fedora Release Engineering - 1.00.6-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - %autochangelog + diff --git a/sources b/sources index b217a20..edb211e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.6.tar.gz) = 0a9abf16f4ca88d72747014f299b8234e140b2ac359e898cb15aa216a3ea8f4371f8a1ce7e936bb203d78d15bb5681c0b205a75de685018260cc7111c10d9842 +SHA512 (airrac-1.00.7.tar.gz) = d4afd7bea4a81304d9e5eea89c633e698e21bda2d2480f0d2b2002673f468055331c316935e41b2ba958ccf64508a0443da932aa4a02fff318e8f6e70c7b3b18 From 98cdd7bd74f276ce3e9c42340d0645c2a35a73f5 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jul 2023 13:03:05 +0000 Subject: [PATCH 086/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_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 1fbba1e..23834a2 100644 --- a/airrac.spec +++ b/airrac.spec @@ -4,7 +4,7 @@ # Name: airrac Version: 1.00.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -103,6 +103,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jul 19 2023 Fedora Release Engineering - 1.00.7-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Mon May 01 2023 Denis Arnaud - 1.00.7-1 - Upstream upgrade From 4d596b688a3e9f9305b1adb003b8b10b2cf93432 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 13 Nov 2023 18:11:28 +0100 Subject: [PATCH 087/108] Modernized the spec file --- airrac.spec | 29 ++++++++--------------------- 1 file changed, 8 insertions(+), 21 deletions(-) diff --git a/airrac.spec b/airrac.spec index 23834a2..fdb1ae0 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,25 +1,21 @@ -# Force out of source build -%undefine __cmake_in_source_build - # Name: airrac Version: 1.00.7 -Release: 2%{?dist} +Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library -License: LGPLv2+ +License: LGPL-2.1-or-later URL: https://github.com/airsim/%{name} -Source0: %{url}/archive/%{name}-%{version}.tar.gz +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: boost-devel BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel -BuildRequires: readline-devel -BuildRequires: stdair-devel - +BuildRequires: pkgconfig(readline) +BuildRequires: pkgconfig(stdair) %description %{name} is a C++ library of airline revenue accounting classes and @@ -58,7 +54,7 @@ online (http://%{name}.org). %prep -%autosetup -n %{name}-%{name}-%{version} +%autosetup %build @@ -87,7 +83,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %{_mandir}/man1/%{name}.1.* %files devel -%{_includedir}/%{name} +%{_includedir}/%{name}/ %{_bindir}/%{name}-config %{_libdir}/lib%{name}.so %{_libdir}/pkgconfig/%{name}.pc @@ -98,19 +94,10 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %{_mandir}/man3/%{name}-library.3.* %files doc -%doc %{_docdir}/%{name}/html +%doc %{_docdir}/%{name}/ %license COPYING %changelog -* Wed Jul 19 2023 Fedora Release Engineering - 1.00.7-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Mon May 01 2023 Denis Arnaud - 1.00.7-1 -- Upstream upgrade - -* Mon Feb 20 2023 Jonathan Wakely - 1.00.6-4 -- Rebuilt for Boost 1.81 - %autochangelog From 69773d9435d6e5be492c4a0717c6e0f36e742ce3 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 13 Nov 2023 18:16:23 +0100 Subject: [PATCH 088/108] Sources from GitHub --- sources | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sources b/sources index edb211e..0ccf3b9 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.7.tar.gz) = d4afd7bea4a81304d9e5eea89c633e698e21bda2d2480f0d2b2002673f468055331c316935e41b2ba958ccf64508a0443da932aa4a02fff318e8f6e70c7b3b18 +SHA512 (airrac-1.00.7.tar.gz) = 86c4acb8249fefe2a284009fe4b4757dec6bae0f971ff30e8abd5dde086bdd9a0674b318035d884aeb9cd59d792f525872e7665db9d4f494ebcae97cc310bbb8 From c35c3e867c18c377d4c924c1f478880e366ec6cd Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 13 Nov 2023 18:48:33 +0100 Subject: [PATCH 089/108] Modernized the spec file --- airrac.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index fdb1ae0..fc75f26 100644 --- a/airrac.spec +++ b/airrac.spec @@ -49,8 +49,8 @@ BuildRequires: ghostscript %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). +(https://doxygen.org). The content is the same as what can be browsed +online (https://%{name}.org). %prep From 776ec903c02ff61521309cfc9c0cfd2ce6e63816 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 18 Jan 2024 04:48:41 +0000 Subject: [PATCH 090/108] Rebuilt for Boost 1.83 From 2fdfbb11c73c7d7ffbdd683dd01671d7f264f1c9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jan 2024 12:28:57 +0000 Subject: [PATCH 091/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From b885054ad9289c8ec9dfe7e85d0b3a2efde9e6e3 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 22:48:57 +0000 Subject: [PATCH 092/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 8c9be74dd1cb0c385f979512198a615dc4e15a61 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 29 Jan 2024 10:46:01 +0000 Subject: [PATCH 093/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From db9a16d010f1381036313b658a3b134259ba53cb Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 23 Mar 2024 22:18:57 +0100 Subject: [PATCH 094/108] Upstream upgrade --- airrac.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index fc75f26..ba1d31e 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.7 +Version: 1.00.8 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library diff --git a/sources b/sources index 0ccf3b9..1674acd 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.7.tar.gz) = 86c4acb8249fefe2a284009fe4b4757dec6bae0f971ff30e8abd5dde086bdd9a0674b318035d884aeb9cd59d792f525872e7665db9d4f494ebcae97cc310bbb8 +SHA512 (airrac-1.00.8.tar.gz) = 5a60774342c995cc156f18488e18bc9376dd1c169748914d3755662ad01dd732c0e78ae771017af2db07aada4cec13414eae7992509bb74a4115c8bd7a0e4857 From 06a9894f1ed02ba340cfb0a9d6f80b9501bc96bf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 17 Jul 2024 16:45:19 +0000 Subject: [PATCH 095/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From a7b18b86c2eeac1af84fbc697d5c78d47979abcb Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 10:45:33 +0000 Subject: [PATCH 096/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From 3e2025164d54fd77afaddb7b9484df69ecef6cbb Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 27 Jan 2025 12:42:44 +0100 Subject: [PATCH 097/108] Upstream update --- airrac.spec | 3 ++- sources | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index ba1d31e..6c2e14a 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.8 +Version: 1.00.9 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -16,6 +16,7 @@ BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel BuildRequires: pkgconfig(readline) BuildRequires: pkgconfig(stdair) +BuildRequires: mysql-devel %description %{name} is a C++ library of airline revenue accounting classes and diff --git a/sources b/sources index 1674acd..b83d650 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.8.tar.gz) = 5a60774342c995cc156f18488e18bc9376dd1c169748914d3755662ad01dd732c0e78ae771017af2db07aada4cec13414eae7992509bb74a4115c8bd7a0e4857 +SHA512 (airrac-1.00.9.tar.gz) = ade0f57e8846e8889afdecdce5b7101b4fdc77eccbe9fc0bf9450b32e49df884d3d12c221e9ecaff3a0bf3739b9d017bcc5169a7481a28757478d28f23ce6eb7 From 5aea3e3696b36be332d2203ad278286571737b3f Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Tue, 25 Mar 2025 00:41:16 +0100 Subject: [PATCH 098/108] Upstream upgrade --- airrac.spec | 6 +++--- sources | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/airrac.spec b/airrac.spec index 6c2e14a..55215f8 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.9 +Version: 1.00.10 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -12,6 +12,7 @@ Source0: %{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}. BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: boost-devel +BuildRequires: soci-devel BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel BuildRequires: pkgconfig(readline) @@ -87,10 +88,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %{_includedir}/%{name}/ %{_bindir}/%{name}-config %{_libdir}/lib%{name}.so +%{_libdir}/cmake/%{name}/ %{_libdir}/pkgconfig/%{name}.pc %{_datadir}/aclocal/%{name}.m4 -%dir %{_datadir}/%{name} -%{_datadir}/%{name}/CMake %{_mandir}/man1/%{name}-config.1.* %{_mandir}/man3/%{name}-library.3.* diff --git a/sources b/sources index b83d650..1ec812d 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.9.tar.gz) = ade0f57e8846e8889afdecdce5b7101b4fdc77eccbe9fc0bf9450b32e49df884d3d12c221e9ecaff3a0bf3739b9d017bcc5169a7481a28757478d28f23ce6eb7 +SHA512 (airrac-1.00.10.tar.gz) = bb23f82f73119cc65d32bc325afc5599f48dc3aab23e7f124a7b838c7885fd3e258a93a04f224ddb9f4737c60c76c4f200b6d1943d95cf6b20e47b9475eb534b From 3b06642e530b01a2639798cee85c75357504541a Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Tue, 25 Mar 2025 12:39:59 +0100 Subject: [PATCH 099/108] Upstream upgrade --- airrac.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index 55215f8..a1f4ec8 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.10 +Version: 1.00.11 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library diff --git a/sources b/sources index 1ec812d..0c1eec8 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.10.tar.gz) = bb23f82f73119cc65d32bc325afc5599f48dc3aab23e7f124a7b838c7885fd3e258a93a04f224ddb9f4737c60c76c4f200b6d1943d95cf6b20e47b9475eb534b +SHA512 (airrac-1.00.11.tar.gz) = a780b269f40fda802789de38fed3e7c534e7a1c445f4028264a9ade1db4324426dfacc161461e120ae735a0e4657cd025f591bf935b78a94f2cf03a6c8703dc0 From b421223b153b46f963d433c3b2a8a824e68cb4f5 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 31 Mar 2025 01:00:05 +0200 Subject: [PATCH 100/108] Upstream upgrade --- airrac.spec | 3 ++- sources | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index a1f4ec8..ffc7426 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.11 +Version: 1.00.12 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -85,6 +85,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %{_mandir}/man1/%{name}.1.* %files devel +%license COPYING %{_includedir}/%{name}/ %{_bindir}/%{name}-config %{_libdir}/lib%{name}.so diff --git a/sources b/sources index 0c1eec8..35879f0 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.11.tar.gz) = a780b269f40fda802789de38fed3e7c534e7a1c445f4028264a9ade1db4324426dfacc161461e120ae735a0e4657cd025f591bf935b78a94f2cf03a6c8703dc0 +SHA512 (airrac-1.00.12.tar.gz) = d9f1fe52195fe07f155a0958956ebc58483b95108b957bf8f5e1cfd9833c1a1da2b0da72d54c3606be3345b499af3c054291c91ed53f9d622e7874549098e06b From 62f7c578f20d3cd9e5021b73c5a44433cb158956 Mon Sep 17 00:00:00 2001 From: Pavol Sloboda Date: Mon, 5 May 2025 16:15:38 +0200 Subject: [PATCH 101/108] Removed the redundant BuildRequires of mysql-devl I have removed the redundant BuildRequires of mysql-devel as it is already uncoditionally required by soci-mysql-devel, which is in turn uncoditionally required by this package thus being available in the build chroot transitively. --- airrac.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index ffc7426..85cd221 100644 --- a/airrac.spec +++ b/airrac.spec @@ -17,7 +17,6 @@ BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel BuildRequires: pkgconfig(readline) BuildRequires: pkgconfig(stdair) -BuildRequires: mysql-devel %description %{name} is a C++ library of airline revenue accounting classes and From c640279378b033251527ac0693221d9434659c5d Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 16:50:53 +0000 Subject: [PATCH 102/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From c1f5844fca262e9ef0d160a934ebe154b86dcfea Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 17 Dec 2025 11:27:02 +0100 Subject: [PATCH 103/108] Upstream upgrade --- airrac.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index 85cd221..3ccb815 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.12 +Version: 1.00.13 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library diff --git a/sources b/sources index 35879f0..7da6542 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.12.tar.gz) = d9f1fe52195fe07f155a0958956ebc58483b95108b957bf8f5e1cfd9833c1a1da2b0da72d54c3606be3345b499af3c054291c91ed53f9d622e7874549098e06b +SHA512 (airrac-1.00.13.tar.gz) = c55addfdb4b3b94abd291a657a0dc41fb833a2f5eb077289b504b63a8e671b12a0343d8cfcababdd1a8861f7403c250be9947afe5d14f5e1a09a2518184b8796 From 31eecc56460ca6948262e1a3c76ab00154284efa Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 25 Dec 2025 00:16:45 +0100 Subject: [PATCH 104/108] Upstream upgrade --- airrac.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index 3ccb815..afced76 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.13 +Version: 1.00.14 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library diff --git a/sources b/sources index 7da6542..f3c1877 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.13.tar.gz) = c55addfdb4b3b94abd291a657a0dc41fb833a2f5eb077289b504b63a8e671b12a0343d8cfcababdd1a8861f7403c250be9947afe5d14f5e1a09a2518184b8796 +SHA512 (airrac-1.00.14.tar.gz) = c6b1210c48d5096c427a3dc64c0868c1d3df9369fefc7f328de1c012163af0bb8dc80a511e860de41f76eaa93842f4cd6f95ecf4e6ea7f4fd8bef8cdf42f2ba4 From 8d67ece1037c0381c1e8834e2d97f7c9065a1a0d Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 25 Dec 2025 00:26:37 +0100 Subject: [PATCH 105/108] Added missing build dependency --- airrac.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/airrac.spec b/airrac.spec index afced76..967b53b 100644 --- a/airrac.spec +++ b/airrac.spec @@ -15,6 +15,7 @@ BuildRequires: boost-devel BuildRequires: soci-devel BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel +BuildRequires: soci-postgresql-devel BuildRequires: pkgconfig(readline) BuildRequires: pkgconfig(stdair) From f9dd8a1ba4a607ccd65daa054d6c04185667119d Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 12 Jan 2026 13:02:01 +0000 Subject: [PATCH 106/108] Rebuilt for Boost 1.90 From 5b2515d393d1559e9c33f2726a8c265bd2d4cafd Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Tue, 13 Jan 2026 00:36:45 +0100 Subject: [PATCH 107/108] [CMake] Fixed the sample dir issue --- airrac.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index 967b53b..23c16b4 100644 --- a/airrac.spec +++ b/airrac.spec @@ -1,6 +1,6 @@ # Name: airrac -Version: 1.00.14 +Version: 1.00.15 Release: %autorelease Summary: C++ Simulated Revenue Accounting (RAC) System Library diff --git a/sources b/sources index f3c1877..7b8a696 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airrac-1.00.14.tar.gz) = c6b1210c48d5096c427a3dc64c0868c1d3df9369fefc7f328de1c012163af0bb8dc80a511e860de41f76eaa93842f4cd6f95ecf4e6ea7f4fd8bef8cdf42f2ba4 +SHA512 (airrac-1.00.15.tar.gz) = 8d3d4d718ee337002cc310d7c5306077c3317353f8e3cd5d182c25cdac59da5c0be04016e1281714bb659f6734719355d0b3fa46adff07a584f436c57b836b9f From e9d153552b4afd1ef44f613377cbdbca11b83ee0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Jan 2026 03:32:12 +0000 Subject: [PATCH 108/108] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild