X-Original-To: alpine-aports@lists.alpinelinux.org Received: from mx1.mailbox.org (mx1.mailbox.org [80.241.60.212]) by lists.alpinelinux.org (Postfix) with ESMTP id C11FCF8565D for ; Fri, 5 Jul 2019 15:24:18 +0000 (UTC) Received: from smtp2.mailbox.org (smtp2.mailbox.org [80.241.60.241]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by mx1.mailbox.org (Postfix) with ESMTPS id 2EDCC506E2; Fri, 5 Jul 2019 17:24:17 +0200 (CEST) X-Virus-Scanned: amavisd-new at heinlein-support.de Received: from smtp2.mailbox.org ([80.241.60.241]) by hefe.heinlein-support.de (hefe.heinlein-support.de [91.198.250.172]) (amavisd-new, port 10030) with ESMTP id iDkhsdOFJe_L; Fri, 5 Jul 2019 17:24:06 +0200 (CEST) From: Robert Sacks To: alpine-aports@lists.alpinelinux.org Cc: Robert Sacks Subject: [alpine-aports] [PATCH] testing/py-testtools: use py2-traceback2 only for python2 Date: Fri, 5 Jul 2019 11:22:43 -0400 Message-Id: <20190705152243.11750-1-robert@sacks.email> X-Mailinglist: alpine-aports Precedence: list List-Id: Alpine Development List-Unsubscribe: List-Post: List-Help: List-Subscribe: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit --- testing/py-testtools/APKBUILD | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/testing/py-testtools/APKBUILD b/testing/py-testtools/APKBUILD index 130fab1216..8e9683390c 100644 --- a/testing/py-testtools/APKBUILD +++ b/testing/py-testtools/APKBUILD @@ -8,8 +8,7 @@ pkgdesc="Extensions to the Python standard library unit testing framework" url="https://pypi.python.org/pypi/testtools" arch="noarch" license="MIT" -depends="python py-pbr py-setuptools py-fixtures py-extras py-six py-traceback2 - py-mimeparse" +depends="python py-pbr py-setuptools py-fixtures py-extras py-six py-mimeparse" makedepends="py-setuptools py3-setuptools" subpackages="py2-${pkgname#py-}:_py2 py3-${pkgname#py-}:_py3" source="https://files.pythonhosted.org/packages/source/${_pkgname:0:1}/$_pkgname/$_pkgname-$pkgver.tar.gz" @@ -31,7 +30,7 @@ package() { _py2() { replaces="$pkgname" - depends="${depends//py-/py2-} py2-unittest2" ## remove if there are no common Python dependencies + depends="${depends//py-/py2-} py2-traceback2 py2-unittest2" ## remove if there are no common Python dependencies _py python2 } -- 2.22.0 --- Unsubscribe: alpine-aports+unsubscribe@lists.alpinelinux.org Help: alpine-aports+help@lists.alpinelinux.org ---