Date: Monday, October 19, 2015 @ 02:30:18 Author: kkeen Revision: 144348
upgpkg: ipython 4.0.0-4 ipykernel, python-path update Modified: ipython/trunk/PKGBUILD ----------+ PKGBUILD | 24 +++++++----------------- 1 file changed, 7 insertions(+), 17 deletions(-) Modified: PKGBUILD =================================================================== --- PKGBUILD 2015-10-19 00:02:23 UTC (rev 144347) +++ PKGBUILD 2015-10-19 00:30:18 UTC (rev 144348) @@ -5,15 +5,15 @@ # Contributor: Chris Brannon <[email protected]> # Contributor : Douglas Soares de Andrade <[email protected]> -pkgbase=ipython +pkgbase=ipython pkgname=(ipython ipython2) pkgver=4.0.0 -pkgrel=3 +pkgrel=4 pkgdesc="An enhanced Interactive Python shell." arch=('any') url="http://ipython.org" license=('BSD') -depends=('python' 'python-decorator' 'python-pexpect' 'sqlite' 'python-setuptools') +depends=('python' 'python-decorator' 'python-pexpect' 'sqlite' 'python-setuptools' 'python-path') makedepends=('python-setuptools' 'python2-setuptools') optdepends=("python-nose: for IPython's test suite") install=ipython.install @@ -20,21 +20,19 @@ # some of these will update rapidly, others never # so _vars will be phased in as new updates are released -_ipykv=4.0.3 +_ipykv=4.1.0 source=("https://pypi.python.org/packages/source/i/ipython/$pkgbase-$pkgver.tar.gz" - "ipykernel.tgz::https://github.com/ipython/ipykernel/archive/$_ipykv.tar.gz" + "https://pypi.python.org/packages/source/i/ipykernel/ipykernel-$_ipykv.tar.gz" "https://pypi.python.org/packages/source/t/traitlets/traitlets-4.0.0.tar.gz" "https://pypi.python.org/packages/source/i/ipython_genutils/ipython_genutils-0.1.0.tar.gz" "https://pypi.python.org/packages/source/p/pickleshare/pickleshare-0.5.tar.gz" - "https://pypi.python.org/packages/source/p/path.py/path.py-7.6.tar.gz" "https://pypi.python.org/packages/source/s/simplegeneric/simplegeneric-0.8.1.zip") md5sums=('c2fecbcf1c0fbdc82625c77a50733dd6' - '690f424a89e38a5559802bb58223142e' + '966cf6d34f018e6cd844e53945a6688f' '27df56a921848686cf52766177a434f2' '9a8afbe0978adbcbfcb3b35b2d015a56' '25337740507cb855ad58bfcf60f7710e' - 'e70090139fc136462d52460b0e4a00d1' 'f9c1fab00fd981be588fc32759f474e3') # With 4.0 many previously bundled external libraries are no longer bundled @@ -47,7 +45,6 @@ # "Vestigial IPython utilities: DO NOT USE" # (still required for now though, but drop at first chance) # pickleshare (depends on path.py) -# path.py # simplegeneric (so old that it only comes in .zip and still refers to the cheeseshop) # confirm that an update does not break sage? @@ -59,7 +56,6 @@ cp -r ipython_genutils-0.1.0 ipython2_genutils-0.1.0 cp -r pickleshare-0.5 python2-pickleshare-0.5 cp -r traitlets-4.0.0 python2-traitlets-4.0.0 - cp -r path.py-7.6 python2-path.py-7.6 cp -r simplegeneric-0.8.1 python2-simplegeneric-0.8.1 } @@ -84,9 +80,6 @@ cd "$srcdir/traitlets-4.0.0" python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0 - cd "$srcdir/path.py-7.6" - python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0 - cd "$srcdir/simplegeneric-0.8.1" python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0 @@ -108,7 +101,7 @@ package_ipython2() { pkgdesc="An enhanced Interactive Python2 shell." - depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite' 'python2-setuptools') + depends=('python2' 'python2-decorator' 'python2-pexpect' 'sqlite' 'python2-setuptools' 'python2-path') optdepends=("wxpython: needed for ipython2 --gui=wx" "python2-nose: for IPython's test suite") # "wxpython: needed for ipython2 --gui=wx" does this still work? @@ -127,9 +120,6 @@ cd "$srcdir/python2-traitlets-4.0.0" python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0 - cd "$srcdir/python2-path.py-7.6" - python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0 - cd "$srcdir/python2-simplegeneric-0.8.1" python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
