Date: Tuesday, October 11, 2016 @ 14:09:40 Author: kkeen Revision: 191933
pkginit: python-qtconsole 4.2.1-1 Added: python-qtconsole/ python-qtconsole/repos/ python-qtconsole/trunk/ python-qtconsole/trunk/PKGBUILD ----------+ PKGBUILD | 54 ++++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) Added: python-qtconsole/trunk/PKGBUILD =================================================================== --- python-qtconsole/trunk/PKGBUILD (rev 0) +++ python-qtconsole/trunk/PKGBUILD 2016-10-11 14:09:40 UTC (rev 191933) @@ -0,0 +1,54 @@ +# $Id$ +# Maintainer: Kyle Keen <[email protected]> + +pkgbase=python-qtconsole +pkgname=(python-qtconsole python2-qtconsole) +pkgver=4.2.1 +pkgrel=1 +pkgdesc="Qt-based console for Jupyter with support for rich media output" +arch=('any') +url="https://pypi.python.org/pypi/qtconsole" +license=('BSD') +depends=('python-ipykernel' 'python-jupyter_core' 'python-jupyter_client' + 'python-traitlets' 'python-pygments' 'python-pyzmq' + 'qt5-svg' 'python-pyqt5' 'python-sip') +makedepends=('python-setuptools' 'python2-setuptools') +source=("https://github.com/jupyter/qtconsole/archive/$pkgver.tar.gz") +md5sums=('97a3e29cd69bc0270411b313c907c173') + +prepare() { + cd "$srcdir" + cp -r qtconsole-$pkgver python2-qtconsole-$pkgver +} + +build() { + cd "$srcdir" +} + +package_python-qtconsole() { + cd "$srcdir/qtconsole-$pkgver" + python3 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0 + install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + + cd examples + # FS#47046 fix .desktop icon + sed -i 's|^Icon=.*$|Icon=/usr/lib/python3.5/site-packages/qtconsole/resources/icon/JupyterConsole.svg|' \ + jupyter-qtconsole.desktop + install -Dm644 jupyter-qtconsole.desktop \ + "$pkgdir/usr/share/applications/jupyter-qtconsole.desktop" + +} + +package_python2-qtconsole() { + depends=('python2-ipykernel' 'python2-jupyter_core' 'python2-jupyter_client' + 'python2-traitlets' 'python2-pygments' 'python2-pyzmq' + 'qt5-svg' 'python2-pyqt5' 'python2-sip') + + cd "$srcdir/python2-qtconsole-$pkgver" + python2 setup.py install --prefix=/usr --root="$pkgdir" --optimize=0 + install -Dm644 COPYING.md "$pkgdir/usr/share/licenses/$pkgname/LICENSE" + + cd "$pkgdir/usr/bin" + mv jupyter-qtconsole jupyter-qtconsole-py2 +} + Property changes on: python-qtconsole/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property
