[arch-commits] Commit in lxmusic/repos (6 files)

Balló György bgyorgy at archlinux.org
Tue Sep 23 12:58:22 UTC 2014


    Date: Tuesday, September 23, 2014 @ 14:58:22
  Author: bgyorgy
Revision: 119468

archrelease: copy trunk to community-i686, community-x86_64

Added:
  lxmusic/repos/community-i686/PKGBUILD
    (from rev 119467, lxmusic/trunk/PKGBUILD)
  lxmusic/repos/community-x86_64/PKGBUILD
    (from rev 119467, lxmusic/trunk/PKGBUILD)
Deleted:
  lxmusic/repos/community-i686/PKGBUILD
  lxmusic/repos/community-i686/libnotify-0.7.patch
  lxmusic/repos/community-x86_64/PKGBUILD
  lxmusic/repos/community-x86_64/libnotify-0.7.patch

--------------------------------------+
 /PKGBUILD                            |   56 +++++++++++++++++++++++++++++++++
 community-i686/PKGBUILD              |   36 ---------------------
 community-i686/libnotify-0.7.patch   |   27 ---------------
 community-x86_64/PKGBUILD            |   36 ---------------------
 community-x86_64/libnotify-0.7.patch |   27 ---------------
 5 files changed, 56 insertions(+), 126 deletions(-)

Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD	2014-09-23 12:58:12 UTC (rev 119467)
+++ community-i686/PKGBUILD	2014-09-23 12:58:22 UTC (rev 119468)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Contributor: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Marcus Schulderinsky <mmaacceess at gmail dot com>
-
-pkgname=lxmusic
-pkgver=0.4.5
-pkgrel=2
-pkgdesc='Lightweight XMMS2 client'
-arch=('i686' 'x86_64')
-url="http://lxde.org/"
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'libnotify' 'xmms2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz
-        libnotify-0.7.patch)
-md5sums=('9c3e5eb636f05e8c190d359cd0c8b679'
-         '770c63254a7369613daeb6d1260d123f')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Port to libnotify-0.7
-  patch -Np1 -i $srcdir/libnotify-0.7.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxmusic/repos/community-i686/PKGBUILD (from rev 119467, lxmusic/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD	                        (rev 0)
+++ community-i686/PKGBUILD	2014-09-23 12:58:22 UTC (rev 119468)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Marcus Schulderinsky <mmaacceess at gmail dot com>
+
+pkgname=lxmusic
+pkgver=0.4.6
+pkgrel=1
+pkgdesc='Lightweight XMMS2 client'
+arch=('i686' 'x86_64')
+url="http://lxde.org/"
+license=('GPL')
+groups=('lxde')
+depends=('gtk2' 'libnotify' 'xmms2')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('38fc31793b11c43b6a8fda70faedfd54')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-i686/libnotify-0.7.patch
===================================================================
--- community-i686/libnotify-0.7.patch	2014-09-23 12:58:12 UTC (rev 119467)
+++ community-i686/libnotify-0.7.patch	2014-09-23 12:58:22 UTC (rev 119468)
@@ -1,27 +0,0 @@
-Upstream:
-https://sourceforge.net/tracker/?func=detail&aid=3529198&group_id=180858&atid=894869
-Index: lxmusic-0.4.5/src/lxmusic-notify.c
-===================================================================
---- lxmusic-0.4.5.orig/src/lxmusic-notify.c
-+++ lxmusic-0.4.5/src/lxmusic-notify.c
-@@ -84,9 +84,20 @@ LXMusicNotification lxmusic_do_notify_pr
-     else 			
- 	g_string_append( message, title );
-     struct _LXMusicNotification *lxn = g_new ( struct _LXMusicNotification, 1);
-+#ifdef NOTIFY_CHECK_VERSION
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+    lxn->notify = notify_notification_new (summary, message->str, NULL);
-+#else
-     lxn->notify = notify_notification_new (summary, message->str, NULL, NULL);
-+#endif
-+#else
-+    lxn->notify = notify_notification_new (summary, message->str, NULL, NULL);
-+#endif
-     notify_notification_set_urgency (lxn->notify, NOTIFY_URGENCY_NORMAL);
-+#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
-+    notify_notification_attach_to_status_icon(notify, priv->statusIcon);
-     notify_notification_attach_to_status_icon( lxn->notify, status_icon );
-+#endif
-     notify_notification_set_timeout (lxn->notify, NOTIFY_EXPIRES_DEFAULT);
-     g_string_free( message, TRUE );
-     return lxn;

Deleted: community-x86_64/PKGBUILD
===================================================================
--- community-x86_64/PKGBUILD	2014-09-23 12:58:12 UTC (rev 119467)
+++ community-x86_64/PKGBUILD	2014-09-23 12:58:22 UTC (rev 119468)
@@ -1,36 +0,0 @@
-# $Id$
-# Maintainer: Balló György <ballogyor+arch at gmail dot com>
-# Contributor: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Marcus Schulderinsky <mmaacceess at gmail dot com>
-
-pkgname=lxmusic
-pkgver=0.4.5
-pkgrel=2
-pkgdesc='Lightweight XMMS2 client'
-arch=('i686' 'x86_64')
-url="http://lxde.org/"
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'libnotify' 'xmms2')
-makedepends=('intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz
-        libnotify-0.7.patch)
-md5sums=('9c3e5eb636f05e8c190d359cd0c8b679'
-         '770c63254a7369613daeb6d1260d123f')
-
-prepare() {
-  cd $pkgname-$pkgver
-  # Port to libnotify-0.7
-  patch -Np1 -i $srcdir/libnotify-0.7.patch
-}
-
-build() {
-  cd $pkgname-$pkgver
-  ./configure --prefix=/usr
-  make
-}
-
-package() {
-  cd $pkgname-$pkgver
-  make DESTDIR="$pkgdir" install
-}

Copied: lxmusic/repos/community-x86_64/PKGBUILD (from rev 119467, lxmusic/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD	                        (rev 0)
+++ community-x86_64/PKGBUILD	2014-09-23 12:58:22 UTC (rev 119468)
@@ -0,0 +1,28 @@
+# $Id$
+# Maintainer: Balló György <ballogyor+arch at gmail dot com>
+# Contributor: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
+# Contributor: Marcus Schulderinsky <mmaacceess at gmail dot com>
+
+pkgname=lxmusic
+pkgver=0.4.6
+pkgrel=1
+pkgdesc='Lightweight XMMS2 client'
+arch=('i686' 'x86_64')
+url="http://lxde.org/"
+license=('GPL')
+groups=('lxde')
+depends=('gtk2' 'libnotify' 'xmms2')
+makedepends=('intltool')
+source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.xz)
+md5sums=('38fc31793b11c43b6a8fda70faedfd54')
+
+build() {
+  cd $pkgname-$pkgver
+  ./configure --prefix=/usr
+  make
+}
+
+package() {
+  cd $pkgname-$pkgver
+  make DESTDIR="$pkgdir" install
+}

Deleted: community-x86_64/libnotify-0.7.patch
===================================================================
--- community-x86_64/libnotify-0.7.patch	2014-09-23 12:58:12 UTC (rev 119467)
+++ community-x86_64/libnotify-0.7.patch	2014-09-23 12:58:22 UTC (rev 119468)
@@ -1,27 +0,0 @@
-Upstream:
-https://sourceforge.net/tracker/?func=detail&aid=3529198&group_id=180858&atid=894869
-Index: lxmusic-0.4.5/src/lxmusic-notify.c
-===================================================================
---- lxmusic-0.4.5.orig/src/lxmusic-notify.c
-+++ lxmusic-0.4.5/src/lxmusic-notify.c
-@@ -84,9 +84,20 @@ LXMusicNotification lxmusic_do_notify_pr
-     else 			
- 	g_string_append( message, title );
-     struct _LXMusicNotification *lxn = g_new ( struct _LXMusicNotification, 1);
-+#ifdef NOTIFY_CHECK_VERSION
-+#if NOTIFY_CHECK_VERSION (0, 7, 0)
-+    lxn->notify = notify_notification_new (summary, message->str, NULL);
-+#else
-     lxn->notify = notify_notification_new (summary, message->str, NULL, NULL);
-+#endif
-+#else
-+    lxn->notify = notify_notification_new (summary, message->str, NULL, NULL);
-+#endif
-     notify_notification_set_urgency (lxn->notify, NOTIFY_URGENCY_NORMAL);
-+#if !defined(NOTIFY_VERSION_MINOR) || (NOTIFY_VERSION_MAJOR == 0 && NOTIFY_VERSION_MINOR < 7)
-+    notify_notification_attach_to_status_icon(notify, priv->statusIcon);
-     notify_notification_attach_to_status_icon( lxn->notify, status_icon );
-+#endif
-     notify_notification_set_timeout (lxn->notify, NOTIFY_EXPIRES_DEFAULT);
-     g_string_free( message, TRUE );
-     return lxn;




More information about the arch-commits mailing list