From b590c8d7572b727d565cc0b8ff660d43569845de Mon Sep 17 00:00:00 2001 From: root Date: Fri, 12 Jun 2026 19:09:37 -0500 Subject: Adding metadata --- dev-python/shapely/Manifest | 1 + dev-python/shapely/metadata.xml | 22 +++++++++++++++ dev-python/shapely/shapely-2.1.2.ebuild | 48 +++++++++++++++++++++++++++++++++ 3 files changed, 71 insertions(+) create mode 100644 dev-python/shapely/Manifest create mode 100644 dev-python/shapely/metadata.xml create mode 100644 dev-python/shapely/shapely-2.1.2.ebuild (limited to 'dev-python/shapely') diff --git a/dev-python/shapely/Manifest b/dev-python/shapely/Manifest new file mode 100644 index 000000000000..ea385628c0e5 --- /dev/null +++ b/dev-python/shapely/Manifest @@ -0,0 +1 @@ +DIST shapely-2.1.2.gh.tar.gz 371669 BLAKE2B d11c6c11e4567518d3bb6b4ec0ecf560ed2351d863825cb0c60465a303f5fe7fd6f5f957596745436b7fab0f38e6f2e2d0f259764002deb685eb6ec71f131d13 SHA512 2da9a4b92726c1a3f272f9b4358bc96b7da419550058179d73dd46c3bdfefe3133a30ff7a29dfaae0a1823fd5a9c9b6014dc485b637dff029242f3e8e27f1058 diff --git a/dev-python/shapely/metadata.xml b/dev-python/shapely/metadata.xml new file mode 100644 index 000000000000..b6e4032e952a --- /dev/null +++ b/dev-python/shapely/metadata.xml @@ -0,0 +1,22 @@ + + + + + 3dprint@gentoo.org + Gentoo 3D Printer Project + + + python@gentoo.org + Python + + + Shapely is a BSD-licensed Python package for manipulation and analysis of planar geometric objects. + It is based on the widely deployed GEOS (the engine of PostGIS) and JTS (from which GEOS is ported) libraries. + Shapely is not concerned with data formats or coordinate systems, but can be readily integrated with packages that are. + + + https://github.com/shapely/shapely/issues + https://shapely.readthedocs.io + + baldeagleos-repo + diff --git a/dev-python/shapely/shapely-2.1.2.ebuild b/dev-python/shapely/shapely-2.1.2.ebuild new file mode 100644 index 000000000000..ef3b5812cd93 --- /dev/null +++ b/dev-python/shapely/shapely-2.1.2.ebuild @@ -0,0 +1,48 @@ +# Copyright 1999-2026 Gentoo Authors +# Distributed under the terms of the GNU General Public License v2 + +EAPI=8 + +DISTUTILS_EXT=1 +DISTUTILS_USE_PEP517=setuptools +# TODO: freethreading +PYTHON_COMPAT=( python3_{13..14} ) + +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=" + dev-python/numpy:=[${PYTHON_USEDEP}] + >=sci-libs/geos-3.11.4 +" +RDEPEND=" + ${DEPEND} +" +BDEPEND=" + ${DEPEND} + >=dev-python/cython-0.29.32[${PYTHON_USEDEP}] + dev-python/packaging[${PYTHON_USEDEP}] +" + +EPYTEST_PLUGINS=() +distutils_enable_tests pytest + +python_test() { + rm -rf shapely || die + epytest --pyargs shapely +} -- cgit v1.3.1