source: projects/specs/trunk/lib/libe/libevent/libevent-vl.spec @ 10291

Revision 10291, 3.6 KB checked in by Takemikaduchi, 8 years ago (diff)

gnubiff,httping,lftp,libarchive,libgadu,libgit2,mosh: new upstream release
others: rebuild

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