[arch-commits] Commit in bpython/trunk (PKGBUILD)

2020-11-12 Thread Evangelos Foutras via arch-commits
Date: Thursday, November 12, 2020 @ 18:54:20
  Author: foutrelis
Revision: 753248

upgpkg: bpython 0.20-3: Python 3.9 rebuild

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-11-12 18:54:17 UTC (rev 753247)
+++ PKGBUILD2020-11-12 18:54:20 UTC (rev 753248)
@@ -5,7 +5,7 @@
 
 pkgname=bpython
 pkgver=0.20
-pkgrel=2
+pkgrel=3
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='https://bpython-interpreter.org/'


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2020-10-28 Thread Kyle Keen via arch-commits
Date: Wednesday, October 28, 2020 @ 17:47:21
  Author: kkeen
Revision: 735563

upgpkg: bpython 0.20-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-10-28 17:46:23 UTC (rev 735562)
+++ PKGBUILD2020-10-28 17:47:21 UTC (rev 735563)
@@ -4,7 +4,7 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=bpython
-pkgver=0.19
+pkgver=0.20
 pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
@@ -18,7 +18,7 @@
 #source=(https://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=('8793712cf4aba736f2cedc7f51a798df')
+md5sums=('3649400f45611415ba398361f10b4117')
 
 # python-watchdog optdep...
 


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2020-06-04 Thread Kyle Keen via arch-commits
Date: Thursday, June 4, 2020 @ 23:30:57
  Author: kkeen
Revision: 639048

upgpkg: bpython 0.19-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-06-04 22:11:37 UTC (rev 639047)
+++ PKGBUILD2020-06-04 23:30:57 UTC (rev 639048)
@@ -4,8 +4,8 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=bpython
-pkgver=0.18
-pkgrel=3
+pkgver=0.19
+pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='https://bpython-interpreter.org/'
@@ -18,7 +18,7 @@
 #source=(https://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=('a150a9ff3383013da1156dda4b44280d')
+md5sums=('8793712cf4aba736f2cedc7f51a798df')
 
 # python-watchdog optdep...
 


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2020-02-20 Thread Kyle Keen via arch-commits
Date: Thursday, February 20, 2020 @ 22:56:19
  Author: kkeen
Revision: 577421

upgpkg: bpython 0.18-3  move bpython2 to AUR

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |   46 --
 1 file changed, 4 insertions(+), 42 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2020-02-20 22:52:09 UTC (rev 577420)
+++ PKGBUILD2020-02-20 22:56:19 UTC (rev 577421)
@@ -3,9 +3,9 @@
 # Contributor: Mike Sampson 
 # Contributor: Anton Bazhenov 
 
-pkgname=('bpython' 'bpython2')
+pkgname=bpython
 pkgver=0.18
-pkgrel=2
+pkgrel=3
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='https://bpython-interpreter.org/'
@@ -14,7 +14,7 @@
 optdepends=('python-urwid: for bpython-urwid'
 'python-jedi: multiline completion'
 'python-watchdog: module reloading')
-makedepends=('python-distribute' 'python2-distribute')
+makedepends=('python-distribute')
 #source=(https://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;)
@@ -22,19 +22,12 @@
 
 # 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() {
+package() {
   cd "$srcdir/bpython-$pkgver"
 
   python setup.py install --root="$pkgdir" --optimize=0
@@ -41,34 +34,3 @@
 
   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'
-  'python2-watchdog: module reloading')
-
-  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 org.bpython-interpreter.bpython.desktop 
org.bpython-interpreter.bpython2.desktop
-  sed -i 's/bpython/&2/' org.bpython-interpreter.bpython2.desktop
-
-  cd "$pkgdir/usr/share/appinfo/"
-  mv org.bpython-interpreter.bpython.appdata.xml 
org.bpython-interpreter.bpython2.appdata.xml
-  sed -i 's/bpython/&2/' org.bpython-interpreter.bpython2.appdata.xml
-
-  cd "$pkgdir/usr/share/pixmaps/"
-  mv bpython.png bpython2.png
-}


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2019-11-04 Thread Felix Yan via arch-commits
Date: Monday, November 4, 2019 @ 08:50:51
  Author: felixonmars
Revision: 523804

Python 3.8 rebuild

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-11-04 08:49:26 UTC (rev 523803)
+++ PKGBUILD2019-11-04 08:50:51 UTC (rev 523804)
@@ -5,7 +5,7 @@
 
 pkgname=('bpython' 'bpython2')
 pkgver=0.18
-pkgrel=1
+pkgrel=2
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='https://bpython-interpreter.org/'


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2019-05-27 Thread Antonio Rojas via arch-commits
Date: Monday, May 27, 2019 @ 20:45:17
  Author: arojas
Revision: 472025

https

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-05-27 20:44:44 UTC (rev 472024)
+++ PKGBUILD2019-05-27 20:45:17 UTC (rev 472025)
@@ -8,7 +8,7 @@
 pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
-url='http://bpython-interpreter.org/'
+url='https://bpython-interpreter.org/'
 license=('MIT')
 depends=('python-pygments' 'python-requests' 'python-curtsies' 
'python-greenlet' 'python-six')
 optdepends=('python-urwid: for bpython-urwid'
@@ -15,7 +15,7 @@
 'python-jedi: multiline completion'
 'python-watchdog: module reloading')
 makedepends=('python-distribute' 'python2-distribute')
-#source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)  # 
slow
+#source=(https://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=('a150a9ff3383013da1156dda4b44280d')


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2019-04-10 Thread Kyle Keen via arch-commits
Date: Wednesday, April 10, 2019 @ 21:01:51
  Author: kkeen
Revision: 450911

upgpkg: bpython 0.18-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |   17 -
 1 file changed, 8 insertions(+), 9 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2019-04-10 20:11:38 UTC (rev 450910)
+++ PKGBUILD2019-04-10 21:01:51 UTC (rev 450911)
@@ -4,8 +4,8 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.17.1
-pkgrel=3
+pkgver=0.18
+pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
@@ -18,7 +18,7 @@
 #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=('3f26972c0fd8e3d1e7dbfc51a837a331')
+md5sums=('a150a9ff3383013da1156dda4b44280d')
 
 # python-watchdog optdep...
 
@@ -62,13 +62,12 @@
   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
+  mv org.bpython-interpreter.bpython.desktop 
org.bpython-interpreter.bpython2.desktop
+  sed -i 's/bpython/&2/' org.bpython-interpreter.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/appinfo/"
+  mv org.bpython-interpreter.bpython.appdata.xml 
org.bpython-interpreter.bpython2.appdata.xml
+  sed -i 's/bpython/&2/' org.bpython-interpreter.bpython2.appdata.xml
 
   cd "$pkgdir/usr/share/pixmaps/"
   mv bpython.png bpython2.png


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2018-08-14 Thread Kyle Keen via arch-commits
Date: Tuesday, August 14, 2018 @ 12:42:13
  Author: kkeen
Revision: 371489

upgpkg: bpython 0.17.1-3  FS#59609

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-08-14 12:40:10 UTC (rev 371488)
+++ PKGBUILD2018-08-14 12:42:13 UTC (rev 371489)
@@ -6,7 +6,7 @@
 
 pkgname=('bpython' 'bpython2')
 pkgver=0.17.1
-pkgrel=2
+pkgrel=3
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
@@ -13,7 +13,8 @@
 license=('MIT')
 depends=('python-pygments' 'python-requests' 'python-curtsies' 
'python-greenlet' 'python-six')
 optdepends=('python-urwid: for bpython-urwid'
-'python-jedi: multiline completion')
+'python-jedi: multiline completion'
+'python-watchdog: module reloading')
 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
@@ -45,7 +46,8 @@
 package_bpython2() {
   depends=('python2-pygments' 'python2-requests' 'python2-curtsies' 
'python2-greenlet' 'python2-six')
   optdepends=('python2-urwid: for bpython2-urwid'
-  'python2-jedi: multiline completion')
+  'python2-jedi: multiline completion'
+  'python2-watchdog: module reloading')
 
   cd "$srcdir/bpython2-$pkgver"
 


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2018-07-23 Thread Felix Yan via arch-commits
Date: Monday, July 23, 2018 @ 15:43:35
  Author: felixonmars
Revision: 363058

Python 3.7 rebuild

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-07-23 15:43:31 UTC (rev 363057)
+++ PKGBUILD2018-07-23 15:43:35 UTC (rev 363058)
@@ -6,7 +6,7 @@
 
 pkgname=('bpython' 'bpython2')
 pkgver=0.17.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2018-02-20 Thread Kyle Keen via arch-commits
Date: Wednesday, February 21, 2018 @ 01:12:34
  Author: kkeen
Revision: 296646

upgpkg: bpython 0.17.1-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2018-02-21 01:06:48 UTC (rev 296645)
+++ PKGBUILD2018-02-21 01:12:34 UTC (rev 296646)
@@ -5,8 +5,8 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.16
-pkgrel=2
+pkgver=0.17.1
+pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
@@ -18,7 +18,7 @@
 #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')
+md5sums=('3f26972c0fd8e3d1e7dbfc51a837a331')
 
 # python-watchdog optdep...
 


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2016-12-26 Thread Bartłomiej Piotrowski
Date: Tuesday, December 27, 2016 @ 06:47:38
  Author: bpiotrowski
Revision: 202965

Python 3.6 rebuild

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-12-27 06:42:27 UTC (rev 202964)
+++ PKGBUILD2016-12-27 06:47:38 UTC (rev 202965)
@@ -6,7 +6,7 @@
 
 pkgname=('bpython' 'bpython2')
 pkgver=0.16
-pkgrel=1
+pkgrel=2
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2016-10-10 Thread Kyle Keen
Date: Monday, October 10, 2016 @ 21:55:30
  Author: kkeen
Revision: 191899

upgpkg: bpython 0.16-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |   19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-10-10 21:33:04 UTC (rev 191898)
+++ PKGBUILD2016-10-10 21:55:30 UTC (rev 191899)
@@ -5,7 +5,7 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.15
+pkgver=0.16
 pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
@@ -15,16 +15,19 @@
 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)
-md5sums=('0e0665aee5ed020a1ca97084cbe18787')
+#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...
-# python-curtsies a required dep, use old version for now
 
-build() {
+prepare() {
   cp -r bpython-$pkgver bpython2-$pkgver
+}
 
-  cd bpython-$pkgver
+build() {
+  cd "$srcdir/bpython-$pkgver"
   python setup.py build
 
   cd "$srcdir/bpython2-$pkgver"
@@ -32,7 +35,7 @@
 }
 
 package_bpython() {
-  cd bpython-$pkgver
+  cd "$srcdir/bpython-$pkgver"
 
   python setup.py install --root="$pkgdir" --optimize=0
 
@@ -44,7 +47,7 @@
   optdepends=('python2-urwid: for bpython2-urwid'
   'python2-jedi: multiline completion')
 
-  cd bpython2-$pkgver
+  cd "$srcdir/bpython2-$pkgver"
 
   python2 setup.py install --root="$pkgdir" --optimize=0
 


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2016-03-11 Thread Kyle Keen
Date: Friday, March 11, 2016 @ 21:29:47
  Author: kkeen
Revision: 166158

upgpkg: bpython 0.15-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2016-03-11 20:25:22 UTC (rev 166157)
+++ PKGBUILD2016-03-11 20:29:47 UTC (rev 166158)
@@ -5,7 +5,7 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.14.2
+pkgver=0.15
 pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
@@ -16,7 +16,7 @@
 'python-jedi: multiline completion')
 makedepends=('python-distribute' 'python2-distribute')
 source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)
-md5sums=('ce27e0b6092058e0233958c86a7df500')
+md5sums=('0e0665aee5ed020a1ca97084cbe18787')
 
 # python-watchdog optdep...
 # python-curtsies a required dep, use old version for now


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2015-11-03 Thread Kyle Keen
Date: Tuesday, November 3, 2015 @ 15:33:21
  Author: kkeen
Revision: 145795

upgpkg: bpython 0.14.2-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |   20 
 1 file changed, 8 insertions(+), 12 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-11-03 14:28:03 UTC (rev 145794)
+++ PKGBUILD2015-11-03 14:33:21 UTC (rev 145795)
@@ -5,8 +5,8 @@
 # Contributor: Anton Bazhenov 
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.14.1
-pkgrel=2
+pkgver=0.14.2
+pkgrel=1
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
@@ -16,7 +16,7 @@
 'python-jedi: multiline completion')
 makedepends=('python-distribute' 'python2-distribute')
 source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)
-md5sums=('106551e4f563f2575f67a3738a56b815')
+md5sums=('ce27e0b6092058e0233958c86a7df500')
 
 # python-watchdog optdep...
 # python-curtsies a required dep, use old version for now
@@ -51,25 +51,21 @@
   install -Dm644 LICENSE "$pkgdir/usr/share/licenses/bpython2/LICENSE"
 
   # conflicting files with bpython
-  pushd "$pkgdir/usr/bin/"
+  cd "$pkgdir/usr/bin/"
   mv bpython bpython2
   mv bpython-urwid bpython2-urwid
   mv bpython-curses bpython2-curses
-  mv bpbd bpbd2
-  popd
+  mv bpdb bpdb2
 
-  pushd "$pkgdir/usr/share/applications/"
+  cd "$pkgdir/usr/share/applications/"
   mv bpython.desktop bpython2.desktop
   # fix the .desktop file for the rename
   sed -i 's/bpython/&2/' bpython2.desktop
-  popd
 
-  pushd "$pkgdir/usr/share/appdata/"
+  cd "$pkgdir/usr/share/appdata/"
   mv bpython.appdata.xml bpython2.appdata.xml
   sed -i 's/bpython/&2/' bpython2.appdata.xml
-  popd
 
-  pushd "$pkgdir/usr/share/pixmaps/"
+  cd "$pkgdir/usr/share/pixmaps/"
   mv bpython.png bpython2.png
-  popd
 }


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2015-09-20 Thread Kyle Keen
Date: Sunday, September 20, 2015 @ 15:25:47
  Author: kkeen
Revision: 141273

upgpkg: bpython 0.14.1-2 py3.5 rebuild

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-09-20 13:23:35 UTC (rev 141272)
+++ PKGBUILD2015-09-20 13:25:47 UTC (rev 141273)
@@ -6,7 +6,7 @@
 
 pkgname=('bpython' 'bpython2')
 pkgver=0.14.1
-pkgrel=1
+pkgrel=2
 pkgdesc='Fancy ncurses interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2015-03-05 Thread Kyle Keen
Date: Thursday, March 5, 2015 @ 15:13:16
  Author: kkeen
Revision: 128768

upgpkg: bpython 0.14.1-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |   39 ---
 1 file changed, 24 insertions(+), 15 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2015-03-05 14:03:27 UTC (rev 128767)
+++ PKGBUILD2015-03-05 14:13:16 UTC (rev 128768)
@@ -5,16 +5,22 @@
 # Contributor: Anton Bazhenov anton.bazhenov at gmail
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.13.1
+pkgver=0.14.1
 pkgrel=1
-pkgdesc='Fancy interface to the Python interpreter'
+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)
-md5sums=('47b2ae18ee39d519752218b938024a85')
+md5sums=('106551e4f563f2575f67a3738a56b815')
 
+# python-watchdog optdep...
+# python-curtsies a required dep, use old version for now
+
 build() {
   cp -r bpython-$pkgver bpython2-$pkgver
 
@@ -26,23 +32,17 @@
 }
 
 package_bpython() {
-  depends=('python-pygments')
-  optdepends=('python-urwid: for bpython-urwid')
-
   cd bpython-$pkgver
 
   python setup.py install --root=$pkgdir --optimize=0
 
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython/LICENSE
-
-  # pygtk isn't available for python3 (fs#33705)
-  rm $pkgdir/usr/bin/bpython-gtk
 }
 
 package_bpython2() {
-  depends=('python2-pygments')
-  optdepends=('pygtk: for bpython2-gtk'
-  'python2-urwid: for bpython2-urwid')
+  depends=('python2-pygments' 'python2-requests' 'python2-curtsies' 
'python2-greenlet' 'python2-six')
+  optdepends=('python2-urwid: for bpython2-urwid'
+  'python2-jedi: multiline completion')
 
   cd bpython2-$pkgver
 
@@ -53,14 +53,23 @@
   # conflicting files with bpython
   pushd $pkgdir/usr/bin/
   mv bpython bpython2
-  mv bpython-gtk bpython2-gtk
   mv bpython-urwid bpython2-urwid
-  mv bpython-curtsies bpython2-curtsies
+  mv bpython-curses bpython2-curses
+  mv bpbd bpbd2
   popd
+
   pushd $pkgdir/usr/share/applications/
   mv bpython.desktop bpython2.desktop
-
   # fix the .desktop file for the rename
   sed -i 's/bpython/2/' bpython2.desktop
   popd
+
+  pushd $pkgdir/usr/share/appdata/
+  mv bpython.appdata.xml bpython2.appdata.xml
+  sed -i 's/bpython/2/' bpython2.appdata.xml
+  popd
+
+  pushd $pkgdir/usr/share/pixmaps/
+  mv bpython.png bpython2.png
+  popd
 }


[arch-commits] Commit in bpython/trunk (PKGBUILD)

2014-07-17 Thread Kyle Keen
Date: Thursday, July 17, 2014 @ 23:40:40
  Author: kkeen
Revision: 115838

upgpkg: bpython 0.13.1-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-17 20:41:21 UTC (rev 115837)
+++ PKGBUILD2014-07-17 21:40:40 UTC (rev 115838)
@@ -5,7 +5,7 @@
 # Contributor: Anton Bazhenov anton.bazhenov at gmail
 
 pkgname=('bpython' 'bpython2')
-pkgver=0.13
+pkgver=0.13.1
 pkgrel=1
 pkgdesc='Fancy interface to the Python interpreter'
 arch=('any')
@@ -13,7 +13,7 @@
 license=('MIT')
 makedepends=('python-distribute' 'python2-distribute')
 source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)
-md5sums=('2ff926ff50570bcc172917af831be1e6')
+md5sums=('47b2ae18ee39d519752218b938024a85')
 
 build() {
   cp -r bpython-$pkgver bpython2-$pkgver



[arch-commits] Commit in bpython/trunk (PKGBUILD)

2014-07-12 Thread Kyle Keen
Date: Saturday, July 12, 2014 @ 13:14:25
  Author: kkeen
Revision: 115565

upgpkg: bpython 0.13-1

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |   26 +++---
 1 file changed, 15 insertions(+), 11 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-07-12 03:44:36 UTC (rev 115564)
+++ PKGBUILD2014-07-12 11:14:25 UTC (rev 115565)
@@ -1,11 +1,12 @@
 # $Id$
-# Maintainer: Thomas Dziedzic  gostrc at gmail 
+# 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.12
-pkgrel=3
+pkgver=0.13
+pkgrel=1
 pkgdesc='Fancy interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
@@ -12,7 +13,7 @@
 license=('MIT')
 makedepends=('python-distribute' 'python2-distribute')
 source=(http://bpython-interpreter.org/releases/bpython-${pkgver}.tar.gz)
-md5sums=('14cbe92620d386a769b3faa282a1d6c3')
+md5sums=('2ff926ff50570bcc172917af831be1e6')
 
 build() {
   cp -r bpython-$pkgver bpython2-$pkgver
@@ -50,13 +51,16 @@
   install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython2/LICENSE
 
   # conflicting files with bpython
-  mv $pkgdir/usr/bin/bpython $pkgdir/usr/bin/bpython2
-  mv $pkgdir/usr/bin/bpython-gtk $pkgdir/usr/bin/bpython2-gtk
-  mv $pkgdir/usr/bin/bpython-urwid $pkgdir/usr/bin/bpython2-urwid
-  mv $pkgdir/usr/share/applications/bpython.desktop \
- $pkgdir/usr/share/applications/bpython2.desktop
+  pushd $pkgdir/usr/bin/
+  mv bpython bpython2
+  mv bpython-gtk bpython2-gtk
+  mv bpython-urwid bpython2-urwid
+  mv bpython-curtsies bpython2-curtsies
+  popd
+  pushd $pkgdir/usr/share/applications/
+  mv bpython.desktop bpython2.desktop
 
   # fix the .desktop file for the rename
-  sed -e 's/bpython/2/' \
--i $pkgdir/usr/share/applications/bpython2.desktop
+  sed -i 's/bpython/2/' bpython2.desktop
+  popd
 }



[arch-commits] Commit in bpython/trunk (PKGBUILD ungetch.patch)

2014-03-18 Thread Kyle Keen
Date: Tuesday, March 18, 2014 @ 13:51:18
  Author: kkeen
Revision: 107670

upgpkg: bpython py3.4 rebuild

Modified:
  bpython/trunk/PKGBUILD
Deleted:
  bpython/trunk/ungetch.patch

---+
 PKGBUILD  |   46 ++
 ungetch.patch |   12 
 2 files changed, 18 insertions(+), 40 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2014-03-18 12:35:28 UTC (rev 107669)
+++ PKGBUILD2014-03-18 12:51:18 UTC (rev 107670)
@@ -5,7 +5,7 @@
 
 pkgname=('bpython' 'bpython2')
 pkgver=0.12
-pkgrel=2
+pkgrel=3
 pkgdesc='Fancy interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
@@ -15,12 +15,12 @@
 md5sums=('14cbe92620d386a769b3faa282a1d6c3')
 
 build() {
-  cp -r bpython-${pkgver} bpython2-${pkgver}
+  cp -r bpython-$pkgver bpython2-$pkgver
 
-  cd bpython-${pkgver}
+  cd bpython-$pkgver
   python setup.py build
 
-  cd ${srcdir}/bpython2-${pkgver}
+  cd $srcdir/bpython2-$pkgver
   python2 setup.py build
 }
 
@@ -28,17 +28,14 @@
   depends=('python-pygments')
   optdepends=('python-urwid: for bpython-urwid')
 
-  cd bpython-${pkgver}
+  cd bpython-$pkgver
 
-  python setup.py install \
---root=${pkgdir} \
---optimize=1
+  python setup.py install --root=$pkgdir --optimize=0
 
-  install -Dm644 LICENSE \
-${pkgdir}/usr/share/licenses/bpython/LICENSE
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython/LICENSE
 
   # pygtk isn't available for python3 (fs#33705)
-  rm $pkgdir/usr/bin/bpython-gtk
+  rm $pkgdir/usr/bin/bpython-gtk
 }
 
 package_bpython2() {
@@ -46,27 +43,20 @@
   optdepends=('pygtk: for bpython2-gtk'
   'python2-urwid: for bpython2-urwid')
 
-  cd bpython2-${pkgver}
+  cd bpython2-$pkgver
 
-  python2 setup.py install \
---root=${pkgdir} \
---optimize=1
+  python2 setup.py install --root=$pkgdir --optimize=0
 
-  install -Dm644 LICENSE \
-${pkgdir}/usr/share/licenses/bpython2/LICENSE
+  install -Dm644 LICENSE $pkgdir/usr/share/licenses/bpython2/LICENSE
 
   # conflicting files with bpython
-  mv ${pkgdir}/usr/bin/bpython \
-${pkgdir}/usr/bin/bpython2
-  mv ${pkgdir}/usr/bin/bpython-gtk \
-${pkgdir}/usr/bin/bpython2-gtk
-  mv ${pkgdir}/usr/bin/bpython-urwid \
-${pkgdir}/usr/bin/bpython2-urwid
-  mv ${pkgdir}/usr/share/applications/bpython.desktop \
-${pkgdir}/usr/share/applications/bpython2.desktop
+  mv $pkgdir/usr/bin/bpython $pkgdir/usr/bin/bpython2
+  mv $pkgdir/usr/bin/bpython-gtk $pkgdir/usr/bin/bpython2-gtk
+  mv $pkgdir/usr/bin/bpython-urwid $pkgdir/usr/bin/bpython2-urwid
+  mv $pkgdir/usr/share/applications/bpython.desktop \
+ $pkgdir/usr/share/applications/bpython2.desktop
 
   # fix the .desktop file for the rename
-  sed \
--e 's/bpython/2/' \
--i ${pkgdir}/usr/share/applications/bpython2.desktop
+  sed -e 's/bpython/2/' \
+-i $pkgdir/usr/share/applications/bpython2.desktop
 }

Deleted: ungetch.patch
===
--- ungetch.patch   2014-03-18 12:35:28 UTC (rev 107669)
+++ ungetch.patch   2014-03-18 12:51:18 UTC (rev 107670)
@@ -1,12 +0,0 @@
-diff -r 8c7296ca3f1c bpython/cli.py
 a/bpython/cli.py   Fri Jul 13 21:18:28 2012 +0200
-+++ b/bpython/cli.py   Sat Oct 20 21:20:03 2012 -0400
-@@ -1714,7 +1714,8 @@
- caller.scr.nodelay(True)
- key = caller.scr.getch()
- caller.scr.nodelay(False)
--curses.ungetch(key)
-+if key != -1:
-+curses.ungetch(key)
- caller.statusbar.check()
- caller.check()



[arch-commits] Commit in bpython/trunk (PKGBUILD)

2013-02-16 Thread Bartłomiej Piotrowski
Date: Saturday, February 16, 2013 @ 12:57:37
  Author: bpiotrowski
Revision: 84316

upgpkg: bpython 0.12-2

Remove bpython-gtk executable from bpython. (FS#33705)

Modified:
  bpython/trunk/PKGBUILD

--+
 PKGBUILD |7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-02-16 11:41:49 UTC (rev 84315)
+++ PKGBUILD2013-02-16 11:57:37 UTC (rev 84316)
@@ -5,8 +5,8 @@
 
 pkgname=('bpython' 'bpython2')
 pkgver=0.12
-pkgrel=1
-pkgdesc='A fancy interface to the Python interpreter'
+pkgrel=2
+pkgdesc='Fancy interface to the Python interpreter'
 arch=('any')
 url='http://bpython-interpreter.org/'
 license=('MIT')
@@ -36,6 +36,9 @@
 
   install -Dm644 LICENSE \
 ${pkgdir}/usr/share/licenses/bpython/LICENSE
+
+  # pygtk isn't available for python3 (fs#33705)
+  rm $pkgdir/usr/bin/bpython-gtk
 }
 
 package_bpython2() {