[arch-commits] Commit in turpial/trunk (PKGBUILD)
Date: Saturday, April 6, 2013 @ 20:56:21 Author: bgyorgy Revision: 87794 upgpkg: turpial 1.6.9-4 Cleanup dependencies Modified: turpial/trunk/PKGBUILD --+ PKGBUILD | 10 +++--- 1 file changed, 7 insertions(+), 3 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-04-06 17:02:52 UTC (rev 87793) +++ PKGBUILD2013-04-06 18:56:21 UTC (rev 87794) @@ -5,13 +5,14 @@ pkgname=turpial pkgver=1.6.9 -pkgrel=3 +pkgrel=4 pkgdesc="A multi-interface Twitter client written in Python" arch=('any') url="http://turpial.org.ve/"; license=('GPL3') -depends=('python2' 'python2-distribute' 'python2-simplejson' 'pygtk' 'python2-notify' 'notification-daemon' 'gstreamer0.10-python' 'python2-babel' 'pywebkitgtk') -optdepends=('python2-gtkspell' 'gnome-spell' 'aspell') +depends=('gstreamer0.10-python' 'python2-distribute' 'python2-notify' 'pywebkitgtk') +makedepends=('python2-babel') +optdepends=('python2-gtkspell: Spell checking support') source=(http://files.turpial.org.ve/sources/stable/$pkgname-$pkgver.tar.gz) sha256sums=('cf059ef3010c400fd57e30081cd2d54daa0a062817c0ab4b08b7c6c7deac0177') @@ -19,4 +20,7 @@ cd ${srcdir}/$pkgname-${pkgver//_/-} python2 setup.py install --root=$pkgdir/ --optimize=1 + + # Remove files from non-standard location + rm $pkgdir/usr/{AUTHORS,TRANSLATORS} }
[arch-commits] Commit in turpial/trunk (PKGBUILD)
Date: Saturday, February 2, 2013 @ 12:36:50 Author: jlichtblau Revision: 83509 upgpkg: turpial 1.6.9-3 Modified: turpial/trunk/PKGBUILD --+ PKGBUILD | 25 - 1 file changed, 12 insertions(+), 13 deletions(-) Modified: PKGBUILD === --- PKGBUILD2013-02-02 11:29:22 UTC (rev 83508) +++ PKGBUILD2013-02-02 11:36:50 UTC (rev 83509) @@ -1,23 +1,22 @@ # $Id$ -# Maintainer: Angel Velasquez +# Maintainer: Jaroslav Lichtblau +# Contributor: Angel Velasquez # Contributor: Miguel Useche + pkgname=turpial pkgver=1.6.9 -pkgrel=2 -pkgdesc="A multi-interface Twitter client written in Python." -arch=(any) +pkgrel=3 +pkgdesc="A multi-interface Twitter client written in Python" +arch=('any') url="http://turpial.org.ve/"; license=('GPL3') -depends=('python2' 'python2-distribute' 'python2-simplejson>=1.9.2' -'pygtk>=2.12' 'python2-notify>=0.1.1' 'notification-daemon' -'gstreamer0.10-python' 'python2-babel>=0.9.1' 'pywebkitgtk' -) -optdepends=('python2-gtkspell>=2.25.3' 'gnome-spell' 'aspell') -conflicts=('turpial') +depends=('python2' 'python2-distribute' 'python2-simplejson' 'pygtk' 'python2-notify' 'notification-daemon' 'gstreamer0.10-python' 'python2-babel' 'pywebkitgtk') +optdepends=('python2-gtkspell' 'gnome-spell' 'aspell') source=(http://files.turpial.org.ve/sources/stable/$pkgname-$pkgver.tar.gz) -md5sums=('83303f5781d3f33b79d42d35a898f954') +sha256sums=('cf059ef3010c400fd57e30081cd2d54daa0a062817c0ab4b08b7c6c7deac0177') -build() { - cd $srcdir/$pkgname-${pkgver//_/-} +package() { + cd ${srcdir}/$pkgname-${pkgver//_/-} + python2 setup.py install --root=$pkgdir/ --optimize=1 }