[arch-commits] Commit in tilda/trunk (PKGBUILD tab-count-fix.patch tilda.changelog)

2013-12-14 Thread Jaroslav Lichtblau
Date: Saturday, December 14, 2013 @ 12:48:02
  Author: jlichtblau
Revision: 102553

upgpkg: tilda 1.1.10-1

Modified:
  tilda/trunk/PKGBUILD
  tilda/trunk/tilda.changelog
Deleted:
  tilda/trunk/tab-count-fix.patch

-+
 PKGBUILD|   14 +++---
 tab-count-fix.patch |   11 ---
 tilda.changelog |3 +++
 3 files changed, 6 insertions(+), 22 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-12-14 02:54:15 UTC (rev 102552)
+++ PKGBUILD2013-12-14 11:48:02 UTC (rev 102553)
@@ -4,7 +4,7 @@
 # Contributor: William Rea sillywi...@gmail.com
 
 pkgname=tilda
-pkgver=1.1.8
+pkgver=1.1.10
 pkgrel=1
 pkgdesc=A Gtk based drop down terminal for Linux and Unix
 arch=('i686' 'x86_64')
@@ -11,17 +11,9 @@
 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')
+source=(https://github.com/lanoxx/$pkgname/archive/$pkgname-$pkgver.tar.gz)
+sha256sums=('292f98d344c88998a0f7d67372020f1c3c7192de94fabf14a0d4eae18726b267')
 
-prepare() {
-  cd $pkgname-$pkgname-$pkgver
-
-  patch -Np1 -i ../tab-count-fix.patch
-}
-
 build() {
   cd $pkgname-$pkgname-$pkgver
 

Deleted: tab-count-fix.patch
===
--- tab-count-fix.patch 2013-12-14 02:54:15 UTC (rev 102552)
+++ tab-count-fix.patch 2013-12-14 11:48:02 UTC (rev 102553)
@@ -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 (tw, g_list_length (tw-terms) - tab_number);
-+goto_tab (tw, tab_number - 1);
- return TRUE;
- }
-  

Modified: tilda.changelog
===
--- tilda.changelog 2013-12-14 02:54:15 UTC (rev 102552)
+++ tilda.changelog 2013-12-14 11:48:02 UTC (rev 102553)
@@ -1,3 +1,6 @@
+2013-12-14 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+  * tilda 1.1.10-1
+
 2013-11-17 Jaroslav Lichtblau dragonl...@aur.archlinux.org
   * tilda 1.1.8-1
 



[arch-commits] Commit in tilda/trunk (PKGBUILD tab-count-fix.patch tilda.changelog)

2013-08-22 Thread Maxime Gauduin
Date: Thursday, August 22, 2013 @ 19:19:28
  Author: alucryd
Revision: 96249

FS#36516,FS#36543: tilda 1.1.7-3

Added:
  tilda/trunk/tab-count-fix.patch
Modified:
  tilda/trunk/PKGBUILD
  tilda/trunk/tilda.changelog

-+
 PKGBUILD|   11 ---
 tab-count-fix.patch |   11 +++
 tilda.changelog |   29 +++--
 3 files changed, 34 insertions(+), 17 deletions(-)

Modified: PKGBUILD
===
--- PKGBUILD2013-08-22 17:02:31 UTC (rev 96248)
+++ PKGBUILD2013-08-22 17:19:28 UTC (rev 96249)
@@ -5,21 +5,26 @@
 
 pkgname=tilda
 pkgver=1.1.7
-pkgrel=2
+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)
+start-hidden-fix.patch
+tab-count-fix.patch)
 sha256sums=('ed96ae2cf0ceb2a5b2f4a62948c5c0d28d1d54f89ade5153b2e67515cf4dc5e7'
-'e6d6075bb923c2dcae57706fe0555c28f9094f5115f1a3c60b8f85b8ff267b96')
+'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() {

Added: tab-count-fix.patch
===
--- tab-count-fix.patch (rev 0)
+++ tab-count-fix.patch 2013-08-22 17:19:28 UTC (rev 96249)
@@ -0,0 +1,11 @@
+--- 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 (tw, g_list_length (tw-terms) - tab_number);
++goto_tab (tw, tab_number - 1);
+ return TRUE;
+ }
+  


Property changes on: tilda/trunk/tab-count-fix.patch
___
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Modified: tilda.changelog
===
--- tilda.changelog 2013-08-22 17:02:31 UTC (rev 96248)
+++ tilda.changelog 2013-08-22 17:19:28 UTC (rev 96249)
@@ -1,21 +1,22 @@
-2013-08-22  Maxime Gauduin aluc...@gmail.com
-   * FS#36542 fixed - tilda 1.1.7-2
+2013-08-22 Maxime Gauduin aluc...@gmail.com
+  * tilda 1.1.7-3
+  * Fixes FS#36542, FS#36516 and FS#36543
 
-2013-08-08  Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * tilda 1.1.7-1
+2013-08-08 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+  * tilda 1.1.7-1
 
-2012-06-02  Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * FS#29754 fixed
+2012-06-02 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+  * FS#29754 fixed
 
-2011-08-28  Jaroslav Lichtblau dragonl...@aur.archlinux.org
-   * FS#25762 fixed
+2011-08-28 Jaroslav Lichtblau dragonl...@aur.archlinux.org
+  * FS#25762 fixed
 
-2008-04-29  Mateusz Herych heni...@gmail.com
-   * Updated for x86_64 - 0.9.6
+2008-04-29 Mateusz Herych heni...@gmail.com
+  * Updated for x86_64 - 0.9.6
 
-2008-04-28  Douglas Soares de Andrade  d...@aur.archlinux.org
-   * Updated for i686 - 0.9.6
+2008-04-28 Douglas Soares de Andrade d...@aur.archlinux.org
+  * Updated for i686 - 0.9.6
 
-2007-12-30  Douglas Soares de Andrade  d...@aur.archlinux.org
-   * Updated to newer version - 0.9.5
+2007-12-30 Douglas Soares de Andrade d...@aur.archlinux.org
+  * Updated to newer version - 0.9.5