source: projects/specs/trunk/a/asio/asio-vl.spec @ 999

Revision 999, 3.9 KB checked in by kudoh, 14 years ago (diff)
Line 
1# asio only ships headers, so no debuginfo package is needed
2%define debug_package %{nil}
3
4Summary: A cross-platform C++ library for network programming
5Summary(ja): ネットワークプログラミングのためのクロスプラットフォーム C++ ライブラリ
6Name: asio
7Version: 1.4.5
8Release: 1%{?_dist_release}
9URL: http://sourceforge.net/projects/asio/
10Source0: http://downloads.sourceforge.net/asio/asio-%{version}.tar.bz2
11License: Boost
12Group: System Environment/Libraries
13BuildRoot: %{_tmppath}/%{name}-%{version}-root
14BuildRequires: openssl-devel
15BuildRequires: libboost-devel
16
17%description
18The asio package contains a cross-platform C++ library for network programming
19that provides developers with a consistent asynchronous I/O model using a
20modern C++ approach.
21
22%package devel
23Group: Development/Libraries
24Summary: Header files for asio
25Summary: %{name} のヘッダファイル
26Requires: openssl-devel
27Requires: libboost-devel
28
29%description devel
30Header files you can use to develop applications with asio.
31
32The asio package contains a cross-platform C++ library for network programming
33that provides developers with a consistent asynchronous I/O model using a
34modern C++ approach.
35
36%prep
37%setup -q
38
39%build
40%configure
41
42%install
43rm -rf $RPM_BUILD_ROOT
44make install DESTDIR=$RPM_BUILD_ROOT nobase_includeHEADERS_INSTALL='install -D -p -m644'
45
46%check
47make %{?_smp_mflags}
48
49%clean
50rm -rf $RPM_BUILD_ROOT
51
52%files devel
53%defattr(-,root,root,-)
54%doc COPYING LICENSE_1_0.txt doc/*
55%dir %{_includedir}/asio
56%{_includedir}/asio/*
57%{_includedir}/asio.hpp
58
59%changelog
60* Wed May 12 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.5-1
61- new upstream release
62
63* Mon Feb 08 2010 Shu KONNO <owa@bg.wakwak.com> 1.4.1-2
64- rebuilt with new toolchain and libboost-1.42.0
65
66* Mon Sep 21 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.1-1
67- initial build for VineSeed
68
69* Mon Jul 27 2009 Marc Maurer <uwog@uwog.net> 1.4.1-2
70- The tarball is now a gzip archive
71
72* Mon Jul 27 2009 Marc Maurer <uwog@uwog.net> 1.4.1-1
73- New upstream release
74
75* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
76- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
77
78* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
79- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
80
81* Thu Dec 25 2008 Marc Maurer <uwog@uwog.net> 1.2.0-1
82- New upstream release
83
84* Sun Apr 06 2008 Marc Maurer <uwog@uwog.net> 1.0.0-2
85- Upstream removed the executable permissions on the docs
86
87* Sun Apr 06 2008 Marc Maurer <uwog@uwog.net> 1.0.0-1
88- New upstream release
89
90* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.3.8-8
91- Autorebuild for GCC 4.3
92
93* Sun Dec 02 2007 Marc Maurer <uwog@uwog.net> 0.3.8-7
94- Rebuild to include a tarball with original timestamps
95
96* Thu Nov 29 2007 Marc Maurer <uwog@uwog.net> 0.3.8-6
97- Use release %%{?dist} tag
98- Move BuildRequires to the main package
99- Preserve timestamps
100- Remove spurious executable permissions from documentation
101
102* Wed Nov 28 2007 Marc Maurer <uwog@uwog.net> 0.3.8-5
103- Don't require a nonexisting %%{name} package for -devel
104- Add openssl-devel and boost-devel to the buildRequires list
105- Remove unused post/postun sections for now
106- Fix -devel description
107- Use %%{version} in source URL
108- Add COPYING to the doc section
109- Preserve timestamps of installed files
110- Use %%defattr(-,root,root,-)
111- Include developer documentation
112- Move the make call to the %%check section
113
114* Sun Nov 25 2007 Marc Maurer <uwog@uwog.net> 0.3.8-4
115- Don't use BA noarch
116
117* Fri Nov 23 2007 Marc Maurer <uwog@uwog.net> 0.3.8-3
118- Move the license file to the -devel package, so no
119  main package will be created for now
120- Added BuildArch: noarch
121
122* Fri Nov 23 2007 Marc Maurer <uwog@uwog.net> 0.3.8-2
123- Make BuildRoot fedora packaging standard compliant
124- Disable building of debuginfo packages
125- Include full source URL
126
127* Wed Nov 21 2007 Marc Maurer <uwog@uwog.net> 0.3.8-1
128- Initial spec file
Note: See TracBrowser for help on using the repository browser.