From 809e0b4e2362d4ed63758efdba17c801828f931e Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 13 Jun 2015 23:38:33 +0200 Subject: [PATCH 01/78] Aligned on StdAir for the CMake helper files. --- .gitignore | 10 ++++ airtsp.spec | 161 ++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 172 insertions(+) create mode 100644 airtsp.spec diff --git a/.gitignore b/.gitignore index e69de29..05bb18a 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,10 @@ +/airtsp-*.tar.* +/airtsp-*.src.rpm +/airtsp-*.*.*/ +/clog +.build-*.*.log +/noarch/ +/x86_64/ +/i?86/ +/tarballs/ + diff --git a/airtsp.spec b/airtsp.spec new file mode 100644 index 0000000..6c3c74a --- /dev/null +++ b/airtsp.spec @@ -0,0 +1,161 @@ +# +%global mydocs __tmp_docdir +%global version_main 1.01 +%global name_cap AirTSP +# +Name: airtsp +Version: %{version_main}.2 +Release: 1%{?dist} +Obsoletes: airsched < %{version_main}.1-1 + +Summary: C++ Simulated Airline Travel Solution Provider Library + +Group: System Environment/Libraries +License: LGPLv2+ +URL: http://sourceforge.net/projects/%{name}/ +Source0: http://downloads.sourceforge.net/project/%{name_cap}/%{version_main}/%{name}-%{version}.tar.bz2 +BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) + +BuildRequires: cmake, python-devel, boost-devel +BuildRequires: soci-mysql-devel, soci-sqlite3-devel, readline-devel +BuildRequires: stdair-devel + + +%description +%{name} aims at providing a clean API and a simple implementation, as +a C++ library, of an Airline Schedule Management System. It is intended +to be used in simulated environments only: it is not designed to work +in the real-world of Airline IT operations. + +%{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 Schedule Management, 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 + +%description devel +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 +Summary: HTML documentation for the %{name} library +Group: Documentation +%if 0%{?fedora} || 0%{?rhel} > 5 +BuildArch: noarch +%endif +BuildRequires: tex(latex), tex(sectsty.sty), tex(tocloft.sty), tex(xtab.sty) +BuildRequires: doxygen, ghostscript, graphviz + +%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 + + +%build +mkdir -p build +pushd build +%cmake -DBOOST_LIBRARYDIR=%{_libdir}/boost148 \ + -DBOOST_INCLUDEDIR=%{_includedir}/boost148 \ + -DBoost_ADDITIONAL_VERSIONS="1.48 1.48.0" .. +make %{?_smp_mflags} +popd + +%install +rm -rf $RPM_BUILD_ROOT +pushd build +make install DESTDIR=$RPM_BUILD_ROOT +popd + +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 + +%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%{name}.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 +* Sat Jun 13 2015 Denis Arnaud - 1.01.2-1 +- Aligned on StdAir for the CMake helper files. + +* Sat Apr 18 2015 Denis Arnaud - 1.01.1-2 +- On Fedora 22+, ZeroMQ v2 is no longer the default. + +* Mon Aug 12 2013 Denis Arnaud - 1.01.1-1 +- Took into account feedback from review request (BZ#972431): + airtsp-config now supports multilib (32 and 64bit versions). +- Upstream update + +* Mon Jul 29 2013 Denis Arnaud - 1.01.0-3 +- Fixed the docdir issue, following the F20 System Wide Change +- Rebuild for boost 1.54.0 + +* Wed Jun 12 2013 Denis Arnaud 1.01.0-2 +- Added a dependency on graphviz and texlive-utils (epstopdf), so as + build the documentation with figures + +* Sat Jun 08 2013 Denis Arnaud 1.01.0-1 +- Renamed the package, from AirSched to AirTSP, due to trademark issue + with Plancor + +* Wed Oct 26 2011 Denis Arnaud 0.1.2-1 +- Upstream update + +* Sat Aug 20 2011 Denis Arnaud 0.1.1-1 +- Upstream update +- Took into account the feedback from various review requests (bugs #732205, + #728649, #732218) + +* Sat Aug 20 2011 Denis Arnaud 0.1.0-1 +- First RPM release + diff --git a/sources b/sources index e69de29..fac7141 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +b5adfca09fa79e9cec50d799eb6b82ab airtsp-1.01.2.tar.bz2 From 6d64832f19f9306e1c36b39c5a8adcadd3d09020 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 14 Jun 2015 00:08:37 +0200 Subject: [PATCH 02/78] Fixed the installed documentation directory path. --- airtsp.spec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 6c3c74a..650ff52 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -81,12 +81,12 @@ make install DESTDIR=$RPM_BUILD_ROOT popd 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 # 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 d0e6ad85a609b04b3f8e40ab913042d104ceb6c1 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Tue, 16 Jun 2015 23:43:45 +0000 Subject: [PATCH 03/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 650ff52..911ab23 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 1%{?dist} +Release: 2%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jun 16 2015 Fedora Release Engineering - 1.01.2-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + * Sat Jun 13 2015 Denis Arnaud - 1.01.2-1 - Aligned on StdAir for the CMake helper files. From 24f401e878bafe515b9e7c0794c356000431b547 Mon Sep 17 00:00:00 2001 From: David Tardon Date: Wed, 22 Jul 2015 18:03:31 +0200 Subject: [PATCH 04/78] rebuild for Boost 1.58 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 911ab23..244fb6a 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 2%{?dist} +Release: 3%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 22 2015 David Tardon - 1.01.2-3 +- rebuild for Boost 1.58 + * Tue Jun 16 2015 Fedora Release Engineering - 1.01.2-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild From dcdde1986a52d9660c228ad156922540f97887e2 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 29 Jul 2015 11:56:46 -0500 Subject: [PATCH 05/78] - Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 244fb6a..6325a11 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 3%{?dist} +Release: 4%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 29 2015 Fedora Release Engineering - 1.01.2-4 +- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 + * Wed Jul 22 2015 David Tardon - 1.01.2-3 - rebuild for Boost 1.58 From 6b99167638deb8a2c0454e354a87fc58b5b981e4 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 29 Aug 2015 17:15:40 +0200 Subject: [PATCH 06/78] Mass rebuild --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 6325a11..2e3deb0 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 4%{?dist} +Release: 5%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -125,6 +125,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sat Aug 29 2015 Denis Arnaud - 1.01.2-5 +- Mass rebuild + * Wed Jul 29 2015 Fedora Release Engineering - 1.01.2-4 - Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 From f23c724ae6c5e12613814d0d23cfc084018a2038 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Sun, 30 Aug 2015 01:15:33 +0100 Subject: [PATCH 07/78] Patched and rebuilt for Boost 1.59 --- 0001-Fix-for-Boost-1.59.0-compatibility.patch | 38 +++++++++++++++++++ airtsp.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..8d61548 --- /dev/null +++ b/0001-Fix-for-Boost-1.59.0-compatibility.patch @@ -0,0 +1,38 @@ +From ea5446fb00f0601b1ce8b55f15b81ccf28b4c803 Mon Sep 17 00:00:00 2001 +From: Jonathan Wakely +Date: Sun, 30 Aug 2015 01:14:09 +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/airtsp/AirlineScheduleTestSuite.cpp | 5 +++++ + 1 file changed, 5 insertions(+) + +diff --git a/test/airtsp/AirlineScheduleTestSuite.cpp b/test/airtsp/AirlineScheduleTestSuite.cpp +index ea64971..e65905d 100644 +--- a/test/airtsp/AirlineScheduleTestSuite.cpp ++++ b/test/airtsp/AirlineScheduleTestSuite.cpp +@@ -14,6 +14,7 @@ + #define BOOST_TEST_MAIN + #define BOOST_TEST_MODULE InventoryTestSuite + #include ++#include + // Boost Date-Time + #include + // StdAir +@@ -41,7 +42,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/airtsp.spec b/airtsp.spec index 2e3deb0..c1ce05c 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 5%{?dist} +Release: 6%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -14,6 +14,7 @@ Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/project/%{name_cap}/%{version_main}/%{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, boost-devel @@ -63,6 +64,7 @@ online (http://%{name}.org). %prep %setup -q +%patch0 -p1 %build @@ -125,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Sun Aug 30 2015 Jonathan Wakely 1.01.2-6 +- Patched and rebuilt for Boost 1.59 + * Sat Aug 29 2015 Denis Arnaud - 1.01.2-5 - Mass rebuild From 38c455aa2e1c74ba3f03d5a563fabab5688fd25c Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 18 Jan 2016 11:21:54 +0000 Subject: [PATCH 08/78] Rebuilt for Boost 1.60 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index c1ce05c..e423d3b 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 6%{?dist} +Release: 7%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jan 18 2016 Jonathan Wakely - 1.01.2-7 +- Rebuilt for Boost 1.60 + * Sun Aug 30 2015 Jonathan Wakely 1.01.2-6 - Patched and rebuilt for Boost 1.59 From d1628c1107a1abceb991f0a3cddc3d7807395e83 Mon Sep 17 00:00:00 2001 From: Dennis Gilmore Date: Wed, 3 Feb 2016 16:03:44 +0000 Subject: [PATCH 09/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index e423d3b..b44ac1d 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 7%{?dist} +Release: 8%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 03 2016 Fedora Release Engineering - 1.01.2-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + * Mon Jan 18 2016 Jonathan Wakely - 1.01.2-7 - Rebuilt for Boost 1.60 From 2ccf31df2baaf234d68cf290aa89e506a0e9fbad Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Thu, 12 Jan 2017 17:30:23 +0100 Subject: [PATCH 10/78] Rebuild for readline 7.x Signed-off-by: Igor Gnatenko --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index b44ac1d..ec7c761 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.2 -Release: 8%{?dist} +Release: 9%{?dist} Obsoletes: airsched < %{version_main}.1-1 Summary: C++ Simulated Airline Travel Solution Provider Library @@ -127,6 +127,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Thu Jan 12 2017 Igor Gnatenko - 1.01.2-9 +- Rebuild for readline 7.x + * Wed Feb 03 2016 Fedora Release Engineering - 1.01.2-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild From 37c57fc3f4d5b931824609c100cb0a1bc27cdef7 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Fri, 13 Jan 2017 19:09:19 +0100 Subject: [PATCH 11/78] Fixed a compatibility issue with C++11 with std::istringstream. BZ #1307310 --- 0001-Fix-for-Boost-1.59.0-compatibility.patch | 38 ------------------- airtsp.spec | 11 +++--- sources | 2 +- 3 files changed, 7 insertions(+), 44 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 8d61548..0000000 --- a/0001-Fix-for-Boost-1.59.0-compatibility.patch +++ /dev/null @@ -1,38 +0,0 @@ -From ea5446fb00f0601b1ce8b55f15b81ccf28b4c803 Mon Sep 17 00:00:00 2001 -From: Jonathan Wakely -Date: Sun, 30 Aug 2015 01:14:09 +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/airtsp/AirlineScheduleTestSuite.cpp | 5 +++++ - 1 file changed, 5 insertions(+) - -diff --git a/test/airtsp/AirlineScheduleTestSuite.cpp b/test/airtsp/AirlineScheduleTestSuite.cpp -index ea64971..e65905d 100644 ---- a/test/airtsp/AirlineScheduleTestSuite.cpp -+++ b/test/airtsp/AirlineScheduleTestSuite.cpp -@@ -14,6 +14,7 @@ - #define BOOST_TEST_MAIN - #define BOOST_TEST_MODULE InventoryTestSuite - #include -+#include - // Boost Date-Time - #include - // StdAir -@@ -41,7 +42,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/airtsp.spec b/airtsp.spec index ec7c761..c221cd1 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,9 +4,8 @@ %global name_cap AirTSP # Name: airtsp -Version: %{version_main}.2 -Release: 9%{?dist} -Obsoletes: airsched < %{version_main}.1-1 +Version: %{version_main}.3 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -14,7 +13,6 @@ Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/project/%{name_cap}/%{version_main}/%{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, boost-devel @@ -64,7 +62,6 @@ online (http://%{name}.org). %prep %setup -q -%patch0 -p1 %build @@ -127,6 +124,10 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Jan 13 2017 Denis Arnaud 1.01.3 +- Fixed a compatibility issue with C++11 with std::istringstream. +BZ #1307310 + * Thu Jan 12 2017 Igor Gnatenko - 1.01.2-9 - Rebuild for readline 7.x diff --git a/sources b/sources index fac7141..3daef5b 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -b5adfca09fa79e9cec50d799eb6b82ab airtsp-1.01.2.tar.bz2 +SHA512 (airtsp-1.01.3.tar.bz2) = 9ddc36bb5d86d15ce142868711349bc6c4660b446be1919df3d3920784eb5cd9e38a7013740295bd0353cf4903cf78e020caf7671d3417c67228135a6eb05f8f From 8f58243e7ff88118c7e0ca07172b67081dc5fe84 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 15 Jan 2017 15:02:27 +0100 Subject: [PATCH 12/78] Fixed a typo in the version format for the changelog record --- airtsp.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index c221cd1..8dc4c18 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -124,7 +124,7 @@ rm -rf $RPM_BUILD_ROOT %changelog -* Fri Jan 13 2017 Denis Arnaud 1.01.3 +* Fri Jan 13 2017 Denis Arnaud 1.01.3-1 - Fixed a compatibility issue with C++11 with std::istringstream. BZ #1307310 From cabbbc8366ee248c9d8f72eb61692ce53881c690 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 10 Feb 2017 05:50:04 +0000 Subject: [PATCH 13/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 8dc4c18..243c6b5 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Fri Feb 10 2017 Fedora Release Engineering - 1.01.3-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + * Fri Jan 13 2017 Denis Arnaud 1.01.3-1 - Fixed a compatibility issue with C++11 with std::istringstream. BZ #1307310 From 9ecc328666b265523bb43fe3c069e9a3f66b7880 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 15 May 2017 20:01:12 +0000 Subject: [PATCH 14/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 243c6b5..380e597 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon May 15 2017 Fedora Release Engineering - 1.01.3-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild + * Fri Feb 10 2017 Fedora Release Engineering - 1.01.3-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild From fe2a44c4c2bb090feb34c08d6247b1aebe351243 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Esser?= Date: Mon, 24 Jul 2017 14:02:27 +0200 Subject: [PATCH 15/78] Rebuilt for Boost 1.64 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 380e597..c986c91 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Mon Jul 24 2017 Björn Esser - 1.01.3-4 +- Rebuilt for Boost 1.64 + * Mon May 15 2017 Fedora Release Engineering - 1.01.3-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild From 7c4af61ab149fd4c3b2cf93c2ff4cb07a6b9bd4a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 26 Jul 2017 02:41:31 +0000 Subject: [PATCH 16/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index c986c91..a754b15 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Jul 26 2017 Fedora Release Engineering - 1.01.3-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + * Mon Jul 24 2017 Björn Esser - 1.01.3-4 - Rebuilt for Boost 1.64 From c2d2e8c70b0a240c20a57d16193a27644f782554 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 2 Aug 2017 17:27:52 +0000 Subject: [PATCH 17/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index a754b15..fdf94f7 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Aug 02 2017 Fedora Release Engineering - 1.01.3-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild + * Wed Jul 26 2017 Fedora Release Engineering - 1.01.3-5 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild From cf266dfbc18670cbe34975edf578f018debff667 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Tue, 23 Jan 2018 00:22:53 +0000 Subject: [PATCH 18/78] Rebuilt for Boost 1.66 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index fdf94f7..145cb51 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 6%{?dist} +Release: 7%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Tue Jan 23 2018 Jonathan Wakely - 1.01.3-7 +- Rebuilt for Boost 1.66 + * Wed Aug 02 2017 Fedora Release Engineering - 1.01.3-6 - Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild From b065aa5bd1244786308e8a4c35513d8c895bf62b Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 7 Feb 2018 02:01:52 +0000 Subject: [PATCH 19/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 145cb51..96825e7 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 7%{?dist} +Release: 8%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -124,6 +124,9 @@ rm -rf $RPM_BUILD_ROOT %changelog +* Wed Feb 07 2018 Fedora Release Engineering - 1.01.3-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + * Tue Jan 23 2018 Jonathan Wakely - 1.01.3-7 - Rebuilt for Boost 1.66 From aee597823179c80ba00d19e99f3f5c8501f844fc Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Tue, 13 Feb 2018 23:01:13 +0100 Subject: [PATCH 20/78] 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 --- airtsp.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 96825e7..a032554 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -13,7 +13,6 @@ Group: System Environment/Libraries License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/project/%{name_cap}/%{version_main}/%{name}-%{version}.tar.bz2 -BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX) BuildRequires: cmake, python-devel, boost-devel BuildRequires: soci-mysql-devel, soci-sqlite3-devel, readline-devel From 6b55a79d5e2a59a3316c5d619d7b6d09345a4616 Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Wed, 14 Feb 2018 09:54:10 +0100 Subject: [PATCH 21/78] 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 --- airtsp.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index a032554..a321905 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -89,9 +89,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 31b4c12877d00d9ca1285e04fd9af8873e47424d Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 10 May 2018 23:31:28 +0100 Subject: [PATCH 22/78] Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29 --- airtsp.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index a321905..7dbd614 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 8%{?dist} +Release: 9%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -15,6 +15,7 @@ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/project/%{name_cap}/%{version_main}/%{name}-%{version}.tar.bz2 BuildRequires: cmake, python-devel, boost-devel +BuildRequires: boost-python2-devel BuildRequires: soci-mysql-devel, soci-sqlite3-devel, readline-devel BuildRequires: stdair-devel @@ -120,6 +121,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} %changelog +* Thu May 10 2018 Jonathan Wakely - .3-9 +- Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29 + * Wed Feb 07 2018 Fedora Release Engineering - 1.01.3-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild From 774ecb8f69a629571cfc8ef00adaf7ab488a57ff Mon Sep 17 00:00:00 2001 From: Igor Gnatenko Date: Mon, 9 Jul 2018 19:06:42 +0200 Subject: [PATCH 23/78] add BuildRequires: gcc-c++ Reference: https://fedoraproject.org/wiki/Changes/Remove_GCC_from_BuildRoot --- airtsp.spec | 1 + 1 file changed, 1 insertion(+) diff --git a/airtsp.spec b/airtsp.spec index 7dbd614..340a3c2 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -14,6 +14,7 @@ License: LGPLv2+ URL: http://sourceforge.net/projects/%{name}/ Source0: http://downloads.sourceforge.net/project/%{name_cap}/%{version_main}/%{name}-%{version}.tar.bz2 +BuildRequires: gcc-c++ BuildRequires: cmake, python-devel, boost-devel BuildRequires: boost-python2-devel BuildRequires: soci-mysql-devel, soci-sqlite3-devel, readline-devel From 4746ae12a45387c81e49c6f5d7edb7f31e2eb9a5 Mon Sep 17 00:00:00 2001 From: Jason Tibbitts Date: Tue, 10 Jul 2018 00:10:02 -0500 Subject: [PATCH 24/78] Remove needless use of %defattr --- airtsp.spec | 3 --- 1 file changed, 3 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 340a3c2..5720a4a 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -97,14 +97,12 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} %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 @@ -116,7 +114,6 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} %{_mandir}/man3/%{name}-library.3.* %files doc -%defattr(-,root,root,-) %doc %{mydocs}/html %doc COPYING From 6ae54c29211e636f8454e9564b2a100668d5c804 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 12 Jul 2018 20:05:13 +0000 Subject: [PATCH 25/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 5720a4a..d57a031 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -5,7 +5,7 @@ # Name: airtsp Version: %{version_main}.3 -Release: 9%{?dist} +Release: 10%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -119,6 +119,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} %changelog +* Thu Jul 12 2018 Fedora Release Engineering - 1.01.3-10 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + * Thu May 10 2018 Jonathan Wakely - .3-9 - Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29 From 838087ac902867eb7e0617b74f6fc58512f1df54 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 17 Jan 2019 23:16:14 +0100 Subject: [PATCH 26/78] Upstream update --- airtsp.spec | 57 ++++++++++++++++++++++------------------------------- sources | 2 +- 2 files changed, 25 insertions(+), 34 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index d57a031..0a322c4 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,23 +1,25 @@ # %global mydocs __tmp_docdir -%global version_main 1.01 -%global name_cap AirTSP + # Name: airtsp -Version: %{version_main}.3 -Release: 10%{?dist} +Version: 1.01.4 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library -Group: System Environment/Libraries License: LGPLv2+ -URL: http://sourceforge.net/projects/%{name}/ -Source0: http://downloads.sourceforge.net/project/%{name_cap}/%{version_main}/%{name}-%{version}.tar.bz2 +URL: http://github.com/airsim/%{name} +Source0: %{url}/archive/%{name}-%{version}.tar.gz BuildRequires: gcc-c++ -BuildRequires: cmake, python-devel, boost-devel -BuildRequires: boost-python2-devel -BuildRequires: soci-mysql-devel, soci-sqlite3-devel, readline-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 @@ -36,7 +38,6 @@ for Airline Schedule Management, 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 @@ -47,12 +48,11 @@ 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), tex(sectsty.sty), tex(tocloft.sty), tex(xtab.sty) -BuildRequires: doxygen, ghostscript, graphviz +BuildRequires: doxygen +BuildRequires: ghostscript +BuildRequires: graphviz %description doc This package contains HTML pages, as well as a PDF reference manual, @@ -62,23 +62,15 @@ online (http://%{name}.org). %prep -%setup -q +%autosetup -n %{name}-%{name}-%{version} %build -mkdir -p build -pushd build -%cmake -DBOOST_LIBRARYDIR=%{_libdir}/boost148 \ - -DBOOST_INCLUDEDIR=%{_includedir}/boost148 \ - -DBoost_ADDITIONAL_VERSIONS="1.48 1.48.0" .. -make %{?_smp_mflags} -popd +%cmake . +%make_build %install -rm -rf $RPM_BUILD_ROOT -pushd build -make install DESTDIR=$RPM_BUILD_ROOT -popd +%make_install mkdir -p %{mydocs} mv $RPM_BUILD_ROOT%{_docdir}/%{name}/html %{mydocs} @@ -86,18 +78,14 @@ 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 +%doc AUTHORS ChangeLog COPYING NEWS README.md %{_bindir}/%{name} %{_libdir}/lib%{name}.so.* %{_mandir}/man1/%{name}.1.* @@ -119,6 +107,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS} %changelog +* Thu Jan 17 2019 Denis Arnaud - 1.01.4-1 +- Upstream update + * Thu Jul 12 2018 Fedora Release Engineering - 1.01.3-10 - Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild diff --git a/sources b/sources index 3daef5b..b16c7c1 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.3.tar.bz2) = 9ddc36bb5d86d15ce142868711349bc6c4660b446be1919df3d3920784eb5cd9e38a7013740295bd0353cf4903cf78e020caf7671d3417c67228135a6eb05f8f +SHA512 (airtsp-1.01.4.tar.gz) = ccca24df1ac32fbcd56b9acbed9e5673d27c17a915de83095d1bdb6496f6de9d83e7eb5a3cebcca07e7824e9cbc9807303da879586ba4d6541cb071a593145a4 From cdb631bde184577cad700ad94b05a29de3e00935 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 24 Jan 2019 21:00:43 +0000 Subject: [PATCH 27/78] Rebuilt for Boost 1.69 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 0a322c4..a75ae31 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.4 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -107,6 +107,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Thu Jan 24 2019 Jonathan Wakely - 1.01.4-2 +- Rebuilt for Boost 1.69 + * Thu Jan 17 2019 Denis Arnaud - 1.01.4-1 - Upstream update From e14bc3abc153cbfd29366ae6a4df6919a8a72c51 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 31 Jan 2019 13:07:12 +0000 Subject: [PATCH 28/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index a75ae31..6d2671a 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.4 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -107,6 +107,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Thu Jan 31 2019 Fedora Release Engineering - 1.01.4-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + * Thu Jan 24 2019 Jonathan Wakely - 1.01.4-2 - Rebuilt for Boost 1.69 From db88233eee07e038288c88ff88cf679a5028bac1 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 11 Jul 2019 23:17:59 +0200 Subject: [PATCH 29/78] CMake support files updated for Python 3.8 --- airtsp.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 6d2671a..189f169 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -3,8 +3,8 @@ # Name: airtsp -Version: 1.01.4 -Release: 3%{?dist} +Version: 1.01.5 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -107,6 +107,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Thu Jul 11 2019 Denis Arnaud - 1.01.5-1 +- CMake support files updated for Python 3.8 + * Thu Jan 31 2019 Fedora Release Engineering - 1.01.4-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild diff --git a/sources b/sources index b16c7c1..defbba3 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.4.tar.gz) = ccca24df1ac32fbcd56b9acbed9e5673d27c17a915de83095d1bdb6496f6de9d83e7eb5a3cebcca07e7824e9cbc9807303da879586ba4d6541cb071a593145a4 +SHA512 (airtsp-1.01.5.tar.gz) = a3cb773d602cb6c7ede0a959500ab9820cde60ee441796f10935bfe043058433697e2a695e6dacd4f789abcac6fff71f0a2fd082e7c4b3031098baf3012db2f6 From 1aaab026777305214025fcb41f74b23bc6e93274 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Fri, 12 Jul 2019 02:15:50 +0200 Subject: [PATCH 30/78] Pin the Python version this was built with See https://bugzilla.redhat.com/show_bug.cgi?id=1705442 --- airtsp.spec | 3 +++ 1 file changed, 3 insertions(+) diff --git a/airtsp.spec b/airtsp.spec index 189f169..522db1b 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -41,6 +41,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 cb9cf3da0ef4338cd9b71530b7eca41b76f3584c Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 24 Jul 2019 17:41:48 +0000 Subject: [PATCH 31/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 522db1b..279cbca 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.5 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -110,6 +110,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jul 24 2019 Fedora Release Engineering - 1.01.5-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + * Thu Jul 11 2019 Denis Arnaud - 1.01.5-1 - CMake support files updated for Python 3.8 From 24f6620ab69e9bb0707dca5395eb54df15a5c0e6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Mon, 19 Aug 2019 10:01:01 +0200 Subject: [PATCH 32/78] Rebuilt for Python 3.8 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 279cbca..4b19ff3 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.5 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -110,6 +110,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Aug 19 2019 Miro Hrončok - 1.01.5-3 +- Rebuilt for Python 3.8 + * Wed Jul 24 2019 Fedora Release Engineering - 1.01.5-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild From f4823fef0418c6128034e09d658810ea982130e0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Tue, 28 Jan 2020 11:21:23 +0000 Subject: [PATCH 33/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 4b19ff3..d40ccdf 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.5 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -110,6 +110,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Tue Jan 28 2020 Fedora Release Engineering - 1.01.5-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + * Mon Aug 19 2019 Miro Hrončok - 1.01.5-3 - Rebuilt for Python 3.8 From 8480d2f706134199aa8ec1f2da269ff7b374aa4c Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 6 Feb 2020 22:19:10 +0100 Subject: [PATCH 34/78] Fixed the pkg-config issue --- airtsp.spec | 7 +++++-- sources | 2 +- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index d40ccdf..69913aa 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -3,8 +3,8 @@ # Name: airtsp -Version: 1.01.5 -Release: 4%{?dist} +Version: 1.01.6 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -110,6 +110,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Thu Feb 06 2020 Denis Arnaud - 1.01.6-1 +- Fixed the pkg-config issue + * Tue Jan 28 2020 Fedora Release Engineering - 1.01.5-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild diff --git a/sources b/sources index defbba3..f54bf4c 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.5.tar.gz) = a3cb773d602cb6c7ede0a959500ab9820cde60ee441796f10935bfe043058433697e2a695e6dacd4f789abcac6fff71f0a2fd082e7c4b3031098baf3012db2f6 +SHA512 (airtsp-1.01.6.tar.gz) = 4c64161692acf7965d10975059932955d2630933a0d8a502544d82175834cd91550a338447bc08bef6ccf0e0c1ad696293c956f8bfb9b8c1003a06acec4a6212 From 8c06ca9f958c9a5a7a72880247a178fb138172f5 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 6 Feb 2020 22:59:42 +0100 Subject: [PATCH 35/78] Fixed the pkg-config issue --- airtsp.spec | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/airtsp.spec b/airtsp.spec index 69913aa..c9760ca 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -12,6 +12,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=38562666 +ExcludeArch: armv7hl + BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: python3-devel From 9cfb5cf0904b469951a8cf2284ca8623a5596738 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Miro=20Hron=C4=8Dok?= Date: Tue, 26 May 2020 02:40:17 +0200 Subject: [PATCH 36/78] Rebuilt for Python 3.9 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index c9760ca..53b0dad 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.6 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -114,6 +114,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Tue May 26 2020 Miro Hrončok - 1.01.6-2 +- Rebuilt for Python 3.9 + * Thu Feb 06 2020 Denis Arnaud - 1.01.6-1 - Fixed the pkg-config issue From a01afe4962c511943650e4871c0400c16d7a1da6 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 31 May 2020 19:40:17 +0200 Subject: [PATCH 37/78] Upstream update --- airtsp.spec | 12 +++++------- sources | 2 +- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 53b0dad..6c6836c 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -3,8 +3,8 @@ # Name: airtsp -Version: 1.01.6 -Release: 2%{?dist} +Version: 1.01.7 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -18,9 +18,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 @@ -45,9 +43,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 @@ -114,6 +109,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Sun May 31 2020 Denis Arnaud - 1.01.7-1 +- Upstream update + * Tue May 26 2020 Miro Hrončok - 1.01.6-2 - Rebuilt for Python 3.9 diff --git a/sources b/sources index f54bf4c..e6fec3e 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.6.tar.gz) = 4c64161692acf7965d10975059932955d2630933a0d8a502544d82175834cd91550a338447bc08bef6ccf0e0c1ad696293c956f8bfb9b8c1003a06acec4a6212 +SHA512 (airtsp-1.01.7.tar.gz) = 39d71df5946ad8f51a250f94e8848de124a4e164266db96e3aed2fedc6f7f7466e12415f3589697a83f52797e8b82f30d7aebe3bf01d96d8dc66cd3a9a6dd83a From a9c006378e21396bbc7ddd5deb471745db168b07 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 3 Jun 2020 20:44:18 +0200 Subject: [PATCH 38/78] Rebuilt for Boost 1.73 --- airtsp.spec | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 6c6836c..a583790 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,12 +4,12 @@ # Name: airtsp Version: 1.01.7 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider 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 @@ -52,6 +52,7 @@ programs using %{name}, you will need to install %{name}-devel. Summary: HTML documentation for the %{name} library BuildArch: noarch BuildRequires: tex(latex), tex(sectsty.sty), tex(tocloft.sty), tex(xtab.sty) +BuildRequires: texlive-epstopdf BuildRequires: doxygen BuildRequires: ghostscript BuildRequires: graphviz @@ -109,6 +110,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jun 03 2020 Denis Arnaud - 1.01.7-2 +- Rebuilt for Boost 1.73 + * Sun May 31 2020 Denis Arnaud - 1.01.7-1 - Upstream update From 2b3c048937cce4cf925cc451624d538e4f427bdb Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 6 Jun 2020 22:08:01 +0200 Subject: [PATCH 39/78] Rebuilt for SOCI 4.0.1-alpha2 --- airtsp.spec | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index a583790..9610cd3 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.7 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -12,10 +12,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=38562666 -ExcludeArch: armv7hl - BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: boost-devel @@ -110,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Sat Jun 06 2020 Denis Arnaud - 1.01.7-3 +- Rebuilt for SOCI 4.0.1-alpha2 + * Wed Jun 03 2020 Denis Arnaud - 1.01.7-2 - Rebuilt for Boost 1.73 From e55acc2ed441a0f0c4dd04e06fe920cba886085f Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 5 Jul 2020 14:35:34 -0400 Subject: [PATCH 40/78] Update to new out-of-source build mechanism --- airtsp.spec | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 9610cd3..27d97a9 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,3 +1,6 @@ +# Force out of source build +%undefine __cmake_in_source_build + # %global mydocs __tmp_docdir @@ -61,15 +64,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} From 8a3c7c760169362e5392b8becc36991f7790d7f1 Mon Sep 17 00:00:00 2001 From: Neal Gompa Date: Sun, 5 Jul 2020 14:36:21 -0400 Subject: [PATCH 41/78] Install license as license file --- airtsp.spec | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 27d97a9..69a6c49 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -87,7 +87,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.* @@ -105,7 +106,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %files doc %doc %{mydocs}/html -%doc COPYING +%license COPYING %changelog From 202bbc860ef24b9566d2efbff5f9b10ef54620f9 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 27 Jul 2020 11:52:03 +0000 Subject: [PATCH 42/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 69a6c49..7d995dd 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -7,7 +7,7 @@ # Name: airtsp Version: 1.01.7 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -110,6 +110,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Jul 27 2020 Fedora Release Engineering - 1.01.7-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Sat Jun 06 2020 Denis Arnaud - 1.01.7-3 - Rebuilt for SOCI 4.0.1-alpha2 From 816d2cc8a10e331f1763796778361467153ab9bd Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 31 Jul 2020 23:53:02 +0000 Subject: [PATCH 43/78] - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 7d995dd..e96b8c6 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -7,7 +7,7 @@ # Name: airtsp Version: 1.01.7 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -110,6 +110,10 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Fri Jul 31 2020 Fedora Release Engineering - 1.01.7-5 +- Second attempt - Rebuilt for + https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + * Mon Jul 27 2020 Fedora Release Engineering - 1.01.7-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From 9ad0e47ace3b358c808ea7d94963d41315c55e04 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 9 Aug 2020 21:32:24 +0200 Subject: [PATCH 44/78] Removed the work around for document directory --- airtsp.spec | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index e96b8c6..85f3b38 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,13 +1,10 @@ # Force out of source build %undefine __cmake_in_source_build -# -%global mydocs __tmp_docdir - # Name: airtsp Version: 1.01.7 -Release: 5%{?dist} +Release: 6%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -74,9 +71,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 $RPM_BUILD_ROOT%{_docdir}/%{name}/html/installdox # Remove additional documentation files (those files are already available # in the project top directory) @@ -110,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Sun Aug 09 2020 Denis Arnaud - 1.01.7-6 +- Removed the work around for document directory + * Fri Jul 31 2020 Fedora Release Engineering - 1.01.7-5 - Second attempt - Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild From debe55e70860fb65d97728fc46b31d115714cdb2 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 9 Aug 2020 21:50:05 +0200 Subject: [PATCH 45/78] Removed the docdir work around (no longer needed) --- airtsp.spec | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 85f3b38..56f8a95 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -56,8 +56,8 @@ BuildRequires: graphviz %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 @@ -101,7 +101,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 322acfcc6cd3be339979c41296e04d4c6cc32d42 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Fri, 22 Jan 2021 21:08:00 +0000 Subject: [PATCH 46/78] Rebuilt for Boost 1.75 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 56f8a95..fd83ff1 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.7 -Release: 6%{?dist} +Release: 7%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Fri Jan 22 2021 Jonathan Wakely - 1.01.7-7 +- Rebuilt for Boost 1.75 + * Sun Aug 09 2020 Denis Arnaud - 1.01.7-6 - Removed the work around for document directory From 5dcb9175c58b7f75141099058f4b7ecad84379db Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 25 Jan 2021 23:55:45 +0000 Subject: [PATCH 47/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index fd83ff1..1af5e0e 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.7 -Release: 7%{?dist} +Release: 8%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Jan 25 2021 Fedora Release Engineering - 1.01.7-8 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + * Fri Jan 22 2021 Jonathan Wakely - 1.01.7-7 - Rebuilt for Boost 1.75 From 35b1c1a2c1346f549b423a38fb01f4d421c1bf0c Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 28 Jun 2021 11:09:32 +0200 Subject: [PATCH 48/78] Upstream update (BZ#1976545) --- airtsp.spec | 9 ++++++--- sources | 2 +- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 1af5e0e..6dde3e0 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -3,8 +3,8 @@ # Name: airtsp -Version: 1.01.7 -Release: 8%{?dist} +Version: 1.01.8 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -61,7 +61,7 @@ online (https://%{name}.org). %prep -%autosetup -n %{name}-%{name}-%{version} +%autosetup -n %{name}-%{version} %build @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Jun 26 2021 Denis Arnaud - 1.01.8-1 +- Upstream update (BZ#1976545) + * Mon Jan 25 2021 Fedora Release Engineering - 1.01.7-8 - Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild diff --git a/sources b/sources index e6fec3e..aaca6f4 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.7.tar.gz) = 39d71df5946ad8f51a250f94e8848de124a4e164266db96e3aed2fedc6f7f7466e12415f3589697a83f52797e8b82f30d7aebe3bf01d96d8dc66cd3a9a6dd83a +SHA512 (airtsp-1.01.8.tar.gz) = 3a162e83e343e3d691606ea59c4c15c6a9fae59f0098ab6466eb8d41aa80b43a6a96c8a60730678d17752a80b945782b750d9677fed093e672488f4d68aa06b7 From 932237f5dfb560ed7ab9ce5301f527a8898f0273 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 28 Jun 2021 11:10:48 +0200 Subject: [PATCH 49/78] Fixed changelog --- airtsp.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 6dde3e0..ceaa951 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -106,7 +106,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog -* Mon Jun 26 2021 Denis Arnaud - 1.01.8-1 +* Mon Jun 28 2021 Denis Arnaud - 1.01.8-1 - Upstream update (BZ#1976545) * Mon Jan 25 2021 Fedora Release Engineering - 1.01.7-8 From 4f3ebf03e8c82a27fbdba6bb8751cf43c3aafba3 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 28 Jun 2021 11:12:50 +0200 Subject: [PATCH 50/78] Fixed setup --- airtsp.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index ceaa951..ca4d1aa 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -61,7 +61,7 @@ online (https://%{name}.org). %prep -%autosetup -n %{name}-%{version} +%autosetup -n %{name}-%{name}-%{version} %build From 11f8fa99614ee774773c844768fe1edf109154b2 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 12:27:53 +0000 Subject: [PATCH 51/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering From 2510c71652ebdff62a61f04d2813119bc45c9d34 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 21 Jul 2021 17:23:09 +0000 Subject: [PATCH 52/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index ca4d1aa..0b2ed71 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.8 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jul 21 2021 Fedora Release Engineering - 1.01.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild + * Mon Jun 28 2021 Denis Arnaud - 1.01.8-1 - Upstream update (BZ#1976545) From 41f84b51e9f997dd053a1d9f5ce60caa2a7e9de1 Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Sat, 7 Aug 2021 03:20:56 +0100 Subject: [PATCH 53/78] Rebuilt for Boost 1.76 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 0b2ed71..272acb3 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.8 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Sat Aug 07 2021 Jonathan Wakely - 1.01.8-3 +- Rebuilt for Boost 1.76 + * Wed Jul 21 2021 Fedora Release Engineering - 1.01.8-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild From 9fb54fc569e442f68e86fb22a94877e63525d7d7 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jan 2022 21:03:34 +0000 Subject: [PATCH 54/78] - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 272acb3..42903db 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.8 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jan 19 2022 Fedora Release Engineering - 1.01.8-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild + * Sat Aug 07 2021 Jonathan Wakely - 1.01.8-3 - Rebuilt for Boost 1.76 From 941b07e4fb42a19123fed73eb9f4fb35cbba1311 Mon Sep 17 00:00:00 2001 From: Thomas Rodgers Date: Wed, 4 May 2022 11:37:28 +0200 Subject: [PATCH 55/78] Rebuilt for Boost 1.78 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 42903db..31ebb22 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.8 -Release: 4%{?dist} +Release: 5%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed May 04 2022 Thomas Rodgers - 1.01.8-5 +- Rebuilt for Boost 1.78 + * Wed Jan 19 2022 Fedora Release Engineering - 1.01.8-4 - Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild From ce889e623dc9aef682a6f46e425799734609a2e8 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 10 Jul 2022 22:27:26 +0200 Subject: [PATCH 56/78] Upgraded to v1.01.9 --- airtsp.spec | 161 +--------------------------------------------------- sources | 2 +- 2 files changed, 4 insertions(+), 159 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 31ebb22..f0d3dd2 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -3,8 +3,8 @@ # Name: airtsp -Version: 1.01.8 -Release: 5%{?dist} +Version: 1.01.9 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,159 +106,4 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog -* Wed May 04 2022 Thomas Rodgers - 1.01.8-5 -- Rebuilt for Boost 1.78 - -* Wed Jan 19 2022 Fedora Release Engineering - 1.01.8-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_36_Mass_Rebuild - -* Sat Aug 07 2021 Jonathan Wakely - 1.01.8-3 -- Rebuilt for Boost 1.76 - -* Wed Jul 21 2021 Fedora Release Engineering - 1.01.8-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_35_Mass_Rebuild - -* Mon Jun 28 2021 Denis Arnaud - 1.01.8-1 -- Upstream update (BZ#1976545) - -* Mon Jan 25 2021 Fedora Release Engineering - 1.01.7-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild - -* Fri Jan 22 2021 Jonathan Wakely - 1.01.7-7 -- Rebuilt for Boost 1.75 - -* Sun Aug 09 2020 Denis Arnaud - 1.01.7-6 -- Removed the work around for document directory - -* Fri Jul 31 2020 Fedora Release Engineering - 1.01.7-5 -- Second attempt - Rebuilt for - https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Mon Jul 27 2020 Fedora Release Engineering - 1.01.7-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild - -* Sat Jun 06 2020 Denis Arnaud - 1.01.7-3 -- Rebuilt for SOCI 4.0.1-alpha2 - -* Wed Jun 03 2020 Denis Arnaud - 1.01.7-2 -- Rebuilt for Boost 1.73 - -* Sun May 31 2020 Denis Arnaud - 1.01.7-1 -- Upstream update - -* Tue May 26 2020 Miro Hrončok - 1.01.6-2 -- Rebuilt for Python 3.9 - -* Thu Feb 06 2020 Denis Arnaud - 1.01.6-1 -- Fixed the pkg-config issue - -* Tue Jan 28 2020 Fedora Release Engineering - 1.01.5-4 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild - -* Mon Aug 19 2019 Miro Hrončok - 1.01.5-3 -- Rebuilt for Python 3.8 - -* Wed Jul 24 2019 Fedora Release Engineering - 1.01.5-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild - -* Thu Jul 11 2019 Denis Arnaud - 1.01.5-1 -- CMake support files updated for Python 3.8 - -* Thu Jan 31 2019 Fedora Release Engineering - 1.01.4-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild - -* Thu Jan 24 2019 Jonathan Wakely - 1.01.4-2 -- Rebuilt for Boost 1.69 - -* Thu Jan 17 2019 Denis Arnaud - 1.01.4-1 -- Upstream update - -* Thu Jul 12 2018 Fedora Release Engineering - 1.01.3-10 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild - -* Thu May 10 2018 Jonathan Wakely - .3-9 -- Add BuildRequires: boost-python2-devel to fix build with boost-1.66.0-7.fc29 - -* Wed Feb 07 2018 Fedora Release Engineering - 1.01.3-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild - -* Tue Jan 23 2018 Jonathan Wakely - 1.01.3-7 -- Rebuilt for Boost 1.66 - -* Wed Aug 02 2017 Fedora Release Engineering - 1.01.3-6 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Binutils_Mass_Rebuild - -* Wed Jul 26 2017 Fedora Release Engineering - 1.01.3-5 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild - -* Mon Jul 24 2017 Björn Esser - 1.01.3-4 -- Rebuilt for Boost 1.64 - -* Mon May 15 2017 Fedora Release Engineering - 1.01.3-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_27_Mass_Rebuild - -* Fri Feb 10 2017 Fedora Release Engineering - 1.01.3-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild - -* Fri Jan 13 2017 Denis Arnaud 1.01.3-1 -- Fixed a compatibility issue with C++11 with std::istringstream. -BZ #1307310 - -* Thu Jan 12 2017 Igor Gnatenko - 1.01.2-9 -- Rebuild for readline 7.x - -* Wed Feb 03 2016 Fedora Release Engineering - 1.01.2-8 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild - -* Mon Jan 18 2016 Jonathan Wakely - 1.01.2-7 -- Rebuilt for Boost 1.60 - -* Sun Aug 30 2015 Jonathan Wakely 1.01.2-6 -- Patched and rebuilt for Boost 1.59 - -* Sat Aug 29 2015 Denis Arnaud - 1.01.2-5 -- Mass rebuild - -* Wed Jul 29 2015 Fedora Release Engineering - 1.01.2-4 -- Rebuilt for https://fedoraproject.org/wiki/Changes/F23Boost159 - -* Wed Jul 22 2015 David Tardon - 1.01.2-3 -- rebuild for Boost 1.58 - -* Tue Jun 16 2015 Fedora Release Engineering - 1.01.2-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild - -* Sat Jun 13 2015 Denis Arnaud - 1.01.2-1 -- Aligned on StdAir for the CMake helper files. - -* Sat Apr 18 2015 Denis Arnaud - 1.01.1-2 -- On Fedora 22+, ZeroMQ v2 is no longer the default. - -* Mon Aug 12 2013 Denis Arnaud - 1.01.1-1 -- Took into account feedback from review request (BZ#972431): - airtsp-config now supports multilib (32 and 64bit versions). -- Upstream update - -* Mon Jul 29 2013 Denis Arnaud - 1.01.0-3 -- Fixed the docdir issue, following the F20 System Wide Change -- Rebuild for boost 1.54.0 - -* Wed Jun 12 2013 Denis Arnaud 1.01.0-2 -- Added a dependency on graphviz and texlive-utils (epstopdf), so as - build the documentation with figures - -* Sat Jun 08 2013 Denis Arnaud 1.01.0-1 -- Renamed the package, from AirSched to AirTSP, due to trademark issue - with Plancor - -* Wed Oct 26 2011 Denis Arnaud 0.1.2-1 -- Upstream update - -* Sat Aug 20 2011 Denis Arnaud 0.1.1-1 -- Upstream update -- Took into account the feedback from various review requests (bugs #732205, - #728649, #732218) - -* Sat Aug 20 2011 Denis Arnaud 0.1.0-1 -- First RPM release - +%autochangelog diff --git a/sources b/sources index aaca6f4..d8c2720 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.8.tar.gz) = 3a162e83e343e3d691606ea59c4c15c6a9fae59f0098ab6466eb8d41aa80b43a6a96c8a60730678d17752a80b945782b750d9677fed093e672488f4d68aa06b7 +SHA512 (airtsp-1.01.9.tar.gz) = 90567d67f33729de5aba47670165b8a13b7c8ee210168872bbca3b07f7f35ad82f94a4b0a36da8161d7b549ef033b732b08213e8ca3e5fb2cf3ef3730001e5c6 From d26dc71b0c532474328ecb8dbb8d820ad491a8ea Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 20 Jul 2022 20:34:44 +0000 Subject: [PATCH 57/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index f0d3dd2..21dc05a 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.9 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,4 +106,7 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jul 20 2022 Fedora Release Engineering - 1.01.9-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild + %autochangelog From 2bd43abacfadd19cedfb16d48b34c0224e853d8a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 18 Jan 2023 21:32:02 +0000 Subject: [PATCH 58/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 21dc05a..6c3961e 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.9 -Release: 2%{?dist} +Release: 3%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jan 18 2023 Fedora Release Engineering - 1.01.9-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild + * Wed Jul 20 2022 Fedora Release Engineering - 1.01.9-2 - Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild From 7af78bb75a002bad244f44dc21f48c5b052e5d4d Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Mon, 20 Feb 2023 21:45:48 +0000 Subject: [PATCH 59/78] Rebuilt for Boost 1.81 --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 6c3961e..8d27b0a 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.9 -Release: 3%{?dist} +Release: 4%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon Feb 20 2023 Jonathan Wakely - 1.01.9-4 +- Rebuilt for Boost 1.81 + * Wed Jan 18 2023 Fedora Release Engineering - 1.01.9-3 - Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild From b7f80150e96314611a579fafff29f4b40f1f3220 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 1 May 2023 17:51:38 +0200 Subject: [PATCH 60/78] Upstream upgrade --- airtsp.spec | 14 ++++++-------- sources | 2 +- 2 files changed, 7 insertions(+), 9 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 8d27b0a..94df171 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -3,8 +3,8 @@ # Name: airtsp -Version: 1.01.9 -Release: 4%{?dist} +Version: 1.01.10 +Release: 1%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,13 +106,11 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Mon May 01 2023 Denis Arnaud - 1.01.10-1 +- Upstream upgrade + * Mon Feb 20 2023 Jonathan Wakely - 1.01.9-4 - Rebuilt for Boost 1.81 -* Wed Jan 18 2023 Fedora Release Engineering - 1.01.9-3 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_38_Mass_Rebuild - -* Wed Jul 20 2022 Fedora Release Engineering - 1.01.9-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_37_Mass_Rebuild - %autochangelog + diff --git a/sources b/sources index d8c2720..5438af2 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.9.tar.gz) = 90567d67f33729de5aba47670165b8a13b7c8ee210168872bbca3b07f7f35ad82f94a4b0a36da8161d7b549ef033b732b08213e8ca3e5fb2cf3ef3730001e5c6 +SHA512 (airtsp-1.01.10.tar.gz) = 8804b68e623e41c71494d49ef2cd0a56f5481c086b9cee580d1f84a9ecf66b34fba401145e9b634ef2afefc5c98fc4739f6ba436cd3bce85e163777b8b03a2e4 From fa1fcae7ad0519c2cb103653b8406c99281abcf0 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 19 Jul 2023 13:03:25 +0000 Subject: [PATCH 61/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild Signed-off-by: Fedora Release Engineering --- airtsp.spec | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 94df171..d2299a1 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -4,7 +4,7 @@ # Name: airtsp Version: 1.01.10 -Release: 1%{?dist} +Release: 2%{?dist} Summary: C++ Simulated Airline Travel Solution Provider Library @@ -106,6 +106,9 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog +* Wed Jul 19 2023 Fedora Release Engineering - 1.01.10-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild + * Mon May 01 2023 Denis Arnaud - 1.01.10-1 - Upstream upgrade From c68b3047f60b037c74ce457bf63ab84097693100 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 13 Nov 2023 18:46:07 +0100 Subject: [PATCH 62/78] Modernized the spec file --- airtsp.spec | 32 +++++++++----------------------- sources | 2 +- 2 files changed, 10 insertions(+), 24 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index d2299a1..a1601d2 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,25 +1,21 @@ -# Force out of source build -%undefine __cmake_in_source_build - # Name: airtsp Version: 1.01.10 -Release: 2%{?dist} +Release: %autorelease Summary: C++ Simulated Airline Travel Solution Provider 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} aims at providing a clean API and a simple implementation, as @@ -29,7 +25,7 @@ in the real-world of Airline IT operations. %{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 Schedule Management, mainly for simulation purpose. @@ -61,8 +57,7 @@ online (https://%{name}.org). %prep -%autosetup -n %{name}-%{name}-%{version} - +%autosetup %build %cmake @@ -90,13 +85,13 @@ 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 %{_datadir}/aclocal/%{name}.m4 %dir %{_datadir}/%{name} -%{_datadir}/%{name}/CMake +%{_datadir}/%{name}/CMake/ %{_mandir}/man1/%{name}-config.1.* %{_mandir}/man3/%{name}-library.3.* @@ -106,14 +101,5 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS} %changelog -* Wed Jul 19 2023 Fedora Release Engineering - 1.01.10-2 -- Rebuilt for https://fedoraproject.org/wiki/Fedora_39_Mass_Rebuild - -* Mon May 01 2023 Denis Arnaud - 1.01.10-1 -- Upstream upgrade - -* Mon Feb 20 2023 Jonathan Wakely - 1.01.9-4 -- Rebuilt for Boost 1.81 - %autochangelog diff --git a/sources b/sources index 5438af2..a3da6fa 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.10.tar.gz) = 8804b68e623e41c71494d49ef2cd0a56f5481c086b9cee580d1f84a9ecf66b34fba401145e9b634ef2afefc5c98fc4739f6ba436cd3bce85e163777b8b03a2e4 +SHA512 (airtsp-1.01.10.tar.gz) = d9cef954d40efe2179b30fddbefa4b587170d8e175dca8bf285fe3d03e9db82f6571e213dd95cabc56bd023e889ddce9c72d498b80471c57972dafdc32240555 From 4f5828f3a90c428f862a8fef8319f228338043e9 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 13 Nov 2023 18:49:16 +0100 Subject: [PATCH 63/78] Modernized the spec file --- airtsp.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index a1601d2..4a762d9 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -96,7 +96,7 @@ 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 From c30322ffdbf34bf5e3b223c70cf62dc90d62ea5f Mon Sep 17 00:00:00 2001 From: Jonathan Wakely Date: Thu, 18 Jan 2024 05:05:49 +0000 Subject: [PATCH 64/78] Rebuilt for Boost 1.83 From 4a55994d00d622a9da14ebf3fdb258dd059a1baf Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 19 Jan 2024 12:29:19 +0000 Subject: [PATCH 65/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 948e6c993bbc222413d89818d413e32718acefda Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Mon, 22 Jan 2024 22:49:17 +0000 Subject: [PATCH 66/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_40_Mass_Rebuild From 44afac8bcf607c81b09594844c3c72712ff36e57 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sat, 23 Mar 2024 22:58:39 +0100 Subject: [PATCH 67/78] Upstream upgrade --- airtsp.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 4a762d9..409a087 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,6 +1,6 @@ # Name: airtsp -Version: 1.01.10 +Version: 1.01.11 Release: %autorelease Summary: C++ Simulated Airline Travel Solution Provider Library diff --git a/sources b/sources index a3da6fa..94cc021 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.10.tar.gz) = d9cef954d40efe2179b30fddbefa4b587170d8e175dca8bf285fe3d03e9db82f6571e213dd95cabc56bd023e889ddce9c72d498b80471c57972dafdc32240555 +SHA512 (airtsp-1.01.11.tar.gz) = 3b555616ff64de9a41bff7296fc4ed9cacbff11c92b0b9debef7e472ed120bf5e81de5b32680947ff34766278af14099d3780d404cda3df92561086d0a5f32d2 From 7d3b2094d78f7ad50760c2749d589d1623cab69a Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 17 Jul 2024 16:45:39 +0000 Subject: [PATCH 68/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_41_Mass_Rebuild From 137dc951b15191aa271e4ea34d237f397defc360 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Thu, 16 Jan 2025 10:45:57 +0000 Subject: [PATCH 69/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_42_Mass_Rebuild From d50ffc14cd4a2c6ea3e8c300f98c0615ba167a0a Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 27 Jan 2025 20:00:33 +0100 Subject: [PATCH 70/78] Upstream update --- airtsp.spec | 3 ++- sources | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 409a087..7a12758 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,6 +1,6 @@ # Name: airtsp -Version: 1.01.11 +Version: 1.01.12 Release: %autorelease Summary: C++ Simulated Airline Travel Solution Provider 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: mysql-devel BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel BuildRequires: pkgconfig(readline) diff --git a/sources b/sources index 94cc021..f929197 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.11.tar.gz) = 3b555616ff64de9a41bff7296fc4ed9cacbff11c92b0b9debef7e472ed120bf5e81de5b32680947ff34766278af14099d3780d404cda3df92561086d0a5f32d2 +SHA512 (airtsp-1.01.12.tar.gz) = c47602760fc68b57f6f70f0d2152a963310ba59bfa17f3949b7f72506eedaecdbbd54a6e1ad536e1851791f8ae6d328b49a250b4204892b6138e907439d9dd29 From 7b464e64cbfa348975c09fdf171f628281ebfcf3 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 31 Mar 2025 00:35:54 +0200 Subject: [PATCH 71/78] Upstream upgrade --- airtsp.spec | 7 ++++--- sources | 2 +- 2 files changed, 5 insertions(+), 4 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 7a12758..0d8dffd 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,6 +1,6 @@ # Name: airtsp -Version: 1.01.12 +Version: 1.01.13 Release: %autorelease Summary: C++ Simulated Airline Travel Solution Provider Library @@ -13,6 +13,7 @@ BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: boost-devel BuildRequires: mysql-devel +BuildRequires: soci-devel BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel BuildRequires: pkgconfig(readline) @@ -86,13 +87,13 @@ 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 %{_libdir}/pkgconfig/%{name}.pc +%{_libdir}/cmake/%{name}/ %{_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 f929197..2ecade6 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.12.tar.gz) = c47602760fc68b57f6f70f0d2152a963310ba59bfa17f3949b7f72506eedaecdbbd54a6e1ad536e1851791f8ae6d328b49a250b4204892b6138e907439d9dd29 +SHA512 (airtsp-1.01.13.tar.gz) = f85a9b4ef5b581ae7dc7fae3357bc6e59862bc85f74f057a4b06e2cad51ff83f1d3c59a477beecc5dafb155a0659b56e4179cad1d6d47110ed5b7c0a31460d35 From ee1e9e5c60f09c6cc2d7f9edd0e0e1cd46c21157 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Mon, 31 Mar 2025 16:27:10 +0200 Subject: [PATCH 72/78] Upstream upgrade --- airtsp.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 0d8dffd..974e060 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,6 +1,6 @@ # Name: airtsp -Version: 1.01.13 +Version: 1.01.14 Release: %autorelease Summary: C++ Simulated Airline Travel Solution Provider Library diff --git a/sources b/sources index 2ecade6..dd409e5 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.13.tar.gz) = f85a9b4ef5b581ae7dc7fae3357bc6e59862bc85f74f057a4b06e2cad51ff83f1d3c59a477beecc5dafb155a0659b56e4179cad1d6d47110ed5b7c0a31460d35 +SHA512 (airtsp-1.01.14.tar.gz) = 3d553242ca513298e3232aed3638d4559352fee825f02216c494cc5e60da2d8a1ef174ad8e4859ec49aae2cb9cc4dd09fa806c64ff0b3506d4dd5ded2ffa585a From 76a44985772848e76e85110f1baf3c8e8999313c Mon Sep 17 00:00:00 2001 From: Pavol Sloboda Date: Mon, 5 May 2025 16:28:07 +0200 Subject: [PATCH 73/78] Removed the redundant BuildRequires of mysql-devel 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. --- airtsp.spec | 1 - 1 file changed, 1 deletion(-) diff --git a/airtsp.spec b/airtsp.spec index 974e060..6a1b7fd 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -12,7 +12,6 @@ Source0: %{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}. BuildRequires: gcc-c++ BuildRequires: cmake BuildRequires: boost-devel -BuildRequires: mysql-devel BuildRequires: soci-devel BuildRequires: soci-mysql-devel BuildRequires: soci-sqlite3-devel From a3de03c79ddee99b8ea88fb3cda9e8b87fb1b432 Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Wed, 23 Jul 2025 16:51:04 +0000 Subject: [PATCH 74/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_43_Mass_Rebuild From 627f33a81e49f6236c868c7e73a1f40fb550efae Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Sun, 7 Dec 2025 19:22:20 +0100 Subject: [PATCH 75/78] Initial setup of the repo --- .gitignore | 10 +++++ airtsp.spec | 106 ++++++++++++++++++++++++++++++++++++++++++++++++++++ sources | 1 + 3 files changed, 117 insertions(+) create mode 100644 airtsp.spec diff --git a/.gitignore b/.gitignore index e69de29..05bb18a 100644 --- a/.gitignore +++ b/.gitignore @@ -0,0 +1,10 @@ +/airtsp-*.tar.* +/airtsp-*.src.rpm +/airtsp-*.*.*/ +/clog +.build-*.*.log +/noarch/ +/x86_64/ +/i?86/ +/tarballs/ + diff --git a/airtsp.spec b/airtsp.spec new file mode 100644 index 0000000..6a1b7fd --- /dev/null +++ b/airtsp.spec @@ -0,0 +1,106 @@ +# +Name: airtsp +Version: 1.01.14 +Release: %autorelease + +Summary: C++ Simulated Airline Travel Solution Provider Library + +License: LGPL-2.1-or-later +URL: https://github.com/airsim/%{name} +Source0: %{url}/archive/refs/tags/v%{version}.tar.gz#/%{name}-%{version}.tar.gz + +BuildRequires: gcc-c++ +BuildRequires: cmake +BuildRequires: boost-devel +BuildRequires: soci-devel +BuildRequires: soci-mysql-devel +BuildRequires: soci-sqlite3-devel +BuildRequires: pkgconfig(readline) +BuildRequires: pkgconfig(stdair) + +%description +%{name} aims at providing a clean API and a simple implementation, as +a C++ library, of an Airline Schedule Management System. It is intended +to be used in simulated environments only: it is not designed to work +in the real-world of Airline IT operations. + +%{name} makes an extensive use of existing open-source libraries for +increased functionality, speed and accuracy. In particular the +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 Schedule Management, mainly for simulation purpose. + +%package devel +Summary: Header files, libraries and development helper tools for %{name} +Requires: %{name}%{?_isa} = %{version}-%{release} +Requires: pkgconfig + +%description devel +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 +Summary: HTML documentation for the %{name} library +BuildArch: noarch +BuildRequires: tex(latex), tex(sectsty.sty), tex(tocloft.sty), tex(xtab.sty) +BuildRequires: texlive-epstopdf +BuildRequires: doxygen +BuildRequires: ghostscript +BuildRequires: graphviz + +%description doc +This package contains HTML pages, as well as a PDF reference manual, +for %{name}. All that documentation is generated thanks to Doxygen +(https://doxygen.org). The content is the same as what can be browsed +online (https://%{name}.org). + + +%prep +%autosetup + +%build +%cmake +%cmake_build + +%install +%cmake_install + +# Remove the Doxygen installer +rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/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.md,AUTHORS} + +%check +#ctest + + +%files +%doc AUTHORS ChangeLog NEWS README.md +%license COPYING +%{_bindir}/%{name} +%{_libdir}/lib%{name}.so.* +%{_mandir}/man1/%{name}.1.* + +%files devel +%license COPYING +%{_includedir}/%{name}/ +%{_bindir}/%{name}-config +%{_libdir}/lib%{name}.so +%{_libdir}/pkgconfig/%{name}.pc +%{_libdir}/cmake/%{name}/ +%{_datadir}/aclocal/%{name}.m4 +%{_mandir}/man1/%{name}-config.1.* +%{_mandir}/man3/%{name}-library.3.* + +%files doc +%doc %{_docdir}/%{name}/ +%license COPYING + + +%changelog +%autochangelog + diff --git a/sources b/sources index e69de29..dd409e5 100644 --- a/sources +++ b/sources @@ -0,0 +1 @@ +SHA512 (airtsp-1.01.14.tar.gz) = 3d553242ca513298e3232aed3638d4559352fee825f02216c494cc5e60da2d8a1ef174ad8e4859ec49aae2cb9cc4dd09fa806c64ff0b3506d4dd5ded2ffa585a From 8fa3840ef90f92b9b9c1735d736628c14846ce4e Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Wed, 17 Dec 2025 11:55:18 +0100 Subject: [PATCH 76/78] Upstream upgrade --- airtsp.spec | 2 +- sources | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 6a1b7fd..3fa0aac 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,6 +1,6 @@ # Name: airtsp -Version: 1.01.14 +Version: 1.01.15 Release: %autorelease Summary: C++ Simulated Airline Travel Solution Provider Library diff --git a/sources b/sources index dd409e5..3aa4b79 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.14.tar.gz) = 3d553242ca513298e3232aed3638d4559352fee825f02216c494cc5e60da2d8a1ef174ad8e4859ec49aae2cb9cc4dd09fa806c64ff0b3506d4dd5ded2ffa585a +SHA512 (airtsp-1.01.15.tar.gz) = e86094834d410232e80100f994df45ef9472ca5b804b633078f692898f86427dac4f77801ffb9731fdb2b9a097d68efa75ecbbb8f71eb4d816b561bc7ebdd7d0 From 50eff46dd332b228612ae87a4581479b4818b231 Mon Sep 17 00:00:00 2001 From: Denis Arnaud Date: Thu, 25 Dec 2025 00:24:45 +0100 Subject: [PATCH 77/78] Upstream upgrade --- airtsp.spec | 3 ++- sources | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/airtsp.spec b/airtsp.spec index 3fa0aac..bd9e1d5 100644 --- a/airtsp.spec +++ b/airtsp.spec @@ -1,6 +1,6 @@ # Name: airtsp -Version: 1.01.15 +Version: 1.01.16 Release: %autorelease Summary: C++ Simulated Airline Travel Solution Provider Library @@ -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) diff --git a/sources b/sources index 3aa4b79..01d37eb 100644 --- a/sources +++ b/sources @@ -1 +1 @@ -SHA512 (airtsp-1.01.15.tar.gz) = e86094834d410232e80100f994df45ef9472ca5b804b633078f692898f86427dac4f77801ffb9731fdb2b9a097d68efa75ecbbb8f71eb4d816b561bc7ebdd7d0 +SHA512 (airtsp-1.01.16.tar.gz) = 7facefa7b84777128b3193acb9dbef89cf7ddedf2d4cefdb90abc94d71db2ae7c3a253df23a353e8503b0e327fa0de316c130a2a5f6b01f6d9121538b32b6c6d From 528a84eee8db8454b83622326a7cac25785693de Mon Sep 17 00:00:00 2001 From: Fedora Release Engineering Date: Fri, 16 Jan 2026 03:32:29 +0000 Subject: [PATCH 78/78] Rebuilt for https://fedoraproject.org/wiki/Fedora_44_Mass_Rebuild