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

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