Marcelo Duarte 9cb68cafdd
python-cx-freeze: update to 8.2.0 (and add dependencies) (#24078)
* python-cx-freeze: update to 8.2.0 (and add dependencies)

* include dependencies to depends list
2025-04-23 06:17:41 +01:00

55 lines
1.4 KiB
Bash

# Maintainer: Marcelo Duarte https://github.com/marcelotduarte
_realname=cabarchive
pkgbase=mingw-w64-python-${_realname}
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
pkgver=0.2.4
pkgrel=1
pkgdesc="A pure-python library for creating and extracting cab files (mingw-w64)"
arch=('any')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url="https://github.com/hughsie/python-cabarchive"
msys2_references=(
'purl: pkg:pypi/cabarchive'
)
license=('spdx:LGPL')
depends=(
"${MINGW_PACKAGE_PREFIX}-python"
)
makedepends=(
"${MINGW_PACKAGE_PREFIX}-python-build"
"${MINGW_PACKAGE_PREFIX}-python-installer"
"${MINGW_PACKAGE_PREFIX}-python-setuptools"
)
options=(!strip)
source=(
"https://pypi.org/packages/source/${_realname::1}/${_realname/-/_}/${_realname/-/_}-${pkgver}.tar.gz"
)
sha256sums=(
'04f60089473114cf26eab2b7e1d09611c5bfaf8edd3202dacef66bb5c71e48cf'
)
prepare() {
cd "$srcdir"
rm -rf python-build-${MSYSTEM} | true
cp -r "${_realname//_/-}-$pkgver" "python-build-${MSYSTEM}"
}
build() {
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 -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE"
}