librelp-vl.spec 2.8 KB

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