From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id A5776158086 for ; Sun, 28 Nov 2021 14:42:11 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 955D8E0875; Sun, 28 Nov 2021 14:42:09 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 2AFFCE0871 for ; Sun, 28 Nov 2021 14:42:09 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 803E5342E8B for ; Sun, 28 Nov 2021 14:42:07 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0F1BE1F5 for ; Sun, 28 Nov 2021 14:42:06 +0000 (UTC) From: "Michał Górny" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Michał Górny" Message-ID: <1638110325.e74180222e48927e2bcff019334334bdd219a0c0.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pypiserver/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pypiserver/pypiserver-1.4.2.ebuild X-VCS-Directories: dev-python/pypiserver/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: e74180222e48927e2bcff019334334bdd219a0c0 X-VCS-Branch: master Date: Sun, 28 Nov 2021 14:42:06 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ccb70129-89d5-465f-b152-7ab069c8d69f X-Archives-Hash: 830fe83401334f906fb7fde1c5e3e377 commit: e74180222e48927e2bcff019334334bdd219a0c0 Author: Michał Górny gentoo org> AuthorDate: Sat Nov 27 09:14:35 2021 +0000 Commit: Michał Górny gentoo org> CommitDate: Sun Nov 28 14:38:45 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7418022 dev-python/pypiserver: Skip twine dep on non-Rust arches Signed-off-by: Michał Górny gentoo.org> dev-python/pypiserver/pypiserver-1.4.2.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dev-python/pypiserver/pypiserver-1.4.2.ebuild b/dev-python/pypiserver/pypiserver-1.4.2.ebuild index 18a622a294c3..03081fc7cba8 100644 --- a/dev-python/pypiserver/pypiserver-1.4.2.ebuild +++ b/dev-python/pypiserver/pypiserver-1.4.2.ebuild @@ -24,8 +24,10 @@ BDEPEND=" ${RDEPEND} dev-python/passlib[${PYTHON_USEDEP}] >=dev-python/pytest-2.3[${PYTHON_USEDEP}] - dev-python/twine[${PYTHON_USEDEP}] dev-python/webtest[${PYTHON_USEDEP}] + !alpha? ( !hppa? ( !ia64? ( + dev-python/twine[${PYTHON_USEDEP}] + ) ) ) )" DOCS=( README.rst )