2025-05-25 13:28:24 +02:00

68 lines
2.4 KiB
Bash

# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
_realname=poetry
pkgbase=mingw-w64-python-${_realname}
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
pkgver=2.1.3
pkgrel=1
pkgdesc="Python dependency management and packaging made easy (mingw-w64)"
arch=('any')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://python-poetry.org/'
msys2_repository_url='https://github.com/python-poetry/poetry'
msys2_references=(
'purl: pkg:pypi/poetry'
"cpe: cpe:/a:python-poetry:poetry"
)
license=('spdx:MIT')
depends=(
"${MINGW_PACKAGE_PREFIX}-python"
"${MINGW_PACKAGE_PREFIX}-python-poetry-core"
"${MINGW_PACKAGE_PREFIX}-python-build"
"${MINGW_PACKAGE_PREFIX}-python-cachecontrol"
"${MINGW_PACKAGE_PREFIX}-python-cleo"
"${MINGW_PACKAGE_PREFIX}-python-dulwich"
"${MINGW_PACKAGE_PREFIX}-python-fastjsonschema"
"${MINGW_PACKAGE_PREFIX}-python-findpython"
"${MINGW_PACKAGE_PREFIX}-python-installer"
"${MINGW_PACKAGE_PREFIX}-python-keyring"
"${MINGW_PACKAGE_PREFIX}-python-packaging"
"${MINGW_PACKAGE_PREFIX}-python-pbs-installer"
"${MINGW_PACKAGE_PREFIX}-python-pkginfo"
"${MINGW_PACKAGE_PREFIX}-python-platformdirs"
"${MINGW_PACKAGE_PREFIX}-python-pyproject-hooks"
"${MINGW_PACKAGE_PREFIX}-python-requests"
"${MINGW_PACKAGE_PREFIX}-python-requests-toolbelt"
"${MINGW_PACKAGE_PREFIX}-python-shellingham"
"${MINGW_PACKAGE_PREFIX}-python-tomlkit"
"${MINGW_PACKAGE_PREFIX}-python-trove-classifiers"
"${MINGW_PACKAGE_PREFIX}-python-virtualenv"
)
optdepends=(
"${MINGW_PACKAGE_PREFIX}-python-poetry-plugin-export: provides an export command"
"${MINGW_PACKAGE_PREFIX}-python-poetry-plugin-shell: provides the shell command"
)
options=('!strip')
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz")
sha256sums=('f2c9bd6790b19475976d88ea4553bcc3533c0dc73f740edc4fffe9e2add50594')
prepare() {
cd "${_realname}-${pkgver}"
sed -e 's/\^/>=/g' -e 's/~=/>=/g' -i pyproject.toml
}
build() {
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}"
${MINGW_PREFIX}/bin/python -m build --wheel --skip-dependency-check --no-isolation
}
package() {
cd "${srcdir}/python-build-${MSYSTEM}"
MSYS2_ARG_CONV_EXCL="--prefix=" \
${MINGW_PREFIX}/bin/python -m installer --prefix=${MINGW_PREFIX} \
--destdir="${pkgdir}" dist/*.whl
install -D -m644 LICENSE "${pkgdir}${MINGW_PREFIX}"/share/licenses/python-${_realname}/LICENSE
}