[gentoo-commits] gentoo commit in src/patchsets/gentoo-headers/4.12: 00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch 00_all_0002-netfilter-pull-in-limits.h.patch 00_all_0003-convert-PAGE_SIZE-u

2017-09-10 Thread Matt Turner (mattst88)
mattst8817/09/10 23:55:29

  Added:   
00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch
00_all_0002-netfilter-pull-in-limits.h.patch
00_all_0003-convert-PAGE_SIZE-usage.patch

00_all_0004-asm-generic-fcntl.h-namespace-kernel-file-structs.patch
00_all_0005-unifdef-drop-unused-errno.h-include.patch

00_all_0006-x86-do-not-build-relocs-tool-when-installing-headers.patch

00_all_0007-netlink-drop-int-cast-on-length-arg-in-NLMSG_OK.patch
00_all_0008-uapi-fix-System-V-buf-header-includes.patch
  Log:
  Add initial 4.12 and 4.13 patch sets; same as 4.11 patch set

Revision  ChangesPath
1.1  
src/patchsets/gentoo-headers/4.12/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.12/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.12/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch?rev=1.1&content-type=text/plain

Index: 00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch
===
>From f495b0039472488f9171b2407f72c1b09db113ae Mon Sep 17 00:00:00 2001
From: Mike Frysinger 
Date: Mon, 29 Dec 2008 06:52:59 -0500
Subject: [PATCH] linux/stat.h: remove __GLIBC__ checks

Only check __KERNEL__ so we don't assume the C library is glibc.

Signed-off-by: Mike Frysinger 
---
 include/uapi/linux/stat.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/uapi/linux/stat.h b/include/uapi/linux/stat.h
index 7fec7e36d921..256ad24c64a8 100644
--- a/include/uapi/linux/stat.h
+++ b/include/uapi/linux/stat.h
@@ -2,7 +2,7 @@
 #define _UAPI_LINUX_STAT_H
 
 
-#if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)
+#if defined(__KERNEL__)
 
 #define S_IFMT  0017
 #define S_IFSOCK 014
-- 
2.11.1




1.1  
src/patchsets/gentoo-headers/4.12/00_all_0002-netfilter-pull-in-limits.h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.12/00_all_0002-netfilter-pull-in-limits.h.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.12/00_all_0002-netfilter-pull-in-limits.h.patch?rev=1.1&content-type=text/plain

Index: 00_all_0002-netfilter-pull-in-limits.h.patch
===
>From 96c4838cd56a312321d6f4964bdd069b0014f219 Mon Sep 17 00:00:00 2001
From: Mike Frysinger 
Date: Sat, 9 May 2009 17:30:35 -0400
Subject: [PATCH] netfilter: pull in limits.h

A few netfilter sub-headers use INT_MAX which is in limits.h.

URL: http://bugs.gentoo.org/246160
Signed-off-by: Mike Frysinger 
---
 include/uapi/linux/netfilter.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/uapi/linux/netfilter.h b/include/uapi/linux/netfilter.h
index 7550e9176a54..443554f678a3 100644
--- a/include/uapi/linux/netfilter.h
+++ b/include/uapi/linux/netfilter.h
@@ -6,6 +6,7 @@
 #include 
 #include 
 #include 
+#include 
 
 /* Responses from hook functions. */
 #define NF_DROP 0
-- 
2.11.1




1.1  
src/patchsets/gentoo-headers/4.12/00_all_0003-convert-PAGE_SIZE-usage.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.12/00_all_0003-convert-PAGE_SIZE-usage.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.12/00_all_0003-convert-PAGE_SIZE-usage.patch?rev=1.1&content-type=text/plain

Index: 00_all_0003-convert-PAGE_SIZE-usage.patch
===
>From 526be191ee08800aebf550d02c864f09f02b882e Mon Sep 17 00:00:00 2001
From: Mike Frysinger 
Date: Sat, 13 Feb 2010 03:09:23 -0500
Subject: [PATCH] convert PAGE_SIZE usage

The size of a page may change at runtime or based on kernel settings, so
a static value at compile time doesn't work.  More importantly, no one
exports PAGE_SIZE to user space anymore.

URL: http://bugs.gentoo.org/301431
Signed-off-by: Mike Frysinger 
---
 include/uapi/linux/binfmts.h  | 3 ++-
 include/uapi/linux/resource.h | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/include/uapi/linux/binfmts.h b/include/uapi/linux/binfmts.h
index 4eb5972867c0..516bfcf62f64 100644
--- a/include/uapi/linux/binfmts.h
+++ b/include/uapi/linux/binfmts.h
@@ -1,6 +1,7 @@
 #ifndef _UAPI_LINUX_BINFMTS_H
 #define _UAPI_LINUX_BINFMTS_H
 
+#include 
 #include 
 
 struct pt_regs;
@@ -11,7 +12,7 @@ struct pt_regs;
  * prevent the kernel from being unduly impacted by misaddressed pointers.
  * MAX_ARG_STRINGS is chosen to fit in a signed 32-bit integer.
  */
-#define MAX_ARG_STRLEN (PAGE_SIZE * 32)
+#define MAX_AR

[gentoo-commits] gentoo commit in src/patchsets/gentoo-headers/4.13: 00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch 00_all_0002-netfilter-pull-in-limits.h.patch 00_all_0003-convert-PAGE_SIZE-u

2017-09-10 Thread Matt Turner (mattst88)
mattst8817/09/10 23:55:29

  Added:   
00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch
00_all_0002-netfilter-pull-in-limits.h.patch
00_all_0003-convert-PAGE_SIZE-usage.patch

00_all_0004-asm-generic-fcntl.h-namespace-kernel-file-structs.patch
00_all_0005-unifdef-drop-unused-errno.h-include.patch

00_all_0006-x86-do-not-build-relocs-tool-when-installing-headers.patch

00_all_0007-netlink-drop-int-cast-on-length-arg-in-NLMSG_OK.patch
00_all_0008-uapi-fix-System-V-buf-header-includes.patch
  Log:
  Add initial 4.12 and 4.13 patch sets; same as 4.11 patch set

Revision  ChangesPath
1.1  
src/patchsets/gentoo-headers/4.13/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.13/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.13/00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch?rev=1.1&content-type=text/plain

Index: 00_all_0001-linux-stat.h-remove-__GLIBC__-checks.patch
===
>From f495b0039472488f9171b2407f72c1b09db113ae Mon Sep 17 00:00:00 2001
From: Mike Frysinger 
Date: Mon, 29 Dec 2008 06:52:59 -0500
Subject: [PATCH] linux/stat.h: remove __GLIBC__ checks

Only check __KERNEL__ so we don't assume the C library is glibc.

Signed-off-by: Mike Frysinger 
---
 include/uapi/linux/stat.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/uapi/linux/stat.h b/include/uapi/linux/stat.h
index 7fec7e36d921..256ad24c64a8 100644
--- a/include/uapi/linux/stat.h
+++ b/include/uapi/linux/stat.h
@@ -2,7 +2,7 @@
 #define _UAPI_LINUX_STAT_H
 
 
-#if defined(__KERNEL__) || !defined(__GLIBC__) || (__GLIBC__ < 2)
+#if defined(__KERNEL__)
 
 #define S_IFMT  0017
 #define S_IFSOCK 014
-- 
2.11.1




1.1  
src/patchsets/gentoo-headers/4.13/00_all_0002-netfilter-pull-in-limits.h.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.13/00_all_0002-netfilter-pull-in-limits.h.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.13/00_all_0002-netfilter-pull-in-limits.h.patch?rev=1.1&content-type=text/plain

Index: 00_all_0002-netfilter-pull-in-limits.h.patch
===
>From 96c4838cd56a312321d6f4964bdd069b0014f219 Mon Sep 17 00:00:00 2001
From: Mike Frysinger 
Date: Sat, 9 May 2009 17:30:35 -0400
Subject: [PATCH] netfilter: pull in limits.h

A few netfilter sub-headers use INT_MAX which is in limits.h.

URL: http://bugs.gentoo.org/246160
Signed-off-by: Mike Frysinger 
---
 include/uapi/linux/netfilter.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/uapi/linux/netfilter.h b/include/uapi/linux/netfilter.h
index 7550e9176a54..443554f678a3 100644
--- a/include/uapi/linux/netfilter.h
+++ b/include/uapi/linux/netfilter.h
@@ -6,6 +6,7 @@
 #include 
 #include 
 #include 
+#include 
 
 /* Responses from hook functions. */
 #define NF_DROP 0
-- 
2.11.1




1.1  
src/patchsets/gentoo-headers/4.13/00_all_0003-convert-PAGE_SIZE-usage.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.13/00_all_0003-convert-PAGE_SIZE-usage.patch?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/4.13/00_all_0003-convert-PAGE_SIZE-usage.patch?rev=1.1&content-type=text/plain

Index: 00_all_0003-convert-PAGE_SIZE-usage.patch
===
>From 526be191ee08800aebf550d02c864f09f02b882e Mon Sep 17 00:00:00 2001
From: Mike Frysinger 
Date: Sat, 13 Feb 2010 03:09:23 -0500
Subject: [PATCH] convert PAGE_SIZE usage

The size of a page may change at runtime or based on kernel settings, so
a static value at compile time doesn't work.  More importantly, no one
exports PAGE_SIZE to user space anymore.

URL: http://bugs.gentoo.org/301431
Signed-off-by: Mike Frysinger 
---
 include/uapi/linux/binfmts.h  | 3 ++-
 include/uapi/linux/resource.h | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/include/uapi/linux/binfmts.h b/include/uapi/linux/binfmts.h
index 4eb5972867c0..516bfcf62f64 100644
--- a/include/uapi/linux/binfmts.h
+++ b/include/uapi/linux/binfmts.h
@@ -1,6 +1,7 @@
 #ifndef _UAPI_LINUX_BINFMTS_H
 #define _UAPI_LINUX_BINFMTS_H
 
+#include 
 #include 
 
 struct pt_regs;
@@ -11,7 +12,7 @@ struct pt_regs;
  * prevent the kernel from being unduly impacted by misaddressed pointers.
  * MAX_ARG_STRINGS is chosen to fit in a signed 32-bit integer.
  */
-#define MAX_ARG_STRLEN (PAGE_SIZE * 32)
+#define MAX_AR

[gentoo-commits] gentoo commit in src/patchsets/gentoo-headers: rip-headers.sh

2017-09-10 Thread Matt Turner (mattst88)
mattst8817/09/10 23:54:57

  Modified: rip-headers.sh
  Log:
  Update rip-headers.sh to handle kernels >= 4.12
  
  Upstream kernel commit fcc8487d477a3452a1d0ccbdd4c5e0e1e3cb8bed ("uapi: export
  all headers under uapi directories") removed include/Kbuild and the Kbuild
  files from most directories within include/, thus breaking rip-headers.sh.
  
  I have modified rip-headers.sh to simply rip all of include/ if it cannot find
  the Kbuild files. This increase the size of gentoo-headers-base-*.tar.xz from
  ~4M to ~8M, but that's still significantly better than the size of the whole
  kernel.

Revision  ChangesPath
1.16 src/patchsets/gentoo-headers/rip-headers.sh

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/rip-headers.sh?rev=1.16&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/rip-headers.sh?rev=1.16&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/rip-headers.sh?r1=1.15&r2=1.16

Index: rip-headers.sh
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gentoo-headers/rip-headers.sh,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- rip-headers.sh  2 Aug 2016 15:22:58 -   1.15
+++ rip-headers.sh  10 Sep 2017 23:54:57 -  1.16
@@ -28,8 +28,13 @@
 mkdir ${dst}
 cp ${src}/Makefile ${dst}/
 mkdir ${dst}/include
-cp ${src}/include/Kbuild ${dst}/include/
-cp -r $(find ${src}/include -mindepth 2 -maxdepth 2 -name 'Kbuild*' -printf 
%h' ') ${dst}/include/
+[ -f ${src}/include/Kbuild ] && cp ${src}/include/Kbuild ${dst}/include/
+directories=$(find ${src}/include -mindepth 2 -maxdepth 2 -name 'Kbuild*' 
-printf %h' ')
+if [ -n "${directories}" ] ; then
+   cp -r ${directories} ${dst}/include/
+else
+   cp -r ${src}/include/* ${dst}/include
+fi
 mkdir ${dst}/scripts
 cp -r \
${src}/scripts/{Makefile,Kbuild}* \






[gentoo-commits] gentoo commit in src/patchsets/gentoo-headers/4.13: - New directory

2017-09-10 Thread Matt Turner (mattst88)
mattst8817/09/10 23:52:33

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gentoo-headers/4.13 added to the 
repository



[gentoo-commits] gentoo commit in src/patchsets/gentoo-headers/4.12: - New directory

2017-09-10 Thread Matt Turner (mattst88)
mattst8817/09/10 23:52:18

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/gentoo-headers/4.12 added to the 
repository



[gentoo-commits] gentoo commit in src/patchsets/gentoo-headers: testing.txt

2017-09-10 Thread Matt Turner (mattst88)
mattst8817/09/10 23:51:18

  Modified: testing.txt
  Log:
  Fix category of net-vpn/ipsec-tools and resort list

Revision  ChangesPath
1.9  src/patchsets/gentoo-headers/testing.txt

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/testing.txt?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/testing.txt?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/gentoo-headers/testing.txt?r1=1.8&r2=1.9

Index: testing.txt
===
RCS file: /var/cvsroot/gentoo/src/patchsets/gentoo-headers/testing.txt,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- testing.txt 14 Nov 2016 20:04:06 -  1.8
+++ testing.txt 10 Sep 2017 23:51:18 -  1.9
@@ -44,7 +44,6 @@
 net-dialup/linux-atm
 net-dialup/ppp
 net-dialup/rp-pppoe
-net-firewall/ipsec-tools
 net-firewall/iptables
 net-misc/bridge-utils
 net-misc/dahdi-tools
@@ -53,6 +52,7 @@
 net-misc/lksctp-tools
 net-misc/socat
 net-proxy/shadowsocks-libev
+net-vpn/ipsec-tools
 net-wireless/iw
 net-wireless/wireless-tools
 net-wireless/wpa_supplicant
@@ -72,8 +72,8 @@
 sys-fs/fuse
 sys-fs/udev
 sys-libs/efivar
-sys-libs/libcap
 sys-libs/gpm
+sys-libs/libcap
 sys-process/audit
 sys-process/criu
 sys-process/lsof






[gentoo-commits] gentoo-x86 commit in x11-libs/libdrm: ChangeLog libdrm-2.4.60.ebuild

2015-07-30 Thread Matt Turner (mattst88)
mattst8815/07/30 22:22:56

  Modified: ChangeLog
  Removed:  libdrm-2.4.60.ebuild
  Log:
  Drop 2.4.60, bug 556270.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.289x11-libs/libdrm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v
retrieving revision 1.288
retrieving revision 1.289
diff -u -r1.288 -r1.289
--- ChangeLog   2 Jul 2015 00:32:21 -   1.288
+++ ChangeLog   30 Jul 2015 22:22:56 -  1.289
@@ -1,6 +1,9 @@
 # ChangeLog for x11-libs/libdrm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.288 
2015/07/02 00:32:21 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.289 
2015/07/30 22:22:56 mattst88 Exp $
+
+  30 Jul 2015; Matt Turner  -libdrm-2.4.60.ebuild:
+  Drop 2.4.60, bug 556270.
 
 *libdrm-2.4.62 (02 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: ChangeLog mesa-10.5.4.ebuild mesa-10.5.6.ebuild mesa-10.5.5.ebuild

2015-07-01 Thread Matt Turner (mattst88)
mattst8815/07/02 01:10:56

  Modified: ChangeLog
  Removed:  mesa-10.5.4.ebuild mesa-10.5.6.ebuild
mesa-10.5.5.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.646media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.645
retrieving revision 1.646
diff -u -r1.645 -r1.646
--- ChangeLog   2 Jul 2015 00:58:46 -   1.645
+++ ChangeLog   2 Jul 2015 01:10:56 -   1.646
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.645 
2015/07/02 00:58:46 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.646 
2015/07/02 01:10:56 mattst88 Exp $
+
+  02 Jul 2015; Matt Turner  -mesa-10.5.4.ebuild,
+  -mesa-10.5.5.ebuild, -mesa-10.5.6.ebuild:
+  Drop old.
 
 *mesa-10.6.1 (02 Jul 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.6.1.ebuild ChangeLog

2015-07-01 Thread Matt Turner (mattst88)
mattst8815/07/02 00:58:46

  Modified: ChangeLog
  Added:mesa-10.6.1.ebuild
  Log:
  Version bump to 10.6.1.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.645media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.644
retrieving revision 1.645
diff -u -r1.644 -r1.645
--- ChangeLog   2 Jul 2015 00:47:27 -   1.644
+++ ChangeLog   2 Jul 2015 00:58:46 -   1.645
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.644 
2015/07/02 00:47:27 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.645 
2015/07/02 00:58:46 mattst88 Exp $
+
+*mesa-10.6.1 (02 Jul 2015)
+
+  02 Jul 2015; Matt Turner  +mesa-10.6.1.ebuild:
+  Version bump to 10.6.1.
 
 *mesa-10.5.8 (02 Jul 2015)
 



1.1  media-libs/mesa/mesa-10.6.1.ebuild

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

Index: mesa-10.6.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.6.1.ebuild,v 1.1 
2015/07/02 00:58:46 mattst88 Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"

if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi

PYTHON_COMPAT=( python2_7 )

inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}

OPENGL_DIR="xorg-x11"

MY_P="${P/_/-}"
FOLDER="${PV/_rc*/}"

DESCRIPTION="OpenGL-like graphic library for Linux"
HOMEPAGE="http://mesa3d.sourceforge.net/";

if [[ $PV == * ]]; then
SRC_URI=""
else
SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz";
fi

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!bindist? ( bindist )"

INTEL_CARDS="i915 i965 ilo intel"
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+nptl opencl osmesa pax_kernel openmax pic selinux +udev vaapi vdpau
wayland xvmc xa kernel_FreeBSD"

REQUIRED_USE="
d3d9?   ( dri3 gallium )
llvm?   ( gallium )
opencl? ( gallium llvm )
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
vaapi? ( gallium )
vdpau? ( gallium )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
video_cards_intel?  ( classic )
video_cards_i915?   ( || ( classic gallium ) )
video_cards_i965?   ( classic )
video_cards_ilo?( gallium )
video_cards_nouveau? ( || ( classic gallium ) )
video_cards_radeon? ( || ( classic gallium ) )
video_cards_r100?   ( classic )
video_cards_r200?   ( classic )
video_cards_r300?   ( gallium llvm )
video_cards_r600?   ( gallium )
video_cards_radeonsi?   ( gallium llvm )
video_cards_vmware? ( gallium )
${PYTHON_REQUIRED_USE}
"

LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.60"
# keep correct libdrm and dri2proto dep
# keep blocks in rdepend for binpkg
RDEPEND="
!=app-eselect/eselect-opengl-1.3.0
udev? ( kernel_linux? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] ) )
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
gbm? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
dri3? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
>=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libXxf86vm-1.1.3:=[${MULTILIB_USEDEP}]
>=x11-libs/libxcb-1.9.3:=[${MULTILI

[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.5.8.ebuild ChangeLog

2015-07-01 Thread Matt Turner (mattst88)
mattst8815/07/02 00:47:27

  Modified: ChangeLog
  Added:mesa-10.5.8.ebuild
  Log:
  Version bump to 10.5.8.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.644media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.643
retrieving revision 1.644
diff -u -r1.643 -r1.644
--- ChangeLog   13 Jun 2015 23:25:22 -  1.643
+++ ChangeLog   2 Jul 2015 00:47:27 -   1.644
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.643 
2015/06/13 23:25:22 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.644 
2015/07/02 00:47:27 mattst88 Exp $
+
+*mesa-10.5.8 (02 Jul 2015)
+
+  02 Jul 2015; Matt Turner  +mesa-10.5.8.ebuild:
+  Version bump to 10.5.8.
 
   13 Jun 2015; Chí-Thanh Christopher Nguyễn 
   mesa-10.3.7-r1.ebuild:



1.1  media-libs/mesa/mesa-10.5.8.ebuild

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

Index: mesa-10.5.8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.8.ebuild,v 1.1 
2015/07/02 00:47:27 mattst88 Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"

if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi

PYTHON_COMPAT=( python2_7 )

inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}

OPENGL_DIR="xorg-x11"

MY_P="${P/_/-}"
FOLDER="${PV/_rc*/}"

DESCRIPTION="OpenGL-like graphic library for Linux"
HOMEPAGE="http://mesa3d.sourceforge.net/";

if [[ $PV == * ]]; then
SRC_URI=""
else
SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz";
fi

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!bindist? ( bindist )"

INTEL_CARDS="i915 i965 ilo intel"
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+nptl opencl osmesa pax_kernel openmax pic selinux +udev vaapi vdpau
wayland xvmc xa kernel_FreeBSD"

REQUIRED_USE="
d3d9?   ( dri3 gallium )
llvm?   ( gallium )
opencl? ( gallium llvm )
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
vaapi? ( gallium )
vdpau? ( gallium )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
video_cards_intel?  ( classic )
video_cards_i915?   ( || ( classic gallium ) )
video_cards_i965?   ( classic )
video_cards_ilo?( gallium )
video_cards_nouveau? ( || ( classic gallium ) )
video_cards_radeon? ( || ( classic gallium ) )
video_cards_r100?   ( classic )
video_cards_r200?   ( classic )
video_cards_r300?   ( gallium llvm )
video_cards_r600?   ( gallium )
video_cards_radeonsi?   ( gallium llvm )
video_cards_vmware? ( gallium )
${PYTHON_REQUIRED_USE}
"

LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.57"
# keep correct libdrm and dri2proto dep
# keep blocks in rdepend for binpkg
RDEPEND="
!=app-eselect/eselect-opengl-1.3.0
udev? ( kernel_linux? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] ) )
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
gbm? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
dri3? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
>=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libXxf86vm-1.1.3:=[${MULTILIB_USEDEP}]
 

[gentoo-commits] gentoo-x86 commit in x11-libs/libdrm: libdrm-2.4.62.ebuild ChangeLog

2015-07-01 Thread Matt Turner (mattst88)
mattst8815/07/02 00:32:21

  Modified: ChangeLog
  Added:libdrm-2.4.62.ebuild
  Log:
  Version bump to 2.4.62. Makes progress on bug #544596.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.288x11-libs/libdrm/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v
retrieving revision 1.287
retrieving revision 1.288
diff -u -r1.287 -r1.288
--- ChangeLog   24 Mar 2015 18:32:39 -  1.287
+++ ChangeLog   2 Jul 2015 00:32:21 -   1.288
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/libdrm
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.287 
2015/03/24 18:32:39 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/ChangeLog,v 1.288 
2015/07/02 00:32:21 mattst88 Exp $
+
+*libdrm-2.4.62 (02 Jul 2015)
+
+  02 Jul 2015; Matt Turner  +libdrm-2.4.62.ebuild:
+  Version bump to 2.4.62. Makes progress on bug #544596.
 
 *libdrm-2.4.60 (24 Mar 2015)
 



1.1  x11-libs/libdrm/libdrm-2.4.62.ebuild

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

Index: libdrm-2.4.62.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libdrm/libdrm-2.4.62.ebuild,v 1.1 
2015/07/02 00:32:21 mattst88 Exp $

EAPI=5

XORG_MULTILIB=yes
inherit xorg-2

DESCRIPTION="X.Org libdrm library"
HOMEPAGE="http://dri.freedesktop.org/";
if [[ ${PV} = * ]]; then
EGIT_REPO_URI="git://anongit.freedesktop.org/git/mesa/drm"
else
SRC_URI="http://dri.freedesktop.org/${PN}/${P}.tar.bz2";
fi

KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux"
VIDEO_CARDS="exynos freedreno intel nouveau omap radeon tegra vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS} libkms valgrind"
RESTRICT="test" # see bug #236845

RDEPEND=">=dev-libs/libpthread-stubs-0.3-r1:=[${MULTILIB_USEDEP}]
video_cards_intel? ( 
>=x11-libs/libpciaccess-0.13.1-r1:=[${MULTILIB_USEDEP}] )
abi_x86_32? ( !app-emulation/emul-linux-x86-opengl[-abi_x86_32(-)] )"
DEPEND="${RDEPEND}
valgrind? ( dev-util/valgrind )"

src_prepare() {
if [[ ${PV} = * ]]; then
# tests are restricted, no point in building them
sed -ie 's/tests //' "${S}"/Makefile.am
fi
xorg-2_src_prepare
}

src_configure() {
XORG_CONFIGURE_OPTIONS=(
# Udev is only used by tests now.
--disable-udev
--disable-cairo-tests
$(use_enable video_cards_exynos exynos-experimental-api)
$(use_enable video_cards_freedreno freedreno)
$(use_enable video_cards_intel intel)
$(use_enable video_cards_nouveau nouveau)
$(use_enable video_cards_omap omap-experimental-api)
$(use_enable video_cards_radeon radeon)
$(use_enable video_cards_tegra tegra-experimental-api)
$(use_enable video_cards_vmware vmwgfx)
$(use_enable libkms)
# valgrind installs its .pc file to the pkgconfig for the 
primary arch
--enable-valgrind=$(usex valgrind auto no)
)

xorg-2_src_configure
}






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-LeakTrace: Test-LeakTrace-0.150.0.ebuild ChangeLog

2015-06-03 Thread Matt Turner (mattst88)
mattst8815/06/03 22:33:23

  Modified: Test-LeakTrace-0.150.0.ebuild ChangeLog
  Log:
  added ~mips, bug 551116.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild?r1=1.2&r2=1.3

Index: Test-LeakTrace-0.150.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Test-LeakTrace-0.150.0.ebuild   3 Jun 2015 22:30:24 -   1.2
+++ Test-LeakTrace-0.150.0.ebuild   3 Jun 2015 22:33:23 -   1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild,v 
1.2 2015/06/03 22:30:24 mattst88 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild,v 
1.3 2015/06/03 22:33:23 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION='Traces memory leaks'
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~x86"
 IUSE=""
 
 SRC_TEST="do"



1.8  dev-perl/Test-LeakTrace/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog?r1=1.7&r2=1.8

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- ChangeLog   3 Jun 2015 22:30:24 -   1.7
+++ ChangeLog   3 Jun 2015 22:33:23 -   1.8
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Test-LeakTrace
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog,v 1.7 
2015/06/03 22:30:24 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog,v 1.8 
2015/06/03 22:33:23 mattst88 Exp $
+
+  03 Jun 2015; Matt Turner  Test-LeakTrace-0.150.0.ebuild:
+  added ~mips, bug 551116.
 
   03 Jun 2015; Matt Turner  Test-LeakTrace-0.150.0.ebuild:
   added ~alpha, bug 551116.






[gentoo-commits] gentoo-x86 commit in dev-perl/Test-LeakTrace: Test-LeakTrace-0.150.0.ebuild ChangeLog

2015-06-03 Thread Matt Turner (mattst88)
mattst8815/06/03 22:30:24

  Modified: Test-LeakTrace-0.150.0.ebuild ChangeLog
  Log:
  added ~alpha, bug 551116.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.2  dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild?r1=1.1&r2=1.2

Index: Test-LeakTrace-0.150.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- Test-LeakTrace-0.150.0.ebuild   4 Mar 2015 21:29:31 -   1.1
+++ Test-LeakTrace-0.150.0.ebuild   3 Jun 2015 22:30:24 -   1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild,v 
1.1 2015/03/04 21:29:31 monsieurp Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/Test-LeakTrace-0.150.0.ebuild,v 
1.2 2015/06/03 22:30:24 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION='Traces memory leaks'
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~x86"
 IUSE=""
 
 SRC_TEST="do"



1.7  dev-perl/Test-LeakTrace/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog?r1=1.6&r2=1.7

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   4 Mar 2015 21:29:31 -   1.6
+++ ChangeLog   3 Jun 2015 22:30:24 -   1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Test-LeakTrace
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog,v 1.6 
2015/03/04 21:29:31 monsieurp Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Test-LeakTrace/ChangeLog,v 1.7 
2015/06/03 22:30:24 mattst88 Exp $
+
+  03 Jun 2015; Matt Turner  Test-LeakTrace-0.150.0.ebuild:
+  added ~alpha, bug 551116.
 
 *Test-LeakTrace-0.150.0 (04 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-apps/kmod: kmod-20.ebuild ChangeLog

2015-06-03 Thread Matt Turner (mattst88)
mattst8815/06/03 18:54:39

  Modified: kmod-20.ebuild ChangeLog
  Log:
  alpha stable, bug 547502
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.10 sys-apps/kmod/kmod-20.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-20.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-20.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/kmod-20.ebuild?r1=1.9&r2=1.10

Index: kmod-20.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-20.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- kmod-20.ebuild  13 May 2015 09:50:02 -  1.9
+++ kmod-20.ebuild  3 Jun 2015 18:54:39 -   1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-20.ebuild,v 1.9 
2015/05/13 09:50:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/kmod-20.ebuild,v 1.10 
2015/06/03 18:54:39 mattst88 Exp $
 
 EAPI=5
 
@@ -13,7 +13,7 @@
inherit autotools git-2
 else
SRC_URI="mirror://kernel/linux/utils/kernel/kmod/${P}.tar.xz"
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 
~sh sparc x86"
inherit libtool
 fi
 



1.198sys-apps/kmod/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.198&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?rev=1.198&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-apps/kmod/ChangeLog?r1=1.197&r2=1.198

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v
retrieving revision 1.197
retrieving revision 1.198
diff -u -r1.197 -r1.198
--- ChangeLog   13 May 2015 09:50:02 -  1.197
+++ ChangeLog   3 Jun 2015 18:54:39 -   1.198
@@ -1,6 +1,9 @@
 # ChangeLog for sys-apps/kmod
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL
-# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.197 2015/05/13 
09:50:02 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-apps/kmod/ChangeLog,v 1.198 2015/06/03 
18:54:39 mattst88 Exp $
+
+  03 Jun 2015; Matt Turner  kmod-20.ebuild:
+  alpha stable, bug 547502
 
   13 May 2015; Anthony G. Basile  kmod-20.ebuild:
   Stable for arm.  Bug #547502.






[gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.9.0.ebuild ChangeLog

2015-06-03 Thread Matt Turner (mattst88)
mattst8815/06/03 18:51:12

  Modified: dhcpcd-6.9.0.ebuild ChangeLog
  Log:
  alpha stable, bug 551010.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.4  net-misc/dhcpcd/dhcpcd-6.9.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild?r1=1.3&r2=1.4

Index: dhcpcd-6.9.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- dhcpcd-6.9.0.ebuild 3 Jun 2015 07:35:22 -   1.3
+++ dhcpcd-6.9.0.ebuild 3 Jun 2015 18:51:12 -   1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.3 
2015/06/03 07:35:22 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.9.0.ebuild,v 1.4 
2015/06/03 18:51:12 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
MY_P="${MY_P/_beta/-beta}"
MY_P="${MY_P/_rc/-rc}"
SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2";
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+   KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
S="${WORKDIR}/${MY_P}"
 fi
 



1.460net-misc/dhcpcd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.460&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.460&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.459&r2=1.460

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.459
retrieving revision 1.460
diff -u -r1.459 -r1.460
--- ChangeLog   3 Jun 2015 07:35:22 -   1.459
+++ ChangeLog   3 Jun 2015 18:51:12 -   1.460
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.459 
2015/06/03 07:35:22 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.460 
2015/06/03 18:51:12 mattst88 Exp $
+
+  03 Jun 2015; Matt Turner  dhcpcd-6.9.0.ebuild:
+  alpha stable, bug 551010.
 
   03 Jun 2015; Mikle Kolyada  dhcpcd-6.9.0.ebuild:
   x86 stable wrt bug #551010






[gentoo-commits] gentoo-x86 commit in dev-libs/json-c: json-c-0.12.ebuild ChangeLog

2015-05-26 Thread Matt Turner (mattst88)
mattst8815/05/27 04:11:13

  Modified: json-c-0.12.ebuild ChangeLog
  Log:
  Added ~mips.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  dev-libs/json-c/json-c-0.12.ebuild

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

Index: json-c-0.12.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.12.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- json-c-0.12.ebuild  30 Nov 2014 11:34:16 -  1.2
+++ json-c-0.12.ebuild  27 May 2015 04:11:13 -  1.3
@@ -1,6 +1,6 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.12.ebuild,v 1.2 
2014/11/30 11:34:16 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/json-c-0.12.ebuild,v 1.3 
2015/05/27 04:11:13 mattst88 Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0/0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc static-libs"
 
 RDEPEND="



1.48 dev-libs/json-c/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   30 Nov 2014 11:34:16 -  1.47
+++ ChangeLog   27 May 2015 04:11:13 -  1.48
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/json-c
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.47 2014/11/30 
11:34:16 mgorny Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/json-c/ChangeLog,v 1.48 2015/05/27 
04:11:13 mattst88 Exp $
+
+  27 May 2015; Matt Turner  json-c-0.12.ebuild:
+  Added ~mips.
 
   30 Nov 2014; Michał Górny  json-c-0.11-r1.ebuild,
   json-c-0.12.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-devel/gcc: gcc-4.7.4.ebuild ChangeLog

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:57:13

  Modified: gcc-4.7.4.ebuild ChangeLog
  Log:
  alpha stable, bug 548802.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.13 sys-devel/gcc/gcc-4.7.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.7.4.ebuild?rev=1.13&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.7.4.ebuild?rev=1.13&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/gcc-4.7.4.ebuild?r1=1.12&r2=1.13

Index: gcc-4.7.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.7.4.ebuild,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- gcc-4.7.4.ebuild13 May 2015 09:39:25 -  1.12
+++ gcc-4.7.4.ebuild24 May 2015 18:57:13 -  1.13
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.7.4.ebuild,v 1.12 
2015/05/13 09:39:25 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/gcc-4.7.4.ebuild,v 1.13 
2015/05/24 18:57:13 mattst88 Exp $
 
 EAPI="4"
 
@@ -22,7 +22,7 @@
 
 inherit eutils toolchain
 
-KEYWORDS="~alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 
-amd64-fbsd -x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 
-amd64-fbsd -x86-fbsd"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



1.1077   sys-devel/gcc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1077&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?rev=1.1077&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/gcc/ChangeLog?r1=1.1076&r2=1.1077

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v
retrieving revision 1.1076
retrieving revision 1.1077
diff -u -r1.1076 -r1.1077
--- ChangeLog   14 May 2015 16:47:01 -  1.1076
+++ ChangeLog   24 May 2015 18:57:13 -  1.1077
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/gcc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1076 2015/05/14 
16:47:01 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/gcc/ChangeLog,v 1.1077 2015/05/24 
18:57:13 mattst88 Exp $
+
+  24 May 2015; Matt Turner  gcc-4.7.4.ebuild:
+  alpha stable, bug 548802.
 
   14 May 2015; Mike Frysinger  gcc-3.3.6-r1.ebuild,
   gcc-3.4.6-r2.ebuild:






[gentoo-commits] gentoo-x86 commit in profiles/default/linux/alpha/13.0: package.use.stable.mask

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:42:59

  Modified: package.use.stable.mask
  Log:
  Drop stale dbus-python test entry.

Revision  ChangesPath
1.6  profiles/default/linux/alpha/13.0/package.use.stable.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/alpha/13.0/package.use.stable.mask?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/alpha/13.0/package.use.stable.mask?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/default/linux/alpha/13.0/package.use.stable.mask?r1=1.5&r2=1.6

Index: package.use.stable.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/default/linux/alpha/13.0/package.use.stable.mask,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- package.use.stable.mask 9 May 2015 06:26:10 -   1.5
+++ package.use.stable.mask 24 May 2015 18:42:59 -  1.6
@@ -1,12 +1,7 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/default/linux/alpha/13.0/package.use.stable.mask,v
 1.5 2015/05/09 06:26:10 idella4 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/default/linux/alpha/13.0/package.use.stable.mask,v
 1.6 2015/05/24 18:42:59 mattst88 Exp $
 
 # Pacho Ramos  (27 Jan 2014)
 # Mask until we are able to stabilize thunderbird, bug #488766
 app-misc/tracker thunderbird
-
-# Tom Wijsman  (11 Jan 2014)
-# [QA] Mask test USE flag until =dev-python/pygobject-3.8.3 is stable on the 
-# alpha architecture, see bug #494132.
-=dev-python/dbus-python-1.2.0 test






[gentoo-commits] gentoo-x86 commit in profiles/default/linux/alpha: ChangeLog

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:42:59

  Modified: ChangeLog
  Log:
  Drop stale dbus-python test entry.

Revision  ChangesPath
1.19 profiles/default/linux/alpha/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/default/linux/alpha/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   9 May 2015 06:26:10 -   1.18
+++ ChangeLog   24 May 2015 18:42:59 -  1.19
@@ -1,6 +1,9 @@
 # ChangeLog for the default/linux/alpha profile directory
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/alpha/ChangeLog,v 
1.18 2015/05/09 06:26:10 idella4 Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/profiles/default/linux/alpha/ChangeLog,v 
1.19 2015/05/24 18:42:59 mattst88 Exp $
+
+  24 May 2015; Matt Turner  13.0/package.use.stable.mask:
+  Drop stale dbus-python test entry.
 
   9 May 2015; Ian Delaney  13.0/package.use.stable.mask
   remove stale entry masking media-video/vlc from 13.0/package.use.stable.mask






[gentoo-commits] gentoo-x86 commit in profiles/arch/alpha: ChangeLog use.mask

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:41:01

  Modified: ChangeLog use.mask
  Log:
  Remove audit from use.mask.

Revision  ChangesPath
1.223profiles/arch/alpha/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.223&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.223&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?r1=1.222&r2=1.223

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog   24 May 2015 04:31:38 -  1.222
+++ ChangeLog   24 May 2015 18:41:01 -  1.223
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/Alpha profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.222 
2015/05/24 04:31:38 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.223 
2015/05/24 18:41:01 mattst88 Exp $
+
+  24 May 2015; Matt Turner  use.mask:
+  Remove audit from use.mask.
 
   24 May 2015; Matt Turner  package.use.mask:
   Drop dead r600-llvm-compiler USE flag from package.use.mask.



1.94 profiles/arch/alpha/use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/use.mask?rev=1.94&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/use.mask?rev=1.94&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/use.mask?r1=1.93&r2=1.94

Index: use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/use.mask,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- use.mask1 Feb 2015 14:20:53 -   1.93
+++ use.mask24 May 2015 18:41:01 -  1.94
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation.
 # Distributed under the terms of the GNU General Public License, v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/use.mask,v 1.93 
2015/02/01 14:20:53 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/use.mask,v 1.94 
2015/05/24 18:41:01 mattst88 Exp $
 
 # Unmask the flag which corresponds to ARCH.
 -alpha
@@ -170,11 +170,6 @@
 # USE=d seems to break gcc-4.1.2 (#178896)
 d
 
-# USE=audit masked prior to testing on alpha, arm, hppa, ppc64, s390, sh.
-# Bug #184563, 18 Sep 2007
-# Robin H. Johnson 
-audit
-
 # This works
 -x264
 






[gentoo-commits] gentoo-x86 commit in dev-libs/icu: icu-55.1.ebuild ChangeLog

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:22:59

  Modified: icu-55.1.ebuild ChangeLog
  Log:
  alpha stable, bug 546156.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.2  dev-libs/icu/icu-55.1.ebuild

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

Index: icu-55.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-55.1.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- icu-55.1.ebuild 17 May 2015 21:56:09 -  1.1
+++ icu-55.1.ebuild 24 May 2015 18:22:59 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-55.1.ebuild,v 1.1 
2015/05/17 21:56:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/icu-55.1.ebuild,v 1.2 
2015/05/24 18:22:59 mattst88 Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 SLOT="0/55"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="



1.306dev-libs/icu/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.306&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?rev=1.306&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/icu/ChangeLog?r1=1.305&r2=1.306

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v
retrieving revision 1.305
retrieving revision 1.306
diff -u -r1.305 -r1.306
--- ChangeLog   17 May 2015 21:56:09 -  1.305
+++ ChangeLog   24 May 2015 18:22:59 -  1.306
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/icu
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.305 2015/05/17 
21:56:09 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/icu/ChangeLog,v 1.306 2015/05/24 
18:22:59 mattst88 Exp $
+
+  24 May 2015; Matt Turner  icu-55.1.ebuild:
+  alpha stable, bug 546156.
 
 *icu-55.1 (17 May 2015)
 






[gentoo-commits] gentoo-x86 commit in net-misc/dropbear: dropbear-2014.66.ebuild ChangeLog

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:21:59

  Modified: dropbear-2014.66.ebuild ChangeLog
  Log:
  alpha stable, bug 535598.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.8  net-misc/dropbear/dropbear-2014.66.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dropbear/dropbear-2014.66.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dropbear/dropbear-2014.66.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dropbear/dropbear-2014.66.ebuild?r1=1.7&r2=1.8

Index: dropbear-2014.66.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dropbear/dropbear-2014.66.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dropbear-2014.66.ebuild 28 Apr 2015 09:50:57 -  1.7
+++ dropbear-2014.66.ebuild 24 May 2015 18:21:59 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/dropbear-2014.66.ebuild,v 
1.7 2015/04/28 09:50:57 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/dropbear-2014.66.ebuild,v 
1.8 2015/05/24 18:21:59 mattst88 Exp $
 
 EAPI="4"
 
@@ -13,7 +13,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE="bsdpty minimal multicall pam +shadow static syslog zlib"
 
 LIB_DEPEND="zlib? ( sys-libs/zlib[static-libs(+)] )



1.129net-misc/dropbear/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dropbear/ChangeLog?rev=1.129&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dropbear/ChangeLog?rev=1.129&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dropbear/ChangeLog?r1=1.128&r2=1.129

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dropbear/ChangeLog,v
retrieving revision 1.128
retrieving revision 1.129
diff -u -r1.128 -r1.129
--- ChangeLog   30 Apr 2015 09:01:20 -  1.128
+++ ChangeLog   24 May 2015 18:21:59 -  1.129
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dropbear
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/ChangeLog,v 1.128 
2015/04/30 09:01:20 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dropbear/ChangeLog,v 1.129 
2015/05/24 18:21:59 mattst88 Exp $
+
+  24 May 2015; Matt Turner  dropbear-2014.66.ebuild:
+  alpha stable, bug 535598.
 
   30 Apr 2015; Mike Frysinger  metadata.xml:
   Add CPE info via Chromium OS.






[gentoo-commits] gentoo-x86 commit in net-misc/dhcpcd: dhcpcd-6.6.7.ebuild ChangeLog

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:21:01

  Modified: dhcpcd-6.6.7.ebuild ChangeLog
  Log:
  alpha stable, bug 538418.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.10 net-misc/dhcpcd/dhcpcd-6.6.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.6.7.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.6.7.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.6.7.ebuild?r1=1.9&r2=1.10

Index: dhcpcd-6.6.7.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.6.7.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- dhcpcd-6.6.7.ebuild 26 Apr 2015 19:17:11 -  1.9
+++ dhcpcd-6.6.7.ebuild 24 May 2015 18:21:01 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.6.7.ebuild,v 1.9 
2015/04/26 19:17:11 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/dhcpcd-6.6.7.ebuild,v 1.10 
2015/05/24 18:21:01 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
MY_P="${MY_P/_beta/-beta}"
MY_P="${MY_P/_rc/-rc}"
SRC_URI="http://roy.marples.name/downloads/${PN}/${MY_P}.tar.bz2";
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
S="${WORKDIR}/${MY_P}"
 fi
 



1.457net-misc/dhcpcd/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.457&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?rev=1.457&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/dhcpcd/ChangeLog?r1=1.456&r2=1.457

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v
retrieving revision 1.456
retrieving revision 1.457
diff -u -r1.456 -r1.457
--- ChangeLog   16 May 2015 23:23:32 -  1.456
+++ ChangeLog   24 May 2015 18:21:01 -  1.457
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/dhcpcd
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.456 
2015/05/16 23:23:32 williamh Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/dhcpcd/ChangeLog,v 1.457 
2015/05/24 18:21:01 mattst88 Exp $
+
+  24 May 2015; Matt Turner  dhcpcd-6.6.7.ebuild:
+  alpha stable, bug 538418.
 
 *dhcpcd-6.9.0 (16 May 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.5.6.ebuild ChangeLog

2015-05-24 Thread Matt Turner (mattst88)
mattst8815/05/24 18:11:13

  Modified: ChangeLog
  Added:mesa-10.5.6.ebuild
  Log:
  Version bump to 10.5.6.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.642media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.641
retrieving revision 1.642
diff -u -r1.641 -r1.642
--- ChangeLog   24 May 2015 04:30:12 -  1.641
+++ ChangeLog   24 May 2015 18:11:12 -  1.642
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.641 
2015/05/24 04:30:12 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.642 
2015/05/24 18:11:12 mattst88 Exp $
+
+*mesa-10.5.6 (24 May 2015)
+
+  24 May 2015; Matt Turner  +mesa-10.5.6.ebuild:
+  Version bump to 10.5.6.
 
   24 May 2015; Matt Turner  mesa-10.2.8.ebuild,
   mesa-10.3.7-r1.ebuild, mesa-10.3.7-r2.ebuild, mesa-10.4.6.ebuild,



1.1  media-libs/mesa/mesa-10.5.6.ebuild

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

Index: mesa-10.5.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.6.ebuild,v 1.1 
2015/05/24 18:11:12 mattst88 Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"

if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi

PYTHON_COMPAT=( python2_7 )

inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}

OPENGL_DIR="xorg-x11"

MY_P="${P/_/-}"
FOLDER="${PV/_rc*/}"

DESCRIPTION="OpenGL-like graphic library for Linux"
HOMEPAGE="http://mesa3d.sourceforge.net/";

if [[ $PV == * ]]; then
SRC_URI=""
else
SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz";
fi

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!bindist? ( bindist )"

INTEL_CARDS="i915 i965 ilo intel"
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+nptl opencl osmesa pax_kernel openmax pic selinux +udev vaapi vdpau
wayland xvmc xa kernel_FreeBSD"

REQUIRED_USE="
d3d9?   ( dri3 gallium )
llvm?   ( gallium )
opencl? ( gallium llvm )
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
vaapi? ( gallium )
vdpau? ( gallium )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
video_cards_intel?  ( classic )
video_cards_i915?   ( || ( classic gallium ) )
video_cards_i965?   ( classic )
video_cards_ilo?( gallium )
video_cards_nouveau? ( || ( classic gallium ) )
video_cards_radeon? ( || ( classic gallium ) )
video_cards_r100?   ( classic )
video_cards_r200?   ( classic )
video_cards_r300?   ( gallium llvm )
video_cards_r600?   ( gallium )
video_cards_radeonsi?   ( gallium llvm )
video_cards_vmware? ( gallium )
${PYTHON_REQUIRED_USE}
"

LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.57"
# keep correct libdrm and dri2proto dep
# keep blocks in rdepend for binpkg
RDEPEND="
!=app-eselect/eselect-opengl-1.3.0
udev? ( kernel_linux? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] ) )
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
gbm? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
dri3? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
>=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2:=[${MULTILIB_USEDEP}]
>=x11

[gentoo-commits] gentoo-x86 commit in profiles/arch/hppa: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:35:58

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.249profiles/arch/hppa/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/ChangeLog?rev=1.249&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/ChangeLog?rev=1.249&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/ChangeLog?r1=1.248&r2=1.249

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v
retrieving revision 1.248
retrieving revision 1.249
diff -u -r1.248 -r1.249
--- ChangeLog   17 May 2015 09:22:00 -  1.248
+++ ChangeLog   24 May 2015 04:35:58 -  1.249
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/hppa profile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.248 
2015/05/17 09:22:00 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/ChangeLog,v 1.249 
2015/05/24 04:35:58 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   17 May 2015; Jeroen Roovers  package.use.mask:
   Mask USE=rados for net-analyzer/rrdtool since sys-cluster/ceph is not



1.160profiles/arch/hppa/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/package.use.mask?rev=1.160&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/package.use.mask?rev=1.160&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/hppa/package.use.mask?r1=1.159&r2=1.160

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v
retrieving revision 1.159
retrieving revision 1.160
diff -u -r1.159 -r1.160
--- package.use.mask17 May 2015 09:22:00 -  1.159
+++ package.use.mask24 May 2015 04:35:58 -  1.160
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.159 
2015/05/17 09:22:00 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/hppa/package.use.mask,v 1.160 
2015/05/24 04:35:58 mattst88 Exp $
 
 # DON'T TOUCH THIS FILE. Instead, file a bug and assign it to 
.
 
@@ -64,10 +64,6 @@
 # graphite is not implemented on HPPA
 sys-devel/gcc graphite
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Julian Ospald  (31 Mar 2013)
 # depends on mono
 >=net-irc/hexchat-2.9.4-r1 theme-manager






[gentoo-commits] gentoo-x86 commit in profiles/arch/sparc: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:34:52

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.250profiles/arch/sparc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?rev=1.250&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?rev=1.250&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/ChangeLog?r1=1.249&r2=1.250

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v
retrieving revision 1.249
retrieving revision 1.250
diff -u -r1.249 -r1.250
--- ChangeLog   11 May 2015 01:50:28 -  1.249
+++ ChangeLog   24 May 2015 04:34:52 -  1.250
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/sparc profile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.249 
2015/05/11 01:50:28 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/ChangeLog,v 1.250 
2015/05/24 04:34:52 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   11 May 2015; Davide Pesavento  package.mask:
   Extend Qt4-multilib mask to cover 4.8.7 as well.



1.194profiles/arch/sparc/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/package.use.mask?rev=1.194&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/package.use.mask?rev=1.194&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sparc/package.use.mask?r1=1.193&r2=1.194

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v
retrieving revision 1.193
retrieving revision 1.194
diff -u -r1.193 -r1.194
--- package.use.mask3 May 2015 05:07:35 -   1.193
+++ package.use.mask24 May 2015 04:34:52 -  1.194
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v 
1.193 2015/05/03 05:07:35 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sparc/package.use.mask,v 
1.194 2015/05/24 04:34:52 mattst88 Exp $
 
 # Ben de Groot  (03 May 2015)
 # media-libs/rubberband lacks sparc keyword, bug #548446
@@ -129,10 +129,6 @@
 # Fix per-arch mask of phonon[zeitgeist] #460140
 media-libs/phonon zeitgeist
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Patrick Lauer  (27 May 2013)
 # stable keywords missing on tagpy/coherence
 media-video/totem upnp-av






[gentoo-commits] gentoo-x86 commit in profiles/arch/sh: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:34:39

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.100profiles/arch/sh/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sh/ChangeLog?rev=1.100&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sh/ChangeLog?rev=1.100&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sh/ChangeLog?r1=1.99&r2=1.100

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sh/ChangeLog,v
retrieving revision 1.99
retrieving revision 1.100
diff -u -r1.99 -r1.100
--- ChangeLog   17 Mar 2015 01:42:57 -  1.99
+++ ChangeLog   24 May 2015 04:34:39 -  1.100
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/sh profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sh/ChangeLog,v 1.99 
2015/03/17 01:42:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sh/ChangeLog,v 1.100 
2015/05/24 04:34:39 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   17 Mar 2015; Mike Frysinger  +package.use.force,
   package.use.mask:



1.32 profiles/arch/sh/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sh/package.use.mask?rev=1.32&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sh/package.use.mask?rev=1.32&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/sh/package.use.mask?r1=1.31&r2=1.32

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/sh/package.use.mask,v
retrieving revision 1.31
retrieving revision 1.32
diff -u -r1.31 -r1.32
--- package.use.mask17 Mar 2015 01:42:57 -  1.31
+++ package.use.mask24 May 2015 04:34:39 -  1.32
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sh/package.use.mask,v 1.31 
2015/03/17 01:42:57 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/sh/package.use.mask,v 1.32 
2015/05/24 04:34:39 mattst88 Exp $
 
 # Mike Frysinger  (16 Mar 2015)
 # Needs sci-physics/bullet tested #499974
@@ -15,10 +15,6 @@
 # too much unkeyworded dependencies (bug #497068)
 dev-vcs/git mediawiki
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Raúl Porcel  (28 May 2012)
 # Needs x11-misc/lightdm(which also requires some other deps)
 x11-misc/xscreensaver new-login






[gentoo-commits] gentoo-x86 commit in profiles/arch/s390: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:34:24

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.84 profiles/arch/s390/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/s390/ChangeLog?rev=1.84&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/s390/ChangeLog?rev=1.84&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/s390/ChangeLog?r1=1.83&r2=1.84

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/s390/ChangeLog,v
retrieving revision 1.83
retrieving revision 1.84
diff -u -r1.83 -r1.84
--- ChangeLog   17 Mar 2015 01:42:50 -  1.83
+++ ChangeLog   24 May 2015 04:34:24 -  1.84
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/s390 profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/s390/ChangeLog,v 1.83 
2015/03/17 01:42:50 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/s390/ChangeLog,v 1.84 
2015/05/24 04:34:24 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   17 Mar 2015; Mike Frysinger  +package.use.force,
   package.use.mask:



1.31 profiles/arch/s390/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/s390/package.use.mask?rev=1.31&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/s390/package.use.mask?rev=1.31&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/s390/package.use.mask?r1=1.30&r2=1.31

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/s390/package.use.mask,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -r1.30 -r1.31
--- package.use.mask17 Mar 2015 01:42:50 -  1.30
+++ package.use.mask24 May 2015 04:34:24 -  1.31
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/s390/package.use.mask,v 1.30 
2015/03/17 01:42:50 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/s390/package.use.mask,v 1.31 
2015/05/24 04:34:24 mattst88 Exp $
 
 # Mike Frysinger  (16 Mar 2015)
 # Needs sci-physics/bullet tested #499974
@@ -18,10 +18,6 @@
 # too much unkeyworded dependencies (bug #497068)
 dev-vcs/git mediawiki
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Agostino Sarubbo 

[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc/ppc64/64ul: package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:33:58

  Modified: package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.21 profiles/arch/powerpc/ppc64/64ul/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/package.use.mask?rev=1.21&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/package.use.mask?rev=1.21&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/package.use.mask?r1=1.20&r2=1.21

Index: package.use.mask
===
RCS file: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/package.use.mask,v
retrieving revision 1.20
retrieving revision 1.21
diff -u -r1.20 -r1.21
--- package.use.mask28 May 2013 13:53:42 -  1.20
+++ package.use.mask24 May 2015 04:33:58 -  1.21
@@ -1,10 +1,6 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/package.use.mask,v 
1.20 2013/05/28 13:53:42 chithanh Exp $
-
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
+# $Header: 
/var/cvsroot/gentoo-x86/profiles/arch/powerpc/ppc64/64ul/package.use.mask,v 
1.21 2015/05/24 04:33:58 mattst88 Exp $
 
 # Agostino Sarubbo  (31 Jan 2012)
 # Mask because requires a lot of unstable depends not ready for the 
stabilization






[gentoo-commits] gentoo-x86 commit in profiles/arch/powerpc: ChangeLog

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:33:58

  Modified: ChangeLog
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.330profiles/arch/powerpc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.330&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?rev=1.330&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/powerpc/ChangeLog?r1=1.329&r2=1.330

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v
retrieving revision 1.329
retrieving revision 1.330
diff -u -r1.329 -r1.330
--- ChangeLog   20 May 2015 23:47:14 -  1.329
+++ ChangeLog   24 May 2015 04:33:58 -  1.330
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/PPC profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.329 
2015/05/20 23:47:14 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/powerpc/ChangeLog,v 1.330 
2015/05/24 04:33:58 mattst88 Exp $
+
+  24 May 2015; Matt Turner  ppc64/64ul/package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   20 May 2015; James Le Cuirot  ppc64/package.use.mask:
   Mask rdeps of icedtea-web on ppc64 to deal with bug #549134. I had hoped to






[gentoo-commits] gentoo-x86 commit in profiles/arch/mips: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:32:58

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.162profiles/arch/mips/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/ChangeLog?rev=1.162&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/ChangeLog?rev=1.162&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/ChangeLog?r1=1.161&r2=1.162

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/mips/ChangeLog,v
retrieving revision 1.161
retrieving revision 1.162
diff -u -r1.161 -r1.162
--- ChangeLog   16 Apr 2015 22:05:25 -  1.161
+++ ChangeLog   24 May 2015 04:32:58 -  1.162
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/MIPS profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/ChangeLog,v 1.161 
2015/04/16 22:05:25 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/ChangeLog,v 1.162 
2015/05/24 04:32:58 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   16 Apr 2015; Mike Frysinger  use.mask:
   Drop USE=wifi mask since it works on mips.



1.73 profiles/arch/mips/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.73&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?rev=1.73&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/mips/package.use.mask?r1=1.72&r2=1.73

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- package.use.mask12 Apr 2015 11:26:16 -  1.72
+++ package.use.mask24 May 2015 04:32:58 -  1.73
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v 1.72 
2015/04/12 11:26:16 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/mips/package.use.mask,v 1.73 
2015/05/24 04:32:58 mattst88 Exp $
 
 # Mikle Kolyada  (12 Apr 2015)
 # GNOME Shell does not work on mips
@@ -48,10 +48,6 @@
 sys-auth/consolekit pam
 sys-auth/pambase consolekit
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Kacper Kowalik  (20 May 2011)
 # depends on dev-libs/dmalloc which is not keyworded
 net-nds/ypbind debug






[gentoo-commits] gentoo-x86 commit in profiles/arch/nios2: package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:33:17

  Modified: package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.2  profiles/arch/nios2/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/nios2/package.use.mask?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/nios2/package.use.mask?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/nios2/package.use.mask?r1=1.1&r2=1.2

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/nios2/package.use.mask,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- package.use.mask18 Apr 2015 23:35:43 -  1.1
+++ package.use.mask24 May 2015 04:33:17 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/nios2/package.use.mask,v 1.1 
2015/04/18 23:35:43 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/nios2/package.use.mask,v 1.2 
2015/05/24 04:33:17 mattst88 Exp $
 
 # Mike Frysinger  (16 Mar 2015)
 # Needs sci-physics/bullet tested #499974
@@ -77,10 +77,6 @@
 # Fix per-arch mask of phonon[zeitgeist] #460140
 media-libs/phonon zeitgeist
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Andreas K. Huettel  (27 May 2013)
 # Firmware loader not keyworded yet
 sci-libs/linux-gpib firmware






[gentoo-commits] gentoo-x86 commit in profiles/arch/ia64: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:32:45

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.230profiles/arch/ia64/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?rev=1.230&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?rev=1.230&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/ChangeLog?r1=1.229&r2=1.230

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v
retrieving revision 1.229
retrieving revision 1.230
diff -u -r1.229 -r1.230
--- ChangeLog   20 May 2015 20:55:03 -  1.229
+++ ChangeLog   24 May 2015 04:32:45 -  1.230
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/ia64 profile
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v 1.229 
2015/05/20 20:55:03 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/ChangeLog,v 1.230 
2015/05/24 04:32:45 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   20 May 2015; James Le Cuirot  package.use.mask:
   Temporarily mask rdeps of icedtea-web to deal with bug #549134 until I have a



1.167profiles/arch/ia64/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?rev=1.167&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?rev=1.167&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/ia64/package.use.mask?r1=1.166&r2=1.167

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v
retrieving revision 1.166
retrieving revision 1.167
diff -u -r1.166 -r1.167
--- package.use.mask20 May 2015 20:55:03 -  1.166
+++ package.use.mask24 May 2015 04:32:45 -  1.167
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.166 
2015/05/20 20:55:03 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/ia64/package.use.mask,v 1.167 
2015/05/24 04:32:45 mattst88 Exp $
 
 # James Le Cuirot  (20 May 2015)
 # Temporarily mask rdeps of icedtea-web to deal with bug #549134 until
@@ -124,10 +124,6 @@
 # Fix per-arch mask of phonon[zeitgeist] #460140
 media-libs/phonon zeitgeist
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Tom Wijsman  (9 May 2013)
 # Unmasking dev-java/antlr[java] as per bug #412223, acked by sera.
 dev-java/antlr -java






[gentoo-commits] gentoo-x86 commit in profiles/arch/alpha: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:31:38

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.222profiles/arch/alpha/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.222&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?rev=1.222&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/ChangeLog?r1=1.221&r2=1.222

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v
retrieving revision 1.221
retrieving revision 1.222
diff -u -r1.221 -r1.222
--- ChangeLog   11 May 2015 01:49:39 -  1.221
+++ ChangeLog   24 May 2015 04:31:38 -  1.222
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/Alpha profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.221 
2015/05/11 01:49:39 pesa Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/ChangeLog,v 1.222 
2015/05/24 04:31:38 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   11 May 2015; Davide Pesavento  package.mask:
   Extend Qt4-multilib mask to cover 4.8.7 as well.



1.185profiles/arch/alpha/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.185&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?rev=1.185&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/alpha/package.use.mask?r1=1.184&r2=1.185

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v
retrieving revision 1.184
retrieving revision 1.185
diff -u -r1.184 -r1.185
--- package.use.mask3 May 2015 05:07:35 -   1.184
+++ package.use.mask24 May 2015 04:31:38 -  1.185
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.184 2015/05/03 05:07:35 yngwin Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/alpha/package.use.mask,v 
1.185 2015/05/24 04:31:38 mattst88 Exp $
 
 # Ben de Groot  (03 May 2015)
 # media-libs/rubberband lacks alpha keyword, bug #548446
@@ -133,10 +133,6 @@
 # Fix per-arch mask of phonon[zeitgeist] #460140
 media-libs/phonon zeitgeist
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Gilles Dartiguelongue  (1 Apr 2013)
 # missing keyword on media-libs/tremor, bug #453200
 media-libs/gst-plugins-base ivorbis






[gentoo-commits] gentoo-x86 commit in profiles/arch/arm64: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:32:23

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.11 profiles/arch/arm64/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm64/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm64/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm64/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm64/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   17 Mar 2015 01:41:23 -  1.10
+++ ChangeLog   24 May 2015 04:32:23 -  1.11
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/ARM profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm64/ChangeLog,v 1.10 
2015/03/17 01:41:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm64/ChangeLog,v 1.11 
2015/05/24 04:32:23 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   17 Mar 2015; Mike Frysinger  +package.use.force,
   package.use.mask:



1.8  profiles/arch/arm64/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm64/package.use.mask?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm64/package.use.mask?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm64/package.use.mask?r1=1.7&r2=1.8

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm64/package.use.mask,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- package.use.mask17 Mar 2015 01:41:23 -  1.7
+++ package.use.mask24 May 2015 04:32:23 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm64/package.use.mask,v 1.7 
2015/03/17 01:41:23 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm64/package.use.mask,v 1.8 
2015/05/24 04:32:23 mattst88 Exp $
 
 # Mike Frysinger  (16 Mar 2015)
 # Needs sci-physics/bullet tested #499974
@@ -77,10 +77,6 @@
 # Fix per-arch mask of phonon[zeitgeist] #460140
 media-libs/phonon zeitgeist
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Andreas K. Huettel  (27 May 2013)
 # Firmware loader not keyworded yet
 sci-libs/linux-gpib firmware






[gentoo-commits] gentoo-x86 commit in profiles/arch/arm: ChangeLog package.use.mask

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:32:05

  Modified: ChangeLog package.use.mask
  Log:
  Drop dead r600-llvm-compiler USE flag from package.use.mask.

Revision  ChangesPath
1.359profiles/arch/arm/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?rev=1.359&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?rev=1.359&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/ChangeLog?r1=1.358&r2=1.359

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v
retrieving revision 1.358
retrieving revision 1.359
diff -u -r1.358 -r1.359
--- ChangeLog   23 May 2015 23:12:12 -  1.358
+++ ChangeLog   24 May 2015 04:32:05 -  1.359
@@ -1,6 +1,9 @@
 # ChangeLog for Gentoo/ARM profile directory
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.358 
2015/05/23 23:12:12 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/ChangeLog,v 1.359 
2015/05/24 04:32:05 mattst88 Exp $
+
+  24 May 2015; Matt Turner  package.use.mask:
+  Drop dead r600-llvm-compiler USE flag from package.use.mask.
 
   23 May 2015; James Le Cuirot  package.use.mask:
   icedtea-web has now been keyworded so remove the nsplugin and webstart USE



1.256profiles/arch/arm/package.use.mask

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.mask?rev=1.256&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.mask?rev=1.256&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/profiles/arch/arm/package.use.mask?r1=1.255&r2=1.256

Index: package.use.mask
===
RCS file: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v
retrieving revision 1.255
retrieving revision 1.256
diff -u -r1.255 -r1.256
--- package.use.mask23 May 2015 23:12:12 -  1.255
+++ package.use.mask24 May 2015 04:32:05 -  1.256
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.255 
2015/05/23 23:12:12 chewi Exp $
+# $Header: /var/cvsroot/gentoo-x86/profiles/arch/arm/package.use.mask,v 1.256 
2015/05/24 04:32:05 mattst88 Exp $
 
 # Ben de Groot  (03 May 2015)
 # media-libs/rubberband lacks arm keyword, bug 548446
@@ -239,10 +239,6 @@
 # no stable jdk+java-config
 net-misc/tightvnc java
 
-# Chí-Thanh Christopher Nguyễn  (28 May 2013)
-# depends on sys-devel/llvm[video_cards_radeon]
-media-libs/mesa r600-llvm-compiler
-
 # Andreas K. Huettel  (27 May 2013)
 # Firmware loader not keyworded yet
 sci-libs/linux-gpib firmware






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: metadata.xml mesa-10.3.7-r2.ebuild mesa-10.4.6.ebuild mesa-10.2.8.ebuild mesa-10.3.7-r1.ebuild ChangeLog

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 04:30:13

  Modified: metadata.xml mesa-10.3.7-r2.ebuild
mesa-10.4.6.ebuild mesa-10.2.8.ebuild
mesa-10.3.7-r1.ebuild ChangeLog
  Log:
  Drop r600-llvm-compiler USE flag.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.27 media-libs/mesa/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/metadata.xml,v
retrieving revision 1.26
retrieving revision 1.27
diff -u -r1.26 -r1.27
--- metadata.xml14 Mar 2015 01:36:32 -  1.26
+++ metadata.xml24 May 2015 04:30:12 -  1.27
@@ -20,7 +20,6 @@
Build the Mesa library for off-screen 
rendering.
Enable if the user plans to run the package 
under a pax enabled hardened kernel
disable optimized assembly code that is not PIC 
friendly
-   Build the LLVM based r600 shader 
compiler.
Enable the VDPAU acceleration interface for the 
Gallium3D Video Layer.
Enable support for dev-libs/wayland
Enable the XA (X Acceleration) API for Gallium3D.



1.7  media-libs/mesa/mesa-10.3.7-r2.ebuild

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

Index: mesa-10.3.7-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.3.7-r2.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- mesa-10.3.7-r2.ebuild   8 Apr 2015 17:59:35 -   1.6
+++ mesa-10.3.7-r2.ebuild   24 May 2015 04:30:12 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.3.7-r2.ebuild,v 1.6 
2015/04/08 17:59:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.3.7-r2.ebuild,v 1.7 
2015/05/24 04:30:12 mattst88 Exp $
 
 EAPI=5
 
@@ -51,7 +51,7 @@
 
 IUSE="${IUSE_VIDEO_CARDS}
bindist +classic debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm +nptl
-   opencl openvg osmesa pax_kernel openmax pic r600-llvm-compiler selinux
+   opencl openvg osmesa pax_kernel openmax pic selinux
+udev vdpau wayland xvmc xa kernel_FreeBSD kernel_linux"
 
 REQUIRED_USE="
@@ -60,14 +60,10 @@
opencl? (
gallium
llvm
-   video_cards_r600? ( r600-llvm-compiler )
-   video_cards_radeon? ( r600-llvm-compiler )
-   video_cards_radeonsi? ( r600-llvm-compiler )
)
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
-   r600-llvm-compiler? ( gallium llvm || ( video_cards_r600 
video_cards_radeonsi video_cards_radeon ) )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
@@ -148,7 +144,6 @@
 DEPEND="${RDEPEND}
${PYTHON_DEPS}
llvm? (
-   r600-llvm-compiler? ( sys-devel/llvm[video_cards_radeon] )
video_cards_radeonsi? ( sys-devel/llvm[video_cards_radeon] )
)
opencl? (
@@ -265,7 +260,6 @@
$(use_enable openvg)
$(use_enable openvg gallium-egl)
$(use_enable openmax omx)
-   $(use_enable r600-llvm-compiler)
$(use_enable vdpau)
$(use_enable xa)
$(use_enable xvmc)



1.2  media-libs/mesa/mesa-10.4.6.ebuild

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

Index: mesa-10.4.6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.4.6.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mesa-10.4.6.ebuild  28 Apr 2015 00:45:39 -  1.1
+++ mesa-10.4.6.ebuild  24 May 2015 04:30:12 -  1.2
@@ -1,6 +1,6 @

[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-mach64: ChangeLog xf86-video-mach64-6.9.3.ebuild xf86-video-mach64-6.9.4.ebuild xf86-video-mach64-6.9.2.ebuild xf86-video-mach64-6.8.2.ebui

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 03:09:23

  Modified: ChangeLog
  Removed:  xf86-video-mach64-6.9.3.ebuild
xf86-video-mach64-6.9.4.ebuild
xf86-video-mach64-6.9.2.ebuild
xf86-video-mach64-6.8.2.ebuild
xf86-video-mach64-6.9.0.ebuild
xf86-video-mach64-6.9.1.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.49 x11-drivers/xf86-video-mach64/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   24 May 2015 03:08:33 -  1.48
+++ ChangeLog   24 May 2015 03:09:23 -  1.49
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-mach64
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v 
1.48 2015/05/24 03:08:33 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v 
1.49 2015/05/24 03:09:23 mattst88 Exp $
+
+  24 May 2015; Matt Turner 
+  -xf86-video-mach64-6.8.2.ebuild, -xf86-video-mach64-6.9.0.ebuild,
+  -xf86-video-mach64-6.9.1.ebuild, -xf86-video-mach64-6.9.2.ebuild,
+  -xf86-video-mach64-6.9.3.ebuild, -xf86-video-mach64-6.9.4.ebuild:
+  Drop old.
 
 *xf86-video-mach64-6.9.5 (24 May 2015)
 






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-mach64: xf86-video-mach64-6.9.5.ebuild ChangeLog

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 03:08:33

  Modified: ChangeLog
  Added:xf86-video-mach64-6.9.5.ebuild
  Log:
  Version bump to 6.9.5 for bug 541896. Straight to stable.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 974CA72A)

Revision  ChangesPath
1.48 x11-drivers/xf86-video-mach64/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   4 Jan 2013 14:09:48 -   1.47
+++ ChangeLog   24 May 2015 03:08:33 -  1.48
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-mach64
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v 
1.47 2013/01/04 14:09:48 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/ChangeLog,v 
1.48 2015/05/24 03:08:33 mattst88 Exp $
+
+*xf86-video-mach64-6.9.5 (24 May 2015)
+
+  24 May 2015; Matt Turner 
+  +xf86-video-mach64-6.9.5.ebuild:
+  Version bump to 6.9.5 for bug 541896. Straight to stable.
 
   04 Jan 2013; Agostino Sarubbo  
xf86-video-mach64-6.9.4.ebuild:
   Stable for ppc64, wrt bug #448562



1.1  
x11-drivers/xf86-video-mach64/xf86-video-mach64-6.9.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.9.5.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.9.5.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-mach64-6.9.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-mach64/xf86-video-mach64-6.9.5.ebuild,v
 1.1 2015/05/24 03:08:33 mattst88 Exp $

EAPI=5

XORG_DRI="dri"
inherit xorg-2

DESCRIPTION="ATI Mach64 video driver"

KEYWORDS="alpha amd64 ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""

RDEPEND=">=x11-base/xorg-server-1.10
>=x11-libs/libpciaccess-0.12.901"
DEPEND="${RDEPEND}"

pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable dri)
)

xorg-2_pkg_setup
}






[gentoo-commits] gentoo-x86 commit in x11-apps/mkfontscale: mkfontscale-1.1.2.ebuild ChangeLog

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 03:02:53

  Modified: mkfontscale-1.1.2.ebuild ChangeLog
  Log:
  Add dependencies for zlib/bzip2, bug 545900.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.11 x11-apps/mkfontscale/mkfontscale-1.1.2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/mkfontscale/mkfontscale-1.1.2.ebuild?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/mkfontscale/mkfontscale-1.1.2.ebuild?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/mkfontscale/mkfontscale-1.1.2.ebuild?r1=1.10&r2=1.11

Index: mkfontscale-1.1.2.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-apps/mkfontscale/mkfontscale-1.1.2.ebuild,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- mkfontscale-1.1.2.ebuild14 Mar 2015 13:56:34 -  1.10
+++ mkfontscale-1.1.2.ebuild24 May 2015 03:02:53 -  1.11
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-apps/mkfontscale/mkfontscale-1.1.2.ebuild,v 1.10 
2015/03/14 13:56:34 maekke Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-apps/mkfontscale/mkfontscale-1.1.2.ebuild,v 1.11 
2015/05/24 03:02:53 mattst88 Exp $
 
 EAPI=5
 
@@ -12,11 +12,12 @@
 IUSE=""
 
 RDEPEND="x11-libs/libfontenc
-   media-libs/freetype:2"
+   media-libs/freetype:2
+   sys-libs/zlib
+   app-arch/bzip2"
 DEPEND="${RDEPEND}
x11-proto/xproto
-   app-arch/gzip
-   app-arch/bzip2"
+   app-arch/gzip"
 
 XORG_CONFIGURE_OPTIONS=(
--with-bzip2



1.124x11-apps/mkfontscale/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/mkfontscale/ChangeLog?rev=1.124&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/mkfontscale/ChangeLog?rev=1.124&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-apps/mkfontscale/ChangeLog?r1=1.123&r2=1.124

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-apps/mkfontscale/ChangeLog,v
retrieving revision 1.123
retrieving revision 1.124
diff -u -r1.123 -r1.124
--- ChangeLog   14 Mar 2015 13:56:34 -  1.123
+++ ChangeLog   24 May 2015 03:02:53 -  1.124
@@ -1,6 +1,9 @@
 # ChangeLog for x11-apps/mkfontscale
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-apps/mkfontscale/ChangeLog,v 1.123 
2015/03/14 13:56:34 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-apps/mkfontscale/ChangeLog,v 1.124 
2015/05/24 03:02:53 mattst88 Exp $
+
+  24 May 2015; Matt Turner  mkfontscale-1.1.2.ebuild:
+  Add dependencies for zlib/bzip2, bug 545900.
 
   14 Mar 2015; Markus Meier  mkfontscale-1.1.2.ebuild:
   arm stable, bug #530652






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-geode: ChangeLog xf86-video-geode-2.11.15.ebuild xf86-video-geode-2.11.16.ebuild

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 02:59:03

  Modified: ChangeLog
  Removed:  xf86-video-geode-2.11.15.ebuild
xf86-video-geode-2.11.16.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.29 x11-drivers/xf86-video-geode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-geode/ChangeLog,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -r1.28 -r1.29
--- ChangeLog   24 May 2015 02:58:31 -  1.28
+++ ChangeLog   24 May 2015 02:59:03 -  1.29
@@ -1,6 +1,10 @@
 # ChangeLog for x11-drivers/xf86-video-geode
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-geode/ChangeLog,v 
1.28 2015/05/24 02:58:31 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-geode/ChangeLog,v 
1.29 2015/05/24 02:59:03 mattst88 Exp $
+
+  24 May 2015; Matt Turner 
+  -xf86-video-geode-2.11.15.ebuild, -xf86-video-geode-2.11.16.ebuild:
+  Drop old.
 
 *xf86-video-geode-2.11.17 (24 May 2015)
 






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-geode: xf86-video-geode-2.11.17.ebuild ChangeLog

2015-05-23 Thread Matt Turner (mattst88)
mattst8815/05/24 02:58:31

  Modified: ChangeLog
  Added:xf86-video-geode-2.11.17.ebuild
  Log:
  Version bump to 2.11.17, straight to stable. Bug 549786.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 974CA72A)

Revision  ChangesPath
1.28 x11-drivers/xf86-video-geode/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-geode/ChangeLog,v
retrieving revision 1.27
retrieving revision 1.28
diff -u -r1.27 -r1.28
--- ChangeLog   22 Oct 2014 17:17:58 -  1.27
+++ ChangeLog   24 May 2015 02:58:31 -  1.28
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-geode
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-geode/ChangeLog,v 
1.27 2014/10/22 17:17:58 chithanh Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-geode/ChangeLog,v 
1.28 2015/05/24 02:58:31 mattst88 Exp $
+
+*xf86-video-geode-2.11.17 (24 May 2015)
+
+  24 May 2015; Matt Turner 
+  +xf86-video-geode-2.11.17.ebuild:
+  Version bump to 2.11.17, straight to stable. Bug 549786.
 
 *xf86-video-geode-2.11.16 (22 Oct 2014)
 



1.1  
x11-drivers/xf86-video-geode/xf86-video-geode-2.11.17.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.17.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.17.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-geode-2.11.17.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-geode/xf86-video-geode-2.11.17.ebuild,v
 1.1 2015/05/24 02:58:31 mattst88 Exp $

EAPI=5
inherit xorg-2

DESCRIPTION="AMD Geode GX2 and LX video driver"

KEYWORDS="x86"
IUSE="ztv"

RDEPEND=""
DEPEND="${RDEPEND}
ztv? (
sys-kernel/linux-headers
)"

src_configure() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable ztv)
)
xorg-2_src_configure
}






[gentoo-commits] gentoo-x86 commit in app-shells/bash: bash-4.3_p33-r2.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 05:46:07

  Modified: bash-4.3_p33-r2.ebuild ChangeLog
  Log:
  alpha stable, bug 548756.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.2  app-shells/bash/bash-4.3_p33-r2.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3_p33-r2.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3_p33-r2.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/bash-4.3_p33-r2.ebuild?r1=1.1&r2=1.2

Index: bash-4.3_p33-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3_p33-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- bash-4.3_p33-r2.ebuild  24 Feb 2015 20:58:46 -  1.1
+++ bash-4.3_p33-r2.ebuild  21 May 2015 05:46:07 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3_p33-r2.ebuild,v 
1.1 2015/02/24 20:58:46 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/bash-4.3_p33-r2.ebuild,v 
1.2 2015/05/21 05:46:07 mattst88 Exp $
 
 EAPI="4"
 
@@ -38,7 +38,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="afs bashlogger examples mem-scramble +net nls plugins +readline vanilla"
 
 DEPEND=">=sys-libs/ncurses-5.2-r2



1.432app-shells/bash/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.432&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?rev=1.432&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-shells/bash/ChangeLog?r1=1.431&r2=1.432

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v
retrieving revision 1.431
retrieving revision 1.432
diff -u -r1.431 -r1.432
--- ChangeLog   21 May 2015 04:06:28 -  1.431
+++ ChangeLog   21 May 2015 05:46:07 -  1.432
@@ -1,6 +1,9 @@
 # ChangeLog for app-shells/bash
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.431 
2015/05/21 04:06:28 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-shells/bash/ChangeLog,v 1.432 
2015/05/21 05:46:07 mattst88 Exp $
+
+  21 May 2015; Matt Turner  bash-4.3_p33-r2.ebuild:
+  alpha stable, bug 548756.
 
 *bash-4.3_p39 (21 May 2015)
 






[gentoo-commits] gentoo-x86 commit in sys-libs/readline: readline-6.3_p8-r2.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 05:45:33

  Modified: readline-6.3_p8-r2.ebuild ChangeLog
  Log:
  alpha stable, bug 548756.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.2  sys-libs/readline/readline-6.3_p8-r2.ebuild

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

Index: readline-6.3_p8-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/readline/readline-6.3_p8-r2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- readline-6.3_p8-r2.ebuild   21 Jan 2015 11:50:44 -  1.1
+++ readline-6.3_p8-r2.ebuild   21 May 2015 05:45:33 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-libs/readline/readline-6.3_p8-r2.ebuild,v 1.1 
2015/01/21 11:50:44 polynomial-c Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-libs/readline/readline-6.3_p8-r2.ebuild,v 1.2 
2015/05/21 05:45:33 mattst88 Exp $
 
 EAPI=4
 
@@ -34,7 +34,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux"
 IUSE="static-libs"
 
 RDEPEND=">=sys-libs/ncurses-5.9-r3[${MULTILIB_USEDEP}]



1.221sys-libs/readline/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/readline/ChangeLog?rev=1.221&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/readline/ChangeLog?rev=1.221&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/readline/ChangeLog?r1=1.220&r2=1.221

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/readline/ChangeLog,v
retrieving revision 1.220
retrieving revision 1.221
diff -u -r1.220 -r1.221
--- ChangeLog   21 Jan 2015 11:50:44 -  1.220
+++ ChangeLog   21 May 2015 05:45:33 -  1.221
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/readline
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/readline/ChangeLog,v 1.220 
2015/01/21 11:50:44 polynomial-c Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/readline/ChangeLog,v 1.221 
2015/05/21 05:45:33 mattst88 Exp $
+
+  21 May 2015; Matt Turner  readline-6.3_p8-r2.ebuild:
+  alpha stable, bug 548756.
 
 *readline-6.3_p8-r2 (21 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in app-crypt/gnupg: gnupg-2.1.4.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 04:39:45

  Modified: gnupg-2.1.4.ebuild ChangeLog
  Log:
  added ~alpha, bug 546478.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.2  app-crypt/gnupg/gnupg-2.1.4.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.1.4.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.1.4.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/gnupg-2.1.4.ebuild?r1=1.1&r2=1.2

Index: gnupg-2.1.4.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.4.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- gnupg-2.1.4.ebuild  13 May 2015 15:16:48 -  1.1
+++ gnupg-2.1.4.ebuild  21 May 2015 04:39:45 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.4.ebuild,v 1.1 
2015/05/13 15:16:48 k_f Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/gnupg-2.1.4.ebuild,v 1.2 
2015/05/21 04:39:45 mattst88 Exp $
 
 EAPI="5"
 
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~arm ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
 IUSE="bzip2 doc +gnutls ldap nls readline static selinux smartcard tools usb"
 
 COMMON_DEPEND_LIBS="



1.604app-crypt/gnupg/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.604&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?rev=1.604&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-crypt/gnupg/ChangeLog?r1=1.603&r2=1.604

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v
retrieving revision 1.603
retrieving revision 1.604
diff -u -r1.603 -r1.604
--- ChangeLog   13 May 2015 15:16:48 -  1.603
+++ ChangeLog   21 May 2015 04:39:45 -  1.604
@@ -1,6 +1,9 @@
 # ChangeLog for app-crypt/gnupg
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.603 
2015/05/13 15:16:48 k_f Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-crypt/gnupg/ChangeLog,v 1.604 
2015/05/21 04:39:45 mattst88 Exp $
+
+  21 May 2015; Matt Turner  gnupg-2.1.4.ebuild:
+  added ~alpha, bug 546478.
 
 *gnupg-2.1.4 (13 May 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-libs/npth: npth-1.1.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 04:27:43

  Modified: npth-1.1.ebuild ChangeLog
  Log:
  added ~alpha, bug 546478.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.5  dev-libs/npth/npth-1.1.ebuild

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

Index: npth-1.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/npth/npth-1.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- npth-1.1.ebuild 26 Apr 2015 12:49:51 -  1.4
+++ npth-1.1.ebuild 21 May 2015 04:27:43 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/npth/npth-1.1.ebuild,v 1.4 
2015/04/26 12:49:51 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/npth/npth-1.1.ebuild,v 1.5 
2015/05/21 04:27:43 mattst88 Exp $
 
 EAPI=5
 inherit autotools-utils
@@ -11,5 +11,5 @@
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~arm ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~x86"
 IUSE="static-libs"



1.7  dev-libs/npth/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/npth/ChangeLog,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- ChangeLog   26 Apr 2015 12:49:51 -  1.6
+++ ChangeLog   21 May 2015 04:27:43 -  1.7
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/npth
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/npth/ChangeLog,v 1.6 2015/04/26 
12:49:51 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/npth/ChangeLog,v 1.7 2015/05/21 
04:27:43 mattst88 Exp $
+
+  21 May 2015; Matt Turner  npth-1.1.ebuild:
+  added ~alpha, bug 546478.
 
   26 Apr 2015; Anthony G. Basile  npth-0.91.ebuild,
   npth-1.0.ebuild, npth-1.1.ebuild:






[gentoo-commits] gentoo-x86 commit in sys-libs/glibc: glibc-2.20-r2.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 04:23:48

  Modified: glibc-2.20-r2.ebuild ChangeLog
  Log:
  alpha stable, bug 544034.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.10 sys-libs/glibc/glibc-2.20-r2.ebuild

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

Index: glibc-2.20-r2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.20-r2.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- glibc-2.20-r2.ebuild4 May 2015 03:03:19 -   1.9
+++ glibc-2.20-r2.ebuild21 May 2015 04:23:48 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.20-r2.ebuild,v 1.9 
2015/05/04 03:03:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/glibc-2.20-r2.ebuild,v 1.10 
2015/05/21 04:23:48 mattst88 Exp $
 
 EAPI="4"
 
@@ -10,7 +10,7 @@
 HOMEPAGE="http://www.gnu.org/software/libc/libc.html";
 
 LICENSE="LGPL-2.1+ BSD HPND ISC inner-net rc PCRE"
-KEYWORDS="~alpha amd64 arm arm64 -hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86"
+KEYWORDS="alpha amd64 arm arm64 -hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86"
 RESTRICT="strip" # strip ourself #46186
 EMULTILIB_PKG="true"
 



1.1052   sys-libs/glibc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?rev=1.1052&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?rev=1.1052&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-libs/glibc/ChangeLog?r1=1.1051&r2=1.1052

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v
retrieving revision 1.1051
retrieving revision 1.1052
diff -u -r1.1051 -r1.1052
--- ChangeLog   4 May 2015 03:03:19 -   1.1051
+++ ChangeLog   21 May 2015 04:23:48 -  1.1052
@@ -1,6 +1,9 @@
 # ChangeLog for sys-libs/glibc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.1051 
2015/05/04 03:03:19 vapier Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-libs/glibc/ChangeLog,v 1.1052 
2015/05/21 04:23:48 mattst88 Exp $
+
+  21 May 2015; Matt Turner  glibc-2.20-r2.ebuild:
+  alpha stable, bug 544034.
 
   04 May 2015; Mike Frysinger  glibc-2.20-r2.ebuild:
   Mark arm64/ia64/m68k/s390/sh stable #544034.






[gentoo-commits] gentoo-x86 commit in dev-libs/dmalloc: dmalloc-5.5.2-r6.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 04:23:04

  Modified: dmalloc-5.5.2-r6.ebuild ChangeLog
  Log:
  alpha stable, bug 547248.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.7  dev-libs/dmalloc/dmalloc-5.5.2-r6.ebuild

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

Index: dmalloc-5.5.2-r6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dmalloc/dmalloc-5.5.2-r6.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- dmalloc-5.5.2-r6.ebuild 28 Apr 2015 09:43:50 -  1.6
+++ dmalloc-5.5.2-r6.ebuild 21 May 2015 04:23:04 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dmalloc/dmalloc-5.5.2-r6.ebuild,v 
1.6 2015/04/28 09:43:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/dmalloc/dmalloc-5.5.2-r6.ebuild,v 
1.7 2015/05/21 04:23:04 mattst88 Exp $
 
 EAPI=5
 inherit autotools eutils multilib toolchain-funcs
@@ -11,7 +11,7 @@
 
 LICENSE="CC-BY-SA-3.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="static-libs threads"
 
 DEPEND="sys-apps/texinfo"



1.75 dev-libs/dmalloc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dmalloc/ChangeLog?rev=1.75&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dmalloc/ChangeLog?rev=1.75&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/dmalloc/ChangeLog?r1=1.74&r2=1.75

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/dmalloc/ChangeLog,v
retrieving revision 1.74
retrieving revision 1.75
diff -u -r1.74 -r1.75
--- ChangeLog   28 Apr 2015 09:43:50 -  1.74
+++ ChangeLog   21 May 2015 04:23:04 -  1.75
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/dmalloc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/dmalloc/ChangeLog,v 1.74 
2015/04/28 09:43:50 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/dmalloc/ChangeLog,v 1.75 
2015/05/21 04:23:04 mattst88 Exp $
+
+  21 May 2015; Matt Turner  dmalloc-5.5.2-r6.ebuild:
+  alpha stable, bug 547248.
 
   28 Apr 2015; Agostino Sarubbo  dmalloc-5.5.2-r6.ebuild:
   Stable for sparc, wrt bug #547248






[gentoo-commits] gentoo-x86 commit in dev-python/testtools: testtools-1.7.1.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 03:40:48

  Modified: testtools-1.7.1.ebuild ChangeLog
  Log:
  Added ~alpha, bug 544148.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.5  dev-python/testtools/testtools-1.7.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.7.1.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.7.1.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/testtools-1.7.1.ebuild?r1=1.4&r2=1.5

Index: testtools-1.7.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/testtools/testtools-1.7.1.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- testtools-1.7.1.ebuild  26 Apr 2015 16:52:04 -  1.4
+++ testtools-1.7.1.ebuild  21 May 2015 03:40:48 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testtools/testtools-1.7.1.ebuild,v 1.4 
2015/04/26 16:52:04 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/testtools/testtools-1.7.1.ebuild,v 1.5 
2015/05/21 03:40:48 mattst88 Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64"
 IUSE="doc test"
 
 CDEPEND="



1.123dev-python/testtools/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?rev=1.123&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?rev=1.123&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/testtools/ChangeLog?r1=1.122&r2=1.123

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v
retrieving revision 1.122
retrieving revision 1.123
diff -u -r1.122 -r1.123
--- ChangeLog   26 Apr 2015 16:52:04 -  1.122
+++ ChangeLog   21 May 2015 03:40:48 -  1.123
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/testtools
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v 1.122 
2015/04/26 16:52:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/testtools/ChangeLog,v 1.123 
2015/05/21 03:40:48 mattst88 Exp $
+
+  21 May 2015; Matt Turner  testtools-1.7.1.ebuild:
+  Added ~alpha, bug 544148.
 
   26 Apr 2015; Jeroen Roovers  testtools-1.7.1.ebuild:
   Marked ~ppc64 (bug #544148).






[gentoo-commits] gentoo-x86 commit in dev-python/unittest2: unittest2-1.0.1-r1.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 03:40:29

  Modified: unittest2-1.0.1-r1.ebuild ChangeLog
  Log:
  Added ~alpha, bug 544146.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  dev-python/unittest2/unittest2-1.0.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild?r1=1.2&r2=1.3

Index: unittest2-1.0.1-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- unittest2-1.0.1-r1.ebuild   26 Apr 2015 16:51:22 -  1.2
+++ unittest2-1.0.1-r1.ebuild   21 May 2015 03:40:29 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild,v 1.2 
2015/04/26 16:51:22 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/unittest2/unittest2-1.0.1-r1.ebuild,v 1.3 
2015/05/21 03:40:29 mattst88 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
@@ -13,7 +13,7 @@
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64"
 IUSE=""
 
 CDEPEND="



1.62 dev-python/unittest2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?rev=1.62&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?rev=1.62&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/unittest2/ChangeLog?r1=1.61&r2=1.62

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v
retrieving revision 1.61
retrieving revision 1.62
diff -u -r1.61 -r1.62
--- ChangeLog   26 Apr 2015 16:51:22 -  1.61
+++ ChangeLog   21 May 2015 03:40:29 -  1.62
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/unittest2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v 1.61 
2015/04/26 16:51:22 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/unittest2/ChangeLog,v 1.62 
2015/05/21 03:40:29 mattst88 Exp $
+
+  21 May 2015; Matt Turner  unittest2-1.0.1-r1.ebuild:
+  Added ~alpha, bug 544146.
 
   26 Apr 2015; Jeroen Roovers  unittest2-1.0.1-r1.ebuild:
   Marked ~ppc64 (bug #544148).






[gentoo-commits] gentoo-x86 commit in dev-python/traceback2: traceback2-1.4.0.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 03:40:13

  Modified: traceback2-1.4.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 544144.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.6  dev-python/traceback2/traceback2-1.4.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/traceback2/traceback2-1.4.0.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/traceback2/traceback2-1.4.0.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/traceback2/traceback2-1.4.0.ebuild?r1=1.5&r2=1.6

Index: traceback2-1.4.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/traceback2/traceback2-1.4.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- traceback2-1.4.0.ebuild 26 Apr 2015 16:50:24 -  1.5
+++ traceback2-1.4.0.ebuild 21 May 2015 03:40:13 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/traceback2/traceback2-1.4.0.ebuild,v 1.5 
2015/04/26 16:50:24 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/traceback2/traceback2-1.4.0.ebuild,v 1.6 
2015/05/21 03:40:13 mattst88 Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64"
 IUSE=""
 
 DEPEND="



1.6  dev-python/traceback2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/traceback2/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/traceback2/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/traceback2/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/traceback2/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   26 Apr 2015 16:50:24 -  1.5
+++ ChangeLog   21 May 2015 03:40:13 -  1.6
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/traceback2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/traceback2/ChangeLog,v 1.5 
2015/04/26 16:50:24 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/traceback2/ChangeLog,v 1.6 
2015/05/21 03:40:13 mattst88 Exp $
+
+  21 May 2015; Matt Turner  traceback2-1.4.0.ebuild:
+  Added ~alpha, bug 544144.
 
   26 Apr 2015; Jeroen Roovers  traceback2-1.4.0.ebuild:
   Marked ~ppc64 (bug #544148).






[gentoo-commits] gentoo-x86 commit in dev-python/linecache2: linecache2-1.0.0.ebuild ChangeLog

2015-05-20 Thread Matt Turner (mattst88)
mattst8815/05/21 03:40:03

  Modified: linecache2-1.0.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 544142.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.5  dev-python/linecache2/linecache2-1.0.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/linecache2/linecache2-1.0.0.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/linecache2/linecache2-1.0.0.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/linecache2/linecache2-1.0.0.ebuild?r1=1.4&r2=1.5

Index: linecache2-1.0.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-python/linecache2/linecache2-1.0.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- linecache2-1.0.0.ebuild 26 Apr 2015 16:49:58 -  1.4
+++ linecache2-1.0.0.ebuild 21 May 2015 03:40:03 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-python/linecache2/linecache2-1.0.0.ebuild,v 1.4 
2015/04/26 16:49:58 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-python/linecache2/linecache2-1.0.0.ebuild,v 1.5 
2015/05/21 03:40:03 mattst88 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
@@ -13,7 +13,7 @@
 
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc64"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64"
 IUSE="test"
 
 DEPEND="



1.5  dev-python/linecache2/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/linecache2/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/linecache2/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-python/linecache2/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-python/linecache2/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   26 Apr 2015 16:49:58 -  1.4
+++ ChangeLog   21 May 2015 03:40:03 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-python/linecache2
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-python/linecache2/ChangeLog,v 1.4 
2015/04/26 16:49:58 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-python/linecache2/ChangeLog,v 1.5 
2015/05/21 03:40:03 mattst88 Exp $
+
+  21 May 2015; Matt Turner  linecache2-1.0.0.ebuild:
+  Added ~alpha, bug 544142.
 
   26 Apr 2015; Jeroen Roovers  linecache2-1.0.0.ebuild:
   Marked ~ppc64 (bug #544148).






[gentoo-commits] gentoo-x86 commit in net-misc/stunnel: stunnel-5.14.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 06:18:43

  Modified: stunnel-5.14.ebuild ChangeLog
  Log:
  alpha stable, bug 546908.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.7  net-misc/stunnel/stunnel-5.14.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.14.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.14.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/stunnel-5.14.ebuild?r1=1.6&r2=1.7

Index: stunnel-5.14.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.14.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- stunnel-5.14.ebuild 28 Apr 2015 09:47:02 -  1.6
+++ stunnel-5.14.ebuild 20 May 2015 06:18:42 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.14.ebuild,v 1.6 
2015/04/28 09:47:02 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/stunnel-5.14.ebuild,v 1.7 
2015/05/20 06:18:42 mattst88 Exp $
 
 EAPI="5"
 
@@ -18,7 +18,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ppc ppc64 ~s390 sparc x86 ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
 IUSE="ipv6 selinux tcpd"
 
 DEPEND="tcpd? ( sys-apps/tcp-wrappers )



1.226net-misc/stunnel/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.226&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?rev=1.226&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/stunnel/ChangeLog?r1=1.225&r2=1.226

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v
retrieving revision 1.225
retrieving revision 1.226
diff -u -r1.225 -r1.226
--- ChangeLog   30 Apr 2015 11:44:04 -  1.225
+++ ChangeLog   20 May 2015 06:18:42 -  1.226
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/stunnel
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.225 
2015/04/30 11:44:04 blueness Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/stunnel/ChangeLog,v 1.226 
2015/05/20 06:18:42 mattst88 Exp $
+
+  20 May 2015; Matt Turner  stunnel-5.14.ebuild:
+  alpha stable, bug 546908.
 
 *stunnel-5.17 (30 Apr 2015)
 






[gentoo-commits] gentoo-x86 commit in net-libs/gnutls: gnutls-3.3.15.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 06:07:17

  Modified: gnutls-3.3.15.ebuild ChangeLog
  Log:
  alpha stable, bug 548636.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.8  net-libs/gnutls/gnutls-3.3.15.ebuild

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

Index: gnutls-3.3.15.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.3.15.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- gnutls-3.3.15.ebuild19 May 2015 07:22:54 -  1.7
+++ gnutls-3.3.15.ebuild20 May 2015 06:07:17 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.3.15.ebuild,v 1.7 
2015/05/19 07:22:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/gnutls-3.3.15.ebuild,v 1.8 
2015/05/20 06:07:17 mattst88 Exp $
 
 EAPI=5
 
@@ -14,7 +14,7 @@
 # soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled.
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN"
 IUSE="+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs 
test zlib ${IUSE_LINGUAS// / linguas_}"
 # heartbeat support is not disabled until re-licensing happens fullyf



1.543net-libs/gnutls/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.543&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?rev=1.543&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-libs/gnutls/ChangeLog?r1=1.542&r2=1.543

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v
retrieving revision 1.542
retrieving revision 1.543
diff -u -r1.542 -r1.543
--- ChangeLog   19 May 2015 07:22:54 -  1.542
+++ ChangeLog   20 May 2015 06:07:17 -  1.543
@@ -1,6 +1,9 @@
 # ChangeLog for net-libs/gnutls
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.542 
2015/05/19 07:22:54 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-libs/gnutls/ChangeLog,v 1.543 
2015/05/20 06:07:17 mattst88 Exp $
+
+  20 May 2015; Matt Turner  gnutls-3.3.15.ebuild:
+  alpha stable, bug 548636.
 
   19 May 2015; Agostino Sarubbo  gnutls-3.3.15.ebuild:
   Stable for x86, wrt bug #548636






[gentoo-commits] gentoo-x86 commit in dev-util/dialog: dialog-1.2.20150225.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 05:41:09

  Modified: dialog-1.2.20150225.ebuild ChangeLog
  Log:
  alpha stable, bug 547766.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.8  dev-util/dialog/dialog-1.2.20150225.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20150225.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20150225.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/dialog-1.2.20150225.ebuild?r1=1.7&r2=1.8

Index: dialog-1.2.20150225.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20150225.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- dialog-1.2.20150225.ebuild  28 Apr 2015 09:45:29 -  1.7
+++ dialog-1.2.20150225.ebuild  20 May 2015 05:41:09 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20150225.ebuild,v 1.7 
2015/04/28 09:45:29 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-util/dialog/dialog-1.2.20150225.ebuild,v 1.8 
2015/05/20 05:41:09 mattst88 Exp $
 
 EAPI=5
 inherit eutils multilib versionator
@@ -13,7 +13,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="examples minimal nls static-libs unicode"
 
 RDEPEND="



1.232dev-util/dialog/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.232&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?rev=1.232&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-util/dialog/ChangeLog?r1=1.231&r2=1.232

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v
retrieving revision 1.231
retrieving revision 1.232
diff -u -r1.231 -r1.232
--- ChangeLog   18 May 2015 04:34:24 -  1.231
+++ ChangeLog   20 May 2015 05:41:09 -  1.232
@@ -1,6 +1,9 @@
 # ChangeLog for dev-util/dialog
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.231 
2015/05/18 04:34:24 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-util/dialog/ChangeLog,v 1.232 
2015/05/20 05:41:09 mattst88 Exp $
+
+  20 May 2015; Matt Turner  dialog-1.2.20150225.ebuild:
+  alpha stable, bug 547766.
 
 *dialog-1.2.20150513 (18 May 2015)
 






[gentoo-commits] gentoo-x86 commit in dev-libs/openssl: openssl-0.9.8z_p6.ebuild openssl-1.0.1m.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 05:32:53

  Modified: openssl-0.9.8z_p6.ebuild openssl-1.0.1m.ebuild
ChangeLog
  Log:
  alpha stable, bug 547992.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.6  dev-libs/openssl/openssl-0.9.8z_p6.ebuild

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

Index: openssl-0.9.8z_p6.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p6.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- openssl-0.9.8z_p6.ebuild15 May 2015 11:20:58 -  1.5
+++ openssl-0.9.8z_p6.ebuild20 May 2015 05:32:53 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p6.ebuild,v 
1.5 2015/05/15 11:20:58 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-0.9.8z_p6.ebuild,v 
1.6 2015/05/20 05:32:53 mattst88 Exp $
 
 # this ebuild is only for the libcrypto.so.0.9.8 and libssl.so.0.9.8 SONAME 
for ABI compat
 
@@ -18,7 +18,7 @@
 
 LICENSE="openssl"
 SLOT="0.9.8"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd"
 IUSE="bindist gmp kerberos cpu_flags_x86_sse2 test zlib"
 RESTRICT="!bindist? ( bindist )"
 



1.9  dev-libs/openssl/openssl-1.0.1m.ebuild

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

Index: openssl-1.0.1m.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1m.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- openssl-1.0.1m.ebuild   15 May 2015 11:20:58 -  1.8
+++ openssl-1.0.1m.ebuild   20 May 2015 05:32:53 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1m.ebuild,v 
1.8 2015/05/15 11:20:58 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/openssl-1.0.1m.ebuild,v 
1.9 2015/05/20 05:32:53 mattst88 Exp $
 
 EAPI="4"
 
@@ -14,7 +14,7 @@
 
 LICENSE="openssl"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh ~sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="bindist gmp kerberos rfc3779 cpu_flags_x86_sse2 static-libs test 
+tls-heartbeat vanilla zlib"
 RESTRICT="!bindist? ( bindist )"
 



1.655dev-libs/openssl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?rev=1.655&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?rev=1.655&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/openssl/ChangeLog?r1=1.654&r2=1.655

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v
retrieving revision 1.654
retrieving revision 1.655
diff -u -r1.654 -r1.655
--- ChangeLog   15 May 2015 11:20:58 -  1.654
+++ ChangeLog   20 May 2015 05:32:53 -  1.655
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/openssl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.654 
2015/05/15 11:20:58 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/openssl/ChangeLog,v 1.655 
2015/05/20 05:32:53 mattst88 Exp $
+
+  20 May 2015; Matt Turner  openssl-0.9.8z_p6.ebuild,
+  openssl-1.0.1m.ebuild:
+  alpha stable, bug 547992.
 
   15 May 2015; Pacho Ramos  openssl-0.9.8z_p6.ebuild,
   openssl-1.0.1m.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-perl/Class-Load: Class-Load-0.220.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:52:05

  Modified: Class-Load-0.220.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.4  dev-perl/Class-Load/Class-Load-0.220.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-Load/Class-Load-0.220.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-Load/Class-Load-0.220.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-Load/Class-Load-0.220.0.ebuild?r1=1.3&r2=1.4

Index: Class-Load-0.220.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Class-Load/Class-Load-0.220.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Class-Load-0.220.0.ebuild   3 May 2015 08:27:45 -   1.3
+++ Class-Load-0.220.0.ebuild   20 May 2015 04:52:05 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-Load/Class-Load-0.220.0.ebuild,v 1.3 
2015/05/03 08:27:45 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Class-Load/Class-Load-0.220.0.ebuild,v 1.4 
2015/05/20 04:52:05 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="A working (require q{Class::Name}) and more"
 
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 RDEPEND="



1.49 dev-perl/Class-Load/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Class-Load/ChangeLog,v
retrieving revision 1.48
retrieving revision 1.49
diff -u -r1.48 -r1.49
--- ChangeLog   3 May 2015 08:27:45 -   1.48
+++ ChangeLog   20 May 2015 04:52:05 -  1.49
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Class-Load
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Load/ChangeLog,v 1.48 
2015/05/03 08:27:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-Load/ChangeLog,v 1.49 
2015/05/20 04:52:05 mattst88 Exp $
+
+  20 May 2015; Matt Turner  Class-Load-0.220.0.ebuild:
+  Added ~alpha, bug 548352.
 
   03 May 2015; Jeroen Roovers  Class-Load-0.220.0.ebuild:
   Mark ~hppa (bug #548352).






[gentoo-commits] gentoo-x86 commit in dev-perl/Sub-Exporter-Progressive: Sub-Exporter-Progressive-0.1.11.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:51:00

  Modified: Sub-Exporter-Progressive-0.1.11.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.6  
dev-perl/Sub-Exporter-Progressive/Sub-Exporter-Progressive-0.1.11.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Exporter-Progressive/Sub-Exporter-Progressive-0.1.11.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Exporter-Progressive/Sub-Exporter-Progressive-0.1.11.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Exporter-Progressive/Sub-Exporter-Progressive-0.1.11.ebuild?r1=1.5&r2=1.6

Index: Sub-Exporter-Progressive-0.1.11.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Sub-Exporter-Progressive/Sub-Exporter-Progressive-0.1.11.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- Sub-Exporter-Progressive-0.1.11.ebuild  29 Mar 2015 09:21:29 -  
1.5
+++ Sub-Exporter-Progressive-0.1.11.ebuild  20 May 2015 04:51:00 -  
1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Sub-Exporter-Progressive/Sub-Exporter-Progressive-0.1.11.ebuild,v
 1.5 2015/03/29 09:21:29 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Sub-Exporter-Progressive/Sub-Exporter-Progressive-0.1.11.ebuild,v
 1.6 2015/05/20 04:51:00 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="Only use Sub::Exporter if you need it"
 
 SLOT="0"
-KEYWORDS="amd64 arm ~hppa ppc ~ppc64 x86 ~ppc-aix ~x86-fbsd ~amd64-linux 
~x86-linux ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~hppa ppc ~ppc64 x86 ~ppc-aix ~x86-fbsd 
~amd64-linux ~x86-linux ~x64-macos ~x86-solaris"
 IUSE=""
 
 RDEPEND="



1.17 dev-perl/Sub-Exporter-Progressive/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Exporter-Progressive/ChangeLog?rev=1.17&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Exporter-Progressive/ChangeLog?rev=1.17&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Sub-Exporter-Progressive/ChangeLog?r1=1.16&r2=1.17

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Sub-Exporter-Progressive/ChangeLog,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -r1.16 -r1.17
--- ChangeLog   29 Mar 2015 09:21:29 -  1.16
+++ ChangeLog   20 May 2015 04:51:00 -  1.17
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Sub-Exporter-Progressive
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Sub-Exporter-Progressive/ChangeLog,v 1.16 
2015/03/29 09:21:29 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Sub-Exporter-Progressive/ChangeLog,v 1.17 
2015/05/20 04:51:00 mattst88 Exp $
+
+  20 May 2015; Matt Turner 
+  Sub-Exporter-Progressive-0.1.11.ebuild:
+  Added ~alpha, bug 548352.
 
   29 Mar 2015; Jeroen Roovers 
   Sub-Exporter-Progressive-0.1.11.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-perl/B-Hooks-EndOfScope: B-Hooks-EndOfScope-0.140.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:51:15

  Modified: B-Hooks-EndOfScope-0.140.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  
dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.140.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.140.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.140.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.140.0.ebuild?r1=1.2&r2=1.3

Index: B-Hooks-EndOfScope-0.140.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.140.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- B-Hooks-EndOfScope-0.140.0.ebuild   3 May 2015 08:14:45 -   1.2
+++ B-Hooks-EndOfScope-0.140.0.ebuild   20 May 2015 04:51:15 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.140.0.ebuild,v
 1.2 2015/05/03 08:14:45 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.140.0.ebuild,v
 1.3 2015/05/20 04:51:15 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="Execute code after a scope finished compilation"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~ppc-aix ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~ppc-aix ~x64-macos"
 IUSE="test"
 
 RDEPEND="



1.35 dev-perl/B-Hooks-EndOfScope/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Hooks-EndOfScope/ChangeLog?rev=1.35&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Hooks-EndOfScope/ChangeLog?rev=1.35&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/B-Hooks-EndOfScope/ChangeLog?r1=1.34&r2=1.35

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/B-Hooks-EndOfScope/ChangeLog,v
retrieving revision 1.34
retrieving revision 1.35
diff -u -r1.34 -r1.35
--- ChangeLog   3 May 2015 08:14:45 -   1.34
+++ ChangeLog   20 May 2015 04:51:15 -  1.35
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/B-Hooks-EndOfScope
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/B-Hooks-EndOfScope/ChangeLog,v 
1.34 2015/05/03 08:14:45 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/B-Hooks-EndOfScope/ChangeLog,v 
1.35 2015/05/20 04:51:15 mattst88 Exp $
+
+  20 May 2015; Matt Turner 
+  B-Hooks-EndOfScope-0.140.0.ebuild:
+  Added ~alpha, bug 548352.
 
   03 May 2015; Jeroen Roovers 
   B-Hooks-EndOfScope-0.140.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-perl/namespace-clean: namespace-clean-0.240.0-r1.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:51:38

  Modified: namespace-clean-0.240.0-r1.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.4  dev-perl/namespace-clean/namespace-clean-0.240.0-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/namespace-clean/namespace-clean-0.240.0-r1.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/namespace-clean/namespace-clean-0.240.0-r1.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/namespace-clean/namespace-clean-0.240.0-r1.ebuild?r1=1.3&r2=1.4

Index: namespace-clean-0.240.0-r1.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/namespace-clean/namespace-clean-0.240.0-r1.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- namespace-clean-0.240.0-r1.ebuild   3 May 2015 08:15:42 -   1.3
+++ namespace-clean-0.240.0-r1.ebuild   20 May 2015 04:51:38 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/namespace-clean/namespace-clean-0.240.0-r1.ebuild,v
 1.3 2015/05/03 08:15:42 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/namespace-clean/namespace-clean-0.240.0-r1.ebuild,v
 1.4 2015/05/20 04:51:38 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="Keep imports and functions out of your namespace"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~ppc-aix ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~ppc-aix ~x64-macos"
 IUSE="test"
 
 RDEPEND="



1.36 dev-perl/namespace-clean/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/namespace-clean/ChangeLog,v
retrieving revision 1.35
retrieving revision 1.36
diff -u -r1.35 -r1.36
--- ChangeLog   3 May 2015 08:15:42 -   1.35
+++ ChangeLog   20 May 2015 04:51:38 -  1.36
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/namespace-clean
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/namespace-clean/ChangeLog,v 1.35 
2015/05/03 08:15:42 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/namespace-clean/ChangeLog,v 1.36 
2015/05/20 04:51:38 mattst88 Exp $
+
+  20 May 2015; Matt Turner 
+  namespace-clean-0.240.0-r1.ebuild:
+  Added ~alpha, bug 548352.
 
   03 May 2015; Jeroen Roovers 
   namespace-clean-0.240.0-r1.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-perl/Module-Build-Tiny: Module-Build-Tiny-0.39.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:49:39

  Modified: Module-Build-Tiny-0.39.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.4  dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild?r1=1.3&r2=1.4

Index: Module-Build-Tiny-0.39.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Module-Build-Tiny-0.39.0.ebuild 3 May 2015 08:26:55 -   1.3
+++ Module-Build-Tiny-0.39.0.ebuild 20 May 2015 04:49:39 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild,v
 1.3 2015/05/03 08:26:55 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild,v
 1.4 2015/05/20 04:49:39 mattst88 Exp $
 
 EAPI=5
 MODULE_AUTHOR=LEONT
@@ -9,7 +9,7 @@
 
 DESCRIPTION='A tiny replacement for Module::Build'
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 RDEPEND="



1.6  dev-perl/Module-Build-Tiny/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Build-Tiny/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Build-Tiny/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Module-Build-Tiny/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Module-Build-Tiny/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   3 May 2015 08:26:55 -   1.5
+++ ChangeLog   20 May 2015 04:49:39 -  1.6
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/Module-Build-Tiny
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Build-Tiny/ChangeLog,v 1.5 
2015/05/03 08:26:55 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Module-Build-Tiny/ChangeLog,v 1.6 
2015/05/20 04:49:39 mattst88 Exp $
+
+  20 May 2015; Matt Turner 
+  Module-Build-Tiny-0.39.0.ebuild:
+  Added ~alpha, bug 548352.
 
   03 May 2015; Jeroen Roovers  
Module-Build-Tiny-0.39.0.ebuild:
   Mark ~hppa (bug #548352).






[gentoo-commits] gentoo-x86 commit in dev-perl/ExtUtils-InstallPaths: ExtUtils-InstallPaths-0.10.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:48:59

  Modified: ExtUtils-InstallPaths-0.10.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.6  
dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.10.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.10.0.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.10.0.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.10.0.ebuild?r1=1.5&r2=1.6

Index: ExtUtils-InstallPaths-0.10.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.10.0.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ExtUtils-InstallPaths-0.10.0.ebuild 3 May 2015 08:25:26 -   1.5
+++ ExtUtils-InstallPaths-0.10.0.ebuild 20 May 2015 04:48:59 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.10.0.ebuild,v
 1.5 2015/05/03 08:25:26 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ExtUtils-InstallPaths-0.10.0.ebuild,v
 1.6 2015/05/20 04:48:59 mattst88 Exp $
 EAPI=5
 MODULE_AUTHOR=LEONT
 MODULE_VERSION=0.010
@@ -9,7 +9,7 @@
 DESCRIPTION='Build.PL install path logic made easy'
 LICENSE=" || ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 DEPEND="



1.6  dev-perl/ExtUtils-InstallPaths/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ChangeLog?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ChangeLog?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ChangeLog?r1=1.5&r2=1.6

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ChangeLog,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- ChangeLog   3 May 2015 08:25:26 -   1.5
+++ ChangeLog   20 May 2015 04:48:59 -  1.6
@@ -1,6 +1,10 @@
 # ChangeLog for dev-perl/ExtUtils-InstallPaths
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ChangeLog,v 
1.5 2015/05/03 08:25:26 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-InstallPaths/ChangeLog,v 
1.6 2015/05/20 04:48:59 mattst88 Exp $
+
+  20 May 2015; Matt Turner 
+  ExtUtils-InstallPaths-0.10.0.ebuild:
+  Added ~alpha, bug 548352.
 
   03 May 2015; Jeroen Roovers 
   ExtUtils-InstallPaths-0.10.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-perl/ExtUtils-Helpers: ExtUtils-Helpers-0.22.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:48:19

  Modified: ExtUtils-Helpers-0.22.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.5  dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.22.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.22.0.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.22.0.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.22.0.ebuild?r1=1.4&r2=1.5

Index: ExtUtils-Helpers-0.22.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.22.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ExtUtils-Helpers-0.22.0.ebuild  3 May 2015 08:24:18 -   1.4
+++ ExtUtils-Helpers-0.22.0.ebuild  20 May 2015 04:48:19 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.22.0.ebuild,v
 1.4 2015/05/03 08:24:18 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Helpers/ExtUtils-Helpers-0.22.0.ebuild,v
 1.5 2015/05/20 04:48:19 mattst88 Exp $
 EAPI=5
 MODULE_AUTHOR=LEONT
 MODULE_VERSION=0.022
@@ -9,7 +9,7 @@
 DESCRIPTION='Various portability utilities for module builders'
 LICENSE=" || ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 DEPEND="



1.5  dev-perl/ExtUtils-Helpers/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Helpers/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Helpers/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Helpers/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Helpers/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   3 May 2015 08:24:18 -   1.4
+++ ChangeLog   20 May 2015 04:48:19 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/ExtUtils-Helpers
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Helpers/ChangeLog,v 1.4 
2015/05/03 08:24:18 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Helpers/ChangeLog,v 1.5 
2015/05/20 04:48:19 mattst88 Exp $
+
+  20 May 2015; Matt Turner  
ExtUtils-Helpers-0.22.0.ebuild:
+  Added ~alpha, bug 548352.
 
   03 May 2015; Jeroen Roovers  ExtUtils-Helpers-0.22.0.ebuild:
   Mark ~hppa (bug #548352).






[gentoo-commits] gentoo-x86 commit in dev-perl/ExtUtils-Config: ExtUtils-Config-0.7.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:47:53

  Modified: ExtUtils-Config-0.7.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548352.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.5  dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild?r1=1.4&r2=1.5

Index: ExtUtils-Config-0.7.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ExtUtils-Config-0.7.0.ebuild3 May 2015 08:23:28 -   1.4
+++ ExtUtils-Config-0.7.0.ebuild20 May 2015 04:47:53 -  1.5
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild,v 
1.4 2015/05/03 08:23:28 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Config/ExtUtils-Config-0.7.0.ebuild,v 
1.5 2015/05/20 04:47:53 mattst88 Exp $
 EAPI=5
 MODULE_AUTHOR=LEONT
 MODULE_VERSION=0.007
@@ -9,7 +9,7 @@
 DESCRIPTION='A wrapper for perl'\''s configuration'
 LICENSE=" || ( Artistic GPL-2 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 DEPEND="



1.5  dev-perl/ExtUtils-Config/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Config/ChangeLog?rev=1.5&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Config/ChangeLog?rev=1.5&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/ExtUtils-Config/ChangeLog?r1=1.4&r2=1.5

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Config/ChangeLog,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -r1.4 -r1.5
--- ChangeLog   3 May 2015 08:23:28 -   1.4
+++ ChangeLog   20 May 2015 04:47:53 -  1.5
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/ExtUtils-Config
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Config/ChangeLog,v 1.4 
2015/05/03 08:23:28 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/ExtUtils-Config/ChangeLog,v 1.5 
2015/05/20 04:47:53 mattst88 Exp $
+
+  20 May 2015; Matt Turner  ExtUtils-Config-0.7.0.ebuild:
+  Added ~alpha, bug 548352.
 
   03 May 2015; Jeroen Roovers  ExtUtils-Config-0.7.0.ebuild:
   Mark ~hppa (bug #548352).






[gentoo-commits] gentoo-x86 commit in dev-perl/Crypt-SSLeay: Crypt-SSLeay-0.720.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:38:33

  Modified: Crypt-SSLeay-0.720.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548416.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0.ebuild?r1=1.2&r2=1.3

Index: Crypt-SSLeay-0.720.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Crypt-SSLeay-0.720.0.ebuild 3 May 2015 17:39:20 -   1.2
+++ Crypt-SSLeay-0.720.0.ebuild 20 May 2015 04:38:33 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0.ebuild,v 1.2 
2015/05/03 17:39:20 dilfridge Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Crypt-SSLeay/Crypt-SSLeay-0.720.0.ebuild,v 1.3 
2015/05/20 04:38:33 mattst88 Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="Artistic-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 
~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~x86 ~ppc-aix ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



1.90 dev-perl/Crypt-SSLeay/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Crypt-SSLeay/ChangeLog?rev=1.90&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Crypt-SSLeay/ChangeLog?rev=1.90&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Crypt-SSLeay/ChangeLog?r1=1.89&r2=1.90

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Crypt-SSLeay/ChangeLog,v
retrieving revision 1.89
retrieving revision 1.90
diff -u -r1.89 -r1.90
--- ChangeLog   3 May 2015 17:39:20 -   1.89
+++ ChangeLog   20 May 2015 04:38:33 -  1.90
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Crypt-SSLeay
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-SSLeay/ChangeLog,v 1.89 
2015/05/03 17:39:20 dilfridge Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Crypt-SSLeay/ChangeLog,v 1.90 
2015/05/20 04:38:33 mattst88 Exp $
+
+  20 May 2015; Matt Turner  Crypt-SSLeay-0.720.0.ebuild:
+  Added ~alpha, bug 548416.
 
   03 May 2015; Andreas K. Huettel 
   Crypt-SSLeay-0.720.0.ebuild:






[gentoo-commits] gentoo-x86 commit in dev-perl/Path-Class: Path-Class-0.350.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:37:40

  Modified: Path-Class-0.350.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548416.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.4  dev-perl/Path-Class/Path-Class-0.350.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Path-Class/Path-Class-0.350.0.ebuild?rev=1.4&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Path-Class/Path-Class-0.350.0.ebuild?rev=1.4&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Path-Class/Path-Class-0.350.0.ebuild?r1=1.3&r2=1.4

Index: Path-Class-0.350.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Path-Class/Path-Class-0.350.0.ebuild,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- Path-Class-0.350.0.ebuild   29 Mar 2015 09:26:04 -  1.3
+++ Path-Class-0.350.0.ebuild   20 May 2015 04:37:40 -  1.4
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Path-Class/Path-Class-0.350.0.ebuild,v 1.3 
2015/03/29 09:26:04 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Path-Class/Path-Class-0.350.0.ebuild,v 1.4 
2015/05/20 04:37:40 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="Cross-platform path specification manipulation"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~ppc-aix ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



1.59 dev-perl/Path-Class/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Path-Class/ChangeLog?rev=1.59&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Path-Class/ChangeLog?rev=1.59&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Path-Class/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Path-Class/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   29 Mar 2015 09:26:04 -  1.58
+++ ChangeLog   20 May 2015 04:37:40 -  1.59
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Path-Class
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Path-Class/ChangeLog,v 1.58 
2015/03/29 09:26:04 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Path-Class/ChangeLog,v 1.59 
2015/05/20 04:37:40 mattst88 Exp $
+
+  20 May 2015; Matt Turner  Path-Class-0.350.0.ebuild:
+  Added ~alpha, bug 548416.
 
   29 Mar 2015; Jeroen Roovers  Path-Class-0.350.0.ebuild:
   Marked ~hppa (bug #544064).






[gentoo-commits] gentoo-x86 commit in dev-perl/Algorithm-C3: Algorithm-C3-0.90.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:22:33

  Modified: Algorithm-C3-0.90.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548282.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  dev-perl/Algorithm-C3/Algorithm-C3-0.90.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Algorithm-C3/Algorithm-C3-0.90.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Algorithm-C3/Algorithm-C3-0.90.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Algorithm-C3/Algorithm-C3-0.90.0.ebuild?r1=1.2&r2=1.3

Index: Algorithm-C3-0.90.0.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/dev-perl/Algorithm-C3/Algorithm-C3-0.90.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Algorithm-C3-0.90.0.ebuild  18 May 2015 05:33:01 -  1.2
+++ Algorithm-C3-0.90.0.ebuild  20 May 2015 04:22:33 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Algorithm-C3/Algorithm-C3-0.90.0.ebuild,v 1.2 
2015/05/18 05:33:01 jer Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/dev-perl/Algorithm-C3/Algorithm-C3-0.90.0.ebuild,v 1.3 
2015/05/20 04:22:33 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="A module for merging hierarchies using the C3 algorithm"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86 ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~ppc64 ~x86 ~x86-solaris"
 IUSE="test"
 
 RDEPEND=""



1.11 dev-perl/Algorithm-C3/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Algorithm-C3/ChangeLog?rev=1.11&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Algorithm-C3/ChangeLog?rev=1.11&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Algorithm-C3/ChangeLog?r1=1.10&r2=1.11

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Algorithm-C3/ChangeLog,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- ChangeLog   18 May 2015 05:33:01 -  1.10
+++ ChangeLog   20 May 2015 04:22:33 -  1.11
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Algorithm-C3
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Algorithm-C3/ChangeLog,v 1.10 
2015/05/18 05:33:01 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Algorithm-C3/ChangeLog,v 1.11 
2015/05/20 04:22:33 mattst88 Exp $
+
+  20 May 2015; Matt Turner  Algorithm-C3-0.90.0.ebuild:
+  Added ~alpha, bug 548282.
 
   18 May 2015; Jeroen Roovers  Algorithm-C3-0.90.0.ebuild:
   Mark ~ppc64 (bug #548282).






[gentoo-commits] gentoo-x86 commit in dev-perl/Class-C3: Class-C3-0.280.0.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:23:06

  Modified: Class-C3-0.280.0.ebuild ChangeLog
  Log:
  Added ~alpha, bug 548282.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  dev-perl/Class-C3/Class-C3-0.280.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-C3/Class-C3-0.280.0.ebuild?rev=1.3&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-C3/Class-C3-0.280.0.ebuild?rev=1.3&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-perl/Class-C3/Class-C3-0.280.0.ebuild?r1=1.2&r2=1.3

Index: Class-C3-0.280.0.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Class-C3/Class-C3-0.280.0.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- Class-C3-0.280.0.ebuild 18 May 2015 05:32:48 -  1.2
+++ Class-C3-0.280.0.ebuild 20 May 2015 04:23:06 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-C3/Class-C3-0.280.0.ebuild,v 
1.2 2015/05/18 05:32:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-C3/Class-C3-0.280.0.ebuild,v 
1.3 2015/05/20 04:23:06 mattst88 Exp $
 
 EAPI=5
 
@@ -11,7 +11,7 @@
 DESCRIPTION="A pragma to use the C3 method resolution order algortihm"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~ppc64 ~x86"
 IUSE="test"
 
 RDEPEND="



1.39 dev-perl/Class-C3/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-perl/Class-C3/ChangeLog,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -r1.38 -r1.39
--- ChangeLog   18 May 2015 05:32:48 -  1.38
+++ ChangeLog   20 May 2015 04:23:06 -  1.39
@@ -1,6 +1,9 @@
 # ChangeLog for dev-perl/Class-C3
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-C3/ChangeLog,v 1.38 
2015/05/18 05:32:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-perl/Class-C3/ChangeLog,v 1.39 
2015/05/20 04:23:06 mattst88 Exp $
+
+  20 May 2015; Matt Turner  Class-C3-0.280.0.ebuild:
+  Added ~alpha, bug 548282.
 
   18 May 2015; Jeroen Roovers  Class-C3-0.280.0.ebuild:
   Mark ~ppc64 (bug #548282).






[gentoo-commits] gentoo-x86 commit in sys-devel/automake: automake-1.14.1.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 04:21:29

  Modified: automake-1.14.1.ebuild ChangeLog
  Log:
  alpha stable, bug 547876.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.6  sys-devel/automake/automake-1.14.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.14.1.ebuild?rev=1.6&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.14.1.ebuild?rev=1.6&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/automake-1.14.1.ebuild?r1=1.5&r2=1.6

Index: automake-1.14.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.14.1.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- automake-1.14.1.ebuild  15 May 2015 10:59:15 -  1.5
+++ automake-1.14.1.ebuild  20 May 2015 04:21:29 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.14.1.ebuild,v 
1.5 2015/05/15 10:59:15 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/automake-1.14.1.ebuild,v 
1.6 2015/05/20 04:21:29 mattst88 Exp $
 
 EAPI="4"
 
@@ -24,7 +24,7 @@
 LICENSE="GPL-2"
 # Use Gentoo versioning for slotting.
 SLOT="${PV:0:4}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE=""
 
 RDEPEND="dev-lang/perl



1.220sys-devel/automake/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.220&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?rev=1.220&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/automake/ChangeLog?r1=1.219&r2=1.220

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v
retrieving revision 1.219
retrieving revision 1.220
diff -u -r1.219 -r1.220
--- ChangeLog   15 May 2015 10:59:15 -  1.219
+++ ChangeLog   20 May 2015 04:21:29 -  1.220
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/automake
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.219 
2015/05/15 10:59:15 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/automake/ChangeLog,v 1.220 
2015/05/20 04:21:29 mattst88 Exp $
+
+  20 May 2015; Matt Turner  automake-1.14.1.ebuild:
+  alpha stable, bug 547876.
 
   15 May 2015; Pacho Ramos  automake-1.14.1.ebuild:
   ppc stable wrt bug #547876






[gentoo-commits] gentoo-x86 commit in dev-db/sqlite: sqlite-3.8.10.1.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 01:59:21

  Modified: sqlite-3.8.10.1.ebuild ChangeLog
  Log:
  alpha stable, bug 549258.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.10 dev-db/sqlite/sqlite-3.8.10.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.8.10.1.ebuild?rev=1.10&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.8.10.1.ebuild?rev=1.10&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/sqlite-3.8.10.1.ebuild?r1=1.9&r2=1.10

Index: sqlite-3.8.10.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.8.10.1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- sqlite-3.8.10.1.ebuild  19 May 2015 07:23:01 -  1.9
+++ sqlite-3.8.10.1.ebuild  20 May 2015 01:59:21 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.8.10.1.ebuild,v 1.9 
2015/05/19 07:23:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/sqlite-3.8.10.1.ebuild,v 1.10 
2015/05/20 01:59:21 mattst88 Exp $
 
 EAPI="5"
 
@@ -20,7 +20,7 @@
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="debug doc icu +readline secure-delete static-libs tcl test tools"
 
 RDEPEND="icu? ( dev-libs/icu:0=[${MULTILIB_USEDEP}] )



1.570dev-db/sqlite/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.570&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?rev=1.570&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-db/sqlite/ChangeLog?r1=1.569&r2=1.570

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v
retrieving revision 1.569
retrieving revision 1.570
diff -u -r1.569 -r1.570
--- ChangeLog   19 May 2015 07:23:01 -  1.569
+++ ChangeLog   20 May 2015 01:59:21 -  1.570
@@ -1,6 +1,9 @@
 # ChangeLog for dev-db/sqlite
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.569 2015/05/19 
07:23:01 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-db/sqlite/ChangeLog,v 1.570 2015/05/20 
01:59:21 mattst88 Exp $
+
+  20 May 2015; Matt Turner  sqlite-3.8.10.1.ebuild:
+  alpha stable, bug 549258.
 
   19 May 2015; Agostino Sarubbo  sqlite-3.8.10.1.ebuild:
   Stable for x86, wrt bug #549258






[gentoo-commits] gentoo-x86 commit in app-arch/pigz: pigz-2.3.3.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 01:55:38

  Modified: pigz-2.3.3.ebuild ChangeLog
  Log:
  alpha stable.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.2  app-arch/pigz/pigz-2.3.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/pigz/pigz-2.3.3.ebuild?rev=1.2&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/pigz/pigz-2.3.3.ebuild?rev=1.2&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/pigz/pigz-2.3.3.ebuild?r1=1.1&r2=1.2

Index: pigz-2.3.3.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.3.3.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- pigz-2.3.3.ebuild   27 Jan 2015 04:33:36 -  1.1
+++ pigz-2.3.3.ebuild   20 May 2015 01:55:37 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.3.3.ebuild,v 1.1 
2015/01/27 04:33:36 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/pigz-2.3.3.ebuild,v 1.2 
2015/05/20 01:55:37 mattst88 Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86 ~amd64-linux 
~sparc64-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~sparc ~x86 ~amd64-linux 
~sparc64-solaris"
 IUSE="static symlink test"
 
 LIB_DEPEND="sys-libs/zlib[static-libs(+)]"



1.42 app-arch/pigz/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/pigz/ChangeLog?rev=1.42&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/pigz/ChangeLog?rev=1.42&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/app-arch/pigz/ChangeLog?r1=1.41&r2=1.42

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -r1.41 -r1.42
--- ChangeLog   27 Jan 2015 04:33:36 -  1.41
+++ ChangeLog   20 May 2015 01:55:37 -  1.42
@@ -1,6 +1,9 @@
 # ChangeLog for app-arch/pigz
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.41 2015/01/27 
04:33:36 radhermit Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-arch/pigz/ChangeLog,v 1.42 2015/05/20 
01:55:37 mattst88 Exp $
+
+  20 May 2015; Matt Turner  pigz-2.3.3.ebuild:
+  alpha stable.
 
 *pigz-2.3.3 (27 Jan 2015)
 






[gentoo-commits] gentoo-x86 commit in net-misc/curl: curl-7.42.1.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 01:09:41

  Modified: curl-7.42.1.ebuild ChangeLog
  Log:
  alpha stable, bug 548130.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.7  net-misc/curl/curl-7.42.1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.42.1.ebuild?rev=1.7&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.42.1.ebuild?rev=1.7&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/curl-7.42.1.ebuild?r1=1.6&r2=1.7

Index: curl-7.42.1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.42.1.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- curl-7.42.1.ebuild  15 May 2015 08:47:31 -  1.6
+++ curl-7.42.1.ebuild  20 May 2015 01:09:41 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.42.1.ebuild,v 1.6 
2015/05/15 08:47:31 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/curl-7.42.1.ebuild,v 1.7 
2015/05/20 01:09:41 mattst88 Exp $
 
 EAPI="5"
 
@@ -12,7 +12,7 @@
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="adns idn ipv6 kerberos ldap metalink rtmp samba ssh ssl static-libs test 
threads"
 IUSE="${IUSE} curl_ssl_axtls curl_ssl_gnutls curl_ssl_nss +curl_ssl_openssl 
curl_ssl_polarssl curl_ssl_winssl"
 IUSE="${IUSE} elibc_Winnt"



1.412net-misc/curl/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.412&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?rev=1.412&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/net-misc/curl/ChangeLog?r1=1.411&r2=1.412

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v
retrieving revision 1.411
retrieving revision 1.412
diff -u -r1.411 -r1.412
--- ChangeLog   15 May 2015 08:47:31 -  1.411
+++ ChangeLog   20 May 2015 01:09:41 -  1.412
@@ -1,6 +1,9 @@
 # ChangeLog for net-misc/curl
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.411 2015/05/15 
08:47:31 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/net-misc/curl/ChangeLog,v 1.412 2015/05/20 
01:09:41 mattst88 Exp $
+
+  20 May 2015; Matt Turner  curl-7.42.1.ebuild:
+  alpha stable, bug 548130.
 
   15 May 2015; Mikle Kolyada  curl-7.42.1.ebuild:
   x86 stable wrt bug #548130






[gentoo-commits] gentoo-x86 commit in dev-libs/mpc: mpc-1.0.2-r1.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 00:40:48

  Modified: mpc-1.0.2-r1.ebuild ChangeLog
  Log:
  alpha stable, bug 531742.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.10 dev-libs/mpc/mpc-1.0.2-r1.ebuild

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

Index: mpc-1.0.2-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mpc/mpc-1.0.2-r1.ebuild,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -r1.9 -r1.10
--- mpc-1.0.2-r1.ebuild 15 May 2015 17:34:39 -  1.9
+++ mpc-1.0.2-r1.ebuild 20 May 2015 00:40:48 -  1.10
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpc/mpc-1.0.2-r1.ebuild,v 1.9 
2015/05/15 17:34:39 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpc/mpc-1.0.2-r1.ebuild,v 1.10 
2015/05/20 00:40:48 mattst88 Exp $
 
 EAPI="4"
 
@@ -12,7 +12,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 DEPEND=">=dev-libs/gmp-4.3.2[${MULTILIB_USEDEP},static-libs?]



1.61 dev-libs/mpc/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mpc/ChangeLog?rev=1.61&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mpc/ChangeLog?rev=1.61&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mpc/ChangeLog?r1=1.60&r2=1.61

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mpc/ChangeLog,v
retrieving revision 1.60
retrieving revision 1.61
diff -u -r1.60 -r1.61
--- ChangeLog   15 May 2015 17:34:39 -  1.60
+++ ChangeLog   20 May 2015 00:40:48 -  1.61
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/mpc
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpc/ChangeLog,v 1.60 2015/05/15 
17:34:39 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpc/ChangeLog,v 1.61 2015/05/20 
00:40:48 mattst88 Exp $
+
+  20 May 2015; Matt Turner  mpc-1.0.2-r1.ebuild:
+  alpha stable, bug 531742.
 
   15 May 2015; Mikle Kolyada  mpc-1.0.2-r1.ebuild:
   amd64 stable wrt bug #531742






[gentoo-commits] gentoo-x86 commit in dev-libs/mpfr: mpfr-3.1.2_p10.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 00:39:57

  Modified: mpfr-3.1.2_p10.ebuild ChangeLog
  Log:
  alpha stable, bug 549520.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.6  dev-libs/mpfr/mpfr-3.1.2_p10.ebuild

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

Index: mpfr-3.1.2_p10.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mpfr/mpfr-3.1.2_p10.ebuild,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- mpfr-3.1.2_p10.ebuild   17 May 2015 06:33:31 -  1.5
+++ mpfr-3.1.2_p10.ebuild   20 May 2015 00:39:57 -  1.6
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/mpfr-3.1.2_p10.ebuild,v 1.5 
2015/05/17 06:33:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/mpfr-3.1.2_p10.ebuild,v 1.6 
2015/05/20 00:39:57 mattst88 Exp $
 
 EAPI="4"
 
@@ -16,7 +16,7 @@
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND=">=dev-libs/gmp-4.1.4-r2[${MULTILIB_USEDEP},static-libs?]"



1.190dev-libs/mpfr/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mpfr/ChangeLog?rev=1.190&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mpfr/ChangeLog?rev=1.190&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/mpfr/ChangeLog?r1=1.189&r2=1.190

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/mpfr/ChangeLog,v
retrieving revision 1.189
retrieving revision 1.190
diff -u -r1.189 -r1.190
--- ChangeLog   17 May 2015 06:33:31 -  1.189
+++ ChangeLog   20 May 2015 00:39:57 -  1.190
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/mpfr
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/ChangeLog,v 1.189 2015/05/17 
06:33:31 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/mpfr/ChangeLog,v 1.190 2015/05/20 
00:39:57 mattst88 Exp $
+
+  20 May 2015; Matt Turner  mpfr-3.1.2_p10.ebuild:
+  alpha stable, bug 549520.
 
   17 May 2015; Jeroen Roovers  mpfr-3.1.2_p10.ebuild:
   Stable for HPPA (bug #549520).






[gentoo-commits] gentoo-x86 commit in dev-libs/libtasn1: libtasn1-4.5.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 00:38:11

  Modified: libtasn1-4.5.ebuild ChangeLog
  Log:
  alpha stable, bug 548252.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.9  dev-libs/libtasn1/libtasn1-4.5.ebuild

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

Index: libtasn1-4.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-4.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- libtasn1-4.5.ebuild 19 May 2015 07:25:19 -  1.8
+++ libtasn1-4.5.ebuild 20 May 2015 00:38:11 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-4.5.ebuild,v 1.8 
2015/05/19 07:25:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/libtasn1-4.5.ebuild,v 1.9 
2015/05/20 00:38:11 mattst88 Exp $
 
 EAPI=5
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3 LGPL-2.1"
 SLOT="0/6" # subslot = libtasn1 soname version
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc static-libs"
 
 DEPEND=">=dev-lang/perl-5.6



1.248dev-libs/libtasn1/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.248&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?rev=1.248&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libtasn1/ChangeLog?r1=1.247&r2=1.248

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v
retrieving revision 1.247
retrieving revision 1.248
diff -u -r1.247 -r1.248
--- ChangeLog   19 May 2015 07:25:19 -  1.247
+++ ChangeLog   20 May 2015 00:38:11 -  1.248
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libtasn1
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.247 
2015/05/19 07:25:19 ago Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libtasn1/ChangeLog,v 1.248 
2015/05/20 00:38:11 mattst88 Exp $
+
+  20 May 2015; Matt Turner  libtasn1-4.5.ebuild:
+  alpha stable, bug 548252.
 
   19 May 2015; Agostino Sarubbo  libtasn1-4.5.ebuild:
   Stable for x86, wrt bug #548252






[gentoo-commits] gentoo-x86 commit in sys-devel/patch: patch-2.7.5.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 00:36:19

  Modified: patch-2.7.5.ebuild ChangeLog
  Log:
  alpha stable, bug 548120.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.9  sys-devel/patch/patch-2.7.5.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.5.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.5.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/patch-2.7.5.ebuild?r1=1.8&r2=1.9

Index: patch-2.7.5.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.7.5.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- patch-2.7.5.ebuild  15 May 2015 16:06:33 -  1.8
+++ patch-2.7.5.ebuild  20 May 2015 00:36:19 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.7.5.ebuild,v 1.8 
2015/05/15 16:06:33 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/patch-2.7.5.ebuild,v 1.9 
2015/05/20 00:36:19 mattst88 Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static test xattr"
 
 RDEPEND="xattr? ( sys-apps/attr )"



1.91 sys-devel/patch/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?rev=1.91&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?rev=1.91&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/patch/ChangeLog?r1=1.90&r2=1.91

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v
retrieving revision 1.90
retrieving revision 1.91
diff -u -r1.90 -r1.91
--- ChangeLog   15 May 2015 16:06:33 -  1.90
+++ ChangeLog   20 May 2015 00:36:19 -  1.91
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/patch
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.90 2015/05/15 
16:06:33 zlogene Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/patch/ChangeLog,v 1.91 2015/05/20 
00:36:19 mattst88 Exp $
+
+  20 May 2015; Matt Turner  patch-2.7.5.ebuild:
+  alpha stable, bug 548120.
 
   15 May 2015; Mikle Kolyada  patch-2.7.5.ebuild:
   arm stable wrt bug #548120






[gentoo-commits] gentoo-x86 commit in dev-libs/libpcre: libpcre-8.36.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 00:35:01

  Modified: libpcre-8.36.ebuild ChangeLog
  Log:
  alpha stable, bug 548234.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.7  dev-libs/libpcre/libpcre-8.36.ebuild

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

Index: libpcre-8.36.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-8.36.ebuild,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -r1.6 -r1.7
--- libpcre-8.36.ebuild 15 May 2015 10:44:41 -  1.6
+++ libpcre-8.36.ebuild 20 May 2015 00:35:01 -  1.7
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-8.36.ebuild,v 1.6 
2015/05/15 10:44:41 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/libpcre-8.36.ebuild,v 1.7 
2015/05/20 00:35:01 mattst88 Exp $
 
 EAPI="4"
 
@@ -19,7 +19,7 @@
 
 LICENSE="BSD"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="bzip2 +cxx +jit libedit pcre16 pcre32 +readline +recursion-limit 
static-libs unicode zlib"
 REQUIRED_USE="readline? ( !libedit )
libedit? ( !readline )"



1.253dev-libs/libpcre/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpcre/ChangeLog?rev=1.253&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpcre/ChangeLog?rev=1.253&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-libs/libpcre/ChangeLog?r1=1.252&r2=1.253

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v
retrieving revision 1.252
retrieving revision 1.253
diff -u -r1.252 -r1.253
--- ChangeLog   15 May 2015 10:44:41 -  1.252
+++ ChangeLog   20 May 2015 00:35:01 -  1.253
@@ -1,6 +1,9 @@
 # ChangeLog for dev-libs/libpcre
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.252 
2015/05/15 10:44:41 pacho Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/libpcre/ChangeLog,v 1.253 
2015/05/20 00:35:01 mattst88 Exp $
+
+  20 May 2015; Matt Turner  libpcre-8.36.ebuild:
+  alpha stable, bug 548234.
 
   15 May 2015; Pacho Ramos  libpcre-8.36.ebuild:
   ppc stable wrt bug #548234






[gentoo-commits] gentoo-x86 commit in dev-libs/jsoncpp: jsoncpp-0.10.2.ebuild jsoncpp-1.6.2.ebuild ChangeLog

2015-05-19 Thread Matt Turner (mattst88)
mattst8815/05/20 00:28:41

  Modified: jsoncpp-0.10.2.ebuild jsoncpp-1.6.2.ebuild
ChangeLog
  Log:
  Added ~alpha, bug 539126.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.3  dev-libs/jsoncpp/jsoncpp-0.10.2.ebuild

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

Index: jsoncpp-0.10.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/jsoncpp-0.10.2.ebuild,v
retrieving revision 1.2
retrieving revision 1.3
diff -u -r1.2 -r1.3
--- jsoncpp-0.10.2.ebuild   5 May 2015 07:51:52 -   1.2
+++ jsoncpp-0.10.2.ebuild   20 May 2015 00:28:41 -  1.3
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/jsoncpp-0.10.2.ebuild,v 
1.2 2015/05/05 07:51:52 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/jsoncpp-0.10.2.ebuild,v 
1.3 2015/05/20 00:28:41 mattst88 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE="|| ( public-domain MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~x86"
 IUSE="doc test"
 
 DEPEND="



1.2  dev-libs/jsoncpp/jsoncpp-1.6.2.ebuild

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

Index: jsoncpp-1.6.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/jsoncpp-1.6.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- jsoncpp-1.6.2.ebuild12 May 2015 17:57:03 -  1.1
+++ jsoncpp-1.6.2.ebuild20 May 2015 00:28:41 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/jsoncpp-1.6.2.ebuild,v 1.1 
2015/05/12 17:57:03 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/jsoncpp-1.6.2.ebuild,v 1.2 
2015/05/20 00:28:41 mattst88 Exp $
 
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
@@ -13,7 +13,7 @@
 
 LICENSE="|| ( public-domain MIT )"
 SLOT="0/1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc64 ~x86"
 IUSE="doc test"
 
 DEPEND="



1.19 dev-libs/jsoncpp/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/ChangeLog,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -r1.18 -r1.19
--- ChangeLog   12 May 2015 17:57:03 -  1.18
+++ ChangeLog   20 May 2015 00:28:41 -  1.19
@@ -1,6 +1,10 @@
 # ChangeLog for dev-libs/jsoncpp
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/ChangeLog,v 1.18 
2015/05/12 17:57:03 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/dev-libs/jsoncpp/ChangeLog,v 1.19 
2015/05/20 00:28:41 mattst88 Exp $
+
+  20 May 2015; Matt Turner  jsoncpp-0.10.2.ebuild,
+  jsoncpp-1.6.2.ebuild:
+  Added ~alpha, bug 539126.
 
 *jsoncpp-1.6.2 (12 May 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: ChangeLog mesa-10.5.2.ebuild mesa-10.4.4.ebuild mesa-10.5.1.ebuild

2015-05-11 Thread Matt Turner (mattst88)
mattst8815/05/11 21:44:05

  Modified: ChangeLog
  Removed:  mesa-10.5.2.ebuild mesa-10.4.4.ebuild
mesa-10.5.1.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.640media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.639
retrieving revision 1.640
diff -u -r1.639 -r1.640
--- ChangeLog   11 May 2015 21:42:31 -  1.639
+++ ChangeLog   11 May 2015 21:44:05 -  1.640
@@ -1,6 +1,10 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.639 
2015/05/11 21:42:31 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.640 
2015/05/11 21:44:05 mattst88 Exp $
+
+  11 May 2015; Matt Turner  -mesa-10.4.4.ebuild,
+  -mesa-10.5.1.ebuild, -mesa-10.5.2.ebuild:
+  Drop old.
 
 *mesa-10.5.5 (11 May 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.5.5.ebuild ChangeLog

2015-05-11 Thread Matt Turner (mattst88)
mattst8815/05/11 21:42:31

  Modified: ChangeLog
  Added:mesa-10.5.5.ebuild
  Log:
  Version bump to 10.5.5.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.639media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.638
retrieving revision 1.639
diff -u -r1.638 -r1.639
--- ChangeLog   28 Apr 2015 00:45:39 -  1.638
+++ ChangeLog   11 May 2015 21:42:31 -  1.639
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.638 
2015/04/28 00:45:39 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.639 
2015/05/11 21:42:31 mattst88 Exp $
+
+*mesa-10.5.5 (11 May 2015)
+
+  11 May 2015; Matt Turner  +mesa-10.5.5.ebuild:
+  Version bump to 10.5.5.
 
 *mesa-10.4.6 (28 Apr 2015)
 



1.1  media-libs/mesa/mesa-10.5.5.ebuild

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

Index: mesa-10.5.5.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.5.ebuild,v 1.1 
2015/05/11 21:42:31 mattst88 Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"

if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi

PYTHON_COMPAT=( python2_7 )

inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}

OPENGL_DIR="xorg-x11"

MY_P="${P/_/-}"
FOLDER="${PV/_rc*/}"

DESCRIPTION="OpenGL-like graphic library for Linux"
HOMEPAGE="http://mesa3d.sourceforge.net/";

if [[ $PV == * ]]; then
SRC_URI=""
else
SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz";
fi

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!bindist? ( bindist )"

INTEL_CARDS="i915 i965 ilo intel"
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+nptl opencl osmesa pax_kernel openmax pic selinux +udev vaapi vdpau
wayland xvmc xa kernel_FreeBSD"

REQUIRED_USE="
d3d9?   ( dri3 gallium )
llvm?   ( gallium )
opencl? ( gallium llvm )
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
vaapi? ( gallium )
vdpau? ( gallium )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
video_cards_intel?  ( classic )
video_cards_i915?   ( || ( classic gallium ) )
video_cards_i965?   ( classic )
video_cards_ilo?( gallium )
video_cards_nouveau? ( || ( classic gallium ) )
video_cards_radeon? ( || ( classic gallium ) )
video_cards_r100?   ( classic )
video_cards_r200?   ( classic )
video_cards_r300?   ( gallium llvm )
video_cards_r600?   ( gallium )
video_cards_radeonsi?   ( gallium llvm )
video_cards_vmware? ( gallium )
${PYTHON_REQUIRED_USE}
"

LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.57"
# keep correct libdrm and dri2proto dep
# keep blocks in rdepend for binpkg
RDEPEND="
!=app-eselect/eselect-opengl-1.3.0
udev? ( kernel_linux? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] ) )
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
gbm? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
dri3? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
>=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libXxf86vm-1.1.3:=[${MULTILIB_USEDEP}]
>=x11-libs/libxcb-1.9.3:=[${MULTILI

[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-siliconmotion/files: xf86-video-siliconmotion-1.7.7-mibstore_h.patch

2015-05-09 Thread Matt Turner (mattst88)
mattst8815/05/09 17:14:36

  Removed:  xf86-video-siliconmotion-1.7.7-mibstore_h.patch
  Log:
  Drop old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)



[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-siliconmotion: ChangeLog xf86-video-siliconmotion-1.7.7.ebuild xf86-video-siliconmotion-1.7.7-r1.ebuild

2015-05-09 Thread Matt Turner (mattst88)
mattst8815/05/09 17:14:36

  Modified: ChangeLog
  Removed:  xf86-video-siliconmotion-1.7.7.ebuild
xf86-video-siliconmotion-1.7.7-r1.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.70 x11-drivers/xf86-video-siliconmotion/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?rev=1.70&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?rev=1.70&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?r1=1.69&r2=1.70

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v
retrieving revision 1.69
retrieving revision 1.70
diff -u -r1.69 -r1.70
--- ChangeLog   9 May 2015 17:14:10 -   1.69
+++ ChangeLog   9 May 2015 17:14:36 -   1.70
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-siliconmotion
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v 1.69 
2015/05/09 17:14:10 mattst88 Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v 1.70 
2015/05/09 17:14:36 mattst88 Exp $
+
+  09 May 2015; Matt Turner 
+  -files/xf86-video-siliconmotion-1.7.7-mibstore_h.patch,
+  -xf86-video-siliconmotion-1.7.7-r1.ebuild,
+  -xf86-video-siliconmotion-1.7.7.ebuild:
+  Drop old.
 
 *xf86-video-siliconmotion-1.7.8 (09 May 2015)
 






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-siliconmotion: xf86-video-siliconmotion-1.7.8.ebuild ChangeLog

2015-05-09 Thread Matt Turner (mattst88)
mattst8815/05/09 17:14:10

  Modified: ChangeLog
  Added:xf86-video-siliconmotion-1.7.8.ebuild
  Log:
  Version bump to 1.7.8, straight to stable.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 974CA72A)

Revision  ChangesPath
1.69 x11-drivers/xf86-video-siliconmotion/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?rev=1.69&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?rev=1.69&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog?r1=1.68&r2=1.69

Index: ChangeLog
===
RCS file: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -u -r1.68 -r1.69
--- ChangeLog   19 Feb 2015 08:52:56 -  1.68
+++ ChangeLog   9 May 2015 17:14:10 -   1.69
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-siliconmotion
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v 1.68 
2015/02/19 08:52:56 ago Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/ChangeLog,v 1.69 
2015/05/09 17:14:10 mattst88 Exp $
+
+*xf86-video-siliconmotion-1.7.8 (09 May 2015)
+
+  09 May 2015; Matt Turner 
+  +xf86-video-siliconmotion-1.7.8.ebuild:
+  Version bump to 1.7.8, straight to stable.
 
   19 Feb 2015; Agostino Sarubbo 
   xf86-video-siliconmotion-1.7.7-r1.ebuild:



1.1  
x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.8.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.8.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-siliconmotion-1.7.8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-siliconmotion/xf86-video-siliconmotion-1.7.8.ebuild,v
 1.1 2015/05/09 17:14:10 mattst88 Exp $

EAPI=5
inherit xorg-2

DESCRIPTION="Silicon Motion video driver"

KEYWORDS="amd64 ~mips x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""

RDEPEND=">=x11-base/xorg-server-1.0.99"
DEPEND="${RDEPEND}"






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-savage: ChangeLog xf86-video-savage-2.3.5.ebuild xf86-video-savage-2.3.4-r1.ebuild xf86-video-savage-2.3.7.ebuild xf86-video-savage-2.3.6.e

2015-05-08 Thread Matt Turner (mattst88)
mattst8815/05/08 21:47:07

  Modified: ChangeLog
  Removed:  xf86-video-savage-2.3.5.ebuild
xf86-video-savage-2.3.4-r1.ebuild
xf86-video-savage-2.3.7.ebuild
xf86-video-savage-2.3.6.ebuild
xf86-video-savage-2.3.3-r1.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.94 x11-drivers/xf86-video-savage/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog?rev=1.94&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog?rev=1.94&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog?r1=1.93&r2=1.94

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v
retrieving revision 1.93
retrieving revision 1.94
diff -u -r1.93 -r1.94
--- ChangeLog   8 May 2015 21:46:07 -   1.93
+++ ChangeLog   8 May 2015 21:47:07 -   1.94
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-savage
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v 
1.93 2015/05/08 21:46:07 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v 
1.94 2015/05/08 21:47:07 mattst88 Exp $
+
+  08 May 2015; Matt Turner 
+  -xf86-video-savage-2.3.3-r1.ebuild, -xf86-video-savage-2.3.4-r1.ebuild,
+  -xf86-video-savage-2.3.5.ebuild, -xf86-video-savage-2.3.6.ebuild,
+  -xf86-video-savage-2.3.7.ebuild:
+  Drop old.
 
 *xf86-video-savage-2.3.8 (08 May 2015)
 






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-savage: xf86-video-savage-2.3.8.ebuild ChangeLog

2015-05-08 Thread Matt Turner (mattst88)
mattst8815/05/08 21:46:07

  Modified: ChangeLog
  Added:xf86-video-savage-2.3.8.ebuild
  Log:
  Version bump to 2.3.8, straight to stable. Bug 542242.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 974CA72A)

Revision  ChangesPath
1.93 x11-drivers/xf86-video-savage/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog?rev=1.93&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog?rev=1.93&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog?r1=1.92&r2=1.93

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v
retrieving revision 1.92
retrieving revision 1.93
diff -u -r1.92 -r1.93
--- ChangeLog   8 Oct 2013 05:06:38 -   1.92
+++ ChangeLog   8 May 2015 21:46:07 -   1.93
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-savage
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v 
1.92 2013/10/08 05:06:38 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/ChangeLog,v 
1.93 2015/05/08 21:46:07 mattst88 Exp $
+
+*xf86-video-savage-2.3.8 (08 May 2015)
+
+  08 May 2015; Matt Turner 
+  +xf86-video-savage-2.3.8.ebuild:
+  Version bump to 2.3.8, straight to stable. Bug 542242.
 
   08 Oct 2013; Agostino Sarubbo  
xf86-video-savage-2.3.7.ebuild:
   Stable for x86, wrt bug #475480



1.1  
x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-savage-2.3.8.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-savage/xf86-video-savage-2.3.8.ebuild,v
 1.1 2015/05/08 21:46:07 mattst88 Exp $

EAPI=4
XORG_DRI=dri
inherit xorg-2

DESCRIPTION="S3 Savage video driver"
KEYWORDS="alpha amd64 ia64 ppc sparc x86 ~amd64-fbsd ~x86-fbsd"

IUSE="dri"
RDEPEND=">=x11-base/xorg-server-1.0.99"
DEPEND="${RDEPEND}
>=x11-proto/xextproto-7.0.99.1"

pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable dri)
)
xorg-2_pkg_setup
}

pkg_postinst() {
if has_version ">=x11-base/xorg-server-1.12.99"; then
elog "Your X server no longer supports XAA, so 
xf86-video-savage will fall back"
elog "to shadowFB. Enable EXA in your X.org configuration to 
still have some 2D"
elog "acceleration. See \"man 4 savage\" for details."
fi
}






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-neomagic: xf86-video-neomagic-1.2.9.ebuild ChangeLog xf86-video-neomagic-1.2.8.ebuild

2015-05-08 Thread Matt Turner (mattst88)
mattst8815/05/08 21:44:30

  Modified: ChangeLog
  Added:xf86-video-neomagic-1.2.9.ebuild
  Removed:  xf86-video-neomagic-1.2.8.ebuild
  Log:
  Version bump to 1.2.9, straight to stable.
  
  (Portage version: 2.2.18/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 974CA72A)

Revision  ChangesPath
1.54 x11-drivers/xf86-video-neomagic/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-neomagic/ChangeLog?rev=1.54&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-neomagic/ChangeLog?rev=1.54&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-neomagic/ChangeLog?r1=1.53&r2=1.54

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-neomagic/ChangeLog,v
retrieving revision 1.53
retrieving revision 1.54
diff -u -r1.53 -r1.54
--- ChangeLog   24 Feb 2014 20:00:41 -  1.53
+++ ChangeLog   8 May 2015 21:44:30 -   1.54
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-neomagic
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-neomagic/ChangeLog,v 
1.53 2014/02/24 20:00:41 chithanh Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-neomagic/ChangeLog,v 
1.54 2015/05/08 21:44:30 mattst88 Exp $
+
+*xf86-video-neomagic-1.2.9 (08 May 2015)
+
+  08 May 2015; Matt Turner 
+  +xf86-video-neomagic-1.2.9.ebuild, -xf86-video-neomagic-1.2.8.ebuild:
+  Version bump to 1.2.9, straight to stable.
 
   24 Feb 2014; Chí-Thanh Christopher Nguyễn 
   -xf86-video-neomagic-1.2.5.ebuild, -xf86-video-neomagic-1.2.6.ebuild,



1.1  
x11-drivers/xf86-video-neomagic/xf86-video-neomagic-1.2.9.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-neomagic/xf86-video-neomagic-1.2.9.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-neomagic/xf86-video-neomagic-1.2.9.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-neomagic-1.2.9.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-neomagic/xf86-video-neomagic-1.2.9.ebuild,v
 1.1 2015/05/08 21:44:30 mattst88 Exp $

EAPI=5
inherit xorg-2

DESCRIPTION="Neomagic video driver"
KEYWORDS="amd64 ia64 x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-cirrus: xf86-video-cirrus-1.5.3.ebuild ChangeLog

2015-05-07 Thread Matt Turner (mattst88)
mattst8815/05/07 18:33:52

  Modified: ChangeLog
  Added:xf86-video-cirrus-1.5.3.ebuild
  Log:
  Version bump to 1.5.3, straight to stable.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 974CA72A)

Revision  ChangesPath
1.59 x11-drivers/xf86-video-cirrus/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-cirrus/ChangeLog?rev=1.59&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-cirrus/ChangeLog?rev=1.59&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-cirrus/ChangeLog?r1=1.58&r2=1.59

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-cirrus/ChangeLog,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -r1.58 -r1.59
--- ChangeLog   8 Oct 2013 05:05:52 -   1.58
+++ ChangeLog   7 May 2015 18:33:52 -   1.59
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-cirrus
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-cirrus/ChangeLog,v 
1.58 2013/10/08 05:05:52 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-cirrus/ChangeLog,v 
1.59 2015/05/07 18:33:52 mattst88 Exp $
+
+*xf86-video-cirrus-1.5.3 (07 May 2015)
+
+  07 May 2015; Matt Turner 
+  +xf86-video-cirrus-1.5.3.ebuild:
+  Version bump to 1.5.3, straight to stable.
 
   08 Oct 2013; Agostino Sarubbo  
xf86-video-cirrus-1.5.2.ebuild:
   Stable for x86, wrt bug #475480



1.1  
x11-drivers/xf86-video-cirrus/xf86-video-cirrus-1.5.3.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-cirrus/xf86-video-cirrus-1.5.3.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-cirrus/xf86-video-cirrus-1.5.3.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-cirrus-1.5.3.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-cirrus/xf86-video-cirrus-1.5.3.ebuild,v
 1.1 2015/05/07 18:33:52 mattst88 Exp $

EAPI=4
inherit xorg-2

DESCRIPTION="Cirrus Logic video driver"
KEYWORDS="alpha amd64 ia64 ppc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""

RDEPEND=">=x11-base/xorg-server-1.0.99"
DEPEND="${RDEPEND}"






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-r128: xf86-video-r128-6.10.0.ebuild ChangeLog

2015-05-07 Thread Matt Turner (mattst88)
mattst8815/05/07 18:28:59

  Modified: ChangeLog
  Added:xf86-video-r128-6.10.0.ebuild
  Log:
  Version bump to 6.10.0, bug 548466.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.48 x11-drivers/xf86-video-r128/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-r128/ChangeLog,v
retrieving revision 1.47
retrieving revision 1.48
diff -u -r1.47 -r1.48
--- ChangeLog   19 Apr 2014 17:47:30 -  1.47
+++ ChangeLog   7 May 2015 18:28:59 -   1.48
@@ -1,6 +1,11 @@
 # ChangeLog for x11-drivers/xf86-video-r128
-# Copyright 1999-2014 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-r128/ChangeLog,v 
1.47 2014/04/19 17:47:30 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-r128/ChangeLog,v 
1.48 2015/05/07 18:28:59 mattst88 Exp $
+
+*xf86-video-r128-6.10.0 (07 May 2015)
+
+  07 May 2015; Matt Turner  
+xf86-video-r128-6.10.0.ebuild:
+  Version bump to 6.10.0, bug 548466.
 
   19 Apr 2014; Agostino Sarubbo  xf86-video-r128-6.9.2.ebuild:
   Stable for sparc, wrt bug #500368



1.1  x11-drivers/xf86-video-r128/xf86-video-r128-6.10.0.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-r128/xf86-video-r128-6.10.0.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-r128/xf86-video-r128-6.10.0.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-r128-6.10.0.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-r128/xf86-video-r128-6.10.0.ebuild,v
 1.1 2015/05/07 18:28:59 mattst88 Exp $

EAPI=4
XORG_DRI=dri
inherit xorg-2

DESCRIPTION="ATI Rage128 video driver"

KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux"
IUSE="dri"

RDEPEND=">=x11-base/xorg-server-1.2"
DEPEND="${RDEPEND}"

pkg_setup() {
XORG_CONFIGURE_OPTIONS=(
$(use_enable dri)
)
}






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.4.6.ebuild ChangeLog

2015-04-28 Thread Matt Turner (mattst88)
mattst8815/04/28 00:45:39

  Modified: ChangeLog
  Added:mesa-10.4.6.ebuild
  Log:
  Version bump to 10.4.6.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.638media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.637
retrieving revision 1.638
diff -u -r1.637 -r1.638
--- ChangeLog   27 Apr 2015 23:06:16 -  1.637
+++ ChangeLog   28 Apr 2015 00:45:39 -  1.638
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.637 
2015/04/27 23:06:16 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.638 
2015/04/28 00:45:39 mattst88 Exp $
+
+*mesa-10.4.6 (28 Apr 2015)
+
+  28 Apr 2015; Matt Turner  +mesa-10.4.6.ebuild:
+  Version bump to 10.4.6.
 
 *mesa-10.5.4 (27 Apr 2015)
 



1.1  media-libs/mesa/mesa-10.4.6.ebuild

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

Index: mesa-10.4.6.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.4.6.ebuild,v 1.1 
2015/04/28 00:45:39 mattst88 Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"

if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi

PYTHON_COMPAT=( python2_7 )

inherit base autotools multilib multilib-minimal flag-o-matic \
python-any-r1 toolchain-funcs pax-utils ${GIT_ECLASS}

OPENGL_DIR="xorg-x11"

MY_PN="${PN/m/M}"
MY_P="${MY_PN}-${PV/_/-}"
MY_SRC_P="${MY_PN}Lib-${PV/_/-}"

FOLDER="${PV/_rc*/}"

DESCRIPTION="OpenGL-like graphic library for Linux"
HOMEPAGE="http://mesa3d.sourceforge.net/";

#SRC_PATCHES="mirror://gentoo/${P}-gentoo-patches-01.tar.bz2"
if [[ $PV = * ]]; then
SRC_URI="${SRC_PATCHES}"
else

SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_SRC_P}.tar.bz2
${SRC_PATCHES}"
fi

# The code is MIT/X11.
# GLES[2]/gl[2]{,ext,platform}.h are SGI-B-2.0
LICENSE="MIT SGI-B-2.0"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!bindist? ( bindist )"

INTEL_CARDS="i915 i965 ilo intel"
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+nptl opencl osmesa pax_kernel openmax pic r600-llvm-compiler selinux
+udev vaapi vdpau wayland xvmc xa kernel_FreeBSD"

REQUIRED_USE="
d3d9?   ( dri3 gallium )
llvm?   ( gallium )
opencl? (
gallium
llvm
video_cards_r600? ( r600-llvm-compiler )
video_cards_radeon? ( r600-llvm-compiler )
video_cards_radeonsi? ( r600-llvm-compiler )
)
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
r600-llvm-compiler? ( gallium llvm || ( video_cards_r600 
video_cards_radeonsi video_cards_radeon ) )
vaapi? ( gallium )
vdpau? ( gallium )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
video_cards_intel?  ( || ( classic gallium ) )
video_cards_i915?   ( || ( classic gallium ) )
video_cards_i965?   ( classic )
video_cards_ilo?( gallium )
video_cards_nouveau? ( || ( classic gallium ) )
video_cards_radeon? ( || ( classic gallium ) )
video_cards_r100?   ( classic )
video_cards_r200?   ( classic )
video_cards_r300?   ( gallium llvm )
video_cards_r600?   ( gallium )
video_cards_radeonsi?   ( gallium llvm )
video_cards_vmware? ( gallium )
${PYTHON_REQUIRED_USE}
"

LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.56"
# keep correct libdrm and dri2proto dep
# keep blo

[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.5.4.ebuild ChangeLog

2015-04-28 Thread Matt Turner (mattst88)
mattst8815/04/27 23:06:16

  Modified: ChangeLog
  Added:mesa-10.5.4.ebuild
  Log:
  Version bump to 10.5.4, bug #547686.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.637media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.636
retrieving revision 1.637
diff -u -r1.636 -r1.637
--- ChangeLog   8 Apr 2015 17:59:35 -   1.636
+++ ChangeLog   27 Apr 2015 23:06:16 -  1.637
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.636 
2015/04/08 17:59:35 mgorny Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.637 
2015/04/27 23:06:16 mattst88 Exp $
+
+*mesa-10.5.4 (27 Apr 2015)
+
+  27 Apr 2015; Matt Turner  +mesa-10.5.4.ebuild:
+  Version bump to 10.5.4, bug #547686.
 
   08 Apr 2015; Michał Górny  mesa-10.2.8.ebuild,
   mesa-10.3.7-r1.ebuild, mesa-10.3.7-r2.ebuild, mesa-10.4.4.ebuild,



1.1  media-libs/mesa/mesa-10.5.4.ebuild

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

Index: mesa-10.5.4.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.4.ebuild,v 1.1 
2015/04/27 23:06:16 mattst88 Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"

if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi

PYTHON_COMPAT=( python2_7 )

inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}

OPENGL_DIR="xorg-x11"

MY_P="${P/_/-}"
FOLDER="${PV/_rc*/}"

DESCRIPTION="OpenGL-like graphic library for Linux"
HOMEPAGE="http://mesa3d.sourceforge.net/";

if [[ $PV == * ]]; then
SRC_URI=""
else
SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz";
fi

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!bindist? ( bindist )"

INTEL_CARDS="i915 i965 ilo intel"
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+nptl opencl osmesa pax_kernel openmax pic selinux +udev vaapi vdpau
wayland xvmc xa kernel_FreeBSD"

REQUIRED_USE="
d3d9?   ( dri3 gallium )
llvm?   ( gallium )
opencl? ( gallium llvm )
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
vaapi? ( gallium )
vdpau? ( gallium )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
video_cards_intel?  ( classic )
video_cards_i915?   ( || ( classic gallium ) )
video_cards_i965?   ( classic )
video_cards_ilo?( gallium )
video_cards_nouveau? ( || ( classic gallium ) )
video_cards_radeon? ( || ( classic gallium ) )
video_cards_r100?   ( classic )
video_cards_r200?   ( classic )
video_cards_r300?   ( gallium llvm )
video_cards_r600?   ( gallium )
video_cards_radeonsi?   ( gallium llvm )
video_cards_vmware? ( gallium )
${PYTHON_REQUIRED_USE}
"

LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.57"
# keep correct libdrm and dri2proto dep
# keep blocks in rdepend for binpkg
RDEPEND="
!=app-eselect/eselect-opengl-1.3.0
udev? ( kernel_linux? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] ) )
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
gbm? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
dri3? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
>=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2:=[${MULTIL

[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-trident/files: xf86-video-trident-1.3.6-no-xaa.patch xf86-video-trident-1.3.6-remove-mibstore_h.patch

2015-03-30 Thread Matt Turner (mattst88)
mattst8815/03/30 17:19:57

  Removed:  xf86-video-trident-1.3.6-no-xaa.patch
xf86-video-trident-1.3.6-remove-mibstore_h.patch
  Log:
  Drop old.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)



[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-trident: xf86-video-trident-1.3.7.ebuild ChangeLog

2015-03-30 Thread Matt Turner (mattst88)
mattst8815/03/30 17:19:18

  Modified: ChangeLog
  Added:xf86-video-trident-1.3.7.ebuild
  Log:
  Version bump to 1.3.7, straight to stable. Fixes bug 449112.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, RepoMan options: --force, signed 
Manifest commit with key 974CA72A)

Revision  ChangesPath
1.73 x11-drivers/xf86-video-trident/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog?rev=1.73&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog?rev=1.73&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog?r1=1.72&r2=1.73

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog,v
retrieving revision 1.72
retrieving revision 1.73
diff -u -r1.72 -r1.73
--- ChangeLog   8 Oct 2013 05:06:51 -   1.72
+++ ChangeLog   30 Mar 2015 17:19:18 -  1.73
@@ -1,6 +1,12 @@
 # ChangeLog for x11-drivers/xf86-video-trident
-# Copyright 1999-2013 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog,v 
1.72 2013/10/08 05:06:51 ago Exp $
+# Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog,v 
1.73 2015/03/30 17:19:18 mattst88 Exp $
+
+*xf86-video-trident-1.3.7 (30 Mar 2015)
+
+  30 Mar 2015; Matt Turner 
+  +xf86-video-trident-1.3.7.ebuild:
+  Version bump to 1.3.7, straight to stable. Fixes bug 449112.
 
   08 Oct 2013; Agostino Sarubbo 
   xf86-video-trident-1.3.6-r2.ebuild:



1.1  
x11-drivers/xf86-video-trident/xf86-video-trident-1.3.7.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/xf86-video-trident-1.3.7.ebuild?rev=1.1&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/xf86-video-trident-1.3.7.ebuild?rev=1.1&content-type=text/plain

Index: xf86-video-trident-1.3.7.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: 
/var/cvsroot/gentoo-x86/x11-drivers/xf86-video-trident/xf86-video-trident-1.3.7.ebuild,v
 1.1 2015/03/30 17:19:18 mattst88 Exp $

EAPI=5
inherit xorg-2

DESCRIPTION="Trident video driver"
KEYWORDS="amd64 ia64 ppc x86 ~amd64-fbsd ~x86-fbsd"
IUSE=""

RDEPEND=">=x11-base/xorg-server-1.0.99"
DEPEND="${RDEPEND}"






[gentoo-commits] gentoo-x86 commit in x11-drivers/xf86-video-trident: ChangeLog xf86-video-trident-1.3.5.ebuild xf86-video-trident-1.3.6-r2.ebuild xf86-video-trident-1.3.6-r1.ebuild

2015-03-30 Thread Matt Turner (mattst88)
mattst8815/03/30 17:19:57

  Modified: ChangeLog
  Removed:  xf86-video-trident-1.3.5.ebuild
xf86-video-trident-1.3.6-r2.ebuild
xf86-video-trident-1.3.6-r1.ebuild
  Log:
  Drop old.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.74 x11-drivers/xf86-video-trident/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog?rev=1.74&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog?rev=1.74&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog?r1=1.73&r2=1.74

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog,v
retrieving revision 1.73
retrieving revision 1.74
diff -u -r1.73 -r1.74
--- ChangeLog   30 Mar 2015 17:19:18 -  1.73
+++ ChangeLog   30 Mar 2015 17:19:57 -  1.74
@@ -1,6 +1,13 @@
 # ChangeLog for x11-drivers/xf86-video-trident
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog,v 
1.73 2015/03/30 17:19:18 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-drivers/xf86-video-trident/ChangeLog,v 
1.74 2015/03/30 17:19:57 mattst88 Exp $
+
+  30 Mar 2015; Matt Turner 
+  -files/xf86-video-trident-1.3.6-no-xaa.patch,
+  -files/xf86-video-trident-1.3.6-remove-mibstore_h.patch,
+  -xf86-video-trident-1.3.5.ebuild, -xf86-video-trident-1.3.6-r1.ebuild,
+  -xf86-video-trident-1.3.6-r2.ebuild:
+  Drop old.
 
 *xf86-video-trident-1.3.7 (30 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.5.2.ebuild ChangeLog

2015-03-30 Thread Matt Turner (mattst88)
mattst8815/03/30 17:04:32

  Modified: mesa-10.5.2.ebuild ChangeLog
  Log:
  Move python deps back, bug 545058.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.2  media-libs/mesa/mesa-10.5.2.ebuild

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

Index: mesa-10.5.2.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.2.ebuild,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -r1.1 -r1.2
--- mesa-10.5.2.ebuild  28 Mar 2015 19:53:47 -  1.1
+++ mesa-10.5.2.ebuild  30 Mar 2015 17:04:32 -  1.2
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.2.ebuild,v 1.1 
2015/03/28 19:53:47 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.2.ebuild,v 1.2 
2015/03/30 17:04:32 mattst88 Exp $
 
 EAPI=5
 
@@ -154,12 +154,12 @@
>=x11-proto/xextproto-7.2.1-r1:=[${MULTILIB_USEDEP}]
>=x11-proto/xf86driproto-2.1.1-r1:=[${MULTILIB_USEDEP}]
>=x11-proto/xf86vidmodeproto-2.3.1-r1:=[${MULTILIB_USEDEP}]
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep ">=dev-python/mako-0.7.3[\${PYTHON_USEDEP}]")
 "
 [[ ${PV} == "" ]] && DEPEND+="
sys-devel/bison
sys-devel/flex
-   ${PYTHON_DEPS}
-   $(python_gen_any_dep ">=dev-python/mako-0.7.3[\${PYTHON_USEDEP}]")
 "
 
 S="${WORKDIR}/${MY_P}"



1.634media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.633
retrieving revision 1.634
diff -u -r1.633 -r1.634
--- ChangeLog   28 Mar 2015 19:53:47 -  1.633
+++ ChangeLog   30 Mar 2015 17:04:32 -  1.634
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.633 
2015/03/28 19:53:47 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.634 
2015/03/30 17:04:32 mattst88 Exp $
+
+  30 Mar 2015; Matt Turner  mesa-10.5.2.ebuild:
+  Move python deps back, bug 545058.
 
 *mesa-10.5.2 (28 Mar 2015)
 






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: mesa-10.5.2.ebuild ChangeLog

2015-03-28 Thread Matt Turner (mattst88)
mattst8815/03/28 19:53:47

  Modified: ChangeLog
  Added:mesa-10.5.2.ebuild
  Log:
  Version bump to 10.5.2. Fixes bugs 542808 and 542812.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.633media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.632
retrieving revision 1.633
diff -u -r1.632 -r1.633
--- ChangeLog   24 Mar 2015 11:46:52 -  1.632
+++ ChangeLog   28 Mar 2015 19:53:47 -  1.633
@@ -1,6 +1,11 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.632 
2015/03/24 11:46:52 chithanh Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.633 
2015/03/28 19:53:47 mattst88 Exp $
+
+*mesa-10.5.2 (28 Mar 2015)
+
+  28 Mar 2015; Matt Turner  +mesa-10.5.2.ebuild:
+  Version bump to 10.5.2. Fixes bugs 542808 and 542812.
 
   24 Mar 2015; Chí-Thanh Christopher Nguyễn 
   mesa-10.5.1.ebuild:



1.1  media-libs/mesa/mesa-10.5.2.ebuild

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

Index: mesa-10.5.2.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/mesa-10.5.2.ebuild,v 1.1 
2015/03/28 19:53:47 mattst88 Exp $

EAPI=5

EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"

if [[ ${PV} = * ]]; then
GIT_ECLASS="git-r3"
EXPERIMENTAL="true"
fi

PYTHON_COMPAT=( python{2_6,2_7} )

inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}

OPENGL_DIR="xorg-x11"

MY_P="${P/_/-}"
FOLDER="${PV/_rc*/}"

DESCRIPTION="OpenGL-like graphic library for Linux"
HOMEPAGE="http://mesa3d.sourceforge.net/";

if [[ $PV == * ]]; then
SRC_URI=""
else
SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz";
fi

LICENSE="MIT"
SLOT="0"
KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
RESTRICT="!bindist? ( bindist )"

INTEL_CARDS="i915 i965 ilo intel"
RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vmware"
for card in ${VIDEO_CARDS}; do
IUSE_VIDEO_CARDS+=" video_cards_${card}"
done

IUSE="${IUSE_VIDEO_CARDS}
bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gles1 gles2 +llvm
+nptl opencl osmesa pax_kernel openmax pic selinux +udev vaapi vdpau
wayland xvmc xa kernel_FreeBSD"

REQUIRED_USE="
d3d9?   ( dri3 gallium )
llvm?   ( gallium )
opencl? ( gallium llvm )
openmax? ( gallium )
gles1?  ( egl )
gles2?  ( egl )
vaapi? ( gallium )
vdpau? ( gallium )
wayland? ( egl gbm )
xa?  ( gallium )
video_cards_freedreno?  ( gallium )
video_cards_intel?  ( classic )
video_cards_i915?   ( || ( classic gallium ) )
video_cards_i965?   ( classic )
video_cards_ilo?( gallium )
video_cards_nouveau? ( || ( classic gallium ) )
video_cards_radeon? ( || ( classic gallium ) )
video_cards_r100?   ( classic )
video_cards_r200?   ( classic )
video_cards_r300?   ( gallium )
video_cards_r600?   ( gallium )
video_cards_radeonsi?   ( gallium llvm )
video_cards_vmware? ( gallium )
${PYTHON_REQUIRED_USE}
"

LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.57"
# keep correct libdrm and dri2proto dep
# keep blocks in rdepend for binpkg
RDEPEND="
!=app-admin/eselect-opengl-1.3.0
udev? ( kernel_linux? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] ) )
>=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
gbm? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
dri3? ( >=virtual/libudev-215:=[${MULTILIB_USEDEP}] )
>=x11-libs/libX11-1.6.2:=[${MULTILIB_USEDEP}]
>=x11-libs/libxshmfence-1.1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXdamage-1.1.4-r1:=[${MULTILIB_USEDEP}]
>=x11-libs/libXext-1.3.2:=[${MULTILIB_USEDEP}]
   

[gentoo-commits] gentoo-x86 commit in x11-libs/libXfont: libXfont-1.5.1.ebuild ChangeLog

2015-03-17 Thread Matt Turner (mattst88)
mattst8815/03/17 18:17:04

  Modified: ChangeLog
  Added:libXfont-1.5.1.ebuild
  Log:
  Version bump to 1.5.1, bug 543620.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.223x11-libs/libXfont/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v
retrieving revision 1.222
retrieving revision 1.223
diff -u -r1.222 -r1.223
--- ChangeLog   14 Mar 2015 14:15:51 -  1.222
+++ ChangeLog   17 Mar 2015 18:17:04 -  1.223
@@ -1,6 +1,11 @@
 # ChangeLog for x11-libs/libXfont
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.222 
2015/03/14 14:15:51 maekke Exp $
+# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/ChangeLog,v 1.223 
2015/03/17 18:17:04 mattst88 Exp $
+
+*libXfont-1.5.1 (17 Mar 2015)
+
+  17 Mar 2015; Matt Turner  +libXfont-1.5.1.ebuild:
+  Version bump to 1.5.1, bug 543620.
 
   14 Mar 2015; Markus Meier  libXfont-1.5.0.ebuild:
   arm stable, bug #530652



1.1  x11-libs/libXfont/libXfont-1.5.1.ebuild

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

Index: libXfont-1.5.1.ebuild
===
# Copyright 1999-2015 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
# $Header: /var/cvsroot/gentoo-x86/x11-libs/libXfont/libXfont-1.5.1.ebuild,v 
1.1 2015/03/17 18:17:04 mattst88 Exp $

EAPI=5

XORG_DOC=doc
inherit xorg-2

DESCRIPTION="X.Org Xfont library"

KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
IUSE="bzip2 ipv6 truetype"

RDEPEND="x11-libs/xtrans
x11-libs/libfontenc
truetype? ( >=media-libs/freetype-2 )
bzip2? ( app-arch/bzip2 )
x11-proto/xproto
>=x11-proto/fontsproto-2.1.3
!

[gentoo-commits] gentoo-x86 commit in sys-devel/make: make-4.1-r1.ebuild ChangeLog

2015-03-15 Thread Matt Turner (mattst88)
mattst8815/03/16 00:28:00

  Modified: make-4.1-r1.ebuild ChangeLog
  Log:
  alpha stable, bug 540868.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.8  sys-devel/make/make-4.1-r1.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/make-4.1-r1.ebuild?rev=1.8&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/make-4.1-r1.ebuild?rev=1.8&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/make-4.1-r1.ebuild?r1=1.7&r2=1.8

Index: make-4.1-r1.ebuild
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/make-4.1-r1.ebuild,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- make-4.1-r1.ebuild  6 Mar 2015 06:49:48 -   1.7
+++ make-4.1-r1.ebuild  16 Mar 2015 00:28:00 -  1.8
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-4.1-r1.ebuild,v 1.7 
2015/03/06 06:49:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/make-4.1-r1.ebuild,v 1.8 
2015/03/16 00:28:00 mattst88 Exp $
 
 EAPI=4
 
@@ -12,7 +12,7 @@
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="guile nls static"
 
 CDEPEND="guile? ( >=dev-scheme/guile-1.8 )"



1.139sys-devel/make/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.139&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?rev=1.139&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-devel/make/ChangeLog?r1=1.138&r2=1.139

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v
retrieving revision 1.138
retrieving revision 1.139
diff -u -r1.138 -r1.139
--- ChangeLog   6 Mar 2015 06:49:48 -   1.138
+++ ChangeLog   16 Mar 2015 00:28:00 -  1.139
@@ -1,6 +1,9 @@
 # ChangeLog for sys-devel/make
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.138 2015/03/06 
06:49:48 jer Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-devel/make/ChangeLog,v 1.139 2015/03/16 
00:28:00 mattst88 Exp $
+
+  16 Mar 2015; Matt Turner  make-4.1-r1.ebuild:
+  alpha stable, bug 540868.
 
   06 Mar 2015; Jeroen Roovers  make-4.1-r1.ebuild:
   Stable for HPPA (bug #540868).






[gentoo-commits] gentoo-x86 commit in sys-fs/udev-init-scripts: udev-init-scripts-27.ebuild ChangeLog

2015-03-15 Thread Matt Turner (mattst88)
mattst8815/03/16 00:13:27

  Modified: udev-init-scripts-27.ebuild ChangeLog
  Log:
  alpha stable, bug 531602.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.9  sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?rev=1.9&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?rev=1.9&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild?r1=1.8&r2=1.9

Index: udev-init-scripts-27.ebuild
===
RCS file: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- udev-init-scripts-27.ebuild 28 Feb 2015 22:25:44 -  1.8
+++ udev-init-scripts-27.ebuild 16 Mar 2015 00:13:27 -  1.9
@@ -1,6 +1,6 @@
 # Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
-# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v 
1.8 2015/02/28 22:25:44 jmorgan Exp $
+# $Header: 
/var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/udev-init-scripts-27.ebuild,v 
1.9 2015/03/16 00:13:27 mattst88 Exp $
 
 EAPI=5
 
@@ -9,7 +9,7 @@
inherit git-r3
 else
SRC_URI="http://dev.gentoo.org/~williamh/dist/${P}.tar.bz2";
-   KEYWORDS="~alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86"
+   KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh 
sparc x86"
 fi
 
 inherit eutils



1.114sys-fs/udev-init-scripts/ChangeLog

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.114&view=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?rev=1.114&content-type=text/plain
diff : 
http://sources.gentoo.org/viewvc.cgi/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog?r1=1.113&r2=1.114

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v
retrieving revision 1.113
retrieving revision 1.114
diff -u -r1.113 -r1.114
--- ChangeLog   28 Feb 2015 22:25:44 -  1.113
+++ ChangeLog   16 Mar 2015 00:13:27 -  1.114
@@ -1,6 +1,9 @@
 # ChangeLog for sys-fs/udev-init-scripts
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.113 
2015/02/28 22:25:44 jmorgan Exp $
+# $Header: /var/cvsroot/gentoo-x86/sys-fs/udev-init-scripts/ChangeLog,v 1.114 
2015/03/16 00:13:27 mattst88 Exp $
+
+  16 Mar 2015; Matt Turner  udev-init-scripts-27.ebuild:
+  alpha stable, bug 531602.
 
   28 Feb 2015; Jack Morgan  udev-init-scripts-27.ebuild:
   sparc stable wrt bug #531602 (for real)






[gentoo-commits] gentoo-x86 commit in media-libs/mesa: metadata.xml ChangeLog

2015-03-13 Thread Matt Turner (mattst88)
mattst8815/03/14 01:36:32

  Modified: metadata.xml ChangeLog
  Log:
  Drop dead USE flags.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)

Revision  ChangesPath
1.26 media-libs/mesa/metadata.xml

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

Index: metadata.xml
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/metadata.xml,v
retrieving revision 1.25
retrieving revision 1.26
diff -u -r1.25 -r1.26
--- metadata.xml8 Feb 2015 19:11:00 -   1.25
+++ metadata.xml14 Mar 2015 01:36:32 -  1.26
@@ -9,13 +9,11 @@
Enable DRI3 support.
Enable EGL support.
Build drivers based on Gallium3D, the new 
architecture for 3D graphics drivers.
-   Enable video decode acceleration support for 
Gallium3D.
Enable the Graphics Buffer Manager for EGL on 
KMS.
Enable GLES (both v1 and v2) support.
Enable GLESv1 support.
Enable GLESv2 support.
Enable LLVM backend for Gallium3D.
-   Dynamically link Gallium3D drivers 
against LLVM.
Enable the Clover Gallium OpenCL state 
tracker.
Enable OpenMAX video decode/encode acceleration 
for Gallium3D.
Enable the OpenVG 2D acceleration API for 
Gallium3D.
@@ -23,12 +21,9 @@
Enable if the user plans to run the package 
under a pax enabled hardened kernel
disable optimized assembly code that is not PIC 
friendly
Build the LLVM based r600 shader 
compiler.
-   Enable sharing of common code for classic 
DRI drivers.
-   Enable sharing of common code for the OpenGL 
API.
Enable the VDPAU acceleration interface for the 
Gallium3D Video Layer.
Enable support for dev-libs/wayland
Enable the XA (X Acceleration) API for Gallium3D.
-   Enable the Xorg state tracker for Gallium3D. This is 
not required for OpenGL acceleration in X.
Enable the XvMC acceleration interface for the 
Gallium3D Video Layer.
 
 



1.628media-libs/mesa/ChangeLog

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

Index: ChangeLog
===
RCS file: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v
retrieving revision 1.627
retrieving revision 1.628
diff -u -r1.627 -r1.628
--- ChangeLog   14 Mar 2015 01:34:01 -  1.627
+++ ChangeLog   14 Mar 2015 01:36:32 -  1.628
@@ -1,6 +1,9 @@
 # ChangeLog for media-libs/mesa
 # Copyright 1999-2015 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.627 
2015/03/14 01:34:01 mattst88 Exp $
+# $Header: /var/cvsroot/gentoo-x86/media-libs/mesa/ChangeLog,v 1.628 
2015/03/14 01:36:32 mattst88 Exp $
+
+  14 Mar 2015; Matt Turner  metadata.xml:
+  Drop dead USE flags.
 
   14 Mar 2015; Matt Turner  -mesa-7.11.2.ebuild,
   -mesa-8.0.4-r1.ebuild, -mesa-9.0.3.ebuild, -mesa-9.1.6.ebuild,






[gentoo-commits] gentoo-x86 commit in media-libs/mesa/files: mesa-8.0.4-configure-bsd.patch eselect-mesa.conf.7.11 mesa-8.1-dont-require-llvm-for-r300.patch eselect-mesa.conf.8.0.1 eselect-mesa.conf.8

2015-03-13 Thread Matt Turner (mattst88)
mattst8815/03/14 01:34:01

  Removed:  mesa-8.0.4-configure-bsd.patch
eselect-mesa.conf.7.11
mesa-8.1-dont-require-llvm-for-r300.patch
eselect-mesa.conf.8.0.1 eselect-mesa.conf.8.1
mesa-8.0-dont-require-llvm-for-r300.patch
mesa-9.2-dont-require-llvm-for-r300.patch
  Log:
  Drop old.
  
  (Portage version: 2.2.17/cvs/Linux x86_64, signed Manifest commit with key 
974CA72A)



  1   2   3   >