summarylogtreecommitdiffstats
diff options
context:
space:
mode:
authorJerry Y. Chen2022-06-13 11:50:06 +0800
committerJerry Y. Chen2022-06-13 11:50:06 +0800
commit688731d7b2dca7a29bab61af6a2c5266bdd33af5 (patch)
tree25cc5a273c012fa90e25c2b9b8bf18958c43843a
parent8b87fb7d8ece91c392ca96d661209c55083adc36 (diff)
downloadaur-688731d7b2dca7a29bab61af6a2c5266bdd33af5.tar.gz
chore: change depends docker to optional
-rw-r--r--.SRCINFO6
-rw-r--r--PKGBUILD6
2 files changed, 6 insertions, 6 deletions
diff --git a/.SRCINFO b/.SRCINFO
index 4c9bbc0bb3a9..b185aabb6a31 100644
--- a/.SRCINFO
+++ b/.SRCINFO
@@ -1,13 +1,13 @@
pkgbase = skaffold-bin
pkgdesc = A command line tool that facilitates continuous development for Kubernetes applications
pkgver = 1.38.0
- pkgrel = 1
+ pkgrel = 2
url = https://github.com/GoogleContainerTools/skaffold
arch = x86_64
license = Apache
- depends = docker
+ optdepends = docker: One of tools for building images support by skaffold
optdepends = minikube: To use Minikube
- optdepends = kubectl: For Kubernetes support
+ optdepends = kubectl: One of tools for deploying applications support by skaffold
optdepends = bash-completion: Tab autocompletion
provides = skaffold
conflicts = skaffold
diff --git a/PKGBUILD b/PKGBUILD
index bf2403de0014..164053f86739 100644
--- a/PKGBUILD
+++ b/PKGBUILD
@@ -6,15 +6,15 @@ reponame=skaffold
provides=('skaffold')
conflicts=('skaffold')
pkgver=1.38.0
-pkgrel=1
+pkgrel=2
pkgdesc="A command line tool that facilitates continuous development for Kubernetes applications"
arch=("x86_64")
url="https://github.com/GoogleContainerTools/${reponame}"
license=("Apache")
-depends=("docker")
optdepends=(
+ "docker: One of tools for building images support by skaffold"
"minikube: To use Minikube"
- "kubectl: For Kubernetes support"
+ "kubectl: One of tools for deploying applications support by skaffold"
"bash-completion: Tab autocompletion"
)