[arch-commits] Commit in tilda/repos (10 files)

Maxime Gauduin alucryd at nymeria.archlinux.org
Thu Aug 22 16:36:18 UTC 2013


    Date: Thursday, August 22, 2013 @ 18:36:18
  Author: alucryd
Revision: 96246

archrelease: copy trunk to community-i686, community-x86_64

Added:
  tilda/repos/community-i686/PKGBUILD
    (from rev 96245, tilda/trunk/PKGBUILD)
  tilda/repos/community-i686/start-hidden-fix.patch
    (from rev 96245, tilda/trunk/start-hidden-fix.patch)
  tilda/repos/community-i686/tilda.changelog
    (from rev 96245, tilda/trunk/tilda.changelog)
  tilda/repos/community-x86_64/PKGBUILD
    (from rev 96245, tilda/trunk/PKGBUILD)
  tilda/repos/community-x86_64/start-hidden-fix.patch
    (from rev 96245, tilda/trunk/start-hidden-fix.patch)
  tilda/repos/community-x86_64/tilda.changelog
    (from rev 96245, tilda/trunk/tilda.changelog)
Deleted:
  tilda/repos/community-i686/PKGBUILD
  tilda/repos/community-i686/tilda.changelog
  tilda/repos/community-x86_64/PKGBUILD
  tilda/repos/community-x86_64/tilda.changelog

-----------------------------------------+
 /PKGBUILD                               |   78 ++++++++++++++++++++++++++++++
 /tilda.changelog                        |   42 ++++++++++++++++
 community-i686/PKGBUILD                 |   29 -----------
 community-i686/start-hidden-fix.patch   |   24 +++++++++
 community-i686/tilda.changelog          |   18 ------
 community-x86_64/PKGBUILD               |   29 -----------
 community-x86_64/start-hidden-fix.patch |   24 +++++++++
 community-x86_64/tilda.changelog        |   18 ------
 8 files changed, 168 insertions(+), 94 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2013-08-22 16:36:03 UTC (rev 96245)
+++ community-i686/PKGBUILD	2013-08-22 16:36:18 UTC (rev 96246)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
-# Contributor: William Rea <sillywilly at gmail.com>
-
-pkgname=tilda
-pkgver=1.1.7
-pkgrel=1
-pkgdesc="A Gtk based drop down terminal for Linux and Unix"
-arch=('i686' 'x86_64')
-url="https://github.com/lanoxx/tilda"
-license=('GPL')
-depends=('vte3' 'confuse' 'gtk3')
-source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
-sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7')
-
-build() {
-  cd $srcdir/$pkgname-$pkgname-$pkgver
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: tilda/repos/community-i686/PKGBUILD (from rev 96245, tilda/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2013-08-22 16:36:18 UTC (rev 96246)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
+# Contributor: William Rea <sillywilly at gmail.com>
+
+pkgname=tilda
+pkgver=1.1.7
+pkgrel=2
+pkgdesc="A Gtk based drop down terminal for Linux and Unix"
+arch=('i686' 'x86_64')
+url="https://github.com/lanoxx/tilda"
+license=('GPL')
+depends=('vte3' 'confuse')
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz
+        start-hidden-fix.patch)
+sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7'
+            'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96')
+
+prepare() {
+  cd $pkgname-$pkgname-$pkgver
+
+  patch -Np1 -i ../start-hidden-fix.patch
+}
+
+build() {
+  cd $pkgname-$pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: tilda/repos/community-i686/start-hidden-fix.patch (from rev 96245, tilda/trunk/start-hidden-fix.patch)
===================================================================
--- community-i686/start-hidden-fix.patch	                        (rev 0)
+++ community-i686/start-hidden-fix.patch	2013-08-22 16:36:18 UTC (rev 96246)
@@ -0,0 +1,24 @@
+diff --git a/src/tilda.c b/src/tilda.c
+index c0a435f..50daa47 100644
+--- a/src/tilda.c
++++ b/src/tilda.c
+@@ -639,18 +639,7 @@ int main (int argc, char *argv[])
+         }
+     }
+
+-    if (config_getbool ("hidden"))
+-    {
+-        /* It does not cause graphical glitches to make tilda hidden on start this way.
+-         * It does make tilda appear much faster on it's first appearance, so I'm leaving
+-         * it this way, because it has a good benefit, and no apparent drawbacks. */
+-        gtk_widget_show (GTK_WIDGET(tw->window));
+-        gtk_widget_hide (GTK_WIDGET(tw->window));
+-    }
+-    else
+-    {
+-        pull (tw, PULL_DOWN);
+-    }
++    pull (tw, config_getbool ("hidden") ? PULL_UP : PULL_DOWN);
+
+     g_print ("Tilda has started. Press %s to pull down the window.\n",
+         config_getstr ("key"));

Deleted: community-i686/tilda.changelog
===================================================================
--- community-i686/tilda.changelog	2013-08-22 16:36:03 UTC (rev 96245)
+++ community-i686/tilda.changelog	2013-08-22 16:36:18 UTC (rev 96246)
@@ -1,18 +0,0 @@
-2013-08-08  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* tilda 1.1.7-1
-
-2012-06-02  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* FS#29754 fixed
-
-2011-08-28  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* FS#25762 fixed
-
-2008-04-29  Mateusz Herych <heniekk at gmail.com>
-	* Updated for x86_64 - 0.9.6
-
-2008-04-28  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
-	* Updated for i686 - 0.9.6
-
-2007-12-30  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
-	* Updated to newer version - 0.9.5
-

Copied: tilda/repos/community-i686/tilda.changelog (from rev 96245, tilda/trunk/tilda.changelog)
===================================================================
--- community-i686/tilda.changelog	                        (rev 0)
+++ community-i686/tilda.changelog	2013-08-22 16:36:18 UTC (rev 96246)
@@ -0,0 +1,21 @@
+2013-08-22  Maxime Gauduin <alucryd at gmail.com>
+	* FS#36542 fixed - tilda 1.1.7-2
+
+2013-08-08  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* tilda 1.1.7-1
+
+2012-06-02  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* FS#29754 fixed
+
+2011-08-28  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* FS#25762 fixed
+
+2008-04-29  Mateusz Herych <heniekk at gmail.com>
+	* Updated for x86_64 - 0.9.6
+
+2008-04-28  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
+	* Updated for i686 - 0.9.6
+
+2007-12-30  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
+	* Updated to newer version - 0.9.5
+

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2013-08-22 16:36:03 UTC (rev 96245)
+++ community-x86_64/PKGBUILD	2013-08-22 16:36:18 UTC (rev 96246)
@@ -1,29 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
-# Contributor: William Rea <sillywilly at gmail.com>
-
-pkgname=tilda
-pkgver=1.1.7
-pkgrel=1
-pkgdesc="A Gtk based drop down terminal for Linux and Unix"
-arch=('i686' 'x86_64')
-url="https://github.com/lanoxx/tilda"
-license=('GPL')
-depends=('vte3' 'confuse' 'gtk3')
-source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
-sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7')
-
-build() {
-  cd $srcdir/$pkgname-$pkgname-$pkgver
-
-  ./autogen.sh
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: tilda/repos/community-x86_64/PKGBUILD (from rev 96245, tilda/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2013-08-22 16:36:18 UTC (rev 96246)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+# Contributor: Douglas Soares de Andrade <dsa at aur.archlinux.org>
+# Contributor: William Rea <sillywilly at gmail.com>
+
+pkgname=tilda
+pkgver=1.1.7
+pkgrel=2
+pkgdesc="A Gtk based drop down terminal for Linux and Unix"
+arch=('i686' 'x86_64')
+url="https://github.com/lanoxx/tilda"
+license=('GPL')
+depends=('vte3' 'confuse')
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz
+        start-hidden-fix.patch)
+sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7'
+            'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96')
+
+prepare() {
+  cd $pkgname-$pkgname-$pkgver
+
+  patch -Np1 -i ../start-hidden-fix.patch
+}
+
+build() {
+  cd $pkgname-$pkgname-$pkgver
+
+  ./autogen.sh
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgname-$pkgver
+
+  make DESTDIR="$pkgdir" install
+}
+
+# vim: ts=2 sw=2 et:

Copied: tilda/repos/community-x86_64/start-hidden-fix.patch (from rev 96245, tilda/trunk/start-hidden-fix.patch)
===================================================================
--- community-x86_64/start-hidden-fix.patch	                        (rev 0)
+++ community-x86_64/start-hidden-fix.patch	2013-08-22 16:36:18 UTC (rev 96246)
@@ -0,0 +1,24 @@
+diff --git a/src/tilda.c b/src/tilda.c
+index c0a435f..50daa47 100644
+--- a/src/tilda.c
++++ b/src/tilda.c
+@@ -639,18 +639,7 @@ int main (int argc, char *argv[])
+         }
+     }
+
+-    if (config_getbool ("hidden"))
+-    {
+-        /* It does not cause graphical glitches to make tilda hidden on start this way.
+-         * It does make tilda appear much faster on it's first appearance, so I'm leaving
+-         * it this way, because it has a good benefit, and no apparent drawbacks. */
+-        gtk_widget_show (GTK_WIDGET(tw->window));
+-        gtk_widget_hide (GTK_WIDGET(tw->window));
+-    }
+-    else
+-    {
+-        pull (tw, PULL_DOWN);
+-    }
++    pull (tw, config_getbool ("hidden") ? PULL_UP : PULL_DOWN);
+
+     g_print ("Tilda has started. Press %s to pull down the window.\n",
+         config_getstr ("key"));

Deleted: community-x86_64/tilda.changelog
===================================================================
--- community-x86_64/tilda.changelog	2013-08-22 16:36:03 UTC (rev 96245)
+++ community-x86_64/tilda.changelog	2013-08-22 16:36:18 UTC (rev 96246)
@@ -1,18 +0,0 @@
-2013-08-08  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* tilda 1.1.7-1
-
-2012-06-02  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* FS#29754 fixed
-
-2011-08-28  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
-	* FS#25762 fixed
-
-2008-04-29  Mateusz Herych <heniekk at gmail.com>
-	* Updated for x86_64 - 0.9.6
-
-2008-04-28  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
-	* Updated for i686 - 0.9.6
-
-2007-12-30  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
-	* Updated to newer version - 0.9.5
-

Copied: tilda/repos/community-x86_64/tilda.changelog (from rev 96245, tilda/trunk/tilda.changelog)
===================================================================
--- community-x86_64/tilda.changelog	                        (rev 0)
+++ community-x86_64/tilda.changelog	2013-08-22 16:36:18 UTC (rev 96246)
@@ -0,0 +1,21 @@
+2013-08-22  Maxime Gauduin <alucryd at gmail.com>
+	* FS#36542 fixed - tilda 1.1.7-2
+
+2013-08-08  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* tilda 1.1.7-1
+
+2012-06-02  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* FS#29754 fixed
+
+2011-08-28  Jaroslav Lichtblau <dragonlord at aur.archlinux.org>
+	* FS#25762 fixed
+
+2008-04-29  Mateusz Herych <heniekk at gmail.com>
+	* Updated for x86_64 - 0.9.6
+
+2008-04-28  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
+	* Updated for i686 - 0.9.6
+
+2007-12-30  Douglas Soares de Andrade  <dsa at aur.archlinux.org>
+	* Updated to newer version - 0.9.5
+




More information about the arch-commits mailing list