| # Maintainer: @naveen521kk on Github, Naveen M K <naveen@syrusdark.website> |
| |
| _pyname=pytest-shutil |
| _realname=pytest-shutil |
| pkgbase=mingw-w64-python-${_realname} |
| pkgname=("${MINGW_PACKAGE_PREFIX}-python-${_realname}") |
| pkgver=1.7.0 |
| pkgrel=2 |
| pkgdesc='A goodie-bag of unix shell and environment tools for py.test (mingw-w64)' |
| arch=('any') |
| mingw_arch=('mingw32' 'mingw64' 'ucrt64' 'clang64' 'clang32') |
| url="https://github.com/manahl/pytest-plugins" |
| license=('MIT') |
| depends=( |
| "${MINGW_PACKAGE_PREFIX}-python-six" |
| "${MINGW_PACKAGE_PREFIX}-python-execnet" |
| "${MINGW_PACKAGE_PREFIX}-python-contextlib2" |
| "${MINGW_PACKAGE_PREFIX}-python-pytest" |
| "${MINGW_PACKAGE_PREFIX}-python-path.py" |
| "${MINGW_PACKAGE_PREFIX}-python-mock" |
| "${MINGW_PACKAGE_PREFIX}-python-termcolor" |
| ) |
| makedepends=( |
| "${MINGW_PACKAGE_PREFIX}-python-setuptools" |
| "${MINGW_PACKAGE_PREFIX}-python-setuptools-scm" |
| "${MINGW_PACKAGE_PREFIX}-python-setuptools-git" |
| ) |
| source=("${_pyname}-${pkgver}.tar.gz::https://pypi.org/packages/source/${_pyname::1}/${_pyname}/${_pyname}-${pkgver}.tar.gz") |
| sha256sums=('d8165261de76e7508505c341d94c02b113dc963f274543abca74dbfabd021261') |
| |
| prepare() { |
| cd "$srcdir" |
| rm -rf python-build-${CARCH} | true |
| cp -r "${_pyname//_/-}-$pkgver" "python-build-${CARCH}" |
| export SETUPTOOLS_SCM_PRETEND_VERSION=${pkgver} |
| } |
| |
| build() { |
| msg "Python build for ${CARCH}" |
| cd "${srcdir}/python-build-${CARCH}" |
| ${MINGW_PREFIX}/bin/python setup.py build |
| } |
| |
| 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" |
| } |