123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- # asio only ships headers, so no debuginfo package is needed
- %define debug_package %{nil}
- Summary: A cross-platform C++ library for network programming
- Summary(ja): ネットワークプログラミングのためのクロスプラットフォーム C++ ライブラリ
- Name: asio
- Version: 1.4.1
- Release: 2%{?_dist_release}
- URL: http://sourceforge.net/projects/asio/
- Source0: http://downloads.sourceforge.net/asio/asio-%{version}.tar.gz
- License: Boost
- Group: System Environment/Libraries
- BuildRoot: %{_tmppath}/%{name}-%{version}-root
- BuildRequires: openssl-devel
- BuildRequires: libboost-devel
- %description
- The asio package contains a cross-platform C++ library for network programming
- that provides developers with a consistent asynchronous I/O model using a
- modern C++ approach.
- %package devel
- Group: Development/Libraries
- Summary: Header files for asio
- Summary: %{name} のヘッダファイル
- Requires: openssl-devel
- Requires: libboost-devel
- %description devel
- Header files you can use to develop applications with asio.
- The asio package contains a cross-platform C++ library for network programming
- that provides developers with a consistent asynchronous I/O model using a
- modern C++ approach.
- %prep
- %setup -q
- %build
- %configure
- %install
- rm -rf $RPM_BUILD_ROOT
- make install DESTDIR=$RPM_BUILD_ROOT nobase_includeHEADERS_INSTALL='install -D -p -m644'
- %check
- make %{?_smp_mflags}
- %clean
- rm -rf $RPM_BUILD_ROOT
- %files devel
- %defattr(-,root,root,-)
- %doc COPYING LICENSE_1_0.txt doc/*
- %dir %{_includedir}/asio
- %{_includedir}/asio/*
- %{_includedir}/asio.hpp
- %changelog
- * Mon Feb 08 2010 Shu KONNO <owa@bg.wakwak.com> 1.4.1-2
- - rebuilt with new toolchain and libboost-1.42.0
- * Mon Sep 21 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.1-1
- - initial build for VineSeed
- * Mon Jul 27 2009 Marc Maurer <uwog@uwog.net> 1.4.1-2
- - The tarball is now a gzip archive
- * Mon Jul 27 2009 Marc Maurer <uwog@uwog.net> 1.4.1-1
- - New upstream release
- * Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
- * Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
- - Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
- * Thu Dec 25 2008 Marc Maurer <uwog@uwog.net> 1.2.0-1
- - New upstream release
- * Sun Apr 06 2008 Marc Maurer <uwog@uwog.net> 1.0.0-2
- - Upstream removed the executable permissions on the docs
- * Sun Apr 06 2008 Marc Maurer <uwog@uwog.net> 1.0.0-1
- - New upstream release
- * Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.3.8-8
- - Autorebuild for GCC 4.3
- * Sun Dec 02 2007 Marc Maurer <uwog@uwog.net> 0.3.8-7
- - Rebuild to include a tarball with original timestamps
- * Thu Nov 29 2007 Marc Maurer <uwog@uwog.net> 0.3.8-6
- - Use release %%{?dist} tag
- - Move BuildRequires to the main package
- - Preserve timestamps
- - Remove spurious executable permissions from documentation
- * Wed Nov 28 2007 Marc Maurer <uwog@uwog.net> 0.3.8-5
- - Don't require a nonexisting %%{name} package for -devel
- - Add openssl-devel and boost-devel to the buildRequires list
- - Remove unused post/postun sections for now
- - Fix -devel description
- - Use %%{version} in source URL
- - Add COPYING to the doc section
- - Preserve timestamps of installed files
- - Use %%defattr(-,root,root,-)
- - Include developer documentation
- - Move the make call to the %%check section
- * Sun Nov 25 2007 Marc Maurer <uwog@uwog.net> 0.3.8-4
- - Don't use BA noarch
- * Fri Nov 23 2007 Marc Maurer <uwog@uwog.net> 0.3.8-3
- - Move the license file to the -devel package, so no
- main package will be created for now
- - Added BuildArch: noarch
- * Fri Nov 23 2007 Marc Maurer <uwog@uwog.net> 0.3.8-2
- - Make BuildRoot fedora packaging standard compliant
- - Disable building of debuginfo packages
- - Include full source URL
- * Wed Nov 21 2007 Marc Maurer <uwog@uwog.net> 0.3.8-1
- - Initial spec file
|