asio-vl.spec 4.5 KB

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