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 9AB5C138334 for ; Sun, 8 Dec 2019 18:54:19 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D3FC1E081A; Sun, 8 Dec 2019 18:54:18 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 90505E081A for ; Sun, 8 Dec 2019 18:54:18 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (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 6F96334D6E9 for ; Sun, 8 Dec 2019 18:54:17 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C85247FE for ; Sun, 8 Dec 2019 18:54:15 +0000 (UTC) From: "Andreas Sturmlechner" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Andreas Sturmlechner" Message-ID: <1575831241.616ac798ed90a9ae7c3fdbcf5240999d202150ff.asturm@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-python/pyproj/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-python/pyproj/pyproj-2.4.2.ebuild X-VCS-Directories: dev-python/pyproj/ X-VCS-Committer: asturm X-VCS-Committer-Name: Andreas Sturmlechner X-VCS-Revision: 616ac798ed90a9ae7c3fdbcf5240999d202150ff X-VCS-Branch: master Date: Sun, 8 Dec 2019 18:54:15 +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: 8064fa86-1010-4db9-9d41-ea1928b3a1c5 X-Archives-Hash: fd2362ce3fdb3a129e97af83db1cdc16 commit: 616ac798ed90a9ae7c3fdbcf5240999d202150ff Author: Andreas Sturmlechner gentoo org> AuthorDate: Sun Dec 8 18:54:01 2019 +0000 Commit: Andreas Sturmlechner gentoo org> CommitDate: Sun Dec 8 18:54:01 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616ac798 dev-python/pyproj: Drop -fno-strict-aliasing workaround Package-Manager: Portage-2.3.81, Repoman-2.3.20 Signed-off-by: Andreas Sturmlechner gentoo.org> dev-python/pyproj/pyproj-2.4.2.ebuild | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/dev-python/pyproj/pyproj-2.4.2.ebuild b/dev-python/pyproj/pyproj-2.4.2.ebuild index 5e1362ac22f..9cf1b1cb8b0 100644 --- a/dev-python/pyproj/pyproj-2.4.2.ebuild +++ b/dev-python/pyproj/pyproj-2.4.2.ebuild @@ -6,7 +6,7 @@ EAPI=7 # Python < 3.6 requires https://pypi.org/project/aenum/ PYTHON_COMPAT=( python3_{6,7,8} ) -inherit distutils-r1 flag-o-matic +inherit distutils-r1 DESCRIPTION="Python interface to the PROJ library" HOMEPAGE="https://github.com/jswhit/pyproj" @@ -32,11 +32,6 @@ PATCHES=( "${FILESDIR}"/${P}-conftest.patch ) distutils_enable_sphinx docs dev-python/sphinx_rtd_theme distutils_enable_tests pytest -python_prepare_all() { - distutils-r1_python_prepare_all - append-cflags -fno-strict-aliasing -} - python_test() { PROJ_LIB="${EPREFIX}/usr/share/proj" pytest -ra || die }