[gentoo-commits] gentoo commit in src/patchsets/coreutils/8.27: 003_all_coreutils-gentoo-uname.patch 010_all_coreutils-tests.patch 020_all_sysmacros.patch 030_all_coreutils-more-dir-colors.patch 040_a

2017-03-08 Thread Mike Frysinger (vapier)
vapier  17/03/09 07:16:43

  Added:003_all_coreutils-gentoo-uname.patch
010_all_coreutils-tests.patch
020_all_sysmacros.patch
030_all_coreutils-more-dir-colors.patch
040_all_coreutils-cp-mkdir-eexist.patch
051_all_coreutils-mangen.patch README.history
  Log:
  initial 8.27 patchset based on last 8.26 patchset

Revision  ChangesPath
1.1  
src/patchsets/coreutils/8.27/003_all_coreutils-gentoo-uname.patch

file : 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/coreutils/8.27/003_all_coreutils-gentoo-uname.patch?rev=1.1=markup
plain: 
http://sources.gentoo.org/viewvc.cgi/gentoo/src/patchsets/coreutils/8.27/003_all_coreutils-gentoo-uname.patch?rev=1.1=text/plain

Index: 003_all_coreutils-gentoo-uname.patch
===
On linux platforms, grok /proc/cpuinfo for the CPU/vendor info.

Prob not suitable for upstream seeing as how it's 100% linux-specific
http://lists.gnu.org/archive/html/bug-coreutils/2005-09/msg00063.html

Patch originally by Carlos E. Gorges , but
heavily reworked to suck less.

To add support for additional platforms, check out the show_cpuinfo()
func in the linux/arch// source tree of the kernel.

--- coreutils/src/uname.c
+++ coreutils/src/uname.c
@@ -50,6 +50,12 @@
 # include 
 #endif
 
+#if defined (__linux__)
+# define USE_PROCINFO
+# define UNAME_HARDWARE_PLATFORM
+#endif
+
+#include "ignore-value.h"
 #include "system.h"
 #include "error.h"
 #include "quote.h"
@@ -138,6 +144,119 @@
   exit (status);
 }
 
+#if defined (USE_PROCINFO)
+
+# if defined (__s390__) || defined (__s390x__)
+#  define CPUINFO_FILE"/proc/sysinfo"
+#  define CPUINFO_FORMAT  "%64[^\t :]%*[ :]%256[^\n]%c"
+# else
+#  define CPUINFO_FILE"/proc/cpuinfo"
+#  define CPUINFO_FORMAT  "%64[^\t:]\t:%256[^\n]%c"
+# endif
+
+# define PROCINFO_PROCESSOR  0
+# define PROCINFO_HARDWARE_PLATFORM 1
+
+static void __eat_cpuinfo_space (char *buf)
+{
+   /* First eat trailing space.  */
+   char *tmp = buf + strlen (buf) - 1;
+   while (tmp > buf && isspace (*tmp))
+   *tmp-- = '\0';
+   /* Then eat leading space.  */
+   tmp = buf;
+   while (*tmp && isspace (*tmp))
+   tmp++;
+   if (tmp != buf)
+   memmove (buf, tmp, strlen (tmp) + 1);
+   /* Finally collapse whitespace.  */
+   tmp = buf;
+   while (tmp[0] && tmp[1]) {
+   if (isspace (tmp[0]) && isspace (tmp[1])) {
+   memmove (tmp, tmp + 1, strlen (tmp));
+   continue;
+   }
+   ++tmp;
+   }
+}
+
+static int __linux_procinfo (int x, char *fstr, size_t s)
+{
+   FILE *fp;
+
+   const char * const procinfo_keys[] = {
+   /* --processor --hardware-platform */
+   #if defined (__alpha__)
+   "cpu model", "system type"
+   #elif defined (__arm__)
+   /* linux-3.8+ uses "model name", but older uses 
"Processor".  */
+   "model name", "Hardware"
+   #elif defined (__avr32__)
+   "processor", "cpu family"
+   #elif defined (__bfin__)
+   "CPU", "BOARD Name"
+   #elif defined (__cris__)
+   "cpu", "cpu model"
+   #elif defined (__frv__)
+   "CPU-Core", "System"
+   #elif defined (__i386__) || defined (__x86_64__)
+   "model name", "vendor_id"
+   #elif defined (__ia64__)
+   "model name", "vendor"
+   #elif defined (__hppa__)
+   "cpu", "model"
+   #elif defined (__m68k__)
+   "CPU", "MMU"
+   #elif defined (__microblaze__)
+   "CPU-Ver", "FPGA-Arch"
+   #elif defined (__mips__)
+   "cpu model", "system type"
+   #elif defined (__powerpc__) || defined (__powerpc64__)
+   "cpu", "machine"
+   #elif defined (__s390__) || defined (__s390x__)
+   "Type", "Manufacturer"
+   #elif defined (__sh__)
+   "cpu type", "machine"
+   #elif defined (sparc) || defined (__sparc__)
+   "type", "cpu"
+   #elif defined (__vax__)
+   "cpu type", "cpu"
+   #else
+   "unknown", "unknown"
+   #endif
+   };
+
+   if ((fp = fopen (CPUINFO_FILE, "r")) != NULL) {
+   char key[65], value[257], eol, *ret = NULL;
+
+   while (fscanf (fp, CPUINFO_FORMAT, key, value, ) != EOF) {
+   __eat_cpuinfo_space (key);
+   if 

[gentoo-commits] repo/gentoo:master commit in: sys-apps/coreutils/

2017-03-08 Thread Mike Frysinger
commit: 6cb36d1c1fba825e7d3e102e63c4d5704be3af47
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Mar  9 07:06:49 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Mar  9 07:06:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb36d1c

sys-apps/coreutils: version bump to 8.27

 sys-apps/coreutils/Manifest  |   3 +
 sys-apps/coreutils/coreutils-8.27.ebuild | 183 +++
 2 files changed, 186 insertions(+)

diff --git a/sys-apps/coreutils/Manifest b/sys-apps/coreutils/Manifest
index 428ef389668..48f1a6537dc 100644
--- a/sys-apps/coreutils/Manifest
+++ b/sys-apps/coreutils/Manifest
@@ -4,3 +4,6 @@ DIST coreutils-8.25.tar.xz 5725008 SHA256 
31e67c057a5b32a582f26408c789e11c2e8d67
 DIST coreutils-8.26-man.tar.xz 43608 SHA256 
9324ec412ffca3b0431e6299720c33ac98e749e430f72a7c6e65f3635c86aa29 SHA512 
33fe9f370b0d2a59217b5a40a47f5f673669b9975baf2793f45a05117fe4c04ab9f05be68cf419a761b20e21c13d9a15b35322cecc81b7b9a1c8c534960432cf
 WHIRLPOOL 
d7426e2f0c41cf937a4b6362aa71427bdc5e555a0a6aa6dba27a6533cb5fecaa1827ddc63b866e70daca8f250fd5724c688b4d5d843f0b29051e8a5570421dbb
 DIST coreutils-8.26-patches-1.1.tar.xz 7184 SHA256 
67fad0b8e53fe9e3daf489cf73882465c15bdc50722a8e09470ff7fbdca9f71a SHA512 
ed8b9af1f76484549b63eb3ad4818a6649117ff1efbda2231f8741d149f0ee67438d09b6b2ea7b461aef36c346f17e3ee9a7328766a4c01d1b2b7d3e157f4455
 WHIRLPOOL 
bf656f5b201b7a3b341b0d3b60c19136cd9a6676aee86e9ad8da45906ae64c8644305a070694aab0c70bc6c853a02d27a0209b2433b681e4b00f024da614d9e8
 DIST coreutils-8.26.tar.xz 5810244 SHA256 
155e94d748f8e2bc327c66e0cbebdb8d6ab265d2f37c3c928f7bf6c3beba9a8e SHA512 
1ca7b32a1564855e672f64cb815f858619dd4308af1c9763959d06fab1ecd51385c4c61d987ceec7ff6bc699f2db10be4be7e40b2c6a6d4ffc3911180b03
 WHIRLPOOL 
9b1026ea5a2fa3dc3c49c4088ddec2de499d06bf7820e1df0d29dd1add7309982a961bd754edeb65f4a54370ab53fde29211c9a93ee5c2f5abce89d7a67be888
+DIST coreutils-8.27-man.tar.xz 43692 SHA256 
1f615819e9167646c731636b6c5ecbe79837e82a18666bacc82c3fb1dfcfaea3 SHA512 
f1ac9b5361191038d42162e90cc1cacf41e34450b4fe174b3f282cde1740405aecaf9f455625e7ed1d32910445a9e46e1fcfa74a2b645975b04ac1958965fa55
 WHIRLPOOL 
963a89eeebd023e8e84bcf871b7487e930167376092d49b491808cde8b6f10ce672f186c44b4df7465e56169bb40f4fc6e2fe4a5540f3d693b748a0dcc871d6c
+DIST coreutils-8.27-patches-1.0.tar.xz 7236 SHA256 
692203fcc1af4a5ef94dbc3323f4ddd88b7ef21e6271649e33a07e0a16bc7c47 SHA512 
2a5daeb7c28a8fb9c3d8456107c213a5ed1a3a17a506ec728bb285b5134509bd1e054d2a6d3fc63a4eda34b5b49b649f5c4fb140fc27f1536dc08cbaa55ac665
 WHIRLPOOL 
26a90e8cae816b13b3d56bb504f2f190db29e0842ae5c7a482f1ccb030440999b50f81504ac4563d800db775ddb1f102f0148cc78994d18a1cee55cd2f27
+DIST coreutils-8.27.tar.xz 5285648 SHA256 
8891d349ee87b9ff7870f52b6d9312a9db672d2439d289bc57084771ca21656b SHA512 
abf3280aaa54e9bd5851df0eda2af1de1017ca174633e52d1e592455d46ea0e99812dda46d2f320e979553cef271485d8818c595bba6ed31264511a511c93679
 WHIRLPOOL 
dcc092f41fb4802563062a4aa5a71e2841a7ddc46dec4acc47af3d9a4bee2372ddae7990ac6f3cf00568f43c3103c8290338964040e111861f080e064960803d

diff --git a/sys-apps/coreutils/coreutils-8.27.ebuild 
b/sys-apps/coreutils/coreutils-8.27.ebuild
new file mode 100644
index 000..3bf5f7cca19
--- /dev/null
+++ b/sys-apps/coreutils/coreutils-8.27.ebuild
@@ -0,0 +1,183 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# To generate the man pages, unpack the upstream tarball and run:
+# ./configure --enable-install-program=arch,coreutils,hostname,kill
+# make
+# cd ..
+# tar cf - coreutils-*/man/*.[0-9] | xz > coreutils--man.tar.xz
+
+EAPI="5"
+
+inherit eutils flag-o-matic toolchain-funcs
+
+PATCH_VER="1.0"
+DESCRIPTION="Standard GNU utilities (chmod, cp, dd, ls, sort, tr, head, wc, 
who,...)"
+HOMEPAGE="https://www.gnu.org/software/coreutils/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz
+   mirror://gentoo/${P}-patches-${PATCH_VER}.tar.xz
+   
https://dev.gentoo.org/~polynomial-c/dist/${P}-patches-${PATCH_VER}.tar.xz
+   mirror://gentoo/${P}-man.tar.xz
+   https://dev.gentoo.org/~polynomial-c/dist/${P}-man.tar.xz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+IUSE="acl caps gmp hostname kill multicall nls selinux static userland_BSD 
vanilla xattr"
+
+LIB_DEPEND="acl? ( sys-apps/acl[static-libs] )
+   caps? ( sys-libs/libcap )
+   gmp? ( dev-libs/gmp:=[static-libs] )
+   xattr? ( !userland_BSD? ( sys-apps/attr[static-libs] ) )"
+RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs]} )
+   selinux? ( sys-libs/libselinux )
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   static? ( ${LIB_DEPEND} )
+   app-arch/xz-utils"
+RDEPEND+="
+   hostname? ( !sys-apps/net-tools[hostname] )
+   kill? (
+   !sys-apps/util-linux[kill]
+   

[gentoo-commits] gentoo commit in src/patchsets/coreutils/8.27: - New directory

2017-03-08 Thread Mike Frysinger (vapier)
vapier  17/03/09 06:57:35

  Log:
  Directory /var/cvsroot/gentoo/src/patchsets/coreutils/8.27 added to the 
repository



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

2017-03-08 Thread Hans de Graaff
commit: 187f1f61425233d6bd7790d4649cee12202ca75b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Mar  9 06:56:49 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Mar  9 06:57:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=187f1f61

app-emacs/magit: add 2.10.3

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-emacs/magit/Manifest|  1 +
 app-emacs/magit/magit-2.10.3.ebuild | 28 
 2 files changed, 29 insertions(+)

diff --git a/app-emacs/magit/Manifest b/app-emacs/magit/Manifest
index 47b1a8318ab..3d533f748e2 100644
--- a/app-emacs/magit/Manifest
+++ b/app-emacs/magit/Manifest
@@ -2,4 +2,5 @@ DIST magit-1.2.2.tar.gz 111245 SHA256 
8ed300887909d0990cf17b1f4a3b902944db2471ca
 DIST magit-2.10.0.tar.gz 427032 SHA256 
767038229a2290c241231137c799f188815554949c42c4cd8d679a2d69007ca2 SHA512 
6bdc55e52338009b04d075daac05bac4a6c61fff60435a87c1f1133024c98b85cd280986e33b864285855232c7113597a72132802c4a6641bcafe6b157dbd862
 WHIRLPOOL 
7a7ffba1833dcb01329a835acbf17fdb5fb4138937202decb9f6cc0b0b96c980ffeec68db1ca4f814b41d715ea1c3485bde0cb10c9ba8a2359ac7e865763ebdb
 DIST magit-2.10.1.tar.gz 428180 SHA256 
5edee654fd8596352afd04f1dbfff1c7c419a997bda13513b41f9261f8d8d659 SHA512 
07c508b36e0e7ea5ffb9b84dba6d75cc89252009b3236a536587328cfcfb37c041781b8ed1f220f1e784a8522a20c3e1d7531893387fe1173ebcd1059777c5f0
 WHIRLPOOL 
74df44d5888acab3a4b2d3cc9aefd98e29bc346721ca89b2293a803629a15d57b309e0454017966707371c738332b53ffd6c6a9454c83b5d4397e3a304c25b3a
 DIST magit-2.10.2.tar.gz 429389 SHA256 
c550e6ffba4613a3aced45b3af03b175762e3a385c96d1e2ed480b9e2b43c446 SHA512 
3309824a4a9fe36316912911f53a1c9aa8f93230b6461cf4bbcb9cdb38d474ba59c8450fe1722155959c8cf5610358ea9ec28723cdbbce226219f4cf1c5c4bd2
 WHIRLPOOL 
8f53d046585b077e4df8b8f5ddb82b2bb9d1673e1bd0cb4c0a0c81b04cde39efe899cfcd98386868376bfc900e598818b06132cd2cbb9774bf28e68843a1d21f
+DIST magit-2.10.3.tar.gz 430343 SHA256 
dc797db8da8683767ffa5d006f6e85d334892979c76057baf03c99bb0c6f669c SHA512 
54cd4c54548583972111ffb18c3b4e0834e061d84d071d5b559fe4b800872eadc214d01c8efc4452ed725184ec5bb1954e897d94fdb82397c9e953aa7236532b
 WHIRLPOOL 
ab39f72babb68f619993e221ae03616e6a1c1eea62e2f106f9a4783bdb9e160ec04a183be38a7d2450aa0a75fe97ac119605e32b9f2b9f0983b437855a7c0166
 DIST magit-2.9.0.tar.gz 421074 SHA256 
0de38797cb89a5abe202f08ea371ab0070f5829587285cf48cb28340b5bbde78 SHA512 
0a15e4b6c145c081929f4f49cb40f7827bb3e68b4122e9e76b74ea24ded4c3bd3ea5c431ef6d56b08705fe3b77f2d32ee4383c7eddc93de2a3170add098e15ed
 WHIRLPOOL 
e12d5e406531a1fa70da062c94e977384cfcd22f50e51867d4a436c2cc722acde3e62725304d867af7e63a9529287aaf547b8f973281d574bdbbf0878fb54bb5

diff --git a/app-emacs/magit/magit-2.10.3.ebuild 
b/app-emacs/magit/magit-2.10.3.ebuild
new file mode 100644
index 000..e5c1ffa618d
--- /dev/null
+++ b/app-emacs/magit/magit-2.10.3.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+NEED_EMACS=24
+
+inherit elisp
+
+DESCRIPTION="A Git porcelain inside Emacs"
+HOMEPAGE="https://magit.vc/;
+SRC_URI="https://github.com/magit/magit/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+S="${WORKDIR}/${P}/lisp"
+SITEFILE="50${PN}-gentoo.el"
+ELISP_TEXINFO="../Documentation/*.texi"
+DOCS="../README.md ../Documentation/AUTHORS.md 
../Documentation/RelNotes/${PV}.txt"
+
+DEPEND=">=app-emacs/dash-2.13.0 >=app-emacs/with-editor-2.5.10"
+RDEPEND="${DEPEND} >=dev-vcs/git-1.9.4"
+
+src_prepare() {
+   default
+   echo "(setq magit-version \"${PV}\")" > magit-version.el || die
+}



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-libinput/

2017-03-08 Thread Matt Turner
commit: 44261dc8e896ba0d1eb4a14614a1c1336a3a8870
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Mar  9 06:51:33 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Mar  9 06:52:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44261dc8

x11-drivers/xf86-input-libinput: Version bump to 0.25.0.

 x11-drivers/xf86-input-libinput/Manifest|  1 +
 .../xf86-input-libinput-0.25.0.ebuild   | 21 +
 2 files changed, 22 insertions(+)

diff --git a/x11-drivers/xf86-input-libinput/Manifest 
b/x11-drivers/xf86-input-libinput/Manifest
index 5f637838b6f..3feb0ef3413 100644
--- a/x11-drivers/xf86-input-libinput/Manifest
+++ b/x11-drivers/xf86-input-libinput/Manifest
@@ -2,3 +2,4 @@ DIST xf86-input-libinput-0.14.0.tar.bz2 312256 SHA256 
e8d05798a556e5ea0d9f1823bb
 DIST xf86-input-libinput-0.19.0.tar.bz2 346512 SHA256 
6c5d30dc7c8b8ae34261340e1dc9cbb8ef435078e084b8ef507527a8a21af477 SHA512 
8709670accad3231652350253d19d3c1e03d97c0ad593d10d6e941319ecc77f5e78e69d76a98b7ec40636f1d856f25fc72dc572be3581054dfac10e5f856e8ad
 WHIRLPOOL 
58fc92c97a46ba575345e61f62129e036051d7ced479580eafe629c2074e0df00b75cc3210469938fe2ffea21c5042e70e7426066c99832a1ed329cadf74f5ae
 DIST xf86-input-libinput-0.23.0.tar.bz2 358432 SHA256 
0b53ebdfe8f8fc7554dd92af1b1c3088a6d3ec4ae1a33fc76f57d635c736a9dc SHA512 
11aeeb2d8db67371d530dd06fc83d3ded6a6e3dfd4311e69738ff748b5684dc98af7ba81643d7837f988314265f93d7ddb016a4781d69957dba4046533352223
 WHIRLPOOL 
ddbf78372bf33c48c8492ee1310f08ad7a9c3526e0f5a8d4dfc6ed7cd5c6ada7cac4b91e9566697c9a3f3a9564e9b20d2bbb930798759f36a1af7bf0f2fc56a6
 DIST xf86-input-libinput-0.24.0.tar.bz2 367266 SHA256 
ddcb07350aed59b2996a92a1b4ff64d1c0b0c86a3f0ddca15b2b1c8c8bb13628 SHA512 
f885cbf1554feb306023c3a355b06d90c7686eb1a01d9a87835cb9677200acb3a031fc690a475938e360db62865cde9f7dbe26fbbe3ee8fac43375bdf351c8f4
 WHIRLPOOL 
69c4707dc464ea554a1135bef254cb4d2c9dea5e21609733aee9105d909ba965a2283ac0045375d6b91d484ad9774d86bb88f216bab0b84def6a422b7776d050
+DIST xf86-input-libinput-0.25.0.tar.bz2 368913 SHA256 
bb7fd1658fa7e6c757fd55480aa8a07f8ccfb0a80ae42c29dbc67d57958c556f SHA512 
d9a22302d7f3d225fa50abef1a0667ff3609e1a26e20bb269272ab280ed7bb12e1f2ea42e5434fc1e0a04b944d7ffa190347b93a77e2638cc47eb55cf42a57e9
 WHIRLPOOL 
7db8a0fc3fa11f17272b11b992dcaa53aa1c2e92b7bb2598f8322870c9269ca4f26da1964bd7f839abb51959b2916e9c76563e361cbfe64d3746f1ded1c296da

diff --git a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.25.0.ebuild 
b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.25.0.ebuild
new file mode 100644
index 000..45026aaa8f9
--- /dev/null
+++ b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.25.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit linux-info xorg-2
+
+DESCRIPTION="X.org input driver based on libinput"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE=""
+
+RDEPEND=">=dev-libs/libinput-1.5.0:0="
+DEPEND="${RDEPEND}"
+
+DOCS=( "README.md" )
+
+pkg_pretend() {
+   CONFIG_CHECK="~TIMERFD"
+   check_extra_config
+}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libseccomp/

2017-03-08 Thread Mike Frysinger
commit: 263ad995f2782c9a35d3da09e17e8f71a304bb5a
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Mar  9 06:45:26 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Mar  9 06:46:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=263ad995

sys-libs/libseccomp: drop old 2.2.3 version

 sys-libs/libseccomp/Manifest|  1 -
 sys-libs/libseccomp/libseccomp-2.2.3.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/sys-libs/libseccomp/Manifest b/sys-libs/libseccomp/Manifest
index 5a5207f86d6..4e1ee8ba128 100644
--- a/sys-libs/libseccomp/Manifest
+++ b/sys-libs/libseccomp/Manifest
@@ -1,4 +1,3 @@
-DIST libseccomp-2.2.3.tar.gz 522755 SHA256 
d9b400b703cab7bb04b84b9b6e52076a630b673819d7541757bcc16467b6d49e SHA512 
e7bce0627c7ee107ea4780a6d2d7f24da162fdb5a85fc064c94e629918de2ee7ce7ed5ed98490f17392d9ca7ec1204945db3fea4415fae4370495b71c9edb61e
 WHIRLPOOL 
a32105a4cf3b514531e3cd7f1c703305318eceb90ef030317139fe08fe62fd14670b5ddc6f0dc8165cac23da1df89ee6efea3c366cec64102194c12ae53eac4f
 DIST libseccomp-2.3.0.tar.gz 546948 SHA256 
d756e3a77578259a808698a50c43d44612aae3339ea42ab5b15ea983f26b901d SHA512 
398643af0920ff446b37a74e48f7a96ad2bec4f514e92fc6f8242b7515dcb8f5d06c2894790b22f62387c2d9b75efd54a4d5944f973239a05f06ec840f2a5a0b
 WHIRLPOOL 
45ced8e8cc5636fdd9861408582277183daf7c6e3b35bc9f16ea16249a27f86cf82ec45c7e9f898a843b91b9c37ff5ab5b0a4a2b79ac2564e92cecaf8a39d61d
 DIST libseccomp-2.3.1.tar.gz 552299 SHA256 
ff5bdd2168790f1979e24eaa498f8606c2f2d96f08a8dc4006a2e88affa4562b SHA512 
246b30e1c513d5e1fa35a47905d99036e276c1e6483a96f3e79ddca536a8c6f641c11bf324ed10c9c8d18fa27d73667c9c72fc7459f827d2883926769ac1cb45
 WHIRLPOOL 
2ffb97f5f45d7cda354b6e52f6b604e4fc1fb7b6b804defeabb377c108bbcbf0099fc6f78d3104f96d37ce65e837914a0823a9a6d90812d893a7a367cf09a3b9
 DIST libseccomp-2.3.2.tar.gz 559238 SHA256 
3ddc8c037956c0a5ac19664ece4194743f59e1ccd4adde848f4f0dae7f77bca1 SHA512 
0864a53ba2be61d0207f7361af94bcda4acff84a1814f915e6ccb19ab24f6ccc978da0eedc5cee047fa655dc1a583e2eeb7ab985ebfc77491c6a2606727b79ec
 WHIRLPOOL 
e5212eff7d2e916a161bae864fc60c8d634c700b7e553886b0701b930796a9d14ea1428e74d50470ab6aa459dcacf5b7d3174249bb723735aa6e466a9ec109ae

diff --git a/sys-libs/libseccomp/libseccomp-2.2.3.ebuild 
b/sys-libs/libseccomp/libseccomp-2.2.3.ebuild
deleted file mode 100644
index ada74a7fffd..000
--- a/sys-libs/libseccomp/libseccomp-2.2.3.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# TODO: Add python support.
-
-EAPI="5"
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="high level interface to Linux seccomp filter"
-HOMEPAGE="https://github.com/seccomp/libseccomp;
-SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="-* amd64 arm arm64 ~mips x86"
-IUSE="static-libs"
-
-# We need newer kernel headers; we don't keep strict control of the exact
-# version here, just be safe and pull in the latest stable ones. #551248
-DEPEND=">=sys-kernel/linux-headers-3.18"
-
-src_prepare() {
-   sed -i \
-   -e '/_LDFLAGS/s:-static::' \
-   tools/Makefile.in || die
-}
-
-multilib_src_configure() {
-   ECONF_SOURCE=${S} \
-   econf \
-   $(use_enable static-libs static) \
-   --disable-python
-}
-
-multilib_src_install_all() {
-   find "${ED}" -name libseccomp.la -delete
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libseccomp/

2017-03-08 Thread Mike Frysinger
commit: c4a03220c46814e7d17a78c8e41951f565de5c65
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Mar  9 06:44:42 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Mar  9 06:46:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a03220

sys-libs/libseccomp: version bump to 2.3.2

 sys-libs/libseccomp/Manifest|  1 +
 sys-libs/libseccomp/libseccomp-2.3.2.ebuild | 39 +
 2 files changed, 40 insertions(+)

diff --git a/sys-libs/libseccomp/Manifest b/sys-libs/libseccomp/Manifest
index 5b036503724..5a5207f86d6 100644
--- a/sys-libs/libseccomp/Manifest
+++ b/sys-libs/libseccomp/Manifest
@@ -1,3 +1,4 @@
 DIST libseccomp-2.2.3.tar.gz 522755 SHA256 
d9b400b703cab7bb04b84b9b6e52076a630b673819d7541757bcc16467b6d49e SHA512 
e7bce0627c7ee107ea4780a6d2d7f24da162fdb5a85fc064c94e629918de2ee7ce7ed5ed98490f17392d9ca7ec1204945db3fea4415fae4370495b71c9edb61e
 WHIRLPOOL 
a32105a4cf3b514531e3cd7f1c703305318eceb90ef030317139fe08fe62fd14670b5ddc6f0dc8165cac23da1df89ee6efea3c366cec64102194c12ae53eac4f
 DIST libseccomp-2.3.0.tar.gz 546948 SHA256 
d756e3a77578259a808698a50c43d44612aae3339ea42ab5b15ea983f26b901d SHA512 
398643af0920ff446b37a74e48f7a96ad2bec4f514e92fc6f8242b7515dcb8f5d06c2894790b22f62387c2d9b75efd54a4d5944f973239a05f06ec840f2a5a0b
 WHIRLPOOL 
45ced8e8cc5636fdd9861408582277183daf7c6e3b35bc9f16ea16249a27f86cf82ec45c7e9f898a843b91b9c37ff5ab5b0a4a2b79ac2564e92cecaf8a39d61d
 DIST libseccomp-2.3.1.tar.gz 552299 SHA256 
ff5bdd2168790f1979e24eaa498f8606c2f2d96f08a8dc4006a2e88affa4562b SHA512 
246b30e1c513d5e1fa35a47905d99036e276c1e6483a96f3e79ddca536a8c6f641c11bf324ed10c9c8d18fa27d73667c9c72fc7459f827d2883926769ac1cb45
 WHIRLPOOL 
2ffb97f5f45d7cda354b6e52f6b604e4fc1fb7b6b804defeabb377c108bbcbf0099fc6f78d3104f96d37ce65e837914a0823a9a6d90812d893a7a367cf09a3b9
+DIST libseccomp-2.3.2.tar.gz 559238 SHA256 
3ddc8c037956c0a5ac19664ece4194743f59e1ccd4adde848f4f0dae7f77bca1 SHA512 
0864a53ba2be61d0207f7361af94bcda4acff84a1814f915e6ccb19ab24f6ccc978da0eedc5cee047fa655dc1a583e2eeb7ab985ebfc77491c6a2606727b79ec
 WHIRLPOOL 
e5212eff7d2e916a161bae864fc60c8d634c700b7e553886b0701b930796a9d14ea1428e74d50470ab6aa459dcacf5b7d3174249bb723735aa6e466a9ec109ae

diff --git a/sys-libs/libseccomp/libseccomp-2.3.2.ebuild 
b/sys-libs/libseccomp/libseccomp-2.3.2.ebuild
new file mode 100644
index 000..f43991a2657
--- /dev/null
+++ b/sys-libs/libseccomp/libseccomp-2.3.2.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# TODO: Add python support.
+
+EAPI="5"
+
+inherit eutils multilib-minimal
+
+DESCRIPTION="high level interface to Linux seccomp filter"
+HOMEPAGE="https://github.com/seccomp/libseccomp;
+SRC_URI="https://github.com/seccomp/libseccomp/releases/download/v${PV}/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~s390 ~x86"
+IUSE="static-libs"
+
+# We need newer kernel headers; we don't keep strict control of the exact
+# version here, just be safe and pull in the latest stable ones. #551248
+DEPEND=">=sys-kernel/linux-headers-4.3"
+
+src_prepare() {
+   sed -i \
+   -e '/_LDFLAGS/s:-static::' \
+   tools/Makefile.in || die
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE=${S} \
+   econf \
+   $(use_enable static-libs static) \
+   --disable-python
+}
+
+multilib_src_install_all() {
+   find "${ED}" -name libseccomp.la -delete
+   einstalldocs
+}



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

2017-03-08 Thread Hans de Graaff
commit: f6599c2b2809c0e5f9fc0bf42a5bf4a365c7d473
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Mar  9 06:35:57 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Mar  9 06:35:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6599c2b

dev-ruby/bunny: avoid installing CI binstubs

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/bunny/{bunny-2.6.4.ebuild => bunny-2.6.4-r1.ebuild} | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-ruby/bunny/bunny-2.6.4.ebuild 
b/dev-ruby/bunny/bunny-2.6.4-r1.ebuild
similarity index 96%
rename from dev-ruby/bunny/bunny-2.6.4.ebuild
rename to dev-ruby/bunny/bunny-2.6.4-r1.ebuild
index d2241cf91e3..726af130e17 100644
--- a/dev-ruby/bunny/bunny-2.6.4.ebuild
+++ b/dev-ruby/bunny/bunny-2.6.4-r1.ebuild
@@ -11,6 +11,8 @@ RUBY_FAKEGEM_TASK_TEST=""
 
 RUBY_FAKEGEM_EXTRADOC="ChangeLog.md README.md"
 
+RUBY_FAKEGEM_BINWRAP=""
+
 inherit ruby-fakegem
 
 DESCRIPTION="Another synchronous Ruby AMQP client"



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

2017-03-08 Thread Hans de Graaff
commit: 41d916e75bd112e304833d861ff4c54630458a08
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Mar  9 06:34:59 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Mar  9 06:34:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41d916e7

dev-ruby/protected_attributes: add ruby23

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/protected_attributes/protected_attributes-1.1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/protected_attributes/protected_attributes-1.1.3.ebuild 
b/dev-ruby/protected_attributes/protected_attributes-1.1.3.ebuild
index 668aa1e439a..aad51127626 100644
--- a/dev-ruby/protected_attributes/protected_attributes-1.1.3.ebuild
+++ b/dev-ruby/protected_attributes/protected_attributes-1.1.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_TEST="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/compass-import-once/

2017-03-08 Thread Hans de Graaff
commit: 98b22cbf90fbe9bd4c82228c37052d624e0a124f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Mar  9 06:30:45 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Mar  9 06:30:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98b22cbf

dev-ruby/compass-import-once: add ruby23

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/compass-import-once/compass-import-once-1.0.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/compass-import-once/compass-import-once-1.0.5.ebuild 
b/dev-ruby/compass-import-once/compass-import-once-1.0.5.ebuild
index b9d1d46e450..bab268b2e69 100644
--- a/dev-ruby/compass-import-once/compass-import-once-1.0.5.ebuild
+++ b/dev-ruby/compass-import-once/compass-import-once-1.0.5.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby21 ruby22 ruby23"
 
 # Skip tests since they depend on sass-globbing which does not have a
 # license and where the last version is known to be broken.



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

2017-03-08 Thread Hans de Graaff
commit: 9962a4f533a7706b247bca77ce999601cc589425
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Mar  9 06:00:35 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Mar  9 06:00:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9962a4f5

dev-ruby/selenium-webdriver: add 3.3.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-ruby/selenium-webdriver/Manifest   |  1 +
 .../selenium-webdriver-3.3.0.ebuild| 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-ruby/selenium-webdriver/Manifest 
b/dev-ruby/selenium-webdriver/Manifest
index 20f8f1a81be..5911165561a 100644
--- a/dev-ruby/selenium-webdriver/Manifest
+++ b/dev-ruby/selenium-webdriver/Manifest
@@ -4,3 +4,4 @@ DIST selenium-webdriver-3.0.8.gem 819712 SHA256 
2b07dc585ee73c681ec41b1436e466dd
 DIST selenium-webdriver-3.1.0.gem 826368 SHA256 
a579874564e8ebafa672d54ebde39cae1e47c2cbe0153bfce0420d8137cb0161 SHA512 
039061f829fe1ebe822738c46d51d93fb227141234e75e3d4116f4ef818f432d423dd046fc99704c3dbeb48aef8b63a5705e12a378b5e18b3f61dcb45d284798
 WHIRLPOOL 
f068f30c5423b372193f2b7a3e48319cbb0f20c67582a8629afae79ea3fdeb643870abe6dff68307d69894d155ffb8243b979ca65d143bd834be81e2a4a9cebf
 DIST selenium-webdriver-3.2.1.gem 822784 SHA256 
5ab29b71c012e0fd3559ddeb00a58bca8840f5100ddd55cd5749b2c0b7f18b08 SHA512 
a1b328b4ae25579aa1aa828eb6954f3a4b01fa67a3d9ab83385d7dfa2f22111b6b4eb4bf9d6d1aa85858c1c5c5d90b2b906a65b2c4e0e83f334833be882c5677
 WHIRLPOOL 
10229a9f8136dccbf791561369476d22b489453d0b2b9187a53cdb0369d4e5585457d9fe69b06d3c9fdb5e7a8c4652efc6d790c79d0b147d9a756ca8c964
 DIST selenium-webdriver-3.2.2.gem 823296 SHA256 
2676fb2302f9cbf8b7db5385e8a1c2840cea9312530a1ae50d951b0ae82ac0b9 SHA512 
f6c726eaf96f4418cc469808445e837c7269db3e8092142731ce2e81e720753b066ae260c4a31a6115196d6f4a01de1529e994fe845c42fddead62e989e1193c
 WHIRLPOOL 
a47e8167e470eb5559c97df6a603d98840c4ff38b410b3030112a9f4d73a6566bdaf18278fb08e5c20c58f0db6093f6628db5a2b9c1dc9e3af76de9fded0b799
+DIST selenium-webdriver-3.3.0.gem 823808 SHA256 
3605ceed7093ac503a0dbf0d64820b9111424dccb9937dcc8faacc5d5880202b SHA512 
de4ac22fd360f550b60be0f44ac03ac209d1333c340211d82f3c3a1e6ea056c2ecdb01dbc9ce39b1f5e523caecb7d42472cdf5e5a1848bc209f24a5291668996
 WHIRLPOOL 
bd6f3a69d6bb7562131d79df5805858bc7ad61eb70cdd62077208db4b69bf2368a71722dae04b5d948cd4d878210960e473a96c2ac32a0d46da4b4c77896fc38

diff --git a/dev-ruby/selenium-webdriver/selenium-webdriver-3.3.0.ebuild 
b/dev-ruby/selenium-webdriver/selenium-webdriver-3.3.0.ebuild
new file mode 100644
index 000..396035d6332
--- /dev/null
+++ b/dev-ruby/selenium-webdriver/selenium-webdriver-3.3.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+USE_RUBY="ruby21 ruby22 ruby23"
+
+# NOTE: this package contains precompiled code. It appears that all
+# source code can be found at https://code.google.com/p/selenium/ but the
+# repository is not organized in a way so that we can easily rebuild the
+# suited shared object. We'll just try our luck with the precompiled
+# objects for now.
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_QA_ALLOWED_LIBS="x_ignore_nofocus.so"
+QA_PREBUILT="*/x_ignore_nofocus.so"
+
+inherit ruby-fakegem
+
+DESCRIPTION="This gem provides Ruby bindings for WebDriver"
+HOMEPAGE="https://github.com/seleniumhq/selenium;
+
+LICENSE="Apache-2.0"
+SLOT="3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/childprocess-0.5.0
+   dev-ruby/rubyzip:1"
+
+all_ruby_prepare() {
+   # Make websocket a development dependency since it is only needed
+   # for the safari driver which we don't support on Gentoo.
+   sed -i -e '/websocket/,/version_requirements/ s/runtime/development/' 
../metadata || die
+}



[gentoo-commits] proj/catalyst:master commit in: catalyst/base/

2017-03-08 Thread Brian Dolbec
commit: 753d18b58afd38cb282b405e75406e20dd9c14be
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Mar  9 05:38:28 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Mar  9 05:38:28 2017 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=753d18b5

base/stagebase.py: Fix 48856f7e10e due to a change to AutoResume.get()

Changing the formatting to match in the log messages broke the hash matching 
preventing
them from ever matching.

 catalyst/base/stagebase.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 2557fe8..b857a64 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -744,7 +744,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
 
# check seed source
if os.path.isfile(self.settings["source_path"]) and not 
invalid_chroot:
-   if self.settings["source_path_hash"] == 
clst_unpack_hash:
+   if 
self.settings["source_path_hash"].replace("\n", " ") == clst_unpack_hash:
# Seed tarball has not changed, chroot 
is valid
_unpack = False
invalid_chroot = False



[gentoo-commits] proj/catalyst:master commit in: catalyst/base/

2017-03-08 Thread Brian Dolbec
commit: 48856f7e10e04d1720b35d32a6151ff2e0d50b31
Author: Brian Dolbec  gentoo  org>
AuthorDate: Thu Mar  9 05:04:47 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Thu Mar  9 05:04:47 2017 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=48856f7e

base/stagebase.py: Cleanup and fix the autoresume validation in the unpack()

The previous logic was convoluted and had many errors, most notably, not 
checking
the chroot is a directory, but instead was checking the seed source.
I broke up and simplified the logic into two sections, one checks the chroot 
for a valid resume
point, the other checks for seed tarball changes which would invalidate the 
existing chroot.

Also the non-autoresume code block code was mostly not needed and was also 
simplified.

 catalyst/base/resume.py|  2 +-
 catalyst/base/stagebase.py | 92 ++
 2 files changed, 45 insertions(+), 49 deletions(-)

diff --git a/catalyst/base/resume.py b/catalyst/base/resume.py
index 70d9a4f..b210073 100644
--- a/catalyst/base/resume.py
+++ b/catalyst/base/resume.py
@@ -75,7 +75,7 @@ class AutoResume(object):
with open(self._points[point], 'r') as myf:
data = myf.read()
if data and no_lf:
-   data = data.replace('\n', '')
+   data = data.replace('\n', ' ')
except OSError as e:
log.error('AutoResumeError: %s', e)
return None

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index a6233b2..2557fe8 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -416,6 +416,7 @@ class StageBase(TargetBase, ClearBase, GenBase):
self.settings["source_subpath"] + "/")):
self.settings["source_path"] = 
normpath(self.settings["storedir"] +
"/tmp/" + self.settings["source_subpath"] + "/")
+   log.debug("source_subpath is: %s", 
self.settings["source_path"])
else:
log.debug('Checking source path existence and '
'get the final filepath. subpath: %s',
@@ -693,10 +694,10 @@ class StageBase(TargetBase, ClearBase, GenBase):
raise CatalystError("Unable to 
auto-unbind " + target)
 
def unpack(self):
-   _unpack = True
 
clst_unpack_hash = self.resume.get("unpack")
 
+   # Set up all unpack info settings
unpack_info = self.decompressor.create_infodict(
source = self.settings["source_path"],
destination = self.settings["chroot_path"],
@@ -721,56 +722,51 @@ class StageBase(TargetBase, ClearBase, GenBase):
else:
# No SEEDCACHE, use tar
unpack_info['source'] = 
file_check(unpack_info['source'])
-   # endif "seedcache"
+   # end of unpack_info settings
 
+   # set defaults,
+   # only change them if the resume point is proven to be good
+   _unpack = True
+   invalid_chroot = True
+   # Begin autoresume validation
if "autoresume" in self.settings["options"]:
-   if os.path.isdir(self.settings["source_path"]) \
-   and self.resume.is_enabled("unpack"):
-   # Autoresume is valid, SEEDCACHE is valid
-   _unpack = False
-   invalid_snapshot = False
-   log.notice('Resume point "unpack" valid...')
-
-   elif os.path.isfile(self.settings["source_path"]) \
-   and self.settings["source_path_hash"] == 
clst_unpack_hash:
-   # Autoresume is valid, tarball is valid
-   _unpack = False
-   invalid_snapshot = False
-   log.notice('Resume point "source_path_hash" 
valid...')
-
-   elif os.path.isdir(self.settings["source_path"]) \
-   and self.resume.is_disabled("unpack"):
-   # Autoresume is invalid, SEEDCACHE
-   _unpack = True
-   invalid_snapshot = True
-   log.notice('Resume point "unpack is disabled" 
is True, invalidating snapshot... :(')
-
-   elif os.path.isfile(self.settings["source_path"]) \
-   and self.settings["source_path_hash"] != 
clst_unpack_hash:
-   # 

[gentoo-commits] repo/gentoo:master commit in: sys-libs/ncurses/

2017-03-08 Thread Mike Frysinger
commit: 94f99af61ba52171a74feccf91a0f387ddecf7ae
Author: Mike Frysinger  gentoo  org>
AuthorDate: Thu Mar  9 04:56:33 2017 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Mar  9 04:57:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94f99af6

sys-libs/ncurses: drop old versions with funky SLOTs

 sys-libs/ncurses/ncurses-5.9-r3.ebuild  | 225 ---
 sys-libs/ncurses/ncurses-5.9-r4.ebuild  | 230 ---
 sys-libs/ncurses/ncurses-5.9-r5.ebuild  | 232 
 sys-libs/ncurses/ncurses-5.9-r99.ebuild |  20 ---
 sys-libs/ncurses/ncurses-6.0.ebuild |  20 ---
 5 files changed, 727 deletions(-)

diff --git a/sys-libs/ncurses/ncurses-5.9-r3.ebuild 
b/sys-libs/ncurses/ncurses-5.9-r3.ebuild
deleted file mode 100644
index 2d540b0ae87..000
--- a/sys-libs/ncurses/ncurses-5.9-r3.ebuild
+++ /dev/null
@@ -1,225 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-inherit eutils flag-o-matic toolchain-funcs multilib-minimal
-
-MY_PV=${PV:0:3}
-PV_SNAP=${PV:4}
-MY_P=${PN}-${MY_PV}
-DESCRIPTION="console display library"
-HOMEPAGE="https://www.gnu.org/software/ncurses/ http://dickey.his.com/ncurses/;
-SRC_URI="mirror://gnu/ncurses/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
-IUSE="ada +cxx debug doc gpm minimal profile static-libs tinfo trace unicode"
-
-DEPEND="gpm? ( sys-libs/gpm )"
-#  berkdb? ( sys-libs/db )"
-# Block the older ncurses that installed all files w/SLOT=5. #557472
-RDEPEND="${DEPEND}
-   !/dev/null)
-   local basedir=$(basename $(dirname "${termfile}"))
-
-   if [[ -n ${termfile} ]] ; then
-   dodir /etc/terminfo/${basedir}
-   mv ${termfile} "${ED}"/etc/terminfo/${basedir}/
-   dosym ../../../../etc/terminfo/${basedir}/${x} \
-   /usr/share/terminfo/${basedir}/${x}
-   fi
-   done
-#  fi
-
-   echo "CONFIG_PROTECT_MASK=\"/etc/terminfo\"" > "${T}"/50ncurses
-   doenvd "${T}"/50ncurses
-
-   use minimal && rm -r "${ED}"/usr/share/terminfo*
-   # Because ncurses5-config --terminfo returns the directory we keep it
-   keepdir /usr/share/terminfo #245374
-
-   cd "${S}"
-   dodoc ANNOUNCE MANIFEST NEWS README* TO-DO doc/*.doc
-   use doc && dohtml -r doc/html/
-}

diff --git a/sys-libs/ncurses/ncurses-5.9-r4.ebuild 
b/sys-libs/ncurses/ncurses-5.9-r4.ebuild
deleted file mode 100644
index 2d4baab203f..000
--- a/sys-libs/ncurses/ncurses-5.9-r4.ebuild
+++ /dev/null
@@ -1,230 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-inherit eutils flag-o-matic toolchain-funcs multilib-minimal
-
-MY_PV=${PV:0:3}
-PV_SNAP=${PV:4}
-MY_P=${PN}-${MY_PV}
-DESCRIPTION="console display library"
-HOMEPAGE="https://www.gnu.org/software/ncurses/ http://dickey.his.com/ncurses/;
-SRC_URI="mirror://gnu/ncurses/${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
-IUSE="ada +cxx debug doc gpm minimal profile static-libs tinfo trace unicode"
-
-DEPEND="gpm? ( sys-libs/gpm )"
-#  berkdb? ( sys-libs/db )"
-# Block the older ncurses that installed all files w/SLOT=5. #557472
-RDEPEND="${DEPEND}
-   !<=sys-libs/ncurses-5.9-r4:5
-   !/dev/null)
-   local basedir=$(basename $(dirname "${termfile}"))
-
-   if [[ -n ${termfile} ]] ; then
-   dodir /etc/terminfo/${basedir}
-   mv ${termfile} "${ED}"/etc/terminfo/${basedir}/
-   dosym ../../../../etc/terminfo/${basedir}/${x} \
-   /usr/share/terminfo/${basedir}/${x}
-   fi
-   done
-#  fi
-
-   echo "CONFIG_PROTECT_MASK=\"/etc/terminfo\"" > "${T}"/50ncurses
-   doenvd "${T}"/50ncurses
-
-   use minimal && rm -r "${ED}"/usr/share/terminfo*
-   # Because ncurses5-config --terminfo returns the directory we keep it
-   keepdir /usr/share/terminfo #245374
-
-   cd "${S}"
-   dodoc ANNOUNCE MANIFEST NEWS README* TO-DO doc/*.doc
-   use doc && dohtml -r doc/html/
-}

diff --git a/sys-libs/ncurses/ncurses-5.9-r5.ebuild 
b/sys-libs/ncurses/ncurses-5.9-r5.ebuild
deleted file mode 100644
index 001fc43c297..000
--- a/sys-libs/ncurses/ncurses-5.9-r5.ebuild
+++ /dev/null
@@ -1,232 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-

[gentoo-commits] proj/musl:master commit in: dev-libs/libnl/

2017-03-08 Thread Aric Belsito
commit: 1374e199ad84272bbbd8fb11bcf59c8bfa4151a1
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Mar  9 04:21:30 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Mar  9 04:21:30 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=1374e199

dev-libs/libnl: Fix manifest

 dev-libs/libnl/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libnl/Manifest b/dev-libs/libnl/Manifest
index 895e9b6..e1f28ea 100644
--- a/dev-libs/libnl/Manifest
+++ b/dev-libs/libnl/Manifest
@@ -1,4 +1,4 @@
 AUX libnl-3.3.0_rc1-musl.patch 3539 SHA256 
8e0a4d1da3ddc8cfbe81b5d9440458b6bbebce101aeaaff4085c2ba857d208de SHA512 
a31ec4b76d2fc472072f2d770cb3f5819a6477230a97603a476ce175c0c94d25e74eff8dc0ce2e6baa96f0e450b82db508a152f418bdd72919cbd5521d5f82fd
 WHIRLPOOL 
6678b618dea03c1dc51c506e3f81ec770c5ab1ee1fd3931e7b52fa2e217a6cdccdf465f4ee979ecba2c4dee55e132057e55e065eaabd1c576b219d8bc0ef8305
 DIST libnl-3.3.0-rc1.tar.gz 933271 SHA256 
426f69373191760174cb40cb1f9a811248a56f8962fe66cf22156a71685fd110 SHA512 
8084a54efac0256f6badd438fb79512cc53ee5f6635c4f301d1f7b3cfdf326387176949ac368903109dda02f55589ed09cb8f3218ebac973457c6f2740951488
 WHIRLPOOL 
b8db1d4f589d32f0da830dc934765c67087665ac58366265fc2f5d649178c161cfc41e2faf139859c9547c5b20f28bfff5875db9c51cbfe93df3ecc01c3d7f3e
 EBUILD libnl-3.3.0_rc1.ebuild 2519 SHA256 
be1f7386c1add9df900a97726b94a27d2b646fdca9fb3f3615a9e1055304d92f SHA512 
7a53ceea365a4e4fc4ee5c079be1fe7afda32b091a6f4f6949ff5c5be6a84902a5e8d07a37b2b761591698c002cb851a0f5b0fe76b2f9e0b36c09294ef93dbb5
 WHIRLPOOL 
4bbecddb5f6514edce41334c43bcd543acb6fd382561396fd80931a7ca981579eac3069fbd6674128be15b81cb06dc826e9459bcc641b8397bdb026d81ccbae0
-MISC metadata.xml 584 SHA256 
b4a1c62be473810a9e60ab6c043c14ea56dd7ffbdfc47639a30e84b4c31119e9 SHA512 
0e8731a9aafb77b313583babfb2786c4fcbe655f3fcebe93fee90b2ea4c7f03a6ed559a253cb63f5f3a5eb9fd841babcbb5c85c4c93e51a670abe605e9d22a9c
 WHIRLPOOL 
841629b52e45cd949bde7aae4ce9a62d274f69a124ba90cc33d75191a0b7cf11f7b0fa6c8af996af476e4164562cdc6d92d33ea93c9d1405da64844dace77ec1
+MISC metadata.xml 524 SHA256 
26086a846b5963db028e70e48b2ac896dfe360089b6743798527b3c37ec18cec SHA512 
c9fbbb399200dd7779394d2586e3e780b156220ddf8183ad5b7cec2dc3798180e4faf63e126d3e92503c2f755c76bf32396f6551441a88e9b96ef2f9ed742806
 WHIRLPOOL 
0fd684c36bab8883e51fa5b1f30e3998f7f6aca37dad308104a3c34d92d7337fd223e7980299ed24771cdee6e3a81eb90df156c4ca74a390b40ac84843d5d3b6



[gentoo-commits] proj/musl:master commit in: dev-libs/libnl/, dev-libs/libnl/files/

2017-03-08 Thread Aric Belsito
commit: 48d2a28710ae40877fd3e178ead1fb1bb0baa62c
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Mar  9 04:15:13 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Mar  9 04:15:13 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=48d2a287

dev-libs/libnl: add 3.3.0_rc1

Use a modified version of the linux-headers-4.4 patch on their
internally-shipped linux-headers, because otherwise we get fun symbol
redefinition errors depending on what musl/linux-headers version we're using.

Close #32

 dev-libs/libnl/Manifest |   4 +
 dev-libs/libnl/files/libnl-3.3.0_rc1-musl.patch | 103 ++
 dev-libs/libnl/libnl-3.3.0_rc1.ebuild   | 108 
 dev-libs/libnl/metadata.xml |  15 
 4 files changed, 230 insertions(+)

diff --git a/dev-libs/libnl/Manifest b/dev-libs/libnl/Manifest
new file mode 100644
index 000..895e9b6
--- /dev/null
+++ b/dev-libs/libnl/Manifest
@@ -0,0 +1,4 @@
+AUX libnl-3.3.0_rc1-musl.patch 3539 SHA256 
8e0a4d1da3ddc8cfbe81b5d9440458b6bbebce101aeaaff4085c2ba857d208de SHA512 
a31ec4b76d2fc472072f2d770cb3f5819a6477230a97603a476ce175c0c94d25e74eff8dc0ce2e6baa96f0e450b82db508a152f418bdd72919cbd5521d5f82fd
 WHIRLPOOL 
6678b618dea03c1dc51c506e3f81ec770c5ab1ee1fd3931e7b52fa2e217a6cdccdf465f4ee979ecba2c4dee55e132057e55e065eaabd1c576b219d8bc0ef8305
+DIST libnl-3.3.0-rc1.tar.gz 933271 SHA256 
426f69373191760174cb40cb1f9a811248a56f8962fe66cf22156a71685fd110 SHA512 
8084a54efac0256f6badd438fb79512cc53ee5f6635c4f301d1f7b3cfdf326387176949ac368903109dda02f55589ed09cb8f3218ebac973457c6f2740951488
 WHIRLPOOL 
b8db1d4f589d32f0da830dc934765c67087665ac58366265fc2f5d649178c161cfc41e2faf139859c9547c5b20f28bfff5875db9c51cbfe93df3ecc01c3d7f3e
+EBUILD libnl-3.3.0_rc1.ebuild 2519 SHA256 
be1f7386c1add9df900a97726b94a27d2b646fdca9fb3f3615a9e1055304d92f SHA512 
7a53ceea365a4e4fc4ee5c079be1fe7afda32b091a6f4f6949ff5c5be6a84902a5e8d07a37b2b761591698c002cb851a0f5b0fe76b2f9e0b36c09294ef93dbb5
 WHIRLPOOL 
4bbecddb5f6514edce41334c43bcd543acb6fd382561396fd80931a7ca981579eac3069fbd6674128be15b81cb06dc826e9459bcc641b8397bdb026d81ccbae0
+MISC metadata.xml 584 SHA256 
b4a1c62be473810a9e60ab6c043c14ea56dd7ffbdfc47639a30e84b4c31119e9 SHA512 
0e8731a9aafb77b313583babfb2786c4fcbe655f3fcebe93fee90b2ea4c7f03a6ed559a253cb63f5f3a5eb9fd841babcbb5c85c4c93e51a670abe605e9d22a9c
 WHIRLPOOL 
841629b52e45cd949bde7aae4ce9a62d274f69a124ba90cc33d75191a0b7cf11f7b0fa6c8af996af476e4164562cdc6d92d33ea93c9d1405da64844dace77ec1

diff --git a/dev-libs/libnl/files/libnl-3.3.0_rc1-musl.patch 
b/dev-libs/libnl/files/libnl-3.3.0_rc1-musl.patch
new file mode 100644
index 000..e62653a
--- /dev/null
+++ b/dev-libs/libnl/files/libnl-3.3.0_rc1-musl.patch
@@ -0,0 +1,103 @@
+diff -Naur libnl-3.3.0_rc1.orig/include/linux-private/linux/if_ether.h 
libnl-3.3.0_rc1/include/linux-private/linux/if_ether.h
+--- libnl-3.3.0_rc1.orig/include/linux-private/linux/if_ether.h
2017-03-08 19:56:31.824516933 -0800
 libnl-3.3.0_rc1/include/linux-private/linux/if_ether.h 2017-03-08 
20:07:01.938237767 -0800
+@@ -22,6 +22,7 @@
+ #define _LINUX_IF_ETHER_H
+ 
+ #include 
++#include 
+ 
+ /*
+  *IEEE 802.3 Ethernet magic constants.  The frame sizes omit the preamble
+@@ -117,10 +118,12 @@
+  *This is an Ethernet frame header.
+  */
+ 
++#if __UAPI_DEF_ETHHDR
+ struct ethhdr {
+   unsigned char   h_dest[ETH_ALEN];   /* destination eth addr */
+   unsigned char   h_source[ETH_ALEN]; /* source ether addr*/
+   __be16  h_proto;/* packet type ID field */
+ } __attribute__((packed));
++#endif
+ 
+ #endif/* _LINUX_IF_ETHER_H */
+diff -Naur libnl-3.3.0_rc1.orig/include/linux-private/linux/libc-compat.h 
libnl-3.3.0_rc1/include/linux-private/linux/libc-compat.h
+--- libnl-3.3.0_rc1.orig/include/linux-private/linux/libc-compat.h 
2017-03-08 19:56:31.823516923 -0800
 libnl-3.3.0_rc1/include/linux-private/linux/libc-compat.h  2017-03-08 
20:12:30.376843489 -0800
+@@ -48,10 +48,18 @@
+ #ifndef _LIBC_COMPAT_H
+ #define _LIBC_COMPAT_H
+ 
+-/* We have included glibc headers... */
+-#if defined(__GLIBC__)
++/* We're used from userspace... */
++#if !defined(__KERNEL__)
+ 
+-/* Coordinate with glibc netinet/in.h header. */
++/* Coordinate with libc netinet/if_ether.h */
++#ifdef _NETINET_IF_ETHER_H /* musl */
++#define __UAPI_DEF_ETHHDR 0
++#else
++/* glibc uses __NETINET_IF_ETHER_H, and uses the uapi header. */
++#define __UAPI_DEF_ETHHDR 1
++#endif
++
++/* Coordinate with libc netinet/in.h header. */
+ #if defined(_NETINET_IN_H)
+ 
+ /* GLIBC headers included first so don't define anything
+@@ -64,15 +72,7 @@
+ #define __UAPI_DEF_IN_CLASS   0
+ 
+ #define __UAPI_DEF_IN6_ADDR   0
+-/* The exception is the in6_addr macros which must be defined
+- * if the glibc code didn't define them. This guard matches
+- * the guard in glibc/inet/netinet/in.h which defines the
+- * 

[gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/

2017-03-08 Thread Ian Stakenvicius
commit: 4fb9b596f42e1eff4b04bc1e1d35d228f6289e48
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 01:03:02 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 01:03:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fb9b596

x11-plugins/enigmail: reintroducing the standalone package.

Enigmail is now installed to a central location to allow thunderbird, seamonkey
and any future package that may be able to use it, to symlink it into their
extensions subdirectory.

Package-Manager: portage-2.3.3

 x11-plugins/enigmail/Manifest|  1 +
 x11-plugins/enigmail/enigmail-1.9.6.1.ebuild | 57 
 x11-plugins/enigmail/metadata.xml|  8 
 3 files changed, 66 insertions(+)

diff --git a/x11-plugins/enigmail/Manifest b/x11-plugins/enigmail/Manifest
new file mode 100644
index 000..b59cef1fdff
--- /dev/null
+++ b/x11-plugins/enigmail/Manifest
@@ -0,0 +1 @@
+DIST enigmail-1.9.6.1.tar.gz 1745021 SHA256 
3874331e981aed864443d3c965d856e003fd84f73e5a89fd5004ced9dc29b96f SHA512 
e6ab69734a39a4953e0167e07b06f0d5c83fb42956515392319a1cd9d665ca274f6a12b4141e2dfa373ef074f0526f3d7330a48d29d600fc38f724d26518ff84
 WHIRLPOOL 
e89b0e5857564cc2f7ebf3ab46b110c6bbb1b16e7c0e045750119fd02e693b9bd9667c2932e7a65f9c8fb2c7c835ed048f6df2613d12b25d961894f47f67cf48

diff --git a/x11-plugins/enigmail/enigmail-1.9.6.1.ebuild 
b/x11-plugins/enigmail/enigmail-1.9.6.1.ebuild
new file mode 100644
index 000..a1e99ccd097
--- /dev/null
+++ b/x11-plugins/enigmail/enigmail-1.9.6.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-any-r1
+
+DESCRIPTION="Mozilla extension to provide GPG support in mail clients"
+HOMEPAGE="http://www.enigmail.net/;
+
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
+SLOT="0"
+LICENSE="MPL-2.0 GPL-3"
+IUSE=""
+SRC_URI="http://www.enigmail.net/download/source/${P}.tar.gz;
+
+RDEPEND="|| (
+   ( >=app-crypt/gnupg-2.0
+   || (
+   app-crypt/pinentry[gtk(-)]
+   app-crypt/pinentry[qt4(-)]
+   app-crypt/pinentry[qt5(-)]
+   )
+   )
+   =app-crypt/gnupg-1.4*
+   )"
+DEPEND="${RDEPEND}
+   ${PYTHON_DEPS}
+   app-arch/zip
+   dev-lang/perl
+   "
+
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+   emake ipc public ui package lang
+   emake xpi
+
+}
+
+src_install() {
+   insinto /usr/share/${PN}
+   doins -r 
build/dist/{chrome,components,defaults,modules,wrappers,chrome.manifest,install.rdf}
+}
+
+pkg_postinst() {
+   local peimpl=$(eselect --brief --colour=no pinentry show)
+   case "${peimpl}" in
+   *gtk*|*qt*) ;;
+   *)  ewarn "The pinentry front-end currently selected is not one 
supported by thunderbird."
+   ewarn "You may be prompted for your password in an inaccessible 
shell!!"
+   ewarn "Please use 'eselect pinentry' to select either the gtk 
or qt front-end"
+   ;;
+   esac
+}

diff --git a/x11-plugins/enigmail/metadata.xml 
b/x11-plugins/enigmail/metadata.xml
new file mode 100644
index 000..d9b367ed3b9
--- /dev/null
+++ b/x11-plugins/enigmail/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   mozi...@gentoo.org
+   Gentoo Mozilla Team
+
+



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2017-03-08 Thread Ian Stakenvicius
commit: 9393fda89f0aee54d13348a4dbf384a4cddb76fe
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 01:11:35 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 01:11:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9393fda8

mail-client/thunderbird: bump to 45.8.0 for security bug 611954

This is the final 45 series release.

Stabilized for amd64 by maintainer

Uses external x11-plugins/enigmail package.

Package-Manager: portage-2.3.3

 mail-client/thunderbird/Manifest  |  59 
 mail-client/thunderbird/thunderbird-45.8.0.ebuild | 350 ++
 2 files changed, 409 insertions(+)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 2e7ca22ce36..0f8886fd783 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,7 +1,9 @@
 DIST enigmail-1.9.1.tar.gz 1736876 SHA256 
0393119725fa5931d9888a2a1c9796d440ee7975ca3d005eb63142768b10f993 SHA512 
5417d7744ff5b8299d9799059f62013e546fb74206782169e5ce6baa0950d96d1c8996c99ec902ca73b241fd1268966e0a7ad30c032a1706a0efbf06fefc311c
 WHIRLPOOL 
80cff68461edc743851de5a83cd04105f6689eb1289f46b72334a96b091dc430399a91b2ab004a39bd7cb04433ab0471dd07b44d39fc2eb3869487b07841fc5a
 DIST firefox-45.0-patches-11.tar.xz 22864 SHA256 
4d599cd6c0c0635b23a918e5219c6e37fe0322a4f94484dd8369a599ea3e6532 SHA512 
61fc961b5aa015e42907de273fdbd87fd600d1733966fd6d65dccc4de554ee12c82bd314b2e38865d38ccd2fb453c161074253cfb2f49795e2d46a8f206952d8
 WHIRLPOOL 
f5beb44eecb9002eb7f28c172f7a8e3559e85553ecd4fe79733f6b099119faef8552d744db961dbcd5bcc46e83b9070edea9d7de2ece1e717fd7c00489f2f30c
+DIST firefox-45.0-patches-12.tar.xz 22040 SHA256 
563d7bbe67aa4379ab0a9b460aa397aa2a8e9d1cadcf776490beb7349230c6c1 SHA512 
be9981818e549d79f8557427dd506b9c473922c0043384563c1fd92e4c6c96c91afb8bb01d4499a3a61b463ecf2875bc776fef0f279c0f2fc3625602cb47880b
 WHIRLPOOL 
4f100eadb5aae49731344d526ba482c97dfecebfd20de533e4986e3a0463ebe31853bf1f9faf914a6fcfab82936a52cbda2add84c019fd6ab15ea086115e5bef
 DIST gdata-provider-2.6-r1.tar.xz 83836 SHA256 
e181d5fe69e66f34719295790301e0d265c855be5f30df516c52dd3708d82158 SHA512 
e5fcf60c221590d1d904ce8c6a74da7208b118c2872a26267f4ee6d3e68eea466d44b979b7259a012a21e48eb5b470d52cc9e58584226fe04ce88ff698da495b
 WHIRLPOOL 
0e85fbb321edec0397b42808fd6320e245de35ddd1cf772545c432dbf26d8c28b042ba2c61bbde2abdbf4d5cca076436e6d678d6d636d3bcc562470d485df6c1
 DIST lightning-4.7.7.tar.xz 1933692 SHA256 
1dd931007ae8ff09601090f7123c793162ff016e0ff494c99d8145e0cce80e0d SHA512 
c2c5d4c48a16f8f4286b4a52ba9487e1ae4e9c500708eefdcadb49416e6e687e1f1aa58149839d3e739cb57654c211239f4206a6231c3146e6775ebdf7dd6969
 WHIRLPOOL 
848ad9a5b2c250f42eca45ca3c019595bbc4ddef953d98f7fab857b0b77170c283dac737943b4dc7ed6e2845bf3f6f19f4ba8c0462b3707e6819f85be71c8798
+DIST lightning-4.7.8.tar.xz 1951252 SHA256 
b31acd34aa38eff8b8043922794f9ef6e2dc67740e7689462991bf9517f15756 SHA512 
37decaf4010e48cf242e76c5d73caf96f7b1e34c67fd465fb8b33055a6986d5fa7b1557862526224ab4ac421df3441e974d297ec4a9454dd63a039683ec46fe6
 WHIRLPOOL 
7494f30e08e74097179de6f44502b91efb2b65cd9bad4f3961678496c1fa376e0f5a77dbff670d66225e49a7ad11f24d8097498678fb128409e9295fc9323292
 DIST thunderbird-38.0-patches-0.1.tar.xz 684 SHA256 
cd2a347b72a104e72d38e56bb92df3464e8820485119b4114dbd0bbda131a808 SHA512 
52c83af301be959e861dfec55b3c4bc60035387c606976bd29232c4cba077230edcadef242491e699fba10027d0408dd4f33fa320bcf96727afe149166ca02de
 WHIRLPOOL 
a378a0fa1b152f17681a5e389662fedfacd45a137b224f038d3c98ab4a024bcf9e753fb2fe018cdb7126fb710ee8baabdf7882540450ead2985070d0d1f12eb0
 DIST thunderbird-45.7.0-ar.xpi 490775 SHA256 
b9263717ac4686ef68f7c3cdfe652d173c8329077930c0a670b56e9368e89bff SHA512 
5a96206f4f0ad0f85aa9141390c9799256c3a93d6548a649fa5a8eacc7a5423fe7dcb54cb2a5834be1c2b4087c6601b791332fa1d8bf41166bb3f601cb3d66f2
 WHIRLPOOL 
4df8584d46777331863ae686252126019def510fd762f88b58b5c01c09eaa41e25c37a7da1e1aff635f3a55c6e9eaec84f2bbebbe8fb621965a9e4b10ce003cd
 DIST thunderbird-45.7.0-ast.xpi 428059 SHA256 
4a395aed8422aa08d5e40c4952caff7177d86620155fcdba1e106e5f1f3f4523 SHA512 
54b5d3140fa407e35ca324f7c3b6802543f0f87c52782a7a66d375cd11bf7fd755de79df6098ccb457ec9309247b6f9ae0a5f58f41f6047ac8c4c8c711627a57
 WHIRLPOOL 
74bd1495e0094715b78ca13c7ead03d278098bf67f72f87c8914615a926ace12202ff73de43a246ec73353d6624927f02d97ca4449bea2cae5b8e978579f0f51
@@ -60,3 +62,60 @@ DIST thunderbird-45.7.0-vi.xpi 540499 SHA256 
defc6f3d6f77ba8b46e41c3d9c49d42e738
 DIST thunderbird-45.7.0-zh-CN.xpi 489210 SHA256 
735f0ad45ac48af7db435be430704b0d108dd7576c488c50e1ef015e2dd39fe2 SHA512 
6c7bca994437d9fc3e3186ac1fbd4e7eb7d8a0e9257d54a0dd812ae0cc49e200066f5b4fdecff189e4fc3e1948290a1ace5b6d53df4385094a73c31aa6574e57
 WHIRLPOOL 
7efca0effb84dbec578980c541dd9594d34f416c7b20c6f97796abd6b563cd686b85966d5cafb8a5342a738a65912f0e6335b12edb6306373c84c20b7f8482f0
 DIST thunderbird-45.7.0-zh-TW.xpi 490850 SHA256 

[gentoo-commits] repo/gentoo:master commit in: x11-plugins/enigmail/

2017-03-08 Thread Ian Stakenvicius
commit: e325c0220acf23f91edc44d188fb93a27bb2586b
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 01:08:23 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 01:08:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e325c022

x11-plugins/enigmail: stabilize for amd64

Security stabilization of thunderbird-45.8.0 requires this.

Package-Manager: portage-2.3.3

 x11-plugins/enigmail/enigmail-1.9.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/enigmail/enigmail-1.9.6.1.ebuild 
b/x11-plugins/enigmail/enigmail-1.9.6.1.ebuild
index a1e99ccd097..41b7d0c6c0a 100644
--- a/x11-plugins/enigmail/enigmail-1.9.6.1.ebuild
+++ b/x11-plugins/enigmail/enigmail-1.9.6.1.ebuild
@@ -10,7 +10,7 @@ inherit python-any-r1
 DESCRIPTION="Mozilla extension to provide GPG support in mail clients"
 HOMEPAGE="http://www.enigmail.net/;
 
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="MPL-2.0 GPL-3"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/

2017-03-08 Thread Ian Stakenvicius
commit: dd6e3f6d881744be79bfde668117fc7189e63029
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 01:16:25 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 01:16:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6e3f6d

www-client/firefox-45: bump to 45.8.0 for security bug 611976

This is the final release in the 45 series.

Bumped directly to stable for amd64

Package-Manager: portage-2.3.3

 www-client/firefox/Manifest  |  87 
 www-client/firefox/firefox-45.8.0.ebuild | 370 +++
 2 files changed, 457 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 45de0d00220..53aec49028d 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -1,4 +1,5 @@
 DIST firefox-45.0-patches-11.tar.xz 22864 SHA256 
4d599cd6c0c0635b23a918e5219c6e37fe0322a4f94484dd8369a599ea3e6532 SHA512 
61fc961b5aa015e42907de273fdbd87fd600d1733966fd6d65dccc4de554ee12c82bd314b2e38865d38ccd2fb453c161074253cfb2f49795e2d46a8f206952d8
 WHIRLPOOL 
f5beb44eecb9002eb7f28c172f7a8e3559e85553ecd4fe79733f6b099119faef8552d744db961dbcd5bcc46e83b9070edea9d7de2ece1e717fd7c00489f2f30c
+DIST firefox-45.0-patches-12.tar.xz 22040 SHA256 
563d7bbe67aa4379ab0a9b460aa397aa2a8e9d1cadcf776490beb7349230c6c1 SHA512 
be9981818e549d79f8557427dd506b9c473922c0043384563c1fd92e4c6c96c91afb8bb01d4499a3a61b463ecf2875bc776fef0f279c0f2fc3625602cb47880b
 WHIRLPOOL 
4f100eadb5aae49731344d526ba482c97dfecebfd20de533e4986e3a0463ebe31853bf1f9faf914a6fcfab82936a52cbda2add84c019fd6ab15ea086115e5bef
 DIST firefox-45.7.0esr-ach.xpi 426530 SHA256 
bfd345d02ad1a1658c1f630b9e024c4a1bd00630037e89ebb2e6f0ccebf258e6 SHA512 
89d6ad5455eff2313204c05b9fb53936488a65752248bc41361e7167605962a261850996525e3ab08b1c68182711659974fc40af1cc85fcd76e0ac32c22401dd
 WHIRLPOOL 
1c8924a5fd869c4f03ec0c219d9b5105379caa0ceb72b22ce26ea6cd64cd25ba3fdb450f6d3b722777f1705e060252b19068624aefd46dcaebc8f521282bcca2
 DIST firefox-45.7.0esr-af.xpi 439353 SHA256 
3374b98fa0bab8cfec13b301585ae886fdc93e33c340ad33230d0e2eb42954d0 SHA512 
c9aeebe9bef3de7a066c2d580d04b9f38d6f616a0dbbd93e8a4b2bf169b755d005953a59a767ce7125dcd79808e2000d7b90db35af1bbdf90e00c2e96de8eee1
 WHIRLPOOL 
beee822c53a0067d7abadf1fd886f71c03ef7032251de6ec16eefbaafc8fde519a67b92e16ab615d3f7f493b5d303cc84ee3f65edbf01027c4783cc3110025a1
 DIST firefox-45.7.0esr-an.xpi 449036 SHA256 
072154ea6b1c04c90d88e4a81f13b247e2c608171a51860077d20b3d16a0e50b SHA512 
042b53b482d2fba8b58b90b9aa29633c09035eb0e149497011d84375258e034ff2414898922e549ec5c1c8c28777e6b3e9508940554e7c145620f1cd45c7d796
 WHIRLPOOL 
610aa3993323c32d9145928cad7b6316abf4e2bc507310e01ec4115fbe5261b7886a952fbb5a167c79343654cfa4e2c76cf30ade69a6e7c8e80c51d611a02500
@@ -85,6 +86,92 @@ DIST firefox-45.7.0esr-xh.xpi 432918 SHA256 
58b25333677594d8666f7fd9b459623059b0
 DIST firefox-45.7.0esr-zh-CN.xpi 475797 SHA256 
0e8eb9173e890e5ec2726c60706548f8b554ec532a75022a743fb23fbcb78fd8 SHA512 
9e56ded9cef5f95da310993d8f90764aec39b762fe426087a4ed654da27ef4b9665c1a028b56748bd3f7465ccbea96d59f0342b3d5645806914558a150806c04
 WHIRLPOOL 
2bb3b867e456c2f0bfd78fe1cc0c6d181208bf608e645db9f46676b2a5496a3bf6e81bc679cfe3473bcbded7da3140f86554b426d855b09697245c5e32e569d6
 DIST firefox-45.7.0esr-zh-TW.xpi 466529 SHA256 
8c2ce7bf8a2c95eb065ae9491e3b557d1775be578f7c523080eb204de68c3b49 SHA512 
3f5370fcec1c8605a1a3d724bec8aa5fedd7e6bead2eee88209d8077a8dd8cd6096b3003d7de534f82e8e62a82c96729b4a4f95cecf71676e070b1eaf260c011
 WHIRLPOOL 
51616ece696f77d5774adee33b1c25b7b9dd06f972fc13804772f03d71caa1742c183adbf43add2f608ddce3439fb0a2c6dc7fd628a0f3c3bc5c43f85461dde9
 DIST firefox-45.7.0esr.source.tar.xz 184131284 SHA256 
4b5610691d32b77dd0dec25902f0d19e530c184cedc11babb530621cbdd33143 SHA512 
6424101b6958191ce654d0619950dfbf98d4aa6bdd979306a2df8d6d30d3fecf1ab44638061a2b4fb1af85fe972f5ff49400e8eeda30cdcb9087c4b110b97a7d
 WHIRLPOOL 
ec9ad46ec711135fa1846e60d9d3a430b446584e8156e26f88902452d8674b4a9acdee1f3672820408afe1e689bf55edc5f6bb3cde0014faa609ab70e954a022
+DIST firefox-45.8.0esr-ach.xpi 426530 SHA256 
e8337d1951aa8484bfade7a3157529a78a0d6882c4d332e880e1ac1063e028f1 SHA512 
d28c5bed4cc0fe07825859e6b0894c45de183be642a0a1152faea336e323428ebba201add73ff4e4e44f4a9255ef4e579372f7aac1d70a10bad99d082179e663
 WHIRLPOOL 
43a3d9d9e3cee0f371218e87eab80fa87bf60c2df7c6f556aca3f616cadba8e149eea2f7bf7aeba9a6ded69d9f3470e18b38c57d9ffcdf81a52757f6fc2d
+DIST firefox-45.8.0esr-af.xpi 439353 SHA256 
b0d0ff680ae288fca3f319fa54a2607f980845c0384e153523b764fcf4d475b4 SHA512 
262f715bd7e89a33a95755b79d84d446bdc1c614948129eeb82bc0c4314679e91309adf0e1c5a4a1b5eab19aafb15e738332113ff74b51a32f6a014b2c4980cd
 WHIRLPOOL 
8713b616c58feb07ffb7a38c45342bab1f02957dcc1da57fc6a6213804171a332686fd2f0b07619d39318f101db5ffafe0768c2d92adf3c881a3721fafad657e
+DIST firefox-45.8.0esr-an.xpi 449036 SHA256 
8897ebf779339512753770d00cafad01e514e8eec6f89e1887cde3c5c5256209 SHA512 

[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/

2017-03-08 Thread Ian Stakenvicius
commit: c58d914565f5e2a9bfe327728edaf4d8e016cded
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 00:40:03 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 00:52:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c58d9145

www-client/firefox-bin: bump to 45.8.0 for security bug 611976

Bumped directly to stable on amd64 and x86 by maintaner
Also removed old.

Package-Manager: portage-2.3.3

 www-client/firefox-bin/Manifest| 174 ++---
 ...bin-45.7.0.ebuild => firefox-bin-45.8.0.ebuild} |   0
 2 files changed, 87 insertions(+), 87 deletions(-)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index b1788c95d57..1b54f000cb9 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -1,88 +1,88 @@
-DIST firefox-45.7.0esr-ach.xpi 426530 SHA256 
bfd345d02ad1a1658c1f630b9e024c4a1bd00630037e89ebb2e6f0ccebf258e6 SHA512 
89d6ad5455eff2313204c05b9fb53936488a65752248bc41361e7167605962a261850996525e3ab08b1c68182711659974fc40af1cc85fcd76e0ac32c22401dd
 WHIRLPOOL 
1c8924a5fd869c4f03ec0c219d9b5105379caa0ceb72b22ce26ea6cd64cd25ba3fdb450f6d3b722777f1705e060252b19068624aefd46dcaebc8f521282bcca2
-DIST firefox-45.7.0esr-af.xpi 439353 SHA256 
3374b98fa0bab8cfec13b301585ae886fdc93e33c340ad33230d0e2eb42954d0 SHA512 
c9aeebe9bef3de7a066c2d580d04b9f38d6f616a0dbbd93e8a4b2bf169b755d005953a59a767ce7125dcd79808e2000d7b90db35af1bbdf90e00c2e96de8eee1
 WHIRLPOOL 
beee822c53a0067d7abadf1fd886f71c03ef7032251de6ec16eefbaafc8fde519a67b92e16ab615d3f7f493b5d303cc84ee3f65edbf01027c4783cc3110025a1
-DIST firefox-45.7.0esr-an.xpi 449036 SHA256 
072154ea6b1c04c90d88e4a81f13b247e2c608171a51860077d20b3d16a0e50b SHA512 
042b53b482d2fba8b58b90b9aa29633c09035eb0e149497011d84375258e034ff2414898922e549ec5c1c8c28777e6b3e9508940554e7c145620f1cd45c7d796
 WHIRLPOOL 
610aa3993323c32d9145928cad7b6316abf4e2bc507310e01ec4115fbe5261b7886a952fbb5a167c79343654cfa4e2c76cf30ade69a6e7c8e80c51d611a02500
-DIST firefox-45.7.0esr-ar.xpi 474960 SHA256 
2c3319d3d30d5a7b0aad445b7f8c512a74c2239b4e12e46704ad7bde76b5e18b SHA512 
ec28adc02693339440a96a922e975616991f053487e3815c9b3b76182beab783fb95ed72a700d3f0fea7f12474dbb53f245a884579d44fb5314742e24cc4c1da
 WHIRLPOOL 
ee3bb5cb6ea283832796e8bde2c56d04e65ebba9edd0a3f9a018fbb3c9db76cc6ac46a8afa1c9bb64701d81d166976518be8c2ddb33ff8f33bc9573826d7b53d
-DIST firefox-45.7.0esr-as.xpi 483096 SHA256 
418c549444f69923eb4ffd873443b96aabc9882526c778c87cbaa4155c279376 SHA512 
2368e38050e309388c0885c89898ee73c7c965e360d25c335735e310e615eae91cf4004a2393b1440b20fdfc2c972080074beb21a9dc2b5736993cf1973d3120
 WHIRLPOOL 
bc25a8191e5c3bb87d7c1c349aedf08f5e10d7ef92b21d766d357ab00e8fb64601b7565a8a042666397f2666cda10f7265e933caae978c1c0d285dec65d662a7
-DIST firefox-45.7.0esr-ast.xpi 419250 SHA256 
ee8fa58ab61a410be1cf52aa24bce42216f99864c2e444817bdbeba7e3f7cabb SHA512 
d9022611fdd036c57cc58aa983cd76698889b7bd7815371cd8515c15f3ad8701a62a0bc14ff225cab558dcd5cdfefe0715caf2c0f798f3a1b0a7c2a2009caf32
 WHIRLPOOL 
95ed5d8da8803d29bae01946a3fbc4699fa87e081183ed2d9b6e3ef40b07fc75e45027d6e0fa06f9d6258028e083dfc827da65c08e61215a93f988ec03488f97
-DIST firefox-45.7.0esr-az.xpi 464018 SHA256 
b0ea59eb1da833f769d71f4fd3b42e1bf306c1f48bee14000d9737bd58474a80 SHA512 
75af3b58e4b53a436f24fb8fec460d48e4f82f54a107eae4a7dbe1df052a69489e62de42f90a53bd7c2a6a4758dde7deb39e03f25a4b88464d95513e44659dde
 WHIRLPOOL 
dcb30cd910f8b87f8ba5e299a84a59c1128f674b733458f1cbf50187e60902b4ce129d03d9961312c74703a3178ac68c64741a90df4a53f7a59a3a8c39444f86
-DIST firefox-45.7.0esr-be.xpi 442619 SHA256 
3bdc075612cb3a93b5dc42b6b806e0875dc65b1f8babe7027d73b9e90a6c4696 SHA512 
15ff5c780175d505217eb2dd9f93cbfd78c42f4564cb8641b2379ecd793c06817c7e683f69c5ef07e5e8c7e5fd356f7c3e724b349c14f3a4827122c676ed62bb
 WHIRLPOOL 
73ad46ee284a79d959726d2a9d20fc514c2555a2d36f8915d88e295c71b5c14894702494b612a24ed477647e3ff4c3ddc8518038c653579e208a0727c54128ce
-DIST firefox-45.7.0esr-bg.xpi 460808 SHA256 
3820b9fe21976180d8fb8e7c781969c85006192907e8600e1d33d5479e6d833c SHA512 
f9d55bd187e1d33b10895ecf97fbf1c8831e48b3988494a2774a5bae43524338846960e0a38fa0e383da7c9f7248319d1e90a363afdece0609785c1cf83b93fe
 WHIRLPOOL 
31291028bf6df536729b927ce00602eac1c6b6745fecf45f673fd355aef4cd3d7988fa984a0d58624fc9e2712ff6a8441ff1045c1e82f3701b73eff5cea33842
-DIST firefox-45.7.0esr-bn-BD.xpi 515643 SHA256 
24d8ce85cd78a8e85136037edfc5f896e1f44798eea902c66efdc6641c33fd9b SHA512 
20044608f7a664d4de2ae1e31f29749d1c72c57b673ff97c3afb34aaf1fcb436136065e70c6d4b9ee9c7d2ae1a6070822e6daf0f1981c4ca5a3e8b93921eff22
 WHIRLPOOL 
d0a180be056eb15f94d8bf246643ca51988b6f7c370015503b47125407c2253b371771742c790ee683a1b8cb16ca087c5855a7929e7a1d17e47dcbb637f034f4
-DIST firefox-45.7.0esr-bn-IN.xpi 494076 SHA256 
f77c86f7d876cab202e479b02daec731b1ec1960732258a5c543d8c9484c1296 SHA512 

[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird-bin/

2017-03-08 Thread Ian Stakenvicius
commit: 6a5e107105b9b25e2487df97b9b7c535b0806988
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 00:35:52 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 00:52:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a5e1071

mail-client/thunderbird-bin: bump to 45.8.0 for security bug 611954

Bumped directly to stable on amd64 and x86 by maintaner
Also removed old.

Package-Manager: portage-2.3.3

 mail-client/thunderbird-bin/Manifest   | 174 +++--
 .../thunderbird-bin/thunderbird-bin-45.6.0.ebuild  | 164 ---
 ...45.7.0.ebuild => thunderbird-bin-45.8.0.ebuild} |   0
 3 files changed, 58 insertions(+), 280 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 63bdada337b..f9b17c1b066 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -1,117 +1,59 @@
 DIST lightning-4.7.3.tar.xz 1134460 SHA256 
8834c59a58797af747805f9a67ebcc311607a98bea4d185689d7c35f024bce7b SHA512 
ebca7d74413a15f404ce094e5a4d047d79f250a04c6c1e78a3ab5aa49946e1e1ac81a1f7703bf2e631d841b98df66a21982788ee15af14eefe1d51eca29e1d48
 WHIRLPOOL 
34a28dcf707fe564433a663c2ac3efc79dff409cf22383425f38d4ac06184ac980f35a6ee81ab8e9d7030189538188ffe2d5fa426e0aa1cb8a11ebe6191a5fd1
-DIST thunderbird-45.6.0-ar.xpi 490775 SHA256 
ee653d578b0e221729fb999c25bd4ef335d86c3b7b01d2fc3e18b5ea03a5c88b SHA512 
3a6cd8598b115ae3ebfae2c244569d9e1b5dd2a59c53132c840eab37fedee96fee0886c41c28f0abacde375f789a680c49f0dd9291262c27a406510801fd12ab
 WHIRLPOOL 
320fe8551e9e2138a02a9765a6f5dd8bac950b20df7c558f462be99e7fae5020fbe39c144aa665384a1975480bd7c82140574fbd6346b37ba649be964c516b6a
-DIST thunderbird-45.6.0-ast.xpi 428059 SHA256 
091fd74da82296bea2e271c6a86207e9cf60d29ce62142b236888b78140e SHA512 
3bea21350e5d70e83c2e167e9e54b696c821a57ac74565fc47992eacf7542d603c9e1f52707cfeffc60cc706d213bd20fd34229754cb28eed6467ba817ae4201
 WHIRLPOOL 
206534ef933b94dccb8072616f0c20b66fe626861d17f9c8407112f80f4fcd981e7ac664e0bc37b67ad4b1876df8c44039809405c9baef211a250353d53c27a6
-DIST thunderbird-45.6.0-be.xpi 469096 SHA256 
2e68a3c2f085a6302da84815ebf616b3ea1ad2b3c628c082c38b69c561bdac82 SHA512 
0402b77d77dc40be47fc941df83a866d62de865a174496b3d1c1b9a82bbe778e19b99f2316c5d40537ad8d8a08c23214110984bbe1f78b77785d21982309f3f2
 WHIRLPOOL 
58addfbde0813670ef853e36a90e9773a0a05906ae9ddf34b52e57038194b54e2ed951760afea975160c119c3f8b4ffa98735d08fa1a617a7423f5dac3696e16
-DIST thunderbird-45.6.0-bg.xpi 524300 SHA256 
ab15edef31542aea547b16b7f199ad3d18a6bd4f050b5254e6eeb17030b32ddb SHA512 
f3e289aceceb4cc41aee702261620df7ff3cc9abf11486549647c2e9ec871f6e1af1ad86fd399c0c8fc3405c0bb9b1e7b88102910d520909bdcfff0024e2d79e
 WHIRLPOOL 
0b2fa9b80fd916eb9b55faf969c74958162bc44f7a14d48f91c3d042c7dec69c00684ea22e227762d3f170adda574a3a3cd3587839817d9a7fd5df297f7aa2cb
-DIST thunderbird-45.6.0-bn-BD.xpi 581440 SHA256 
d3c996fdab0eca72e9a8aaefeb2240f75017685682539c43eb8fd66a84827950 SHA512 
882123a994d0e83b4a4c90720183b51cc40a3e3d0e3d242cb27abef3912923a8dca642f892fba58185dbe1e1a88e1d4000c88812d1c3551224b16261b2dbee18
 WHIRLPOOL 
c2afcb19653f49cd8580d23b17bee22316318a9caa661b687cb383be919aef82339e53910fdef8583c0786cbd648bb2c68f4c3ba26a845495b82d7f66059be76
-DIST thunderbird-45.6.0-br.xpi 466000 SHA256 
bee46d85f31a767dc53858c880086c96558577316a9b3dd6868dbc943d57da05 SHA512 
99f5747d5cab240e0cf13c251e6e2ac9d503662445cc25ec4e14537a838324811d69e7d2aaeb80fa2e1afa8dc6920c4b07264b10276375fa244c4734ae9f1ad6
 WHIRLPOOL 
6e91534357d29439b069819fbc25be2b2ddcb149cbf034af430d9ee173860e4a87ae8232e3cd889a65a3d3e88b656badb9901618906d792df04c290bb7e44b7c
-DIST thunderbird-45.6.0-ca.xpi 467980 SHA256 
0ccec986a9988720024ded63fa858a3169a763ae2148cad37750c9de6f18a2d2 SHA512 
7cf9ee7542dd45f7421c1a12755842bc45e43df23f024cc0b9d20fda9ceb4e41a2979a5f392240adb94f60e1bb25518190dc7c1bd554478bfc8438725ebcd545
 WHIRLPOOL 
e557938ec93e11e86e2226e2cc3e770456eddcd1a0c25970324943471019dc28768bbe1f06cd1cff51390bccb26925a246e0fe6432f68a987790f85825a964f7
-DIST thunderbird-45.6.0-cs.xpi 474327 SHA256 
1e8d36a17624c33fbabdc8c2f6bb5c988ee486c7b11adf0d8061df1b97ae41eb SHA512 
a398890458951e40b7b3290880e832c3a8e7ba4358b687402ff850b3e224e651273e6dd00019eeba2ca9f5f709db596e6a01b583944a59efb467bf42dedebfaf
 WHIRLPOOL 
a23338df470dc4a17b09860bfff44271e7af035b89ea7a3fef9763b42600dbb9844fc1a1beb7eabc401a5e3210430a4a4a76b4171b7110526fdb5482dda5fc7f
-DIST thunderbird-45.6.0-cy.xpi 456120 SHA256 
27c40529dcbe9d4cdbc7039f08b10f56502ca422e404927da001e7d7dec80b42 SHA512 
94836dd232faf38df0bc67ef73536b4eb5b77eb1a8388370eebfa654de32e164e1c4fa1f84b129cd7b950a89e6ccd238923c0187ad7e0b384d939019ae9ecf4b
 WHIRLPOOL 
bcc16f07089f94d79a64480cd54991a46798d9570d415c20edee09b1c0dbbf6de2dabc6181647ae1efc1a4d4fbf2866f53118482a718232926d52494a1b10da2
-DIST thunderbird-45.6.0-da.xpi 445595 SHA256 
bdd2d971fa5580aa94aa96b2857d157ffafa4dc6768587299717260dbf6c290f 

[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/

2017-03-08 Thread Ian Stakenvicius
commit: 55a537fd225b0c1b288bfa3855c0de780b70d25c
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 00:51:47 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 00:52:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a537fd

www-client/firefox-bin: version bump

Addresses security bug 611976

Package-Manager: portage-2.3.3

 www-client/firefox-bin/Manifest| 172 ++---
 ...x-bin-51.0.1.ebuild => firefox-bin-52.0.ebuild} |   2 +-
 2 files changed, 87 insertions(+), 87 deletions(-)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index 1b54f000cb9..8b2de6518db 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -83,91 +83,91 @@ DIST firefox-45.8.0esr-vi.xpi 450778 SHA256 
6112ea4ddeb60109f656f902886c2b59b8cb
 DIST firefox-45.8.0esr-xh.xpi 432918 SHA256 
d77e888447b44be1716f36f36f599823ea619e6b58673d21123b171402b05203 SHA512 
67689b6515935ea58e8a38b700ab1eb73ddf2dc597ccf08d41267483342343101f757fb2be97eebaf561600d5bd5bd4166ad63d6081eccd07c8d0a1b06014de8
 WHIRLPOOL 
d9e1dbae5da26b90654d136425256af688f4d910291b6cea70d934478be4bff59189ce9fb88f6860969d5c3a14d50578797a9947b0931f0a9c8dfb7731b1746b
 DIST firefox-45.8.0esr-zh-CN.xpi 475797 SHA256 
295990f964e9926f20b6a5f06e06686a88a9199a7e4a48e9fa2132e6338cff0c SHA512 
5060fae862325558a1965c17d40fc5dd106da92b07fe1d9e89858597d3251737667166d4df073ca701f633b5ec5f4a3f8321abb59c85a5829f2bcb58b75f08df
 WHIRLPOOL 
00056c6e442134a0895da420ee18c07806d2c41658d396dea6e4917238cf2b7a1dc8cf51790dea46fa826b0b64c0cbe9a6fa0fca9600ae9160a6595dcafd9abf
 DIST firefox-45.8.0esr-zh-TW.xpi 466529 SHA256 
004c22566602ef5c3905f0d8818018fc77d9f8022c97e15bb9f2841c9711fde3 SHA512 
5cca12667ee2c283ed13912369c3cc20983c891be4e31a912c3167da7eaa9b6eee84d7ae2c67ae09c336d6e03360181d366575f89690d4c9761c5d80a9c7edc3
 WHIRLPOOL 
600d0e128284513b2e24bb951ce30769d27423290ac68b5e7309c46ac0c9fdb17bfc46317236e220145d950cb13c45ff02b808412496816750ef48a4e7dff889
-DIST firefox-51.0.1-ach.xpi 422479 SHA256 
2d0f554d524dfbd552f513a59eca728f87f2dc63871ea05d45e50dc62f98d0f4 SHA512 
7848bfc1fdc6f12a7903d1b765cfbcd481484b293b36ca2adbcdce7c4601c107d251bd0a53e3711859e79e1822013064c0e5f8337ea75913717aa69558544230
 WHIRLPOOL 
5906e4669d6f5b09a7c18bc58bd738f4a0257b8f7f78c3a2d68fa816d8aec9973d3b466fab6ca3a27a8583781cd5284947439acb3008043f6c271965323a627e
-DIST firefox-51.0.1-af.xpi 430609 SHA256 
1bea00a4beb2c08eeff01386f119954d166cfe108e6b9053ff84923071cc70c1 SHA512 
a001486febb92e956eaf3212cf3d5dfc475a4fba21d48e3c4cdd50d4884af4749d1157432ef65cf8aaa4e7a665cfc8f926bfca742289649abac3d8ea8105fed3
 WHIRLPOOL 
ed7e96b3bbd5aeae401eefb00829e123dd41291ffd3daa297fd8c162ff52708e15231d3efb6787e4f6b530baa7ab4dc8602bd75db04c6bccdd085a24d6c3cddf
-DIST firefox-51.0.1-an.xpi 439499 SHA256 
4f05a2800d1eb7c65d7f4fc731c90a798e55a414e425938ed9f2a4aab2574bb8 SHA512 
d4a185b81299d1e209baccc4cb20f5174b474620bb010b84baac02b8097dcb08f016f725be994be0ba96a5cc7ef12fcb5f76d19d928901f8abb1f3343418439b
 WHIRLPOOL 
21ff7112d4cd6acfc36dce66b7dd3ab0396a05082f30688d9630f2d841656486e38b0338e79fefa6dd9d7e4efb083060479b572a091430416d4b64dca95f00e6
-DIST firefox-51.0.1-ar.xpi 467366 SHA256 
ba9f424d03b292b7428c37104c9f367d1cfeb4c1cb70f01a3a3468ab8261a5a5 SHA512 
421c4f3fac5923bbf733573ca6a40ec58fc096615c3d91683000db6e303b0d3fd926cb4bc04f1e47dc270032098f26ced066bf7800e320de065d3eac39dd8781
 WHIRLPOOL 
481c82aa6f72ffd99ce08b85668922600b1717363d4b1cf2a1eeb054ee6c2abf8df57b88ee09c2001ee62e7ff09b24190dfa96652cadcd0e6c7fcbcb6460
-DIST firefox-51.0.1-as.xpi 481206 SHA256 
525a14db543a0f80840e399d579ffbd8703f0b7ef75d4e3fc6c2ad7ce783d1f9 SHA512 
030b3b1ef6300c775578c0681569675f60698017a3487b141e2cc39550efaab9a8bced7156cf09b51a49bfd5dc282aecf44b64f8f90ecad39bd4b9f9674cf829
 WHIRLPOOL 
c2f3f3a7fbfdc2b3ba032d28352ee84b85dcf8a9f7fd69667329bdb2aa3123577d8abdd67cd4eaffbffc1cc6d532e5bb07d57c77b57c71b16c22cd57099ced3b
-DIST firefox-51.0.1-ast.xpi 433415 SHA256 
4465abc44e515d39ead8cc7e072b225d5bec080e370129d5861eece6b348b2a9 SHA512 
5618d09ffa335c81702ebfdb7d307a33b99f6d7f20c75691f2cea79576c6997c882ec43f6e71ae8542074da4d71ebe0624642f07f1769e05bebd826a6f332846
 WHIRLPOOL 
6ce386e845c0031813d906052988b09ac0950efdd05216c23d610beb93ed44627307ed0fbdbe0055ab3a0a9425e45e95844f7c0b1c3ec438104ff7a1a25ac4ae
-DIST firefox-51.0.1-az.xpi 448403 SHA256 
86beaf681270b0465b3a06d381866ed951f80d5d78f98217cb7e859f8dbb2705 SHA512 
5ac43af8b37cba60a975324ae9abcb7d226aac9f0cbe906f9296281e3faba951bcd9b4d226565e8ce6144c36a698f40d147de3277e74966804f8d38e3a13efec
 WHIRLPOOL 
8c9cbcd7fc70d0b80eedf0b8b699b2634c979d5adacd39d31359f1054e814f690bc2c9b0fd09ccb56c5e18c447fc4cc8c6739d2cfb1db30a559c75aa43f9463b
-DIST firefox-51.0.1-bg.xpi 481421 SHA256 
c4824b49257cff76ed34b0cb1a0f6747dc24b500f40d464b8696a5cc18f6ff0d SHA512 

[gentoo-commits] proj/mozilla:master commit in: www-client/firefox/

2017-03-08 Thread Ian Stakenvicius
commit: 24ad0d05406207ff62a848672ab1c997c7855026
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Mar  9 00:31:51 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Thu Mar  9 00:31:51 2017 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=24ad0d05

committed the removal of firefox-45.7.0

 www-client/firefox/firefox-45.7.0.ebuild | 370 ---
 1 file changed, 370 deletions(-)

diff --git a/www-client/firefox/firefox-45.7.0.ebuild 
b/www-client/firefox/firefox-45.7.0.ebuild
deleted file mode 100644
index 17cb6bb..000
--- a/www-client/firefox/firefox-45.7.0.ebuild
+++ /dev/null
@@ -1,370 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-VIRTUALX_REQUIRED="pgo"
-WANT_AUTOCONF="2.1"
-MOZ_ESR=1
-
-# This list can be updated with scripts/get_langs.sh from the mozilla overlay
-MOZ_LANGS=( ach af an ar as ast az be bg bn-BD bn-IN br bs ca cs cy da de
-el en en-GB en-US en-ZA eo es-AR es-CL es-ES es-MX et eu fa fi fr
-fy-NL ga-IE gd gl gu-IN he hi-IN hr hsb hu hy-AM id is it ja kk km kn ko
-lt lv mai mk ml mr ms nb-NO nl nn-NO or pa-IN pl pt-BR pt-PT rm ro ru si
-sk sl son sq sr sv-SE ta te th tr uk uz vi xh zh-CN zh-TW )
-
-# Convert the ebuild version to the upstream mozilla version, used by 
mozlinguas
-MOZ_PV="${PV/_alpha/a}" # Handle alpha for SRC_URI
-MOZ_PV="${MOZ_PV/_beta/b}" # Handle beta for SRC_URI
-MOZ_PV="${MOZ_PV/_rc/rc}" # Handle rc for SRC_URI
-
-if [[ ${MOZ_ESR} == 1 ]]; then
-   # ESR releases have slightly different version numbers
-   MOZ_PV="${MOZ_PV}esr"
-fi
-
-# Patch version
-PATCH="${PN}-45.0-patches-11"
-MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases;
-
-# Kill gtk3 support since gtk+-3.20 breaks it hard prior to 48.0
-#MOZCONFIG_OPTIONAL_GTK3=1
-MOZCONFIG_OPTIONAL_WIFI=1
-MOZCONFIG_OPTIONAL_JIT="enabled"
-
-inherit check-reqs flag-o-matic toolchain-funcs eutils gnome2-utils 
mozconfig-v6.45 pax-utils fdo-mime autotools virtualx mozlinguas-v2
-
-DESCRIPTION="Firefox Web Browser"
-HOMEPAGE="http://www.mozilla.com/firefox;
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
-
-SLOT="0"
-LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
-IUSE="bindist hardened hwaccel pgo selinux +gmp-autoupdate test"
-RESTRICT="!bindist? ( bindist )"
-
-# More URIs appended below...
-SRC_URI="${SRC_URI}
-   https://dev.gentoo.org/~anarchy/mozilla/patchsets/${PATCH}.tar.xz
-   https://dev.gentoo.org/~axs/mozilla/patchsets/${PATCH}.tar.xz
-   https://dev.gentoo.org/~polynomial-c/mozilla/patchsets/${PATCH}.tar.xz;
-
-ASM_DEPEND=">=dev-lang/yasm-1.1"
-
-# Mesa 7.10 needed for WebGL + bugfixes
-RDEPEND="
-   >=dev-libs/nss-3.21.1
-   >=dev-libs/nspr-4.12
-   selinux? ( sec-policy/selinux-mozilla )"
-
-DEPEND="${RDEPEND}
-   pgo? (
-   >=sys-devel/gcc-4.5 )
-   amd64? ( ${ASM_DEPEND}
-   virtual/opengl )
-   x86? ( ${ASM_DEPEND}
-   virtual/opengl )"
-
-# No source releases for alpha|beta
-if [[ ${PV} =~ alpha ]]; then
-   CHANGESET="8a3042764de7"
-   SRC_URI="${SRC_URI}
-   
https://dev.gentoo.org/~nirbheek/mozilla/firefox/firefox-${MOZ_PV}_${CHANGESET}.source.tar.xz;
-   S="${WORKDIR}/mozilla-aurora-${CHANGESET}"
-else
-   S="${WORKDIR}/firefox-${MOZ_PV}"
-   SRC_URI="${SRC_URI}
-   
${MOZ_HTTP_URI}/${MOZ_PV}/source/firefox-${MOZ_PV}.source.tar.xz"
-fi
-
-QA_PRESTRIPPED="usr/lib*/${PN}/firefox"
-
-BUILD_OBJ_DIR="${S}/ff"
-
-pkg_setup() {
-   moz_pkgsetup
-
-   # Avoid PGO profiling problems due to enviroment leakage
-   # These should *always* be cleaned up anyway
-   unset DBUS_SESSION_BUS_ADDRESS \
-   DISPLAY \
-   ORBIT_SOCKETDIR \
-   SESSION_MANAGER \
-   XDG_SESSION_COOKIE \
-   XAUTHORITY
-
-   if ! use bindist; then
-   einfo
-   elog "You are enabling official branding. You may not 
redistribute this build"
-   elog "to any users on your network or the internet. Doing so 
puts yourself into"
-   elog "a legal problem with Mozilla Foundation"
-   elog "You can disable it by emerging ${PN} _with_ the bindist 
USE-flag"
-   fi
-
-   if use pgo; then
-   einfo
-   ewarn "You will do a double build for profile guided 
optimization."
-   ewarn "This will result in your build taking at least twice as 
long as before."
-   fi
-}
-
-pkg_pretend() {
-   # Ensure we have enough disk space to compile
-   if use pgo || use debug || use test ; then
-   CHECKREQS_DISK_BUILD="8G"
-   else
-   CHECKREQS_DISK_BUILD="4G"
-   fi
-   check-reqs_pkg_setup
-}
-
-src_unpack() {
-   unpack ${A}
-
-   # Unpack language packs
-   mozlinguas_src_unpack
-}
-
-src_prepare() 

[gentoo-commits] repo/gentoo:master commit in: profiles/arch/x86/

2017-03-08 Thread Christoph Junghans
commit: 063d26cbb4990d6194bf8e19d4231200c6ea6f40
Author: Christoph Junghans  gentoo  org>
AuthorDate: Thu Mar  9 00:25:34 2017 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Thu Mar  9 00:25:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=063d26cb

profiles: stable mask openmpi fabrics on x86

 profiles/arch/x86/package.use.stable.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/arch/x86/package.use.stable.mask 
b/profiles/arch/x86/package.use.stable.mask
index 591a05452a8..f0b9a1342bb 100644
--- a/profiles/arch/x86/package.use.stable.mask
+++ b/profiles/arch/x86/package.use.stable.mask
@@ -21,6 +21,10 @@
 # Requires not yet stabilised dev-db/oracle-instantclient.
 sci-geosciences/qgis oracle
 
+# Christoph Junghans  (26 Feb 2017)
+# Stable mask some fabrics (bug #525534)
+sys-cluster/openmpi openmpi_fabrics_psm openmpi_fabrics_knem 
openmpi_fabrics_open-mx openmpi_fabrics_ofed openmpi_fabrics_dapl 
openmpi_rm_pbs openmpi_rm_slurm openmpi_ofed_features_rdmacm
+
 # Brian Evans  (17 Jan 2017)
 # Stable mask groonga on mariadb as I don't know how stable
 # the dependencies really are



[gentoo-commits] repo/gentoo:master commit in: sys-apps/opentmpfiles/

2017-03-08 Thread William Hubbs
commit: debdb21e8ecba94baceaa164a5302b0633ad9011
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Mar  8 23:41:30 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Mar  8 23:47:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=debdb21e

sys-apps/opentmpfiles: 0.1.3 version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-apps/opentmpfiles/Manifest  |  1 +
 sys-apps/opentmpfiles/opentmpfiles-0.1.3.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/sys-apps/opentmpfiles/Manifest b/sys-apps/opentmpfiles/Manifest
index b2902bc3701..53c2fd325de 100644
--- a/sys-apps/opentmpfiles/Manifest
+++ b/sys-apps/opentmpfiles/Manifest
@@ -1,3 +1,4 @@
 DIST opentmpfiles-0.1.1.tar.gz 5626 SHA256 
903cdf8eca5ff9577b10fb569cf5f01a132d2c02769ba3536ecf1ba23b05e184 SHA512 
9b8bc74c642c42e4591cc98df096f2d74d14acc5e795f49026b37401c795861ffcdf8d505f6e62980bab1cc4ee2b182668bcd5d4f4cea0984b46662643d6a0d5
 WHIRLPOOL 
a2223a5a101b70442e8ac3fa393c93724589738bfe3d899c9843d1f8cfa42db602212771f58e8387083e7e4929dde4b2dc5439eaaf7e071be3e21b6284b81962
 DIST opentmpfiles-0.1.2.tar.gz 5614 SHA256 
63f05adca95ea63fa555d371e8a5d74fe633088893be3a63bff2cdabb7b6bb3b SHA512 
d86ba71e5fe96d7a8e1999e14b0b99c78e850c42fbfefd203916edca593d0269feaf2252aa01cc35a838906fc2909015430f72cde8370e2d5b1d478a11fe456d
 WHIRLPOOL 
ca349478cb0f0ca565c007b8315e7970c84d628edaf7088e53037679cafb46513cb284ac8c30cb383245368185a6ad6e27cd11c36f7c4c299a774fca856b0e4c
+DIST opentmpfiles-0.1.3.tar.gz 5691 SHA256 
1fdd4587c62d815296fb4162002cf001e3ed7aae8727d9b4360f527169e6b3be SHA512 
fd0b10ebfeb621466edadede50ec6e8f415861ab3b14b833c75bd71f7296e9c091e59144d39e1f9efd342b6d97776cade5a692c941085e33e9651fd885da7121
 WHIRLPOOL 
c91f644a77655267fb8f783c0a11913f442ab9f9c22135d0ccf30dddce544014a083bc1c01e7f20c13630134adf2c51af6c633e7df16e09055c1b48775624e85
 DIST opentmpfiles-0.1.tar.gz 5592 SHA256 
0c7a52d6394dcbe78dd5b4f8fba6fcc66b207389b9a9b85e61a0ab8e9e375bb7 SHA512 
f89e0b996a282ba39f5db7d5cf8e3b72672ba2a9f6013512b7169da9886d9d1d00d4de7c68aefdf2afcf24063283183c37a40864b89d25f68484b022fce58773
 WHIRLPOOL 
307e6094c0e74ceeb15fe84b09e5ea28b47584eb98a7384b9fa18e66ee7d2c2cc6e574fd2142d6373ff0cf8b302f266a2f277f74d6609d213daf0e92198caba4

diff --git a/sys-apps/opentmpfiles/opentmpfiles-0.1.3.ebuild 
b/sys-apps/opentmpfiles/opentmpfiles-0.1.3.ebuild
new file mode 100644
index 000..7688bed5e9d
--- /dev/null
+++ b/sys-apps/opentmpfiles/opentmpfiles-0.1.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+if [[ ${PV} = * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="git://github.com/openrc/${PN}"
+else
+   SRC_URI="https://github.com/openrc/${PN}/archive/${PV}.tar.gz ->
+   ${P}.tar.gz"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86"
+fi
+
+DESCRIPTION="A standalone utility to process systemd-style tmpfiles.d files"
+HOMEPAGE="https://github.com/openrc/opentmpfiles;
+
+LICENSE="BSD-2"
+SLOT="0"
+IUSE="selinux"
+
+RDEPEND="!

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

2017-03-08 Thread Michael Weber
commit: 4f9daaff0de5b00082181b0536b573dc2830c7b0
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:30:26 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f9daaff

dev-ruby/rubygems: add ~arm64 keywords.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/rubygems/rubygems-2.6.10.ebuild | 2 +-
 dev-ruby/rubygems/rubygems-2.6.8.ebuild  | 2 +-
 dev-ruby/rubygems/rubygems-2.6.9.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/rubygems/rubygems-2.6.10.ebuild 
b/dev-ruby/rubygems/rubygems-2.6.10.ebuild
index c90d9b55d83..cbd76d73c33 100644
--- a/dev-ruby/rubygems/rubygems-2.6.10.ebuild
+++ b/dev-ruby/rubygems/rubygems-2.6.10.ebuild
@@ -13,7 +13,7 @@ LICENSE="|| ( Ruby MIT )"
 
 SRC_URI="https://rubygems.org/rubygems/${P}.tgz;
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE="server test"
 

diff --git a/dev-ruby/rubygems/rubygems-2.6.8.ebuild 
b/dev-ruby/rubygems/rubygems-2.6.8.ebuild
index 6a10ce1e380..88bcdeb7754 100644
--- a/dev-ruby/rubygems/rubygems-2.6.8.ebuild
+++ b/dev-ruby/rubygems/rubygems-2.6.8.ebuild
@@ -13,7 +13,7 @@ LICENSE="|| ( Ruby MIT )"
 
 SRC_URI="https://rubygems.org/rubygems/${P}.tgz;
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE="server test"
 

diff --git a/dev-ruby/rubygems/rubygems-2.6.9.ebuild 
b/dev-ruby/rubygems/rubygems-2.6.9.ebuild
index 6a10ce1e380..88bcdeb7754 100644
--- a/dev-ruby/rubygems/rubygems-2.6.9.ebuild
+++ b/dev-ruby/rubygems/rubygems-2.6.9.ebuild
@@ -13,7 +13,7 @@ LICENSE="|| ( Ruby MIT )"
 
 SRC_URI="https://rubygems.org/rubygems/${P}.tgz;
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE="server test"
 



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-ruby/

2017-03-08 Thread Michael Weber
commit: 8c5cc7af1f897be38866790b4b5a4f43084337f2
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:16:57 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c5cc7af

app-eselect/eselect-ruby: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 app-eselect/eselect-ruby/eselect-ruby-20151229.ebuild | 2 +-
 app-eselect/eselect-ruby/eselect-ruby-20161226.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-eselect/eselect-ruby/eselect-ruby-20151229.ebuild 
b/app-eselect/eselect-ruby/eselect-ruby-20151229.ebuild
index 5d9dfe9ed89..97af2c16048 100644
--- a/app-eselect/eselect-ruby/eselect-ruby-20151229.ebuild
+++ b/app-eselect/eselect-ruby/eselect-ruby-20151229.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://dev.gentoo.org/~flameeyes/ruby-team/ruby.eselect-${PVR}.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=">=app-admin/eselect-1.0.2"

diff --git a/app-eselect/eselect-ruby/eselect-ruby-20161226.ebuild 
b/app-eselect/eselect-ruby/eselect-ruby-20161226.ebuild
index 5d9dfe9ed89..97af2c16048 100644
--- a/app-eselect/eselect-ruby/eselect-ruby-20161226.ebuild
+++ b/app-eselect/eselect-ruby/eselect-ruby-20161226.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://dev.gentoo.org/~flameeyes/ruby-team/ruby.eselect-${PVR}.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=">=app-admin/eselect-1.0.2"



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

2017-03-08 Thread Michael Weber
commit: 378d0ded18f05a95333f01ff717e03e0fac1c77a
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:42:47 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378d0ded

dev-ruby/rake: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/rake/rake-11.1.2.ebuild| 4 ++--
 dev-ruby/rake/rake-11.2.2-r1.ebuild | 4 ++--
 dev-ruby/rake/rake-11.3.0.ebuild| 4 ++--
 dev-ruby/rake/rake-12.0.0.ebuild| 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-ruby/rake/rake-11.1.2.ebuild b/dev-ruby/rake/rake-11.1.2.ebuild
index b493f7f8cb0..a5f8d4c16d1 100644
--- a/dev-ruby/rake/rake-11.1.2.ebuild
+++ b/dev-ruby/rake/rake-11.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/ruby/rake;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc"
 
 DEPEND+=" app-arch/gzip"

diff --git a/dev-ruby/rake/rake-11.2.2-r1.ebuild 
b/dev-ruby/rake/rake-11.2.2-r1.ebuild
index 72e0f650ae7..339a2f8c4e2 100644
--- a/dev-ruby/rake/rake-11.2.2-r1.ebuild
+++ b/dev-ruby/rake/rake-11.2.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ SRC_URI="https://github.com/ruby/rake/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc"
 
 DEPEND+=" app-arch/gzip"

diff --git a/dev-ruby/rake/rake-11.3.0.ebuild b/dev-ruby/rake/rake-11.3.0.ebuild
index 72e0f650ae7..339a2f8c4e2 100644
--- a/dev-ruby/rake/rake-11.3.0.ebuild
+++ b/dev-ruby/rake/rake-11.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ SRC_URI="https://github.com/ruby/rake/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc"
 
 DEPEND+=" app-arch/gzip"

diff --git a/dev-ruby/rake/rake-12.0.0.ebuild b/dev-ruby/rake/rake-12.0.0.ebuild
index fcf29a2d903..2f9723c2fd5 100644
--- a/dev-ruby/rake/rake-12.0.0.ebuild
+++ b/dev-ruby/rake/rake-12.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -19,7 +19,7 @@ SRC_URI="https://github.com/ruby/rake/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc"
 
 DEPEND+=" app-arch/gzip"



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

2017-03-08 Thread Michael Weber
commit: 82b73010b2eeacbdbaaa8e4232795313a11329c2
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:14:03 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82b73010

dev-ruby/did_you_mean: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild | 4 ++--
 dev-ruby/did_you_mean/did_you_mean-1.1.0.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
index f9d3cadf9bd..1f15ab79e6c 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-1.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/yuki24/did_you_mean;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 IUSE=""
 
 all_ruby_prepare() {

diff --git a/dev-ruby/did_you_mean/did_you_mean-1.1.0.ebuild 
b/dev-ruby/did_you_mean/did_you_mean-1.1.0.ebuild
index 2077c5cc6d4..4e470604921 100644
--- a/dev-ruby/did_you_mean/did_you_mean-1.1.0.ebuild
+++ b/dev-ruby/did_you_mean/did_you_mean-1.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ HOMEPAGE="https://github.com/yuki24/did_you_mean;
 
 LICENSE="MIT"
 SLOT="2.4"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2017-03-08 Thread Michael Weber
commit: d13eae9e32a2d9a1b955ad09f150ef5302c84432
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:11:55 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d13eae9e

dev-ruby/power_assert: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/power_assert/power_assert-0.3.1.ebuild| 4 ++--
 dev-ruby/power_assert/power_assert-0.4.1.ebuild| 4 ++--
 dev-ruby/power_assert/power_assert-1.0.1-r1.ebuild | 2 +-
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-ruby/power_assert/power_assert-0.3.1.ebuild 
b/dev-ruby/power_assert/power_assert-0.3.1.ebuild
index 7f297f40551..0c725bb7128 100644
--- a/dev-ruby/power_assert/power_assert-0.3.1.ebuild
+++ b/dev-ruby/power_assert/power_assert-0.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ DESCRIPTION="Shows each value of variables and method calls 
in the expression"
 HOMEPAGE="https://github.com/k-tsj/power_assert;
 LICENSE="|| ( Ruby BSD-2 )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT="0"
 IUSE=""

diff --git a/dev-ruby/power_assert/power_assert-0.4.1.ebuild 
b/dev-ruby/power_assert/power_assert-0.4.1.ebuild
index af873a4fdba..c51dc1e9f47 100644
--- a/dev-ruby/power_assert/power_assert-0.4.1.ebuild
+++ b/dev-ruby/power_assert/power_assert-0.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ DESCRIPTION="Shows each value of variables and method calls 
in the expression"
 HOMEPAGE="https://github.com/k-tsj/power_assert;
 LICENSE="|| ( Ruby BSD-2 )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT="0"
 IUSE=""

diff --git a/dev-ruby/power_assert/power_assert-1.0.1-r1.ebuild 
b/dev-ruby/power_assert/power_assert-1.0.1-r1.ebuild
index 85ecf65ffa4..feba8d0eb4a 100644
--- a/dev-ruby/power_assert/power_assert-1.0.1-r1.ebuild
+++ b/dev-ruby/power_assert/power_assert-1.0.1-r1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/k-tsj/power_assert;
 SRC_URI="https://github.com/k-tsj/power_assert/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="|| ( Ruby BSD-2 )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~amd64-linux ~x86-fbsd ~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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 SLOT="0"
 IUSE=""



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

2017-03-08 Thread Michael Weber
commit: 5c5e68a47d794019983174e2b921f3b264219ead
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:51:26 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c5e68a4

dev-ruby/hoe: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/hoe/hoe-3.13.0-r1.ebuild | 4 ++--
 dev-ruby/hoe/hoe-3.14.1.ebuild| 4 ++--
 dev-ruby/hoe/hoe-3.15.2.ebuild| 4 ++--
 dev-ruby/hoe/hoe-3.15.3-r1.ebuild | 2 +-
 dev-ruby/hoe/hoe-3.15.3-r2.ebuild | 2 +-
 dev-ruby/hoe/hoe-3.15.3.ebuild| 4 ++--
 dev-ruby/hoe/hoe-3.16.0.ebuild| 2 +-
 7 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/dev-ruby/hoe/hoe-3.13.0-r1.ebuild 
b/dev-ruby/hoe/hoe-3.13.0-r1.ebuild
index 14abc4ccd1a..9a2b68baf9f 100644
--- a/dev-ruby/hoe/hoe-3.13.0-r1.ebuild
+++ b/dev-ruby/hoe/hoe-3.13.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="http://seattlerb.rubyforge.org/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-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 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.3:5 )"

diff --git a/dev-ruby/hoe/hoe-3.14.1.ebuild b/dev-ruby/hoe/hoe-3.14.1.ebuild
index 76f670f41d5..c57e528f826 100644
--- a/dev-ruby/hoe/hoe-3.14.1.ebuild
+++ b/dev-ruby/hoe/hoe-3.14.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="http://www.zenspider.com/projects/hoe.html;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.5:5 ) >=dev-ruby/rdoc-4.0"

diff --git a/dev-ruby/hoe/hoe-3.15.2.ebuild b/dev-ruby/hoe/hoe-3.15.2.ebuild
index d2789e4d854..3bf0916213c 100644
--- a/dev-ruby/hoe/hoe-3.15.2.ebuild
+++ b/dev-ruby/hoe/hoe-3.15.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="http://www.zenspider.com/projects/hoe.html;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.9:5 )"

diff --git a/dev-ruby/hoe/hoe-3.15.3-r1.ebuild 
b/dev-ruby/hoe/hoe-3.15.3-r1.ebuild
index 6a80a43a720..e672bded6c4 100644
--- a/dev-ruby/hoe/hoe-3.15.3-r1.ebuild
+++ b/dev-ruby/hoe/hoe-3.15.3-r1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://www.zenspider.com/projects/hoe.html;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.9:5 )"

diff --git a/dev-ruby/hoe/hoe-3.15.3-r2.ebuild 
b/dev-ruby/hoe/hoe-3.15.3-r2.ebuild
index 23d05db3ee7..321387b 100644
--- a/dev-ruby/hoe/hoe-3.15.3-r2.ebuild
+++ b/dev-ruby/hoe/hoe-3.15.3-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://www.zenspider.com/projects/hoe.html;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 

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

2017-03-08 Thread Michael Weber
commit: 8567a09cedd5ec9961f8324c48c73bca6b9f6a11
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:09:43 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8567a09c

dev-lang/ruby: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-lang/ruby/ruby-2.1.10.ebuild   | 4 ++--
 dev-lang/ruby/ruby-2.2.5.ebuild| 4 ++--
 dev-lang/ruby/ruby-2.2.6.ebuild| 4 ++--
 dev-lang/ruby/ruby-2.3.1.ebuild| 4 ++--
 dev-lang/ruby/ruby-2.3.2.ebuild| 4 ++--
 dev-lang/ruby/ruby-2.3.3-r1.ebuild | 4 ++--
 dev-lang/ruby/ruby-2.3.3.ebuild| 4 ++--
 dev-lang/ruby/ruby-2.4.0.ebuild| 4 ++--
 8 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/dev-lang/ruby/ruby-2.1.10.ebuild b/dev-lang/ruby/ruby-2.1.10.ebuild
index 32414024fd9..b8599122f9d 100644
--- a/dev-lang/ruby/ruby-2.1.10.ebuild
+++ b/dev-lang/ruby/ruby-2.1.10.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -33,7 +33,7 @@ SRC_URI="mirror://ruby/2.1/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 +rdoc rubytests socks5 ssl tk xemacs 
ncurses +readline"
 
 RDEPEND="

diff --git a/dev-lang/ruby/ruby-2.2.5.ebuild b/dev-lang/ruby/ruby-2.2.5.ebuild
index ad0423ce74a..815d51d8551 100644
--- a/dev-lang/ruby/ruby-2.2.5.ebuild
+++ b/dev-lang/ruby/ruby-2.2.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -30,7 +30,7 @@ SRC_URI="mirror://ruby/2.2/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 ssl tk xemacs ncurses +readline"
 
 RDEPEND="

diff --git a/dev-lang/ruby/ruby-2.2.6.ebuild b/dev-lang/ruby/ruby-2.2.6.ebuild
index ad0423ce74a..815d51d8551 100644
--- a/dev-lang/ruby/ruby-2.2.6.ebuild
+++ b/dev-lang/ruby/ruby-2.2.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -30,7 +30,7 @@ SRC_URI="mirror://ruby/2.2/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 ssl tk xemacs ncurses +readline"
 
 RDEPEND="

diff --git a/dev-lang/ruby/ruby-2.3.1.ebuild b/dev-lang/ruby/ruby-2.3.1.ebuild
index ec4d45d6e1b..e35d652a2a5 100644
--- a/dev-lang/ruby/ruby-2.3.1.ebuild
+++ b/dev-lang/ruby/ruby-2.3.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -30,7 +30,7 @@ SRC_URI="mirror://ruby/${SLOT}/${MY_P}.tar.xz
 
https://dev.gentoo.org/~flameeyes/ruby-team/${PN}-patches-${PATCHSET}.tar.bz2;
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="berkdb debug doc examples gdbm ipv6 jemalloc libressl +rdoc rubytests 
socks5 ssl tk xemacs ncurses +readline"
 
 RDEPEND="

diff --git a/dev-lang/ruby/ruby-2.3.2.ebuild b/dev-lang/ruby/ruby-2.3.2.ebuild
index ec4d45d6e1b..e35d652a2a5 100644
--- a/dev-lang/ruby/ruby-2.3.2.ebuild
+++ b/dev-lang/ruby/ruby-2.3.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -30,7 +30,7 @@ SRC_URI="mirror://ruby/${SLOT}/${MY_P}.tar.xz
 

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

2017-03-08 Thread Michael Weber
commit: 28177b5001ba6958901102c4424a56462fc5836d
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:13:09 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28177b50

dev-ruby/json: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/json/json-1.8.3.ebuild | 4 ++--
 dev-ruby/json/json-2.0.1.ebuild | 4 ++--
 dev-ruby/json/json-2.0.2.ebuild | 4 ++--
 dev-ruby/json/json-2.0.3.ebuild | 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-ruby/json/json-1.8.3.ebuild b/dev-ruby/json/json-1.8.3.ebuild
index d66e7f1d304..a2c421e8c72 100644
--- a/dev-ruby/json/json-1.8.3.ebuild
+++ b/dev-ruby/json/json-1.8.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ DESCRIPTION="A JSON implementation as a Ruby extension"
 HOMEPAGE="https://github.com/flori/json;
 LICENSE="|| ( Ruby GPL-2 )"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 IUSE=""
 

diff --git a/dev-ruby/json/json-2.0.1.ebuild b/dev-ruby/json/json-2.0.1.ebuild
index c4c8cbd58b7..a0e96c23f73 100644
--- a/dev-ruby/json/json-2.0.1.ebuild
+++ b/dev-ruby/json/json-2.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ DESCRIPTION="A JSON implementation as a Ruby extension"
 HOMEPAGE="https://github.com/flori/json;
 LICENSE="Ruby"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="2"
 IUSE=""
 

diff --git a/dev-ruby/json/json-2.0.2.ebuild b/dev-ruby/json/json-2.0.2.ebuild
index 13222d2a13b..80d52cc212b 100644
--- a/dev-ruby/json/json-2.0.2.ebuild
+++ b/dev-ruby/json/json-2.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ DESCRIPTION="A JSON implementation as a Ruby extension"
 HOMEPAGE="https://github.com/flori/json;
 LICENSE="Ruby"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="2"
 IUSE=""
 

diff --git a/dev-ruby/json/json-2.0.3.ebuild b/dev-ruby/json/json-2.0.3.ebuild
index fff41c43af4..138488fe5ec 100644
--- a/dev-ruby/json/json-2.0.3.ebuild
+++ b/dev-ruby/json/json-2.0.3.ebuild
@@ -16,7 +16,7 @@ DESCRIPTION="A JSON implementation as a Ruby extension"
 HOMEPAGE="https://github.com/flori/json;
 LICENSE="Ruby"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 SLOT="2"
 IUSE=""
 



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

2017-03-08 Thread Michael Weber
commit: ec33e2eb34c8b19c5ab8a7a63babd156ff8c91db
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:27:12 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec33e2eb

dev-python/sqlalchemy: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild | 2 +-
 dev-python/sqlalchemy/sqlalchemy-1.0.17.ebuild | 2 +-
 dev-python/sqlalchemy/sqlalchemy-1.1.4.ebuild  | 2 +-
 dev-python/sqlalchemy/sqlalchemy-1.1.5.ebuild  | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild
index f8a747793e5..2c12159a349 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.0.15.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples +sqlite test"
 
 REQUIRED_USE="test? ( sqlite )"

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.0.17.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.0.17.ebuild
index 054beeaf5e2..1e0a6318de8 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.0.17.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.0.17.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples +sqlite test"
 
 REQUIRED_USE="test? ( sqlite )"

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.1.4.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.1.4.ebuild
index 054beeaf5e2..1e0a6318de8 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.1.4.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.1.4.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples +sqlite test"
 
 REQUIRED_USE="test? ( sqlite )"

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.1.5.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.1.5.ebuild
index 054beeaf5e2..1e0a6318de8 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.1.5.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.1.5.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc examples +sqlite test"
 
 REQUIRED_USE="test? ( sqlite )"



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

2017-03-08 Thread Michael Weber
commit: ff3786abc9336f2799686f9f783bc957589bd22c
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:49:42 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff3786ab

dev-ruby/test-unit: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/test-unit/test-unit-1.2.3-r3.ebuild | 4 ++--
 dev-ruby/test-unit/test-unit-2.5.5-r2.ebuild | 4 ++--
 dev-ruby/test-unit/test-unit-3.1.9.ebuild| 4 ++--
 dev-ruby/test-unit/test-unit-3.2.2.ebuild| 4 ++--
 dev-ruby/test-unit/test-unit-3.2.3.ebuild| 4 ++--
 5 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dev-ruby/test-unit/test-unit-1.2.3-r3.ebuild 
b/dev-ruby/test-unit/test-unit-1.2.3-r3.ebuild
index f8f106c31d3..6f29ea161b4 100644
--- a/dev-ruby/test-unit/test-unit-1.2.3-r3.ebuild
+++ b/dev-ruby/test-unit/test-unit-1.2.3-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -24,7 +24,7 @@ HOMEPAGE="http://test-unit.rubyforge.org/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~sparc x86 
~x86-fbsd"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/hoe-1.5.1"

diff --git a/dev-ruby/test-unit/test-unit-2.5.5-r2.ebuild 
b/dev-ruby/test-unit/test-unit-2.5.5-r2.ebuild
index 7b8f45542ff..67dee70aa78 100644
--- a/dev-ruby/test-unit/test-unit-2.5.5-r2.ebuild
+++ b/dev-ruby/test-unit/test-unit-2.5.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -21,7 +21,7 @@ HOMEPAGE="http://test-unit.rubyforge.org/;
 
 LICENSE="Ruby"
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris 
~x86-solaris"
 IUSE="doc test"
 
 all_ruby_compile() {

diff --git a/dev-ruby/test-unit/test-unit-3.1.9.ebuild 
b/dev-ruby/test-unit/test-unit-3.1.9.ebuild
index 70360330f2b..10ae225771b 100644
--- a/dev-ruby/test-unit/test-unit-3.1.9.ebuild
+++ b/dev-ruby/test-unit/test-unit-3.1.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -21,7 +21,7 @@ HOMEPAGE="https://rubygems.org/gems/test-unit;
 
 LICENSE="|| ( Ruby GPL-2 ) PSF-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 ruby_add_rdepend "dev-ruby/power_assert"

diff --git a/dev-ruby/test-unit/test-unit-3.2.2.ebuild 
b/dev-ruby/test-unit/test-unit-3.2.2.ebuild
index 70360330f2b..10ae225771b 100644
--- a/dev-ruby/test-unit/test-unit-3.2.2.ebuild
+++ b/dev-ruby/test-unit/test-unit-3.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -21,7 +21,7 @@ HOMEPAGE="https://rubygems.org/gems/test-unit;
 
 LICENSE="|| ( Ruby GPL-2 ) PSF-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 ruby_add_rdepend "dev-ruby/power_assert"

diff --git a/dev-ruby/test-unit/test-unit-3.2.3.ebuild 
b/dev-ruby/test-unit/test-unit-3.2.3.ebuild
index 54f8518a705..ea6bb10a545 100644
--- a/dev-ruby/test-unit/test-unit-3.2.3.ebuild
+++ b/dev-ruby/test-unit/test-unit-3.2.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -21,7 +21,7 @@ HOMEPAGE="https://rubygems.org/gems/test-unit;
 
 LICENSE="|| ( Ruby GPL-2 ) PSF-2"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 

[gentoo-commits] repo/gentoo:master commit in: net-proxy/dante/

2017-03-08 Thread Michael Weber
commit: 8c48d74470cc2e93f9b2428728f22707bd65850b
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:10:38 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c48d744

net-proxy/dante: arm64 stable.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 net-proxy/dante/dante-1.4.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/dante/dante-1.4.1-r1.ebuild 
b/net-proxy/dante/dante-1.4.1-r1.ebuild
index f90a862af67..77615caee7a 100644
--- a/net-proxy/dante/dante-1.4.1-r1.ebuild
+++ b/net-proxy/dante/dante-1.4.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.inet.no/pub/socks/${MY_P}.tar.gz;
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="debug kerberos pam selinux static-libs tcpd upnp"
 
 CDEPEND="



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

2017-03-08 Thread Michael Weber
commit: b36f93dca252be708164c3efd74959438ea16479
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:44:10 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b36f93dc

dev-ruby/minitest: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/minitest/minitest-4.7.5-r2.ebuild | 4 ++--
 dev-ruby/minitest/minitest-5.10.1.ebuild   | 4 ++--
 dev-ruby/minitest/minitest-5.9.0.ebuild| 4 ++--
 dev-ruby/minitest/minitest-5.9.1.ebuild| 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-ruby/minitest/minitest-4.7.5-r2.ebuild 
b/dev-ruby/minitest/minitest-4.7.5-r2.ebuild
index 36c77d6bf33..8bb50a56a12 100644
--- a/dev-ruby/minitest/minitest-4.7.5-r2.ebuild
+++ b/dev-ruby/minitest/minitest-4.7.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/seattlerb/minitest;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 each_ruby_prepare() {

diff --git a/dev-ruby/minitest/minitest-5.10.1.ebuild 
b/dev-ruby/minitest/minitest-5.10.1.ebuild
index 662dffbee72..a3a087624a8 100644
--- a/dev-ruby/minitest/minitest-5.10.1.ebuild
+++ b/dev-ruby/minitest/minitest-5.10.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/seattlerb/minitest;
 
 LICENSE="MIT"
 SLOT="5"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 each_ruby_test() {

diff --git a/dev-ruby/minitest/minitest-5.9.0.ebuild 
b/dev-ruby/minitest/minitest-5.9.0.ebuild
index f2fcab0de5b..1bad5d39631 100644
--- a/dev-ruby/minitest/minitest-5.9.0.ebuild
+++ b/dev-ruby/minitest/minitest-5.9.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/seattlerb/minitest;
 
 LICENSE="MIT"
 SLOT="5"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 each_ruby_test() {

diff --git a/dev-ruby/minitest/minitest-5.9.1.ebuild 
b/dev-ruby/minitest/minitest-5.9.1.ebuild
index f2fcab0de5b..1bad5d39631 100644
--- a/dev-ruby/minitest/minitest-5.9.1.ebuild
+++ b/dev-ruby/minitest/minitest-5.9.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/seattlerb/minitest;
 
 LICENSE="MIT"
 SLOT="5"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc test"
 
 each_ruby_test() {



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

2017-03-08 Thread Michael Weber
commit: cfd275752bec7dd31f04f18b57eb3e451be550cc
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:31:20 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfd27575

dev-ruby/locale: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 dev-ruby/locale/locale-2.1.0-r2.ebuild | 4 ++--
 dev-ruby/locale/locale-2.1.1.ebuild| 4 ++--
 dev-ruby/locale/locale-2.1.2.ebuild| 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-ruby/locale/locale-2.1.0-r2.ebuild 
b/dev-ruby/locale/locale-2.1.0-r2.ebuild
index 0a9fe274245..e3ad0da6451 100644
--- a/dev-ruby/locale/locale-2.1.0-r2.ebuild
+++ b/dev-ruby/locale/locale-2.1.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ruby-gettext/locale;
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="https://github.com/ruby-gettext/locale/archive/${PV}.tar.gz -> 
${P}-git.tgz"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~x86-macos"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 sparc x86 ~x86-macos"
 SLOT="0"
 IUSE=""
 

diff --git a/dev-ruby/locale/locale-2.1.1.ebuild 
b/dev-ruby/locale/locale-2.1.1.ebuild
index c64b0ffae33..da0259e933f 100644
--- a/dev-ruby/locale/locale-2.1.1.ebuild
+++ b/dev-ruby/locale/locale-2.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ruby-gettext/locale;
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="https://github.com/ruby-gettext/locale/archive/${PV}.tar.gz -> 
${P}-git.tgz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-macos"
 SLOT="0"
 IUSE=""
 

diff --git a/dev-ruby/locale/locale-2.1.2.ebuild 
b/dev-ruby/locale/locale-2.1.2.ebuild
index b5386df616a..0c777b1939f 100644
--- a/dev-ruby/locale/locale-2.1.2.ebuild
+++ b/dev-ruby/locale/locale-2.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/ruby-gettext/locale;
 LICENSE="|| ( Ruby GPL-2 )"
 SRC_URI="https://github.com/ruby-gettext/locale/archive/${PV}.tar.gz -> 
${P}-git.tgz"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~x86-macos"
 SLOT="0"
 IUSE=""
 



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

2017-03-08 Thread Michael Weber
commit: 20def9d4370c6292160230b96258116b56cafe30
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:15:39 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20def9d4

dev-ruby/net-telnet: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild 
b/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild
index d060ce418df..220b940ef3e 100644
--- a/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild
+++ b/dev-ruby/net-telnet/net-telnet-0.1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/ruby/net-telnet/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="|| ( Ruby-BSD BSD-2 )"
 SLOT="1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2017-03-08 Thread Michael Weber
commit: 05cd01fe2f4fae29f7b636eae8c5f9b4640142b8
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:52:41 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05cd01fe

dev-ruby/rdoc: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/rdoc/rdoc-4.2.2.ebuild| 4 ++--
 dev-ruby/rdoc/rdoc-4.3.0.ebuild| 4 ++--
 dev-ruby/rdoc/rdoc-5.0.0-r1.ebuild | 4 ++--
 dev-ruby/rdoc/rdoc-5.0.0-r2.ebuild | 4 ++--
 dev-ruby/rdoc/rdoc-5.0.0-r3.ebuild | 2 +-
 dev-ruby/rdoc/rdoc-5.0.0.ebuild| 4 ++--
 dev-ruby/rdoc/rdoc-5.1.0.ebuild| 2 +-
 7 files changed, 12 insertions(+), 12 deletions(-)

diff --git a/dev-ruby/rdoc/rdoc-4.2.2.ebuild b/dev-ruby/rdoc/rdoc-4.2.2.ebuild
index e723779c333..a2495d1b5ef 100644
--- a/dev-ruby/rdoc/rdoc-4.2.2.ebuild
+++ b/dev-ruby/rdoc/rdoc-4.2.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/rdoc/rdoc/;
 
 LICENSE="Ruby MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "

diff --git a/dev-ruby/rdoc/rdoc-4.3.0.ebuild b/dev-ruby/rdoc/rdoc-4.3.0.ebuild
index e723779c333..a2495d1b5ef 100644
--- a/dev-ruby/rdoc/rdoc-4.3.0.ebuild
+++ b/dev-ruby/rdoc/rdoc-4.3.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/rdoc/rdoc/;
 
 LICENSE="Ruby MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-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 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "

diff --git a/dev-ruby/rdoc/rdoc-5.0.0-r1.ebuild 
b/dev-ruby/rdoc/rdoc-5.0.0-r1.ebuild
index 07f9a98be4d..96041407a94 100644
--- a/dev-ruby/rdoc/rdoc-5.0.0-r1.ebuild
+++ b/dev-ruby/rdoc/rdoc-5.0.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/rdoc/rdoc/;
 SRC_URI="https://github.com/rdoc/rdoc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Ruby MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 SLOT="0"
 IUSE=""
 

diff --git a/dev-ruby/rdoc/rdoc-5.0.0-r2.ebuild 
b/dev-ruby/rdoc/rdoc-5.0.0-r2.ebuild
index d281308f27f..d72d1e94580 100644
--- a/dev-ruby/rdoc/rdoc-5.0.0-r2.ebuild
+++ b/dev-ruby/rdoc/rdoc-5.0.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/rdoc/rdoc/;
 SRC_URI="https://github.com/rdoc/rdoc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Ruby MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 SLOT="0"
 IUSE=""
 

diff --git a/dev-ruby/rdoc/rdoc-5.0.0-r3.ebuild 
b/dev-ruby/rdoc/rdoc-5.0.0-r3.ebuild
index cd4b0446d55..8d314c60849 100644
--- a/dev-ruby/rdoc/rdoc-5.0.0-r3.ebuild
+++ b/dev-ruby/rdoc/rdoc-5.0.0-r3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/rdoc/rdoc/;
 SRC_URI="https://github.com/rdoc/rdoc/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Ruby MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 SLOT="0"
 IUSE=""
 

diff --git a/dev-ruby/rdoc/rdoc-5.0.0.ebuild b/dev-ruby/rdoc/rdoc-5.0.0.ebuild
index fd9165df1f1..57594c169ff 100644
--- a/dev-ruby/rdoc/rdoc-5.0.0.ebuild
+++ 

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

2017-03-08 Thread Michael Weber
commit: b0ad4114695150380774fc1751a6a102abfd9383
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 23:18:02 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:39:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0ad4114

dev-ruby/xmlrpc: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/xmlrpc/xmlrpc-0.2.1.ebuild | 2 +-
 dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/xmlrpc/xmlrpc-0.2.1.ebuild 
b/dev-ruby/xmlrpc/xmlrpc-0.2.1.ebuild
index 7027e332287..1abb882b63b 100644
--- a/dev-ruby/xmlrpc/xmlrpc-0.2.1.ebuild
+++ b/dev-ruby/xmlrpc/xmlrpc-0.2.1.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/ruby/xmlrpc/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Ruby"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 all_ruby_prepare() {

diff --git a/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild 
b/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild
index 7027e332287..1abb882b63b 100644
--- a/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild
+++ b/dev-ruby/xmlrpc/xmlrpc-0.3.0.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://github.com/ruby/xmlrpc/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Ruby"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 all_ruby_prepare() {



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

2017-03-08 Thread Michael Weber
commit: 2d27cc8440d6ed5de4160685b467fddf72a3dfa2
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:40:27 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d27cc84

dev-ruby/builder: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 dev-ruby/builder/builder-3.0.4-r2.ebuild | 4 ++--
 dev-ruby/builder/builder-3.1.4.ebuild| 4 ++--
 dev-ruby/builder/builder-3.2.2-r1.ebuild | 4 ++--
 dev-ruby/builder/builder-3.2.3.ebuild| 2 +-
 4 files changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-ruby/builder/builder-3.0.4-r2.ebuild 
b/dev-ruby/builder/builder-3.0.4-r2.ebuild
index e332382f4cb..8da58f05f52 100644
--- a/dev-ruby/builder/builder-3.0.4-r2.ebuild
+++ b/dev-ruby/builder/builder-3.0.4-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ HOMEPAGE="http://rubyforge.org/projects/builder/;
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "doc? ( dev-ruby/rdoc )"

diff --git a/dev-ruby/builder/builder-3.1.4.ebuild 
b/dev-ruby/builder/builder-3.1.4.ebuild
index ee6c42b400f..403e8555355 100644
--- a/dev-ruby/builder/builder-3.1.4.ebuild
+++ b/dev-ruby/builder/builder-3.1.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,7 +18,7 @@ HOMEPAGE="http://rubyforge.org/projects/builder/;
 
 LICENSE="MIT"
 SLOT="3.1"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "doc? ( dev-ruby/rdoc )"

diff --git a/dev-ruby/builder/builder-3.2.2-r1.ebuild 
b/dev-ruby/builder/builder-3.2.2-r1.ebuild
index e7151bff6e0..6a8b1e6e7e9 100644
--- a/dev-ruby/builder/builder-3.2.2-r1.ebuild
+++ b/dev-ruby/builder/builder-3.2.2-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ HOMEPAGE="http://rubyforge.org/projects/builder/;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm arm64 hppa ia64 ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "doc? ( dev-ruby/rdoc )"

diff --git a/dev-ruby/builder/builder-3.2.3.ebuild 
b/dev-ruby/builder/builder-3.2.3.ebuild
index 505d709ad98..75291cdef1c 100644
--- a/dev-ruby/builder/builder-3.2.3.ebuild
+++ b/dev-ruby/builder/builder-3.2.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://onestepback.org/;
 
 LICENSE="MIT"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "doc? ( dev-ruby/rdoc )"



[gentoo-commits] repo/gentoo:master commit in: virtual/rubygems/

2017-03-08 Thread Michael Weber
commit: 91cf97d5432905fed0119c056b42921206178236
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:36:51 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 23:38:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91cf97d5

virtual/rubygems: add ~arm64 keyword.

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm64"

 virtual/rubygems/rubygems-11.ebuild | 2 +-
 virtual/rubygems/rubygems-12.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/virtual/rubygems/rubygems-11.ebuild 
b/virtual/rubygems/rubygems-11.ebuild
index 12991c618ee..05d25a76ea8 100644
--- a/virtual/rubygems/rubygems-11.ebuild
+++ b/virtual/rubygems/rubygems-11.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="

diff --git a/virtual/rubygems/rubygems-12.ebuild 
b/virtual/rubygems/rubygems-12.ebuild
index f35ab505115..47c0fcfd96e 100644
--- a/virtual/rubygems/rubygems-12.ebuild
+++ b/virtual/rubygems/rubygems-12.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] proj/catalyst:master commit in: catalyst/base/

2017-03-08 Thread Brian Dolbec
commit: faa1349963f41c39c4fbf5da5445c526fab3430f
Author: Brian Dolbec  gentoo  org>
AuthorDate: Wed Mar  8 23:13:59 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Wed Mar  8 23:14:50 2017 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=faa13499

base/stagebase.py: Add additional log messages for autoresume point invalidation

 catalyst/base/stagebase.py | 4 
 1 file changed, 4 insertions(+)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 0d36e33..a6233b2 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -729,24 +729,28 @@ class StageBase(TargetBase, ClearBase, GenBase):
# Autoresume is valid, SEEDCACHE is valid
_unpack = False
invalid_snapshot = False
+   log.notice('Resume point "unpack" valid...')
 
elif os.path.isfile(self.settings["source_path"]) \
and self.settings["source_path_hash"] == 
clst_unpack_hash:
# Autoresume is valid, tarball is valid
_unpack = False
invalid_snapshot = False
+   log.notice('Resume point "source_path_hash" 
valid...')
 
elif os.path.isdir(self.settings["source_path"]) \
and self.resume.is_disabled("unpack"):
# Autoresume is invalid, SEEDCACHE
_unpack = True
invalid_snapshot = True
+   log.notice('Resume point "unpack is disabled" 
is True, invalidating snapshot... :(')
 
elif os.path.isfile(self.settings["source_path"]) \
and self.settings["source_path_hash"] != 
clst_unpack_hash:
# Autoresume is invalid, tarball
_unpack = True
invalid_snapshot = True
+   log.notice('Resume point "source_path_hash" is 
invalid... :(')
unpack_info['source'] = 
file_check(unpack_info['source'])
 
else:



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

2017-03-08 Thread Patrice Clement
commit: adb454c92a23837bdc9955239442c736494b78e1
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Mar  8 23:10:19 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 23:10:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb454c9

app-admin/watchfolder: clean up old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-admin/watchfolder/watchfolder-0.3.3.ebuild | 43 --
 1 file changed, 43 deletions(-)

diff --git a/app-admin/watchfolder/watchfolder-0.3.3.ebuild 
b/app-admin/watchfolder/watchfolder-0.3.3.ebuild
deleted file mode 100644
index 87993d3e5a6..000
--- a/app-admin/watchfolder/watchfolder-0.3.3.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Watches directories and processes files"
-HOMEPAGE="http://freshmeat.net/projects/watchd/;
-SRC_URI="http://dstunrea.sdf-eu.org/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
-IUSE=""
-DEPEND=""
-
-S="${WORKDIR}/${P/folder/d}"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-
-   # patch to remove warnings on 64 bit systems
-   epatch "${FILESDIR}"/${PV}-64bit.patch || die
-   # and a gcc 4.3.3 / fortify_sources fix
-   epatch "${FILESDIR}"/${PV}-fortify-sources.patch || die
-
-   sed -i \
-   -e '/-c -o/s:OPT:CFLAGS:' \
-   -e 's:(\(LD\)\?OPT):(LDFLAGS) $(CFLAGS):' \
-   -e 's:gcc:$(CC):' \
-   Makefile || die "sed Makefile failed"
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)" || die "emake failed"
-}
-
-src_install() {
-   dobin watchd || die "dobin failed"
-   insinto /etc
-   doins watchd.conf
-   dodoc README doc/*
-}



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

2017-03-08 Thread Patrice Clement
commit: 45894a976b7f1e443571c42e8859b07fbc18c2ce
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Mar  8 23:01:16 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 23:10:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45894a97

app-admin/watchfolder: remove trailing whitespaces.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild 
b/app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild
index 6d61b35109f..395d4e142bb 100644
--- a/app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild
+++ b/app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild
@@ -22,7 +22,7 @@ PATCHES=(
"${FILESDIR}"/${PV}-fortify-sources.patch
 )
 
-src_prepare() { 
+src_prepare() {
default
sed -i \
-e '/-c -o/s:OPT:CFLAGS:' \
@@ -36,7 +36,7 @@ src_compile() {
 }
 
 src_install() {
-   dobin watchd 
+   dobin watchd
insinto /etc
doins watchd.conf
dodoc README doc/*



[gentoo-commits] repo/gentoo:master commit in: app-admin/watchfolder/files/, app-admin/watchfolder/

2017-03-08 Thread Patrice Clement
commit: dd04db00bddf9bbf27b568c5f5a3b45c280f1d12
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Mar  8 22:59:46 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 23:10:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd04db00

app-admin/watchfolder: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-admin/watchfolder/files/0.3.3-64bit.patch  |  4 +-
 .../watchfolder/files/0.3.3-fortify-sources.patch  |  4 +-
 app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild  | 43 ++
 3 files changed, 47 insertions(+), 4 deletions(-)

diff --git a/app-admin/watchfolder/files/0.3.3-64bit.patch 
b/app-admin/watchfolder/files/0.3.3-64bit.patch
index ea78be4fe29..070e9c019d2 100644
--- a/app-admin/watchfolder/files/0.3.3-64bit.patch
+++ b/app-admin/watchfolder/files/0.3.3-64bit.patch
@@ -1,5 +1,5 @@
 watchd-0.3.3/watchd.c.orig 2006-02-23 12:33:32.0 -0500
-+++ watchd-0.3.3/watchd.c  2006-02-23 12:45:30.0 -0500
+--- a/watchd.c 2006-02-23 12:33:32.0 -0500
 b/watchd.c 2006-02-23 12:45:30.0 -0500
 @@ -176,7 +176,7 @@
  // free(p2tmp);
  

diff --git a/app-admin/watchfolder/files/0.3.3-fortify-sources.patch 
b/app-admin/watchfolder/files/0.3.3-fortify-sources.patch
index c9e47038612..175e8ed29ec 100644
--- a/app-admin/watchfolder/files/0.3.3-fortify-sources.patch
+++ b/app-admin/watchfolder/files/0.3.3-fortify-sources.patch
@@ -1,5 +1,5 @@
 watchd.c   2009-02-27 23:46:42.0 +
-+++ watchd.c   2009-02-27 23:50:22.0 +
+--- a/watchd.c 2009-02-27 23:46:42.0 +
 b/watchd.c 2009-02-27 23:50:22.0 +
 @@ -671,7 +671,7 @@
 {
  if (folder->flags_LOG_FILE)

diff --git a/app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild 
b/app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild
new file mode 100644
index 000..6d61b35109f
--- /dev/null
+++ b/app-admin/watchfolder/watchfolder-0.3.3-r1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="watches directories and processes files"
+HOMEPAGE="http://freshmeat.net/projects/watchd/;
+SRC_URI="http://dstunrea.sdf-eu.org/files/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+
+S="${WORKDIR}/${P/folder/d}"
+
+PATCHES=(
+   # patch to remove warnings on 64 bit systems
+   "${FILESDIR}"/${PV}-64bit.patch
+   # and a gcc 4.3.3 / fortify_sources fix
+   "${FILESDIR}"/${PV}-fortify-sources.patch
+)
+
+src_prepare() { 
+   default
+   sed -i \
+   -e '/-c -o/s:OPT:CFLAGS:' \
+   -e 's:(\(LD\)\?OPT):(LDFLAGS) $(CFLAGS):' \
+   -e 's:gcc:$(CC):' \
+   Makefile || die "sed Makefile failed"
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)"
+}
+
+src_install() {
+   dobin watchd 
+   insinto /etc
+   doins watchd.conf
+   dodoc README doc/*
+}



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/ceph/files/, sys-cluster/ceph/

2017-03-08 Thread Patrick McLean
commit: 81e655fb8e2d3a68f5d71745833dee66ce017ae4
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Mar  8 22:56:46 2017 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Mar  8 22:56:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e655fb

sys-cluster/ceph: Version bump to 10.2.6

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 sys-cluster/ceph/Manifest  |   1 +
 sys-cluster/ceph/ceph-10.2.6.ebuild| 293 +
 ...sgw-swift-clean-up-flush-newline-behavior.patch |  92 +++
 3 files changed, 386 insertions(+)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index 793888de568..767fa7e7bb5 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -1,4 +1,5 @@
 DIST ceph-0.94.9.tar.gz 9044702 SHA256 
d5bc07e7aef75f74d75f0356e5dd2a17956cbad6bb552a1e96a0fabd80924050 SHA512 
ef4bbcc4429e22a2d924fd52dc42f522d5327f67ee8c1781d7cf602c2932a485cb48db21bdc33e7c7fbc968eec59c17882ebb18e6405599e11a3abc248f1d376
 WHIRLPOOL 
f348159e8d7dd5e1ac3810a51846f50f6cefdbc5fa4cd15c3127b1136eb960baca8ad8db33c78a5d6435720cf1e2c277e068d09f9b9dbcf0f8ad56d7ddd914dc
 DIST ceph-10.2.3.tar.gz 11596171 SHA256 
dca933aa14db67b404d836ef510bd418091978edc2f0c74dfc530ba0aa5e8994 SHA512 
9de1e6851fc343d2c52c72cec3f7887d998d5b588f1251ee3a1fda14427badfa10408e6691fb03a374a10f4ec9844868423fee70fbbe2c0d962af98481412f19
 WHIRLPOOL 
981ebca66113a07a5cc6e5934272a72b29a2c19e03398f7b622c11df6ea0a05339558dfc2f11504403cbbd0efe0b090ad59f4b86206b46db57587744091aa26a
 DIST ceph-10.2.5.tar.gz 14020700 SHA256 
82dd4271f18eb7b84ff16f273a5250a4a9e809bfaccce5a1cca493416332d5f4 SHA512 
4889aff38c8af781c2e3dce8f4ee51864db0a27c6294774345d2c1b047588ec31354ad41f799e2f0d0a966dc372d76c9bdbfb93f30a0718ea9d7c2b7a645d0f8
 WHIRLPOOL 
986a6ac35612a732d2a9a73277525679f9da729601c7e3f82b83e7e8ee2eb4245c98cdf5c4462ae1c789cb3d120a2c4a7eb9a3958b072db5e743b2c015269dfc
+DIST ceph-10.2.6.tar.gz 14500365 SHA256 
ad32c549d0ce6de581b5e1c6c7eba38e0f6658aaf8a91990e602f7c64c5e48c7 SHA512 
c4321e27a6f8983f69435316c35858ab2b8b620cd80663a5471447c7489d867aef30b22541ca9648a7dcf9d931d04055e29d87dea3a6e94963fb360d06713dee
 WHIRLPOOL 
bd886105b47b6cfaeeff882f1d21d710442880c31a1943298db0904a453d67da71519c8fe5e1dd0377480b5413c90bf8ae4bed6bd99bfc53e4696f8b8031c23a
 DIST ceph-9.2.1.tar.gz 9933444 SHA256 
1918dfc3df80df5986c5b7ff6bc6c78064eef0f6c5e8269dba30e08c703a7c2f SHA512 
1e84c1e2d64f4156a523658ed11552b045f75986922b7b7dbaf4719e73a0a6aadc71eb2b94ae363526f729534a592921a437468a41a3cea88c1b84e09de8505a
 WHIRLPOOL 
3a0eb6712e5b0235707e86129e1d66f1184f50cd4980c30f6d8cc0e7dfd96d30b91177ed16dd7abf2ad4983c6a543eb91915f74f661f7d3e3c810b5b1d656aca

diff --git a/sys-cluster/ceph/ceph-10.2.6.ebuild 
b/sys-cluster/ceph/ceph-10.2.6.ebuild
new file mode 100644
index 000..ac3fbe53c5a
--- /dev/null
+++ b/sys-cluster/ceph/ceph-10.2.6.ebuild
@@ -0,0 +1,293 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+
+inherit check-reqs autotools eutils python-r1 udev user \
+   readme.gentoo-r1 systemd versionator flag-o-matic
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="
+   git://github.com/ceph/ceph.git
+   https://github.com/ceph/ceph.git;
+   SRC_URI=""
+else
+   SRC_URI="http://download.ceph.com/tarballs/${P}.tar.gz;
+   KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Ceph distributed filesystem"
+HOMEPAGE="http://ceph.com/;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+
+IUSE="babeltrace cephfs cryptopp debug fuse gtk jemalloc ldap +libaio"
+IUSE+=" libatomic lttng +nss +radosgw static-libs +tcmalloc test xfs zfs"
+
+# unbundling code commented out pending bugs 584056 and 584058
+#>=dev-libs/jerasure-2.0.0-r1
+#>=dev-libs/gf-complete-2.0.0
+COMMON_DEPEND="
+   app-arch/snappy
+   app-arch/lz4:=
+   app-arch/bzip2
+   dev-libs/boost:=[threads]
+   dev-libs/libaio
+   dev-libs/leveldb[snappy]
+   nss? ( dev-libs/nss )
+   libatomic? ( dev-libs/libatomic_ops )
+   cryptopp? ( dev-libs/crypto++:= )
+   sys-apps/keyutils
+   sys-apps/util-linux
+   dev-libs/libxml2
+   radosgw? ( dev-libs/fcgi )
+   ldap? ( net-nds/openldap )
+   babeltrace? ( dev-util/babeltrace )
+   fuse? ( sys-fs/fuse )
+   xfs? ( sys-fs/xfsprogs )
+   zfs? ( sys-fs/zfs )
+   gtk? (
+   x11-libs/gtk+:2
+   dev-cpp/gtkmm:2.4
+   gnome-base/librsvg
+   )
+   radosgw? (
+   dev-libs/fcgi
+   dev-libs/expat
+   net-misc/curl
+   )
+   jemalloc? ( dev-libs/jemalloc )
+   !jemalloc? ( dev-util/google-perftools )
+   lttng? ( dev-util/lttng-ust )
+   ${PYTHON_DEPS}
+   "
+DEPEND="${COMMON_DEPEND}
+   dev-python/cython[${PYTHON_USEDEP}]
+   

[gentoo-commits] repo/gentoo:master commit in: dev-util/sel/

2017-03-08 Thread Patrice Clement
commit: e5cb93ff2e6417fcdc036c06ee385ec022d7bd7e
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Mar  5 15:37:51 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 22:48:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5cb93ff

dev-util/sel: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-util/sel/sel-0.08.4-r2.ebuild | 35 +++
 1 file changed, 35 insertions(+)

diff --git a/dev-util/sel/sel-0.08.4-r2.ebuild 
b/dev-util/sel/sel-0.08.4-r2.ebuild
new file mode 100644
index 000..d858c06807b
--- /dev/null
+++ b/dev-util/sel/sel-0.08.4-r2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="A filemanager for shell scripts"
+SRC_URI="http://www.rninet.de/darkstar/files/${P}.tar.gz;
+HOMEPAGE="http://www.rninet.de/darkstar/sel.html;
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~s390 ~sparc ~x86"
+
+RDEPEND="sys-libs/ncurses:0="
+
+DOCS=( "help.txt" README.GER whatsnew )
+
+src_prepare () {
+   default
+   sed -i \
+   -e "s:/usr/local/share/sel/help\.txt:/usr/share/sel/help\.txt:" 
\
+   "${PN}.c" || die 'sed failed'
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDLIBS="-lncurses"
+}
+
+src_install () {
+   dobin "${PN}"
+   doman "${PN}.1"
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2017-03-08 Thread Patrice Clement
commit: 9c3bfee419467b417400fe45921205b502e17d68
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Mar  5 15:37:05 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 22:48:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c3bfee4

dev-libs/http-fetcher: EAPI 6 bump.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild | 35 ++
 1 file changed, 35 insertions(+)

diff --git a/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild 
b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
new file mode 100644
index 000..82fa74245a7
--- /dev/null
+++ b/dev-libs/http-fetcher/http-fetcher-1.1.0-r1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools
+
+MY_P="${P/-/_}"
+
+DESCRIPTION="Library for downloading files via HTTP using the GET method"
+HOMEPAGE="http://http-fetcher.sourceforge.net;
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+LICENSE="LGPL-2.1"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+IUSE="debug"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-strict \
+   $(use_enable debug)
+}
+
+src_install() {
+   default
+   dodoc -r docs/html/*.html docs/index.html README ChangeLog CREDITS 
INSTALL
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/http-fetcher/

2017-03-08 Thread Patrice Clement
commit: acc04f1321e042bc184d9f4c1a5cebd4d559e0a0
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Mar  5 15:37:28 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Mar  8 22:48:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc04f13

dev-libs/http-fetcher: take over maintainership.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-libs/http-fetcher/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-libs/http-fetcher/metadata.xml 
b/dev-libs/http-fetcher/metadata.xml
index 5210c6b4072..a4818674ffd 100644
--- a/dev-libs/http-fetcher/metadata.xml
+++ b/dev-libs/http-fetcher/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   monsie...@gentoo.org
+   Patrice Clement
+   

http-fetcher




[gentoo-commits] repo/gentoo:master commit in: net-wireless/wireless-regdb/

2017-03-08 Thread Richard Farina
commit: c14abd2088f6d4d45dea0192eba6c9959796b109
Author: Zero_Chaos  gentoo  org>
AuthorDate: Wed Mar  8 22:45:21 2017 +
Commit: Richard Farina  gentoo  org>
CommitDate: Wed Mar  8 22:45:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14abd20

net-wireless/wireless-regdb: bumpity bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --force

 net-wireless/wireless-regdb/Manifest   |  1 +
 .../wireless-regdb/wireless-regdb-20170307.ebuild  | 33 ++
 2 files changed, 34 insertions(+)

diff --git a/net-wireless/wireless-regdb/Manifest 
b/net-wireless/wireless-regdb/Manifest
index 1a3ec4935a5..0021b41cdc8 100644
--- a/net-wireless/wireless-regdb/Manifest
+++ b/net-wireless/wireless-regdb/Manifest
@@ -1,2 +1,3 @@
 DIST wireless-regdb-2016.05.02.tar.xz 16508 SHA256 
c9674c988a944105148091b74c05c6fa6bd9611b9bbab6b81abfb5e5387bc61e SHA512 
3a81b57430b934978be97a0532c1cd04fdcadd0528279b5fbd8723134f50e5f54ef0ddb4de74c4a397e51c6588b88714dff4cd37ebf059f02f15efed96f705ed
 WHIRLPOOL 
3ba693ff9142238615786dbea3285fd41eeaf6ef45bacd1fbba857f9089b7ea0bd79e1bbf1974b1fb331a81359e54081d142e8de42b9f2dbce9458f828f4a32c
 DIST wireless-regdb-2016.06.10.tar.xz 16596 SHA256 
cfedf1c3521b3c8f32602f25ed796e96e687c3441a00e7c050fedf7fd4f1b8b7 SHA512 
8064d18232924d86633df9e1195e9521f8f9ca0216f1e664591e3163d583085971b743b9fbbce196e650f239c231caebb7807c5019fcb409b950c6fbd8396f22
 WHIRLPOOL 
0e7032d6d8ef6735b26aed8ed8e4b77e7d6708e84aa2dcd197e06194e648cf7577833cdbf2b14f9d59cfd788a5268e9a988126b3b33f17561002bcc885135c28
+DIST wireless-regdb-2017.03.07.tar.xz 16848 SHA256 
371eafa3b26ece916ef83aca02c4bed2e54099eb5b8c6d22d3a4358dce6535b9 SHA512 
91e2458feb5bf4d4b7d9008afd9c2d40b700d53cb898855f6278b93a7779aefeed283bfff2dd77b89bcbcc98c5e131f5187730356e5bba858d96774d610ab450
 WHIRLPOOL 
0cdfe194f9d819925ad0efde4167e465144b3bd1c4317c0d02224deab94861280f852575d73a75f94459a258d35f7d2a4e10b9ba37cc33c5716c943a781ac124

diff --git a/net-wireless/wireless-regdb/wireless-regdb-20170307.ebuild 
b/net-wireless/wireless-regdb/wireless-regdb-20170307.ebuild
new file mode 100644
index 000..2a733247c7a
--- /dev/null
+++ b/net-wireless/wireless-regdb/wireless-regdb-20170307.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_P="wireless-regdb-${PV:0:4}.${PV:4:2}.${PV:6:2}"
+DESCRIPTION="Binary regulatory database for CRDA"
+HOMEPAGE="https://wireless.kernel.org/en/developers/Regulatory;
+SRC_URI="https://www.kernel.org/pub/software/network/${PN}/${MY_P}.tar.xz;
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 sparc x86"
+IUSE=""
+
+S="${WORKDIR}/${MY_P}"
+
+src_compile() {
+   einfo "Recompiling regulatory.bin from db.txt would break CRDA verify. 
Installing unmodified binary version."
+}
+
+src_install() {
+   # This file is not ABI-specific, and crda itself always hardcodes
+   # this path.  So install into a common location for all ABIs to use.
+   insinto /usr/lib/crda
+   doins regulatory.bin
+
+   insinto /etc/wireless-regdb/pubkeys
+   doins sforshee.key.pub.pem
+
+   doman regulatory.bin.5
+   dodoc README db.txt
+}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/pals/files/, sci-biology/pals/

2017-03-08 Thread David Seifert
commit: a9691d02216b727d0d148a0048ebf3e425e6d8f4
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:40 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9691d02

sci-biology/pals: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 .../pals/files/pals-1.0-fix-build-system.patch | 34 ++
 .../pals/{pals-1.0.ebuild => pals-1.0-r1.ebuild}   | 17 ++-
 2 files changed, 43 insertions(+), 8 deletions(-)

diff --git a/sci-biology/pals/files/pals-1.0-fix-build-system.patch 
b/sci-biology/pals/files/pals-1.0-fix-build-system.patch
new file mode 100644
index 000..a020a697f85
--- /dev/null
+++ b/sci-biology/pals/files/pals-1.0-fix-build-system.patch
@@ -0,0 +1,34 @@
+Make build system honour user variables
+
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,4 @@
+-CFLAGS = -O3 -march=pentiumpro -mcpu=pentiumpro -funroll-loops -Winline 
-DNDEBUG=1
+-LDLIBS = -lm -static
+-# LDLIBS = -lm
++LDLIBS = -lm
+ 
+ OBJ = .o
+ EXE =
+@@ -8,18 +6,13 @@
+ RM = rm -f
+ CP = cp
+ 
+-GPP = g++
+-LD = $(GPP) $(CFLAGS)
+-CPP = $(GPP) -c $(CFLAGS) 
+-CC = gcc -c $(CFLAGS) 
+-
+ all: pals
+ 
+ CPPSRC = $(sort $(wildcard *.cpp))
+ CPPOBJ= $(subst .cpp,.o,$(CPPSRC))
+ 
+-$(CPPOBJ): %.o: %.cpp
+-  $(CPP) $< -o $@
++%.o: %.cpp
++  $(CXX) $(CXXFLAGS) -DNDEBUG $(CPPFLAGS) -c $< -o $@
+ 
+ pals: $(CPPOBJ)
+-  $(LD) -o pals $(CPPOBJ) $(LDLIBS)
++  $(CXX) $(LDFLAGS) $(CXXFLAGS) -o pals $(CPPOBJ) $(LDLIBS)

diff --git a/sci-biology/pals/pals-1.0.ebuild 
b/sci-biology/pals/pals-1.0-r1.ebuild
similarity index 54%
rename from sci-biology/pals/pals-1.0.ebuild
rename to sci-biology/pals/pals-1.0-r1.ebuild
index 8db3efda19d..32579b9d075 100644
--- a/sci-biology/pals/pals-1.0.ebuild
+++ b/sci-biology/pals/pals-1.0-r1.ebuild
@@ -1,14 +1,13 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="2"
+EAPI=6
 
 inherit toolchain-funcs
 
 DESCRIPTION="Pairwise Aligner for Long Sequences"
 HOMEPAGE="http://www.drive5.com/pals/;
-#SRC_URI="http://www.drive5.com/pals/pals_source.tar.gz;
-SRC_URI="mirror://gentoo/${P}.tar.gz"
+SRC_URI="http://www.drive5.com/pals/pals_source.tar.gz -> ${P}.tar.gz"
 
 LICENSE="public-domain"
 SLOT="0"
@@ -18,12 +17,14 @@ IUSE=""
 RDEPEND=""
 DEPEND="${RDEPEND}"
 
-S="${WORKDIR}"
+S=${WORKDIR}
 
-src_compile() {
-   emake GPP="$(tc-getCXX)" CFLAGS="${CXXFLAGS}" || die
+PATCHES=( "${FILESDIR}"/${PN}-1.0-fix-build-system.patch )
+
+src_configure() {
+   tc-export CXX
 }
 
 src_install() {
-   dobin pals || die
+   dobin pals
 }



[gentoo-commits] repo/gentoo:master commit in: sci-biology/pilercr/files/, sci-biology/pilercr/

2017-03-08 Thread David Seifert
commit: 8fbc78adda521381c3f87d7da4c9d4dc7a674647
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:40 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fbc78ad

sci-biology/pilercr: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 .../files/pilercr-1.0-fix-build-system.patch   | 34 ++
 sci-biology/pilercr/pilercr-1.0-r1.ebuild  | 30 +++
 sci-biology/pilercr/pilercr-1.0.ebuild | 30 ---
 3 files changed, 64 insertions(+), 30 deletions(-)

diff --git a/sci-biology/pilercr/files/pilercr-1.0-fix-build-system.patch 
b/sci-biology/pilercr/files/pilercr-1.0-fix-build-system.patch
new file mode 100644
index 000..3754f80a934
--- /dev/null
+++ b/sci-biology/pilercr/files/pilercr-1.0-fix-build-system.patch
@@ -0,0 +1,34 @@
+Make build system honour user variables
+
+--- a/Makefile
 b/Makefile
+@@ -1,7 +1,4 @@
+-CFLAGS = -O3 -funroll-loops -Winline -DNDEBUG=1
+-#CFLAGS = -O3 -funroll-loops -Winline
+-LDLIBS = -lm -static
+-# LDLIBS = -lm
++LDLIBS = -lm
+ 
+ OBJ = .o
+ EXE =
+@@ -9,17 +6,13 @@
+ RM = rm -f
+ CP = cp
+ 
+-GPP = g++
+-LD = $(GPP) $(CFLAGS)
+-CPP = $(GPP) -c $(CFLAGS) 
+-
+ all: pilercr
+ 
+ CPPSRC = $(sort $(wildcard *.cpp))
+ CPPOBJ= $(subst .cpp,.o,$(CPPSRC))
+ 
+-$(CPPOBJ): %.o: %.cpp
+-  $(CPP) $< -o $@
++%.o: %.cpp
++  $(CXX) $(CXXFLAGS) -DNDEBUG $(CPPFLAGS) -c $< -o $@
+ 
+ pilercr: $(CPPOBJ)
+-  $(LD) -o pilercr $(CPPOBJ) $(LDLIBS)
++  $(CXX) $(LDFLAGS) $(CXXFLAGS) -o pilercr $(CPPOBJ) $(LDLIBS)

diff --git a/sci-biology/pilercr/pilercr-1.0-r1.ebuild 
b/sci-biology/pilercr/pilercr-1.0-r1.ebuild
new file mode 100644
index 000..8b1abd5de7d
--- /dev/null
+++ b/sci-biology/pilercr/pilercr-1.0-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Analysis of Clustered Regularly Interspaced Short Palindromic 
Repeats (CRISPRs)"
+HOMEPAGE="http://www.drive5.com/pilercr/;
+SRC_URI="http://www.drive5.com/pilercr/pilercr1.06.tar.gz -> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+S=${WORKDIR}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.0-fix-build-system.patch
+   "${FILESDIR}"/${PN}-1.0-gcc43.patch
+)
+
+src_configure() {
+   tc-export CXX
+}
+
+src_install() {
+   dobin ${PN}
+}

diff --git a/sci-biology/pilercr/pilercr-1.0.ebuild 
b/sci-biology/pilercr/pilercr-1.0.ebuild
deleted file mode 100644
index ae34e105c64..000
--- a/sci-biology/pilercr/pilercr-1.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Analysis of Clustered Regularly Interspaced Short Palindromic 
Repeats (CRISPRs)"
-HOMEPAGE="http://www.drive5.com/pilercr/;
-#SRC_URI="http://www.drive5.com/pilercr/pilercr.tar.gz;
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-S="${WORKDIR}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-gcc43.patch
-}
-
-src_compile() {
-   emake GPP="$(tc-getCXX)" CFLAGS="${CXXFLAGS}"
-}
-
-src_install() {
-   dobin ${PN}
-}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/piler/, sci-biology/piler/files/

2017-03-08 Thread David Seifert
commit: 38b011b475486566ee6ffc203fdc0c17b2cf577c
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:40 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38b011b4

sci-biology/piler: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 .../piler/files/piler-1.0-fix-build-system.patch   | 34 +++
 sci-biology/piler/piler-1.0-r1.ebuild  | 38 ++
 sci-biology/piler/piler-1.0.ebuild | 35 
 3 files changed, 72 insertions(+), 35 deletions(-)

diff --git a/sci-biology/piler/files/piler-1.0-fix-build-system.patch 
b/sci-biology/piler/files/piler-1.0-fix-build-system.patch
new file mode 100644
index 000..78a72f1b485
--- /dev/null
+++ b/sci-biology/piler/files/piler-1.0-fix-build-system.patch
@@ -0,0 +1,34 @@
+Make build system honour user variables
+
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,4 @@
+-CFLAGS = -O3 -march=pentiumpro -mcpu=pentiumpro -funroll-loops -Winline 
-DNDEBUG=1
+-LDLIBS = -lm -static
+-# LDLIBS = -lm
++LDLIBS = -lm
+ 
+ OBJ = .o
+ EXE =
+@@ -8,18 +6,13 @@
+ RM = rm -f
+ CP = cp
+ 
+-GPP = g++
+-LD = $(GPP) $(CFLAGS)
+-CPP = $(GPP) -c $(CFLAGS) 
+-CC = gcc -c $(CFLAGS) 
+-
+ all: piler
+ 
+ CPPSRC = $(sort $(wildcard *.cpp))
+ CPPOBJ= $(subst .cpp,.o,$(CPPSRC))
+ 
+-$(CPPOBJ): %.o: %.cpp
+-  $(CPP) $< -o $@
++%.o: %.cpp
++  $(CXX) $(CXXFLAGS) -DNDEBUG $(CPPFLAGS) -c $< -o $@
+ 
+ piler: $(CPPOBJ)
+-  $(LD) -o piler $(CPPOBJ) $(LDLIBS)
++  $(CXX) $(LDFLAGS) $(CXXFLAGS) -o piler $(CPPOBJ) $(LDLIBS)

diff --git a/sci-biology/piler/piler-1.0-r1.ebuild 
b/sci-biology/piler/piler-1.0-r1.ebuild
new file mode 100644
index 000..276ee9bc873
--- /dev/null
+++ b/sci-biology/piler/piler-1.0-r1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Analysis of repetitive DNA found in genome sequences"
+HOMEPAGE="http://www.drive5.com/piler/;
+SRC_URI="http://www.drive5.com/piler/piler_source.tar.gz -> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="amd64 x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+   || (
+   sci-biology/muscle
+   sci-libs/libmuscle
+   )
+   sci-biology/pals"
+
+S=${WORKDIR}
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.0-fix-build-system.patch
+   "${FILESDIR}"/${PN}-1.0-glibc-2.10.patch
+)
+
+src_configure() {
+   tc-export CXX
+}
+
+src_install() {
+   dobin piler
+}

diff --git a/sci-biology/piler/piler-1.0.ebuild 
b/sci-biology/piler/piler-1.0.ebuild
deleted file mode 100644
index 99894726d3d..000
--- a/sci-biology/piler/piler-1.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Analysis of repetitive DNA found in genome sequences"
-HOMEPAGE="http://www.drive5.com/piler/;
-#SRC_URI="http://www.drive5.com/piler/piler_source.tar.gz;
-SRC_URI="mirror://gentoo/${P}.tar.gz"
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND=""
-RDEPEND="|| ( sci-biology/muscle
-   sci-libs/libmuscle )
-   sci-biology/pals"
-
-S=${WORKDIR}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-glibc-2.10.patch
-}
-
-src_compile() {
-   emake GPP="$(tc-getCXX)" CFLAGS="${CXXFLAGS}" || die
-}
-
-src_install() {
-   dobin piler
-}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/blat/files/, sci-biology/blat/

2017-03-08 Thread David Seifert
commit: eacdfe16dd975d80b8d261c56f20c5843299651b
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eacdfe16

sci-biology/blat: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 sci-biology/blat/blat-34-r2.ebuild |  42 +
 .../blat/files/blat-34-fix-build-system.patch  | 207 +
 2 files changed, 249 insertions(+)

diff --git a/sci-biology/blat/blat-34-r2.ebuild 
b/sci-biology/blat/blat-34-r2.ebuild
new file mode 100644
index 000..e10bc367a31
--- /dev/null
+++ b/sci-biology/blat/blat-34-r2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+MY_PN=${PN}Src
+
+DESCRIPTION="The BLAST-Like Alignment Tool, a fast genomic sequence aligner"
+HOMEPAGE="http://www.cse.ucsc.edu/~kent/;
+SRC_URI="http://www.soe.ucsc.edu/~kent/src/${MY_PN}${PV}.zip;
+
+LICENSE="blat"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND="app-arch/unzip"
+
+S=${WORKDIR}/${MY_PN}
+
+PATCHES=( "${FILESDIR}"/${PN}-34-fix-build-system.patch )
+
+src_compile() {
+   tc-export AR CC
+
+   export HOME="${S}"
+   export MACHTYPE=$(tc-arch)
+   [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
+
+   mkdir -p bin/${MACHTYPE} || die
+   default
+}
+
+src_install() {
+   export MACHTYPE=$(tc-arch)
+   [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
+
+   dobin bin/${MACHTYPE}/*
+}

diff --git a/sci-biology/blat/files/blat-34-fix-build-system.patch 
b/sci-biology/blat/files/blat-34-fix-build-system.patch
new file mode 100644
index 000..361149cc121
--- /dev/null
+++ b/sci-biology/blat/files/blat-34-fix-build-system.patch
@@ -0,0 +1,207 @@
+--- a/blat/makefile
 b/blat/makefile
+@@ -7,7 +7,7 @@
+ O = blat.o
+ 
+ blat: $O $(MYLIBS)
+-  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/blat $O $(MYLIBS) $L
++  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/blat $O $(MYLIBS) $L
+   ${STRIP} ${BINDIR}/blat${EXE}
+ 
+ all:
+--- a/gfClient/makefile
 b/gfClient/makefile
+@@ -8,5 +8,5 @@
+ X = gfClient
+ 
+ gfClient: $O $(MYLIBS)
+-  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
++  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
+   ${STRIP} ${BINDIR}/$X${EXE}
+--- a/gfServer/makefile
 b/gfServer/makefile
+@@ -8,7 +8,7 @@
+ X = gfServer
+ 
+ gfServer: $O $(MYLIBS)
+-  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
++  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
+   ${STRIP} ${BINDIR}/$X${EXE}
+ 
+ test:
+--- a/hg/pslPretty/makefile
 b/hg/pslPretty/makefile
+@@ -8,7 +8,7 @@
+ O = pslPretty.o
+ 
+ pslPretty: $O $(MYLIBS)
+-  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/pslPretty $O $(MYLIBS) $L
++  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/pslPretty $O $(MYLIBS) 
$L
+ 
+ test:: testRna testDnax
+ 
+--- a/hg/pslReps/makefile
 b/hg/pslReps/makefile
+@@ -9,7 +9,7 @@
+ O = pslReps.o 
+ 
+ pslReps: $O $(MYLIBS)
+-  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/pslReps${EXE} $O $(MYLIBS) $L
++  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/pslReps${EXE} $O 
$(MYLIBS) $L
+ 
+ lib:
+   cd ../../lib && ${MAKE}
+--- a/hg/pslSort/makefile
 b/hg/pslSort/makefile
+@@ -8,7 +8,7 @@
+ O = pslSort.o
+ 
+ pslSort: $O $(MYLIBS)
+-  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/pslSort $O $(MYLIBS) $L
++  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/pslSort $O $(MYLIBS) $L
+ 
+ 
+ lib:
+--- a/inc/common.mk
 b/inc/common.mk
+@@ -1,20 +1,15 @@
+-CC=gcc
+-ifeq (${COPT},)
+-COPT=-O
+-endif
+-CFLAGS=
+ HG_DEFS=-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE 
-DMACHTYPE_${MACHTYPE}
+ HG_WARN=-Wformat -Wimplicit -Wuninitialized -Wreturn-type
+ HG_INC=-I../inc -I../../inc -I../../../inc -I../../../../inc 
-I../../../../../inc
+ 
+ # Stronger warning checks, and warnings-->errors, for libraries and CGIs:
+ ifeq (darwin,$(findstring darwin,${OSTYPE}))
+-HG_WARN_ERR = -DJK_WARN -Wall -Werror -Wno-unused-variable
++HG_WARN_ERR = -DJK_WARN -Wall -Wno-unused-variable
+ else
+   ifeq (solaris,$(findstring solaris,${OSTYPE}))
+ HG_WARN_ERR = -DJK_WARN -Wall
+   else
+-HG_WARN_ERR = -DJK_WARN -Wall -Werror
++HG_WARN_ERR = -DJK_WARN -Wall
+   endif
+ endif
+ # Apply the stronger checks to all code on our development machine:
+@@ -37,7 +32,7 @@
+ endif
+ MKDIR=mkdir -p
+ ifeq (${STRIP},)
+-   STRIP=strip
++   STRIP=true
+ endif
+ CVS=cvs
+ 
+--- a/jkOwnLib/makefile
 b/jkOwnLib/makefile
+@@ -9,7 +9,7 @@
+ T = ../lib/$(MACHTYPE)/jkOwnLib.a
+ 
+ $(T): $(O) ../lib/$(MACHTYPE)
+-  ar rcus $(T) $(O)
++  $(AR) rcus $(T) $(O)
+ 
+ ../lib/$(MACHTYPE):
+   mkdir 

[gentoo-commits] repo/gentoo:master commit in: sci-biology/clustalw-mpi/

2017-03-08 Thread David Seifert
commit: 1aac1736236bb22fb135f1154a4fa250a8bbe05a
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:40 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aac1736

sci-biology/clustalw-mpi: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 ...lw-mpi-0.13-r1.ebuild => clustalw-mpi-0.13-r2.ebuild} | 16 ++--
 1 file changed, 10 insertions(+), 6 deletions(-)

diff --git a/sci-biology/clustalw-mpi/clustalw-mpi-0.13-r1.ebuild 
b/sci-biology/clustalw-mpi/clustalw-mpi-0.13-r2.ebuild
similarity index 85%
rename from sci-biology/clustalw-mpi/clustalw-mpi-0.13-r1.ebuild
rename to sci-biology/clustalw-mpi/clustalw-mpi-0.13-r2.ebuild
index 7d68b61be5e..76d3b80cde3 100644
--- a/sci-biology/clustalw-mpi/clustalw-mpi-0.13-r1.ebuild
+++ b/sci-biology/clustalw-mpi/clustalw-mpi-0.13-r2.ebuild
@@ -1,31 +1,35 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=4
+EAPI=6
 
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 DESCRIPTION="An MPI implemention of the ClustalW general purpose multiple 
alignment algorithm"
 
HOMEPAGE="http://www.bii.a-star.edu.sg/achievements/applications/clustalw/index.php;
 SRC_URI="http://web.bii.a-star.edu.sg/~kuobin/${PN}/${P}.tar.gz;
 
+LICENSE="public-domain"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-LICENSE="public-domain"
 IUSE="mpi_njtree static_pairalign"
 
 DEPEND="virtual/mpi"
 RDEPEND="${DEPEND}"
 
+PATCHES=( "${FILESDIR}"/${PV}-gentoo.patch )
+
 src_prepare() {
-   epatch "${FILESDIR}"/${PV}-gentoo.patch
+   default
+
if use mpi_njtree; then
sed -e "s/TREES_FLAG/#TREES_FLAG/" -i Makefile || \
-   die "Failed to configure MPI code for NJ trees."
+   die "Failed to configure MPI code for NJ trees"
fi
+
if use static_pairalign; then
sed -e "s/DDYNAMIC_SCHEDULING/DSTATIC_SCHEDULING/" -i Makefile 
|| \
-   die "Failed to configure static scheduling for pair 
alignments."
+   die "Failed to configure static scheduling for pair 
alignments"
fi
 }
 



[gentoo-commits] repo/gentoo:master commit in: sci-biology/elph/, sci-biology/elph/files/

2017-03-08 Thread David Seifert
commit: 7a172acb8e93cf85a11ddd1fdc4170ce9b5ba785
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a172acb

sci-biology/elph: Remove old

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 sci-biology/elph/Manifest |   1 -
 sci-biology/elph/elph-0.1.5.ebuild|  36 ---
 sci-biology/elph/elph-1.0.1.ebuild|  27 --
 sci-biology/elph/files/elph-0.1.5-usage.patch | 133 --
 4 files changed, 197 deletions(-)

diff --git a/sci-biology/elph/Manifest b/sci-biology/elph/Manifest
index d5427f694db..a97d2ec7392 100644
--- a/sci-biology/elph/Manifest
+++ b/sci-biology/elph/Manifest
@@ -1,2 +1 @@
-DIST ELPH-0.1.5.tar.gz 153150 SHA256 
6ffa160f85cb2569bdf869cb0514dc624afcef4f2d8a36efbd1228d1a16cf361 SHA512 
6a413d1141d8bbe88de8db64657beaf557331c11aa91add7316d301bfd71d8febf8a27aca6e56ed16e94c3d02f4932d7bc367819fceca387925d6ef6591b7a3f
 WHIRLPOOL 
d87835f180d33377dad7a23dc3fe5b78777baea1baeda588c897c6250b3eec9f68f66ee9951164764f6826b606f3081e060a10db2667b13e5580c5df355c1ad0
 DIST ELPH-1.0.1.tar.gz 113476 SHA256 
6d944401d2457d75815a34dbb5780f05df569eb1edfd00909b33c4c4c4ff40b9 SHA512 
a76cdcdaa1dc406fb0f1204b6a40ffc9f4c0840611b960a3d4299d447446e5bbf941abe7f70cee38f69a64862e186133fd60c1aac18b4b58d86f2ed5c4dd7d72
 WHIRLPOOL 
598dc3f95c93e5e36bcd20de3c985c22d650462ab27df31af54ca5b5b50c0a60fcc47637a41c449bdf7e572cee097289916aca4f0de79b804854d233ff3e20ff

diff --git a/sci-biology/elph/elph-0.1.5.ebuild 
b/sci-biology/elph/elph-0.1.5.ebuild
deleted file mode 100644
index d2d085d4c03..000
--- a/sci-biology/elph/elph-0.1.5.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2008 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Estimated Locations of Pattern Hits - Motif finder program"
-LICENSE="Artistic"
-HOMEPAGE="http://cbcb.umd.edu/software/ELPH/;
-SRC_URI="ftp://ftp.cbcb.umd.edu/pub/software/elph/ELPH-${PV}.tar.gz;
-
-SLOT="0"
-IUSE=""
-KEYWORDS="x86"
-
-S="${WORKDIR}/ELPH/sources"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}"/${P}-usage.patch
-   sed -i -e "s/CC  := g++/CC  := $(tc-getCXX)/" \
-   -e "s/-fno-exceptions -fno-rtti -D_REENTRANT -g/${CXXFLAGS}/" \
-   -e "s/LINKER:= g++/LINKER:= $(tc-getCXX)/" \
-   Makefile || die "Failed to patch Makefile."
-}
-
-src_compile() {
-   make || die "Compilation failed."
-}
-
-src_install() {
-   dobin elph || die "Failed to install program."
-   cd "${WORKDIR}"/ELPH
-   dodoc VERSION || die "Documentation installation failed."
-   newdoc Readme.ELPH README || die "Readme installation failed."
-}

diff --git a/sci-biology/elph/elph-1.0.1.ebuild 
b/sci-biology/elph/elph-1.0.1.ebuild
deleted file mode 100644
index e575c68d5d0..000
--- a/sci-biology/elph/elph-1.0.1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="Estimated Locations of Pattern Hits - Motif finder program"
-LICENSE="Artistic"
-HOMEPAGE="http://cbcb.umd.edu/software/ELPH/;
-SRC_URI="ftp://ftp.cbcb.umd.edu/pub/software/elph/ELPH-${PV}.tar.gz;
-
-SLOT="0"
-IUSE=""
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
-
-S=${WORKDIR}/ELPH/sources
-
-src_compile() {
-   emake CC="$(tc-getCXX)" LINKER="$(tc-getCXX)" \
-   CFLAGS="${CXXFLAGS} -D_REENTRANT" LDFLAGS="${LDFLAGS}" || die
-}
-
-src_install() {
-   dobin elph || die "Failed to install program."
-   cd "${WORKDIR}"/ELPH
-   dodoc VERSION || die "Documentation installation failed."
-   newdoc Readme.ELPH README || die "Readme installation failed."
-}

diff --git a/sci-biology/elph/files/elph-0.1.5-usage.patch 
b/sci-biology/elph/files/elph-0.1.5-usage.patch
deleted file mode 100644
index 139b83c1c1c..000
--- a/sci-biology/elph/files/elph-0.1.5-usage.patch
+++ /dev/null
@@ -1,133 +0,0 @@
 elph.cc.old2005-01-11 14:17:47.0 -0500
-+++ elph.cc2005-01-27 19:42:30.218350552 -0500
-@@ -26,11 +26,11 @@
-period variable\n\
-   -x : print maximum positions within sequences\n\
-   -g : find significance of motif\n\
--  -t : test if there is significant difference between the two 
--   input files for a given motif matrix;  is the file
-+  -t : test if there is significant difference between the two\n\
-+   input files for a given motif matrix;  is the 
file\n\
-containing the motif matrix\n\
--  -l : compute Least Likely Consensus 

[gentoo-commits] repo/gentoo:master commit in: sci-biology/mummer/, sci-biology/mummer/files/

2017-03-08 Thread David Seifert
commit: 47a650eb48ed78b003f4449f9e7ba775a73ce9cd
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:15:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47a650eb

sci-biology/mummer: Remove old

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 sci-biology/mummer/Manifest  |  4 --
 sci-biology/mummer/files/3.22-ldflags.patch  | 16 -
 sci-biology/mummer/files/3.22-prll.patch | 56 
 sci-biology/mummer/files/mummer-3.20-gcc43.patch | 12 
 sci-biology/mummer/mummer-3.20.ebuild| 57 
 sci-biology/mummer/mummer-3.21.ebuild| 52 ---
 sci-biology/mummer/mummer-3.22-r1.ebuild | 63 --
 sci-biology/mummer/mummer-3.9.4_alpha.ebuild | 82 
 8 files changed, 342 deletions(-)

diff --git a/sci-biology/mummer/Manifest b/sci-biology/mummer/Manifest
index e752ce6907b..53c34cf4516 100644
--- a/sci-biology/mummer/Manifest
+++ b/sci-biology/mummer/Manifest
@@ -1,5 +1 @@
-DIST MUMmer3.20.tar.gz 3155446 SHA256 
9c7880b4ce25ef3c6bed9ccdc26f1c4d7e74eb0ef1ce403907790c0f96c0f260 SHA512 
7c80bb605d57739809eb1b1cf8a579d72048e510362237d9ba64e21be18cc663769cda5dabc287832e59fb62804df34bc8336c2b42474466e7ee1e126848aecd
 WHIRLPOOL 
a08af35aee960bcd6274d3a00b1c1819d23367c81a72fd41c652c3579253b0aeeb5ef66f6dcfed60b4987c3a40830d04cd81745dce8a274cc3de0663dd54ae6f
-DIST MUMmer3.21.tar.gz 3155965 SHA256 
7fb1456c8c21eab4913a522e4b79bc5c84b7373feb54614a7003b16d47dc23b8 SHA512 
61d49e5451e1697003f7acaac690f2ede7ab71766208d3218954527c48be76ddb78d60ff40ae1bdcd4b93d3efaf21b5bd027da3722eab1ae3fa399ee726bc96e
 WHIRLPOOL 
50c7b0d7c00bf85aa8e0f8b80bf55186f8c0a53d26c3e50d2149120bc46f3632de4cb861a4d4265c1e3be731dffb71940344b238fd3e977412134b0e401cb95e
-DIST MUMmer3.22.tar.gz 3156338 SHA256 
429022a8c6a7ae55fb1dd94dbdac1b21f662d6278668f5531c735911d9fc77da SHA512 
37bbb368c679d2e98fa9b9ef10c18008c173c25ee79183eb30e34125b1dc9cd10f005b7bd7c648335a8025509d8e3456fcc7ce497c95fa71c3c5d3ed3685665f
 WHIRLPOOL 
487333ca38a9c59984ed059e8dd620ad3c0a5ae1a537e500c7b8b2d58213ac88960a13c0f25e6e0490d1209c9e73cfe8df0f8a43dbae9fd6a3e9fe3ce42da453
 DIST MUMmer3.23.tar.gz 3160143 SHA256 
1efad4f7d8cee0d8eaebb320a2d63745bb3a160bb513a15ef7af46f330af662f SHA512 
f31d36ef3e07fa4ac017c76c1c8d5f53882a59b061742d201f1f7aafb29d16af8268985285398dd90e98d276b2513d2c611f9876069b23fe82b5da1d3ebc04d3
 WHIRLPOOL 
7471d20a88f5ddf510d1e4826480706a683f005f3bab21ebb19b1fcba2c8f431435cce27a1cdf98ece8d4bb4dafcc349362037f6d526db3f564b7c013c67e882
-DIST mummer-3.9.4_alpha.tar.gz 956517 SHA256 
fb2f03c729cd078d526d6318f91061f8832c2e8bd0d519ddf3c0b6e656029cfa SHA512 
f0b962a69df6918afc7d163b30bcf5bd9eb2be663c8ac685b5e06317953cf12b9d240df8a5bfe8a9410b65cf88176cc7a71eecfc460e51df7ad1b27dc3a10fc2
 WHIRLPOOL 
8443cde87f868136eaa005db2b5b461a822097778d4c36448602a5cda058dc1dfa10daa08883248ffaba79a1d33240170b94b96548ebb56a01eaa27838d4afd6

diff --git a/sci-biology/mummer/files/3.22-ldflags.patch 
b/sci-biology/mummer/files/3.22-ldflags.patch
deleted file mode 100644
index d3c4a60a1ad..000
--- a/sci-biology/mummer/files/3.22-ldflags.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-diff --git a/src/tigr/Makefile b/src/tigr/Makefile
-index cf6b9ca..5b28d1e 100644
 a/src/tigr/Makefile
-+++ b/src/tigr/Makefile
-@@ -9,9 +9,9 @@ AUX_BIN_DIR := $(CURDIR)
- endif
- 
- OBJ_RULE = $(CXX) $(CXXFLAGS) $< -c -o $@
--BIN_RULE = $(CXX) $(CXXFLAGS) $^ -o $(BIN_DIR)/$@; \
-+BIN_RULE = $(CXX) $(LDFLAGS) $(CXXFLAGS) $^ -o $(BIN_DIR)/$@; \
-chmod 755 $(BIN_DIR)/$@
--AUX_BIN_RULE = $(CXX) $(CXXFLAGS) $^ -o $(AUX_BIN_DIR)/$@; \
-+AUX_BIN_RULE = $(CXX) $(LDFLAGS) $(CXXFLAGS) $^ -o $(AUX_BIN_DIR)/$@; \
-chmod 755 $(AUX_BIN_DIR)/$@
- VPATH := $(AUX_BIN_DIR):$(BIN_DIR)
- 

diff --git a/sci-biology/mummer/files/3.22-prll.patch 
b/sci-biology/mummer/files/3.22-prll.patch
deleted file mode 100644
index 3b24ee40214..000
--- a/sci-biology/mummer/files/3.22-prll.patch
+++ /dev/null
@@ -1,56 +0,0 @@
-diff --git a/Makefile b/Makefile
-index 4db4977..bbd00ed 100644
 a/Makefile
-+++ b/Makefile
-@@ -114,15 +114,15 @@ install: all
- 
- 
- kurtz:
--  cd $(KURTZ_SRC_DIR); $(MAKE) mummer
-+  $(MAKE) -C $(KURTZ_SRC_DIR) mummer
- 
- 
- scripts:
--  cd $(SCRIPT_DIR); $(MAKE) all
-+  $(MAKE) -C $(SCRIPT_DIR) all
- 
- 
- tigr:
--  cd $(TIGR_SRC_DIR); $(MAKE) all
-+  $(MAKE) -C $(TIGR_SRC_DIR) all
- 
- 
- uninstall: clean
-diff --git a/src/kurtz/Makefile b/src/kurtz/Makefile
-index 85dfc16..5bff793 100644
 a/src/kurtz/Makefile
-+++ b/src/kurtz/Makefile
-@@ -1,7 +1,7 @@
- all:
--  cd libbasedir; $(MAKE) all
--  cd streesrc; $(MAKE) all
--  cd mm3src; $(MAKE) all
-+  $(MAKE) -C libbasedir all
-+  $(MAKE) -C streesrc all
-+  $(MAKE) -C mm3src 

[gentoo-commits] repo/gentoo:master commit in: sci-biology/iqpnni/, sci-biology/iqpnni/files/

2017-03-08 Thread David Seifert
commit: 3f402861a84174493bfd33497780323eae32c5d1
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f402861

sci-biology/iqpnni: Remove old

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 sci-biology/iqpnni/Manifest|  1 -
 sci-biology/iqpnni/files/iqpnni-3.3.1-gcc4.3.patch | 13 -
 sci-biology/iqpnni/iqpnni-3.3.1.ebuild | 33 --
 3 files changed, 47 deletions(-)

diff --git a/sci-biology/iqpnni/Manifest b/sci-biology/iqpnni/Manifest
index 033d191091e..9e80577d22c 100644
--- a/sci-biology/iqpnni/Manifest
+++ b/sci-biology/iqpnni/Manifest
@@ -1,2 +1 @@
-DIST iqpnni-3.3.1.tar.gz 650395 SHA256 
bdc5873c5dd59b07b8f8c9547e86120b53fa3cd802ec7acdad61bacc4c3ac7d9 SHA512 
2a6abdb0d0fd2dea71849dc1f8c8de2147422b3bf41fefa10c85ee335c5ef0e02748aaccedd31bb0c901551db4f3046bf24913da64d4dc2a9ae4be774554ece9
 WHIRLPOOL 
2662c67f1fa9001b1127a5286983b752d352d102acc7fd68b94e61171367d5947817b5be89a09c173d1e4eacb347874f19936fb6e3ff79e39d6cf027b447b18c
 DIST iqpnni-3.3.2.tar.gz 646603 SHA256 
e4ffc783c7444bfadd40c9d55e9fb0275fcf7dca80aa3217768c9bf63c28567f SHA512 
6e603117b746956ad0c3b140968abf2b3b3065a18dc78cee4975f1d2e7971334fdde15e2e8d2fd7435b9490aaaffaf17a38f72a3897c951f493d866e21d94156
 WHIRLPOOL 
f4319e93dd7c1e6700fed54f402aea50bceaf23eb352011105e2f9ea9f225772981b880acbb14a388eb1f9a415a8e0751374769131f634459daa415928ff08f1

diff --git a/sci-biology/iqpnni/files/iqpnni-3.3.1-gcc4.3.patch 
b/sci-biology/iqpnni/files/iqpnni-3.3.1-gcc4.3.patch
deleted file mode 100644
index c4f49284abc..000
--- a/sci-biology/iqpnni/files/iqpnni-3.3.1-gcc4.3.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-diff -rc iqpnni-3.3.1-orig/src/constant.h iqpnni-3.3.1/src/constant.h
-*** iqpnni-3.3.1-orig/src/constant.h   2009-01-04 19:33:35.0 -0500
 iqpnni-3.3.1/src/constant.h2009-01-04 19:40:21.0 -0500
-***
-*** 36,41 
 36,42 
-  #include 
-  #include 
-  #include 
-+ #include 
-  
-  using namespace std;
-  

diff --git a/sci-biology/iqpnni/iqpnni-3.3.1.ebuild 
b/sci-biology/iqpnni/iqpnni-3.3.1.ebuild
deleted file mode 100644
index c626dcdd055..000
--- a/sci-biology/iqpnni/iqpnni-3.3.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-DESCRIPTION="Important Quartet Puzzling and NNI Operation"
-HOMEPAGE="http://www.cibiv.at/software/iqpnni/;
-SRC_URI="http://www.cibiv.at/software/iqpnni/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc"
-
-DEPEND=""
-RDEPEND="${DEPEND}"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}"/${P}-*.patch
-}
-
-src_install() {
-   dobin src/iqpnni
-
-   dodoc ChangeLog AUTHORS README NEWS TODO
-   if use doc ; then
-   dohtml manual/iqpnni-manual.html
-   insinto /usr/share/doc/${P}
-   doins manual/iqpnni-manual.pdf
-   fi
-}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/mummer/, sci-biology/mummer/files/

2017-03-08 Thread David Seifert
commit: 11d10cd16517dbbba9573653b1909995a4033571
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:15:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11d10cd1

sci-biology/mummer: Version bump to 3.23

* EAPI 6
* Make build system saner
* Fix C++ QA warnings

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 sci-biology/mummer/Manifest|   1 +
 .../files/mummer-3.23-fix-build-system.patch   | 397 +
 .../mummer/files/mummer-3.23-fix-c++-qa.patch  |  83 +
 .../mummer/files/mummer-3.23-fix-shebangs.patch|  75 
 sci-biology/mummer/mummer-3.23.ebuild  |  46 +++
 5 files changed, 602 insertions(+)

diff --git a/sci-biology/mummer/Manifest b/sci-biology/mummer/Manifest
index 8089124a742..e752ce6907b 100644
--- a/sci-biology/mummer/Manifest
+++ b/sci-biology/mummer/Manifest
@@ -1,4 +1,5 @@
 DIST MUMmer3.20.tar.gz 3155446 SHA256 
9c7880b4ce25ef3c6bed9ccdc26f1c4d7e74eb0ef1ce403907790c0f96c0f260 SHA512 
7c80bb605d57739809eb1b1cf8a579d72048e510362237d9ba64e21be18cc663769cda5dabc287832e59fb62804df34bc8336c2b42474466e7ee1e126848aecd
 WHIRLPOOL 
a08af35aee960bcd6274d3a00b1c1819d23367c81a72fd41c652c3579253b0aeeb5ef66f6dcfed60b4987c3a40830d04cd81745dce8a274cc3de0663dd54ae6f
 DIST MUMmer3.21.tar.gz 3155965 SHA256 
7fb1456c8c21eab4913a522e4b79bc5c84b7373feb54614a7003b16d47dc23b8 SHA512 
61d49e5451e1697003f7acaac690f2ede7ab71766208d3218954527c48be76ddb78d60ff40ae1bdcd4b93d3efaf21b5bd027da3722eab1ae3fa399ee726bc96e
 WHIRLPOOL 
50c7b0d7c00bf85aa8e0f8b80bf55186f8c0a53d26c3e50d2149120bc46f3632de4cb861a4d4265c1e3be731dffb71940344b238fd3e977412134b0e401cb95e
 DIST MUMmer3.22.tar.gz 3156338 SHA256 
429022a8c6a7ae55fb1dd94dbdac1b21f662d6278668f5531c735911d9fc77da SHA512 
37bbb368c679d2e98fa9b9ef10c18008c173c25ee79183eb30e34125b1dc9cd10f005b7bd7c648335a8025509d8e3456fcc7ce497c95fa71c3c5d3ed3685665f
 WHIRLPOOL 
487333ca38a9c59984ed059e8dd620ad3c0a5ae1a537e500c7b8b2d58213ac88960a13c0f25e6e0490d1209c9e73cfe8df0f8a43dbae9fd6a3e9fe3ce42da453
+DIST MUMmer3.23.tar.gz 3160143 SHA256 
1efad4f7d8cee0d8eaebb320a2d63745bb3a160bb513a15ef7af46f330af662f SHA512 
f31d36ef3e07fa4ac017c76c1c8d5f53882a59b061742d201f1f7aafb29d16af8268985285398dd90e98d276b2513d2c611f9876069b23fe82b5da1d3ebc04d3
 WHIRLPOOL 
7471d20a88f5ddf510d1e4826480706a683f005f3bab21ebb19b1fcba2c8f431435cce27a1cdf98ece8d4bb4dafcc349362037f6d526db3f564b7c013c67e882
 DIST mummer-3.9.4_alpha.tar.gz 956517 SHA256 
fb2f03c729cd078d526d6318f91061f8832c2e8bd0d519ddf3c0b6e656029cfa SHA512 
f0b962a69df6918afc7d163b30bcf5bd9eb2be663c8ac685b5e06317953cf12b9d240df8a5bfe8a9410b65cf88176cc7a71eecfc460e51df7ad1b27dc3a10fc2
 WHIRLPOOL 
8443cde87f868136eaa005db2b5b461a822097778d4c36448602a5cda058dc1dfa10daa08883248ffaba79a1d33240170b94b96548ebb56a01eaa27838d4afd6

diff --git a/sci-biology/mummer/files/mummer-3.23-fix-build-system.patch 
b/sci-biology/mummer/files/mummer-3.23-fix-build-system.patch
new file mode 100644
index 000..b92f75c0771
--- /dev/null
+++ b/sci-biology/mummer/files/mummer-3.23-fix-build-system.patch
@@ -0,0 +1,397 @@
+Fix build system to restore some sanity
+
+--- a/Makefile
 b/Makefile
+@@ -27,31 +27,27 @@
+ 
+ 
+ TOP_DIR := $(CURDIR)
+-BIN_DIR := $(TOP_DIR)
+-AUX_BIN_DIR := $(TOP_DIR)/aux_bin
++
++BIN_DIR = $(EPREFIX)/usr/bin
++SCRIPT_DIR  = $(EPREFIX)/usr/share/mummer/scripts
++AUX_BIN_DIR = $(EPREFIX)/usr/bin
+ 
+ DOC_DIR   := $(TOP_DIR)/docs
+ SCRIPT_DIR:= $(TOP_DIR)/scripts
+ TIGR_SRC_DIR  := $(TOP_DIR)/src/tigr
+ KURTZ_SRC_DIR := $(TOP_DIR)/src/kurtz
+ 
+-CC   := $(filter /%,$(shell /bin/sh -c 'type gcc'))
+-CXX  := $(filter /%,$(shell /bin/sh -c 'type g++'))
+ SED  := $(filter /%,$(shell /bin/sh -c 'type sed'))
+ CSH  := $(filter /%,$(shell /bin/sh -c 'type csh'))
+ PERL := $(filter /%,$(shell /bin/sh -c 'type perl'))
+-AR   := $(filter /%,$(shell /bin/sh -c 'type ar'))
+ 
+-CXXFLAGS = -O3
+-CFLAGS = -O3
+-LDFLAGS  =
+ 
+ FLATS = ACKNOWLEDGEMENTS COPYRIGHT INSTALL LICENSE Makefile README ChangeLog
+ 
+ 
+ 
+ #-- EXPORT THESE VARIABLES TO OTHER MAKEFILES
+-export BIN_DIR AUX_BIN_DIR CXX CC CFLAGS CXXFLAGS LDFLAGS
++export BIN_DIR SCRIPT_DIR AUX_BIN_DIR
+ 
+ 
+ 
+@@ -114,15 +110,15 @@
+ 
+ 
+ kurtz:
+-  cd $(KURTZ_SRC_DIR); $(MAKE) mummer
++  $(MAKE) -C $(KURTZ_SRC_DIR) mummer
+ 
+ 
+ scripts:
+-  cd $(SCRIPT_DIR); $(MAKE) all
++  $(MAKE) -C $(SCRIPT_DIR) all
+ 
+ 
+ tigr:
+-  cd $(TIGR_SRC_DIR); $(MAKE) all
++  $(MAKE) -C $(TIGR_SRC_DIR) all
+ 
+ 
+ uninstall: clean
+--- a/scripts/Makefile
 b/scripts/Makefile
+@@ -1,21 +1,10 @@
+-#-- Imported variables from top level makefile
+-# BIN_DIR AUX_BIN_DIR CXX CC CFLAGS CXXFLAGS LDFLAGS
++BIN_DIR = $(EPREFIX)/usr/bin
++SCRIPT_DIR  = $(EPREFIX)/usr/share/mummer/scripts
++AUX_BIN_DIR = $(EPREFIX)/usr/bin
+ 
+-ifndef 

[gentoo-commits] repo/gentoo:master commit in: sci-biology/blat/, sci-biology/blat/files/

2017-03-08 Thread David Seifert
commit: dc849f2aa34abfd239c23d07515ff42917fd8552
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 21:35:39 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 22:16:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc849f2a

sci-biology/blat: Remove old

Package-Manager: Portage-2.3.4, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4165

 sci-biology/blat/blat-34-r1.ebuild |  44 ---
 sci-biology/blat/blat-34.ebuild|  33 -
 sci-biology/blat/files/34-gentoo.patch | 226 -
 3 files changed, 303 deletions(-)

diff --git a/sci-biology/blat/blat-34-r1.ebuild 
b/sci-biology/blat/blat-34-r1.ebuild
deleted file mode 100644
index 52079d22bea..000
--- a/sci-biology/blat/blat-34-r1.ebuild
+++ /dev/null
@@ -1,44 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-inherit eutils toolchain-funcs
-
-MY_PN="${PN}Src"
-
-DESCRIPTION="The BLAST-Like Alignment Tool, a fast genomic sequence aligner"
-HOMEPAGE="http://www.cse.ucsc.edu/~kent/;
-SRC_URI="http://www.soe.ucsc.edu/~kent/src/${MY_PN}${PV}.zip;
-
-SLOT="0"
-LICENSE="blat"
-KEYWORDS="~amd64 ~x86 ~x64-macos"
-IUSE=""
-
-S="${WORKDIR}/${MY_PN}"
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PV}-gentoo.patch
-   sed \
-   -e "1i\CFLAGS=${CFLAGS}" \
-   -e "1i\LDFLAGS=${LDFLAGS}" \
-   -i inc/common.mk || die
-   tc-export CC
-}
-
-src_compile() {
-   MACHTYPE=$(tc-arch)
-   [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
-   mkdir -p "${S}/bin/${MACHTYPE}"
-   emake MACHTYPE="${MACHTYPE}" HOME="${S}" LDFLAGS="${LDFLAGS}"
-}
-
-src_install() {
-   MACHTYPE=$(tc-arch)
-   [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
-   dobin "${S}/bin/${MACHTYPE}/"*
-}

diff --git a/sci-biology/blat/blat-34.ebuild b/sci-biology/blat/blat-34.ebuild
deleted file mode 100644
index 3ec0eb05bdb..000
--- a/sci-biology/blat/blat-34.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit toolchain-funcs
-
-DESCRIPTION="The BLAST-Like Alignment Tool, a fast genomic sequence aligner"
-LICENSE="blat"
-HOMEPAGE="http://www.cse.ucsc.edu/~kent/;
-SLOT="0"
-IUSE=""
-KEYWORDS="amd64 x86"
-
-MY_PN="${PN}Src"
-SRC_URI="http://www.soe.ucsc.edu/~kent/src/${MY_PN}${PV}.zip;
-S="${WORKDIR}/${MY_PN}"
-
-DEPEND="app-arch/unzip"
-RDEPEND=""
-
-src_compile() {
-   MACHTYPE=$(tc-arch)
-   [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
-   sed -i 's/-Werror//; s/CFLAGS=//;' "${S}/inc/common.mk"
-   sed -i 's/\(${STRIP} \)/#\1/' 
"${S}"/{*/makefile,utils/*/makefile,*/*.mk}
-   mkdir -p "${S}/bin/${MACHTYPE}"
-   emake MACHTYPE="${MACHTYPE}" HOME="${S}" || die "emake failed"
-}
-
-src_install() {
-   MACHTYPE=$(tc-arch)
-   [[ ${MACHTYPE} == "x86" ]] && MACHTYPE="i386"
-   dobin "${S}/bin/${MACHTYPE}/"*
-}

diff --git a/sci-biology/blat/files/34-gentoo.patch 
b/sci-biology/blat/files/34-gentoo.patch
deleted file mode 100644
index 8bdd05bff68..000
--- a/sci-biology/blat/files/34-gentoo.patch
+++ /dev/null
@@ -1,226 +0,0 @@
- blat/makefile |2 +-
- gfClient/makefile |2 +-
- gfServer/makefile |2 +-
- hg/pslPretty/makefile |2 +-
- hg/pslReps/makefile   |2 +-
- hg/pslSort/makefile   |2 +-
- inc/common.mk |   11 +++
- makefile  |   28 ++--
- utils/faToNib/makefile|2 +-
- utils/faToTwoBit/makefile |2 +-
- utils/nibFrag/makefile|2 +-
- utils/twoBitInfo/makefile |2 +-
- utils/twoBitToFa/makefile |2 +-
- 13 files changed, 28 insertions(+), 33 deletions(-)
-
-diff --git a/blat/makefile b/blat/makefile
-index b889c7b..739503a 100644
 a/blat/makefile
-+++ b/blat/makefile
-@@ -7,7 +7,7 @@ MYLIBS =  $(MYLIBDIR)/jkOwnLib.a $(MYLIBDIR)/jkweb.a
- O = blat.o
- 
- blat: $O $(MYLIBS)
--  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/blat $O $(MYLIBS) $L
-+  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/blat $O $(MYLIBS) $L
-   ${STRIP} ${BINDIR}/blat${EXE}
- 
- all:
-diff --git a/gfClient/makefile b/gfClient/makefile
-index c3288de..36e957e 100644
 a/gfClient/makefile
-+++ b/gfClient/makefile
-@@ -8,5 +8,5 @@ O = gfClient.o
- X = gfClient
- 
- gfClient: $O $(MYLIBS)
--  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
-+  ${CC} ${COPT} ${CFLAGS} ${LDFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) $L
-   ${STRIP} ${BINDIR}/$X${EXE}
-diff --git a/gfServer/makefile b/gfServer/makefile
-index c06b3a5..f042d22 100644
 a/gfServer/makefile
-+++ b/gfServer/makefile
-@@ -8,7 +8,7 @@ O = gfServer.o
- X = gfServer
- 
- gfServer: $O $(MYLIBS)
--  ${CC} ${COPT} ${CFLAGS} -o ${BINDIR}/$X $O $(MYLIBS) 

[gentoo-commits] repo/gentoo:master commit in: media-libs/game-music-emu/

2017-03-08 Thread Michael Weber
commit: 1e00616797a2efd76bab926ba3296185889eac4b
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:12:28 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 22:12:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e006167

media-libs/game-music-emu: ppc stable (bug 603092).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 media-libs/game-music-emu/game-music-emu-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild 
b/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild
index dfe8f29de31..7327946378d 100644
--- a/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild
+++ b/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://bitbucket.org/mpyne/game-music-emu/downloads/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ~ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 DOCS="changes.txt design.txt gme.txt readme.txt"



[gentoo-commits] repo/gentoo:master commit in: sci-libs/geos/

2017-03-08 Thread Michael Weber
commit: 51e6a01a67e54e9b7379149a1642e7644a0ca249
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:06:24 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 22:06:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51e6a01a

sci-libs/geos: arm ppc ppc64 stable (bug 611434).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 sci-libs/geos/geos-3.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/geos/geos-3.6.1.ebuild b/sci-libs/geos/geos-3.6.1.ebuild
index 9d79d0258e1..f214ee8fbe4 100644
--- a/sci-libs/geos/geos-3.6.1.ebuild
+++ b/sci-libs/geos/geos-3.6.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://download.osgeo.org/geos/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
+KEYWORDS="amd64 arm ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris"
 IUSE="doc python ruby static-libs"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-libs/rb_libtorrent/

2017-03-08 Thread Michael Weber
commit: db591d9fafad073062ec98ef47b59756b16f4bcc
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 22:00:43 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 22:00:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db591d9f

net-libs/rb_libtorrent: ppc ppc64 stable (bug 530720).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild 
b/net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild
index 0f63abd3fe6..5ef5a172620 100644
--- a/net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild
+++ b/net-libs/rb_libtorrent/rb_libtorrent-1.0.10.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/arvidn/libtorrent/releases/download/libtorrent-${MY_
 
 LICENSE="BSD"
 SLOT="0/8"
-KEYWORDS="~amd64 arm ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~amd64 arm ppc ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE="debug +dht doc examples +geoip libressl python +ssl static-libs test"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



[gentoo-commits] repo/gentoo:master commit in: sys-apps/man-db/

2017-03-08 Thread Michael Weber
commit: 646be4ee5b45808ad406cd58a6f04f100a50ffe7
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 21:54:44 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 21:54:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646be4ee

sys-apps/man-db: ppc ppc64 stable (bug 602588).

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="amd64 arm arm64 ppc ppc64"

 sys-apps/man-db/man-db-2.7.6.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild 
b/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild
index 1e4defc1fc3..3daf0ead32a 100644
--- a/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild
+++ b/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="berkdb +gdbm +manpager nls selinux static-libs zlib"
 
 CDEPEND=">=dev-libs/libpipeline-1.4.0



[gentoo-commits] repo/gentoo:master commit in: sys-devel/binutils/

2017-03-08 Thread Michael Weber
commit: b1b58004d61910b194350a3aeda58ec56b9c6190
Author: Michael Weber  gentoo  org>
AuthorDate: Wed Mar  8 21:57:37 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Wed Mar  8 21:57:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b58004

sys-devel/binutils: arm ppc ppc64 stable (bug 595288).

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 sys-devel/binutils/binutils-2.26.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/binutils/binutils-2.26.1.ebuild 
b/sys-devel/binutils/binutils-2.26.1.ebuild
index 22ce4abd710..fe59738e853 100644
--- a/sys-devel/binutils/binutils-2.26.1.ebuild
+++ b/sys-devel/binutils/binutils-2.26.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -7,4 +7,4 @@ PATCHVER="1.0"
 ELF2FLT_VER=""
 inherit toolchain-binutils
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 m68k ~mips ~ppc ~ppc64 s390 sh 
~sparc ~x86 ~amd64-fbsd -sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 m68k ~mips ppc ppc64 s390 sh 
~sparc ~x86 ~amd64-fbsd -sparc-fbsd ~x86-fbsd"



[gentoo-commits] repo/gentoo:master commit in: games-util/lgogdownloader/

2017-03-08 Thread James Le Cuirot
commit: c1227c2ba06c8bf2ca8933810c12bbdde7730f6f
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Mar  8 21:38:05 2017 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Mar  8 21:38:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1227c2b

games-util/lgogdownloader: Version bump to 3.2

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 games-util/lgogdownloader/Manifest  | 2 +-
 .../{lgogdownloader-3.1.ebuild => lgogdownloader-3.2.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/lgogdownloader/Manifest 
b/games-util/lgogdownloader/Manifest
index e352f58d342..2daae536192 100644
--- a/games-util/lgogdownloader/Manifest
+++ b/games-util/lgogdownloader/Manifest
@@ -1 +1 @@
-DIST lgogdownloader-3.1.tar.gz 60834 SHA256 
010d98e23108f605a553efd42ae68abd9ec78db1b2cd18cab89f8fb7e20484c9 SHA512 
e15f6d359298bee0922439703ca256ad9f5f07052a12b241fe03031663dce44bd61427dbe9739115d529736b261a51068c5b2c7669fe4a4b4c0553c2ed77a793
 WHIRLPOOL 
061d9ffad072dae03f509e637b081d48b293d2324ed9ef32f0341b32bc00d441db79227cc4c206bee11b426a0c5960c1a78e9471d2ce9f489070f4173c21c84f
+DIST lgogdownloader-3.2.tar.gz 68438 SHA256 
9e60af50c18533884ca317778b291152d5f04d93dfd3dc2579f6f965538b2031 SHA512 
b1d8d89b303c77e17601b19e09346b8d632bc049d40741442ad88646d8764e4efd3a04edcbcae5a5e098df3251ae88d15d355d06cbb03cf313a8619d3111ff35
 WHIRLPOOL 
f584c1e86d0e867b54d5e3415bcd0403baf783a9feb3d2ed3024c3dbfbe0892ddbf3dc79c535d8692570a8fe9dcab0cace38032ba255d805adb3fd300af3f79a

diff --git a/games-util/lgogdownloader/lgogdownloader-3.1.ebuild 
b/games-util/lgogdownloader/lgogdownloader-3.2.ebuild
similarity index 100%
rename from games-util/lgogdownloader/lgogdownloader-3.1.ebuild
rename to games-util/lgogdownloader/lgogdownloader-3.2.ebuild



[gentoo-commits] repo/gentoo:master commit in: media-libs/x264/

2017-03-08 Thread Markus Meier
commit: 6ff95afeb6a7f095603fc043047621b0cf160fae
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar  8 21:33:32 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar  8 21:33:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ff95afe

media-libs/x264: disable asm for armv5

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 media-libs/x264/x264-0.0.20160712.ebuild | 2 +-
 media-libs/x264/x264-.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/x264/x264-0.0.20160712.ebuild 
b/media-libs/x264/x264-0.0.20160712.ebuild
index de47d5f3e02..e69dab36e1c 100644
--- a/media-libs/x264/x264-0.0.20160712.ebuild
+++ b/media-libs/x264/x264-0.0.20160712.ebuild
@@ -38,7 +38,7 @@ multilib_src_configure() {
tc-export CC
local asm_conf=""
 
-   if [[ ${ABI} == x86* ]] && { use pic || use !cpu_flags_x86_sse ; } || 
[[ ${ABI} == "x32" ]]; then
+   if [[ ${ABI} == x86* ]] && { use pic || use !cpu_flags_x86_sse ; } || 
[[ ${ABI} == "x32" ]] || [[ ${CHOST} == armv5* ]]; then
asm_conf=" --disable-asm"
fi
 

diff --git a/media-libs/x264/x264-.ebuild b/media-libs/x264/x264-.ebuild
index 52b98306616..ad54c5cdf91 100644
--- a/media-libs/x264/x264-.ebuild
+++ b/media-libs/x264/x264-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -38,7 +38,7 @@ multilib_src_configure() {
tc-export CC
local asm_conf=""
 
-   if [[ ${ABI} == x86* ]] && { use pic || use !cpu_flags_x86_sse ; } || 
[[ ${ABI} == "x32" ]]; then
+   if [[ ${ABI} == x86* ]] && { use pic || use !cpu_flags_x86_sse ; } || 
[[ ${ABI} == "x32" ]] || [[ ${CHOST} == armv5* ]]; then
asm_conf=" --disable-asm"
fi
 



[gentoo-commits] repo/gentoo:master commit in: profiles/default/bsd/

2017-03-08 Thread Michał Górny
commit: 87e1e0283760c416a65e0da40ab24ef0fa5e6228
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 26 18:06:49 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 21:30:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87e1e028

profiles/default/bsd: Default *BSD to libcxx w/ libcxxrt

 profiles/default/bsd/package.use | 8 
 1 file changed, 8 insertions(+)

diff --git a/profiles/default/bsd/package.use b/profiles/default/bsd/package.use
new file mode 100644
index 000..998d17f2d17
--- /dev/null
+++ b/profiles/default/bsd/package.use
@@ -0,0 +1,8 @@
+# Copyright 1999-2017 Gentoo Foundation.
+# Distributed under the terms of the GNU General Public License, v2
+# $Id$
+
+# Michał Górny  (26 Jan 2017)
+# Preserve the old defaults on *BSD systems.
+sys-libs/libcxx -libcxxabi libcxxrt -libunwind
+sys-libs/libcxxrt -libunwind



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxx/

2017-03-08 Thread Michał Górny
commit: 3e61b7225053175b8427bc79c44c6fd2ab1e433b
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 26 18:09:03 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 21:30:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e61b722

sys-libs/libcxx: Switch the default to libcxxabi following upstream

 sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild | 2 +-
 sys-libs/libcxx/libcxx-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild 
b/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild
index afd7cbaf85b..005b6fa9bdd 100644
--- a/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild
+++ b/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="http://www.llvm.org/pre-releases/${PV/_//}/${P/_/}.src.tar.xz;
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="elibc_glibc elibc_musl libcxxabi +libcxxrt libunwind +static-libs test"
+IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt libunwind +static-libs test"
 REQUIRED_USE="libunwind? ( || ( libcxxabi libcxxrt ) )
?? ( libcxxabi libcxxrt )"
 

diff --git a/sys-libs/libcxx/libcxx-.ebuild 
b/sys-libs/libcxx/libcxx-.ebuild
index 1618ed8ba44..51878b61ee3 100644
--- a/sys-libs/libcxx/libcxx-.ebuild
+++ b/sys-libs/libcxx/libcxx-.ebuild
@@ -32,7 +32,7 @@ if [[ ${PV} !=  ]] ; then
 else
KEYWORDS=""
 fi
-IUSE="elibc_glibc elibc_musl libcxxabi +libcxxrt libunwind +static-libs test"
+IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt libunwind +static-libs test"
 REQUIRED_USE="libunwind? ( || ( libcxxabi libcxxrt ) )
?? ( libcxxabi libcxxrt )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxx/

2017-03-08 Thread Michał Górny
commit: 25f61afa3d356cb8fc035c06859f0fd82714b956
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 26 18:15:53 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 21:30:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25f61afa

sys-libs/libcxx: Enable libunwind by default

 sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild | 2 +-
 sys-libs/libcxx/libcxx-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild 
b/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild
index 005b6fa9bdd..9dc98c29ec1 100644
--- a/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild
+++ b/sys-libs/libcxx/libcxx-4.0.0_rc3.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="http://www.llvm.org/pre-releases/${PV/_//}/${P/_/}.src.tar.xz;
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt libunwind +static-libs test"
+IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt +libunwind +static-libs test"
 REQUIRED_USE="libunwind? ( || ( libcxxabi libcxxrt ) )
?? ( libcxxabi libcxxrt )"
 

diff --git a/sys-libs/libcxx/libcxx-.ebuild 
b/sys-libs/libcxx/libcxx-.ebuild
index 51878b61ee3..0f39966844b 100644
--- a/sys-libs/libcxx/libcxx-.ebuild
+++ b/sys-libs/libcxx/libcxx-.ebuild
@@ -32,7 +32,7 @@ if [[ ${PV} !=  ]] ; then
 else
KEYWORDS=""
 fi
-IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt libunwind +static-libs test"
+IUSE="elibc_glibc elibc_musl +libcxxabi libcxxrt +libunwind +static-libs test"
 REQUIRED_USE="libunwind? ( || ( libcxxabi libcxxrt ) )
?? ( libcxxabi libcxxrt )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxxabi/

2017-03-08 Thread Michał Górny
commit: 5c4bde9c1137e0350abb5749f6a03d2cd3995227
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 26 18:10:02 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 21:30:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c4bde9c

sys-libs/libcxxabi: Enable libunwind by default

Enable libunwind by default as it is required to build gcc-free
executables, and this is the primary goal of using libc++ on Gentoo.

 sys-libs/libcxxabi/libcxxabi-4.0.0_rc3.ebuild | 2 +-
 sys-libs/libcxxabi/libcxxabi-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/libcxxabi/libcxxabi-4.0.0_rc3.ebuild 
b/sys-libs/libcxxabi/libcxxabi-4.0.0_rc3.ebuild
index 6d4ac0abfd6..c5bb8ee6920 100644
--- a/sys-libs/libcxxabi/libcxxabi-4.0.0_rc3.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-4.0.0_rc3.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="http://www.llvm.org/pre-releases/${PV/_//}/${P/_/}.src.tar.xz
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="libunwind +static-libs test"
+IUSE="+libunwind +static-libs test"
 
 RDEPEND="
libunwind? (

diff --git a/sys-libs/libcxxabi/libcxxabi-.ebuild 
b/sys-libs/libcxxabi/libcxxabi-.ebuild
index 438189560ed..df5992a45c7 100644
--- a/sys-libs/libcxxabi/libcxxabi-.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-.ebuild
@@ -19,7 +19,7 @@ EGIT_REPO_URI="http://llvm.org/git/libcxxabi.git
 LICENSE="|| ( UoI-NCSA MIT )"
 SLOT="0"
 KEYWORDS=""
-IUSE="libunwind +static-libs test"
+IUSE="+libunwind +static-libs test"
 
 RDEPEND="
libunwind? (



[gentoo-commits] repo/gentoo:master commit in: sys-libs/libcxxrt/

2017-03-08 Thread Michał Górny
commit: 177229a7a25e877835ee6f0dbb9f967da6b707ce
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 26 18:17:43 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 21:30:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=177229a7

sys-libs/libcxxrt: Enable libunwind by default (in live ebuild)

 sys-libs/libcxxrt/libcxxrt-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-libs/libcxxrt/libcxxrt-.ebuild 
b/sys-libs/libcxxrt/libcxxrt-.ebuild
index 718dc77d472..d63a0b3e844 100644
--- a/sys-libs/libcxxrt/libcxxrt-.ebuild
+++ b/sys-libs/libcxxrt/libcxxrt-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -25,7 +25,7 @@ if [ "${PV%}" = "${PV}" ] ; then
 else
KEYWORDS=""
 fi
-IUSE="libunwind +static-libs"
+IUSE="+libunwind +static-libs"
 
 RDEPEND="libunwind? ( || ( 
>=sys-libs/libunwind-1.0.1-r1[static-libs?,${MULTILIB_USEDEP}]
sys-libs/llvm-libunwind[static-libs?,${MULTILIB_USEDEP}] ) )"



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64-fbsd/clang/

2017-03-08 Thread Michał Górny
commit: ce766019be510144ca335cff9d6ce835449407e3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 26 18:03:20 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 21:30:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce766019

profiles/arch/amd64-fbsd/clang: Mask impossible libcxx[libcxxabi]

 profiles/arch/amd64-fbsd/clang/package.use.mask | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/amd64-fbsd/clang/package.use.mask 
b/profiles/arch/amd64-fbsd/clang/package.use.mask
index 54e4530670f..6a9ceb1e7ce 100644
--- a/profiles/arch/amd64-fbsd/clang/package.use.mask
+++ b/profiles/arch/amd64-fbsd/clang/package.use.mask
@@ -1,7 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Disable libcxxabi since it collides with forced libcxxrt
 # Build libcxxrt over libgcc_s since that is what clang defaults to.
+sys-libs/libcxx libcxxabi libunwind
 sys-libs/libcxxrt libunwind
 
 # Needs to be fixed: cxx useflag enables plugins and gold.



[gentoo-commits] repo/gentoo:master commit in: sys-apps/man-db/

2017-03-08 Thread Markus Meier
commit: f56265c053e55986fa663b2b7daf8b609675d7e1
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar  8 20:51:54 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar  8 20:51:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f56265c0

sys-apps/man-db: arm stable, bug #602588

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

 sys-apps/man-db/man-db-2.7.6.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild 
b/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild
index 4d7ce5816e8..1e4defc1fc3 100644
--- a/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild
+++ b/sys-apps/man-db/man-db-2.7.6.1-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://nongnu/${PN}/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="berkdb +gdbm +manpager nls selinux static-libs zlib"
 
 CDEPEND=">=dev-libs/libpipeline-1.4.0



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-meta/

2017-03-08 Thread Markus Meier
commit: 153548f31376ec317df54dcbd5bbe7aedeafa322
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Mar  8 20:50:51 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Mar  8 20:50:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=153548f3

media-plugins/gst-plugins-meta: add ~arm

Package-Manager: Portage-2.3.4, Repoman-2.3.2
RepoMan-Options: --include-arches="arm"

 media-plugins/gst-plugins-meta/gst-plugins-meta-1.10.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.10.3.ebuild 
b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.10.3.ebuild
index 2418dec503c..dc2d662017b 100644
--- a/media-plugins/gst-plugins-meta/gst-plugins-meta-1.10.3.ebuild
+++ b/media-plugins/gst-plugins-meta/gst-plugins-meta-1.10.3.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://www.gentoo.org;
 
 LICENSE="metapackage"
 SLOT="1.0"
-KEYWORDS="amd64 hppa ppc ppc64 ~sh x86 ~amd64-fbsd ~amd64-linux ~x86-linux 
~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm hppa ppc ppc64 ~sh x86 ~amd64-fbsd ~amd64-linux 
~x86-linux ~x64-macos ~x86-solaris"
 IUSE="aac a52 alsa cdda dts dv dvb dvd ffmpeg flac http jack lame libass 
libvisual mms mp3 modplug mpeg ogg opus oss pulseaudio taglib theora v4l vaapi 
vcd vorbis vpx wavpack X x264"
 REQUIRED_USE="opus? ( ogg ) theora? ( ogg ) vorbis? ( ogg )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-util/edb-debugger/

2017-03-08 Thread Amy Liffey
commit: ee5121397329fc0f3c7834b7223612fdaa073267
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed Mar  8 20:41:24 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed Mar  8 20:41:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee512139

dev-util/edb-debugger: fix icon. By Petross404.

Package-Manager: portage-2.3.0

 dev-util/edb-debugger/edb-debugger-0.9.21.ebuild | 15 ++-
 dev-util/edb-debugger/edb-debugger-.ebuild   |  4 
 2 files changed, 18 insertions(+), 1 deletion(-)

diff --git a/dev-util/edb-debugger/edb-debugger-0.9.21.ebuild 
b/dev-util/edb-debugger/edb-debugger-0.9.21.ebuild
index 19de2513c9c..8d159b715b6 100644
--- a/dev-util/edb-debugger/edb-debugger-0.9.21.ebuild
+++ b/dev-util/edb-debugger/edb-debugger-0.9.21.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit cmake-utils
+inherit cmake-utils eutils
 
 DESCRIPTION="edb is a cross platform x86/x86-64 debugger, inspired by Ollydbg"
 HOMEPAGE="https://github.com/eteran/edb-debugger;
@@ -34,6 +34,13 @@ DEPEND="
${RDEPEND}"
 
 src_prepare(){
+   #Remove this in a future version; There won't be any edb48-logo.png
+   sed -i  '/edb48-logo/d' CMakeLists.txt || die
+
+   #Make the desktop's entries somewhat cuter
+   sed -i -e 's/GenericName=edb debugger/GenericName=Evan\x27s Debugger/' 
edb.desktop || die
+   sed -i -e 's/Comment=edb debugger/Comment=edb is a cross platform 
x86\/x86-64 debugger/' edb.desktop || die
+
if ! use graphviz; then
sed -i '/pkg_check_modules(GRAPHVIZ/d' CMakeLists.txt || die
fi
@@ -54,6 +61,12 @@ src_configure() {
cmake-utils_src_configure
 }
 
+src_install() {
+   cd src/images/ || die
+   newicon "edb48-logo.png" "edb.png"
+   cmake-utils_src_install
+}
+
 pkg_postinst() {
if use legacy-mem-write; then
ewarn "You really do not want to turn on legacy-mem-write 
unless you need it."

diff --git a/dev-util/edb-debugger/edb-debugger-.ebuild 
b/dev-util/edb-debugger/edb-debugger-.ebuild
index 6b7ad6967a4..830af5e21a9 100644
--- a/dev-util/edb-debugger/edb-debugger-.ebuild
+++ b/dev-util/edb-debugger/edb-debugger-.ebuild
@@ -32,6 +32,10 @@ DEPEND="
${RDEPEND}"
 
 src_prepare(){
+   #Make the desktop's entries somewhat cuter
+   sed -i -e 's/GenericName=edb debugger/GenericName=Evan\x27s Debugger/' 
edb.desktop || die
+   sed -i -e 's/Comment=edb debugger/Comment=edb is a cross platform 
x86\/x86-64 debugger/' edb.desktop || die
+
if ! use graphviz; then
sed -i '/pkg_check_modules(GRAPHVIZ/d' CMakeLists.txt || die
fi



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2017-03-08 Thread Andreas Sturmlechner
commit: 476da1e27be3e650ca90ff446a939750857395c5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Mar  8 19:18:56 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar  8 19:42:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=476da1e2

app-office/libreoffice: Restore keywords on 5.2.6.2

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-office/libreoffice/libreoffice-5.2.6.2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-office/libreoffice/libreoffice-5.2.6.2.ebuild 
b/app-office/libreoffice/libreoffice-5.2.6.2.ebuild
index 504a63dfd89..65dc7d55a84 100644
--- a/app-office/libreoffice/libreoffice-5.2.6.2.ebuild
+++ b/app-office/libreoffice/libreoffice-5.2.6.2.ebuild
@@ -83,8 +83,7 @@ $(printf 'libreoffice_extensions_%s ' ${LO_EXTS})"
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${PV} == ** ]] || \
-KEYWORDS=""
-#KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
 
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice-l10n/

2017-03-08 Thread Andreas Sturmlechner
commit: dad206808e855efa817723e776ae26197a2a4439
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Mar  8 19:36:30 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar  8 19:42:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad20680

app-office/libreoffice-l10n: 5.2.6.2 version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-office/libreoffice-l10n/Manifest   | 168 +
 .../libreoffice-l10n-5.2.6.2.ebuild|  88 +++
 2 files changed, 256 insertions(+)

diff --git a/app-office/libreoffice-l10n/Manifest 
b/app-office/libreoffice-l10n/Manifest
index cf4310fce82..9fcd675e834 100644
--- a/app-office/libreoffice-l10n/Manifest
+++ b/app-office/libreoffice-l10n/Manifest
@@ -334,6 +334,174 @@ DIST LibreOffice_5.2.5.1_Linux_x86_rpm_langpack_xh.tar.gz 
490167 SHA256 5ef8ff0e
 DIST LibreOffice_5.2.5.1_Linux_x86_rpm_langpack_zh-CN.tar.gz 562612 SHA256 
6ddc43494978869a16f438e3b655573c6d09966f6028b4551e660c01477178de SHA512 
06f77fbaabbe0aae358844293f7aac64ed8379f1ab79bc5b0a6f9b22903af587b691f9ad92d3200a9691b62e5781a16d7c435d170e2a1e00b68ae84498a9c074
 WHIRLPOOL 
09d2949f76518df7b5691ea57a3ddac07c0a216e5efefa97fb7b7b926a71d9b8677488ae78dd8d831639938d940c1569fa1bd333719d6a7cd60143d578225142
 DIST LibreOffice_5.2.5.1_Linux_x86_rpm_langpack_zh-TW.tar.gz 559411 SHA256 
12a00ff224ea088a882cb25d8d4a83cd94c344c952c9025afbbd679180f7dfc2 SHA512 
f3c5607ed719516e1307b0dcfa3a1268bd43a734c5c43c96cf2d77a621dcf802f1f2dd11980afbf12817b7311863993c55178f0c328e6476f5edb205afb5cc5e
 WHIRLPOOL 
0806122ef9be8f43ae4851102cb998df161101ace93ace42db105faa919e0061867a02f31599d953123b67dbbd90f68014c29c850eb2fd177419894594b7b8a9
 DIST LibreOffice_5.2.5.1_Linux_x86_rpm_langpack_zu.tar.gz 492877 SHA256 
669ba1e82ff2ef9b6308a5a38f997f7cb8d71db939e69da1675094b45329ec3c SHA512 
c7d1d55fbc418dac9c40f03879085a7e3e8564937bdfaed421d9cc20904809b2267ee445b55e9da6989f90294b04299d4ab714b6e48a633eb97f836de513bfef
 WHIRLPOOL 
3508c175471af12834bfaf314d21cf0fd24451e90d243862c3581ed222c2fc51ef20f48ffd3834b5dfbc5f2754595043dc00cfb80fc9db8f2372fd09839d7e8d
+DIST LibreOffice_5.2.6.2_Linux_x86_rpm_helppack_am.tar.gz 7945102 SHA256 
9e337bfddbc429d6b0e2ac4f2b42144f6ca04b97af7148e4d9cd3c8b9cb52cde SHA512 
9bf88b6e1acb8ed55962514590965e163ebcaf9207bab10c1c0d6f6b71a2b56f39c97d664930eb3d5e1a10bfa10c63927fc7acc16170f8828cebcfd21636d3b2
 WHIRLPOOL 
0c82ebae4208b509840e67129715294a6414e4b4f8ea6ad96bd1b0f93b36ad56f96a5a6f2ddd3b6221eb48690ce3e3a23d337bfcf33c2d420c7a9598a04d2a60
+DIST LibreOffice_5.2.6.2_Linux_x86_rpm_helppack_ast.tar.gz 7890709 SHA256 
8be1fcc42a20c664db17301c26b96a70cfec42eefb587ea6717d8de749f8fc5a SHA512 
e8b4b5b6fcdd173224e3a1a3acedb6533ee64bc456cad50894fb105e32b648df7a7026de760a93282b74d9e32b07b9182067222150bb31cb3523f9b77977fedc
 WHIRLPOOL 
4a3ebea63b870f9331b519d5897ad90b6db5ee9c8100412a5e78478a00e045d71dd2ddf080dbe7e9aa1fac1270de93098909cf4d09ed3e2c44640865d4db77e2
+DIST LibreOffice_5.2.6.2_Linux_x86_rpm_helppack_bg.tar.gz 8395544 SHA256 
6e14e669540a4d0152313aa58e2211a699b9c0e264c10093fe76884c01ea SHA512 
6daccc10db61c026a3cdc9328e4fb03a4e3c8489dea365c1152179584f179e663712a104637063ae4c6db0cacb344abde0090ae1781efe9cdb857cd2ef69886b
 WHIRLPOOL 
dba81eb51342636bbab3f22614cb87f6086f1b28d43c204fc01a33a7c7eddad18845fb7f6cea59cefdb57143fbdd4b2bfdd5e49fb0179572be2dd480887ee0ac
+DIST LibreOffice_5.2.6.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 9208177 SHA256 
fcdbb335ec855a9871833bdb3857cbefabcddd34db53240420ea5976384deeaf SHA512 
8450b12fa7c4da8e6834eae1da81ddcce90650c7dc51cf71d76e4bf023d1543fff930b1aa09581699b06d7d6e8f493941cc1b436ada6ca913c3bf1ee5d652f64
 WHIRLPOOL 
ef9b0276d9ed07b6330ea0f1e6aa232a5304c55479b3f4d800e8621fe4b675e93d5370c419b2e8c87659cbb3431b45a8472dc5064f7dac02d7f2288a95411b09
+DIST LibreOffice_5.2.6.2_Linux_x86_rpm_helppack_bn.tar.gz 9208094 SHA256 
690987e70f3bee47e32071f8e31eb25ce42878865456377a3dda3013f7e1b793 SHA512 
f97aafccac34015c234daa63cf2abf9568816273a5a404594e07455fd392b3a484c6e61274f5d7c7b96bf7ea7043159d5f47ce804511558104c84c00c8977726
 WHIRLPOOL 
bbcaaf02b80bd61d6dc92e0f85c9e76f43e1f76fa23b9d9997fa319b06a38430fa39cd86f91aa23b9c6417584838a1110fb1e94084f9b2a8a7896d299627e364
+DIST LibreOffice_5.2.6.2_Linux_x86_rpm_helppack_bo.tar.gz 8956573 SHA256 
d0f4171a215289a950cafd2dfba755ac32d8ee86a9e5e2c21ae92cc80e7c7a85 SHA512 
d08962bcda9eb0f91cec3a2704c6b43ddf03d958ef40b392ecf4274db26a5869e5a1cbb19cb3188d9e2361082c0b8bade68f0dfc6c3faad96074eec93bda0ca8
 WHIRLPOOL 
89c8f5064cf75d82f6ccda41ba1331a0a2eb5d5eb8aaa8d3767885a4f93b47713942e70e76f1c712404d0433c48014443e7e69fad8d7ee66d4c970addc9e3d41
+DIST LibreOffice_5.2.6.2_Linux_x86_rpm_helppack_bs.tar.gz 7185864 SHA256 
3dd3c28c3e7f3433df6dd2bcff81df31b6dd837f0a6c5f4bcfa549784c44d771 SHA512 
685cf3596e33554e014fb41a5b30b71b221f20b687e069d240935a96ab175f83ea38dc974aaa068136e58f979a0f97ce332adc1902ba28185244c6fa31a6a195
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2017-03-08 Thread Andreas Sturmlechner
commit: 88b0b6efbb45bf49d0dd5d72146d2ca9981d5e65
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Tue Feb 28 23:21:33 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Mar  8 19:42:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88b0b6ef

app-office/libreoffice: 5.3.1.2 version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-office/libreoffice/Manifest   |   2 +
 app-office/libreoffice/libreoffice-5.3.1.2.ebuild | 593 ++
 2 files changed, 595 insertions(+)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index ff59c62d69f..3269bd1b065 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -10,8 +10,10 @@ DIST libreoffice-5.2.3.3.tar.xz 183870036 SHA256 
a8f1365d166bf24ac4b97ed8466f46c
 DIST libreoffice-5.2.5.1.tar.xz 184242832 SHA256 
9756a322a497aa83d096fa0ac5541622d9a8f5038ce9c0ded48199566ab0d300 SHA512 
72b88fc44bc440def7be8971a6976b87de41562eaa968eeb40bc5b9bd2d3ce4fb8581fc070ade804a8f7257e350df2cc8f2ac42c9d3241bd65d2a89c35602c00
 WHIRLPOOL 
776845b4b34afd42c7b65179c2d77449e7f2917b4a475b93434ff0817688cbecc69f946640408750221cdd950f6982c4a3f9a9ce370c977a6d10613c61f5d494
 DIST libreoffice-5.2.6.2.tar.xz 164804780 SHA256 
3d49e339631114652820b890859eef85601d1aeda2acb1309f0de24009f53570 SHA512 
b84420a773739162555b28700a5588771a1fa7131d82a5861799f402df65f84a17715f80b8ba9aa793c1fed78c7e38b8bfbff2c3b9e0e8f119c9b453a8e6edc9
 WHIRLPOOL 
fe6e739c78172add6fb1235c5ddcffc7d62767008ca5acafd2d95ba143367b26bae94c7f295527d55312ecec4bee47d53daab8b2f2ac159f8d581c7532e3ee48
 DIST libreoffice-5.3.0.3.tar.xz 168797580 SHA256 
04b9215e1c4b8c7ce2d79b8e322bff8d097426a2d103476cf237cfd42262556e SHA512 
06cf8a59c2b08f6aaf5012347aeae482e4587c67fc6d3f267572f236999ec6fe1f1290926830ebe5631c705cf4e938b65a5765e99556c8d19178e0fece45
 WHIRLPOOL 
4591366575e5e8da7f892d6549d0ae0cdae7e0afcd8e1c1d771fe735e73de901ae26f8b95ca589ffeba1d3b73830853aea14a84e26a94a5465b872583ed0519d
+DIST libreoffice-5.3.1.2.tar.xz 189706056 SHA256 
5746cd7ccaf64e51eb0fc07128e75cf145a32b318d572aba18855f14c10754ff SHA512 
f35a037eb823603295187f958bab290a51dd3d189ab5bf10b087a7900bad50de5cb477c5a0cf2ca5e5190e9c31b0e7f382980cc03d139014f3b706b4cd4082b0
 WHIRLPOOL 
a4a697ee460f3a96cf8b406645d77f11b2ce9814245ad2b8c191d6b362e0f2fef571b46c64e9b34cc304545740af8807ad77087b6c613e83c50898755f738a29
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 SHA256 
22722121be062742624e0634beae92289c75e6a99ed507d3bf0a05c5164e3c69 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
 WHIRLPOOL 
1f36652a52d501d6548cfa9aa013b3e3a1867aa2b0693d2274cf7816d4aa4e0cde3c7096cc71ed47cf74e5f96da2757bf537f553021f8fd86939accb227bf538
 DIST libreoffice-help-5.2.3.3.tar.xz 1936920 SHA256 
443be26b35c6b454d5d1ca17c58cc33ae90946f8e1003a98118467b49989cd3a SHA512 
927421887d2d41538ba79d6d584bf84ad3fd7a58d3b9d95801cf67a0dcce61421934cd273a38803b5519c434232d1aaeb88d52cab391ae7292809ebbb3b501f9
 WHIRLPOOL 
36da9c200c0174f745827afb099530d06f6489f8be4a521b7dd37441fc2a1f9691a7d4a07e2914dec0f57845f96e4e143133105e5a730eebeb2e1c5c3283d3bb
 DIST libreoffice-help-5.2.5.1.tar.xz 1936260 SHA256 
11199cca59748dc9cade4f5cbb0478f600d3c54114b09819eac54338dbbd49b4 SHA512 
2319784da7733eb21a15fba4dab4b74a1aff89c89634727e6d5013b4ca14bd65d0951bdaff569a79544a8c44ff494e92eb0573e11391ec88e2cb811e47689cf9
 WHIRLPOOL 
714d6bfe696f4fc69203f5cd3e9a2914d2d73cc78c06f6ef4ae860f52b5c1c34305e1c7330eff380d73b8006e2c47e3f033ec6fdefe14e65c8e11289aa75364e
 DIST libreoffice-help-5.2.6.2.tar.xz 1446048 SHA256 
c0cd648d9994814925083d1a891b63b5e5233718eb8f8782810bb602c0fdb88b SHA512 
10568ffb0d7fbd1a01681e52e594b39f120802e8fd70d12824a2be0185bdf491c28818fc8a9fe16fed8533fa61119b90d6f0a1a8f9488a83b33f6a6be2d75e37
 WHIRLPOOL 
e3921ba0b64819b19cd278f7a87dec4313e6cd9df58108170e2d438b0c08644395ac568f7cc601e88ff466e78fa6bbd426fdc9b4a704d3d8693b8c0cb1537ab8
 DIST libreoffice-help-5.3.0.3.tar.xz 1615344 SHA256 
df58d501b9514160767810df0b0e4b44a01262244f81f83df8654b0ccd4b1a7f SHA512 
c575b19beb42ec44fe8d63d72df31853d224e78ca14bf8bd6d5b81bfebfda71c17943fd0b59c019548910bb76ea269340436d54375121f559bdb1d38d6b3296f
 WHIRLPOOL 
cd662dcfe8e6eaa63872820b42a68aa4e0913c4fb4688db1f1c611169f9ba1e7f05e77dba5786d42cb738b353a2df81caa417c60e525a073c04beee0f2bbcfa0
+DIST libreoffice-help-5.3.1.2.tar.xz 2127368 SHA256 
df49c7bf1caa872f542a69875b44b450b724644585fc847f41e549f88da4c20e SHA512 
a6fc9912c67e485a01a71fa85c09eca464f6ae37024e7ae96e92d9f9582390955df069c3ef633b5df83eb6cd96c3654bd22eab728a58961a08dda7b18f754391
 WHIRLPOOL 
0746f8a5be49bd67b8eff536c97c1b398e2490794dd3f8147ba33adafc887c550bf4a446f81bf5fec427970ec34e6baf7ab6d1ba4d12e80653d8e087825f

diff --git a/app-office/libreoffice/libreoffice-5.3.1.2.ebuild 
b/app-office/libreoffice/libreoffice-5.3.1.2.ebuild
new file mode 100644
index 

[gentoo-commits] repo/gentoo:master commit in: net-libs/gupnp/

2017-03-08 Thread Dennis Lamm
commit: e8fdaa06d4300f432dbcd1929986578259e3ffa5
Author: Dennis Lamm  gentoo  org>
AuthorDate: Wed Mar  8 19:33:55 2017 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Wed Mar  8 19:35:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8fdaa06

net-libs/gupnp version bump to 1.0.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/gupnp/Manifest   |  1 +
 net-libs/gupnp/gupnp-1.0.1.ebuild | 73 +++
 2 files changed, 74 insertions(+)

diff --git a/net-libs/gupnp/Manifest b/net-libs/gupnp/Manifest
index 3d7f34dddc0..fc2aafd356d 100644
--- a/net-libs/gupnp/Manifest
+++ b/net-libs/gupnp/Manifest
@@ -1 +1,2 @@
 DIST gupnp-0.20.18.tar.xz 409712 SHA256 
c5e0e11061f8d0ff9c8dccc196f39c45a49c0153c9a72abf6290ab34d1cbb021 SHA512 
553e2b55434f6a8e084c656d30017b671842a06ad1c6b8b0739f9f81693d3d18061e2e5b3294f247b11b2b95368ad00c89e13d3db5fc04a3b3549593c7f73a5f
 WHIRLPOOL 
2b594f39d5deae1ef393a503752e969a213e295ac9f83f0721d0193168624a39b58bdedbfe12ffd6c2db2e7ea54a8eb38dfa6c5349d9692db07d5295754f741f
+DIST gupnp-1.0.1.tar.xz 421920 SHA256 
934584cc1b361bf251a5ac271ffb1995a3c6426ce44cb64f9c6d779f2af9a6d9 SHA512 
907aed86a31972668a57252183a4acde518fdf4f2af1a12277c4cb723f3b6b8748bca23fad9165fa6d440c30748bf58db334a27db089d212e72564093dea2215
 WHIRLPOOL 
19888759b0e3d0faad0ce82fd319afcf823ffd19960944546872eecc93fc44db4ca11cb3d9ab3a80d863359e9fcec1199054b092ed2a241779866bde360bfc9d

diff --git a/net-libs/gupnp/gupnp-1.0.1.ebuild 
b/net-libs/gupnp/gupnp-1.0.1.ebuild
new file mode 100644
index 000..6a24cc8ff1d
--- /dev/null
+++ b/net-libs/gupnp/gupnp-1.0.1.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+VALA_USE_DEPEND="vapigen"
+# FIXME: Claims to works with python3 but appears to be wishful thinking
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="xml"
+
+inherit gnome2 multilib-minimal python-r1 vala
+
+DESCRIPTION="An object-oriented framework for creating UPnP devs and control 
points"
+HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP;
+
+LICENSE="LGPL-2"
+SLOT="0/4"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+
+IUSE="connman +introspection kernel_linux networkmanager"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   ?? ( connman networkmanager )
+"
+
+# prefix: uuid dependency can be adapted to non-linux platforms
+RDEPEND="${PYTHON_DEPS}
+   >=net-libs/gssdp-0.14.15:0=[introspection?,${MULTILIB_USEDEP}]
+   >=net-libs/libsoup-2.48.0:2.4[introspection?,${MULTILIB_USEDEP}]
+   >=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}]
+   >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}]
+   >=sys-apps/util-linux-2.24.1-r3[${MULTILIB_USEDEP}]
+   introspection? (
+   >=dev-libs/gobject-introspection-1.36:=
+   $(vala_depend) )
+   connman? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] )
+   networkmanager? ( >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}] )
+   !net-libs/gupnp-vala
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.14
+   sys-devel/gettext
+   >=virtual/pkgconfig-0-r1[${MULTILIB_USEDEP}]
+"
+
+src_prepare() {
+   use introspection && vala_src_prepare
+   gnome2_src_prepare
+}
+
+multilib_src_configure() {
+   local backend=unix
+   use kernel_linux && backend=linux
+   use connman && backend=connman
+   use networkmanager && backend=network-manager
+
+   ECONF_SOURCE=${S} \
+   gnome2_src_configure \
+   $(multilib_native_use_enable introspection) \
+   --disable-static \
+   --with-context-manager=${backend}
+
+   if multilib_is_native_abi; then
+   ln -s "${S}"/doc/html doc/html || die
+   fi
+}
+
+multilib_src_install() {
+   gnome2_src_install
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   python_foreach_impl python_doscript tools/gupnp-binding-tool
+}



[gentoo-commits] proj/portage:master commit in: pym/portage/tests/resolver/, pym/portage/tests/resolver/soname/, pym/_emerge/

2017-03-08 Thread Zac Medico
commit: 7c01a73c5a3ff969ddaa43e91730a7372a8a10c8
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Mar  8 01:30:05 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Mar  8 19:36:20 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=7c01a73c

depgraph: fix backtracking for slot operator rebuilds (bug 612042)

Fix package selection logic to avoid pulling in undesirable
rebuilds/updates during backtracking for slot operator rebuilds.
The undesirable rebuilds/updates have sent some calculations off
course, by triggering more and more rebuilds/updates with each
backtracking run.

In order to solve the problem, make various adjustments to the
package selection logic so that installed packages are preferred
over rebuilds/updates when appropriate. Also update unit tests
to work with these adjustments.

Fixes: 5842e87872fd ("Fix slot operator handling bug")
X-Gentoo-bug: 612042
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=612042
Acked-by: Brian Dolbec  gentoo.org>

 pym/_emerge/depgraph.py  | 11 +--
 .../resolver/soname/test_slot_conflict_reinstall.py  | 16 +++-
 pym/portage/tests/resolver/test_slot_abi.py  | 12 +---
 pym/portage/tests/resolver/test_slot_conflict_rebuild.py |  8 +++-
 4 files changed, 36 insertions(+), 11 deletions(-)

diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index 02a32260a..bb3e307f0 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -2304,7 +2304,7 @@ class depgraph(object):
# Check for slot update first, since we don't 
want to
# trigger reinstall of the child package when a 
newer
# slot will be used instead.
-   if rebuild_if_new_slot:
+   if rebuild_if_new_slot and dep.want_update:
new_dep = 
self._slot_operator_update_probe(dep,
new_child_slot=True)
if new_dep is not None:
@@ -6241,7 +6241,7 @@ class depgraph(object):
if highest_installed is 
None or pkg.version > highest_installed.version:

highest_installed = pkg
 
-   if highest_installed:
+   if highest_installed and 
self._want_update_pkg(parent, highest_installed):
non_installed = [pkg for pkg in 
matched_packages \
if not pkg.installed 
and pkg.version > highest_installed.version]
 
@@ -6285,11 +6285,18 @@ class depgraph(object):
built_timestamp != 
installed_timestamp:
return built_pkg, 
existing_node
 
+   inst_pkg = None
for pkg in matched_packages:
+   if pkg.installed:
+   inst_pkg = pkg
if pkg.installed and pkg.invalid:
matched_packages = [x for x in \
matched_packages if x is not 
pkg]
 
+   if (inst_pkg is not None and parent is not None and
+   not self._want_update_pkg(parent, inst_pkg)):
+   return inst_pkg, existing_node
+
if avoid_update:
for pkg in matched_packages:
if pkg.installed and 
self._pkg_visibility_check(pkg, autounmask_level):

diff --git a/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py 
b/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py
index f4747611f..f7154442e 100644
--- a/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py
+++ b/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py
@@ -251,13 +251,27 @@ class SonameSlotConflictReinstallTestCase(TestCase):
success = True,
mergelist = [
'[binary]app-misc/B-2',
+   '[binary]app-misc/A-2',
+   ]
+   ),
+   ResolverPlaygroundTestCase(
+   ["@world"],
+   options = {
+   "--ignore-soname-deps": "n",
+   "--usepkgonly": True,
+   "--update": True,
+   

[gentoo-commits] repo/gentoo:master commit in: app-misc/khal/

2017-03-08 Thread Amy Liffey
commit: 287dddc24a6548b0a6cc51d700d14ca439668242
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed Mar  8 19:32:23 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed Mar  8 19:32:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=287dddc2

app-misc/khal: version bump 0.9.3 bug #611938

Submitted-by: Kristian  posteo.de>

Package-Manager: portage-2.3.0

 app-misc/khal/Manifest  |  1 +
 app-misc/khal/khal-0.9.3.ebuild | 43 +
 2 files changed, 44 insertions(+)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index 3a4a4ab8c07..7f09bb9d6c5 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -2,3 +2,4 @@ DIST khal-0.8.1.tar.gz 125681 SHA256 
9d352e4aa6256e493d5aea69540f642158bdcab75d2
 DIST khal-0.8.3.tar.gz 126656 SHA256 
1ec6940a9fbd207c41428b103bac1d1555129b9b4eca2b843c544bd48ac63ee3 SHA512 
f49e57a6cc9abfcf8dbc5811c2fe00661fd09a8a6d1a64bae4df5ce9c1d01c6f325adeef68a7b45eed3a34bd797b801c00fcd8fa4fdf378335d5273629f0a165
 WHIRLPOOL 
20963f12d9419f2421680548a6de22261e4d9c4482f6a28937b4339335b5a4965178bae0624cc5172da98c534603d3cd0ed5337e03c04190195a478b34b4a34f
 DIST khal-0.8.4.tar.gz 129251 SHA256 
2e5c41eadf83c8f175dc05816571e747da921b025e4acc6b287c109b6e237e0f SHA512 
8a1066f137db1b3a9c2cc246ea17baf6745efd3db9dadacb76b287546137da363bcd78a4ac2acd2c659fbf25f16b155cc993099067a736ef3b68b2e8512d7b83
 WHIRLPOOL 
094c9ec2a0343d557ba70956239d5fa719d9fd08c7038d542b173f18ebce30b11761ac2e09780381fb55a9942cb885fd63b46d6c32573c94ed52990f34841e7b
 DIST khal-0.9.0.tar.gz 158220 SHA256 
b9aa992a8ed1a5d816eeeff79256ad7edea591acdf16ae30e65bfdc3adef0f8d SHA512 
f457d6cbd323f65c2185776b8c8ed67268820ee4c06c845f3640dfc085a5528b19c855ada670d397a74d6c0785b7abeb90247528cbc826b39b51284917577acd
 WHIRLPOOL 
4f003e39735917a7dec13f4aaffb851755e0d1f2c2d007111a4766622dfc900cece0c0dd38d5735d145ba36855639c08d1db3c3a7e5e9da5d428e23c469fc600
+DIST khal-0.9.3.tar.gz 165182 SHA256 
d4d748ae09fd0069124bf28ca61db1b1fbc3e8e95e2f23e597e28e2e38336ac7 SHA512 
38f9c059eb8ebaacd40d4d5e276f8e42ea0bcc5237b46647974601458fc8576ec8920873cc90c002a8e101b2383028d60a2e74dbfb601acd9c0770ada2c63b65
 WHIRLPOOL 
8461b39508fb3b5bd2a0532dd71507334852b71492688f0dabcf76b9d70cf8f29e831a36d38028340c1fa1853dda4c1eda706559e8ee6dfb9ecdc112363b5002

diff --git a/app-misc/khal/khal-0.9.3.ebuild b/app-misc/khal/khal-0.9.3.ebuild
new file mode 100644
index 000..b8b06ecf587
--- /dev/null
+++ b/app-misc/khal/khal-0.9.3.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_{4,6} )
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="A CalDAV based calendar"
+HOMEPAGE="http://lostpackets.de/khal/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="zsh-completion"
+
+RDEPEND=">=dev-python/click-3.2[${PYTHON_USEDEP}]
+   dev-python/icalendar[${PYTHON_USEDEP}]
+   dev-python/urwid[${PYTHON_USEDEP}]
+   dev-python/pyxdg[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   >=dev-python/atomicwrites-0.1.7[${PYTHON_USEDEP}]
+   >=dev-python/tzlocal-1.0[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   zsh-completion? ( app-shells/zsh )"
+
+DEPEND=">dev-python/setuptools_scm-1.12.0[${PYTHON_USEDEP}]
+   dev-python/freezegun"
+
+DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.rst README.rst khal.conf.sample )
+
+src_install() {
+   distutils-r1_src_install
+   if use zsh-completion; then
+   insinto /usr/share/zsh/site-functions
+   doins misc/__khal
+   fi
+}



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

2017-03-08 Thread Zac Medico
commit: c4447175e57a8311f254cfc9fa32646467e1830f
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Mar  6 19:51:38 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Mar  8 19:29:23 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=c4447175

use_reduce: reserve missing_white_space_check for invalid tokens (bug 611838)

Since it's possible for a URI to contain parenthesis, only call
missing_white_space_check for tokens that fail to validate with
token_class. The missing_white_space_check function only serves
to clarify exception messages, so it must not be allowed to
reject valid tokens.

X-Gentoo-Bug: 611838
X-Gentoo-Bug-Url: https://bugs.gentoo.org/show_bug.cgi?id=611838
Acked-by: Brian Dolbec  gentoo.org>

 pym/portage/dep/__init__.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pym/portage/dep/__init__.py b/pym/portage/dep/__init__.py
index 968ff5b89..6ff6adcb9 100644
--- a/pym/portage/dep/__init__.py
+++ b/pym/portage/dep/__init__.py
@@ -677,8 +677,6 @@ def use_reduce(depstr, uselist=[], masklist=[], 
matchall=False, excludeall=[], i
need_simple_token = True
stack[level].append(token)  
else:
-   missing_white_space_check(token, pos)
-
if need_bracket:
raise InvalidDependString(
_("expected: '(', got: '%s', token %s") 
% (token, pos+1))
@@ -698,12 +696,14 @@ def use_reduce(depstr, uselist=[], masklist=[], 
matchall=False, excludeall=[], i
token = token_class(token, 
eapi=eapi,

is_valid_flag=is_valid_flag)
except InvalidAtom as e:
+   
missing_white_space_check(token, pos)
raise InvalidDependString(
_("Invalid atom (%s), 
token %s") \
% (e, pos+1), 
errors=(e,))
except SystemExit:
raise
except Exception as e:
+   
missing_white_space_check(token, pos)
raise InvalidDependString(
_("Invalid token '%s', 
token %s") % (token, pos+1))
 



[gentoo-commits] proj/linux-patches:4.11 commit in: /

2017-03-08 Thread Mike Pagano
commit: 296ce1499f60054d8e2bc7aa4a0b5fb897fc28a3
Author: Mike Pagano  gentoo  org>
AuthorDate: Wed Mar  8 19:29:21 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Mar  8 19:29:21 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=296ce149

Gentoo Linux support config settings and defaults. Patch to add support for 
namespace user.pax.* on tmpfs. Patch to enable link security restrictions by 
default. Patch to ensure that /dev/root doesn't appear in /proc/mounts when 
booting without an initramfs. Patch to enable control of the unaligned access 
control policy from sysctl. Workaround to enable poweroff on Mac Pro 11. See 
bug #601964. Kernel patch enables gcc >= v4.9 optimizations for additional 
CPUs. fbcondecor bootsplash patch.

 _README|   28 +
 1500_XATTR_USER_PREFIX.patch   |   69 +
 ...ble-link-security-restrictions-by-default.patch |   22 +
 2300_enable-poweroff-on-Mac-Pro-11.patch   |   76 +
 2900_dev-root-proc-mount-fix.patch |   38 +
 4200_fbcondecor.patch  | 2095 
 4400_alpha-sysctl-uac.patch|  142 ++
 ...able-additional-cpu-optimizations-for-gcc.patch |  426 
 8 files changed, 2896 insertions(+)

diff --git a/_README b/_README
index 9018993..58e3c74 100644
--- a/_README
+++ b/_README
@@ -43,6 +43,34 @@ EXPERIMENTAL
 Individual Patch Descriptions:
 --
 
+Patch:  1500_XATTR_USER_PREFIX.patch
+From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
+Desc:   Support for namespace user.pax.* on tmpfs.
+
+Patch:  1510_fs-enable-link-security-restrictions-by-default.patch
+From:   
http://sources.debian.net/src/linux/3.16.7-ckt4-3/debian/patches/debian/fs-enable-link-security-restrictions-by-default.patch/
+Desc:   Enable link security restrictions by default.
+
+Patch:  2300_enable-poweroff-on-Mac-Pro-11.patch
+From:   
http://kernel.ubuntu.com/git/ubuntu/ubuntu-xenial.git/patch/drivers/pci/quirks.c?id=5080ff61a438f3dd80b88b423e1a20791d8a774c
+Desc:   Workaround to enable poweroff on Mac Pro 11. See bug #601964.
+
+Patch:  2900_dev-root-proc-mount-fix.patch
+From:   https://bugs.gentoo.org/show_bug.cgi?id=438380
+Desc:   Ensure that /dev/root doesn't appear in /proc/mounts when bootint 
without an initramfs.
+
+Patch:  4200_fbcondecor.patch
+From:   http://www.mepiscommunity.org/fbcondecor
+Desc:   Bootsplash ported by Uladzimir Bely. (Bug #596126)
+
+Patch:  4400_alpha-sysctl-uac.patch
+From:   Tobias Klausmann (klaus...@gentoo.org) and 
http://bugs.gentoo.org/show_bug.cgi?id=217323 
+Desc:   Enable control of the unaligned access control policy from sysctl
+
 Patch:  4567_distro-Gentoo-Kconfig.patch
 From:   Tom Wijsman 
 Desc:   Add Gentoo Linux support config settings and defaults.
+
+Patch:  5010_enable-additional-cpu-optimizations-for-gcc.patch
+From:   https://github.com/graysky2/kernel_gcc_patch/
+Desc:   Kernel patch enables gcc >= v4.9 optimizations for additional CPUs.

diff --git a/1500_XATTR_USER_PREFIX.patch b/1500_XATTR_USER_PREFIX.patch
new file mode 100644
index 000..bacd032
--- /dev/null
+++ b/1500_XATTR_USER_PREFIX.patch
@@ -0,0 +1,69 @@
+From: Anthony G. Basile 
+
+This patch adds support for a restricted user-controlled namespace on
+tmpfs filesystem used to house PaX flags.  The namespace must be of the
+form user.pax.* and its value cannot exceed a size of 8 bytes.
+
+This is needed even on all Gentoo systems so that XATTR_PAX flags
+are preserved for users who might build packages using portage on
+a tmpfs system with a non-hardened kernel and then switch to a
+hardened kernel with XATTR_PAX enabled.
+
+The namespace is added to any user with Extended Attribute support
+enabled for tmpfs.  Users who do not enable xattrs will not have
+the XATTR_PAX flags preserved.
+
+diff --git a/include/uapi/linux/xattr.h b/include/uapi/linux/xattr.h
+index 1590c49..5eab462 100644
+--- a/include/uapi/linux/xattr.h
 b/include/uapi/linux/xattr.h
+@@ -73,5 +73,9 @@
+ #define XATTR_POSIX_ACL_DEFAULT  "posix_acl_default"
+ #define XATTR_NAME_POSIX_ACL_DEFAULT XATTR_SYSTEM_PREFIX 
XATTR_POSIX_ACL_DEFAULT
+ 
++/* User namespace */
++#define XATTR_PAX_PREFIX XATTR_USER_PREFIX "pax."
++#define XATTR_PAX_FLAGS_SUFFIX "flags"
++#define XATTR_NAME_PAX_FLAGS XATTR_PAX_PREFIX XATTR_PAX_FLAGS_SUFFIX
+ 
+ #endif /* _UAPI_LINUX_XATTR_H */
+diff --git a/mm/shmem.c b/mm/shmem.c
+index 440e2a7..c377172 100644
+--- a/mm/shmem.c
 b/mm/shmem.c
+@@ -2667,6 +2667,14 @@ static int shmem_xattr_handler_set(const struct 
xattr_handler *handler,
+   struct shmem_inode_info *info = SHMEM_I(d_inode(dentry));
+ 
+   name = xattr_full_name(handler, name);
++
++  if (!strncmp(name, XATTR_USER_PREFIX, XATTR_USER_PREFIX_LEN)) {
++  if (strcmp(name, 

[gentoo-commits] repo/gentoo:master commit in: net-libs/gssdp/

2017-03-08 Thread Dennis Lamm
commit: 9c4f60ca18d922a07f8fc87fb47b4ba66d848f59
Author: Dennis Lamm  gentoo  org>
AuthorDate: Wed Mar  8 19:21:33 2017 +
Commit: Dennis Lamm  gentoo  org>
CommitDate: Wed Mar  8 19:23:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c4f60ca

net-libs/gssdp version bump to 1.0.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-libs/gssdp/Manifest   |  1 +
 net-libs/gssdp/gssdp-1.0.1.ebuild | 57 +++
 2 files changed, 58 insertions(+)

diff --git a/net-libs/gssdp/Manifest b/net-libs/gssdp/Manifest
index dc1ba36d881..2560cc8dacb 100644
--- a/net-libs/gssdp/Manifest
+++ b/net-libs/gssdp/Manifest
@@ -1 +1,2 @@
 DIST gssdp-0.14.16.tar.xz 301000 SHA256 
54520bfb230b9c8c938eba88d87df44e04749682c95fb8aa381d13441345c5b2 SHA512 
1ff3a8bcb8af537bdb26d56edd3452fba9a781264bd29debd08ad901f47b060f3a80006b63c52fe93d487200bad8d5d0745937de868ad78167464dc0cf2fa3de
 WHIRLPOOL 
3fdf6d1c1aca1b7c3295cb390656ba8fcacb9ec1655aaccaa07c246605d994ca932cd3391ea08979ade1d9bf2ffea3eb8c37930fb162e763673dd0f1904d10e0
+DIST gssdp-1.0.1.tar.xz 312336 SHA256 
601d67f40bc28c067742b7c46f3018da96b364fd3e83f30ddac6e190e323d2e1 SHA512 
e823cb62d440f1ddab3ec5012718a9808ac736077b09c2a7cbce38a876de613c4960c986b7486fa0eed79651ace9865ca5418c195a8682ba621378465ec60247
 WHIRLPOOL 
32a602881a9634f580f110869305eb75a462fb3cfe5ac8e5f1c416e61a3e3def5afd5a7ca5e148c958f2a88f7b3651a39af4173dd8d24ac412e7792e3c01ee24

diff --git a/net-libs/gssdp/gssdp-1.0.1.ebuild 
b/net-libs/gssdp/gssdp-1.0.1.ebuild
new file mode 100644
index 000..e72a8080cc1
--- /dev/null
+++ b/net-libs/gssdp/gssdp-1.0.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 multilib-minimal vala
+
+DESCRIPTION="A GObject-based API for handling resource discovery and 
announcement over SSDP"
+HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP;
+
+LICENSE="LGPL-2"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="+introspection gtk"
+
+RDEPEND="
+   >=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]
+   >=net-libs/libsoup-2.44.2:2.4[${MULTILIB_USEDEP},introspection?]
+   gtk? ( >=x11-libs/gtk+-3.0:3 )
+   introspection? (
+   $(vala_depend)
+   >=dev-libs/gobject-introspection-1.36:= )
+   !

[gentoo-commits] repo/gentoo:master commit in: app-emulation/xe-guest-utilities/

2017-03-08 Thread Matt Thode
commit: 4c22d23e2047b3df03ff3f17aca17fab101c9ef8
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Mar  8 19:21:55 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Mar  8 19:22:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c22d23e

app-emulation/xe-guest-utilities: unbreak the repo

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../xe-guest-utilities/xe-guest-utilities-6.2.0_p1120.ebuild  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/app-emulation/xe-guest-utilities/xe-guest-utilities-6.2.0_p1120.ebuild 
b/app-emulation/xe-guest-utilities/xe-guest-utilities-6.2.0_p1120.ebuild
index b1b54c8ccde..1d5f3d03a17 100644
--- a/app-emulation/xe-guest-utilities/xe-guest-utilities-6.2.0_p1120.ebuild
+++ b/app-emulation/xe-guest-utilities/xe-guest-utilities-6.2.0_p1120.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ PV_FULL=${PV/_p/-}
 
SRC_URI="http://updates.vmd.citrix.com/XenServer/${PV_BASE}/rhel4x/SRPMS/xe-guest-utilities-${PV_FULL}.src.rpm;
 LICENSE="LGPL-3 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE="xenstore"
 DEPEND="app-arch/rpm2targz"
 RDEPEND="



[gentoo-commits] proj/portage:master commit in: pym/portage/tests/resolver/, man/, pym/_emerge/

2017-03-08 Thread Zac Medico
commit: 852c729bdef3d4c2e2d459a43dc21f0a05dfa2ba
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Mar  4 06:24:21 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Mar  8 19:19:53 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=852c729b

emerge: auto-enable --with-bdeps if --usepkg is not enabled (bug 598444)

It's useful to automatically enable --with-bdeps so that @world updates
will update all packages that are not eligible for removal by
emerge --depclean. However, many users of binary packages do not want
unnecessary build time dependencies installed, therefore do not
auto-enable --with-bdeps for installation actions when the --usepkg
option is enabled.

A new --with-bdeps-auto= option is provided, making it possible to
enable or disable the program logic that causes --with-bdeps to be
automatically enabled. Use --with-bdeps-auto=n to prevent --with-bdeps
from being automatically enabled for installation actions. This is useful
for some rare cases in which --with-bdeps triggers unsolvable dependency
conflicts (and putting --with-bdeps=n in EMERGE_DEFAULT_OPTS would cause
undesirable --depclean behavior).

X-Gentoo-bug: 598444
X-Gentoo-bug-url: https://bugs.gentoo.org/show_bug.cgi?id=598444
Acked-by: Brian Dolbec  gentoo.org>

 man/emerge.1 |  37 +++-
 pym/_emerge/create_depgraph_params.py|   5 +
 pym/_emerge/depgraph.py  |   4 +-
 pym/_emerge/main.py  |   5 +
 pym/portage/tests/resolver/ResolverPlayground.py |   5 +
 pym/portage/tests/resolver/test_bdeps.py | 215 +++
 6 files changed, 266 insertions(+), 5 deletions(-)

diff --git a/man/emerge.1 b/man/emerge.1
index 5b6122023..7db427199 100644
--- a/man/emerge.1
+++ b/man/emerge.1
@@ -986,13 +986,44 @@ The default is set to "y" (on).
 .TP
 .BR "\-\-with\-bdeps < y | n >"
 In dependency calculations, pull in build time dependencies
-that are not strictly required. This defaults to \'n\' for
-installation actions, meaning they will not be installed, and
-\'y\' for the \fB\-\-depclean\fR action, meaning they will not be removed.
+that are not strictly required. This option is automatically enabled for
+installation actions, meaning they will be installed, and defaults to
+\(aqy\(aq for the \fB\-\-depclean\fR action, meaning they will not be
+removed. In order to prevent the \fB\-\-with\-bdeps\fR option from being
+automatically enabled for installation actions, specify
+\fB\-\-with\-bdeps\-auto=n\fR in either the command line or
+\fBEMERGE_DEFAULT_OPTS\fR.
+
+Since many users of binary packages do not want unnecessary build time
+dependencies installed, this option is not automatically enabled for
+installation actions when the \fB\-\-usepkg\fR option is enabled. In
+order to pull in build time dependencies for binary packages with
+\fB\-\-usepkg\fR, \fB\-\-with\-bdeps=y\fR must be specified explicitly.
+This also applies to options that enable the \fB\-\-usepkg\fR option
+implicitly, such as \fB\-\-getbinpkg\fR.
+
 This setting can be added to
 \fBEMERGE_DEFAULT_OPTS\fR (see make.conf(5)) and later overridden via the
 command line.
 .TP
+.BR "\-\-with\-bdeps\-auto < y | n >"
+This option is used to enable or disable the program logic that causes
+\fB\-\-with\-bdeps\fR is to be automatically enabled for installation
+actions. This option is enabled by default. Use
+\fB\-\-with\-bdeps\-auto=n\fR to prevent \fB\-\-with\-bdeps\fR from
+being automatically enabled for installation actions. This setting can
+be added to \fBEMERGE_DEFAULT_OPTS\fR (see make.conf(5)) and later
+overridden via the command line.
+
+\fBNOTE:\fR The program logic that causes \fB\-\-with\-bdeps\fR to be
+automatically enabled for installation actions does not affect removal
+actions such as the \fB\-\-depclean\fR action. Therefore, when
+\fB\-\-with\-bdeps\-auto=n\fR is specified in \fBEMERGE_DEFAULT_OPTS\fR,
+it does not affect the default \fB\-\-with\-bdeps=y\fR setting that
+applies to the \fB\-\-depclean\fR action. The default
+\fB\-\-with\-bdeps=y\fR setting that applies to the \fB\-\-depclean\fR
+action can be overridden only by specifying \fB\-\-with\-bdeps=n\fR.
+.TP
 .BR "\-\-with\-test\-deps [ y | n ]"
 For packages matched by arguments, this option will pull in dependencies
 that are conditional on the "test" USE flag, even if "test" is not

diff --git a/pym/_emerge/create_depgraph_params.py 
b/pym/_emerge/create_depgraph_params.py
index 2c6492883..cdea029ba 100644
--- a/pym/_emerge/create_depgraph_params.py
+++ b/pym/_emerge/create_depgraph_params.py
@@ -13,6 +13,8 @@ def create_depgraph_params(myopts, myaction):
# deep:  go into the dependencies of already merged packages
# empty: pretend nothing is merged
# complete:  completely account for all known dependencies
+   # bdeps: satisfy build time dependencies of packages that are
+   #   already 

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

2017-03-08 Thread Matt Turner
commit: d2a4f97f920079381906aaf886f35bc63d4ce3cd
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Mar  8 19:20:02 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Mar  8 19:20:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a4f97f

app-admin/mcelog: Add myself as a maintainer.

 app-admin/mcelog/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/app-admin/mcelog/metadata.xml b/app-admin/mcelog/metadata.xml
index 05c5e144713..79bbe0245eb 100644
--- a/app-admin/mcelog/metadata.xml
+++ b/app-admin/mcelog/metadata.xml
@@ -2,6 +2,10 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

+   matts...@gentoo.org
+   Matt Turner
+   
+   
bkoh...@gmail.com
Ben Kohler
Proxied maintainer; set to assignee in all 
bugs



[gentoo-commits] proj/linux-patches: New branch: 4.11

2017-03-08 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Wed Mar  8 18:51:13 2017 +

New branch: 4.11




[gentoo-commits] repo/gentoo:master commit in: sci-biology/elph/files/, sci-biology/elph/

2017-03-08 Thread David Seifert
commit: c7f45dbb5043e60a8b4c0a091fcb0465ffbbef50
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 18:46:35 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 18:47:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f45dbb

sci-biology/elph: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 sci-biology/elph/elph-1.0.1-r1.ebuild  | 31 
 .../elph/files/elph-1.0.1-fix-build-system.patch   | 55 ++
 2 files changed, 86 insertions(+)

diff --git a/sci-biology/elph/elph-1.0.1-r1.ebuild 
b/sci-biology/elph/elph-1.0.1-r1.ebuild
new file mode 100644
index 000..c166dd93e41
--- /dev/null
+++ b/sci-biology/elph/elph-1.0.1-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Estimated Locations of Pattern Hits - Motif finder program"
+LICENSE="Artistic"
+HOMEPAGE="http://cbcb.umd.edu/software/ELPH/;
+SRC_URI="ftp://ftp.cbcb.umd.edu/pub/software/elph/ELPH-${PV}.tar.gz;
+
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+
+S=${WORKDIR}/${PN^^}/sources
+
+PATCHES=( "${FILESDIR}/${PN}-1.0.1-fix-build-system.patch" )
+
+src_configure() {
+   tc-export CC CXX
+}
+
+src_install() {
+   dobin elph
+
+   cd "${WORKDIR}"/ELPH || die
+   dodoc VERSION
+   newdoc Readme.ELPH README
+}

diff --git a/sci-biology/elph/files/elph-1.0.1-fix-build-system.patch 
b/sci-biology/elph/files/elph-1.0.1-fix-build-system.patch
new file mode 100644
index 000..9afbb68666d
--- /dev/null
+++ b/sci-biology/elph/files/elph-1.0.1-fix-build-system.patch
@@ -0,0 +1,55 @@
+Make build system respect user variables
+
+--- a/Makefile
 b/Makefile
+@@ -1,42 +1,26 @@
+-CLASSDIR := .
+-
+-# Directories to search for header files
+-SEARCHDIRS := -I- -I${CLASSDIR}
+-
+-
+-SYSTYPE := $(shell uname)
+-
+-# C compiler
+-
+-CC  := g++
+-CFLAGS  = -Wall ${SEARCHDIRS} -fno-exceptions -fno-rtti -D_REENTRANT -g
++my_CPPFLAGS = -D_REENTRANT -I.
+ 
+ %.o : %.c
+-  ${CC} ${CFLAGS} -c $< -o $@
++  $(CC) -Wall $(CFLAGS) $(my_CPPFLAGS) $(CPPFLAGS) -c $< -o $@
+ 
+ %.o : %.cc
+-  ${CC} ${CFLAGS} -c $< -o $@
++  $(CXX) -Wall $(CXXFLAGS) $(my_CPPFLAGS) $(CPPFLAGS) -c $< -o $@
+ 
+ %.o : %.C
+-  ${CC} ${CFLAGS} -c $< -o $@
++  $(CXX) -Wall $(CXXFLAGS) $(my_CPPFLAGS) $(CPPFLAGS) -c $< -o $@
+ 
+ %.o : %.cpp
+-  ${CC} ${CFLAGS} -c $< -o $@
++  $(CXX) -Wall $(CXXFLAGS) $(my_CPPFLAGS) $(CPPFLAGS) -c $< -o $@
+ 
+ %.o : %.cxx
+-  ${CC} ${CFLAGS} -c $< -o $@
++  $(CXX) -Wall $(CXXFLAGS) $(my_CPPFLAGS) $(CPPFLAGS) -c $< -o $@
+ 
+ # C/C++ linker
+-
+-LINKER:= g++
+-LDFLAGS=
+-LOADLIBES := 
+-
+ .PHONY : all
+ all:elph
+ 
+-elph:  ./elph.o ${CLASSDIR}/motif.o ${CLASSDIR}/GBase.o ${CLASSDIR}/GString.o 
${CLASSDIR}/GArgs.o
+-  ${LINKER} ${LDFLAGS} -o $@ ${filter-out %.a %.so, $^} ${LOADLIBES}
++elph: elph.o motif.o GBase.o GString.o GArgs.o
++  $(CXX) $(LDFLAGS) $(CXXFLAGS) -o $@ $^
+ 
+ # target for removing all object files
+ 



[gentoo-commits] repo/gentoo:master commit in: sci-biology/biosql/

2017-03-08 Thread David Seifert
commit: f21f7be7601f9721f0d67bb1cec3478fe8bb
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 18:46:32 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 18:47:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f21f

sci-biology/biosql: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 ...{biosql-1.0.1.ebuild => biosql-1.0.1-r1.ebuild} | 33 ++
 1 file changed, 22 insertions(+), 11 deletions(-)

diff --git a/sci-biology/biosql/biosql-1.0.1.ebuild 
b/sci-biology/biosql/biosql-1.0.1-r1.ebuild
similarity index 54%
rename from sci-biology/biosql/biosql-1.0.1.ebuild
rename to sci-biology/biosql/biosql-1.0.1-r1.ebuild
index 950e6d347f8..6508d6a3a2e 100644
--- a/sci-biology/biosql/biosql-1.0.1.ebuild
+++ b/sci-biology/biosql/biosql-1.0.1-r1.ebuild
@@ -1,32 +1,43 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 DESCRIPTION="A generic bioinformatics relational database model"
 HOMEPAGE="http://www.biosql.org/;
 SRC_URI="http://biosql.org/DIST/${P}.tar.bz2;
 
 LICENSE="LGPL-3"
 SLOT="0"
-IUSE="mysql postgres"
 KEYWORDS="amd64 x86"
+IUSE="mysql postgres"
 
 # WARNING: bioperl-db is claimed to be incompatible with >=postgresql-8.3 (see 
INSTALL)
 
-DEPEND="mysql? ( dev-perl/DBD-mysql )
+DEPEND="
+   mysql? ( dev-perl/DBD-mysql )
postgres? ( dev-perl/DBD-Pg )"
-RDEPEND="${DEPEND}"
+RDEPEND="
+   ${DEPEND}
+   dev-lang/perl"
 
 src_install() {
insinto /usr/share/${PN}
-   doins -r sql scripts/* || die
-   insinto /usr/share/doc/${P}
-   doins -r doc/*
-   dodoc Changes INSTALL README Release.txt
+   doins -r sql scripts/.
+
+   dodoc Changes README Release.txt doc/*.pdf
+
+   docinto biopython
+   dodoc doc/{README,schema-overview.txt,biopython/{cor6_6.gb,*.pdf}}
+   docompress -x /usr/share/doc/${PF}/biopython
+
+   docinto html
+   dodoc doc/{biopython/,}*.htm*
 }
 
 pkg_postinst() {
-   echo
+   elog
elog "Please read the BioSQL schema installation instructions in"
-   elog "/usr/share/doc/${P} to begin using the schema."
-   echo
+   elog "${EROOT%/}/usr/share/doc/${PF} to begin using the schema."
+   elog
 }



[gentoo-commits] repo/gentoo:master commit in: sci-biology/prints/

2017-03-08 Thread David Seifert
commit: c7b331a41b2c947b3facd8c17e4cfd1b6f52d72e
Author: David Seifert  gentoo  org>
AuthorDate: Wed Mar  8 18:46:38 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Mar  8 18:47:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7b331a4

sci-biology/prints: Modernise to EAPI 6

Package-Manager: Portage-2.3.4, Repoman-2.3.2

 .../{prints-39.0.ebuild => prints-39.0-r1.ebuild}  | 26 --
 1 file changed, 14 insertions(+), 12 deletions(-)

diff --git a/sci-biology/prints/prints-39.0.ebuild 
b/sci-biology/prints/prints-39.0-r1.ebuild
similarity index 73%
rename from sci-biology/prints/prints-39.0.ebuild
rename to sci-biology/prints/prints-39.0-r1.ebuild
index cf047d048f6..f9833579e71 100644
--- a/sci-biology/prints/prints-39.0.ebuild
+++ b/sci-biology/prints/prints-39.0-r1.ebuild
@@ -1,18 +1,20 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 MY_PV="${PV/./_}"
 
 DESCRIPTION="A protein motif fingerprint database"
 HOMEPAGE="http://www.bioinf.man.ac.uk/dbbrowser/PRINTS/;
 SRC_URI="mirror://gentoo/${P}.tar.bz2"
 
-SLOT="0"
 LICENSE="public-domain"
-IUSE="emboss minimal"
+SLOT="0"
 # Minimal build keeps only the indexed files (if applicable) and the
 # documentation. The non-indexed database is not installed.
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="emboss minimal"
 
 DEPEND="emboss? ( sci-biology/emboss )"
 RDEPEND="${DEPEND}"
@@ -20,23 +22,23 @@ RDEPEND="${DEPEND}"
 src_compile() {
if use emboss; then
mkdir PRINTS || die
-   echo
-   einfo "Indexing PRINTS for usage with EMBOSS."
-   EMBOSS_DATA="." printsextract -auto -infile prints${MY_PV}.dat 
|| die \
-   "Indexing PRINTS failed."
-   echo
+   einfo
+   einfo "Indexing PRINTS for usage with EMBOSS"
+   EMBOSS_DATA="." printsextract -auto -infile prints${MY_PV}.dat 
|| die "Indexing PRINTS failed"
+   einfo
fi
 }
 
 src_install() {
+   dodoc README
+
if ! use minimal; then
insinto /usr/share/${PN}
-   doins newpr.lis ${PN}${MY_PV}.{all.fasta,dat,kdat,lis,nam,vsn} 
|| die \
-   "Installing raw database failed."
+   doins newpr.lis ${PN}${MY_PV}.{all.fasta,dat,kdat,lis,nam,vsn}
fi
+
if use emboss; then
-   insinto /usr/share/EMBOSS/data/PRINTS
-   doins PRINTS/* || die "Installing EMBOSS data files failed."
+   insinto /usr/share/EMBOSS/data/${PN^^}
+   doins -r ${PN^^}/.
fi
-   dodoc README || die "Documentation installation failed."
 }



[gentoo-commits] repo/gentoo:master commit in: profiles/

2017-03-08 Thread Matt Thode
commit: d1816608429b1567f975a407e44eea0b67ac7635
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Mar  8 18:45:34 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Mar  8 18:46:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1816608

remove openstack-guest-agents-unix and xe-guest-utilities from package.mask

 profiles/package.mask | 5 -
 1 file changed, 5 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index eeb3cffc703..ae67dab8176 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -820,11 +820,6 @@ sys-block/afacli
 # Masked for proper testing. (Major updates in the code).
 ~dev-perl/PortageXS-0.2.12
 
-# Robin H. Johnson  (21 Jun 2014)
-# Needs work, but infra needs it for new VM boxes
-app-emulation/openstack-guest-agents-unix
-app-emulation/xe-guest-utilities
-
 # Hans de Graaff  (1 Jun 2014)
 # Mask new rubinius version for testing. This needs more work
 # to fully integrate it in our Gentoo ruby handling. Volunteers



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

2017-03-08 Thread Michał Górny
commit: 51fc5f26531b7618fb9fc188c69d5240a7218198
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar  8 17:53:00 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 18:37:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51fc5f26

dev-python/pyxdg: Enable python3.6

 dev-python/pyxdg/pyxdg-0.25-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pyxdg/pyxdg-0.25-r1.ebuild 
b/dev-python/pyxdg/pyxdg-0.25-r1.ebuild
index 10f2a8e494f..eb164715e43 100644
--- a/dev-python/pyxdg/pyxdg-0.25-r1.ebuild
+++ b/dev-python/pyxdg/pyxdg-0.25-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
 inherit distutils-r1
 
 DESCRIPTION="A Python module to deal with freedesktop.org specifications"



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

2017-03-08 Thread Michał Górny
commit: f291208455ef7a77e3876d73c3d798e94a04b482
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar  8 17:55:47 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 18:37:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2912084

dev-python/configobj: Enable python3.6

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

diff --git a/dev-python/configobj/configobj-5.0.6.ebuild 
b/dev-python/configobj/configobj-5.0.6.ebuild
index 593e187f1a1..554c0f3269b 100644
--- a/dev-python/configobj/configobj-5.0.6.ebuild
+++ b/dev-python/configobj/configobj-5.0.6.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
 
 inherit distutils-r1
 



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

2017-03-08 Thread Michał Górny
commit: f40f258b95b67235607a8c3285b5d144158a1f26
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar  8 18:33:06 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 18:37:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f40f258b

dev-python/icalendar: Enable python3.6

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

diff --git a/dev-python/icalendar/icalendar-3.9.2.ebuild 
b/dev-python/icalendar/icalendar-3.9.2.ebuild
index 56a5f45fd49..447c91f3472 100644
--- a/dev-python/icalendar/icalendar-3.9.2.ebuild
+++ b/dev-python/icalendar/icalendar-3.9.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy )
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
 
 inherit distutils-r1
 



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

2017-03-08 Thread Michał Górny
commit: 4628a0a55c2471186fd2247bf3631170f09ae59c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Mar  8 18:15:55 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Mar  8 18:37:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4628a0a5

dev-python/tzlocal: Enable python3.6

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

diff --git a/dev-python/tzlocal/tzlocal-1.2.ebuild 
b/dev-python/tzlocal/tzlocal-1.2.ebuild
index 2fbc044b567..0aaf1aeb615 100644
--- a/dev-python/tzlocal/tzlocal-1.2.ebuild
+++ b/dev-python/tzlocal/tzlocal-1.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1
 



  1   2   >