[arch-commits] Commit in terminator/repos/community-any (4 files)

Guillaume Alaux guillaume at nymeria.archlinux.org
Tue Apr 30 20:49:35 UTC 2013


    Date: Tuesday, April 30, 2013 @ 22:49:34
  Author: guillaume
Revision: 89642

archrelease: copy trunk to community-any

Added:
  terminator/repos/community-any/PKGBUILD
    (from rev 89641, terminator/trunk/PKGBUILD)
  terminator/repos/community-any/terminator.install
    (from rev 89641, terminator/trunk/terminator.install)
Deleted:
  terminator/repos/community-any/PKGBUILD
  terminator/repos/community-any/terminator.install

--------------------+
 PKGBUILD           |   84 ++++++++++++++++++++++++++-------------------------
 terminator.install |   24 +++++++-------
 2 files changed, 55 insertions(+), 53 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2013-04-30 20:48:43 UTC (rev 89641)
+++ PKGBUILD	2013-04-30 20:49:34 UTC (rev 89642)
@@ -1,41 +0,0 @@
-# $Id$
-# Maintainer: Guillaume ALAUX <guillaume at archlinux.org>
-# Contributor: Allan McRae <allan at archlinux.org>
-# Contributor: fancris3 <fancris3 at gmail.com>
-# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
-
-pkgname=terminator
-pkgver=0.96
-pkgrel=4
-pkgdesc='Terminal emulator that supports tabs and grids'
-arch=('any')
-url='http://www.tenshu.net/p/terminator.html'
-license=('GPL2')
-depends=('vte' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
-makedepends=('desktop-file-utils' 'gettext' 'intltool')
-install=terminator.install
-source=("https://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}_${pkgver}.tar.gz")
-sha256sums=('d708c783c36233fcafbd0139a91462478ae40f5cf696ef4acfcaf5891a843201')
-
-build() {
-    cd ${pkgname}-${pkgver}
-
-    # python2 fix
-    for file in terminatorlib/{,plugins/}*.py; do
-        sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
-        sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
-    done
-
-    python2 setup.py build
-}
-
-package() {
-    cd ${pkgname}-${pkgver}
-
-    python2 setup.py install --skip-build --root=${pkgdir}
-
-    rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop
-    rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
-    install -D -m644 ${srcdir}/${pkgname}-${pkgver}/data/${pkgname}.desktop.in ${pkgdir}/usr/share/applications/${pkgname}.desktop
-    sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop
-}

Copied: terminator/repos/community-any/PKGBUILD (from rev 89641, terminator/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2013-04-30 20:49:34 UTC (rev 89642)
@@ -0,0 +1,43 @@
+# $Id$
+# Maintainer: Guillaume ALAUX <guillaume at archlinux.org>
+# Contributor: Allan McRae <allan at archlinux.org>
+# Contributor: fancris3 <fancris3 at gmail.com>
+# Contributor: Daniel J Griffiths <ghost1227 at archlinux.us>
+
+pkgname=terminator
+pkgver=0.97
+pkgrel=1
+pkgdesc='Terminal emulator that supports tabs and grids'
+arch=('any')
+url='http://www.tenshu.net/p/terminator.html'
+license=('GPL2')
+# Note: the package named 'vte3' is actually vte for GTK 3
+# and terminator seems to require vte for GTK 2
+depends=('vte' 'pygtk' 'xdg-utils' 'python2-notify' 'python2-keybinder2')
+makedepends=('desktop-file-utils' 'gettext' 'intltool')
+install=terminator.install
+source=("http://launchpad.net/terminator/trunk/${pkgver}/+download/${pkgname}-${pkgver}.tar.gz")
+sha256sums=('0281b568913f392eec92ebee3c6fea15afe4f4e01869bad38d9efe0eb305be49')
+
+build() {
+    cd ${srcdir}/trunk
+
+    # python2 fix
+    for file in terminatorlib/{,plugins/}*.py; do
+        sed -i 's_#!/usr/bin/python_#!/usr/bin/python2_' $file
+        sed -i 's_#!/usr/bin/env python_#!/usr/bin/env python2_' $file
+    done
+
+    python2 setup.py build
+}
+
+package() {
+    cd ${srcdir}/trunk
+
+    python2 setup.py install --skip-build --root=${pkgdir}
+
+    rm -f ${pkgdir}/usr/share/applications/${pkgname}.desktop
+    rm -f ${pkgdir}/usr/share/icons/hicolor/icon-theme.cache
+    install -D -m644 ${srcdir}/trunk/data/${pkgname}.desktop.in ${pkgdir}/usr/share/applications/${pkgname}.desktop
+    sed -i 's|_||' ${pkgdir}/usr/share/applications/${pkgname}.desktop
+}

Deleted: terminator.install
===================================================================
--- terminator.install	2013-04-30 20:48:43 UTC (rev 89641)
+++ terminator.install	2013-04-30 20:49:34 UTC (rev 89642)
@@ -1,12 +0,0 @@
-post_install() {
-  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
-
-post_upgrade() {
-  post_install $1
-}
-
-post_remove() {
-  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
-}
-

Copied: terminator/repos/community-any/terminator.install (from rev 89641, terminator/trunk/terminator.install)
===================================================================
--- terminator.install	                        (rev 0)
+++ terminator.install	2013-04-30 20:49:34 UTC (rev 89642)
@@ -0,0 +1,12 @@
+post_install() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
+
+post_upgrade() {
+  post_install $1
+}
+
+post_remove() {
+  which xdg-icon-resource 1>/dev/null 2>/dev/null && xdg-icon-resource forceupdate || true
+}
+




More information about the arch-commits mailing list