summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorLukas Grossar2020-01-27 11:33:22 +0100
committerLukas Grossar2020-01-27 11:33:22 +0100
commita10e6dfd5ec47f6db5079cc4d3e22364f867c5a5 (patch)
tree3e6b2c992358f9924df44c66728e108bc392c015
parent5e33a3c7227a13b794374f86ea2c4c4bb62370b6 (diff)
downloadaur-a10e6dfd5ec47f6db5079cc4d3e22364f867c5a5.tar.gz
update pkgrel to add install message
Regarding discussion of renaming binary to helm2
-rw-r--r--.SRCINFO4
-rw-r--r--PKGBUILD3
-rw-r--r--kubernetes-helm2.install5
3 files changed, 9 insertions, 3 deletions
diff --git a/.SRCINFO b/.SRCINFO
index b660c065e2cb..135ae4b17add 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,8 +1,9 @@
pkgbase = kubernetes-helm2
pkgdesc = A tool to manage Kubernetes charts
pkgver = 2.16.1
- pkgrel = 2
+ pkgrel = 3
url = https://github.com/helm/helm
+ install = kubernetes-helm2.install
arch = i686
arch = x86_64
arch = arm
@@ -16,7 +17,6 @@ pkgbase = kubernetes-helm2
optdepends = kubectl-bin: check cluster status - binary package
conflicts = kubernetes-helm-bin
conflicts = kubernetes-helm
- conflicts = kubernetes-helm3
conflicts = kubernetes-helm-git
source = git+https://github.com/helm/helm#tag=v2.16.1
md5sums = SKIP
diff --git a/PKGBUILD b/PKGBUILD
index 9c23c48db3bb..4e0018b2e696 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -3,12 +3,13 @@
pkgname=kubernetes-helm2
pkgver=2.16.1
-pkgrel=2
+pkgrel=3
pkgdesc="A tool to manage Kubernetes charts"
arch=('i686' 'x86_64' 'arm' 'aarch64')
url="https://github.com/helm/helm"
makedepends=('git' 'glide' 'go')
depends=('socat')
+install="kubernetes-helm2.install"
optdepends=(
'kubectl: check cluster status'
'kubectl-bin: check cluster status - binary package'
diff --git a/kubernetes-helm2.install b/kubernetes-helm2.install
new file mode 100644
index 000000000000..3100342768da
--- /dev/null
+++ b/kubernetes-helm2.install
@@ -0,0 +1,5 @@
+post_upgrade() {
+ echo ">>> There are discussions if we should rename the helm binary to helm2"
+ echo ">>> If you support that change please provide feedback at"
+ echo ">>> https://aur.archlinux.org/packages/kubernetes-helm2/"
+}