Compare commits
29 Commits
3.1.2-3mam
...
3.8.0-1mam
Author | SHA1 | Date | |
---|---|---|---|
46d3446603 | |||
0117044de1 | |||
8cb10ebe2b | |||
c76ada0249 | |||
868ee04c61 | |||
0c03c39b71 | |||
fbb7b780ea | |||
e06b146d0a | |||
7b4b4208f7 | |||
f878bdcf64 | |||
4a8ea5ef93 | |||
310ee69b95 | |||
c90cc28ed7 | |||
71e568ad8a | |||
cc6f856b6c | |||
1b669b31a8 | |||
95472f5825 | |||
63740334ed | |||
2f1f4d3540 | |||
c073a35818 | |||
5f54ad26e6 | |||
edc4e2c718 | |||
9b03ece868 | |||
e6e7928ac6 | |||
f8023eaa5b | |||
06c115a695 | |||
a1faff7c53 | |||
41cc4ab722 | |||
78b4b7f120 |
131
libarchive.spec
131
libarchive.spec
@ -1,27 +1,30 @@
|
|||||||
Name: libarchive
|
Name: libarchive
|
||||||
Version: 3.1.2
|
Version: 3.8.0
|
||||||
Release: 3mamba
|
Release: 1mamba
|
||||||
Summary: Single library to read/write tar, cpio, pax, zip, iso9660, etc.
|
Summary: Single library to read/write tar, cpio, pax, zip, iso9660, etc.
|
||||||
Group: System/Libraries
|
Group: System/Libraries
|
||||||
Vendor: openmamba
|
Vendor: openmamba
|
||||||
Distribution: openmamba
|
Distribution: openmamba
|
||||||
Packager: Davide Madrisan <davide.madrisan@gmail.com>
|
Packager: Silvan Calarco <silvan.calarco@mambasoft.it>
|
||||||
URL: http://libarchive.org/
|
URL: https://libarchive.org/
|
||||||
Source: http://www.libarchive.org/downloads/libarchive-3.1.2.tar.gz
|
Source: https://github.com/libarchive/libarchive.git/v%{version}/libarchive-%{version}.tar.bz2
|
||||||
License: BSD
|
License: BSD
|
||||||
## AUTOBUILDREQ-BEGIN
|
## AUTOBUILDREQ-BEGIN
|
||||||
BuildRequires: glibc-devel
|
BuildRequires: glibc-devel
|
||||||
BuildRequires: libacl-devel
|
BuildRequires: libacl-devel
|
||||||
BuildRequires: libattr-devel
|
BuildRequires: libb2-devel
|
||||||
BuildRequires: libbzip2-devel
|
BuildRequires: libbzip2-devel
|
||||||
|
BuildRequires: libgomp-devel
|
||||||
|
BuildRequires: liblz4-devel
|
||||||
BuildRequires: liblzma-devel
|
BuildRequires: liblzma-devel
|
||||||
BuildRequires: liblzo-devel
|
BuildRequires: liblzo-devel
|
||||||
BuildRequires: libnettle-devel
|
BuildRequires: libnettle-devel
|
||||||
|
BuildRequires: libopenssl-devel
|
||||||
BuildRequires: libxml2-devel
|
BuildRequires: libxml2-devel
|
||||||
BuildRequires: libz-devel
|
BuildRequires: libz-devel
|
||||||
|
BuildRequires: libzstd-devel
|
||||||
## AUTOBUILDREQ-END
|
## AUTOBUILDREQ-END
|
||||||
BuildRequires: libe2fs-devel
|
BuildRequires: libe2fs-devel
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-root
|
|
||||||
|
|
||||||
%description
|
%description
|
||||||
Libarchive is a programming library that can create and read several different streaming archive formats, including most popular tar variants, several cpio formats, and both BSD and GNU ar variants.
|
Libarchive is a programming library that can create and read several different streaming archive formats, including most popular tar variants, several cpio formats, and both BSD and GNU ar variants.
|
||||||
@ -35,8 +38,7 @@ Requires: %{name} = %{?epoch:%epoch:}%{version}-%{release}
|
|||||||
%description devel
|
%description devel
|
||||||
Libarchive is a programming library that can create and read several different streaming archive formats, including most popular tar variants, several cpio formats, and both BSD and GNU ar variants.
|
Libarchive is a programming library that can create and read several different streaming archive formats, including most popular tar variants, several cpio formats, and both BSD and GNU ar variants.
|
||||||
It can also write shar archives and read ISO9660 CDROM images and ZIP archives.
|
It can also write shar archives and read ISO9660 CDROM images and ZIP archives.
|
||||||
|
This package contains static libraries and header files needed for development.
|
||||||
This package contains static libraries and header files need for development.
|
|
||||||
|
|
||||||
%package tools
|
%package tools
|
||||||
Group: Applications/Archiving
|
Group: Applications/Archiving
|
||||||
@ -52,15 +54,20 @@ This package contains the following programs built on libarchive:
|
|||||||
- bsdcpio
|
- bsdcpio
|
||||||
A different interface to cpio with essentially the same functionality.
|
A different interface to cpio with essentially the same functionality.
|
||||||
|
|
||||||
|
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
|
autoreconf -f -i
|
||||||
|
|
||||||
%build
|
%build
|
||||||
%configure \
|
%configure \
|
||||||
--enable-shared \
|
--enable-shared \
|
||||||
--disable-static \
|
--disable-static \
|
||||||
|
--enable-bsdcat=shared \
|
||||||
--enable-bsdtar=shared \
|
--enable-bsdtar=shared \
|
||||||
--enable-bsdcpio=shared \
|
--enable-bsdcpio=shared \
|
||||||
|
--with-lzo2 \
|
||||||
|
--with-nettle \
|
||||||
--enable-largefile
|
--enable-largefile
|
||||||
|
|
||||||
%make
|
%make
|
||||||
@ -69,14 +76,15 @@ This package contains the following programs built on libarchive:
|
|||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
%makeinstall
|
%makeinstall
|
||||||
|
|
||||||
|
# Don't require unexisting pkgconfig(iconv)
|
||||||
|
sed -i "s/iconv //" %{buildroot}%{_libdir}/pkgconfig/libarchive.pc
|
||||||
|
|
||||||
mv %{buildroot}%{_mandir}/man5/cpio.5 %{buildroot}%{_mandir}/man5/archive_cpio.5
|
mv %{buildroot}%{_mandir}/man5/cpio.5 %{buildroot}%{_mandir}/man5/archive_cpio.5
|
||||||
mv %{buildroot}%{_mandir}/man5/tar.5 %{buildroot}%{_mandir}/man5/archive_tar.5
|
mv %{buildroot}%{_mandir}/man5/tar.5 %{buildroot}%{_mandir}/man5/archive_tar.5
|
||||||
|
|
||||||
%clean
|
%clean
|
||||||
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
[ "%{buildroot}" != / ] && rm -rf "%{buildroot}"
|
||||||
|
|
||||||
%post -p /sbin/ldconfig
|
|
||||||
%postun -p /sbin/ldconfig
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
@ -87,23 +95,116 @@ mv %{buildroot}%{_mandir}/man5/tar.5 %{buildroot}%{_mandir}/man5/archive_tar.5
|
|||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
%{_includedir}/archive_entry.h
|
%{_includedir}/archive_entry.h
|
||||||
%{_includedir}/archive.h
|
%{_includedir}/archive.h
|
||||||
%{_libdir}/libarchive.la
|
|
||||||
%{_libdir}/libarchive.so
|
%{_libdir}/libarchive.so
|
||||||
%{_libdir}/pkgconfig/libarchive.pc
|
%{_libdir}/pkgconfig/libarchive.pc
|
||||||
%{_mandir}/man3/*
|
%{_mandir}/man3/*
|
||||||
%{_mandir}/man5/*
|
%{_mandir}/man5/*
|
||||||
%doc examples
|
%doc examples
|
||||||
%doc contrib/libarchive_autodetect-st_lib_archive.m4
|
%doc contrib/libarchive_autodetect-st_lib_archive.m4
|
||||||
%doc NEWS README
|
%doc NEWS
|
||||||
|
|
||||||
%files tools
|
%files tools
|
||||||
%defattr(-,root,root)
|
%defattr(-,root,root)
|
||||||
|
%{_bindir}/bsdcat
|
||||||
%{_bindir}/bsdcpio
|
%{_bindir}/bsdcpio
|
||||||
%{_bindir}/bsdtar
|
%{_bindir}/bsdtar
|
||||||
%{_mandir}/man1/bsdcpio.*
|
%{_bindir}/bsdunzip
|
||||||
%{_mandir}/man1/bsdtar.*
|
%{_mandir}/man1/bsdcat.1*
|
||||||
|
%{_mandir}/man1/bsdcpio.1*
|
||||||
|
%{_mandir}/man1/bsdtar.1*
|
||||||
|
%{_mandir}/man1/bsdunzip.1*
|
||||||
|
|
||||||
%changelog
|
%changelog
|
||||||
|
* Fri May 23 2025 Automatic Build System <autodist@openmamba.org> 3.8.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Mar 31 2025 Automatic Build System <autodist@openmamba.org> 3.7.9-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Mar 20 2025 Automatic Build System <autodist@openmamba.org> 3.7.8-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Oct 13 2024 Automatic Build System <autodist@openmamba.org> 3.7.7-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Tue Sep 24 2024 Automatic Build System <autodist@openmamba.org> 3.7.6-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Sep 14 2024 Automatic Build System <autodist@openmamba.org> 3.7.5-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Apr 27 2024 Automatic Build System <autodist@openmamba.org> 3.7.4-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Apr 12 2024 Automatic Build System <autodist@openmamba.org> 3.7.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Apr 05 2024 Silvan Calarco <silvan.calarco@mambasoft.it> 3.7.2-2mamba
|
||||||
|
- backport upstream patch to fix possibly malicious past commit (see https://github.com/libarchive/libarchive/pull/2101 )
|
||||||
|
|
||||||
|
* Tue Sep 12 2023 Automatic Build System <autodist@mambasoft.it> 3.7.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Jul 30 2023 Automatic Build System <autodist@mambasoft.it> 3.7.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Jul 22 2023 Automatic Build System <autodist@mambasoft.it> 3.7.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Dec 30 2022 Silvan Calarco <silvan.calarco@mambasoft.it> 3.6.2-2mamba
|
||||||
|
- remove requirement for unexisting pkgconfig(iconv)
|
||||||
|
|
||||||
|
* Sat Dec 17 2022 Automatic Build System <autodist@mambasoft.it> 3.6.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Apr 09 2022 Automatic Build System <autodist@mambasoft.it> 3.6.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Feb 10 2022 Automatic Build System <autodist@mambasoft.it> 3.6.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Feb 09 2022 Automatic Build System <autodist@mambasoft.it> 3.5.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Dec 04 2021 Silvan Calarco <silvan.calarco@mambasoft.it> 3.5.2-1mamba
|
||||||
|
- update to 3.5.2
|
||||||
|
|
||||||
|
* Thu Dec 31 2020 Silvan Calarco <silvan.calarco@mambasoft.it> 3.5.0-2mamba
|
||||||
|
- rebuilt with debug package
|
||||||
|
|
||||||
|
* Thu Dec 03 2020 Automatic Build System <autodist@mambasoft.it> 3.5.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri May 22 2020 Automatic Build System <autodist@mambasoft.it> 3.4.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Thu Feb 13 2020 Automatic Build System <autodist@mambasoft.it> 3.4.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Jan 01 2020 Automatic Build System <autodist@mambasoft.it> 3.4.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Aug 02 2019 Silvan Calarco <silvan.calarco@mambasoft.it> 3.4.0-1mamba
|
||||||
|
- update to 3.4.0
|
||||||
|
|
||||||
|
* Sat Sep 08 2018 Automatic Build System <autodist@mambasoft.it> 3.3.3-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sat Aug 05 2017 Automatic Build System <autodist@mambasoft.it> 3.3.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Wed Mar 01 2017 Automatic Build System <autodist@mambasoft.it> 3.3.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Fri Feb 24 2017 Automatic Build System <autodist@mambasoft.it> 3.3.0-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Sun Dec 18 2016 Automatic Build System <autodist@mambasoft.it> 3.2.2-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
|
* Mon Jul 04 2016 Automatic Build System <autodist@mambasoft.it> 3.2.1-1mamba
|
||||||
|
- automatic version update by autodist
|
||||||
|
|
||||||
* Thu Jun 26 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.1.2-3mamba
|
* Thu Jun 26 2014 Silvan Calarco <silvan.calarco@mambasoft.it> 3.1.2-3mamba
|
||||||
- rebuilt to remove link time dependency on libacl.la
|
- rebuilt to remove link time dependency on libacl.la
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user