source: projects/specs/trunk/lib/libr/librelp/librelp-vl.spec @ 10090

Revision 10090, 2.3 KB checked in by tomop, 8 years ago (diff)

librelp-1.2.9-1

Line 
1Summary: The Reliable Event Logging Protocol library
2Name: librelp
3Version: 1.2.9
4Release: 1%{?_dist_release}
5License: GPLv3+
6Group: System Environment/Libraries
7URL: http://www.rsyslog.com/
8Source0: http://download.rsyslog.com/librelp/%{name}-%{version}.tar.gz
9BuildRequires: gnutls-devel
10Requires(post): /sbin/ldconfig
11Requires(postun): /sbin/ldconfig
12BuildRoot: %{_tmppath}/%{name}-%{version}-%{release}-root
13
14Vendor: Project Vine
15Distribution: Vine Linux
16Packager: tomop
17
18%description
19Librelp is an easy to use library for the RELP protocol. RELP (stands
20for Reliable Event Logging Protocol) is a general-purpose, extensible
21logging protocol.
22
23%package devel
24Summary: Development files for the %{name} package
25Group: Development/Libraries
26Requires: %{name} = %{version}-%{release}
27Requires: pkgconfig
28
29%description devel
30Librelp is an easy to use library for the RELP protocol. The
31librelp-devel package contains the header files and libraries needed
32to develop applications using librelp.
33
34%prep
35%setup -q
36
37%build
38%configure --disable-static
39make %{?_smp_mflags}
40
41%install
42rm -rf $RPM_BUILD_ROOT
43make install DESTDIR=$RPM_BUILD_ROOT
44
45rm $RPM_BUILD_ROOT/%{_libdir}/*.la
46
47%clean
48rm -rf $RPM_BUILD_ROOT
49
50%post -p /sbin/ldconfig
51
52%postun
53if [ "$1" = "0" ] ; then
54    /sbin/ldconfig
55fi
56
57%files
58%defattr(-,root,root,-)
59%doc AUTHORS COPYING NEWS README doc/*html
60%{_libdir}/librelp.so.*
61
62%files devel
63%defattr(-,root,root)
64%{_includedir}/*
65%{_libdir}/librelp.so
66%{_libdir}/pkgconfig/relp.pc
67
68%changelog
69* Fri Mar 18 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.9-1
70- new upstream release.
71
72* Mon Jun 16 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.7-1
73- new upstream release.
74
75* Wed Dec 22 2010 IWAI, Masaharu <iwai@alib.jp> 1.0.0-1
76- build for Vine Linux: based Fedora 1.0.0-1.fc14
77
78* Thu Jul 15 2010 Tomas Heinrich <theinric@redhat.com> - 1.0.0-1
79- upgrade to upstream version 1.0.0
80
81* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-4
82- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
83
84* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-3
85- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
86
87* Wed May  7 2008 Tomas Heinrich <theinric@redhat.com> 0.1.1-2
88- removed "BuildRequires: autoconf automake"
89
90* Tue Apr 29 2008 Tomas Heinrich <theinric@redhat.com> 0.1.1-1
91- initial build
Note: See TracBrowser for help on using the repository browser.