checked in (request 32575)
OBS-URL: https://build.opensuse.org/package/show/Base:System/tar?expand=0&rev=11
This commit is contained in:
parent
a8e9559c44
commit
4a0dc642b8
3
tar-1.21.tar.bz2
Normal file
3
tar-1.21.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
version https://git-lfs.github.com/spec/v1
|
||||||
|
oid sha256:dc6c70d2071ca4a928460b6d68ab500a32e67d50255261a0d17765a307aeb350
|
||||||
|
size 2071237
|
@ -1,3 +0,0 @@
|
|||||||
version https://git-lfs.github.com/spec/v1
|
|
||||||
oid sha256:3cefb67f197a3f8f5235999fe749ced0889466a71ddcbc96fddca84e5d53aa4d
|
|
||||||
size 2094575
|
|
10
tar-recognize_xz.patch
Normal file
10
tar-recognize_xz.patch
Normal file
@ -0,0 +1,10 @@
|
|||||||
|
--- src/suffix.c
|
||||||
|
+++ src/suffix.c
|
||||||
|
@@ -40,6 +40,7 @@
|
||||||
|
{ S(lzma, lzma) },
|
||||||
|
{ S(tlz, lzma) },
|
||||||
|
{ S(lzo, lzop) },
|
||||||
|
+ { S(xz, lzma) },
|
||||||
|
#undef S
|
||||||
|
};
|
||||||
|
|
11
tar.changes
11
tar.changes
@ -1,14 +1,3 @@
|
|||||||
-------------------------------------------------------------------
|
|
||||||
Tue Feb 2 20:35:03 UTC 2010 - mseben@novell.com
|
|
||||||
|
|
||||||
- updated to version 1.22
|
|
||||||
* Support for xz compression (--xz option)
|
|
||||||
* Short option -J is reassigned as a shortcut for --xz
|
|
||||||
* The option -I is a shortcut for --use-compress-program
|
|
||||||
* The --no-recursive option works with --incremental
|
|
||||||
- deprecated recognize_xz.patch
|
|
||||||
- created tar-backup-scripts subpackage (bnc#574688)
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sun Dec 6 17:52:57 CET 2009 - jengelh@medozas.de
|
Sun Dec 6 17:52:57 CET 2009 - jengelh@medozas.de
|
||||||
|
|
||||||
|
27
tar.spec
27
tar.spec
@ -26,15 +26,19 @@ Group: System/Base
|
|||||||
Provides: base:/bin/tar
|
Provides: base:/bin/tar
|
||||||
PreReq: %install_info_prereq
|
PreReq: %install_info_prereq
|
||||||
AutoReqProv: on
|
AutoReqProv: on
|
||||||
Version: 1.22
|
Version: 1.21
|
||||||
Release: 4
|
Release: 4
|
||||||
Summary: GNU implementation of tar ((t)ape (ar)chiver)
|
Summary: GNU implementation of tar ((t)ape (ar)chiver)
|
||||||
Source0: %name-%version.tar.bz2
|
Source0: %name-%version.tar.bz2
|
||||||
|
# merged
|
||||||
|
#Patch3: tar-gcc43.patch
|
||||||
|
#Patch4: tar-1.19-update_flag.patch
|
||||||
#
|
#
|
||||||
Patch0: tar-disable_languages.patch
|
Patch0: tar-disable_languages.patch
|
||||||
Patch1: tar-disable-listed02-test.diff
|
Patch1: tar-disable-listed02-test.diff
|
||||||
Patch2: tar-manpage.patch
|
Patch2: tar-manpage.patch
|
||||||
Patch3: tar-wildcards.patch
|
Patch3: tar-wildcards.patch
|
||||||
|
Patch4: tar-recognize_xz.patch
|
||||||
Patch5: tar-1.22-fortifysourcessigabrt.patch
|
Patch5: tar-1.22-fortifysourcessigabrt.patch
|
||||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||||
Recommends: xz
|
Recommends: xz
|
||||||
@ -71,16 +75,6 @@ Authors:
|
|||||||
The King <elvis@gnu.org>
|
The King <elvis@gnu.org>
|
||||||
Tom Tromey <tromey@drip.colorado.edu>
|
Tom Tromey <tromey@drip.colorado.edu>
|
||||||
|
|
||||||
|
|
||||||
%package backup-scripts
|
|
||||||
License: GPLv3+
|
|
||||||
Summary: Backup scirpts
|
|
||||||
Group: Productivity/Archiving/Backup
|
|
||||||
Requires: %{name} = %{version}-%{release}
|
|
||||||
|
|
||||||
%description backup-scripts
|
|
||||||
Shell scripts for system backup/restore
|
|
||||||
|
|
||||||
%lang_package
|
%lang_package
|
||||||
%prep
|
%prep
|
||||||
%setup -q
|
%setup -q
|
||||||
@ -88,6 +82,7 @@ Shell scripts for system backup/restore
|
|||||||
%patch1 -p1
|
%patch1 -p1
|
||||||
%patch2 -p1
|
%patch2 -p1
|
||||||
%patch3 -p1
|
%patch3 -p1
|
||||||
|
%patch4
|
||||||
%patch5 -p1
|
%patch5 -p1
|
||||||
|
|
||||||
%build
|
%build
|
||||||
@ -99,8 +94,7 @@ automake --force --add-missing
|
|||||||
export CFLAGS="$RPM_OPT_FLAGS %my_cflags"
|
export CFLAGS="$RPM_OPT_FLAGS %my_cflags"
|
||||||
export RSH="/usr/bin/rsh"
|
export RSH="/usr/bin/rsh"
|
||||||
./configure --prefix=%_prefix --bindir=%_bindir --mandir=%_mandir \
|
./configure --prefix=%_prefix --bindir=%_bindir --mandir=%_mandir \
|
||||||
--infodir=%_infodir --build=%{_target_cpu}-suse-linux \
|
--infodir=%_infodir --build=%{_target_cpu}-suse-linux
|
||||||
--enable-backup-scripts
|
|
||||||
make %{?jobs:-j%jobs};
|
make %{?jobs:-j%jobs};
|
||||||
|
|
||||||
%check
|
%check
|
||||||
@ -112,18 +106,11 @@ make %{?jobs:-j%jobs};
|
|||||||
|
|
||||||
%install
|
%install
|
||||||
make install DESTDIR=$RPM_BUILD_ROOT
|
make install DESTDIR=$RPM_BUILD_ROOT
|
||||||
install -D -m 644 scripts/backup-specs $RPM_BUILD_ROOT%{_sysconfdir}/backup-specs
|
|
||||||
rm -r %buildroot/usr/libexec
|
rm -r %buildroot/usr/libexec
|
||||||
%find_lang %name
|
%find_lang %name
|
||||||
|
|
||||||
%files lang -f %name.lang
|
%files lang -f %name.lang
|
||||||
|
|
||||||
%files backup-scripts
|
|
||||||
%defattr(-,root, root)
|
|
||||||
%_sbindir/backup
|
|
||||||
%_sbindir/restore
|
|
||||||
%config(noreplace) %{_sysconfdir}/backup-specs
|
|
||||||
|
|
||||||
%files
|
%files
|
||||||
%defattr(-, root, root)
|
%defattr(-, root, root)
|
||||||
%_bindir/tar
|
%_bindir/tar
|
||||||
|
Loading…
Reference in New Issue
Block a user