240 lines
7.8 KiB
RPMSpec
240 lines
7.8 KiB
RPMSpec
#
|
|
%global mydocs __tmp_docdir
|
|
#
|
|
Name: rmol
|
|
Version: 1.00.0
|
|
Release: 11%{?dist}
|
|
|
|
Summary: C++ library of Revenue Management and Optimisation classes and functions
|
|
|
|
Group: System Environment/Libraries
|
|
License: LGPLv2+
|
|
URL: http://%{name}.sourceforge.net
|
|
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
BuildRequires: cmake, python-devel
|
|
BuildRequires: boost-devel, soci-mysql-devel, zeromq-devel
|
|
BuildRequires: readline-devel, stdair-devel, airrac-devel
|
|
|
|
|
|
%description
|
|
%{name} is a C++ library of Revenue Management and Optimisation classes
|
|
and functions. Typically, that library may be used by service providers
|
|
(e.g., airlines offering flight seats, hotels offering rooms, rental car
|
|
companies offering rental days, broadcasting company offering advertisement
|
|
slots, theaters offering seats, etc.) to help in optimizing their revenues from
|
|
seat capacities.
|
|
Most of the algorithms implemented are public and documented in the following
|
|
book:
|
|
The Theory and practice of Revenue Management, by Kalyan T. Talluri and
|
|
Garrett J. van Ryzin, Kluwer Academic Publishers, 2004, ISBN 1-4020-7701-7
|
|
|
|
%{name} makes an extensive use of existing open-source libraries for
|
|
increased functionality, speed and accuracy. In particular the
|
|
Boost (C++ Standard Extensions: http://www.boost.org) library is used.
|
|
|
|
Install the %{name} package if you need a library of basic C++ objects
|
|
for Airline Revenue Management (RM), 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
|
|
%setup -q
|
|
|
|
|
|
%build
|
|
%cmake .
|
|
make %{?_smp_mflags}
|
|
|
|
%install
|
|
rm -rf $RPM_BUILD_ROOT
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
|
|
|
mkdir -p %{mydocs}
|
|
mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs}
|
|
rm -f %{mydocs}/html/installdox
|
|
|
|
# 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}
|
|
%{_bindir}/%{name}_drawBPC
|
|
%{_bindir}/%{name}_extractBPC
|
|
%{_libdir}/lib%{name}.so.*
|
|
%{_mandir}/man1/%{name}.1.*
|
|
%{_mandir}/man1/%{name}_drawBPC.1.*
|
|
%{_mandir}/man1/%{name}_extractBPC.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
|
|
* Thu Jan 29 2015 Petr Machata <pmachata@redhat.com> - 1.00.0-11
|
|
- Rebuild for boost 1.57.0
|
|
|
|
* Mon Aug 18 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.00.0-10
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild
|
|
|
|
* Sun Jun 15 2014 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.0-9
|
|
- Rebuild for ARM architecture.
|
|
|
|
* Sun Jun 08 2014 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.00.0-8
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild
|
|
|
|
* Fri May 23 2014 David Tardon <dtardon@redhat.com> - 1.00.0-7
|
|
- rebuild for boost 1.55.0
|
|
|
|
* Sun Aug 04 2013 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.00.0-6
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_20_Mass_Rebuild
|
|
|
|
* Tue Jul 30 2013 Petr Machata <pmachata@redhat.com> - 1.00.0-5
|
|
- Rebuild for boost 1.54.0
|
|
|
|
* Mon Jul 29 2013 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.0-4
|
|
- 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-3
|
|
- Rebuild for Soci-3.2.1
|
|
|
|
* 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.25.3-6
|
|
- Rebuild for new boost
|
|
|
|
* Sat Jul 21 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25.3-5
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild
|
|
|
|
* Tue Feb 28 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25.3-4
|
|
- Rebuilt for c++ ABI breakage
|
|
|
|
* Sat Jan 14 2012 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.25.3-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild
|
|
|
|
* Mon Dec 05 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.25.3-1
|
|
- Upstream integration
|
|
|
|
* Sun Nov 20 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.25.2-2
|
|
- Rebuild for the new Boost-1.48.0
|
|
|
|
* Wed Nov 02 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.25.2-1
|
|
- Upstream integration
|
|
|
|
* Sat Oct 29 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.25.0-2
|
|
- Fixed the doc sub-package (no)arch for EPEL
|
|
|
|
* Sun Oct 23 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.25.0-1
|
|
- Upstream integration
|
|
|
|
* Sat Jul 23 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.23.1-5
|
|
- Rebuild for Boost-1.47.0-2
|
|
|
|
* Mon Apr 25 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.23.1-4
|
|
- Rebuild for Boost-1.46.1-2
|
|
|
|
* Wed Feb 09 2011 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.23.1-3
|
|
- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild
|
|
|
|
* Sun Feb 06 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.23.1-2
|
|
- rebuild for new boost
|
|
|
|
* Tue Sep 07 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.23.1-1
|
|
- Upstream integration
|
|
- Fixed bug #631080 (https://bugzilla.redhat.com/show_bug.cgi?id=631080)
|
|
|
|
* Wed Jul 28 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.23.0-3
|
|
- Added a patch to fix Rawhide build error
|
|
|
|
* Fri Jan 22 2010 Rahul Sundaram <sundaram@fedoraproject.org> 0.23.0-2
|
|
- Rebuild for Boost soname bump
|
|
|
|
* Tue Sep 15 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.23.0-1
|
|
- Upstream integration
|
|
|
|
* Mon May 11 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.22.0-1
|
|
- Upstream integration
|
|
|
|
* Sun May 10 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.21.0-3
|
|
- Removed dependencies on specific versions (for EL 5)
|
|
|
|
* Sat May 09 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.21.0-2
|
|
- Removed dependencies on specific versions (for EL 5)
|
|
|
|
* Mon May 04 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.21.0-1
|
|
- Upstream integration
|
|
|
|
* Sun May 03 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.20.0-3
|
|
- Added dependency on libicu for Boost 1.37 (Fedora 11)
|
|
|
|
* Sun May 03 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.20.0-2
|
|
- Added dependency on libicu-devel for Boost 1.37 (Fedora 11)
|
|
|
|
* Sun May 03 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.20.0-1
|
|
- Upstream integration
|
|
|
|
* Wed Mar 25 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.19.0-1
|
|
- RPM release for Fedora 10
|
|
|
|
* Wed Mar 4 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.18.0-1
|
|
- Second RPM release
|