commit golang-packaging for openSUSE:Factory

Hello community, here is the log from the commit of package golang-packaging for openSUSE:Factory checked in at 2017-03-31 15:10:01 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/golang-packaging (Old) and /work/SRC/openSUSE:Factory/.golang-packaging.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Package is "golang-packaging" Fri Mar 31 15:10:01 2017 rev:18 rq:483409 version:15.0.3 Changes: -------- --- /work/SRC/openSUSE:Factory/golang-packaging/golang-packaging.changes 2017-03-21 22:48:36.802719940 +0100 +++ /work/SRC/openSUSE:Factory/.golang-packaging.new/golang-packaging.changes 2017-03-31 15:10:19.685253925 +0200 @@ -1,0 +2,14 @@ +Wed Mar 29 12:33:36 UTC 2017 - thipp@suse.de + +- Update to version 15.0.3: + * Remove duplicates when finding Requires + * bump version to v15.0.3 + +------------------------------------------------------------------- +Wed Mar 22 10:20:40 UTC 2017 - thipp@suse.de + +- Update to version 15.0.2: + * set correct modifier if no arguments are provided + * bump version to v15.0.2 + +------------------------------------------------------------------- Old: ---- golang-packaging-15.0.1.tar.xz New: ---- golang-packaging-15.0.3.tar.xz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ golang-packaging.spec ++++++ --- /var/tmp/diff_new_pack.XZRwnt/_old 2017-03-31 15:10:20.557130658 +0200 +++ /var/tmp/diff_new_pack.XZRwnt/_new 2017-03-31 15:10:20.561130092 +0200 @@ -17,12 +17,12 @@ Name: golang-packaging -Version: 15.0.1 +Version: 15.0.3 Release: 0 Summary: A toolchain to help packaging golang License: GPL-3.0 Group: Development/Languages/Golang -Url: https://github.com/marguerite/%{name} +Url: https://github.com/openSUSE/%{name} Source: %{name}-%{version}.tar.xz BuildRequires: rpm @@ -32,7 +32,7 @@ BuildArch: noarch %description -A toolchain to help packaging golang, written in ruby. +A toolchain to help packaging golang, written in bash. %prep %setup -q ++++++ _service ++++++ --- /var/tmp/diff_new_pack.XZRwnt/_old 2017-03-31 15:10:20.597125003 +0200 +++ /var/tmp/diff_new_pack.XZRwnt/_new 2017-03-31 15:10:20.597125003 +0200 @@ -4,8 +4,8 @@ <param name="scm">git</param> <param name="filename">golang-packaging</param> <param name="exclude">.git</param> - <param name="versionformat">15.0.1</param> - <param name="revision">v15.0.1</param> + <param name="versionformat">15.0.3</param> + <param name="revision">v15.0.3</param> <param name="changesgenerate">enable</param> </service> <service name="recompress" mode="disabled"> ++++++ golang-packaging-15.0.1.tar.xz -> golang-packaging-15.0.3.tar.xz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/golang-packaging-15.0.1/CHANGELOG new/golang-packaging-15.0.3/CHANGELOG --- old/golang-packaging-15.0.1/CHANGELOG 2017-03-14 12:47:19.000000000 +0100 +++ new/golang-packaging-15.0.3/CHANGELOG 2017-03-29 14:32:44.000000000 +0200 @@ -1,3 +1,11 @@ +== update version 15.0.3 == + + * Remove duplicates when finding Requires + +== update version 15.0.2 == + + * Set correct modifier when running build with no arguments + == update version 15.0.1 == * Fix crash when running build or test with no argument diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/golang-packaging-15.0.1/golang.req new/golang-packaging-15.0.3/golang.req --- old/golang-packaging-15.0.1/golang.req 2017-03-14 12:47:19.000000000 +0100 +++ new/golang-packaging-15.0.3/golang.req 2017-03-29 14:32:44.000000000 +0200 @@ -16,7 +16,7 @@ : done -for SEGMENT in $(go list -f '{{range $deps := .Deps}}{{printf "%s\n" $deps}}{{end}}' ${IMPORT}/... | grep -v ${IMPORT}); do +for SEGMENT in $(go list -f '{{range $deps := .Deps}}{{printf "%s\n" $deps}}{{end}}' ${IMPORT}/... | grep -v ${IMPORT} | sort -u); do STANDARD=$(go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}' ${SEGMENT} 2> /dev/null) if [[ $? -ne 0 || "${STANDARD}" != "" ]]; then diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/golang-packaging-15.0.1/golang.sh new/golang-packaging-15.0.3/golang.sh --- old/golang-packaging-15.0.1/golang.sh 2017-03-14 12:47:19.000000000 +0100 +++ new/golang-packaging-15.0.3/golang.sh 2017-03-29 14:32:44.000000000 +0200 @@ -110,11 +110,12 @@ process_build() { check_import_path - local modifier="${@: -1}" if [[ "$#" -eq 0 ]]; then + local modifier= local last=0 else + local modifier="${@: -1}" local last=$(($#-1)) fi @@ -173,7 +174,7 @@ process_test() { if [[ "${1}" == "" ]]; then - echo "Please specify a valid importpath, refernce: go help test" >&2 + echo "Please specify a valid importpath, reference: go help test" >&2 exit 1 fi
participants (1)
-
root@hilbert.suse.de