mingw-w64-python-hyphothesis - 3.76.0 - Update to latest version mingw-w64-ptyhon-jupyter-lient - 5.4 - Update to latest version mingw-w64-python-upyter-core - 4.4 - fix startup script files to run from MSYS2 prompt mingw-w64-python-path - 11/5 - Update to latest version, fix dependencies to match Archlinux omgw=w64=[u[arsomg - 2.2.1 - Update to latest version, rework to conform to pattern I established to facilitate tests mingw-w64-python2-importlib_resources 1.0.1 - New package required by python-importlib-metadata mingw-w64-python-importlib-metadata - 0.6 - new package required by python-path mingw-w64-python-jupyter-console - devide into separate PKGBUIL's so python2 version is 5.2.0 and python3 version is 6.0.0 - An upgrade - Jupyter-console is dropping python2 in latest version
92 lines
3.2 KiB
Bash
92 lines
3.2 KiB
Bash
# Maintainer: Ryuta Suzuki <oroppas@gmail.com>
|
|
|
|
_realname=path.py
|
|
pkgbase=mingw-w64-python-path
|
|
pkgname=("${MINGW_PACKAGE_PREFIX}-python3-path"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-path")
|
|
pkgver=11.5.0
|
|
pkgrel=1
|
|
pkgdesc="File system based database that uses python pickles (mingw-w64)"
|
|
url="https://pypi.org/project/path.py/"
|
|
arch=('any')
|
|
license=('MIT')
|
|
makedepends=("${MINGW_PACKAGE_PREFIX}-python3-setuptools"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-setuptools"
|
|
"${MINGW_PACKAGE_PREFIX}-python3-setuptools-scm"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-setuptools-scm"
|
|
"${MINGW_PACKAGE_PREFIX}-python3-importlib-metadata"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-importlib-metadata"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-backports.os")
|
|
checkdepends=("${MINGW_PACKAGE_PREFIX}-python3-pytest-runner"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-pytest-runner"
|
|
"${MINGW_PACKAGE_PREFIX}-python3-pytest-flake8"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-pytest-flake8")
|
|
source=("${_realname}-$pkgver.tar.gz"::"https://github.com/jaraco/path.py/archive/$pkgver.tar.gz")
|
|
sha512sums=('50612a6abd6bdce4127140aacbc935c48f141f6e6640b88544077632bfa27c30eea1b7cc6e7e8cd7ad9d9e7be0501f5928d00dcece67b7ca24f9e0380090980a')
|
|
|
|
prepare() {
|
|
cd "${srcdir}"
|
|
for builddir in python{2,3}-build-${CARCH}; do
|
|
rm -rf ${builddir} || true
|
|
cp -r "${_realname}-${pkgver}" "${builddir}"
|
|
done
|
|
# Set version for setuptools_scm
|
|
export SETUPTOOLS_SCM_PRETEND_VERSION=$pkgver
|
|
}
|
|
|
|
build() {
|
|
for pver in {2,3}; do
|
|
msg "Python ${pver} build for ${CARCH}"
|
|
cd "${srcdir}/python${pver}-build-${CARCH}"
|
|
${MINGW_PREFIX}/bin/python${pver} setup.py build
|
|
done
|
|
}
|
|
|
|
check() {
|
|
for pver in {2,3}; do
|
|
msg "Python ${pver} test for ${CARCH}"
|
|
cd "${srcdir}/python${pver}-build-${CARCH}"
|
|
${MINGW_PREFIX}/bin/python${pver} setup.py pytest || true
|
|
done
|
|
}
|
|
|
|
package_python3-path() {
|
|
depends=("${MINGW_PACKAGE_PREFIX}-python3-importlib-metadata")
|
|
|
|
cd "${srcdir}/python3-build-${CARCH}"
|
|
MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \
|
|
${MINGW_PREFIX}/bin/python3 setup.py install --root=${pkgdir} --prefix=${MINGW_PREFIX} --optimize=1 --skip-build
|
|
install -d ${pkgdir}${MINGW_PREFIX}/share/licenses/python3-${_realname}
|
|
head -n 21 path.py > ${pkgdir}${MINGW_PREFIX}/share/licenses/python3-${_realname}/LICENSE
|
|
}
|
|
|
|
package_python2-path() {
|
|
depends=("${MINGW_PACKAGE_PREFIX}-python2"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-importlib-metadata"
|
|
"${MINGW_PACKAGE_PREFIX}-python2-backports.os")
|
|
|
|
cd "${srcdir}/python2-build-${CARCH}"
|
|
MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \
|
|
${MINGW_PREFIX}/bin/python2 setup.py install --root=${pkgdir} --prefix=${MINGW_PREFIX} --optimize=1 --skip-build
|
|
install -d ${pkgdir}${MINGW_PREFIX}/share/licenses/python2-${_realname}
|
|
head -n 21 path.py > ${pkgdir}${MINGW_PREFIX}/share/licenses/python2-${_realname}/LICENSE
|
|
}
|
|
|
|
package_mingw-w64-i686-python2-path() {
|
|
package_python2-path
|
|
}
|
|
|
|
package_mingw-w64-i686-python3-path() {
|
|
package_python3-path
|
|
}
|
|
|
|
package_mingw-w64-x86_64-python2-path() {
|
|
package_python2-path
|
|
}
|
|
|
|
package_mingw-w64-x86_64-python3-path() {
|
|
package_python3-path
|
|
}
|
|
|
|
# vim:set ts=2 sw=2 et:
|