X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx12.valuehost.ru (mx12.valuehost.ru [217.112.42.215]) by lists.alpinelinux.org (Postfix) with ESMTP id 4CF58F831A2 for ; Fri, 22 Feb 2019 13:25:14 +0000 (UTC) Received: from mx7.valuehost.ru (unknown [127.0.0.255]) by mx12.valuehost.ru (Postfix) with ESMTP id A4D2158716 for ; Fri, 22 Feb 2019 16:25:13 +0300 (MSK) From: alpine-mips-patches Date: Fri, 22 Feb 2019 12:53:47 +0000 Subject: [alpine-aports] [PATCH] main/openvswitch: fix dependency in the -test subpackage To: alpine-aports@lists.alpinelinux.org Message-Id: <20190222132513.A4D2158716@mx12.valuehost.ru> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: There is no 'py2-twisted', only 'py-twisted' exists. --- main/openvswitch/APKBUILD | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/main/openvswitch/APKBUILD b/main/openvswitch/APKBUILD index 6e6151a835..4034200ebf 100644 --- a/main/openvswitch/APKBUILD +++ b/main/openvswitch/APKBUILD @@ -2,7 +2,7 @@ # Maintainer: Stuart Cardall pkgname=openvswitch pkgver=2.10.1 -pkgrel=0 +pkgrel=1 pkgdesc="A production quality, multilayer virtual switch" url="http://openvswitch.org/" arch="all" @@ -108,7 +108,7 @@ bashcomp() { _test() { pkgdesc="Open vSwitch testing utilities" - depends="py2-$pkgname=$pkgver-r$pkgrel py2-twisted" + depends="py2-$pkgname=$pkgver-r$pkgrel py-twisted" cd "$pkgdir" local _py2site=$(python2 -c "import site; print(site.getsitepackages()[0])") _mv_files \ -- 2.20.1 A similar problem exists in the main/py-gnome aport: -bonobo and -libgnome subpackages reference the disabled -gnomecanvas --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---