SHA256
1
0
forked from pool/sed
sed/sed.spec
Stanislav Brabec e14196a1da Accepting request 149589 from home:sbrabec:branches:Base:System
- Update to version 4.2.2:
  * don't truncate input for lines of length 2^31 and longer
  * fix endless loop on incomplete multibyte sequences (bnc#743689)
  * -u also does unbuffered input
  * New command `F' to print current input file name
  * sed -i, s///w, and the `w' and `W' commands also obey the
    --binary option
  * --posix fails for scripts that end in a backslash.
  * New option -z (--null-data) to separate lines by ASCII NUL.
  * \x26 (and similar escaped sequences) produces a literal & in
    the replacement argument of the s/// command.
- Split lang package.
- Option to verify GPG signature.

OBS-URL: https://build.opensuse.org/request/show/149589
OBS-URL: https://build.opensuse.org/package/show/Base:System/sed?expand=0&rev=15
2013-01-22 17:57:26 +00:00

94 lines
2.7 KiB
RPMSpec

#
# spec file for package sed
#
# Copyright (c) 2013 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: sed
Version: 4.2.2
Release: 0
Summary: A Stream-Oriented Non-Interactive Text Editor
License: GPL-3.0+
Group: System/Base
Url: http://www.gnu.org/software/sed/
Source: %{name}-%{version}.tar.bz2
Source1: %{name}-%{version}.tar.bz2.sig
Source2: %{name}.keyring
# Use rpmbuild -D 'VERIFY_SIG 1' to verify signature during build or run one-shot check by "gpg-offline --verify --package=sed sed-*.sig".
%if 0%{?VERIFY_SIG}
BuildRequires: gpg-offline
%endif
PreReq: %install_info_prereq
Provides: base:/bin/sed
Recommends: %{name}-lang
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%description
Sed takes text input, performs one or more operations on it, and
outputs the modified text. Sed is typically used for extracting parts
of a file using pattern matching or for substituting multiple
occurrences of a string within a file.
%lang_package
%prep
%if 0%{?VERIFY_SIG}
%gpg_verify %{S:1}
%endif
%setup -q
%build
%define warn_flags -Wall -Wstrict-prototypes -Wpointer-arith -Wformat-security
export CFLAGS="%{optflags} %warn_flags"
./configure --prefix=/usr \
--mandir=%{_mandir} \
--infodir=%{_infodir} \
--without-included-regex \
%{_target_cpu}-suse-linux
%if %do_profiling
make %{?_smp_mflags} CFLAGS="$CFLAGS "%cflags_profile_generate
make %{?_smp_mflags} check
make clean
make %{?_smp_mflags} CFLAGS="$CFLAGS "%cflags_profile_feedback
%else
make %{?_smp_mflags}
%endif
make %{?_smp_mflags} check
%install
%makeinstall
#UsrMerge
mkdir -p %{buildroot}/bin
ln -s %{_bindir}/sed %{buildroot}/bin/sed
#EndUserMerge
%find_lang %{name}
%files
%defattr(-, root, root)
/bin/sed
%{_bindir}/sed
%doc AUTHORS BUGS COPYING* NEWS README* THANKS
%doc %{_infodir}/sed.info*.gz
%doc %{_mandir}/man*/*.gz
%files lang -f %{name}.lang
%post
%install_info --info-dir=%{_infodir} %{_infodir}/%name.info.gz
%postun
%install_info_delete --info-dir=%{_infodir} %{_infodir}/%name.info.gz
%changelog