From 8fca0c82cc9742fddfb84cd509023c070ccf346a Mon Sep 17 00:00:00 2001 From: RoDuth Date: Fri, 9 May 2025 10:55:39 +1000 Subject: [PATCH] new package: python-pyproj Python interface to PROJ --- mingw-w64-python-pyproj/PKGBUILD | 39 ++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 mingw-w64-python-pyproj/PKGBUILD diff --git a/mingw-w64-python-pyproj/PKGBUILD b/mingw-w64-python-pyproj/PKGBUILD new file mode 100644 index 0000000000..6ce707c5d0 --- /dev/null +++ b/mingw-w64-python-pyproj/PKGBUILD @@ -0,0 +1,39 @@ +# Maintainer: Ross Demuth + +_realname=pyproj +pkgbase=mingw-w64-python-${_realname} +pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") +pkgver=3.7.1 +pkgrel=1 +pkgdesc="Python interface to PROJ (cartographic projections and coordinate transformations library)" +arch=('any') +mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64') +url='https://pyproj4.github.io/pyproj/' +license=('spdx:MIT') +depends=("${MINGW_PACKAGE_PREFIX}-python" + "${MINGW_PACKAGE_PREFIX}-python-certifi" + "${MINGW_PACKAGE_PREFIX}-proj") +makedepends=("${MINGW_PACKAGE_PREFIX}-python-build" + "${MINGW_PACKAGE_PREFIX}-python-installer" + "${MINGW_PACKAGE_PREFIX}-python-setuptools" + "${MINGW_PACKAGE_PREFIX}-cython" + "${MINGW_PACKAGE_PREFIX}-cc") +options=('!strip') +source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz") +sha256sums=('60d72facd7b6b79853f19744779abcd3f804c4e0d4fa8815469db20c9f640a47') + +build() { + cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}" + + python -m build --wheel --skip-dependency-check --no-isolation +} + +package() { + cd "python-build-${MSYSTEM}" + + MSYS2_ARG_CONV_EXCL="--prefix=" \ + python -m installer --prefix=${MINGW_PREFIX} \ + --destdir="${pkgdir}" dist/*.whl + + install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE" +}