Hello community, here is the log from the commit of package gnustep-make for openSUSE:Factory checked in at 2020-04-15 19:54:05 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/gnustep-make (Old) and /work/SRC/openSUSE:Factory/.gnustep-make.new.2738 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "gnustep-make" Wed Apr 15 19:54:05 2020 rev:4 rq:793910 version:2.8.0 Changes: -------- --- /work/SRC/openSUSE:Factory/gnustep-make/gnustep-make.changes 2019-09-20 14:36:11.167081992 +0200 +++ /work/SRC/openSUSE:Factory/.gnustep-make.new.2738/gnustep-make.changes 2020-04-15 19:54:08.205589302 +0200 @@ -1,0 +2,17 @@ +Tue Apr 14 10:48:02 UTC 2020 - Luigi Baldoni <[email protected]> + +- Update to version 2.8.0 + * Better library combo and ABI detection: gnustep-make will now + attempt to detect the optimal library combo and ABI + supported by the installed compiler and Objective-C runtime + library. Explicit selection of the runtime ABI is now + possible using the '--with-runtime-abi' configure option. + * Full support for the gnustep-2.0 Objective-C ABI. + * Support for creating a Git tag and creating a tarball from a + git tag using the 'git-tag' and 'git-dist' targets. + * Support for creating a Mercurial tag and creating a tarball + from a hg tag using the 'hg-tag' and 'hg-dist' targets. + +- Spec cleanup + +------------------------------------------------------------------- Old: ---- gnustep-make-2.7.0.tar.gz gnustep-make-2.7.0.tar.gz.sig New: ---- gnustep-make-2.8.0.tar.gz gnustep-make-2.8.0.tar.gz.sig ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ gnustep-make.spec ++++++ --- /var/tmp/diff_new_pack.w4n42g/_old 2020-04-15 19:54:08.865589599 +0200 +++ /var/tmp/diff_new_pack.w4n42g/_new 2020-04-15 19:54:08.869589600 +0200 @@ -1,7 +1,7 @@ # # spec file for package gnustep-make # -# Copyright (c) 2017 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 @@ -11,10 +11,9 @@ # 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/ -# +# Please submit bugfixes or comments via https://bugs.opensuse.org/ +# %define gs_config %{_sysconfdir}/GNUstep/GNUstep.conf @@ -22,22 +21,19 @@ %define gs_makefiles %{_datadir}/GNUstep/Makefiles # Disable LTO for all GNUstep packages %define _lto_cflags %{nil} - +# Disable debug package as rpm > 4.13 does not allow for empty debug file list. +%global debug_package %{nil} Name: gnustep-make -Summary: GNUstep Makefile package -Version: 2.7.0 +Version: 2.8.0 Release: 0 -License: LGPL-2.1+ and GPL-3.0+ +Summary: GNUstep Makefile package +License: LGPL-2.1-or-later AND GPL-3.0-or-later Group: System/GUI/Other -Url: http://www.gnustep.org/ +URL: http://www.gnustep.org/ Source: ftp://ftp.gnustep.org/pub/gnustep/core/%{name}-%{version}.tar.gz Source1: ftp://ftp.gnustep.org/pub/gnustep/core/%{name}-%{version}.tar.gz.sig Source2: %{name}-rpmlintrc BuildRequires: gcc-objc -BuildRoot: %{_tmppath}/%{name}-%{version}-build - -# Disable debug package as rpm > 4.13 does not allow for empty debug file list. -%global debug_package %{nil} %description This package contains the basic scripts, makefiles and directory @@ -45,12 +41,11 @@ was configured for the FHS file system layout, customised for SUSE. %prep -%setup -q +%autosetup # Set correct library path. sed -e 's|/lib/|/%{_lib}/|' -e 's|/lib$|/%{_lib}|' \ FilesystemLayouts/fhs-system > FilesystemLayouts/%{gs_layout} - %build # '--with-tar=tar' ensures we get the real tar rather than gnutar. # If star is installed, it sets up a duff gnutar. @@ -61,7 +56,6 @@ --with-tar=tar make %{?_smp_mflags} - %install make DESTDIR=%{buildroot} \ GNUSTEP_INSTALLATION_DOMAIN=SYSTEM \ @@ -71,8 +65,8 @@ %postun -p /sbin/ldconfig %files -%defattr (-, root, root) -%doc ANNOUNCE ChangeLog COPYING FAQ GNUstep-HOWTO NEWS README RELEASENOTES +%license COPYING +%doc ANNOUNCE ChangeLog FAQ GNUstep-HOWTO NEWS README RELEASENOTES %dir %{_sysconfdir}/GNUstep %dir %{_datadir}/GNUstep %{_bindir}/debugapp @@ -80,16 +74,15 @@ %{_bindir}/gnustep-tests %{_bindir}/openapp %{_bindir}/opentool -%{_mandir}/man1/debugapp.1.gz -%{_mandir}/man1/gnustep-config.1.gz -%{_mandir}/man1/gnustep-tests.1.gz -%{_mandir}/man1/openapp.1.gz -%{_mandir}/man1/opentool.1.gz -%{_mandir}/man7/GNUstep.7.gz -%{_mandir}/man7/library-combo.7.gz +%{_mandir}/man1/debugapp.1%{?ext_man} +%{_mandir}/man1/gnustep-config.1%{?ext_man} +%{_mandir}/man1/gnustep-tests.1%{?ext_man} +%{_mandir}/man1/openapp.1%{?ext_man} +%{_mandir}/man1/opentool.1%{?ext_man} +%{_mandir}/man7/GNUstep.7%{?ext_man} +%{_mandir}/man7/library-combo.7%{?ext_man} %config(noreplace) %{gs_config} %{gs_makefiles} -%defattr(0755,root,root) %{gs_makefiles}/*.template %{gs_makefiles}/*.*sh ++++++ gnustep-make-2.7.0.tar.gz -> gnustep-make-2.8.0.tar.gz ++++++ ++++ 5682 lines of diff (skipped)
