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

Revision 8034, 4.4 KB checked in by Takemikaduchi, 10 years ago (diff)

new upstream release or rebuild with libboost-1.54.0

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.10.1
8Release: 1%{?_dist_release}
9URL: http://sourceforge.net/projects/asio/
10Source0: http://downloads.sourceforge.net/asio/asio-%{version}.tar.bz2
11
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
42make %{?_smp_mflags}
43
44%install
45rm -rf $RPM_BUILD_ROOT
46make install DESTDIR=$RPM_BUILD_ROOT nobase_includeHEADERS_INSTALL='install -D -p -m644'
47
48%check
49make check
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
62* Sun Dec 08 2013 Yoji TOYODA <bsyamato@sea.plala.or.jp> 1.10.1-1
63- new upstream release
64
65* Sun Feb 27 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.8-1
66- new upstream release
67
68* Tue Jan 18 2011 Shu KONNO <owa@bg.wakwak.com> 1.4.7-2
69- rebuilt with libboost-1.45.0
70
71* Thu Jan 6 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.7-1
72- new upstream release
73
74* Wed Sep 29 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.5-2
75- rebuilt with rpm-4.8.1 for pkg-config
76- used make %%{?_smp_mflags}
77- changed check process a little
78
79* Wed May 12 2010 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.5-1
80- new upstream release
81
82* Mon Feb 08 2010 Shu KONNO <owa@bg.wakwak.com> 1.4.1-2
83- rebuilt with new toolchain and libboost-1.42.0
84
85* Mon Sep 21 2009 Toshiharu Kudoh <toshi.kd2@gmail.com> 1.4.1-1
86- initial build for VineSeed
87
88* Mon Jul 27 2009 Marc Maurer <uwog@uwog.net> 1.4.1-2
89- The tarball is now a gzip archive
90
91* Mon Jul 27 2009 Marc Maurer <uwog@uwog.net> 1.4.1-1
92- New upstream release
93
94* Fri Jul 24 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-3
95- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
96
97* Mon Feb 23 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 1.2.0-2
98- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
99
100* Thu Dec 25 2008 Marc Maurer <uwog@uwog.net> 1.2.0-1
101- New upstream release
102
103* Sun Apr 06 2008 Marc Maurer <uwog@uwog.net> 1.0.0-2
104- Upstream removed the executable permissions on the docs
105
106* Sun Apr 06 2008 Marc Maurer <uwog@uwog.net> 1.0.0-1
107- New upstream release
108
109* Wed Feb 20 2008 Fedora Release Engineering <rel-eng@fedoraproject.org> - 0.3.8-8
110- Autorebuild for GCC 4.3
111
112* Sun Dec 02 2007 Marc Maurer <uwog@uwog.net> 0.3.8-7
113- Rebuild to include a tarball with original timestamps
114
115* Thu Nov 29 2007 Marc Maurer <uwog@uwog.net> 0.3.8-6
116- Use release %%{?dist} tag
117- Move BuildRequires to the main package
118- Preserve timestamps
119- Remove spurious executable permissions from documentation
120
121* Wed Nov 28 2007 Marc Maurer <uwog@uwog.net> 0.3.8-5
122- Don't require a nonexisting %%{name} package for -devel
123- Add openssl-devel and boost-devel to the buildRequires list
124- Remove unused post/postun sections for now
125- Fix -devel description
126- Use %%{version} in source URL
127- Add COPYING to the doc section
128- Preserve timestamps of installed files
129- Use %%defattr(-,root,root,-)
130- Include developer documentation
131- Move the make call to the %%check section
132
133* Sun Nov 25 2007 Marc Maurer <uwog@uwog.net> 0.3.8-4
134- Don't use BA noarch
135
136* Fri Nov 23 2007 Marc Maurer <uwog@uwog.net> 0.3.8-3
137- Move the license file to the -devel package, so no
138  main package will be created for now
139- Added BuildArch: noarch
140
141* Fri Nov 23 2007 Marc Maurer <uwog@uwog.net> 0.3.8-2
142- Make BuildRoot fedora packaging standard compliant
143- Disable building of debuginfo packages
144- Include full source URL
145
146* Wed Nov 21 2007 Marc Maurer <uwog@uwog.net> 0.3.8-1
147- Initial spec file
Note: See TracBrowser for help on using the repository browser.