public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2011-06-07 17:00 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2011-06-07 17:00 UTC (permalink / raw
  To: gentoo-commits

aballier    11/06/07 17:00:07

  Modified:             ChangeLog
  Added:                libva-9999.ebuild
  Log:
  add a live ebuild for the fdo version; so that people that want to play with it can, we need a few patches to be merged still
  
  (Portage version: 2.2.0_alpha38/cvs/Linux x86_64)

Revision  Changes    Path
1.19                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog	26 Apr 2011 11:34:30 -0000	1.18
+++ ChangeLog	7 Jun 2011 17:00:06 -0000	1.19
@@ -1,6 +1,12 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.18 2011/04/26 11:34:30 scarabeus Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.19 2011/06/07 17:00:06 aballier Exp $
+
+*libva-9999 (07 Jun 2011)
+
+  07 Jun 2011; Alexis Ballier <aballier@gentoo.org> +libva-9999.ebuild:
+  add a live ebuild for the fdo version; so that people that want to play with
+  it can, we need a few patches to be merged still
 
   26 Apr 2011; Tomáš Chvátal <scarabeus@gentoo.org> libva-0.32.0_p2.ebuild:
   Pdepend on xvba-video. Per bug #325033.



1.1                  x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
# Copyright 1999-2011 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.1 2011/06/07 17:00:06 aballier Exp $

EAPI="2"

SCM=""
if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
	SCM=git-2
	EGIT_BRANCH=master
	EGIT_REPO_URI="git://anongit.freedesktop.org/git/libva"
fi

inherit autotools ${SCM} multilib

DESCRIPTION="Video Acceleration (VA) API for Linux"
HOMEPAGE="http://www.freedesktop.org/wiki/Software/vaapi"
if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
	SRC_URI=""
	S="${WORKDIR}/${PN}"
else
	SRC_URI="http://cgit.freedesktop.org/libva/snapshot/${P}.tar.bz2"
fi

LICENSE="MIT"
SLOT="0"
if [ "${PV%9999}" = "${PV}" ] ; then
	KEYWORDS="~amd64 ~x86 ~amd64-linux"
else
	KEYWORDS=""
fi
IUSE="opengl"

VIDEO_CARDS="dummy nvidia intel fglrx"
for x in ${VIDEO_CARDS}; do
	IUSE+=" video_cards_${x}"
done

RDEPEND=">=x11-libs/libdrm-2.4
	video_cards_intel? ( >=x11-libs/libdrm-2.4.23[video_cards_intel] )
	video_cards_dummy? ( sys-fs/udev )
	x11-libs/libX11
	x11-libs/libXext
	x11-libs/libXfixes
	opengl? ( virtual/opengl )"

DEPEND="${RDEPEND}
	dev-util/pkgconfig"
PDEPEND="video_cards_nvidia? ( x11-libs/vdpau-video )
	video_cards_fglrx? ( x11-libs/xvba-video )"

src_prepare() {
	eautoreconf
}

src_configure() {
	econf \
		--with-drivers-path=/usr/$(get_libdir)/va/drivers \
		$(use_enable video_cards_dummy dummy-driver) \
		$(use_enable video_cards_dummy dummy-backend) \
		$(use_enable video_cards_intel i965-driver) \
		$(use_enable opengl glx)
}

src_install() {
	emake DESTDIR="${D}" install || die "make install failed"
	find "${D}" -name '*.la' -delete
}






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2011-11-04 13:04 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2011-11-04 13:04 UTC (permalink / raw
  To: gentoo-commits

aballier    11/11/04 13:04:33

  Modified:             ChangeLog libva-9999.ebuild
  Log:
  update to new repo with split out intel driver
  
  (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)

Revision  Changes    Path
1.28                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	14 Sep 2011 20:42:38 -0000	1.27
+++ ChangeLog	4 Nov 2011 13:04:33 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.27 2011/09/14 20:42:38 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.28 2011/11/04 13:04:33 aballier Exp $
+
+  04 Nov 2011; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
+  update to new repo with split out intel driver
 
   14 Sep 2011; Alexis Ballier <aballier@gentoo.org> -libva-0.32.0_p2.ebuild:
   remove old



1.3                  x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- libva-9999.ebuild	29 Jul 2011 01:10:12 -0000	1.2
+++ libva-9999.ebuild	4 Nov 2011 13:04:33 -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/x11-libs/libva/libva-9999.ebuild,v 1.2 2011/07/29 01:10:12 zmedico Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.3 2011/11/04 13:04:33 aballier Exp $
 
 EAPI="3"
 
@@ -8,7 +8,7 @@
 if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
 	SCM=git-2
 	EGIT_BRANCH=master
-	EGIT_REPO_URI="git://anongit.freedesktop.org/git/libva"
+	EGIT_REPO_URI="git://anongit.freedesktop.org/vaapi/libva"
 fi
 
 inherit autotools ${SCM} multilib
@@ -19,7 +19,7 @@
 	SRC_URI=""
 	S="${WORKDIR}/${PN}"
 else
-	SRC_URI="http://cgit.freedesktop.org/libva/snapshot/${P}.tar.bz2"
+	SRC_URI="http://cgit.freedesktop.org/vaapi/libva/snapshot/${P}.tar.bz2"
 fi
 
 LICENSE="MIT"
@@ -37,7 +37,6 @@
 done
 
 RDEPEND=">=x11-libs/libdrm-2.4
-	video_cards_intel? ( >=x11-libs/libdrm-2.4.23[video_cards_intel] )
 	video_cards_dummy? ( sys-fs/udev )
 	x11-libs/libX11
 	x11-libs/libXext
@@ -47,7 +46,9 @@
 DEPEND="${RDEPEND}
 	dev-util/pkgconfig"
 PDEPEND="video_cards_nvidia? ( x11-libs/vdpau-video )
-	video_cards_fglrx? ( x11-libs/xvba-video )"
+	video_cards_fglrx? ( x11-libs/xvba-video )
+	video_cards_intel? ( x11-libs/libva-intel-driver )
+	"
 
 src_prepare() {
 	eautoreconf
@@ -58,7 +59,6 @@
 		--with-drivers-path="${EPREFIX}/usr/$(get_libdir)/va/drivers" \
 		$(use_enable video_cards_dummy dummy-driver) \
 		$(use_enable video_cards_dummy dummy-backend) \
-		$(use_enable video_cards_intel i965-driver) \
 		$(use_enable opengl glx)
 }
 






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2011-11-04 13:21 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2011-11-04 13:21 UTC (permalink / raw
  To: gentoo-commits

aballier    11/11/04 13:21:22

  Modified:             ChangeLog libva-9999.ebuild
  Log:
  dodoc NEWS and cosmetics
  
  (Portage version: 2.2.0_alpha72/cvs/Linux x86_64)

Revision  Changes    Path
1.30                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.29
retrieving revision 1.30
diff -u -r1.29 -r1.30
--- ChangeLog	4 Nov 2011 13:10:56 -0000	1.29
+++ ChangeLog	4 Nov 2011 13:21:22 -0000	1.30
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2011 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.29 2011/11/04 13:10:56 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.30 2011/11/04 13:21:22 aballier Exp $
+
+  04 Nov 2011; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
+  dodoc NEWS and cosmetics
 
   04 Nov 2011; Alexis Ballier <aballier@gentoo.org> metadata.xml:
   Emil has been moved to co-maintainer of libva-intel-driver



1.4                  x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- libva-9999.ebuild	4 Nov 2011 13:04:33 -0000	1.3
+++ libva-9999.ebuild	4 Nov 2011 13:21:22 -0000	1.4
@@ -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/x11-libs/libva/libva-9999.ebuild,v 1.3 2011/11/04 13:04:33 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.4 2011/11/04 13:21:22 aballier Exp $
 
 EAPI="3"
 
@@ -63,6 +63,7 @@
 }
 
 src_install() {
-	emake DESTDIR="${D}" install || die "make install failed"
+	emake DESTDIR="${D}" install || die
+	dodoc NEWS || die
 	find "${D}" -name '*.la' -delete
 }






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

* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2012-10-11 11:44 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2012-10-11 11:44 UTC (permalink / raw
  To: gentoo-commits

aballier    12/10/11 11:44:08

  Modified:             ChangeLog libva-9999.ebuild
  Log:
  dummy backend is no more
  
  (Portage version: 2.2.0_alpha137/cvs/Linux x86_64)

Revision  Changes    Path
1.39                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog	16 Aug 2012 13:14:05 -0000	1.38
+++ ChangeLog	11 Oct 2012 11:44:08 -0000	1.39
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.38 2012/08/16 13:14:05 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.39 2012/10/11 11:44:08 aballier Exp $
+
+  11 Oct 2012; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
+  dummy backend is no more
 
 *libva-1.0.16 (16 Aug 2012)
 



1.8                  x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- libva-9999.ebuild	8 Jun 2012 15:33:00 -0000	1.7
+++ libva-9999.ebuild	11 Oct 2012 11:44:08 -0000	1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.7 2012/06/08 15:33:00 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.8 2012/10/11 11:44:08 aballier Exp $
 
 EAPI="3"
 
@@ -37,7 +37,6 @@
 done
 
 RDEPEND=">=x11-libs/libdrm-2.4
-	video_cards_dummy? ( sys-fs/udev )
 	x11-libs/libX11
 	x11-libs/libXext
 	x11-libs/libXfixes
@@ -59,7 +58,6 @@
 	econf \
 		--with-drivers-path="${EPREFIX}/usr/$(get_libdir)/va/drivers" \
 		$(use_enable video_cards_dummy dummy-driver) \
-		$(use_enable video_cards_dummy dummy-backend) \
 		$(use_enable opengl glx) \
 		$(use_enable egl)
 }





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2012-10-11 11:54 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2012-10-11 11:54 UTC (permalink / raw
  To: gentoo-commits

aballier    12/10/11 11:54:42

  Modified:             ChangeLog libva-9999.ebuild
  Log:
  add X useflag
  
  (Portage version: 2.2.0_alpha137/cvs/Linux x86_64)

Revision  Changes    Path
1.40                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.39
retrieving revision 1.40
diff -u -r1.39 -r1.40
--- ChangeLog	11 Oct 2012 11:44:08 -0000	1.39
+++ ChangeLog	11 Oct 2012 11:54:42 -0000	1.40
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2012 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.39 2012/10/11 11:44:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.40 2012/10/11 11:54:42 aballier Exp $
+
+  11 Oct 2012; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
+  add X useflag
 
   11 Oct 2012; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
   dummy backend is no more



1.9                  x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libva-9999.ebuild	11 Oct 2012 11:44:08 -0000	1.8
+++ libva-9999.ebuild	11 Oct 2012 11:54:42 -0000	1.9
@@ -1,8 +1,8 @@
 # Copyright 1999-2012 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.8 2012/10/11 11:44:08 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.9 2012/10/11 11:54:42 aballier Exp $
 
-EAPI="3"
+EAPI=4
 
 SCM=""
 if [ "${PV%9999}" != "${PV}" ] ; then # Live ebuild
@@ -29,7 +29,7 @@
 else
 	KEYWORDS=""
 fi
-IUSE="egl opengl"
+IUSE="egl opengl X"
 
 VIDEO_CARDS="dummy nvidia intel fglrx"
 for x in ${VIDEO_CARDS}; do
@@ -37,9 +37,11 @@
 done
 
 RDEPEND=">=x11-libs/libdrm-2.4
-	x11-libs/libX11
-	x11-libs/libXext
-	x11-libs/libXfixes
+	X? (
+		x11-libs/libX11
+		x11-libs/libXext
+		x11-libs/libXfixes
+	)
 	egl? ( media-libs/mesa[egl] )
 	opengl? ( virtual/opengl )"
 
@@ -50,6 +52,8 @@
 	video_cards_intel? ( >=x11-libs/libva-intel-driver-1.0.18 )
 	"
 
+REQUIRED_USE="opengl? ( X )"
+
 src_prepare() {
 	eautoreconf
 }
@@ -59,6 +63,7 @@
 		--with-drivers-path="${EPREFIX}/usr/$(get_libdir)/va/drivers" \
 		$(use_enable video_cards_dummy dummy-driver) \
 		$(use_enable opengl glx) \
+		$(use_enable X x11) \
 		$(use_enable egl)
 }
 





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2013-02-14 19:08 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2013-02-14 19:08 UTC (permalink / raw
  To: gentoo-commits

aballier    13/02/14 19:08:52

  Modified:             ChangeLog libva-9999.ebuild
  Log:
  upstream master needs wayland-1
  
  (Portage version: 2.2.0_alpha163/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.48                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog	14 Feb 2013 19:07:35 -0000	1.47
+++ ChangeLog	14 Feb 2013 19:08:51 -0000	1.48
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.47 2013/02/14 19:07:35 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.48 2013/02/14 19:08:51 aballier Exp $
+
+  14 Feb 2013; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
+  upstream master needs wayland-1
 
   14 Feb 2013; Alexis Ballier <aballier@gentoo.org> libva-1.1.0.ebuild,
   +files/libva-1.1.0-wayland1.patch:



1.13                 x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- libva-9999.ebuild	21 Nov 2012 18:13:30 -0000	1.12
+++ libva-9999.ebuild	14 Feb 2013 19:08:51 -0000	1.13
@@ -1,6 +1,6 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.12 2012/11/21 18:13:30 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.13 2013/02/14 19:08:51 aballier Exp $
 
 EAPI=4
 
@@ -44,7 +44,7 @@
 	)
 	egl? ( media-libs/mesa[egl] )
 	opengl? ( virtual/opengl )
-	wayland? ( >=dev-libs/wayland-0.95.0 )"
+	wayland? ( >=dev-libs/wayland-1 )"
 
 DEPEND="${RDEPEND}
 	virtual/pkgconfig"





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2013-03-26 16:29 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2013-03-26 16:29 UTC (permalink / raw
  To: gentoo-commits

aballier    13/03/26 16:29:25

  Modified:             ChangeLog libva-9999.ebuild
  Log:
  update SRC_URI
  
  (Portage version: 2.2.0_alpha169/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.49                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog	14 Feb 2013 19:08:51 -0000	1.48
+++ ChangeLog	26 Mar 2013 16:29:25 -0000	1.49
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.48 2013/02/14 19:08:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.49 2013/03/26 16:29:25 aballier Exp $
+
+  26 Mar 2013; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
+  update SRC_URI
 
   14 Feb 2013; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
   upstream master needs wayland-1



1.14                 x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v
retrieving revision 1.13
retrieving revision 1.14
diff -u -r1.13 -r1.14
--- libva-9999.ebuild	14 Feb 2013 19:08:51 -0000	1.13
+++ libva-9999.ebuild	26 Mar 2013 16:29:25 -0000	1.14
@@ -1,6 +1,6 @@
 # Copyright 1999-2013 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.13 2013/02/14 19:08:51 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.14 2013/03/26 16:29:25 aballier Exp $
 
 EAPI=4
 
@@ -19,7 +19,7 @@
 	SRC_URI=""
 	S="${WORKDIR}/${PN}"
 else
-	SRC_URI="http://cgit.freedesktop.org/vaapi/libva/snapshot/${P}.tar.bz2"
+	SRC_URI="http://www.freedesktop.org/software/vaapi/releases/libva/${P}.tar.bz2"
 fi
 
 LICENSE="MIT"





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild
@ 2014-11-03 10:25 Alexis Ballier (aballier)
  0 siblings, 0 replies; 8+ messages in thread
From: Alexis Ballier (aballier) @ 2014-11-03 10:25 UTC (permalink / raw
  To: gentoo-commits

aballier    14/11/03 10:25:21

  Modified:             ChangeLog libva-9999.ebuild
  Log:
  drop patch on live ebuild, it was merged upstream. not sure why this was even applied to live ebuild but oh well..., bug #526610
  
  Signed-off-by: aballier@gentoo.org
  (Portage version: 2.2.14/cvs/Linux x86_64, signed Manifest commit with key 160F534A)

Revision  Changes    Path
1.64                 x11-libs/libva/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v
retrieving revision 1.63
retrieving revision 1.64
diff -u -r1.63 -r1.64
--- ChangeLog	27 Oct 2014 11:03:15 -0000	1.63
+++ ChangeLog	3 Nov 2014 10:25:21 -0000	1.64
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/libva
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.63 2014/10/27 11:03:15 aballier Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/ChangeLog,v 1.64 2014/11/03 10:25:21 aballier Exp $
+
+  03 Nov 2014; Alexis Ballier <aballier@gentoo.org> libva-9999.ebuild:
+  drop patch on live ebuild, it was merged upstream. not sure why this was even
+  applied to live ebuild but oh well..., bug #526610
 
 *libva-1.4.1 (27 Oct 2014)
 



1.22                 x11-libs/libva/libva-9999.ebuild

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

Index: libva-9999.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v
retrieving revision 1.21
retrieving revision 1.22
diff -u -r1.21 -r1.22
--- libva-9999.ebuild	18 Jun 2014 21:02:06 -0000	1.21
+++ libva-9999.ebuild	3 Nov 2014 10:25:21 -0000	1.22
@@ -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/libva/libva-9999.ebuild,v 1.21 2014/06/18 21:02:06 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libva/libva-9999.ebuild,v 1.22 2014/11/03 10:25:21 aballier Exp $
 
 EAPI=5
 
@@ -58,7 +58,6 @@
 
 REQUIRED_USE="opengl? ( X )"
 
-PATCHES=( "${FILESDIR}/${PN}-1.2.0-autotools-out-of-source-build.patch" )
 DOCS=( NEWS )
 
 MULTILIB_WRAPPED_HEADERS=(





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

end of thread, other threads:[~2014-11-03 10:25 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-02-14 19:08 [gentoo-commits] gentoo-x86 commit in x11-libs/libva: ChangeLog libva-9999.ebuild Alexis Ballier (aballier)
  -- strict thread matches above, loose matches on Subject: below --
2014-11-03 10:25 Alexis Ballier (aballier)
2013-03-26 16:29 Alexis Ballier (aballier)
2012-10-11 11:54 Alexis Ballier (aballier)
2012-10-11 11:44 Alexis Ballier (aballier)
2011-11-04 13:21 Alexis Ballier (aballier)
2011-11-04 13:04 Alexis Ballier (aballier)
2011-06-07 17:00 Alexis Ballier (aballier)

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