70 lines
2.5 KiB
Bash
70 lines
2.5 KiB
Bash
# Maintainer: Christoph Reiter <reiter.christoph@gmail.com>
|
|
|
|
_realname=poetry
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
|
|
pkgver=2.2.1
|
|
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_changelog_url='https://python-poetry.org/history/'
|
|
msys2_references=(
|
|
'archlinux: python-poetry'
|
|
'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=('bef9aa4bb00ce4c10b28b25e7bac724094802d6958190762c45df6c12749b37c')
|
|
|
|
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}"
|
|
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 -D -m644 LICENSE "${pkgdir}${MINGW_PREFIX}"/share/licenses/python-${_realname}/LICENSE
|
|
}
|