libevent-vl.spec 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. Summary: Abstract asynchronous event notification library
  2. Summary(ja): 非同期イベント通知ライブラリ
  3. Name: libevent
  4. Version: 2.0.21
  5. Release: 2%{?_dist_release}
  6. Group: System Environment/Libraries
  7. License: BSD
  8. URL: http://monkey.org/~provos/libevent/
  9. Source0: http://monkey.org/~provos/libevent-%{version}-stable.tar.gz
  10. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  11. BuildRequires: openssl-devel
  12. %description
  13. The libevent API provides a mechanism to execute a callback function
  14. when a specific event occurs on a file descriptor or after a timeout
  15. has been reached. libevent is meant to replace the asynchronous event
  16. loop found in event driven network servers. An application just needs
  17. to call event_dispatch() and can then add or remove events dynamically
  18. without having to change the event loop.
  19. %package devel
  20. Summary: Header files, libraries and development documentation for %{name}
  21. Group: Development/Libraries
  22. Requires: %{name} = %{version}-%{release}
  23. %description devel
  24. This package contains the header files, static libraries and development
  25. documentation for %{name}. If you like to develop programs using %{name},
  26. you will need to install %{name}-devel.
  27. %prep
  28. %setup -q -n %{name}-%{version}-stable
  29. %build
  30. %configure \
  31. --disable-static \
  32. --disable-dependency-tracking
  33. %__make %{?_smp_mflags}
  34. %install
  35. rm -rf $RPM_BUILD_ROOT
  36. %__make DESTDIR=$RPM_BUILD_ROOT install
  37. rm -f $RPM_BUILD_ROOT%{_libdir}/*.{a,la}
  38. %clean
  39. rm -rf $RPM_BUILD_ROOT
  40. %post -p /sbin/ldconfig
  41. %postun -p /sbin/ldconfig
  42. %files
  43. %defattr(-,root,root,0755)
  44. %doc README
  45. %{_bindir}/*
  46. %{_libdir}/lib*.so.*
  47. %files devel
  48. %defattr(-,root,root,0755)
  49. %doc sample/*.c
  50. %{_includedir}/*
  51. %{_libdir}/lib*.so
  52. %{_libdir}/pkgconfig/%{name}*.pc
  53. %changelog
  54. * Sun May 15 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.21-2
  55. - rebuild with openssl-1.0.2
  56. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.21-1
  57. - update to 2.0.21
  58. * Sat Nov 03 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.20-1
  59. - new upstream release
  60. * Sun Feb 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.10-2
  61. - add BuildRequires: openssl-devel
  62. * Thu Feb 10 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0.10-1
  63. - new upstream release
  64. * Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.4.13-2
  65. - rebuilt with gcc-4.4.3-3 on ppc
  66. * Mon Feb 1 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.13-1
  67. - new upstream release
  68. - built with new toolchains
  69. * Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.3-2
  70. - spec in utf-8
  71. - remove static libs
  72. * Wed Apr 23 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.3-1
  73. - new upstream release
  74. * Sun Jul 8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.3b-0vl1
  75. - new upstream release
  76. * Sun Aug 13 2006 IWAI, Masaharu <iwai@alib.jp> 1.1b-0vl1
  77. - new upstream release
  78. * Sun Mar 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1a-0vl1
  79. - initial build for Vine Linux
  80. * Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.1a-3.2
  81. - bump again for double-long bug on ppc(64)
  82. * Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.1a-3.1
  83. - rebuilt for new gcc4.1 snapshot and glibc changes
  84. * Tue Jan 24 2006 Warren Togami <wtogami@redhat.com> - 1.1a-3
  85. - rebuild (#177697)
  86. * Mon Jul 04 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1a-2
  87. - Removed unnecessary -r from rm
  88. * Fri Jun 17 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1a-1
  89. - Upstream update
  90. * Wed Jun 08 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1-2
  91. - Added some docs
  92. - Moved "make verify" into %%check
  93. * Mon Jun 06 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1-1
  94. - Initial build for Fedora Extras, based on the package
  95. by Dag Wieers