summaryrefslogtreecommitdiff
path: root/dev-python/shapely/shapely-2.0.2.ebuild
diff options
context:
space:
mode:
authorLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-10-13 06:33:45 +0000
committerLiguros - Gitlab CI/CD [develop] <gitlab@liguros.net>2023-10-13 06:33:45 +0000
commitc6ef42fee1349f3686a9bd63f687d1fc41e5c3d4 (patch)
tree1d76279e53bc924bd2d7181676230ab3bde9eecd /dev-python/shapely/shapely-2.0.2.ebuild
parentead0f96cdaf201acef80b78e6ef29a17335daa61 (diff)
downloadbaldeagleos-repo-c6ef42fee1349f3686a9bd63f687d1fc41e5c3d4.tar.gz
baldeagleos-repo-c6ef42fee1349f3686a9bd63f687d1fc41e5c3d4.tar.xz
baldeagleos-repo-c6ef42fee1349f3686a9bd63f687d1fc41e5c3d4.zip
Adding metadata
Diffstat (limited to 'dev-python/shapely/shapely-2.0.2.ebuild')
-rw-r--r--dev-python/shapely/shapely-2.0.2.ebuild46
1 files changed, 46 insertions, 0 deletions
diff --git a/dev-python/shapely/shapely-2.0.2.ebuild b/dev-python/shapely/shapely-2.0.2.ebuild
new file mode 100644
index 000000000000..469ec6f07542
--- /dev/null
+++ b/dev-python/shapely/shapely-2.0.2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8,9,10,11} )
+
+inherit distutils-r1
+
+MY_P=${P/_p/.post}
+DESCRIPTION="Geometric objects, predicates, and operations"
+HOMEPAGE="
+ https://pypi.org/project/shapely/
+ https://github.com/shapely/shapely/
+"
+SRC_URI="
+ https://github.com/shapely/shapely/archive/${PV/_p/.post}.tar.gz
+ -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+DEPEND="
+ >=sci-libs/geos-3.9
+"
+RDEPEND="
+ ${DEPEND}
+ dev-python/numpy[${PYTHON_USEDEP}]
+"
+BDEPEND="
+ ${DEPEND}
+ >=dev-python/cython-0.29.32[${PYTHON_USEDEP}]
+ dev-python/packaging[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+ rm -rf shapely || die
+ epytest --pyargs shapely
+}