public inbox for gentoo-commits@lists.gentoo.org
 help / color / mirror / Atom feed
* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-01-26 17:12 Chi-Thanh Christopher Nguyen (chithanh)
  0 siblings, 0 replies; 10+ messages in thread
From: Chi-Thanh Christopher Nguyen (chithanh) @ 2014-01-26 17:12 UTC (permalink / raw
  To: gentoo-commits

chithanh    14/01/26 17:12:32

  Modified:             ChangeLog
  Added:                glamor-0.6.0.ebuild
  Log:
  Version bump.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.26                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- ChangeLog	25 Nov 2013 08:56:25 -0000	1.25
+++ ChangeLog	26 Jan 2014 17:12:32 -0000	1.26
@@ -1,6 +1,12 @@
 # ChangeLog for x11-libs/glamor
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.25 2013/11/25 08:56:25 chithanh Exp $
+# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.26 2014/01/26 17:12:32 chithanh Exp $
+
+*glamor-0.6.0 (26 Jan 2014)
+
+  26 Jan 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+  +glamor-0.6.0.ebuild:
+  Version bump.
 
 *glamor-0.5.1-r1 (25 Nov 2013)
 



1.1                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
# Copyright 1999-2014 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.1 2014/01/26 17:12:32 chithanh Exp $

EAPI=5

XORG_DRI=always
XORG_EAUTORECONF=yes
XORG_MODULE=driver/
XORG_MODULE_REBUILD=yes
S=${WORKDIR}/${PN}-egl-${PV}

inherit xorg-2 toolchain-funcs

DESCRIPTION="OpenGL based 2D rendering acceleration library"
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"

KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
IUSE="gles xv"

RDEPEND=">=x11-base/xorg-server-1.10
	media-libs/mesa[egl,gbm]
	gles? (
		|| ( media-libs/mesa[gles2] media-libs/mesa[gles] )
	)
	>=x11-libs/pixman-0.21.8"
DEPEND="${RDEPEND}"

src_configure() {
	XORG_CONFIGURE_OPTIONS=(
		$(use_enable gles glamor-gles2)
		$(use_enable xv)
	)
	xorg-2_src_configure
}

src_prepare() {
	sed -i 's/inst_LTLIBRARIES/lib_LTLIBRARIES/' src/Makefile.am || die
	xorg-2_src_prepare
	# fail to load grafic driver with hardened compiler #488906
	if gcc-specs-now ; then
		append-ldflags -Wl,-z,lazy
	fi
}





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-02-11 12:08 Chi-Thanh Christopher Nguyen (chithanh)
  0 siblings, 0 replies; 10+ messages in thread
From: Chi-Thanh Christopher Nguyen (chithanh) @ 2014-02-11 12:08 UTC (permalink / raw
  To: gentoo-commits

chithanh    14/02/11 12:08:24

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  fix xv build against pre 1.13 servers, bug #499442.
  
  (Portage version: 2.2.7/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.2                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- glamor-0.6.0.ebuild	26 Jan 2014 17:12:32 -0000	1.1
+++ glamor-0.6.0.ebuild	11 Feb 2014 12:08:24 -0000	1.2
@@ -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/glamor/glamor-0.6.0.ebuild,v 1.1 2014/01/26 17:12:32 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.2 2014/02/11 12:08:24 chithanh Exp $
 
 EAPI=5
 
@@ -26,6 +26,10 @@
 	>=x11-libs/pixman-0.21.8"
 DEPEND="${RDEPEND}"
 
+PATCHES=(
+	"${FILESDIR}"/${P}-xv-add-missing-include.patch
+)
+
 src_configure() {
 	XORG_CONFIGURE_OPTIONS=(
 		$(use_enable gles glamor-gles2)



1.27                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- ChangeLog	26 Jan 2014 17:12:32 -0000	1.26
+++ ChangeLog	11 Feb 2014 12:08:24 -0000	1.27
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.26 2014/01/26 17:12:32 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.27 2014/02/11 12:08:24 chithanh Exp $
+
+  11 Feb 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+  +files/glamor-0.6.0-xv-add-missing-include.patch, glamor-0.6.0.ebuild:
+  fix xv build against pre 1.13 servers, bug #499442.
 
 *glamor-0.6.0 (26 Jan 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-03-27 11:06 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-03-27 11:06 UTC (permalink / raw
  To: gentoo-commits

ago         14/03/27 11:06:45

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Stable for amd64, wrt bug #500368
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --include-arches="amd64", signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.3                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- glamor-0.6.0.ebuild	11 Feb 2014 12:08:24 -0000	1.2
+++ glamor-0.6.0.ebuild	27 Mar 2014 11:06:45 -0000	1.3
@@ -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/glamor/glamor-0.6.0.ebuild,v 1.2 2014/02/11 12:08:24 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.3 2014/03/27 11:06:45 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
 
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="gles xv"
 
 RDEPEND=">=x11-base/xorg-server-1.10



1.28                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog	11 Feb 2014 12:08:24 -0000	1.27
+++ ChangeLog	27 Mar 2014 11:06:45 -0000	1.28
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.27 2014/02/11 12:08:24 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.28 2014/03/27 11:06:45 ago Exp $
+
+  27 Mar 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
+  Stable for amd64, wrt bug #500368
 
   11 Feb 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
   +files/glamor-0.6.0-xv-add-missing-include.patch, glamor-0.6.0.ebuild:





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-03-27 21:27 Chi-Thanh Christopher Nguyen (chithanh)
  0 siblings, 0 replies; 10+ messages in thread
From: Chi-Thanh Christopher Nguyen (chithanh) @ 2014-03-27 21:27 UTC (permalink / raw
  To: gentoo-commits

chithanh    14/03/27 21:27:03

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Work around parallel install failure, bug #488124.
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, unsigned Manifest commit)

Revision  Changes    Path
1.4                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- glamor-0.6.0.ebuild	27 Mar 2014 11:06:45 -0000	1.3
+++ glamor-0.6.0.ebuild	27 Mar 2014 21:27:03 -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/glamor/glamor-0.6.0.ebuild,v 1.3 2014/03/27 11:06:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.4 2014/03/27 21:27:03 chithanh Exp $
 
 EAPI=5
 
@@ -10,7 +10,7 @@
 XORG_MODULE_REBUILD=yes
 S=${WORKDIR}/${PN}-egl-${PV}
 
-inherit xorg-2 toolchain-funcs
+inherit autotools-utils xorg-2 toolchain-funcs
 
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
@@ -46,3 +46,8 @@
 		append-ldflags -Wl,-z,lazy
 	fi
 }
+
+src_install() {
+	# workaround parallel install failure, bug #488124.
+	autotools-utils_src_install -j1
+}



1.29                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog	27 Mar 2014 11:06:45 -0000	1.28
+++ ChangeLog	27 Mar 2014 21:27:03 -0000	1.29
@@ -1,6 +1,10 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.28 2014/03/27 11:06:45 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.29 2014/03/27 21:27:03 chithanh Exp $
+
+  27 Mar 2014; Chí-Thanh Christopher Nguyễn <chithanh@gentoo.org>
+  glamor-0.6.0.ebuild:
+  Work around parallel install failure, bug #488124.
 
   27 Mar 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
   Stable for amd64, wrt bug #500368





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-04-06 10:11 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-06 10:11 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/06 10:11:34

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Stable for x86, wrt bug #500368
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.5                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- glamor-0.6.0.ebuild	27 Mar 2014 21:27:03 -0000	1.4
+++ glamor-0.6.0.ebuild	6 Apr 2014 10:11:34 -0000	1.5
@@ -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/glamor/glamor-0.6.0.ebuild,v 1.4 2014/03/27 21:27:03 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.5 2014/04/06 10:11:34 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
 
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="gles xv"
 
 RDEPEND=">=x11-base/xorg-server-1.10



1.31                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- ChangeLog	30 Mar 2014 19:05:43 -0000	1.30
+++ ChangeLog	6 Apr 2014 10:11:34 -0000	1.31
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.30 2014/03/30 19:05:43 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.31 2014/04/06 10:11:34 ago Exp $
+
+  06 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
+  Stable for x86, wrt bug #500368
 
 *glamor-0.6.0-r1 (30 Mar 2014)
 





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-04-08 20:03 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-08 20:03 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/08 20:03:40

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Stable for ppc, wrt bug #500368
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.6                  x11-libs/glamor/glamor-0.6.0.ebuild

file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild?rev=1.6&view=markup
plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild?rev=1.6&content-type=text/plain
diff : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild?r1=1.5&r2=1.6

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- glamor-0.6.0.ebuild	6 Apr 2014 10:11:34 -0000	1.5
+++ glamor-0.6.0.ebuild	8 Apr 2014 20:03:40 -0000	1.6
@@ -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/glamor/glamor-0.6.0.ebuild,v 1.5 2014/04/06 10:11:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.6 2014/04/08 20:03:40 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
 
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86"
 IUSE="gles xv"
 
 RDEPEND=">=x11-base/xorg-server-1.10



1.32                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- ChangeLog	6 Apr 2014 10:11:34 -0000	1.31
+++ ChangeLog	8 Apr 2014 20:03:40 -0000	1.32
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.31 2014/04/06 10:11:34 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.32 2014/04/08 20:03:40 ago Exp $
+
+  08 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
+  Stable for ppc, wrt bug #500368
 
   06 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
   Stable for x86, wrt bug #500368





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-04-16  7:44 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-16  7:44 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/16 07:44:22

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Stable for ppc64, wrt bug #500368
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.7                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- glamor-0.6.0.ebuild	8 Apr 2014 20:03:40 -0000	1.6
+++ glamor-0.6.0.ebuild	16 Apr 2014 07:44:22 -0000	1.7
@@ -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/glamor/glamor-0.6.0.ebuild,v 1.6 2014/04/08 20:03:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.7 2014/04/16 07:44:22 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
 
-KEYWORDS="~alpha amd64 ~ia64 ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86"
 IUSE="gles xv"
 
 RDEPEND=">=x11-base/xorg-server-1.10



1.33                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.32
retrieving revision 1.33
diff -u -r1.32 -r1.33
--- ChangeLog	8 Apr 2014 20:03:40 -0000	1.32
+++ ChangeLog	16 Apr 2014 07:44:22 -0000	1.33
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.32 2014/04/08 20:03:40 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.33 2014/04/16 07:44:22 ago Exp $
+
+  16 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
+  Stable for ppc64, wrt bug #500368
 
   08 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
   Stable for ppc, wrt bug #500368





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-04-17  7:52 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-17  7:52 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/17 07:52:00

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Stable for ia64, wrt bug #500368
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.8                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- glamor-0.6.0.ebuild	16 Apr 2014 07:44:22 -0000	1.7
+++ glamor-0.6.0.ebuild	17 Apr 2014 07:52:00 -0000	1.8
@@ -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/glamor/glamor-0.6.0.ebuild,v 1.7 2014/04/16 07:44:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.8 2014/04/17 07:52:00 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
 
-KEYWORDS="~alpha amd64 ~ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ia64 ppc ppc64 ~sparc x86"
 IUSE="gles xv"
 
 RDEPEND=">=x11-base/xorg-server-1.10



1.34                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.33
retrieving revision 1.34
diff -u -r1.33 -r1.34
--- ChangeLog	16 Apr 2014 07:44:22 -0000	1.33
+++ ChangeLog	17 Apr 2014 07:52:00 -0000	1.34
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.33 2014/04/16 07:44:22 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.34 2014/04/17 07:52:00 ago Exp $
+
+  17 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
+  Stable for ia64, wrt bug #500368
 
   16 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
   Stable for ppc64, wrt bug #500368





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-04-18 13:58 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-18 13:58 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/18 13:58:53

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Stable for alpha, wrt bug #500368
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.9                  x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- glamor-0.6.0.ebuild	17 Apr 2014 07:52:00 -0000	1.8
+++ glamor-0.6.0.ebuild	18 Apr 2014 13:58:53 -0000	1.9
@@ -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/glamor/glamor-0.6.0.ebuild,v 1.8 2014/04/17 07:52:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.9 2014/04/18 13:58:53 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
 
-KEYWORDS="~alpha amd64 ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 ~sparc x86"
 IUSE="gles xv"
 
 RDEPEND=">=x11-base/xorg-server-1.10



1.35                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog	17 Apr 2014 07:52:00 -0000	1.34
+++ ChangeLog	18 Apr 2014 13:58:53 -0000	1.35
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.34 2014/04/17 07:52:00 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.35 2014/04/18 13:58:53 ago Exp $
+
+  18 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
+  Stable for alpha, wrt bug #500368
 
   17 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
   Stable for ia64, wrt bug #500368





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

* [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog
@ 2014-04-19 17:47 Agostino Sarubbo (ago)
  0 siblings, 0 replies; 10+ messages in thread
From: Agostino Sarubbo (ago) @ 2014-04-19 17:47 UTC (permalink / raw
  To: gentoo-commits

ago         14/04/19 17:47:34

  Modified:             glamor-0.6.0.ebuild ChangeLog
  Log:
  Stable for sparc, wrt bug #500368
  
  (Portage version: 2.2.8-r1/cvs/Linux x86_64, RepoMan options: --force, signed Manifest commit with key 7194459F)

Revision  Changes    Path
1.10                 x11-libs/glamor/glamor-0.6.0.ebuild

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

Index: glamor-0.6.0.ebuild
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- glamor-0.6.0.ebuild	18 Apr 2014 13:58:53 -0000	1.9
+++ glamor-0.6.0.ebuild	19 Apr 2014 17:47:34 -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/glamor/glamor-0.6.0.ebuild,v 1.9 2014/04/18 13:58:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/glamor-0.6.0.ebuild,v 1.10 2014/04/19 17:47:34 ago Exp $
 
 EAPI=5
 
@@ -15,7 +15,7 @@
 DESCRIPTION="OpenGL based 2D rendering acceleration library"
 SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/${XORG_MODULE}${PN}-egl-${PV}.tar.bz2"
 
-KEYWORDS="alpha amd64 ia64 ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86"
 IUSE="gles xv"
 
 RDEPEND=">=x11-base/xorg-server-1.10



1.36                 x11-libs/glamor/ChangeLog

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

Index: ChangeLog
===================================================================
RCS file: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog	18 Apr 2014 13:58:53 -0000	1.35
+++ ChangeLog	19 Apr 2014 17:47:34 -0000	1.36
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/glamor
 # Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.35 2014/04/18 13:58:53 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/glamor/ChangeLog,v 1.36 2014/04/19 17:47:34 ago Exp $
+
+  19 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
+  Stable for sparc, wrt bug #500368
 
   18 Apr 2014; Agostino Sarubbo <ago@gentoo.org> glamor-0.6.0.ebuild:
   Stable for alpha, wrt bug #500368





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

end of thread, other threads:[~2014-04-19 17:47 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-04-06 10:11 [gentoo-commits] gentoo-x86 commit in x11-libs/glamor: glamor-0.6.0.ebuild ChangeLog Agostino Sarubbo (ago)
  -- strict thread matches above, loose matches on Subject: below --
2014-04-19 17:47 Agostino Sarubbo (ago)
2014-04-18 13:58 Agostino Sarubbo (ago)
2014-04-17  7:52 Agostino Sarubbo (ago)
2014-04-16  7:44 Agostino Sarubbo (ago)
2014-04-08 20:03 Agostino Sarubbo (ago)
2014-03-27 21:27 Chi-Thanh Christopher Nguyen (chithanh)
2014-03-27 11:06 Agostino Sarubbo (ago)
2014-02-11 12:08 Chi-Thanh Christopher Nguyen (chithanh)
2014-01-26 17:12 Chi-Thanh Christopher Nguyen (chithanh)

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