Date: Thursday, August 28, 2014 @ 20:57:39 Author: schiv Revision: 118039
extra2community: Moving eric4 from extra to community Added: eric4/ eric4/repos/ eric4/trunk/ eric4/trunk/.contrib eric4/trunk/PKGBUILD eric4/trunk/eric4.desktop eric4/trunk/eric4.install ---------------+ .contrib | 4 ++++ PKGBUILD | 33 +++++++++++++++++++++++++++++++++ eric4.desktop | 10 ++++++++++ eric4.install | 10 ++++++++++ 4 files changed, 57 insertions(+) Added: eric4/trunk/.contrib =================================================================== --- eric4/trunk/.contrib (rev 0) +++ eric4/trunk/.contrib 2014-08-28 18:57:39 UTC (rev 118039) @@ -0,0 +1,4 @@ +This is a list of (past) contributors not already credited in the PKGBUILD: + +riai <[email protected]> +Ben <[email protected]> Added: eric4/trunk/PKGBUILD =================================================================== --- eric4/trunk/PKGBUILD (rev 0) +++ eric4/trunk/PKGBUILD 2014-08-28 18:57:39 UTC (rev 118039) @@ -0,0 +1,33 @@ +# $Id$ +# Maintainer: Ray Rashif <[email protected]> +# Contributor: Daniel J Griffiths <[email protected]> +# See .contrib for older/other contributors + +pkgname=eric4 +pkgver=4.5.24 +pkgrel=1 +pkgdesc="A full-featured Python 2.x and Ruby IDE in PyQt4" +arch=('any') +url="http://eric-ide.python-projects.org/" +license=('GPL3') +depends=('python2-qscintilla') +conflicts=('eric<5') +install=$pkgname.install +source=("http://downloads.sourceforge.net/eric-ide/$pkgname-$pkgver.tar.gz" + "$pkgname.desktop") +md5sums=('b41afbcfc59ec00441742a1495e06a6b' + 'bce515b66a2c63dfc76a0f92edbe2ecb') + +package() { + cd "$srcdir/$pkgname-$pkgver" + + python2 install.py -c -b /usr/bin -i "$pkgdir" + + # freedesktop.org compatibility + install -Dm644 "$srcdir/$pkgname.desktop" \ + "$pkgdir/usr/share/applications/$pkgname.desktop" + install -Dm644 eric/icons/default/eric.png \ + "$pkgdir/usr/share/pixmaps/$pkgname.png" +} + +# vim:set ts=2 sw=2 et: Property changes on: eric4/trunk/PKGBUILD ___________________________________________________________________ Added: svn:keywords ## -0,0 +1 ## +Id \ No newline at end of property Added: eric4/trunk/eric4.desktop =================================================================== --- eric4/trunk/eric4.desktop (rev 0) +++ eric4/trunk/eric4.desktop 2014-08-28 18:57:39 UTC (rev 118039) @@ -0,0 +1,10 @@ +[Desktop Entry] +Type=Application +Exec=eric4 +MimeType=application/x-eric4; +Icon=eric4 +Terminal=false +Name=Eric 4 +Comment=Python 2.x & Ruby IDE +Categories=Qt;Python;Development;IDE; +StartupNotify=true Added: eric4/trunk/eric4.install =================================================================== --- eric4/trunk/eric4.install (rev 0) +++ eric4/trunk/eric4.install 2014-08-28 18:57:39 UTC (rev 118039) @@ -0,0 +1,10 @@ +post_install() { + echo " > Updating desktop mime database..." + update-desktop-database -q +} + +post_upgrade() { + post_install +} + +# vim:set ts=2 sw=2 et:
