Hello community, here is the log from the commit of package rakkess for openSUSE:Factory checked in at 2020-02-29 21:20:03 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/rakkess (Old) and /work/SRC/openSUSE:Factory/.rakkess.new.26092 (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "rakkess" Sat Feb 29 21:20:03 2020 rev:5 rq:780066 version:0.4.4 Changes: -------- --- /work/SRC/openSUSE:Factory/rakkess/rakkess.changes 2020-02-06 13:18:37.360654509 +0100 +++ /work/SRC/openSUSE:Factory/.rakkess.new.26092/rakkess.changes 2020-02-29 21:20:11.338002894 +0100 @@ -1,0 +2,11 @@ +Thu Feb 27 20:21:39 UTC 2020 - Kasimir _ <[email protected]> + +- Fix building on %arm architectures + +------------------------------------------------------------------- +Tue Feb 18 12:06:41 CET 2020 - [email protected] + +- Update to version 0.4.4 + - Upstream release script fixes + +------------------------------------------------------------------- Old: ---- rakkess-0.4.3.tar.gz New: ---- rakkess-0.4.4.tar.gz ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ rakkess.spec ++++++ --- /var/tmp/diff_new_pack.pgDBfA/_old 2020-02-29 21:20:12.026004255 +0100 +++ /var/tmp/diff_new_pack.pgDBfA/_new 2020-02-29 21:20:12.030004263 +0100 @@ -17,7 +17,7 @@ Name: rakkess -Version: 0.4.3 +Version: 0.4.4 Release: 0 Summary: Utility to show an access matrix for k8s server resources License: Apache-2.0 @@ -39,6 +39,9 @@ %build # use vendor directory and build as position independent executeable sed -i -e 's|go build -race|go build -mod vendor -buildmode=pie|g' Makefile +%ifarch %arm +export GOARCH=arm +%endif %ifarch aarch64 export GOARCH=arm64 %endif ++++++ rakkess-0.4.3.tar.gz -> rakkess-0.4.4.tar.gz ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rakkess-0.4.3/CONTRIBUTING.md new/rakkess-0.4.4/CONTRIBUTING.md --- old/rakkess-0.4.3/CONTRIBUTING.md 2020-01-31 00:04:31.000000000 +0100 +++ new/rakkess-0.4.4/CONTRIBUTING.md 2020-02-08 23:47:00.000000000 +0100 @@ -50,10 +50,9 @@ This is a checklist for new releases: -0. Create release notes in `doc/releases` -0. Update usage instructions, if applicable -0. Create a new tag via `hack/make_tag.sh` -0. Push the tag to GitHub `git push --tags` -0. Run `make deploy` -0. Create new release on GitHub Releases and upload artifacts -0. Update [krew-index](https://github.com/kubernetes-sigs/krew-index) +0. Create release notes in `doc/releases` by running `hack/release_notes.sh`. +0. Update usage instructions, if applicable. +0. Create a new tag via `hack/make_tag.sh`. +0. Push the tag to GitHub `git push origin v1.3.1`. +0. Check that PR is auto-created in [krew-index](https://github.com/kubernetes-sigs/krew-index). +0. When the release is created, update its summary with the release notes. diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rakkess-0.4.3/Makefile new/rakkess-0.4.4/Makefile --- old/rakkess-0.4.3/Makefile 2020-01-31 00:04:31.000000000 +0100 +++ new/rakkess-0.4.4/Makefile 2020-02-08 23:47:00.000000000 +0100 @@ -30,7 +30,7 @@ ASSETSKREW := $(BUILDDIR)/access-matrix-$(GOARCH)-darwin.tar.gz $(BUILDDIR)/access-matrix-$(GOARCH)-linux.tar.gz $(BUILDDIR)/access-matrix-$(GOARCH)-windows.zip CHECKSUMS := $(patsubst %,%.sha256,$(ASSETS) $(ASSETSKREW)) -VERSION_PACKAGE := $(REPOPATH)/pkg/rakkess/version +VERSION_PACKAGE := $(REPOPATH)/internal/version DATE_FMT = %Y-%m-%dT%H:%M:%SZ ifdef SOURCE_DATE_EPOCH diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rakkess-0.4.3/README.md new/rakkess-0.4.4/README.md --- old/rakkess-0.4.3/README.md 2020-01-31 00:04:31.000000000 +0100 +++ new/rakkess-0.4.4/README.md 2020-02-08 23:47:00.000000000 +0100 @@ -101,7 +101,7 @@ #### Linux ```bash -curl -LO https://github.com/corneliusweig/rakkess/releases/download/v0.4.3/rakkess-amd64-linux.tar.gz \ +curl -LO https://github.com/corneliusweig/rakkess/releases/download/v0.4.4/rakkess-amd64-linux.tar.gz \ && tar xf rakkess-amd64-linux.tar.gz rakkess-amd64-linux \ && chmod +x rakkess-amd64-linux \ && mv -i rakkess-amd64-linux $GOPATH/bin/rakkess @@ -109,14 +109,14 @@ #### OSX ```bash -curl -LO https://github.com/corneliusweig/rakkess/releases/download/v0.4.3/rakkess-amd64-darwin.tar.gz \ +curl -LO https://github.com/corneliusweig/rakkess/releases/download/v0.4.4/rakkess-amd64-darwin.tar.gz \ && tar xf rakkess-amd64-darwin.tar.gz rakkess-amd64-darwin \ && chmod +x rakkess-amd64-darwin \ && mv -i rakkess-amd64-darwin $GOPATH/bin/rakkess ``` #### Windows -[https://github.com/corneliusweig/rakkess/releases/download/v0.4.3/rakkess-windows-amd64.zip](https://github.com/corneliusweig/rakkess/releases/download/v0.4.3/rakkess-windows-amd64.zip) +[https://github.com/corneliusweig/rakkess/releases/download/v0.4.4/rakkess-windows-amd64.zip](https://github.com/corneliusweig/rakkess/releases/download/v0.4.4/rakkess-windows-amd64.zip) ### From source diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rakkess-0.4.3/cmd/resource.go new/rakkess-0.4.4/cmd/resource.go --- old/rakkess-0.4.3/cmd/resource.go 2020-01-31 00:04:31.000000000 +0100 +++ new/rakkess-0.4.4/cmd/resource.go 2020-02-08 23:47:00.000000000 +0100 @@ -37,7 +37,7 @@ Note that the effective access right may differ from the shown results due to group membership such as 'system:unauthenticated'. -More on https://github.com/corneliusweig/rakkess/blob/v0.4.3/doc/USAGE.md#usage +More on https://github.com/corneliusweig/rakkess/blob/v0.4.4/doc/USAGE.md#usage ` rakkessSubjectExamples = ` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rakkess-0.4.3/cmd/root.go new/rakkess-0.4.4/cmd/root.go --- old/rakkess-0.4.3/cmd/root.go 2020-01-31 00:04:31.000000000 +0100 +++ new/rakkess-0.4.4/cmd/root.go 2020-02-08 23:47:00.000000000 +0100 @@ -47,7 +47,7 @@ This complements the usual "kubectl auth can-i" command, which works for a single resource and a single verb. -More on https://github.com/corneliusweig/rakkess/blob/v0.4.3/doc/USAGE.md#usage +More on https://github.com/corneliusweig/rakkess/blob/v0.4.4/doc/USAGE.md#usage ` rakkessExamples = ` diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/rakkess-0.4.3/doc/releases/v0.4.4.md new/rakkess-0.4.4/doc/releases/v0.4.4.md --- old/rakkess-0.4.3/doc/releases/v0.4.4.md 1970-01-01 01:00:00.000000000 +0100 +++ new/rakkess-0.4.4/doc/releases/v0.4.4.md 2020-02-08 23:47:00.000000000 +0100 @@ -0,0 +1,3 @@ +* Update release instructions [#54](https://github.com/corneliusweig/rakkess/pull/54) +* Fix build script after package rename [#53](https://github.com/corneliusweig/rakkess/pull/53) +
