Compare commits

..

13 Commits
rawhide ... el5

Author SHA1 Message Date
Denis Arnaud bce41642c5 Removed the dependency on ZeroMQ (only AirInv is dependent on it, not StdAir) 2015-06-08 01:24:18 +02:00
Denis Arnaud 2a2c795f1d Added tarballs/ to .gitignore 2015-06-07 19:52:39 +02:00
Denis Arnaud 56ef42ba86 Package creation 2012-12-25 16:23:49 +01:00
Denis Arnaud 2368d32433 Upstream update 2012-12-25 16:15:33 +01:00
Denis Arnaud cca97c5282 Removed unused parts (merged from the f18 branch) of the change-log. 2012-12-25 16:10:37 +01:00
Denis Arnaud 29fbf58540 Upstream update 2011-12-05 12:48:58 +01:00
Denis Arnaud f1cf175bfc Rebuilt for the new soci-3.1.0 and stdair-0.44.0 packages 2011-11-03 00:00:35 +01:00
Denis Arnaud 5ee67c77fd De-activated the CMake/CTest, as it does not currently work on EPEL. 2011-10-19 18:37:42 +02:00
Denis Arnaud 6e3e74ac93 Upstream update 2011-10-19 18:28:55 +02:00
Denis Arnaud e7ff93a33b Upstream update 2011-10-19 16:46:34 +02:00
Denis Arnaud 421221f8d8 Upstream update 2011-08-31 17:43:56 +03:00
Denis Arnaud 074ceba8bd First RPM release for that package. 2011-08-21 02:23:57 +02:00
Denis Arnaud 16218e0178 First RPM release for that package. 2011-08-21 02:22:47 +02:00
2 changed files with 60 additions and 33 deletions

View File

@ -1,21 +1,23 @@
#
%global mydocs __tmp_docdir
#
Name: airrac
Version: 1.00.7
Release: %autorelease
Version: 1.00.1
Release: 1%{?dist}
Summary: C++ Simulated Revenue Accounting (RAC) System 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
Group: System Environment/Libraries
License: LGPLv2+
URL: http://sourceforge.net/projects/%{name}/
Source0: http://downloads.sourceforge.net/%{name}/%{name}-%{version}.tar.bz2
BuildRoot: %(mktemp -ud %{_tmppath}/%{name}-%{version}-%{release}-XXXXXX)
BuildRequires: cmake, python26-devel
BuildRequires: boost148-devel, soci-mysql-devel, soci-sqlite3-devel
BuildRequires: readline-devel, ncurses-devel
BuildRequires: stdair-devel
BuildRequires: gcc-c++
BuildRequires: cmake
BuildRequires: boost-devel
BuildRequires: soci-mysql-devel
BuildRequires: soci-sqlite3-devel
BuildRequires: pkgconfig(readline)
BuildRequires: pkgconfig(stdair)
%description
%{name} is a C++ library of airline revenue accounting classes and
@ -23,13 +25,14 @@ 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: https://www.boost.org) library is used.
Boost (C++ Standard Extensions: http://www.boost.org) library is used.
Install the %{name} package if you need a library of basic C++ objects
for Airline Revenue Accounting, mainly for simulation purpose.
%package devel
Summary: Header files, libraries and development helper tools for %{name}
Group: Development/Libraries
Requires: %{name}%{?_isa} = %{version}-%{release}
Requires: pkgconfig
@ -40,50 +43,70 @@ 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: texlive-epstopdf
BuildRequires: doxygen
BuildRequires: ghostscript
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
(https://doxygen.org). The content is the same as what can be browsed
online (https://%{name}.org).
(http://doxygen.org). The content is the same as what can be browsed
online (http://%{name}.org).
%prep
%autosetup
%setup -q
%build
%cmake
%cmake_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
%cmake_install
rm -rf $RPM_BUILD_ROOT
pushd build
make install DESTDIR=$RPM_BUILD_ROOT
popd
# Remove the Doxygen installer
rm -f %{buildroot}%{_docdir}/%{name}/html/installdox
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}
rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README,AUTHORS}
%check
%ctest
pushd build
#ctest
popd
%clean
rm -rf $RPM_BUILD_ROOT
%post -p /sbin/ldconfig
%postun -p /sbin/ldconfig
%files
%doc AUTHORS ChangeLog NEWS README.md
%license COPYING
%defattr(-,root,root,-)
%doc AUTHORS ChangeLog COPYING NEWS README
%{_bindir}/%{name}
%{_libdir}/lib%{name}.so.*
%{_mandir}/man1/%{name}.1.*
%files devel
%{_includedir}/%{name}/
%defattr(-,root,root,-)
%{_includedir}/%{name}
%{_bindir}/%{name}-config
%{_libdir}/lib%{name}.so
%{_libdir}/pkgconfig/%{name}.pc
@ -94,10 +117,14 @@ rm -f $RPM_BUILD_ROOT%{_docdir}/%{name}/{NEWS,README.md,AUTHORS}
%{_mandir}/man3/%{name}-library.3.*
%files doc
%doc %{_docdir}/%{name}/
%license COPYING
%defattr(-,root,root,-)
%doc %{mydocs}/html
%doc COPYING
%changelog
%autochangelog
* Sun Jun 07 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)
* Tue Dec 25 2012 Denis Arnaud <denis.arnaud_fedora@m4x.org> - 1.00.0-1
- First package

View File

@ -1 +1 @@
SHA512 (airrac-1.00.7.tar.gz) = 86c4acb8249fefe2a284009fe4b4757dec6bae0f971ff30e8abd5dde086bdd9a0674b318035d884aeb9cd59d792f525872e7665db9d4f494ebcae97cc310bbb8
5abd241dfbd738d9f2fe9617c4047471 airrac-1.00.1.tar.bz2