[arch-commits] Commit in tilda/trunk (PKGBUILD start-hidden-fix.patch)

Jaroslav Lichtblau jlichtblau at nymeria.archlinux.org
Sun Nov 17 08:22:07 UTC 2013


    Date: Sunday, November 17, 2013 @ 09:22:07
  Author: jlichtblau
Revision: 101099

upgpkg: tilda 1.1.8-1

Modified:
  tilda/trunk/PKGBUILD
Deleted:
  tilda/trunk/start-hidden-fix.patch

------------------------+
 PKGBUILD               |   11 +++--------
 start-hidden-fix.patch |   24 ------------------------
 2 files changed, 3 insertions(+), 32 deletions(-)

Modified: PKGBUILD
===================================================================
--- PKGBUILD	2013-11-17 08:12:51 UTC (rev 101098)
+++ PKGBUILD	2013-11-17 08:22:07 UTC (rev 101099)
@@ -4,8 +4,8 @@
 # Contributor: William Rea <sillywilly at gmail.com>
 
 pkgname=tilda
-pkgver=1.1.7
-pkgrel=3
+pkgver=1.1.8
+pkgrel=1
 pkgdesc="A Gtk based drop down terminal for Linux and Unix"
 arch=('i686' 'x86_64')
 url="https://github.com/lanoxx/tilda"
@@ -12,19 +12,14 @@
 license=('GPL')
 depends=('vte3' 'confuse')
 source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz
-        start-hidden-fix.patch
         tab-count-fix.patch)
-sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7'
-            'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96'
+sha256sums=('f339974080db3fe6eb33d23c4fe3eca0b2d432a356808920f1c465695babb724'
             '5d80a76f904a2094cd7b156654ea6d1860c319fc6c18927f2fb342c0f477c110')
 
 prepare() {
   cd $pkgname-$pkgname-$pkgver
 
-  patch -Np1 -i ../start-hidden-fix.patch
   patch -Np1 -i ../tab-count-fix.patch
-  sed 's/Exec=.*/Exec=tilda/; s/Icon=.*/Icon=tilda/' -i tilda.desktop.in
-
 }
 
 build() {

Deleted: start-hidden-fix.patch
===================================================================
--- start-hidden-fix.patch	2013-11-17 08:12:51 UTC (rev 101098)
+++ start-hidden-fix.patch	2013-11-17 08:22:07 UTC (rev 101099)
@@ -1,24 +0,0 @@
-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"));




More information about the arch-commits mailing list