From 8a1d8357567ec97741f0bb617543457bb8aba81a Mon Sep 17 00:00:00 2001 From: Mehdi Chinoune Date: Sat, 22 Apr 2023 18:06:37 +0000 Subject: [PATCH] python-pygithub: update to 1.58.1 --- mingw-w64-python-pygithub/PKGBUILD | 42 ++++++++++++++++-------------- 1 file changed, 23 insertions(+), 19 deletions(-) diff --git a/mingw-w64-python-pygithub/PKGBUILD b/mingw-w64-python-pygithub/PKGBUILD index d84a3ded6e..375c7ef8f7 100644 --- a/mingw-w64-python-pygithub/PKGBUILD +++ b/mingw-w64-python-pygithub/PKGBUILD @@ -1,49 +1,53 @@ # Maintainer: Alexey Pavlov _realname=pygithub +_pyname=PyGithub pkgbase=mingw-w64-python-${_realname} pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") -pkgver=1.58.0 +pkgver=1.58.1 pkgrel=1 pkgdesc="Use the full Github API v3 (mingw-w64)" arch=('any') mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32' 'clangarm64') url="https://github.com/PyGithub/PyGithub/" -license=('LGPL') +license=('spdx:LGPL-3.0' 'spdx:GPL-3.0') depends=("${MINGW_PACKAGE_PREFIX}-python-deprecated" "${MINGW_PACKAGE_PREFIX}-python-pyjwt" "${MINGW_PACKAGE_PREFIX}-python-requests" "${MINGW_PACKAGE_PREFIX}-python-pynacl") -makedepends=("${MINGW_PACKAGE_PREFIX}-python-setuptools") +makedepends=("${MINGW_PACKAGE_PREFIX}-python-build" + "${MINGW_PACKAGE_PREFIX}-python-installer" + "${MINGW_PACKAGE_PREFIX}-python-setuptools" + "${MINGW_PACKAGE_PREFIX}-python-setuptools-scm" + "${MINGW_PACKAGE_PREFIX}-python-wheel") checkdepends=("${MINGW_PACKAGE_PREFIX}-python-pytest" "${MINGW_PACKAGE_PREFIX}-python-cryptography" "${MINGW_PACKAGE_PREFIX}-python-httpretty" "${MINGW_PACKAGE_PREFIX}-python-parameterized") -source=("${_realname}-${pkgver}.tar.gz::https://github.com/PyGithub/PyGithub/archive/v${pkgver}.tar.gz") -sha256sums=('4da38df541c4d1b2445598f2714ccfffab66d6ffcf662b48c8e9a037fe9478ca') +source=("https://pypi.org/packages/source/${_pyname::1}/${_pyname}/${_pyname}-${pkgver}.tar.gz") +sha256sums=('7d528b4ad92bc13122129fafd444ce3d04c47d2d801f6446b6e6ee2d410235b3') prepare() { - cd "${srcdir}" - rm -rf python-build-${CARCH} | true - cp -r "PyGithub-${pkgver}" "python-build-${CARCH}" + rm -rf python-build-${MSYSTEM} | true + cp -r "PyGithub-${pkgver}" "python-build-${MSYSTEM}" +} + + +build() { + cd "${srcdir}/python-build-${MSYSTEM}" + ${MINGW_PREFIX}/bin/python -m build --wheel --skip-dependency-check --no-isolation } check() { - cd "${srcdir}/python-build-${CARCH}" + cd "${srcdir}/python-build-${MSYSTEM}" ${MINGW_PREFIX}/bin/python -m pytest } -build() { - msg "Python build for ${CARCH}" - cd "${srcdir}/python-build-${CARCH}" - ${MINGW_PREFIX}/bin/python setup.py build -} - package() { - cd "${srcdir}/python-build-${CARCH}" - MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \ - ${MINGW_PREFIX}/bin/python setup.py install --prefix=${MINGW_PREFIX} \ - --root="${pkgdir}" --optimize=1 --skip-build + cd "${srcdir}/python-build-${MSYSTEM}" + MSYS2_ARG_CONV_EXCL="--prefix=" \ + ${MINGW_PREFIX}/bin/python -m installer --prefix=${MINGW_PREFIX} \ + --destdir="${pkgdir}" dist/*.whl install -vDm644 COPYING "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/COPYING" }