python-ipython: Removed python-path from dependency

python-pickleshare: Added MSYS2_ARG_CONV_EXCL variable. Added (mingw-w64) at the end of description. Removed python 2.8 compare from dependency. Added python-path as dependency.

python-path: Added MSYS2_ARG_CONV_EXCL variable. Added (mingw-w64) at the end of description. Removed python 2.8 compare from dependency.

python-traitlets: Added MSYS2_ARG_CONV_EXCL variable. Added (mingw-w64) at the end of description. Removed python 2.8 compare from dependency.

python-simplegeneric: Added MSYS2_ARG_CONV_EXCL variable. Added (mingw-w64) at the end of description. Removed python 2.8 compare from dependency.

python-ipython_genutils: Added MSYS2_ARG_CONV_EXCL variable. Added (mingw-w64) at the end of description. Removed python 2.8 compare from dependency.
This commit is contained in:
Ryuta Suzuki
2016-04-04 15:44:26 +09:00
parent 208364bd61
commit 452e289184
6 changed files with 32 additions and 22 deletions

View File

@@ -8,7 +8,7 @@ pkgname=(
)
pkgver=0.1.0
pkgrel=1
pkgdesc="IPython vestigial utilities"
pkgdesc="IPython vestigial utilities (mingw-w64)"
url="https://github.com/ipython/ipython_genutils"
arch=('any')
license=('Modified BSD')
@@ -38,16 +38,18 @@ package_python3-ipython_genutils() {
)
cd ${srcdir}/${_realname}-${pkgver}
python3 setup.py install --root=${pkgdir} --prefix=/${MINGW_PREFIX} --optimize=1
MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \
${MINGW_PREFIX}/bin/python3 setup.py install --root=${pkgdir} --prefix=${MINGW_PREFIX} --optimize=1
}
package_python2-ipython_genutils() {
depends=(
"${MINGW_PACKAGE_PREFIX}-python2>=2.7.0" "${MINGW_PACKAGE_PREFIX}-python2<2.8.0"
"${MINGW_PACKAGE_PREFIX}-python2>=2.7.0"
)
cd ${srcdir}/${_realname}-${pkgver}-py2
python2 setup.py install --root=${pkgdir} --prefix=/${MINGW_PREFIX} --optimize=1
MSYS2_ARG_CONV_EXCL="--prefix=;--install-scripts=;--install-platlib=" \
${MINGW_PREFIX}/bin/python2 setup.py install --root=${pkgdir} --prefix=${MINGW_PREFIX} --optimize=1
}
package_mingw-w64-i686-python2-ipython_genutils() {