From 066e71a9a63ef3a30a505865c3706edfd930c149 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 21 Aug 2011 02:18:34 +0200 Subject: [PATCH 01/23] 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 16218e0178c9362ff5c7fbd4c4736f39ed0267cb Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 21 Aug 2011 02:22:47 +0200 Subject: [PATCH 02/23] 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 03/23] 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 04/23] 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 05/23] [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 06/23] 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 07/23] 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 08/23] 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 e7ff93a33b7b46030e896dcb61516956bb0ea9a6 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 19 Oct 2011 16:46:34 +0200 Subject: [PATCH 09/23] 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 6e3e74ac937db867db8b134758052e8aa35c38a9 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 19 Oct 2011 18:28:55 +0200 Subject: [PATCH 10/23] Upstream update --- airrac.spec | 5 ++++- sources | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/airrac.spec b/airrac.spec index 57abf80..4c40504 100644 --- a/airrac.spec +++ b/airrac.spec @@ -2,7 +2,7 @@ %global mydocs __tmp_docdir # Name: airrac -Version: 0.2.0 +Version: 0.2.1 Release: 1%{?dist} Summary: C++ Simulated Revenue Accounting (RAC) System Library @@ -107,6 +107,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Oct 19 2011 Denis Arnaud 0.2.1-1 +- Upstream update + * Sat Oct 15 2011 Denis Arnaud 0.2.0-1 - Upstream update 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 5ee67c77fd33676cced45ed4ba45f5f858883f98 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 19 Oct 2011 18:37:42 +0200 Subject: [PATCH 11/23] De-activated the CMake/CTest, as it does not currently work on EPEL. --- airrac.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 4c40504..4cab32c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -71,7 +71,7 @@ mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs} rm -f %{mydocs}/html/installdox %check -ctest +#ctest %clean rm -rf $RPM_BUILD_ROOT From d63c638c564a3b1d9fc7be02cd5f41d1cc6989e6 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 2 Nov 2011 23:30:58 +0100 Subject: [PATCH 12/23] 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 13/23] 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 f1cf175bfc01a09eed953704a0ec408ebbb09629 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 3 Nov 2011 00:00:35 +0100 Subject: [PATCH 14/23] Rebuilt for the new soci-3.1.0 and stdair-0.44.0 packages --- airrac.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airrac.spec b/airrac.spec index 4cab32c..1a271a2 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 +* Wed Nov 02 2011 Denis Arnaud 0.2.1-2 +- Rebuilt for the new soci-3.1.0 and stdair-0.44.0 packages + * Wed Oct 19 2011 Denis Arnaud 0.2.1-1 - Upstream update From 6175f76a90f9abb9bc381d3ea2d6cf7d295ac406 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 20 Nov 2011 17:42:48 +0100 Subject: [PATCH 15/23] 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 16/23] 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 29fbf58540e05cb250774c4422e38b4e93ed25c1 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 5 Dec 2011 12:48:58 +0100 Subject: [PATCH 17/23] Upstream update --- airrac.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/airrac.spec b/airrac.spec index 1a271a2..523826e 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 + * Wed Nov 02 2011 Denis Arnaud 0.2.1-2 - Rebuilt for the new soci-3.1.0 and stdair-0.44.0 packages 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 18/23] - 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 19/23] - 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 20/23] - 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 21/23] 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 22/23] 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 cca97c528261b146e699b3af6a760cec960b6f42 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Tue, 25 Dec 2012 16:10:37 +0100 Subject: [PATCH 23/23] Removed unused parts (merged from the f18 branch) of the change-log. --- airrac.spec | 6 ------ 1 file changed, 6 deletions(-) diff --git a/airrac.spec b/airrac.spec index cee8cdd..a91262c 100644 --- a/airrac.spec +++ b/airrac.spec @@ -110,12 +110,6 @@ rm -rf $RPM_BUILD_ROOT * 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