[arch-commits] Commit in tilda/repos/community-i686 (7 files)

2013-11-17 Thread Jaroslav Lichtblau
Date: Sunday, November 17, 2013 @ 09:33:22
  Author: jlichtblau
Revision: 101102

archrelease: copy trunk to community-i686

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

+
 PKGBUILD   |   83 ++-
 start-hidden-fix.patch |   24 -
 tab-count-fix.patch|   22 ++--
 tilda.changelog|   47 ++
 4 files changed, 75 insertions(+), 101 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-11-17 08:25:21 UTC (rev 101101)
+++ PKGBUILD2013-11-17 08:33:22 UTC (rev 101102)
@@ -1,44 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgname=tilda
-pkgver=1.1.7
-pkgrel=3
-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
-tab-count-fix.patch)
-sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7'
-'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96'
-'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() {
-  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/PKGBUILD (from rev 101101, 
tilda/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-11-17 08:33:22 UTC (rev 101102)
@@ -0,0 +1,39 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: William Rea 
+
+pkgname=tilda
+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";
+license=('GPL')
+depends=('vte3' 'confuse')
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz
+tab-count-fix.patch)
+sha256sums=('f339974080db3fe6eb33d23c4fe3eca0b2d432a356808920f1c465695babb724'
+'5d80a76f904a2094cd7b156654ea6d1860c319fc6c18927f2fb342c0f477c110')
+
+prepare() {
+  cd $pkgname-$pkgname-$pkgver
+
+  patch -Np1 -i ../tab-count-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:

Deleted: start-hidden-fix.patch
===
--- start-hidden-fix.patch  2013-11-17 08:25:21 UTC (rev 101101)
+++ start-hidden-fix.patch  2013-11-17 08:33:22 UTC (rev 101102)
@@ -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"));

Deleted: tab-count-fix.patch
===
--- tab-count-fix.patch 2013-11-17 08:25:21 UTC (rev 101101)
+++ tab-count-fix.patch 2013-11-17 08:33:22 UTC (rev 101102)
@@ -1,11 +0,0 @@
 a/src/tilda_window.c
-+++ b/src/tilda_window.c
-@@ -378,7 +378,7 @@ static gboolean goto_tab_generic (tilda_window *tw, guint 
tab_number)
- 
- if (g_list_length (tw->terms) > (tab_number-1))
- {
--goto_tab (t

[arch-commits] Commit in tilda/repos/community-i686 (7 files)

2013-08-22 Thread Eric BĂ©langer
Date: Friday, August 23, 2013 @ 01:46:44
  Author: eric
Revision: 96257

archrelease: copy trunk to community-i686

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

+
 PKGBUILD   |   88 +++
 start-hidden-fix.patch |   24 
 tab-count-fix.patch|   22 +--
 tilda.changelog|   44 +++
 4 files changed, 101 insertions(+), 77 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-22 18:51:00 UTC (rev 96256)
+++ PKGBUILD2013-08-22 23:46:44 UTC (rev 96257)
@@ -1,44 +0,0 @@
-# $Id: PKGBUILD 96249 2013-08-22 17:19:28Z alucryd $
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgname=tilda
-pkgver=1.1.7
-pkgrel=3
-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
-tab-count-fix.patch)
-sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7'
-'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96'
-'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() {
-  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/PKGBUILD (from rev 96256, 
tilda/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-22 23:46:44 UTC (rev 96257)
@@ -0,0 +1,44 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: William Rea 
+
+pkgname=tilda
+pkgver=1.1.7
+pkgrel=3
+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
+tab-count-fix.patch)
+sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7'
+'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96'
+'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() {
+  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 96256, 
tilda/trunk/start-hidden-fix.patch)
===
--- start-hidden-fix.patch  (rev 0)
+++ start-hidden-fix.patch  2013-08-22 23:46:44 UTC (rev 96257)
@@ -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: tab-count-fix.patch
==

[arch-commits] Commit in tilda/repos/community-i686 (7 files)

2013-08-08 Thread Jaroslav Lichtblau
Date: Thursday, August 8, 2013 @ 21:46:55
  Author: jlichtblau
Revision: 95294

archrelease: copy trunk to community-i686

Added:
  tilda/repos/community-i686/PKGBUILD
(from rev 95293, tilda/trunk/PKGBUILD)
  tilda/repos/community-i686/tilda.changelog
(from rev 95293, tilda/trunk/tilda.changelog)
Deleted:
  tilda/repos/community-i686/PKGBUILD
  tilda/repos/community-i686/tilda-conf-sigsegv.patch
  tilda/repos/community-i686/tilda-fix.patch
  tilda/repos/community-i686/tilda-glib2.patch
  tilda/repos/community-i686/tilda.changelog

--+
 PKGBUILD |   71 ++---
 tilda-conf-sigsegv.patch |   11 --
 tilda-fix.patch  |   24 ---
 tilda-glib2.patch|   11 --
 tilda.changelog  |   38 +++-
 5 files changed, 47 insertions(+), 108 deletions(-)

Deleted: PKGBUILD
===
--- PKGBUILD2013-08-08 19:43:14 UTC (rev 95293)
+++ PKGBUILD2013-08-08 19:46:55 UTC (rev 95294)
@@ -1,42 +0,0 @@
-# $Id$
-# Maintainer: Jaroslav Lichtblau 
-# Contributor: Douglas Soares de Andrade 
-# Contributor: William Rea 
-
-pkgname=tilda
-pkgver=0.9.6
-pkgrel=6
-pkgdesc="Linux terminal based on classic terminals from first person shooter 
games"
-arch=('i686' 'x86_64')
-url="http://tilda.sourceforge.net";
-license=('GPL')
-depends=('vte' 'confuse' 'libglade')
-makedepends=('gawk')
-source=(http://downloads.sourceforge.net/sourceforge/$pkgname/$pkgname-$pkgver.tar.gz
-tilda-fix.patch tilda-glib2.patch tilda-conf-sigsegv.patch)
-sha256sums=('b3bd0f63eb83a5001ef26056ca116e5f8005d454f8f82a94f334868862068411'
-'ceac38bb33a0e8141f7b6cbc55807c999729319f2fdfaa3c375aa1a541d29729'
-'c71cdd8cdc1fdd76c919605c6b7a1b89e4929d20630db17145e6c2b584c8aaf9'
-'e28c731c0ca94210d5e4f4b7dd0eee9952405593f1d06e4ab2d87ee299e3e533')
-
-build() {
-  cd $srcdir/$pkgname-$pkgver
-
-# gdk && desktop file fix FS#25762
-  patch -p0 -i ${srcdir}/$pkgname-fix.patch
-
-# glib2 fix
-  patch -p0 -i ${srcdir}/$pkgname-glib2.patch
-
-# fix segfaults on malformed config files FS#29754
-  patch -p0 -i ${srcdir}/$pkgname-conf-sigsegv.patch
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $srcdir/$pkgname-$pkgver
-
-  make DESTDIR=${pkgdir} install
-}

Copied: tilda/repos/community-i686/PKGBUILD (from rev 95293, 
tilda/trunk/PKGBUILD)
===
--- PKGBUILD(rev 0)
+++ PKGBUILD2013-08-08 19:46:55 UTC (rev 95294)
@@ -0,0 +1,29 @@
+# $Id$
+# Maintainer: Jaroslav Lichtblau 
+# Contributor: Douglas Soares de Andrade 
+# Contributor: William Rea 
+
+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
+}

Deleted: tilda-conf-sigsegv.patch
===
--- tilda-conf-sigsegv.patch2013-08-08 19:43:14 UTC (rev 95293)
+++ tilda-conf-sigsegv.patch2013-08-08 19:46:55 UTC (rev 95294)
@@ -1,11 +0,0 @@
 src/key_grabber.c  2008-04-08 00:12:31.0 +0200
-+++ src/key_grabber.c  2012-05-17 19:43:25.227699421 +0200
-@@ -257,7 +257,7 @@
- gboolean tilda_keygrabber_bind (const gchar *keystr, tilda_window *tw)
- {
- /* Empty strings are no good */
--if (strcmp ("", keystr) == 0)
-+if (!keystr || strcmp ("", keystr) == 0)
- return FALSE;
- 
- return tomboy_keybinder_bind (keystr, onKeybindingPull, tw);

Deleted: tilda-fix.patch
===
--- tilda-fix.patch 2013-08-08 19:43:14 UTC (rev 95293)
+++ tilda-fix.patch 2013-08-08 19:46:55 UTC (rev 95294)
@@ -1,24 +0,0 @@
 src/key_grabber.c  2008-04-08 01:12:31.0 +0300
-+++ src/key_grabber.c  2009-10-16 17:39:16.399679408 +0300
-@@ -190,7 +190,7 @@
-  * Overriding the user time here seems to work a lot better than 
calling
-  * gtk_window_present_with_time() here, or at the end of the 
function. I have
-  * no idea why, they should do the same thing. */
--gdk_x11_window_set_user_time (GTK_WIDGET(tw->window)->window,
-+gdk_x11_window_set_user_time (GTK_WIDGET(tw->window),
-   
tomboy_keybinder_get_current_event_time());
- gtk_window_move (GTK_WINDOW(tw->window), config_getint ("x_pos"), 
config_getint ("y_pos"));
- gtk_widget_show (GTK