diff options
author | Kevin Daudt <kdaudt@alpinelinux.org> | 2021-06-22 11:02:02 +0000 |
---|---|---|
committer | Kevin Daudt <kdaudt@alpinelinux.org> | 2021-06-22 11:08:02 +0000 |
commit | 681d6aaeb4d2f8ae96f366732799352c77c90d74 (patch) | |
tree | b70f4216df4b057c12e8a03a9980cc3c415c94c4 | |
parent | 45dc613a93202259777d71ae75f16db606f28c2a (diff) | |
download | aports-681d6aaeb4d2f8ae96f366732799352c77c90d74.tar.gz aports-681d6aaeb4d2f8ae96f366732799352c77c90d74.tar.bz2 aports-681d6aaeb4d2f8ae96f366732799352c77c90d74.tar.xz |
main/openssh: reset dependencies for client-common
The client-common subpackage does not reset its dependencies, so it
inherits it from the parent package. This results into openssh-server
being installed when installing openssh-client, which is obviously not
desired.
Fixes #12786
-rw-r--r-- | main/openssh/APKBUILD | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/main/openssh/APKBUILD b/main/openssh/APKBUILD index 08352a1cae..50432c73aa 100644 --- a/main/openssh/APKBUILD +++ b/main/openssh/APKBUILD @@ -4,7 +4,7 @@ pkgname=openssh pkgver=8.6_p1 _myver=${pkgver%_*}${pkgver#*_} -pkgrel=1 +pkgrel=2 pkgdesc="Port of OpenBSD's free SSH release" url="https://www.openssh.com/portable.html" arch="all" @@ -190,6 +190,7 @@ _client_default() { _client_common() { pkgdesc="OpenBSD's SSH client common files" + depends="" install -d "$subpkgdir"/usr/bin \ "$subpkgdir"/usr/lib/ssh \ "$subpkgdir"/etc/ssh \ |