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 C4E87138350 for ; Wed, 22 Jan 2020 19:44:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D9258E086D; Wed, 22 Jan 2020 19:44:28 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id BB3CEE086D for ; Wed, 22 Jan 2020 19:44:28 +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 9091C34E35B for ; Wed, 22 Jan 2020 19:44:26 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 14E668C for ; Wed, 22 Jan 2020 19:44:24 +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: <1579722256.20f03c434d1c02d799e50538b92bab80fac8b39a.mgorny@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/python-dateutil/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild dev-python/python-dateutil/python-dateutil-2.8.1.ebuild X-VCS-Directories: dev-python/python-dateutil/ X-VCS-Committer: mgorny X-VCS-Committer-Name: Michał Górny X-VCS-Revision: 20f03c434d1c02d799e50538b92bab80fac8b39a X-VCS-Branch: master Date: Wed, 22 Jan 2020 19:44:24 +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: 70a1a649-9bb7-4eca-9d68-98182fee2e38 X-Archives-Hash: fc98ce9ffed5ad3b3454026e182fc1db commit: 20f03c434d1c02d799e50538b92bab80fac8b39a Author: Michał Górny gentoo org> AuthorDate: Wed Jan 22 19:39:12 2020 +0000 Commit: Michał Górny gentoo org> CommitDate: Wed Jan 22 19:44:16 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20f03c43 dev-python/python-dateutil: Remove broken setuptools_scm hack Closes: https://bugs.gentoo.org/706104 Signed-off-by: Michał Górny gentoo.org> ...hon-dateutil-2.8.1.ebuild => python-dateutil-2.8.1-r1.ebuild} | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/dev-python/python-dateutil/python-dateutil-2.8.1.ebuild b/dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild similarity index 82% rename from dev-python/python-dateutil/python-dateutil-2.8.1.ebuild rename to dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild index a92eae9c7e5..b86e7748caf 100644 --- a/dev-python/python-dateutil/python-dateutil-2.8.1.ebuild +++ b/dev-python/python-dateutil/python-dateutil-2.8.1-r1.ebuild @@ -18,7 +18,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" LICENSE="BSD" SLOT="0" KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos" -IUSE="test" RDEPEND=" >=dev-python/six-1.5[${PYTHON_USEDEP}] @@ -26,14 +25,13 @@ RDEPEND=" " BDEPEND="${RDEPEND} dev-python/setuptools[${PYTHON_USEDEP}] + dev-python/setuptools_scm[${PYTHON_USEDEP}] test? ( dev-python/freezegun[${PYTHON_USEDEP}] dev-python/hypothesis[${PYTHON_USEDEP}] ) " -RESTRICT="!test? ( test )" - PATCHES=( "${FILESDIR}/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch" "${FILESDIR}/python-dateutil-2.8.1-no-pytest-cov.patch" @@ -42,11 +40,6 @@ PATCHES=( distutils_enable_tests pytest python_prepare_all() { - # avoid a setuptools_scm dependency - sed -i "s:use_scm_version=True:version='${PV}',name='${PN//-/.}':" setup.py || die - sed -r -i "s:setuptools_scm[[:space:]]*([><=]{1,2}[[:space:]]*[0-9.a-zA-Z]+|)[[:space:]]*::" \ - setup.cfg || die - # don't install zoneinfo tarball sed -i '/package_data=/d' setup.py || die