public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in media-sound/picard: picard-0.11.ebuild ChangeLog
@ 2008-12-07 13:46 Santiago M. Mola (coldwind)
  0 siblings, 0 replies; 3+ messages in thread
From: Santiago M. Mola (coldwind) @ 2008-12-07 13:46 UTC (permalink / raw
  To: gentoo-commits

coldwind    08/12/07 13:46:16

  Modified:             ChangeLog
  Added:                picard-0.11.ebuild
  Log:
  Version bump, may fix bug #249650.
  (Portage version: 2.2_rc17/cvs/Linux 2.6.27-gentoo-r2 x86_64)

Revision  Changes    Path
1.17                 media-sound/picard/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.17&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.17&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog	1 Dec 2008 21:19:32 -0000	1.16
+++ ChangeLog	7 Dec 2008 13:46:15 -0000	1.17
@@ -1,6 +1,11 @@
 # ChangeLog for media-sound/picard
 # Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.16 2008/12/01 21:19:32 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.17 2008/12/07 13:46:15 coldwind Exp $
+
+*picard-0.11 (07 Dec 2008)
+
+  07 Dec 2008; Santiago M. Mola <coldwind@gentoo.org> +picard-0.11.ebuild:
+  Version bump, may fix bug #249650.
 
 *picard-0.10-r2 (01 Dec 2008)
 



1.1                  media-sound/picard/picard-0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?rev=1.1&content-type=text/plain

Index: picard-0.11.ebuild
===================================================================
# Copyright 1999-2008 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.11.ebuild,v 1.1 2008/12/07 13:46:15 coldwind Exp $

inherit distutils

MY_P="${P/_/}"
DESCRIPTION="An improved rewrite/port of the Picard Tagger using Qt"
HOMEPAGE="http://musicbrainz.org/doc/PicardQt"
SRC_URI="http://ftp.musicbrainz.org/pub/musicbrainz/picard/${MY_P}.tar.gz"

LICENSE="GPL-2"
SLOT="0"
KEYWORDS="~amd64 ~x86"
IUSE="cdaudio ffmpeg nls"

RDEPEND=">=dev-lang/python-2.4
	|| ( >=dev-lang/python-2.5 >=dev-python/ctypes-0.9 )
	>=dev-python/PyQt4-4.2
	media-libs/mutagen
	cdaudio? ( >=media-libs/libdiscid-0.1.1 )
	ffmpeg? ( media-video/ffmpeg
		>=media-libs/libofa-0.9.2 )"

DEPEND="${RDEPEND}"

DOCS="AUTHORS.txt INSTALL.txt NEWS.txt"
S=${WORKDIR}/${MY_P}

pkg_setup() {
	if ! use ffmpeg; then
		ewarn "The 'ffmpeg' USE flag is disabled. Acoustic fingerprinting and"
		ewarn "recognition will not be available."
	fi
	if ! use cdaudio; then
		ewarn "The 'cdaudio' USE flag is disabled. CD index lookup and"
		ewarn "identification will not be available. You can get audio CD support"
		ewarn "by installing media-libs/libdiscid."
	fi

	if ! built_with_use --missing true dev-lang/python cxx ; then
		eerror "Please, rebuild dev-lang/python with USE=\"cxx\"."
		die "dev-lang/python built without cxx support"
	fi
}

src_compile() {
	${python} setup.py config || die "setup.py config failed"
	if ! use ffmpeg; then
		sed -i -e "s:\(^with-avcodec\ =\ \).*:\1False:" \
			-e "s:\(^with-libofa\ =\ \).*:\1False:" \
			build.cfg || die "sed failed"
	fi
	${python} setup.py build $(use nls || echo "--disable-locales") \
		|| die "setup.py build failed"
}

src_install() {
	distutils_src_install --disable-autoupdate --skip-build \
		$(use nls || echo "--disable-locales")

	doicon picard-{16,32}.png
	domenu picard.desktop
}

pkg_postinst() {
	distutils_pkg_postinst
	echo
	ewarn "If you are upgrading Picard and it does not start"
	ewarn "try removing Picard's settings:"
	ewarn "	rm ~/.config/MusicBrainz/Picard.conf"
	elog
	elog "You should set the environment variable BROWSER to something like"
	elog "\"firefox '%s' &\" to let python know which browser to use."
}






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

* [gentoo-commits] gentoo-x86 commit in media-sound/picard: picard-0.11.ebuild ChangeLog
@ 2009-05-14 20:32 Markus Meier (maekke)
  0 siblings, 0 replies; 3+ messages in thread
From: Markus Meier (maekke) @ 2009-05-14 20:32 UTC (permalink / raw
  To: gentoo-commits

maekke      09/05/14 20:32:15

  Modified:             picard-0.11.ebuild ChangeLog
  Log:
  amd64/x86 stable, bug #269737
  (Portage version: 2.1.6.13/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-sound/picard/picard-0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?r1=1.1&r2=1.2

Index: picard-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.11.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- picard-0.11.ebuild	7 Dec 2008 13:46:15 -0000	1.1
+++ picard-0.11.ebuild	14 May 2009 20:32:15 -0000	1.2
@@ -1,6 +1,6 @@
-# Copyright 1999-2008 Gentoo Foundation
+# Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.11.ebuild,v 1.1 2008/12/07 13:46:15 coldwind Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.11.ebuild,v 1.2 2009/05/14 20:32:15 maekke Exp $
 
 inherit distutils
 
@@ -11,7 +11,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="cdaudio ffmpeg nls"
 
 RDEPEND=">=dev-lang/python-2.4



1.18                 media-sound/picard/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.18&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.18&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?r1=1.17&r2=1.18

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -r1.17 -r1.18
--- ChangeLog	7 Dec 2008 13:46:15 -0000	1.17
+++ ChangeLog	14 May 2009 20:32:15 -0000	1.18
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/picard
-# Copyright 1999-2008 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.17 2008/12/07 13:46:15 coldwind Exp $
+# Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.18 2009/05/14 20:32:15 maekke Exp $
+
+  14 May 2009; Markus Meier <maekke@gentoo.org> picard-0.11.ebuild:
+  amd64/x86 stable, bug #269737
 
 *picard-0.11 (07 Dec 2008)
 






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

* [gentoo-commits] gentoo-x86 commit in media-sound/picard: picard-0.11.ebuild ChangeLog
@ 2009-07-22 15:59 Samuli Suominen (ssuominen)
  0 siblings, 0 replies; 3+ messages in thread
From: Samuli Suominen (ssuominen) @ 2009-07-22 15:59 UTC (permalink / raw
  To: gentoo-commits

ssuominen    09/07/22 15:59:44

  Modified:             picard-0.11.ebuild ChangeLog
  Log:
  Rename USE cdaudio to USE cdda.
  (Portage version: 2.2_rc33/cvs/Linux x86_64)

Revision  Changes    Path
1.4                  media-sound/picard/picard-0.11.ebuild

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/picard-0.11.ebuild?r1=1.3&r2=1.4

Index: picard-0.11.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.11.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- picard-0.11.ebuild	6 Jun 2009 14:22:40 -0000	1.3
+++ picard-0.11.ebuild	22 Jul 2009 15:59:44 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2009 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.11.ebuild,v 1.3 2009/06/06 14:22:40 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/picard-0.11.ebuild,v 1.4 2009/07/22 15:59:44 ssuominen Exp $
 
 EAPI="2"
 inherit distutils
@@ -13,7 +13,7 @@
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="cdaudio ffmpeg nls"
+IUSE="cdda ffmpeg nls"
 
 RDEPEND="|| (
 		>=dev-lang/python-2.5
@@ -21,7 +21,7 @@
 	)
 	dev-python/PyQt4[X]
 	media-libs/mutagen
-	cdaudio? ( >=media-libs/libdiscid-0.1.1 )
+	cdda? ( >=media-libs/libdiscid-0.1.1 )
 	ffmpeg? ( media-video/ffmpeg
 		>=media-libs/libofa-0.9.2 )"
 DEPEND="${RDEPEND}"
@@ -34,8 +34,8 @@
 		ewarn "The 'ffmpeg' USE flag is disabled. Acoustic fingerprinting and"
 		ewarn "recognition will not be available."
 	fi
-	if ! use cdaudio; then
-		ewarn "The 'cdaudio' USE flag is disabled. CD index lookup and"
+	if ! use cdda; then
+		ewarn "The 'cdda' USE flag is disabled. CD index lookup and"
 		ewarn "identification will not be available. You can get audio CD support"
 		ewarn "by installing media-libs/libdiscid."
 	fi



1.20                 media-sound/picard/ChangeLog

file : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.20&view=markup
plain: http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?rev=1.20&content-type=text/plain
diff : http://sources.gentoo.org/viewcvs.py/gentoo-x86/media-sound/picard/ChangeLog?r1=1.19&r2=1.20

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v
retrieving revision 1.19
retrieving revision 1.20
diff -u -r1.19 -r1.20
--- ChangeLog	6 Jun 2009 14:22:40 -0000	1.19
+++ ChangeLog	22 Jul 2009 15:59:44 -0000	1.20
@@ -1,6 +1,9 @@
 # ChangeLog for media-sound/picard
 # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.19 2009/06/06 14:22:40 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-sound/picard/ChangeLog,v 1.20 2009/07/22 15:59:44 ssuominen Exp $
+
+  22 Jul 2009; Samuli Suominen <ssuominen@gentoo.org> picard-0.11.ebuild:
+  Rename USE cdaudio to USE cdda.
 
   06 Jun 2009; Ben de Groot <yngwin@gentoo.org> -picard-0.10-r1.ebuild,
   picard-0.11.ebuild:






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

end of thread, other threads:[~2009-07-22 15:59 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-05-14 20:32 [gentoo-commits] gentoo-x86 commit in media-sound/picard: picard-0.11.ebuild ChangeLog Markus Meier (maekke)
  -- strict thread matches above, loose matches on Subject: below --
2009-07-22 15:59 Samuli Suominen (ssuominen)
2008-12-07 13:46 Santiago M. Mola (coldwind)

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