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

Revision 12235, 2.8 KB checked in by tomop, 5 years ago (diff)

updated 2 packages

librelp-1.4.0-1
rsyslog-8.1910.0-1

Line 
1Summary: The Reliable Event Logging Protocol library
2Name: librelp
3Version: 1.4.0
4Release: 1%{?_dist_release}
5License: GPLv3+
6Group: System Environment/Libraries
7URL: http://www.rsyslog.com/
8Source0: https://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 \
39        --disable-static \
40        --enable-tls=yes \
41        --enable-tls-openssl=no
42
43make %{?_smp_mflags}
44
45%install
46rm -rf $RPM_BUILD_ROOT
47make install DESTDIR=$RPM_BUILD_ROOT
48
49rm $RPM_BUILD_ROOT/%{_libdir}/*.la
50
51%clean
52rm -rf $RPM_BUILD_ROOT
53
54%post -p /sbin/ldconfig
55
56%postun
57if [ "$1" = "0" ] ; then
58    /sbin/ldconfig
59fi
60
61%files
62%defattr(-,root,root,-)
63%license COPYING
64%doc AUTHORS NEWS README doc/*html
65%{_libdir}/librelp.so.*
66
67%files devel
68%defattr(-,root,root)
69%{_includedir}/*
70%{_libdir}/librelp.so
71%{_libdir}/pkgconfig/relp.pc
72
73%changelog
74* Fri Oct 04 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.4.0-1
75- new upstream release.
76
77* Wed Nov 07 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.18-1
78- new upstream release.
79
80* Sat Apr 21 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.15-1
81- new upstream release.
82
83* Sun Feb 25 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.14-1
84- new upstream release.
85
86* Fri Mar 18 2016 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.9-1
87- new upstream release.
88
89* Mon Jun 16 2014 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 1.2.7-1
90- new upstream release.
91
92* Wed Dec 22 2010 IWAI, Masaharu <iwai@alib.jp> 1.0.0-1
93- build for Vine Linux: based Fedora 1.0.0-1.fc14
94
95* Thu Jul 15 2010 Tomas Heinrich <theinric@redhat.com> - 1.0.0-1
96- upgrade to upstream version 1.0.0
97
98* Sat Jul 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-4
99- Rebuilt for https://fedoraproject.org/wiki/Fedora_12_Mass_Rebuild
100
101* Wed Feb 25 2009 Fedora Release Engineering <rel-eng@lists.fedoraproject.org> - 0.1.1-3
102- Rebuilt for https://fedoraproject.org/wiki/Fedora_11_Mass_Rebuild
103
104* Wed May  7 2008 Tomas Heinrich <theinric@redhat.com> 0.1.1-2
105- removed "BuildRequires: autoconf automake"
106
107* Tue Apr 29 2008 Tomas Heinrich <theinric@redhat.com> 0.1.1-1
108- initial build
Note: See TracBrowser for help on using the repository browser.