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

2017-07-16 Thread Andrew Savchenko
commit: 41789d6be3c976bf3c6da66cc675adc912c1ea9b
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Mon Jul 17 05:26:49 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Mon Jul 17 05:28:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41789d6b

games-engines/renpy: increase infinite loop hardcoded values

On many old hardware, e.g on my Atom netbook games hit this limit,
but otherwise work fine. Increasing the limit helps. People are
also reporting this issue in many cases (old laptops, stow tablets,
etc where games fail due to this issue and work otherwise):

https://translationprojectvisualnovels.blogspot.ru/2016/09/monster-girl-quest-android-15092016.html
https://lemmasoft.renai.us/forums/viewtopic.php?f=8=30521=90
https://steamcommunity.com/app/356530/discussions/0/365163686036650662/
(and many more, just google)

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

 .../renpy-6.99.12.4-compat-infinite-loop.patch |  42 
 games-engines/renpy/renpy-6.99.12.4-r3.ebuild  | 108 +
 2 files changed, 150 insertions(+)

diff --git 
a/games-engines/renpy/files/renpy-6.99.12.4-compat-infinite-loop.patch 
b/games-engines/renpy/files/renpy-6.99.12.4-compat-infinite-loop.patch
new file mode 100644
index 000..3a2942cb04f
--- /dev/null
+++ b/games-engines/renpy/files/renpy-6.99.12.4-compat-infinite-loop.patch
@@ -0,0 +1,42 @@
+Adapted from git HEAD:
+commit ff308191a190bf7c5c2118a31f3d8569a0904c04
+Author: Andrew Savchenko 
+Date:   Mon Jul 17 08:00:07 2017 +0300
+
+Increase infinite loop hardcoded values
+
+On many old hardware, e.g on my Atom netbook games hit this limit,
+but otherwise work fine. Increasing the limit helps. People are
+also reporting this issue in many cases (old laptops, stow tablets,
+etc where games fail due to this issue and work otherwise):
+
+
https://translationprojectvisualnovels.blogspot.ru/2016/09/monster-girl-quest-android-15092016.html
+https://lemmasoft.renai.us/forums/viewtopic.php?f=8=30521=90
+https://steamcommunity.com/app/356530/discussions/0/365163686036650662/
+(and many more, just google)
+
+index 00c7562..a7e361c 100644
+--- a/renpy/display/core.py
 b/renpy/display/core.py
+@@ -2845,7 +2845,7 @@ class Interface(object):
+ 
+ while rv is None:
+ 
+-renpy.execution.not_infinite_loop(10)
++renpy.execution.not_infinite_loop(50)
+ 
+ # Check for a change in fullscreen preference.
+ if ((self.fullscreen != renpy.game.preferences.fullscreen) or
+diff --git a/renpy/main.py b/renpy/main.py
+index 6f14d77..960d2fd 100644
+--- a/renpy/main.py
 b/renpy/main.py
+@@ -318,7 +318,7 @@ def main():
+ game.contexts = [ renpy.execution.Context(False) ]
+ game.contexts[0].init_phase = True
+ 
+-renpy.execution.not_infinite_loop(60)
++renpy.execution.not_infinite_loop(300)
+ 
+ # Load the script.
+ renpy.game.exception_info = 'While loading the script.'

diff --git a/games-engines/renpy/renpy-6.99.12.4-r3.ebuild 
b/games-engines/renpy/renpy-6.99.12.4-r3.ebuild
new file mode 100644
index 000..ccf21fbcc9c
--- /dev/null
+++ b/games-engines/renpy/renpy-6.99.12.4-r3.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+DISTUTILS_IN_SOURCE_BUILD=1
+inherit eutils gnome2-utils toolchain-funcs versionator distutils-r1
+
+DESCRIPTION="Visual novel engine written in python"
+HOMEPAGE="http://www.renpy.org;
+SRC_URI="http://www.renpy.org/dl/${PV}/${P}-source.tar.bz2;
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+MYSLOT=$(delete_all_version_separators ${SLOT})
+KEYWORDS="~amd64 ~x86"
+IUSE="development doc examples"
+REQUIRED_USE="examples? ( development )"
+
+RDEPEND="
+   >=app-eselect/eselect-renpy-0.7
+   dev-libs/fribidi
+   ~dev-python/pygame_sdl2-${PV}[${PYTHON_USEDEP}]
+   >=dev-lang/python-exec-0.3[${PYTHON_USEDEP}]
+   media-libs/glew:0
+   media-libs/libpng:0
+   media-libs/libsdl2[video]
+   media-libs/freetype:2
+   sys-libs/zlib
+   virtual/ffmpeg"
+DEPEND="${RDEPEND}
+   dev-python/cython[${PYTHON_USEDEP}]
+   virtual/pkgconfig"
+
+S=${WORKDIR}/${P}-source
+
+PATCHES=(
+   "${FILESDIR}"/${P}-multiple-abi.patch
+   "${FILESDIR}"/${P}-compat-window.patch #601200
+   "${FILESDIR}"/${P}-compat-style.patch
+   "${FILESDIR}"/${P}-compat-infinite-loop.patch
+)
+
+python_prepare_all() {
+   export CFLAGS="${CFLAGS} $($(tc-getPKG_CONFIG) --cflags fribidi)"
+   distutils-r1_python_prepare_all
+
+   einfo "Deleting precompiled python files"
+   find . -name '*.py[co]' -print -delete || die
+
+   sed -i \
+   -e "s/@SLOT@/${MYSLOT}/" \
+   renpy.py 

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

2017-07-16 Thread Andrew Savchenko
commit: 5e4723b170d9d8fa81877a7ce2efb9a30d2289bd
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Mon Jul 17 05:28:16 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Mon Jul 17 05:28:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e4723b1

games-engines/renpy: remove old

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

 games-engines/renpy/renpy-6.99.12.4-r2.ebuild | 107 --
 1 file changed, 107 deletions(-)

diff --git a/games-engines/renpy/renpy-6.99.12.4-r2.ebuild 
b/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
deleted file mode 100644
index b3840bc93f9..000
--- a/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
+++ /dev/null
@@ -1,107 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 )
-DISTUTILS_IN_SOURCE_BUILD=1
-inherit eutils gnome2-utils toolchain-funcs versionator distutils-r1
-
-DESCRIPTION="Visual novel engine written in python"
-HOMEPAGE="http://www.renpy.org;
-SRC_URI="http://www.renpy.org/dl/${PV}/${P}-source.tar.bz2;
-
-LICENSE="MIT"
-SLOT="$(get_version_component_range 1-2)"
-MYSLOT=$(delete_all_version_separators ${SLOT})
-KEYWORDS="~amd64 ~x86"
-IUSE="development doc examples"
-REQUIRED_USE="examples? ( development )"
-
-RDEPEND="
-   >=app-eselect/eselect-renpy-0.7
-   dev-libs/fribidi
-   ~dev-python/pygame_sdl2-${PV}[${PYTHON_USEDEP}]
-   >=dev-lang/python-exec-0.3[${PYTHON_USEDEP}]
-   media-libs/glew:0
-   media-libs/libpng:0
-   media-libs/libsdl2[video]
-   media-libs/freetype:2
-   sys-libs/zlib
-   virtual/ffmpeg"
-DEPEND="${RDEPEND}
-   dev-python/cython[${PYTHON_USEDEP}]
-   virtual/pkgconfig"
-
-S=${WORKDIR}/${P}-source
-
-PATCHES=(
-   "${FILESDIR}"/${P}-multiple-abi.patch
-   "${FILESDIR}"/${P}-compat-window.patch #601200
-   "${FILESDIR}"/${P}-compat-style.patch
-)
-
-python_prepare_all() {
-   export CFLAGS="${CFLAGS} $($(tc-getPKG_CONFIG) --cflags fribidi)"
-   distutils-r1_python_prepare_all
-
-   einfo "Deleting precompiled python files"
-   find . -name '*.py[co]' -print -delete || die
-
-   sed -i \
-   -e "s/@SLOT@/${MYSLOT}/" \
-   renpy.py renpy/common.py || die "setting slot failed!"
-}
-
-python_compile() {
-   cd "${S}"/module || die
-   distutils-r1_python_compile
-}
-
-python_install() {
-   cd "${S}"/module || die
-   distutils-r1_python_install 
--install-lib="$(python_get_sitedir)/renpy${MYSLOT}"
-
-   cd "${S}" || die
-   python_newscript renpy.py ${PN}-${SLOT}
-
-   python_moduleinto renpy${MYSLOT}
-   python_domodule renpy
-   if use development ; then
-   python_domodule launcher templates
-   fi
-   if use examples ; then
-   python_domodule the_question tutorial
-   fi
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-   if use development; then
-   newicon -s 32 launcher/game/images/logo32.png ${P}.png
-   make_desktop_entry ${PN}-${SLOT} "Ren'Py ${PV}" ${P}
-   fi
-
-   if use doc; then
-   insinto "/usr/share/doc/${PF}/html"
-   doins -r doc/*
-   fi
-   newman "${FILESDIR}/${PN}.1" "${P}.1"
-}
-
-pkg_preinst() {
-   use development && gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   use development && gnome2_icon_cache_update
-
-   einfo "running: eselect renpy update --if-unset"
-   eselect renpy update --if-unset
-}
-
-pkg_postrm() {
-   use development && gnome2_icon_cache_update
-
-   einfo "running: eselect renpy update --if-unset"
-   eselect renpy update --if-unset
-}



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

2017-07-16 Thread Nicolas Bock
commit: 7c5ad8e38f84d6c11effb6e3409eb1cd4588c6b3
Author: Nicolas Bock  gentoo  org>
AuthorDate: Mon Jul 17 05:27:12 2017 +
Commit: Nicolas Bock  gentoo  org>
CommitDate: Mon Jul 17 05:27:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c5ad8e3

package.mask: Mask shotwell development version

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e014650de00..72e833a006b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -1080,3 +1080,7 @@ games-fps/unreal-tournament-goty
 games-fps/unreal-tournament-strikeforce
 games-fps/unreal-tournament-bonuspacks
 games-fps/aaut
+
+# Nicolas Bock  (17 Jul 2017)
+# Keep shotwell development series masked.
+>=media-gfx/shotwell-0.27



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

2017-07-16 Thread Christoph Junghans
commit: ee47ca662f9f8b933c076629869d95b2b490f931
Author: Christoph Junghans  gentoo  org>
AuthorDate: Mon Jul 17 01:26:02 2017 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Mon Jul 17 01:26:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee47ca66

sci-libs/kim-api: initial commit

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sci-libs/kim-api/Manifest |  1 +
 sci-libs/kim-api/kim-api-1.8.2.ebuild | 32 
 sci-libs/kim-api/metadata.xml | 12 
 3 files changed, 45 insertions(+)

diff --git a/sci-libs/kim-api/Manifest b/sci-libs/kim-api/Manifest
new file mode 100644
index 000..d530340b6c4
--- /dev/null
+++ b/sci-libs/kim-api/Manifest
@@ -0,0 +1 @@
+DIST kim-api-v1.8.2.tgz 1634997 SHA256 
26bf3bf6960290797c0be7a3435b6350e572f7e07ad87e743e5a9c04e074386d SHA512 
fed930d147bfbb7936548eb129fcc403df90d1a8010f0fd5b85eaa35c1529d76c9c7c10b098b8eb74d9878e6d3ba0fad3c10d2a3e5bc9b673841a2abc290bac3
 WHIRLPOOL 
cafdff25be9e7186184dbd45f57033542e38e88c9bc62d2a10557924d5bd8763ed92bc63a507f6ed0185174e1747c60ec567dd09899bad315d74fa6b7400c5f2

diff --git a/sci-libs/kim-api/kim-api-1.8.2.ebuild 
b/sci-libs/kim-api/kim-api-1.8.2.ebuild
new file mode 100644
index 000..b15535489e2
--- /dev/null
+++ b/sci-libs/kim-api/kim-api-1.8.2.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+MY_P="${PN}-v${PV}"
+DESCRIPTION="Application Programming Interface for atomistic simulations"
+HOMEPAGE="https://openkim.org;
+SRC_URI="https://s3.openkim.org/${PN}/${MY_P}.tgz;
+
+LICENSE="CDDL"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+MAKEOPTS+=" -j1"
+
+src_prepare() {
+   #https://github.com/openkim/kim-api/pull/2
+   sed -i 's/libDir/libdir/' configure
+   default
+}
+
+src_configure() {
+   #not an Autotools configure
+   ./configure --prefix=/usr --libdir=/usr/$(get_libdir) || die
+}

diff --git a/sci-libs/kim-api/metadata.xml b/sci-libs/kim-api/metadata.xml
new file mode 100644
index 000..903883b48f1
--- /dev/null
+++ b/sci-libs/kim-api/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   jungh...@gentoo.org
+   Christoph Junghans
+   
+   
+   s...@gentoo.org
+   Gentoo Science Project
+   
+



[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/

2017-07-16 Thread Aaron Bauman
commit: 19c0a4ec55e0c9802b1b4fdf2bf7c1613ebfcd33
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Jul 17 00:00:30 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jul 17 00:00:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19c0a4ec

net-nds/openldap: drop vulnerable wrt sec bug #560424

 net-nds/openldap/Manifest  |   1 -
 net-nds/openldap/openldap-2.3.43-r3.ebuild | 541 
 net-nds/openldap/openldap-2.3.43-r4.ebuild | 547 -
 3 files changed, 1089 deletions(-)

diff --git a/net-nds/openldap/Manifest b/net-nds/openldap/Manifest
index fa72c337aa0..09991fe1096 100644
--- a/net-nds/openldap/Manifest
+++ b/net-nds/openldap/Manifest
@@ -1,4 +1,3 @@
-DIST openldap-2.3.43.tgz 3803011 SHA256 
d7d2dea05362c8ac7e11bb7bf1da4cdeb07225ba8dc16974bff9f51a9f3d37e1 SHA512 
2b0ebb35adbeed34673e1a55cc7a89b348ddee7ad6ce7f915ca3745198cee992aba7281bf0d56197dcfd59665935d5d3764db0ba487975e4dbc2a2507d6ea7a6
 WHIRLPOOL 
7457112bbad83d75f7ad01230da97511a8d983a98f7e31357dbffd79a7ed7e53057af781002cae8c610d3ad7834dfeefbd7f223798d45aea8cd00b70f5ee0e39
 DIST openldap-2.4.44.tgz 5658830 SHA256 
d7de6bf3c67009c95525dde3a0212cc110d0a70b92af2af8e3ee800e81b88400 SHA512 
132eb81798f59a364c9246d08697e1c7ebb6c2c3b983f786b14ec0233df09696cbad33a1f35f3076348b5efb77665a076ab854a24122c31e8b58310b7c7fd136
 WHIRLPOOL 
37399793d681a6489c369d663772970c62a4e1e370d4dc306bcb6fa3b9cb680139c9d940d9218aaac4618f50a63bc391b10f2aec0a134f84094ce4f7378c88ff
 DIST openldap-2.4.45.tgz 5672845 SHA256 
cdd6cffdebcd95161a73305ec13fc7a78e9707b46ca9f84fb897cd5626df3824 SHA512 
1c9fc84efed8998f107ce6e1c6be3f5466388241afdca0cb3847720c9def0bc263a2dbc15bf0f9112d1b4c391fd01e8531a4fb08c5532c30fb86924c08daedab
 WHIRLPOOL 
b5855bfe2b2c3856a98fb8b07ab94e51ef995ff80d4f39f0e7edae64f9774f0af9987db3673e25f98df8a5856a3f8839f28f1aa9184c92862a4df22540b3ab49
 DIST rfc2307bis.schema-20140524 12262 SHA256 
6cd8154ad86be1d6bb88a79c303dc10a49bce4ce7d21bb417a951d6496df30b1 SHA512 
83b89a1deeefc8566b97e7e865b9b6d04541099cbdf719e24538a7d27d61b6209e87ab9003a9f140bd9afd018ec569e71721e3a24090e1902c8b6659d2ba103e
 WHIRLPOOL 
40cef24529fb4bfc1661d03088eccdb17d9056d696b2bf0e698fa248d03f508ba776784bf8abbaffb5f4c2c59b59b29525b4be2babc978fed681e5e3c88073de

diff --git a/net-nds/openldap/openldap-2.3.43-r3.ebuild 
b/net-nds/openldap/openldap-2.3.43-r3.ebuild
deleted file mode 100644
index 321b6b720fc..000
--- a/net-nds/openldap/openldap-2.3.43-r3.ebuild
+++ /dev/null
@@ -1,541 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-AT_M4DIR="./build"
-inherit autotools db-use eutils flag-o-matic multilib ssl-cert toolchain-funcs 
versionator user
-
-DESCRIPTION="LDAP suite of application and development tools"
-HOMEPAGE="http://www.OpenLDAP.org/;
-SRC_URI="mirror://openldap/openldap-release/${P}.tgz"
-
-LICENSE="OPENLDAP GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 s390 sh sparc ~sparc-fbsd 
x86 ~x86-fbsd"
-IUSE="berkdb crypt debug gdbm ipv6 kerberos minimal odbc overlays perl samba 
sasl slp smbkrb5passwd ssl tcpd selinux"
-
-# note that the 'samba' USE flag pulling in OpenSSL is NOT an error.  OpenLDAP
-# uses OpenSSL for LanMan/NTLM hashing (which is used in some enviroments, like
-# mine at work)!
-# Robin H. Johnson  March 8, 2004
-
-RDEPEND="sys-libs/ncurses
-   tcpd? ( sys-apps/tcp-wrappers )
-   ssl? ( dev-libs/openssl )
-   sasl? ( dev-libs/cyrus-sasl )
-   !minimal? (
-   odbc? ( dev-db/unixODBC )
-   slp? ( net-libs/openslp )
-   perl? ( || ( >=dev-lang/perl-5.16 =sys-libs/db-4.2.52_p2-r1:4.2
-   )
-   )
-   !berkdb? (
-   gdbm? ( sys-libs/gdbm )
-   !gdbm? (
-   || (sys-libs/db:4.5
-   sys-libs/db:4.4
-   sys-libs/db:4.3
-   >=sys-libs/db-4.2.52_p2-r1:4.2
-   )
-   )
-   )
-   smbkrb5passwd? (
-   dev-libs/openssl
-   app-crypt/heimdal
-   )
-   )
-   selinux? ( sec-policy/selinux-ldap )"
-DEPEND="${RDEPEND}"
-
-# for tracking versions
-OPENLDAP_VERSIONTAG=".version-tag"
-OPENLDAP_DEFAULTDIR_VERSIONTAG="/var/lib/openldap-data"
-
-openldap_upgrade_howto() {
-   eerror
-   eerror "A (possible old) installation of OpenLDAP was detected,"
-   eerror "installation will not proceed for now."
-   eerror
-   eerror "As major version upgrades can corrupt your database,"
-   eerror "you need to dump your database and re-create it afterwards."
-   eerror ""
-   d="$(date -u +%s)"
-   l="/root/ldapdump.${d}"
-   

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

2017-07-16 Thread Aaron Bauman
commit: 923af55338a1508088e3eac857dff8b2f50b5023
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Jul 17 00:01:52 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Jul 17 00:01:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=923af553

profiles/package.mask: remove net-nds/openldap mask

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 8a648aa3e10..e014650de00 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -1007,10 +1007,6 @@ app-eselect/eselect-lua
 =dev-lang/lua-5.2.3-r1
 =dev-lang/lua-5.3.3
 
-# Sergey Popov  (20 Mar 2014)
-# Security mask of vulnerable versions, wrt bug #424167
- (04 Mar 2014)
 # Dev channel releases are only for people who are developers or want more
 # experimental features and accept a more unstable release.



[gentoo-commits] repo/gentoo:master commit in: sci-physics/bullet/

2017-07-16 Thread Patrice Clement
commit: dad3c1e75dbc8a8ecddc039a416c6f90f7a8d468
Author: Roland Hautz  kabelmail  de>
AuthorDate: Thu Jul  6 01:47:59 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jul 16 22:13:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dad3c1e7

sci-physics/bullet: version bump to 2.86.

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

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

 sci-physics/bullet/Manifest   |  1 +
 sci-physics/bullet/bullet-2.86.ebuild | 72 +++
 2 files changed, 73 insertions(+)

diff --git a/sci-physics/bullet/Manifest b/sci-physics/bullet/Manifest
index f840c00a612..75aa5ecda22 100644
--- a/sci-physics/bullet/Manifest
+++ b/sci-physics/bullet/Manifest
@@ -1,3 +1,4 @@
 DIST bullet-2.83.4.tar.gz 17529283 SHA256 
2cf287cead9a116c56f6d6f15f73dc8b3ed1fe407ef2ca894027d585fab07341 SHA512 
1a10a11671bd152835a45d44a1b3214e29c255338405705f2aaa41adfbdb545ec02f09b94003b836fafcc2b59b836e5b749696a5bb3489ec7050af0d02d9b2e1
 WHIRLPOOL 
7a47229112fdd1c96e232b91d734ff10c2b6cf6ff0563bd3e6fa4c113112fe3f169dc0e42fee56aacf66b6717a10901f0c61c618a6c691bf1eb3cbcefbf2
 DIST bullet-2.83.5.tar.gz 17759627 SHA256 
df6d58898d3d3bf117854dd64467dbd09625e048624c797649b46bf1c595b152 SHA512 
9e1ca7b3afb700bfafc2d39d8ec8b004b5bae7788385e763c15a63a7754c50bfd79e1a6ab501569b613eb5a9c132688c747aa70db0b80099cfe40b6146c32290
 WHIRLPOOL 
6c304902dd6bc9e800befe5c214adcec48e068e6db288ddf211ce17af74abd8ebc44a34ee1349a17bd22e1f9c316782d7680bb55566b4100b2f788377921be29
 DIST bullet-2.85.tar.gz 24020355 SHA256 
0dc3c9488c2b4176f916640ca57860d6689890d0f58c6fceed0f10ddc1fa082f SHA512 
f13abb85864202161d1c19596e290735848a7de53ffe09aa8f656d80a523f6382c0f7864a104ee8c437cf88e0f593c4682ecbb87d74adfe1cc868c1a36d3ecea
 WHIRLPOOL 
1c4c576df02633f53d255dad0f690e2e30e26604b95a87c79032ce8059b5705f7685af5cc832151c83d410624d41cc21ab35c38593c662ea0bd78ddb1247946c
+DIST bullet-2.86.tar.gz 25806558 SHA256 
e6e8b755280ce2c1a8218529eae5dd78e184f7036854229cea611374ad5a671f SHA512 
af8a6b282ab606437d7975a59cd8a9c2bf273c83b0e79f0c4c1de6fa51695ba6d5f3c853dce2fdba9cb55e7572214e15089e54db51afc465ca26f502cbd5a4f9
 WHIRLPOOL 
210b772b1952ef5a8a3d1e95fb18ccd29e0b63b7b3aa5dc44e8130339a28f9d1e12e22cfbcceb3a3782f27ebff22775ea9e9f27093973178f7c2b560267becc2

diff --git a/sci-physics/bullet/bullet-2.86.ebuild 
b/sci-physics/bullet/bullet-2.86.ebuild
new file mode 100644
index 000..f3282b8ac89
--- /dev/null
+++ b/sci-physics/bullet/bullet-2.86.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="Continuous Collision Detection and Physics Library"
+HOMEPAGE="http://www.bulletphysics.com/;
+SRC_URI="https://github.com/bulletphysics/bullet3/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="ZLIB"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="+bullet3 doc double-precision examples extras test"
+
+RDEPEND="
+   virtual/opengl
+   media-libs/freeglut"
+
+DEPEND="
+   ${RDEPEND}
+   doc? ( app-doc/doxygen[dot] )"
+
+PATCHES=( "${FILESDIR}"/${PN}-2.85-soversion.patch )
+
+DOCS=( AUTHORS.txt LICENSE.txt README.md )
+
+# Building / linking of third Party library BussIK does not work out of the box
+RESTRICT="test"
+
+S="${WORKDIR}/${PN}3-${PV}"
+
+src_prepare() {
+   cmake-utils_src_prepare
+
+   # allow to generate docs
+   sed -i -e 's/GENERATE_HTMLHELP.*//g' Doxyfile || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=ON
+   -DBUILD_CPU_DEMOS=OFF
+   -DBUILD_OPENGL3_DEMOS=OFF
+   -DBUILD_BULLET2_DEMOS=OFF
+   -DUSE_GRAPHICAL_BENCHMARK=OFF
+   -DINSTALL_LIBS=ON
+   -DINSTALL_EXTRA_LIBS=ON
+   -DBUILD_BULLET3=$(usex bullet3)
+   -DBUILD_EXTRAS=$(usex extras)
+   -DUSE_DOUBLE_PRECISION=$(usex double-precision)
+   -DBUILD_UNIT_TESTS=$(usex test)
+   )
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   if use doc; then
+   doxygen || die
+   HTML_DOCS+=( html/. )
+   DOCS+=( docs/*.pdf )
+   fi
+}
+
+src_install() {
+   cmake-utils_src_install
+   use examples && DOCS+=( examples )
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: app-emulation/vagrant/, app-emulation/vagrant/files/

2017-07-16 Thread Patrice Clement
commit: 356593d8f2e0951c3dd4571e2af59f9fcfe460d7
Author: Tomas Mozes  gmail  com>
AuthorDate: Thu Jul  6 05:54:18 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jul 16 21:52:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=356593d8

app-emulation/vagrant: version bump to 1.9.6, drop old.

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

 app-emulation/vagrant/Manifest |  2 +-
 .../files/vagrant-1.9.3-thread-deadlock.patch  | 98 --
 .../vagrant/files/{vagrant-1.9.3 => vagrant-1.9.6} |  2 +-
 .../{vagrant-1.9.3.ebuild => vagrant-1.9.6.ebuild} | 14 ++--
 4 files changed, 7 insertions(+), 109 deletions(-)

diff --git a/app-emulation/vagrant/Manifest b/app-emulation/vagrant/Manifest
index 91e43dc13dd..c93dba623e6 100644
--- a/app-emulation/vagrant/Manifest
+++ b/app-emulation/vagrant/Manifest
@@ -1,2 +1,2 @@
-DIST vagrant-1.9.3.tar.gz 1819192 SHA256 
4b141f60e7e59e654b9a77eb137f208613349db331cdbfcd9a8354b8ebba5c00 SHA512 
9adfeddd75821fda0ccdbd327861844752fb2d626ff5643527bd5af12ac2399b5565c6cbe5ca4d98f79dbeffd4408b29f57eb3cb967d9e47dafe247c31ffe3a8
 WHIRLPOOL 
b34ca7e027ba2f209c41368c8191a1576b1cdd96a76e8e9f7cd91f0b1a2b0f23fa2e8c32b76a55a143c2fe4e15a7ae23faacd52bf14819d67f7ceeca3768f72d
 DIST vagrant-1.9.5.tar.gz 1100561 SHA256 
69eb8ede3148b6f94389be5fd2d6cb2b6c79ba78cbcacdc354d2c73f12eccc2a SHA512 
8d2ace3cbac5b08d3d046a254ef617fead3677e9243da47c4b5131cef783244f403e4771e05075d1f5e9308edcfd52e9a7d792f89f4f39aefc9a949c79c64697
 WHIRLPOOL 
b5e3a8f433c5637c85834900adfc43aaec2c740424e7250da02cf3a5de6f0d553113aa3f386eb74ef5402e0205238f6024b33a55db495d8f21eef19db84b2208
+DIST vagrant-1.9.6.tar.gz 1115853 SHA256 
08cde24b5def90e7674d333149ca9d9aec585bdb54ca41598e16ea91a56675bb SHA512 
d8ed38a1fcffe31d974e94cf48b8dc4902a8005747dfe7311faa21ab53d838c88974c4c200dcbc0fb27fd50f2e3278e1fd21856e4afa37eaf4ef8602e0f5ca5d
 WHIRLPOOL 
cb8f1334f9db55be65fb5fd6dc670535681ed0b5457f15f86599fc2ca37fa791304665b913e5085d78012af7b7bd56c6281b78b70e4f054abb5d460cc14a1174

diff --git a/app-emulation/vagrant/files/vagrant-1.9.3-thread-deadlock.patch 
b/app-emulation/vagrant/files/vagrant-1.9.3-thread-deadlock.patch
deleted file mode 100644
index 75cb63a2fb1..000
--- a/app-emulation/vagrant/files/vagrant-1.9.3-thread-deadlock.patch
+++ /dev/null
@@ -1,98 +0,0 @@
-From bfc2af4cf9c5e9280f0e7d74de226b7af7c18a2a Mon Sep 17 00:00:00 2001
-From: Chris Roberts 
-Date: Mon, 27 Mar 2017 12:55:15 -0700
-Subject: [PATCH] Always provide timeout on thread join to prevent deadlock
- errors
-

- lib/vagrant/batch_action.rb   | 6 --
- lib/vagrant/environment.rb| 2 +-
- lib/vagrant/shared_helpers.rb | 6 ++
- lib/vagrant/ui.rb | 6 +++---
- 4 files changed, 14 insertions(+), 6 deletions(-)
-
-diff --git a/lib/vagrant/batch_action.rb b/lib/vagrant/batch_action.rb
-index 9b6900f..d27e87d 100644
 a/lib/vagrant/batch_action.rb
-+++ b/lib/vagrant/batch_action.rb
-@@ -123,7 +123,9 @@ def run
- # Set some attributes on the thread for later
- thread[:machine] = machine
- 
--thread.join if !par
-+if !par
-+  thread.join(THREAD_MAX_JOIN_TIMEOUT) while thread.alive?
-+end
- threads << thread
-   end
- 
-@@ -131,7 +133,7 @@ def run
- 
-   threads.each do |thread|
- # Wait for the thread to complete
--thread.join
-+thread.join(THREAD_MAX_JOIN_TIMEOUT) while thread.alive?
- 
- # If the thread had an error, then store the error to show later
- if thread[:error]
-diff --git a/lib/vagrant/environment.rb b/lib/vagrant/environment.rb
-index 8fad272..125070f 100644
 a/lib/vagrant/environment.rb
-+++ b/lib/vagrant/environment.rb
-@@ -295,7 +295,7 @@ def batch(parallel=true)
- #
- # @return [Hash]
- def checkpoint
--  @checkpoint_thr.join
-+  @checkpoint_thr.join(THREAD_MAX_JOIN_TIMEOUT)
-   return @checkpoint_thr[:result]
- end
- 
-diff --git a/lib/vagrant/shared_helpers.rb b/lib/vagrant/shared_helpers.rb
-index c5d6ea6..5522272 100644
 a/lib/vagrant/shared_helpers.rb
-+++ b/lib/vagrant/shared_helpers.rb
-@@ -12,6 +12,12 @@ module Vagrant
-   # @return [String]
-   DEFAULT_SERVER_URL = "https://atlas.hashicorp.com;
- 
-+  # Max number of seconds to wait for joining an active thread.
-+  #
-+  # @return [Integer]
-+  # @note This is not the maxium time for a thread to complete.
-+  THREAD_MAX_JOIN_TIMEOUT = 60
-+
-   # This holds a global lock for the duration of the block. This should
-   # be invoked around anything that is modifying process state (such as
-   # environmental variables).
-diff --git a/lib/vagrant/ui.rb b/lib/vagrant/ui.rb
-index 8092493..2a52c90 100644
 a/lib/vagrant/ui.rb
-+++ b/lib/vagrant/ui.rb
-@@ -53,7 +53,7 @@ def initialize_copy(original)
- # We're being called in a trap-context. Wrap in a 

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

2017-07-16 Thread Mike Gilbert
commit: f781090ad3d61b32341abf1801b18cf449edfa8b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jul 16 21:10:41 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jul 16 21:17:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f781090a

sys-apps/systemd: update description of xkb USE flag

Package-Manager: Portage-2.3.6_p16, Repoman-2.3.2_p84

 sys-apps/systemd/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd/metadata.xml b/sys-apps/systemd/metadata.xml
index 922bac04c72..0ff06358a67 100644
--- a/sys-apps/systemd/metadata.xml
+++ b/sys-apps/systemd/metadata.xml
@@ -29,7 +29,7 @@
Enable qrcode output support in 
journal
Install sysvinit compatibility symlinks 
and manpages for init, telinit, halt, poweroff, reboot, runlevel, and 
shutdown
Disable Gentoo-specific behavior and 
compatibility quirks
-   Validate XKB keymap in logind
+   Depend on x11-libs/libxkbcommon to 
allow logind to control the X11 keymap


systemd/systemd



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

2017-07-16 Thread Mike Gilbert
commit: 478f8cfde9ec7a10cb3b08890545a0130cb49cd9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jul 16 21:17:37 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jul 16 21:17:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=478f8cfd

sys-apps/systemd: give 234 some keywords

Package-Manager: Portage-2.3.6_p16, Repoman-2.3.2_p84

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

diff --git a/sys-apps/systemd/systemd-234.ebuild 
b/sys-apps/systemd/systemd-234.ebuild
index 86fb33dc316..26139f10999 100644
--- a/sys-apps/systemd/systemd-234.ebuild
+++ b/sys-apps/systemd/systemd-234.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   #KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~x86"
 fi
 
 PYTHON_COMPAT=( python{3_4,3_5,3_6} )



[gentoo-commits] data/gentoo-news:master commit in: 2017-07-16-systemd-rootprefix/

2017-07-16 Thread Mike Gilbert
commit: 9b6b364173118c9578abc75686f75effb4a4a967
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jul 16 21:15:29 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jul 16 21:15:29 2017 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=9b6b3641

Add 2017-07-16-systemd-rootprefix

 .../2017-07-16-systemd-rootprefix.en.txt   | 34 ++
 .../2017-07-16-systemd-rootprefix.en.txt.asc   |  7 +
 2 files changed, 41 insertions(+)

diff --git a/2017-07-16-systemd-rootprefix/2017-07-16-systemd-rootprefix.en.txt 
b/2017-07-16-systemd-rootprefix/2017-07-16-systemd-rootprefix.en.txt
new file mode 100644
index 000..c4e1cbf
--- /dev/null
+++ b/2017-07-16-systemd-rootprefix/2017-07-16-systemd-rootprefix.en.txt
@@ -0,0 +1,34 @@
+Title: systemd rootprefix migration
+Author: Mike Gilbert 
+Posted: 2017-07-16
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Installed: >=sys-apps/systemd-234
+
+Starting with the 234 release, Gentoo's sys-apps/systemd package will
+be built with rootprefix=/. This means most of the included programs
+and system units will be installed under /lib/systemd instead of
+/usr/lib/systemd.
+
+This change brings Gentoo into alignment with most other distros which
+still maintain a distinction between boot-critical programs in /, and
+less critical programs in /usr. This also means that users with a
+separate /usr filesystem will have an easier time booting if their
+initramfs should become corrupt or fail.
+
+Symlinks are provided for /usr/lib/systemd/systemd and
+/usr/lib/systemd/systemd-shutdown to avoid breaking bootloader configs
+and to allow the system to be shutdown/rebooted without issue. These
+symlinks will likely be removed in the 235 release, so please update
+your boot configuration to reference init=/lib/systemd/systemd.
+
+This change will be mostly transparent to typical users. You may notice
+that system units move from /usr/lib/systemd/system to
+/lib/systemd/system as you upgrade/re-install packages; this is normal.
+Units will function properly from both locations.
+
+After upgrading, please run systemctl daemon-reexec or reboot your
+system to ensure that the new version is executed. Also make sure to
+regenerate your initramfs if it includes a copy of systemd (dracut).
+
+If you encounter a problem, please report a bug.

diff --git 
a/2017-07-16-systemd-rootprefix/2017-07-16-systemd-rootprefix.en.txt.asc 
b/2017-07-16-systemd-rootprefix/2017-07-16-systemd-rootprefix.en.txt.asc
new file mode 100644
index 000..3247709
--- /dev/null
+++ b/2017-07-16-systemd-rootprefix/2017-07-16-systemd-rootprefix.en.txt.asc
@@ -0,0 +1,7 @@
+-BEGIN PGP SIGNATURE-
+
+iHUEABEIAB0WIQSC6+o3VgHHi7vNKkVHG+cz7ykaPwUCWWvXNAAKCRBHG+cz7yka
+P6p8AQDa0zw9ocwbwhXtEDSmGs7zdPT2uYOV+GvSGQE3sv+lcAD/Y7pHXu72PxgF
+RrRNVJTJju3C4vobW22t62YDvNCDByI=
+=qgSY
+-END PGP SIGNATURE-



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

2017-07-16 Thread Chí-Thanh Christopher Nguyễn
commit: 5e844820149de357531f1fc54968728dcee353a8
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Jul 16 21:12:26 2017 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Jul 16 21:12:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e844820

profiles/package.mask: Remove www-plugins/gnash mask

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e6cceffcd3c..8a648aa3e10 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -423,11 +423,6 @@ app-emulation/vmware-modules
 app-emulation/vmware-tools
 
 # Pacho Ramos  (17 Jun 2017)
-# Not compatible with ffmpeg-3 (#602786), other bug reports and NPAPI
-# plugins support in main browsers is dying. Removal in a month.
-www-plugins/gnash
-
-# Pacho Ramos  (17 Jun 2017)
 # Not compatible with ffmpeg-3 (#589806) and needs vulnerable qtwebkit:4
 # (#620740). Removal in a month.
 net-voip/homer



[gentoo-commits] repo/gentoo:master commit in: games-fps/urbanterror/files/

2017-07-16 Thread Thomas Deutschmann
commit: fb783bc49c404ec6cc0405f872126b6bc2e78e31
Author: Nils Freydank  posteo  de>
AuthorDate: Sun Jul 16 20:58:37 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jul 16 21:02:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb783bc4

games-fps/urbanterror: Cleanup old unused patches

Signed-off-by: Thomas Deutschmann  gentoo.org>
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../files/urbanterror-4.2.023-build.patch  | 75 --
 .../files/urbanterror-4.2.023-nocurl.patch | 16 -
 2 files changed, 91 deletions(-)

diff --git a/games-fps/urbanterror/files/urbanterror-4.2.023-build.patch 
b/games-fps/urbanterror/files/urbanterror-4.2.023-build.patch
deleted file mode 100644
index daa7e324a67..000
--- a/games-fps/urbanterror/files/urbanterror-4.2.023-build.patch
+++ /dev/null
@@ -1,75 +0,0 @@
-Author: hasufell 
-Date:   Wed Jul 10 01:25:27 2013 +0200
-
-respect CFLAGS/LDFLAGS
-
 a/Makefile
-+++ b/Makefile
-@@ -213,7 +213,7 @@
-   endif
-   endif
- 
--  BASE_CFLAGS = -Wall -fno-strict-aliasing -Wimplicit -Wstrict-prototypes 
-pipe
-+  BASE_CFLAGS = -Wall -Wimplicit -Wstrict-prototypes
- 
-   ifeq ($(USE_OPENAL),1)
- BASE_CFLAGS += -DUSE_OPENAL=1
-@@ -239,19 +239,15 @@
- BASE_CFLAGS += -I/usr/X11R6/include
-   endif
- 
--  OPTIMIZE = -O3 -ffast-math -funroll-loops -fomit-frame-pointer
-+  OPTIMIZE =
- 
-   ifeq ($(ARCH),x86_64)
--OPTIMIZE = -O3 -fomit-frame-pointer -ffast-math -funroll-loops \
--  -falign-loops=2 -falign-jumps=2 -falign-functions=2 \
--  -fstrength-reduce
-+OPTIMIZE =
- # experimental x86_64 jit compiler! you need GNU as
- HAVE_VM_COMPILED = true
-   else
-   ifeq ($(ARCH),i386)
--OPTIMIZE = -O3 -march=i586 -fomit-frame-pointer -ffast-math \
--  -funroll-loops -falign-loops=2 -falign-jumps=2 \
--  -falign-functions=2 -fstrength-reduce
-+OPTIMIZE =
- HAVE_VM_COMPILED=true
-   else
-   ifeq ($(ARCH),ppc)
-@@ -265,7 +261,7 @@
- BASE_CFLAGS += -DNO_VM_COMPILED
-   endif
- 
--  DEBUG_CFLAGS = $(BASE_CFLAGS) -g -O0
-+  DEBUG_CFLAGS = $(BASE_CFLAGS) $(OPTIMIZE)
- 
-   RELEASE_CFLAGS=$(BASE_CFLAGS) -DNDEBUG $(OPTIMIZE)
- 
-@@ -274,7 +270,7 @@
-   SHLIBLDFLAGS=-shared $(LDFLAGS)
- 
-   THREAD_LDFLAGS=-lpthread
--  LDFLAGS=-ldl -lm
-+  LDFLAGS+=-ldl -lm
- 
-   ifeq ($(USE_SDL),1)
- CLIENT_LDFLAGS=$(shell sdl-config --libs)
-@@ -1158,13 +1154,13 @@
- 
- $(B)/Quake3-UrT.$(ARCH)$(BINEXT): $(Q3OBJ) $(Q3POBJ) $(LIBSDLMAIN)
-   $(echo_cmd) "LD $@"
--  $(Q)$(CC) -o $@ $(Q3OBJ) $(Q3POBJ) $(CLIENT_LDFLAGS) \
--  $(LDFLAGS) $(LIBSDLMAIN)
-+  $(Q)$(CC) $(CFLAGS) -o $@ $(Q3OBJ) $(Q3POBJ) \
-+  $(LDFLAGS) $(CLIENT_LDFLAGS) $(LIBSDLMAIN)
- 
- $(B)/Quake3-UrT-smp.$(ARCH)$(BINEXT): $(Q3OBJ) $(Q3POBJ_SMP) $(LIBSDLMAIN)
-   $(echo_cmd) "LD $@"
--  $(Q)$(CC) -o $@ $(Q3OBJ) $(Q3POBJ_SMP) $(CLIENT_LDFLAGS) \
--  $(THREAD_LDFLAGS) $(LDFLAGS) $(LIBSDLMAIN)
-+  $(Q)$(CC) $(CFLAGS) -o $@ $(Q3OBJ) $(Q3POBJ_SMP) \
-+  $(LDFLAGS) $(THREAD_LDFLAGS) $(CLIENT_LDFLAGS) $(LIBSDLMAIN)
- 
- ifneq ($(strip $(LIBSDLMAIN)),)
- ifneq ($(strip $(LIBSDLMAINSRC)),)

diff --git a/games-fps/urbanterror/files/urbanterror-4.2.023-nocurl.patch 
b/games-fps/urbanterror/files/urbanterror-4.2.023-nocurl.patch
deleted file mode 100644
index b7d1f310642..000
--- a/games-fps/urbanterror/files/urbanterror-4.2.023-nocurl.patch
+++ /dev/null
@@ -1,16 +0,0 @@
-fix building when USE=-curl is specified (bug #572074)
-
 ./code/client/cl_main.c.orig
-+++ ./code/client/cl_main.c
-@@ -1872,7 +1872,11 @@
- }
- 
- qboolean CL_IsDownloading(void) {
-+#if USE_CURL
-   return clc.cURLUsed;
-+#else
-+  return qfalse;
-+#endif
- }
- 
- /*



[gentoo-commits] repo/gentoo:master commit in: games-fps/urbanterror/

2017-07-16 Thread Thomas Deutschmann
commit: 323ec64aab4a3850580e569403e75c5c932f3830
Author: Nils Freydank  posteo  de>
AuthorDate: Sun Jul 16 21:00:40 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jul 16 21:02:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=323ec64a

games-fps/urbanterror: Bump to v4.3.2_p20170713

Closes: https://github.com/gentoo/gentoo/pull/5111
Signed-off-by: Thomas Deutschmann  gentoo.org>
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 games-fps/urbanterror/Manifest |   1 +
 .../urbanterror/urbanterror-4.3.2_p20170713.ebuild | 152 +
 2 files changed, 153 insertions(+)

diff --git a/games-fps/urbanterror/Manifest b/games-fps/urbanterror/Manifest
index 6264ada02b5..89c3757cd59 100644
--- a/games-fps/urbanterror/Manifest
+++ b/games-fps/urbanterror/Manifest
@@ -1 +1,2 @@
 DIST urbanterror-4.3.2_p20170426.tar.gz 10058308 SHA256 
8009516332e1f77eae3681b436e099fdd42ffa55d2691694eedc0ca94b194878 SHA512 
e8107ab44fdb40bc14a548239185905a01120bbe960b8713e5959df18330fd845761350c5e8e5efd5fbfec10ad62ff9fef68420406cc4cfbe2af69ee66eff1f3
 WHIRLPOOL 
6aac15e44b0695501195ae172133f4b6788b9dffa5442af20d11626ad27ffd597c7f070c0fb95b0e0e8b8b3d6cf0e1bfc40b0a16abaa27c8f932ee90f19a1824
+DIST urbanterror-4.3.2_p20170713.tar.gz 9984763 SHA256 
cf1784a3bd00451fe1bda3267235ea3eee93da65880f15fd13c07681952b4859 SHA512 
09fd2232c3cbdde001b8d037f2667a55a584378615f2da10c6815797748028f36b75c899ca4fd1d7d97a33f4b3ddbaa4d271b36b5eabf3bf9e81852ef15864a4
 WHIRLPOOL 
2bed79adc1dc338d74212263105c03bad51391f8c9e9e543ad54f6d6006cea4a8ebfc0e601400338b941d799dc0f642f71478dc68ad84a50718043f06f042290

diff --git a/games-fps/urbanterror/urbanterror-4.3.2_p20170713.ebuild 
b/games-fps/urbanterror/urbanterror-4.3.2_p20170713.ebuild
new file mode 100644
index 000..d608be174ef
--- /dev/null
+++ b/games-fps/urbanterror/urbanterror-4.3.2_p20170713.ebuild
@@ -0,0 +1,152 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+inherit flag-o-matic gnome2-utils
+
+DESCRIPTION="Hollywood tactical shooter based on the ioquake3 engine"
+HOMEPAGE="http://urbanterror.info;
+
+if [[ ${PV} == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/mickael9/ioq3.git;
+   EGIT_BRANCH="urt"
+else
+   COMMIT_ID="8eb3e10163c62331b77171a71ca6102d3d63c3e7"
+   SRC_URI="https://github.com/mickael9/ioq3/archive/${COMMIT_ID}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/ioq3-${COMMIT_ID}"
+   KEYWORDS="~amd64 ~x86"
+
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+altgamma +client +curl debug mumble openal +opus server voip vorbis"
+REQUIRED_USE=" || ( client server )"
+
+PATCHES=( "${FILESDIR}"/${PN}-4.3-respect_CFLAGS.patch )
+
+RDEPEND="
+   client? (
+   media-libs/libsdl2[X,sound,joystick,opengl,video]
+   mumble? ( media-sound/mumble )
+   openal? ( media-libs/openal )
+   opus? ( media-libs/opusfile )
+   vorbis? (
+   media-libs/libogg
+   media-libs/libvorbis
+   )
+   )
+   curl? ( net-misc/curl )
+   ~games-fps/urbanterror-data-4.3.2
+   sys-libs/zlib[minizip]
+   virtual/jpeg:0
+"
+
+DEPEND="${RDEPEND}"
+
+pkg_pretend() {
+   if use client; then
+   if ! use openal && ! use opus && ! use vorbis; then
+   ewarn
+   ewarn "No sound implementation selected. Enable 
'openal', 'opus' or 'vorbis' USE flag to get sound!"
+   fi
+   fi
+}
+
+src_compile() {
+   buildit() { use $1 && echo 1 || echo 0 ; }
+   nobuildit() { use $1 && echo 0 || echo 1 ; }
+
+   # Workaround for used zlib macro, wrt bug #44951
+   append-flags "-DOF=_Z_OF"
+
+   emake \
+   ARCH=$(usex amd64 "x86_64" "i386") \
+   DEFAULT_BASEDIR="/usr/share/urbanterror" \
+   BUILD_CLIENT=$(buildit client) \
+   BUILD_SERVER=$(buildit server) \
+   BUILD_BASEGAME=1 \
+   BUILD_MISSIONPACK=0 \
+   BUILD_GAME_SO=0 \
+   BUILD_GAME_QVM=0 \
+   BUILD_STANDALONE=1 \
+   SERVERBIN="Quake3-UrT-Ded" \
+   CLIENTBIN="Quake3-UrT" \
+   USE_RENDERER_DLOPEN=0 \
+   USE_YACC=0 \
+   BASEGAME="q3ut4"\
+   BASEGAME_CFLAGS="${CFLAGS}" \
+   USE_OPENAL=$(buildit openal) \
+   USE_OPENAL_DLOPEN=$(buildit openal) \
+   USE_CURL=$(buildit curl) \
+   USE_CURL_DLOPEN=$(buildit curl) \
+   USE_CODEC_VORBIS=$(buildit vorbis) \
+   USE_CODEC_OPUS=$(buildit opus) \
+   USE_MUMBLE=$(buildit mumble) \
+   USE_VOIP=$(buildit voip) \
+   USE_INTERNAL_LIBS=0 \
+   USE_LOCAL_HEADERS=0 \
+   USE_ALTGAMMA=$(buildit 

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

2017-07-16 Thread Chí-Thanh Christopher Nguyễn
commit: 99571492db60c579c48aa1eef0d7f99939a726dc
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Jul 16 21:00:24 2017 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Jul 16 21:00:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99571492

profiles/base/package.use.mask: Mask vaapi flag for www-plugins/gnash

Bug: https://bugs.gentoo.org/show_bug.cgi?id=602786

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

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 6a02be3424d..8fae51407a9 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -7,6 +7,10 @@
 # This file is only for generic masks. For arch-specific masks (i.e.
 # mask everywhere, unmask on arch/*) use arch/base.
 
+# Chí-Thanh Christopher Nguyễn  (16 Jul 2017)
+# Causes build to fail with ffmpeg-3, #602786
+www-plugins/gnash vaapi
+
 # Pacho Ramos  (14 Jul 2017)
 # system-renpy cannot be really used and it's going to be treecleaned, bug 
#587872
 games-misc/katawa-shoujo system-renpy



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

2017-07-16 Thread Andrew Savchenko
commit: 7adc02563253ac286e19a0032db47de2f00e9b2f
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 20:49:18 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 20:49:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7adc0256

games-engines/renpy: remove excessive dep limitation

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

 games-engines/renpy/renpy-6.99.12.4-r2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/games-engines/renpy/renpy-6.99.12.4-r2.ebuild 
b/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
index 131246e74e9..b3840bc93f9 100644
--- a/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
+++ b/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
@@ -22,7 +22,6 @@ RDEPEND="
dev-libs/fribidi
~dev-python/pygame_sdl2-${PV}[${PYTHON_USEDEP}]
>=dev-lang/python-exec-0.3[${PYTHON_USEDEP}]
-   !

[gentoo-commits] repo/gentoo:master commit in: www-plugins/adobe-flash/

2017-07-16 Thread Thomas Deutschmann
commit: 88da74f57a97d87fbae51288dd689b979955cb98
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Jul 16 20:28:39 2017 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Jul 16 20:28:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88da74f5

www-plugins/adobe-flash: Security bump to v26.0.0.137 (bug #624620)

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 www-plugins/adobe-flash/Manifest   |   4 +
 .../adobe-flash/adobe-flash-26.0.0.137.ebuild  | 133 +
 2 files changed, 137 insertions(+)

diff --git a/www-plugins/adobe-flash/Manifest b/www-plugins/adobe-flash/Manifest
index 994ad696873..fd1a9a1bef8 100644
--- a/www-plugins/adobe-flash/Manifest
+++ b/www-plugins/adobe-flash/Manifest
@@ -2,3 +2,7 @@ DIST adobe-flash-26.0.0.131-npapi.i386.tar.gz 8490534 SHA256 
ae301d3885c96a07d34
 DIST adobe-flash-26.0.0.131-npapi.x86_64.tar.gz 9003017 SHA256 
1ca9a708413a418f94c912ac240b33d9229191df7f7e6c415ba5a630ca24ff29 SHA512 
2f984b75374bba1335e3a3e386d87d1ef4b8c550acd7565d23a73aed0c33d13816c10b32d146e0d4e75481fb2d9b810a1926a66f5e9691da96ea43283711a16b
 WHIRLPOOL 
ec0c57c5b8a5f64e55931aa929d7cd36d2c22c3ebe39dfc746e223cf5c7b7c92ecf0f0757d7f36f4f24585d974796992018f615b6967427e2f27b9e0263d6dea
 DIST adobe-flash-26.0.0.131-ppapi.i386.tar.gz 8536468 SHA256 
25497127c725442ab327c6f5bd63b8c44696c9e1427ce7f249f89de86416142f SHA512 
99f57751877572615587a7928f61f3c24cff094067e49114126ef01c166f7f063206a29840c85c5c9dc973dc08d0e1aa89d0e0e87b6baa9b269994e22d389627
 WHIRLPOOL 
8d81024d8393de359613d957ed00afadba92cd96f2bef115f5e7508df7dd10eab8e074a9d8bc750d761c235e9ae1870140eec741a6449f1685b8374462fe8bef
 DIST adobe-flash-26.0.0.131-ppapi.x86_64.tar.gz 9449172 SHA256 
de696e2bc2cc3025d0158b8d3d74908eb5740ba4cd33d3f2841f0146933b076c SHA512 
97739726cd93306eccefb5fc896cee9efd4f6c3cdd8196937b5b90af0cc714dcc0e43e04c0fa2d581b5215ebf3b9f50b2ea880a035a27d39dc492e03d3c1bb10
 WHIRLPOOL 
a106837968be072d206890f2b80389a3798490008b5323dba27a2ffaffd807fdff77aaf95888518ef25f3b79726f64cbff770abf59f6327e773dffbd113ed918
+DIST adobe-flash-26.0.0.137-npapi.i386.tar.gz 8490349 SHA256 
bc703c55973fe79c32a9968450d46162d1db04663b099529c8fe0ec342baa6ba SHA512 
b53a6d4ef3ff1c1d2b0b17c1c445f1af01407b181961a50ec29b1b8195fca7828ee6bba5a2020c8514e3d884fdb223bd7ac9d6fbf03fc56d41cda2c7edef65ac
 WHIRLPOOL 
296b66d4149dd09cbe9a81bce6312ac3c71ff1e9b687a659ddb2a5f80bbdca133e56215f91ca55418e653a05ab58b1c2d6efeb71fc7cbcf42dcd5a75610a6dd0
+DIST adobe-flash-26.0.0.137-npapi.x86_64.tar.gz 9002947 SHA256 
9af20d48fe0f05cead8f6de6c3464e5dfbb1e3d296be69044ee71eaa306b6635 SHA512 
c3db9bbf1e4d448f44ac484ee8492d9a041cc9b3a9f883084ec40f95eafe1a9815622316e28d85a2d37d05dcd067fea899014e7f62e8e1fc76f7d24f456d193f
 WHIRLPOOL 
2c86c9c6c737cfa087d3a23823d3a340286ba2343717e0a525261fa7afe748cfa792cc353b4e846144e4d414dbedec88d34cd65565829721e23568b9fc60117a
+DIST adobe-flash-26.0.0.137-ppapi.i386.tar.gz 8536466 SHA256 
68a4b486e6e127df5bb006667086a0168d9bfa8c2583b9e4136e157cd7e12967 SHA512 
3de31779aac262395951b2a2c2a837705f78a3db4b0345e1fb9ad897f62ea352898400ecef02080e58dd423dfe3009eb22aa40e9dd976f0244015f5b3322bed5
 WHIRLPOOL 
5ed3e31a10dea3a336ca576221b3b9f20e150e818cf759019ff5ad61d0e1ec4c8e7548ac9f381052d1ba304187d41204a10a9c1e9fe26d40c9ef1f64a5aa597d
+DIST adobe-flash-26.0.0.137-ppapi.x86_64.tar.gz 9449400 SHA256 
4fc8ce66561a39fdcffbcd72f6129ebc3fd1f9ab05324d898f6676bdf2c6cde8 SHA512 
637573c0f021c1968aa8aa5cc9c527c191581076bf03b395768144936f3f74228534c1ba5692eeb72f3076cd958bf2e7899e82d67281703745d4b460e5b35c99
 WHIRLPOOL 
3640cd3997f8f57b2604f5a2042a277746629d971c28a9ac05ed4f247424bc7de346be014c53332d4f29fe7e6ac2031c81d4475dac62edfb1701568ea182019f

diff --git a/www-plugins/adobe-flash/adobe-flash-26.0.0.137.ebuild 
b/www-plugins/adobe-flash/adobe-flash-26.0.0.137.ebuild
new file mode 100644
index 000..d8189defa27
--- /dev/null
+++ b/www-plugins/adobe-flash/adobe-flash-26.0.0.137.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit nsplugins multilib multilib-minimal
+
+DESCRIPTION="Adobe Flash Player"
+HOMEPAGE="
+   http://www.adobe.com/products/flashplayer.html
+   http://get.adobe.com/flashplayer/
+   https://helpx.adobe.com/security/products/flash-player.html
+"
+
+AF_URI="https://fpdownload.adobe.com/pub/flashplayer/pdc/${PV};
+AF_NP_32_URI="${AF_URI}/flash_player_npapi_linux.i386.tar.gz -> 
${P}-npapi.i386.tar.gz"
+AF_NP_64_URI="${AF_URI}/flash_player_npapi_linux.x86_64.tar.gz -> 
${P}-npapi.x86_64.tar.gz"
+AF_PP_32_URI="${AF_URI}/flash_player_ppapi_linux.i386.tar.gz -> 
${P}-ppapi.i386.tar.gz"
+AF_PP_64_URI="${AF_URI}/flash_player_ppapi_linux.x86_64.tar.gz -> 
${P}-ppapi.x86_64.tar.gz"
+
+IUSE="+nsplugin +ppapi"
+REQUIRED_USE="
+   || ( nsplugin ppapi )
+"
+
+SRC_URI="
+   nsplugin? (
+   abi_x86_32? ( ${AF_NP_32_URI} )
+   

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

2017-07-16 Thread Chí-Thanh Christopher Nguyễn
commit: db3abc5d7dc3e0bc71a574116cad731ccb4738ad
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Jul 16 20:25:07 2017 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Jul 16 20:25:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db3abc5d

profiles/package.mask: Remove www-plugins/lightspark mask

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ee760cb5e10..e6cceffcd3c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -428,11 +428,6 @@ app-emulation/vmware-tools
 www-plugins/gnash
 
 # Pacho Ramos  (17 Jun 2017)
-# Not compatible with ffmpeg-3 (#591946), neither builds without ffmpeg
-# support (#607492) and NPAPI plugins are dying. Removal in a month.
-www-plugins/lightspark
-
-# Pacho Ramos  (17 Jun 2017)
 # Not compatible with ffmpeg-3 (#589806) and needs vulnerable qtwebkit:4
 # (#620740). Removal in a month.
 net-voip/homer



[gentoo-commits] repo/gentoo:master commit in: www-plugins/lightspark/

2017-07-16 Thread Chí-Thanh Christopher Nguyễn
commit: e6d3e35ca037fdbb85928b09a922bcabbd02863d
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Jul 16 20:19:10 2017 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Jul 16 20:19:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6d3e35c

www-plugins/lightspark: version bump to 0.8.0

Bug: https://bugs.gentoo.org/show_bug.cgi?id=625228

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 www-plugins/lightspark/Manifest|  1 +
 .../{lightspark-.ebuild => lightspark-0.8.0.ebuild}| 10 --
 www-plugins/lightspark/lightspark-.ebuild  |  3 +--
 3 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/www-plugins/lightspark/Manifest b/www-plugins/lightspark/Manifest
index 1a091029364..7fa387c7c0f 100644
--- a/www-plugins/lightspark/Manifest
+++ b/www-plugins/lightspark/Manifest
@@ -1 +1,2 @@
 DIST lightspark-0.7.2_p20160107.tar.gz 1803064 SHA256 
83b58db86e466e9a3acc33c7c1bbff284edb3f7fef377a3397ac26ac06cac22f SHA512 
937352c8d428579a9ac89a45724db2beb624eba874da59d684e07d9d306305d85937f4b2e692c56750a1b5e6ca485e05d9997409d3bc934fab209124cd471601
 WHIRLPOOL 
268f2a95758def3fb722daa6580e6c4ff5577eacdc27e82005ce7e0b51d55ae78fbc6ae5c1d839b4b21848a0d2a61b0b023f4741487fc042450a7a20bfee01bb
+DIST lightspark-0.8.0.tar.gz 1830071 SHA256 
b0612a93bb16c0ab9ea5d516ee312607e14703d26ca917d037bb33e235ed4b25 SHA512 
333de501caf5f5ed9c8581cfda5bf1e6e04170c90f1c2f6150c9c2343f9de20e140a041d066f693e406d24fa24e7a5c3464675a583f4a5c104f5214ebee072b9
 WHIRLPOOL 
4ba1e18a9196823603146ce178914c5778a6eac045b994afbbe388cb945612bb5bab8072a77bfe0b647aeff614f3f4d8b34161c118fe9102745f2ba26c102e00

diff --git a/www-plugins/lightspark/lightspark-.ebuild 
b/www-plugins/lightspark/lightspark-0.8.0.ebuild
similarity index 93%
copy from www-plugins/lightspark/lightspark-.ebuild
copy to www-plugins/lightspark/lightspark-0.8.0.ebuild
index d0de6eda589..d67d565b6b3 100644
--- a/www-plugins/lightspark/lightspark-.ebuild
+++ b/www-plugins/lightspark/lightspark-0.8.0.ebuild
@@ -2,16 +2,15 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-inherit cmake-utils git-r3 nsplugins toolchain-funcs
+inherit cmake-utils nsplugins vcs-snapshot toolchain-funcs
 
 DESCRIPTION="High performance flash player"
 HOMEPAGE="http://lightspark.github.io/;
-SRC_URI=""
-EGIT_REPO_URI="https://github.com/lightspark/lightspark;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE="cpu_flags_x86_sse2 curl ffmpeg gles libav nsplugin ppapi profile rtmp"
 
 # Note: code-wise llvm-4.0 is fine but due to CMake bug it can't work:
@@ -27,7 +26,6 @@ RDEPEND="app-arch/xz-utils:0=
media-libs/libsdl2:0=
media-libs/sdl2-mixer:0=
>=sys-devel/gcc-4.6.0:*[cxx]
-   =sys-devel/llvm-3.4:0=
sys-libs/zlib:0=
x11-libs/cairo:0=
@@ -73,7 +71,7 @@ src_configure() {
-DENABLE_PROFILING=$(usex profile)
-DENABLE_SSE2=$(usex cpu_flags_x86_sse2)
 
-   -DCOMPILE_PLUGIN=$(usex nsplugin)
+   -DCOMPILE_NPAPI_PLUGIN=$(usex nsplugin)
-DPLUGIN_DIRECTORY="${EPREFIX}"/usr/$(get_libdir)/${PN}/plugins
# TODO: install /etc/chromium file? block adobe-flash?
-DCOMPILE_PPAPI_PLUGIN=$(usex ppapi)

diff --git a/www-plugins/lightspark/lightspark-.ebuild 
b/www-plugins/lightspark/lightspark-.ebuild
index d0de6eda589..435e878ed31 100644
--- a/www-plugins/lightspark/lightspark-.ebuild
+++ b/www-plugins/lightspark/lightspark-.ebuild
@@ -27,7 +27,6 @@ RDEPEND="app-arch/xz-utils:0=
media-libs/libsdl2:0=
media-libs/sdl2-mixer:0=
>=sys-devel/gcc-4.6.0:*[cxx]
-   =sys-devel/llvm-3.4:0=
sys-libs/zlib:0=
x11-libs/cairo:0=
@@ -73,7 +72,7 @@ src_configure() {
-DENABLE_PROFILING=$(usex profile)
-DENABLE_SSE2=$(usex cpu_flags_x86_sse2)
 
-   -DCOMPILE_PLUGIN=$(usex nsplugin)
+   -DCOMPILE_NPAPI_PLUGIN=$(usex nsplugin)
-DPLUGIN_DIRECTORY="${EPREFIX}"/usr/$(get_libdir)/${PN}/plugins
# TODO: install /etc/chromium file? block adobe-flash?
-DCOMPILE_PPAPI_PLUGIN=$(usex ppapi)



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

2017-07-16 Thread Andreas Sturmlechner
commit: 9ac9b2a269ebec226742b15fd39a2d9c2616dcb8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jul 16 19:49:18 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jul 16 19:50:41 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9ac9b2a2

kde-misc/kooka: New package

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 kde-misc/kooka/kooka-.ebuild | 32 
 kde-misc/kooka/metadata.xml  |  8 
 2 files changed, 40 insertions(+)

diff --git a/kde-misc/kooka/kooka-.ebuild b/kde-misc/kooka/kooka-.ebuild
new file mode 100644
index 00..9561c71c09
--- /dev/null
+++ b/kde-misc/kooka/kooka-.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="true"
+inherit kde5
+
+DESCRIPTION="Scanning application by KDE"
+HOMEPAGE="https://userbase.kde.org/Kooka 
https://techbase.kde.org/Projects/Kooka;
+KEYWORDS=""
+
+DEPEND="
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtwidgets)
+   app-text/libpaper
+   media-gfx/sane-backends
+   media-libs/tiff:0
+"
+RDEPEND="${DEPEND}"

diff --git a/kde-misc/kooka/metadata.xml b/kde-misc/kooka/metadata.xml
new file mode 100644
index 00..2fdbf33d96
--- /dev/null
+++ b/kde-misc/kooka/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   k...@gentoo.org
+   Gentoo KDE Project
+   
+



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

2017-07-16 Thread Mike Pagano
commit: b04538f563910a3d93dfdc314e13391865237bfb
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jul 16 19:25:00 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jul 16 19:25:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04538f5

sys-kernel/gentoo-sources: Linux patch 4.12.2

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.12.2.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a3a63616a2b..24928bc390f 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -71,6 +71,9 @@ DIST genpatches-4.12-1.extras.tar.xz 17348 SHA256 
2f8967491bbf91667af7536d3e8953
 DIST genpatches-4.12-2.base.tar.xz 16796 SHA256 
cc58b02b6a070668ebd236b2ca6369e8ed725d2224e43ecdfc467f551ff3b82a SHA512 
b705626ab0e938f11f87e7bb60ba1901c7dab1a4359663eb94f0980449b1b5b9948d4cb34dead4c19bc59f7e299f78938f08166e04b324abdda7c461a301f8f2
 WHIRLPOOL 
412852e5f71b0797a90cabf725da78e8acb008ed48f23b2dd1fe4acdc3d066ee03bdfdeff8fcebbd99337e7c5597dd559134fc53e8ad8c0738b22059a39a9507
 DIST genpatches-4.12-2.experimental.tar.xz 5180 SHA256 
4034f611dd346dca1e53e57e6f41d043383a69041443c58f0ef88727402180a6 SHA512 
81470e4895c6aa6adec3cb5ec42b0cc6c8a1ce51b927563255ebaaf65e5feabe2e496ab4a255f86516883ece4c2a6df0f5bc213ffcb65ffc69fa4c12418fa644
 WHIRLPOOL 
a12a586a5007e6159afdb77f142ae2835ded33b25dde7e1c621468f85e6033d75b6aa1b6b36fd56a29afe4a4e23f8b6ceb0028ec73aa8c3d2261f3943a2a96d8
 DIST genpatches-4.12-2.extras.tar.xz 17344 SHA256 
a8e11e00e3c635333efc943a65280e48aef3cc6b97bbeba1c99f1bad550e12c4 SHA512 
8b5beba256adce91d3c0de7f0baec2e4fdf470f96e976a34729d1aaf59137d1ee5f4a1a5673bed0411fa31f4b2fa427a7c71cf0bd1a222a6c50ae008a09220e7
 WHIRLPOOL 
4a2670ccf3a13c1948ed36a6c49601477ff18bc7d6beedcbca3c12fd04542e3b9dd51b2926556bbc4adaf7413f5eecb63d8220982eae037dae7937c666d46600
+DIST genpatches-4.12-3.base.tar.xz 20156 SHA256 
4dfc2653ff7ed3edc422ef1ce95e7b02027fd916d9d2cc9865970cbb82d11924 SHA512 
54238b2947c6c206d54a873ee8304aa3fc78cab430921603d827c666e66dda3df30d4e9060292fb835875e2d32cbe24e479fdff8db96d657515437644a8083b1
 WHIRLPOOL 
8bbff03cafa8947cc05083cd52f30482f37b238e3d7c0130b9ad10476fe4f8c9feb05c87be276a7320e45c6498c04d00e709d8fc4a76795d5a1738dbc8e77e09
+DIST genpatches-4.12-3.experimental.tar.xz 5188 SHA256 
c830b7454b4f514d09c637670b8742c744d9f0c14a5ae6d4dbe83efd01defbca SHA512 
bffea426307fb95b6ba21cdb438e783381ea111ef01e8389b5d2571c0539f901b4a3e6ffe85b82f3f801ec54d7b86d5d315898615e01a2804673f1e87c37fcc4
 WHIRLPOOL 
9d5dd1788e9bf868ce7f93699795df0a9a950bd68a2aa3b962607ee5a25c756d258aaad3eccca7cd0d150fc63fe7c52b4c1a8e8343a6075d1b8e990dae28ab9a
+DIST genpatches-4.12-3.extras.tar.xz 17356 SHA256 
938a52c1ad10c6ad4d8d18394ba0b09433cc978517ec82e52645e062f14474c1 SHA512 
44d2014bb13262384aa571bff444e69d478c01c353b06de6934d6dcabed1da2f19b718af63ff5ad3bef765d19df1f99b6b836b69a41bdd8e9b43eb718ce9e1e6
 WHIRLPOOL 
fcc4852398a6e5c7b89f435f8591f1cd3de74599de485135a80a82305fa53caa8cb4cd5dc5a0a8f47ccaf1f857887dd36237ad7d284e0bd270dfd53a06711103
 DIST genpatches-4.4-56.base.tar.xz 1021856 SHA256 
a3118b9cb3204ac85b69c3676550f60859ee68707f0c5816120a2565cd7ab317 SHA512 
eeed7dc7358bc0151db89cb292e8b30a7498ac8c9c72fd301d9e08343977806e19a91a4958dda2643a418b50ca5ff7f2a27c871c53d1e9d3f0930e27c6ab11ba
 WHIRLPOOL 
10b4e757bd6b4e611d4828b7ea45b4d4f704dbec76a32c5294a8489ecd85103dc472c7b144588cbe1b07c3f507c076b8b2f9555b88542120a53d165c68a592f4
 DIST genpatches-4.4-56.experimental.tar.xz 87752 SHA256 
6324d9c2e58f33bf39ec7834d3ab6c6ed9eb6d53ffbd4d55aba0879903a503e2 SHA512 
d77dd2a45117afe1913dbf7163de8a9b0acfe28fc0afe18e3b1cd2d5d2e785fe374f7018e085a0d2bf8dc052273f1781e2c2094359c4a8a771b9f14443273be5
 WHIRLPOOL 
2f67af9640ab8d917617bc2bf8ee0d518dd5bdc343abff965bd2f8a8b35eae23b2ce9fd99aeb4497a7ac9293ec1005640c096e72b816143680ddfb6d60158598
 DIST genpatches-4.4-56.extras.tar.xz 16408 SHA256 
74babcf456aed9c7c406a0feb37b5fbe51db461a67b5fd9c07a252398a15b41f SHA512 
661cb1c58b38c24283a9465f596045669f2d686b7418e9586ca6ce48b56bd9cfce52705502f876e68006c4ff1624847cd1e18e3aec37d60f64e6f7788d5facee
 WHIRLPOOL 
11dd648ebf88f43d0c1e1543e5a68c93a1a31b5c1f2d287add703e20979820ecadf003b051e787d6089c346e4a13485326d9c05b5968bd9cb3ca21a755d95a54

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.12.2.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.12.2.ebuild
new file mode 100644
index 000..7a185d55221
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.12.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="3"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 

[gentoo-commits] repo/gentoo:master commit in: xfce-base/exo/

2017-07-16 Thread Michał Górny
commit: c6d69df1e5c859d38ecdf644023b4270c1b5e198
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul 16 18:25:11 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul 16 19:17:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6d69df1

xfce-base/exo: Fix conflict with www-client/vivaldi, #624546

 xfce-base/exo/{exo-0.11.4.ebuild => exo-0.11.4-r1.ebuild} | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/xfce-base/exo/exo-0.11.4.ebuild 
b/xfce-base/exo/exo-0.11.4-r1.ebuild
similarity index 83%
rename from xfce-base/exo/exo-0.11.4.ebuild
rename to xfce-base/exo/exo-0.11.4-r1.ebuild
index 582fbc77050..44f902b7be9 100644
--- a/xfce-base/exo/exo-0.11.4.ebuild
+++ b/xfce-base/exo/exo-0.11.4-r1.ebuild
@@ -30,6 +30,9 @@ DEPEND="${RDEPEND}
 src_install() {
default
find "${D}" -name '*.la' -delete || die
+   # installed by www-client/vivaldi, xfce4 upstream already removed
+   # it per https://bugzilla.xfce.org/show_bug.cgi?id=13712
+   rm "${ED%/}"/usr/share/xfce4/helpers/vivaldi.desktop || die
 }
 
 pkg_postinst() {



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

2017-07-16 Thread Mike Pagano
commit: 9fbf96cf79d55bb1dcdab57c606bc262b1b8928a
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jul 16 18:48:55 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jul 16 18:49:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fbf96cf

sys-kernel/gentoo-sources: Linux patch 4.11.11

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.11.11.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f79f9a1dd61..a3a63616a2b 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -59,6 +59,9 @@ DIST genpatches-4.11-11.extras.tar.xz 17344 SHA256 
16e944f7cfc2e610aeee7dedd2551
 DIST genpatches-4.11-12.base.tar.xz 284600 SHA256 
162eb26d41dd03bfbc1bf972df23ca4c1c70bb30ea1b7618392dcdf9392c7507 SHA512 
5dd686e5dad5f9916e1edf5f81aa5a6a86f58de9dd38adbc722ffd838e0996acafc9b29f39e894fa9c46195242124044334ba218559395412025769e27827f96
 WHIRLPOOL 
31f6204dfe2b598d490625420ff48f32ab2b2db141a7ffd56e72aec14e052b93eb6760cff345d9b8bf38bc9d6efc4e3aa3e66554eb74e0513b05fc08ec16953a
 DIST genpatches-4.11-12.experimental.tar.xz 106564 SHA256 
9de7bd69cfcc203b3637826a8d0234a157bdaf36b6ea3d28e799b5bdfa889353 SHA512 
cbf4a4f3fc08c2fd12e6f6e2e59fa1a84769bc88d2eee5f5293f0b8238a23e0d65dc532af5e6bf18a8e7e5c10ede6a80d62d311efc2fd2f646c8df56348a59ba
 WHIRLPOOL 
afd79c1595b1e89ef785df3932e5e4f3b9f5f0a8a3c588feb91abe1a5b2f43e004a5949754e62ed123b61348a15fce1f4d5ccedcb6f00141fb1c2f6750c77e5c
 DIST genpatches-4.11-12.extras.tar.xz 17344 SHA256 
a8e11e00e3c635333efc943a65280e48aef3cc6b97bbeba1c99f1bad550e12c4 SHA512 
8b5beba256adce91d3c0de7f0baec2e4fdf470f96e976a34729d1aaf59137d1ee5f4a1a5673bed0411fa31f4b2fa427a7c71cf0bd1a222a6c50ae008a09220e7
 WHIRLPOOL 
4a2670ccf3a13c1948ed36a6c49601477ff18bc7d6beedcbca3c12fd04542e3b9dd51b2926556bbc4adaf7413f5eecb63d8220982eae037dae7937c666d46600
+DIST genpatches-4.11-13.base.tar.xz 287016 SHA256 
de01a674596970f51046a7d622b4775c77cbde61eb746052808988df7018f07c SHA512 
500e3c2089573d623861e92f4f6fc51524358b644f868d16d0bb1ae740ddbe2ab90f5f3096d4197853307819b132e8f0e267a0ae4ae9c396f7d5013417b14d69
 WHIRLPOOL 
3744e997679b330c87ec0b262b2efe473919931657e0ae93ee0172803c93ec1bbb80f5c1b24fbc155424494a1d7adeaf198595fbde3f9144a89426e44a2a8a13
+DIST genpatches-4.11-13.experimental.tar.xz 106540 SHA256 
dedeb349143d95f3ec2ad6c67f1649520a1787f5eb14cb885986bea20d1a5734 SHA512 
4aa5bfd891fecfeb5471485afca6f4eaa69cccb4a0c885395194c9eb2b77eadbecad32875145e153da2177e1c8ab2f1f5b6d6ea7365de8f2a790b7ef041893df
 WHIRLPOOL 
6966233afdf6652a436336885cd79c23ad62b501ad56c85863c05284348d6cf516c0d20dc375c31fdeb89ce0bc3c3354c88b684de68ab0146eb245a9d0a52f68
+DIST genpatches-4.11-13.extras.tar.xz 17356 SHA256 
938a52c1ad10c6ad4d8d18394ba0b09433cc978517ec82e52645e062f14474c1 SHA512 
44d2014bb13262384aa571bff444e69d478c01c353b06de6934d6dcabed1da2f19b718af63ff5ad3bef765d19df1f99b6b836b69a41bdd8e9b43eb718ce9e1e6
 WHIRLPOOL 
fcc4852398a6e5c7b89f435f8591f1cd3de74599de485135a80a82305fa53caa8cb4cd5dc5a0a8f47ccaf1f857887dd36237ad7d284e0bd270dfd53a06711103
 DIST genpatches-4.11-9.base.tar.xz 228412 SHA256 
094cf6debebc1a5d5615bc099de2fe4772b873ffc6e5b117cf721d04e5fbdb43 SHA512 
dc2201c845fe68ad9ef35c960eb15aa8b3fd2b45084c15303fd1527a3e2b2095132d80a41511e9a50034c776b9f2951a13984b36a178f281c6fe89e3aa15e1e8
 WHIRLPOOL 
12cf8556f66f84d5c33fca23f4645b49f5c2686037627c2a74c48a463c56525ef8d6b90e4f41104c5d30da149cc69e26615be55bf3067f766ef0896dc2c11d81
 DIST genpatches-4.11-9.experimental.tar.xz 106600 SHA256 
e2aac36f6efd04cea03c35a73187b246ae42d56c6657b922057636f9f198f12c SHA512 
731647428003123688ace6a9053d8b48f4c5d8ce96b7c6077b2727864b27e5dab0344c7bbcfd996c668518d68c6171d679fe367d25a6af8278133fdc7ec660db
 WHIRLPOOL 
7315f7c419ddc202b167cc145e90d7ff07d8b60a441ee1145b176e0b6425580a9273f17a788bb781ae67071f3c46ca2f50180ae1d18755a9117c3c8a36827eb5
 DIST genpatches-4.11-9.extras.tar.xz 17352 SHA256 
f7691170d75d64dc6c10c851f6e63bfda22f971a104be8e67b53887328aa3fe9 SHA512 
39a64e21fb3968aafe2f71cacaccb2f300f6da202db38021a44c82382eb894c548c422402153d98768c58da0bf16efda4ee62436b065e0819f81a42fbb8382ca
 WHIRLPOOL 
ba3b71c896b9423bf4b9f0b4a5401641008910f7dad89f891737cf11cbfb62fabe4e9874c345b0bcb1b0d78b5ead44f32738e74417902cbb4111fd0c2e62e077

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.11.11.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.11.11.ebuild
new file mode 100644
index 000..7d7786e4edb
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.11.11.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="13"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha 

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

2017-07-16 Thread Mike Pagano
commit: 2f7cd23b68c288cee35fe8759b6d5b2aa03f49ba
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jul 16 17:59:26 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jul 16 18:49:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f7cd23b

sys-kernel/gentoo-sources: Linux patch 4.9.38

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.9.38.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index cf82b6372a3..f79f9a1dd61 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -95,6 +95,9 @@ DIST genpatches-4.9-37.extras.tar.xz 17344 SHA256 
16e944f7cfc2e610aeee7dedd2551e
 DIST genpatches-4.9-38.base.tar.xz 850108 SHA256 
42f5ed24f5a4d721a311f5d87f98bcfcf28305f1788ef107317f50f4124fe5cd SHA512 
11e9128db46628fe779d24278553818b6ae7f47bc0441f07f52ecd7ff70ba5fd883770ccf2f37a53c99d0cc6390331e54b2bfeca695f2d81e21938c2d29aed08
 WHIRLPOOL 
1f4ae81279dcc3556760e930ba0fd33ce8b6737196ceaa696f17900bca0b1d5bdbac3327f944c7ac84eae4e6fbcdc59c278ee6e6b7eba04560ae4d4c3c0d1ad3
 DIST genpatches-4.9-38.experimental.tar.xz 106396 SHA256 
d51d2ee8bb8cad9f4cdacac26f324b773000cdd4fdf1af6ec7fc1e4547218ca2 SHA512 
4bbd5d1fbc379f2b0c37bdc3c5046981133e8c6ea2643269908c54e4251e0dd0f8d7a10dff90fda400bd800cf36cbebee42cc0b42f934e4e2593bb2821946383
 WHIRLPOOL 
b82fb1cb2334dabeeb11e06db93e92a22c0b5bea260bbae89dcd0539312fa31e4e91f5add0c7d4ffeb51fcafee0021418f84a0269f85fe52ff8763598fda43ea
 DIST genpatches-4.9-38.extras.tar.xz 17344 SHA256 
a8e11e00e3c635333efc943a65280e48aef3cc6b97bbeba1c99f1bad550e12c4 SHA512 
8b5beba256adce91d3c0de7f0baec2e4fdf470f96e976a34729d1aaf59137d1ee5f4a1a5673bed0411fa31f4b2fa427a7c71cf0bd1a222a6c50ae008a09220e7
 WHIRLPOOL 
4a2670ccf3a13c1948ed36a6c49601477ff18bc7d6beedcbca3c12fd04542e3b9dd51b2926556bbc4adaf7413f5eecb63d8220982eae037dae7937c666d46600
+DIST genpatches-4.9-39.base.tar.xz 855704 SHA256 
9cd1d1556de30b420f5d716d1b1554c0eee6e0cdb0982861f05d0dbe43868f6d SHA512 
3be07220e6f3dd3015c783febcb5becf3a9eda02eec9447f57e52cfffb7c7905e84841fda048983f190125f1acdec32dc154e081a60766dfaec5ba7856173e70
 WHIRLPOOL 
2a59ce47f8cc691f78a96725753cf452aa2ce89b838fe9c8e86e4749f08f7e1e766d6ff84e2b468e23e6f8458b19c3115352f7811179162148b9e220fb54ea6e
+DIST genpatches-4.9-39.experimental.tar.xz 106360 SHA256 
5bce6ae310fdebf5f0eb51aca9e7af39ea6f60906ffb567a91f3af3d98ea8998 SHA512 
2d6dc7361b480b8b4a66de60aacd28b19c4a8131abc646763eb92c232e1e04ee4dafa6ab5634718abaa5722dabb9b928b0a1c792a40c63b4170f39f2ecb57400
 WHIRLPOOL 
88fdf58008eae0f28ba749872a3f4fc82e9aa279751df172975d7081d3b71ccbdef9bba0439868cba327b4cce4c3fc55566d3ebf66262d3166a4d407639716e9
+DIST genpatches-4.9-39.extras.tar.xz 17356 SHA256 
938a52c1ad10c6ad4d8d18394ba0b09433cc978517ec82e52645e062f14474c1 SHA512 
44d2014bb13262384aa571bff444e69d478c01c353b06de6934d6dcabed1da2f19b718af63ff5ad3bef765d19df1f99b6b836b69a41bdd8e9b43eb718ce9e1e6
 WHIRLPOOL 
fcc4852398a6e5c7b89f435f8591f1cd3de74599de485135a80a82305fa53caa8cb4cd5dc5a0a8f47ccaf1f857887dd36237ad7d284e0bd270dfd53a06711103
 DIST genpatches-4.9-8.base.tar.xz 215420 SHA256 
4bbde563b43389798188b75c7e65412aaf5300348efeda63071cbd56f1e275e6 SHA512 
12641d4a11a8a4d40f16b9d0c62972de2baadc13481697c69a91a2b36844293f4edf207491ae087ce3378bdd0400856070e353c291f34d1cad02d3e3a6c73a36
 WHIRLPOOL 
98d63bb42729eb8518c6ea4a15cee2a41fe59a9f299bdde9ce86825bd3c563665a95da841b06817e3a4616fd38592737ad502173aa33a0b9eacd3fb31a42956d
 DIST genpatches-4.9-8.experimental.tar.xz 105608 SHA256 
217098bec005a1410b2dc1435841c2fc96d9f6022dd2973512d1b0f36e3c20d5 SHA512 
69546bc1d846697179aa287a4d1b708b962c0cdcf14b16acb4c696e8ffa38983a679d0f28c2d5df68046c68cc655add1c54c97bfa22f5867d9bba93612e67e2b
 WHIRLPOOL 
7fddabf8821a18607f765948457a44c689b3c527f2f630f1c3af614c8ba244663ed5d03dbaa5af27885d2d708069fa5f94b1c19aa23512806714522973371a59
 DIST genpatches-4.9-8.extras.tar.xz 17300 SHA256 
ba08353081cf07a73fb2a5b998c8dadeb94f6ede09ac177f2357925de9f50dd4 SHA512 
18ab24c59adc73bab4a49bc5537333ac6a7d11801afce8943ef42878d8b33341648b64d9fbc56be3a49fe6d9ec7728186eb40a348eedfb0b14ee1f5746e0ab4b
 WHIRLPOOL 
b352654885c3180a5599bc0a0acc3f9a3828d75ca5ef4a83c49258ca263822b02d974e273071bf913c82a919c4cdbc9283cee9b81edbc40ce640c11f7ad0775d

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.38.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.38.ebuild
new file mode 100644
index 000..4b56bb27255
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.38.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="39"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm 

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

2017-07-16 Thread Andrew Savchenko
commit: 052a1affedacd447bdee25de14448dbb49757915
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 18:35:26 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 18:35:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=052a1aff

app-arch/unrpa: version bump

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

 app-arch/unrpa/Manifest  | 1 +
 app-arch/unrpa/{unrpa-.ebuild => unrpa-1.4.2.ebuild} | 6 +++---
 app-arch/unrpa/unrpa-.ebuild | 6 +++---
 3 files changed, 7 insertions(+), 6 deletions(-)

diff --git a/app-arch/unrpa/Manifest b/app-arch/unrpa/Manifest
index 394ba27649e..4570dc2df24 100644
--- a/app-arch/unrpa/Manifest
+++ b/app-arch/unrpa/Manifest
@@ -1 +1,2 @@
 DIST unrpa-1.4.1.tar.gz 14367 SHA256 
a6f20fca0e00e09220933060c98180ad11d5a7633fc902684099b5f2c4806b0a SHA512 
9b058adda9a39178950df4c39af40726cdca410f0fca699d0dec1bd5d7046c75c8811c8914c0c8756c29988b6362d3b4ad3756aa77f238eafb13d4414d3266cc
 WHIRLPOOL 
fc01837fa7a68e5121413c551abb1f9231adf04b677caec1017aaafb112da5546e5f68ea10b7cc68329bacb6499468c5b595196a4abe93ac9b7bcacb1aa5f89a
+DIST unrpa-1.4.2.tar.gz 14458 SHA256 
d8c4a92380721f82f21b9c086c7755f35609aa7738ab5f8e8d3aaf1f21774090 SHA512 
2608f4ec11540de1b14290ce1aaad6f06e8111a55b5c6a38c0c9e4d7228c04ccef480425f812a7cbc3913c0ed6865d0b63c8aa0d5ec9131495eab40bbdfcdcc5
 WHIRLPOOL 
dc454ee7eb09a5a793cd0a311e17cf8c5b8cf2a276387a5957f86f5feaa4b7202f886fd83d82dc5d231d769aecbb52fdbb7839bb9cdff0939d41119a460de331

diff --git a/app-arch/unrpa/unrpa-.ebuild 
b/app-arch/unrpa/unrpa-1.4.2.ebuild
similarity index 91%
copy from app-arch/unrpa/unrpa-.ebuild
copy to app-arch/unrpa/unrpa-1.4.2.ebuild
index 08b6cbe02bc..116e57d6b1b 100644
--- a/app-arch/unrpa/unrpa-.ebuild
+++ b/app-arch/unrpa/unrpa-1.4.2.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 inherit python-single-r1
@@ -22,9 +22,9 @@ SLOT="0"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 DEPEND="${PYTHON_DEPS}"
-RDEPEND=${DEPEND}
+RDEPEND="${DEPEND}"
 
 src_install() {
-   dobin ${PN}
+   python_doscript "${PN}"
dodoc README
 }

diff --git a/app-arch/unrpa/unrpa-.ebuild b/app-arch/unrpa/unrpa-.ebuild
index 08b6cbe02bc..116e57d6b1b 100644
--- a/app-arch/unrpa/unrpa-.ebuild
+++ b/app-arch/unrpa/unrpa-.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 inherit python-single-r1
@@ -22,9 +22,9 @@ SLOT="0"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 DEPEND="${PYTHON_DEPS}"
-RDEPEND=${DEPEND}
+RDEPEND="${DEPEND}"
 
 src_install() {
-   dobin ${PN}
+   python_doscript "${PN}"
dodoc README
 }



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

2017-07-16 Thread Andrew Savchenko
commit: b97ed9a99b0eaa064948d092bdbbd6fc674741e3
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 18:37:33 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 18:37:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b97ed9a9

games-engines/renpy: fix html docs install path

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

 games-engines/renpy/renpy-6.99.12.4-r1.ebuild | 4 ++--
 games-engines/renpy/renpy-6.99.12.4-r2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/games-engines/renpy/renpy-6.99.12.4-r1.ebuild 
b/games-engines/renpy/renpy-6.99.12.4-r1.ebuild
index 8049f87073f..8c969e13c6b 100644
--- a/games-engines/renpy/renpy-6.99.12.4-r1.ebuild
+++ b/games-engines/renpy/renpy-6.99.12.4-r1.ebuild
@@ -87,8 +87,8 @@ python_install_all() {
fi
 
if use doc; then
-   insinto html
-   doins -r doc
+   insinto "/usr/share/doc/${PF}/html"
+   doins -r doc/*
fi
newman "${FILESDIR}/${PN}.1" "${P}.1"
 

diff --git a/games-engines/renpy/renpy-6.99.12.4-r2.ebuild 
b/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
index 6c4f3fcb6b2..131246e74e9 100644
--- a/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
+++ b/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
@@ -83,8 +83,8 @@ python_install_all() {
fi
 
if use doc; then
-   insinto html
-   doins -r doc
+   insinto "/usr/share/doc/${PF}/html"
+   doins -r doc/*
fi
newman "${FILESDIR}/${PN}.1" "${P}.1"
 }



[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-renpy/files/, app-eselect/eselect-renpy/

2017-07-16 Thread Andrew Savchenko
commit: 8bd7dfbac0e9add1568f1a395d55a4ca649e3a4a
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 18:00:55 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 18:00:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd7dfba

app-eselect/eselect-renpy: remove old

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

 app-eselect/eselect-renpy/eselect-renpy-0.4.ebuild | 38 --
 app-eselect/eselect-renpy/files/renpy.eselect-0.4  | 14 
 2 files changed, 52 deletions(-)

diff --git a/app-eselect/eselect-renpy/eselect-renpy-0.4.ebuild 
b/app-eselect/eselect-renpy/eselect-renpy-0.4.ebuild
deleted file mode 100644
index de06879b854..000
--- a/app-eselect/eselect-renpy/eselect-renpy-0.4.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit games
-
-DESCRIPTION="Manages renpy symlink"
-HOMEPAGE="https://www.gentoo.org/proj/en/eselect/;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-
-RDEPEND="app-eselect/eselect-lib-bin-symlink"
-
-S=${WORKDIR}
-
-pkg_setup() { :; }
-
-src_prepare() {
-   sed \
-   -e "s#@GAMES_BINDIR@#${GAMES_BINDIR}#" \
-   "${FILESDIR}"/renpy.eselect-${PV} > "${WORKDIR}"/renpy.eselect 
|| die
-}
-
-src_configure() { :; }
-
-src_compile() { :; }
-
-src_install() {
-   insinto /usr/share/eselect/modules
-   doins renpy.eselect
-}
-
-pkg_preinst() { :; }
-
-pkg_postinst() { :; }

diff --git a/app-eselect/eselect-renpy/files/renpy.eselect-0.4 
b/app-eselect/eselect-renpy/files/renpy.eselect-0.4
deleted file mode 100644
index 20cc952b8a7..000
--- a/app-eselect/eselect-renpy/files/renpy.eselect-0.4
+++ /dev/null
@@ -1,14 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-DESCRIPTION="Manage default renpy version"
-MAINTAINER="hasuf...@gentoo.org"
-VERSION="0.4"
-
-SYMLINK_PATH="@GAMES_BINDIR@/renpy"
-SYMLINK_TARGETS=( renpy-6.14 renpy-6.15 renpy-6.16 renpy-6.17 )
-SYMLINK_DESCRIPTION='default renpy'
-SYMLINK_CRUCIAL=1
-
-inherit bin-symlink
-



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

2017-07-16 Thread Andrew Savchenko
commit: f4787d5b384c142363f8acc2f027305f7f2bb3df
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 17:50:12 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 17:50:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4787d5b

games-engines/renpy: migrate from the games eclass

and update to EAPI 6

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

 games-engines/renpy/renpy-6.99.12.4-r2.ebuild | 108 ++
 1 file changed, 108 insertions(+)

diff --git a/games-engines/renpy/renpy-6.99.12.4-r2.ebuild 
b/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
new file mode 100644
index 000..6c4f3fcb6b2
--- /dev/null
+++ b/games-engines/renpy/renpy-6.99.12.4-r2.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+DISTUTILS_IN_SOURCE_BUILD=1
+inherit eutils gnome2-utils toolchain-funcs versionator distutils-r1
+
+DESCRIPTION="Visual novel engine written in python"
+HOMEPAGE="http://www.renpy.org;
+SRC_URI="http://www.renpy.org/dl/${PV}/${P}-source.tar.bz2;
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+MYSLOT=$(delete_all_version_separators ${SLOT})
+KEYWORDS="~amd64 ~x86"
+IUSE="development doc examples"
+REQUIRED_USE="examples? ( development )"
+
+RDEPEND="
+   >=app-eselect/eselect-renpy-0.7
+   dev-libs/fribidi
+   ~dev-python/pygame_sdl2-${PV}[${PYTHON_USEDEP}]
+   >=dev-lang/python-exec-0.3[${PYTHON_USEDEP}]
+   !

[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-renpy/files/, app-eselect/eselect-renpy/

2017-07-16 Thread Andrew Savchenko
commit: 0cdeed0d3bf768ce7f1aba6afa0fee9c80044be7
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 17:48:08 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 17:48:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cdeed0d

app-eselect/eselect-renpy: migrate from the games eclass

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

 app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild | 39 ++
 app-eselect/eselect-renpy/files/renpy.eselect-0.7  | 14 
 2 files changed, 53 insertions(+)

diff --git a/app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild 
b/app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild
new file mode 100644
index 000..4ee9286df3e
--- /dev/null
+++ b/app-eselect/eselect-renpy/eselect-renpy-0.7.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Manages renpy symlink"
+HOMEPAGE="https://www.gentoo.org/proj/en/eselect/;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-eselect/eselect-lib-bin-symlink
+   ! "${WORKDIR}"/renpy.eselect 
|| die
+   eapply_user
+}
+
+src_configure() { :; }
+
+src_compile() { :; }
+
+src_install() {
+   insinto /usr/share/eselect/modules
+   doins renpy.eselect
+}
+
+pkg_preinst() { :; }
+
+pkg_postinst() { :; }

diff --git a/app-eselect/eselect-renpy/files/renpy.eselect-0.7 
b/app-eselect/eselect-renpy/files/renpy.eselect-0.7
new file mode 100644
index 000..67199267bc5
--- /dev/null
+++ b/app-eselect/eselect-renpy/files/renpy.eselect-0.7
@@ -0,0 +1,14 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+DESCRIPTION="Manage default renpy version"
+MAINTAINER="birc...@gentoo.org"
+VERSION="0.7"
+
+SYMLINK_PATH="@BINDIR@/renpy"
+SYMLINK_TARGETS=( renpy-6.99 )
+SYMLINK_DESCRIPTION='default renpy'
+SYMLINK_CRUCIAL=1
+
+inherit bin-symlink
+



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

2017-07-16 Thread Andrew Savchenko
commit: e02ffd4f79907b478204384ba67e54ef032c6c27
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 17:54:32 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 17:54:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e02ffd4f

games-engines/renpy: remove old

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.6-multiple-abi.patch| 337 -
 games-engines/renpy/renpy-6.99.12.4.ebuild | 113 ---
 games-engines/renpy/renpy-6.99.6.ebuild| 110 ---
 4 files changed, 561 deletions(-)

diff --git a/games-engines/renpy/Manifest b/games-engines/renpy/Manifest
index cadcd3c3f46..38ff1d2aa7d 100644
--- a/games-engines/renpy/Manifest
+++ b/games-engines/renpy/Manifest
@@ -1,3 +1,2 @@
 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.6-multiple-abi.patch 
b/games-engines/renpy/files/renpy-6.99.6-multiple-abi.patch
deleted file mode 100644
index eac6512d4b1..000
--- a/games-engines/renpy/files/renpy-6.99.6-multiple-abi.patch
+++ /dev/null
@@ -1,337 +0,0 @@
-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,118 +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
--
--# 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)
--NSSearchPathDomainMask = enum("NSSearchPathDomainMask", 
NSUserDomainMask=1)
--
--NSFileManager = autoclass('NSFileManager')
--manager = NSFileManager.defaultManager()
--url = manager.URLsForDirectory_inDomains_(
--

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

2017-07-16 Thread Alexis Ballier
commit: 74c49bf33efd724d28caa255a7a7109fc3c22402
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 17:23:03 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 17:23:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74c49bf3

dev-python/pyquery: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/pyquery/pyquery-1.2.13.ebuild 
b/dev-python/pyquery/pyquery-1.2.13.ebuild
index e287f032c5b..eb195d24bc7 100644
--- a/dev-python/pyquery/pyquery-1.2.13.ebuild
+++ b/dev-python/pyquery/pyquery-1.2.13.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~hppa ia64 ppc64 ~s390 ~sh sparc x86"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ppc64 ~s390 ~sh sparc x86"
 IUSE="test"
 
 RDEPEND="



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

2017-07-16 Thread Jory Pratt
commit: 4714868dbef0d213774a9f1ae9038dd0a800a18c
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Sun Jul 16 17:02:01 2017 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sun Jul 16 17:02:01 2017 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=4714868d

www-client/firefox: 55.0_beta9 version bump, fix seccomp bfp on musl

 eclass/mozconfig-v6.55.eclass | 3 +++
 www-client/firefox/Manifest   | 4 ++--
 .../firefox/{firefox-55.0_beta7.ebuild => firefox-55.0_beta9.ebuild}  | 2 +-
 3 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/eclass/mozconfig-v6.55.eclass b/eclass/mozconfig-v6.55.eclass
index b181f5d..0b133c0 100644
--- a/eclass/mozconfig-v6.55.eclass
+++ b/eclass/mozconfig-v6.55.eclass
@@ -305,6 +305,9 @@ mozconfig_config() {
mozconfig_annotate '-pulseaudio' --enable-alsa
fi
 
+   # For testing purpose only
+   mozconfig_annotate 'Sandbox' --enable-content-sandbox
+
mozconfig_use_enable system-cairo
mozconfig_use_enable system-sqlite
mozconfig_use_with system-jpeg

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index e45dec9..15f2bad 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -184,5 +184,5 @@ DIST firefox-54.0.1-xh.xpi 440803 SHA256 
dbb7ca463660d3bf1fc2c079551b6380dc8d238
 DIST firefox-54.0.1-zh-CN.xpi 458333 SHA256 
0acf841d128b347c85ceb8fa34dd2dcdb3177b1c4cb9fa2a97666ba0912dd16b SHA512 
dfa13aaa2e630e9358b975a393e98fadfcfdfdcd5c642aeb30fd4fac03ee4960f59c0add2666b31272e410dd7ffd61e7db97e4e6c73739f510042e72cc2e3c4a
 WHIRLPOOL 
7da9c7ea764db653207c135ca8717e984d36acd5d837e5c6842ada2dc48125a72840eebcef0a5d5dd2ed161c4de95250240bc357767b5702e914cb5bcfe73eb7
 DIST firefox-54.0.1-zh-TW.xpi 469166 SHA256 
bebd2c45d83ba97ebafc3fd463385d3a75d3818bae33bf71e3430594f5f5abbc SHA512 
3da3afac75393f54b0f241aa2228835e6a93c0dd69026be627db65cf2d8c20f47df28696d547da74e2e7bd6f6ed987da5203a64f304150d04d9ff66418b8efe5
 WHIRLPOOL 
1881a2d047aa5a31fdae2c3c1c610e8f05ce032862b9f526c49038df1fcd502df27115fd69b399ea718e902400bc1c38e306048066b2c1e523087430ca9becd5
 DIST firefox-54.0.1.source.tar.xz 229935420 SHA256 
07843e68f2f64842bb230b7fe821e45c82944e64dc3f2a3a90d3ea9f1efa7f77 SHA512 
43607c2c0af995a21dc7f0f68b24b7e5bdb3faa5ee06025901c826bfe4d169256ea1c9eb5fcc604c4d6426ced53e80787c12fc07cda014eca09199ef3df783a2
 WHIRLPOOL 
b2efa43bde67a7ca4958263fe0284b6136756339f94e14fad84ca2388abcffdfa59d37bc0b6e0c19f66353b84b6eec2c6b50817449491224b009fa027fde2264
-DIST firefox-55.0-patches-04.tar.xz 9776 SHA256 
51db897394abfe5bd800856216f08543d0b0b48d403e28bfa0bf72d5c35d SHA512 
0a0cf73890ba7f4ccb2262abf636a8e077e7da58dd7b09711ede3d8b0330d53755ad1ca72bfb34123f9c8202d8a091b5d5d08d61e952463ac6385379a055
 WHIRLPOOL 
8ea55c21d64cd9bc074c3f0b9ed9af1a7c20884afe3cfe0e468fff8f76c1d4d10f0478b62b265b89608027ead2e9eaa80bb70cfc229491d01add60ef01786e0f
-DIST firefox-55.0b7.source.tar.xz 236165272 SHA256 
13951849b433e89fa2814557c7dac8428b37c416e141c3c2083e8d1fbcb04642 SHA512 
720fdc0e7ae205c0223009fbd2e8ca7993dcfdfd33a34ab3b4dd042658ae9222be13db9542d3d8e662d132aa9cba017a1b4452fbefe698f4589a5f6719eceec1
 WHIRLPOOL 
608cf776b7b838c260efc9d2c872074a4790249fc3880e6bdd9bd930ff7ffc981d30f9fa87ab0e043f3b841e27aa0e366823661e0cffedba6dca7dbd2f5e
+DIST firefox-55.0-patches-06.tar.xz 11480 SHA256 
eb922bd361f83313c2906c4ab510ca9629fa23640115ee607730bd6edcf3a479 SHA512 
ade0165471f1782a3ee2ad539f8c1d6e8dbec04cbcfbd354348ea31f5c473bc4cc8e97fb03502f17c63eebb6bbf7c257817d4fb5c4c45d8ce011e92a4b246bc9
 WHIRLPOOL 
b3ede084aa1839ca5560bc81fd78e58a050507e7b387f79594d1bcfc0a9032cc9155af8c8386481567a217f5b879957dfb73ad9e4182bddf1444c06df0fcb132
+DIST firefox-55.0b9.source.tar.xz 235365676 SHA256 
55783e9f335660eede3449512e247f2d5a162183c34f5ec3f072a599fcbac949 SHA512 
62ab417cd0c33f1cb1e3653b9ff9b6b3384df28dae443761f8a4ce4ebb3e86740409d70263bd28fe730ebe243ae2b6b382ef4f8fc92b1decac08a4fc3cfce40e
 WHIRLPOOL 
4eaaebdb5c24c15e79460bed1592c5bf3691307bdf51f63eb758691a4be1dffb177532e9603768309157c894ae4d98cbdeb3fd68181f5ea3f32da3be0b84305e

diff --git a/www-client/firefox/firefox-55.0_beta7.ebuild 
b/www-client/firefox/firefox-55.0_beta9.ebuild
similarity index 99%
rename from www-client/firefox/firefox-55.0_beta7.ebuild
rename to www-client/firefox/firefox-55.0_beta9.ebuild
index 12e2ed5..73ee5c4 100644
--- a/www-client/firefox/firefox-55.0_beta7.ebuild
+++ b/www-client/firefox/firefox-55.0_beta9.ebuild
@@ -24,7 +24,7 @@ if [[ ${MOZ_ESR} == 1 ]]; then
 fi
 
 # Patch version
-PATCH="${PN}-55.0-patches-04"
+PATCH="${PN}-55.0-patches-06"
 MOZ_HTTP_URI="https://archive.mozilla.org/pub/${PN}/releases;
 
 MOZCONFIG_OPTIONAL_WIFI=1



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

2017-07-16 Thread Andreas Sturmlechner
commit: 9732ed5c9dccf3e3520f1c4ef3c2b13d8b6f3964
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jul 16 16:38:14 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jul 16 16:39:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9732ed5c

profiles: Remove last-rited package

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 51153d043d5..ee760cb5e10 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -442,11 +442,6 @@ net-voip/homer
 # ffmpeg-3 neither with latest imagemagick (#575988). Removal in a month.
 media-sound/gejengel
 
-# Andreas Sturmlechner  (15 Jun 2017)
-# Last release 16.12.3, dropped upstream, never worked properly.
-# Masked for removal in 30 days.
-kde-apps/pim-storage-service-manager
-
 # Pawel Hajdan, Jr.  (11 Jun 2017)
 # Dev channel releases are only for people who are developers or want more
 # experimental features and accept a more unstable release.



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

2017-07-16 Thread Andrew Savchenko
commit: 7976e453eea2bb1c0fb2a404a5b70b976594bb97
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 16:33:06 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 16:33:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7976e453

games-engines/renpy: fix compat support for old games

- Katawa Shoujo, see bug 601200: check for window to be on list before removal
- Elven Relations: do not create removed style elements

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

 .../renpy/files/renpy-6.99.12.4-compat-style.patch |  43 
 .../files/renpy-6.99.12.4-compat-window.patch  |  51 +
 games-engines/renpy/renpy-6.99.12.4-r1.ebuild  | 116 +
 3 files changed, 210 insertions(+)

diff --git a/games-engines/renpy/files/renpy-6.99.12.4-compat-style.patch 
b/games-engines/renpy/files/renpy-6.99.12.4-compat-style.patch
new file mode 100644
index 000..122ebf1e43e
--- /dev/null
+++ b/games-engines/renpy/files/renpy-6.99.12.4-compat-style.patch
@@ -0,0 +1,43 @@
+commit 1d350d993d2b51df7880e92b48ed103e059ec385
+Author: Andrew Savchenko 
+Date:   Sun Jul 16 17:07:27 2017 +0300
+
+Fix compatibility problem With ElvenRelations-1.2:
+
+When starting game:
+
+Full traceback:
+  File "/home/andrew/src/_compat/styles.rpymc", line 22, in script
+  File "/usr/lib64/python2.7/site-packages/renpy699/renpy/ast.py", line 
814, in execute
+renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, 
store=self.store)
+  File "/usr/lib64/python2.7/site-packages/renpy699/renpy/python.py", line 
1719, in py_exec_bytecode
+exec bytecode in globals, locals
+  File "renpy/common/_compat/styles.rpym", line 374, in 
+style.selected_button = _SelectedCompat('button')
+  File "renpy/common/_compat/styles.rpym", line 347, in __init__
+self.target = target
+  File "renpy/style.pyx", line 378, in renpy.style.StyleCore.__setattr__ 
(gen/renpy.style.c:6236)
+raise Exception("Style property {} is not known.".format(name))
+Exception: Style property target is not known.
+
+"button*" properties are no longer present in RenPy, so relevant
+code is removed.
+
+diff --git a/renpy/common/_compat/styles.rpym 
b/renpy/common/_compat/styles.rpym
+index d83eeb0..174f0b6 100644
+--- a/renpy/common/_compat/styles.rpym
 b/renpy/common/_compat/styles.rpym
+@@ -371,13 +371,6 @@ init python:
+ self.property_updates = [ ]
+ 
+ 
+-style.selected_button = _SelectedCompat('button')
+-style.selected_button_text = _SelectedCompat('button_text')
+-style.gm_nav_selected_button = _SelectedCompat('gm_nav_button')
+-style.gm_nav_selected_button_text = _SelectedCompat('gm_nav_button_text')
+-style.prefs_selected_button = _SelectedCompat('prefs_button')
+-style.prefs_selected_button_text = _SelectedCompat('prefs_button_text')
+-
+ def _apply_selected_compat():
+ for scs in _selected_compat:
+ scs.apply()

diff --git a/games-engines/renpy/files/renpy-6.99.12.4-compat-window.patch 
b/games-engines/renpy/files/renpy-6.99.12.4-compat-window.patch
new file mode 100644
index 000..8c8bd21b4f6
--- /dev/null
+++ b/games-engines/renpy/files/renpy-6.99.12.4-compat-window.patch
@@ -0,0 +1,51 @@
+commit cf3f7fd4cb69c154f43a5e00c7501463a6d63ff5
+Author: Andrew Savchenko 
+Date:   Sun Jul 16 16:59:14 2017 +0300
+
+Fix compatibility problem with Katawa Shoujo 1.3.1
+
+The game fails to start with renpy-6.99.12.4:
+
+I'm sorry, but an uncaught exception occurred.
+
+While running game code:
+  File "game/ui_settings.rpy", line 21, in 
+  File "renpy/common/00compat.rpy", line 134, in _set_script_version
+config.window_auto_hide.remove("call screen")
+ValueError: list.remove(x): x not in list
+
+-- Full Traceback 

+
+Full traceback:
+  File "/home/rondo/ui_settings.rpyc", line 2, in script
+  File "/usr/lib64/python2.7/site-packages/renpy699/renpy/ast.py", line 
814, in execute
+renpy.python.py_exec_bytecode(self.code.bytecode, self.hide, 
store=self.store)
+  File "/usr/lib64/python2.7/site-packages/renpy699/renpy/python.py", line 
1695, in py_exec_bytecode
+exec bytecode in globals, locals
+  File "game/ui_settings.rpy", line 21, in 
+  File 
"/usr/lib64/python2.7/site-packages/renpy699/renpy/defaultstore.py", line 92, 
in __setattr__
+renpy.store._set_script_version(value)  # E1101 @UndefinedVariable
+  File "renpy/common/00compat.rpy", line 134, in _set_script_version
+config.window_auto_hide.remove("call screen")
+  File "/usr/lib64/python2.7/site-packages/renpy699/renpy/python.py", line 
610, in do_mutation
+return method(self, *args, 

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

2017-07-16 Thread Andrew Savchenko
commit: ef3c98846464cdc5571c7a40c047c013f93c1e0b
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Sun Jul 16 16:35:22 2017 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Sun Jul 16 16:35:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef3c9884

app-eselect/eselect-renpy: add myself to maintainers

As games-engines/renpy maintainer I have to update this package as well.

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

 app-eselect/eselect-renpy/metadata.xml | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/app-eselect/eselect-renpy/metadata.xml 
b/app-eselect/eselect-renpy/metadata.xml
index 3c186688e26..3d9228cdbf8 100644
--- a/app-eselect/eselect-renpy/metadata.xml
+++ b/app-eselect/eselect-renpy/metadata.xml
@@ -1,8 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
ga...@gentoo.org
Gentoo Games Project

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



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

2017-07-16 Thread Cédric Krier
commit: f9a4d174e1ef1d719fa896f70f915b6ca48e4d38
Author: Cédric Krier  gentoo  org>
AuthorDate: Sun Jul 16 15:52:27 2017 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Sun Jul 16 15:52:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a4d174

dev-python/zeep: Version bumps to 2.2.0

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/zeep/Manifest  |  1 +
 dev-python/zeep/zeep-2.2.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/zeep/Manifest b/dev-python/zeep/Manifest
index c61d5de9da2..099d69e1f34 100644
--- a/dev-python/zeep/Manifest
+++ b/dev-python/zeep/Manifest
@@ -1 +1,2 @@
 DIST zeep-1.6.0.tar.gz 137181 SHA256 
9f2aeacf8ebf702a61123078b25a6212917b4fe473ce487f23efac292d5b58cb SHA512 
b0922cc808dcf0bb1b817b6131f92a726738f2ecfdd903981d87012dd9a54e323ec79bb54d10702dd7f8d00f49c1942ccfd08be7e4983d460122cfb466ffb502
 WHIRLPOOL 
17f929ffea6803cd305d9bb414f90d3d431b70687991cda90a1eaa205a61a97c56b62ff8afd3dd849f0c507ea56110d09460d2592acb76b6a08dc30605c9ed90
+DIST zeep-2.2.0.tar.gz 143349 SHA256 
673811a00c05f6cc4b3dff1ef7abfcd845614cdcdff2961bf5b10aadfd40f5a8 SHA512 
53abb4ec2e4f178dd60a800a943d6fc8ff2b11c19d0f1af11603a9424cd41da3d33471f81ed293451203a147e36bdbe67d6d708da41d020286808c19d7372501
 WHIRLPOOL 
1954c6573908ff3470223178e027ceaa798dccfd0fe0c0ce3fea20ccbaf5a939667e13a7dbcf720dc54d4859e9517c12723323e1e3398fcc3fe0030aa020ce0b

diff --git a/dev-python/zeep/zeep-2.2.0.ebuild 
b/dev-python/zeep/zeep-2.2.0.ebuild
new file mode 100644
index 000..9fc381b4d84
--- /dev/null
+++ b/dev-python/zeep/zeep-2.2.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+inherit distutils-r1
+
+DESCRIPTION="A modern/fast Python SOAP client based on lxml / requests"
+HOMEPAGE="http://docs.python-zeep.org/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="async"
+
+DEPEND="dev-python/setuptools"
+RDEPEND="${DEPEND}
+   >=dev-python/appdirs-1.4.0
+   >=dev-python/cached-property-1.3.0
+   >=dev-python/defusedxml-0.4.1
+   >=dev-python/isodate-0.5.4
+   >=dev-python/lxml-3.0.0
+   >=dev-python/requests-2.7.0
+   >=dev-python/requests-toolbelt-0.7.1
+   >=dev-python/six-1.9.0
+   dev-python/pytz
+   async? ( >=dev-python/aiohttp-1.0 )"
+
+DOCS=( README.rst CHANGES )



[gentoo-commits] proj/kde:master commit in: kde-apps/kdeaccessibility-meta/

2017-07-16 Thread Andreas Sturmlechner
commit: 0fea85915acb81cae8853edd6b54742816a6f920
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jul 16 15:46:35 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jul 16 15:46:35 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0fea8591

kde-apps/kdeaccessibility-meta: kmag is KF5-based

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../kdeaccessibility-meta/kdeaccessibility-meta-17.08.49..ebuild| 2 +-
 kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-17.08.49..ebuild 
b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-17.08.49..ebuild
index b999066e7f..0448ce09e4 100644
--- a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-17.08.49..ebuild
+++ b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-17.08.49..ebuild
@@ -12,11 +12,11 @@ IUSE="nls +qt4"
 [[ ${KDE_BUILD_TYPE} = live ]] && L10N_MINIMAL=${KDE_APPS_MINIMAL}
 
 RDEPEND="
+   $(add_kdeapps_dep kmag)
$(add_kdeapps_dep kmousetool)
qt4? (
$(add_kdeapps_dep jovie)
$(add_kdeapps_dep kaccessible)
-   $(add_kdeapps_dep kmag)
$(add_kdeapps_dep kmouth)
nls? ( $(add_kdeapps_dep kde4-l10n '' ${L10N_MINIMAL}) )
)

diff --git a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild 
b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
index b999066e7f..0448ce09e4 100644
--- a/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
+++ b/kde-apps/kdeaccessibility-meta/kdeaccessibility-meta-.ebuild
@@ -12,11 +12,11 @@ IUSE="nls +qt4"
 [[ ${KDE_BUILD_TYPE} = live ]] && L10N_MINIMAL=${KDE_APPS_MINIMAL}
 
 RDEPEND="
+   $(add_kdeapps_dep kmag)
$(add_kdeapps_dep kmousetool)
qt4? (
$(add_kdeapps_dep jovie)
$(add_kdeapps_dep kaccessible)
-   $(add_kdeapps_dep kmag)
$(add_kdeapps_dep kmouth)
nls? ( $(add_kdeapps_dep kde4-l10n '' ${L10N_MINIMAL}) )
)



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

2017-07-16 Thread Cédric Krier
commit: 7b6e13d6c900bbbc8cfaf976c4946c8fcdbfeb5b
Author: Cédric Krier  gentoo  org>
AuthorDate: Sun Jul 16 15:44:35 2017 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Sun Jul 16 15:46:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b6e13d6

dev-python/stripe: Version bumps to 1.62.0 and add test

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-python/stripe/Manifest   |  2 +-
 .../{stripe-1.55.1.ebuild => stripe-1.62.0.ebuild}   | 16 
 2 files changed, 13 insertions(+), 5 deletions(-)

diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
index 2271453e341..1aae0fde51a 100644
--- a/dev-python/stripe/Manifest
+++ b/dev-python/stripe/Manifest
@@ -1 +1 @@
-DIST stripe-1.55.1.tar.gz 189588 SHA256 
4fd5e60a7cd3311fbcc53ffc2cfa27501438ec96d58139ede1550d87b24fd7e2 SHA512 
067f1d998901b862b2d47e4597504f5b180872b62217deae19cc7a81799e4562db54e37b34d431a9d2171e8c7ce8b8a43a2e55ac1a60e1198f15eb63620f812e
 WHIRLPOOL 
dad2b7208a49824a1af1eab2efe61c344af40a3fca130f94b4f406582716b954f9d09ecabe0f77d0e955cdac7283cbc66ef6253aed1ecb685396f6b1ac7f502e
+DIST stripe-1.62.0.tar.gz 190349 SHA256 
03136c5ce8fad86e265629daf4adae9dc6e1a44b6e4a08e731783764bf970fb8 SHA512 
b90b96c3d76dfddc39659dbbf055da3d93cdbeb600267fceb4fa6f82b4f993e63f9da9bc49373fd3fbe4db575d214a333169f19fc30bbc4563a6451f29dcf8ca
 WHIRLPOOL 
cca3861360d2ec0408c57a45e45d4e3a77f23c29f71ab6a72380d043fcd237785b05766d2fcff95799716f8c54d048fe0577aeef4e4744a7e254aff3823eb86e

diff --git a/dev-python/stripe/stripe-1.55.1.ebuild 
b/dev-python/stripe/stripe-1.62.0.ebuild
similarity index 65%
rename from dev-python/stripe/stripe-1.55.1.ebuild
rename to dev-python/stripe/stripe-1.62.0.ebuild
index 6a21a480282..67403320587 100644
--- a/dev-python/stripe/stripe-1.55.1.ebuild
+++ b/dev-python/stripe/stripe-1.62.0.ebuild
@@ -13,10 +13,18 @@ SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="test"
 
-DEPEND=""
-RDEPEND="${DEPEND}
-   dev-python/requests"
+RDEPEND=">=dev-python/requests-0.8.8"
+DEPEND="${RDEPEND}
+   test? (
+   dev-python/unittest2
+   dev-python/mock
+   dev-python/pycurl
+   )"
 
 DOCS="LONG_DESCRIPTION.rst"
+
+python_test() {
+   ${PYTHON:-python} -Wall setup.py test || die
+}



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

2017-07-16 Thread Mike Pagano
commit: b2e765ebe88f4c4ea852b3fcab1b7bfcf1da0c9a
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jul 16 15:42:22 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jul 16 15:42:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2e765eb

sys-kernel/gentoo-sources: Linux patch 4.4.77

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.4.77.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f44813aa5cb..cf82b6372a3 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -77,6 +77,9 @@ DIST genpatches-4.4-78.extras.tar.xz 16460 SHA256 
1d40b1955ecb836c2c069d717ab01b
 DIST genpatches-4.4-79.base.tar.xz 1321160 SHA256 
bdcde7494fa48ffc20152c28460524be70e8bf3f83b813436b1d811402b784ad SHA512 
39ce4dbd85140cf0822fbd3925e6c8b1f88686c2ba2d9db5ebebcdd8576e57d253de723023f9f14dc65b76775f9bc91d8ebf67f875c2136bd50f0d544b5ae340
 WHIRLPOOL 
4288a42938d629b9083f51cc90e0f875794bbe47e035e5f950c1bbf7c6c87ba204a4144de503ccad35fe6de13c3e878894c774c780e843ab0a0973f0ef6c
 DIST genpatches-4.4-79.experimental.tar.xz 87768 SHA256 
b5c5a24ca5638c859d94b76e8a542d6aa8d2aea5dcb9df265714fec87d75d2e9 SHA512 
5c8993261bb2dd52fa5e12dcd7c2dc35dd890d364be71d9937e330f5d431d4ecd3143320ddaad9ab0adb01002157f219ccca718fb7cfe1770b4a184534847e62
 WHIRLPOOL 
4ef2828edfc3348eec146eea2becba00c82e66d4465099407e0e0590014b2d6005887250db837ac71cbb194777d98fd2079ca9ded6b83495713ef2ad8260207d
 DIST genpatches-4.4-79.extras.tar.xz 16472 SHA256 
131c004ec86e0153e15c5d8b8544d56b6124a9536eafed4cad1c94e52920b501 SHA512 
43b020d9b7be89512fe3abc405d33205afac2abb2e9bdee360e46081a2601b124c5646cd0b5e7a81a61c0dc709881c0c14a098de693d8522d5926e9b91213aa9
 WHIRLPOOL 
5baa2d0818f914d41644973ec69275da277bcae7b1ca1fde62f02b873f3ddb9281541b479511aa9358e899a031a5a5e4337ef14f06b6a75ac4415c33fdbfb1b3
+DIST genpatches-4.4-80.base.tar.xz 1331828 SHA256 
bba5b402776c259c48137b5495c9118d0290bc357dff317debc8e34049a8225d SHA512 
627702f108135df4e8109dc9e4652cbf5a0637a9f3e8f3da3699fe0a862df1f0a8c1905e9a61bd852fb691c7a36197c5cd63a66f8a7dad7a2cccd506177d3114
 WHIRLPOOL 
a1bbc37e3b2156ecc19c2f0c2b6928941323a93bbbf37a1144d458cf973553ac4aa0075d8f4d3180f501bb8214b99fdd1b7d1dd60537e50046705dcb3d5bc4c3
+DIST genpatches-4.4-80.experimental.tar.xz 87768 SHA256 
a388c72f2415e21a2d39c2ea4128c5cfb535449250d02ed9f238b5c4f8261f56 SHA512 
60467a08dec92bc845150dc648979a1a53f49e2c2e85127a297b2b3cc067f05ad957a59f83aa9677927887d335529586c5d1f7d555bdb3c90ee37fec8c7e4b03
 WHIRLPOOL 
d88618300bad5a512ad04990985cc03a3313080e443c52f70c0353f49c13a7111dde19bf2fe344a86b2e00efd70ed05553dae3f44474b5bfb92ddf3ab588355a
+DIST genpatches-4.4-80.extras.tar.xz 16468 SHA256 
85ae2def7fb42f6ca09fdba5034a8d843c8d7e0b08a1580c3e292021d65614a1 SHA512 
ce9850020abf844a3c1af58e7103b980aad30318238690c263eb17f244339f8bc0385e97875eebedb2e1215ab0e19f9905793960f7b6ef4a742d95a1ccd7b42c
 WHIRLPOOL 
aac7643a008738229d717ed47c1b293f7e7d1fe9c4fb2627feebfcab3b8ea7ce3a2fcc813cc4460fe2b60cfafc6b2a1603ab58974c015877911219b89fa7efcf
 DIST genpatches-4.9-18.base.tar.xz 385508 SHA256 
d29fc16842e846c2c6487e9c1543e6fe43429d34882ac9c6ca070c1fe3564605 SHA512 
c1d08b3d66df74efe610cbf586921f7caa57bb8337848380fdc8e2034883180a60a26dab9ded50974fb468d35dc923912ead08cb0f751a515cef85efb31955d9
 WHIRLPOOL 
e1ef981b945718eab2e96470f96a033cc2b1ede6c706d6cd3e32f4f1c4e066766135141d55a5ccee06d9fb84bc66df389cdb2d095ad569bd565afc600b3b4095
 DIST genpatches-4.9-18.experimental.tar.xz 105616 SHA256 
209be56c1efb0ba3fbee17f2437bd00b36caecc6c44db2b4e1a0e46ae17640b0 SHA512 
37d6983f46ed4031f11f91ffcdacb510b40cab682d71ac471ab3c2ae78598ee9826068afb8b1388d96133635ba2680cc106624e0d79c341d2610b4f74330b773
 WHIRLPOOL 
5af9422c0526c5e23977f2d25ea683ed1ecf6f9e14a6daf52490bd808e9790cf6f6d9ef96353bda3474197eb954159575a4f0e6a768a86777d9b8a61828d0a0e
 DIST genpatches-4.9-18.extras.tar.xz 17348 SHA256 
64167f17f122f969476bf68a3e0493a77d7ae9e78087c2748cdfdc6e6186af2a SHA512 
dcbdea379a0e28e9b8ed08b32ee71a36ce9ccc817e5b79f38759031e3324441f3e91e6b7e2802d1a694574bb4ce9e8f441d88ccbbd9280b3a4456eadab7d5fec
 WHIRLPOOL 
1d3ba61d03d17a707a65423e85f7f3a235a9d39fb26e4602b5cf663e097dc9e8618380d7a54db60705e6b38e9c0674330df57a6e243c7215411275a489ab8b42

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.77.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.77.ebuild
new file mode 100644
index 000..d3ed39650d4
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.77.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="80"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm 

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

2017-07-16 Thread Mike Pagano
commit: 4cd428f4480caea40fc41813b51c97c7d86db19b
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jul 16 14:44:26 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jul 16 14:44:40 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4cd428f4

sys-kernel/git-sources: Remove old 4.12-rcX version

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/git-sources/Manifest|  8 -
 sys-kernel/git-sources/git-sources-4.12_rc1.ebuild | 40 --
 sys-kernel/git-sources/git-sources-4.12_rc2.ebuild | 40 --
 sys-kernel/git-sources/git-sources-4.12_rc3.ebuild | 40 --
 sys-kernel/git-sources/git-sources-4.12_rc4.ebuild | 40 --
 sys-kernel/git-sources/git-sources-4.12_rc5.ebuild | 40 --
 sys-kernel/git-sources/git-sources-4.12_rc6.ebuild | 40 --
 sys-kernel/git-sources/git-sources-4.12_rc7.ebuild | 40 --
 8 files changed, 288 deletions(-)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index 8cbc62e9f61..9fb9d53215e 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -1,10 +1,2 @@
-DIST linux-4.11.tar.xz 95447768 SHA256 
b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6 SHA512 
6610eed97ffb7207c71771198c36179b8244ace7222bebb109507720e26c5f17d918079a56d5febdd8605844d67fb2df0ebe910fa2f2f53690daf6e2a8ad09c3
 WHIRLPOOL 
f577b7c5c209cb8dfef2f1d56d77314fbd53323743a34b900e2559ab0049b7c2d6262bda136dd3d005bc0527788106e0484e46558448a8720dac389a969e5886
 DIST linux-4.12.tar.xz 99186576 SHA256 
a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab SHA512 
8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
 WHIRLPOOL 
3b97da251c2ba4ace4a27b708f2b1dcf94cb1b59aaeded6acb74bd98f0d3e33f1df83670665e4186d99a55daa84c88d539d93e20f0ff18a6d46ef326c48dd375
-DIST patch-4.12-rc1.patch 89253799 SHA256 
516dc994c0d1872f27bb83e07f6d2dd506594ae0bc88e5a11e5637dc2b446f2f SHA512 
d58b40b44923ffd8d51c58c4ea2c5de75b766888bd65147c308441e77b56deda8476f211edcadc2eb2e4959b35d2a27b4edcb3bd3261787a9f1d0ae491e92200
 WHIRLPOOL 
0e388627277a97af05bf3f3fff09c03bac2ec60bdc56feb0cd2664aa73c6ef150be50cbaba6fa866911ea3e1074b7c55b6dfb906684b6bb4b1dcd8028887cb1e
-DIST patch-4.12-rc2.patch 89563541 SHA256 
76e32580cc6fa58e016453856267d61e2b2c464d3bf6808f26c32de9729023fa SHA512 
f3ada61c34ff3c39e4bc76fb62a0bfa23e21f4a6f40caa8b51085da57c1938878a070856a7bd2f0abaeb353fbc86eb5e07da466edcabfb5d34d7edf5f4b00655
 WHIRLPOOL 
b356e682df8ec325137b09b9f935a715e0a0d5eb3a6b0e42e3ab51d1702044c4741309cc861767a53a9b0eb79663146b58b2414e910a103d595b6232ff8c4cac
-DIST patch-4.12-rc3.patch 89897831 SHA256 
d7cd828bdeb0d8b2a584ae87449ab88df8f4344d04add02a4e1ada8067ddbd34 SHA512 
82ada025b3b28ecd9effccc4c414c4e6f1dd24c06f4f62eced557e30ccc41c1575927129b6c7dd956ad99d8561522ed5dc3255037b6c3fcedef88b9aa11ebaa4
 WHIRLPOOL 
a6af83a4918a60c2b0fc77617c374751a1fc5bf37d5a10abcffc07bf9686a3904d49546b28a33481c8f8aa8ab0cd9fb410f8ce709049223b39f3569f9ddec6fb
-DIST patch-4.12-rc4.patch 90081481 SHA256 
39240c2f354b303894c77ff14a371d4d05cf4425b7e90135fb72d4cf66df0039 SHA512 
0672cf1768f46d9eaed2d47ddffbcaee7b8be9172b479aa037747794225286eb19fffa72bf9f4b401fb4e83de4328bab97405d812e9aeea43ea68cc418bb23a0
 WHIRLPOOL 
3cead50e6cb5cd794652333772249fcfeebb2ff445922268653cf852c4bbc0ad3bd4d629bab3f6e8fb484c574431a277c01543fada73229d9ebbcefd2ca49870
-DIST patch-4.12-rc5.patch 90389826 SHA256 
b3933852635fc2633bf24357686ea8882c99ab6ea3c8101527a963816aa7b606 SHA512 
a5cf9539cd494430933f31d93bc3a952bcb6fca47588c9e4d55957463bd605da667b0f433130e116bf6b09d95e120ea23e8911a51a23b37ef4c4922147b222c8
 WHIRLPOOL 
afbbe0e851d8975488f946b997eea3b987b7fc501cc5722cc40b2789ff4347fdd2824e20e1d193dcf896d19472af430f2e8b5ac38166c2cd51c5b8c8bd606784
-DIST patch-4.12-rc6.patch 90747250 SHA256 
b4677b0fc2fa5d9934e41e868981e2a81745b05859cc827e82a97acb5943cd4e SHA512 
ac18d248830a5c1cd205c77f1eea0ab50fbb168bccdd3362190c9ba049981b557f614e60aa25bc448c55e2883e12ceab30a1a54bd8c7b0eb09a39925eab26670
 WHIRLPOOL 
ff904bd44669f5e9d20df0cd41fcca4fe901d1a6d6ee6890256640d187307859be53b6c4c753d203d8998e48808ac28d350a2353e5d1665a43ab30f1f62601a3
-DIST patch-4.12-rc7.patch 90886897 SHA256 
42590d3377111c74877f0f9e78d4ec7e56df750fd818011a230b8d9c9e397756 SHA512 
99b8afe9456b26443cc80eccd8b6fa2d39bbfe4dcbbf41a7957f4188fc8128653400d276c488331a226fb0e24f3bb3f3366c1902658bb07ef9f233572e84e51c
 WHIRLPOOL 
6051209f5febdf35182e7231b6b9dd75edb954009a26d4dc65fcf828b5a6b6f01962be899b6e2284beaee9b2c075b579f7619fa00c8e12ff9b8043481427a788
 DIST patch-4.13-rc1.patch 68530295 SHA256 
4be8ec611672ee0907635b9b6fd83c7f35e122f1ad1bf78b7210a6c17ce9d1e0 SHA512 
a781b939853ffaa31ad088cdfe788fd5e3be2e2a1243798fbf5f0a4fcdd81bd23a41c9aea3d399c585334043667c21e0becca9e5e657ec9a671ba8e52413344a
 WHIRLPOOL 

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

2017-07-16 Thread Jason Donenfeld
commit: 76b8170ff1bf8150c1050e807f147588817ac3cb
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Sun Jul 16 14:41:56 2017 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Sun Jul 16 14:42:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76b8170f

net-vpn/wireguard: update website

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-vpn/wireguard/wireguard-0.0.20170706.ebuild | 2 +-
 net-vpn/wireguard/wireguard-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/wireguard/wireguard-0.0.20170706.ebuild 
b/net-vpn/wireguard/wireguard-0.0.20170706.ebuild
index 0f1b5d07cb7..ff291933ed8 100644
--- a/net-vpn/wireguard/wireguard-0.0.20170706.ebuild
+++ b/net-vpn/wireguard/wireguard-0.0.20170706.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit linux-mod bash-completion-r1
 
 DESCRIPTION="Simple yet fast and modern VPN that utilizes state-of-the-art 
cryptography."
-HOMEPAGE="https://www.wireguard.io/;
+HOMEPAGE="https://www.wireguard.com/;
 
 if [[ ${PV} ==  ]]; then
inherit git-r3

diff --git a/net-vpn/wireguard/wireguard-.ebuild 
b/net-vpn/wireguard/wireguard-.ebuild
index 0f1b5d07cb7..ff291933ed8 100644
--- a/net-vpn/wireguard/wireguard-.ebuild
+++ b/net-vpn/wireguard/wireguard-.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 inherit linux-mod bash-completion-r1
 
 DESCRIPTION="Simple yet fast and modern VPN that utilizes state-of-the-art 
cryptography."
-HOMEPAGE="https://www.wireguard.io/;
+HOMEPAGE="https://www.wireguard.com/;
 
 if [[ ${PV} ==  ]]; then
inherit git-r3



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

2017-07-16 Thread Mike Pagano
commit: 5628c5c5b34d592b98aadac8a0ee4f591a6f20fe
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jul 16 14:36:36 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jul 16 14:36:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5628c5c5

sys-kernel/git-sources: Linux patch 4.13-rc1

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-kernel/git-sources/Manifest|  2 ++
 sys-kernel/git-sources/git-sources-4.13_rc1.ebuild | 40 ++
 2 files changed, 42 insertions(+)

diff --git a/sys-kernel/git-sources/Manifest b/sys-kernel/git-sources/Manifest
index a0adb65dfa7..8cbc62e9f61 100644
--- a/sys-kernel/git-sources/Manifest
+++ b/sys-kernel/git-sources/Manifest
@@ -1,4 +1,5 @@
 DIST linux-4.11.tar.xz 95447768 SHA256 
b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6 SHA512 
6610eed97ffb7207c71771198c36179b8244ace7222bebb109507720e26c5f17d918079a56d5febdd8605844d67fb2df0ebe910fa2f2f53690daf6e2a8ad09c3
 WHIRLPOOL 
f577b7c5c209cb8dfef2f1d56d77314fbd53323743a34b900e2559ab0049b7c2d6262bda136dd3d005bc0527788106e0484e46558448a8720dac389a969e5886
+DIST linux-4.12.tar.xz 99186576 SHA256 
a45c3becd4d08ce411c14628a949d08e2433d8cdeca92036c7013980e93858ab SHA512 
8e81b41b253e63233e92948941f44c6482acb52aa3a3fd172f03a38a86f2c35b2ad4fd407acd1bc3964673eba344fe104d3a03e3ff4bf9cd1f22bd44263bd728
 WHIRLPOOL 
3b97da251c2ba4ace4a27b708f2b1dcf94cb1b59aaeded6acb74bd98f0d3e33f1df83670665e4186d99a55daa84c88d539d93e20f0ff18a6d46ef326c48dd375
 DIST patch-4.12-rc1.patch 89253799 SHA256 
516dc994c0d1872f27bb83e07f6d2dd506594ae0bc88e5a11e5637dc2b446f2f SHA512 
d58b40b44923ffd8d51c58c4ea2c5de75b766888bd65147c308441e77b56deda8476f211edcadc2eb2e4959b35d2a27b4edcb3bd3261787a9f1d0ae491e92200
 WHIRLPOOL 
0e388627277a97af05bf3f3fff09c03bac2ec60bdc56feb0cd2664aa73c6ef150be50cbaba6fa866911ea3e1074b7c55b6dfb906684b6bb4b1dcd8028887cb1e
 DIST patch-4.12-rc2.patch 89563541 SHA256 
76e32580cc6fa58e016453856267d61e2b2c464d3bf6808f26c32de9729023fa SHA512 
f3ada61c34ff3c39e4bc76fb62a0bfa23e21f4a6f40caa8b51085da57c1938878a070856a7bd2f0abaeb353fbc86eb5e07da466edcabfb5d34d7edf5f4b00655
 WHIRLPOOL 
b356e682df8ec325137b09b9f935a715e0a0d5eb3a6b0e42e3ab51d1702044c4741309cc861767a53a9b0eb79663146b58b2414e910a103d595b6232ff8c4cac
 DIST patch-4.12-rc3.patch 89897831 SHA256 
d7cd828bdeb0d8b2a584ae87449ab88df8f4344d04add02a4e1ada8067ddbd34 SHA512 
82ada025b3b28ecd9effccc4c414c4e6f1dd24c06f4f62eced557e30ccc41c1575927129b6c7dd956ad99d8561522ed5dc3255037b6c3fcedef88b9aa11ebaa4
 WHIRLPOOL 
a6af83a4918a60c2b0fc77617c374751a1fc5bf37d5a10abcffc07bf9686a3904d49546b28a33481c8f8aa8ab0cd9fb410f8ce709049223b39f3569f9ddec6fb
@@ -6,3 +7,4 @@ DIST patch-4.12-rc4.patch 90081481 SHA256 
39240c2f354b303894c77ff14a371d4d05cf44
 DIST patch-4.12-rc5.patch 90389826 SHA256 
b3933852635fc2633bf24357686ea8882c99ab6ea3c8101527a963816aa7b606 SHA512 
a5cf9539cd494430933f31d93bc3a952bcb6fca47588c9e4d55957463bd605da667b0f433130e116bf6b09d95e120ea23e8911a51a23b37ef4c4922147b222c8
 WHIRLPOOL 
afbbe0e851d8975488f946b997eea3b987b7fc501cc5722cc40b2789ff4347fdd2824e20e1d193dcf896d19472af430f2e8b5ac38166c2cd51c5b8c8bd606784
 DIST patch-4.12-rc6.patch 90747250 SHA256 
b4677b0fc2fa5d9934e41e868981e2a81745b05859cc827e82a97acb5943cd4e SHA512 
ac18d248830a5c1cd205c77f1eea0ab50fbb168bccdd3362190c9ba049981b557f614e60aa25bc448c55e2883e12ceab30a1a54bd8c7b0eb09a39925eab26670
 WHIRLPOOL 
ff904bd44669f5e9d20df0cd41fcca4fe901d1a6d6ee6890256640d187307859be53b6c4c753d203d8998e48808ac28d350a2353e5d1665a43ab30f1f62601a3
 DIST patch-4.12-rc7.patch 90886897 SHA256 
42590d3377111c74877f0f9e78d4ec7e56df750fd818011a230b8d9c9e397756 SHA512 
99b8afe9456b26443cc80eccd8b6fa2d39bbfe4dcbbf41a7957f4188fc8128653400d276c488331a226fb0e24f3bb3f3366c1902658bb07ef9f233572e84e51c
 WHIRLPOOL 
6051209f5febdf35182e7231b6b9dd75edb954009a26d4dc65fcf828b5a6b6f01962be899b6e2284beaee9b2c075b579f7619fa00c8e12ff9b8043481427a788
+DIST patch-4.13-rc1.patch 68530295 SHA256 
4be8ec611672ee0907635b9b6fd83c7f35e122f1ad1bf78b7210a6c17ce9d1e0 SHA512 
a781b939853ffaa31ad088cdfe788fd5e3be2e2a1243798fbf5f0a4fcdd81bd23a41c9aea3d399c585334043667c21e0becca9e5e657ec9a671ba8e52413344a
 WHIRLPOOL 
7528166cc9f095ce10650c5df11cd185581be0aa7c6536f44346466352bfaa1ed3c93f50957b511cd0241f1bae67b6608615d092226ec483229fe1785b4349b8

diff --git a/sys-kernel/git-sources/git-sources-4.13_rc1.ebuild 
b/sys-kernel/git-sources/git-sources-4.13_rc1.ebuild
new file mode 100644
index 000..125764c702a
--- /dev/null
+++ b/sys-kernel/git-sources/git-sources-4.13_rc1.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+UNIPATCH_STRICTORDER="yes"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_NOUSEPR="yes"
+K_SECURITY_UNSUPPORTED="1"
+K_BASE_VER="4.12"
+K_EXP_GENPATCHES_NOUSE="1"
+K_FROM_GIT="yes"
+ETYPE="sources"
+CKV="${PVR/-r/-git}"
+
+# only use this if it's not an _rc/_pre release

[gentoo-commits] repo/gentoo:master commit in: sys-auth/docker_auth/, sys-auth/docker_auth/files/

2017-07-16 Thread Manuel Rüger
commit: 15ba64574f1bc3e00334c945ca49092eaa07276a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 13:14:16 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 13:15:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15ba6457

sys-auth/docker_auth: Update snapshot

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-auth/docker_auth/Manifest  |   5 +
 .../docker_auth/docker_auth-1.2.1_p20170711.ebuild |  77 +
 .../files/docker_auth-ldap-group-support.patch | 363 +
 3 files changed, 445 insertions(+)

diff --git a/sys-auth/docker_auth/Manifest b/sys-auth/docker_auth/Manifest
index b392b14246d..f5f2b7db1bd 100644
--- a/sys-auth/docker_auth/Manifest
+++ b/sys-auth/docker_auth/Manifest
@@ -1,8 +1,11 @@
 DIST docker_auth-1.2.1.tar.gz 40378 SHA256 
8134310d34a2cb8dc1b2b843e8617eba508659133453b272d66459dc251a91f2 SHA512 
07fb139ccf8bd0e39541144bc320985f9865d1d710c8b5c5941d0ff6f6a9381d454522eadd44af9162e8d4b98b6c69926067b9439363e5ab104e67c1ae41f2b5
 WHIRLPOOL 
2b1c5a9e9120694641ae019c244ce097abb9f51fb34a25b2ee486674bc19dee1e24d26f5a8a922ad741971b4f60b13751b34565056603dd9b11095eac60bcd8b
+DIST docker_auth-1.2.1_p20170711.tar.gz 40378 SHA256 
8134310d34a2cb8dc1b2b843e8617eba508659133453b272d66459dc251a91f2 SHA512 
07fb139ccf8bd0e39541144bc320985f9865d1d710c8b5c5941d0ff6f6a9381d454522eadd44af9162e8d4b98b6c69926067b9439363e5ab104e67c1ae41f2b5
 WHIRLPOOL 
2b1c5a9e9120694641ae019c244ce097abb9f51fb34a25b2ee486674bc19dee1e24d26f5a8a922ad741971b4f60b13751b34565056603dd9b11095eac60bcd8b
 DIST github.com-cesanta-glog-22eb27a0ae192b290b25537b8e876556fc25129c.tar.gz 
20273 SHA256 9960f3d916d6dba8e7456fdef3982f57b6034321cb29d2df8c7ddb2d41d0 
SHA512 
3c4b757fc0d0e45382b1ef0180eea2f0429e8c7ecac0089fca79bc717f6c0a04918b91a144ca78331178cc914b808b40596c6a6e214157d2f812858be31c13d6
 WHIRLPOOL 
f4d4abff55e1704d53efb52072405199e6d10b72aaf4abe5b9fe0b2255014da311f3f5d95ba69d1e4faed74511d0641658562eb46ae6279a417b4ac40dc92971
 DIST github.com-dchest-uniuri-8902c56451e9b58ff940bbe5fec35d5f9c04584a.tar.gz 
2471 SHA256 f0e76f66c27b485fb8fd76ed0da635bf34751714487a16931f07bf1b1986b30f 
SHA512 
70421b526e3040a49e63be6c892de2953b4f9ecdb01b148eb2bab3814f610a8c39bd98aad858cbaf9dcf621b52ee9ef952f0cdcdc6eca77da8ebf80dbbf1c04c
 WHIRLPOOL 
63b97e4c3aa3b0275d3e2cd8f4fcdc523da62abba89b177c4f2a228bd7237fe719804e24616c082a41a2fef421ec3ed86be399cc207265675931a1e4cb73e050
+DIST 
github.com-deckarep-golang-set-3a36ffa8b5bf7cd329c8834c6b743d6930dad12f.tar.gz 
12556 SHA256 0a40212b47dab5aef266a4af14c84e96c3ed8a16eb6920168091192ed6f0cd33 
SHA512 
99403278805067a6f4d831f664e58b6bea510f2b51db3c1335f4b09a1dbb3b0ef886d7150faf48c7fba1f1c29f17f335b6a8af4b35e3dfe8be07daa8510adfe8
 WHIRLPOOL 
9326c0f9c1a0d72db28bb6678bd5d1ba0dc18979e1b67d9034890f5aea0440de7f65d054226cbd1234a8ac572ac832bc03e6fa221ec830a134b1b5e7f5a50d86
 DIST 
github.com-deckarep-golang-set-da5f92821c31f5f1e2fe1a768c8b6052278532f2.tar.gz 
11803 SHA256 13769b15f251990919c888fa63d08b901c4609a691833ae902fd2c8f71368ea9 
SHA512 
725882a828be7a76b403c40b818da91039c9654a27e1b1f25219ed382cfc36cafb0c03e651a4f5ea80e90de4bf0fdb58d826dfc2b3d2c28a40882f7d0064ee45
 WHIRLPOOL 
a1326a564d0ea98397672b4567cf73cc756fe8aa7447544bfdb5aef1ac13890a876253a19bdd1617fce628710d89f701c028b347dd734f06a722344eaee1dfa7
 DIST 
github.com-docker-distribution-a40abc69f2ecea20dd7944537a119c2ce2b3f957.tar.gz 
1744995 SHA256 64ce52b56f3d088d621db6dcbfbae95cee124a53175029286a1cb420bc5ec9f0 
SHA512 
223d36f74d35257c6e916c4b05e5f81efb3ffdfa0c01077307926e2cfa66e26e897ec718e00599a71c83e53c17726646476017a3d6a403c2ac797e7f29b0e7a2
 WHIRLPOOL 
fc7d84f4b6e28f39489f8e49addd11babb073332ba1b047c5c040249093f62cff2494b67b0ae8a45c7154480d1fbf8418a058adea568832398009896fba3e104
+DIST 
github.com-docker-distribution-f86db6b22663a27ba4d278220b7e34be528b1e79.tar.gz 
1754936 SHA256 ac7440fe991fa0d0616df3d9fb0a3d21be51d891041596e5f037bc0e979a1d60 
SHA512 
448d991bd9ac90185c65e06f3fbd5e2859f3fe7111d06dd56ecd6abc8a74374f031950d32dee130ab2aceddbd6d39b2f978a25b6879b05f0814521b676b49b2a
 WHIRLPOOL 
5fcf75423b43393737ef15c923aca29f3ec7ac6165511c4ec6c6d9c5fbc6cc2d3b9ce6fba8f111902a685b34bec5cfa2387b7676eb330eaf6ef9aa4beb56c474
 DIST 
github.com-docker-libtrust-aabc10ec26b754e797f9028f4589c5b7bd90dc20.tar.gz 
39352 SHA256 a3cb5fd53b4eb0ef259f039d0d10e237c8fff86993f9335959cf233956f0c065 
SHA512 
31d5a613807764c03d3356ee134bf384eca7953d4113e35d8fcce322611c25b444dd07904eb34c86c7e951529040c33fa821a56a687260e9298f900c7907e83b
 WHIRLPOOL 
0b1cd73ba1ca2858324d6bc7f862bb794480d908250b8e05b3b28ff06837420e3b71107d040d3dfdda031cbcb72d0d0a3e934406a06d0e21c9a69708363b8f92
 DIST 
github.com-facebookgo-clock-600d898af40aa09a7a93ecb9265d87b0504b6f03.tar.gz 
6382 SHA256 363140ddedf035ef012e0b17a35d32210f51b7f160c3fb0e89d08aa83d1870e0 
SHA512 
023741d93573d53471d1ec10a47c2a0034ecd0e0db35440b50bc7085ddd94e9cd5d0388586a25b060b50a1b9e442d4974a931b3f5d14aa1710629f19ad4acf8f
 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tornado/

2017-07-16 Thread Patrice Clement
commit: 4b31dfc6dd73239764ecc3b01dbee4043e7186f4
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jul 16 13:03:53 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jul 16 13:05:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b31dfc6

www-servers/tornado: use python_gen_cond_dep for backports-ssl-match-hostname 
dependency.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 www-servers/tornado/tornado-4.4.2-r1.ebuild | 2 +-
 www-servers/tornado/tornado-4.5.1.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-servers/tornado/tornado-4.4.2-r1.ebuild 
b/www-servers/tornado/tornado-4.4.2-r1.ebuild
index 9e359932b30..5321d46eb93 100644
--- a/www-servers/tornado/tornado-4.4.2-r1.ebuild
+++ b/www-servers/tornado/tornado-4.4.2-r1.ebuild
@@ -20,7 +20,7 @@ IUSE="doc examples test"
 CDEPEND="
dev-python/certifi[${PYTHON_USEDEP}]
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4')
|| (
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
(   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')

diff --git a/www-servers/tornado/tornado-4.5.1.ebuild 
b/www-servers/tornado/tornado-4.5.1.ebuild
index ab03eec142c..23317435e30 100644
--- a/www-servers/tornado/tornado-4.5.1.ebuild
+++ b/www-servers/tornado/tornado-4.5.1.ebuild
@@ -20,7 +20,7 @@ IUSE="doc examples test"
 CDEPEND="
dev-python/certifi[${PYTHON_USEDEP}]
>=dev-python/pycurl-7.19.3.1[${PYTHON_USEDEP}]
-   dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4')
|| (
>=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
(   $(python_gen_cond_dep 
'dev-python/twisted-names[${PYTHON_USEDEP}]' 'python2_7')



[gentoo-commits] repo/gentoo:master commit in: dev-go/delve/

2017-07-16 Thread Manuel Rüger
commit: 63b48661f9789c6da4d676605a89ae01cc2d22a0
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 12:58:46 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 12:58:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63b48661

dev-go/delve: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-go/delve/Manifest  |  1 -
 dev-go/delve/delve-0.11.0_alpha.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-go/delve/Manifest b/dev-go/delve/Manifest
index 01d7420e880..11dfc22d50a 100644
--- a/dev-go/delve/Manifest
+++ b/dev-go/delve/Manifest
@@ -1,3 +1,2 @@
-DIST delve-0.11.0_alpha.tar.gz 910021 SHA256 
47278abc6928161cca902b203dab9351aa27428d82c4eefae23fc457781733f5 SHA512 
57af18bd8a671ab7ad67980b84e9168795c5c72724117fad85a156eba6668fd4360faf2109833d29d6f3faea3f4856fa7094b5ff7687bf199d7e2b97f107c15e
 WHIRLPOOL 
4b3194207529c09cf222cc0166376e19e453b829abd7547a50b09d89a995839d7931194ba0c1dc77e28f20d14e16273c66aa1ba50b5e2e0fe6dff4c42a983c84
 DIST delve-0.12.2.tar.gz 1127128 SHA256 
3dc9f6b7167b87dfa1142ddf6865ff4be6593624a965533870ce0c7aae007299 SHA512 
f2351340a1f9cefe2410535cda79ad5ef5ad3c3783cd5869d8f0b682d5c109ea6efd3041f9ccc9988ccef77922c9bfab59ca062d98f429f85466b3e2ccc1
 WHIRLPOOL 
a653637e19b58fb06b79ed30f95491cea17f683aeb607c19659cd2685d11336255acb22f2b9c5348cd128679ef589848ab3a7d162fd5d4cfbd885b4460791803
 DIST delve-1.0.0_rc1.tar.gz 1268859 SHA256 
8071749a9bdfa6d4e1435d69d6685be3fdf8d096f37cdf971bc6bdb54b613ab7 SHA512 
97e58bd7e00089bcdee7fa6e749a6c5b72cf5d63f776d56b6000703371091129ac52ab58601256429362d12c88a4ba7cd0d3d196d5cee2d6d2701a73963a9358
 WHIRLPOOL 
170909e7e4ce710b6a372fb2532516cc2b2c3e02187ef2e0a60944a25f41aedb7a970e818b1b0968f693c461c85be842bfced4d63e3de2ae615625dbadb9f295

diff --git a/dev-go/delve/delve-0.11.0_alpha.ebuild 
b/dev-go/delve/delve-0.11.0_alpha.ebuild
deleted file mode 100644
index a298429223a..000
--- a/dev-go/delve/delve-0.11.0_alpha.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-EGO_PN="github.com/derekparker/delve"
-
-if [[ ${PV} == * ]]; then
-   inherit golang-vcs
-else
-   EGIT_COMMIT="v${PV/_/-}"
-   DELVE_SHA="6774a6c"
-   SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64"
-   inherit golang-vcs-snapshot
-fi
-
-DESCRIPTION="A source-level debugger for the Go programming language"
-HOMEPAGE="http://github.com/derekparker/delve;
-
-LICENSE="MIT"
-SLOT="0"
-IUSE=""
-
-S=${WORKDIR}/${P}/src/${EGO_PN}
-
-src_compile() {
-   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" go build -ldflags="-X 
main.Build=${DELVE_SHA}" -o "bin/dlv" ./cmd/dlv || die
-}
-
-src_install() {
-   dodoc README.md CHANGELOG.md
-   dobin bin/dlv
-}



[gentoo-commits] repo/gentoo:master commit in: dev-go/delve/

2017-07-16 Thread Manuel Rüger
commit: b386d4e0b2bb951985c123747969177611728704
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 12:58:10 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 12:58:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b386d4e0

dev-go/delve: Version bump to 1.0.0_rc1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-go/delve/Manifest   |  1 +
 dev-go/delve/delve-1.0.0_rc1.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/dev-go/delve/Manifest b/dev-go/delve/Manifest
index fad865ca366..01d7420e880 100644
--- a/dev-go/delve/Manifest
+++ b/dev-go/delve/Manifest
@@ -1,2 +1,3 @@
 DIST delve-0.11.0_alpha.tar.gz 910021 SHA256 
47278abc6928161cca902b203dab9351aa27428d82c4eefae23fc457781733f5 SHA512 
57af18bd8a671ab7ad67980b84e9168795c5c72724117fad85a156eba6668fd4360faf2109833d29d6f3faea3f4856fa7094b5ff7687bf199d7e2b97f107c15e
 WHIRLPOOL 
4b3194207529c09cf222cc0166376e19e453b829abd7547a50b09d89a995839d7931194ba0c1dc77e28f20d14e16273c66aa1ba50b5e2e0fe6dff4c42a983c84
 DIST delve-0.12.2.tar.gz 1127128 SHA256 
3dc9f6b7167b87dfa1142ddf6865ff4be6593624a965533870ce0c7aae007299 SHA512 
f2351340a1f9cefe2410535cda79ad5ef5ad3c3783cd5869d8f0b682d5c109ea6efd3041f9ccc9988ccef77922c9bfab59ca062d98f429f85466b3e2ccc1
 WHIRLPOOL 
a653637e19b58fb06b79ed30f95491cea17f683aeb607c19659cd2685d11336255acb22f2b9c5348cd128679ef589848ab3a7d162fd5d4cfbd885b4460791803
+DIST delve-1.0.0_rc1.tar.gz 1268859 SHA256 
8071749a9bdfa6d4e1435d69d6685be3fdf8d096f37cdf971bc6bdb54b613ab7 SHA512 
97e58bd7e00089bcdee7fa6e749a6c5b72cf5d63f776d56b6000703371091129ac52ab58601256429362d12c88a4ba7cd0d3d196d5cee2d6d2701a73963a9358
 WHIRLPOOL 
170909e7e4ce710b6a372fb2532516cc2b2c3e02187ef2e0a60944a25f41aedb7a970e818b1b0968f693c461c85be842bfced4d63e3de2ae615625dbadb9f295

diff --git a/dev-go/delve/delve-1.0.0_rc1.ebuild 
b/dev-go/delve/delve-1.0.0_rc1.ebuild
new file mode 100644
index 000..c40dbf6b380
--- /dev/null
+++ b/dev-go/delve/delve-1.0.0_rc1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+EGO_PN="github.com/derekparker/delve"
+
+if [[ ${PV} == * ]]; then
+   inherit golang-vcs
+else
+   EGIT_COMMIT="v${PV/_rc/-rc.}"
+   DELVE_SHA="f609169"
+   SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+   KEYWORDS="~amd64"
+   inherit golang-vcs-snapshot
+fi
+
+DESCRIPTION="A source-level debugger for the Go programming language"
+HOMEPAGE="http://github.com/derekparker/delve;
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+S=${WORKDIR}/${P}/src/${EGO_PN}
+
+RESTRICT="test"
+
+src_compile() {
+   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)" go build -ldflags="-X 
main.Build=${DELVE_SHA}" -o "bin/dlv" ./cmd/dlv || die
+}
+
+src_install() {
+   dodoc README.md CHANGELOG.md
+   dobin bin/dlv
+}



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

2017-07-16 Thread Michael Orlitzky
commit: ff8b8d98148eb80e04011adc3ba1c757ee4f0c97
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sun Jul 16 12:41:10 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sun Jul 16 12:41:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff8b8d98

net-analyzer/nrpe: new revision to fix the systemd service.

The systemd unit file we were shipping no longer works with
nrpe-3.x. Fortunately, upstream has their own service file which will
work for us. We now use upstream's copy instead. Thanks to Nemunaire
for the report, fix, and testing.

Gentoo-Bug: 620020

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-analyzer/nrpe/{nrpe-3.2.0.ebuild => nrpe-3.2.0-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nrpe/nrpe-3.2.0.ebuild 
b/net-analyzer/nrpe/nrpe-3.2.0-r1.ebuild
similarity index 96%
rename from net-analyzer/nrpe/nrpe-3.2.0.ebuild
rename to net-analyzer/nrpe/nrpe-3.2.0-r1.ebuild
index 47ab35e74b4..08d233c3de6 100644
--- a/net-analyzer/nrpe/nrpe-3.2.0.ebuild
+++ b/net-analyzer/nrpe/nrpe-3.2.0-r1.ebuild
@@ -49,7 +49,7 @@ src_install() {
fperms 0640 /etc/nagios/nrpe.cfg
 
newinitd "${FILESDIR}/nrpe-${PV}.init" nrpe
-   systemd_dounit "${FILESDIR}/${PN}.service"
+   systemd_newunit "startup/default-service" "${PN}.service"
 
insinto /etc/xinetd.d/
newins "${FILESDIR}/nrpe.xinetd.2" nrpe



[gentoo-commits] repo/gentoo:master commit in: dev-python/backports-ssl-match-hostname/

2017-07-16 Thread Patrice Clement
commit: a95c48303cf38ae1b19ee261785fea7a713c5123
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Jul 16 12:32:25 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Jul 16 12:32:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a95c4830

dev-python/backports-ssl-match-hostname: remove python 3.5 and python 3.6 from 
PYTHON_COMPAT.

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

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../backports-ssl-match-hostname-3.5.0.1-r1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild
 
b/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild
index e3884c33c56..013d567c0c1 100644
--- 
a/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild
+++ 
b/dev-python/backports-ssl-match-hostname/backports-ssl-match-hostname-3.5.0.1-r1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy )
+PYTHON_COMPAT=( python{2_7,3_4} pypy )
 
 inherit distutils-r1
 



[gentoo-commits] repo/gentoo:master commit in: dev-ros/eigen_conversions/

2017-07-16 Thread Alexis Ballier
commit: 6904a3b676510ef6ffc01309650df61b46368819
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 10:44:25 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6904a3b6

dev-ros/eigen_conversions: Bump to 1.11.9.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/eigen_conversions/Manifest |  1 +
 .../eigen_conversions-1.11.9.ebuild| 24 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-ros/eigen_conversions/Manifest 
b/dev-ros/eigen_conversions/Manifest
index 8a840c95207..28523663413 100644
--- a/dev-ros/eigen_conversions/Manifest
+++ b/dev-ros/eigen_conversions/Manifest
@@ -1,2 +1,3 @@
 DIST geometry-1.11.7.tar.gz 185886 SHA256 
fbfbc707d239a76f7258372cb73a78341c0433d990d6f053340417c5ecb84231 SHA512 
f5cf1ffdde96fc5fd375b3363192b355a2b423256bcbb9e1a7929a715b648a41919734653f9db9210fcd62a19a50c08b3c48c853dbaa4d370599732753a906e0
 WHIRLPOOL 
4958ca10d33d96d1d213ee778687d6d66e20bbf0b527d23bcdb4949fa8c3371831d9fe70ace862128c7018cf41f00c0280a64d9dd0eb6699dace50cf3f560b03
 DIST geometry-1.11.8.tar.gz 186749 SHA256 
a372f2225d6d9625dadc9dee817281a22dfb4b4dc8fd129ee1fb9375993bfd88 SHA512 
a7d1383635d96b8a95486cbb9d1fdfc762846cb6ecc41c0deef76cea4d9f9cde99c4b079527a25bc5ac559d4987fe7a4c3159e2435942bb3d4fb992da68e0e04
 WHIRLPOOL 
e527970486796a67e1a8edfec0a8abfd562e36bbc9f38cf5a335bbd178f4dd68b067e526e4d308389e61852af8b17a59b0bb82a4faa3a45856c553ddd228fe3b
+DIST geometry-1.11.9.tar.gz 185525 SHA256 
8c8e20d28d352b3ccb227ca7da39a1dddc051cf8309f90a46d6b0c7b2e398d33 SHA512 
de775da483d1bcca05bcc0f05dc358e1e11e4ba9845f446f5810ca2e835e75ed7202ff7c43a0d7433f9db4298930af32715f2ab2689e0f22c9d8ac10a73cc97c
 WHIRLPOOL 
52587f970b097b23970a136807449196362c37b071ac6766b362e30ddfe5d5f582d8d6c9f5de67b914f95d4ad82eaf6872eb7f930884053f3231ad990e34fbcd

diff --git a/dev-ros/eigen_conversions/eigen_conversions-1.11.9.ebuild 
b/dev-ros/eigen_conversions/eigen_conversions-1.11.9.ebuild
new file mode 100644
index 000..e97c1b85453
--- /dev/null
+++ b/dev-ros/eigen_conversions/eigen_conversions-1.11.9.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CATKIN_HAS_MESSAGES=yes
+ROS_REPO_URI="https://github.com/ros/geometry;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Conversion functions between Eigen and KDL and Eigen and 
geometry_msgs"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   sci-libs/orocos_kdl
+   dev-cpp/eigen:3
+   dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/std_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/cmake_modules
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_ros/

2017-07-16 Thread Alexis Ballier
commit: b9cb42ece43f074122b7db868e8febc1eeb65441
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:25 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9cb42ec

dev-ros/tf2_ros: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_ros/Manifest  |  1 +
 dev-ros/tf2_ros/tf2_ros-0.5.16.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-ros/tf2_ros/Manifest b/dev-ros/tf2_ros/Manifest
index 8403f0e7e3b..d8e2f36134a 100644
--- a/dev-ros/tf2_ros/Manifest
+++ b/dev-ros/tf2_ros/Manifest
@@ -1,3 +1,4 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/dev-ros/tf2_ros/tf2_ros-0.5.16.ebuild 
b/dev-ros/tf2_ros/tf2_ros-0.5.16.ebuild
new file mode 100644
index 000..00234a1ad22
--- /dev/null
+++ b/dev-ros/tf2_ros/tf2_ros-0.5.16.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="ROS bindings for the tf2 library, for both Python and C++"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/actionlib[${PYTHON_USEDEP}]
+   dev-ros/message_filters
+   dev-ros/roscpp
+   dev-ros/rosgraph
+   dev-libs/boost:=[threads]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/tf2
+   dev-ros/tf2_py[${PYTHON_USEDEP}]
+   dev-ros/actionlib_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   
dev-ros/geometry_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP},${CATKIN_MESSAGES_CXX_USEDEP}]
+   
dev-ros/tf2_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP},${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_kdl/

2017-07-16 Thread Alexis Ballier
commit: ba4f3fe5fa0e7e7196d1aec9365d2c72a53af41b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:08 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba4f3fe5

dev-ros/tf2_kdl: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_kdl/Manifest  |  1 +
 dev-ros/tf2_kdl/tf2_kdl-0.5.16.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-ros/tf2_kdl/Manifest b/dev-ros/tf2_kdl/Manifest
index 5877951f525..0ab574dea08 100644
--- a/dev-ros/tf2_kdl/Manifest
+++ b/dev-ros/tf2_kdl/Manifest
@@ -1 +1,2 @@
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f

diff --git a/dev-ros/tf2_kdl/tf2_kdl-0.5.16.ebuild 
b/dev-ros/tf2_kdl/tf2_kdl-0.5.16.ebuild
new file mode 100644
index 000..5f196cdc9d7
--- /dev/null
+++ b/dev-ros/tf2_kdl/tf2_kdl-0.5.16.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="KDL binding for tf2"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-cpp/eigen:3
+   dev-ros/tf2
+   dev-ros/tf2_ros
+   dev-python/python_orocos_kdl[${PYTHON_USEDEP}]
+   sci-libs/orocos_kdl
+   dev-ros/tf2_msgs[${PYTHON_USEDEP}]
+   dev-ros/cmake_modules
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-cpp/gtest
+   )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/opencv_apps/

2017-07-16 Thread Alexis Ballier
commit: 5e206bcc6dd4d4fa76e0eb2e81fff62c6cd0a54f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 10:57:15 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e206bcc

dev-ros/opencv_apps: bump to 1.12.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/opencv_apps/Manifest  |  1 +
 dev-ros/opencv_apps/opencv_apps-1.12.0.ebuild | 27 +++
 2 files changed, 28 insertions(+)

diff --git a/dev-ros/opencv_apps/Manifest b/dev-ros/opencv_apps/Manifest
index 039785900a4..bd99b1781c5 100644
--- a/dev-ros/opencv_apps/Manifest
+++ b/dev-ros/opencv_apps/Manifest
@@ -1,2 +1,3 @@
 DIST opencv_apps-1.11.14.tar.gz 51452 SHA256 
bb4ba53022b331a50cd9d043169c4763004914fe1d6c369aedabf7c6808577b1 SHA512 
1a1765ac63c396b41840395d9fb693241f97db1ada276e60121c4766ba30034389743754c966d54ffd24afec6c52032ab5dd7054cc93c4be10ca21f2191287d5
 WHIRLPOOL 
2f27bf71a2ed10e704e9226721dc2664764df304929620ca5e92b0df9e61360cad5d29dc4f5a774481abd82bd17a9caba6d57d58b8cb84a897efd6288b527eb1
 DIST opencv_apps-1.11.15.tar.gz 58677 SHA256 
054e292fdec876fb821911f7c240a48057bc6a789692ba007a89fcfcdbdff6d5 SHA512 
376ee619ca2841e30270266163ff1e46de938280c8a7e085a206f120d24418efdd9d935fd4e83c6d0717fc50810351ab5058b2a39aa5b96828d74eae7ae20d97
 WHIRLPOOL 
b41c6a067251bdc42ebcd71415a04934579fd4b5c9a2fb342aad0bf7ee1fcbffae575086e9a37261f58b41b27dee0c8bdfc003b66cb96f361ab6914a20cb97b3
+DIST opencv_apps-1.12.0.tar.gz 77353 SHA256 
4d8b7e5d9886f5f631be9d77a12f2d9836ea4c6c2d2930f0e012f798fae35b56 SHA512 
8a0dffad44520ea78abead88dc2917314e8688b820c37512eff909164c626ab9d2511357e8d2683ebcc37610d061b4d6356a3bd39263bbccb5afc5560a4d78b7
 WHIRLPOOL 
3fd18660668b0ed95cef8982f8b9d74709245e62fd9d53b751ec75be08fe6d4ba9fa52d80dd277675300a03f198417d058f734962a2a27dfaa1c063e464325f7

diff --git a/dev-ros/opencv_apps/opencv_apps-1.12.0.ebuild 
b/dev-ros/opencv_apps/opencv_apps-1.12.0.ebuild
new file mode 100644
index 000..42b8ba6e77e
--- /dev/null
+++ b/dev-ros/opencv_apps/opencv_apps-1.12.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros-perception/opencv_apps;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+CATKIN_HAS_MESSAGES=yes
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/std_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="OpenCV applications for ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/cv_bridge
+   dev-ros/dynamic_reconfigure[${PYTHON_USEDEP}]
+   dev-ros/image_transport
+   dev-ros/std_srvs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-ros/nodelet
+   dev-ros/roscpp
+   >=media-libs/opencv-3:0=[contrib]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf_conversions/

2017-07-16 Thread Alexis Ballier
commit: cb5e962a8c62d4d2218df50895f7c26b257deb6b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 10:44:36 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb5e962a

dev-ros/tf_conversions: Bump to 1.11.9.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf_conversions/Manifest|  1 +
 .../tf_conversions/tf_conversions-1.11.9.ebuild| 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-ros/tf_conversions/Manifest b/dev-ros/tf_conversions/Manifest
index 8a840c95207..28523663413 100644
--- a/dev-ros/tf_conversions/Manifest
+++ b/dev-ros/tf_conversions/Manifest
@@ -1,2 +1,3 @@
 DIST geometry-1.11.7.tar.gz 185886 SHA256 
fbfbc707d239a76f7258372cb73a78341c0433d990d6f053340417c5ecb84231 SHA512 
f5cf1ffdde96fc5fd375b3363192b355a2b423256bcbb9e1a7929a715b648a41919734653f9db9210fcd62a19a50c08b3c48c853dbaa4d370599732753a906e0
 WHIRLPOOL 
4958ca10d33d96d1d213ee778687d6d66e20bbf0b527d23bcdb4949fa8c3371831d9fe70ace862128c7018cf41f00c0280a64d9dd0eb6699dace50cf3f560b03
 DIST geometry-1.11.8.tar.gz 186749 SHA256 
a372f2225d6d9625dadc9dee817281a22dfb4b4dc8fd129ee1fb9375993bfd88 SHA512 
a7d1383635d96b8a95486cbb9d1fdfc762846cb6ecc41c0deef76cea4d9f9cde99c4b079527a25bc5ac559d4987fe7a4c3159e2435942bb3d4fb992da68e0e04
 WHIRLPOOL 
e527970486796a67e1a8edfec0a8abfd562e36bbc9f38cf5a335bbd178f4dd68b067e526e4d308389e61852af8b17a59b0bb82a4faa3a45856c553ddd228fe3b
+DIST geometry-1.11.9.tar.gz 185525 SHA256 
8c8e20d28d352b3ccb227ca7da39a1dddc051cf8309f90a46d6b0c7b2e398d33 SHA512 
de775da483d1bcca05bcc0f05dc358e1e11e4ba9845f446f5810ca2e835e75ed7202ff7c43a0d7433f9db4298930af32715f2ab2689e0f22c9d8ac10a73cc97c
 WHIRLPOOL 
52587f970b097b23970a136807449196362c37b071ac6766b362e30ddfe5d5f582d8d6c9f5de67b914f95d4ad82eaf6872eb7f930884053f3231ad990e34fbcd

diff --git a/dev-ros/tf_conversions/tf_conversions-1.11.9.ebuild 
b/dev-ros/tf_conversions/tf_conversions-1.11.9.ebuild
new file mode 100644
index 000..a4a7d1bf8bf
--- /dev/null
+++ b/dev-ros/tf_conversions/tf_conversions-1.11.9.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CATKIN_HAS_MESSAGES=yes
+ROS_REPO_URI="https://github.com/ros/geometry;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Conversion functions to convert common tf datatypes into 
identical datatypes used by other libraries"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   
dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-ros/kdl_conversions
+   dev-ros/tf[${PYTHON_USEDEP}]
+   sci-libs/orocos_kdl
+   dev-cpp/eigen:3
+   dev-ros/rospy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-cpp/gtest dev-python/nose[${PYTHON_USEDEP}] )"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf/

2017-07-16 Thread Alexis Ballier
commit: 6a12716efeaf16d8da04df4790c2fa963cae19b4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 10:44:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a12716e

dev-ros/tf: Bump to 1.11.9.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf/Manifest |  1 +
 dev-ros/tf/tf-1.11.9.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-ros/tf/Manifest b/dev-ros/tf/Manifest
index ec1d90b81bd..26bd803aaf5 100644
--- a/dev-ros/tf/Manifest
+++ b/dev-ros/tf/Manifest
@@ -1 +1,2 @@
 DIST geometry-1.11.8.tar.gz 186749 SHA256 
a372f2225d6d9625dadc9dee817281a22dfb4b4dc8fd129ee1fb9375993bfd88 SHA512 
a7d1383635d96b8a95486cbb9d1fdfc762846cb6ecc41c0deef76cea4d9f9cde99c4b079527a25bc5ac559d4987fe7a4c3159e2435942bb3d4fb992da68e0e04
 WHIRLPOOL 
e527970486796a67e1a8edfec0a8abfd562e36bbc9f38cf5a335bbd178f4dd68b067e526e4d308389e61852af8b17a59b0bb82a4faa3a45856c553ddd228fe3b
+DIST geometry-1.11.9.tar.gz 185525 SHA256 
8c8e20d28d352b3ccb227ca7da39a1dddc051cf8309f90a46d6b0c7b2e398d33 SHA512 
de775da483d1bcca05bcc0f05dc358e1e11e4ba9845f446f5810ca2e835e75ed7202ff7c43a0d7433f9db4298930af32715f2ab2689e0f22c9d8ac10a73cc97c
 WHIRLPOOL 
52587f970b097b23970a136807449196362c37b071ac6766b362e30ddfe5d5f582d8d6c9f5de67b914f95d4ad82eaf6872eb7f930884053f3231ad990e34fbcd

diff --git a/dev-ros/tf/tf-1.11.9.ebuild b/dev-ros/tf/tf-1.11.9.ebuild
new file mode 100644
index 000..9fbd6e2ea2c
--- /dev/null
+++ b/dev-ros/tf/tf-1.11.9.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CATKIN_HAS_MESSAGES=yes
+ROS_REPO_URI="https://github.com/ros/geometry;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python2_7 )
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Maintains the relationship between coordinate frames in a tree 
structure buffered in time"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-libs/boost:=[threads]
+   dev-ros/angles
+   dev-ros/message_filters
+   dev-ros/rosconsole
+   dev-ros/rostime
+   dev-ros/roscpp
+   dev-ros/tf2_ros
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-python/rospkg[${PYTHON_USEDEP}]
+   
dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   
dev-ros/sensor_msgs[${CATKIN_MESSAGES_CXX_USEDEP},${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-ros/std_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? (
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-cpp/gtest
+   dev-python/nose[${PYTHON_USEDEP}]
+   )"



[gentoo-commits] repo/gentoo:master commit in: ros-meta/geometry_experimental/

2017-07-16 Thread Alexis Ballier
commit: 6c34cf8df9b906b8893c4774707d011997e43e66
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:41 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c34cf8d

ros-meta/geometry_experimental: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 ros-meta/geometry_experimental/Manifest|  1 +
 .../geometry_experimental-0.5.16.ebuild| 29 ++
 2 files changed, 30 insertions(+)

diff --git a/ros-meta/geometry_experimental/Manifest 
b/ros-meta/geometry_experimental/Manifest
index 8403f0e7e3b..d8e2f36134a 100644
--- a/ros-meta/geometry_experimental/Manifest
+++ b/ros-meta/geometry_experimental/Manifest
@@ -1,3 +1,4 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/ros-meta/geometry_experimental/geometry_experimental-0.5.16.ebuild 
b/ros-meta/geometry_experimental/geometry_experimental-0.5.16.ebuild
new file mode 100644
index 000..1caaf23a601
--- /dev/null
+++ b/ros-meta/geometry_experimental/geometry_experimental-0.5.16.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="The second generation Transform Library in ros"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/test_tf2
+   dev-ros/tf2
+   dev-ros/tf2_bullet
+   dev-ros/tf2_eigen
+   dev-ros/tf2_geometry_msgs
+   dev-ros/tf2_kdl
+   dev-ros/tf2_msgs
+   dev-ros/tf2_py
+   dev-ros/tf2_ros
+   dev-ros/tf2_sensor_msgs
+   dev-ros/tf2_tools
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_msgs/

2017-07-16 Thread Alexis Ballier
commit: 4df3f868e224ce88343a3dbff70250c9bb183cdc
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:14 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df3f868

dev-ros/tf2_msgs: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_msgs/Manifest   |  1 +
 dev-ros/tf2_msgs/tf2_msgs-0.5.16.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-ros/tf2_msgs/Manifest b/dev-ros/tf2_msgs/Manifest
index 8389aa37c5d..103655014d4 100644
--- a/dev-ros/tf2_msgs/Manifest
+++ b/dev-ros/tf2_msgs/Manifest
@@ -1,4 +1,5 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.12.tar.gz 131234 SHA256 
430115ef4a3352e8b00596ff7406e6cb14fc1720250cf164754cf724c7f371c3 SHA512 
1a1a33db529d0810661c020552642d914de01a14e5b17b611fb7743a795c47e3f68d480ee4544b4ad86f7b1c947ea8b23cda09535ce046fdc45da1c40fc34711
 WHIRLPOOL 
fd894a43e0110eeab1f085faa32a339a72d922d57ae68ee82c2b54f73c246090f3537483f1ca68147f5b7b7a5c7502f9fd4ab733da150c68af94ea2d87859ab1
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/dev-ros/tf2_msgs/tf2_msgs-0.5.16.ebuild 
b/dev-ros/tf2_msgs/tf2_msgs-0.5.16.ebuild
new file mode 100644
index 000..87dc546e42b
--- /dev/null
+++ b/dev-ros/tf2_msgs/tf2_msgs-0.5.16.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CATKIN_HAS_MESSAGES=yes
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+ROS_SUBDIR=${PN}
+CATKIN_MESSAGES_TRANSITIVE_DEPS="dev-ros/actionlib_msgs dev-ros/geometry_msgs"
+
+inherit ros-catkin
+
+DESCRIPTION="TF2 messages"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2/

2017-07-16 Thread Alexis Ballier
commit: 96afe955a144c77869728f1ad2e02312a6f6702b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:25:47 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:16:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96afe955

dev-ros/tf2: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2/Manifest  |  1 +
 dev-ros/tf2/tf2-0.5.16.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-ros/tf2/Manifest b/dev-ros/tf2/Manifest
index 5877951f525..0ab574dea08 100644
--- a/dev-ros/tf2/Manifest
+++ b/dev-ros/tf2/Manifest
@@ -1 +1,2 @@
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f

diff --git a/dev-ros/tf2/tf2-0.5.16.ebuild b/dev-ros/tf2/tf2-0.5.16.ebuild
new file mode 100644
index 000..66229ab329d
--- /dev/null
+++ b/dev-ros/tf2/tf2-0.5.16.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="The second generation Transform Library in ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/tf2_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-libs/console_bridge
+   dev-ros/rostime
+   dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   dev-libs/boost:=[threads]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/roscpp )
+"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/test_tf2/

2017-07-16 Thread Alexis Ballier
commit: f08891b1a78c2015d1a3ccdd953e1f87bf8ff8e3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:25:42 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:16:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f08891b1

dev-ros/test_tf2: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/test_tf2/Manifest   |  1 +
 dev-ros/test_tf2/test_tf2-0.5.16.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/dev-ros/test_tf2/Manifest b/dev-ros/test_tf2/Manifest
index 8389aa37c5d..103655014d4 100644
--- a/dev-ros/test_tf2/Manifest
+++ b/dev-ros/test_tf2/Manifest
@@ -1,4 +1,5 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.12.tar.gz 131234 SHA256 
430115ef4a3352e8b00596ff7406e6cb14fc1720250cf164754cf724c7f371c3 SHA512 
1a1a33db529d0810661c020552642d914de01a14e5b17b611fb7743a795c47e3f68d480ee4544b4ad86f7b1c947ea8b23cda09535ce046fdc45da1c40fc34711
 WHIRLPOOL 
fd894a43e0110eeab1f085faa32a339a72d922d57ae68ee82c2b54f73c246090f3537483f1ca68147f5b7b7a5c7502f9fd4ab733da150c68af94ea2d87859ab1
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/dev-ros/test_tf2/test_tf2-0.5.16.ebuild 
b/dev-ros/test_tf2/test_tf2-0.5.16.ebuild
new file mode 100644
index 000..4378c07e804
--- /dev/null
+++ b/dev-ros/test_tf2/test_tf2-0.5.16.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="TF2 unit tests"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND=""
+DEPEND="
+   dev-ros/rosconsole
+   dev-ros/roscpp
+   dev-ros/rostest[${PYTHON_USEDEP}]
+   dev-ros/tf
+   dev-ros/tf2
+   dev-ros/tf2_bullet
+   dev-ros/tf2_ros[${PYTHON_USEDEP}]
+   dev-ros/tf2_geometry_msgs[${PYTHON_USEDEP}]
+   dev-ros/tf2_kdl[${PYTHON_USEDEP}]
+   dev-ros/tf2_msgs
+   sci-libs/orocos_kdl
+   dev-python/python_orocos_kdl[${PYTHON_USEDEP}]
+   dev-libs/boost:=[threads]
+   dev-cpp/gtest"
+
+mycatkincmakeargs=( "-DCATKIN_ENABLE_TESTING=ON" )



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_sensor_msgs/

2017-07-16 Thread Alexis Ballier
commit: 61598833204ea481632ab5bff74a32e5387ca008
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:30 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61598833

dev-ros/tf2_sensor_msgs: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_sensor_msgs/Manifest   |  1 +
 .../tf2_sensor_msgs/tf2_sensor_msgs-0.5.16.ebuild  | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-ros/tf2_sensor_msgs/Manifest b/dev-ros/tf2_sensor_msgs/Manifest
index 5877951f525..0ab574dea08 100644
--- a/dev-ros/tf2_sensor_msgs/Manifest
+++ b/dev-ros/tf2_sensor_msgs/Manifest
@@ -1 +1,2 @@
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f

diff --git a/dev-ros/tf2_sensor_msgs/tf2_sensor_msgs-0.5.16.ebuild 
b/dev-ros/tf2_sensor_msgs/tf2_sensor_msgs-0.5.16.ebuild
new file mode 100644
index 000..9d28f70aecb
--- /dev/null
+++ b/dev-ros/tf2_sensor_msgs/tf2_sensor_msgs-0.5.16.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="Transform sensor_msgs with tf. Most notably, PointCloud2"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/tf2_ros[${PYTHON_USEDEP}]
+   dev-ros/tf2
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-python/python_orocos_kdl[${PYTHON_USEDEP}]
+   
dev-ros/sensor_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP},${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   test? ( dev-ros/rostest[${PYTHON_USEDEP}] )
+   dev-ros/cmake_modules"



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

2017-07-16 Thread Alexis Ballier
commit: 94fbd1e663d2c463524b700eb372ef0a2e324438
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 12:16:53 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94fbd1e6

media-libs/x265: bump to 2.5

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/x265/Manifest  | 1 +
 media-libs/x265/{x265-.ebuild => x265-2.5.ebuild} | 2 +-
 media-libs/x265/x265-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/media-libs/x265/Manifest b/media-libs/x265/Manifest
index 4b753c9dbe0..dd671134b8e 100644
--- a/media-libs/x265/Manifest
+++ b/media-libs/x265/Manifest
@@ -1,3 +1,4 @@
 DIST x265_2.2.tar.gz 1203801 SHA256 
b872552535e41fbffa03ba7cbcd3479c42c4053868309292e78e147b7773ac4b SHA512 
335bb38cf0892f2c4310033b076d51115c0b7faa9596a4f556dde5e3d1378d04f3d0055cb0bf2441eb725b7f84c246174bdc315eeb4ddde61ef9d79469f44eef
 WHIRLPOOL 
6aa6fb3669abbb6e3fd9dd9ffe38f595805a61beedcfccd509606a9c3a19f79037a518269206ddcac7231de45165f000e59c3b0f279921a6aa8de2cb5b38a7ec
 DIST x265_2.3.tar.gz 1215719 SHA256 
47520ac3424790168ea5c2db4a3cf12ca4d55a1790720007916652f07af3e41f SHA512 
c863e4bd95323baf5c1ee388c2d9e460749940b947a795e0bce7bffab620258fb7aafbbf2956225491f4532f715392df3d40f19301964e00c3ac2971cd7d8809
 WHIRLPOOL 
c7fa65f74b342ae32ae7b89aed86e6270607ec22479c95b62bd6b3e2cb958635d459e3770fe73e7599e572b01b171d101f5fb50c161139c867bea1ddda217c10
 DIST x265_2.4.tar.gz 1242300 SHA256 
9c2aa718d78f6fecdd783f08ab83b98d3169e5f670404da4c16439306907d729 SHA512 
40d0e57104839454226cdba928806c12e533eade391a89e9587e1f9c11b8fd70cc54d20136a09a1127784fe7799c80425617280076b29e1a17ce44f07dbe
 WHIRLPOOL 
63ab1989856912e8922db66862901511e5f7e4f2bd429319b3f419f8267a442374e8f8626065ccf96766c3075750525755d91df6976352b7b59f229aab94ac86
+DIST x265_2.5.tar.gz 1256678 SHA256 
2e53259b504a7edb9b21b9800163b1ff4c90e60c74e23e7001d423c69c5d3d17 SHA512 
f39b0b06a9f6ab9ab19fcdc1cba1578ace433e22dc8ec3f549ec3e5eeaaf40d17de6c7d419c12c16717ae795c45d953ef34a2fc9376d7e83eb7e9e74ab19ec93
 WHIRLPOOL 
a5abfbbb533f22b2f243ff2053ab569d758d72b2cd0ec4ffb264688d9c4666b1354b7933d8e2a9197766cb33cda3e25c6771439ad34ad979ffbde361c2ecf0d5

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-2.5.ebuild
similarity index 98%
copy from media-libs/x265/x265-.ebuild
copy to media-libs/x265/x265-2.5.ebuild
index b7e3fb2f6d9..1ef57ee3ddc 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-2.5.ebuild
@@ -12,7 +12,7 @@ else
SRC_URI="

https://bitbucket.org/multicoreware/x265/downloads/${PN}_${PV}.tar.gz
http://ftp.videolan.org/pub/videolan/x265/${PN}_${PV}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-.ebuild
index b7e3fb2f6d9..1ef57ee3ddc 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-.ebuild
@@ -12,7 +12,7 @@ else
SRC_URI="

https://bitbucket.org/multicoreware/x265/downloads/${PN}_${PV}.tar.gz
http://ftp.videolan.org/pub/videolan/x265/${PN}_${PV}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Library for encoding video streams into the H.265/HEVC format"



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

2017-07-16 Thread Alexis Ballier
commit: 690a4bdd089e1596f2654eaf633c3d0be1af066d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 10:55:12 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=690a4bdd

media-libs/x265: update live ebuild subslot

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-.ebuild
index 9aa6aafc30d..b7e3fb2f6d9 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-.ebuild
@@ -20,7 +20,7 @@ HOMEPAGE="http://x265.org/;
 
 LICENSE="GPL-2"
 # subslot = libx265 soname
-SLOT="0/116"
+SLOT="0/130"
 IUSE="+10bit +12bit cpu_flags_arm_neon numa pic power8 test"
 
 ASM_DEPEND=">=dev-lang/yasm-1.2.0"



[gentoo-commits] repo/gentoo:master commit in: ros-meta/geometry/

2017-07-16 Thread Alexis Ballier
commit: 5b93c9edfafbd08a31a04bb0e885fc02f5b0af21
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 10:44:40 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b93c9ed

ros-meta/geometry: Bump to 1.11.9.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 ros-meta/geometry/Manifest   |  1 +
 ros-meta/geometry/geometry-1.11.9.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/ros-meta/geometry/Manifest b/ros-meta/geometry/Manifest
index 8a840c95207..28523663413 100644
--- a/ros-meta/geometry/Manifest
+++ b/ros-meta/geometry/Manifest
@@ -1,2 +1,3 @@
 DIST geometry-1.11.7.tar.gz 185886 SHA256 
fbfbc707d239a76f7258372cb73a78341c0433d990d6f053340417c5ecb84231 SHA512 
f5cf1ffdde96fc5fd375b3363192b355a2b423256bcbb9e1a7929a715b648a41919734653f9db9210fcd62a19a50c08b3c48c853dbaa4d370599732753a906e0
 WHIRLPOOL 
4958ca10d33d96d1d213ee778687d6d66e20bbf0b527d23bcdb4949fa8c3371831d9fe70ace862128c7018cf41f00c0280a64d9dd0eb6699dace50cf3f560b03
 DIST geometry-1.11.8.tar.gz 186749 SHA256 
a372f2225d6d9625dadc9dee817281a22dfb4b4dc8fd129ee1fb9375993bfd88 SHA512 
a7d1383635d96b8a95486cbb9d1fdfc762846cb6ecc41c0deef76cea4d9f9cde99c4b079527a25bc5ac559d4987fe7a4c3159e2435942bb3d4fb992da68e0e04
 WHIRLPOOL 
e527970486796a67e1a8edfec0a8abfd562e36bbc9f38cf5a335bbd178f4dd68b067e526e4d308389e61852af8b17a59b0bb82a4faa3a45856c553ddd228fe3b
+DIST geometry-1.11.9.tar.gz 185525 SHA256 
8c8e20d28d352b3ccb227ca7da39a1dddc051cf8309f90a46d6b0c7b2e398d33 SHA512 
de775da483d1bcca05bcc0f05dc358e1e11e4ba9845f446f5810ca2e835e75ed7202ff7c43a0d7433f9db4298930af32715f2ab2689e0f22c9d8ac10a73cc97c
 WHIRLPOOL 
52587f970b097b23970a136807449196362c37b071ac6766b362e30ddfe5d5f582d8d6c9f5de67b914f95d4ad82eaf6872eb7f930884053f3231ad990e34fbcd

diff --git a/ros-meta/geometry/geometry-1.11.9.ebuild 
b/ros-meta/geometry/geometry-1.11.9.ebuild
new file mode 100644
index 000..73122ddf2f4
--- /dev/null
+++ b/ros-meta/geometry/geometry-1.11.9.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Common geometric calculations"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/eigen_conversions
+   dev-ros/kdl_conversions
+   dev-ros/tf
+   dev-ros/tf_conversions
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_tools/

2017-07-16 Thread Alexis Ballier
commit: 1b8feee70370f2dd3e49c3d6cafcad47a2e9dbe4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:36 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b8feee7

dev-ros/tf2_tools: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_tools/Manifest|  1 +
 dev-ros/tf2_tools/tf2_tools-0.5.16.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/dev-ros/tf2_tools/Manifest b/dev-ros/tf2_tools/Manifest
index 8389aa37c5d..103655014d4 100644
--- a/dev-ros/tf2_tools/Manifest
+++ b/dev-ros/tf2_tools/Manifest
@@ -1,4 +1,5 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.12.tar.gz 131234 SHA256 
430115ef4a3352e8b00596ff7406e6cb14fc1720250cf164754cf724c7f371c3 SHA512 
1a1a33db529d0810661c020552642d914de01a14e5b17b611fb7743a795c47e3f68d480ee4544b4ad86f7b1c947ea8b23cda09535ce046fdc45da1c40fc34711
 WHIRLPOOL 
fd894a43e0110eeab1f085faa32a339a72d922d57ae68ee82c2b54f73c246090f3537483f1ca68147f5b7b7a5c7502f9fd4ab733da150c68af94ea2d87859ab1
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/dev-ros/tf2_tools/tf2_tools-0.5.16.ebuild 
b/dev-ros/tf2_tools/tf2_tools-0.5.16.ebuild
new file mode 100644
index 000..d40cc4b3342
--- /dev/null
+++ b/dev-ros/tf2_tools/tf2_tools-0.5.16.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="TF2 tools"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/tf2_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP}]
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/tf2_py[${PYTHON_USEDEP}]
+   dev-ros/tf2_ros[${PYTHON_USEDEP}]
+   dev-ros/roslib[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/kdl_conversions/

2017-07-16 Thread Alexis Ballier
commit: 45378fcfa06645934dad48e5770a5188e4381b62
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sun Jul 16 10:44:29 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45378fcf

dev-ros/kdl_conversions: Bump to 1.11.9.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/kdl_conversions/Manifest|  1 +
 .../kdl_conversions/kdl_conversions-1.11.9.ebuild   | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/kdl_conversions/Manifest b/dev-ros/kdl_conversions/Manifest
index 8a840c95207..28523663413 100644
--- a/dev-ros/kdl_conversions/Manifest
+++ b/dev-ros/kdl_conversions/Manifest
@@ -1,2 +1,3 @@
 DIST geometry-1.11.7.tar.gz 185886 SHA256 
fbfbc707d239a76f7258372cb73a78341c0433d990d6f053340417c5ecb84231 SHA512 
f5cf1ffdde96fc5fd375b3363192b355a2b423256bcbb9e1a7929a715b648a41919734653f9db9210fcd62a19a50c08b3c48c853dbaa4d370599732753a906e0
 WHIRLPOOL 
4958ca10d33d96d1d213ee778687d6d66e20bbf0b527d23bcdb4949fa8c3371831d9fe70ace862128c7018cf41f00c0280a64d9dd0eb6699dace50cf3f560b03
 DIST geometry-1.11.8.tar.gz 186749 SHA256 
a372f2225d6d9625dadc9dee817281a22dfb4b4dc8fd129ee1fb9375993bfd88 SHA512 
a7d1383635d96b8a95486cbb9d1fdfc762846cb6ecc41c0deef76cea4d9f9cde99c4b079527a25bc5ac559d4987fe7a4c3159e2435942bb3d4fb992da68e0e04
 WHIRLPOOL 
e527970486796a67e1a8edfec0a8abfd562e36bbc9f38cf5a335bbd178f4dd68b067e526e4d308389e61852af8b17a59b0bb82a4faa3a45856c553ddd228fe3b
+DIST geometry-1.11.9.tar.gz 185525 SHA256 
8c8e20d28d352b3ccb227ca7da39a1dddc051cf8309f90a46d6b0c7b2e398d33 SHA512 
de775da483d1bcca05bcc0f05dc358e1e11e4ba9845f446f5810ca2e835e75ed7202ff7c43a0d7433f9db4298930af32715f2ab2689e0f22c9d8ac10a73cc97c
 WHIRLPOOL 
52587f970b097b23970a136807449196362c37b071ac6766b362e30ddfe5d5f582d8d6c9f5de67b914f95d4ad82eaf6872eb7f930884053f3231ad990e34fbcd

diff --git a/dev-ros/kdl_conversions/kdl_conversions-1.11.9.ebuild 
b/dev-ros/kdl_conversions/kdl_conversions-1.11.9.ebuild
new file mode 100644
index 000..cff15ad3746
--- /dev/null
+++ b/dev-ros/kdl_conversions/kdl_conversions-1.11.9.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CATKIN_HAS_MESSAGES=yes
+ROS_REPO_URI="https://github.com/ros/geometry;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="Conversion functions between KDL and geometry_msgs types"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   sci-libs/orocos_kdl
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_geometry_msgs/

2017-07-16 Thread Alexis Ballier
commit: 2ac3fb6ba41eb88837101b58773931ef4d45c059
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:03 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ac3fb6b

dev-ros/tf2_geometry_msgs: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_geometry_msgs/Manifest |  1 +
 .../tf2_geometry_msgs-0.5.16.ebuild| 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-ros/tf2_geometry_msgs/Manifest 
b/dev-ros/tf2_geometry_msgs/Manifest
index 8389aa37c5d..103655014d4 100644
--- a/dev-ros/tf2_geometry_msgs/Manifest
+++ b/dev-ros/tf2_geometry_msgs/Manifest
@@ -1,4 +1,5 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.12.tar.gz 131234 SHA256 
430115ef4a3352e8b00596ff7406e6cb14fc1720250cf164754cf724c7f371c3 SHA512 
1a1a33db529d0810661c020552642d914de01a14e5b17b611fb7743a795c47e3f68d480ee4544b4ad86f7b1c947ea8b23cda09535ce046fdc45da1c40fc34711
 WHIRLPOOL 
fd894a43e0110eeab1f085faa32a339a72d922d57ae68ee82c2b54f73c246090f3537483f1ca68147f5b7b7a5c7502f9fd4ab733da150c68af94ea2d87859ab1
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/dev-ros/tf2_geometry_msgs/tf2_geometry_msgs-0.5.16.ebuild 
b/dev-ros/tf2_geometry_msgs/tf2_geometry_msgs-0.5.16.ebuild
new file mode 100644
index 000..c92d159034b
--- /dev/null
+++ b/dev-ros/tf2_geometry_msgs/tf2_geometry_msgs-0.5.16.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="The second generation Transform Library in ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/rospy[${PYTHON_USEDEP}]
+   dev-ros/tf2_ros[${PYTHON_USEDEP}]
+   dev-python/python_orocos_kdl[${PYTHON_USEDEP}]
+   dev-ros/tf2
+   sci-libs/orocos_kdl
+   
dev-ros/geometry_msgs[${CATKIN_MESSAGES_PYTHON_USEDEP},${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_bullet/

2017-07-16 Thread Alexis Ballier
commit: a3dfeaecae1d404ccd1d6fe94c7b2b7e1ac2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:25:52 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:16:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3dfeaec

dev-ros/tf2_bullet: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_bullet/Manifest |  1 +
 dev-ros/tf2_bullet/tf2_bullet-0.5.16.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/tf2_bullet/Manifest b/dev-ros/tf2_bullet/Manifest
index 8389aa37c5d..103655014d4 100644
--- a/dev-ros/tf2_bullet/Manifest
+++ b/dev-ros/tf2_bullet/Manifest
@@ -1,4 +1,5 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.12.tar.gz 131234 SHA256 
430115ef4a3352e8b00596ff7406e6cb14fc1720250cf164754cf724c7f371c3 SHA512 
1a1a33db529d0810661c020552642d914de01a14e5b17b611fb7743a795c47e3f68d480ee4544b4ad86f7b1c947ea8b23cda09535ce046fdc45da1c40fc34711
 WHIRLPOOL 
fd894a43e0110eeab1f085faa32a339a72d922d57ae68ee82c2b54f73c246090f3537483f1ca68147f5b7b7a5c7502f9fd4ab733da150c68af94ea2d87859ab1
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/dev-ros/tf2_bullet/tf2_bullet-0.5.16.ebuild 
b/dev-ros/tf2_bullet/tf2_bullet-0.5.16.ebuild
new file mode 100644
index 000..0e3481aa549
--- /dev/null
+++ b/dev-ros/tf2_bullet/tf2_bullet-0.5.16.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="TF2 bullet support"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/tf2
+   dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+   sci-physics/bullet
+"
+DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_eigen/

2017-07-16 Thread Alexis Ballier
commit: 05df0ca7dc52ae3c54ccb38192dfd2dac42d25c6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:25:57 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05df0ca7

dev-ros/tf2_eigen: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_eigen/Manifest|  1 +
 dev-ros/tf2_eigen/tf2_eigen-0.5.16.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/tf2_eigen/Manifest b/dev-ros/tf2_eigen/Manifest
index 100e804ab90..52814b04e35 100644
--- a/dev-ros/tf2_eigen/Manifest
+++ b/dev-ros/tf2_eigen/Manifest
@@ -1,3 +1,4 @@
 DIST geometry2-0.5.13.tar.gz 134172 SHA256 
1662f0c14e11a8079a0c1325813591ddf4bafae9605ee10a920f42f15dc1face SHA512 
f260d521c35adc2bad698c75d743a897aff50a2b44d599b4c4568ced1d796cbbd160b16a8ceef8a9f409d8edfd443a59551a3885212fab444c234e931aa19b69
 WHIRLPOOL 
9a53af545553d79e337a5602d7d13b1dd548a6a601369c7a0c1b80712124b761d880ba5bf4e78456bc5bb7e58c5bf5d2c3049a44ba2fc99d54f75d356a9ec0d6
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f

diff --git a/dev-ros/tf2_eigen/tf2_eigen-0.5.16.ebuild 
b/dev-ros/tf2_eigen/tf2_eigen-0.5.16.ebuild
new file mode 100644
index 000..5ce88abd0fb
--- /dev/null
+++ b/dev-ros/tf2_eigen/tf2_eigen-0.5.16.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+
+inherit ros-catkin
+
+DESCRIPTION="TF2 eigen support"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-cpp/eigen:3
+   dev-ros/tf2
+   dev-ros/geometry_msgs[${CATKIN_MESSAGES_CXX_USEDEP}]
+"
+DEPEND="${RDEPEND} dev-ros/cmake_modules"



[gentoo-commits] repo/gentoo:master commit in: dev-ros/tf2_py/

2017-07-16 Thread Alexis Ballier
commit: 86a1d316a1e61fe615b7dde1523c86b88579fd46
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Jul 15 16:26:19 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sun Jul 16 12:17:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a1d316

dev-ros/tf2_py: Bump to 0.5.16.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/tf2_py/Manifest |  1 +
 dev-ros/tf2_py/tf2_py-0.5.16.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/dev-ros/tf2_py/Manifest b/dev-ros/tf2_py/Manifest
index 8389aa37c5d..103655014d4 100644
--- a/dev-ros/tf2_py/Manifest
+++ b/dev-ros/tf2_py/Manifest
@@ -1,4 +1,5 @@
 DIST geometry2-0.5.14.tar.gz 147162 SHA256 
0fd24baaa61aa4cf5d97545da86b42b51814cfc957dc793051043dbe9697753d SHA512 
1e32dbfbd46a2d72dcc53cf67914bdc6bd1907cf8d9b6c24c5b73e9738a7068b1b974ea434a267f907f276bf70b85f7169d85679449402e0808edadb9fe21e82
 WHIRLPOOL 
12711071b049e7e5f9f334206896f25d9479386f7b4a6d74d9c341ce80f4e767c7466d57be966048fe28bf2e7fe1423d38bd6de70ec615575f7f4bcb718afc1d
 DIST geometry2-0.5.15.tar.gz 147275 SHA256 
fba4c223e85923060d76f1113b346207b2d36cda0e2c3393ec96ff99ba918dbe SHA512 
10a750948157904c0812aaae85e21eaf5c85dfef3770d418fd0c592a9179cef9fc2082ecc125be0fd0032e705dfb678d45930d3aa2cd0986a71c2e0a7307722c
 WHIRLPOOL 
d982cae97a0d3de2320a9a4318f84aef1403d7f59c1dfe88fd274a517d4e5b5263434cffe16cf2a346ddccecb4e3263445c3008feb9ec1efb053361dc51286e1
+DIST geometry2-0.5.16.tar.gz 154351 SHA256 
61001913ea7568a513171f57a09f02905918cee0b558baa27f7439fbb79700cb SHA512 
11909db98af78bbdef8d1a7dc5f20d3ff3cfcb0afc0e1d53b97a1ffe99aecea911f09364593eb232d7514a4caa192141404d892a33fc7ea9f5ce924ecf99fc51
 WHIRLPOOL 
43fb2d7b53fa3a134c3a2881d8985a1cc5f34983aac5031647791149301063e1679f69a08ec0ac983b708b25fda5871d0477c237b91864987115fcb2063a622f
 DIST geometry_experimental-0.5.12.tar.gz 131234 SHA256 
430115ef4a3352e8b00596ff7406e6cb14fc1720250cf164754cf724c7f371c3 SHA512 
1a1a33db529d0810661c020552642d914de01a14e5b17b611fb7743a795c47e3f68d480ee4544b4ad86f7b1c947ea8b23cda09535ce046fdc45da1c40fc34711
 WHIRLPOOL 
fd894a43e0110eeab1f085faa32a339a72d922d57ae68ee82c2b54f73c246090f3537483f1ca68147f5b7b7a5c7502f9fd4ab733da150c68af94ea2d87859ab1
 DIST geometry_experimental-0.5.13.tar.gz 134107 SHA256 
20ad7d3b610c70e8c666937d6a29ef53dac9181025427ee6d0664c67ff94b43f SHA512 
5b31a2ec2c8f852934c1c9a6aa0127c96b8f334f178742111c673195562a240649ac11ddde8d9738defae99184bdd83a57430fe6f17eb4cbd08ae600bfa7d43d
 WHIRLPOOL 
06da030383725aaeda8626f36b56911cc05c025b538904f33cdc69975027f610113945a3479d85fe83df841fcb1f4902b8927cae2a2272e44f59b86c97d844fc

diff --git a/dev-ros/tf2_py/tf2_py-0.5.16.ebuild 
b/dev-ros/tf2_py/tf2_py-0.5.16.ebuild
new file mode 100644
index 000..5fa0f628374
--- /dev/null
+++ b/dev-ros/tf2_py/tf2_py-0.5.16.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+ROS_REPO_URI="https://github.com/ros/geometry2;
+KEYWORDS="~amd64 ~arm"
+ROS_SUBDIR=${PN}
+PYTHON_COMPAT=( python2_7 )
+
+inherit ros-catkin
+
+DESCRIPTION="TF2 python bindings"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/tf2
+   dev-ros/rospy[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"



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

2017-07-16 Thread Manuel Rüger
commit: 2ce46620d9aa3e3e6c5b03dee14e7f6bd120bcb4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 12:01:59 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 12:01:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce46620

sys-cluster/kubectl: Version bump to 1.7.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-cluster/kubectl/Manifest |  1 +
 sys-cluster/kubectl/kubectl-1.7.1.ebuild | 37 
 2 files changed, 38 insertions(+)

diff --git a/sys-cluster/kubectl/Manifest b/sys-cluster/kubectl/Manifest
index 1e142538899..2eb6b90bfd0 100644
--- a/sys-cluster/kubectl/Manifest
+++ b/sys-cluster/kubectl/Manifest
@@ -1,2 +1,3 @@
 DIST kubernetes-1.6.6.tar.gz 22000184 SHA256 
13e9cd0753fd8227e1a8588af984005499bedb3916a594eab8d4e873387c464c SHA512 
ecd069fc08b0e17a5f7df3f2daf8c14e784f364b89adbd357cb1007bcce81907085f05fd5f7b502e225ad2507b5002d52cf67bd55bed1275c719057e75ada558
 WHIRLPOOL 
fb360828bb0f6f18573bcc236da087d335561133ac2bdf80eae44d7b9d21fa4be56f9620904af78167d31a3e94670184c35626c876fdac2e5cf5e0c8f8ea5030
 DIST kubernetes-1.7.0.tar.gz 21930564 SHA256 
0fe34180a4bb61384894616b1d348cc6350d1ebcbc071c67748864ffd2deb026 SHA512 
cdea8e9758498749a4bd07013e4b1501e88d60d0a59971d0401e334ba7b2b245010e8255130971d43633c6fdb6ba49239a01c2754247bb7e0347653caa00ca36
 WHIRLPOOL 
de7e1784d3b5960e03ad04f614f054f0d218055d3b4e1e0885fffb8fa8e6e9ba67ee80b323b32e5353ec55014b5fb55fbf7dc99216604a7ce3303569561f628c
+DIST kubernetes-1.7.1.tar.gz 21933985 SHA256 
8420f316e3954e27d14bd31cd885bea85765a6822f7dbdd025b3d27563914bb4 SHA512 
95fedccb3de9b32194c015c929d7f25a0ca51ff0f3aef0d278acb5924b91c397f719426855413000427e01131867ba571894692902d55e7536584c19d6e1aa7c
 WHIRLPOOL 
0b36d39c75c692a09d0b68c427bce175b49c39e44e56999cd31dfe07eb7afa8b9ca24528444f1fca13254fb39414f0a9b377ccfa8bb612ca0b7980ad09cbe381

diff --git a/sys-cluster/kubectl/kubectl-1.7.1.ebuild 
b/sys-cluster/kubectl/kubectl-1.7.1.ebuild
new file mode 100644
index 000..4866ab70285
--- /dev/null
+++ b/sys-cluster/kubectl/kubectl-1.7.1.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot
+
+EGO_PN="k8s.io/kubernetes"
+ARCHIVE_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="CLI to run commands against Kubernetes clusters"
+HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
+SRC_URI="${ARCHIVE_URI}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-go/go-bindata"
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "/vendor\/github.com\/jteeuwen\/go-bindata\/go-bindata/d" 
src/${EGO_PN}/hack/lib/golang.sh || die
+   sed -i -e "/export PATH/d" src/${EGO_PN}/hack/generate-bindata.sh || die
+}
+
+src_compile() {
+   LDFLAGS="" GOPATH="${WORKDIR}/${P}" emake -j1 -C src/${EGO_PN} 
WHAT=cmd/${PN}
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin _output/bin/${PN}
+   popd || die
+}



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

2017-07-16 Thread Pacho Ramos
commit: d7df581383b4befe407db18050e9125901190fa3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jul 16 11:51:24 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jul 16 11:51:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7df5813

net-wireless/bluez: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-wireless/bluez/Manifest  |   1 -
 net-wireless/bluez/bluez-5.45.ebuild | 255 ---
 2 files changed, 256 deletions(-)

diff --git a/net-wireless/bluez/Manifest b/net-wireless/bluez/Manifest
index 3adf18155a8..794d95ea0d7 100644
--- a/net-wireless/bluez/Manifest
+++ b/net-wireless/bluez/Manifest
@@ -1,3 +1,2 @@
 DIST bluez-5.43.tar.xz 1658348 SHA256 
16c9c05d2a1da644ce3570d975ada3643d2e60c007a955bac09c0a0efeb58d15 SHA512 
a48ac3d196a16fdfe7ef9bdc9a4ed8c9d40054e4f801a27a45150ce46e655ceff6264d230721065081d865c8b1f754ea0c407acc84fd299529aba048ce31889c
 WHIRLPOOL 
b63fcb8f9784122168f89902a74d811cc6236999de5dfe62b425032ac4d51923742f77d6d9957b3811c9584d194065bba184daf47882b1f09f760184a18838e9
-DIST bluez-5.45.tar.xz 1672404 SHA256 
4cacb00703a6bc149cb09502257d321597d43952374a16f3558766ffa85364e9 SHA512 
ecefb2cddb5b40ac4b5650a849e5635d84ec3f6819849ca97af5a5d1eb220f0fe5734c81340c00c41e0a77613e19c35a9191a00094a2e4d9db6d597ec590010d
 WHIRLPOOL 
95afe011ae3ebd0c99efb1a81b6bddd664a06c1aae4d8a7701d5df0bc359e26a7328f8034c6cc591efcce78be7a2d3df433f1914a62ccaf98b92edc274ca41d6
 DIST bluez-5.46.tar.xz 1677640 SHA256 
ddab3d3837c1afb8ae228a94ba17709a4650bd4db24211b6771ab735c8908e28 SHA512 
57eb236d5d1607ffbd5e4c939ffcb1047e2240e05ac642d037eee0feb1425f2d95d8a75b30dee50448c7189183468620c69ed330d17217d13c05f98b80e73671
 WHIRLPOOL 
ea93901b2eff50f0e35dba984c26d4fb00116e05d6a691acf760fd4911e4ea35391ce2770ff3b1ac8c29a1c7acbb6a8718ea0acdea8421554ff961313c4288d8

diff --git a/net-wireless/bluez/bluez-5.45.ebuild 
b/net-wireless/bluez/bluez-5.45.ebuild
deleted file mode 100644
index 4b69217..000
--- a/net-wireless/bluez/bluez-5.45.ebuild
+++ /dev/null
@@ -1,255 +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 autotools ltprune multilib python-single-r1 readme.gentoo-r1 systemd 
udev user multilib-minimal
-
-DESCRIPTION="Bluetooth Tools and System Daemons for Linux"
-HOMEPAGE="http://www.bluez.org;
-SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0/3"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86"
-IUSE="alsa cups doc debug deprecated extra-tools experimental +obex +readline 
selinux systemd test test-programs +udev user-session"
-
-# Since this release all remaining extra-tools need readline support, but this 
could
-# change in the future, hence, this REQUIRED_USE constraint could be dropped
-# again in the future.
-REQUIRED_USE="
-   extra-tools? ( readline )
-   test? ( ${PYTHON_REQUIRED_USE} )
-   test-programs? ( ${PYTHON_REQUIRED_USE} )
-   user-session? ( systemd )
-"
-
-CDEPEND="
-   >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}]
-   >=sys-apps/dbus-1.6:=[user-session=]
-   >=sys-apps/hwids-20121202.2
-   alsa? ( media-libs/alsa-lib )
-   cups? ( net-print/cups:= )
-   obex? ( dev-libs/libical:= )
-   readline? ( sys-libs/readline:= )
-   systemd? ( sys-apps/systemd )
-   udev? ( >=virtual/udev-172 )
-"
-TEST_DEPS="${PYTHON_DEPS}
-   >=dev-python/dbus-python-1[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-"
-
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
-   test? ( ${TEST_DEPS} )
-"
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-bluetooth )
-   test-programs? ( ${TEST_DEPS} )
-"
-DOC_CONTENTS="
-   If you want to control your bluetooth devices as a non-root user,
-   please remember to add you to plugdev group.
-
-   If you want to use rfcomm as a normal user, you need to add the user
-   to the uucp group.
-"
-
-PATCHES=(
-   # Use static group "plugdev" to not force people to become root for
-   # controlling the devices.
-   "${FILESDIR}"/bluez-plugdev.patch
-
-   # Try both udevadm paths to cover udev/systemd vs. eudev locations 
(#539844)
-   # http://www.spinics.net/lists/linux-bluetooth/msg58739.html
-   "${FILESDIR}"/bluez-udevadm-path.patch
-
-   # build: Quote systemd variable names, bug #527432
-   # http://article.gmane.org/gmane.linux.bluez.kernel/67230
-   "${FILESDIR}"/bluez-5.39-systemd-quote.patch
-
-   # Fedora patches
-   # http://www.spinics.net/lists/linux-bluetooth/msg40136.html
-   
"${FILESDIR}"/0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch
-
-   # http://www.spinics.net/lists/linux-bluetooth/msg41264.html
-   "${FILESDIR}"/0002-autopair-Don-t-handle-the-iCade.patch
-
-   # ???
-   

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

2017-07-16 Thread Pacho Ramos
commit: bd6cc261883838b1a1469f14d413af91c8b3aa02
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jul 16 11:51:04 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jul 16 11:51:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd6cc261

net-wireless/bluez: Version bump, fix extra-tools (#622712 by Ted Rodgers)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-wireless/bluez/Manifest  |   1 +
 net-wireless/bluez/bluez-5.46.ebuild | 253 +++
 2 files changed, 254 insertions(+)

diff --git a/net-wireless/bluez/Manifest b/net-wireless/bluez/Manifest
index 936809b211e..3adf18155a8 100644
--- a/net-wireless/bluez/Manifest
+++ b/net-wireless/bluez/Manifest
@@ -1,2 +1,3 @@
 DIST bluez-5.43.tar.xz 1658348 SHA256 
16c9c05d2a1da644ce3570d975ada3643d2e60c007a955bac09c0a0efeb58d15 SHA512 
a48ac3d196a16fdfe7ef9bdc9a4ed8c9d40054e4f801a27a45150ce46e655ceff6264d230721065081d865c8b1f754ea0c407acc84fd299529aba048ce31889c
 WHIRLPOOL 
b63fcb8f9784122168f89902a74d811cc6236999de5dfe62b425032ac4d51923742f77d6d9957b3811c9584d194065bba184daf47882b1f09f760184a18838e9
 DIST bluez-5.45.tar.xz 1672404 SHA256 
4cacb00703a6bc149cb09502257d321597d43952374a16f3558766ffa85364e9 SHA512 
ecefb2cddb5b40ac4b5650a849e5635d84ec3f6819849ca97af5a5d1eb220f0fe5734c81340c00c41e0a77613e19c35a9191a00094a2e4d9db6d597ec590010d
 WHIRLPOOL 
95afe011ae3ebd0c99efb1a81b6bddd664a06c1aae4d8a7701d5df0bc359e26a7328f8034c6cc591efcce78be7a2d3df433f1914a62ccaf98b92edc274ca41d6
+DIST bluez-5.46.tar.xz 1677640 SHA256 
ddab3d3837c1afb8ae228a94ba17709a4650bd4db24211b6771ab735c8908e28 SHA512 
57eb236d5d1607ffbd5e4c939ffcb1047e2240e05ac642d037eee0feb1425f2d95d8a75b30dee50448c7189183468620c69ed330d17217d13c05f98b80e73671
 WHIRLPOOL 
ea93901b2eff50f0e35dba984c26d4fb00116e05d6a691acf760fd4911e4ea35391ce2770ff3b1ac8c29a1c7acbb6a8718ea0acdea8421554ff961313c4288d8

diff --git a/net-wireless/bluez/bluez-5.46.ebuild 
b/net-wireless/bluez/bluez-5.46.ebuild
new file mode 100644
index 000..eaaf74b2360
--- /dev/null
+++ b/net-wireless/bluez/bluez-5.46.ebuild
@@ -0,0 +1,253 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools ltprune multilib python-single-r1 readme.gentoo-r1 systemd 
udev user multilib-minimal
+
+DESCRIPTION="Bluetooth Tools and System Daemons for Linux"
+HOMEPAGE="http://www.bluez.org;
+SRC_URI="mirror://kernel/linux/bluetooth/${P}.tar.xz"
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~x86"
+IUSE="alsa cups doc debug deprecated extra-tools experimental +obex +readline 
selinux systemd test test-programs +udev user-session"
+
+# Since this release all remaining extra-tools need readline support, but this 
could
+# change in the future, hence, this REQUIRED_USE constraint could be dropped
+# again in the future.
+REQUIRED_USE="
+   extra-tools? ( deprecated readline )
+   test? ( ${PYTHON_REQUIRED_USE} )
+   test-programs? ( ${PYTHON_REQUIRED_USE} )
+   user-session? ( systemd )
+"
+
+CDEPEND="
+   >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}]
+   >=sys-apps/dbus-1.6:=[user-session=]
+   >=sys-apps/hwids-20121202.2
+   alsa? ( media-libs/alsa-lib )
+   cups? ( net-print/cups:= )
+   obex? ( dev-libs/libical:= )
+   readline? ( sys-libs/readline:= )
+   systemd? ( sys-apps/systemd )
+   udev? ( >=virtual/udev-172 )
+"
+TEST_DEPS="${PYTHON_DEPS}
+   >=dev-python/dbus-python-1[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+"
+
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+   test? ( ${TEST_DEPS} )
+"
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-bluetooth )
+   test-programs? ( ${TEST_DEPS} )
+"
+DOC_CONTENTS="
+   If you want to control your bluetooth devices as a non-root user,
+   please remember to add you to plugdev group.
+
+   If you want to use rfcomm as a normal user, you need to add the user
+   to the uucp group.
+"
+
+PATCHES=(
+   # Use static group "plugdev" to not force people to become root for
+   # controlling the devices.
+   "${FILESDIR}"/bluez-plugdev.patch
+
+   # Try both udevadm paths to cover udev/systemd vs. eudev locations 
(#539844)
+   # http://www.spinics.net/lists/linux-bluetooth/msg58739.html
+   "${FILESDIR}"/bluez-udevadm-path.patch
+
+   # build: Quote systemd variable names, bug #527432
+   # http://article.gmane.org/gmane.linux.bluez.kernel/67230
+   "${FILESDIR}"/bluez-5.39-systemd-quote.patch
+
+   # Fedora patches
+   # http://www.spinics.net/lists/linux-bluetooth/msg40136.html
+   
"${FILESDIR}"/0001-obex-Use-GLib-helper-function-to-manipulate-paths.patch
+
+   # http://www.spinics.net/lists/linux-bluetooth/msg41264.html
+   "${FILESDIR}"/0002-autopair-Don-t-handle-the-iCade.patch
+
+   # ???
+  

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

2017-07-16 Thread Manuel Rüger
commit: d769d333972b69bdbfd557c67c5f63f4920a57b6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 11:48:00 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 11:48:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d769d333

app-emulation/docker-runc: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-emulation/docker-runc/Manifest |  1 -
 .../docker-runc-1.0.0_rc2_p20170310.ebuild | 59 --
 2 files changed, 60 deletions(-)

diff --git a/app-emulation/docker-runc/Manifest 
b/app-emulation/docker-runc/Manifest
index b63a3e7e6cf..e38abbd9bc9 100644
--- a/app-emulation/docker-runc/Manifest
+++ b/app-emulation/docker-runc/Manifest
@@ -1,3 +1,2 @@
 DIST docker-runc-1.0.0_rc2_p20170308.tar.gz 561400 SHA256 
bdd0fc0b5db42bb1fc439d5a5d6347d97b285e676559afb620ffd9f62fc1de26 SHA512 
f17c7ff09578573a161f14616446e74d92d66039c1462bce23ea507b151eb66ede12d2ca583d3dace21d186a80bdadf222fc180bf1123e29c68e43f2f2d949c8
 WHIRLPOOL 
f6853ccdd09ca1481828b20e64403151cd9c5d46ceb81c50e884d47e18f8594c21bf53102b252852b259b6b0186f54f070fb7f3c7e4447123cbf05aa69233035
-DIST docker-runc-1.0.0_rc2_p20170310.tar.gz 561483 SHA256 
b5c50d7d9a5f610d5424f96196efa306ec708fd9299302dd919545099c16b7c1 SHA512 
225a37b4a3a79ff0d7a3e74b997f6e5547e270d02c58e65ccb5ea2d81771c489378727bd6abf2f445ea94c2e7717e2991da9fb4cab74327fd57c0e6218143cc3
 WHIRLPOOL 
ecf6ee1d2ed977b74d0d5d5dbf3ff2cc96728bd680a13c58f715dea2401002b0da461d6d2d9ac6af35f290a356821b19175e6f5004fa25b3c8d82eca69d87965
 DIST docker-runc-1.0.0_rc3_p20170607.tar.gz 1043233 SHA256 
b363764efc58fc25757b71b8f64569f1f1f81f0beaa5cc3542ed7d602f15fa75 SHA512 
53b9bc1ffd0c76e886a0eb9d9f0c78238b5bd7ca59884138c0ef438322b3b3b09d58a36e0fec8f6daa8b465323b7dc38515a915945f2009233e343b2ec3eca14
 WHIRLPOOL 
f6069ea7cb9100be36ad40fbd24a46de65837e2408dd045fbb69aa6c6442f0ac662feba8f61caf21ef0aec1fcfed3a47b60e87f179012580d46e3dd041865f32

diff --git a/app-emulation/docker-runc/docker-runc-1.0.0_rc2_p20170310.ebuild 
b/app-emulation/docker-runc/docker-runc-1.0.0_rc2_p20170310.ebuild
deleted file mode 100644
index 3ed57fa7df8..000
--- a/app-emulation/docker-runc/docker-runc-1.0.0_rc2_p20170310.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-EGO_PN="github.com/docker/${PN/docker-}"
-
-if [[ ${PV} == * ]]; then
-   inherit golang-vcs
-else
-   MY_PV="${PV/_/-}"
-   EGIT_COMMIT="9c2d8d184e5da67c95d601382adf14862e4f2228"
-   RUNC_COMMIT="9c2d8d1" # Change this when you update the ebuild
-   SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~ppc64"
-   inherit golang-vcs-snapshot
-fi
-
-DESCRIPTION="runc container cli tools (docker fork)"
-HOMEPAGE="http://runc.io;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="apparmor hardened +seccomp"
-
-RDEPEND="
-   apparmor? ( sys-libs/libapparmor )
-   seccomp? ( sys-libs/libseccomp )
-   !app-emulation/runc
-"
-
-S=${WORKDIR}/${P}/src/${EGO_PN}
-
-RESTRICT="test"
-
-src_compile() {
-   # Taken from app-emulation/docker-1.7.0-r1
-   export CGO_CFLAGS="-I${ROOT}/usr/include"
-   export CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')
-   -L${ROOT}/usr/$(get_libdir)"
-
-   # Setup GOPATH so things build
-   rm -rf .gopath
-   mkdir -p .gopath/src/"$(dirname "${GITHUB_URI}")"
-   ln -sf ../../../.. .gopath/src/"${GITHUB_URI}"
-   export GOPATH="${PWD}/.gopath:${PWD}/vendor"
-
-   # build up optional flags
-   local options=(
-   $(usex apparmor 'apparmor')
-   $(usex seccomp 'seccomp')
-   )
-
-   emake BUILDTAGS="${options[*]}" \
-   COMMIT="${RUNC_COMMIT}"
-}
-
-src_install() {
-   dobin runc
-}



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

2017-07-16 Thread Manuel Rüger
commit: 3b381fad9bb4a251fb6d6f53540ca80f497d1f2c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 11:47:13 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 11:47:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b381fad

app-emulation/containerd: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-emulation/containerd/Manifest  |  5 ---
 .../containerd/containerd-0.2.5-r1.ebuild  | 40 -
 app-emulation/containerd/containerd-0.2.5.ebuild   | 40 -
 app-emulation/containerd/containerd-0.2.6.ebuild   | 40 -
 app-emulation/containerd/containerd-0.2.7.ebuild   | 40 -
 app-emulation/containerd/containerd-0.2.8.ebuild   | 40 -
 .../containerd/containerd-0.2.8_p20170504.ebuild   | 42 --
 7 files changed, 247 deletions(-)

diff --git a/app-emulation/containerd/Manifest 
b/app-emulation/containerd/Manifest
index 54fc20171b6..b3b0e1bf85f 100644
--- a/app-emulation/containerd/Manifest
+++ b/app-emulation/containerd/Manifest
@@ -1,7 +1,2 @@
-DIST containerd-0.2.5.tar.gz 1003500 SHA256 
88e099af66b50abe7f2159f13bdab793fa5199d8d5b9a9ef7a68171abb4359be SHA512 
ba1e074bb7556a7c4be4d68dc62aa2fa4b823682c209d1609c1f11518a7b7167139ea159d31e0b21ba190d83115a67e5e45b54b6a4770742d49e9e561309551f
 WHIRLPOOL 
eb3622ba99c4d4806bda9a45853422a5b0b884869ed3be4c3caec4c20f49027e8db78b9885eca7bc83a0f3b08e9a66eca950390f0eda1ef2535fd3ab41623bf4
 DIST containerd-0.2.5_p20170308.tar.gz 1021631 SHA256 
d08d3d0758b76f7de0e8f503b74e1562d8c0a1014cb4baf4cd34e246751cec4c SHA512 
8b00862a7b54490a8342bcc0eddaa7e8c86d1e05c02f5173b9f4a08321425f8d75d1fb0665e86bc79249294354977693c21d6a4d8405866ff8058da9772e2ecc
 WHIRLPOOL 
ed658d10f927fff4d9591930bdf855fc0ed259ca538d4361ce3cffcc5943dcfe39121242f1c9ef950897761016a8450b3a2117c0be0b8b0ebffeab330fe30b5d
-DIST containerd-0.2.6.tar.gz 1020572 SHA256 
a67c4153ac5ae26b9d11daac133b90cba059ba16de7579e39c3e82bcda856493 SHA512 
41018bda556a3ddfb1bd3a16e642548ba06f413b13fd1488e731896e277ba6c84a393ebd5de067ecaeccc695297a2b74edf22e5a3fe8f2e3eadf78d080bdeff6
 WHIRLPOOL 
98f64c888ea580074e51b91311ab186291cb2d3ecc9f178d828687dbb60b35104237041699b6125cf026edd245459a052fda1801ac3cd7e1efe34606c3d9a4eb
-DIST containerd-0.2.7.tar.gz 1034541 SHA256 
cc46de64a75fa8babe0a85aac987f926870bf84d78040430f95ce478ed195122 SHA512 
d0885fa37aaa1110d9312f81102e619ca4ae8d3c39c83c01852fd8618945121596169a1d41017d19ad32ff47b619a2c1c18a3582d290a56f08640412dcfc451a
 WHIRLPOOL 
35748adf2c097dad4c60e48b2eb3389b57e78fc8d3b228f15b0297b5c1d037a77f29118089a5159c1f25baf7e4d7f93f6fc74d3cd2c85164711378e2df6e251d
-DIST containerd-0.2.8.tar.gz 1034518 SHA256 
f002d4d93a86cd3a0c9e7d9d71455a94790302daab1e51dd2dd53e7f0ba4d217 SHA512 
a8c0b9faa9bf225be315067aa634ee366c8d78a137dddade2ad09160ecd8f89d487fdce896efd73bedcd6d8c97e20f746ba949a13901c38977a40dbb558339d8
 WHIRLPOOL 
99058822f80d37e8a96968ae26cf00c33c8ed78fffeff9f2d07a2c25c76439ab44c92ce333712f6749787a04b65c54b112511d66c97cfcce35a5d5cf954ac2f4
-DIST containerd-0.2.8_p20170504.tar.gz 1231053 SHA256 
6316ecefe43c89ddafd31608f6d21aeec250f498b27c194551bde3679e765865 SHA512 
6b5fc4845c560239e197c93620f1b836972563f24c8a595ff82f6798c372c5b9a7a6be6dc52aa443d72b61108723d56a67884ff464f666085b3af28424e56136
 WHIRLPOOL 
2982a405aa82c28e7498e54d42d29557b6024ed411537c4b2084f8574111511f4e5cb751ac18b025919047aa45933bdd28171b871826f87cfa004d53503cfbb4
 DIST containerd-0.2.9.tar.gz 1228977 SHA256 
2360fec91d40e4e93757f964f07c74e35b6bfe838252b1cc814a176e1cd1c604 SHA512 
6f0de476668e6b86a0cd5e1ea0f6dac24e0e68fe2dd52b8915dbafa5ffab137a5eea866c216f8184ffa6e4750c7b69bce3d46552e8be283a15ce676ea4356fc8
 WHIRLPOOL 
b9fdd57af3cf39e6a5efdd67f0302ad38d6634d20aa3eb45431d2900f5fbb7dc62d624b07a5028bbb09ae763e07103e37703cf52f3e14e7af72fc2198d9c7876

diff --git a/app-emulation/containerd/containerd-0.2.5-r1.ebuild 
b/app-emulation/containerd/containerd-0.2.5-r1.ebuild
deleted file mode 100644
index cde4c658099..000
--- a/app-emulation/containerd/containerd-0.2.5-r1.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-EGO_PN="github.com/docker/${PN}"
-
-inherit toolchain-funcs
-
-if [[ ${PV} == * ]]; then
-   inherit golang-vcs
-else
-   MY_PV="${PV/_/-}"
-   EGIT_COMMIT="v${MY_PV}"
-   SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~ppc64"
-   inherit golang-vcs-snapshot
-fi
-
-DESCRIPTION="A daemon to control runC"
-HOMEPAGE="https://containerd.tools;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="hardened +seccomp"
-
-DEPEND=""
-RDEPEND=">=app-emulation/docker-runc-1.0.0_rc2
-   seccomp? ( sys-libs/libseccomp )"
-
-S=${WORKDIR}/${P}/src/${EGO_PN}
-
-src_compile() {
-   local options=( $(usex seccomp "seccomp") )
-   

[gentoo-commits] repo/gentoo:master commit in: app-crypt/acme/

2017-07-16 Thread Manuel Rüger
commit: c7f611b1222738fe8e1c532ca5d27dac013d3c26
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 11:30:55 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 11:30:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7f611b1

app-crypt/acme: Version bump to 0.16.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-crypt/acme/Manifest   |  1 +
 app-crypt/acme/acme-0.16.0.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index b4c50dbe2d5..eac25244d5f 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1,3 +1,4 @@
 DIST certbot-0.14.1.tar.gz 851705 SHA256 
7992fced742649e7b7668e4db7685de12248a4ffba66810cb336e9b6412e3567 SHA512 
309e0e1d071960ae9a5cc4c9f965cc623b68d3d61f69282f21629514553a75af4d384d2c29fd3beee6eb8447c7b6651ce86c33c4f3916876fac7a91a08d2075d
 WHIRLPOOL 
f5a5be776f0a9bb9096a6e8dfa64942bd00583559cba64d3c1a5b991578bb8c7cac5076895e4291e1ec4c8fa767f026a90e0c1312c4f425ffcb5bf08bd0e9e40
 DIST certbot-0.15.0.tar.gz 942788 SHA256 
87d306b1c013b472b8f548b38ccc476c125816435bb3b99e932fed09ac777296 SHA512 
e884b34985a1128ce94d6b2be77af6ee86ded8b870e066f3f4bc22f78501f3f0a51060edcf75a11cd31dd525388adb8ccc4e2da0068b5b75be131d0fb0ca6844
 WHIRLPOOL 
01b172e8c7ac5d3678ee608b36d93f23943bf17f1e9c593cc1af3febcf0549b03961e69e537f099643dd9ee268497f76c2c18d8fa7a1d45753bc50e670375317
+DIST certbot-0.16.0.tar.gz 992700 SHA256 
9abac759d7d72b520693ff806479e87609059a1546bb6ea26416267ebeedd25b SHA512 
4cb6ec06c6ec71cd6886a716100f269de3922f17a582c8c20ec40327b65e1c16347a5b33d44131e56a7667233ebba88ff36a4e854beedd13e848897ba09a7e64
 WHIRLPOOL 
34dae0b20d472b4020986d0768ea6757c977fa462a9f81711007c051e76f9ad60f5a3bc77c768975e71a791f20e5ca2bb6f2fc41d809ebe2541129c975ef
 DIST letsencrypt-0.1.0.tar.gz 524821 SHA256 
1c1ac7b41e5e0fc0e41a7ef159ac9147a4aafff54453d57b519eb05bf52ade14 SHA512 
6a786290362741ac97dcb4b59bc4cba56f3e8b5193bbc10be19086d462f76e6124259c42bac36afe9eb818f4bb9edec34f8e2a02bd8c855e3b35404f4ee81f96
 WHIRLPOOL 
cdc41a3466de54ab8ddfeedea9935205d78383028769dcfbc876be0c2ef80c2d14f5d0e4a9c56a751163718f5ababb07848822989a060de7031ea8ebdf6424a0

diff --git a/app-crypt/acme/acme-0.16.0.ebuild 
b/app-crypt/acme/acme-0.16.0.ebuild
new file mode 100644
index 000..bf3eed8aaa7
--- /dev/null
+++ b/app-crypt/acme/acme-0.16.0.ebuild
@@ -0,0 +1,38 @@
+# 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})
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   inherit git-r3
+   S=${WORKDIR}/${P}/${PN}
+else
+   SRC_URI="https://github.com/certbot/certbot/archive/v${PV}.tar.gz -> 
certbot-${PV}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~x86"
+   S=${WORKDIR}/certbot-${PV}/acme
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="An implementation of the ACME protocol"
+HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+
+RDEPEND=">=dev-python/cryptography-0.8[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-0.13[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.10[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="test? ( ${RDEPEND} dev-python/nose[${PYTHON_USEDEP}] )
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]"
+
+python_test() {
+   nosetests -w ${PN} || die
+}



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

2017-07-16 Thread Manuel Rüger
commit: 78da8c0ab31e6dd995bd81e82489683f244ddb17
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jul 16 11:44:56 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jul 16 11:44:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78da8c0a

app-emulation/docker: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-emulation/docker/docker-17.06.0.ebuild | 312 -
 1 file changed, 312 deletions(-)

diff --git a/app-emulation/docker/docker-17.06.0.ebuild 
b/app-emulation/docker/docker-17.06.0.ebuild
deleted file mode 100644
index c9b5388deca..000
--- a/app-emulation/docker/docker-17.06.0.ebuild
+++ /dev/null
@@ -1,312 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_PN="github.com/docker/docker-ce"
-
-if [[ ${PV} = ** ]]; then
-   # Docker cannot be fetched via "go get", thanks to autogenerated code
-   EGIT_REPO_URI="https://${EGO_PN}.git;
-   EGIT_CHECKOUT_DIR="${WORKDIR}/${P}/src/${EGO_PN}"
-   inherit git-r3
-else
-   inherit versionator
-   if [ "$(get_version_component_count)" = 4 ]; then
-   MY_PV="$(replace_version_separator 3 '-ce-')"
-   else
-   MY_PV="$PV-ce"
-   fi
-   DOCKER_GITCOMMIT="02c1d87"
-   EGIT_COMMIT="v${MY_PV}"
-   SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm"
-   [ "$DOCKER_GITCOMMIT" ] || die "DOCKER_GITCOMMIT must be added manually 
for each bump!"
-   inherit golang-vcs-snapshot
-fi
-inherit bash-completion-r1 golang-base linux-info systemd udev user
-
-DESCRIPTION="The core functions you need to create Docker images and run 
Docker containers"
-HOMEPAGE="https://dockerproject.org;
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="apparmor aufs btrfs +container-init +device-mapper hardened overlay 
pkcs11 seccomp"
-
-# 
https://github.com/docker/docker/blob/master/project/PACKAGERS.md#build-dependencies
-CDEPEND="
-   >=dev-db/sqlite-3.7.9:3
-   device-mapper? (
-   >=sys-fs/lvm2-2.02.89[thin]
-   )
-   seccomp? ( >=sys-libs/libseccomp-2.2.1 )
-   apparmor? ( sys-libs/libapparmor )
-"
-
-DEPEND="
-   ${CDEPEND}
-
-   dev-go/go-md2man
-
-   btrfs? (
-   >=sys-fs/btrfs-progs-3.16.1
-   )
-"
-
-# 
https://github.com/docker/docker/blob/master/project/PACKAGERS.md#runtime-dependencies
-# 
https://github.com/docker/docker/blob/master/project/PACKAGERS.md#optional-dependencies
-RDEPEND="
-   ${CDEPEND}
-   >=net-firewall/iptables-1.4
-   sys-process/procps
-   >=dev-vcs/git-1.7
-   >=app-arch/xz-utils-4.9
-
-   ~app-emulation/containerd-0.2.8_p20170504
-   ~app-emulation/docker-runc-1.0.0_rc3_p20170607[apparmor?,seccomp?]
-   app-emulation/docker-proxy
-   container-init? ( >=sys-process/tini-0.13.1[static] )
-"
-
-RESTRICT="installsources strip"
-
-S="${WORKDIR}/${P}/src/${EGO_PN}"
-
-# see "contrib/check-config.sh" from upstream's sources
-CONFIG_CHECK="
-   ~NAMESPACES ~NET_NS ~PID_NS ~IPC_NS ~UTS_NS
-   ~CGROUPS ~CGROUP_CPUACCT ~CGROUP_DEVICE ~CGROUP_FREEZER ~CGROUP_SCHED 
~CPUSETS ~MEMCG
-   ~KEYS
-   ~VETH ~BRIDGE ~BRIDGE_NETFILTER
-   ~NF_NAT_IPV4 ~IP_NF_FILTER ~IP_NF_TARGET_MASQUERADE
-   ~NETFILTER_XT_MATCH_ADDRTYPE ~NETFILTER_XT_MATCH_CONNTRACK
-   ~NF_NAT ~NF_NAT_NEEDED
-   ~POSIX_MQUEUE
-
-   ~USER_NS
-   ~SECCOMP
-   ~CGROUP_PIDS
-   ~MEMCG_SWAP ~MEMCG_SWAP_ENABLED
-
-   ~BLK_CGROUP ~BLK_DEV_THROTTLING ~IOSCHED_CFQ ~CFQ_GROUP_IOSCHED
-   ~CGROUP_PERF
-   ~CGROUP_HUGETLB
-   ~NET_CLS_CGROUP
-   ~CFS_BANDWIDTH ~FAIR_GROUP_SCHED ~RT_GROUP_SCHED
-   ~IP_VS ~IP_VS_PROTO_TCP ~IP_VS_PROTO_UDP ~IP_VS_NFCT ~IP_VS_RR
-
-   ~VXLAN
-   ~XFRM_ALGO ~XFRM_USER
-   ~IPVLAN
-   ~MACVLAN ~DUMMY
-"
-
-ERROR_KEYS="CONFIG_KEYS: is mandatory"
-ERROR_MEMCG_SWAP="CONFIG_MEMCG_SWAP: is required if you wish to limit swap 
usage of containers"
-ERROR_RESOURCE_COUNTERS="CONFIG_RESOURCE_COUNTERS: is optional for container 
statistics gathering"
-
-ERROR_BLK_CGROUP="CONFIG_BLK_CGROUP: is optional for container statistics 
gathering"
-ERROR_IOSCHED_CFQ="CONFIG_IOSCHED_CFQ: is optional for container statistics 
gathering"
-ERROR_CGROUP_PERF="CONFIG_CGROUP_PERF: is optional for container statistics 
gathering"
-ERROR_CFS_BANDWIDTH="CONFIG_CFS_BANDWIDTH: is optional for container 
statistics gathering"
-ERROR_XFRM_ALGO="CONFIG_XFRM_ALGO: is optional for secure networks"
-ERROR_XFRM_USER="CONFIG_XFRM_USER: is optional for secure networks"
-
-pkg_setup() {
-   if kernel_is lt 3 10; then
-   ewarn ""
-   ewarn "Using Docker with kernels older than 3.10 is unstable 
and unsupported."
-   ewarn " - 
http://docs.docker.com/engine/installation/binaries/#check-kernel-dependencies;
-   fi
-

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

2017-07-16 Thread Tobias Klausmann
commit: 31f9cd35bfcd90a9900a9b1f4a7c8071a26a3035
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:10:37 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:10:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31f9cd35

sys-kernel/gentoo-sources-4.1.42-r0: alpha stable

Gentoo-Bug: 623644

 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 9fd6dbf3608..0e6f381c713 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: dev-lang/php/

2017-07-16 Thread Tobias Klausmann
commit: 40477d14d1d918be9e7e2751e77489b497b05db4
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:10:38 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:10:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40477d14

dev-lang/php-7.0.21-r0: alpha stable

Gentoo-Bug: 624052

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

diff --git a/dev-lang/php/php-7.0.21.ebuild b/dev-lang/php/php-7.0.21.ebuild
index 59e72466036..dd6ee29f566 100644
--- a/dev-lang/php/php-7.0.21.ebuild
+++ b/dev-lang/php/php-7.0.21.ebuild
@@ -18,7 +18,7 @@ LICENSE="PHP-3.01
unicode? ( BSD-2 LGPL-2.1 )"
 
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
 
 # We can build the following SAPIs in the given order
 SAPIS="embed cli cgi fpm apache2 phpdbg"



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

2017-07-16 Thread Tobias Klausmann
commit: d7efdc810db7c40dfd9799287679a79f6e7546f2
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:22 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7efdc81

dev-libs/xapian-1.4.4-r0: alpha stable

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 a6ee8db56d3..c46388aaa89 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-python/pmw/

2017-07-16 Thread Tobias Klausmann
commit: 2c9f9e110a9e5a08ab88fad916bbbac9b972cd02
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:23 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c9f9e11

dev-python/pmw-2.0.1-r0: alpha stable

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 ee6f48caaf0..6a83ad39a45 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/pythondialog/

2017-07-16 Thread Tobias Klausmann
commit: e67a1051f3ed3500f9fc8cf11e74435e9c5252a6
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:24 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e67a1051

dev-python/pythondialog-3.3.0-r0: alpha stable

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 083cdd389cc..e9228d7978b 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: app-text/xapian-omega/

2017-07-16 Thread Tobias Klausmann
commit: 20e501e8d663752be65f093891e208c37533986c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:22 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20e501e8

app-text/xapian-omega-1.4.4-r0: alpha stable

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 c1440ef9bc0..33499f1f44b 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 ia64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="alpha amd64 ~arm ia64 ~mips ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="dev-libs/xapian:0/30



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

2017-07-16 Thread Tobias Klausmann
commit: 29a07425de5f5d5913edd009380bdd6c153a7e66
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:23 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29a07425

dev-python/pympler-0.5-r0: alpha stable

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 78907c0f513..23c759e6982 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: gnome-base/libgnome-keyring/

2017-07-16 Thread Tobias Klausmann
commit: 2a9a21fed743608fd4e74523c7c7005d20bfd7a4
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:16 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a9a21fe

gnome-base/libgnome-keyring-3.12.0-r1: alpha stable

Gentoo-Bug: 624312

 gnome-base/libgnome-keyring/libgnome-keyring-3.12.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/libgnome-keyring/libgnome-keyring-3.12.0-r1.ebuild 
b/gnome-base/libgnome-keyring/libgnome-keyring-3.12.0-r1.ebuild
index e0e2d4972c1..7803261b11b 100644
--- a/gnome-base/libgnome-keyring/libgnome-keyring-3.12.0-r1.ebuild
+++ b/gnome-base/libgnome-keyring/libgnome-keyring-3.12.0-r1.ebuild
@@ -17,7 +17,7 @@ LICENSE="LGPL-2+ GPL-2+" # tests are GPL-2
 SLOT="0"
 IUSE="debug +introspection test vala"
 REQUIRED_USE="vala? ( introspection )"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~sparc-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.16.0:2[${MULTILIB_USEDEP}]



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

2017-07-16 Thread Tobias Klausmann
commit: 9c9f15299c1bb2b6a34d937ecbfb2d1a6fb15ba4
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:24 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c9f1529

media-sound/xmms2-0.8_p20161122-r0: alpha stable

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 6e57178b26a..c8dd0136f8f 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: www-servers/apache/

2017-07-16 Thread Tobias Klausmann
commit: 6b7b91cb9a4e051bc0a3805f778db006e67b138f
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:21 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b7b91cb

www-servers/apache-2.4.27-r0: alpha stable

Gentoo-Bug: 624868

 www-servers/apache/apache-2.4.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-servers/apache/apache-2.4.27.ebuild 
b/www-servers/apache/apache-2.4.27.ebuild
index c066d09b2bf..9c58e22d2d7 100644
--- a/www-servers/apache/apache-2.4.27.ebuild
+++ b/www-servers/apache/apache-2.4.27.ebuild
@@ -127,7 +127,7 @@ HOMEPAGE="https://httpd.apache.org/;
 # some helper scripts are Apache-1.1, thus both are here
 LICENSE="Apache-2.0 Apache-1.1"
 SLOT="2"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos 
~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x64-macos ~x86-macos 
~m68k-mint ~sparc64-solaris ~x64-solaris"
 
 DEPEND+="apache2_modules_http2? ( >=net-libs/nghttp2-1.2.1 )"
 



[gentoo-commits] repo/gentoo:master commit in: app-crypt/heimdal/

2017-07-16 Thread Tobias Klausmann
commit: acc46f8b6b79b843dc047e9a6caeaa4710210e4d
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:19 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc46f8b

app-crypt/heimdal-7.4.0-r0: alpha stable

Gentoo-Bug: 624674

 app-crypt/heimdal/heimdal-7.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/heimdal/heimdal-7.4.0.ebuild 
b/app-crypt/heimdal/heimdal-7.4.0.ebuild
index 02fb0c0c01c..d569923d20d 100644
--- a/app-crypt/heimdal/heimdal-7.4.0.ebuild
+++ b/app-crypt/heimdal/heimdal-7.4.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd"
 IUSE="afs +berkdb caps hdb-ldap ipv6 otp +pkinit selinux ssl static-libs test 
X"
 
 CDEPEND="ssl? ( >=dev-libs/openssl-1.0.1h-r2[${MULTILIB_USEDEP}] )



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

2017-07-16 Thread Tobias Klausmann
commit: 74a80d8a81cbaa7333b6c216b6c0ab5a1a2e4206
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:20 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74a80d8a

dev-perl/Math-Pari-2.10.809.0-r0: alpha stable

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 3f1fb17e0c3..067d052c412 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: app-text/dvipsk/

2017-07-16 Thread Tobias Klausmann
commit: b63b2ad87991af444bb23ed503d484afa5d5b6e5
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:18 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b63b2ad8

app-text/dvipsk-5.997_p20170524-r0: alpha stable

Gentoo-Bug: 624442

 app-text/dvipsk/dvipsk-5.997_p20170524.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/dvipsk/dvipsk-5.997_p20170524.ebuild 
b/app-text/dvipsk/dvipsk-5.997_p20170524.ebuild
index fe03d4ab27c..cc22d93147a 100644
--- a/app-text/dvipsk/dvipsk-5.997_p20170524.ebuild
+++ b/app-text/dvipsk/dvipsk-5.997_p20170524.ebuild
@@ -28,7 +28,7 @@ SRC_URI="${SRC_URI} ) "
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc source"
 
 DEPEND=">=dev-libs/kpathsea-6.2.1"



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

2017-07-16 Thread Tobias Klausmann
commit: 6483d6dd7a873f3828133caec0ae6ced5e1f6b2c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:16 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6483d6dd

media-libs/harfbuzz-1.4.6-r2: alpha stable

Gentoo-Bug: 624312

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

diff --git a/media-libs/harfbuzz/harfbuzz-1.4.6-r2.ebuild 
b/media-libs/harfbuzz/harfbuzz-1.4.6-r2.ebuild
index 57c353c35cc..914b1882b0e 100644
--- a/media-libs/harfbuzz/harfbuzz-1.4.6-r2.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-1.4.6-r2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://www.freedesktop.org/wiki/Software/HarfBuzz;
 LICENSE="Old-MIT ISC icu"
 SLOT="0/0.9.18" # 0.9.18 introduced the harfbuzz-icu split; bug #472416
 [[ ${PV} ==  ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos ~x64-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos 
~x86-macos ~x64-solaris"
 
 IUSE="+cairo debug fontconfig +glib +graphite icu +introspection static-libs 
test +truetype"
 REQUIRED_USE="introspection? ( glib )"



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

2017-07-16 Thread Tobias Klausmann
commit: 391bb34c4e3c286d0901cb4e137d83e54fc691b3
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:17 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=391bb34c

app-text/ps2pkm-1.8_p20170524-r0: alpha stable

Gentoo-Bug: 624440

 app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild 
b/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild
index a11ff83b9a1..4dc6727cd87 100644
--- a/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild
+++ b/app-text/ps2pkm/ps2pkm-1.8_p20170524.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 DEPEND=">=dev-libs/kpathsea-6.2.1"



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

2017-07-16 Thread Tobias Klausmann
commit: 62e9a52010951a3f7abb17ab65ae9b1db0990e88
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:20 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62e9a520

dev-perl/Test-Regexp-2017040101.0.0-r0: alpha stable

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 7148c30c594..0ab706aa1ad 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: app-admin/apache-tools/

2017-07-16 Thread Tobias Klausmann
commit: 7329ba21396fe2aa3ebbb3e1cbc7262020aa1620
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:21 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7329ba21

app-admin/apache-tools-2.4.27-r0: alpha stable

Gentoo-Bug: 624868

 app-admin/apache-tools/apache-tools-2.4.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/apache-tools/apache-tools-2.4.27.ebuild 
b/app-admin/apache-tools/apache-tools-2.4.27.ebuild
index 9f4872e9b16..1b33d25d4db 100644
--- a/app-admin/apache-tools/apache-tools-2.4.27.ebuild
+++ b/app-admin/apache-tools/apache-tools-2.4.27.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://apache/httpd/httpd-${PV}.tar.bz2"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc64-solaris ~x64-solaris"
 IUSE="libressl ssl"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-tex/bibtexu/

2017-07-16 Thread Tobias Klausmann
commit: b7abea52824091488c2237afbaeea859dd0dd6ff
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:18 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7abea52

dev-tex/bibtexu-3.71_p20170524-r0: alpha stable

Gentoo-Bug: 62

 dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild 
b/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild
index 28879c7832b..ada42db84d7 100644
--- a/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild
+++ b/dev-tex/bibtexu/bibtexu-3.71_p20170524.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc source"
 
 RDEPEND=">=dev-libs/kpathsea-6.2.1:=



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

2017-07-16 Thread Tobias Klausmann
commit: 5a750192d542dd9f27479301f885a38840f83148
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:22 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a750192

dev-libs/xapian-bindings-1.4.4-r0: alpha stable

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 746cc401e96..51d32b0f4ea 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-libs/ptexenc/

2017-07-16 Thread Tobias Klausmann
commit: 573b7ced5e69cbd36d2a0b79ece18ba0da3afa0c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:18 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573b7ced

dev-libs/ptexenc-1.3.5_p20170524-r0: alpha stable

Gentoo-Bug: 624446

 dev-libs/ptexenc/ptexenc-1.3.5_p20170524.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/ptexenc/ptexenc-1.3.5_p20170524.ebuild 
b/dev-libs/ptexenc/ptexenc-1.3.5_p20170524.ebuild
index 21613aa5982..0ae2ff6ec32 100644
--- a/dev-libs/ptexenc/ptexenc-1.3.5_p20170524.ebuild
+++ b/dev-libs/ptexenc/ptexenc-1.3.5_p20170524.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/texlive-${PV#*_p}-source.tar.xz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~ppc-macos ~x86-macos"
 IUSE="iconv static-libs"
 
 DEPEND="iconv? ( virtual/libiconv )



[gentoo-commits] repo/gentoo:master commit in: x11-libs/gtk+/

2017-07-16 Thread Tobias Klausmann
commit: 2496f34d717fc69f8de952f6dc94fd9f7b8a9537
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:16 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2496f34d

x11-libs/gtk+-3.22.16-r0: alpha stable

Gentoo-Bug: 624312

 x11-libs/gtk+/gtk+-3.22.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/gtk+/gtk+-3.22.16.ebuild 
b/x11-libs/gtk+/gtk+-3.22.16.ebuild
index 8719d8247bc..a84ac25b23d 100644
--- a/x11-libs/gtk+/gtk+-3.22.16.ebuild
+++ b/x11-libs/gtk+/gtk+-3.22.16.ebuild
@@ -17,7 +17,7 @@ REQUIRED_USE="
xinerama? ( X )
 "
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 # Upstream wants us to do their job:
 # https://bugzilla.gnome.org/show_bug.cgi?id=768662#c1



[gentoo-commits] repo/gentoo:master commit in: x11-libs/pango/

2017-07-16 Thread Tobias Klausmann
commit: 7aef51f2b17970e1305d6010e3f00027c01161ac
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:17 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7aef51f2

x11-libs/pango-1.40.6-r0: alpha stable

Gentoo-Bug: 624312

 x11-libs/pango/pango-1.40.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/pango/pango-1.40.6.ebuild 
b/x11-libs/pango/pango-1.40.6.ebuild
index 99469d8f8dc..047d2d1cc2b 100644
--- a/x11-libs/pango/pango-1.40.6.ebuild
+++ b/x11-libs/pango/pango-1.40.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://www.pango.org/;
 
 LICENSE="LGPL-2+ FTL"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 
 IUSE="X +introspection test"
 



[gentoo-commits] repo/gentoo:master commit in: x11-libs/vte/

2017-07-16 Thread Tobias Klausmann
commit: 4144382e22a92099b7bc81a92864964231003ee0
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:17 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4144382e

x11-libs/vte-0.46.2-r0: alpha stable

Gentoo-Bug: 624312

 x11-libs/vte/vte-0.46.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/vte/vte-0.46.2.ebuild b/x11-libs/vte/vte-0.46.2.ebuild
index ddd2684028d..0112d30f457 100644
--- a/x11-libs/vte/vte-0.46.2.ebuild
+++ b/x11-libs/vte/vte-0.46.2.ebuild
@@ -13,7 +13,7 @@ 
HOMEPAGE="https://wiki.gnome.org/action/show/Apps/Terminal/VTE;
 LICENSE="LGPL-2+"
 SLOT="2.91"
 IUSE="+crypt debug glade +introspection vala"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-solaris ~x86-solaris"
 REQUIRED_USE="vala? ( introspection )"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-dicts/canna-2ch/

2017-07-16 Thread Tobias Klausmann
commit: 320005f1addcb11cd24086d146613054884ab5f3
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:19 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=320005f1

app-dicts/canna-2ch-20040519-r0: alpha stable

Gentoo-Bug: 624680

 app-dicts/canna-2ch/canna-2ch-20040519.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/canna-2ch/canna-2ch-20040519.ebuild 
b/app-dicts/canna-2ch/canna-2ch-20040519.ebuild
index 623b3f9f842..6884138e5df 100644
--- a/app-dicts/canna-2ch/canna-2ch-20040519.ebuild
+++ b/app-dicts/canna-2ch/canna-2ch-20040519.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://dev.gentoo.org/~naota/files/${P}.tar.gz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 hppa ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm64 hppa ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="canna"
 
 DEPEND="canna? ( app-i18n/canna )"



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

2017-07-16 Thread Tobias Klausmann
commit: 011abc38b5bba7e8b8099d83e0bf6419e0f518fa
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sun Jul 16 11:07:20 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sun Jul 16 11:07:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=011abc38

dev-perl/Regexp-Common-2017060201.0.0-r0: alpha stable

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 9fdfdd1aeaa..b288f13485d 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   >