libarchive-vl.spec 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154
  1. Name: libarchive
  2. Summary: A library for handling streaming archive formats
  3. Version: 3.6.1
  4. Release: 1%{?_dist_release}
  5. Group: system
  6. Vendor: Project Vine
  7. Distribution: Vine Linux
  8. License: BSD
  9. URL: https://www.libarchive.org/
  10. Source0: https://www.libarchive.org/downloads/%{name}-%{version}.tar.gz
  11. # When configured against OpenSSL 1.1, the RIPEMD-160 support was not detected,
  12. # so it was not compiled in previously. With OpenSSL 3.0, it's now detected as
  13. # being available, but it only actually works when the legacy provider is
  14. # loaded, which breaks the RIPEMD-160 test. This patch disables the RIPEMD-160
  15. # support explicitly.
  16. Patch0001: 0001-Drop-rmd160-from-OpenSSL.patch
  17. BuildRoot: %{_tmppath}/%{name}-%{version}-root
  18. BuildRequires: bzip2-devel
  19. BuildRequires: libacl-devel
  20. BuildRequires: libattr-devel
  21. BuildRequires: libxml2-devel
  22. BuildRequires: libzstd-devel
  23. BuildRequires: lz4-devel
  24. BuildRequires: openssl-devel
  25. BuildRequires: xz-devel
  26. BuildRequires: zlib-devel
  27. %description
  28. Libarchive is a programming library that can create and read several different
  29. streaming archive formats, including most popular tar variants, several cpio
  30. formats, and both BSD and GNU ar variants. It can also write shar archives and
  31. read ISO9660 CDROM images and ZIP archives.
  32. %package devel
  33. Summary: Development files for %{name}
  34. Group: programming
  35. Requires: %{name} = %{version}-%{release}
  36. %description devel
  37. The %{name}-devel package contains libraries and header files for
  38. developing applications that use %{name}.
  39. %debug_package
  40. %prep
  41. %autosetup -p1
  42. %build
  43. %configure \
  44. --disable-static \
  45. --disable-bsdtar --disable-bsdcpio --disable-bsdcat
  46. make %{?_smp_mflags}
  47. %install
  48. rm -rf $RPM_BUILD_ROOT
  49. make install DESTDIR=$RPM_BUILD_ROOT
  50. #iconv -f latin1 -t utf-8 < NEWS > NEWS.utf8; cp NEWS.utf8 NEWS
  51. find $RPM_BUILD_ROOT -name '*.la' -exec rm -f {} ';'
  52. find $RPM_BUILD_ROOT -name cpio.5 -exec rm -f {} ';'
  53. find $RPM_BUILD_ROOT -name mtree.5 -exec rm -f {} ';'
  54. find $RPM_BUILD_ROOT -name tar.5 -exec rm -f {} ';'
  55. %clean
  56. rm -rf $RPM_BUILD_ROOT
  57. %files
  58. %defattr(-,root,root,-)
  59. %license COPYING
  60. %doc README* NEWS
  61. %{_libdir}/*.so.*
  62. %files devel
  63. %defattr(-,root,root,-)
  64. %doc
  65. %{_includedir}/*
  66. %{_mandir}/*/*
  67. %{_libdir}/*.so
  68. %{_libdir}/pkgconfig/*.pc
  69. %changelog
  70. * Fri May 13 2022 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.6.1-1
  71. - new upstream release.
  72. - dropped Patch0: fixed in upstream.
  73. - imported Patch0001 from rawhide.
  74. * Tue Oct 05 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.2-1
  75. - new upstream release.
  76. - built with openssl-3.0.0.
  77. - imported Patch0 from rawhide.
  78. - dropped ldconfig scriptlets.
  79. * Wed Feb 17 2021 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.5.1-1
  80. - new upstream release.
  81. * Thu Jul 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.3-1
  82. - new upstream release.
  83. - added BR:lz4-devel.
  84. - added BR:libzstd-devel.
  85. * Sun Feb 16 2020 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.2-1
  86. - new upstream release.
  87. * Sat Oct 26 2019 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.4.0-1
  88. - new upstream release.
  89. * Fri Nov 30 2018 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.3-1
  90. - new upstream release.
  91. * Tue Dec 19 2017 Tomohiro "Tomo-p" KATO <tomop@teamgedoh.net> 3.3.2-1
  92. - new upstream release.
  93. * Sun May 15 2016 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.2.0-1
  94. - new upstream release
  95. * Sun Jul 06 2014 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.1.2-1
  96. - update to 3.1.2
  97. * Sun Jun 10 2012 Yoji TOYODA <bsyamato@sea.plala.or.jp> 3.0.4-1
  98. - new upstream release
  99. * Thu May 19 2011 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-4
  100. - add BuildRequires: openssl-devel, libxml2-devel
  101. * Thu May 19 2011 Daisuke SUZUKI <daisuke@linux.or.jp> 2.8.4-3
  102. - rebuild against liblzma.so.5
  103. * Sun Sep 26 2010 Yoji TOYODA <bsyamato@sea.plala.or.jp> 2.8.4-2
  104. - rebuild with rpm-4.8.1 for pkg-config file
  105. * Sun Sep 5 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.4-1
  106. - new upstream release
  107. * Wed Apr 14 2010 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.8.3-1
  108. - new upstream release
  109. - built with new toolchain
  110. * Tue Apr 8 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.6.0-1
  111. - new upstream release
  112. * Wed Apr 2 2008 Ryoichi INAGAKI <ryo1@bc.wakwak.com> 2.4.14-1vl5
  113. - Build for Vine Linux
  114. * Tue Mar 18 2008 Tomas Bzatek <tbzatek@redhat.com> 2.4.14-1
  115. - Initial packaging