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 735F3138359 for ; Mon, 23 Nov 2020 19:06:38 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A2329E07D7; Mon, 23 Nov 2020 19:06:37 +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-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 69009E07D7 for ; Mon, 23 Nov 2020 19:06:37 +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 3086F335DED for ; Mon, 23 Nov 2020 19:06:36 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 7452142C for ; Mon, 23 Nov 2020 19:06:34 +0000 (UTC) From: "Thomas Beierlein" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Thomas Beierlein" Message-ID: <1606158377.ebdc6e4c7763ee1a6400782c38706d7a5672ce9a.tomjbe@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sci-libs/pyshp/ X-VCS-Repository: repo/gentoo X-VCS-Files: sci-libs/pyshp/Manifest sci-libs/pyshp/pyshp-2.1.2.ebuild X-VCS-Directories: sci-libs/pyshp/ X-VCS-Committer: tomjbe X-VCS-Committer-Name: Thomas Beierlein X-VCS-Revision: ebdc6e4c7763ee1a6400782c38706d7a5672ce9a X-VCS-Branch: master Date: Mon, 23 Nov 2020 19:06:34 +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: 3e9d4f47-40c4-4a9a-b88d-770ab6e62982 X-Archives-Hash: c11ef2ff4576d7c6ec755f4c4f56ac9c commit: ebdc6e4c7763ee1a6400782c38706d7a5672ce9a Author: Thomas Beierlein gentoo org> AuthorDate: Mon Nov 23 19:06:17 2020 +0000 Commit: Thomas Beierlein gentoo org> CommitDate: Mon Nov 23 19:06:17 2020 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebdc6e4c sci-libs/pyshp: Version bump Package-Manager: Portage-3.0.9, Repoman-3.0.2 Signed-off-by: Thomas Beierlein gentoo.org> sci-libs/pyshp/Manifest | 1 + sci-libs/pyshp/pyshp-2.1.2.ebuild | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) diff --git a/sci-libs/pyshp/Manifest b/sci-libs/pyshp/Manifest index 93db1c90cc7..4ed1738c29e 100644 --- a/sci-libs/pyshp/Manifest +++ b/sci-libs/pyshp/Manifest @@ -1 +1,2 @@ DIST pyshp-2.1.0.tar.gz 215360 BLAKE2B 2b32a3db242b90f801abdbc31f3c930bc40c3ad0606433d90f62c6b9af3c0459e8c8467d60aec1075368779e5a4fffa9e3985e1875d82edf732faf982359c605 SHA512 ab0c7832f7e480ec3cdbf94ec29f84b590486625bde3d5cf465e5dc6ddca02998b99510b6c14d5ba005816c5b091044badc1e68988fd971f9e18266096ad86cb +DIST pyshp-2.1.2.tar.gz 217857 BLAKE2B f4c50e16987b13b7968fe37e4e7f20329b6871c879b837113aac281527f6a00d5d13e10f93e8ecd5896cf089d801d76cec5d93645a6919fbc48d96d4318bb767 SHA512 54fadaa133d3fbf3b9a318be02dd21c2a35a3c58c15de8e6d0cffa6ca83eefe12603fe5930d3df63ad4c6a6d711336752f08923c6406168207ac291d05592582 diff --git a/sci-libs/pyshp/pyshp-2.1.2.ebuild b/sci-libs/pyshp/pyshp-2.1.2.ebuild new file mode 100644 index 00000000000..5499cd13c87 --- /dev/null +++ b/sci-libs/pyshp/pyshp-2.1.2.ebuild @@ -0,0 +1,25 @@ +# Copyright 1999-2020 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI="7" + +PYTHON_COMPAT=( python3_{6,7,8} ) +inherit distutils-r1 + +DESCRIPTION="Pure Python read/write support for ESRI Shapefile format" +HOMEPAGE="https://pypi.org/project/pyshp/" +SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz" + +LICENSE="MIT" +SLOT="0" +KEYWORDS="~amd64 ~x86" +IUSE="test" +RESTRICT="!test? ( test )" + +RDEPEND="" +DEPEND="${RDEPEND} + dev-python/setuptools[${PYTHON_USEDEP}]" + +python_test() { + "${EPYTHON}" shapefile.py || die +}