[arch-commits] Commit in lxmusic/repos (8 files)
Balló György
bgyorgy at nymeria.archlinux.org
Wed Dec 4 20:12:10 UTC 2013
Date: Wednesday, December 4, 2013 @ 21:12:10
Author: bgyorgy
Revision: 102077
archrelease: copy trunk to community-i686, community-x86_64
Added:
lxmusic/repos/community-i686/PKGBUILD
(from rev 102076, lxmusic/trunk/PKGBUILD)
lxmusic/repos/community-i686/libnotify-0.7.patch
(from rev 102076, lxmusic/trunk/libnotify-0.7.patch)
lxmusic/repos/community-x86_64/PKGBUILD
(from rev 102076, lxmusic/trunk/PKGBUILD)
lxmusic/repos/community-x86_64/libnotify-0.7.patch
(from rev 102076, lxmusic/trunk/libnotify-0.7.patch)
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 | 72 +++++++++++++++++++++++++++++++++
/libnotify-0.7.patch | 54 ++++++++++++++++++++++++
community-i686/PKGBUILD | 30 -------------
community-i686/libnotify-0.7.patch | 27 ------------
community-x86_64/PKGBUILD | 30 -------------
community-x86_64/libnotify-0.7.patch | 27 ------------
6 files changed, 126 insertions(+), 114 deletions(-)
Deleted: community-i686/PKGBUILD
===================================================================
--- community-i686/PKGBUILD 2013-12-04 20:11:57 UTC (rev 102076)
+++ community-i686/PKGBUILD 2013-12-04 20:12:10 UTC (rev 102077)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Marcus Schulderinsky <mmaacceess at gmail dot com>
-
-pkgname=lxmusic
-pkgver=0.4.5
-pkgrel=1
-pkgdesc='Lightweight XMMS2 client'
-arch=('i686' 'x86_64')
-url="http://lxde.org/"
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'xmms2')
-makedepends=('pkgconfig' 'intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz
- libnotify-0.7.patch)
-md5sums=('9c3e5eb636f05e8c190d359cd0c8b679'
- '770c63254a7369613daeb6d1260d123f')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- patch -Np1 -i $srcdir/libnotify-0.7.patch
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
-}
Copied: lxmusic/repos/community-i686/PKGBUILD (from rev 102076, lxmusic/trunk/PKGBUILD)
===================================================================
--- community-i686/PKGBUILD (rev 0)
+++ community-i686/PKGBUILD 2013-12-04 20:12:10 UTC (rev 102077)
@@ -0,0 +1,36 @@
+# $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
+}
Deleted: community-i686/libnotify-0.7.patch
===================================================================
--- community-i686/libnotify-0.7.patch 2013-12-04 20:11:57 UTC (rev 102076)
+++ community-i686/libnotify-0.7.patch 2013-12-04 20:12:10 UTC (rev 102077)
@@ -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;
Copied: lxmusic/repos/community-i686/libnotify-0.7.patch (from rev 102076, lxmusic/trunk/libnotify-0.7.patch)
===================================================================
--- community-i686/libnotify-0.7.patch (rev 0)
+++ community-i686/libnotify-0.7.patch 2013-12-04 20:12:10 UTC (rev 102077)
@@ -0,0 +1,27 @@
+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 2013-12-04 20:11:57 UTC (rev 102076)
+++ community-x86_64/PKGBUILD 2013-12-04 20:12:10 UTC (rev 102077)
@@ -1,30 +0,0 @@
-# $Id$
-# Maintainer: Bartłomiej Piotrowski <nospam at bpiotrowski.pl>
-# Contributor: Marcus Schulderinsky <mmaacceess at gmail dot com>
-
-pkgname=lxmusic
-pkgver=0.4.5
-pkgrel=1
-pkgdesc='Lightweight XMMS2 client'
-arch=('i686' 'x86_64')
-url="http://lxde.org/"
-license=('GPL')
-groups=('lxde')
-depends=('gtk2' 'xmms2')
-makedepends=('pkgconfig' 'intltool')
-source=(http://downloads.sourceforge.net/lxde/$pkgname-$pkgver.tar.gz
- libnotify-0.7.patch)
-md5sums=('9c3e5eb636f05e8c190d359cd0c8b679'
- '770c63254a7369613daeb6d1260d123f')
-
-build() {
- cd $srcdir/$pkgname-$pkgver
- patch -Np1 -i $srcdir/libnotify-0.7.patch
- ./configure --prefix=/usr
- make
-}
-
-package() {
- cd $srcdir/$pkgname-$pkgver
- make DESTDIR=$pkgdir install
-}
Copied: lxmusic/repos/community-x86_64/PKGBUILD (from rev 102076, lxmusic/trunk/PKGBUILD)
===================================================================
--- community-x86_64/PKGBUILD (rev 0)
+++ community-x86_64/PKGBUILD 2013-12-04 20:12:10 UTC (rev 102077)
@@ -0,0 +1,36 @@
+# $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
+}
Deleted: community-x86_64/libnotify-0.7.patch
===================================================================
--- community-x86_64/libnotify-0.7.patch 2013-12-04 20:11:57 UTC (rev 102076)
+++ community-x86_64/libnotify-0.7.patch 2013-12-04 20:12:10 UTC (rev 102077)
@@ -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;
Copied: lxmusic/repos/community-x86_64/libnotify-0.7.patch (from rev 102076, lxmusic/trunk/libnotify-0.7.patch)
===================================================================
--- community-x86_64/libnotify-0.7.patch (rev 0)
+++ community-x86_64/libnotify-0.7.patch 2013-12-04 20:12:10 UTC (rev 102077)
@@ -0,0 +1,27 @@
+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