2009-04-14 20:33:34 +00:00
|
|
|
#
|
2010-07-30 18:48:27 +00:00
|
|
|
%global mydocs __tmp_docdir
|
2009-04-14 20:33:34 +00:00
|
|
|
#
|
|
|
|
Name: rmol
|
2011-10-23 20:35:14 +00:00
|
|
|
Version: 0.25.0
|
|
|
|
Release: 1%{?dist}
|
2009-04-14 20:33:34 +00:00
|
|
|
|
|
|
|
Summary: C++ library of Revenue Management and Optimisation classes and functions
|
|
|
|
|
|
|
|
Group: System Environment/Libraries
|
2011-10-23 20:35:14 +00:00
|
|
|
License: LGPLv2+
|
2009-04-14 20:33:34 +00:00
|
|
|
URL: http://%{name}.sourceforge.net
|
2010-09-07 18:24:59 +00:00
|
|
|
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
|
2011-10-23 20:35:14 +00:00
|
|
|
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
|
|
|
|
|
|
|
|
BuildRequires: cmake, python-devel, boost-devel
|
|
|
|
BuildRequires: readline-devel, stdair-devel, airrac-devel
|
2010-07-30 18:48:27 +00:00
|
|
|
|
2009-04-14 20:33:34 +00:00
|
|
|
|
|
|
|
%description
|
2011-10-23 20:35:14 +00:00
|
|
|
%{name} is a C++ library of Revenue Management and Optimisation classes
|
2009-04-14 20:33:34 +00:00
|
|
|
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 optimising 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
|
|
|
|
|
2011-10-23 20:35:14 +00:00
|
|
|
%{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.
|
2009-04-14 20:33:34 +00:00
|
|
|
|
|
|
|
%package devel
|
2011-10-23 20:35:14 +00:00
|
|
|
Summary: Header files, libraries and development helper tools for %{name}
|
2009-04-14 20:33:34 +00:00
|
|
|
Group: Development/Libraries
|
2011-10-23 20:35:14 +00:00
|
|
|
Requires: %{name}%{?_isa} = %{version}-%{release}
|
2009-04-14 20:33:34 +00:00
|
|
|
Requires: pkgconfig
|
|
|
|
Requires(post): info
|
|
|
|
Requires(preun): info
|
|
|
|
|
|
|
|
%description devel
|
2011-10-23 20:35:14 +00:00
|
|
|
This package contains the header files, shared libraries and
|
|
|
|
development helper tools for %{name}. If you would like to develop
|
2009-04-14 20:33:34 +00:00
|
|
|
programs using %{name}, you will need to install %{name}-devel.
|
|
|
|
|
2011-10-23 20:35:14 +00:00
|
|
|
%package doc
|
|
|
|
Summary: HTML documentation for the %{name} library
|
2009-04-14 20:33:34 +00:00
|
|
|
Group: Documentation
|
2011-10-23 20:35:14 +00:00
|
|
|
%{?fedora:BuildArch: noarch}
|
|
|
|
BuildRequires: tex(latex)
|
2009-05-10 00:22:10 +00:00
|
|
|
BuildRequires: doxygen, ghostscript
|
2009-04-14 20:33:34 +00:00
|
|
|
|
2011-10-23 20:35:14 +00:00
|
|
|
%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).
|
2009-04-14 20:33:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
%prep
|
|
|
|
%setup -q
|
|
|
|
|
|
|
|
|
|
|
|
%build
|
|
|
|
%configure --disable-static
|
|
|
|
make %{?_smp_mflags}
|
|
|
|
|
|
|
|
%install
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
make install DESTDIR=$RPM_BUILD_ROOT
|
2011-10-23 20:35:14 +00:00
|
|
|
|
2009-04-14 20:33:34 +00:00
|
|
|
%find_lang %{name}
|
2011-10-23 20:35:14 +00:00
|
|
|
|
|
|
|
# Remove unpackaged files from the buildroot
|
2009-04-14 20:33:34 +00:00
|
|
|
rm -f $RPM_BUILD_ROOT%{_infodir}/dir
|
2011-10-23 20:35:14 +00:00
|
|
|
|
|
|
|
mkdir -p %{mydocs}
|
2009-04-14 20:33:34 +00:00
|
|
|
mv $RPM_BUILD_ROOT%{_docdir}/%{name}-%{version}/html %{mydocs}
|
|
|
|
|
|
|
|
%clean
|
|
|
|
rm -rf $RPM_BUILD_ROOT
|
|
|
|
|
|
|
|
%post -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%postun -p /sbin/ldconfig
|
|
|
|
|
|
|
|
%post devel
|
|
|
|
/sbin/install-info %{_infodir}/%{name}-ref.info.* %{_infodir}/dir || :
|
|
|
|
|
|
|
|
%preun devel
|
|
|
|
if [ "$1" = 0 ]; then
|
|
|
|
/sbin/install-info --delete %{_infodir}/%{name}-ref.info.* %{_infodir}/dir || :
|
|
|
|
fi
|
|
|
|
|
|
|
|
%files -f %{name}.lang
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc AUTHORS ChangeLog COPYING NEWS README
|
|
|
|
%{_bindir}/%{name}
|
2011-10-23 20:35:14 +00:00
|
|
|
%{_libdir}/lib%{name}.so.*
|
|
|
|
%{_mandir}/man1/%{name}.1.*
|
2009-04-14 20:33:34 +00:00
|
|
|
|
|
|
|
%files devel
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%{_includedir}/%{name}
|
|
|
|
%{_bindir}/%{name}-config
|
|
|
|
%{_libdir}/lib%{name}.so
|
|
|
|
%{_libdir}/pkgconfig/%{name}.pc
|
|
|
|
%{_datadir}/aclocal/%{name}.m4
|
|
|
|
%{_infodir}/%{name}-ref.info.*
|
2011-10-23 20:35:14 +00:00
|
|
|
%dir %{_datadir}/%{name}
|
|
|
|
%{_datadir}/%{name}/CMake
|
2009-04-14 20:33:34 +00:00
|
|
|
%{_mandir}/man1/%{name}-config.1.*
|
2011-10-23 20:35:14 +00:00
|
|
|
%{_mandir}/man3/%{name}-library.3.*
|
2009-04-14 20:33:34 +00:00
|
|
|
|
|
|
|
%files doc
|
|
|
|
%defattr(-,root,root,-)
|
|
|
|
%doc %{mydocs}/html
|
2011-10-23 20:35:14 +00:00
|
|
|
%doc COPYING
|
2009-04-14 20:33:34 +00:00
|
|
|
|
|
|
|
|
|
|
|
%changelog
|
2011-10-23 20:35:14 +00:00
|
|
|
* Sun Oct 23 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.25.0-1
|
|
|
|
- Upstream integration
|
|
|
|
|
2011-07-23 09:12:49 +00:00
|
|
|
* Sat Jul 23 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.23.1-5
|
|
|
|
- Rebuild for Boost-1.47.0-2
|
|
|
|
|
2011-04-25 21:16:23 +00:00
|
|
|
* Mon Apr 25 2011 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 0.23.1-4
|
|
|
|
- Rebuild for Boost-1.46.1-2
|
|
|
|
|
2011-02-09 08:04:20 +00:00
|
|
|
* 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
|
|
|
|
|
2011-02-06 21:52:44 +00:00
|
|
|
* Sun Feb 06 2011 Thomas Spura <tomspur@fedoraproject.org> - 0.23.1-2
|
|
|
|
- rebuild for new boost
|
|
|
|
|
2010-09-07 18:24:59 +00:00
|
|
|
* 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)
|
|
|
|
|
2010-07-30 18:48:27 +00:00
|
|
|
* Wed Jul 28 2010 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.23.0-3
|
|
|
|
- Added a patch to fix Rawhide build error
|
|
|
|
|
2010-01-21 21:50:11 +00:00
|
|
|
* Fri Jan 22 2010 Rahul Sundaram <sundaram@fedoraproject.org> 0.23.0-2
|
|
|
|
- Rebuild for Boost soname bump
|
|
|
|
|
2009-09-26 16:29:28 +00:00
|
|
|
* Tue Sep 15 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.23.0-1
|
|
|
|
- Upstream integration
|
2009-07-27 03:05:22 +00:00
|
|
|
|
2009-06-06 16:53:50 +00:00
|
|
|
* 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)
|
|
|
|
|
2009-05-10 00:22:10 +00:00
|
|
|
* 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
|
|
|
|
|
2009-05-04 00:59:44 +00:00
|
|
|
* 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)
|
|
|
|
|
2009-05-04 00:44:17 +00:00
|
|
|
* 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)
|
|
|
|
|
2009-05-04 00:03:22 +00:00
|
|
|
* Sun May 03 2009 Denis Arnaud <denis.arnaud_fedora@m4x.org> 0.20.0-1
|
|
|
|
- Upstream integration
|
|
|
|
|
2009-04-14 20:33:34 +00:00
|
|
|
* Sun 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
|