Script 'mail_helper' called by obssrc Hello community, here is the log from the commit of package lsb-release for openSUSE:Factory checked in at 2022-03-28 17:00:14 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/lsb-release (Old) and /work/SRC/openSUSE:Factory/.lsb-release.new.1900 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "lsb-release" Mon Mar 28 17:00:14 2022 rev:21 rq:964865 version:3.2 Changes: -------- --- /work/SRC/openSUSE:Factory/lsb-release/lsb-release.changes 2020-03-12 22:59:04.995009315 +0100 +++ /work/SRC/openSUSE:Factory/.lsb-release.new.1900/lsb-release.changes 2022-03-28 17:01:01.789007573 +0200 @@ -1,0 +2,6 @@ +Fri Mar 25 13:39:05 UTC 2022 - Thorsten Kukuk <ku...@suse.com> + +- Update to version 3.2 + - Shell script compatibility cleanup + +------------------------------------------------------------------- Old: ---- lsb-release-3.1.tar.gz New: ---- lsb-release-3.2.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ lsb-release.spec ++++++ --- /var/tmp/diff_new_pack.lD2Sot/_old 2022-03-28 17:01:03.469009855 +0200 +++ /var/tmp/diff_new_pack.lD2Sot/_new 2022-03-28 17:01:03.473009861 +0200 @@ -1,7 +1,7 @@ # # spec file for package lsb-release # -# Copyright (c) 2020 SUSE LLC +# Copyright (c) 2022 SUSE LLC # # All modifications and additions to the file contributed by third parties # remain the property of their copyright owners, unless otherwise agreed @@ -17,20 +17,20 @@ Name: lsb-release -Version: 3.1 +Version: 3.2 Release: 0 Summary: Linux Standard Base Release Tools License: GPL-2.0-or-later Group: System/Fhs URL: https://github.com/thkukuk/lsb-release_os-release -Source: lsb-release-%{version}.tar.gz +Source: https://github.com/thkukuk/lsb-release_os-release/archive/refs/tags/v%{version}.tar.gz#/lsb-release-%{version}.tar.gz BuildArch: noarch %description Tools from the Linux Standard Base project to determine the used distribution %prep -%setup -q +%setup -q -n lsb-release_os-release-%{version} %build make ++++++ lsb-release-3.1.tar.gz -> lsb-release-3.2.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/lsb-release-3.1/lsb_release new/lsb-release_os-release-3.2/lsb_release --- old/lsb-release-3.1/lsb_release 2020-03-10 19:37:51.000000000 +0100 +++ new/lsb-release_os-release-3.2/lsb_release 2022-03-25 13:45:40.000000000 +0100 @@ -63,10 +63,11 @@ # Display Program Version for internal use (needed by help2man) DisplayProgramVersion() { - echo "`basename $0` v$SCRIPTVERSION" + echo "$(basename "$0") v$SCRIPTVERSION" echo echo "Copyright (C) 2000, 2002, 2004 Free Standards Group, Inc." echo "Copyright (C) 2017 SUSE Linux GmbH" + echo "Copyright (C) 2022 SUSE Software Solutions Germany GmbH" echo echo "This is free software; see the source for copying conditions. There is NO" echo "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." @@ -78,10 +79,10 @@ # defines the Usage for lsb_release Usage() { - echo "`basename $0` v$SCRIPTVERSION prints certain LSB (Linux Standard Base) and" + echo "$(basename "$0") v$SCRIPTVERSION prints certain LSB (Linux Standard Base) and" echo "Distribution information." echo - echo "Usage: `basename $0` [OPTION]..." + echo "Usage: $(basename "$0") [OPTION]..." echo "With no OPTION specified defaults to -v." echo echo "Options:" @@ -161,9 +162,9 @@ do if [ -z "$LSB_VERSION" ] then - LSB_VERSION=`basename $tag` + LSB_VERSION=$(basename "$tag") else - LSB_VERSION=$LSB_VERSION:`basename $tag` + LSB_VERSION=$LSB_VERSION:$(basename "$tag") fi done fi @@ -176,7 +177,7 @@ # Get the whole distrib information string (from /etc/os-release) InitDistribInfo() { - source $INFO_DISTRIB_FILE + . $INFO_DISTRIB_FILE NO="" # is Description string syntax correct ? if [ -z "$DISTRIB_DESCRIPTION" ]; then @@ -215,7 +216,7 @@ if [ -z "$DISTRIB_CODENAME" ]; then if [ -n "$VERSION_CODENAME" ]; then - DISTRIB_CODENAME = $VERSION_CODENAME + DISTRIB_CODENAME=$VERSION_CODENAME else DISTRIB_CODENAME=$MSG_NA fi