Initialize for tar
This commit is contained in:
commit
09b05a0b95
23 changed files with 2249 additions and 0 deletions
237
tar.spec
Normal file
237
tar.spec
Normal file
|
@ -0,0 +1,237 @@
|
|||
#
|
||||
# spec file for package tar
|
||||
#
|
||||
# Copyright (c) 2022-2023 ZhuningOS
|
||||
#
|
||||
|
||||
|
||||
# For correct subpackages docs installation into tar doc directory
|
||||
%global _docdir_fmt %{name}
|
||||
Name: tar
|
||||
Version: 1.34
|
||||
Release: 150000.3.34.1
|
||||
Summary: GNU implementation of ((t)ape (ar)chiver)
|
||||
License: GPL-3.0-or-later
|
||||
Group: Productivity/Archiving/Backup
|
||||
URL: https://www.gnu.org/software/tar/
|
||||
Source0: https://ftp.gnu.org/gnu/tar/%{name}-%{version}.tar.xz
|
||||
Source1: https://ftp.gnu.org/gnu/tar/%{name}-%{version}.tar.xz.sig
|
||||
# http://wwwkeys.pgp.net:11371/pks/lookup?op=get&search=0x3602B07F55D0C732
|
||||
Source2: %{name}.keyring
|
||||
Patch0: %{name}-wildcards.patch
|
||||
Patch1: %{name}-backup-spec-fix-paths.patch
|
||||
Patch2: paxutils-rtapelib_mtget.patch
|
||||
# don't print warning about zero blocks
|
||||
# the patch is used in Fedora and Debian
|
||||
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=235820
|
||||
Patch3: %{name}-ignore_lone_zero_blocks.patch
|
||||
# The next patch is disabled because it causes a regression:
|
||||
#https://bugzilla.opensuse.org/show_bug.cgi?id=918487
|
||||
Patch4: %{name}-recursive--files-from.patch
|
||||
Patch5: add_readme-tests.patch
|
||||
Patch6: tar-PIE.patch
|
||||
Patch7: tests-skip-time01-on-32bit-time_t.patch
|
||||
# PATCH-FIX-UPSTREAM danilo.spinella@suse.com bsc#1200657
|
||||
# fix race condition while creating intermediate subdirectories
|
||||
Patch8: tar-fix-race-condition.patch
|
||||
# PATCH-FIX-UPSTREAM danilo.spinella@suse.com bsc#1203600
|
||||
# Unexpected inconsistency when making directory
|
||||
Patch9: tar-avoid-overflow-in-symlinks-tests.patch
|
||||
Patch10: bsc1200657.patch
|
||||
Patch11: tar-fix-extract-unlink.patch
|
||||
# PATCH-FIX-SUSE danilo.spinella@suse.czom bsc#1202436
|
||||
# Error out when trying to create '.' directory instead of hanging
|
||||
Patch12: bsc1202436.patch
|
||||
# PATCH-FIX-UPSTREAM danilo.spinella@suse.com bsc#1202436
|
||||
Patch13: bsc1202436-1.patch
|
||||
Patch14: bsc1202436-2.patch
|
||||
# PATCH-FIX-UPSTREAM danilo.spinella@suse.com bsc#1207753
|
||||
# tar has a one-byte out-of-bounds read that results in use of
|
||||
# uninitialized memory for a conditional jump
|
||||
Patch15: fix-CVE-2022-48303.patch
|
||||
# PATCH-FIX-UPSTREAM danilo.spinella@suse.com bsc#1217969
|
||||
# Incorrectly handled extension attributes in PAX archives can lead to a crash
|
||||
Patch16: fix-CVE-2023-39804.patch
|
||||
BuildRequires: automake >= 1.15
|
||||
BuildRequires: libacl-devel
|
||||
BuildRequires: libselinux-devel
|
||||
Recommends: %{name}-rmt = %{version}
|
||||
Recommends: mt
|
||||
Recommends: xz
|
||||
Provides: base:/bin/tar
|
||||
|
||||
%description
|
||||
GNU Tar is an archiver program. It is used to create and manipulate files
|
||||
that are actually collections of many other files; the program provides
|
||||
users with an organized and systematic method of controlling a large amount
|
||||
of data. Despite its name, that is an acronym of "tape archiver", GNU Tar
|
||||
is able to direct its output to any available devices, files or other programs,
|
||||
it may as well access remote devices or files.
|
||||
|
||||
%package backup-scripts
|
||||
Summary: Backup scripts
|
||||
Group: Productivity/Archiving/Backup
|
||||
Requires: %{name} = %{version}
|
||||
BuildArch: noarch
|
||||
|
||||
%description backup-scripts
|
||||
Shell scripts for system backup/restore
|
||||
|
||||
%package tests
|
||||
Summary: Tests for the package
|
||||
Group: Development/Tools/Other
|
||||
Requires: %{name} = %{version}
|
||||
|
||||
%description tests
|
||||
Upstream testsuite for the package
|
||||
|
||||
%package rmt
|
||||
Summary: Remote tape drive control server by GNU
|
||||
Group: Productivity/Archiving/Backup
|
||||
Requires(post): update-alternatives
|
||||
Requires(postun):update-alternatives
|
||||
Provides: rmt
|
||||
|
||||
%description rmt
|
||||
Provides remote access to files and devices for tar, cpio
|
||||
and similar backup utilities
|
||||
|
||||
%package doc
|
||||
Summary: Documentation files for GNU tar
|
||||
Group: Documentation/Man
|
||||
Requires: %{name} = %{version}
|
||||
BuildArch: noarch
|
||||
|
||||
%description doc
|
||||
GNU Tar is an archiver program. It is used to create and manipulate files
|
||||
that are actually collections of many other files; the program provides
|
||||
users with an organized and systematic method of controlling a large amount
|
||||
of data. Despite its name, that is an acronym of "tape archiver", GNU Tar
|
||||
is able to direct its output to any available devices, files or other programs,
|
||||
it may as well access remote devices or files.
|
||||
|
||||
%lang_package
|
||||
|
||||
%prep
|
||||
%setup -q
|
||||
%patch0 -p1
|
||||
%patch1 -p1
|
||||
%patch2 -p1
|
||||
%patch3 -p1
|
||||
#%patch4 -p1
|
||||
%patch5 -p1
|
||||
%patch6 -p1
|
||||
%patch7 -p1
|
||||
%patch8 -p1
|
||||
%patch9 -p1
|
||||
%patch10 -p1
|
||||
%patch11 -p1
|
||||
%patch12 -p1
|
||||
%patch13 -p1
|
||||
%patch14 -p1
|
||||
%patch15 -p1
|
||||
%patch16 -p1
|
||||
|
||||
%build
|
||||
%define my_cflags -W -Wall -Wpointer-arith -Wstrict-prototypes -Wformat-security -Wno-unused-parameter -fPIE
|
||||
export CFLAGS="%{optflags} %{my_cflags}"
|
||||
export RSH=%{_bindir}/ssh
|
||||
export DEFAULT_ARCHIVE_FORMAT="POSIX"
|
||||
export DEFAULT_RMT_DIR=%{_bindir}
|
||||
autoreconf -fi
|
||||
%configure \
|
||||
gl_cv_func_linkat_follow="yes" \
|
||||
--enable-backup-scripts \
|
||||
--disable-silent-rules \
|
||||
--program-transform-name='s/^rmt$/gnurmt/'
|
||||
%make_build LDFLAGS="-pie"
|
||||
cd tests
|
||||
%make_build genfile
|
||||
mkdir bin
|
||||
mv genfile bin
|
||||
cd -
|
||||
|
||||
%check
|
||||
%if !0%{?qemu_user_space_build:1}
|
||||
# Checks disabled in qemu because of races happening when we emulate
|
||||
# multi-threaded programs
|
||||
%make_build check || { cat tests/testsuite.log; exit 1; }
|
||||
%endif
|
||||
|
||||
%install
|
||||
%make_install DESTDIR=%{buildroot}
|
||||
mkdir %{buildroot}/bin
|
||||
mv %{buildroot}%{_mandir}/man8/gnurmt.8 %{buildroot}%{_mandir}/man1/gnurmt.1
|
||||
install -D -m 644 scripts/backup-specs %{buildroot}%{_sysconfdir}/backup/backup-specs
|
||||
# For avoiding file conflicts with dump/restore
|
||||
mv %{buildroot}%{_sbindir}/restore %{buildroot}%{_sbindir}/restore.sh
|
||||
rm -f %{buildroot}%{_infodir}/dir
|
||||
install -D -m 644 -t %{buildroot}%{_docdir}/%{name} README* ABOUT-NLS AUTHORS NEWS THANKS \
|
||||
ChangeLog TODO
|
||||
install -d -m 755 %{buildroot}%{_localstatedir}/lib/tests
|
||||
cp -r tests %{buildroot}%{_localstatedir}/lib/tests/tar
|
||||
rm %{buildroot}%{_localstatedir}/lib/tests/tar/*.{c,h,o}
|
||||
rm %{buildroot}%{_localstatedir}/lib/tests/tar/package.m4
|
||||
rm %{buildroot}%{_localstatedir}/lib/tests/tar/{atconfig,atlocal,Makefile}*
|
||||
# Alternatives system
|
||||
mkdir -p %{buildroot}%{_sysconfdir}/alternatives
|
||||
ln -sf %{_sysconfdir}/alternatives/rmt %{buildroot}%{_bindir}/rmt
|
||||
ln -sf %{_sysconfdir}/alternatives/rmt.1%{ext_man} %{buildroot}%{_mandir}/man1/rmt.1%{ext_man}
|
||||
%if !0%{?usrmerged}
|
||||
mkdir -p %{buildroot}/bin
|
||||
ln -s %{_bindir}/%{name} %{buildroot}/bin
|
||||
%endif
|
||||
%find_lang %{name}
|
||||
|
||||
%post rmt
|
||||
%{_sbindir}/update-alternatives --force \
|
||||
--install %{_bindir}/rmt rmt %{_bindir}/gnurmt 10 \
|
||||
--slave %{_mandir}/man1/rmt.1%{ext_man} rmt.1%{ext_man} %{_mandir}/man1/gnurmt.1%{ext_man}
|
||||
|
||||
%postun rmt
|
||||
if [ ! -f %{_bindir}/gnurmt ] ; then
|
||||
"%{_sbindir}/update-alternatives" --remove rmt %{_bindir}/gnurmt
|
||||
fi
|
||||
|
||||
%files backup-scripts
|
||||
%{_sbindir}/backup
|
||||
%{_sbindir}/restore.sh
|
||||
%{_libexecdir}/backup.sh
|
||||
%{_libexecdir}/dump-remind
|
||||
%dir %{_sysconfdir}/backup
|
||||
%config(noreplace) %{_sysconfdir}/backup/backup-specs
|
||||
|
||||
%files lang -f %{name}.lang
|
||||
|
||||
%files tests
|
||||
%{_localstatedir}/lib/tests
|
||||
%{_docdir}/%{name}/README-tests
|
||||
|
||||
%files rmt
|
||||
%ghost %{_bindir}/rmt
|
||||
%{_bindir}/gnurmt
|
||||
%ghost %{_mandir}/man1/rmt.1%{ext_man}
|
||||
%{_mandir}/man1/gnurmt.1%{?ext_man}
|
||||
%ghost %{_sysconfdir}/alternatives/rmt
|
||||
%ghost %{_sysconfdir}/alternatives/rmt.1%{ext_man}
|
||||
|
||||
%files doc
|
||||
%dir %{_docdir}/%{name}
|
||||
%{_docdir}/%{name}/NEWS
|
||||
%{_docdir}/%{name}/README
|
||||
%{_docdir}/%{name}/ABOUT-NLS
|
||||
%{_docdir}/%{name}/AUTHORS
|
||||
%{_docdir}/%{name}/THANKS
|
||||
%{_docdir}/%{name}/ChangeLog
|
||||
%{_docdir}/%{name}/TODO
|
||||
%{_infodir}/%{name}.info*%{?ext_info}
|
||||
|
||||
%files
|
||||
%license COPYING
|
||||
%if !0%{?usrmerged}
|
||||
/bin/%{name}
|
||||
%endif
|
||||
%{_bindir}/%{name}
|
||||
%{_mandir}/man1/%{name}.1%{?ext_man}
|
||||
|
||||
%changelog
|
Loading…
Add table
Add a link
Reference in a new issue