55 lines
1.9 KiB
Bash
55 lines
1.9 KiB
Bash
# Maintainer: Biswapriyo Nath <nathbappai@gmail.com>
|
|
# Contributor: Dirk Stolle
|
|
|
|
_realname=google-auth-httplib2
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
|
|
pkgver=0.2.1
|
|
pkgrel=1
|
|
pkgdesc="Google Authentication Library: httplib2 transport (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
msys2_references=(
|
|
'archlinux: python-google-auth-httplib2'
|
|
'gentoo: dev-python/google-auth-httplib2'
|
|
'purl: pkg:pypi/google-auth-httplib2'
|
|
)
|
|
url='https://github.com/googleapis/google-auth-library-python-httplib2'
|
|
msys2_changelog_url='https://github.com/googleapis/google-auth-library-python-httplib2/blob/main/CHANGELOG.md'
|
|
license=('spdx:Apache-2.0')
|
|
depends=(
|
|
"${MINGW_PACKAGE_PREFIX}-python"
|
|
"${MINGW_PACKAGE_PREFIX}-python-google-auth"
|
|
"${MINGW_PACKAGE_PREFIX}-python-httplib2"
|
|
)
|
|
makedepends=(
|
|
"${MINGW_PACKAGE_PREFIX}-python-build"
|
|
"${MINGW_PACKAGE_PREFIX}-python-installer"
|
|
"${MINGW_PACKAGE_PREFIX}-python-setuptools"
|
|
)
|
|
checkdepends=("${MINGW_PACKAGE_PREFIX}-python-flask"
|
|
"${MINGW_PACKAGE_PREFIX}-python-pytest"
|
|
"${MINGW_PACKAGE_PREFIX}-python-pytest-localserver")
|
|
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname//-/_}-${pkgver}.tar.gz")
|
|
sha256sums=('5ef03be3927423c87fb69607b42df23a444e434ddb2555b73b3679793187b7de')
|
|
|
|
build() {
|
|
cp -r "${_realname//-/_}-${pkgver}" "python-build-${MSYSTEM}" && cd "python-build-${MSYSTEM}"
|
|
python -m build --wheel --skip-dependency-check --no-isolation
|
|
}
|
|
|
|
check() {
|
|
cd "python-build-${MSYSTEM}"
|
|
python -m pytest || warning "Tests failed"
|
|
}
|
|
|
|
package() {
|
|
cd "python-build-${MSYSTEM}"
|
|
|
|
MSYS2_ARG_CONV_EXCL="--prefix=" \
|
|
python -m installer --prefix=${MINGW_PREFIX} \
|
|
--destdir="${pkgdir}" dist/*.whl
|
|
|
|
install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE"
|
|
}
|