[arch-commits] Commit in pidgin-hotkeys/repos/community-x86_64 (4 files)

Felix Yan felixonmars at archlinux.org
Thu May 31 02:01:25 UTC 2018


    Date: Thursday, May 31, 2018 @ 02:01:24
  Author: felixonmars
Revision: 333807

archrelease: copy trunk to community-x86_64

Added:
  pidgin-hotkeys/repos/community-x86_64/PKGBUILD
    (from rev 333806, pidgin-hotkeys/trunk/PKGBUILD)
  pidgin-hotkeys/repos/community-x86_64/pidgin-hotkeys.patch
    (from rev 333806, pidgin-hotkeys/trunk/pidgin-hotkeys.patch)
Deleted:
  pidgin-hotkeys/repos/community-x86_64/PKGBUILD
  pidgin-hotkeys/repos/community-x86_64/pidgin-hotkeys.patch

----------------------+
 PKGBUILD             |   62 ++++++++++++++++++++++++-------------------------
 pidgin-hotkeys.patch |   48 ++++++++++++++++++-------------------
 2 files changed, 55 insertions(+), 55 deletions(-)

Deleted: PKGBUILD
===================================================================
--- PKGBUILD	2018-05-31 02:00:55 UTC (rev 333806)
+++ PKGBUILD	2018-05-31 02:01:24 UTC (rev 333807)
@@ -1,31 +0,0 @@
-# $Id$
-# Maintainer: Felix Yan <felixonmars at gmail.com>
-# Contributor: Lukas Fleischer <lfleischer at archlinux.org>
-# Contributor: detto <detto-brumm at freenet.de>
-
-pkgname=pidgin-hotkeys
-pkgver=0.2.4
-pkgrel=3
-pkgdesc="A Pidgin plugin that allows you to define global hotkeys."
-arch=('i686' 'x86_64')
-url="http://pidgin-hotkeys.sourceforge.net"
-license=('GPL')
-depends=('pidgin')
-source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
-        "pidgin-hotkeys.patch")
-md5sums=('553aae7319861af9e8716bfe0ba45c30'
-         '0726353af56270164d7af88470722dd0')
-
-build() {
-  cd "$srcdir/$pkgname-$pkgver"
-
-  patch -Np0 -i ../pidgin-hotkeys.patch
-
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd "$srcdir/$pkgname-$pkgver"
-  make DESTDIR="$pkgdir" install
-}

Copied: pidgin-hotkeys/repos/community-x86_64/PKGBUILD (from rev 333806, pidgin-hotkeys/trunk/PKGBUILD)
===================================================================
--- PKGBUILD	                        (rev 0)
+++ PKGBUILD	2018-05-31 02:01:24 UTC (rev 333807)
@@ -0,0 +1,31 @@
+# $Id$
+# Maintainer: Felix Yan <felixonmars at archlinux.org>
+# Contributor: Lukas Fleischer <lfleischer at archlinux.org>
+# Contributor: detto <detto-brumm at freenet.de>
+
+pkgname=pidgin-hotkeys
+pkgver=0.2.4
+pkgrel=4
+pkgdesc="A Pidgin plugin that allows you to define global hotkeys."
+arch=('x86_64')
+url="http://pidgin-hotkeys.sourceforge.net"
+license=('GPL')
+depends=('pidgin')
+source=("http://downloads.sourceforge.net/${pkgname}/${pkgname}-${pkgver}.tar.gz"
+        "pidgin-hotkeys.patch")
+sha512sums=('99897a47f91c5ceacabdec13859526f6af6270e171b94b49183ad5cc5118b5e3f5377d02ffd0bdbdbaafdd6f23f400deb604a8fe686cd29103187276f20aca86'
+            'db7fa4d478ab0f2c84ac061b8c4a5bcbd6047e83e9cf0b76c79153df3aaa32d567571ebf3fe7b5b757aacd6098bcba36e2846a3480d15069881f7f96f96aafcf')
+
+build() {
+  cd "$srcdir/$pkgname-$pkgver"
+
+  patch -Np0 -i ../pidgin-hotkeys.patch
+
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd "$srcdir/$pkgname-$pkgver"
+  make DESTDIR="$pkgdir" install
+}

Deleted: pidgin-hotkeys.patch
===================================================================
--- pidgin-hotkeys.patch	2018-05-31 02:00:55 UTC (rev 333806)
+++ pidgin-hotkeys.patch	2018-05-31 02:01:24 UTC (rev 333807)
@@ -1,24 +0,0 @@
---- src/hotkeys.c	2007-06-22 20:37:00.000000000 +0200
-+++ src/hotkeys.c	2008-04-18 16:08:46.000000000 +0200
-@@ -152,15 +152,19 @@
- 
-             if ((l = get_pending_list(1)))
- 	    {
--		pidgin_conv_present_conversation((PurpleConversation *)l->data);
-+			PurpleConversation *conv = l->data;
-+		pidgin_conv_present_conversation(conv);
- 
- #ifdef GDK_WINDOWING_X11
- 		{
- 		    GtkWindow *gtkwindow;
-+			PidginConversation *gtkconv = PIDGIN_CONVERSATION(conv);
- 
--		    gtkwindow = GTK_WINDOW(pidgin_conv_get_window(PIDGIN_CONVERSATION((PurpleConversation *)l->data))->window);
-+		    gtkwindow = GTK_WINDOW(pidgin_conv_get_window(PIDGIN_CONVERSATION(conv))->window);
- 		    /*gtk_window_present(gtkwindow);*/
- 		    hacky_active_window(GTK_WIDGET(gtkwindow));
-+
-+			pidgin_conv_window_switch_gtkconv(gtkconv->win, gtkconv);
- 		}
- #endif
- 		g_list_free(l);

Copied: pidgin-hotkeys/repos/community-x86_64/pidgin-hotkeys.patch (from rev 333806, pidgin-hotkeys/trunk/pidgin-hotkeys.patch)
===================================================================
--- pidgin-hotkeys.patch	                        (rev 0)
+++ pidgin-hotkeys.patch	2018-05-31 02:01:24 UTC (rev 333807)
@@ -0,0 +1,24 @@
+--- src/hotkeys.c	2007-06-22 20:37:00.000000000 +0200
++++ src/hotkeys.c	2008-04-18 16:08:46.000000000 +0200
+@@ -152,15 +152,19 @@
+ 
+             if ((l = get_pending_list(1)))
+ 	    {
+-		pidgin_conv_present_conversation((PurpleConversation *)l->data);
++			PurpleConversation *conv = l->data;
++		pidgin_conv_present_conversation(conv);
+ 
+ #ifdef GDK_WINDOWING_X11
+ 		{
+ 		    GtkWindow *gtkwindow;
++			PidginConversation *gtkconv = PIDGIN_CONVERSATION(conv);
+ 
+-		    gtkwindow = GTK_WINDOW(pidgin_conv_get_window(PIDGIN_CONVERSATION((PurpleConversation *)l->data))->window);
++		    gtkwindow = GTK_WINDOW(pidgin_conv_get_window(PIDGIN_CONVERSATION(conv))->window);
+ 		    /*gtk_window_present(gtkwindow);*/
+ 		    hacky_active_window(GTK_WIDGET(gtkwindow));
++
++			pidgin_conv_window_switch_gtkconv(gtkconv->win, gtkconv);
+ 		}
+ #endif
+ 		g_list_free(l);



More information about the arch-commits mailing list