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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 54636139695 for ; Sat, 15 Apr 2017 19:31:58 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 00730E0CA4; Sat, 15 Apr 2017 19:31:54 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id D0388E0C9A for ; Sat, 15 Apr 2017 19:31:54 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 70A9D33D3C7 for ; Sat, 15 Apr 2017 19:31:53 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id AB858742C for ; Sat, 15 Apr 2017 19:31:51 +0000 (UTC) From: "Manuel Rüger" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Manuel Rüger" Message-ID: <1492284696.67470089a99c568b4e078688088f4d4f2f28c1f0.mrueg@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/acme/acme-9999.ebuild X-VCS-Directories: app-crypt/acme/ X-VCS-Committer: mrueg X-VCS-Committer-Name: Manuel Rüger X-VCS-Revision: 67470089a99c568b4e078688088f4d4f2f28c1f0 X-VCS-Branch: master Date: Sat, 15 Apr 2017 19:31:51 +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-Archives-Salt: 3afcde3a-5948-4ec3-b439-ba60a7c66c42 X-Archives-Hash: 05928aa9691262f2b96523e2e3d170df commit: 67470089a99c568b4e078688088f4d4f2f28c1f0 Author: Manuel Rüger gentoo org> AuthorDate: Sat Apr 15 19:31:36 2017 +0000 Commit: Manuel Rüger gentoo org> CommitDate: Sat Apr 15 19:31:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67470089 app-crypt/acme: Sync live Package-Manager: Portage-2.3.5, Repoman-2.3.2 app-crypt/acme/acme-9999.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-crypt/acme/acme-9999.ebuild b/app-crypt/acme/acme-9999.ebuild index 469f2ebb3d1..ce2e17f3d79 100644 --- a/app-crypt/acme/acme-9999.ebuild +++ b/app-crypt/acme/acme-9999.ebuild @@ -28,11 +28,16 @@ RDEPEND=">=dev-python/cryptography-0.8[${PYTHON_USEDEP}] >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}] dev-python/pyrfc3339[${PYTHON_USEDEP}] dev-python/pytz[${PYTHON_USEDEP}] - >=dev-python/requests-2.4.1[${PYTHON_USEDEP}] + >=dev-python/requests-2.10[${PYTHON_USEDEP}] dev-python/six[${PYTHON_USEDEP}]" DEPEND="test? ( ${RDEPEND} dev-python/nose[${PYTHON_USEDEP}] ) >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]" +python_prepare_all() { + sed -i -e "/'argparse',/d" setup.py || die + distutils-r1_python_prepare_all +} + python_test() { nosetests -w ${PN} || die }