[arch-commits] Commit in ipython/repos/community-any (PKGBUILD PKGBUILD)

Kyle Keen kkeen at archlinux.org
Thu Mar 19 15:49:17 UTC 2015


    Date: Thursday, March 19, 2015 @ 16:49:17
  Author: kkeen
Revision: 129589

archrelease: copy trunk to community-any

Added:
  ipython/repos/community-any/PKGBUILD
    (from rev 129588, ipython/trunk/PKGBUILD)
Deleted:
  ipython/repos/community-any/PKGBUILD

----------+
 PKGBUILD |  218 +++++++++++++++++++++++++++++++------------------------------
 1 file changed, 111 insertions(+), 107 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2015-03-19 15:47:23 UTC (rev 129588)
+++ PKGBUILD	2015-03-19 15:49:17 UTC (rev 129589)
@@ -1,107 +0,0 @@
-# $Id$
-# Maintainer: Kyle Keen <keenerd at gmail.com>
-# Contributor: PepeSmith
-# Contributor: Aron Asor <aronasorman at gmail.com>
-# Contributor: Chris Brannon <chris at the-brannons.com>
-# Contributor : Douglas Soares de Andrade <dsa at aur.archlinux.org>
-
-pkgbase=ipython 
-pkgname=(ipython ipython2 ipython-notebook ipython2-notebook)
-pkgver=3.0.0
-pkgrel=3
-pkgdesc="An enhanced Interactive Python shell."
-arch=('any')
-url="http://ipython.org"
-license=('BSD')
-depends=('python' 'sqlite' 'python-setuptools')
-makedepends=('python-setuptools' 'python2-setuptools' 'sqlite')
-optdepends=("python-nose: for IPython's test suite"
-            "python-pyqt4: for ipython qtconsole"
-            "python-sip: for ipython qtconsole"
-            "python-pygments: for ipython qtconsole"
-            "python-pyzmq: ipython qtconsole")
-#source=("http://archive.ipython.org/release/$pkgver/ipython-$pkgver.tar.gz")
-source=("https://pypi.python.org/packages/source/i/ipython/$pkgbase-$pkgver.tar.gz")
-md5sums=('b3f00f3c0be036fafef3b0b9d663f27e')
-
-# python-mistune?
-
-build() {
-  cd "$srcdir"
-  cp -r ipython-$pkgver ipython2-$pkgver
-}
-
-package_ipython() {
-  provides=('ipython3')
-  replaces=('ipython3')
-  cd "$srcdir/ipython-$pkgver"
-
-  # see https://github.com/ipython/ipython/issues/2057
-  #export LC_ALL=en_US.UTF-8
-  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  find "$pkgdir/" -name '*.pyc' -delete
-  find "$pkgdir/" -type d -empty -delete
-
-  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython/LICENSE"
-
-  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
-  install -Dm644 ipython.desktop "$pkgdir/usr/share/applications/ipython.desktop"
-  install -Dm644 ipython-qtconsole.desktop "$pkgdir/usr/share/applications/ipython-qtconsole.desktop"
-}
-
-package_ipython2() {
-  pkgdesc="An enhanced Interactive Python2 shell."
-  depends=('python2' 'sqlite' 'python2-setuptools')
-  optdepends=("wxpython: needed for ipython2 --gui=wx"
-              "python2-nose: for IPython's test suite"
-              "python2-pyqt4: for ipython qtconsole"
-              "python2-sip: for ipython qtconsole"
-              "python2-pygments: for ipython qtconsole"
-              "python2-pyzmq: ipython qtconsole")
-
-  cd "$srcdir/ipython2-$pkgver"
-
-  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
-  rm -rf "$pkgdir/usr/share/doc"
-  find "$pkgdir" -name '*.py' -print0 | xargs -0 \
-    sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
-    -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
-  find "$pkgdir/" -name '*.pyc' -delete
-
-  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython2/LICENSE"
-
-  # hack to get around ipython collision
-  cd "$pkgdir/usr/share/man/man1/"
-  for i in *; do
-    mv $i ${i/%.1/2.1}
-  done
-  find "$pkgdir/usr/bin/" -type f -regex '.*[^2]$' -delete
-
-  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
-  sed -i 's/ython/ython2/g' *.desktop
-  install -Dm644 ipython.desktop "$pkgdir/usr/share/applications/ipython2.desktop"
-  install -Dm644 ipython-qtconsole.desktop "$pkgdir/usr/share/applications/ipython2-qtconsole.desktop"
-}
-
-# Nothing in these packages except dependencies because five optdeps is too many
-
-package_ipython-notebook() {
-  pkgdesc="Web-based environment where you can combine code, text, math, plots and media into a single document"
-  depends=('python-pyzmq' 'python-tornado' 'python-terminado'
-           'python-jinja' 'python-jsonschema')
-  optdepends=("haskell-pandoc: ipython notebook conversion")
-  cd "$srcdir/ipython-$pkgver"
-  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython-notebook/LICENSE"
-}
-
-package_ipython2-notebook() {
-  pkgdesc="Web-based environment where you can combine code, text, math, plots and media into a single document"
-  depends=('python2-pyzmq' 'python2-tornado' 'python2-terminado'
-           'python2-jinja' 'python2-jsonschema')
-  optdepends=("haskell-pandoc: ipython notebook conversion")
-  cd "$srcdir/ipython2-$pkgver"
-  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython2-notebook/LICENSE"
-}
-
-
-

Copied: ipython/repos/community-any/PKGBUILD (from rev 129588, ipython/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2015-03-19 15:49:17 UTC (rev 129589)
@@ -0,0 +1,111 @@
+# $Id$
+# Maintainer: Kyle Keen <keenerd at gmail.com>
+# Contributor: PepeSmith
+# Contributor: Aron Asor <aronasorman at gmail.com>
+# Contributor: Chris Brannon <chris at the-brannons.com>
+# Contributor : Douglas Soares de Andrade <dsa at aur.archlinux.org>
+
+pkgbase=ipython 
+pkgname=(ipython ipython2 ipython-notebook ipython2-notebook)
+pkgver=3.0.0
+pkgrel=4
+pkgdesc="An enhanced Interactive Python shell."
+arch=('any')
+url="http://ipython.org"
+license=('BSD')
+depends=('python' 'sqlite' 'python-setuptools')
+makedepends=('python-setuptools' 'python2-setuptools' 'sqlite')
+optdepends=("python-nose: for IPython's test suite"
+            "python-pyqt4: for ipython qtconsole"
+            "python-sip: for ipython qtconsole"
+            "python-pygments: for ipython qtconsole"
+            "python-pyzmq: for ipython qtconsole")
+#source=("http://archive.ipython.org/release/$pkgver/ipython-$pkgver.tar.gz")
+source=("https://pypi.python.org/packages/source/i/ipython/$pkgbase-$pkgver.tar.gz")
+md5sums=('b3f00f3c0be036fafef3b0b9d663f27e')
+
+# python-mistune?
+
+build() {
+  cd "$srcdir"
+  cp -r ipython-$pkgver ipython2-$pkgver
+}
+
+package_ipython() {
+  provides=('ipython3')
+  replaces=('ipython3')
+  cd "$srcdir/ipython-$pkgver"
+
+  # see https://github.com/ipython/ipython/issues/2057
+  #export LC_ALL=en_US.UTF-8
+  python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  find "$pkgdir/" -name '*.pyc' -delete
+  find "$pkgdir/" -type d -empty -delete
+
+  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython/LICENSE"
+
+  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
+  install -Dm644 ipython.desktop "$pkgdir/usr/share/applications/ipython.desktop"
+  install -Dm644 ipython-qtconsole.desktop "$pkgdir/usr/share/applications/ipython-qtconsole.desktop"
+}
+
+package_ipython2() {
+  pkgdesc="An enhanced Interactive Python2 shell."
+  depends=('python2' 'sqlite' 'python2-setuptools')
+  optdepends=("wxpython: needed for ipython2 --gui=wx"
+              "python2-nose: for IPython's test suite"
+              "python2-pyqt4: for ipython qtconsole"
+              "python2-sip: for ipython qtconsole"
+              "python2-pygments: for ipython qtconsole"
+              "python2-pyzmq: for ipython qtconsole")
+
+  cd "$srcdir/ipython2-$pkgver"
+
+  python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0
+  rm -rf "$pkgdir/usr/share/doc"
+  find "$pkgdir" -name '*.py' -print0 | xargs -0 \
+    sed -i -e 's,^#!/usr/bin/env python$,#!/usr/bin/env python2,' \
+    -e 's,^#!/usr/bin/python$,#!/usr/bin/python2,'
+  find "$pkgdir/" -name '*.pyc' -delete
+
+  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython2/LICENSE"
+
+  # hack to get around ipython collision
+  cd "$pkgdir/usr/share/man/man1/"
+  for i in *; do
+    mv $i ${i/%.1/2.1}
+  done
+  find "$pkgdir/usr/bin/" -type f -regex '.*[^2]$' -delete
+
+  cd "$srcdir/ipython-$pkgver/examples/IPython Kernel/"
+  sed -i 's/ython/ython2/g' *.desktop
+  install -Dm644 ipython.desktop "$pkgdir/usr/share/applications/ipython2.desktop"
+  install -Dm644 ipython-qtconsole.desktop "$pkgdir/usr/share/applications/ipython2-qtconsole.desktop"
+}
+
+# Nothing in these packages except dependencies because five optdeps is too many
+
+package_ipython-notebook() {
+  pkgdesc="Web-based environment where you can combine code, text, math, plots and media into a single document"
+  depends=('python-pyzmq' 'python-tornado' 'python-terminado'
+           'python-jinja' 'python-jsonschema' 'python-mistune'
+           'python-pygments')
+  optdepends=('haskell-pandoc: ipython notebook conversion'
+              'texlive-bin: notebook pdf export')
+  cd "$srcdir/ipython-$pkgver"
+  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython-notebook/LICENSE"
+}
+
+package_ipython2-notebook() {
+  pkgdesc="Web-based environment where you can combine code, text, math, plots and media into a single document"
+  depends=('python2-pyzmq' 'python2-tornado' 'python2-terminado'
+           'python2-jinja' 'python2-jsonschema' 'python2-mistune'
+           'python2-pygments')
+  optdepends=('haskell-pandoc: ipython notebook conversion'
+              'texlive-bin: notebook pdf export')
+  cd "$srcdir/ipython2-$pkgver"
+  install -Dm644 docs/source/about/license_and_copyright.rst "$pkgdir/usr/share/licenses/ipython2-notebook/LICENSE"
+}
+
+
+



More information about the arch-commits mailing list