50 lines
1.8 KiB
Bash
50 lines
1.8 KiB
Bash
# Maintainer: Sarah Ottinger <schalaalexiazeal@gmail.com>
|
|
|
|
_realname=google-api-core
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
|
|
pkgver=2.26.0
|
|
pkgrel=1
|
|
pkgdesc='Google API client core library (mingw-w64)'
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url="https://googleapis.dev/python/google-api-core/latest"
|
|
msys2_repository_url='https://github.com/googleapis/python-api-core'
|
|
msys2_changelog_url='https://googleapis.dev/python/google-api-core/latest/changelog.html'
|
|
msys2_references=(
|
|
'archlinux: python-google-api-core'
|
|
'gentoo: dev-python/google-api-core'
|
|
'purl: pkg:pypi/google-api-core'
|
|
)
|
|
license=('spdx:Apache-2.0')
|
|
depends=(
|
|
"${MINGW_PACKAGE_PREFIX}-python"
|
|
"${MINGW_PACKAGE_PREFIX}-python-google-auth"
|
|
"${MINGW_PACKAGE_PREFIX}-python-googleapis-common-protos"
|
|
"${MINGW_PACKAGE_PREFIX}-python-protobuf"
|
|
"${MINGW_PACKAGE_PREFIX}-python-proto-plus"
|
|
"${MINGW_PACKAGE_PREFIX}-python-requests"
|
|
)
|
|
makedepends=(
|
|
"${MINGW_PACKAGE_PREFIX}-python-build"
|
|
"${MINGW_PACKAGE_PREFIX}-python-installer"
|
|
"${MINGW_PACKAGE_PREFIX}-python-setuptools"
|
|
)
|
|
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname//-/_}-${pkgver}.tar.gz")
|
|
sha256sums=('e6e6d78bd6cf757f4aee41dcc85b07f485fbb069d5daa3afb126defba1e91a62')
|
|
|
|
build() {
|
|
cp -r "${_realname//-/_}-${pkgver}" "python-build-${MSYSTEM}" && 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"
|
|
}
|