public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/xvba-video: xvba-video-9999.ebuild xvba-video-0.8.0-r2.ebuild ChangeLog
@ 2014-02-01 15:24 Ian Stakenvicius (axs)
  0 siblings, 0 replies; 2+ messages in thread
From: Ian Stakenvicius (axs) @ 2014-02-01 15:24 UTC (permalink / raw
  To: gentoo-commits

axs         14/02/01 15:24:53

  Modified:             xvba-video-9999.ebuild ChangeLog
  Added:                xvba-video-0.8.0-r2.ebuild
  Log:
  revbump ebuilds to support multilib-build, changes reviewed by aballier
  
  (Portage version: 2.2.7/cvs/Linux x86_64, signed Manifest commit with key 2B6559ED)

Revision  Changes    Path
1.8                  x11-libs/xvba-video/xvba-video-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?rev=1.8&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?rev=1.8&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?r1=1.7&r2=1.8

Index: xvba-video-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- xvba-video-9999.ebuild	5 Sep 2013 19:44:48 -0000	1.7
+++ xvba-video-9999.ebuild	1 Feb 2014 15:24:53 -0000	1.8
@@ -1,13 +1,14 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v 1.7 2013/09/05 19:44:48 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v 1.8 2014/02/01 15:24:53 axs Exp $
 
 EAPI=5
 
 EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/xvba-driver"
 [[ ${PV} = 9999 ]] && inherit git-2
 PYTHON_COMPAT=( python{2_6,2_7} )
-inherit eutils autotools python-any-r1
+AUTOTOOLS_AUTORECONF="yes"
+inherit eutils autotools-multilib python-any-r1
 
 DESCRIPTION="XVBA Backend for Video Acceleration (VA) API"
 HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
@@ -21,35 +22,27 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="debug opengl"
 
-RDEPEND="
-	x11-libs/libva[X(+),opengl?]
-	x11-libs/libvdpau
-	x11-drivers/ati-drivers
-"
+RDEPEND="x11-libs/libva[X(+),opengl?,${MULTILIB_USEDEP}]
+	x11-libs/libvdpau[${MULTILIB_USEDEP}]
+	x11-drivers/ati-drivers"
 DEPEND="${DEPEND}
 	${PYTHON_DEPS}
 	virtual/pkgconfig"
 
 DOCS=( NEWS README AUTHORS )
+PATCHES=(
+	"${FILESDIR}"/${PN}-fix-mesa-gl.h.patch
+	"${FILESDIR}"/${PN}-fix-out-of-source-builds.patch
+)
 
 pkg_setup() {
 	python-any-r1_pkg_setup
 }
 
-src_prepare() {
-	epatch \
-		"${FILESDIR}"/${PN}-fix-mesa-gl.h.patch
-
-	eautoreconf
-}
-
-src_configure() {
-	econf \
-		$(use_enable debug) \
+multilib_src_configure() {
+	local myeconfargs=(
+		$(use_enable debug)
 		$(use_enable opengl glx)
-}
-
-src_install() {
-	default
-	prune_libtool_files --all
+	)
+	autotools-utils_src_configure
 }



1.16                 x11-libs/xvba-video/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?rev=1.16&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?rev=1.16&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?r1=1.15&r2=1.16

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- ChangeLog	5 Sep 2013 19:44:48 -0000	1.15
+++ ChangeLog	1 Feb 2014 15:24:53 -0000	1.16
@@ -1,6 +1,13 @@
 # ChangeLog for x11-libs/xvba-video
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v 1.15 2013/09/05 19:44:48 mgorny Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v 1.16 2014/02/01 15:24:53 axs Exp $
+
+*xvba-video-0.8.0-r2 (01 Feb 2014)
+
+  01 Feb 2014; Ian Stakenvicius (_AxS_) <axs@gentoo.org>
+  +files/xvba-video-fix-out-of-source-builds.patch, +xvba-video-0.8.0-r2.ebuild,
+  xvba-video-9999.ebuild:
+  revbump ebuilds to support multilib-build, changes reviewed by aballier
 
   05 Sep 2013; Michał Górny <mgorny@gentoo.org> xvba-video-0.8.0-r1.ebuild,
   xvba-video-9999.ebuild:



1.1                  x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild?rev=1.1&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild?rev=1.1&content-type=text/plain

Index: xvba-video-0.8.0-r2.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild,v 1.1 2014/02/01 15:24:53 axs Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/xvba-driver"
[[ ${PV} = 9999 ]] && inherit git-2
PYTHON_COMPAT=( python{2_6,2_7} )
AUTOTOOLS_AUTORECONF="yes"
inherit eutils autotools-multilib python-any-r1

DESCRIPTION="XVBA Backend for Video Acceleration (VA) API"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
SRC_URI="http://dev.gentooexperimental.org/~scarabeus/xvba-driver-${PV}.tar.bz2"
# No source release yet, the src_uri is theoretical at best right now
#[[ ${PV} = 9999 ]] || SRC_URI="http://www.freedesktop.org/software/vaapi/releases/${PN}/${P}.tar.bz2"

LICENSE="GPL-2+ MIT"
SLOT="0"
# newline is needed for broken ekeyword
[[ ${PV} = 9999 ]] || \
KEYWORDS="~amd64 ~x86"
IUSE="debug opengl"

RDEPEND="x11-libs/libva[X(+),opengl?,${MULTILIB_USEDEP}]
	x11-libs/libvdpau[${MULTILIB_USEDEP}]
	x11-drivers/ati-drivers"
DEPEND="${DEPEND}
	${PYTHON_DEPS}
	virtual/pkgconfig"

DOCS=( NEWS README AUTHORS )
PATCHES=(
	"${FILESDIR}"/${PN}-fix-mesa-gl.h.patch
	"${FILESDIR}"/${PN}-fix-out-of-source-builds.patch
)

S="${WORKDIR}/xvba-driver-${PV}"

pkg_setup() {
	python-any-r1_pkg_setup
}

multilib_src_configure() {
	local myeconfargs=(
		$(use_enable debug)
		$(use_enable opengl glx)
	)
	autotools-utils_src_configure
}





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/xvba-video: xvba-video-9999.ebuild xvba-video-0.8.0-r2.ebuild ChangeLog
@ 2014-06-18 21:16 Michal Gorny (mgorny)
  0 siblings, 0 replies; 2+ messages in thread
From: Michal Gorny (mgorny) @ 2014-06-18 21:16 UTC (permalink / raw
  To: gentoo-commits

mgorny      14/06/18 21:16:07

  Modified:             xvba-video-9999.ebuild xvba-video-0.8.0-r2.ebuild
                        ChangeLog
  Log:
  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug #513718.
  
  (Portage version: 2.2.10/cvs/Linux x86_64, signed Manifest commit with key EFB4464E!)

Revision  Changes    Path
1.10                 x11-libs/xvba-video/xvba-video-9999.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?rev=1.10&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?rev=1.10&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild?r1=1.9&r2=1.10

Index: xvba-video-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- xvba-video-9999.ebuild	10 Feb 2014 21:35:45 -0000	1.9
+++ xvba-video-9999.ebuild	18 Jun 2014 21:16:07 -0000	1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v 1.9 2014/02/10 21:35:45 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-9999.ebuild,v 1.10 2014/06/18 21:16:07 mgorny Exp $
 
 EAPI=5
 
@@ -22,8 +22,8 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="debug opengl"
 
-RDEPEND="x11-libs/libva[X(+),opengl?,${MULTILIB_USEDEP}]
-	x11-libs/libvdpau[${MULTILIB_USEDEP}]
+RDEPEND=">=x11-libs/libva-1.2.1-r1[X(+),opengl?,${MULTILIB_USEDEP}]
+	>=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}]
 	x11-drivers/ati-drivers"
 DEPEND="${DEPEND}
 	${PYTHON_DEPS}



1.4                  x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild?rev=1.4&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild?rev=1.4&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild?r1=1.3&r2=1.4

Index: xvba-video-0.8.0-r2.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- xvba-video-0.8.0-r2.ebuild	3 Mar 2014 18:05:15 -0000	1.3
+++ xvba-video-0.8.0-r2.ebuild	18 Jun 2014 21:16:07 -0000	1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2014 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild,v 1.3 2014/03/03 18:05:15 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/xvba-video-0.8.0-r2.ebuild,v 1.4 2014/06/18 21:16:07 mgorny Exp $
 
 EAPI=5
 
@@ -23,8 +23,8 @@
 KEYWORDS="~amd64 ~x86"
 IUSE="debug opengl"
 
-RDEPEND="x11-libs/libva[X(+),opengl?,${MULTILIB_USEDEP}]
-	x11-libs/libvdpau[${MULTILIB_USEDEP}]"
+RDEPEND=">=x11-libs/libva-1.2.1-r1[X(+),opengl?,${MULTILIB_USEDEP}]
+	>=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}]"
 DEPEND="${DEPEND}
 	${PYTHON_DEPS}
 	virtual/pkgconfig



1.19                 x11-libs/xvba-video/ChangeLog

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?rev=1.19&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?rev=1.19&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/xvba-video/ChangeLog?r1=1.18&r2=1.19

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	3 Mar 2014 18:05:15 -0000	1.18
+++ ChangeLog	18 Jun 2014 21:16:07 -0000	1.19
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/xvba-video
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v 1.18 2014/03/03 18:05:15 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/xvba-video/ChangeLog,v 1.19 2014/06/18 21:16:07 mgorny Exp $
+
+  18 Jun 2014; Michał Górny <mgorny@gentoo.org> xvba-video-0.8.0-r2.ebuild,
+  xvba-video-9999.ebuild:
+  Update dependencies to require guaranteed EAPI=5 or multilib ebuilds, bug
+  #513718.
 
   03 Mar 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
   +files/xvba-video-0.8.0-VAEncH264VUIBufferType.patch,





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

end of thread, other threads:[~2014-06-18 21:16 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-02-01 15:24 [gentoo-commits] gentoo-x86 commit in x11-libs/xvba-video: xvba-video-9999.ebuild xvba-video-0.8.0-r2.ebuild ChangeLog Ian Stakenvicius (axs)
  -- strict thread matches above, loose matches on Subject: below --
2014-06-18 21:16 Michal Gorny (mgorny)

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