89554c6fe1
Copy from Base:System/gzip based on submit request 28998 from user coolo OBS-URL: https://build.opensuse.org/request/show/28998 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/gzip?expand=0&rev=12
118 lines
3.2 KiB
RPMSpec
118 lines
3.2 KiB
RPMSpec
#
|
|
# spec file for package gzip (Version 1.3.12)
|
|
#
|
|
# Copyright (c) 2010 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: gzip
|
|
Url: http://www.gzip.org/
|
|
License: GPLv2+
|
|
Group: Productivity/Archiving/Compression
|
|
AutoReqProv: on
|
|
PreReq: %{install_info_prereq}
|
|
Version: 1.3.12
|
|
Release: 100
|
|
Summary: GNU Zip Compression Utilities
|
|
Source: %{name}-%{version}.tar.gz
|
|
Patch: zgrep.diff
|
|
Patch1: tempfile.diff
|
|
Patch2: zmore.diff
|
|
Patch3: non-exec-stack.diff
|
|
Patch4: http://rsync.samba.org/ftp/unpacked/rsync/patches/gzip-rsyncable.diff
|
|
Patch5: futimens.diff
|
|
Patch6: zdiff.diff
|
|
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
|
|
|
%description
|
|
Gzip reduces the size of the named files using Lempel-Ziv coding LZ77.
|
|
Whenever possible, each file is replaced by one with the extension .gz,
|
|
while keeping the same ownership modes and access and modification
|
|
times.
|
|
|
|
|
|
|
|
Authors:
|
|
--------
|
|
Jean-loup Gailly <gzip@prep.ai.mit.edu>
|
|
|
|
%prep
|
|
%setup -q
|
|
%patch
|
|
%patch1
|
|
%patch2
|
|
%patch3
|
|
%patch4 -p1
|
|
%patch5
|
|
%patch6
|
|
|
|
%build
|
|
CFLAGS="$RPM_OPT_FLAGS -fomit-frame-pointer \
|
|
-W -Wall -Wno-unused-parameter -Wstrict-prototypes -Wpointer-arith"
|
|
./configure CFLAGS="$CFLAGS" \
|
|
--prefix=%{_prefix} --infodir=%{_infodir} --mandir=%{_mandir}
|
|
profile_gzip()
|
|
{
|
|
tmpfile=$(mktemp)
|
|
trap "rm -f $tmpfile $tmpfile.gz" EXIT
|
|
tar -cf $tmpfile /usr || true
|
|
time ./gzip $tmpfile
|
|
time ./gzip -d < $tmpfile.gz > /dev/null
|
|
}
|
|
%if %{do_profiling}
|
|
make %{?jobs:-j%jobs} CFLAGS="$CFLAGS -fprofile-generate"
|
|
profile_gzip
|
|
make clean
|
|
make %{?jobs:-j%jobs} CFLAGS="$CFLAGS -fprofile-use"
|
|
%else
|
|
make %{?jobs:-j%jobs}
|
|
%endif
|
|
|
|
%check
|
|
for i in 1 2 3 4 5 6 7 8 9; do
|
|
for f in build-aux/texinfo.tex /bin/bash; do
|
|
basef=${f##*/}
|
|
time ./gzip -$i < $f > $basef.gz
|
|
./gzip --test $basef.gz
|
|
./gzip -d < $basef.gz > $basef.test$i
|
|
cmp $f $basef.test$i
|
|
done
|
|
done
|
|
|
|
%install
|
|
make DESTDIR=$RPM_BUILD_ROOT install
|
|
mkdir -p $RPM_BUILD_ROOT/bin
|
|
mv $RPM_BUILD_ROOT/usr/bin/{gzip,gunzip,zcat} $RPM_BUILD_ROOT/bin
|
|
sed -i 's:/usr/bin:/bin:' $RPM_BUILD_ROOT/bin/{gunzip,zcat}
|
|
ln -sf /bin/gzip /bin/gunzip /bin/zcat $RPM_BUILD_ROOT/usr/bin
|
|
ln -sf zmore $RPM_BUILD_ROOT/usr/bin/zless
|
|
ln -sf zmore.1 $RPM_BUILD_ROOT%{_mandir}/man1/zless.1
|
|
|
|
%files
|
|
%defattr(-, root, root)
|
|
/bin/*
|
|
/usr/bin/*
|
|
%doc README README-alpha AUTHORS ChangeLog TODO NEWS THANKS
|
|
%doc %{_infodir}/*.gz
|
|
%doc %{_mandir}/man*/*.gz
|
|
|
|
%post
|
|
%install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%postun
|
|
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz
|
|
|
|
%changelog
|