54 lines
1.7 KiB
Bash
54 lines
1.7 KiB
Bash
# Maintainer: ciciwu <doudingding213@gmail.com>
|
|
|
|
_realname=qasync
|
|
pkgbase=mingw-w64-python-${_realname}
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}")
|
|
pkgver=0.19.0
|
|
pkgrel=2
|
|
pkgdesc='Implementation of the PEP 3156 Event-Loop with Qt (mingw-w64)'
|
|
arch=('any')
|
|
mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32')
|
|
url="https://github.com/CabbageDevelopment/qasync"
|
|
license=('spdx:BSD-2-Clause')
|
|
depends=("${MINGW_PACKAGE_PREFIX}-python-pyqt5" "${MINGW_PACKAGE_PREFIX}-python")
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-python-setuptools")
|
|
source=("https://github.com/CabbageDevelopment/qasync/archive/refs/tags/v${pkgver}.tar.gz")
|
|
sha256sums=('e13b52441a5d8e4130e7dd807c3f374d3abde9fbafad10b997ea9994d007362f')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"
|
|
|
|
rm -rf python-build-${CARCH} | true
|
|
cp -r "${_realname}-${pkgver}" "python-build-${CARCH}"
|
|
|
|
# Set version for setuptools_scm
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver}
|
|
}
|
|
|
|
# Note that build() is sometimes skipped because it's done in
|
|
# the packages setup.py install for simplicity if you can do so.
|
|
# but sometimes, you want to do a check before install which would
|
|
# also trigger the build.
|
|
build() {
|
|
msg "Python build for ${CARCH}"
|
|
cd "${srcdir}/python-build-${CARCH}"
|
|
${MINGW_PREFIX}/bin/python setup.py build
|
|
}
|
|
|
|
#check() {
|
|
# msg "Python test for ${CARCH}"
|
|
# cd "${srcdir}/python-build-${CARCH}"
|
|
# PYTHONPATH=. ${MINGW_PREFIX}/bin/pytest .
|
|
#}
|
|
|
|
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
|
|
|
|
install -Dm644 LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE"
|
|
|
|
}
|
|
|