[arch-commits] Commit in transmission/trunk (PKGBUILD fix_minimize.patch)
Ionut Biru
ibiru at archlinux.org
Mon Feb 20 20:44:34 UTC 2012
Date: Monday, February 20, 2012 @ 15:44:33
Author: ibiru
Revision: 150698
update to 2.50
Modified:
transmission/trunk/PKGBUILD
Deleted:
transmission/trunk/fix_minimize.patch
--------------------+
PKGBUILD | 10 ++++------
fix_minimize.patch | 27 ---------------------------
2 files changed, 4 insertions(+), 33 deletions(-)
Modified: PKGBUILD
===================================================================
--- PKGBUILD 2012-02-20 18:42:42 UTC (rev 150697)
+++ PKGBUILD 2012-02-20 20:44:33 UTC (rev 150698)
@@ -3,8 +3,8 @@
pkgbase=transmission
pkgname=('transmission-cli' 'transmission-gtk' 'transmission-qt')
-pkgver=2.42
-pkgrel=2
+pkgver=2.50
+pkgrel=1
arch=('i686' 'x86_64')
url="http://www.transmissionbt.com/"
license=('MIT')
@@ -13,16 +13,14 @@
transmissiond transmissiond.conf
0001-gtk-conf-set-correct-download-dir-default.patch
fix_minimize.patch)
-md5sums=('50f6dd76c5c01f45d5ed20783c686815'
+md5sums=('07606789fab2f9730fa454cfc7a04b2d'
'08875299e3fbb68fc546c1f350ac1f06'
'be39806c35b7544856fa4070b00fc960'
- 'f9fae46f5aa9ed3a22af64091604c6d0'
- 'bd764dea56aaf69757762ea1a4c92be2')
+ 'f9fae46f5aa9ed3a22af64091604c6d0')
build() {
cd "$srcdir/$pkgbase-$pkgver"
patch -Np1 -i "$srcdir/0001-gtk-conf-set-correct-download-dir-default.patch"
- patch -Np2 -i "$srcdir/fix_minimize.patch"
./configure --prefix=/usr
make
Deleted: fix_minimize.patch
===================================================================
--- fix_minimize.patch 2012-02-20 18:42:42 UTC (rev 150697)
+++ fix_minimize.patch 2012-02-20 20:44:33 UTC (rev 150698)
@@ -1,27 +0,0 @@
-Index: /trunk/gtk/main.c
-===================================================================
---- /trunk/gtk/main.c (revision 12968)
-+++ /trunk/gtk/main.c (revision 13067)
-@@ -73,4 +73,5 @@
- gboolean is_iconified;
-
-+ guint activation_count;
- guint timer;
- guint update_model_soon_tag;
-@@ -533,6 +534,14 @@
-
- static void
--on_activate( GApplication * app UNUSED, gpointer unused UNUSED )
--{
-+on_activate( GApplication * app UNUSED, struct cbdata * cbdata )
-+{
-+ cbdata->activation_count++;
-+
-+ /* GApplication emits an 'activate' signal when bootstrapping the primary.
-+ * Ordinarily we handle that by presenting the main window, but if the user
-+ * user started Transmission minimized, ignore that initial signal... */
-+ if( cbdata->is_iconified && ( cbdata->activation_count == 1 ) )
-+ return;
-+
- gtr_action_activate( "present-main-window" );
- }
More information about the arch-commits
mailing list