SHA256
3
0
forked from pool/tar
tar/tar.spec
Vítězslav Čížek fec3f970c1 Accepting request 85438 from home:rudi_m:branches:Base:System
This supersedes sr85301, doing a major instead of minor cleanup, see
changelog.

Further notes on the removed patches:
fortifysourcessigabrt, fixed in upstream 065cf095
disable-listed02-test, why ever the test has been disabled in past
  now it works fine
tar-disable_languages, regarding the comments inside the patch it's
  time to drop it
manpage, call help2man from specfile instead of patching tar's build chain
  to avoid depending on autotools

OBS-URL: https://build.opensuse.org/request/show/85438
OBS-URL: https://build.opensuse.org/package/show/Base:System/tar?expand=0&rev=26
2011-10-04 11:53:30 +00:00

113 lines
3.2 KiB
RPMSpec

#
# spec file for package tar
#
# Copyright (c) 2011 SUSE LINUX Products GmbH, Nuernberg, Germany.
#
# All modifications and additions to the file contributed by third parties
# remain the property of their copyright owners, unless otherwise agreed
# upon. The license for this file, and modifications and additions to the
# file, is the same license as for the pristine package itself (unless the
# license for the pristine package is not an Open Source License, in which
# case the license is the MIT License). An "Open Source License" is a
# license that conforms to the Open Source Definition (Version 1.9)
# published by the Open Source Initiative.
# Please submit bugfixes or comments via http://bugs.opensuse.org/
#
Name: tar
Version: 1.26
Release: 1
License: GPLv3+
Summary: GNU implementation of tar ((t)ape (ar)chiver)
Url: http://www.gnu.org/software/tar/
Group: System/Base
Source0: %{name}-%{version}.tar.bz2
#
Patch3: tar-wildcards.patch
Patch6: tar-backup-spec-fix-paths.patch
BuildRequires: help2man
Requires(pre): info
Recommends: tar-lang = %{version}
Recommends: xz
Provides: base:/bin/tar
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define _bindir /bin
%description
This package normally also includes the program "rmt", which provides
remote tape drive control. Since there are compatible versions of 'rmt'
in either the 'star' package or the 'dump' package, we didn't put 'rmt'
into this package. If you are planning to use the remote tape features
provided by tar you have to also install the 'dump' or the 'star'
package.
%package backup-scripts
License: GPLv3+
Summary: Backup scripts
Group: Productivity/Archiving/Backup
Requires: %{name} = %{version}
%description backup-scripts
Shell scripts for system backup/restore
%lang_package
%prep
%setup -q
%patch3 -p1
%patch6 -p1
%build
%define my_cflags -W -Wall -Wpointer-arith -Wstrict-prototypes -Wformat-security -Wno-unused-parameter
export CFLAGS="%{optflags} %my_cflags"
export RSH="/usr/bin/rsh"
%configure \
--enable-backup-scripts \
--disable-silent-rules
make %{?_smp_mflags};
%check
make check
%install
%{?make_install} %{!?make_install:make install DESTDIR=%{buildroot}}
install -d -m 755 %{buildroot}/%{_mandir}/man1
help2man ./src/tar --name "The GNU version of the tar archiving utility" -p tar \
| gzip -c > %{buildroot}/%{_mandir}/man1/tar.1.gz
install -d -m 755 %{buildroot}%{_sysconfdir}/backup
install -D -m 644 scripts/backup-specs %{buildroot}%{_sysconfdir}/backup/backup-specs
rm -rf %{buildroot}%{_libexecdir}/rmt
%find_lang %{name}
%files lang -f %{name}.lang
%files backup-scripts
%defattr(-,root, root)
%{_sbindir}/backup
%{_sbindir}/restore
%{_libexecdir}/backup.sh
%{_libexecdir}/dump-remind
%dir %{_sysconfdir}/backup
%config(noreplace) %{_sysconfdir}/backup/backup-specs
%files
%defattr(-, root, root)
%{_bindir}/tar
%doc README* ABOUT-NLS AUTHORS COPYING NEWS THANKS ChangeLog TODO
%{_infodir}/tar.info*.gz
%{_mandir}/man1/tar.1.gz
%post
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
%clean
rm -rf %{buildroot}
%changelog