[gentoo-commits] proj/portage-utils:master commit in: /

2018-03-30 Thread Fabian Groffen
commit: 16e36c085ce6e9a72690f518baf62852b9196ee7
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Mar 30 20:08:34 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Mar 30 20:16:38 2018 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=16e36c08

initialize_portage_env: avoid double prefix for repos.conf location

 main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.c b/main.c
index ec903fe..6ed2566 100644
--- a/main.c
+++ b/main.c
@@ -964,7 +964,7 @@ initialize_portage_env(void)
}
 
char *orig_main_overlay = main_overlay;
-   read_repos_conf(configroot, CONFIG_EPREFIX "etc/portage/repos.conf");
+   read_repos_conf(configroot, "/etc/portage/repos.conf");
if (orig_main_overlay != main_overlay)
free(orig_main_overlay);
if (array_cnt(overlays) == 0)



[gentoo-commits] proj/portage-utils:master commit in: /

2018-03-30 Thread Fabian Groffen
commit: 32d16662a911ff06991a3b0bfb2c833df365457a
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Mar 30 20:11:17 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Mar 30 20:16:40 2018 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=32d16662

read_portage_env_file: make debug print the real location

 main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/main.c b/main.c
index 6ed2566..7c55358 100644
--- a/main.c
+++ b/main.c
@@ -648,7 +648,7 @@ read_portage_env_file(const char *configroot, const char 
*file, env_vars vars[])
char *buf, *s, *p;
 
if (getenv("DEBUG"))
-   fprintf(stderr, "profile %s\n", file);
+   fprintf(stderr, "profile %s/%s\n", configroot, file);
 
configroot_len = strlen(configroot);
file_len = strlen(file);



[gentoo-commits] proj/portage-utils:master commit in: /

2018-03-30 Thread Fabian Groffen
commit: 553d512900e5d83ec643475344f57118d8b4ed3f
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Mar 31 06:52:40 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Mar 31 06:52:40 2018 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=553d5129

read_portage_env_file: support reading directories, bug #558306

In particular /etc/portage/make.conf can be a directory.  If it is,
process it recursively in sorted order.

Bug: https://bugs.gentoo.org/558306

 main.c | 22 +-
 1 file changed, 21 insertions(+), 1 deletion(-)

diff --git a/main.c b/main.c
index 8000540..85740b8 100644
--- a/main.c
+++ b/main.c
@@ -639,12 +639,15 @@ set_portage_env_var(env_vars *var, const char *value)
}
 }
 
-/* Helper to read a portage env file (e.g. make.conf) */
+/* Helper to read a portage env file (e.g. make.conf), or recursively if
+ * it points to a directory */
 static void
 read_portage_env_file(const char *configroot, const char *file, env_vars 
vars[])
 {
size_t i, buflen, line, configroot_len, file_len;
FILE *fp;
+   struct dirent **dents;
+   int dentslen;
char *buf, *s, *p;
 
if (getenv("DEBUG"))
@@ -659,6 +662,23 @@ read_portage_env_file(const char *configroot, const char 
*file, env_vars vars[])
memcpy(buf + configroot_len, file, file_len);
buf[buflen - 1] = '\0';
 
+   if ((dentslen = scandir(buf, &dents, NULL, alphasort)) > 0) {
+   int di;
+   struct dirent *d;
+   char npath[_Q_PATH_MAX];
+
+   /* recurse through all files */
+   for (di = 0; di < dentslen; di++) {
+   d = dents[di];
+   if (d->d_name[0] == '.' || d->d_name[0] == '~')
+   continue;
+   snprintf(npath, sizeof(npath), "%s/%s", file, 
d->d_name);
+   read_portage_env_file(configroot, npath, vars);
+   }
+   scandir_free(dents, dentslen);
+   goto done;
+   }
+
fp = fopen(buf, "r");
if (fp == NULL)
goto done;



[gentoo-commits] proj/portage-utils:master commit in: /

2018-03-30 Thread Fabian Groffen
commit: b05c690acf8e97890471f4ef45eee821699f13b3
Author: Fabian Groffen  gentoo  org>
AuthorDate: Fri Mar 30 20:13:28 2018 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Fri Mar 30 20:16:41 2018 +
URL:https://gitweb.gentoo.org/proj/portage-utils.git/commit/?id=b05c690a

initialize_portage_env: move debug var printing after repos.conf

in particular PORTDIR may get set, so ensure we print the value that's
going to be used

 main.c | 24 
 1 file changed, 12 insertions(+), 12 deletions(-)

diff --git a/main.c b/main.c
index 7c55358..8000540 100644
--- a/main.c
+++ b/main.c
@@ -943,18 +943,6 @@ initialize_portage_env(void)
}
}
 
-   if (getenv("DEBUG")) {
-   for (i = 0; vars_to_read[i].name; ++i) {
-   var = &vars_to_read[i];
-   fprintf(stderr, "%s = ", var->name);
-   switch (var->type) {
-   case _Q_BOOL: fprintf(stderr, "%i\n", *var->value.b); 
break;
-   case _Q_STR:
-   case _Q_ISTR: fprintf(stderr, "%s\n", *var->value.s); 
break;
-   }
-   }
-   }
-
/* Make sure ROOT always ends in a slash */
var = &vars_to_read[0];
if ((*var->value.s)[var->value_len - 1] != '/') {
@@ -970,6 +958,18 @@ initialize_portage_env(void)
if (array_cnt(overlays) == 0)
xarraypush_str(overlays, main_overlay);
 
+   if (getenv("DEBUG")) {
+   for (i = 0; vars_to_read[i].name; ++i) {
+   var = &vars_to_read[i];
+   fprintf(stderr, "%s = ", var->name);
+   switch (var->type) {
+   case _Q_BOOL: fprintf(stderr, "%i\n", *var->value.b); 
break;
+   case _Q_STR:
+   case _Q_ISTR: fprintf(stderr, "%s\n", *var->value.s); 
break;
+   }
+   }
+   }
+
if (getenv("PORTAGE_QUIET") != NULL)
setup_quiet();
 



[gentoo-commits] repo/gentoo:master commit in: x11-proto/trapproto/

2018-03-30 Thread Matt Turner
commit: 9ca01674cc83079f9b2695da99f5016718d4dc29
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:46 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ca01674

x11-proto/trapproto-3.4.3-r1: hppa stable, bug 651286

 x11-proto/trapproto/trapproto-3.4.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/trapproto/trapproto-3.4.3-r1.ebuild 
b/x11-proto/trapproto/trapproto-3.4.3-r1.ebuild
index 6866119a75e..1ccd85d8f04 100644
--- a/x11-proto/trapproto/trapproto-3.4.3-r1.ebuild
+++ b/x11-proto/trapproto/trapproto-3.4.3-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/inputproto/

2018-03-30 Thread Matt Turner
commit: 4f90c2102d8de5c3b1e8f411f77a66c5330f493e
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:39 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f90c210

x11-proto/inputproto-2.3.2-r1: hppa stable, bug 651286

 x11-proto/inputproto/inputproto-2.3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/inputproto/inputproto-2.3.2-r1.ebuild 
b/x11-proto/inputproto/inputproto-2.3.2-r1.ebuild
index 692d71a5269..3afcb480a43 100644
--- a/x11-proto/inputproto/inputproto-2.3.2-r1.ebuild
+++ b/x11-proto/inputproto/inputproto-2.3.2-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/randrproto/

2018-03-30 Thread Matt Turner
commit: 2f54afb7459193b16ceeb5e47cdfdc2b6b8ec5b0
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:41 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f54afb7

x11-proto/randrproto-1.5.0-r1: hppa stable, bug 651286

 x11-proto/randrproto/randrproto-1.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/randrproto/randrproto-1.5.0-r1.ebuild 
b/x11-proto/randrproto/randrproto-1.5.0-r1.ebuild
index 73313b9d8d7..4731af5a18e 100644
--- a/x11-proto/randrproto/randrproto-1.5.0-r1.ebuild
+++ b/x11-proto/randrproto/randrproto-1.5.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xf86dgaproto/

2018-03-30 Thread Matt Turner
commit: d014c23874ff135ecfd844a40de225e868d5b338
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:51 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d014c238

x11-proto/xf86dgaproto-2.1-r3: hppa stable, bug 651286

 x11-proto/xf86dgaproto/xf86dgaproto-2.1-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xf86dgaproto/xf86dgaproto-2.1-r3.ebuild 
b/x11-proto/xf86dgaproto/xf86dgaproto-2.1-r3.ebuild
index 94336930f45..ccc955388bf 100644
--- a/x11-proto/xf86dgaproto/xf86dgaproto-2.1-r3.ebuild
+++ b/x11-proto/xf86dgaproto/xf86dgaproto-2.1-r3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/videoproto/

2018-03-30 Thread Matt Turner
commit: 7bd44c67f57377e658e293e566a498913186a93f
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:47 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bd44c67

x11-proto/videoproto-2.3.3-r1: hppa stable, bug 651286

 x11-proto/videoproto/videoproto-2.3.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/videoproto/videoproto-2.3.3-r1.ebuild 
b/x11-proto/videoproto/videoproto-2.3.3-r1.ebuild
index f05ab5ad075..6494730ee26 100644
--- a/x11-proto/videoproto/videoproto-2.3.3-r1.ebuild
+++ b/x11-proto/videoproto/videoproto-2.3.3-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/dmxproto/

2018-03-30 Thread Matt Turner
commit: 9c11e329e12187baa4fea162262b9fa6f5e7e16d
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:33 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c11e329

x11-proto/dmxproto-2.3.1-r2: hppa stable, bug 651286

 x11-proto/dmxproto/dmxproto-2.3.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/dmxproto/dmxproto-2.3.1-r2.ebuild 
b/x11-proto/dmxproto/dmxproto-2.3.1-r2.ebuild
index ad7616e491e..9799555afe0 100644
--- a/x11-proto/dmxproto/dmxproto-2.3.1-r2.ebuild
+++ b/x11-proto/dmxproto/dmxproto-2.3.1-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/glproto/

2018-03-30 Thread Matt Turner
commit: a77a4c185397b856fc4a64f1cf35c8c00b88b48d
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:38 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a77a4c18

x11-proto/glproto-1.4.17-r2: hppa stable, bug 651286

 x11-proto/glproto/glproto-1.4.17-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/glproto/glproto-1.4.17-r2.ebuild 
b/x11-proto/glproto/glproto-1.4.17-r2.ebuild
index 5847f10e9b5..2f03402f45f 100644
--- a/x11-proto/glproto/glproto-1.4.17-r2.ebuild
+++ b/x11-proto/glproto/glproto-1.4.17-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="SGI-B-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/scrnsaverproto/

2018-03-30 Thread Matt Turner
commit: 9cf4a42da60bc164eb30c95125f6330a98e8992f
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:45 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf4a42d

x11-proto/scrnsaverproto-1.2.2-r2: hppa stable, bug 651286

 x11-proto/scrnsaverproto/scrnsaverproto-1.2.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/scrnsaverproto/scrnsaverproto-1.2.2-r2.ebuild 
b/x11-proto/scrnsaverproto/scrnsaverproto-1.2.2-r2.ebuild
index 5c8698ddbeb..9a10cefdbd8 100644
--- a/x11-proto/scrnsaverproto/scrnsaverproto-1.2.2-r2.ebuild
+++ b/x11-proto/scrnsaverproto/scrnsaverproto-1.2.2-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/presentproto/

2018-03-30 Thread Matt Turner
commit: ba01eba073679d9247a38f57b72958cce6d4a78f
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:40 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba01eba0

x11-proto/presentproto-1.1-r1: hppa stable, bug 651286

 x11-proto/presentproto/presentproto-1.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/presentproto/presentproto-1.1-r1.ebuild 
b/x11-proto/presentproto/presentproto-1.1-r1.ebuild
index 0b312abc5a9..36d8544832b 100644
--- a/x11-proto/presentproto/presentproto-1.1-r1.ebuild
+++ b/x11-proto/presentproto/presentproto-1.1-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xineramaproto/

2018-03-30 Thread Matt Turner
commit: f4874f83d30bb961eec230e44ed2743989d60eaf
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:54 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4874f83

x11-proto/xineramaproto-1.2.1-r2: hppa stable, bug 651286

 x11-proto/xineramaproto/xineramaproto-1.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xineramaproto/xineramaproto-1.2.1-r2.ebuild 
b/x11-proto/xineramaproto/xineramaproto-1.2.1-r2.ebuild
index 22ed86d6b0c..f0936a47cbf 100644
--- a/x11-proto/xineramaproto/xineramaproto-1.2.1-r2.ebuild
+++ b/x11-proto/xineramaproto/xineramaproto-1.2.1-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/renderproto/

2018-03-30 Thread Matt Turner
commit: 24db21865b891737ac73e94300a146547ad4e76c
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:43 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24db2186

x11-proto/renderproto-0.11.1-r2: hppa stable, bug 651286

 x11-proto/renderproto/renderproto-0.11.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/renderproto/renderproto-0.11.1-r2.ebuild 
b/x11-proto/renderproto/renderproto-0.11.1-r2.ebuild
index 2d2df2c6e4e..c5bb9201b4e 100644
--- a/x11-proto/renderproto/renderproto-0.11.1-r2.ebuild
+++ b/x11-proto/renderproto/renderproto-0.11.1-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/dri2proto/

2018-03-30 Thread Matt Turner
commit: a4b9a667a4f39fd1f8c36a2db6d543482dd33f25
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:34 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b9a667

x11-proto/dri2proto-2.8-r2: hppa stable, bug 651286

 x11-proto/dri2proto/dri2proto-2.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/dri2proto/dri2proto-2.8-r2.ebuild 
b/x11-proto/dri2proto/dri2proto-2.8-r2.ebuild
index 37d3113f502..afab638e8c3 100644
--- a/x11-proto/dri2proto/dri2proto-2.8-r2.ebuild
+++ b/x11-proto/dri2proto/dri2proto-2.8-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/kbproto/

2018-03-30 Thread Matt Turner
commit: 388a9d2af4ae9f1b73ef445400723e10e6265a4c
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:39 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=388a9d2a

x11-proto/kbproto-1.0.7-r1: hppa stable, bug 651286

 x11-proto/kbproto/kbproto-1.0.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/kbproto/kbproto-1.0.7-r1.ebuild 
b/x11-proto/kbproto/kbproto-1.0.7-r1.ebuild
index 565a33cd5b3..785d7f47e2e 100644
--- a/x11-proto/kbproto/kbproto-1.0.7-r1.ebuild
+++ b/x11-proto/kbproto/kbproto-1.0.7-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xproto/

2018-03-30 Thread Matt Turner
commit: 83ce50dcc27579b0f78856807d20f2f3fc0bf416
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:55 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83ce50dc

x11-proto/xproto-7.0.31-r1: hppa stable, bug 651286

 x11-proto/xproto/xproto-7.0.31-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xproto/xproto-7.0.31-r1.ebuild 
b/x11-proto/xproto/xproto-7.0.31-r1.ebuild
index 3abe63c56cd..6df735c2f24 100644
--- a/x11-proto/xproto/xproto-7.0.31-r1.ebuild
+++ b/x11-proto/xproto/xproto-7.0.31-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~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 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xf86miscproto/

2018-03-30 Thread Matt Turner
commit: c812dc0373e7430500a9be5f925b333ac48995b5
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:53 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c812dc03

x11-proto/xf86miscproto-0.9.3-r1: hppa stable, bug 651286

 x11-proto/xf86miscproto/xf86miscproto-0.9.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xf86miscproto/xf86miscproto-0.9.3-r1.ebuild 
b/x11-proto/xf86miscproto/xf86miscproto-0.9.3-r1.ebuild
index 430c5fc0df2..a6fe42d7c8a 100644
--- a/x11-proto/xf86miscproto/xf86miscproto-0.9.3-r1.ebuild
+++ b/x11-proto/xf86miscproto/xf86miscproto-0.9.3-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/fontsproto/

2018-03-30 Thread Matt Turner
commit: a5ca0693648722cce9bd8dc75415099d4412dc11
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:37 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5ca0693

x11-proto/fontsproto-2.1.3-r1: hppa stable, bug 651286

 x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild 
b/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild
index e7e28dd9428..3bca86cca5b 100644
--- a/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild
+++ b/x11-proto/fontsproto/fontsproto-2.1.3-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/recordproto/

2018-03-30 Thread Matt Turner
commit: 8a7b82ca421d113480396694955260bbdb493a4c
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:42 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a7b82ca

x11-proto/recordproto-1.14.2-r2: hppa stable, bug 651286

 x11-proto/recordproto/recordproto-1.14.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/recordproto/recordproto-1.14.2-r2.ebuild 
b/x11-proto/recordproto/recordproto-1.14.2-r2.ebuild
index 09e068c1fe8..133fee51954 100644
--- a/x11-proto/recordproto/recordproto-1.14.2-r2.ebuild
+++ b/x11-proto/recordproto/recordproto-1.14.2-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris 
~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xf86bigfontproto/

2018-03-30 Thread Matt Turner
commit: 58f5b8f5fee4280d62ff1ac4daf64164b0e67cbf
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:50 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58f5b8f5

x11-proto/xf86bigfontproto-1.2.0-r2: hppa stable, bug 651286

 x11-proto/xf86bigfontproto/xf86bigfontproto-1.2.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xf86bigfontproto/xf86bigfontproto-1.2.0-r2.ebuild 
b/x11-proto/xf86bigfontproto/xf86bigfontproto-1.2.0-r2.ebuild
index c1999ef442c..5b9b50b3d2d 100644
--- a/x11-proto/xf86bigfontproto/xf86bigfontproto-1.2.0-r2.ebuild
+++ b/x11-proto/xf86bigfontproto/xf86bigfontproto-1.2.0-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xextproto/

2018-03-30 Thread Matt Turner
commit: 7e441ac1613162d5bcd3d7e49b44bfe304f22dd2
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:49 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:49 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e441ac1

x11-proto/xextproto-7.3.0-r1: hppa stable, bug 651286

 x11-proto/xextproto/xextproto-7.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xextproto/xextproto-7.3.0-r1.ebuild 
b/x11-proto/xextproto/xextproto-7.3.0-r1.ebuild
index 73cb329e314..fc59f206b40 100644
--- a/x11-proto/xextproto/xextproto-7.3.0-r1.ebuild
+++ b/x11-proto/xextproto/xextproto-7.3.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xf86vidmodeproto/

2018-03-30 Thread Matt Turner
commit: 80714372dcb989a4bbf33298fe8c42654e2f1f28
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:53 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80714372

x11-proto/xf86vidmodeproto-2.3.1-r2: hppa stable, bug 651286

 x11-proto/xf86vidmodeproto/xf86vidmodeproto-2.3.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xf86vidmodeproto/xf86vidmodeproto-2.3.1-r2.ebuild 
b/x11-proto/xf86vidmodeproto/xf86vidmodeproto-2.3.1-r2.ebuild
index 49615ef5f8b..e2676bbf92f 100644
--- a/x11-proto/xf86vidmodeproto/xf86vidmodeproto-2.3.1-r2.ebuild
+++ b/x11-proto/xf86vidmodeproto/xf86vidmodeproto-2.3.1-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/dri3proto/

2018-03-30 Thread Matt Turner
commit: 2911716d3525c1553e7788b859cd43e67beb2ea2
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:35 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2911716d

x11-proto/dri3proto-1.0-r1: hppa stable, bug 651286

 x11-proto/dri3proto/dri3proto-1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/dri3proto/dri3proto-1.0-r1.ebuild 
b/x11-proto/dri3proto/dri3proto-1.0-r1.ebuild
index 040fcf29c1a..b9cc5265d92 100644
--- a/x11-proto/dri3proto/dri3proto-1.0-r1.ebuild
+++ b/x11-proto/dri3proto/dri3proto-1.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/fixesproto/

2018-03-30 Thread Matt Turner
commit: bae166a49a37533eee7ae242246bde8deef1793d
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:36 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:36 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bae166a4

x11-proto/fixesproto-5.0-r2: hppa stable, bug 651286

 x11-proto/fixesproto/fixesproto-5.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/fixesproto/fixesproto-5.0-r2.ebuild 
b/x11-proto/fixesproto/fixesproto-5.0-r2.ebuild
index 9b2653314cb..e6a2f3f628a 100644
--- a/x11-proto/fixesproto/fixesproto-5.0-r2.ebuild
+++ b/x11-proto/fixesproto/fixesproto-5.0-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris ~x86-winnt"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xf86driproto/

2018-03-30 Thread Matt Turner
commit: 67354cbb9358fdf70f518df392ea60d1af43e840
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:52 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67354cbb

x11-proto/xf86driproto-2.1.1-r2: hppa stable, bug 651286

 x11-proto/xf86driproto/xf86driproto-2.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xf86driproto/xf86driproto-2.1.1-r2.ebuild 
b/x11-proto/xf86driproto/xf86driproto-2.1.1-r2.ebuild
index 3b34d20e3d5..5ba57ffc5fd 100644
--- a/x11-proto/xf86driproto/xf86driproto-2.1.1-r2.ebuild
+++ b/x11-proto/xf86driproto/xf86driproto-2.1.1-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/xcmiscproto/

2018-03-30 Thread Matt Turner
commit: c98d812c7cac415b18dfcb03bb4ef75cf9838195
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:48 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c98d812c

x11-proto/xcmiscproto-1.2.2-r1: hppa stable, bug 651286

 x11-proto/xcmiscproto/xcmiscproto-1.2.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/xcmiscproto/xcmiscproto-1.2.2-r1.ebuild 
b/x11-proto/xcmiscproto/xcmiscproto-1.2.2-r1.ebuild
index b147ba3eac1..0131e3a9a4b 100644
--- a/x11-proto/xcmiscproto/xcmiscproto-1.2.2-r1.ebuild
+++ b/x11-proto/xcmiscproto/xcmiscproto-1.2.2-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: x11-proto/resourceproto/

2018-03-30 Thread Matt Turner
commit: 3d6d5cf6c8e0252b2e5ee8206f75af38755a1d5f
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 06:31:44 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 06:31:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d6d5cf6

x11-proto/resourceproto-1.2.0-r1: hppa stable, bug 651286

 x11-proto/resourceproto/resourceproto-1.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-proto/resourceproto/resourceproto-1.2.0-r1.ebuild 
b/x11-proto/resourceproto/resourceproto-1.2.0-r1.ebuild
index 9b0119d9cf2..c9eb7fb7e8f 100644
--- a/x11-proto/resourceproto/resourceproto-1.2.0-r1.ebuild
+++ b/x11-proto/resourceproto/resourceproto-1.2.0-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.x.org/wiki/";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: app-emacs/ghub/, app-emacs/ghub/files/

2018-03-30 Thread Hans de Graaff
commit: 1eb09752210acf0072911688c4d897b831c1bb19
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Mar 31 06:22:28 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Mar 31 06:22:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1eb09752

app-emacs/ghub: initial import of 2.0.0

New dependency for forthcoming versions of app-emacs/magit.

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-emacs/ghub/Manifest   |  1 +
 app-emacs/ghub/files/50ghub-gentoo.el |  3 +++
 app-emacs/ghub/ghub-2.0.0.ebuild  | 21 +
 app-emacs/ghub/metadata.xml   | 29 +
 4 files changed, 54 insertions(+)

diff --git a/app-emacs/ghub/Manifest b/app-emacs/ghub/Manifest
new file mode 100644
index 000..e84147fe4f4
--- /dev/null
+++ b/app-emacs/ghub/Manifest
@@ -0,0 +1 @@
+DIST ghub-2.0.0.tar.gz 48150 BLAKE2B 
b9142f33f92dc08a1d5f3f3467361866b41d0d2c943465e803987a41a7bbba1bc4c7e30c058e6e3899110a57d3e1d49545df01efbceb67711186e6411ebc9a58
 SHA512 
39e1ac1760e1a8532ee5d6fd29386ccc24d7f0278f6c900d565a709f86ac6acf01ae49a3462b54054d5b0040102db82ea048157a12663c46b0c45fe11f2e86d6

diff --git a/app-emacs/ghub/files/50ghub-gentoo.el 
b/app-emacs/ghub/files/50ghub-gentoo.el
new file mode 100644
index 000..37d6696a3da
--- /dev/null
+++ b/app-emacs/ghub/files/50ghub-gentoo.el
@@ -0,0 +1,3 @@
+(add-to-list 'load-path "@SITELISP@")
+(autoload 'ghub-create-token "ghub" nil t)
+(autoload 'ghub-token-scopes "ghub" nil t)

diff --git a/app-emacs/ghub/ghub-2.0.0.ebuild b/app-emacs/ghub/ghub-2.0.0.ebuild
new file mode 100644
index 000..4b577810fe6
--- /dev/null
+++ b/app-emacs/ghub/ghub-2.0.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+NEED_EMACS=24
+
+inherit elisp
+
+DESCRIPTION="minuscule client library for the Github API"
+HOMEPAGE="https://magit.vc/manual/ghub";
+SRC_URI="https://github.com/magit/ghub/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+SITEFILE="50${PN}-gentoo.el"
+ELISP_TEXINFO="*.texi"
+DOCS="README.md"
+
+DEPEND="sys-apps/texinfo"

diff --git a/app-emacs/ghub/metadata.xml b/app-emacs/ghub/metadata.xml
new file mode 100644
index 000..864702cccea
--- /dev/null
+++ b/app-emacs/ghub/metadata.xml
@@ -0,0 +1,29 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+
+  gnu-em...@gentoo.org
+  Gentoo GNU Emacs project
+
+
+Ghub is a library that provides basic support for using the Github API
+from Emacs packages.  It abstracts access to API resources using only
+a handful of functions that are not resource-specific.
+
+Ghub handles the creation, storage and use of access tokens using a
+setup wizard to make it easier for users to get started and to reduce
+the support burden imposed on package maintainers.  It also comes with
+a comprehensive manual to address the cases when things don't just
+work as expected or in case you don't want to use the wizard.
+
+Ghub is intentionally limited to only provide these two essential
+features — basic request functions and guided setup — to avoid being
+too opinionated, which would hinder wide adoption.  It is assumed that
+wide adoption would make life easier for users and maintainers alike,
+because then all packages that talk to the Github API could be
+configured the same way.
+
+
+  magit/ghub
+
+



[gentoo-commits] repo/gentoo:master commit in: app-emacs/with-editor/

2018-03-30 Thread Hans de Graaff
commit: 573fd1c74de4bffe0df119715f9b59466a380d72
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Mar 30 09:18:13 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Mar 31 05:57:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573fd1c7

app-emacs/with-editor: add 2.7.2

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 app-emacs/with-editor/Manifest |  1 +
 app-emacs/with-editor/with-editor-2.7.2.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/app-emacs/with-editor/Manifest b/app-emacs/with-editor/Manifest
index 03943ea0734..714489a916b 100644
--- a/app-emacs/with-editor/Manifest
+++ b/app-emacs/with-editor/Manifest
@@ -1,3 +1,4 @@
 DIST with-editor-2.5.10.tar.gz 28081 BLAKE2B 
6e5b0478509022669ecada46a26dc74d4277b0221f8a1691690e60c56a4e24a1c47526c1b75e0b283d2651749069c2a9e0f277ab3805f42c98d2b3d271076b98
 SHA512 
797c7d905eeb4d7398dfba10e4a9b7e7729098a87e48dd75c14fd80f1dd9c5a9693033367a0a9788c4b6c6cc3aa8d2a6ef66ac8bddd24457a61c830887e66a59
 DIST with-editor-2.5.8.tar.gz 27978 BLAKE2B 
a14db76077ec2254f79856c018ea4aed277997b3b35d0cdd1992ded2a5715a13dc2fd909041eafb69150e5bfbc7441e6d5b1549a20e0937aac2a59413cbcd01f
 SHA512 
abd42a096e3318cc25576b240df1ed670de327afabe675d3df12780c392779f33b88e7a76d125f31cf37e3b22eda88391329c73d21ccc834e611893e759ea3e0
 DIST with-editor-2.6.0.tar.gz 28124 BLAKE2B 
b727fc645cba8c85e0ff688ffbb7fd165feeb3e2fe5033475d9f9b333435cdbb4bc6e0c05f862021c1cd32dcdf1c813a0d3a8fb6221a757c7cf4ee4853d40272
 SHA512 
454af6222f54b6695aedb085b6f9a4e60d4ebd9dd6047d67cba13087d3966670aa63358dff45633f3492152f6a15c4c1e92efbaaa787867fef9edcf8b14f690c
+DIST with-editor-2.7.2.tar.gz 30121 BLAKE2B 
a610348a3a2b26059bf58b4b26fdb4e2edddcf70604db7c9d69d2050f4ed1ac745cf94638656339a915ac11a2abe0e8eee5fcb73c768747a8d14078931106332
 SHA512 
9d412928ce5234d3541d717b5b800312c82495f937088cb8308ff64ab92d2639ce078cdc8eb86d34b775a0e6567409249d58d94eb61183b82b5c19e2465905a7

diff --git a/app-emacs/with-editor/with-editor-2.7.2.ebuild 
b/app-emacs/with-editor/with-editor-2.7.2.ebuild
new file mode 100644
index 000..e967a12c4df
--- /dev/null
+++ b/app-emacs/with-editor/with-editor-2.7.2.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+NEED_EMACS=24
+
+inherit elisp
+
+DESCRIPTION="Use the Emacsclient as the \$EDITOR of child processes"
+HOMEPAGE="https://magit.vc/manual/with-editor";
+SRC_URI="https://github.com/magit/with-editor/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+SITEFILE="50${PN}-gentoo.el"
+ELISP_TEXINFO="*.texi"
+DOCS="README.md with-editor.org"
+
+DEPEND=""
+# Versions of magit before 2.5.0 bundled with-editor
+RDEPEND="!!

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/charlock_holmes/

2018-03-30 Thread Hans de Graaff
commit: 9001ee87f41a9f45b76b12f79442ec18990648e7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Mar 31 06:01:02 2018 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Mar 31 06:01:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9001ee87

dev-ruby/charlock_holmes: add 0.7.6

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 dev-ruby/charlock_holmes/Manifest  |  1 +
 .../charlock_holmes/charlock_holmes-0.7.6.ebuild   | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/charlock_holmes/Manifest 
b/dev-ruby/charlock_holmes/Manifest
index ed310850910..b237f6ad824 100644
--- a/dev-ruby/charlock_holmes/Manifest
+++ b/dev-ruby/charlock_holmes/Manifest
@@ -1 +1,2 @@
 DIST charlock_holmes-0.7.5.tar.gz 1192676 BLAKE2B 
d1e5bb3089d32ef7efa46fe54d37c71caa75b5d3a059c45d1d0275014822690031a8df894295e72be11be5ca685e90f35832dd6a06a4c482afe938da2a25ea28
 SHA512 
a5ee9d47d8c8386e7be9ad10e93e7bd7663713df285b33e5d8afd865570e463a9f785e568675363f9b949a8207bbcc144a7378dfb206645824e9f0abc33ec668
+DIST charlock_holmes-0.7.6.tar.gz 1192708 BLAKE2B 
9024238f225e7c5040c0550beb573615939037e0113672d7d048a9abd536d8e1d224eb1c8f6a15590607439483960e955d0318c47fa2e1330e46275f4e99
 SHA512 
410a210e4fc7e9905f38e3f68375ffdf0cf73cca8a8b230d7c4165ac23503e2460692168b1eb5d69ff183e70d89e5dcfbf6688dd22b736f4adf3c9f3af18575b

diff --git a/dev-ruby/charlock_holmes/charlock_holmes-0.7.6.ebuild 
b/dev-ruby/charlock_holmes/charlock_holmes-0.7.6.ebuild
new file mode 100644
index 000..b9bbacc1a91
--- /dev/null
+++ b/dev-ruby/charlock_holmes/charlock_holmes-0.7.6.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby22 ruby23 ruby24 ruby25"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Character encoding detecting library for Ruby using ICU"
+HOMEPAGE="https://github.com/brianmario/charlock_holmes";
+SRC_URI="https://github.com/brianmario/charlock_holmes/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+ruby_add_bdepend "test? (
+   dev-ruby/minitest )"
+
+CDEPEND="dev-libs/icu:=
+   sys-libs/zlib"
+DEPEND+=" ${CDEPEND}"
+RDEPEND+=" ${CDEPEND}"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/d' test/helper.rb || die
+
+   # Avoid dependency on rake-compiler
+   sed -i -e '/rake-compiler/,$ s:^:#:' Rakefile || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/${PN} extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/${PN}
+   cp ext/${PN}/${PN}$(get_modname) lib/${PN}/ || die
+}
+
+each_ruby_test() {
+   ${RUBY} -Ilib test/*.rb || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/fonttools/

2018-03-30 Thread Tim Harder
commit: 9e919b6f1ed8d5dd7791bbcd8c357164e82f5df6
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 05:36:13 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 05:37:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e919b6f

dev-python/fonttools: version bump to 3.24.2

 dev-python/fonttools/Manifest|  1 +
 dev-python/fonttools/fonttools-3.24.2.ebuild | 34 
 2 files changed, 35 insertions(+)

diff --git a/dev-python/fonttools/Manifest b/dev-python/fonttools/Manifest
index 379da570966..146ff642024 100644
--- a/dev-python/fonttools/Manifest
+++ b/dev-python/fonttools/Manifest
@@ -3,3 +3,4 @@ DIST fonttools-3.20.1.tar.gz 998249 BLAKE2B 
e6949d421d317cf2ddfe5d77f59b770b6a7a
 DIST fonttools-3.21.1.tar.gz 1002962 BLAKE2B 
c60d95b769abda7c973b5226d6ed5f23fe4ef159f7ddbdef8fcb4bda27f173f6a1856c596ef845954d4d555e3c475242bd03abfd37cfd0553ee87f86f733d1d3
 SHA512 
db06d84e7a2998b317a4166be328bf3e8ed1e168e623993f120c94df1e8ee35e6836b906cb53b15d3abbda7ca84ca4924b708d03b6e2fe96414d4f400f4f
 DIST fonttools-3.24.0.tar.gz 1264063 BLAKE2B 
a457b0f44088b0aecadc897070a95f4b1b8ae0ef1237d59f67e967e21d08f1a55a07ec5dbe06d80daef9ef11cda447303e05060bf6b3dbd94ad62943356c2a44
 SHA512 
7417a4472791b80308fb800f48126ef6ca2d9163a5fcac76caaa3623072ce30726ffd8d005e03adae96272c4f6183c010d6883a78cd26f48aaf065bcdc1ddebe
 DIST fonttools-3.24.1.tar.gz 1264565 BLAKE2B 
f67eaf66ca2ed6bcb455060b8090b96700fa8c9a9fc4de7e943b0ce0979687882d9cac4d2750028c18eef1e2470ad39fa1ad6cef3dc652a150ec28a857da9e00
 SHA512 
d5621a52cf67dfa54bc0a63d93bbe4f79b1032a05391b9c075c8d4c3bf2bbefd7d4bb26c4ec7b51182ab979d0775e5b4128088912002d083476d618f31af39ef
+DIST fonttools-3.24.2.tar.gz 1264825 BLAKE2B 
dd08243ec237c9c8616cb15f749a89b38fce13a0ac3a3deb64abe19dd95854222aa40003d0457f8821aeebe2e2d637262861f2af90235deb26bafccba30819dc
 SHA512 
6a4b771e94ff23bf75f7a4aad2049350bc8cc41aae09c7fddaac6dc76662248032f138f64849cad8b8a46ad4c7ff8ff115e22084b6af4833cefb2614fdd289a8

diff --git a/dev-python/fonttools/fonttools-3.24.2.ebuild 
b/dev-python/fonttools/fonttools-3.24.2.ebuild
new file mode 100644
index 000..e2594c28365
--- /dev/null
+++ b/dev-python/fonttools/fonttools-3.24.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Library for manipulating TrueType, OpenType, AFM and Type1 fonts"
+HOMEPAGE="https://github.com/fonttools/fonttools/";
+SRC_URI="https://github.com/fonttools/fonttools/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   test? (
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   )"
+
+python_prepare_all() {
+   touch Tests/svgLib/__init__.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   esetup.py test
+}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/inkscape/

2018-03-30 Thread Tim Harder
commit: 3473013a4354c9485032d7d12665f533d2d867cd
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 05:03:16 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 05:11:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3473013a

media-gfx/inkscape: version bump to 0.92.3

Closes: https://bugs.gentoo.org/651500

 media-gfx/inkscape/Manifest   |   1 +
 media-gfx/inkscape/inkscape-0.92.3.ebuild | 175 ++
 2 files changed, 176 insertions(+)

diff --git a/media-gfx/inkscape/Manifest b/media-gfx/inkscape/Manifest
index e46b9f48433..f44a0ae2f97 100644
--- a/media-gfx/inkscape/Manifest
+++ b/media-gfx/inkscape/Manifest
@@ -2,3 +2,4 @@ DIST inkscape-0.91.tar.bz2 25858909 BLAKE2B 
9ca69a10a043efa64d7327ca6ba28d04a650
 DIST inkscape-0.92.1-poppler.patch 44142 BLAKE2B 
4431a4185cfeb6c41f08da656db4335017fc08a62e154f75ef4ef1a2ae92dd510f22a4f9cd1cf8bb1fae09770f47a398b7b789c8bad4e47bc4941b9e8f79c1f0
 SHA512 
4a0504c236c816f413b3bf055754513bb53b52eb5f0323faa28ab445ce3fb83b6f41de5bc6e3865909e50fc9be937e3f99282e8414f4cdc954e04b974d7f15ab
 DIST inkscape-0.92.1.tar.bz2 31222684 BLAKE2B 
26364e3ccf447d22d15291b132b44b1abd5ca4efc1df8e5eb4ca494ac9340ed8aa5e2d57d2e14c1859fc202532cf722b4c9c89defa92c630e462b07ce29ec774
 SHA512 
f8f3bfb812a214216c3ffac7064a4619f847cf9810417c782481dba12e6c6a44123c8b8a9289fbf5287f2e6b6df39a641d94a000d842faee5ff808eec86187a0
 DIST inkscape-0.92.2.tar.bz2 31224100 BLAKE2B 
c0a7b01220d1b0b0863f71f3e1c8ba7bdb58bd86e79c2d3f214831a344c992a1084d64813de00e6f88d77b1b1f1b8562c7a0ee98824149cb867eba586314d27d
 SHA512 
e790cafb7cc2be2eb75f04ac4c18ae8558ae997f4261c38dac9c2a3383c7a12a0f4a090956770d1341b212fc9698d31d212f2c1609421907255f8af650569b30
+DIST inkscape-0.92.3.tar.bz2 31606442 BLAKE2B 
bc90dc160ca059395a2951b7b2daeb8730753c551f78e6af88b51b41322a438256499f754fb6b07946d77b80e1ddfe5514944f9b5cbb19d2bfdecb8625328db0
 SHA512 
af3c0f672a108e583f3c92cde1451b3f1f5319c1669891005c230e73b3485aa8951af6d7b21c7ccd9e4acbca8eaa5a3bb61ae1d828e81885bc7b61a8ae933687

diff --git a/media-gfx/inkscape/inkscape-0.92.3.ebuild 
b/media-gfx/inkscape/inkscape-0.92.3.ebuild
new file mode 100644
index 000..69b0c27405f
--- /dev/null
+++ b/media-gfx/inkscape/inkscape-0.92.3.ebuild
@@ -0,0 +1,175 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="xml"
+
+inherit autotools flag-o-matic gnome2-utils xdg toolchain-funcs 
python-single-r1
+
+MY_P=${P/_/}
+
+DESCRIPTION="A SVG based generic vector-drawing program"
+HOMEPAGE="https://inkscape.org/";
+SRC_URI="https://inkscape.global.ssl.fastly.net/media/resources/file/${P}.tar.bz2
+https://dev.gentoo.org/~jstein/dist/inkscape-0.92.1-poppler.patch";
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+IUSE="cdr dia dbus exif gnome imagemagick openmp postscript inkjar jpeg latex"
+IUSE+=" lcms nls spell static-libs visio wpg"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="
+   ${PYTHON_DEPS}
+   >=app-text/poppler-0.26.0:=[cairo]
+   >=dev-cpp/glibmm-2.48
+   >=dev-cpp/gtkmm-2.18.0:2.4
+   >=dev-cpp/cairomm-1.9.8
+   >=dev-libs/boehm-gc-7.1:=
+   >=dev-libs/glib-2.28
+   >=dev-libs/libsigc++-2.0.12
+   >=dev-libs/libxml2-2.6.20
+   >=dev-libs/libxslt-1.0.15
+   dev-libs/popt
+   dev-python/lxml[${PYTHON_USEDEP}]
+   media-gfx/potrace
+   media-gfx/scour[${PYTHON_USEDEP}]
+   media-libs/fontconfig
+   media-libs/freetype:2
+   media-libs/libpng:0
+   sci-libs/gsl:=
+   x11-libs/libX11
+   >=x11-libs/gtk+-2.10.7:2
+   >=x11-libs/pango-1.24
+   cdr? (
+   media-libs/libcdr
+   app-text/libwpg:0.3
+   dev-libs/librevenge
+   )
+   dbus? ( dev-libs/dbus-glib )
+   exif? ( media-libs/libexif )
+   gnome? ( >=gnome-base/gnome-vfs-2.0 )
+   imagemagick? ( media-gfx/imagemagick:=[cxx] )
+   jpeg? ( virtual/jpeg:0 )
+   lcms? ( media-libs/lcms:2 )
+   spell? (
+   app-text/aspell
+   app-text/gtkspell:2
+   )
+   visio? (
+   media-libs/libvisio
+   app-text/libwpg:0.3
+   dev-libs/librevenge
+   )
+   wpg? (
+   app-text/libwpg:0.3
+   dev-libs/librevenge
+   )
+"
+
+# These only use executables provided by these packages
+# See share/extensions for more details. inkscape can tell you to
+# install these so we could of course just not depend on those and rely
+# on that.
+RDEPEND="${COMMON_DEPEND}
+   dev-python/numpy[${PYTHON_USEDEP}]
+   media-gfx/uniconvertor
+   dia? ( app-office/dia )
+   latex? (
+   media-gfx/pstoedit[plotutils]
+   app-text/dvipsk
+   app-text/texlive-core
+   )
+   postscript? ( app-text/ghostscript-gpl 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/inkscape/, media-gfx/inkscape/files/

2018-03-30 Thread Tim Harder
commit: 07a4b2a3a4db18a38a7f73ac2177b9c4171fb9ec
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 05:10:22 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 05:11:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07a4b2a3

media-gfx/inkscape: remove old

 media-gfx/inkscape/Manifest|   2 -
 .../files/inkscape-0.91-fix-gtkmm-2.48.patch   |  63 
 .../files/inkscape-0.91_pre3-automagic.patch   | 154 --
 .../files/inkscape-0.91_pre3-desktop.patch |  20 ---
 media-gfx/inkscape/inkscape-0.91-r3.ebuild | 176 
 media-gfx/inkscape/inkscape-0.91-r4.ebuild | 179 -
 media-gfx/inkscape/inkscape-0.92.1-r1.ebuild   | 173 
 7 files changed, 767 deletions(-)

diff --git a/media-gfx/inkscape/Manifest b/media-gfx/inkscape/Manifest
index f44a0ae2f97..00b2e31f116 100644
--- a/media-gfx/inkscape/Manifest
+++ b/media-gfx/inkscape/Manifest
@@ -1,5 +1,3 @@
-DIST inkscape-0.91.tar.bz2 25858909 BLAKE2B 
9ca69a10a043efa64d7327ca6ba28d04a650d980ef455106d40ae17555d4792a532df493dab23dad2d3c7cdcc68f59391228bae76ebd30f03cf66cbb4fd0ae65
 SHA512 
3778ef7d4a1c759a7afc093e55eefb69a78dcb60332655cc8ab8c481f54a3e6550df6070178390eb08588245531906b8bef33301f0765a4d28d6c7506fcf3bc7
 DIST inkscape-0.92.1-poppler.patch 44142 BLAKE2B 
4431a4185cfeb6c41f08da656db4335017fc08a62e154f75ef4ef1a2ae92dd510f22a4f9cd1cf8bb1fae09770f47a398b7b789c8bad4e47bc4941b9e8f79c1f0
 SHA512 
4a0504c236c816f413b3bf055754513bb53b52eb5f0323faa28ab445ce3fb83b6f41de5bc6e3865909e50fc9be937e3f99282e8414f4cdc954e04b974d7f15ab
-DIST inkscape-0.92.1.tar.bz2 31222684 BLAKE2B 
26364e3ccf447d22d15291b132b44b1abd5ca4efc1df8e5eb4ca494ac9340ed8aa5e2d57d2e14c1859fc202532cf722b4c9c89defa92c630e462b07ce29ec774
 SHA512 
f8f3bfb812a214216c3ffac7064a4619f847cf9810417c782481dba12e6c6a44123c8b8a9289fbf5287f2e6b6df39a641d94a000d842faee5ff808eec86187a0
 DIST inkscape-0.92.2.tar.bz2 31224100 BLAKE2B 
c0a7b01220d1b0b0863f71f3e1c8ba7bdb58bd86e79c2d3f214831a344c992a1084d64813de00e6f88d77b1b1f1b8562c7a0ee98824149cb867eba586314d27d
 SHA512 
e790cafb7cc2be2eb75f04ac4c18ae8558ae997f4261c38dac9c2a3383c7a12a0f4a090956770d1341b212fc9698d31d212f2c1609421907255f8af650569b30
 DIST inkscape-0.92.3.tar.bz2 31606442 BLAKE2B 
bc90dc160ca059395a2951b7b2daeb8730753c551f78e6af88b51b41322a438256499f754fb6b07946d77b80e1ddfe5514944f9b5cbb19d2bfdecb8625328db0
 SHA512 
af3c0f672a108e583f3c92cde1451b3f1f5319c1669891005c230e73b3485aa8951af6d7b21c7ccd9e4acbca8eaa5a3bb61ae1d828e81885bc7b61a8ae933687

diff --git a/media-gfx/inkscape/files/inkscape-0.91-fix-gtkmm-2.48.patch 
b/media-gfx/inkscape/files/inkscape-0.91-fix-gtkmm-2.48.patch
deleted file mode 100644
index f9c06601e83..000
--- a/media-gfx/inkscape/files/inkscape-0.91-fix-gtkmm-2.48.patch
+++ /dev/null
@@ -1,63 +0,0 @@
 a/src/ui/clipboard.cpp 2016-04-02 15:15:43 +
-+++ b/src/ui/clipboard.cpp 2016-04-07 16:30:32 +
-@@ -146,8 +146,6 @@
- void _setClipboardColor(guint32);
- void _userWarn(SPDesktop *, char const *);
- 
--void _inkscape_wait_for_targets(std::list &);
--
- // private properites
- SPDocument *_clipboardSPDoc; ///< Document that stores the clipboard 
until someone requests it
- Inkscape::XML::Node *_defs; ///< Reference to the clipboard document's 
defs node
-@@ -1302,9 +1300,7 @@
-  */
- Glib::ustring ClipboardManagerImpl::_getBestTarget()
- {
--// GTKmm's wait_for_targets() is broken, see the comment in 
_inkscape_wait_for_targets()
--std::list targets; // = _clipboard->wait_for_targets();
--_inkscape_wait_for_targets(targets);
-+std::list targets = _clipboard->wait_for_targets();
- 
- // clipboard target debugging snippet
- /*
-@@ -1456,39 +1452,6 @@
- desktop->messageStack()->flash(Inkscape::WARNING_MESSAGE, msg);
- }
- 
--
--// GTKMM's clipboard::wait_for_targets is buggy and might return bogus, see
--//
--// https://bugs.launchpad.net/inkscape/+bug/296778
--// http://mail.gnome.org/archives/gtk-devel-list/2009-June/msg00062.html
--//
--// for details. Until this has been fixed upstream we will use our own 
implementation
--// of this method, as copied from /gtkmm-2.16.0/gtk/gtkmm/clipboard.cc.
--void 
ClipboardManagerImpl::_inkscape_wait_for_targets(std::list 
&listTargets)
--{
--//Get a newly-allocated array of atoms:
--GdkAtom* targets = NULL;
--gint n_targets = 0;
--gboolean test = gtk_clipboard_wait_for_targets( 
gtk_clipboard_get(GDK_SELECTION_CLIPBOARD), &targets, &n_targets );
--if (!test || (targets == NULL)) {
--return;
--}
--
--//Add the targets to the C++ container:
--for (int i = 0; i < n_targets; i++)
--{
--//Convert the atom to a string:
--gchar* const atom_name = gdk_atom_name(targets[i]);
--
--Glib::ustring target;
--if (atom_name) {
--target = Glib::ScopedPtr(atom_name)

[gentoo-commits] repo/gentoo:master commit in: media-gfx/pngquant/

2018-03-30 Thread Tim Harder
commit: d9fa897963d4d2f997c02d65630896456a876f53
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 05:01:04 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 05:02:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9fa8979

media-gfx/pngquant: version bump to 2.11.7

 media-gfx/pngquant/Manifest   |  1 +
 media-gfx/pngquant/pngquant-2.11.7.ebuild | 41 +++
 2 files changed, 42 insertions(+)

diff --git a/media-gfx/pngquant/Manifest b/media-gfx/pngquant/Manifest
index 23ac8b82f32..bf9a5a8ccf8 100644
--- a/media-gfx/pngquant/Manifest
+++ b/media-gfx/pngquant/Manifest
@@ -1,3 +1,4 @@
 DIST pngquant-2.11.4-src.tar.gz 142149 BLAKE2B 
eccf0c7a279d62981cfdf44ab0e378b2331377cd892019161b453edc7ffe73616a2aa83a07cf5f8d7292a0f96bf25612c23129348463cac73647021eae44f160
 SHA512 
171949977e1fd71c05bd75552f2e62535f6c15f31c3192cbe31df7451091634a6fbbfd08b47dd040f353af3b5f41fcc13db4421a212ca07cc6836f029635ddd0
+DIST pngquant-2.11.7-src.tar.gz 141959 BLAKE2B 
00e36a818a2150aeb3c927daeb8621bafa41497a6fe32afe30e41ad04d788946390f382139aea9878f58fc7a84fdbaf597681c9d8769e0e23b785a10d2e0233c
 SHA512 
5325577dcb16acf5dff81a5f3bcf8cfa2a12df07a7c2308ebb9a343b74e56ea21184ed3f87819122c8bb97b4a7ffd3b61046c60f7f339da9a93e76dfa17ebee6
 DIST pngquant-2.5.2-src.tar.bz2 54611 BLAKE2B 
5938f0be4db3cf167a8a52267807672643002599574beb5f256edb93a7e6d3bf0a035a6231e5e0f9d102bed9c278fd0323c51fdd044280c7000cb5537468e1b8
 SHA512 
d542765bc1f7e22fd7199cd4aeb8dc7b82fa87fe05c53ca6b7919522e081c861d419a541909284aa4e5dcfeeedb19729a50150d9139389c1949b3aeaf4933401
 DIST pngquant-2.7.2-src.tar.gz 91721 BLAKE2B 
d8f1952e9188956cfcad802aec9f09728290298355f333e87cd627a75509ebfd7f6b657133b59c040103fe9f8333f83e07887e7dd919c134c1f5eb4b9bbace98
 SHA512 
ab84651cf0b5f3af2095b5741e0d03f4ddedbed59e75c5c75faeac20efa8dd2fb482f2a8d9447b5673e9ae6970b9af8dfdbe40062bdf377206ee87eaa69ed9d8

diff --git a/media-gfx/pngquant/pngquant-2.11.7.ebuild 
b/media-gfx/pngquant/pngquant-2.11.7.ebuild
new file mode 100644
index 000..2da09ac80e2
--- /dev/null
+++ b/media-gfx/pngquant/pngquant-2.11.7.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="command-line utility and library for lossy compression of PNG 
images"
+HOMEPAGE="http://pngquant.org/";
+SRC_URI="http://pngquant.org/${P}-src.tar.gz";
+
+LICENSE="GPL-3 HPND rwpng"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug lcms openmp cpu_flags_x86_sse2"
+
+RDEPEND="media-libs/libpng:0=
+   media-gfx/libimagequant:=
+   sys-libs/zlib:=
+   lcms? ( media-libs/lcms:2 )"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   tc-export AR CC
+   # Hand rolled configure script, so not all flags are supported.
+   ./configure \
+   --prefix="${EPREFIX}/usr" \
+   --with-libimagequant \
+   $(use debug && echo --enable-debug) \
+   $(use_enable cpu_flags_x86_sse2 sse) \
+   $(use openmp && tc-has-openmp && echo --with-openmp) \
+   $(use_with lcms lcms2) \
+   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
+   LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   dobin ${PN}
+   doman ${PN}.1
+   dodoc CHANGELOG README.md
+}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/pngquant/

2018-03-30 Thread Tim Harder
commit: 9b2d28f348e66b396488a74b8d249cf810bf3aed
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 05:01:41 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 05:02:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b2d28f3

media-gfx/pngquant: remove old

 media-gfx/pngquant/Manifest  |  2 --
 media-gfx/pngquant/pngquant-2.5.2.ebuild | 39 
 media-gfx/pngquant/pngquant-2.7.2.ebuild | 39 
 3 files changed, 80 deletions(-)

diff --git a/media-gfx/pngquant/Manifest b/media-gfx/pngquant/Manifest
index bf9a5a8ccf8..f79cf2c9374 100644
--- a/media-gfx/pngquant/Manifest
+++ b/media-gfx/pngquant/Manifest
@@ -1,4 +1,2 @@
 DIST pngquant-2.11.4-src.tar.gz 142149 BLAKE2B 
eccf0c7a279d62981cfdf44ab0e378b2331377cd892019161b453edc7ffe73616a2aa83a07cf5f8d7292a0f96bf25612c23129348463cac73647021eae44f160
 SHA512 
171949977e1fd71c05bd75552f2e62535f6c15f31c3192cbe31df7451091634a6fbbfd08b47dd040f353af3b5f41fcc13db4421a212ca07cc6836f029635ddd0
 DIST pngquant-2.11.7-src.tar.gz 141959 BLAKE2B 
00e36a818a2150aeb3c927daeb8621bafa41497a6fe32afe30e41ad04d788946390f382139aea9878f58fc7a84fdbaf597681c9d8769e0e23b785a10d2e0233c
 SHA512 
5325577dcb16acf5dff81a5f3bcf8cfa2a12df07a7c2308ebb9a343b74e56ea21184ed3f87819122c8bb97b4a7ffd3b61046c60f7f339da9a93e76dfa17ebee6
-DIST pngquant-2.5.2-src.tar.bz2 54611 BLAKE2B 
5938f0be4db3cf167a8a52267807672643002599574beb5f256edb93a7e6d3bf0a035a6231e5e0f9d102bed9c278fd0323c51fdd044280c7000cb5537468e1b8
 SHA512 
d542765bc1f7e22fd7199cd4aeb8dc7b82fa87fe05c53ca6b7919522e081c861d419a541909284aa4e5dcfeeedb19729a50150d9139389c1949b3aeaf4933401
-DIST pngquant-2.7.2-src.tar.gz 91721 BLAKE2B 
d8f1952e9188956cfcad802aec9f09728290298355f333e87cd627a75509ebfd7f6b657133b59c040103fe9f8333f83e07887e7dd919c134c1f5eb4b9bbace98
 SHA512 
ab84651cf0b5f3af2095b5741e0d03f4ddedbed59e75c5c75faeac20efa8dd2fb482f2a8d9447b5673e9ae6970b9af8dfdbe40062bdf377206ee87eaa69ed9d8

diff --git a/media-gfx/pngquant/pngquant-2.5.2.ebuild 
b/media-gfx/pngquant/pngquant-2.5.2.ebuild
deleted file mode 100644
index 04a3c8e8cd2..000
--- a/media-gfx/pngquant/pngquant-2.5.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit toolchain-funcs
-
-DESCRIPTION="command-line utility and library for lossy compression of PNG 
images"
-HOMEPAGE="http://pngquant.org/";
-SRC_URI="http://pngquant.org/${P}-src.tar.bz2";
-
-LICENSE="HPND rwpng"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug lcms openmp cpu_flags_x86_sse2"
-
-RDEPEND="media-libs/libpng:0=
-   sys-libs/zlib:=
-   lcms? ( media-libs/lcms:2 )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   tc-export AR CC
-   # Hand rolled configure script, so not all flags are supported.
-   ./configure \
-   --prefix="${EPREFIX}/usr" \
-   $(use debug && echo --enable-debug) \
-   $(use_enable cpu_flags_x86_sse2 sse) \
-   $(use openmp && tc-has-openmp && echo --with-openmp) \
-   $(use_with lcms lcms2) \
-   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
-   LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   dobin ${PN}
-   doman ${PN}.1
-   dodoc CHANGELOG README.md
-}

diff --git a/media-gfx/pngquant/pngquant-2.7.2.ebuild 
b/media-gfx/pngquant/pngquant-2.7.2.ebuild
deleted file mode 100644
index a9d5a186736..000
--- a/media-gfx/pngquant/pngquant-2.7.2.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs
-
-DESCRIPTION="command-line utility and library for lossy compression of PNG 
images"
-HOMEPAGE="http://pngquant.org/";
-SRC_URI="http://pngquant.org/${P}-src.tar.gz";
-
-LICENSE="GPL-3 HPND rwpng"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug lcms openmp cpu_flags_x86_sse2"
-
-RDEPEND="media-libs/libpng:0=
-   sys-libs/zlib:=
-   lcms? ( media-libs/lcms:2 )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   tc-export AR CC
-   # Hand rolled configure script, so not all flags are supported.
-   ./configure \
-   --prefix="${EPREFIX}/usr" \
-   $(use debug && echo --enable-debug) \
-   $(use_enable cpu_flags_x86_sse2 sse) \
-   $(use openmp && tc-has-openmp && echo --with-openmp) \
-   $(use_with lcms lcms2) \
-   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
-   LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   dobin ${PN}
-   doman ${PN}.1
-   dodoc CHANGELOG README.md
-}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/libimagequant/

2018-03-30 Thread Tim Harder
commit: b9323653f6240231f61bd7e9835264dfb3996fc9
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 04:52:18 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 05:02:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9323653

media-gfx/libimagequant: version bump to 2.11.7

 media-gfx/libimagequant/Manifest   |  1 +
 .../libimagequant/libimagequant-2.11.7.ebuild  | 47 ++
 2 files changed, 48 insertions(+)

diff --git a/media-gfx/libimagequant/Manifest b/media-gfx/libimagequant/Manifest
index e0918a82125..cad7ccfcfad 100644
--- a/media-gfx/libimagequant/Manifest
+++ b/media-gfx/libimagequant/Manifest
@@ -1,2 +1,3 @@
 DIST libimagequant-2.10.1.tar.gz 70783 BLAKE2B 
8a8c075b95010d5dc7190591a33bf25b6a95b090d14fd09146dc5016e6ea319494277d8217191a6810c53f973471b8a711168f2960bebbf8b8396cd7544bb434
 SHA512 
1cbb725e5f3774f931379f640c6532e169ea02a7b502a93af6b75a305e3dab1bd34a375391be0e8fdc15fea578715e8f8319d95d674383b7048e5f73e48b106f
 DIST libimagequant-2.11.4.tar.gz 74117 BLAKE2B 
5d42dc876c77694a1d4576e633d2e3aa1e531061aa849a683542cf11b14333f65125bbae699f927bf42896a934ade6d745aa517d6cbc4b7097d96c7579532ec9
 SHA512 
e9d2aaac2f37968dc93ba0da7d03f0fcf60b3f17d9a0b9edfd6930eade25844dd603de74492d8e1de8dc2da4e7f3e47959a558b5a67588d71e9e1db035eca1cc
+DIST libimagequant-2.11.7.tar.gz 74311 BLAKE2B 
204fbe794014c11d767991a03e729b234978fb1edb1fdffcb7d332461ccaa1a536a1e9dbc7b44a8838db61cc76fdbc1eb75087b480f4fc42bf791fea913639a2
 SHA512 
8816811c06eec27232e39725c581e382b7076f3bc23b017810de0e92236e6e4eb480def7b50347c9b75f7d792245669398c39a17359eb81077badf12e6f0a172

diff --git a/media-gfx/libimagequant/libimagequant-2.11.7.ebuild 
b/media-gfx/libimagequant/libimagequant-2.11.7.ebuild
new file mode 100644
index 000..2d2db96f010
--- /dev/null
+++ b/media-gfx/libimagequant/libimagequant-2.11.7.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Palette quantization library that powers pngquant and other PNG 
optimizers"
+HOMEPAGE="https://pngquant.org/lib/";
+SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cpu_flags_x86_sse2 debug openmp static-libs"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+pkg_pretend() {
+   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
+}
+
+src_configure() {
+   tc-export AR CC
+   # Hand rolled configure script, so not all flags are supported.
+   ./configure \
+   --prefix="${EPREFIX}/usr" \
+   $(use debug && echo --enable-debug) \
+   $(use_enable cpu_flags_x86_sse2 sse) \
+   $(use_with openmp) \
+   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
+   LDFLAGS="${LDFLAGS}"
+}
+
+src_compile() {
+   emake shared || die "make failed"
+   use static-libs && (emake static || die "make failed")
+}
+
+src_install() {
+   dolib.so libimagequant.so
+   dolib.so libimagequant.so.*
+   use static-libs && dolib.a libimagequant.a
+   doheader libimagequant.h
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/libimagequant/

2018-03-30 Thread Tim Harder
commit: d173bb235741cf496b7731778c117ee3bb856909
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 05:02:09 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 05:02:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d173bb23

media-gfx/libimagequant: remove old

 media-gfx/libimagequant/Manifest   |  1 -
 .../libimagequant/libimagequant-2.10.1.ebuild  | 47 --
 2 files changed, 48 deletions(-)

diff --git a/media-gfx/libimagequant/Manifest b/media-gfx/libimagequant/Manifest
index cad7ccfcfad..21738622afe 100644
--- a/media-gfx/libimagequant/Manifest
+++ b/media-gfx/libimagequant/Manifest
@@ -1,3 +1,2 @@
-DIST libimagequant-2.10.1.tar.gz 70783 BLAKE2B 
8a8c075b95010d5dc7190591a33bf25b6a95b090d14fd09146dc5016e6ea319494277d8217191a6810c53f973471b8a711168f2960bebbf8b8396cd7544bb434
 SHA512 
1cbb725e5f3774f931379f640c6532e169ea02a7b502a93af6b75a305e3dab1bd34a375391be0e8fdc15fea578715e8f8319d95d674383b7048e5f73e48b106f
 DIST libimagequant-2.11.4.tar.gz 74117 BLAKE2B 
5d42dc876c77694a1d4576e633d2e3aa1e531061aa849a683542cf11b14333f65125bbae699f927bf42896a934ade6d745aa517d6cbc4b7097d96c7579532ec9
 SHA512 
e9d2aaac2f37968dc93ba0da7d03f0fcf60b3f17d9a0b9edfd6930eade25844dd603de74492d8e1de8dc2da4e7f3e47959a558b5a67588d71e9e1db035eca1cc
 DIST libimagequant-2.11.7.tar.gz 74311 BLAKE2B 
204fbe794014c11d767991a03e729b234978fb1edb1fdffcb7d332461ccaa1a536a1e9dbc7b44a8838db61cc76fdbc1eb75087b480f4fc42bf791fea913639a2
 SHA512 
8816811c06eec27232e39725c581e382b7076f3bc23b017810de0e92236e6e4eb480def7b50347c9b75f7d792245669398c39a17359eb81077badf12e6f0a172

diff --git a/media-gfx/libimagequant/libimagequant-2.10.1.ebuild 
b/media-gfx/libimagequant/libimagequant-2.10.1.ebuild
deleted file mode 100644
index 2392cd1682e..000
--- a/media-gfx/libimagequant/libimagequant-2.10.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit toolchain-funcs eutils
-
-DESCRIPTION="Palette quantization library that powers pngquant and other PNG 
optimizers"
-HOMEPAGE="https://pngquant.org/lib/";
-SRC_URI="https://github.com/ImageOptim/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="cpu_flags_x86_sse2 debug openmp static-libs"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-pkg_pretend() {
-   [[ ${MERGE_TYPE} != binary ]] && use openmp && tc-check-openmp
-}
-
-src_configure() {
-   tc-export AR CC
-   # Hand rolled configure script, so not all flags are supported.
-   ./configure \
-   --prefix="${EPREFIX}/usr" \
-   $(use debug && echo --enable-debug) \
-   $(use_enable cpu_flags_x86_sse2 sse) \
-   $(use_with openmp) \
-   CFLAGS="${CFLAGS} ${CPPFLAGS}" \
-   LDFLAGS="${LDFLAGS}"
-}
-
-src_compile() {
-   emake shared || die "make failed"
-   use static-libs && (emake static || die "make failed")
-}
-
-src_install() {
-   dolib.so libimagequant.so
-   dolib.so libimagequant.so.*
-   use static-libs && dolib.a libimagequant.a
-   doheader libimagequant.h
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/asn1crypto/

2018-03-30 Thread Matt Turner
commit: a494f8062996f3098f5e99af061c14af9f5955d8
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 05:02:00 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 05:02:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a494f806

dev-python/asn1crypto-0.24.0: added ~alpha, bug 626836

 dev-python/asn1crypto/asn1crypto-0.24.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild 
b/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
index 1e78322804b..7447491c7a3 100644
--- a/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
+++ b/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/wbond/asn1crypto/archive/${PV}.tar.gz -> ${P}.gh.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
 IUSE="test"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-python/cryptography/

2018-03-30 Thread Matt Turner
commit: 70f048bc7090969e219a9a7194edc6da8b25e873
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 05:02:03 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 05:02:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70f048bc

dev-python/cryptography-2.1.4: added ~alpha, bug 626836

 dev-python/cryptography/cryptography-2.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/cryptography/cryptography-2.1.4.ebuild 
b/dev-python/cryptography/cryptography-2.1.4.ebuild
index ca6ef79819a..312a95c25ec 100644
--- a/dev-python/cryptography/cryptography-2.1.4.ebuild
+++ b/dev-python/cryptography/cryptography-2.1.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
 IUSE="libressl test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyopenssl/

2018-03-30 Thread Matt Turner
commit: 2f0174e596d485944c1ebb1efedd8375961cce09
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 05:02:04 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 05:02:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0174e5

dev-python/pyopenssl-17.5.0: added ~alpha, bug 626836

 dev-python/pyopenssl/pyopenssl-17.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild 
b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
index 53103be665c..bb8c629191c 100644
--- a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
+++ b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
 IUSE="doc examples test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyopenssl/, dev-python/asn1crypto/, dev-python/cryptography/

2018-03-30 Thread Matt Turner
commit: d9c6f5da90c3eae9632e939894837f428a021b96
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Mar 31 04:52:09 2018 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Mar 31 04:54:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9c6f5da

Revert collection of bad stabilizations

The following is a squash of the following reverts:

Revert "dev-python/pyopenssl: fixing amdge-fbsd"

This reverts commit 4e058be4f713f961a477e3b09ad7e0e4a58e40b1.

Revert "dev-python/pyopenssl: 17.5.0 stablized amd64 arm arm64 hppa ia64 ~mips 
ppc ppc64 x86 under allarches"

This reverts commit 9df03df64db374b5bf01eb2dcc1ddc23ab48c28d.

Revert "dev-python/cryptography: 2.1.4 stablized allarches"

This reverts commit 86b95fdb15331f93b276c309abc3ce42c1390b50.

Revert "dev-python/asn1crypto: adding alpha for cryptography under allarches"

This reverts commit 25c17342050fb0c7da351968e1c559a5d1d4db07.

There was an existing rekeywording request for pyopenssl and these
packages (bug 626836). They should not have been stabilized on
architectures that had no existing keywords.

 dev-python/asn1crypto/asn1crypto-0.22.0.ebuild| 4 ++--
 dev-python/asn1crypto/asn1crypto-0.24.0.ebuild| 2 +-
 dev-python/cryptography/cryptography-2.1.4.ebuild | 9 -
 dev-python/pyopenssl/pyopenssl-17.5.0.ebuild  | 2 +-
 4 files changed, 8 insertions(+), 9 deletions(-)

diff --git a/dev-python/asn1crypto/asn1crypto-0.22.0.ebuild 
b/dev-python/asn1crypto/asn1crypto-0.22.0.ebuild
index cce121553cf..7d17ec13ec6 100644
--- a/dev-python/asn1crypto/asn1crypto-0.22.0.ebuild
+++ b/dev-python/asn1crypto/asn1crypto-0.22.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 x86 ~x64-solaris"
+KEYWORDS="amd64 arm arm64 hppa ia64 ~mips ppc ppc64 x86 ~x64-solaris"
 IUSE="test"
 
 RDEPEND=""

diff --git a/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild 
b/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
index 7447491c7a3..1e78322804b 100644
--- a/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
+++ b/dev-python/asn1crypto/asn1crypto-0.24.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/wbond/asn1crypto/archive/${PV}.tar.gz -> ${P}.gh.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
 IUSE="test"
 
 RDEPEND=""

diff --git a/dev-python/cryptography/cryptography-2.1.4.ebuild 
b/dev-python/cryptography/cryptography-2.1.4.ebuild
index 9316538d336..ca6ef79819a 100644
--- a/dev-python/cryptography/cryptography-2.1.4.ebuild
+++ b/dev-python/cryptography/cryptography-2.1.4.ebuild
@@ -14,14 +14,13 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x64-solaris"
 IUSE="libressl test"
 
-   #!libressl? ( dev-libs/openssl:0= ( || ( dev-libs/openssl:0[-bindist(-)]
-   #   
=dev-libs/openssl-1.0.2l-r1:0
-   #   
>=dev-libs/openssl-1.1.0g-r1:0 ) ) )
 RDEPEND="
-   !libressl? ( >=dev-libs/openssl-1.0.2:0=[-bindist(-)] )
+   !libressl? ( dev-libs/openssl:0= ( || ( dev-libs/openssl:0[-bindist(-)]
+   
=dev-libs/openssl-1.0.2l-r1:0
+   
>=dev-libs/openssl-1.1.0g-r1:0 ) ) )
libressl? ( dev-libs/libressl )
$(python_gen_cond_dep '>=dev-python/cffi-1.7:=[${PYTHON_USEDEP}]' 
'python*')
$(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' python2_7 
pypy{,3})

diff --git a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild 
b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
index 5892f7a8303..53103be665c 100644
--- a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
+++ b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~x86-fbsd ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
 IUSE="doc examples test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-news/newsboat/

2018-03-30 Thread Tim Harder
commit: 2036952f35163640e4c040350f3b56fd552d270b
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 04:37:05 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 04:39:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2036952f

net-news/newsboat: version bump to 2.11.1 and remove old

 net-news/newsboat/Manifest | 2 +-
 net-news/newsboat/{newsboat-2.11.ebuild => newsboat-2.11.1.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-news/newsboat/Manifest b/net-news/newsboat/Manifest
index 47ea0f9b00f..90ef3fdfcb7 100644
--- a/net-news/newsboat/Manifest
+++ b/net-news/newsboat/Manifest
@@ -1,2 +1,2 @@
 DIST newsboat-2.10.2.tar.xz 334820 BLAKE2B 
08f5ee71b86c33c8aef5d2dc510deccefae8161fa1a3453947e94c9aead550468bd43368022ad438d4eb6da5ac18a348f9123489f2275fd8aed91ce40a5e9a32
 SHA512 
b807e0539bf31a4536af4e933623ec4de974995dda2345178057601aff43081746941d93a26269b6e8b77aee34b50a7c9867f867bed1331fc9a2c381163636fc
-DIST newsboat-2.11.tar.xz 425912 BLAKE2B 
57c61073a08cc09f800cf08544f68f589221d2aa9c5549e0f712914ad0ac43c0e0b95ee9f5fa019f4034d66ba383b10929cb0d01be4dc6b8c29c17f4e477347b
 SHA512 
a82c1ccb53d8be733973c678b0891821a7aec44654b6bfa167253774adbcc6b73e570cd197e2ea038c827719cd1a92d043dfecd0671f32ba51185a87889181f1
+DIST newsboat-2.11.1.tar.xz 426056 BLAKE2B 
e13778dcd9fa4d821e4578ddb16193ede13cbb67d1a363deebede018ec9cc00f9ddfb2c86445ada2c3debe60af64923eaba2296ccbd1ffe8f31488d02b9cbc3b
 SHA512 
265b83828eb3da6e61b14b6d16012baf3de147b777fa09a8cad0e76d4cf54677389bf89abf10f94a644def57f41694869a6ea07465e7cc97ec12df74d939bb5a

diff --git a/net-news/newsboat/newsboat-2.11.ebuild 
b/net-news/newsboat/newsboat-2.11.1.ebuild
similarity index 97%
rename from net-news/newsboat/newsboat-2.11.ebuild
rename to net-news/newsboat/newsboat-2.11.1.ebuild
index ecf68baaf18..33b53c61955 100644
--- a/net-news/newsboat/newsboat-2.11.ebuild
+++ b/net-news/newsboat/newsboat-2.11.1.ebuild
@@ -36,7 +36,7 @@ DEPEND="${RDEPEND}
 "
 
 PATCHES=(
-   "${FILESDIR}"/${P}-flags.patch
+   "${FILESDIR}"/${PN}-2.11-flags.patch
 )
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: x11-terms/kitty/

2018-03-30 Thread Tim Harder
commit: 2e7d4e8537a6b3e3be82d79b8dc995ff6cd37ae5
Author: Tim Harder  gentoo  org>
AuthorDate: Sat Mar 31 04:05:41 2018 +
Commit: Tim Harder  gentoo  org>
CommitDate: Sat Mar 31 04:37:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e7d4e85

x11-terms/kitty: version bump to 0.8.3

 x11-terms/kitty/Manifest   |  1 +
 x11-terms/kitty/kitty-0.8.3.ebuild | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/x11-terms/kitty/Manifest b/x11-terms/kitty/Manifest
index 50352a90059..27a671fd5c6 100644
--- a/x11-terms/kitty/Manifest
+++ b/x11-terms/kitty/Manifest
@@ -1 +1,2 @@
 DIST kitty-0.8.2.tar.gz 3281308 BLAKE2B 
6219dddc02e8b98b913356708fd2e398ad17aea97b0c539132b2333a736324d76136a6b6599b925424a8e7c578e9ef92b38ef5aa8ea5b42788731ecf19ad5e27
 SHA512 
4dabbce40a5fe0e54ac64b429baf3491ab492846f0f31b4b763c06c7aeba80a482bfd083419d3ddcd1bc267553458b719df82a2a179d90a88be3ce41a47d9897
+DIST kitty-0.8.3.tar.gz 3285120 BLAKE2B 
dcf47345f26beaaae5a63f122a3592c29a8ef2243406377ebb46fd44b9d8036f2f5493d7b1048195e12a7fb9874fce920ac52a0bb18e071e5e3db869691174d9
 SHA512 
b758a178b976d7dc133dd48bfafff5db8a373419a67206a8724695392c0654a9d5ba07867cbd6824afe1a5c013724d8472ab4087eae52c8bdb27843688b18968

diff --git a/x11-terms/kitty/kitty-0.8.3.ebuild 
b/x11-terms/kitty/kitty-0.8.3.ebuild
new file mode 100644
index 000..b51c9110b0e
--- /dev/null
+++ b/x11-terms/kitty/kitty-0.8.3.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python3_{5,6} )
+
+inherit python-single-r1 toolchain-funcs
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/kovidgoyal/kitty.git";
+   inherit git-r3
+else
+   SRC_URI="https://github.com/kovidgoyal/kitty/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="A modern, hackable, featureful, OpenGL-based terminal emulator"
+HOMEPAGE="https://github.com/kovidgoyal/kitty";
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="debug imagemagick wayland"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPS="
+   ${PYTHON_DEPS}
+   >=media-libs/harfbuzz-1.5.0:=
+   sys-libs/zlib
+   media-libs/libpng:0=
+   media-libs/freetype:2
+   media-libs/fontconfig
+   x11-libs/libXcursor
+   x11-libs/libXrandr
+   x11-libs/libXi
+   x11-libs/libXinerama
+   x11-libs/libxkbcommon[X]
+   wayland? (
+   dev-libs/wayland
+   >=dev-libs/wayland-protocols-1.12
+   )
+"
+RDEPEND="
+   ${COMMON_DEPS}
+   imagemagick? ( virtual/imagemagick-tools )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.7.1-flags.patch
+   "${FILESDIR}"/${PN}-0.7.1-svg-icon.patch
+)
+
+src_prepare() {
+   default
+
+   # disable wayland as required
+   if ! use wayland; then
+   sed -i "/'x11 wayland'/s/ wayland//" setup.py || die
+   fi
+
+   tc-export CC
+}
+
+doecho() {
+   echo "$@"
+   "$@" || die
+}
+
+src_compile() {
+   doecho "${EPYTHON}" setup.py --verbose $(usex debug --debug "") 
--libdir-name $(get_libdir) linux-package
+}
+
+src_test() {
+   export KITTY_CONFIG_DIRECTORY=${T}
+   "${EPYTHON}" test.py || die
+}
+
+src_install() {
+   mkdir -p "${ED}"usr || die
+   cp -r linux-package/* "${ED}usr" || die
+   python_fix_shebang "${ED}"
+
+   dodoc CHANGELOG.rst *.asciidoc
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/pyopenssl/

2018-03-30 Thread Matt Thode
commit: 4e058be4f713f961a477e3b09ad7e0e4a58e40b1
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 02:41:03 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 02:41:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e058be4

dev-python/pyopenssl: fixing amdge-fbsd

Package-Manager: Portage-2.3.27, Repoman-2.3.9

 dev-python/pyopenssl/pyopenssl-17.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild 
b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
index d3878d299bd..5892f7a8303 100644
--- a/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
+++ b/dev-python/pyopenssl/pyopenssl-17.5.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x64-cygwin ~x86-fbsd ~amd64-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris"
 IUSE="doc examples test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/nova/

2018-03-30 Thread Matt Thode
commit: aa5e6068e279316d66561f875ccd7d503eb7c989
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:51:56 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:54:05 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa5e6068

sys-cluster/nova: 17.0.1 stbale amd64 and x86 QUEENS

Package-Manager: Portage-2.3.26, Repoman-2.3.7

 sys-cluster/nova/nova-17.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/nova/nova-17.0.1.ebuild 
b/sys-cluster/nova/nova-17.0.1.ebuild
index 4f9c25caad5..86f72145cf9 100644
--- a/sys-cluster/nova/nova-17.0.1.ebuild
+++ b/sys-cluster/nova/nova-17.0.1.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == * ]];then
 else

SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/nova/queens/nova.conf.sample
 -> nova.conf.sample-${PV}
https://tarballs.openstack.org/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/cinder/

2018-03-30 Thread Matt Thode
commit: 249b7cb479900c20c53067132f863c0cadaf7d9a
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:49:31 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:54:03 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=249b7cb4

sys-cluster/cinder: 12.0.0 amd64 and x86 stable QUEENS

Package-Manager: Portage-2.3.26, Repoman-2.3.7

 sys-cluster/cinder/cinder-12.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/cinder/cinder-12.0.0.ebuild 
b/sys-cluster/cinder/cinder-12.0.0.ebuild
index 7c4c55c46c3..1ced12d0b38 100644
--- a/sys-cluster/cinder/cinder-12.0.0.ebuild
+++ b/sys-cluster/cinder/cinder-12.0.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == * ]];then
 else

SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/queens/cinder.conf.sample
 -> queens-cinder.conf.sample
https://tarballs.openstack.org/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/heat/

2018-03-30 Thread Matt Thode
commit: 3e0c6223b2a2f557f5d9eb2a80cb79be0edd567a
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:52:40 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:54:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e0c6223

sys-cluster/heat: 10.0.0 stable amd64 and x86 QUEENS

Package-Manager: Portage-2.3.26, Repoman-2.3.7

 sys-cluster/heat/heat-10.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/heat/heat-10.0.0.ebuild 
b/sys-cluster/heat/heat-10.0.0.ebuild
index fd03db67622..a040f0a50f7 100644
--- a/sys-cluster/heat/heat-10.0.0.ebuild
+++ b/sys-cluster/heat/heat-10.0.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == * ]];then
 else

SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/heat/heat.conf.sample.queens
 -> heat.conf.sample-${PV}
https://tarballs.openstack.org/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-designateclient/

2018-03-30 Thread Matt Thode
commit: 6f7f2006cb85dd6b38014a31edf493834acaa788
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:42:50 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f7f2006

dev-python/python-designateclient: 2.9.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-designateclient/python-designateclient-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/python-designateclient/python-designateclient-2.9.0.ebuild 
b/dev-python/python-designateclient/python-designateclient-2.9.0.ebuild
index cdf3ddf407e..efd89688271 100644
--- a/dev-python/python-designateclient/python-designateclient-2.9.0.ebuild
+++ b/dev-python/python-designateclient/python-designateclient-2.9.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-neutronclient/

2018-03-30 Thread Matt Thode
commit: 921013bf0569fe15baee4ae8a91aabd0fdccde8b
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:42:31 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=921013bf

dev-python/python-neutronclient: 6.7.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-neutronclient/python-neutronclient-6.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-neutronclient/python-neutronclient-6.7.0.ebuild 
b/dev-python/python-neutronclient/python-neutronclient-6.7.0.ebuild
index a56e95703e1..48fcca580d5 100644
--- a/dev-python/python-neutronclient/python-neutronclient-6.7.0.ebuild
+++ b/dev-python/python-neutronclient/python-neutronclient-6.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 REQUIRED_USE="test? ( doc )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-zunclient/

2018-03-30 Thread Matt Thode
commit: 20da01659483c5e9f718612802f7a3b96ec00a8e
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:45:17 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20da0165

dev-python/python-zunclient: 1.1.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-zunclient/python-zunclient-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-zunclient/python-zunclient-1.1.0.ebuild 
b/dev-python/python-zunclient/python-zunclient-1.1.0.ebuild
index 4925fc55ed1..b6109fbb7ab 100644
--- a/dev-python/python-zunclient/python-zunclient-1.1.0.ebuild
+++ b/dev-python/python-zunclient/python-zunclient-1.1.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/ryu/

2018-03-30 Thread Matt Thode
commit: 7fb71c36694290fad800a5061d953d066ca450dc
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:42:40 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb71c36

dev-python/ryu: 4.21 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/ryu/ryu-4.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/ryu/ryu-4.21.ebuild b/dev-python/ryu/ryu-4.21.ebuild
index 8c7fd2dc9ef..b6d95735da9 100644
--- a/dev-python/ryu/ryu-4.21.ebuild
+++ b/dev-python/ryu/ryu-4.21.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/aodhclient/

2018-03-30 Thread Matt Thode
commit: 8632cb2db394bfe45f100c343e51f52f216c5bd4
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:44:37 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:53 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8632cb2d

dev-python/aodhclient: 1.0.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/aodhclient/aodhclient-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/aodhclient/aodhclient-1.0.0.ebuild 
b/dev-python/aodhclient/aodhclient-1.0.0.ebuild
index c42301b261c..d0b717aeabe 100644
--- a/dev-python/aodhclient/aodhclient-1.0.0.ebuild
+++ b/dev-python/aodhclient/aodhclient-1.0.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/networkx/

2018-03-30 Thread Matt Thode
commit: 77781cb49ef4fc5ad97ff0be5ad9ae79d00e35b2
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:43:34 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:48 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77781cb4

dev-python/networkx: 1.11-r1 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/networkx/networkx-1.11-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/networkx/networkx-1.11-r1.ebuild 
b/dev-python/networkx/networkx-1.11-r1.ebuild
index e94f2e4f484..471e3405c6d 100644
--- a/dev-python/networkx/networkx-1.11-r1.ebuild
+++ b/dev-python/networkx/networkx-1.11-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 IUSE="doc examples scipy test"
 
 REQUIRED_USE="doc? ( || ( $(python_gen_useflags -2) ) )"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/neutron/

2018-03-30 Thread Matt Thode
commit: c3f7f0b95955d3c6c16077e3ab94afbab5e23452
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:50:35 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:54:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3f7f0b9

sys-cluster/neutron: 12.0.1 stable amd64 and x86 QUEENS

Package-Manager: Portage-2.3.26, Repoman-2.3.7

 sys-cluster/neutron/neutron-12.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/neutron/neutron-12.0.1.ebuild 
b/sys-cluster/neutron/neutron-12.0.1.ebuild
index efbe01b7fe3..ca9e5bc0c41 100644
--- a/sys-cluster/neutron/neutron-12.0.1.ebuild
+++ b/sys-cluster/neutron/neutron-12.0.1.ebuild
@@ -19,7 +19,7 @@ else

SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/queens/configs.tar.gz
 -> neutron-configs-${PV}.tar.gz

https://dev.gentoo.org/~prometheanfire/dist/openstack/neutron/queens/ml2_plugins.tar.gz
 -> neutron-ml2-plugins-${PV}.tar.gz
https://tarballs.openstack.org/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/os-xenapi/

2018-03-30 Thread Matt Thode
commit: 2851fecf301a4cc9faca7c15caab7da746d1aac2
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:42:59 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2851fecf

dev-python/os-xenapi: 0.3.1 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/os-xenapi/os-xenapi-0.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/os-xenapi/os-xenapi-0.3.1.ebuild 
b/dev-python/os-xenapi/os-xenapi-0.3.1.ebuild
index 277791e4eaa..eb464e7607c 100644
--- a/dev-python/os-xenapi/os-xenapi-0.3.1.ebuild
+++ b/dev-python/os-xenapi/os-xenapi-0.3.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-saharaclient/

2018-03-30 Thread Matt Thode
commit: b768072b9cc0fde12d516d850cf7b5d21e75df63
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:44:57 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b768072b

dev-python/python-saharaclient: 1.5.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-saharaclient/python-saharaclient-1.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-saharaclient/python-saharaclient-1.5.0.ebuild 
b/dev-python/python-saharaclient/python-saharaclient-1.5.0.ebuild
index 2decbd698ac..b09c05d5363 100644
--- a/dev-python/python-saharaclient/python-saharaclient-1.5.0.ebuild
+++ b/dev-python/python-saharaclient/python-saharaclient-1.5.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/os-vif/

2018-03-30 Thread Matt Thode
commit: 49bbdfaada81a71dd4b670d924bc14f78d02c25b
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:44:02 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49bbdfaa

dev-python/os-vif: 1.9.1 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/os-vif/os-vif-1.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/os-vif/os-vif-1.9.1.ebuild 
b/dev-python/os-vif/os-vif-1.9.1.ebuild
index 6680a631851..c99cdc55648 100644
--- a/dev-python/os-vif/os-vif-1.9.1.ebuild
+++ b/dev-python/os-vif/os-vif-1.9.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/os_vif-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pypowervm/

2018-03-30 Thread Matt Thode
commit: 8be9af4814bf4db4599bb890102fe56587de36dd
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:43:44 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8be9af48

dev-python/pypowervm: 1.1.10 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/pypowervm/pypowervm-1.1.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pypowervm/pypowervm-1.1.10.ebuild 
b/dev-python/pypowervm/pypowervm-1.1.10.ebuild
index 45d8bcbdefd..6e649c6a7a1 100644
--- a/dev-python/pypowervm/pypowervm-1.1.10.ebuild
+++ b/dev-python/pypowervm/pypowervm-1.1.10.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: app-admin/glance/

2018-03-30 Thread Matt Thode
commit: 1cd4ea18055176d26360890eaf9c57de0a37b7fa
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:47:32 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:54:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cd4ea18

app-admin/glance: amd64 and x86 stable QUEENS

Package-Manager: Portage-2.3.26, Repoman-2.3.7

 app-admin/glance/glance-16.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/glance/glance-16.0.0.ebuild 
b/app-admin/glance/glance-16.0.0.ebuild
index a3a068b143c..4d76fb8c4b2 100644
--- a/app-admin/glance/glance-16.0.0.ebuild
+++ b/app-admin/glance/glance-16.0.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]];then
EGIT_BRANCH="stable/queens"
 else
SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/ovs/

2018-03-30 Thread Matt Thode
commit: f0c855951fd29c230f004ac4acf11dc67bfeb779
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:43:07 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0c85595

dev-python/ovs: 2.8.1 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/ovs/ovs-2.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/ovs/ovs-2.8.1.ebuild b/dev-python/ovs/ovs-2.8.1.ebuild
index 21b86861627..30f29815118 100644
--- a/dev-python/ovs/ovs-2.8.1.ebuild
+++ b/dev-python/ovs/ovs-2.8.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-openstackclient/

2018-03-30 Thread Matt Thode
commit: 337220826b93de03d974070ea7ce52920682d000
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:45:46 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:54:01 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33722082

dev-python/python-openstackclient: 3.14.1 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-openstackclient/python-openstackclient-3.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/python-openstackclient/python-openstackclient-3.14.1.ebuild 
b/dev-python/python-openstackclient/python-openstackclient-3.14.1.ebuild
index 303907280d1..c688b057c97 100644
--- a/dev-python/python-openstackclient/python-openstackclient-3.14.1.ebuild
+++ b/dev-python/python-openstackclient/python-openstackclient-3.14.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/osc-lib/

2018-03-30 Thread Matt Thode
commit: d2b92a50e8e6569091e6440de23106d16eb19711
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:42:20 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2b92a50

dev-python/osc-lib: 1.9.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/osc-lib/osc-lib-1.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/osc-lib/osc-lib-1.9.0.ebuild 
b/dev-python/osc-lib/osc-lib-1.9.0.ebuild
index c09ccd567c1..5e8b841f4f5 100644
--- a/dev-python/osc-lib/osc-lib-1.9.0.ebuild
+++ b/dev-python/osc-lib/osc-lib-1.9.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/websocket-client/

2018-03-30 Thread Matt Thode
commit: 8049a2364123bd5840eb9b9f9fac7fa846f25d47
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:45:06 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8049a236

dev-python/websocket-client: 0.40.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/websocket-client/websocket-client-0.40.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/websocket-client/websocket-client-0.40.0.ebuild 
b/dev-python/websocket-client/websocket-client-0.40.0.ebuild
index 42f290186c2..112cd5b33c3 100644
--- a/dev-python/websocket-client/websocket-client-0.40.0.ebuild
+++ b/dev-python/websocket-client/websocket-client-0.40.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="examples"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/openstacksdk/

2018-03-30 Thread Matt Thode
commit: e4f3030824020a1fda315221697848fceece4c77
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:42:11 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f30308

dev-python/openstacksdk: 0.11.3 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/openstacksdk/openstacksdk-0.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/openstacksdk/openstacksdk-0.11.3.ebuild 
b/dev-python/openstacksdk/openstacksdk-0.11.3.ebuild
index 66af0c78d3c..3e4d1dc5578 100644
--- a/dev-python/openstacksdk/openstacksdk-0.11.3.ebuild
+++ b/dev-python/openstacksdk/openstacksdk-0.11.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/ovsdbapp/

2018-03-30 Thread Matt Thode
commit: 3326e2da931bcd347b95d232a334060aa07543d2
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:43:16 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:47 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3326e2da

dev-python/ovsdbapp: 0.10.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/ovsdbapp/ovsdbapp-0.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/ovsdbapp/ovsdbapp-0.10.0.ebuild 
b/dev-python/ovsdbapp/ovsdbapp-0.10.0.ebuild
index 7c2aa0196fa..92eb5c19772 100644
--- a/dev-python/ovsdbapp/ovsdbapp-0.10.0.ebuild
+++ b/dev-python/ovsdbapp/ovsdbapp-0.10.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-manilaclient/

2018-03-30 Thread Matt Thode
commit: bd54277e7139d78a3432ce2d0f45f2e949bc7cf6
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:44:47 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd54277e

dev-python/python-manilaclient: 1.21.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-manilaclient/python-manilaclient-1.21.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-manilaclient/python-manilaclient-1.21.0.ebuild 
b/dev-python/python-manilaclient/python-manilaclient-1.21.0.ebuild
index b80c71a39b8..103bd80f30f 100644
--- a/dev-python/python-manilaclient/python-manilaclient-1.21.0.ebuild
+++ b/dev-python/python-manilaclient/python-manilaclient-1.21.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/os-traits/

2018-03-30 Thread Matt Thode
commit: e2e3c0497e03168f5255302054135078dc7ade6a
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:43:52 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2e3c049

dev-python/os-traits: 0.5.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/os-traits/os-traits-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/os-traits/os-traits-0.5.0.ebuild 
b/dev-python/os-traits/os-traits-0.5.0.ebuild
index 9d648359e82..da6982e6822 100644
--- a/dev-python/os-traits/os-traits-0.5.0.ebuild
+++ b/dev-python/os-traits/os-traits-0.5.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-octaviaclient/

2018-03-30 Thread Matt Thode
commit: 2772047445e60c006431d844950994ebc244f42c
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:45:27 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:53:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27720474

dev-python/python-octaviaclient: 1.4.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-octaviaclient/python-octaviaclient-1.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-octaviaclient/python-octaviaclient-1.4.0.ebuild 
b/dev-python/python-octaviaclient/python-octaviaclient-1.4.0.ebuild
index 86586098b5d..41215dac229 100644
--- a/dev-python/python-octaviaclient/python-octaviaclient-1.4.0.ebuild
+++ b/dev-python/python-octaviaclient/python-octaviaclient-1.4.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-magnumclient/

2018-03-30 Thread Matt Thode
commit: 19b5d0f1cb59b3643bbb75b01d2f0d6f81023ddf
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 01:45:36 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 01:54:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19b5d0f1

dev-python/python-magnumclient: 2.9.0 stablized under allarchesa

Stablized for Openstack Queens

 dev-python/python-magnumclient/python-magnumclient-2.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/python-magnumclient/python-magnumclient-2.9.0.ebuild 
b/dev-python/python-magnumclient/python-magnumclient-2.9.0.ebuild
index 8f2ac091124..7a97092a0db 100644
--- a/dev-python/python-magnumclient/python-magnumclient-2.9.0.ebuild
+++ b/dev-python/python-magnumclient/python-magnumclient-2.9.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-db/mariadb/

2018-03-30 Thread Brian Evans
commit: 2292d9885898ebc023cc09952a708f4d35df5e14
Author: Brian Evans  gentoo  org>
AuthorDate: Sat Mar 31 01:34:26 2018 +
Commit: Brian Evans  gentoo  org>
CommitDate: Sat Mar 31 01:34:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2292d988

dev-db/mariadb: Version bump for 10.2.14

Package-Manager: Portage-2.3.26, Repoman-2.3.7

 dev-db/mariadb/Manifest   |1 +
 dev-db/mariadb/mariadb-10.2.14.ebuild | 1006 +
 2 files changed, 1007 insertions(+)

diff --git a/dev-db/mariadb/Manifest b/dev-db/mariadb/Manifest
index 0b0e17c74af..e499d406009 100644
--- a/dev-db/mariadb/Manifest
+++ b/dev-db/mariadb/Manifest
@@ -7,6 +7,7 @@ DIST mariadb-10.1.31.tar.gz 67982786 BLAKE2B 
1fabbea67345024157be4be34a50c4e9c73
 DIST mariadb-10.1.32.tar.gz 68001321 BLAKE2B 
8ecdf12b10697576b3550d962c6090726f515e0f1f99f786e2b8882e1b81c053e9e43e423f83afd6955357ef85cd539db6fb1ff613d3c553f2f3801293c7ee07
 SHA512 
fcaeb8005b08b3ac5b7c070f07fe669593bd8a2eb8ea1bbdcb4d8e9ba4856420039f39542ecf920eec352ee4a26179899f9c6cb1f9f26040f557ae4b4b63660a
 DIST mariadb-10.2.12.tar.gz 72818636 BLAKE2B 
50a72b8096ae8bd5dc635352fc35d22322a0d7cf415e45883898307050ec547a79c66d51ab0ce311f1895eb178afeb49664fb434af77f9ff2b9aedef0aea85bc
 SHA512 
8d3d3c84d4a01d6047e4f2b6802eb802e1f6a7b0e10e981c7ef9fdd27a5a25baab0af47a21b8637f4cbb9d21ef3bcc85097c5fdb8745c2a79040ab87fecb5a7b
 DIST mariadb-10.2.13.tar.gz 72591913 BLAKE2B 
5abc3fefc5b02f099254b8a3a832a20793989a316efdc22b146cf78b5b83fcb3e4e617fce1b9161194e3f54b7bb469de3bb656319048fb137915af24e21f6aa2
 SHA512 
4c6038f134a32f50daa3172b367588240ef20a6f6cfe36d830e427cf52d315284481f5300d3db32d9e81ddd352dbea01fd4230f4e4d79e175d97c0c49331a4ca
+DIST mariadb-10.2.14.tar.gz 72607526 BLAKE2B 
ca0c73e30e15265a7a1599d9bd4b64e030aaf92fcdbe18fda39eaf071c88c90b32a16ea5d9c63130e3853572a30a0c5870e6389e6dcb2a3eb690311cdb9bde3c
 SHA512 
12195cc8c7a97619024d6b8b37558a43f4f543efff257a7a3dbb10e8a6e064ec2f0740554cf50cc83576b74ba355cf00f3c99855bc2bcf68b90c1fa90c850026
 DIST mariadb-10.3.5.tar.gz 70945381 BLAKE2B 
10f5f08a64b3d046f8255a5ea9bb1661b7a88d130b0a89b41c8f98abbe3c04cc13154e1ad6c012ef97a396f055ca5d748998f1e7d6dc89ca73a3b61f70749457
 SHA512 
e7f2ffd38da4e4dbd214bc97e30216682b6f8ca368bcbd5717fb408a6110f26da4472cd7ac0d288c817eb9c6426a063cff8d582e03fe8a1219c0d70508e5a004
 DIST mariadb-5.5.59.tar.gz 45804920 BLAKE2B 
e24792cb5427e2c3254e83cfa355b8cf4350bc488b2477daa4ef4ee41d3c33c7d0b124eb9a615ccbccec693313fd83e3f13f633cc08ea725b78b179cc813f809
 SHA512 
facebe62cb9b55518fe669b65f939974aa33c308983c4c3ab6897fb500ec10aa407489e936e56d1269ea5e533655c4be8d0b5d78b3eeb3882ce1b96113a66afe
 DIST mysql-extras-20160721-1526Z.tar.bz2 301788 BLAKE2B 
23ef75d0122e9e18382f708a86c61624e0437fad593b7f02ccb2b3939d710404e18e3b70617ed400e5f6947d3a92d2867a5f7d98bf61597442e99989f60ca4f7
 SHA512 
c7450039780e4e2684c932ba7c291c1de25dd1a64e4c6e88aa13b790768b4100955f36ae4a3bf983569ea23b43be02da6dad3d5985c1163ec9e8aa91f0efd85d

diff --git a/dev-db/mariadb/mariadb-10.2.14.ebuild 
b/dev-db/mariadb/mariadb-10.2.14.ebuild
new file mode 100644
index 000..389572cc9c8
--- /dev/null
+++ b/dev-db/mariadb/mariadb-10.2.14.ebuild
@@ -0,0 +1,1006 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+MY_EXTRAS_VER="20180308-1938Z"
+SUBSLOT="18"
+
+JAVA_PKG_OPT_USE="jdbc"
+
+# Keeping eutils in EAPI=6 for emktemp in pkg_config
+
+inherit eutils systemd flag-o-matic prefix toolchain-funcs \
+   java-pkg-opt-2 user cmake-utils multilib-minimal
+
+SRC_URI="https://downloads.mariadb.org/interstitial/${P}/source/${P}.tar.gz "
+
+# Gentoo patches to MySQL
+if [[ "${MY_EXTRAS_VER}" != "live" && "${MY_EXTRAS_VER}" != "none" ]]; then
+   SRC_URI="${SRC_URI}
+   mirror://gentoo/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://gitweb.gentoo.org/proj/mysql-extras.git/snapshot/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~grknight/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~robbat2/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2
+   
https://dev.gentoo.org/~jmbsvicetto/distfiles/mysql-extras-${MY_EXTRAS_VER}.tar.bz2";
+fi
+
+HOMEPAGE="http://mariadb.org/";
+DESCRIPTION="An enhanced, drop-in replacement for MySQL"
+LICENSE="GPL-2 LGPL-2.1+"
+SLOT="0/${SUBSLOT:-0}"
+IUSE="+backup bindist client-libs cracklib debug extraengine galera innodb-lz4
+   innodb-lzo innodb-snappy jdbc jemalloc kerberos latin1 libressl mroonga
+   numa odbc oqgraph pam +perl profiling rocksdb selinux +server sphinx
+   sst-rsync sst-mariabackup sst-xtrabackup static static-libs systemd 
systemtap tcmalloc
+   test tokudb xml yassl"
+
+# Tests always fail when libressl is enabled due to hard-coded ciphers in the 
tests
+RESTRICT="!bindist? ( bindist ) libressl? ( test )"
+
+REQUIRED_USE="jdbc? ( extraengine server !s

[gentoo-commits] repo/gentoo:master commit in: dev-python/pymongo/

2018-03-30 Thread Matt Thode
commit: 6fc623c03871e2e314dfe4891d8e2096d80fcf77
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:52:24 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:52:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fc623c0

dev-python/pymongo: 3.5.1 stablized amd64 ~arm64 ~hppa x86 under allarches

Stablized for Openstack Queens

 dev-python/pymongo/pymongo-3.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pymongo/pymongo-3.5.1.ebuild 
b/dev-python/pymongo/pymongo-3.5.1.ebuild
index fd2f7a98cfc..1426c33c1fa 100644
--- a/dev-python/pymongo/pymongo-3.5.1.ebuild
+++ b/dev-python/pymongo/pymongo-3.5.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~hppa ~x86"
+KEYWORDS="amd64 ~arm64 ~hppa x86"
 IUSE="doc kerberos test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-db/

2018-03-30 Thread Matt Thode
commit: c311612e76df5edbd17c654c3fe962233e8de35b
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:50:32 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:50:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c311612e

dev-python/oslo-db: 4.33.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-db/oslo-db-4.33.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-db/oslo-db-4.33.0.ebuild 
b/dev-python/oslo-db/oslo-db-4.33.0.ebuild
index 15fd3d5ac28..2c75687bc08 100644
--- a/dev-python/oslo-db/oslo-db-4.33.0.ebuild
+++ b/dev-python/oslo-db/oslo-db-4.33.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/oslo.db-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="+sqlite mysql postgres"
 REQUIRED_USE="|| ( mysql postgres sqlite )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/python-keystoneclient/

2018-03-30 Thread Matt Thode
commit: 1d8473ccff3f5c516b9476671fe2a4dcb1d0a6bf
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:47:21 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:47:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d8473cc

dev-python/python-keystoneclient: 3.15.0 stablized amd64 ~arm64 x86 
~amd64-linux ~x86-linux under allarches

Stablized for Openstack Queens

 dev-python/python-keystoneclient/python-keystoneclient-3.15.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/python-keystoneclient/python-keystoneclient-3.15.0.ebuild 
b/dev-python/python-keystoneclient/python-keystoneclient-3.15.0.ebuild
index 39fb0010e1d..aade451bd35 100644
--- a/dev-python/python-keystoneclient/python-keystoneclient-3.15.0.ebuild
+++ b/dev-python/python-keystoneclient/python-keystoneclient-3.15.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE=""
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-concurrency/

2018-03-30 Thread Matt Thode
commit: 21236db810a6b54a6e022290d64f679884e79edc
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:49:19 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:49:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21236db8

dev-python/oslo-concurrency: 3.25.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-concurrency/oslo-concurrency-3.25.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-concurrency/oslo-concurrency-3.25.0.ebuild 
b/dev-python/oslo-concurrency/oslo-concurrency-3.25.0.ebuild
index b0254407070..b95096e324e 100644
--- a/dev-python/oslo-concurrency/oslo-concurrency-3.25.0.ebuild
+++ b/dev-python/oslo-concurrency/oslo-concurrency-3.25.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/oslo.concurrency-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-context/

2018-03-30 Thread Matt Thode
commit: ad68efa894a209ed7f3db795be8a02446e60c461
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:48:44 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:48:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad68efa8

dev-python/oslo-context: 2.20.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-context/oslo-context-2.20.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-context/oslo-context-2.20.0.ebuild 
b/dev-python/oslo-context/oslo-context-2.20.0.ebuild
index 9f56c6954ad..674a56cd203 100644
--- a/dev-python/oslo-context/oslo-context-2.20.0.ebuild
+++ b/dev-python/oslo-context/oslo-context-2.20.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/oslo.context/oslo.context-${PV}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-log/

2018-03-30 Thread Matt Thode
commit: dd00c776935bd455ed584c75fc9a6d8fac620731
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:48:56 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:48:56 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd00c776

dev-python/oslo-log: 3.36.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-log/oslo-log-3.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-log/oslo-log-3.36.0.ebuild 
b/dev-python/oslo-log/oslo-log-3.36.0.ebuild
index 757cfe037db..be21b76fe21 100644
--- a/dev-python/oslo-log/oslo-log-3.36.0.ebuild
+++ b/dev-python/oslo-log/oslo-log-3.36.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/oslo.log-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-cache/

2018-03-30 Thread Matt Thode
commit: ad5fb32d0dad3d12e2b6aadfaf5b9e946286a677
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:49:06 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:49:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad5fb32d

dev-python/oslo-cache: 1.28.0 stablized amd64 ~arm64 x86 ~amd64-linux 
~x86-linux under allarches

Stablized for Openstack Queens

 dev-python/oslo-cache/oslo-cache-1.28.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-cache/oslo-cache-1.28.0.ebuild 
b/dev-python/oslo-cache/oslo-cache-1.28.0.ebuild
index 6c06bff9198..5c7bbdd735d 100644
--- a/dev-python/oslo-cache/oslo-cache-1.28.0.ebuild
+++ b/dev-python/oslo-cache/oslo-cache-1.28.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/testresources/

2018-03-30 Thread Matt Thode
commit: e4bee1b262f443d03a86b7edab9402bd6429588f
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:51:34 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:51:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4bee1b2

dev-python/testresources: 2.0.1 stablized alpha amd64 arm arm64 hppa ia64 ~m68k 
~mips ppc ppc64 ~s390 ~sh sparc x86 ~amd64-linux ~x86-linux under allarches

Stablized for Openstack Queens

 dev-python/testresources/testresources-2.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/testresources/testresources-2.0.1.ebuild 
b/dev-python/testresources/testresources-2.0.1.ebuild
index 077b955b016..04723145fe6 100644
--- a/dev-python/testresources/testresources-2.0.1.ebuild
+++ b/dev-python/testresources/testresources-2.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/stestr/

2018-03-30 Thread Matt Thode
commit: e3b5c89bd932c9c9d6e4c446677a0a9797d308c6
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:50:57 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:50:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b5c89b

dev-python/stestr: 1.1.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/stestr/stestr-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/stestr/stestr-1.1.0.ebuild 
b/dev-python/stestr/stestr-1.1.0.ebuild
index 6199497da74..499a71fb242 100644
--- a/dev-python/stestr/stestr-1.1.0.ebuild
+++ b/dev-python/stestr/stestr-1.1.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: sys-auth/keystone/

2018-03-30 Thread Matt Thode
commit: c947b9c3db3a9fa7485f89a79ccc6c48bd65c637
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:55:09 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:55:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c947b9c3

sys-auth/keystone: 13.0.0-r1 stable amd64 and x86 for QUEENS

Package-Manager: Portage-2.3.26, Repoman-2.3.7

 sys-auth/keystone/keystone-13.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/keystone/keystone-13.0.0-r1.ebuild 
b/sys-auth/keystone/keystone-13.0.0-r1.ebuild
index a2157ff67e8..54cb0b720d2 100644
--- a/sys-auth/keystone/keystone-13.0.0-r1.ebuild
+++ b/sys-auth/keystone/keystone-13.0.0-r1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]];then
EGIT_BRANCH="stable/queens"
 else
SRC_URI="https://tarballs.openstack.org/${PN}/${P}.tar.gz";
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: dev-python/futurist/

2018-03-30 Thread Matt Thode
commit: f9edc153310fef8dad5fc8b18b5b1a42c52e0382
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:49:54 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:49:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9edc153

dev-python/futurist: 1.6.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/futurist/futurist-1.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/futurist/futurist-1.6.0.ebuild 
b/dev-python/futurist/futurist-1.6.0.ebuild
index 3882f6c3262..598228dbbee 100644
--- a/dev-python/futurist/futurist-1.6.0.ebuild
+++ b/dev-python/futurist/futurist-1.6.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/osprofiler/

2018-03-30 Thread Matt Thode
commit: 703d931467a6c29ff294d522434649086111f09d
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:48:33 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:48:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=703d9314

dev-python/osprofiler: 1.15.2 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/osprofiler/osprofiler-1.15.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/osprofiler/osprofiler-1.15.2.ebuild 
b/dev-python/osprofiler/osprofiler-1.15.2.ebuild
index b671a8e68e3..2df6ff1f218 100644
--- a/dev-python/osprofiler/osprofiler-1.15.2.ebuild
+++ b/dev-python/osprofiler/osprofiler-1.15.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-service/

2018-03-30 Thread Matt Thode
commit: b3e49ba5d996dee7bfc3769f45f0eb5d5bcc49f6
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:49:31 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:49:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3e49ba5

dev-python/oslo-service: 1.29.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-service/oslo-service-1.29.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-service/oslo-service-1.29.0.ebuild 
b/dev-python/oslo-service/oslo-service-1.29.0.ebuild
index cd089d344b5..fd152c93715 100644
--- a/dev-python/oslo-service/oslo-service-1.29.0.ebuild
+++ b/dev-python/oslo-service/oslo-service-1.29.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/oslo.service-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-messaging/

2018-03-30 Thread Matt Thode
commit: fa27f41087244dbbd94694f1f019007460554816
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:50:19 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:50:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa27f410

dev-python/oslo-messaging: 5.35.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-messaging/oslo-messaging-5.35.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-messaging/oslo-messaging-5.35.0.ebuild 
b/dev-python/oslo-messaging/oslo-messaging-5.35.0.ebuild
index f50bc20b0b9..af544589a99 100644
--- a/dev-python/oslo-messaging/oslo-messaging-5.35.0.ebuild
+++ b/dev-python/oslo-messaging/oslo-messaging-5.35.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/oslo.messaging-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
!~dev-python/pbr-2.1.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-utils/

2018-03-30 Thread Matt Thode
commit: ac3bd5391bf28d02baffa8f09d579eb568a99f9b
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:47:09 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:47:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac3bd539

dev-python/oslo-utils: 3.35.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-utils/oslo-utils-3.35.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-utils/oslo-utils-3.35.0.ebuild 
b/dev-python/oslo-utils/oslo-utils-3.35.0.ebuild
index 90b8d63dc81..98dd4b834bd 100644
--- a/dev-python/oslo-utils/oslo-utils-3.35.0.ebuild
+++ b/dev-python/oslo-utils/oslo-utils-3.35.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-middleware/

2018-03-30 Thread Matt Thode
commit: 111a989d77ceee29a78cd79fc57c2ffeaaebcff3
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:49:42 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:49:42 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111a989d

dev-python/oslo-middleware: 3.34.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-middleware/oslo-middleware-3.34.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-middleware/oslo-middleware-3.34.0.ebuild 
b/dev-python/oslo-middleware/oslo-middleware-3.34.0.ebuild
index 5d1d1346720..00150703ccc 100644
--- a/dev-python/oslo-middleware/oslo-middleware-3.34.0.ebuild
+++ b/dev-python/oslo-middleware/oslo-middleware-3.34.0.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/oslo.middleware-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/pycadf/

2018-03-30 Thread Matt Thode
commit: 17d384f4e42c5aed863239be6c04dc80503669a4
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:48:22 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:48:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17d384f4

dev-python/pycadf: 2.7.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/pycadf/pycadf-2.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pycadf/pycadf-2.7.0.ebuild 
b/dev-python/pycadf/pycadf-2.7.0.ebuild
index 6b43be8f645..448691143d1 100644
--- a/dev-python/pycadf/pycadf-2.7.0.ebuild
+++ b/dev-python/pycadf/pycadf-2.7.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc test"
 
 CDEPEND=">=dev-python/pbr-1.8.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/keystonemiddleware/

2018-03-30 Thread Matt Thode
commit: b5bdc8b863be4cb191aa331465d369bfb94bfd5d
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:52:12 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:52:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5bdc8b8

dev-python/keystonemiddleware: 4.21.0 stablized amd64 ~arm64 x86 ~amd64-linux 
~x86-linux under allarches

Stablized for Openstack Queens

 dev-python/keystonemiddleware/keystonemiddleware-4.21.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/keystonemiddleware/keystonemiddleware-4.21.0.ebuild 
b/dev-python/keystonemiddleware/keystonemiddleware-4.21.0.ebuild
index 355182ce4da..224d51ab653 100644
--- a/dev-python/keystonemiddleware/keystonemiddleware-4.21.0.ebuild
+++ b/dev-python/keystonemiddleware/keystonemiddleware-4.21.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-serialization/

2018-03-30 Thread Matt Thode
commit: ab6f9673d8cb5d9e2516bd92ab665c6c2280fb70
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:47:54 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:47:54 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab6f9673

dev-python/oslo-serialization: 2.24.0-r1 stablized amd64 ~arm64 x86 under 
allarches

Stablized for Openstack Queens

 dev-python/oslo-serialization/oslo-serialization-2.24.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-serialization/oslo-serialization-2.24.0-r1.ebuild 
b/dev-python/oslo-serialization/oslo-serialization-2.24.0-r1.ebuild
index adad76ab9af..fe630e7dcf4 100644
--- a/dev-python/oslo-serialization/oslo-serialization-2.24.0-r1.ebuild
+++ b/dev-python/oslo-serialization/oslo-serialization-2.24.0-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/oauthlib/

2018-03-30 Thread Matt Thode
commit: b341b5499433e03d13a5d8fa330d17465b8ba4ab
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:48:12 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:48:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b341b549

dev-python/oauthlib: 2.0.6 stablized amd64 ~arm ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oauthlib/oauthlib-2.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauthlib/oauthlib-2.0.6.ebuild 
b/dev-python/oauthlib/oauthlib-2.0.6.ebuild
index 75343c46ee8..a1951a9802a 100644
--- a/dev-python/oauthlib/oauthlib-2.0.6.ebuild
+++ b/dev-python/oauthlib/oauthlib-2.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="test"
 
 # optional extras hard set as RDEPs. See setup.py



[gentoo-commits] repo/gentoo:master commit in: dev-python/os-testr/

2018-03-30 Thread Matt Thode
commit: 833acb689050ee418dcb80e5426dd61cd7235a51
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:51:08 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:51:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=833acb68

dev-python/os-testr: 1.0.0 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/os-testr/os-testr-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/os-testr/os-testr-1.0.0.ebuild 
b/dev-python/os-testr/os-testr-1.0.0.ebuild
index a5a6ce424f5..7e2944c6a35 100644
--- a/dev-python/os-testr/os-testr-1.0.0.ebuild
+++ b/dev-python/os-testr/os-testr-1.0.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: dev-python/oslo-policy/

2018-03-30 Thread Matt Thode
commit: 81a827aefd636aa2ca33d63f351627a9d486504d
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:50:46 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:50:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a827ae

dev-python/oslo-policy: 1.33.1 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/oslo-policy/oslo-policy-1.33.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oslo-policy/oslo-policy-1.33.1.ebuild 
b/dev-python/oslo-policy/oslo-policy-1.33.1.ebuild
index 16797b7c55c..1ce4176797c 100644
--- a/dev-python/oslo-policy/oslo-policy-1.33.1.ebuild
+++ b/dev-python/oslo-policy/oslo-policy-1.33.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/oslo.policy/oslo.policy-${PV}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND=">=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-python/webtest/

2018-03-30 Thread Matt Thode
commit: 20b639f0d9f92d9f0268c452dd4bba15120bf57d
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:51:58 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:51:58 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20b639f0

dev-python/webtest: 2.0.29 stablized alpha amd64 arm ~arm64 ~hppa ia64 ppc64 
~s390 ~sh sparc x86 under allarches

Stablized for Openstack Queens

 dev-python/webtest/webtest-2.0.29.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/webtest/webtest-2.0.29.ebuild 
b/dev-python/webtest/webtest-2.0.29.ebuild
index 179c42060fc..a891f5791bf 100644
--- a/dev-python/webtest/webtest-2.0.29.ebuild
+++ b/dev-python/webtest/webtest-2.0.29.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc64 ~s390 ~sh sparc x86"
 IUSE="doc test"
 
 # nose<1.3.0 appears a leftover never updated in requires.txt. tests pass fine 
with latest



[gentoo-commits] repo/gentoo:master commit in: dev-python/msgpack/

2018-03-30 Thread Matt Thode
commit: 437ed8706d64a65dbe5f09def0c40a1ab8dce490
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:47:43 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:47:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=437ed870

dev-python/msgpack: 0.5.1 stablized amd64 arm ~arm64 ppc x86 under allarches

Stablized for Openstack Queens

 dev-python/msgpack/msgpack-0.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/msgpack/msgpack-0.5.1.ebuild 
b/dev-python/msgpack/msgpack-0.5.1.ebuild
index abb50487307..2d29ace7e2c 100644
--- a/dev-python/msgpack/msgpack-0.5.1.ebuild
+++ b/dev-python/msgpack/msgpack-0.5.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="amd64 arm ~arm64 ppc x86"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-python/py-amqp/

2018-03-30 Thread Matt Thode
commit: 1b71b0bc2e77d37e05eda2a1b75f51a8a3dfd99d
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Mar 31 00:50:06 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Mar 31 00:50:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b71b0bc

dev-python/py-amqp: 2.2.2 stablized amd64 ~arm64 x86 under allarches

Stablized for Openstack Queens

 dev-python/py-amqp/py-amqp-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/py-amqp/py-amqp-2.2.2.ebuild 
b/dev-python/py-amqp/py-amqp-2.2.2.ebuild
index e2f94d4dc87..fb1245f496b 100644
--- a/dev-python/py-amqp/py-amqp-2.2.2.ebuild
+++ b/dev-python/py-amqp/py-amqp-2.2.2.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc extras test"
 
 RDEPEND=""



[gentoo-commits] proj/sci:master commit in: sci-biology/BRAKER/

2018-03-30 Thread Martin Mokrejs
commit: 3724acdd4d192ac400d81a94f91e957c0e832ccd
Author: Martin Mokrejs  fold  natur  cuni  cz>
AuthorDate: Sat Mar 31 00:15:01 2018 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Sat Mar 31 00:15:01 2018 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=3724acdd

sci-biology/BRAKER: version bump, update LICENSE

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 .../{BRAKER-2.ebuild => BRAKER-2.1.0.ebuild}   | 30 +-
 1 file changed, 12 insertions(+), 18 deletions(-)

diff --git a/sci-biology/BRAKER/BRAKER-2.ebuild 
b/sci-biology/BRAKER/BRAKER-2.1.0.ebuild
similarity index 58%
rename from sci-biology/BRAKER/BRAKER-2.ebuild
rename to sci-biology/BRAKER/BRAKER-2.1.0.ebuild
index b4c752457..13d63d4b8 100644
--- a/sci-biology/BRAKER/BRAKER-2.ebuild
+++ b/sci-biology/BRAKER/BRAKER-2.1.0.ebuild
@@ -10,15 +10,17 @@ DESCRIPTION="Gene prediction based on RNA-Seq using 
GeneMark-ET and AUGUSTUS"
 # http://bioinf.uni-greifswald.de/bioinf/publications/pag2015.pdf
 HOMEPAGE="http://bioinf.uni-greifswald.de/bioinf/braker
http://bioinf.uni-greifswald.de/augustus/downloads";
-SRC_URI="http://bioinf.uni-greifswald.de/augustus/binaries/BRAKER"${PV}".tar.gz
 -> ${P}.tar.gz"
-# Download BRAKER1 from 
http://bioinf.uni-greifswald.de/augustus/binaries/BRAKER1.tar.gz.
-# The most recent release is version 1.8, from December 15th 2015.
-# Example data for testing the BRAKER1 pipeline is available at
-# http://bioinf.uni-greifswald.de/augustus/binaries/BRAKER1examples.tar.gz 
(1.1 GB).
-
-LICENSE="GPL-3"
+SRC_URI="http://bioinf.uni-greifswald.de/augustus/binaries/BRAKER_v"${PV}".tar.gz
 -> ${P}.tar.gz"
+# Example data for testing the BRAKER2 pipeline is available at
+# http://bioinf.uni-greifswald.de/augustus/binaries/BRAKER2examples.tar.gz 
(1.1 GB).
+
+# BRAKER2 is using the Artistic-1.0 version without clause 8 about
+# commercial distribution
+# See discussion at https://opensource.org/licenses/artistic-license-1.0
+# Practically the license is same as http://dev.perl.org/licenses/artistic.html
+LICENSE="Artistic"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 DEPEND=""
@@ -26,23 +28,15 @@ RDEPEND="${DEPEND}
dev-perl/Scalar-Util-Numeric
sci-biology/augustus"
#>=sci-biology/GeneMark_ET-bin-4.29"
-#
-# BUG:
-# this causes:
-# [blocks B  ] 

[gentoo-commits] repo/gentoo:master commit in: app-portage/repoman/

2018-03-30 Thread Zac Medico
commit: 6d8f810ff4c1a2c7a288b5f6fa1b66ed091783c2
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 30 23:40:24 2018 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 30 23:46:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d8f810f

app-portage/repoman: fix 2.3.9 for python2.7

See: https://github.com/gentoo/portage/pull/288
Package-Manager: Portage-2.3.27, Repoman-2.3.9

 app-portage/repoman/repoman-2.3.9.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/app-portage/repoman/repoman-2.3.9.ebuild 
b/app-portage/repoman/repoman-2.3.9.ebuild
index 9fa7f7dd30e..f514a38f330 100644
--- a/app-portage/repoman/repoman-2.3.9.ebuild
+++ b/app-portage/repoman/repoman-2.3.9.ebuild
@@ -31,6 +31,11 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
+src_prepare() {
+   sed 's:FileNotFoundError:EnvironmentError:' -i pym/repoman/config.py || 
die
+   distutils-r1_src_prepare
+}
+
 python_test() {
esetup.py test
 }



[gentoo-commits] repo/gentoo:master commit in: net-firewall/shorewall/, net-firewall/shorewall/files/

2018-03-30 Thread Thomas Deutschmann
commit: 577850dc1337f51ad9e152a891d812d151f8000c
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Fri Mar 30 23:39:31 2018 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Fri Mar 30 23:39:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=577850dc

net-firewall/shorewall: Rev bump to support systemd's...

...changed rootprefix

Package-Manager: Portage-2.3.26, Repoman-2.3.7
RepoMan-Options: --force

 net-firewall/shorewall/files/shorewallrc-r2| 24 ++
 1.12.3.ebuild => shorewall-5.1.12.3-r1.ebuild} |  5 -
 2 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/net-firewall/shorewall/files/shorewallrc-r2 
b/net-firewall/shorewall/files/shorewallrc-r2
new file mode 100644
index 000..ecc21a23875
--- /dev/null
+++ b/net-firewall/shorewall/files/shorewallrc-r2
@@ -0,0 +1,24 @@
+#
+# Gentoo Shorewall 5.1 rc file
+#
+BUILD=gentoo#Default is to detect the build system
+HOST=gentoo #Gentoo GNU Linux
+PREFIX=@GENTOO_PORTAGE_EPREFIX@/usr #Top-level 
directory for shared files, libraries, etc.
+SHAREDIR=${PREFIX}/share#Directory for arch-neutral files.
+LIBEXECDIR=${PREFIX}/share  #Directory for executable scripts.
+PERLLIBDIR=${PREFIX}/share/shorewall#Directory to install Shorewall Perl 
module directory
+CONFDIR=@GENTOO_PORTAGE_EPREFIX@/etc#Directory 
where subsystem configurations are installed
+SBINDIR=${PREFIX}/sbin  #Directory where system administration 
programs are installed
+MANDIR=${PREFIX}/share/man  #Directory where manpages are 
installed.
+INITDIR=${CONFDIR}/init.d   #Directory where SysV init scripts are 
installed.
+INITFILE=${PRODUCT} #Name of the product's installed SysV 
init script
+INITSOURCE=init.gentoo.sh   #Name of the distributed file to be 
installed as the SysV init script
+ANNOTATED=  #If non-zero, annotated configuration 
files are installed
+SERVICEDIR=tbs  #Directory where .service files are installed (systems 
running systemd only)
+SERVICEFILE=gentoo.service  #Name of the distributed file to be 
installed as systemd service file
+SYSCONFFILE=default.gentoo  #Name of the distributed file to be 
installed in $SYSCONFDIR
+SYSCONFDIR=${CONFDIR}/conf.d#Directory where SysV init parameter 
files are installed
+SPARSE= #If non-empty, only install 
$PRODUCT/$PRODUCT.conf in $CONFDIR
+VARLIB=@GENTOO_PORTAGE_EPREFIX@/var/lib #Directory 
where product variable data is stored.
+VARDIR=${VARLIB}/${PRODUCT} #Directory where product variable data 
is stored.
+DEFAULT_PAGER=${PAGER}  #Pager to use if none specified in 
shorewall[6].conf

diff --git a/net-firewall/shorewall/shorewall-5.1.12.3.ebuild 
b/net-firewall/shorewall/shorewall-5.1.12.3-r1.ebuild
similarity index 98%
rename from net-firewall/shorewall/shorewall-5.1.12.3.ebuild
rename to net-firewall/shorewall/shorewall-5.1.12.3-r1.ebuild
index 0f6140661fb..d7c5285f28b 100644
--- a/net-firewall/shorewall/shorewall-5.1.12.3.ebuild
+++ b/net-firewall/shorewall/shorewall-5.1.12.3-r1.ebuild
@@ -156,8 +156,11 @@ src_prepare() {
# This allows us to use patches from upstream and keeps epatch_user 
working
 
einfo "Preparing shorewallrc ..."
-   cp "${FILESDIR}"/shorewallrc-r1 "${S}"/shorewallrc.gentoo || die 
"Copying shorewallrc failed"
+   cp "${FILESDIR}"/shorewallrc-r2 "${S}"/shorewallrc.gentoo || die 
"Copying shorewallrc failed"
eprefixify "${S}"/shorewallrc.gentoo
+   sed -i \
+   -e "s|SERVICEDIR=tbs|SERVICEDIR=$(systemd_get_systemunitdir)|" \
+   "${S}"/shorewallrc.gentoo || die "Failed to update shorewallrc"
 
# shorewall-core
mv "${S}"/${MY_P_CORE} "${S}"/${MY_PN_CORE} || die "Failed to move 
'${S}/${MY_P_CORE}' to '${S}/${MY_PN_CORE}'"



  1   2   3   4   >