[arch-commits] Commit in skaffold/repos/community-x86_64 (4 files)

Christian Rebischke shibumi at archlinux.org
Sat Jun 19 01:58:15 UTC 2021


    Date: Saturday, June 19, 2021 @ 01:58:15
  Author: shibumi
Revision: 965361

archrelease: copy trunk to community-x86_64

Added:
  skaffold/repos/community-x86_64/PKGBUILD
    (from rev 965360, skaffold/trunk/PKGBUILD)
  skaffold/repos/community-x86_64/build_info.patch
    (from rev 965360, skaffold/trunk/build_info.patch)
Deleted:
  skaffold/repos/community-x86_64/PKGBUILD
  skaffold/repos/community-x86_64/build_info.patch

------------------+
 PKGBUILD         |  122 ++++++++++++++++++++++++++---------------------------
 build_info.patch |   46 +++++++++----------
 2 files changed, 84 insertions(+), 84 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2021-06-19 01:58:08 UTC (rev 965360)
+++ PKGBUILD	2021-06-19 01:58:15 UTC (rev 965361)
@@ -1,61 +0,0 @@
-# Maintainer Christian Rebischke <chris.rebischke at archlinux.org>
-# Maintainer: Fredy García <frealgagu at gmail dot com>
-# Maintainer: Maxim Baz <${pkgname} at maximbaz dot com>
-# Contributor: Stefan Cocora <stefan dot cocora at gmail dot com>
-
-pkgname=skaffold
-pkgver=1.26.0
-pkgrel=1
-pkgdesc="A command line tool that facilitates continuous development for Kubernetes applications"
-arch=("x86_64")
-url="https://github.com/GoogleContainerTools/${pkgname}"
-license=("Apache")
-depends=("docker")
-makedepends=("go")
-optdepends=(
-  "minikube: To use Minikube"
-  "kubectl: For Kubernetes support"
-  "bash-completion: Tab autocompletion"
-)
-source=(
-  "${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz"
-)
-sha256sums=('fca580e136532986eed1bd3b27bba570fdd740cab649428c36a09dfbe252c427')
-_commit="851bcab1a12274966a846cbb95b0cf364f45531c"
-
-prepare() {
-  cd "${srcdir}/${pkgname}-${pkgver}"
-
-  rm -rf "${srcdir}/gopath"
-  mkdir -p "${srcdir}/gopath/bin"
-  mkdir -p "${srcdir}/gopath/src/github.com/GoogleContainerTools"
-  ln -rTsf "${srcdir}/${pkgname}-${pkgver}" "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
-}
-
-build() {
-  cd "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
-  export GOPATH="${srcdir}/gopath"
-  export PATH="${PATH}:${GOPATH}/bin"
-  export VERSION="v${pkgver}"
-  export COMMIT="${_commit}"
-  export TREE_STATE="clean"
-  export CGO_CPPFLAGS="${CPPFLAGS}"
-  export CGO_CFLAGS="${CFLAGS}"
-  export CGO_CXXFLAGS="${CXXFLAGS}"
-  export CGO_LDFLAGS="${LDFLAGS}"
-  export GOFLAGS="-buildmode=pie -mod=readonly -modcacherw -x -v -ldflags=-linkmode=external"
-  make install
-
-  # To avoid issues deleting directories next time
-  go clean --modcache
-
-  # Create completion files
-  "${srcdir}/gopath/bin/${pkgname}" completion bash > "${srcdir}/${pkgname}-completion.bash"
-  "${srcdir}/gopath/bin/${pkgname}" completion zsh > "${srcdir}/${pkgname}-completion.zsh"
-}
-
-package() {
-  install -Dm755 "${srcdir}/gopath/bin/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
-  install -Dm644 "${srcdir}/${pkgname}-completion.bash" "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
-  install -Dm644 "${srcdir}/${pkgname}-completion.zsh" "${pkgdir}/usr/share/zsh/site-functions/_skaffold"
-}

Copied: skaffold/repos/community-x86_64/PKGBUILD (from rev 965360, skaffold/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2021-06-19 01:58:15 UTC (rev 965361)
@@ -0,0 +1,61 @@
+# Maintainer Christian Rebischke <chris.rebischke at archlinux.org>
+# Maintainer: Fredy García <frealgagu at gmail dot com>
+# Maintainer: Maxim Baz <${pkgname} at maximbaz dot com>
+# Contributor: Stefan Cocora <stefan dot cocora at gmail dot com>
+
+pkgname=skaffold
+pkgver=1.26.1
+pkgrel=1
+pkgdesc="A command line tool that facilitates continuous development for Kubernetes applications"
+arch=("x86_64")
+url="https://github.com/GoogleContainerTools/${pkgname}"
+license=("Apache")
+depends=("docker")
+makedepends=("go")
+optdepends=(
+  "minikube: To use Minikube"
+  "kubectl: For Kubernetes support"
+  "bash-completion: Tab autocompletion"
+)
+source=(
+  "${pkgname}-${pkgver}.tar.gz::https://github.com/GoogleContainerTools/${pkgname}/archive/v${pkgver}.tar.gz"
+)
+sha256sums=('671ff8837ec352b42a95475722b9869b3640b97f65ebac31fb32ceb222146413')
+_commit="438dae66fbf35a1c9ee23f21a6f6e8d991c3edc6"
+
+prepare() {
+  cd "${srcdir}/${pkgname}-${pkgver}"
+
+  rm -rf "${srcdir}/gopath"
+  mkdir -p "${srcdir}/gopath/bin"
+  mkdir -p "${srcdir}/gopath/src/github.com/GoogleContainerTools"
+  ln -rTsf "${srcdir}/${pkgname}-${pkgver}" "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
+}
+
+build() {
+  cd "${srcdir}/gopath/src/github.com/GoogleContainerTools/${pkgname}"
+  export GOPATH="${srcdir}/gopath"
+  export PATH="${PATH}:${GOPATH}/bin"
+  export VERSION="v${pkgver}"
+  export COMMIT="${_commit}"
+  export TREE_STATE="clean"
+  export CGO_CPPFLAGS="${CPPFLAGS}"
+  export CGO_CFLAGS="${CFLAGS}"
+  export CGO_CXXFLAGS="${CXXFLAGS}"
+  export CGO_LDFLAGS="${LDFLAGS}"
+  export GOFLAGS="-buildmode=pie -mod=readonly -modcacherw -x -v -ldflags=-linkmode=external"
+  make install
+
+  # To avoid issues deleting directories next time
+  go clean --modcache
+
+  # Create completion files
+  "${srcdir}/gopath/bin/${pkgname}" completion bash > "${srcdir}/${pkgname}-completion.bash"
+  "${srcdir}/gopath/bin/${pkgname}" completion zsh > "${srcdir}/${pkgname}-completion.zsh"
+}
+
+package() {
+  install -Dm755 "${srcdir}/gopath/bin/${pkgname}" "${pkgdir}/usr/bin/${pkgname}"
+  install -Dm644 "${srcdir}/${pkgname}-completion.bash" "${pkgdir}/usr/share/bash-completion/completions/${pkgname}"
+  install -Dm644 "${srcdir}/${pkgname}-completion.zsh" "${pkgdir}/usr/share/zsh/site-functions/_skaffold"
+}

Deleted: build_info.patch
===================================================================
--- build_info.patch	2021-06-19 01:58:08 UTC (rev 965360)
+++ build_info.patch	2021-06-19 01:58:15 UTC (rev 965361)
@@ -1,23 +0,0 @@
-diff --git a/Makefile b/Makefile
-index dd22ea0..aa47490 100644
---- a/Makefile
-+++ b/Makefile
-@@ -35,7 +35,8 @@ SKAFFOLD_TEST_PACKAGES = ./pkg/skaffold/... ./cmd/... ./hack/... ./pkg/webhook/.
- GO_FILES = $(shell find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./pkg/diag/*")
- 
- VERSION_PACKAGE = $(REPOPATH)/pkg/skaffold/version
--COMMIT = $(shell git rev-parse HEAD)
-+COMMIT ?= $(shell git rev-parse HEAD)
-+TREE_STATE ?= $(if $(shell git status --porcelain),dirty,clean)
- 
- ifeq "$(strip $(VERSION))" ""
-  override VERSION = $(shell git describe --always --tags --dirty)
-@@ -52,7 +53,7 @@ GO_BUILD_TAGS_windows = "release"
- GO_LDFLAGS = -X $(VERSION_PACKAGE).version=$(VERSION)
- GO_LDFLAGS += -X $(VERSION_PACKAGE).buildDate=$(shell date +'%Y-%m-%dT%H:%M:%SZ')
- GO_LDFLAGS += -X $(VERSION_PACKAGE).gitCommit=$(COMMIT)
--GO_LDFLAGS += -X $(VERSION_PACKAGE).gitTreeState=$(if $(shell git status --porcelain),dirty,clean)
-+GO_LDFLAGS += -X $(VERSION_PACKAGE).gitTreeState=$(TREE_STATE)
- GO_LDFLAGS += -s -w
- 
- GO_LDFLAGS_windows =" $(GO_LDFLAGS)  -extldflags \"$(LDFLAGS_windows)\""

Copied: skaffold/repos/community-x86_64/build_info.patch (from rev 965360, skaffold/trunk/build_info.patch)
===================================================================
--- build_info.patch	                        (rev 0)
+++ build_info.patch	2021-06-19 01:58:15 UTC (rev 965361)
@@ -0,0 +1,23 @@
+diff --git a/Makefile b/Makefile
+index dd22ea0..aa47490 100644
+--- a/Makefile
++++ b/Makefile
+@@ -35,7 +35,8 @@ SKAFFOLD_TEST_PACKAGES = ./pkg/skaffold/... ./cmd/... ./hack/... ./pkg/webhook/.
+ GO_FILES = $(shell find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./pkg/diag/*")
+ 
+ VERSION_PACKAGE = $(REPOPATH)/pkg/skaffold/version
+-COMMIT = $(shell git rev-parse HEAD)
++COMMIT ?= $(shell git rev-parse HEAD)
++TREE_STATE ?= $(if $(shell git status --porcelain),dirty,clean)
+ 
+ ifeq "$(strip $(VERSION))" ""
+  override VERSION = $(shell git describe --always --tags --dirty)
+@@ -52,7 +53,7 @@ GO_BUILD_TAGS_windows = "release"
+ GO_LDFLAGS = -X $(VERSION_PACKAGE).version=$(VERSION)
+ GO_LDFLAGS += -X $(VERSION_PACKAGE).buildDate=$(shell date +'%Y-%m-%dT%H:%M:%SZ')
+ GO_LDFLAGS += -X $(VERSION_PACKAGE).gitCommit=$(COMMIT)
+-GO_LDFLAGS += -X $(VERSION_PACKAGE).gitTreeState=$(if $(shell git status --porcelain),dirty,clean)
++GO_LDFLAGS += -X $(VERSION_PACKAGE).gitTreeState=$(TREE_STATE)
+ GO_LDFLAGS += -s -w
+ 
+ GO_LDFLAGS_windows =" $(GO_LDFLAGS)  -extldflags \"$(LDFLAGS_windows)\""



More information about the arch-commits mailing list