public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
From: "Tomas Chvatal (scarabeus)" <scarabeus@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] gentoo-x86 commit in media-libs/phonon-vlc: phonon-vlc-0.4.0.ebuild phonon-vlc-9999.ebuild ChangeLog
Date: Mon,  9 May 2011 19:27:56 +0000 (UTC)	[thread overview]
Message-ID: <20110509192756.3691A20054@flycatcher.gentoo.org> (raw)

scarabeus    11/05/09 19:27:56

  Modified:             phonon-vlc-0.4.0.ebuild phonon-vlc-9999.ebuild
                        ChangeLog
  Log:
  Eapi4 and unify the live and release ebuild.
  
  (Portage version: 2.2.0_alpha32/cvs/Linux x86_64)

Revision  Changes    Path
1.2                  media-libs/phonon-vlc/phonon-vlc-0.4.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.4.0.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.4.0.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.4.0.ebuild?r1=1.1&r2=1.2

Index: phonon-vlc-0.4.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.4.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- phonon-vlc-0.4.0.ebuild	8 May 2011 14:27:01 -0000	1.1
+++ phonon-vlc-0.4.0.ebuild	9 May 2011 19:27:56 -0000	1.2
@@ -1,24 +1,27 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.4.0.ebuild,v 1.1 2011/05/08 14:27:01 jmbsvicetto Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-0.4.0.ebuild,v 1.2 2011/05/09 19:27:56 scarabeus Exp $
 
-EAPI="3"
+EAPI=4
 
 MY_PN="phonon-backend-vlc"
-
-inherit cmake-utils
+MY_P="${MY_PN}-${PV}"
+EGIT_REPO_URI="git://anongit.kde.org/${PN}"
+[[ ${PV} == 9999 ]] && git_eclass=git-2
+inherit cmake-utils ${git_eclass}
+unset git_eclass
 
 DESCRIPTION="Phonon VLC backend"
 HOMEPAGE="https://projects.kde.org/projects/kdesupport/phonon/phonon-vlc"
-SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/src/${MY_PN}-${PV}.tar.bz2"
+SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="~amd64 ~x86"
+[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86"
 SLOT="0"
 IUSE="debug v4l2"
 
 RDEPEND="
-	>=media-libs/phonon-4.4.4
+	>=media-libs/phonon-4.5.0
 	>=media-video/vlc-1.1.1[dbus]
 	>=x11-libs/qt-dbus-4.6.0:4
 	>=x11-libs/qt-gui-4.6.0:4
@@ -29,9 +32,9 @@
 	dev-util/pkgconfig
 "
 
-S="${WORKDIR}/${MY_PN}-${PV}"
+S=${WORKDIR}/${MY_P}
 
-DOCS=(AUTHORS)
+DOCS=( AUTHORS )
 
 src_configure() {
 	local mycmakeargs=(



1.2                  media-libs/phonon-vlc/phonon-vlc-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-9999.ebuild?rev=1.2&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-9999.ebuild?rev=1.2&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-9999.ebuild?r1=1.1&r2=1.2

Index: phonon-vlc-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-9999.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- phonon-vlc-9999.ebuild	28 Mar 2011 22:57:42 -0000	1.1
+++ phonon-vlc-9999.ebuild	9 May 2011 19:27:56 -0000	1.2
@@ -1,22 +1,27 @@
 # Copyright 1999-2011 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-9999.ebuild,v 1.1 2011/03/28 22:57:42 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/phonon-vlc-9999.ebuild,v 1.2 2011/05/09 19:27:56 scarabeus Exp $
 
-EAPI="3"
+EAPI=4
 
-inherit cmake-utils git
+MY_PN="phonon-backend-vlc"
+MY_P="${MY_PN}-${PV}"
+EGIT_REPO_URI="git://anongit.kde.org/${PN}"
+[[ ${PV} == 9999 ]] && git_eclass=git-2
+inherit cmake-utils ${git_eclass}
+unset git_eclass
 
 DESCRIPTION="Phonon VLC backend"
 HOMEPAGE="https://projects.kde.org/projects/kdesupport/phonon/phonon-vlc"
-EGIT_REPO_URI="git://anongit.kde.org/${PN}"
+[[ ${PV} == 9999 ]] || SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/src/${MY_P}.tar.bz2"
 
 LICENSE="LGPL-2.1"
-KEYWORDS=""
+[[ ${PV} == 9999 ]] || KEYWORDS="~amd64 ~x86"
 SLOT="0"
 IUSE="debug v4l2"
 
 RDEPEND="
-	>=media-libs/phonon-4.4.4
+	>=media-libs/phonon-4.5.0
 	>=media-video/vlc-1.1.1[dbus]
 	>=x11-libs/qt-dbus-4.6.0:4
 	>=x11-libs/qt-gui-4.6.0:4
@@ -27,7 +32,9 @@
 	dev-util/pkgconfig
 "
 
-DOCS=(AUTHORS)
+S=${WORKDIR}/${MY_P}
+
+DOCS=( AUTHORS )
 
 src_configure() {
 	local mycmakeargs=(



1.4                  media-libs/phonon-vlc/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/ChangeLog?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/ChangeLog?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/media-libs/phonon-vlc/ChangeLog?r1=1.3&r2=1.4

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/ChangeLog,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- ChangeLog	9 May 2011 08:21:06 -0000	1.3
+++ ChangeLog	9 May 2011 19:27:56 -0000	1.4
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/phonon-vlc
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/ChangeLog,v 1.3 2011/05/09 08:21:06 tomka Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/phonon-vlc/ChangeLog,v 1.4 2011/05/09 19:27:56 scarabeus Exp $
+
+  09 May 2011; Tomáš Chvátal <scarabeus@gentoo.org> phonon-vlc-0.4.0.ebuild,
+  phonon-vlc-9999.ebuild:
+  Eapi4 and unify the live and release ebuild.
 
   09 May 2011; Thomas Kahle <tomka@gentoo.org> phonon-vlc-0.3.2.ebuild:
   x86 stable per bug 354033






                 reply	other threads:[~2011-05-09 19:28 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20110509192756.3691A20054@flycatcher.gentoo.org \
    --to=scarabeus@gentoo.org \
    --cc=gentoo-commits@lists.gentoo.org \
    --cc=gentoo-dev@lists.gentoo.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox