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

Revision 7064, 3.5 KB checked in by Takemikaduchi, 12 years ago (diff)

new upstream release

Line 
1Summary:        Abstract asynchronous event notification library
2Summary(ja):    非同期イベント通知ライブラリ
3Name:           libevent
4Version:        2.0.20
5Release:        1%{?_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#%{_mandir}/man3/*
73
74
75%changelog
76* Sat Nov 03 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.20-1
77- new upstream release
78
79* Sun Feb 13 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.0.10-2
80- add BuildRequires: openssl-devel
81
82* Thu Feb 10 2011 Toshiharu Kudoh <toshi.kd2@gmail.com> 2.0.10-1
83- new upstream release
84
85* Fri Feb 12 2010 MATSUBAYASHI Kohji <shaolin@vinelinux.org> - 1.4.13-2
86- rebuilt with gcc-4.4.3-3 on ppc
87
88* Mon Feb  1 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.13-1
89- new upstream release
90- built with new toolchains
91
92* Tue Mar 31 2009 Daisuke SUZUKI <daisuke@linux.or.jp> 1.4.3-2
93- spec in utf-8
94- remove static libs
95
96* Wed Apr 23 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.4.3-1
97- new upstream release
98
99* Sun Jul  8 2007 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 1.3b-0vl1
100- new upstream release
101
102* Sun Aug 13 2006 IWAI, Masaharu <iwai@alib.jp> 1.1b-0vl1
103- new upstream release
104
105* Sun Mar 19 2006 Daisuke SUZUKI <daisuke@linux.or.jp> 1.1a-0vl1
106- initial build for Vine Linux
107
108* Fri Feb 10 2006 Jesse Keating <jkeating@redhat.com> - 1.1a-3.2
109- bump again for double-long bug on ppc(64)
110
111* Tue Feb 07 2006 Jesse Keating <jkeating@redhat.com> - 1.1a-3.1
112- rebuilt for new gcc4.1 snapshot and glibc changes
113
114* Tue Jan 24 2006 Warren Togami <wtogami@redhat.com> - 1.1a-3
115- rebuild (#177697)
116
117* Mon Jul 04 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1a-2
118- Removed unnecessary -r from rm
119
120* Fri Jun 17 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1a-1
121- Upstream update
122
123* Wed Jun 08 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1-2
124- Added some docs
125- Moved "make verify" into %%check
126
127* Mon Jun 06 2005 Ralf Ertzinger <ralf@skytale.net> - 1.1-1
128- Initial build for Fedora Extras, based on the package
129  by Dag Wieers
Note: See TracBrowser for help on using the repository browser.