Hello community, here is the log from the commit of package wget for openSUSE:Factory checked in at 2020-03-17 13:07:29 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/wget (Old) and /work/SRC/openSUSE:Factory/.wget.new.3160 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "wget" Tue Mar 17 13:07:29 2020 rev:59 rq:784363 version:1.20.3 Changes: -------- --- /work/SRC/openSUSE:Factory/wget/wget.changes 2019-04-10 23:10:23.215918767 +0200 +++ /work/SRC/openSUSE:Factory/.wget.new.3160/wget.changes 2020-03-17 13:07:35.889681615 +0100 @@ -1,0 +2,6 @@ +Thu Mar 12 14:53:52 UTC 2020 - Paolo Stivanin <[email protected]> + +- split lang files into separate lang package +- add remove-env-from-shebang.patch + +------------------------------------------------------------------- New: ---- remove-env-from-shebang.patch ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ wget.spec ++++++ --- /var/tmp/diff_new_pack.hXnW7p/_old 2020-03-17 13:07:37.617682942 +0100 +++ /var/tmp/diff_new_pack.hXnW7p/_new 2020-03-17 13:07:37.617682942 +0100 @@ -1,7 +1,7 @@ # # spec file for package wget # -# Copyright (c) 2019 SUSE LINUX GmbH, Nuernberg, Germany. +# Copyright (c) 2020 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -12,7 +12,7 @@ # 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/ +# Please submit bugfixes or comments via https://bugs.opensuse.org/ # @@ -23,7 +23,7 @@ Summary: A Tool for Mirroring FTP and HTTP Servers License: GPL-3.0-or-later Group: Productivity/Networking/Web/Utilities -Url: https://www.gnu.org/software/wget/ +URL: https://www.gnu.org/software/wget/ Source: https://ftp.gnu.org/gnu/wget/%{name}-%{version}.tar.gz Source1: https://ftp.gnu.org/gnu/wget/%{name}-%{version}.tar.gz.sig Source2: https://savannah.gnu.org/project/memberlist-gpgkeys.php?group=wget&download=1#/wget.keyring @@ -33,6 +33,7 @@ # PATCH-FIX-OPENSUSE fix pod syntax for perl 5.18 [email protected] Patch7: wget-fix-pod-syntax.diff Patch8: wget-errno-clobber.patch +Patch9: remove-env-from-shebang.patch BuildRequires: automake BuildRequires: gpgme-devel >= 0.4.2 BuildRequires: libcares-devel @@ -68,6 +69,8 @@ Wget enables you to retrieve WWW documents or FTP files from a server. This can be done in script files or via the command line. +%lang_package + %prep %setup -q %patch0 -p1 @@ -77,6 +80,7 @@ %patch6 %patch7 -p1 %patch8 -p1 +%patch9 -p1 %build %if 0%{?suse_version} > 1110 @@ -87,16 +91,17 @@ --with-ssl=openssl \ --with-cares \ --with-metalink -make %{?_smp_mflags} V=1 +%make_build +sed -i 's/\/usr\/bin\/env perl -w/\/usr\/bin\/perl -w/' util/rmold.pl %check %if %{with regression_tests} -make %{?_smp_mflags} -C tests/ check +%make_build -C tests/ check %endif %install %make_install -%find_lang %{name} +%find_lang %{name} %{?no_lang_C} %post %install_info --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz @@ -104,7 +109,7 @@ %postun %install_info_delete --info-dir=%{_infodir} %{_infodir}/%{name}.info.gz -%files -f %{name}.lang +%files %license COPYING %doc AUTHORS NEWS README MAILING-LIST %doc doc/sample.wgetrc util/rmold.pl @@ -113,4 +118,6 @@ %config(noreplace) %{_sysconfdir}/wgetrc %{_bindir}/* +%files lang -f %{name}.lang + %changelog ++++++ remove-env-from-shebang.patch ++++++ --- a/util/rmold.pl.orig 2020-03-12 16:35:43.520481987 +0100 +++ b/util/rmold.pl 2020-03-12 16:35:49.244490296 +0100 @@ -1,4 +1,4 @@ -#!/usr/bin/env perl -w +#!/usr/bin/perl -w # Copyright (C) 1995-1997, 2007-2011, 2015, 2018-2019 Free Software # Foundation, Inc.
