| # Maintainer: Patrick Stewart <patstew@gmail.com> |
| |
| _realname=jsonschema |
| pkgbase=mingw-w64-python-${_realname} |
| pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") |
| provides=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") |
| conflicts=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") |
| replaces=("${MINGW_PACKAGE_PREFIX}-python3-${_realname}") |
| pkgver=3.2.0 |
| pkgrel=2 |
| pkgdesc="An implementation of JSON Schema validation for Python (mingw-w64)" |
| arch=('any') |
| mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32') |
| url="https://pypi.python.org/pypi/jsonschema" |
| license=('MIT') |
| depends=("${MINGW_PACKAGE_PREFIX}-python" |
| "${MINGW_PACKAGE_PREFIX}-python-setuptools" |
| "${MINGW_PACKAGE_PREFIX}-python-attrs" |
| "${MINGW_PACKAGE_PREFIX}-python-pyrsistent" |
| "${MINGW_PACKAGE_PREFIX}-python-six" |
| "${MINGW_PACKAGE_PREFIX}-python-importlib-metadata") |
| makedepends=("${MINGW_PACKAGE_PREFIX}-python-setuptools-scm") |
| options=('staticlibs' 'strip' '!debug') |
| source=("${_realname}-${pkgver}.tar.gz::https://github.com/Julian/jsonschema/archive/v${pkgver}.tar.gz") |
| sha256sums=('026ffa0674256c9b0fda123ea84774d6650a949bb71eebf5d87f90ec255b7c9e') |
| |
| prepare() { |
| rm -rf python-build-${CARCH} || true |
| cp -r "${_realname}-${pkgver}" "python-build-${CARCH}" |
| |
| # Set version for setuptools_scm |
| export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver} |
| } |
| |
| 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}" |
| ${MINGW_PREFIX}/bin/python setup.py check |
| } |
| |
| 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 |
| |
| find "${pkgdir}/" -name "*.pyc" -delete |
| find "${pkgdir}/" -type d -empty -delete |
| |
| install -Dm644 json/LICENSE "${pkgdir}${MINGW_PREFIX}/share/licenses/python-${_realname}/LICENSE" |
| |
| # remove shebang line |
| for _f in "${pkgdir}${MINGW_PREFIX}"/bin/*-script.py; do |
| sed -e '1 { s/^#!.*$// }' -i ${_f} |
| done |
| } |