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

2017-07-15 Thread Matt Turner
commit: 7112cc43dd099bf304fd5ced941fafc733cb05f9
Author: Matt Turner  gentoo  org>
AuthorDate: Sun Jul 16 01:57:15 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jul 16 01:57:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7112cc43

profiles: Mask x11-proto/evieext for removal

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

 profiles/package.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index e8c1f68ba9c..51153d043d5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Matt Turner  (16 Jul 2017)
+# Header package for removed x11-libs/libXevie. No dependencies. Removal in a
+# month (#615314)
+x11-proto/evieext
+
 # Thomas Deutschmann  (16 Jul 2017)
 # Discontinued project with multiple vulnerabilities, removal in a month 
(#620802)
 media-gfx/autotrace



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

2017-07-15 Thread Aaron Bauman
commit: 39cc1bec1e22b7d0dd0db539cf2193ca26c280e9
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Jul 16 01:43:51 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jul 16 01:43:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39cc1bec

sys-cluster/zookeeper-bin: drop vulnerable wrt sec bug #621034

 sys-cluster/zookeeper-bin/Manifest |  1 -
 .../zookeeper-bin/zookeeper-bin-3.4.9.ebuild   | 90 --
 2 files changed, 91 deletions(-)

diff --git a/sys-cluster/zookeeper-bin/Manifest 
b/sys-cluster/zookeeper-bin/Manifest
index 418f383c2d2..5f5738321d7 100644
--- a/sys-cluster/zookeeper-bin/Manifest
+++ b/sys-cluster/zookeeper-bin/Manifest
@@ -1,2 +1 @@
 DIST zookeeper-3.4.10.tar.gz 35042811 SHA256 
7f7f5414e044ac11fee2a1e0bc225469f51fb0cdf821e67df762a43098223f27 SHA512 
4c54e40ac8d0b267db4a188a30e39ed0ac2c3e8a8fadaf244be45ff5adee956df28f6cb9f1eb56f175e924fa3629b64f98286a090c46764c91c017613c80a51b
 WHIRLPOOL 
10fb08b7a351f688b187e38b8dd84578f765eee87fdcfc63e9813bf7c5878048cc4ffba21e660ec9e1af7b58e68de69994b5938791b7ae83a5b014456f35a57a
-DIST zookeeper-3.4.9.tar.gz 22724574 SHA256 
e7f340412a61c7934b5143faef8d13529b29242ebfba2eba48169f4a8392f535 SHA512 
4f3e003c6ce5e3338f642f7deaa0fd2cfd1b30591d3ed4fe880492dded6c4bf01d30483e28f3a38b43bb6d2696ff4d819fc9577733224cec07e236437e88a657
 WHIRLPOOL 
9e879b335156adf5fcb46e1ddb5e76a061338862cdd14b4cd85dffac4a3343ff21d84ac24b31b232b52426d756bc17734448591cbd13b556c59664b42a8a298a

diff --git a/sys-cluster/zookeeper-bin/zookeeper-bin-3.4.9.ebuild 
b/sys-cluster/zookeeper-bin/zookeeper-bin-3.4.9.ebuild
deleted file mode 100644
index e10e3fe150f..000
--- a/sys-cluster/zookeeper-bin/zookeeper-bin-3.4.9.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils java-utils-2 user
-
-MY_P="zookeeper"
-MY_PN=${MY_P}-${PV}
-
-DESCRIPTION="A high-performance coordination service for distributed 
applications."
-HOMEPAGE="http://zookeeper.apache.org/;
-SRC_URI="mirror://apache/${MY_P}/${MY_PN}/${MY_PN}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="mirror binchecks"
-IUSE=""
-
-DEPEND=""
-RDEPEND=">=virtual/jre-1.7"
-
-S=${WORKDIR}/${MY_PN}
-
-INSTALL_DIR=/opt/${PN}
-export CONFIG_PROTECT="${CONFIG_PROTECT} ${INSTALL_DIR}/conf"
-
-pkg_setup() {
-   enewgroup zookeeper
-   enewuser zookeeper -1 /bin/sh /var/lib/zookeeper zookeeper
-}
-
-src_prepare() {
-   # python
-   sed -e "s|src/c/zookeeper.c|zookeeper.c|g" \
-   -e "s|../../../|${S}|g" \
-   -i contrib/zkpython/src/python/setup.py || die
-}
-
-src_configure() {
-   cd "${S}"/src/c || die
-   econf
-}
-
-src_compile() {
-   cd "${S}"/src/c || die
-   emake
-}
-
-src_install() {
-   local DATA_DIR=/var/lib/${MY_P}
-
-   # python
-   cd "${S}"/contrib/zkpython/ || die
-   mv src/python/setup.py .
-   mv src/c/* .
-   python_foreach_impl distutils-r1_src_install
-   cd "${S}" || die
-
-   # cleanup sources
-   rm -rf src/ || die
-   rm bin/*.cmd || die
-
-   keepdir "${DATA_DIR}"
-   sed "s:^dataDir=.*:dataDir=${DATA_DIR}:" conf/zoo_sample.cfg > 
conf/zoo.cfg || die "sed failed"
-   cp "${FILESDIR}"/log4j.properties conf/ || die "cp log4j conf failed"
-
-   dodir "${INSTALL_DIR}"
-   cp -a "${S}"/* "${D}${INSTALL_DIR}" || die "install failed"
-
-   # data dir perms
-   fowners zookeeper:zookeeper "${DATA_DIR}"
-
-   # log dir
-   keepdir /var/log/zookeeper
-   fowners zookeeper:zookeeper /var/log/zookeeper
-
-   # init script
-   newinitd "${FILESDIR}"/zookeeper.initd zookeeper
-   newconfd "${FILESDIR}"/zookeeper.confd zookeeper
-
-   # env file
-   cat > 99"${PN}" <<-EOF
-   PATH=${INSTALL_DIR}/bin
-   CONFIG_PROTECT=${INSTALL_DIR}/conf
-   EOF
-   doenvd 99"${PN}" || die "doenvd failed"
-}



[gentoo-commits] repo/gentoo:master commit in: media-video/rtmpdump/

2017-07-15 Thread Aaron Bauman
commit: 324bda1dff7d708a325e44ac55db0e685887a1fb
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Jul 16 01:09:23 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jul 16 01:09:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=324bda1d

media-video/rtmpdump: drop vulnerable wrt sec bug #570242

 media-video/rtmpdump/Manifest  |  1 -
 media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild | 80 --
 2 files changed, 81 deletions(-)

diff --git a/media-video/rtmpdump/Manifest b/media-video/rtmpdump/Manifest
index 35146f804b0..d1ee8b0858f 100644
--- a/media-video/rtmpdump/Manifest
+++ b/media-video/rtmpdump/Manifest
@@ -1,2 +1 @@
-DIST rtmpdump-2.4_p20131018.tar.gz 142707 SHA256 
57164e0c12f7cbff8e40b1e66cf6b889086387324851a115b427b8d2b3fff267 SHA512 
78c2da880ece43af1d4257a14a22d95e9f1b9f474d85f97e879d9cfd2232c5a7f1c1a41fbb1af7e047700214a993eb33965dba41573389d5eebefd3f01a780fc
 WHIRLPOOL 
80a8e9ed9eeca4ddab8c44ae6e937f0d271311e8f5ce74bb0b49fff69edc4bd302f257366f33cceb8ae089fabdd7ff2533937a833e79fcb575e3cf43c592327a
 DIST rtmpdump-2.4_p20161210.tar.gz 142837 SHA256 
d6da3b683f1045f02d94a81b0c583318dba021f69bdab970c5d5d73e8c38860f SHA512 
76617f02c13d7e8e3a7cf2734c6174e56fb321a881c9e4869bf6393786b193e0c01a8c530ecbf0679cc888c523af5712f2dcb2031fbd09729b7ddeebc3a4b133
 WHIRLPOOL 
06fd296825c06339dd9210d626f503ab8f7bc929fa363106a166882bff3e7531ce11636dd716c1259558301c258c190a7f6e550fd39dae51dea809526b566d8d

diff --git a/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild 
b/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild
deleted file mode 100644
index 73e21b765d0..000
--- a/media-video/rtmpdump/rtmpdump-2.4_p20131018.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit multilib toolchain-funcs multilib-minimal flag-o-matic
-
-DESCRIPTION="RTMP client intended to stream audio or video flash content"
-HOMEPAGE="http://rtmpdump.mplayerhq.hu/;
-SRC_URI="https://dev.gentoo.org/~hwoarang/distfiles/${P}.tar.gz;
-
-# the library is LGPL-2.1, the command is GPL-2
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm hppa ~mips ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux"
-IUSE="gnutls polarssl ssl libressl"
-
-DEPEND="ssl? (
-   gnutls? ( 
>=net-libs/gnutls-2.12.23-r6[${MULTILIB_USEDEP},nettle(+)] )
-   polarssl? ( !gnutls? ( 
>=net-libs/polarssl-1.3.4[${MULTILIB_USEDEP}] ) )
-   !gnutls? ( !polarssl? ( !libressl? ( 
>=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] ) libressl? ( 
dev-libs/libressl ) ) )
-   >=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]
-   )"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-   if ! use ssl && { use gnutls || use polarssl; }; then
-   ewarn "USE='gnutls polarssl' are ignored without USE='ssl'."
-   ewarn "Please review the local USE flags for this package."
-   fi
-}
-
-src_unpack() {
-   mkdir -p "${S}" || die "Can't create source directory"
-   cd "${S}" || die
-   unpack ${A}
-}
-
-src_prepare() {
-   # fix #571106 by restoring pre-GCC5 inline semantics
-   append-cflags -std=gnu89
-   # fix Makefile ( bug #298535 , bug #318353 and bug #324513 )
-   sed -i 's/\$(MAKEFLAGS)//g' Makefile \
-   || die "failed to fix Makefile"
-   sed -i -e 's:OPT=:&-fPIC :' \
-   -e 's:OPT:OPTS:' \
-   -e 's:CFLAGS=.*:& $(OPT):' librtmp/Makefile \
-   || die "failed to fix Makefile"
-   multilib_copy_sources
-}
-
-multilib_src_compile() {
-   if use ssl ; then
-   if use gnutls ; then
-   crypto="GNUTLS"
-   elif use polarssl ; then
-   crypto="POLARSSL"
-   else
-   crypto="OPENSSL"
-   fi
-   fi
-   #fix multilib-script support. Bug #327449
-   sed -i "/^libdir/s:lib$:$(get_libdir):" librtmp/Makefile || die
-   if ! multilib_is_native_abi; then
-   cd librtmp || die
-   fi
-   emake CC="$(tc-getCC)" LD="$(tc-getLD)" \
-   OPT="${CFLAGS}" XLDFLAGS="${LDFLAGS}" CRYPTO="${crypto}" 
SYS=posix
-}
-
-multilib_src_install() {
-   mkdir -p "${ED}"/usr/$(get_libdir) || die
-   if multilib_is_native_abi; then
-   dodoc README ChangeLog rtmpdump.1.html rtmpgw.8.html
-   else
-   cd librtmp || die
-   fi
-   emake DESTDIR="${ED}" prefix="/usr" mandir="/usr/share/man" \
-   CRYPTO="${crypto}" install
-}



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

2017-07-15 Thread Aaron Bauman
commit: 7a05ee92d9ad72ca9594758747af4dfc1305adfb
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Jul 16 00:55:05 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jul 16 00:55:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a05ee92

dev-libs/DirectFB: drop vulnerable wrt sec bug #510472

 dev-libs/DirectFB/DirectFB-1.4.9-r1.ebuild | 122 -
 dev-libs/DirectFB/Manifest |   1 -
 2 files changed, 123 deletions(-)

diff --git a/dev-libs/DirectFB/DirectFB-1.4.9-r1.ebuild 
b/dev-libs/DirectFB/DirectFB-1.4.9-r1.ebuild
deleted file mode 100644
index f949a57664a..000
--- a/dev-libs/DirectFB/DirectFB-1.4.9-r1.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit eutils toolchain-funcs
-
-# Map Gentoo IUSE expand vars to DirectFB drivers
-# echo `sed -n '/Possible gfxdrivers are:/,/^$/{/Possible/d;s:\[ 
*::;s:\].*::;s:,::g;p}' configure.in`
-I_TO_D_intel="i810,i830"
-I_TO_D_mga="matrox"
-I_TO_D_r128="ati128"
-I_TO_D_s3="unichrome"
-I_TO_D_sis="sis315"
-I_TO_D_via="cle266"
-# cyber5k davinci ep9x gl omap pxa3xx sh772x
-IUSE_VIDEO_CARDS=" intel mach64 mga neomagic nsc nvidia r128 radeon s3 savage 
sis tdfx via vmware"
-IUV=${IUSE_VIDEO_CARDS// / video_cards_}
-# echo `sed -n '/Possible inputdrivers are:/,/^$/{/\(Possible\|^input\)/d;s:\[ 
*::;s:\].*::;s:,::g;p}' configure.in`
-I_TO_D_elo2300="elo-input"
-I_TO_D_evdev="linuxinput"
-I_TO_D_mouse="ps2mouse serialmouse"
-# dbox2remote dreamboxremote gunze h3600_ts penmount sonypijogdial ucb1x00 
wm97xx zytronic
-IUSE_INPUT_DEVICES=" dynapro elo2300 evdev joystick keyboard lirc mouse 
mutouch tslib"
-IUD=${IUSE_INPUT_DEVICES// / input_devices_}
-
-DESCRIPTION="Thin library on top of the Linux framebuffer devices"
-HOMEPAGE="http://www.directfb.net/;
-SRC_URI="http://directfb.net/downloads/Core/${PN}-${PV:0:3}/${P}.tar.gz
-   http://directfb.net/downloads/Old/${P}.tar.gz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 -mips ppc ppc64 sh -sparc x86"
-IUSE="debug doc fbcon gif jpeg cpu_flags_x86_mmx png sdl cpu_flags_x86_sse 
static-libs truetype v4l X zlib ${IUV} ${IUD}"
-
-RDEPEND="sdl? ( media-libs/libsdl )
-   gif? ( media-libs/giflib )
-   png? ( media-libs/libpng )
-   jpeg? ( virtual/jpeg )
-   zlib? ( sys-libs/zlib )
-   truetype? ( >=media-libs/freetype-2.0.1 )
-   X? ( x11-libs/libXext x11-libs/libX11 )"
-DEPEND="${RDEPEND}
-   X? ( x11-proto/xextproto x11-proto/xproto )"
-
-src_prepare() {
-   epatch \
-   "${FILESDIR}"/${PN}-1.2.7-CFLAGS.patch \
-   "${FILESDIR}"/${PN}-1.2.0-headers.patch \
-   "${FILESDIR}"/${PN}-1.1.1-pkgconfig.patch \
-   "${FILESDIR}"/${PN}-1.4.9-libpng-1.5.patch
-
-   # the media subdir uses sqrt(), so make sure it links in -lm
-   sed -i \
-   -e '/libdirectfb_media_la_LIBADD/s:$: -lm:' \
-   src/media/Makefile.in || die
-
-   # Avoid invoking `ld` directly #300779
-   find . -name Makefile.in -exec sed -i \
-   '/[$](LD)/s:$(LD) -o $@ -r:$(CC) $(LDFLAGS) $(CFLAGS) -Wl,-r 
-nostdlib -o $@:' {} +
-}
-
-driver_list() {
-   local pfx=$1
-   local dev devs map
-   shift
-   for dev in "$@" ; do
-   use ${pfx}_${dev} || continue
-   map="I_TO_D_${dev}"
-   devs=${devs:+${devs},}${!map:-${dev}}
-   done
-   echo ${devs:-none}
-}
-
-src_configure() {
-   local sdlconf="--disable-sdl"
-   if use sdl ; then
-   # since SDL can link against DirectFB and trigger a
-   # dependency loop, only link against SDL if it isn't
-   # broken #61592
-   echo 'int main(){}' > sdl-test.c
-   $(tc-getCC) sdl-test.c -lSDL 2>/dev/null \
-   && sdlconf="--enable-sdl" \
-   || ewarn "Disabling SDL since libSDL.so is broken"
-   fi
-
-   econf \
-   --disable-dependency-tracking \
-   $(use_enable static-libs static) \
-   $(use_enable X x11) \
-   $(use_enable fbcon fbdev) \
-   $(use_enable cpu_flags_x86_mmx mmx) \
-   $(use_enable cpu_flags_x86_sse sse) \
-   $(use_enable jpeg) \
-   $(use_enable png) \
-   $(use_enable gif) \
-   $(use_enable truetype freetype) \
-   $(use_enable debug) \
-   $(use_enable zlib) \
-   --disable-video4linux \
-   $(use_enable v4l video4linux2) \
-   ${sdlconf} \
-   --with-gfxdrivers="$(driver_list video_cards 
${IUSE_VIDEO_CARDS})" \
-   --with-inputdrivers="$(driver_list input_devices 
${IUSE_INPUT_DEVICES})" \
-   --disable-vnc
-}
-
-src_install() {
-   emake 

[gentoo-commits] repo/gentoo:master commit in: app-arch/dump/

2017-07-15 Thread Aaron Bauman
commit: 769dc13e9c6032697ffb26fc90be36e79b9b90f4
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jul 15 23:40:48 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jul 16 00:46:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=769dc13e

app-arch/dump: remove old wrt sec bug #515274

Closes: https://github.com/gentoo/gentoo/pull/5113

 app-arch/dump/Manifest  |  2 -
 app-arch/dump/dump-0.4.44-r1.ebuild | 63 --
 app-arch/dump/dump-0.4.44-r2.ebuild | 69 
 app-arch/dump/dump-0.4.45.ebuild| 78 -
 4 files changed, 212 deletions(-)

diff --git a/app-arch/dump/Manifest b/app-arch/dump/Manifest
index 5420477d918..509e5d955ec 100644
--- a/app-arch/dump/Manifest
+++ b/app-arch/dump/Manifest
@@ -1,3 +1 @@
-DIST dump-0.4b44.tar.gz 296691 SHA256 
78cb75632ac5e99dca38af3a2574303eee3c5a7af464011d279421d8b0e64f96 SHA512 
3db828bac026d872913f0e010378366919fbb523d22f1863c06017581e4f4a1c5a239199794ca1158b04e7e3ecbb596d77b131b3278bed29fcfcd3835a3351d4
 WHIRLPOOL 
43dfc8fb996b443b9d9a9d9ecbf7d01f3db6eaba7acc92ab35ee0930ebdc7666855fc6b78b25450ae3790c6f10093036e0fc733385d7e8dc808bb614b681135a
-DIST dump-0.4b45.tar.gz 579802 SHA256 
f2feef14e9b764f8763879f044957564926f493a5ecd69cefa79a258c1e66c8a SHA512 
8bb961cfbec7b06a0a796c15e35342b694a0a5e4214be6b0093a3b016340bce8d76b86cad64ca80301a3cbaebb7ec23b32c5145069f793266f4f8c60d98933cf
 WHIRLPOOL 
0b8beb09bf0c9ddd9399f25a989117759ef6ec578a148897de14904292885cf9a30e0a8d1f0cd2bdab852fac3653f43d26393236260568f11c16813d4f27b5ce
 DIST dump-0.4b46.tar.gz 578200 SHA256 
8061d927dd1ae98e0a1bd70406cde5ecbced154507460629be174c55822f2f97 SHA512 
a30e72ab6c4d18497dffe3d25634c2e55ca90861d1cd8a6c0fd44709e735a217dbf4cdabb8c80e02053def94d9a22cf1d685ee0d0f24f5b748ee5f0de19cf17d
 WHIRLPOOL 
fb0b083e1f6f0904b1f5d433c47f0d25078637719a11542efd7d0d166609e64a62afaf94056dbec5cd93fa61f690ca3fdd5ffe16c9687263d08a3677b4617e31

diff --git a/app-arch/dump/dump-0.4.44-r1.ebuild 
b/app-arch/dump/dump-0.4.44-r1.ebuild
deleted file mode 100644
index 384b6611774..000
--- a/app-arch/dump/dump-0.4.44-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-inherit eutils autotools
-
-MY_P=${P/4./4b}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="Dump/restore ext2fs backup utilities"
-HOMEPAGE="http://dump.sourceforge.net/;
-SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="alpha amd64 ~hppa ia64 ppc ppc64 sparc x86"
-IUSE="debug ermt readline selinux static"
-
-RDEPEND=">=sys-fs/e2fsprogs-1.27
-   >=app-arch/bzip2-1.0.2
-   >=sys-libs/zlib-1.1.4
-   ermt? ( dev-libs/openssl )
-   readline? ( sys-libs/readline
-   sys-libs/ncurses
-   static? ( sys-libs/ncurses[static-libs] ) )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   virtual/os-headers"
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-underlinking.patch"
-   epatch "${FILESDIR}/${P}-rl_completion_matches-detection.patch"
-   epatch "${FILESDIR}/${P}-fix-pointers-aliasing.patch"
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --with-dumpdatespath=/etc/dumpdates \
-   --with-{bin,man}owner=root \
-   --with-{bin,man}grp=root \
-   --enable-largefile \
-   $(use_enable selinux transselinux) \
-   $(use_enable ermt) \
-   $(use_enable static) \
-   $(use_enable readline) \
-   $(use_enable debug)
-}
-
-src_install() {
-   # built on old autotools, no DESTDIR support
-   einstall MANDIR="${D}"/usr/share/man/man8
-   mv "${ED}"/usr/sbin/{,dump-}rmt || die
-   mv "${ED}"/usr/share/man/man8/{,dump-}rmt.8 || die
-   use ermt && newsbin rmt/ermt dump-ermt
-
-   dodoc CHANGES KNOWNBUGS MAINTAINERS README REPORTING-BUGS THANKS TODO
-   dodoc -r examples/*
-}
-
-pkg_postinst() {
-   ewarn "app-arch/dump installs 'rmt' as 'dump-rmt'."
-   ewarn "This is to avoid conflicts with app-arch/tar 'rmt'."
-}

diff --git a/app-arch/dump/dump-0.4.44-r2.ebuild 
b/app-arch/dump/dump-0.4.44-r2.ebuild
deleted file mode 100644
index 5a22b23b8ff..000
--- a/app-arch/dump/dump-0.4.44-r2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-inherit eutils autotools
-
-MY_P=${P/4./4b}
-S=${WORKDIR}/${MY_P}
-DESCRIPTION="Dump/restore ext2fs backup utilities"
-HOMEPAGE="http://dump.sourceforge.net/;
-SRC_URI="mirror://sourceforge/dump/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="debug ermt libressl readline selinux static"
-
-RDEPEND=">=sys-fs/e2fsprogs-1.27
-   >=app-arch/bzip2-1.0.2
-   

[gentoo-commits] repo/gentoo:master commit in: net-misc/dropbear/

2017-07-15 Thread Aaron Bauman
commit: 98e1f78a43a8719df27bb27dd895f77bd4d08ef1
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Jul 16 00:38:57 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jul 16 00:38:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e1f78a

net-misc/dropbear: drop vulnerable wrt bug #605560

 net-misc/dropbear/Manifest|  1 -
 net-misc/dropbear/dropbear-2016.73.ebuild | 98 ---
 2 files changed, 99 deletions(-)

diff --git a/net-misc/dropbear/Manifest b/net-misc/dropbear/Manifest
index 5da95e2963f..4a27dfa0c20 100644
--- a/net-misc/dropbear/Manifest
+++ b/net-misc/dropbear/Manifest
@@ -1,2 +1 @@
-DIST dropbear-2016.73.tar.bz2 1621584 SHA256 
5c61a4f69b093b688629cd365be38701485ff63cfb23642dab7a05ad250aefd7 SHA512 
dc538d77b0269c93339b150990b475129a88b0bdc070021c03726955e307407f517049f55b012bf00579d26cd0ff412d88f51c1db540bcbd3d8e4b7cf882bcb8
 WHIRLPOOL 
9d989b4893eaae254eb69d109d93375e121cc163ada59ac75fcbf9d88b294b015168bd5942d7a6afa1ed2dc08c297402be668cdc5fbd2647d9c14b86849a233b
 DIST dropbear-2016.74.tar.bz2 1622234 SHA256 
2720ea54ed009af812701bcc290a2a601d5c107d12993e5d92c0f5f81f718891 SHA512 
c0f4ea7840077b8302b48e27b5b588a4babac6583740dfdb845c40f633aa3ec96174d1d2ade81d2c3e23ea99b75e906312c512d8c7580e6e4105b2dbd37e5e22
 WHIRLPOOL 
7feee8beda0990649c3456350aa16776de92a649f02d368bbdf925f9077db0f3d822a46d2dd5832405a112132990142119e94da26af4fde0dfb954b301a08ae3

diff --git a/net-misc/dropbear/dropbear-2016.73.ebuild 
b/net-misc/dropbear/dropbear-2016.73.ebuild
deleted file mode 100644
index d8979f91b60..000
--- a/net-misc/dropbear/dropbear-2016.73.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-inherit eutils savedconfig pam user
-
-DESCRIPTION="small SSH 2 client/server designed for small memory environments"
-HOMEPAGE="http://matt.ucc.asn.au/dropbear/dropbear.html;
-SRC_URI="http://matt.ucc.asn.au/dropbear/releases/${P}.tar.bz2
-   http://matt.ucc.asn.au/dropbear/testing/${P}.tar.bz2;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-linux ~x86-linux"
-IUSE="bsdpty minimal multicall pam +shadow static +syslog zlib"
-
-LIB_DEPEND="zlib? ( sys-libs/zlib[static-libs(+)] )
-   dev-libs/libtommath[static-libs(+)]"
-RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )
-   pam? ( virtual/pam )"
-DEPEND="${RDEPEND}
-   static? ( ${LIB_DEPEND} )"
-RDEPEND+=" pam? ( >=sys-auth/pambase-20080219.1 )"
-
-REQUIRED_USE="pam? ( !static )"
-
-set_options() {
-   progs=(
-   dropbear dbclient dropbearkey
-   $(usex minimal "" "dropbearconvert scp")
-   )
-   makeopts=(
-   MULTI=$(usex multicall 1 0)
-   STATIC=$(usex static 1 0)
-   )
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-0.46-dbscp.patch
-   sed -i \
-   -e '/SFTPSERVER_PATH/s:".*":"/usr/lib/misc/sftp-server":' \
-   options.h || die
-   sed -i \
-   -e '/pam_start/s:sshd:dropbear:' \
-   svr-authpam.c || die
-   restore_config options.h
-}
-
-src_configure() {
-   # XXX: Need to add libtomcrypt to the tree and re-enable this.
-   #   --disable-bundled-libtom
-   econf \
-   $(use_enable zlib) \
-   $(use_enable pam) \
-   $(use_enable !bsdpty openpty) \
-   $(use_enable shadow) \
-   $(use_enable syslog)
-}
-
-src_compile() {
-   set_options
-   emake "${makeopts[@]}" PROGRAMS="${progs[*]}"
-}
-
-src_install() {
-   set_options
-   emake "${makeopts[@]}" PROGRAMS="${progs[*]}" DESTDIR="${D}" install
-   doman *.8
-   newinitd "${FILESDIR}"/dropbear.init.d dropbear
-   newconfd "${FILESDIR}"/dropbear.conf.d dropbear
-   dodoc CHANGES README TODO SMALL MULTI
-
-   # The multi install target does not install the links right.
-   if use multicall ; then
-   cd "${ED}"/usr/bin
-   local x
-   for x in "${progs[@]}" ; do
-   ln -sf dropbearmulti ${x} || die "ln -s dropbearmulti 
to ${x} failed"
-   done
-   rm -f dropbear
-   dodir /usr/sbin
-   dosym ../bin/dropbearmulti /usr/sbin/dropbear
-   cd "${S}"
-   fi
-   save_config options.h
-
-   if ! use minimal ; then
-   mv "${ED}"/usr/bin/{,db}scp || die
-   fi
-
-   pamd_mimic system-remote-login dropbear auth account password session
-}
-
-pkg_preinst() {
-   enewgroup sshd 22
-   enewuser sshd 22 -1 /var/empty sshd
-}



[gentoo-commits] repo/gentoo:master commit in: net-vpn/strongswan/

2017-07-15 Thread Aaron Bauman
commit: 9bea4795e774fd839e1d0b27784c34cbf00f7631
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Jul 16 00:18:52 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Jul 16 00:18:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bea4795

net-vpn/strongswan: drop vulnerable wrt sec bug #620256

 net-vpn/strongswan/Manifest|   1 -
 net-vpn/strongswan/strongswan-5.3.4.ebuild | 302 -
 2 files changed, 303 deletions(-)

diff --git a/net-vpn/strongswan/Manifest b/net-vpn/strongswan/Manifest
index 57e8fe057bc..b3e0c053c88 100644
--- a/net-vpn/strongswan/Manifest
+++ b/net-vpn/strongswan/Manifest
@@ -1,2 +1 @@
-DIST strongswan-5.3.4.tar.bz2 4418300 SHA256 
938ad1f7b612e039f1d32333f4865160be70f9fb3c207a31127d0168116459aa SHA512 
2ab1c9a5d285c7f85b130a827b9525dd238a6d2b4c0c0e15a38a5e09dbb58228bfe4a6ab6c57ba6781f5d0d7f565cbb82e0ee2feac758c8033894c969acb8155
 WHIRLPOOL 
f7ffbefd62cc8eb4325b38392dbf84ea17b5e27b0917f75a31517ee9e864820faf6b30de4beb28ff17fb88fa16d4f042f698e2304542d01cba3e2392f63bb26f
 DIST strongswan-5.5.3.tar.bz2 4768820 SHA256 
c5ea54b199174708de11af9b8f4ecf28b5b0743d4bc0e380e741f25b28c0f8d4 SHA512 
0b0b25d2102c98cda54300dc8c3c3a49a55e64f7c695dda65a24f2194f19bce0b7aab9e4f7486c243b552f9d1a94867d6a8782ee504aad1c9973809706d599ac
 WHIRLPOOL 
80bc68ed5afc46fa7585c806cc52713d47495664ea0c37746198918bad9814d14d261be921158b6c7a9cd5e8c84733b0b23b80b7c6338005adca38974241d7f1

diff --git a/net-vpn/strongswan/strongswan-5.3.4.ebuild 
b/net-vpn/strongswan/strongswan-5.3.4.ebuild
deleted file mode 100644
index 0007796d7eb..000
--- a/net-vpn/strongswan/strongswan-5.3.4.ebuild
+++ /dev/null
@@ -1,302 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-inherit eutils linux-info systemd user
-
-DESCRIPTION="IPsec-based VPN solution focused on security and ease of use, 
supporting IKEv1/IKEv2 and MOBIKE"
-HOMEPAGE="http://www.strongswan.org/;
-SRC_URI="http://download.strongswan.org/${P}.tar.bz2;
-
-LICENSE="GPL-2 RSA DES"
-SLOT="0"
-KEYWORDS="amd64 arm ppc ~ppc64 x86"
-IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql 
networkmanager +non-root +openssl selinux sqlite pam pkcs11"
-
-STRONGSWAN_PLUGINS_STD="led lookip systime-fix unity vici"
-STRONGSWAN_PLUGINS_OPT="blowfish ccm ctr gcm ha ipseckey ntru padlock rdrand 
unbound whitelist"
-for mod in $STRONGSWAN_PLUGINS_STD; do
-   IUSE="${IUSE} +strongswan_plugins_${mod}"
-done
-
-for mod in $STRONGSWAN_PLUGINS_OPT; do
-   IUSE="${IUSE} strongswan_plugins_${mod}"
-done
-
-COMMON_DEPEND="!net-misc/openswan
-   gmp? ( >=dev-libs/gmp-4.1.5:= )
-   gcrypt? ( dev-libs/libgcrypt:0 )
-   caps? ( sys-libs/libcap )
-   curl? ( net-misc/curl )
-   ldap? ( net-nds/openldap )
-   openssl? ( >=dev-libs/openssl-0.9.8:=[-bindist] )
-   mysql? ( virtual/mysql )
-   sqlite? ( >=dev-db/sqlite-3.3.1 )
-   networkmanager? ( net-misc/networkmanager )
-   pam? ( sys-libs/pam )
-   strongswan_plugins_unbound? ( net-dns/unbound )"
-DEPEND="${COMMON_DEPEND}
-   virtual/linux-sources
-   sys-kernel/linux-headers"
-RDEPEND="${COMMON_DEPEND}
-   virtual/logger
-   sys-apps/iproute2
-   !net-vpn/libreswan
-   selinux? ( sec-policy/selinux-ipsec )"
-
-UGID="ipsec"
-
-pkg_setup() {
-   linux-info_pkg_setup
-   elog "Linux kernel version: ${KV_FULL}"
-
-   if ! kernel_is -ge 2 6 16; then
-   eerror
-   eerror "This ebuild currently only supports ${PN} with the"
-   eerror "native Linux 2.6 IPsec stack on kernels >= 2.6.16."
-   eerror
-   fi
-
-   if kernel_is -lt 2 6 34; then
-   ewarn
-   ewarn "IMPORTANT KERNEL NOTES: Please read carefully..."
-   ewarn
-
-   if kernel_is -lt 2 6 29; then
-   ewarn "[ < 2.6.29 ] Due to a missing kernel feature, 
you have to"
-   ewarn "include all required IPv6 modules even if you 
just intend"
-   ewarn "to run on IPv4 only."
-   ewarn
-   ewarn "This has been fixed with kernels >= 2.6.29."
-   ewarn
-   fi
-
-   if kernel_is -lt 2 6 33; then
-   ewarn "[ < 2.6.33 ] Kernels prior to 2.6.33 include a 
non-standards"
-   ewarn "compliant implementation for SHA-2 HMAC support 
in ESP and"
-   ewarn "miss SHA384 and SHA512 HMAC support altogether."
-   ewarn
-   ewarn "If you need any of those features, please use 
kernel >= 2.6.33."
-   ewarn
-   fi
-
-   if kernel_is -lt 2 6 34; then
-   ewarn "[ < 2.6.34 ] Support for the AES-GMAC 
authentification-only"
-  

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

2017-07-15 Thread Thomas Deutschmann
commit: 7af4cac21aab50ddcfe66b0186e8c17190968839
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Jul 15 23:47:33 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Jul 15 23:49:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7af4cac2

media-gfx/potrace: Respect CC (bug #610098)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --force

 media-gfx/potrace/potrace-1.13.ebuild | 5 +++--
 media-gfx/potrace/potrace-1.14.ebuild | 3 ++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/media-gfx/potrace/potrace-1.13.ebuild 
b/media-gfx/potrace/potrace-1.13.ebuild
index 3ae135e1745..87359f05c2e 100644
--- a/media-gfx/potrace/potrace-1.13.ebuild
+++ b/media-gfx/potrace/potrace-1.13.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
 
-inherit autotools-utils
+inherit autotools-utils toolchain-funcs
 
 DESCRIPTION="Transforming bitmaps into vector graphics"
 HOMEPAGE="http://potrace.sourceforge.net/;
@@ -20,6 +20,7 @@ DEPEND="${RDEPEND}"
 DOCS=( AUTHORS ChangeLog NEWS README )
 
 src_configure() {
+   tc-export CC # bug 610098
local myeconfargs=(
--docdir="${EPREFIX}"/usr/share/doc/${PF}
--enable-zlib

diff --git a/media-gfx/potrace/potrace-1.14.ebuild 
b/media-gfx/potrace/potrace-1.14.ebuild
index 8cd7b1955ec..f8bf164ed65 100644
--- a/media-gfx/potrace/potrace-1.14.ebuild
+++ b/media-gfx/potrace/potrace-1.14.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="5"
 
-inherit autotools-utils
+inherit autotools-utils toolchain-funcs
 
 DESCRIPTION="Transforming bitmaps into vector graphics"
 HOMEPAGE="http://potrace.sourceforge.net/;
@@ -20,6 +20,7 @@ DEPEND="${RDEPEND}"
 DOCS=( AUTHORS ChangeLog NEWS README )
 
 src_configure() {
+   tc-export CC # bug 610098
local myeconfargs=(
--docdir="${EPREFIX}"/usr/share/doc/${PF}
--enable-zlib



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

2017-07-15 Thread Thomas Deutschmann
commit: 2e80093bec92f7adb4c95fea515e71aa2a02e1ac
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Jul 15 23:33:36 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Jul 15 23:49:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e80093b

media-gfx/imagemagick: Drop dependency media-gfx/autotrace on (bug #620806)

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 media-gfx/imagemagick/imagemagick-6.9.7.4.ebuild| 5 ++---
 media-gfx/imagemagick/imagemagick-6.9.8.3.ebuild| 5 ++---
 media-gfx/imagemagick/imagemagick-6.9.8.6.ebuild| 5 ++---
 media-gfx/imagemagick/imagemagick-7.0.5.7-r1.ebuild | 5 ++---
 media-gfx/imagemagick/metadata.xml  | 1 -
 5 files changed, 8 insertions(+), 13 deletions(-)

diff --git a/media-gfx/imagemagick/imagemagick-6.9.7.4.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.7.4.ebuild
index 1db6d7dfaee..75214f37c6e 100644
--- a/media-gfx/imagemagick/imagemagick-6.9.7.4.ebuild
+++ b/media-gfx/imagemagick/imagemagick-6.9.7.4.ebuild
@@ -14,13 +14,12 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
 LICENSE="imagemagick"
 SLOT="0/${PV}"
 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 ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri 
jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript 
q32 q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
+IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg 
jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q64 q8 
raw static-libs svg test tiff truetype webp wmf X xml zlib"
 
 RESTRICT="perl? ( userpriv )"
 
 RDEPEND="
dev-libs/libltdl:0
-   autotrace? ( >=media-gfx/autotrace-0.31.1 )
bzip2? ( app-arch/bzip2 )
corefonts? ( media-fonts/corefonts )
djvu? ( app-text/djvu )
@@ -112,7 +111,7 @@ src_configure() {
$(use_with bzip2 bzlib) \
$(use_with X x) \
$(use_with zlib) \
-   $(use_with autotrace) \
+   --without-autotrace
$(use_with postscript dps) \
$(use_with djvu) \
--with-dejavu-font-dir="${EPREFIX}"/usr/share/fonts/dejavu \

diff --git a/media-gfx/imagemagick/imagemagick-6.9.8.3.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.8.3.ebuild
index c1082ae7128..f89bead8132 100644
--- a/media-gfx/imagemagick/imagemagick-6.9.8.3.ebuild
+++ b/media-gfx/imagemagick/imagemagick-6.9.8.3.ebuild
@@ -14,13 +14,12 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
 LICENSE="imagemagick"
 SLOT="0/${PV}"
 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 ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri 
jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript 
q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
+IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg 
jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 q8 raw 
static-libs svg test tiff truetype webp wmf X xml zlib"
 
 RESTRICT="perl? ( userpriv )"
 
 RDEPEND="
dev-libs/libltdl:0
-   autotrace? ( >=media-gfx/autotrace-0.31.1 )
bzip2? ( app-arch/bzip2 )
corefonts? ( media-fonts/corefonts )
djvu? ( app-text/djvu )
@@ -111,7 +110,7 @@ src_configure() {
$(use_with bzip2 bzlib) \
$(use_with X x) \
$(use_with zlib) \
-   $(use_with autotrace) \
+   --without-autotrace \
$(use_with postscript dps) \
$(use_with djvu) \
--with-dejavu-font-dir="${EPREFIX}"/usr/share/fonts/dejavu \

diff --git a/media-gfx/imagemagick/imagemagick-6.9.8.6.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.8.6.ebuild
index df1817d711c..f470e02b1ff 100644
--- a/media-gfx/imagemagick/imagemagick-6.9.8.6.ebuild
+++ b/media-gfx/imagemagick/imagemagick-6.9.8.6.ebuild
@@ -14,13 +14,12 @@ SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
 LICENSE="imagemagick"
 SLOT="0/${PV}"
 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 ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri 
jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript 
q32 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
+IUSE="bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri jbig jpeg 
jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript q32 

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

2017-07-15 Thread Thomas Deutschmann
commit: 4d2aa58a4810e7bf7e4340579549f237ce3665d8
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Jul 15 23:52:08 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Jul 15 23:52:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d2aa58a

package.mask: Last rite media-gfx/autotrace, #620802

 profiles/package.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 5966e5b4b50..e8c1f68ba9c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Thomas Deutschmann  (16 Jul 2017)
+# Discontinued project with multiple vulnerabilities, removal in a month 
(#620802)
+media-gfx/autotrace
+
 # Pacho Ramos  (14 Jul 2017)
 # Not usable, dead since 2003, removal in a month (#24706)
 app-mobilephone/esms



[gentoo-commits] repo/gentoo:master commit in: app-text/mftrace/

2017-07-15 Thread Thomas Deutschmann
commit: 3a8df69639a82439e5cee5f5a01a12201d76a34d
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Jul 15 23:40:51 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Jul 15 23:49:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a8df696

app-text/mftrace: Drop dependency on media-gfx/autotrace (bug #620804)

Package-Manager: Portage-2.3.5, Repoman-2.3.2
RepoMan-Options: --force

 app-text/mftrace/{mftrace-1.2.18-r2.ebuild => mftrace-1.2.18-r3.ebuild} | 2 +-
 app-text/mftrace/{mftrace-1.2.19.ebuild => mftrace-1.2.19-r1.ebuild}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/mftrace/mftrace-1.2.18-r2.ebuild 
b/app-text/mftrace/mftrace-1.2.18-r3.ebuild
similarity index 94%
rename from app-text/mftrace/mftrace-1.2.18-r2.ebuild
rename to app-text/mftrace/mftrace-1.2.18-r3.ebuild
index 80ff5020095..059796f95a3 100644
--- a/app-text/mftrace/mftrace-1.2.18-r2.ebuild
+++ b/app-text/mftrace/mftrace-1.2.18-r3.ebuild
@@ -19,7 +19,7 @@ IUSE="test truetype"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND=">=app-text/t1utils-1.25
-   || ( media-gfx/potrace >=media-gfx/autotrace-0.30 )
+   media-gfx/potrace
truetype? ( media-gfx/fontforge )
virtual/latex-base
${PYTHON_DEPS}"

diff --git a/app-text/mftrace/mftrace-1.2.19.ebuild 
b/app-text/mftrace/mftrace-1.2.19-r1.ebuild
similarity index 94%
rename from app-text/mftrace/mftrace-1.2.19.ebuild
rename to app-text/mftrace/mftrace-1.2.19-r1.ebuild
index 499626546e9..fedb8709080 100644
--- a/app-text/mftrace/mftrace-1.2.19.ebuild
+++ b/app-text/mftrace/mftrace-1.2.19-r1.ebuild
@@ -19,7 +19,7 @@ IUSE="test truetype"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND=">=app-text/t1utils-1.25
-   || ( media-gfx/potrace >=media-gfx/autotrace-0.30 )
+   media-gfx/potrace
truetype? ( media-gfx/fontforge )
virtual/latex-base
${PYTHON_DEPS}"



[gentoo-commits] repo/gentoo:master commit in: perl-core/Module-CoreList/

2017-07-15 Thread Kent Fredric
commit: 111b78f70469fb3b561235fc9dcfed63ef982713
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Jul 15 22:36:16 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 23:45:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=111b78f7

perl-core/Module-CoreList: Add equivalent of Perl 5.24.2's version

This is mostly a gap filler to avoid weird version combinations.

See 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/virtual/perl-Module-CoreList

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 perl-core/Module-CoreList/Manifest |  1 +
 .../Module-CoreList/Module-CoreList-5.201.707.150.ebuild   | 14 ++
 2 files changed, 15 insertions(+)

diff --git a/perl-core/Module-CoreList/Manifest 
b/perl-core/Module-CoreList/Manifest
index 9701011b33f..6833ced87bd 100644
--- a/perl-core/Module-CoreList/Manifest
+++ b/perl-core/Module-CoreList/Manifest
@@ -1 +1,2 @@
 DIST Module-CoreList-5.20170530.tar.gz 97643 SHA256 
2d1bebd30cb2f082755f0604353316cb530fb22a7ef477313fed518691555c65 SHA512 
addc57ceac69b8002a1673c0fbf90394d46c4dcaa0af2c30b3e24062f2806be5fd48cd2c04422fed16da75eeea9942e76e64d6f01512a1d516eed8f999b964ce
 WHIRLPOOL 
ddad059d908f97d4b6879c14154b2ecf37201c21f08eafe23e617a1444b9c7742c6e18645713ec73638384d8383b8f41561c48de95a59a2394a74de0f06a183d
+DIST Module-CoreList-5.20170715.tar.gz 99382 SHA256 
c623d5fca832881c54f3ba3f58d63297395a5b7e0fe7296e0dc8cc3cebf84349 SHA512 
94ac968e94dae5e5e2d1f69f6dcb2b72ec50cd30b695fa95b1c48fff42f9a62f6e1c7ca9f9576491b6f1eacd952bb0c5cef55626ba3985de65a715ecde59026b
 WHIRLPOOL 
57bfa188a515b5ad0c14cab14ebbbef05876aa0f5a6dda808600f13c0599e8f542fdec25e858c8ba2390345085e04388999e1ec1cd2f162432ee737a8643c8c3

diff --git a/perl-core/Module-CoreList/Module-CoreList-5.201.707.150.ebuild 
b/perl-core/Module-CoreList/Module-CoreList-5.201.707.150.ebuild
new file mode 100644
index 000..edc900d352b
--- /dev/null
+++ b/perl-core/Module-CoreList/Module-CoreList-5.201.707.150.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_AUTHOR=BINGOS
+DIST_VERSION=5.20170715
+inherit perl-module
+
+DESCRIPTION="what modules shipped with versions of perl"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""



[gentoo-commits] repo/gentoo:master commit in: profiles/, virtual/perl-Module-CoreList/

2017-07-15 Thread Kent Fredric
commit: 755b7198d27e5674eaf9fd7fab79978c2242776f
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Jul 12 10:30:53 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 23:45:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=755b7198

virtual/perl-Module-CoreList: Bump for perl 5.24.2 (masked)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 profiles/package.mask   |  1 +
 .../perl-Module-CoreList-5.201.707.150.ebuild   | 17 +
 2 files changed, 18 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index ae60be7d33d..97a45e531ae 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -295,6 +295,7 @@ net-libs/dhcpcd-dbus
 # Kent Fredric  (12 Jul 2017)
 # Masked for staging purposes
 =dev-lang/perl-5.24.2*
+=virtual/perl-Module-CoreList-5.201.707.150
 
 # Hans de Graaff  (09 Jul 2017)
 # Upstream has removed the code and the published gem.

diff --git 
a/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.707.150.ebuild 
b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.707.150.ebuild
new file mode 100644
index 000..0c82f5f5b4f
--- /dev/null
+++ b/virtual/perl-Module-CoreList/perl-Module-CoreList-5.201.707.150.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Virtual for ${PN#perl-}"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# Check 
https://wiki.gentoo.org/wiki/Project:Perl/maint-notes/virtual/perl-Module-CoreList
+# When bumping this package.
+RDEPEND="
+   || ( =dev-lang/perl-5.24.2* ~perl-core/${PN#perl-}-${PV} )
+   dev-lang/perl:=
+   !perl-core/${PN#perl-}-${PV}-r999
+"



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-XSLoader/, virtual/perl-IO/, virtual/perl-Net-Ping/, ...

2017-07-15 Thread Kent Fredric
commit: 41b71c47f10d1266b0d3b5e9781d0a467ab88213
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Jul 12 10:01:01 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 23:45:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41b71c47

virtual/perl-*: Extend all virtuals relevant to Perl 5.24.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r2.ebuild | 2 +-
 virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r2.ebuild  | 2 +-
 virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r2.ebuild  | 2 +-
 virtual/perl-Digest/perl-Digest-1.170.100_rc-r2.ebuild  | 2 +-
 virtual/perl-Encode/perl-Encode-2.800.100_rc.ebuild | 2 +-
 .../perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker-7.100.200_rc.ebuild | 2 +-
 virtual/perl-File-Spec/perl-File-Spec-3.630.100_rc.ebuild   | 2 +-
 virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.56.1_rc.ebuild  | 2 +-
 virtual/perl-IO-Compress/perl-IO-Compress-2.69.1_rc.ebuild  | 2 +-
 virtual/perl-IO/perl-IO-1.360.100_rc.ebuild | 2 +-
 virtual/perl-IPC-Cmd/perl-IPC-Cmd-0.920.100_rc-r2.ebuild| 2 +-
 virtual/perl-JSON-PP/perl-JSON-PP-2.273.0.100_rc-r2.ebuild  | 2 +-
 .../perl-Locale-Maketext-Simple-0.210.100_rc-r2.ebuild  | 2 +-
 .../perl-Locale-Maketext/perl-Locale-Maketext-1.260.100_rc-r2.ebuild| 2 +-
 virtual/perl-Memoize/perl-Memoize-1.30.100_rc-r2.ebuild | 2 +-
 virtual/perl-Net-Ping/perl-Net-Ping-2.430.100_rc-r2.ebuild  | 2 +-
 .../perl-Parse-CPAN-Meta/perl-Parse-CPAN-Meta-1.441.700.100_rc.ebuild   | 2 +-
 virtual/perl-Storable/perl-Storable-2.560.100_rc.ebuild | 2 +-
 virtual/perl-Sys-Syslog/perl-Sys-Syslog-0.330.100_rc-r2.ebuild  | 2 +-
 virtual/perl-Test-Harness/perl-Test-Harness-3.360.100_rc.ebuild | 2 +-
 virtual/perl-Test/perl-Test-1.280.100_rc.ebuild | 2 +-
 virtual/perl-XSLoader/perl-XSLoader-0.220.0.ebuild  | 2 +-
 virtual/perl-bignum/perl-bignum-0.420.100_rc.ebuild | 2 +-
 virtual/perl-libnet/perl-libnet-3.80.100_rc.ebuild  | 2 +-
 24 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r2.ebuild 
b/virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r2.ebuild
index 8729b16197f..10df84922a7 100644
--- a/virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r2.ebuild
+++ b/virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r2.ebuild
@@ -8,7 +8,7 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="
-   || ( =dev-lang/perl-5.24.1* ~perl-core/${PN#perl-}-${PV} )
+   || ( =dev-lang/perl-5.24.2* =dev-lang/perl-5.24.1* 
~perl-core/${PN#perl-}-${PV} )
dev-lang/perl:=
!perl-core/${PN#perl-}-${PV}-r999

diff --git a/virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r2.ebuild 
b/virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r2.ebuild
index 40b2906a983..8c34a253fc6 100644
--- a/virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r2.ebuild
+++ b/virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r2.ebuild
@@ -8,7 +8,7 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86"
 
 RDEPEND="
-   || ( =dev-lang/perl-5.24.1* ~perl-core/${PN#perl-}-${PV} )
+   || ( =dev-lang/perl-5.24.2* =dev-lang/perl-5.24.1* 
~perl-core/${PN#perl-}-${PV} )
dev-lang/perl:=
!perl-core/${PN#perl-}-${PV}-r999

diff --git a/virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r2.ebuild 
b/virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r2.ebuild
index d19965c287a..59b58447dc2 100644
--- a/virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r2.ebuild
+++ b/virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r2.ebuild
@@ -8,7 +8,7 @@ SLOT="0"
 KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
-   || ( =dev-lang/perl-5.24.1* ~perl-core/${PN#perl-}-${PV} )
+   || ( =dev-lang/perl-5.24.2* =dev-lang/perl-5.24.1* 
~perl-core/${PN#perl-}-${PV} )
dev-lang/perl:=
!perl-core/${PN#perl-}-${PV}-r999

diff --git a/virtual/perl-Digest/perl-Digest-1.170.100_rc-r2.ebuild 
b/virtual/perl-Digest/perl-Digest-1.170.100_rc-r2.ebuild
index 723a7c45840..af7050a90f2 100644
--- a/virtual/perl-Digest/perl-Digest-1.170.100_rc-r2.ebuild
+++ b/virtual/perl-Digest/perl-Digest-1.170.100_rc-r2.ebuild
@@ -8,7 +8,7 @@ SLOT="0"
 KEYWORDS="alpha amd64 

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

2017-07-15 Thread Kent Fredric
commit: cdf88d4c9d60d9756ac334644fe266b74226d4d2
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Jul 15 22:50:16 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 23:45:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdf88d4c

dev-lang/perl: Fix dual-life script version

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-lang/perl/perl-5.24.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/perl/perl-5.24.2.ebuild b/dev-lang/perl/perl-5.24.2.ebuild
index b6477b0bb05..f8594eb1265 100644
--- a/dev-lang/perl/perl-5.24.2.ebuild
+++ b/dev-lang/perl/perl-5.24.2.ebuild
@@ -63,7 +63,7 @@ dual_scripts() {
src_remove_dual  perl-core/ExtUtils-ParseXS   3.310.0   xsubpp
src_remove_dual  perl-core/IO-Compress2.69.1_rc  
zipdetails
src_remove_dual  perl-core/JSON-PP2.273.0.100_rc 
json_pp
-   src_remove_dual  perl-core/Module-CoreList5.201.701.142.400_rc  
corelist
+   src_remove_dual  perl-core/Module-CoreList5.201.707.152.400_rc  
corelist
src_remove_dual  perl-core/Pod-Parser 1.630.0   
pod2usage podchecker podselect
src_remove_dual  perl-core/Pod-Perldoc3.250.300_rc  perldoc
src_remove_dual  perl-core/Test-Harness   3.360.100_rc  prove



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

2017-07-15 Thread Kent Fredric
commit: 5d1335398fcc165f8ed69c6543b3119ff652f02d
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Jul 15 23:03:50 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 23:45:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d133539

dev-lang/perl: Fix broken oldversen value.

TODO: Automate this.
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-lang/perl/perl-5.24.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/perl/perl-5.24.2.ebuild b/dev-lang/perl/perl-5.24.2.ebuild
index f8594eb1265..592e583b9bc 100644
--- a/dev-lang/perl/perl-5.24.2.ebuild
+++ b/dev-lang/perl/perl-5.24.2.ebuild
@@ -9,7 +9,7 @@ PATCH_VER=1
 CROSS_VER=1.1.4
 PATCH_BASE="perl-5.24.2-patches-${PATCH_VER}"
 
-PERL_OLDVERSEN="5.24.0"
+PERL_OLDVERSEN="5.24.1 5.24.0"
 DIST_AUTHOR=SHAY
 
 SHORT_PV="${PV%.*}"



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

2017-07-15 Thread Kent Fredric
commit: a81ae37b32396d33d03141d918d9cc2ec5dd9b0f
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Jul 15 19:50:29 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 23:45:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a81ae37b

profiles: unmask perl 5.24.2

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 97a45e531ae..5966e5b4b50 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -292,11 +292,6 @@ net-libs/dhcpcd-dbus
 # tree anymore, bug #624670. Removal in a month.
 =dev-python/beautifulsoup-3.1.0.1-r2
 
-# Kent Fredric  (12 Jul 2017)
-# Masked for staging purposes
-=dev-lang/perl-5.24.2*
-=virtual/perl-Module-CoreList-5.201.707.150
-
 # Hans de Graaff  (09 Jul 2017)
 # Upstream has removed the code and the published gem.
 # Removal in 30 days.



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Digest-SHA/, virtual/perl-CPAN/, virtual/perl-HTTP-Tiny/, ...

2017-07-15 Thread Kent Fredric
commit: 51570e0657bb371a52073da1b2fa4aa0684799c6
Author: Kent Fredric  gentoo  org>
AuthorDate: Wed Jul 12 10:08:19 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 23:45:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51570e06

virtual/perl-*: -r1 bump all virtuals that need to update for Perl 5.24.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 ...e-Tar-2.40.100_rc-r2.ebuild => perl-Archive-Tar-2.40.100_rc-r3.ebuild} | 0
 ...{perl-CPAN-2.110.100_rc-r2.ebuild => perl-CPAN-2.110.100_rc-r3.ebuild} | 0
 ...-SHA-5.950.100_rc-r2.ebuild => perl-Digest-SHA-5.950.100_rc-r3.ebuild} | 0
 ...l-Digest-1.170.100_rc-r2.ebuild => perl-Digest-1.170.100_rc-r3.ebuild} | 0
 ...perl-Encode-2.800.100_rc.ebuild => perl-Encode-2.800.100_rc-r1.ebuild} | 0
 ...7.100.200_rc.ebuild => perl-ExtUtils-MakeMaker-7.100.200_rc-r1.ebuild} | 0
 ...ile-Spec-3.630.100_rc.ebuild => perl-File-Spec-3.630.100_rc-r1.ebuild} | 0
 ...perl-HTTP-Tiny-0.56.1_rc.ebuild => perl-HTTP-Tiny-0.56.1_rc-r1.ebuild} | 0
 ...-IO-Compress-2.69.1_rc.ebuild => perl-IO-Compress-2.69.1_rc-r1.ebuild} | 0
 .../{perl-IO-1.360.100_rc.ebuild => perl-IO-1.360.100_rc-r1.ebuild}   | 0
 ...IPC-Cmd-0.920.100_rc-r2.ebuild => perl-IPC-Cmd-0.920.100_rc-r3.ebuild} | 0
 ...-PP-2.273.0.100_rc-r2.ebuild => perl-JSON-PP-2.273.0.100_rc-r3.ebuild} | 0
 ...00_rc-r2.ebuild => perl-Locale-Maketext-Simple-0.210.100_rc-r3.ebuild} | 0
 ...1.260.100_rc-r2.ebuild => perl-Locale-Maketext-1.260.100_rc-r3.ebuild} | 0
 ...l-Memoize-1.30.100_rc-r2.ebuild => perl-Memoize-1.30.100_rc-r3.ebuild} | 0
 ...t-Ping-2.430.100_rc-r2.ebuild => perl-Net-Ping-2.430.100_rc-r3.ebuild} | 0
 700.100_rc.ebuild => perl-Parse-CPAN-Meta-1.441.700.100_rc-r1.ebuild} | 0
 ...-Storable-2.560.100_rc.ebuild => perl-Storable-2.560.100_rc-r1.ebuild} | 0
 ...slog-0.330.100_rc-r2.ebuild => perl-Sys-Syslog-0.330.100_rc-r3.ebuild} | 0
 ...rness-3.360.100_rc.ebuild => perl-Test-Harness-3.360.100_rc-r1.ebuild} | 0
 .../{perl-Test-1.280.100_rc.ebuild => perl-Test-1.280.100_rc-r1.ebuild}   | 0
 .../{perl-XSLoader-0.220.0.ebuild => perl-XSLoader-0.220.0-r1.ebuild} | 0
 ...perl-bignum-0.420.100_rc.ebuild => perl-bignum-0.420.100_rc-r1.ebuild} | 0
 .../{perl-libnet-3.80.100_rc.ebuild => perl-libnet-3.80.100_rc-r1.ebuild} | 0
 24 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r2.ebuild 
b/virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r3.ebuild
similarity index 100%
rename from virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r2.ebuild
rename to virtual/perl-Archive-Tar/perl-Archive-Tar-2.40.100_rc-r3.ebuild

diff --git a/virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r2.ebuild 
b/virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r3.ebuild
similarity index 100%
rename from virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r2.ebuild
rename to virtual/perl-CPAN/perl-CPAN-2.110.100_rc-r3.ebuild

diff --git a/virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r2.ebuild 
b/virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r3.ebuild
similarity index 100%
rename from virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r2.ebuild
rename to virtual/perl-Digest-SHA/perl-Digest-SHA-5.950.100_rc-r3.ebuild

diff --git a/virtual/perl-Digest/perl-Digest-1.170.100_rc-r2.ebuild 
b/virtual/perl-Digest/perl-Digest-1.170.100_rc-r3.ebuild
similarity index 100%
rename from virtual/perl-Digest/perl-Digest-1.170.100_rc-r2.ebuild
rename to virtual/perl-Digest/perl-Digest-1.170.100_rc-r3.ebuild

diff --git a/virtual/perl-Encode/perl-Encode-2.800.100_rc.ebuild 
b/virtual/perl-Encode/perl-Encode-2.800.100_rc-r1.ebuild
similarity index 100%
rename from virtual/perl-Encode/perl-Encode-2.800.100_rc.ebuild
rename to virtual/perl-Encode/perl-Encode-2.800.100_rc-r1.ebuild

diff --git 
a/virtual/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker-7.100.200_rc.ebuild 
b/virtual/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker-7.100.200_rc-r1.ebuild
similarity index 100%
rename from 
virtual/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker-7.100.200_rc.ebuild
rename to 
virtual/perl-ExtUtils-MakeMaker/perl-ExtUtils-MakeMaker-7.100.200_rc-r1.ebuild

diff --git a/virtual/perl-File-Spec/perl-File-Spec-3.630.100_rc.ebuild 
b/virtual/perl-File-Spec/perl-File-Spec-3.630.100_rc-r1.ebuild
similarity index 100%
rename from virtual/perl-File-Spec/perl-File-Spec-3.630.100_rc.ebuild
rename to virtual/perl-File-Spec/perl-File-Spec-3.630.100_rc-r1.ebuild

diff --git a/virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.56.1_rc.ebuild 
b/virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.56.1_rc-r1.ebuild
similarity index 100%
rename from virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.56.1_rc.ebuild
rename to virtual/perl-HTTP-Tiny/perl-HTTP-Tiny-0.56.1_rc-r1.ebuild

diff --git a/virtual/perl-IO-Compress/perl-IO-Compress-2.69.1_rc.ebuild 
b/virtual/perl-IO-Compress/perl-IO-Compress-2.69.1_rc-r1.ebuild
similarity index 100%
rename from 

[gentoo-commits] proj/kde:master commit in: sets/

2017-07-15 Thread Andreas Sturmlechner
commit: 41786057b7d6a9324f525d99ec6d6b891a6639f6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jul 15 23:19:23 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Jul 15 23:20:55 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=41786057

sets: Add KDE Applications 17.08

 sets/kde-applications-17.08 | 22 +
 sets/kde-baseapps-17.08 |  4 
 sets/kdeaccessibility-17.08 |  6 +
 sets/kdeadmin-17.08 |  3 +++
 sets/kdeedu-17.08   | 27 +
 sets/kdegames-17.08 | 42 
 sets/kdegraphics-17.08  | 18 ++
 sets/kdemultimedia-17.08| 12 ++
 sets/kdenetwork-17.08   | 25 +++
 sets/kdepim-17.08   | 58 +
 sets/kdesdk-17.08   | 16 +
 sets/kdeutils-17.08 | 15 
 sets/kdewebdev-17.08|  4 
 13 files changed, 252 insertions(+)

diff --git a/sets/kde-applications-17.08 b/sets/kde-applications-17.08
new file mode 100644
index 00..3911a52bc8
--- /dev/null
+++ b/sets/kde-applications-17.08
@@ -0,0 +1,22 @@
+

[gentoo-commits] proj/kde:master commit in: Documentation/package.unmask/.kde-applications-17.08/, ...

2017-07-15 Thread Andreas Sturmlechner
commit: dda22d2a4e3bdbce0bbcc91cb30ff98d47c34708
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jul 15 23:27:32 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Jul 15 23:27:32 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=dda22d2a

Documentation: Add KDE Applications 17.08

 Documentation/maintainers/regenerate-files |   2 +-
 .../.kde-applications-17.08/_HEADER_   |   2 +
 .../.kde-applications-17.08/kde-applications-17.08 |   1 +
 .../.kde-applications-17.08/kde-baseapps-17.08 |   1 +
 .../.kde-applications-17.08/kdeaccessibility-17.08 |   1 +
 .../.kde-applications-17.08/kdeadmin-17.08 |   1 +
 .../.kde-applications-17.08/kdeedu-17.08   |   1 +
 .../.kde-applications-17.08/kdegames-17.08 |   1 +
 .../.kde-applications-17.08/kdegraphics-17.08  |   1 +
 .../.kde-applications-17.08/kdemultimedia-17.08|   1 +
 .../.kde-applications-17.08/kdenetwork-17.08   |   1 +
 .../.kde-applications-17.08/kdepim-17.08   |   1 +
 .../.kde-applications-17.08/kdesdk-17.08   |   1 +
 .../.kde-applications-17.08/kdeutils-17.08 |   1 +
 .../.kde-applications-17.08/kdewebdev-17.08|   1 +
 .../.kde-applications-17.08/more-deps  |   3 +
 .../kde-applications-17.08.keywords| 246 +
 Documentation/package.mask/kde-applications-17.08  | 244 
 .../.kde-applications-17.08/_HEADER_   |   3 +
 .../.kde-applications-17.08/kde-applications-17.08 |   1 +
 .../.kde-applications-17.08/kde-baseapps-17.08 |   1 +
 .../.kde-applications-17.08/kdeaccessibility-17.08 |   1 +
 .../.kde-applications-17.08/kdeadmin-17.08 |   1 +
 .../.kde-applications-17.08/kdeedu-17.08   |   1 +
 .../.kde-applications-17.08/kdegames-17.08 |   1 +
 .../.kde-applications-17.08/kdegraphics-17.08  |   1 +
 .../.kde-applications-17.08/kdemultimedia-17.08|   1 +
 .../.kde-applications-17.08/kdenetwork-17.08   |   1 +
 .../.kde-applications-17.08/kdepim-17.08   |   1 +
 .../.kde-applications-17.08/kdesdk-17.08   |   1 +
 .../.kde-applications-17.08/kdeutils-17.08 |   1 +
 .../.kde-applications-17.08/kdewebdev-17.08|   1 +
 .../package.unmask/kde-applications-17.08  | 244 
 33 files changed, 769 insertions(+), 1 deletion(-)

diff --git a/Documentation/maintainers/regenerate-files 
b/Documentation/maintainers/regenerate-files
index 02928e024e..60131faceb 100755
--- a/Documentation/maintainers/regenerate-files
+++ b/Documentation/maintainers/regenerate-files
@@ -15,7 +15,7 @@ KF_RELEASE=${KF_RELEASE:-5.34}
 PLASMA_RELEASES="5.9 5.10"
 PLASMA_RELEASE=${PLASMA_RELEASE:-5.9}
 
-APPS_RELEASES="16.12 17.04"
+APPS_RELEASES="16.12 17.04 17.08"
 APPS_RELEASE=${APPS_RELEASE:-16.12}
 
 # regenerate keywords

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-17.08/_HEADER_ 
b/Documentation/package.accept_keywords/.kde-applications-17.08/_HEADER_
new file mode 100644
index 00..c8c931f329
--- /dev/null
+++ b/Documentation/package.accept_keywords/.kde-applications-17.08/_HEADER_
@@ -0,0 +1,2 @@
+# You can use this file to keyword/unkeyword KDE Applications 17.08.
+# Edit Documentation/package.keywords/.kde-applications-17.08/ files instead.

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-17.08/kde-applications-17.08
 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kde-applications-17.08
new file mode 12
index 00..686ec8859c
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kde-applications-17.08
@@ -0,0 +1 @@
+../../../sets/kde-applications-17.08
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-17.08/kde-baseapps-17.08
 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kde-baseapps-17.08
new file mode 12
index 00..66ca4aac3e
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kde-baseapps-17.08
@@ -0,0 +1 @@
+../../../sets/kde-baseapps-17.08
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-17.08/kdeaccessibility-17.08
 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kdeaccessibility-17.08
new file mode 12
index 00..4868db23bc
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kdeaccessibility-17.08
@@ -0,0 +1 @@
+../../../sets/kdeaccessibility-17.08
\ No newline at end of file

diff --git 
a/Documentation/package.accept_keywords/.kde-applications-17.08/kdeadmin-17.08 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kdeadmin-17.08
new file mode 12
index 00..1fb2b9884a
--- /dev/null
+++ 
b/Documentation/package.accept_keywords/.kde-applications-17.08/kdeadmin-17.08
@@ -0,0 +1 @@

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

2017-07-15 Thread Andrew Savchenko
commit: 4de2250dc058e28fa13bcdf95defcf48d5cbab63
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jul 15 23:23:45 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jul 15 23:23:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4de2250d

remove game-engines/renpy package mask

The package is back on track again, updated to the latest version
with critical bugs closed.

Signed-off-by: Andrew Savchenko  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 6752fa51759..ae60be7d33d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -83,12 +83,6 @@ sys-libs/libacpi
 sys-power/yacpi
 
 # Pacho Ramos  (14 Jul 2017)
-# games-engines/renpy cannot be used with its only reverse dep in the tree
-# as-is, it needs a major version bump and build fixing too, bug #587872.
-# Removal in a month.
-games-engines/renpy
-
-# Pacho Ramos  (14 Jul 2017)
 # Doesn't build for a long time, bug #587942
 sci-mathematics/cado-nfs
 



[gentoo-commits] repo/gentoo:master commit in: games-engines/renpy/files/, games-engines/renpy/

2017-07-15 Thread Andrew Savchenko
commit: 9a1bcce1539cf2b1107865cb5b77eb189ac3344c
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jul 15 23:21:39 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jul 15 23:22:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a1bcce1

games-engines/renpy: version bump

Fixes bugs 587872 and 575086.

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Andrew Savchenko  gentoo.org>

 games-engines/renpy/Manifest   |   1 +
 .../renpy/files/renpy-6.99.12.4-multiple-abi.patch | 357 +
 games-engines/renpy/files/renpy.1  | 163 ++
 games-engines/renpy/renpy-6.17.7.ebuild|   4 +-
 ...{renpy-6.99.6.ebuild => renpy-6.99.12.4.ebuild} |  11 +-
 games-engines/renpy/renpy-6.99.6.ebuild|   4 +-
 6 files changed, 532 insertions(+), 8 deletions(-)

diff --git a/games-engines/renpy/Manifest b/games-engines/renpy/Manifest
index 4d65ed544f0..cadcd3c3f46 100644
--- a/games-engines/renpy/Manifest
+++ b/games-engines/renpy/Manifest
@@ -1,2 +1,3 @@
 DIST renpy-6.17.7-source.tar.bz2 17932988 SHA256 
fef01de9e482b73d9d409de7a43bada6dd3e2a0549b99dd487306371190ed038 SHA512 
22b0e08b18ee35317b11451205233cbd8a29617d9c3d298bbdcfc5757f67c2f0e4c8a748aa83d5c8b43786c062ffca109d07e981efa750fcee26f45f08a33ea2
 WHIRLPOOL 
fef82eb6c958a2525797e5d8bfae3488fba606b70eeed5c94f7afcab4fa46e7a7eb43d91b4bd55f553b65a72b12236e02ecdee55e8852c1fafc055332f9d131d
+DIST renpy-6.99.12.4-source.tar.bz2 18192453 SHA256 
65d8c97acfce7a8025ad0f6a1a3d5ef88d4319ece02370f33cf7a791b320a30c SHA512 
375b67e15630fc21915136e70bc93db6da7c2da192d39b1256822513ae44974124522c85f1976f2af62df27b5fa11493af488b02abcf0081eeae03e1a69dfca5
 WHIRLPOOL 
3044bcd5e241e95c8313a16da4049f71621def4669b9d76aa6892191443456e2c388f7a7aaa16a01e073311a83d1bde5452fc3e57f956571bfca2edc1db93ca9
 DIST renpy-6.99.6-source.tar.bz2 27289290 SHA256 
31f3fc84bda7e4048a97539d6266b3fbb18a82fc38db83761dd4771f5ef98d04 SHA512 
d018ac0827ee5a914c48479174eccbf3968ea22926638e09ee00ecea49dc0111b4f24810ad32d5a8bb8012ff18e5fb8981705ed0e2289ce3172a1629e095a651
 WHIRLPOOL 
ba8102e11a09b70100d391c5b068c826db810486f2792c5b5214421b09344916888255a377ac26b2b21aaede315bb0470c7315c2581af9e64b545d68ee6f005c

diff --git a/games-engines/renpy/files/renpy-6.99.12.4-multiple-abi.patch 
b/games-engines/renpy/files/renpy-6.99.12.4-multiple-abi.patch
new file mode 100644
index 000..3a7355e60be
--- /dev/null
+++ b/games-engines/renpy/files/renpy-6.99.12.4-multiple-abi.patch
@@ -0,0 +1,357 @@
+From 7aa51dae5eb2f2123fee9bca23a2ce2f1b1c3f10 Mon Sep 17 00:00:00 2001
+From: hasufell 
+Date: Thu, 20 Aug 2015 01:10:58 +0200
+Subject: [PATCH] Fix multiple abi support
+
+---
+ renpy.py| 128 ++--
+ renpy/common.py | 137 
+ renpy/main.py   |   6 +--
+ 3 files changed, 144 insertions(+), 127 deletions(-)
+ create mode 100644 renpy/common.py
+
+diff --git a/renpy.py b/renpy.py
+index 7548cf6..8ec7353 100644
+--- a/renpy.py
 b/renpy.py
+@@ -28,122 +28,9 @@
+ import os
+ import sys
+ import warnings
+-
+-# Functions to be customized by distributors. 
+-
+-# Given the Ren'Py base directory (usually the directory containing
+-# this file), this is expected to return the path to the common directory.
+-
+-
+-def path_to_common(renpy_base):
+-return renpy_base + "/renpy/common"
+-
+-# Given a directory holding a Ren'Py game, this is expected to return
+-# the path to a directory that will hold save files.
+-
+-
+-def path_to_saves(gamedir, save_directory=None):
+-import renpy  # @UnresolvedImport
+-
+-if save_directory is None:
+-save_directory = renpy.config.save_directory
+-save_directory = renpy.exports.fsencode(save_directory)
+-
+-# Makes sure the permissions are right on the save directory.
+-def test_writable(d):
+-try:
+-fn = os.path.join(d, "test.txt")
+-open(fn, "w").close()
+-open(fn, "r").close()
+-os.unlink(fn)
+-return True
+-except:
+-return False
+-
+-# Android.
+-if renpy.android:
+-paths = [
+-os.path.join(os.environ["ANDROID_OLD_PUBLIC"], "game/saves"),
+-os.path.join(os.environ["ANDROID_PRIVATE"], "saves"),
+-os.path.join(os.environ["ANDROID_PUBLIC"], "saves"),
+-]
+-
+-for rv in paths:
+-if os.path.isdir(rv) and test_writable(rv):
+-break
+-
+-print("Saving to", rv)
+-
+-# We return the last path as the default.
+-
+-return rv
+-
+-if renpy.ios:
+-from pyobjus import autoclass
+-from pyobjus.objc_py_types import enum
+-
+-NSSearchPathDirectory = enum("NSSearchPathDirectory", 
NSDocumentDirectory=9)
+-

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Lab-Measurement/

2017-07-15 Thread Andreas Hüttel
commit: 7afd031344675d612d92eda24f4614ae36fc029f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Jul 15 22:23:00 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Jul 15 22:24:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7afd0313

dev-perl/Lab-Measurement: Cleanup & adapt to new repo structure

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Lab-Measurement/Lab-Measurement-.ebuild | 14 +-
 1 file changed, 1 insertion(+), 13 deletions(-)

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
index b4a92cb0d0c..184a38271fd 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
@@ -132,20 +132,8 @@ dzil_to_distdir() {
 
 src_prepare() {
if [[ ${PV} ==  ]]; then
-   # Uses git sources in WORKDIR/rex-git
-   # to generate a CPAN-style tree in ${S}
-   # before letting perl-module.eclass do the rest
-   dzil_to_distdir "${EGIT_CHECKOUT_DIR}/Measurement" "${S}"
+   dzil_to_distdir "${EGIT_CHECKOUT_DIR}" "${S}"
fi
cd "${S}" || die "Can't enter build dir"
perl-module_src_prepare
 }
-
-pkg_postinst() {
-   if ( ! has_version sci-libs/linuxgpib ) && ( ! has_version 
dev-perl/Lab-VISA ) ; then
-   elog "You may want to install one or more backend driver 
modules. Supported are"
-   elog "sci-libs/linuxgpibOpen-source GPIB hardware 
driver"
-   elog "dev-perl/Lab-VISA Bindings for the NI proprietary 
VISA driver"
-   elog "  stack (dilfridge overlay)"
-   fi
-}



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

2017-07-15 Thread Michał Górny
commit: 52acdc0ef5b6b6ee731d64b908234e39a9aea743
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Jul 15 22:19:18 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jul 15 22:23:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52acdc0e

x11-terms/xfce4-terminal: Bump to 0.8.6

 x11-terms/xfce4-terminal/Manifest  |  1 +
 .../xfce4-terminal/xfce4-terminal-0.8.6.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/x11-terms/xfce4-terminal/Manifest 
b/x11-terms/xfce4-terminal/Manifest
index 9f8e551ba06..469e73a00bd 100644
--- a/x11-terms/xfce4-terminal/Manifest
+++ b/x11-terms/xfce4-terminal/Manifest
@@ -1,2 +1,3 @@
 DIST xfce4-terminal-0.6.3.tar.bz2 815207 SHA256 
912f4716c2395a14a80620ef982b4af1e2a67a8df9a1ef0b802ecae826057e08 SHA512 
805390b75178b3a2fbff4f8dfe972474e5575ad5a80aaf775f7b4086f975cf5b444a335b1ec1a9a39bc89642c71e1d0cb1bbc14d96b913980bd231d32a081c49
 WHIRLPOOL 
199f305ae3996eeb5797dbc3fbe07f459c577bfb5a259c3ce820b2fea87ef92593ed26fd82745b7266a6e8801aef61c5a82ddd0f7e9cdc3f3c741e58ba37ed0a
 DIST xfce4-terminal-0.8.5.1.tar.bz2 942117 SHA256 
8a34568f78abf669957984602c54cd938f19c9343ee2691c2b787446629be064 SHA512 
bf64877985d75c4d6b7a9da741c1f71486dacf2bf203de4555ceb6f45eee109938e29bdbb70487a67f40aa51a6a10fca7ee04b89d87e3e4f11a0a99cfbe1be9f
 WHIRLPOOL 
4cba7e9bc1813464e5ad4cb98bd77bef15ecb572d9de8b762e7ffe07e85af2a5e57bd5a23dd5fdd63c50fb139e82d9656d0a106c2f69421e4b05d97984c83058
+DIST xfce4-terminal-0.8.6.tar.bz2 952859 SHA256 
bc2a560409a0f0b666d1c557e991748b986ec27572a45ae88b0ee5a480d881d7 SHA512 
96d9c3fab56ad9cd267bd7b33f4d8fb3831200b9507653a69e6872b673ca5e30adffc73ef2f73de6eb858a2817a98b781188a39a4c0d79298699711c49f8be97
 WHIRLPOOL 
51cfadde08d6925c33f22e9a9a811ab782d2f2cc1b233074b1af1eb6b82579957a528c3f510555ab645642f40b98552d867caff04fc75530deefcfff51154db4

diff --git a/x11-terms/xfce4-terminal/xfce4-terminal-0.8.6.ebuild 
b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.6.ebuild
new file mode 100644
index 000..86cf878e93e
--- /dev/null
+++ b/x11-terms/xfce4-terminal/xfce4-terminal-0.8.6.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="A terminal emulator for the Xfce desktop environment"
+HOMEPAGE="https://docs.xfce.org/apps/terminal/start;
+SRC_URI="mirror://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+IUSE=""
+
+RDEPEND=">=dev-libs/glib-2.32:2=
+   >=x11-libs/gtk+-3.16:3=
+   x11-libs/libX11:=
+   >=x11-libs/vte-0.38:2.91=
+   >=xfce-base/libxfce4ui-4.10:=[gtk3(+)]"
+DEPEND="${RDEPEND}
+   dev-libs/libxml2
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog HACKING NEWS README THANKS )



[gentoo-commits] repo/gentoo:master commit in: games-engines/renpy/

2017-07-15 Thread Andrew Savchenko
commit: d1bd7d825f249a1a9cd85142c4a5695e4f024d27
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jul 15 18:56:22 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jul 15 21:50:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1bd7d82

games-engines/renpy: add myself to maintainers

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Andrew Savchenko  gentoo.org>

 games-engines/renpy/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/games-engines/renpy/metadata.xml b/games-engines/renpy/metadata.xml
index 763130af3a1..2a74bfb8208 100644
--- a/games-engines/renpy/metadata.xml
+++ b/games-engines/renpy/metadata.xml
@@ -14,6 +14,10 @@
ga...@gentoo.org
Gentoo Games Project

+   
+   birc...@gentoo.org
+   Andrew Savchenko
+   

Ren'Py is a free and cross-platform visual novel engine that
helps you use words,



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

2017-07-15 Thread Andrew Savchenko
commit: 1269ef4790d364ccfb1788215039632671d978f8
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jul 15 21:02:54 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jul 15 21:50:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1269ef47

dev-python/pygame_sdl2: version bump

Based on ebuild by Alex  bk.ru>, bug 587872.

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Andrew Savchenko  gentoo.org>

 dev-python/pygame_sdl2/Manifest|  1 +
 .../pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild   | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/pygame_sdl2/Manifest b/dev-python/pygame_sdl2/Manifest
index e95c3c29fa2..040242fae79 100644
--- a/dev-python/pygame_sdl2/Manifest
+++ b/dev-python/pygame_sdl2/Manifest
@@ -1 +1,2 @@
+DIST pygame_sdl2-2.1.0-for-renpy-6.99.12.4.tar.gz 2294620 SHA256 
8e9e101027bfab62d6a4b9a4d5705d168383501af9ba958aaa3135233009bd1d SHA512 
eacce553d6729b937c13420d826f2fe327bc7aba499a06bea7f1ceedba3327a9456c023878290ace39e1a8e417f54957345b8b78500ffc9ed3d2ec9952397754
 WHIRLPOOL 
e78d83ee974d4338764e60b844d423534e8a616695f8995d06146a85b1421f77c1a9064c00703de357838fdb1aca1ad809a314d68c2aabcf1ddc744e301332cc
 DIST pygame_sdl2-for-renpy-6.99.6.tar.bz2 133501 SHA256 
a6ae1891a3a7fcbf9c4486da708dd90fbfb5d5c489790f0de8985ec07e695403 SHA512 
de1a40f7e8acdb46a7e0b13250c7fffdf848bd44c07408928aab6214afbc741aa77e1e8314d9049324328d9ffc645cafe077a468457a721f36e49f98e5217d53
 WHIRLPOOL 
0e13889f95323cb9ca2315b2915584c53f3578eb959a713802874c101c405c44e9b3b757ead86a2dbaa56b12d031f12ffbd12bc6776804fe1cb6efaec0246ab6

diff --git a/dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild 
b/dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild
new file mode 100644
index 000..407191d2049
--- /dev/null
+++ b/dev-python/pygame_sdl2/pygame_sdl2-6.99.12.4.ebuild
@@ -0,0 +1,39 @@
+# 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,3_5,3_6} )
+inherit distutils-r1
+
+PYSDL="${PN}-2.1.0"
+
+DESCRIPTION="Reimplementation of portions of the pygame API using SDL2"
+HOMEPAGE="https://github.com/renpy/pygame_sdl2;
+SRC_URI="http://www.renpy.org/dl/${PV}/${PYSDL}-for-renpy-${PV}.tar.gz;
+
+LICENSE="LGPL-2.1 ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]
+   media-libs/libpng:0
+   media-libs/libsdl2[video]
+   media-libs/sdl2-image[png,jpeg]
+   media-libs/sdl2-mixer
+   media-libs/sdl2-ttf
+   virtual/jpeg:62
+"
+DEPEND="${RDEPEND}
+   dev-python/cython[${PYTHON_USEDEP}]"
+
+S=${WORKDIR}/${PYSDL}-for-renpy-${PV}
+
+# PyGame distribution for this version has some pregenerated files;
+# we need to remove them
+python_prepare_all()
+{
+   rm -r "${S}"/gen{,3} || die
+   distutils-r1_python_prepare_all
+}



[gentoo-commits] repo/gentoo:master commit in: games-engines/renpy/

2017-07-15 Thread Andrew Savchenko
commit: c3fd59ed5edb52826c9688015684f92e72809a40
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jul 15 19:00:59 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jul 15 21:50:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3fd59ed

games-engines/renpy: remove old maintainers

Since package was last-rited it is reasonable to assume that old
maintainers have no manpower or interest to maintain this package.

Made as a separate commit, so removal can be easily reverted if
desired.

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Andrew Savchenko  gentoo.org>

 games-engines/renpy/metadata.xml | 13 -
 1 file changed, 13 deletions(-)

diff --git a/games-engines/renpy/metadata.xml b/games-engines/renpy/metadata.xml
index 2a74bfb8208..98b754cf659 100644
--- a/games-engines/renpy/metadata.xml
+++ b/games-engines/renpy/metadata.xml
@@ -1,19 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
-   
-   maksver...@geocities.com
-   Maks Verver
-   Proxy maintainer. CC him on bugs
-   
-   
-   ga...@gentoo.org
-   Gentoo Games Project
-   

birc...@gentoo.org
Andrew Savchenko



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

2017-07-15 Thread Andrew Savchenko
commit: 6bd70e98ff9d77e973c033c11714959bf2fe5ac2
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sat Jul 15 18:49:43 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sat Jul 15 21:50:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd70e98

dev-python/pygame_sdl2: take an orphan

Package-Manager: Portage-2.3.6, Repoman-2.3.2
Signed-off-by: Andrew Savchenko  gentoo.org>

 dev-python/pygame_sdl2/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-python/pygame_sdl2/metadata.xml 
b/dev-python/pygame_sdl2/metadata.xml
index e85f847e465..88d1d1b3d9f 100644
--- a/dev-python/pygame_sdl2/metadata.xml
+++ b/dev-python/pygame_sdl2/metadata.xml
@@ -1,7 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   birc...@gentoo.org
+   Andrew Savchenko
+   

renpy/pygame_sdl2




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

2017-07-15 Thread Patrice Clement
commit: c261c1afabbfb8727cfdb4a71880d766365db5d3
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jul 15 21:45:51 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jul 15 21:45:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c261c1af

dev-python/mpi4py: add missing dies.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/mpi4py/mpi4py-2.0.0.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-python/mpi4py/mpi4py-2.0.0.ebuild 
b/dev-python/mpi4py/mpi4py-2.0.0.ebuild
index 730cbd92b6e..1ccb4b31011 100644
--- a/dev-python/mpi4py/mpi4py-2.0.0.ebuild
+++ b/dev-python/mpi4py/mpi4py-2.0.0.ebuild
@@ -24,7 +24,7 @@ DISTUTILS_IN_SOURCE_BUILD=1
 
 python_prepare_all() {
# not needed on install
-   rm -r docs/source || die
+   rm -vr docs/source || die
distutils-r1_python_prepare_all
 }
 
@@ -35,9 +35,9 @@ src_compile() {
 
 python_test() {
echo "Beginning test phase"
-   pushd "${BUILD_DIR}"/../ &> /dev/null
+   pushd "${BUILD_DIR}"/../ &> /dev/null || die
mpiexec -n 2 "${PYTHON}" ./test/runtests.py -v || die "Testsuite failed 
under ${EPYTHON}"
-   popd &> /dev/null
+   popd &> /dev/null || die
 }
 
 python_install_all() {



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

2017-07-15 Thread Patrice Clement
commit: ae651f7c6afa85e1613f6032fb65eb8fea725cc3
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jul 15 21:46:35 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jul 15 21:46:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae651f7c

dev-python/mpi4py: install examples via DOCS array.

Gentoo-Bug: https://bugs.gentoo.org/622780

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/dev-python/mpi4py/mpi4py-2.0.0.ebuild 
b/dev-python/mpi4py/mpi4py-2.0.0.ebuild
index 1ccb4b31011..f9ce3a4bae0 100644
--- a/dev-python/mpi4py/mpi4py-2.0.0.ebuild
+++ b/dev-python/mpi4py/mpi4py-2.0.0.ebuild
@@ -42,6 +42,6 @@ python_test() {
 
 python_install_all() {
use doc && local HTML_DOCS=( docs/. )
-   use examples && local EXAMPLES=( demo/. )
+   use examples && local DOCS=( demo )
distutils-r1_python_install_all
 }



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

2017-07-15 Thread Patrice Clement
commit: a0649a28f38e66383da022e12e9e0662e567ef4f
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jul 15 21:43:20 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jul 15 21:43:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0649a28

dev-python/h5py: install examples via DOCS array.

Gentoo-Bug: https://bugs.gentoo.org/622788

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/h5py/h5py-2.7.0.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-python/h5py/h5py-2.7.0.ebuild 
b/dev-python/h5py/h5py-2.7.0.ebuild
index d2c8e6af948..4e74bc6c535 100644
--- a/dev-python/h5py/h5py-2.7.0.ebuild
+++ b/dev-python/h5py/h5py-2.7.0.ebuild
@@ -20,7 +20,9 @@ RDEPEND="
sci-libs/hdf5:=[mpi=,hl(+)]
dev-python/numpy[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
+
+DEPEND="
+   ${RDEPEND}
dev-python/cython[${PYTHON_USEDEP}]
dev-python/pkgconfig[${PYTHON_USEDEP}]
dev-python/setuptools[${PYTHON_USEDEP}]
@@ -58,10 +60,7 @@ python_test() {
 python_install_all() {
DOCS=( README.rst ANN.rst )
use doc && HTML_DOCS=( docs/_build/html/. )
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
+   use examples && DOCS+=( examples )
 
distutils-r1_python_install_all
 }



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

2017-07-15 Thread Patrice Clement
commit: 8c05eb3533bf6c5495f1c7637d4e0df47a6c3074
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jul 15 21:10:03 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jul 15 21:42:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c05eb35

dev-python/urwid: add missing die.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/urwid/urwid-1.3.1.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-python/urwid/urwid-1.3.1.ebuild 
b/dev-python/urwid/urwid-1.3.1.ebuild
index 71047820e1b..5ef27046c96 100644
--- a/dev-python/urwid/urwid-1.3.1.ebuild
+++ b/dev-python/urwid/urwid-1.3.1.ebuild
@@ -23,16 +23,16 @@ DEPEND="
 "
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-1.1.0-sphinx.patch
-   "${FILESDIR}"/urwid-1.3.1-test-vterm-EINTR.patch
+   "${FILESDIR}/${PN}-1.1.0-sphinx.patch"
+   "${FILESDIR}/${PN}-1.3.1-test-vterm-EINTR.patch"
 )
 
 python_compile_all() {
-   if use doc ; then
+   if use doc; then
if python_is_python3; then
2to3 -nw --no-diffs docs/conf.py || die
fi
-   cd docs
+   cd docs || die
sphinx-build . _build/html || die
fi
 }



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

2017-07-15 Thread Patrice Clement
commit: 4be8c7f8153bbd6ab40304222e7a792e3722ef89
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Jul 15 21:10:30 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jul 15 21:42:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4be8c7f8

dev-python/urwid: clean up old.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/urwid/Manifest   |  1 -
 dev-python/urwid/urwid-1.2.2.ebuild | 53 -
 2 files changed, 54 deletions(-)

diff --git a/dev-python/urwid/Manifest b/dev-python/urwid/Manifest
index 19ea10e34f9..5fbdc15848c 100644
--- a/dev-python/urwid/Manifest
+++ b/dev-python/urwid/Manifest
@@ -1,2 +1 @@
-DIST urwid-1.2.2.tar.gz 585025 SHA256 
e122e2dee122314f5626945af4dbe15bf3de9f318c552a4c0b68c1c480852d92 SHA512 
10d0271e52b28aff3350d3342cd9b1c8fab819f3619cce77286b2545b74dd967f0466e98dfbfef1189b3ab6b38392168367d75c768b0f5b8058666b0211706a5
 WHIRLPOOL 
69556a721d89f6a6b82664bf5eaa10a21c49d15f9b8e6e6be4ba31ce5e2317fd0ecebfa3d93b008f9bd93f10504161d93e1827d696a6c1baa09939ac628f027d
 DIST urwid-1.3.1.tar.gz 588549 SHA256 
cfcec03e36de25a1073e2e35c2c7b0cc6969b85745715c3a025a31d9786896a1 SHA512 
8b505d38f3a0c04bbf527b324dc36212f2580213dd55eca61c66705d3beaac4f074c39aaa0f4f71add1fe5f3fce4c4c6dc88dd1e981b04bac6d52195d7a3f0ed
 WHIRLPOOL 
ff908dfad8e893fd51510168433a6bd63fe1edc38dde65664994f5eb3343e8fe818c4c1b9d5c296d3f3fdc93e2df7a3809f661e52322e6e69e163484b0e38944

diff --git a/dev-python/urwid/urwid-1.2.2.ebuild 
b/dev-python/urwid/urwid-1.2.2.ebuild
deleted file mode 100644
index 4671db6dad9..000
--- a/dev-python/urwid/urwid-1.2.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# 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} )
-PYTHON_REQ_USE="ncurses"
-
-inherit distutils-r1
-
-DESCRIPTION="Urwid is a curses-based user interface library for Python"
-HOMEPAGE="http://urwid.org/ https://pypi.python.org/pypi/urwid/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
-IUSE="doc examples test"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? ( dev-python/twisted-core )"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.1.0-sphinx.patch )
-
-python_compile_all() {
-   if use doc ; then
-   if [[ ${EPYTHON} == python3* ]] ; then
-   2to3 -nw --no-diffs docs/conf.py || die
-   fi
-   cd docs
-   sphinx-build . _build/html || die
-   fi
-}
-
-python_compile() {
-   if [[ ${EPYTHON} == python2* ]] ; then
-   local CFLAGS="${CFLAGS} -fno-strict-aliasing"
-   export CFLAGS
-   fi
-
-   distutils-r1_python_compile
-}
-
-python_test() {
-   esetup.py test
-}
-
-python_install_all() {
-   use examples && local EXAMPLES=( examples/. )
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-
-   distutils-r1_python_install_all
-}



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

2017-07-15 Thread Patrice Clement
commit: 2680e441fa13ed000b774a813512a653e1c0c8f6
Author: Tadej Borovšak  gmail  com>
AuthorDate: Sat Jul 15 20:56:01 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jul 15 21:42:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2680e441

dev-python/matplotlib: fix wrap_setup function.

Wrapper for python_compile() function only prepared environment for
the compile call, but never executed it.

Gentoo-Bug: https://bugs.gentoo.org/624554

Closes: https://github.com/gentoo/gentoo/pull/5112

 dev-python/matplotlib/matplotlib-2.0.2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/matplotlib/matplotlib-2.0.2.ebuild 
b/dev-python/matplotlib/matplotlib-2.0.2.ebuild
index cf16b2b42e5..e8214110ebf 100644
--- a/dev-python/matplotlib/matplotlib-2.0.2.ebuild
+++ b/dev-python/matplotlib/matplotlib-2.0.2.ebuild
@@ -209,6 +209,7 @@ python_configure() {
 wrap_setup() {
local -x MPLSETUPCFG=${BUILD_DIR}/setup.cfg
unset DISPLAY
+   "$@"
 }
 
 python_compile() {



[gentoo-commits] repo/gentoo:master commit in: net-dns/unbound/

2017-07-15 Thread Marc Schiffbauer
commit: e753e991e44d203baf68f367c6ab17612aef1a1d
Author: Marc Schiffbauer  gentoo  org>
AuthorDate: Sat Jul 15 21:25:25 2017 +
Commit: Marc Schiffbauer  gentoo  org>
CommitDate: Sat Jul 15 21:27:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e753e991

net-dns/unbound: fix libsodium dep

 net-dns/unbound/unbound-1.6.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/unbound/unbound-1.6.4.ebuild 
b/net-dns/unbound/unbound-1.6.4.ebuild
index 7b72e64ed4e..0eccb3d9a8d 100644
--- a/net-dns/unbound/unbound-1.6.4.ebuild
+++ b/net-dns/unbound/unbound-1.6.4.ebuild
@@ -26,7 +26,7 @@ CDEPEND=">=dev-libs/expat-2.1.0-r3[${MULTILIB_USEDEP}]
>=dev-libs/libevent-2.0.21:0=[${MULTILIB_USEDEP}]
libressl? ( >=dev-libs/libressl-2.2.4:0[${MULTILIB_USEDEP}] )
!libressl? ( >=dev-libs/openssl-1.0.1h-r2:0[${MULTILIB_USEDEP}] )
-   dnscrypt? ( dev-libs/libsodium )
+   dnscrypt? ( dev-libs/libsodium[${MULTILIB_USEDEP}] )
dnstap? (
dev-libs/fstrm[${MULTILIB_USEDEP}]
>=dev-libs/protobuf-c-1.0.2-r1[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2017-07-15 Thread Lars Wendler
commit: a174106ca7ac67baee24a96c1fbb006325247c4b
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jul 15 21:24:40 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 15 21:24:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a174106c

dev-vcs/git: Fixed build with USE="doc" (bug #625154).

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-vcs/git/git-2.13.3.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-vcs/git/git-2.13.3.ebuild b/dev-vcs/git/git-2.13.3.ebuild
index 80c6530c1c8..2b0d92a449d 100644
--- a/dev-vcs/git/git-2.13.3.ebuild
+++ b/dev-vcs/git/git-2.13.3.ebuild
@@ -370,7 +370,6 @@ src_compile() {
 
cd "${S}"/contrib/diff-highlight || die
git_emake
-   use doc && git_emake doc
 
if use mediawiki ; then
cd "${S}"/contrib/mw-to-git



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

2017-07-15 Thread Zac Medico
commit: 02cafbec866455845b5e50881de03ee5031b72a1
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Jul 15 21:17:22 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Jul 15 21:18:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02cafbec

dev-util/bazel: version bump to 0.5.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/bazel/Manifest   |  1 +
 dev-util/bazel/bazel-0.5.2.ebuild | 77 +++
 2 files changed, 78 insertions(+)

diff --git a/dev-util/bazel/Manifest b/dev-util/bazel/Manifest
index bdb7f567b81..f517db08e83 100644
--- a/dev-util/bazel/Manifest
+++ b/dev-util/bazel/Manifest
@@ -1 +1,2 @@
 DIST bazel-0.4.5-dist.zip 101505017 SHA256 
2b737be42678900470ae9e48c975ac5b2296d9ae23c007bf118350dbe7c0552b SHA512 
bc70e379a9f6f962440d05d4a706959461690e28a943833e17d6e2b7e3cd7dd2344f329f72d833ec5104334a71764fde195e50b09a582ae7c1b89bd62822943b
 WHIRLPOOL 
d236eb387373f4b1cba32084a8b282f2bc75e6a0a714f18229cf5064230ad912bd879df2e7ebcc30da18538958ded4a1b8e59c27c0716aa6b677690b10a0356e
+DIST bazel-0.5.2-dist.zip 13640 SHA256 
2418c619bdd44257a170b85b9d2ecb75def29e751b725e27186468ada2e009ea SHA512 
2580b41a09d8e7766bf06ed55bca06f542a13fecf050b105829811d8a95e8f9a4395ebc8d3ce6436ecec8faab704afd608d71e2d368e51c668df3f766ca6e9c1
 WHIRLPOOL 
8ea9522bbd38ec5d9de4eebae0586c71ab2cf2f782430e0e0bd5fc84c8d431df7f758627ad9f0aeb57445c1c3d4b3de34702e2e2a6a73aea246519543d8ff118

diff --git a/dev-util/bazel/bazel-0.5.2.ebuild 
b/dev-util/bazel/bazel-0.5.2.ebuild
new file mode 100644
index 000..4684dc2d3b4
--- /dev/null
+++ b/dev-util/bazel/bazel-0.5.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit bash-completion-r1 java-pkg-2
+
+DESCRIPTION="Fast and correct automated build system"
+HOMEPAGE="http://bazel.io/;
+SRC_URI="https://github.com/bazelbuild/bazel/releases/download/${PV}/${P}-dist.zip;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples tools zsh-completion"
+# strip corrupts the bazel binary
+RESTRICT="strip"
+RDEPEND="virtual/jdk:1.8"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   app-arch/zip"
+
+S="${WORKDIR}"
+
+pkg_setup() {
+   echo ${PATH} | grep -q ccache && \
+   ewarn "${PN} usually fails to compile with ccache, you have 
been warned"
+   java-pkg-2_pkg_setup
+}
+
+src_compile() {
+   # F: fopen_wr
+   # S: deny
+   # P: /proc/self/setgroups
+   # A: /proc/self/setgroups
+   # R: /proc/24939/setgroups
+   # C: /usr/lib/systemd/systemd
+   addpredict /proc
+   VERBOSE=yes ./compile.sh || die
+   # Use standalone strategy to deactivate the bazel sandbox, since it
+   # conflicts with FEATURES=sandbox.
+   echo "build --verbose_failures --spawn_strategy=standalone 
--genrule_strategy=standalone" \
+   > "${T}/bazelrc" || die
+   output/bazel --bazelrc="${T}/bazelrc" build scripts:bazel-complete.bash 
|| die
+   mv bazel-bin/scripts/bazel-complete.bash output/ || die
+}
+
+src_test() {
+   output/bazel test \
+   --verbose_failures \
+   --spawn_strategy=standalone \
+   --genrule_strategy=standalone \
+   --verbose_test_summary \
+   examples/cpp:hello-success_test || die
+}
+
+src_install() {
+   output/bazel shutdown
+   dobin output/bazel
+   newbashcomp output/bazel-complete.bash ${PN}
+   if use zsh-completion ; then
+   insinto /usr/share/zsh/site-functions
+   doins scripts/zsh_completion/_bazel
+   fi
+   if use examples; then
+   docinto examples
+   dodoc -r examples/*
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   # could really build tools but I don't know which ones
+   # are actually used
+   if use tools; then
+   docinto tools
+   dodoc -r tools/*
+   docompress -x /usr/share/doc/${PF}/tools
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/rt-sources/

2017-07-15 Thread Patrice Clement
commit: d5a1503c964d97dda56235287340482c8ba066d2
Author: Karl Linden  gmail  com>
AuthorDate: Sat Jul 15 05:59:33 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Jul 15 20:56:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5a1503c

sys-kernel/rt-sources: version bump to 4.11.9_p7 and remove old.

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

 sys-kernel/rt-sources/Manifest |  8 +---
 ...8.48_p54.ebuild => rt-sources-4.11.9_p7.ebuild} |  4 +-
 sys-kernel/rt-sources/rt-sources-4.4.60_p73.ebuild | 45 --
 sys-kernel/rt-sources/rt-sources-4.9.20_p16.ebuild | 45 --
 4 files changed, 4 insertions(+), 98 deletions(-)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index 7df217f3cff..2ae412ecd4a 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -13,8 +13,6 @@ DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc0
 DIST linux-4.11.tar.xz 95447768 SHA256 
b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6 SHA512 
6610eed97ffb7207c71771198c36179b8244ace7222bebb109507720e26c5f17d918079a56d5febdd8605844d67fb2df0ebe910fa2f2f53690daf6e2a8ad09c3
 WHIRLPOOL 
f577b7c5c209cb8dfef2f1d56d77314fbd53323743a34b900e2559ab0049b7c2d6262bda136dd3d005bc0527788106e0484e46558448a8720dac389a969e5886
 DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 
02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc
 DIST linux-4.9.tar.xz 93192404 SHA256 
029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 WHIRLPOOL 
072505b29972ad120eb25a074217847c9c2813416c4903e605a0433574f5f87616dbea0b1454e4b19acc48107f11274b682958b1d773373156e99f8163e6606a
-DIST patch-3.18.48-rt54.patch.xz 173572 SHA256 
7b17ed1615cd2668ef26da6b2bb9de36edd0f8166b270af5c341aae6c3250c4b SHA512 
035fb0ce15e3b3715285dfa86c3329e3e9998c00899e9a8096bcd4b6c0827d3551a4e2775193695e25a61d1d2d9fc96cf7bc500b3952214daf592dea777bd880
 WHIRLPOOL 
5f1beec7bb8572f255c5b3c126fd16e08598ed07b45ea260d0e9af688c0f12e264443aa185cd0433e5ee54bfad7cd364f30a9b43fdf0f46bd4417b63548a
-DIST patch-3.18.48.xz 1084852 SHA256 
0726728455304b075c03970359ee59bb8b1ad7f9f5f6aae5745b6919eceb8591 SHA512 
76aa903d947a09ce86a1710034c43178312701dd06af584824b561fd8688adf02cc8ed1786e6874948f5dcadfac817662148906c73b7a1ce58e79d7f91017dd9
 WHIRLPOOL 
fb69da32ffb732541c8bb509c63907f5ed97aa07c04254af692de370291568e4f7e3a8d3b8a5e3727f1f893c282852a45007b928662c8f63b796b931492ed333
 DIST patch-3.18.55-rt61.patch.xz 173616 SHA256 
0a4fe370bfad42af8f1bb0556d1fc2591cf053fe682e6dbcd633700c1ada1ac6 SHA512 
3c7713f6841dd053592669f2a401f890a73644b0bc27fae295f220f53b4f42d909ae0fae36fdd353c1bb64cda70e84452e551d41f719f26e8e17d0a832dab210
 WHIRLPOOL 
a02e70bea5bdd915108eb190ff4c96e57d3530cc5126cf201d57a0e83f03d4b382112b92faebfcab3a3149ace9ad823fb796d924c5d5df2ff59082ec07328080
 DIST patch-3.18.55.xz 1210560 SHA256 
b13cf4e8cb38dc3d203ee912cc6902f4565dfba809b48ff90d2709d5f9448384 SHA512 
4c2d9119b6e5c0a14ed4d587c3a661aaf301283eca3750f44f3b3e9e9d3e6d733b054212ffbfd3b56b5d1c8049d5b2100dccaa0af6dcfb9ca9d51ca28cdbd99c
 WHIRLPOOL 
4d0b39fd33a22401eda5d623c6acf21a3771e4a9d8fbacda5a95177a7a98ad51c60e65571384c153cdc1537791e30517d90307d0fc25bb916a1b0ecda6cf18f5
 DIST patch-3.18.59-rt65.patch.xz 173612 SHA256 
7dad87e49cd0f470aa88f2a41e172d85687728b8774834eef482a6c8ecda8df9 SHA512 
5d742acb498777306f521af8fb9722143eb251a66f7f1eb0d1892556218ddfdb25b69dbac0691b6efdbd321b6a3e4e7c0b2f0b7b56e905d5abb0613f44e61756
 WHIRLPOOL 
5c8c27c401e8c84b66df3f91bd2f8f9422a08dc442022e7e470df10ad1b8af90c7266a7040d9da2b5236851e19e7044c5ae105f4a535b0f646c12c8c6b745951
@@ -28,14 +26,12 @@ DIST patch-4.11.5.xz 190660 SHA256 
1686ea3200069acd7869075a208ad6771c651b4f9d942
 DIST patch-4.11.8-rt4.patch.xz 183644 SHA256 
3a5b32fd93f63f0d87116545b97552d0f0222b815a8c5a054de2c02c680e3e4a SHA512 
e071370eaa7e80801cc9e35e0f1ae01b42850c3985b04630f3a5c51ce85186d7789dd54472b002f6055388b6312bab80f1d1e0279ac1ef3a35e41b227ccb
 WHIRLPOOL 
186f87949929acb5812a94bbf75220a2791863e6c7fd8eb8f5acb2f1c0b088c5a7dbdbdb326d660c6df85d6c4dccca729ebb50490eaae2e6012bc5e62e5f8319
 DIST patch-4.11.8-rt5.patch.xz 206688 SHA256 
ea625011bc491e9483de45ae97c45223c1887f71dfffe732c9d13c132fdd4157 SHA512 
1479b71bd578bade9cb081fb15275d7d25067db3e33c6b3c19185493b677ccd1969930f0ea08aed92e34058419359ba60363d07c41f90071f66e91925791ef04
 WHIRLPOOL 

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

2017-07-15 Thread Sergei Trofimovich
commit: cf711f0f48ed64d5688015de2ace45e1acf5bf51
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 20:27:08 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 20:27:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf711f0f

sys-apps/systemd: ia64 stable, bug #623532

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 sys-apps/systemd/systemd-233-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd/systemd-233-r4.ebuild 
b/sys-apps/systemd/systemd-233-r4.ebuild
index 362bd1fd37b..e9181de5f92 100644
--- a/sys-apps/systemd/systemd-233-r4.ebuild
+++ b/sys-apps/systemd/systemd-233-r4.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} ==  ]]; then
 else
SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
${P}.tar.gz
!doc? ( https://dev.gentoo.org/~floppym/dist/${P}-man.tar.gz )"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ia64 ~ppc ~ppc64 ~sparc ~x86"
 fi
 
 PYTHON_COMPAT=( python{3_4,3_5,3_6} )



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

2017-07-15 Thread Hans de Graaff
commit: 561c80baf110bd23230d574247c31f57266b4b85
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jul 15 20:12:07 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jul 15 20:13:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561c80ba

dev-ruby/fast_gettext: add missing test dependency, bug 623464; add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/fast_gettext/fast_gettext-1.4.1-r1.ebuild | 47 ++
 1 file changed, 47 insertions(+)

diff --git a/dev-ruby/fast_gettext/fast_gettext-1.4.1-r1.ebuild 
b/dev-ruby/fast_gettext/fast_gettext-1.4.1-r1.ebuild
new file mode 100644
index 000..e3434c1e0df
--- /dev/null
+++ b/dev-ruby/fast_gettext/fast_gettext-1.4.1-r1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG Readme.md"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="GetText but 3.5x faster, 560x less memory, clean namespace and 
threadsave!"
+HOMEPAGE="https://github.com/grosser/fast_gettext;
+SRC_URI="https://github.com/grosser/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/activerecord[sqlite] dev-ruby/bundler )"
+
+all_ruby_prepare() {
+   rm Gemfile.lock || die
+
+   # Remove jeweler and bump from Gemfile since they are not needed for 
tests.
+   sed -i -e '/jeweler/d' -e '/bump/d' -e '/appraisal/d' Gemfile || die
+
+   # Avoid unneeded dependency on git and development dependencies.
+   sed -e '/git ls-files/ s:^:#:' \
+   -e '/\(wwtd\|bump\)/ s:^:#:' \
+   -i fast_gettext.gemspec || die
+
+   # Don't run a test that requires safe mode which we can't provide
+   # due to insecure directory settings for the portage dir. This spec
+   # also calls out to ruby which won't work with different ruby
+   # implementations.
+   sed -i -e '/can work in SAFE mode/,/^  end/ s:^:#:' 
spec/fast_gettext/translation_repository/mo_spec.rb || die
+}
+
+each_ruby_prepare() {
+   # Make sure the right ruby interpreter is used
+   sed -i -e "s:bundle exec ruby:bundle exec ${RUBY}:" 
spec/fast_gettext/vendor/*spec.rb || die
+}



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

2017-07-15 Thread Sergei Trofimovich
commit: 6c30a7da76bb33d1af65af8b8de9947fbf519d52
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 19:03:30 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 19:39:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c30a7da

dev-ruby/contracts: ia64 keyworded, bug #555312

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 dev-ruby/contracts/contracts-0.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/contracts/contracts-0.16.0.ebuild 
b/dev-ruby/contracts/contracts-0.16.0.ebuild
index e4a248643f9..622e108871a 100644
--- a/dev-ruby/contracts/contracts-0.16.0.ebuild
+++ b/dev-ruby/contracts/contracts-0.16.0.ebuild
@@ -16,5 +16,5 @@ HOMEPAGE="https://github.com/egonSchiele/contracts.ruby;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 IUSE=""



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nrpe/, net-analyzer/nrpe/files/

2017-07-15 Thread Michael Orlitzky
commit: 563a03380b72349d215d57be76f7c5de3e3a24d3
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Jun 29 13:41:58 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Jul 15 19:15:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=563a0338

net-analyzer/nrpe: bump to 3.2.0, drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

Signed-off-by: Michael Orlitzky  gentoo.org>

 net-analyzer/nrpe/Manifest   | 2 +-
 net-analyzer/nrpe/files/{nrpe-3.1.1.init => nrpe-3.2.0.init} | 0
 net-analyzer/nrpe/{nrpe-3.1.1.ebuild => nrpe-3.2.0.ebuild}   | 2 +-
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/nrpe/Manifest b/net-analyzer/nrpe/Manifest
index 1ec17f2638d..9142d44c45a 100644
--- a/net-analyzer/nrpe/Manifest
+++ b/net-analyzer/nrpe/Manifest
@@ -1,2 +1,2 @@
 DIST nrpe-2.15.tar.gz 419695 SHA256 
66383b7d367de25ba031d37762d83e2b55de010c573009c6f58270b137131072 SHA512 
03ce9774b5112d03235dc9da075770d89d1bcc5ffa5faf221ff7ea8ec5c92ded1e1ae9222581a87cf53736d190ac047e1acce7edc2f31f26c432d786cdef0e73
 WHIRLPOOL 
f97ad7431138fd96588bb4e9d13404a0425bbdb8582c7c472cb20621bb77a9e9ecdeed88b9247ea20815da33c5b123368a540c5a0a058921e59367c2ce2a2b10
-DIST nrpe-3.1.1.tar.gz 515215 SHA256 
cfb3d4fb036e81cbb8a6d9c34f24b7d9395ecfaa55234a0572382ea30c54fd8d SHA512 
1d4cb6e35ad88f1dcd66b552ac1b3892cbd894f182b2ab35929bb656423187a7e93ac3e9c812a72f10aaecd0924fc7bc36719abbeec2d65363534830972b5d92
 WHIRLPOOL 
f77db69c351488ea2e83d60094f82447c1bf4adea9da0cff2264346fdc7679941fb148546bd290da3d498851f84859164ac13c55e58e24785f808309bb8e14ae
+DIST nrpe-3.2.0.tar.gz 517743 SHA256 
6f4a0cfe1d7b7b38e43f9f87909f5cb1e3a7150a2ccfc0a6822e3b1e7d76cf8e SHA512 
a2fe7971ce0ab1bdc55cdecb96d096b45db493cfefdb414930a1eb4cf99b92660a99784d14e6e9dc0b951769cf14f066507ee8b0fec0aa13d46288dcc069d473
 WHIRLPOOL 
5094f04a2e7672c1489a7364c6bb5c20e1f33477e6df22974ed44cfa97839174d537b309bb8f196f74ecc04f643f71e2f77adafd7d9027c1a84356c52f5aa23f

diff --git a/net-analyzer/nrpe/files/nrpe-3.1.1.init 
b/net-analyzer/nrpe/files/nrpe-3.2.0.init
similarity index 100%
rename from net-analyzer/nrpe/files/nrpe-3.1.1.init
rename to net-analyzer/nrpe/files/nrpe-3.2.0.init

diff --git a/net-analyzer/nrpe/nrpe-3.1.1.ebuild 
b/net-analyzer/nrpe/nrpe-3.2.0.ebuild
similarity index 97%
rename from net-analyzer/nrpe/nrpe-3.1.1.ebuild
rename to net-analyzer/nrpe/nrpe-3.2.0.ebuild
index 6ad8fe398f1..47ab35e74b4 100644
--- a/net-analyzer/nrpe/nrpe-3.1.1.ebuild
+++ b/net-analyzer/nrpe/nrpe-3.2.0.ebuild
@@ -42,7 +42,7 @@ src_compile() {
 src_install() {
default
 
-   dodoc Changelog SECURITY.md
+   dodoc CHANGELOG.md SECURITY.md
insinto /etc/nagios
newins sample-config/nrpe.cfg nrpe.cfg
fowners root:nagios /etc/nagios/nrpe.cfg



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

2017-07-15 Thread Kent Fredric
commit: 91994b30d4ef0bb550c8835aba70260e31fbe458
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Jul 15 18:51:04 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Jul 15 19:10:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91994b30

dev-lang/perl: Bump to 5.24.2 Final (masked)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-lang/perl/Manifest   | 2 +-
 dev-lang/perl/{perl-5.24.2_rc1.ebuild => perl-5.24.2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/perl/Manifest b/dev-lang/perl/Manifest
index 4b294914695..70f16b55b0b 100644
--- a/dev-lang/perl/Manifest
+++ b/dev-lang/perl/Manifest
@@ -1,7 +1,7 @@
 DIST perl-5.24.1-patches-3.tar.xz 24012 SHA256 
b8f8164c1fb34c5db82d9f16c5330cdb2d56e283562dd2d684c2abc26e58bf83 SHA512 
1af59b80fca8317fe8df171eba6fcc0830c65f94ad7f73bac611877afdd6e5dfe9ce7c67205a860703fcf6c5b87ba14a0163196e1b833a20562525d06b26b6f3
 WHIRLPOOL 
9d1f7d3050f544d04e413e1c6c4a8cc6bc593a8250dbf45fb166cf92060ea8bb8e4b09bb73a686cce8101395a04c853842588c1c223c903c5b74cedaf68c5d18
 DIST perl-5.24.1.tar.xz 11569284 SHA256 
03a77bac4505c270f1890ece75afc7d4b555090b41aa41ea478747e23b2afb3f SHA512 
9429608eb4d7f6a01b5a7df8601e0757acdf3e6d5af960d5cf710f8e4fd20ffe082bb42eedc2cd079d5173e48cf5574d55477e1c51f7f53b32fb5d1b89f6db8c
 WHIRLPOOL 
26d401f03af54ba61ea8e761f483f3d374737660fa4beaa3bd77951c0f920f88f9e47f327754c32d4c3c49557882a2a531b9eebef420ad6155d62423f7753406
-DIST perl-5.24.2-RC1.tar.xz 11568772 SHA256 
ab6d4bd0dd48406754872f66d2cd52365f43d71550e5d8eac2bee902ef51f2f7 SHA512 
ca439396b0308adc26fc3be14bfbd04a59d555fbcc19f8c94890521c0680d6be37d409c5a2fd4ea15d125a2dcee3e78e4dd275103791e8b6942ca771c11a43b3
 WHIRLPOOL 
d325a728f4219c5e9730a1d10c4fbb3c1bb8f097aac56181c122db3ef5da7d1cc8f1d03cefd4a98955d9e203b789edc4aa67dfe19612d7025036c73f39ad8ca8
 DIST perl-5.24.2-patches-1.tar.xz 24012 SHA256 
51b1dd61f4907da053558c6aa80de303230ee3348b6c4e7d6b149ee0a7c3e54e SHA512 
3576dbce373a17de2de436b6bd33378c9bca899dab71b7448e3c2d1df5ed3d63ea19ad0e0406526b9a75b416585e0da0c32e653e6f76474fbcd66672094d7aaf
 WHIRLPOOL 
2668b0d4ea7c0b4bbddc1c26c2187dc4d9b19d449bde91b522a7f500bcdec2d25ec59110001b9560fc610f9deacdfd8bcbdb2ce979e5ad09c9055c1f78820902
+DIST perl-5.24.2.tar.xz 11570420 SHA256 
b25dd465ef32edf853078eb540b26243db0a3b5e1b1cc84393703d9564be67c0 SHA512 
d7bb66e23064aba426fe3f7264d065f0926957675b0bba51fe2ddb623561ffcdb7657d9f27d78920a583a21bdee01a7ace37aae6d42c02d32403bd1347ad8df8
 WHIRLPOOL 
51e2fd19bff64c6d7bd8f40372089d14cc783c3ae17d6788361b3363a497a8e44688e490422b6c327b886eddf2ff0f2aa261c4c0aa76ecfac08ceb62f8d344d4
 DIST perl-5.25.11-patches-1.tar.xz 16776 SHA256 
43dda2f9a20b2d25caa733ba94acb0c48b26e8201b3f8fa3d2be24a6667e SHA512 
ee340824746d3b626b41c76bfa901543869fb9560ef75ff6d338df017e5528e33c344a91ce7cbe9f2fa9e813bf61bbe9eb290433baceb05b832110e746ce9036
 WHIRLPOOL 
98681898039e1bcc3e9a33498a8b7b8b3f24cc4c49396b33dfd04a853c329323ad47081d64da61ba2880fbd3505e10ffe90367dffa8005bda86c4f114b283934
 DIST perl-5.26.0.tar.xz 11961692 SHA256 
9bf2e3d0d72aad77865c3bdbc20d3b576d769c5c255c4ceb30fdb9335266bf55 SHA512 
cd5af6495fe4c46c0d5d0f51d4015b54daa221f08a5fb48899c247cb57c2ba85cffb97e6d258d0f931504828bb23e175d899f311c73805d924d1042058ac42e4
 WHIRLPOOL 
9b87a1fd5371871c747351440e40f5d1345b8bf6ac5810b9ef239e58947fe0c243583fdac6888f0450bdca437b6031cc5281a4e045d5014642ef2dc671e24e47
 DIST perl-5.27.1-patches-1.tar.xz 16444 SHA256 
98e3c57398a3476ff809b98c7a17e52424842ca41499b3ee84b73d90c633ec62 SHA512 
c70e033619e1caecb5e5d70e36094bb105f0387a383f7091c763b87ad9f31121c036446e337d44565ce66c9977870c951f2fbd61d34ac1633c18ac9d0b489a13
 WHIRLPOOL 
d211c1b5b3358e8142dd6c6ec9b324db49d1097a0f717168a299e22872d7ff3f9066dace7ac1de935117849445de15f6c3b0afd14afa2750c69d388b83c464d9

diff --git a/dev-lang/perl/perl-5.24.2_rc1.ebuild 
b/dev-lang/perl/perl-5.24.2.ebuild
similarity index 100%
rename from dev-lang/perl/perl-5.24.2_rc1.ebuild
rename to dev-lang/perl/perl-5.24.2.ebuild



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

2017-07-15 Thread Lars Wendler
commit: 97e974ddb111f13683bdcfd4cf9d1a4297e82e9d
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jul 15 19:03:51 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jul 15 19:04:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e974dd

apache-2.eclass: Attempt to fix an issue with apache-2.2

 eclass/apache-2.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/apache-2.eclass b/eclass/apache-2.eclass
index 20e93f3b3da..78a7c5ce474 100644
--- a/eclass/apache-2.eclass
+++ b/eclass/apache-2.eclass
@@ -172,7 +172,7 @@ setup_mpm() {
die "invalid use flag combination"
fi
 
-   if [[ "${MY_MPM}" = *prefork* ]] && use apache2_modules_http2 ; then
+   if [[ "${PV}" != 2.2* ]] && [[ "${MY_MPM}" = *prefork* ]] && use 
apache2_modules_http2 ; then
die "http2 does not work with prefork MPM."
fi
 }



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2017-07-15 Thread Sergei Trofimovich
commit: 0a1022e4be2e3dd850a2fdc81860060840b41e7b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 18:57:00 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 18:57:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a1022e4

sys-kernel/gentoo-sources: ia64 stable, bug #623210

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 sys-kernel/gentoo-sources/gentoo-sources-4.4.75.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.75.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.75.ebuild
index a75f82bc615..dc030c98f98 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.4.75.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.75.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc 
x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2017-07-15 Thread Sergei Trofimovich
commit: 349ec46ce5b41d173d5597f847b82deec8c45f48
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 18:57:05 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 18:57:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=349ec46c

sys-kernel/gentoo-sources: ia64 stable, bug #623644

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 sys-kernel/gentoo-sources/gentoo-sources-4.1.42.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.1.42.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.1.42.ebuild
index 61a1be5807f..9fd6dbf3608 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-4.1.42.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.1.42.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: app-emulation/playonlinux/

2017-07-15 Thread NP Hardass
commit: be129ff1ff8f0fd37efd76eb6010c8f7dc225094
Author: NP-Hardass  gentoo  org>
AuthorDate: Sat Jul 15 18:50:31 2017 +
Commit: NP Hardass  gentoo  org>
CommitDate: Sat Jul 15 18:50:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be129ff1

app-emulation/playonlinux: Drop old, #625196

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-emulation/playonlinux/Manifest |   5 -
 .../playonlinux/playonlinux-4.2.10-r1.ebuild   | 115 
 .../playonlinux/playonlinux-4.2.11.ebuild  | 116 
 .../playonlinux/playonlinux-4.2.4-r1.ebuild| 119 
 .../playonlinux/playonlinux-4.2.6-r1.ebuild| 120 -
 .../playonlinux/playonlinux-4.2.8-r1.ebuild| 120 -
 6 files changed, 595 deletions(-)

diff --git a/app-emulation/playonlinux/Manifest 
b/app-emulation/playonlinux/Manifest
index 3b90a2707f8..e2ebae0ad33 100644
--- a/app-emulation/playonlinux/Manifest
+++ b/app-emulation/playonlinux/Manifest
@@ -1,6 +1 @@
-DIST PlayOnLinux_4.2.10.tar.gz 3202085 SHA256 
f524905912ae2b17c8544968a8554d635f8fc4cd3b220c0ae15c49d51f244973 SHA512 
8d5477b8478e05e1a1974d17466a6ac0d79617b2056a1e6bf0f8dad067a1475a99008bbca52d565686e46b003cc14300306fc11d043e20773f93d1ab7b34ae58
 WHIRLPOOL 
c75f00974a2ef6043405911f4c5313294d4f8f6ab4f64a77ed2b9e148770b5d43bf1c4a934b0e27663b159841d26a908159cb3445d13b0e0b810c98fd5e68d59
-DIST PlayOnLinux_4.2.11.tar.gz 3204225 SHA256 
a55e2f07240baa8f152032997c6aad203e1cfbf8ba086fd0744f1ee1868408d2 SHA512 
9ee2df6a4eb9e18097cea63995888b0bc46e596db639da0c6ac393c92dc135cb9c62c45f25998e5384157d12b6fc2b2fc6b78925d20cf0980527776ec6f20dd1
 WHIRLPOOL 
aec82fdaa545089a03d2f6a4089ba83e7c1a926272d28ecf3a445d9be884ea885439a1de0dc517ac845c7a5cf13bf3338a3e5dc80783676a7ce6741d557818ab
 DIST PlayOnLinux_4.2.12.tar.gz 3204230 SHA256 
38cbdc85cca83b72ed0e54ee3a768f939fefe29d3670fc5d76b0303b5bda680e SHA512 
f4ededc8fe0117c66fd5672e136e19b9b48a41acdd3e1b1b3dd7fae2c354e77795f0a4f8286b09b7d1813363aee50fa0811c04c3194aaf745963a2e6115b3909
 WHIRLPOOL 
d66b09c49d530efe7eba37e43fc4789013a0ec8cd532e56c83e558ef304abc00fb427789786de9eaef28046713360f3511c18a5fb746a749bd96b8cc7130b3c5
-DIST PlayOnLinux_4.2.4.tar.gz 4638249 SHA256 
cc6f9c41c9f91278d995d14b7be6bd86c765cf41351c80e885df29da40b57554 SHA512 
1f200e43da4e43b6687cc05243cb9375d312c5382d4d82f06f574cc4a1a4322568ed429abc463d830cfcc1a818d0cc93147fbc60858a6b19872b55a479c8c58c
 WHIRLPOOL 
d09c5439a618d99af0ae380cb39a8e92acd47869190f984981e9cdc91272da48c6731457d0a23383c47219371bdf9d6018fe89a7acaaba32fc96221b58406d99
-DIST PlayOnLinux_4.2.6.tar.gz 3202517 SHA256 
34fc06ce55f889673529a405d17ffc045a68cc998a679377056ed63988dd64e2 SHA512 
41c4af5335874020f6405f460a0b9787f7dcfb77790661ff254d2af7ff107a94020b75a8b4f1856f1e4b866e63dee49d5823edf4867d64cd20c41b17387f5490
 WHIRLPOOL 
4278cc00c76abfeecb87d125046a977c69d5e62b751481ffa5ed4ca4a911507bc6b650bd8648cc7b4cd794e7f0c9e91197adc3854c963770bd87a535d83ab562
-DIST PlayOnLinux_4.2.8.tar.gz 3168086 SHA256 
2ae8d5132706f3c697d0a53573c5835938dd042b620eb76790181b285797985c SHA512 
8b9c934bf3591030dc9922757eadb09db34fee7c5a5ee8b800c831ee1b99e55959c0b66f645a89d3dc5d7287438da3a26c6877076175272e199221231accba12
 WHIRLPOOL 
cbaafa8f0f90c89931135c0fbcd91df00676fde4e0e9305a3d8f52234a51b96682e5a4aca14138f1f3f54ac43f69d38b7186667fcab97c72fa8043c3ffbd68d6

diff --git a/app-emulation/playonlinux/playonlinux-4.2.10-r1.ebuild 
b/app-emulation/playonlinux/playonlinux-4.2.10-r1.ebuild
deleted file mode 100644
index 1db51046818..000
--- a/app-emulation/playonlinux/playonlinux-4.2.10-r1.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-PYTHON_COMPAT=( python2_7 )
-
-inherit gnome2-utils python-single-r1
-
-MY_PN="PlayOnLinux"
-
-DESCRIPTION="Set of scripts to easily install and use Windows games and 
software"
-HOMEPAGE="http://playonlinux.com/;
-SRC_URI="http://www.playonlinux.com/script_files/${MY_PN}/${PV}/${MY_PN}_${PV}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="winbind"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND=""
-RDEPEND="${PYTHON_DEPS}
-   app-arch/cabextract
-   app-arch/p7zip
-   app-arch/unzip
-   app-crypt/gnupg
-   app-emulation/wine
-   dev-python/wxpython:2.8[${PYTHON_USEDEP}]
-   net-misc/wget
-   x11-apps/mesa-progs
-   x11-terms/xterm
-   media-gfx/icoutils
-   || ( net-analyzer/netcat net-analyzer/netcat6 )
-   virtual/imagemagick-tools
-   winbind? ( net-fs/samba[winbind] ) "
-
-S=${WORKDIR}/${PN}
-
-# TODO:
-# Having a real install script
-# It will let using LANGUAGES easily
-# How to deal with Microsoft Fonts installation asked every time ?
-# How to deal with wine version installed ? (have a better mgmt of system one)
-# Look at debian pkg: 

[gentoo-commits] repo/gentoo:master commit in: media-libs/vamp-plugin-sdk/

2017-07-15 Thread Sergei Trofimovich
commit: 8cf54ba4f067a67d44e6a085a9533feb35ecae69
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 18:25:25 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 18:25:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf54ba4

media-libs/vamp-plugin-sdk: ia64 stable, bug #625190

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild 
b/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
index e87e5177157..918c35ed18a 100644
--- a/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
+++ b/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://code.soundsoftware.ac.uk/attachments/download/2206/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~x86"
 IUSE="doc static-libs"
 
 RDEPEND="media-libs/libsndfile"



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

2017-07-15 Thread Sergei Trofimovich
commit: e661fa0267ad93b55d79e8a8155839ad47a4350a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 18:25:21 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 18:25:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e661fa02

dev-python/httplib2: ia64 stable, bug #624450

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

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

diff --git a/dev-python/httplib2/httplib2-0.10.3-r1.ebuild 
b/dev-python/httplib2/httplib2-0.10.3-r1.ebuild
index 3e94ecb4d82..aa3b5e9363a 100644
--- a/dev-python/httplib2/httplib2-0.10.3-r1.ebuild
+++ b/dev-python/httplib2/httplib2-0.10.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Sergei Trofimovich
commit: 6ca47431012661d95442e70514a03742c08fde5c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 18:25:29 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 18:25:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ca47431

media-libs/libkate: ia64 stable, bug #625200

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 media-libs/libkate/libkate-0.4.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libkate/libkate-0.4.1-r2.ebuild 
b/media-libs/libkate/libkate-0.4.1-r2.ebuild
index 408966d42b1..da3f41b944f 100644
--- a/media-libs/libkate/libkate-0.4.1-r2.ebuild
+++ b/media-libs/libkate/libkate-0.4.1-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://libkate.googlecode.com/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
 
 IUSE="debug doc wxwidgets"
 REQUIRED_USE="wxwidgets? ( ${PYTHON_REQUIRED_USE} )"



[gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea-bin/

2017-07-15 Thread James Le Cuirot
commit: fef98f3917043e1194cedfd6538c261ab2468244
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jul 15 18:16:22 2017 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jul 15 18:17:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fef98f39

dev-java/icedtea-bin: Fix removal of files on arm, closes #623784

The arm -> aarch32 symlink causes globbing to return duplicates and rm
therefore fails.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-java/icedtea-bin/icedtea-bin-3.4.0.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-java/icedtea-bin/icedtea-bin-3.4.0.ebuild 
b/dev-java/icedtea-bin/icedtea-bin-3.4.0.ebuild
index 3aa3b0f759c..7ff07f71af7 100644
--- a/dev-java/icedtea-bin/icedtea-bin-3.4.0.ebuild
+++ b/dev-java/icedtea-bin/icedtea-bin-3.4.0.ebuild
@@ -81,12 +81,15 @@ pkg_pretend() {
 src_prepare() {
default
 
+   # I wouldn't normally use -f below but symlinks in the arm files
+   # make this fail otherwise and any other approach would be tedious.
+
if ! use alsa; then
-   rm -v */jre/lib/*/libjsoundalsa.* || die
+   rm -fv */jre/lib/*/libjsoundalsa.* || die
fi
 
if use headless-awt; then
-   rm -vr */jre/lib/*/lib*{[jx]awt,splashscreen}* \
+   rm -fvr */jre/lib/*/lib*{[jx]awt,splashscreen}* \
   */{,jre/}bin/policytool */bin/appletviewer || die
fi
 }



[gentoo-commits] repo/gentoo:master commit in: x11-themes/arc-theme/

2017-07-15 Thread James Le Cuirot
commit: a56c7d81cabefceeeb59f536ff0b0ad3bbced3ff
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jul 15 12:50:01 2017 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jul 15 18:17:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a56c7d81

x11-themes/arc-theme: Add ~arm keyword, closes bug #622514

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 x11-themes/arc-theme/arc-theme-20170302.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/arc-theme/arc-theme-20170302.ebuild 
b/x11-themes/arc-theme/arc-theme-20170302.ebuild
index d604f155122..da22f3d75f4 100644
--- a/x11-themes/arc-theme/arc-theme-20170302.ebuild
+++ b/x11-themes/arc-theme/arc-theme-20170302.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/horst3180/arc-theme;
 SRC_URI="https://github.com/horst3180/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE="cinnamon gnome-shell +gtk2 +gtk3 mate xfce"
 
 # Supports various GTK+3 versions and uses pkg-config to determine which



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/antlr-cpp/

2017-07-15 Thread James Le Cuirot
commit: 74cefeb97600d6d2ae01d9f14ce483ab4b3dd885
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Jul 15 10:00:08 2017 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Jul 15 18:17:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74cefeb9

dev-cpp/antlr-cpp: Fix 2.7.7 configure when /bin/sh isn't Bash

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-cpp/antlr-cpp/antlr-cpp-2.7.7-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/antlr-cpp/antlr-cpp-2.7.7-r1.ebuild 
b/dev-cpp/antlr-cpp/antlr-cpp-2.7.7-r1.ebuild
index 905cf314f4f..576b9c51d9d 100644
--- a/dev-cpp/antlr-cpp/antlr-cpp-2.7.7-r1.ebuild
+++ b/dev-cpp/antlr-cpp/antlr-cpp-2.7.7-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=6
@@ -66,7 +66,7 @@ EOF
 }
 
 multilib_src_configure() {
-   econf \
+   CONFIG_SHELL="${BASH}" econf \
--disable-csharp \
--enable-cxx \
--disable-examples \



[gentoo-commits] repo/gentoo:master commit in: sys-process/systemd-cron/

2017-07-15 Thread Richard Freeman
commit: 90bb19824c44a66a9e7aa684400f97a5c200b863
Author: Richard Freeman  gentoo  org>
AuthorDate: Sat Jul 15 17:50:36 2017 +
Commit: Richard Freeman  gentoo  org>
CommitDate: Sat Jul 15 17:50:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90bb1982

sys-process/systemd-cron: bump

Bug: 607322
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-process/systemd-cron/Manifest  |  1 +
 .../systemd-cron/systemd-cron-1.5.10.ebuild| 74 ++
 2 files changed, 75 insertions(+)

diff --git a/sys-process/systemd-cron/Manifest 
b/sys-process/systemd-cron/Manifest
index 814430bbba5..70fd6a79d11 100644
--- a/sys-process/systemd-cron/Manifest
+++ b/sys-process/systemd-cron/Manifest
@@ -1,2 +1,3 @@
+DIST systemd-cron-1.5.10.tar.gz 31191 SHA256 
46872d8662e642f588f5c98c2f9540572a0862972b43f3fc76a73bdd6551a915 SHA512 
9a4bbf78c81adf74e589cd9431b5742d5dab63b0346a2330403a7e24bdab62833096445d9fd3e5f6a91f722b3f8176e52734dcc5e2ee0ec23b555e6d01805094
 WHIRLPOOL 
72f7afe7c0acba96ad7860e848b0369cde610d3c6be21cf683a8ea0cce14fe85f9230cf8a8a7c59ea49be154021136d8f8c35c6f11da04bb34b876260043bb20
 DIST systemd-cron-1.5.3.tar.gz 29105 SHA256 
3623b625938e1dc45ea3b7abf6eab35180c73eddf7865f4297cc5f38c8e09aca SHA512 
ea0241f93b8d92497fa020d84630ee153dc299d9b16b17567784a4dcb5ddf0a4589e7e033428562a862218ef79b192245178df2d7dcc69f779ef9156921674c7
 WHIRLPOOL 
51a148f780397b79d5988fb729061318c38afd2c096bf2eb4d62e340db2753f9268be11ca54974a7480d83b424cf9638961c713d843ef2ffaea1b1fe234ba539
 DIST systemd-cron-1.5.4.tar.gz 30436 SHA256 
acb99095cbef7812e556ac98574a9121c06ffdc3f28622b9dee098d81bcbbdcd SHA512 
e6fe60de9d6cbc223b8358bd6b1a060e11f1ea16a8f0b24662914ddb18d827f7b4c62fd40dbefed3d0ac38b1e748998ec5e0430d4ea751e8a20b94b9803bcb89
 WHIRLPOOL 
31f95488b3df2249807155eb5433d17a1e9013eee6ce49795b981847a4792b95ff6775297031cbd73cb0276b7c9ddf5a5241dfc7b4db99269da086803937c930

diff --git a/sys-process/systemd-cron/systemd-cron-1.5.10.ebuild 
b/sys-process/systemd-cron/systemd-cron-1.5.10.ebuild
new file mode 100644
index 000..f668c50f2a6
--- /dev/null
+++ b/sys-process/systemd-cron/systemd-cron-1.5.10.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+PYTHON_COMPAT=( pypy3 python3_{4,5,6} )
+inherit eutils python-single-r1 systemd
+
+DESCRIPTION="systemd units to create timers for cron directories and crontab"
+HOMEPAGE="https://github.com/systemd-cron/systemd-cron/;
+SRC_URI="https://github.com/systemd-cron/${PN}/archive/v${PV}.tar.gz -> 
systemd-cron-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cron-boot etc-crontab-systemd minutely setgid test yearly"
+
+RDEPEND=">=sys-apps/systemd-217
+sys-apps/debianutils
+!etc-crontab-systemd? ( !sys-process/dcron )
+${PYTHON_DEPS}
+sys-process/cronbase"
+
+DEPEND="sys-process/cronbase
+   test? ( sys-apps/man-db dev-python/pyflakes )"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+src_prepare() {
+   python_fix_shebang --force "${S}/src/bin"
+
+   sed -i \
+   -e 's/^crontab/crontab-systemd/' \
+   -e 's/^CRONTAB/CRONTAB-SYSTEMD/' \
+   -- "${S}/src/man/crontab."{1,5}".in" || die
+
+   sed -i \
+   -e 's!/crontab$!/crontab-systemd!' \
+   -e 's!/crontab\(\.[15]\)$!/crontab-systemd\1!' \
+   -e 's/pyflakes3/pyflakes/' \
+   -- "${S}/Makefile.in" || die
+
+   if use etc-crontab-systemd
+   thensed -i \
+   -e "s!/etc/crontab!/etc/crontab-systemd!" \
+   -- "${S}/src/man/crontab."{1,5}".in" \
+   "${S}/src/bin/systemd-crontab-generator.py" || die
+   fi
+
+   epatch_user
+}
+
+my_use_enable() {
+   if use ${1}; then
+   echo --enable-${2:-${1}}=yes
+   else
+   echo --enable-${2:-${1}}=no
+   fi
+}
+
+src_configure() {
+   ./configure \
+   --prefix="${EPREFIX}/usr" \
+   --confdir="${EPREFIX}/etc" \
+   --runparts="${EPREFIX}/bin/run-parts" \
+   --mandir="${EPREFIX}/usr/share/man" \
+   --unitdir="$(systemd_get_unitdir)" \
+   $(my_use_enable cron-boot boot) \
+   $(my_use_enable minutely) \
+   $(my_use_enable yearly) \
+   $(my_use_enable yearly quarterly) \
+   $(my_use_enable yearly semi_annually) \
+   $(my_use_enable setgid) \
+   --enable-persistent=yes
+}



[gentoo-commits] repo/gentoo:master commit in: app-text/xapian-omega/

2017-07-15 Thread Sergei Trofimovich
commit: 39163b46f6ea939d7870550b0f24393c94f73259
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 17:47:31 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 17:47:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39163b46

app-text/xapian-omega: ia64 stable, bug #624912

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 app-text/xapian-omega/xapian-omega-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xapian-omega/xapian-omega-1.4.4.ebuild 
b/app-text/xapian-omega/xapian-omega-1.4.4.ebuild
index a3ce26e9e06..c1440ef9bc0 100644
--- a/app-text/xapian-omega/xapian-omega-1.4.4.ebuild
+++ b/app-text/xapian-omega/xapian-omega-1.4.4.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/xapian-omega-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ia64 ~mips ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="dev-libs/xapian:0/30



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

2017-07-15 Thread Sergei Trofimovich
commit: f9447bf988bf545d2505a555872dfc1bc6f2f113
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 17:47:22 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 17:47:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9447bf9

dev-libs/xapian: ia64 stable, bug #624912

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 dev-libs/xapian/xapian-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xapian/xapian-1.4.4.ebuild 
b/dev-libs/xapian/xapian-1.4.4.ebuild
index 99f87ec6dc6..a6ee8db56d3 100644
--- a/dev-libs/xapian/xapian-1.4.4.ebuild
+++ b/dev-libs/xapian/xapian-1.4.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0/30" # ABI version of libxapian.so
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +glass +chert 
+inmemory"
 
 DEPEND="sys-libs/zlib"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/xapian-bindings/

2017-07-15 Thread Sergei Trofimovich
commit: 441000a4a7336fbfbe4839a9846b0bc80200c9b8
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Jul 15 17:47:26 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Jul 15 17:47:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=441000a4

dev-libs/xapian-bindings: ia64 stable, bug #624912

Package-Manager: Portage-2.3.6, Repoman-2.3.2
RepoMan-Options: --include-arches="ia64"

 dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild 
b/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild
index 1b7d8ff9959..746cc401e96 100644
--- a/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild
+++ b/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild
@@ -20,7 +20,7 @@ SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="java lua mono perl php python ruby tcl"
 REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )"
 



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

2017-07-15 Thread Tobias Klausmann
commit: 7623432e6f38f270daf22ec2d5ecff2d2714eb8e
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:36:28 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:36:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7623432e

dev-python/httplib2-0.10.3-r1: add amd64 keyword

Gentoo-Bug: 624450

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

diff --git a/dev-python/httplib2/httplib2-0.10.3-r1.ebuild 
b/dev-python/httplib2/httplib2-0.10.3-r1.ebuild
index ed28cff1b4b..3e94ecb4d82 100644
--- a/dev-python/httplib2/httplib2-0.10.3-r1.ebuild
+++ b/dev-python/httplib2/httplib2-0.10.3-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x64-macos"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Tobias Klausmann
commit: dab26e2c410604acfc1e0181dfe2dce8d551f55d
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:14 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dab26e2c

dev-python/pyspf-2.0.12-r0: add amd64 keyword

Gentoo-Bug: 625054

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

diff --git a/dev-python/pyspf/pyspf-2.0.12.ebuild 
b/dev-python/pyspf/pyspf-2.0.12.ebuild
index 98ead590823..e3d0a701003 100644
--- a/dev-python/pyspf/pyspf-2.0.12.ebuild
+++ b/dev-python/pyspf/pyspf-2.0.12.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}t.tar.gz"
 
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="ipv6 test"
 
 # >=python-3.3 comes with the built-in ipaddress module



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

2017-07-15 Thread Tobias Klausmann
commit: 13539662467750dd9c891bd97a6a7375de9c8c6d
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:13 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13539662

dev-python/pyramid-1.5.8-r0: add amd64 keyword

Gentoo-Bug: 625052

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

diff --git a/dev-python/pyramid/pyramid-1.5.8.ebuild 
b/dev-python/pyramid/pyramid-1.5.8.ebuild
index 3ecd8ac53db..5e8d767c7e8 100644
--- a/dev-python/pyramid/pyramid-1.5.8.ebuild
+++ b/dev-python/pyramid/pyramid-1.5.8.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="repoze"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2017-07-15 Thread Tobias Klausmann
commit: 4ebb55243aa11369b657557653a726be3908e96b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ebb5524

dev-python/pyalsaaudio-0.8.2-r0: add amd64 keyword

Gentoo-Bug: 625036

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

diff --git a/dev-python/pyalsaaudio/pyalsaaudio-0.8.2.ebuild 
b/dev-python/pyalsaaudio/pyalsaaudio-0.8.2.ebuild
index 58c2fc326b2..28ef2c8aaea 100644
--- a/dev-python/pyalsaaudio/pyalsaaudio-0.8.2.ebuild
+++ b/dev-python/pyalsaaudio/pyalsaaudio-0.8.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/pyalsaaudio/${P}.tar.gz 
mirror://pypi/${PN:0:1}/${
 
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~sparc ~x86"
 IUSE="doc"
 
 RDEPEND="media-libs/alsa-lib"



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

2017-07-15 Thread Tobias Klausmann
commit: baa8d1fdfedec1b2966187e2002f48a46553e5e9
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:19 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baa8d1fd

media-libs/libkate-0.4.1-r2: add amd64 keyword

Gentoo-Bug: 625200

 media-libs/libkate/libkate-0.4.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libkate/libkate-0.4.1-r2.ebuild 
b/media-libs/libkate/libkate-0.4.1-r2.ebuild
index 878106646fa..408966d42b1 100644
--- a/media-libs/libkate/libkate-0.4.1-r2.ebuild
+++ b/media-libs/libkate/libkate-0.4.1-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://libkate.googlecode.com/files/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
 
 IUSE="debug doc wxwidgets"
 REQUIRED_USE="wxwidgets? ( ${PYTHON_REQUIRED_USE} )"



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

2017-07-15 Thread Tobias Klausmann
commit: 6776c6c581a9a1ad30886fa1b77ffbae220e4e51
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:16 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6776c6c5

dev-python/pytools-2016.2.6-r0: add amd64 keyword

Gentoo-Bug: 625066

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

diff --git a/dev-python/pytools/pytools-2016.2.6.ebuild 
b/dev-python/pytools/pytools-2016.2.6.ebuild
index fd2adbe2246..548413ac61a 100644
--- a/dev-python/pytools/pytools-2016.2.6.ebuild
+++ b/dev-python/pytools/pytools-2016.2.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="



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

2017-07-15 Thread Tobias Klausmann
commit: a18a68c0e47da69b0f38b6ed336b4be04c7a3b4f
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:10 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a18a68c0

dev-python/namespace-paste-1-r0: add amd64 keyword

Gentoo-Bug: 625032

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

diff --git a/dev-python/namespace-paste/namespace-paste-1.ebuild 
b/dev-python/namespace-paste/namespace-paste-1.ebuild
index 14a6209ef76..a31eccf7ac0 100644
--- a/dev-python/namespace-paste/namespace-paste-1.ebuild
+++ b/dev-python/namespace-paste/namespace-paste-1.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~x86-solaris"
 IUSE=""
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2017-07-15 Thread Tobias Klausmann
commit: 5a2d3170d378b873567100979aa8aed151e4d402
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:16 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a2d3170

dev-python/xvfbwrapper-0.2.8-r0: add amd64 keyword

Gentoo-Bug: 625074

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

diff --git a/dev-python/xvfbwrapper/xvfbwrapper-0.2.8.ebuild 
b/dev-python/xvfbwrapper/xvfbwrapper-0.2.8.ebuild
index 0ca098f4fe3..61d0db34442 100644
--- a/dev-python/xvfbwrapper/xvfbwrapper-0.2.8.ebuild
+++ b/dev-python/xvfbwrapper/xvfbwrapper-0.2.8.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="x11-base/xorg-server[xvfb]"



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

2017-07-15 Thread Tobias Klausmann
commit: 377a39046b5fd2092961f4dc7d227bb21a6a7eb2
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:14 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=377a3904

dev-python/python-discid-1.1.1-r0: add amd64 keyword

Gentoo-Bug: 625056

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

diff --git a/dev-python/python-discid/python-discid-1.1.1.ebuild 
b/dev-python/python-discid/python-discid-1.1.1.ebuild
index 3162cd2694e..d2420b0ea8e 100644
--- a/dev-python/python-discid/python-discid-1.1.1.ebuild
+++ b/dev-python/python-discid/python-discid-1.1.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/JonnyJD/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="LGPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="doc"
 
 RDEPEND=">=media-libs/libdiscid-0.2.2"



[gentoo-commits] repo/gentoo:master commit in: net-firewall/ufw/

2017-07-15 Thread Tobias Klausmann
commit: afdf9036edd53449e5c0b1ece27553ce5964032b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:18 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afdf9036

net-firewall/ufw-0.35-r1: add amd64 keyword

Gentoo-Bug: 625084

 net-firewall/ufw/ufw-0.35-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/ufw/ufw-0.35-r1.ebuild 
b/net-firewall/ufw/ufw-0.35-r1.ebuild
index 813f60e3525..3eefc7d31bc 100644
--- a/net-firewall/ufw/ufw-0.35-r1.ebuild
+++ b/net-firewall/ufw/ufw-0.35-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://launchpad.net/ufw/${PV}/${PV}/+download/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="examples ipv6"
 
 DEPEND="sys-devel/gettext"



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

2017-07-15 Thread Tobias Klausmann
commit: 9d178222e223d73b97a288bf378393f05fc0
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:10 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d17

dev-python/pastescript-2.0.2-r1: add amd64 keyword

Gentoo-Bug: 625032

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

diff --git a/dev-python/pastescript/pastescript-2.0.2-r1.ebuild 
b/dev-python/pastescript/pastescript-2.0.2-r1.ebuild
index d1b00796456..2d2f8b5b27a 100644
--- a/dev-python/pastescript/pastescript-2.0.2-r1.ebuild
+++ b/dev-python/pastescript/pastescript-2.0.2-r1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
 IUSE="doc test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-nntp/leafnode/

2017-07-15 Thread Tobias Klausmann
commit: 4f6c9d78d9c237de6822978b1df6a29fb718
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:18 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f6c9222

net-nntp/leafnode-1.11.11-r0: add amd64 keyword

Gentoo-Bug: 625162

 net-nntp/leafnode/leafnode-1.11.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-nntp/leafnode/leafnode-1.11.11.ebuild 
b/net-nntp/leafnode/leafnode-1.11.11.ebuild
index 96ffa3587ad..ba8a546e64d 100644
--- a/net-nntp/leafnode/leafnode-1.11.11.ebuild
+++ b/net-nntp/leafnode/leafnode-1.11.11.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 HOMEPAGE="http://leafnode.sourceforge.net/;
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="ipv6"
 
 DEPEND=">=dev-libs/libpcre-3.9"



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

2017-07-15 Thread Tobias Klausmann
commit: d3e3d4b4911458a31822432f354b422de752f213
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:12 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e3d4b4

dev-python/pydns-3.1.1-r0: add amd64 keyword

Gentoo-Bug: 625042

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

diff --git a/dev-python/pydns/pydns-3.1.1.ebuild 
b/dev-python/pydns/pydns-3.1.1.ebuild
index f25c0690ba8..432fac7ef1c 100644
--- a/dev-python/pydns/pydns-3.1.1.ebuild
+++ b/dev-python/pydns/pydns-3.1.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://launchpad.net/${MY_PN}/trunk/${PV}/+download/${MY_P}.tar.gz;
 
 LICENSE="CNRI"
 SLOT="3"
-KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ia64 ~ppc ~sparc ~x86"
 IUSE="examples"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Tobias Klausmann
commit: db0bbb78440508aeb731d158004ac30558c960c2
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db0bbb78

dev-python/pmw-2.0.1-r0: add amd64 keyword

Gentoo-Bug: 625034

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

diff --git a/dev-python/pmw/pmw-2.0.1.ebuild b/dev-python/pmw/pmw-2.0.1.ebuild
index ce8cb19b713..ee6f48caaf0 100644
--- a/dev-python/pmw/pmw-2.0.1.ebuild
+++ b/dev-python/pmw/pmw-2.0.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="py3"
-KEYWORDS="~alpha ~amd64 ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
+KEYWORDS="~alpha amd64 ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos"
 IUSE="doc examples test"
 
 DEPEND="!dev-python/pmw:0"



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

2017-07-15 Thread Tobias Klausmann
commit: eb20c796d303051bdb6177171fca68aa6de17001
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:12 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb20c796

dev-python/pympler-0.5-r0: add amd64 keyword

Gentoo-Bug: 625048

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

diff --git a/dev-python/pympler/pympler-0.5.ebuild 
b/dev-python/pympler/pympler-0.5.ebuild
index 0ff75f3d325..78907c0f513 100644
--- a/dev-python/pympler/pympler-0.5.ebuild
+++ b/dev-python/pympler/pympler-0.5.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/pympler/pympler/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
 IUSE="doc test"
 
 RDEPEND="dev-python/bottle[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Tobias Klausmann
commit: f2fd03a9dd1fec5a32d87ba8f78a6aaf0b7c2454
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:15 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2fd03a9

dev-python/python-distutils-extra-2.39-r0: add amd64 keyword

Gentoo-Bug: 625058

 dev-python/python-distutils-extra/python-distutils-extra-2.39.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/python-distutils-extra/python-distutils-extra-2.39.ebuild 
b/dev-python/python-distutils-extra/python-distutils-extra-2.39.ebuild
index 3f0df9ae835..09e22cf0bae 100644
--- a/dev-python/python-distutils-extra/python-distutils-extra-2.39.ebuild
+++ b/dev-python/python-distutils-extra/python-distutils-extra-2.39.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://launchpad.net/python-distutils-extra/trunk/${PV}/+download/${P}
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-libs/vamp-plugin-sdk/

2017-07-15 Thread Tobias Klausmann
commit: dc18116129a5da3abf5fc8f31995383d99003b7d
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:18 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc181161

media-libs/vamp-plugin-sdk-2.7.1-r0: add amd64 keyword

Gentoo-Bug: 625190

 media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild 
b/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
index 7ed321aedaa..e87e5177157 100644
--- a/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
+++ b/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://code.soundsoftware.ac.uk/attachments/download/2206/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
 IUSE="doc static-libs"
 
 RDEPEND="media-libs/libsndfile"



[gentoo-commits] repo/gentoo:master commit in: media-sound/xmms2/

2017-07-15 Thread Tobias Klausmann
commit: 7d3f2bb804d1680b728da790ce1faeadc6ef82f1
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:17 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d3f2bb8

media-sound/xmms2-0.8_p20161122-r0: add amd64 keyword

Gentoo-Bug: 625080

 media-sound/xmms2/xmms2-0.8_p20161122.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/xmms2/xmms2-0.8_p20161122.ebuild 
b/media-sound/xmms2/xmms2-0.8_p20161122.ebuild
index 88cbf6fa3bb..6e57178b26a 100644
--- a/media-sound/xmms2/xmms2-0.8_p20161122.ebuild
+++ b/media-sound/xmms2/xmms2-0.8_p20161122.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://dev.gentoo.org/~slyfox/distfiles/${MY_P}.tar.bz2;
 LICENSE="GPL-2 LGPL-2.1"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~x86"
+KEYWORDS="~alpha amd64 ~ppc ~x86"
 
 IUSE="aac airplay +alsa ao asf cdda curl cxx ffmpeg flac fluidsynth gvfs ices
 jack mac mlib-update mms +mad modplug mp3 mp4 musepack ofa opus oss



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

2017-07-15 Thread Tobias Klausmann
commit: e624e3b10817e35f907ed8ba8bc0d814239453d8
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:09 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e624e3b1

dev-python/oauth2-1.9.0_p1-r1: add amd64 keyword

Gentoo-Bug: 625030

 dev-python/oauth2/oauth2-1.9.0_p1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/oauth2/oauth2-1.9.0_p1-r1.ebuild 
b/dev-python/oauth2/oauth2-1.9.0_p1-r1.ebuild
index 0da571fc470..d10d92f06b3 100644
--- a/dev-python/oauth2/oauth2-1.9.0_p1-r1.ebuild
+++ b/dev-python/oauth2/oauth2-1.9.0_p1-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x64-macos"
+KEYWORDS="amd64 ~x86 ~x64-macos"
 IUSE="test"
 
 RDEPEND="dev-python/httplib2[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Tobias Klausmann
commit: 7f92a45f47886ebd1d83cf0b7082411af6ea18f9
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:14 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f92a45f

dev-python/zope-deprecation-4.2.0-r0: add amd64 keyword

Gentoo-Bug: 625052

 dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild 
b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
index a03bcc2ab00..9ed2d171482 100644
--- a/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
+++ b/dev-python/zope-deprecation/zope-deprecation-4.2.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${MY_PN::1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Tobias Klausmann
commit: 5e88ea7c70b63fdb9ce361de9200848125c72964
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:13 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e88ea7c

dev-python/zope-component-4.3.0-r1: add amd64 keyword

Gentoo-Bug: 625052

 dev-python/zope-component/zope-component-4.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/zope-component/zope-component-4.3.0-r1.ebuild 
b/dev-python/zope-component/zope-component-4.3.0-r1.ebuild
index 797aa183c93..60628ffc790 100644
--- a/dev-python/zope-component/zope-component-4.3.0-r1.ebuild
+++ b/dev-python/zope-component/zope-component-4.3.0-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="ZPL"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="test"
 RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]
dev-python/zope-event[${PYTHON_USEDEP}]



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

2017-07-15 Thread Tobias Klausmann
commit: 2f19dc485aab023940d06d2e81e23e7358c515b3
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:16 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f19dc48

dev-python/wsaccel-0.6.2_p20170108-r0: add amd64 keyword

Gentoo-Bug: 625072

 dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild 
b/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild
index 97d3e9b5b77..e10e3490a77 100644
--- a/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild
+++ b/dev-python/wsaccel/wsaccel-0.6.2_p20170108.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/methane/wsaccel/archive/${COMMIT}.zip -> ${P}.zip"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND=""



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

2017-07-15 Thread Tobias Klausmann
commit: 7b2d201c67010ae5aea7ad418f6f29bc20c98446
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:13 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b2d201c

dev-python/namespace-zope-1-r0: add amd64 keyword

Gentoo-Bug: 625052

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

diff --git a/dev-python/namespace-zope/namespace-zope-1.ebuild 
b/dev-python/namespace-zope/namespace-zope-1.ebuild
index f51e34f110a..72c1b2cfeb7 100644
--- a/dev-python/namespace-zope/namespace-zope-1.ebuild
+++ b/dev-python/namespace-zope/namespace-zope-1.ebuild
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~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 ~m68k ~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=""
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2017-07-15 Thread Tobias Klausmann
commit: e714068f7f118d8c7997d8be3eb3b5908ee4d920
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e714068f

dev-python/pyaudio-0.2.11-r0: add amd64 keyword

Gentoo-Bug: 625038

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

diff --git a/dev-python/pyaudio/pyaudio-0.2.11.ebuild 
b/dev-python/pyaudio/pyaudio-0.2.11.ebuild
index 71eb8815d1f..d292eb42cc5 100644
--- a/dev-python/pyaudio/pyaudio-0.2.11.ebuild
+++ b/dev-python/pyaudio/pyaudio-0.2.11.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="doc"
 
 RDEPEND="media-libs/portaudio"



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

2017-07-15 Thread Tobias Klausmann
commit: 2d1358a0f411b41fb4e3575de6a41bb5aad3fd0b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:15 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d1358a0

dev-python/pythondialog-3.3.0-r0: add amd64 keyword

Gentoo-Bug: 625064

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

diff --git a/dev-python/pythondialog/pythondialog-3.3.0.ebuild 
b/dev-python/pythondialog/pythondialog-3.3.0.ebuild
index a3a5e4945a2..083cdd389cc 100644
--- a/dev-python/pythondialog/pythondialog-3.3.0.ebuild
+++ b/dev-python/pythondialog/pythondialog-3.3.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="mirror://sourceforge/pythondialog//${PV}/python3-${P}.tar.bz2"
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ia64 ~ppc ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ia64 ~ppc ~sparc ~x86"
 IUSE="doc examples"
 
 RDEPEND="dev-util/dialog"



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

2017-07-15 Thread Tobias Klausmann
commit: 901df3d20e7e6e4cd504cdfa8f98ec9b5d5fc016
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:23:15 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:23:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=901df3d2

dev-python/python-nbxmpp-0.5.6-r0: add amd64 keyword

Gentoo-Bug: 625060

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

diff --git a/dev-python/python-nbxmpp/python-nbxmpp-0.5.6.ebuild 
b/dev-python/python-nbxmpp/python-nbxmpp-0.5.6.ebuild
index d46f49ff630..7563975b304 100644
--- a/dev-python/python-nbxmpp/python-nbxmpp-0.5.6.ebuild
+++ b/dev-python/python-nbxmpp/python-nbxmpp-0.5.6.ebuild
@@ -13,5 +13,5 @@ 
SRC_URI="https://dev.gajim.org/gajim/python-nbxmpp/repository/archive.tar.gz?ref
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""



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

2017-07-15 Thread Tobias Klausmann
commit: 0113e655f14714c1bba8e9cd8bd398be34a07812
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0113e655

dev-python/pydiff-0.2-r0: add amd64 keyword

Gentoo-Bug: 624992

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

diff --git a/dev-python/pydiff/pydiff-0.2.ebuild 
b/dev-python/pydiff/pydiff-0.2.ebuild
index 1ae7d901da1..a45818c927a 100644
--- a/dev-python/pydiff/pydiff-0.2.ebuild
+++ b/dev-python/pydiff/pydiff-0.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 python_test() {
"${PYTHON}" test_pydiff.py || die "Tests failed under ${EPYTHON}"



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

2017-07-15 Thread Tobias Klausmann
commit: 0ab909d7b5996746b3d0c1ba59e6979d54a2227e
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ab909d7

dev-python/pycodestyle-2.3.1-r0: add amd64 keyword

Gentoo-Bug: 624992

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

diff --git a/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild 
b/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild
index f27eb2788ea..8aabf9dbff3 100644
--- a/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild
+++ b/dev-python/pycodestyle/pycodestyle-2.3.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86 
~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 ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc"
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Tobias Klausmann
commit: a3291944d07dd14ada3b457dee8403649df06ee9
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:13 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3291944

dev-python/mimerender-0.6.0-r0: add amd64 keyword

Gentoo-Bug: 625022

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

diff --git a/dev-python/mimerender/mimerender-0.6.0.ebuild 
b/dev-python/mimerender/mimerender-0.6.0.ebuild
index d8f0142527e..44cae203c60 100644
--- a/dev-python/mimerender/mimerender-0.6.0.ebuild
+++ b/dev-python/mimerender/mimerender-0.6.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://pypi.python.org/pypi/mimerender;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="dev-python/mimeparse[${PYTHON_USEDEP}]"
 DEPEND="${RDEPEND}



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

2017-07-15 Thread Tobias Klausmann
commit: e307effbe7bd8302892763da82d6fb75e4a84329
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:12 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e307effb

dev-python/chameleon-2.25-r0: add amd64 keyword

Gentoo-Bug: 624994

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

diff --git a/dev-python/chameleon/chameleon-2.25.ebuild 
b/dev-python/chameleon/chameleon-2.25.ebuild
index 2ebdc5a056c..2cf208d93c2 100644
--- a/dev-python/chameleon/chameleon-2.25.ebuild
+++ b/dev-python/chameleon/chameleon-2.25.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="repoze"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="doc test"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2017-07-15 Thread Tobias Klausmann
commit: c14bedab3da6d96a77445fb0ff9e82c0eaf076b0
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:13 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14bedab

dev-python/moto-0.4.30-r0: add amd64 keyword

Gentoo-Bug: 625026

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

diff --git a/dev-python/moto/moto-0.4.30.ebuild 
b/dev-python/moto/moto-0.4.30.ebuild
index 69bcc06c215..3c11851b501 100644
--- a/dev-python/moto/moto-0.4.30.ebuild
+++ b/dev-python/moto/moto-0.4.30.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND=">=dev-python/jinja-2.8[${PYTHON_USEDEP}]



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

2017-07-15 Thread Tobias Klausmann
commit: 34c6202ec6f373a2971c6d063f216a91b201a652
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:12 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34c6202e

dev-python/geoip-python-1.3.2-r1: add amd64 keyword

Gentoo-Bug: 625006

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

diff --git a/dev-python/geoip-python/geoip-python-1.3.2-r1.ebuild 
b/dev-python/geoip-python/geoip-python-1.3.2-r1.ebuild
index 2662ae3124d..a0bfac7cf59 100644
--- a/dev-python/geoip-python/geoip-python-1.3.2-r1.ebuild
+++ b/dev-python/geoip-python/geoip-python-1.3.2-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/maxmind/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_P}.ta
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="amd64 ~ia64 ~ppc ~sparc ~x86 ~x86-fbsd"
 IUSE="examples test"
 
 RDEPEND=">=dev-libs/geoip-1.4.8"



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

2017-07-15 Thread Tobias Klausmann
commit: 7318d271f32512d05c85f144609e0beeab69be82
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:12 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7318d271

dev-python/jingo-0.9.0-r0: add amd64 keyword

Gentoo-Bug: 625018

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

diff --git a/dev-python/jingo/jingo-0.9.0.ebuild 
b/dev-python/jingo/jingo-0.9.0.ebuild
index da65bf6bf6a..72701415cfa 100644
--- a/dev-python/jingo/jingo-0.9.0.ebuild
+++ b/dev-python/jingo/jingo-0.9.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-07-15 Thread Tobias Klausmann
commit: b025ae4c176ebab42d6aa8cd7074c14082429669
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:10 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b025ae4c

dev-python/PyPDF2-1.26.0-r0: add amd64 keyword

Gentoo-Bug: 624948

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

diff --git a/dev-python/PyPDF2/PyPDF2-1.26.0.ebuild 
b/dev-python/PyPDF2/PyPDF2-1.26.0.ebuild
index 97788638f04..008bc70170b 100644
--- a/dev-python/PyPDF2/PyPDF2-1.26.0.ebuild
+++ b/dev-python/PyPDF2/PyPDF2-1.26.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="examples"
 
 PATCHES=( "${FILESDIR}/${P}-py3-tests.patch" )



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

2017-07-15 Thread Tobias Klausmann
commit: 24f1903edebaca857a94ed3a24ce2c7d1bce3a4a
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:18:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:18:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24f1903e

dev-python/autopep8-1.3.2-r0: add amd64 keyword

Gentoo-Bug: 624992

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

diff --git a/dev-python/autopep8/autopep8-1.3.2.ebuild 
b/dev-python/autopep8/autopep8-1.3.2.ebuild
index 32c6043fa95..854a7cee7c7 100644
--- a/dev-python/autopep8/autopep8-1.3.2.ebuild
+++ b/dev-python/autopep8/autopep8-1.3.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-text/xapian-omega/

2017-07-15 Thread Tobias Klausmann
commit: aa68d1e8873498db73e75a748dc91a6765656624
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:07 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa68d1e8

app-text/xapian-omega-1.4.4-r0: add amd64 keyword

Gentoo-Bug: 624912

 app-text/xapian-omega/xapian-omega-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xapian-omega/xapian-omega-1.4.4.ebuild 
b/app-text/xapian-omega/xapian-omega-1.4.4.ebuild
index d49ca33f6fd..a3ce26e9e06 100644
--- a/app-text/xapian-omega/xapian-omega-1.4.4.ebuild
+++ b/app-text/xapian-omega/xapian-omega-1.4.4.ebuild
@@ -10,7 +10,7 @@ S="${WORKDIR}/xapian-omega-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="dev-libs/xapian:0/30



[gentoo-commits] repo/gentoo:master commit in: net-mail/dbmail/

2017-07-15 Thread Tobias Klausmann
commit: 43039533428b78f252e00add0ecd100f88a4f281
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:07 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43039533

net-mail/dbmail-3.2.3-r1: add amd64 keyword

Gentoo-Bug: 624844

 net-mail/dbmail/dbmail-3.2.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/dbmail/dbmail-3.2.3-r1.ebuild 
b/net-mail/dbmail/dbmail-3.2.3-r1.ebuild
index 4d2e4a7d27e..80a56414a9a 100644
--- a/net-mail/dbmail/dbmail-3.2.3-r1.ebuild
+++ b/net-mail/dbmail/dbmail-3.2.3-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.dbmail.org/download/$(get_version_component_range 1-2)/${P}.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="ldap sieve ssl static"
 
 DEPEND="dev-db/libzdb



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

2017-07-15 Thread Tobias Klausmann
commit: ea85f368d6785b6756b311f0dd293a0957cb534a
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:08 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea85f368

dev-libs/xapian-1.4.4-r0: add amd64 keyword

Gentoo-Bug: 624912

 dev-libs/xapian/xapian-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xapian/xapian-1.4.4.ebuild 
b/dev-libs/xapian/xapian-1.4.4.ebuild
index 94c7cdcf7e3..99f87ec6dc6 100644
--- a/dev-libs/xapian/xapian-1.4.4.ebuild
+++ b/dev-libs/xapian/xapian-1.4.4.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0/30" # ABI version of libxapian.so
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +glass +chert 
+inmemory"
 
 DEPEND="sys-libs/zlib"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Math-Pari/

2017-07-15 Thread Tobias Klausmann
commit: e3ba54ebdb8a22a1d2487a7de91fac1b5ffdac0b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:07 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3ba54eb

dev-perl/Math-Pari-2.10.809.0-r0: add amd64 keyword

Gentoo-Bug: 624826

 dev-perl/Math-Pari/Math-Pari-2.10.809.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Math-Pari/Math-Pari-2.10.809.0.ebuild 
b/dev-perl/Math-Pari/Math-Pari-2.10.809.0.ebuild
index 7317bc15711..3f1fb17e0c3 100644
--- a/dev-perl/Math-Pari/Math-Pari-2.10.809.0.ebuild
+++ b/dev-perl/Math-Pari/Math-Pari-2.10.809.0.ebuild
@@ -16,7 +16,7 @@ SRC_URI="${SRC_URI}
http://pari.math.u-bordeaux.fr/pub/pari/unix/pari-${PARI_VER}.tar.gz;
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~mips ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~hppa ~mips ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~x86-solaris"
 IUSE=""
 
 # Math::Pari requires that a copy of the pari source in a parallel



[gentoo-commits] repo/gentoo:master commit in: dev-libs/xapian-bindings/

2017-07-15 Thread Tobias Klausmann
commit: c4afccc1be06a367d0864f4ed868f16c7fc0fce1
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:08 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4afccc1

dev-libs/xapian-bindings-1.4.4-r0: add amd64 keyword

Gentoo-Bug: 624912

 dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild 
b/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild
index 52aa1bece6c..1b7d8ff9959 100644
--- a/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild
+++ b/dev-libs/xapian-bindings/xapian-bindings-1.4.4.ebuild
@@ -20,7 +20,7 @@ SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="java lua mono perl php python ruby tcl"
 REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Data-FormValidator/

2017-07-15 Thread Tobias Klausmann
commit: 82a252a44c90bcf435bc210392ec8d1aa9e07521
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:06 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82a252a4

dev-perl/Data-FormValidator-4.860.0-r1: add amd64 keyword

Gentoo-Bug: 624822

 dev-perl/Data-FormValidator/Data-FormValidator-4.860.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Data-FormValidator/Data-FormValidator-4.860.0-r1.ebuild 
b/dev-perl/Data-FormValidator/Data-FormValidator-4.860.0-r1.ebuild
index e91a4c28da9..641b318bab6 100644
--- a/dev-perl/Data-FormValidator/Data-FormValidator-4.860.0-r1.ebuild
+++ b/dev-perl/Data-FormValidator/Data-FormValidator-4.860.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Validates user input (usually from an HTML form) based on input 
profile"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 PATCHES=( "${FILESDIR}/4.86-dot-in-inc.patch" )



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-Regexp/

2017-07-15 Thread Tobias Klausmann
commit: 8f82b3662655328417237ecee8bfd80d0fd98ddc
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:06 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f82b366

dev-perl/Test-Regexp-2017040101.0.0-r0: add amd64 keyword

Gentoo-Bug: 624824

 dev-perl/Test-Regexp/Test-Regexp-2017040101.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-Regexp/Test-Regexp-2017040101.0.0.ebuild 
b/dev-perl/Test-Regexp/Test-Regexp-2017040101.0.0.ebuild
index b471c216861..7148c30c594 100644
--- a/dev-perl/Test-Regexp/Test-Regexp-2017040101.0.0.ebuild
+++ b/dev-perl/Test-Regexp/Test-Regexp-2017040101.0.0.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Provide commonly requested regular expressions"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="test"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Regexp-Common/

2017-07-15 Thread Tobias Klausmann
commit: 9dbcf9041955d059289b87dd70d746f24a410e71
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Jul 15 17:04:06 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Jul 15 17:04:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dbcf904

dev-perl/Regexp-Common-2017060201.0.0-r0: add amd64 keyword

Gentoo-Bug: 624824

 dev-perl/Regexp-Common/Regexp-Common-2017060201.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Regexp-Common/Regexp-Common-2017060201.0.0.ebuild 
b/dev-perl/Regexp-Common/Regexp-Common-2017060201.0.0.ebuild
index c1a895b4029..9fdfdd1aeaa 100644
--- a/dev-perl/Regexp-Common/Regexp-Common-2017060201.0.0.ebuild
+++ b/dev-perl/Regexp-Common/Regexp-Common-2017060201.0.0.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Provide commonly requested regular expressions"
 
 LICENSE="|| ( Artistic Artistic-2 MIT BSD )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="test"
 
 DEPEND="



  1   2   3   >