public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild
@ 2011-02-18 14:53 Christoph Mende (angelos)
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Mende (angelos) @ 2011-02-18 14:53 UTC (permalink / raw
  To: gentoo-commits

angelos     11/02/18 14:53:09

  Modified:             ChangeLog
  Added:                qmpdclient-1.2.1.ebuild
  Log:
  Version bump, dropped sparc and hppa because of qt-webkit dependency
  
  (Portage version: 2.1.9.40/cvs/Linux x86_64)

Revision  Changes    Path
1.74                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.74&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.74&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog	6 Jan 2011 22:46:47 -0000	1.73
+++ ChangeLog	18 Feb 2011 14:53:09 -0000	1.74
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.73 2011/01/06 22:46:47 xmw Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.74 2011/02/18 14:53:09 angelos Exp $
+
+*qmpdclient-1.2.1 (18 Feb 2011)
+
+  18 Feb 2011; <angelos@gentoo.org> +qmpdclient-1.2.1.ebuild:
+  Version bump, dropped sparc and hppa because of qt-webkit dependency
 
   06 Jan 2011; Michael Weber <xmw@gentoo.org> qmpdclient-1.1.3.ebuild:
   sparc stable (bug 340759)



1.1                  media-sound/qmpdclient/qmpdclient-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.1&content-type=text/plain

Index: qmpdclient-1.2.1.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.1 2011/02/18 14:53:09 angelos Exp $

EAPI="2"

LANGSLONG="cs_CZ de_DE fr_FR it_IT nl_NL nn_NO no_NO ru_RU sv_SE tr_TR uk_UA"
LANGS="zh_CN zh_TW pt_BR "

inherit qt4-r2

DESCRIPTION="QMPDClient with NBL additions, such as lyrics' display"
HOMEPAGE="http://bitcheese.net/wiki/QMPDClient"
SRC_URI="http://dump.bitcheese.net/files/${P}.tar.bz2"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~ppc ~x86"
IUSE="debug dbus"

DEPEND="x11-libs/qt-gui:4[dbus?]
	x11-libs/qt-webkit:4
	x11-libs/qt-xmlpatterns:4"
RDEPEND="${DEPEND}"

S="${WORKDIR}/${PN}"

DOCS="AUTHORS README THANKSTO Changelog"

src_prepare() {
	# Fix the install path
	sed -i -e "s:PREFIX = /usr/local:PREFIX = /usr:" ${PN}.pro \
		|| die "sed failed (install path)"

	# nostrip fix
	sed -i -e "s:^CONFIG += :CONFIG += nostrip :" ${PN}.pro \
		|| die "sed failed (nostrip)"

	sed -i -e "s:+= -O2 -g0 -s:+= -O2 -g0:" ${PN}.pro \
		|| die "sed failed (nostrip)"

	# fix installation folder name
	sed -i "s:share/QMPDClient:share/qmpdclient:" ${PN}.pro src/config.cpp \
		|| die "failed to fix installation directory"

	# check dbus
	if ! use dbus; then
		sed -i -e "s/message(DBus notifier:\ enabled)/message(DBus notifier:\ disabled)/" \
			-e "s/CONFIG\ +=\ nostrip\ qdbus//" \
			-e "s/SOURCES\ +=\ src\/notifications_dbus.cpp/SOURCES\ +=\ src\/notifications_nodbus.cpp/" \
			${PN}.pro || die "disabling dbus failed"
	fi
	qt4-r2_src_prepare
}

src_compile() {
	emake || die "emake failed"
	# generate translations
	emake translate || die "failed to generate translations"
	cd "${S}"/lang
	for X in *.ts;do
		lrelease "${X}" || die "lrelease failed"
	done
}

src_install() {
	qt4-r2_src_install

	#install translations
	insinto /usr/share/${PN}/translations/
	local LANG=
	for LANG in ${LINGUAS};do
	    for X in ${LANGSLONG};do
			if [[ ${LANG} == ${X%_*} ]];then
		    	doins -r lang/${X}.qm || die "failed to install translations"
			fi
	    done
		for X in ${LANGS};do
			if [[ ${LANG} == ${X} ]]; then
				doins -r lang/${X}.qm || die "failed to install translations"
			fi
		done
	done
}






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild
@ 2011-03-15 18:46 Christoph Mende (angelos)
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Mende (angelos) @ 2011-03-15 18:46 UTC (permalink / raw
  To: gentoo-commits

angelos     11/03/15 18:46:07

  Modified:             ChangeLog qmpdclient-1.2.1.ebuild
  Log:
  Restored keywords, those were dropped by accident
  
  (Portage version: 2.2.0_alpha27/cvs/Linux x86_64)

Revision  Changes    Path
1.76                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.76&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.76&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.75&r2=1.76

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.75
retrieving revision 1.76
diff -u -r1.75 -r1.76
--- ChangeLog	14 Mar 2011 17:35:45 -0000	1.75
+++ ChangeLog	15 Mar 2011 18:46:07 -0000	1.76
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.75 2011/03/14 17:35:45 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.76 2011/03/15 18:46:07 angelos Exp $
+
+  15 Mar 2011; <angelos@gentoo.org> qmpdclient-1.2.1.ebuild:
+  Restored keywords, those were dropped by accident
 
   14 Mar 2011; <angelos@gentoo.org> qmpdclient-1.2.1.ebuild,
   qmpdclient-9999.ebuild:



1.3                  media-sound/qmpdclient/qmpdclient-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.3&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.3&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?r1=1.2&r2=1.3

Index: qmpdclient-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- qmpdclient-1.2.1.ebuild	14 Mar 2011 17:35:45 -0000	1.2
+++ qmpdclient-1.2.1.ebuild	15 Mar 2011 18:46:07 -0000	1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.2 2011/03/14 17:35:45 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.3 2011/03/15 18:46:07 angelos Exp $
 
 EAPI=3
 inherit fdo-mime cmake-utils
@@ -12,6 +12,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
+KEYWORDS="~amd64 ~ppc ~x86"
 IUSE="debug"
 
 DEPEND="x11-libs/qt-gui:4[dbus]






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild
@ 2011-03-19 20:56 Christoph Mende (angelos)
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Mende (angelos) @ 2011-03-19 20:56 UTC (permalink / raw
  To: gentoo-commits

angelos     11/03/19 20:56:12

  Modified:             ChangeLog qmpdclient-1.2.1.ebuild
  Log:
  Changed category from Network to AudioVideo in the desktop file (bug #359559)
  
  (Portage version: 2.2.0_alpha28/cvs/Linux x86_64)

Revision  Changes    Path
1.78                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.78&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.78&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.77&r2=1.78

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.77
retrieving revision 1.78
diff -u -r1.77 -r1.78
--- ChangeLog	19 Mar 2011 09:55:23 -0000	1.77
+++ ChangeLog	19 Mar 2011 20:56:12 -0000	1.78
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.77 2011/03/19 09:55:23 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.78 2011/03/19 20:56:12 angelos Exp $
+
+  19 Mar 2011; Christoph Mende <angelos@gentoo.org> qmpdclient-1.2.1.ebuild:
+  Changed category from Network to AudioVideo in the desktop file (bug #359559)
 
   19 Mar 2011; Christoph Mende <angelos@gentoo.org> qmpdclient-1.2.1.ebuild,
   qmpdclient-9999.ebuild:



1.5                  media-sound/qmpdclient/qmpdclient-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.5&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.5&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?r1=1.4&r2=1.5

Index: qmpdclient-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- qmpdclient-1.2.1.ebuild	19 Mar 2011 09:55:23 -0000	1.4
+++ qmpdclient-1.2.1.ebuild	19 Mar 2011 20:56:12 -0000	1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.4 2011/03/19 09:55:23 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.5 2011/03/19 20:56:12 angelos Exp $
 
 EAPI=3
 inherit fdo-mime cmake-utils
@@ -26,6 +26,10 @@
 	DOCS="AUTHORS README THANKSTO Changelog"
 }
 
+src_prepare() {
+	sed -i -e "/^Categories/s/Network/AudioVideo/" ${PN}.desktop || die
+}
+
 src_configure() {
 	mycmakeargs=( "-DVERSION=${PV}" )
 	cmake-utils_src_configure






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild
@ 2011-03-21 11:38 Markos Chandras (hwoarang)
  0 siblings, 0 replies; 7+ messages in thread
From: Markos Chandras (hwoarang) @ 2011-03-21 11:38 UTC (permalink / raw
  To: gentoo-commits

hwoarang    11/03/21 11:38:33

  Modified:             ChangeLog qmpdclient-1.2.1.ebuild
  Log:
  Stable on amd64 wrt bug #359477
  
  (Portage version: 2.1.9.42/cvs/Linux x86_64)

Revision  Changes    Path
1.79                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.79&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.79&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.78&r2=1.79

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.78
retrieving revision 1.79
diff -u -r1.78 -r1.79
--- ChangeLog	19 Mar 2011 20:56:12 -0000	1.78
+++ ChangeLog	21 Mar 2011 11:38:33 -0000	1.79
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.78 2011/03/19 20:56:12 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.79 2011/03/21 11:38:33 hwoarang Exp $
+
+  21 Mar 2011; Markos Chandras <hwoarang@gentoo.org> qmpdclient-1.2.1.ebuild:
+  Stable on amd64 wrt bug #359477
 
   19 Mar 2011; Christoph Mende <angelos@gentoo.org> qmpdclient-1.2.1.ebuild:
   Changed category from Network to AudioVideo in the desktop file (bug #359559)



1.6                  media-sound/qmpdclient/qmpdclient-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?r1=1.5&r2=1.6

Index: qmpdclient-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- qmpdclient-1.2.1.ebuild	19 Mar 2011 20:56:12 -0000	1.5
+++ qmpdclient-1.2.1.ebuild	21 Mar 2011 11:38:33 -0000	1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.5 2011/03/19 20:56:12 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.6 2011/03/21 11:38:33 hwoarang Exp $
 
 EAPI=3
 inherit fdo-mime cmake-utils
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="debug"
 
 DEPEND="x11-libs/qt-gui:4[dbus]






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild
@ 2011-04-13 18:06 Thomas Kahle (tomka)
  0 siblings, 0 replies; 7+ messages in thread
From: Thomas Kahle (tomka) @ 2011-04-13 18:06 UTC (permalink / raw
  To: gentoo-commits

tomka       11/04/13 18:06:11

  Modified:             ChangeLog qmpdclient-1.2.1.ebuild
  Log:
  x86 stable per bug 359477
  
  (Portage version: 2.1.9.45/cvs/Linux i686)

Revision  Changes    Path
1.81                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.81&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.81&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.80&r2=1.81

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.80
retrieving revision 1.81
diff -u -r1.80 -r1.81
--- ChangeLog	29 Mar 2011 20:11:01 -0000	1.80
+++ ChangeLog	13 Apr 2011 18:06:10 -0000	1.81
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.80 2011/03/29 20:11:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.81 2011/04/13 18:06:10 tomka Exp $
+
+  13 Apr 2011; Thomas Kahle <tomka@gentoo.org> qmpdclient-1.2.1.ebuild:
+  x86 stable per bug 359477
 
   29 Mar 2011; Jeroen Roovers <jer@gentoo.org> qmpdclient-1.1.3.ebuild:
   Remove HPPA keywording (bug #359477).



1.7                  media-sound/qmpdclient/qmpdclient-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.7&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.7&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?r1=1.6&r2=1.7

Index: qmpdclient-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- qmpdclient-1.2.1.ebuild	21 Mar 2011 11:38:33 -0000	1.6
+++ qmpdclient-1.2.1.ebuild	13 Apr 2011 18:06:10 -0000	1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.6 2011/03/21 11:38:33 hwoarang Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.7 2011/04/13 18:06:10 tomka Exp $
 
 EAPI=3
 inherit fdo-mime cmake-utils
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="debug"
 
 DEPEND="x11-libs/qt-gui:4[dbus]






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild
@ 2011-05-15 14:36 Christoph Mende (angelos)
  0 siblings, 0 replies; 7+ messages in thread
From: Christoph Mende (angelos) @ 2011-05-15 14:36 UTC (permalink / raw
  To: gentoo-commits

angelos     11/05/15 14:36:21

  Modified:             ChangeLog qmpdclient-1.2.1.ebuild
  Log:
  Explicitely link against libX11 (bug #367365)
  
  (Portage version: 2.2.0_alpha33/cvs/Linux x86_64)

Revision  Changes    Path
1.85                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.85&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.85&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.84&r2=1.85

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.84
retrieving revision 1.85
diff -u -r1.84 -r1.85
--- ChangeLog	12 May 2011 12:57:51 -0000	1.84
+++ ChangeLog	15 May 2011 14:36:21 -0000	1.85
@@ -1,6 +1,10 @@
 # ChangeLog for media-sound/qmpdclient
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.84 2011/05/12 12:57:51 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.85 2011/05/15 14:36:21 angelos Exp $
+
+  15 May 2011; Christoph Mende <angelos@gentoo.org> qmpdclient-1.2.1.ebuild,
+  +files/qmpdclient-1.2.1-explicit-link.patch:
+  Explicitely link against libX11 (bug #367365)
 
   12 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> qmpdclient-9999.ebuild:
   move global variable to global scope. Declare mycmakeargs local.



1.8                  media-sound/qmpdclient/qmpdclient-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?r1=1.7&r2=1.8

Index: qmpdclient-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- qmpdclient-1.2.1.ebuild	13 Apr 2011 18:06:10 -0000	1.7
+++ qmpdclient-1.2.1.ebuild	15 May 2011 14:36:21 -0000	1.8
@@ -1,8 +1,8 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.7 2011/04/13 18:06:10 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.8 2011/05/15 14:36:21 angelos Exp $
 
-EAPI=3
+EAPI=4
 inherit fdo-mime cmake-utils
 
 DESCRIPTION="QMPDClient with NBL additions, such as lyrics' display"
@@ -22,16 +22,15 @@
 
 S=${WORKDIR}/${PN}
 
-pkg_setup() {
-	DOCS="AUTHORS README THANKSTO Changelog"
-}
+DOCS=( AUTHORS README THANKSTO Changelog )
 
 src_prepare() {
 	sed -i -e "/^Categories/s/Network/AudioVideo/" ${PN}.desktop || die
+	epatch "${FILESDIR}"/${P}-explicit-link.patch
 }
 
 src_configure() {
-	mycmakeargs=( "-DVERSION=${PV}" )
+	local mycmakeargs=( "-DVERSION=${PV}" )
 	cmake-utils_src_configure
 }
 






^ permalink raw reply	[flat|nested] 7+ messages in thread

* [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild
@ 2012-01-05 22:28 Michael Weber (xmw)
  0 siblings, 0 replies; 7+ messages in thread
From: Michael Weber (xmw) @ 2012-01-05 22:28 UTC (permalink / raw
  To: gentoo-commits

xmw         12/01/05 22:28:51

  Modified:             ChangeLog qmpdclient-1.2.1.ebuild
  Log:
  ppc stable (bug 359477)
  
  (Portage version: 2.1.10.41/cvs/Linux x86_64)

Revision  Changes    Path
1.87                 media-sound/qmpdclient/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.87&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?rev=1.87&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/ChangeLog?r1=1.86&r2=1.87

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v
retrieving revision 1.86
retrieving revision 1.87
diff -u -r1.86 -r1.87
--- ChangeLog	15 Jun 2011 19:14:44 -0000	1.86
+++ ChangeLog	5 Jan 2012 22:28:51 -0000	1.87
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/qmpdclient
-# Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.86 2011/06/15 19:14:44 angelos Exp $
+# Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/ChangeLog,v 1.87 2012/01/05 22:28:51 xmw Exp $
+
+  05 Jan 2012; Michael Weber <xmw@gentoo.org> qmpdclient-1.2.1.ebuild:
+  ppc stable (bug 359477)
 
 *qmpdclient-1.2.2 (15 Jun 2011)
 



1.9                  media-sound/qmpdclient/qmpdclient-1.2.1.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.9&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?rev=1.9&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild?r1=1.8&r2=1.9

Index: qmpdclient-1.2.1.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- qmpdclient-1.2.1.ebuild	15 May 2011 14:36:21 -0000	1.8
+++ qmpdclient-1.2.1.ebuild	5 Jan 2012 22:28:51 -0000	1.9
@@ -1,6 +1,6 @@
-# Copyright 1999-2011 Gentoo Foundation
+# Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.8 2011/05/15 14:36:21 angelos Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/qmpdclient/qmpdclient-1.2.1.ebuild,v 1.9 2012/01/05 22:28:51 xmw Exp $
 
 EAPI=4
 inherit fdo-mime cmake-utils
@@ -12,7 +12,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS=""
-KEYWORDS="amd64 ~ppc x86"
+KEYWORDS="amd64 ppc x86"
 IUSE="debug"
 
 DEPEND="x11-libs/qt-gui:4[dbus]






^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-01-05 22:29 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-03-19 20:56 [gentoo-commits] gentoo-x86 commit in media-sound/qmpdclient: ChangeLog qmpdclient-1.2.1.ebuild Christoph Mende (angelos)
  -- strict thread matches above, loose matches on Subject: below --
2012-01-05 22:28 Michael Weber (xmw)
2011-05-15 14:36 Christoph Mende (angelos)
2011-04-13 18:06 Thomas Kahle (tomka)
2011-03-21 11:38 Markos Chandras (hwoarang)
2011-03-15 18:46 Christoph Mende (angelos)
2011-02-18 14:53 Christoph Mende (angelos)

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox