[arch-commits] Commit in bpython/repos (2 files)

Bartłomiej Piotrowski bpiotrowski at archlinux.org
Tue Dec 27 06:47:46 UTC 2016


    Date: Tuesday, December 27, 2016 @ 06:47:46
  Author: bpiotrowski
Revision: 202966

archrelease: copy trunk to community-staging-any

Added:
  bpython/repos/community-staging-any/
  bpython/repos/community-staging-any/PKGBUILD
    (from rev 202965, bpython/trunk/PKGBUILD)

----------+
 PKGBUILD |   74 +++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 74 insertions(+)

Copied: bpython/repos/community-staging-any/PKGBUILD (from rev 202965, bpython/trunk/PKGBUILD)
===================================================================
--- community-staging-any/PKGBUILD	                        (rev 0)
+++ community-staging-any/PKGBUILD	2016-12-27 06:47:46 UTC (rev 202966)
@@ -0,0 +1,74 @@
+# $Id$
+# Maintainer: Kyle Keen < keenerd at gmail >
+# Contributor: Thomas Dziedzic < gostrc at gmail >
+# Contributor: Mike Sampson <mike at sambodata dot com>
+# Contributor: Anton Bazhenov <anton.bazhenov at gmail>
+
+pkgname=('bpython' 'bpython2')
+pkgver=0.16
+pkgrel=2
+pkgdesc='Fancy ncurses interface to the Python interpreter'
+arch=('any')
+url='http://bpython-interpreter.org/'
+license=('MIT')
+depends=('python-pygments' 'python-requests' 'python-curtsies' 'python-greenlet' 'python-six')
+optdepends=('python-urwid: for bpython-urwid'
+            'python-jedi: multiline completion')
+makedepends=('python-distribute' 'python2-distribute')
+#source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)  # slow
+#source=("https://github.com/bpython/bpython/archive/$pkgver-release.tar.gz")  # missing version data
+source=("https://files.pythonhosted.org/packages/source/b/bpython/bpython-$pkgver.tar.gz")
+md5sums=('303798e8f7dd64738ccbf7ef81b716f5')
+
+# python-watchdog optdep...
+
+prepare() {
+  cp -r bpython-$pkgver bpython2-$pkgver
+}
+
+build() {
+  cd "$srcdir/bpython-$pkgver"
+  python setup.py build
+
+  cd "$srcdir/bpython2-$pkgver"
+  python2 setup.py build
+}
+
+package_bpython() {
+  cd "$srcdir/bpython-$pkgver"
+
+  python setup.py install --root="$pkgdir" --optimize=0
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/bpython/LICENSE"
+}
+
+package_bpython2() {
+  depends=('python2-pygments' 'python2-requests' 'python2-curtsies' 'python2-greenlet' 'python2-six')
+  optdepends=('python2-urwid: for bpython2-urwid'
+              'python2-jedi: multiline completion')
+
+  cd "$srcdir/bpython2-$pkgver"
+
+  python2 setup.py install --root="$pkgdir" --optimize=0
+
+  install -Dm644 LICENSE "$pkgdir/usr/share/licenses/bpython2/LICENSE"
+
+  # conflicting files with bpython
+  cd "$pkgdir/usr/bin/"
+  mv bpython bpython2
+  mv bpython-urwid bpython2-urwid
+  mv bpython-curses bpython2-curses
+  mv bpdb bpdb2
+
+  cd "$pkgdir/usr/share/applications/"
+  mv bpython.desktop bpython2.desktop
+  # fix the .desktop file for the rename
+  sed -i 's/bpython/&2/' bpython2.desktop
+
+  cd "$pkgdir/usr/share/appdata/"
+  mv bpython.appdata.xml bpython2.appdata.xml
+  sed -i 's/bpython/&2/' bpython2.appdata.xml
+
+  cd "$pkgdir/usr/share/pixmaps/"
+  mv bpython.png bpython2.png
+}



More information about the arch-commits mailing list