Compare commits
8 commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
1fc7197ce8 | ||
|
|
b92ee823eb | ||
|
|
8dd921689f | ||
|
|
4dad984d1e | ||
|
|
3d921a9fd1 | ||
|
|
22d8ca3058 | ||
|
|
78d158f0aa | ||
|
|
f80c4517b3 |
3 changed files with 210 additions and 0 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
|
@ -0,0 +1,9 @@
|
|||
/airinv-*.tar.*
|
||||
/airinv-*.src.rpm
|
||||
/airinv-*.*.*/
|
||||
/clog
|
||||
.build-*.*.log
|
||||
/noarch/
|
||||
/x86_64/
|
||||
/i?86/
|
||||
/tarballs/
|
||||
200
airinv.spec
Normal file
200
airinv.spec
Normal file
|
|
@ -0,0 +1,200 @@
|
|||
#
|
||||
%global mydocs __tmp_docdir
|
||||
#
|
||||
Name: airinv
|
||||
Version: 1.00.2
|
||||
Release: 1%{?dist}
|
||||
|
||||
Summary: C++ Simulated Airline Inventory Management System library
|
||||
|
||||
Group: System Environment/Libraries
|
||||
License: LGPLv2+
|
||||
URL: http://github.com/airsim/%{name}
|
||||
Source0: %{url}/archive/%{name}-%{version}.tar.gz
|
||||
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
||||
|
||||
BuildRequires: cmake3, cmake, python-devel, python3-devel, boost-python36-devel
|
||||
BuildRequires: boost-devel, soci-mysql-devel, soci-sqlite3-devel
|
||||
# FIXME: Workaround to RHBZ#1190463
|
||||
%if 0%{?rhel} >= 7
|
||||
BuildRequires: zeromq-devel, cppzmq-devel
|
||||
%else
|
||||
BuildRequires: zeromq-devel
|
||||
%endif
|
||||
BuildRequires: readline-devel
|
||||
BuildRequires: stdair-devel, airrac-devel, rmol-devel, python3-rmol, sevmgr-devel
|
||||
BuildRequires: /usr/bin/epstopdf
|
||||
|
||||
|
||||
%description
|
||||
%{name} is a C++ library of airline inventory management 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 Inventory 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)
|
||||
BuildRequires: doxygen, ghostscript
|
||||
|
||||
%description doc
|
||||
This package contains HTML pages, as well as a PDF reference manual,
|
||||
for %{name}. All that documentation is generated thanks to Doxygen
|
||||
(http://doxygen.org). The content is the same as what can be browsed
|
||||
online (http://%{name}.org).
|
||||
|
||||
|
||||
%prep
|
||||
%autosetup -n %{name}-%{name}-%{version}
|
||||
|
||||
%build
|
||||
%cmake3 .
|
||||
make %{?_smp_mflags}
|
||||
|
||||
%install
|
||||
rm -rf $RPM_BUILD_ROOT
|
||||
make install DESTDIR=$RPM_BUILD_ROOT
|
||||
|
||||
mkdir -p %{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}/{NEWS,README.md,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.md
|
||||
%{_bindir}/%{name}
|
||||
%{_bindir}/%{name}_parseInventory
|
||||
%{_bindir}/AirInvClient
|
||||
%{_bindir}/AirInvServer
|
||||
%{_libdir}/lib%{name}.so.*
|
||||
%{_mandir}/man1/%{name}.1.*
|
||||
%{_mandir}/man1/%{name}_parseInventory.1.*
|
||||
%{_mandir}/man1/AirInvClient.1.*
|
||||
%{_mandir}/man1/AirInvServer.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 May 08 2020 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.2-1
|
||||
- Rebuild for SOCI 4.0.0
|
||||
|
||||
* Sat Nov 10 2018 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.1-3
|
||||
- Rebuilt for ZeroMQ 4.1.4-5 (BZ#1647583)
|
||||
|
||||
* Sat Jun 18 2016 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.1-2
|
||||
- Rebuilt for ZeroMQ 4.1.4 (BZ#1301163)
|
||||
|
||||
* Sun Jun 14 2015 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.1-1
|
||||
- Removed the dependency on ZeroMQ (only AirInv is dependent on it, not StdAir)
|
||||
|
||||
* Mon May 04 2015 Kalev Lember <kalevlember@gmail.com> - 1.00.0-13
|
||||
- Rebuilt for GCC 5 C++11 ABI change
|
||||
|
||||
* Sun Feb 08 2015 Ralf Corsépius <corsepiu@fedoraproject.org> - 1.00.0-12
|
||||
- BR: zeromq2-devel (Work around RHBZ#1190463; Fix boost-1.57 FTBFS).
|
||||
- BR: /usr/bin/epstopdf.
|
||||
|
||||
* Thu Jan 29 2015 Petr Machata <pmachata@redhat.com> - 1.00.0-11
|
||||
- Rebuild for boost 1.57.0
|
||||
- Cmake should look for zmq.h, not zmq.hpp (stdair-1.00.1-cmake.patch)
|
||||
|
||||
* Fri Aug 15 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.00.0-10
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
||||
|
||||
* Sat Jun 07 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.00.0-9
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
||||
|
||||
* Sun May 25 2014 Petr Machata <pmachata@redhat.com> - 1.00.0-8
|
||||
- Rebuild for boost 1.55.0
|
||||
|
||||
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 1.00.0-7
|
||||
- rebuild for boost 1.55.0
|
||||
|
||||
* Sat Aug 03 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.00.0-6
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
||||
|
||||
* Mon Jul 29 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.0-5
|
||||
- Fixed the docdir issue, following the F20 System Wide Change
|
||||
- Rebuild for boost 1.54.0
|
||||
|
||||
* Wed May 22 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.0-4
|
||||
- Rebuild for Soci-3.2.1
|
||||
|
||||
* Sun Feb 10 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.0-3
|
||||
- Rebuild for Boost-1.53.0
|
||||
|
||||
* Sat Feb 09 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.0-2
|
||||
- Rebuild for Boost-1.53.0
|
||||
|
||||
* Tue Dec 25 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> 1.00.0-1
|
||||
- Upstream update
|
||||
|
||||
* Sun Aug 12 2012 Kevin Fenzi <kevin@scrye.com> - 0.1.2-5
|
||||
- Rebuilt for new boost
|
||||
|
||||
* Wed Jul 18 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-4
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
||||
|
||||
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-3
|
||||
- Rebuilt for c++ ABI breakage
|
||||
|
||||
* Thu Jan 12 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.2-2
|
||||
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
||||
|
||||
* Sun Dec 04 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.1.2-1
|
||||
- Upstream update. Took into account review request (#750099)
|
||||
|
||||
* Sun Oct 30 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.1.1-1
|
||||
- First RPM release
|
||||
|
||||
1
sources
1
sources
|
|
@ -0,0 +1 @@
|
|||
SHA512 (airinv-1.00.2.tar.gz) = 96894fb2640913d538c291772f1bb63fb501622ee1c8378e41a5b02b9c71282c671d14fa736a1d2c961230a3a61bc243f3418b47c2c28506e853090e4d04d695
|
||||
Loading…
Add table
Add a link
Reference in a new issue