This allows us to include a version and we already use PURL for other things, so might as well remove the pypi special case. Normalize the names, since that is required for PURLs.
54 lines
2.3 KiB
Bash
54 lines
2.3 KiB
Bash
# Maintainer: Konstantin Podsvirov <konstantin@podsvirov.pro>
|
|
|
|
_realname=httpx
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
|
|
pkgver=0.28.1
|
|
pkgrel=1
|
|
pkgdesc="A next generation HTTP client for Python (mingw-w64)"
|
|
arch=('any')
|
|
mingw_arch=('mingw64' 'ucrt64' 'clang64' 'clangarm64')
|
|
url='https://www.python-httpx.org/'
|
|
msys2_repository_url='https://github.com/encode/httpx'
|
|
msys2_references=(
|
|
"cpe: cpe:/a:encode:httpx"
|
|
"purl: pkg:pypi/httpx"
|
|
)
|
|
license=('spdx:BSD-3-Clause')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-python"
|
|
"${MINGW_PACKAGE_PREFIX}-python-certifi"
|
|
"${MINGW_PACKAGE_PREFIX}-python-httpcore"
|
|
"${MINGW_PACKAGE_PREFIX}-python-idna"
|
|
"${MINGW_PACKAGE_PREFIX}-python-sniffio"
|
|
"${MINGW_PACKAGE_PREFIX}-python-anyio")
|
|
optdepends=(#"${MINGW_PACKAGE_PREFIX}-python-brotli: for brotli response decompression"
|
|
#"${MINGW_PACKAGE_PREFIX}-python-brotlicffi: for brotli response decompression"
|
|
"${MINGW_PACKAGE_PREFIX}-python-h2: for HTTP/2 support"
|
|
#"${MINGW_PACKAGE_PREFIX}-python-socksio: for SOCKS proxy support"
|
|
#"${MINGW_PACKAGE_PREFIX}-python-trio: for trio backend"
|
|
"${MINGW_PACKAGE_PREFIX}-python-click: command line client support"
|
|
"${MINGW_PACKAGE_PREFIX}-python-rich: command line client support"
|
|
"${MINGW_PACKAGE_PREFIX}-python-pygments: command line client support")
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-python-build"
|
|
"${MINGW_PACKAGE_PREFIX}-python-installer"
|
|
"${MINGW_PACKAGE_PREFIX}-python-hatchling"
|
|
"${MINGW_PACKAGE_PREFIX}-python-hatch-fancy-pypi-readme")
|
|
options=('!strip')
|
|
source=("https://pypi.org/packages/source/${_realname::1}/${_realname}/${_realname}-${pkgver}.tar.gz")
|
|
sha256sums=('75e98c5f16b0f35b567856f597f06ff2270a374470a5c2392242528e3e3e42fc')
|
|
|
|
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.md "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE.md"
|
|
}
|