python-dulwich: update to 0.22.1

This commit is contained in:
Biswapriyo Nath
2024-06-19 07:36:26 +00:00
parent d92b3f7589
commit fca2dc2167

View File

@@ -3,13 +3,15 @@
_realname=dulwich
pkgbase=mingw-w64-python-${_realname}
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
pkgver=0.21.7
pkgver=0.22.1
pkgrel=1
pkgdesc="Python Git Library (mingw-w64)"
arch=('any')
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
url='https://www.dulwich.io/'
msys2_repository_url='https://github.com/jelmer/dulwich'
msys2_references=(
'archlinux: python-dulwich'
'pypi: dulwich'
)
license=('spdx:Apache-2.0 OR spdx:GPL-2.0-or-later')
@@ -18,19 +20,16 @@ depends=("${MINGW_PACKAGE_PREFIX}-python"
makedepends=("${MINGW_PACKAGE_PREFIX}-python-build"
"${MINGW_PACKAGE_PREFIX}-python-installer"
"${MINGW_PACKAGE_PREFIX}-python-setuptools"
"${MINGW_PACKAGE_PREFIX}-python-setuptools-rust"
"${MINGW_PACKAGE_PREFIX}-python-wheel"
"${MINGW_PACKAGE_PREFIX}-rust"
"${MINGW_PACKAGE_PREFIX}-cc")
options=(!strip)
options=('!strip')
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz")
sha256sums=('a9e9c66833cea580c3ac12927e4b9711985d76afca98da971405d414de60e968')
prepare() {
rm -rf "${srcdir}"/python-build-${MSYSTEM} || true
cp -r "${srcdir}/${_realname}-${pkgver}" "${srcdir}/python-build-${MSYSTEM}"
}
sha256sums=('e36d85967cfbf25da1c7bc3d6921adc5baa976969d926aaf1582bd5fd7e94758')
build() {
cd "${srcdir}/python-build-${MSYSTEM}"
cp -r "${_realname}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}"
${MINGW_PREFIX}/bin/python -m build --wheel --skip-dependency-check --no-isolation
}
@@ -47,5 +46,9 @@ package() {
${MINGW_PREFIX}/bin/python -m installer --prefix=${MINGW_PREFIX} \
--destdir="${pkgdir}" dist/*.whl
for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*; do
sed -e '1 { s/^#!.*python.*$/#!\/usr\/bin\/env python3/ }' -i ${_f}
done
install -Dm644 COPYING "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE"
}