diff --git a/mingw-w64-python-hatch-vcs/PKGBUILD b/mingw-w64-python-hatch-vcs/PKGBUILD new file mode 100644 index 0000000000..30e8a27c83 --- /dev/null +++ b/mingw-w64-python-hatch-vcs/PKGBUILD @@ -0,0 +1,42 @@ +# Contributor: Mehdi Chinoune + +_realname=hatch-vcs +pkgbase=mingw-w64-python-${_realname} +pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") +pkgver=0.2.0 +pkgrel=1 +pkgdesc="Hatch plugin for versioning with your preferred VCS (mingw-w64)" +arch=('any') +mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32') +url='https://github.com/ofek/hatch-vcs' +license=('MIT') +depends=("${MINGW_PACKAGE_PREFIX}-python-hatchling" + "${MINGW_PACKAGE_PREFIX}-python-setuptools-scm") +makedepends=("${MINGW_PACKAGE_PREFIX}-python-build" "${MINGW_PACKAGE_PREFIX}-python-installer") +checkdepends=("${MINGW_PACKAGE_PREFIX}-python-pytest") +source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname/-/_}-${pkgver}.tar.gz") +sha256sums=('9913d733b34eec9bb0345d0626ca32165a4ad2de15d1ce643c36d09ca908abff') + +build() { + cp -r "${_realname/-/_}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}" + + ${MINGW_PREFIX}/bin/python -m build --wheel --skip-dependency-check --no-isolation +} + +check() { + cd "${srcdir}/python-build-${MSYSTEM}" + +# The test command will usually depend upon what is contained in the tox.ini file +# or in the [testenv:py] section of the pyproject.toml file. + ${MINGW_PREFIX}/bin/python -m pytest +} + +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 -Dm644 LICENSE.txt "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE" +}