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

2017-06-22 Thread Alexis Ballier
commit: 22d22cfbd076474406f5068ac6c79da78336395a
Author: Peter Levine  gmail  com>
AuthorDate: Fri Jun  2 02:45:59 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22d22cfb

media-libs/avidemux-core: Declare 'mycmakeargs' as an array

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/avidemux-core/avidemux-core-2.6.8.ebuild | 6 +++---
 media-libs/avidemux-core/avidemux-core-.ebuild  | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild 
b/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
index 7f039651d76..c47717b8c3d 100644
--- a/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
+++ b/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
@@ -85,7 +85,7 @@ src_prepare() {
 }
 
 src_configure() {
-   local mycmakeargs="
+   local mycmakeargs=(
-DAVIDEMUX_SOURCE_DIR='${S}'
$(cmake-utils_use nls GETTEXT)
$(cmake-utils_use sdl SDL)
@@ -93,10 +93,10 @@ src_configure() {
$(cmake-utils_use vdpau VDPAU)
$(cmake-utils_use video_cards_fglrx XVBA)
$(cmake-utils_use xv XVIDEO)
-   "
+   )
 
if use debug ; then
-   mycmakeargs+=" -DVERBOSE=1 -DCMAKE_BUILD_TYPE=Debug 
-DADM_DEBUG=1"
+   mycmakeargs+=( -DVERBOSE=1 -DCMAKE_BUILD_TYPE=Debug 
-DADM_DEBUG=1 )
fi
 
CMAKE_USE_DIR="${S}"/avidemux_core cmake-utils_src_configure

diff --git a/media-libs/avidemux-core/avidemux-core-.ebuild 
b/media-libs/avidemux-core/avidemux-core-.ebuild
index ce548ea31ba..420ac6ab9db 100644
--- a/media-libs/avidemux-core/avidemux-core-.ebuild
+++ b/media-libs/avidemux-core/avidemux-core-.ebuild
@@ -85,7 +85,7 @@ src_prepare() {
 }
 
 src_configure() {
-   local mycmakeargs="
+   local mycmakeargs=(
-DAVIDEMUX_SOURCE_DIR='${S}'
$(cmake-utils_use nls GETTEXT)
$(cmake-utils_use sdl SDL)
@@ -93,10 +93,10 @@ src_configure() {
$(cmake-utils_use vdpau VDPAU)
$(cmake-utils_use video_cards_fglrx XVBA)
$(cmake-utils_use xv XVIDEO)
-   "
+   )
 
if use debug ; then
-   mycmakeargs+=" -DVERBOSE=1 -DCMAKE_BUILD_TYPE=Debug 
-DADM_DEBUG=1"
+   mycmakeargs+=( -DVERBOSE=1 -DCMAKE_BUILD_TYPE=Debug 
-DADM_DEBUG=1 )
fi
 
CMAKE_USE_DIR="${S}"/avidemux_core cmake-utils_src_configure



[gentoo-commits] repo/gentoo:master commit in: media-libs/avidemux-core/files/, media-libs/avidemux-core/

2017-06-22 Thread Alexis Ballier
commit: 0b9deda9488d7ea978a43f5cf3d49c4319468af6
Author: Peter Levine  gmail  com>
AuthorDate: Mon May 29 03:38:43 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b9deda9

media-libs/avidemux-core: Fix building with GCC-6

Bug: https://bugs.gentoo.org/show_bug.cgi?id=594902
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../avidemux-core/avidemux-core-2.6.8.ebuild   |  3 +-
 .../files/avidemux-core-2.6.8-gcc6.patch   | 50 ++
 2 files changed, 52 insertions(+), 1 deletion(-)

diff --git a/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild 
b/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
index 713066eac7f..f7dde42a475 100644
--- a/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
+++ b/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -53,6 +53,7 @@ DEPEND="
 S="${WORKDIR}/${MY_P}"
 BUILD_DIR="${S}/buildCore"
 
+PATCHES=( "${FILESDIR}"/${P}-gcc6.patch )
 DOCS=( AUTHORS README )
 
 src_prepare() {

diff --git a/media-libs/avidemux-core/files/avidemux-core-2.6.8-gcc6.patch 
b/media-libs/avidemux-core/files/avidemux-core-2.6.8-gcc6.patch
new file mode 100644
index 000..dbdf8ff93a8
--- /dev/null
+++ b/media-libs/avidemux-core/files/avidemux-core-2.6.8-gcc6.patch
@@ -0,0 +1,50 @@
+--- a/avidemux_core/ADM_coreUtils/src/prefs.cpp
 b/avidemux_core/ADM_coreUtils/src/prefs.cpp
+@@ -44,8 +44,8 @@
+const char *name2;
+ADM_paramType  type;
+const char *defaultValue;
+-   floatmin;
+-   floatmax;
++   doublemin;
++   doublemax;
+ }optionDesc;
+ 
+ #include "prefs2_pref.h"
+--- a/avidemux_core/ADM_coreAudio/src/ADM_audioStreamBuffered.cpp
 b/avidemux_core/ADM_coreAudio/src/ADM_audioStreamBuffered.cpp
+@@ -46,7 +46,7 @@
+ // By construction, the error should be minimal
+ if(newDts!=ADM_AUDIO_NO_DTS)
+ {
+-if( abs(newDts-lastDts)>ADM_MAX_SKEW)
++if( labs((int64_t)newDts-lastDts)>ADM_MAX_SKEW)
+ {
+ printf("[AudioStream] Warning skew in dts =%"PRId64", 
\n",(int64_t)newDts-(uint64_t)lastDts);
+ printf("[AudioStream] Warning skew lastDts=%s 
\n",ADM_us2plain(lastDts));
+--- a/avidemux_core/ADM_coreVideoCodec/src/ADM_ffmp43.cpp
 b/avidemux_core/ADM_coreVideoCodec/src/ADM_ffmp43.cpp
+@@ -30,19 +30,19 @@
+ #define WRAP_Open_Template(funcz,argz,display,codecid) \
+ {\
+ AVCodec *codec=funcz(argz);\
+-if(!codec) {GUI_Error_HIG("Codec",QT_TR_NOOP("Internal error finding 
codec"display));ADM_assert(0);} \
++if(!codec) {GUI_Error_HIG("Codec",QT_TR_NOOP("Internal error finding codec" 
display));ADM_assert(0);} \
+   codecId=codecid; \
+   _context->workaround_bugs=1*FF_BUG_AUTODETECT +0*FF_BUG_NO_PADDING; \
+   _context->error_concealment=3; \
+   if (avcodec_open(_context, codec) < 0)  \
+   { \
+-printf("[lavc] Decoder init: 
"display" video decoder failed!\n"); \
+-GUI_Error_HIG("Codec","Internal error 
opening "display); \
++printf("[lavc] Decoder init: " 
display " video decoder failed!\n"); \
++GUI_Error_HIG("Codec","Internal error 
opening " display); \
+ ADM_assert(0); \
+ } \
+ else \
+ { \
+-printf("[lavc] Decoder init: 
"display" video decoder initialized! (%s)\n",codec->long_name); \
++printf("[lavc] Decoder init: " 
display " video decoder initialized! (%s)\n",codec->long_name); \
+ } \
+ }
+ 



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

2017-06-22 Thread Alexis Ballier
commit: b33b8402e02ad3d4e0a92ef77e4105e11a1c79cb
Author: Peter Levine  gmail  com>
AuthorDate: Fri Jun  2 04:41:16 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b33b8402

media-libs/avidemux-core: Add avidemux-core-2.6.20

Upgrade avidemux-core- to EAPI 6 and add an ebuild for avidemux-core-2.6.20.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/avidemux-core/Manifest  |  1 +
 ...ore-.ebuild => avidemux-core-2.6.20.ebuild} | 45 ++
 media-libs/avidemux-core/avidemux-core-.ebuild | 45 ++
 3 files changed, 41 insertions(+), 50 deletions(-)

diff --git a/media-libs/avidemux-core/Manifest 
b/media-libs/avidemux-core/Manifest
index 418a7523584..6f017f59f92 100644
--- a/media-libs/avidemux-core/Manifest
+++ b/media-libs/avidemux-core/Manifest
@@ -1 +1,2 @@
+DIST avidemux_2.6.20.tar.gz 20172362 SHA256 
03c6cb7fc9eb74688b4fcd5eb654ed7b9c4ffc717a72cc09b08a2d10cdc7ef9f SHA512 
d01d0fc24a3004770bd3923c2debc4fa2752eb71df08cfe423746b9c44a2562ca01d82965ed2563b99572a4bed8034b79487199ce330208b51a3b7f87ccf7103
 WHIRLPOOL 
2e2dc21bed49eeb0cdfefe75fe51f6a84226e7e8e80b063bc0b3d8711a6b91db710611dc0ec06575be69ec8e24f2f9e5b5eb363b9c095267729e85e162a4ce38
 DIST avidemux_2.6.8.tar.gz 17380534 SHA256 
02998c235a89894d184d745c94cac37b78bc20e9eb44b318ee2bb83f2507e682 SHA512 
57a4042f1a9d46462850871d36950215c5ffb5b66ce2f2cde09d747e946c05adb7a550ac7763c96f4c1bcb2c39881407d9d88bc64c93053741091751495ba0b0
 WHIRLPOOL 
29f8a6039d82e686e8dfbfc7b23658921834238a4cc6c4de338afdfdc032a9a7cba1c8236789aa6dbcab318ec14c344c19563f153e6cbd63cd265c5fb15b44b6

diff --git a/media-libs/avidemux-core/avidemux-core-.ebuild 
b/media-libs/avidemux-core/avidemux-core-2.6.20.ebuild
similarity index 78%
copy from media-libs/avidemux-core/avidemux-core-.ebuild
copy to media-libs/avidemux-core/avidemux-core-2.6.20.ebuild
index 3a659ab182e..e09688e05bf 100644
--- a/media-libs/avidemux-core/avidemux-core-.ebuild
+++ b/media-libs/avidemux-core/avidemux-core-2.6.20.ebuild
@@ -1,29 +1,28 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="5"
+EAPI="6"
 
-inherit cmake-utils eutils flag-o-matic
-
-SLOT="2.6"
+inherit cmake-utils
 
 DESCRIPTION="Core libraries for a video editor designed for simple cutting, 
filtering and encoding tasks"
 HOMEPAGE="http://fixounet.free.fr/avidemux;
 
 # Multiple licenses because of all the bundled stuff.
 LICENSE="GPL-1 GPL-2 MIT PSF-2 public-domain"
+SLOT="2.6"
 IUSE="debug nls nvenc sdl system-ffmpeg vaapi vdpau video_cards_fglrx xv"
-KEYWORDS="~amd64 ~x86"
 
-MY_PN="${PN/-core/}"
 if [[ ${PV} == ** ]] ; then
-   KEYWORDS=""
EGIT_REPO_URI="https://github.com/mean00/avidemux2.git;
+   EGIT_CHECKOUT_DIR=${WORKDIR}
 
-   inherit git-2
+   inherit git-r3
 else
+   MY_PN="${PN/-core/}"
MY_P="${MY_PN}_${PV}"
SRC_URI="mirror://sourceforge/${MY_PN}/${MY_PN}/${PV}/${MY_P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
 fi
 
 # Trying to use virtual; ffmpeg misses aac,cpudetection USE flags now though, 
are they needed?
@@ -52,13 +51,9 @@ DEPEND="
 "
 
 S="${WORKDIR}/${MY_P}"
-BUILD_DIR="${S}/buildCore"
-
-DOCS=( AUTHORS README )
+CMAKE_USE_DIR="${S}/${PN/-/_}"
 
 src_prepare() {
-   mkdir "${BUILD_DIR}" || die "Can't create build folder."
-
cmake-utils_src_prepare
 
if use system-ffmpeg ; then
@@ -71,10 +66,12 @@ src_prepare() {
sed -i -e 's/include(admFFmpegBuild)//g' 
avidemux_core/CMakeLists.txt || die "${error}"
else
# Avoid existing avidemux installations from making the build 
process fail, bug #461496.
-   sed -i -e 
"s:getFfmpegLibNames(\"\${sourceDir}\"):getFfmpegLibNames(\"${S}/buildCore/ffmpeg/source/\"):g"
 cmake/admFFmpegUtil.cmake \
+   sed -i -e 
"s:getFfmpegLibNames(\"\${sourceDir}\"):getFfmpegLibNames(\"${WORKDIR}/${P}_build/ffmpeg/source/\"):g"
 cmake/admFFmpegUtil.cmake \
|| die "Failed to avoid existing avidemux installation 
from making the build fail."
fi
+}
 
+src_configure() {
# Add lax vector typing for PowerPC.
if use ppc || use ppc64 ; then
append-cflags -flax-vector-conversions
@@ -82,25 +79,23 @@ src_prepare() {
 
# See bug 432322.
use x86 && replace-flags -O0 -O1
-}
 
-src_configure() {
local mycmakeargs=(
-DAVIDEMUX_SOURCE_DIR='${S}'
-   $(cmake-utils_use nls GETTEXT)
-   $(cmake-utils_use sdl SDL)
-   $(cmake-utils_use vaapi LIBVA)
-   $(cmake-utils_use vdpau VDPAU)
-   $(cmake-utils_use video_cards_fglrx XVBA)
-   $(cmake-utils_use xv XVIDEO)
-   $(cmake-utils_use nvenc NVENC)
+   -DGETTEXT="$(usex nls)"
+

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

2017-06-22 Thread Alexis Ballier
commit: 9c931322fcf42e5aea876defa760a82cef7afeb2
Author: Peter Levine  gmail  com>
AuthorDate: Fri Jun  2 02:18:34 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c931322

media-libs/avidemux-core: Update EGIT_REPO_URI to GitHub

Gitorious is dead.  The project appears to have moved to GitHub.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/avidemux-core/avidemux-core-2.6.8.ebuild | 2 +-
 media-libs/avidemux-core/avidemux-core-.ebuild  | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild 
b/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
index f7dde42a475..7f039651d76 100644
--- a/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
+++ b/media-libs/avidemux-core/avidemux-core-2.6.8.ebuild
@@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~x86"
 MY_PN="${PN/-core/}"
 if [[ ${PV} == ** ]] ; then
KEYWORDS=""
-   EGIT_REPO_URI="git://gitorious.org/${MY_PN}2-6/${MY_PN}2-6.git 
https://git.gitorious.org/${MY_PN}2-6/${MY_PN}2-6.git;
+   EGIT_REPO_URI="https://github.com/mean00/avidemux2.git;
 
inherit git-2
 else

diff --git a/media-libs/avidemux-core/avidemux-core-.ebuild 
b/media-libs/avidemux-core/avidemux-core-.ebuild
index 914e5acbb15..ce548ea31ba 100644
--- a/media-libs/avidemux-core/avidemux-core-.ebuild
+++ b/media-libs/avidemux-core/avidemux-core-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -18,7 +18,7 @@ KEYWORDS="~amd64 ~x86"
 MY_PN="${PN/-core/}"
 if [[ ${PV} == ** ]] ; then
KEYWORDS=""
-   EGIT_REPO_URI="git://gitorious.org/${MY_PN}2-6/${MY_PN}2-6.git 
https://git.gitorious.org/${MY_PN}2-6/${MY_PN}2-6.git;
+   EGIT_REPO_URI="https://github.com/mean00/avidemux2.git;
 
inherit git-2
 else



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

2017-06-22 Thread Alexis Ballier
commit: d417a5821e209dfca2c40f1e8ed8bd49f9c9d160
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:26:21 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d417a582

dev-python/case: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/case/case-1.5.2.ebuild 
b/dev-python/case/case-1.5.2.ebuild
index 9f264c439ae..22e93c2a631 100644
--- a/dev-python/case/case-1.5.2.ebuild
+++ b/dev-python/case/case-1.5.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 RDEPEND=""



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

2017-06-22 Thread Alexis Ballier
commit: 8cfb17422ddbf5abd3184f4b1f0152057bb8be59
Author: Peter Levine  gmail  com>
AuthorDate: Fri Jun  2 03:13:07 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cfb1742

media-libs/avidemux-core: Add support for NVIDIA Encoder (NVENC)

media-video/ffmpeg already uses it and latest media-libs/avidemux-core now 
supports it.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/avidemux-core/avidemux-core-.ebuild | 3 ++-
 media-libs/avidemux-core/metadata.xml  | 1 +
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-libs/avidemux-core/avidemux-core-.ebuild 
b/media-libs/avidemux-core/avidemux-core-.ebuild
index 420ac6ab9db..3a659ab182e 100644
--- a/media-libs/avidemux-core/avidemux-core-.ebuild
+++ b/media-libs/avidemux-core/avidemux-core-.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://fixounet.free.fr/avidemux;
 
 # Multiple licenses because of all the bundled stuff.
 LICENSE="GPL-1 GPL-2 MIT PSF-2 public-domain"
-IUSE="debug nls sdl system-ffmpeg vaapi vdpau video_cards_fglrx xv"
+IUSE="debug nls nvenc sdl system-ffmpeg vaapi vdpau video_cards_fglrx xv"
 KEYWORDS="~amd64 ~x86"
 
 MY_PN="${PN/-core/}"
@@ -93,6 +93,7 @@ src_configure() {
$(cmake-utils_use vdpau VDPAU)
$(cmake-utils_use video_cards_fglrx XVBA)
$(cmake-utils_use xv XVIDEO)
+   $(cmake-utils_use nvenc NVENC)
)
 
if use debug ; then

diff --git a/media-libs/avidemux-core/metadata.xml 
b/media-libs/avidemux-core/metadata.xml
index 422c7c72ff3..efad95d3100 100644
--- a/media-libs/avidemux-core/metadata.xml
+++ b/media-libs/avidemux-core/metadata.xml
@@ -6,6 +6,7 @@
 Gentoo Video project
   
   
+Adds support for NVIDIA Encoder (NVENC) API for 
hardware accelerated encoding on NVIDIA cards.
 Use the ffmpeg provided by the system.
   
   



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

2017-06-22 Thread Alexis Ballier
commit: 4fdc873e1c61f3936c9365b05f380219637fc3b8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:26:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fdc873e

dev-python/selectors34: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/selectors34/selectors34-1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/selectors34/selectors34-1.1.ebuild 
b/dev-python/selectors34/selectors34-1.1.ebuild
index 0d4ab827876..67bbcfc2fdc 100644
--- a/dev-python/selectors34/selectors34-1.1.ebuild
+++ b/dev-python/selectors34/selectors34-1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="PSF-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=""



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

2017-06-22 Thread Alexis Ballier
commit: 36480d90e4e442ab817082d287d86841702c4d31
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:42:57 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:42:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36480d90

dev-python/pytest-mock: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/pytest-mock/pytest-mock-1.6.0.ebuild 
b/dev-python/pytest-mock/pytest-mock-1.6.0.ebuild
index 32941be25b3..afa47bdffc9 100644
--- a/dev-python/pytest-mock/pytest-mock-1.6.0.ebuild
+++ b/dev-python/pytest-mock/pytest-mock-1.6.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE=""
 
 RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]



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

2017-06-22 Thread Alexis Ballier
commit: 99ae8c83b5df8c826e154d8c23eb7932de5e642d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:32:48 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99ae8c83

dev-ros/roslisp: bump to 1.9.21

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ros/roslisp/Manifest  |  1 +
 dev-ros/roslisp/roslisp-1.9.21.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-ros/roslisp/Manifest b/dev-ros/roslisp/Manifest
index e795f99d99e..1db01fdae3e 100644
--- a/dev-ros/roslisp/Manifest
+++ b/dev-ros/roslisp/Manifest
@@ -1,2 +1,3 @@
 DIST roslisp-1.9.19.tar.gz 115845 SHA256 
041a8f143faa6aad8d45961a113a9d258f9e2ed86f06dce045f7fd878b4f6f36 SHA512 
1eb7cf6b6e6f3d82321da8caecba97ae3793213faeb0c9723ffa66448e88f819168b63246cb9362373717b65b79e26e0233440719d4805f19767d9152c664bd6
 WHIRLPOOL 
b7b18dc537254e5112a62109bd0a2edc624446309f3221c1192ede69d50657144def74143dbc9ed17e4a0945a85f137c9688ebcc660881e8a4f2c82331bca8d5
 DIST roslisp-1.9.20.tar.gz 115983 SHA256 
8bc6f9577162e079eaab43abf52df0a48e5d7393e4c54e9c7786052beb74da8d SHA512 
586f881db5412dc7c8f04fd9704f4e01249b04d043937d49f5f9844dbfa072ddd529931289f8824a7a9c3a97b1b1ab855925bf1f97581239643cf1a13c88b02c
 WHIRLPOOL 
ef64a24e3a04842b75772fabdfcf2845f51738dfe341aae88bcc02375194b13f08446c0e85f1c12b126992770b1c198749e5310868cd558f9c99912902ee152c
+DIST roslisp-1.9.21.tar.gz 116725 SHA256 
cc47259f9d35856cdc0470e0181f9fcfc02bbd00c894eef624bc451320131794 SHA512 
f9988d9da8c80b75e57f764082a372e260f0a6fd5837ef30855b78dc8cf22a1f6eefd08a70136d29602bd163793201f3e4d6204e5d433069c58b8d751dd458e1
 WHIRLPOOL 
5c5f76e7f38f91c96baa4ae602d3a04de2743214ccf548d94fd109055a02a121399ee20896990de469f1109ff0e9d7e656890e9f374d283b40a296bbb5734e0d

diff --git a/dev-ros/roslisp/roslisp-1.9.21.ebuild 
b/dev-ros/roslisp/roslisp-1.9.21.ebuild
new file mode 100644
index 000..e7a4c6bb23c
--- /dev/null
+++ b/dev-ros/roslisp/roslisp-1.9.21.ebuild
@@ -0,0 +1,23 @@
+# 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/roslisp;
+KEYWORDS="~amd64"
+
+inherit ros-catkin
+
+DESCRIPTION="Lisp client library for ROS"
+LICENSE="BSD"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   dev-ros/roslang
+   dev-lisp/sbcl
+   dev-ros/rospack
+   dev-ros/rosgraph_msgs
+   dev-ros/std_srvs
+"
+DEPEND="${RDEPEND}"



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

2017-06-22 Thread Alexis Ballier
commit: d047e796b9bcb75d556601d958cab31a7a1a6259
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:27:46 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:35:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d047e796

media-video/libva-utils: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-video/libva-utils/libva-utils-1.8.2.ebuild | 2 +-
 media-video/libva-utils/libva-utils-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/libva-utils/libva-utils-1.8.2.ebuild 
b/media-video/libva-utils/libva-utils-1.8.2.ebuild
index 7dead1bc45f..0c4c99ffb3d 100644
--- a/media-video/libva-utils/libva-utils-1.8.2.ebuild
+++ b/media-video/libva-utils/libva-utils-1.8.2.ebuild
@@ -24,7 +24,7 @@ fi
 LICENSE="MIT"
 SLOT="0"
 if [ "${PV%}" = "${PV}" ] ; then
-   KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 else
KEYWORDS=""
 fi

diff --git a/media-video/libva-utils/libva-utils-.ebuild 
b/media-video/libva-utils/libva-utils-.ebuild
index 7dead1bc45f..0c4c99ffb3d 100644
--- a/media-video/libva-utils/libva-utils-.ebuild
+++ b/media-video/libva-utils/libva-utils-.ebuild
@@ -24,7 +24,7 @@ fi
 LICENSE="MIT"
 SLOT="0"
 if [ "${PV%}" = "${PV}" ] ; then
-   KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 else
KEYWORDS=""
 fi



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

2017-06-22 Thread Alexis Ballier
commit: a2e69ecd45c6bf8a627ce586fa0f63e6a22a1c70
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:18:24 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2e69ecd

dev-python/epydoc: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/epydoc/epydoc-3.0.1-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/epydoc/epydoc-3.0.1-r2.ebuild 
b/dev-python/epydoc/epydoc-3.0.1-r2.ebuild
index 93e43e96f0a..63cd3bcba64 100644
--- a/dev-python/epydoc/epydoc-3.0.1-r2.ebuild
+++ b/dev-python/epydoc/epydoc-3.0.1-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc latex tk"
 
 DEPEND=""



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

2017-06-22 Thread Alexis Ballier
commit: b31f832fb473f5cff5bc7443da4eb5c55adefddd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 22:54:53 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b31f832f

dev-libs/libxdg-basedir: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild 
b/dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild
index 9481cac083a..26e6d732db0 100644
--- a/dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild
+++ b/dev-libs/libxdg-basedir/libxdg-basedir-1.2.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -10,7 +10,7 @@ SRC_URI="https://github.com/devnev/${PN}/archive/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x64-macos ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 hppa ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x64-macos ~x86-solaris"
 IUSE="doc static-libs"
 
 RDEPEND=""



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

2017-06-22 Thread Alexis Ballier
commit: 985d88f79ad2d6d4cd4ba6487f53675e677a7a2b
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 23:10:11 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=985d88f7

media-libs/libdvdnav: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/libdvdnav/libdvdnav-5.0.3.ebuild | 6 +++---
 media-libs/libdvdnav/libdvdnav-.ebuild  | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-libs/libdvdnav/libdvdnav-5.0.3.ebuild 
b/media-libs/libdvdnav/libdvdnav-5.0.3.ebuild
index dbda5c1eff4..d48940d1f1f 100644
--- a/media-libs/libdvdnav/libdvdnav-5.0.3.ebuild
+++ b/media-libs/libdvdnav/libdvdnav-5.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,10 +11,10 @@ HOMEPAGE="http://dvdnav.mplayerhq.hu/;
 if [[ ${PV} =  ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.videolan.org/libdvdnav.git"
-   KEYWORDS="alpha arm hppa ia64 ppc ppc64 sparc"
+   KEYWORDS="alpha arm ~arm64 hppa ia64 ppc ppc64 sparc"
 else

SRC_URI="http://downloads.videolan.org/pub/videolan/libdvdnav/${PV}/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"

diff --git a/media-libs/libdvdnav/libdvdnav-.ebuild 
b/media-libs/libdvdnav/libdvdnav-.ebuild
index db8429efc5c..21d7c97932b 100644
--- a/media-libs/libdvdnav/libdvdnav-.ebuild
+++ b/media-libs/libdvdnav/libdvdnav-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ if [[ ${PV} =  ]]; then
KEYWORDS=""
 else

SRC_URI="http://downloads.videolan.org/pub/videolan/libdvdnav/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh 
~sparc ~x86
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos
~sparc-solaris ~x86-solaris"
 fi



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

2017-06-22 Thread Alexis Ballier
commit: f82e4e7bff3f3740520251e6a431ca03bf0a6e84
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 22:53:05 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f82e4e7b

media-libs/libdvdcss: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/libdvdcss/libdvdcss-1.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libdvdcss/libdvdcss-1.4.0.ebuild 
b/media-libs/libdvdcss/libdvdcss-1.4.0.ebuild
index 5684f255df8..a7c53599588 100644
--- a/media-libs/libdvdcss/libdvdcss-1.4.0.ebuild
+++ b/media-libs/libdvdcss/libdvdcss-1.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,7 +11,7 @@ 
SRC_URI="http://download.videolan.org/pub/${PN}/${PV}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="1.2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
 RDEPEND=""



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

2017-06-22 Thread Alexis Ballier
commit: 5e0c8e86d4d0753edd7156540c5099c676332c1d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:17:39 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e0c8e86

sys-cluster/mpich2: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-cluster/mpich2/mpich2-1.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/mpich2/mpich2-1.5.ebuild 
b/sys-cluster/mpich2/mpich2-1.5.ebuild
index 221bc1b2d9a..a962084a710 100644
--- a/sys-cluster/mpich2/mpich2-1.5.ebuild
+++ b/sys-cluster/mpich2/mpich2-1.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ 
SRC_URI="http://www.mcs.anl.gov/research/projects/mpich2/downloads/tarballs/${MY
 
 SLOT="0"
 LICENSE="mpich2"
-KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



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

2017-06-22 Thread Alexis Ballier
commit: 83eb527a8494df6906b384d10c0e50483c6b2d77
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:18:56 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83eb527a

dev-python/boto: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/boto/boto-2.42.0.ebuild 
b/dev-python/boto/boto-2.42.0.ebuild
index 65440818433..95e096af80a 100644
--- a/dev-python/boto/boto-2.42.0.ebuild
+++ b/dev-python/boto/boto-2.42.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc test"
 
 REQUIRED_USE="doc? ( || ( $(python_gen_useflags 'python2*') ) )"



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

2017-06-22 Thread Alexis Ballier
commit: 11ddb65456ce6793908ea2f315e07cd9be03a8a6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:18:40 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11ddb654

dev-python/couchdb-python: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/couchdb-python/couchdb-python-1.1.ebuild 
b/dev-python/couchdb-python/couchdb-python-1.1.ebuild
index 8db1d598a52..ad0a9c93f97 100644
--- a/dev-python/couchdb-python/couchdb-python-1.1.ebuild
+++ b/dev-python/couchdb-python/couchdb-python-1.1.ebuild
@@ -16,7 +16,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="doc"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qthelp/

2017-06-22 Thread Alexis Ballier
commit: fb0bad2c49b3fe383bf56a31f12f40acbab710d6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:18:11 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0bad2c

dev-qt/qthelp: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-qt/qthelp/qthelp-5.7.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-qt/qthelp/qthelp-5.7.1.ebuild 
b/dev-qt/qthelp/qthelp-5.7.1.ebuild
index 70425b883f5..71c175acbbb 100644
--- a/dev-qt/qthelp/qthelp-5.7.1.ebuild
+++ b/dev-qt/qthelp/qthelp-5.7.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating online documentation into applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
 fi
 
 IUSE=""



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

2017-06-22 Thread Alexis Ballier
commit: 62f2347a36080e7b681f78b3f7e16dc29695ceec
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:19:26 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62f2347a

dev-python/flup: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/flup/flup-1.0.2-r1.ebuild 
b/dev-python/flup/flup-1.0.2-r1.ebuild
index 47e0f4385e3..9c451999078 100644
--- a/dev-python/flup/flup-1.0.2-r1.ebuild
+++ b/dev-python/flup/flup-1.0.2-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.saddi.com/software/${PN}/dist/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~x64-macos ~x86-macos"
 IUSE=""
 
 RDEPEND=""



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

2017-06-22 Thread Alexis Ballier
commit: d7193d085e748d0ef950484c6fb40ad456d4b51d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:19:35 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7193d08

dev-python/pathlib2: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/pathlib2/pathlib2-2.1.0.ebuild 
b/dev-python/pathlib2/pathlib2-2.1.0.ebuild
index 6505d7afac2..22c3255434e 100644
--- a/dev-python/pathlib2/pathlib2-2.1.0.ebuild
+++ b/dev-python/pathlib2/pathlib2-2.1.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/p/pathlib2/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE=""
 
 RDEPEND="dev-python/six[${PYTHON_USEDEP}]"



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

2017-06-22 Thread Alexis Ballier
commit: 85cc773de610acd552ea57a102001453ca9ee985
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:19:16 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85cc773d

dev-python/pyinotify: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/pyinotify/pyinotify-0.9.6.ebuild 
b/dev-python/pyinotify/pyinotify-0.9.6.ebuild
index 3bb411b721f..6579604fd3a 100644
--- a/dev-python/pyinotify/pyinotify-0.9.6.ebuild
+++ b/dev-python/pyinotify/pyinotify-0.9.6.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://seb.dbzteam.org/pub/pyinotify/releases/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux"
 IUSE="examples"
 
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2017-06-22 Thread Alexis Ballier
commit: f39a91276c5f65f2ea15e5d7e74c43226a11e25d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:17:53 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f39a9127

virtual/mpi: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 virtual/mpi/mpi-2.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/mpi/mpi-2.0-r4.ebuild b/virtual/mpi/mpi-2.0-r4.ebuild
index 077f170845b..dafbcab2358 100644
--- a/virtual/mpi/mpi-2.0-r4.ebuild
+++ b/virtual/mpi/mpi-2.0-r4.ebuild
@@ -7,7 +7,7 @@ inherit multilib-build
 
 DESCRIPTION="Virtual for Message Passing Interface (MPI) v2.0 implementation"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="cxx fortran romio threads"
 
 RDEPEND="|| (



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

2017-06-22 Thread Alexis Ballier
commit: 6d426c7ddfe2fccf451b9f8e952697ab4083a415
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 22:58:02 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d426c7d

media-libs/libdvdread: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/libdvdread/libdvdread-5.0.3.ebuild | 6 +++---
 media-libs/libdvdread/libdvdread-.ebuild  | 4 ++--
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-libs/libdvdread/libdvdread-5.0.3.ebuild 
b/media-libs/libdvdread/libdvdread-5.0.3.ebuild
index 17e7f4bdcd7..a0fa075eeb4 100644
--- a/media-libs/libdvdread/libdvdread-5.0.3.ebuild
+++ b/media-libs/libdvdread/libdvdread-5.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -11,10 +11,10 @@ HOMEPAGE="http://dvdnav.mplayerhq.hu/;
 if [[ ${PV} =  ]]; then
inherit git-r3
EGIT_REPO_URI="git://git.videolan.org/libdvdread.git"
-   KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 else

SRC_URI="http://downloads.videolan.org/pub/videolan/libdvdread/${PV}/${P}.tar.bz2;
-   KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+   KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"

diff --git a/media-libs/libdvdread/libdvdread-.ebuild 
b/media-libs/libdvdread/libdvdread-.ebuild
index aa1e8519a35..764684253ed 100644
--- a/media-libs/libdvdread/libdvdread-.ebuild
+++ b/media-libs/libdvdread/libdvdread-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,7 +14,7 @@ if [[ ${PV} =  ]]; then
KEYWORDS=""
 else

SRC_URI="http://downloads.videolan.org/pub/videolan/libdvdread/${PV}/${P}.tar.bz2;
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2017-06-22 Thread Alexis Ballier
commit: 0932f2ac4a449b8fca07488ca6d368984a6fc5d2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 05:18:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 05:19:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0932f2ac

dev-python/nose-cover3: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild 
b/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
index 4aee6e4776b..203edd30957 100644
--- a/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
+++ b/dev-python/nose-cover3/nose-cover3-0.1.0-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 RDEPEND="dev-python/nose[${PYTHON_USEDEP}]"



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

2017-06-22 Thread Hans de Graaff
commit: d30213cbebd50d9df998de987aaf9d667da70c60
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 04:02:57 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 04:52:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d30213cb

dev-ruby/hashdiff: stable on amd64

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/dev-ruby/hashdiff/hashdiff-0.3.4.ebuild 
b/dev-ruby/hashdiff/hashdiff-0.3.4.ebuild
index 6bc5f1465dd..7f9c696a059 100644
--- a/dev-ruby/hashdiff/hashdiff-0.3.4.ebuild
+++ b/dev-ruby/hashdiff/hashdiff-0.3.4.ebuild
@@ -17,5 +17,5 @@ HOMEPAGE="https://github.com/liufengyun/hashdiff;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 IUSE=""



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

2017-06-22 Thread Hans de Graaff
commit: 2ea7b156bccfdaca8cdef1d80921762ff5c275bc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 04:52:01 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 04:52:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ea7b156

dev-ruby/tilt: add ruby22

Package-Manager: Portage-2.3.6, Repoman-2.3.1

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

diff --git a/dev-ruby/tilt/tilt-1.4.1.ebuild b/dev-ruby/tilt/tilt-1.4.1.ebuild
index 99fa13dd877..01ae1f65439 100644
--- a/dev-ruby/tilt/tilt-1.4.1.ebuild
+++ b/dev-ruby/tilt/tilt-1.4.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
 # jruby fails tests
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="README.md TEMPLATES.md"



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

2017-06-22 Thread Markus Meier
commit: acabf2a687df331dcab9281cdfaad2e636d67f6d
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:41:21 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:41:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acabf2a6

sys-libs/glibc: arm stable, bug #60

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 sys-libs/glibc/glibc-2.23-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.23-r4.ebuild 
b/sys-libs/glibc/glibc-2.23-r4.ebuild
index a02cfd2a04a..418af70f10c 100644
--- a/sys-libs/glibc/glibc-2.23-r4.ebuild
+++ b/sys-libs/glibc/glibc-2.23-r4.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="GNU libc6 (also called glibc2) C library"
 HOMEPAGE="https://www.gnu.org/software/libc/libc.html;
 
 LICENSE="LGPL-2.1+ BSD HPND ISC inner-net rc PCRE"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86"
 RESTRICT="strip" # strip ourself #46186
 EMULTILIB_PKG="true"
 



[gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/

2017-06-22 Thread Markus Meier
commit: a5bed32dd8ea1405294e54dfce013260337a1187
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:40:18 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:40:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5bed32d

mail-mta/postfix: arm stable, bug #621882

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 mail-mta/postfix/postfix-3.1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/postfix/postfix-3.1.6.ebuild 
b/mail-mta/postfix/postfix-3.1.6.ebuild
index 2ec9c22bf0b..9fc08d0c68f 100644
--- a/mail-mta/postfix/postfix-3.1.6.ebuild
+++ b/mail-mta/postfix/postfix-3.1.6.ebuild
@@ -15,7 +15,7 @@ SRC_URI="${MY_URI}/${MY_SRC}.tar.gz"
 
 LICENSE="IBM"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ia64 ppc ppc64 ~sh ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~hppa ia64 ppc ppc64 ~sh ~sparc x86 ~x86-fbsd"
 IUSE="+berkdb cdb doc dovecot-sasl +eai hardened ldap ldap-bind libressl lmdb 
memcached mbox mysql nis pam postgres sasl selinux sqlite ssl"
 
 DEPEND=">=dev-libs/libpcre-3.4



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

2017-06-22 Thread Markus Meier
commit: 6b9710071328723da81d110fd9d83da35e5ec7f6
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:40:46 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:40:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b971007

dev-libs/expat: arm stable, bug #622046

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/expat/expat-2.2.1.ebuild 
b/dev-libs/expat/expat-2.2.1.ebuild
index 072af1320bf..5e9c5e123a1 100644
--- a/dev-libs/expat/expat-2.2.1.ebuild
+++ b/dev-libs/expat/expat-2.2.1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/expat/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 IUSE="elibc_FreeBSD examples static-libs unicode"
 RDEPEND="abi_x86_32? ( !<=app-emulation/emul-linux-x86-baselibs-20130224-r6
!app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)] )"



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

2017-06-22 Thread Markus Meier
commit: 5651431fb9eccfafd3cbc153ac9e57734989d7c2
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:39:45 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:39:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5651431f

media-gfx/graphite2: arm stable, bug #621724

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 media-gfx/graphite2/graphite2-1.3.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/graphite2/graphite2-1.3.10.ebuild 
b/media-gfx/graphite2/graphite2-1.3.10.ebuild
index 1ad3b420309..78682f4bbda 100644
--- a/media-gfx/graphite2/graphite2-1.3.10.ebuild
+++ b/media-gfx/graphite2/graphite2-1.3.10.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/silgraphite/${PN}/${P}.tgz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~sh x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris"
 IUSE="perl test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-irc/irssi/

2017-06-22 Thread Markus Meier
commit: 7252fb59f72f6ed33ee235008fc902f0890d72bb
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:39:14 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:39:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7252fb59

net-irc/irssi: arm stable, bug #621188

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 net-irc/irssi/irssi-1.0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/irssi/irssi-1.0.3.ebuild b/net-irc/irssi/irssi-1.0.3.ebuild
index 881a7c9dbe0..db4400caa67 100644
--- a/net-irc/irssi/irssi-1.0.3.ebuild
+++ b/net-irc/irssi/irssi-1.0.3.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/irssi/irssi/releases/download/${PV/_/-}/${MY_P}.tar.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
x86 ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+perl selinux socks5 +proxy libressl"
 
 CDEPEND="



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

2017-06-22 Thread Markus Meier
commit: ae6ff3e76c4e1b7a749e0b6d0524898ca629b195
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:38:11 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:38:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae6ff3e7

app-text/ghostscript-gpl: arm stable, bug #616814

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild 
b/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
index 53d18efe2da..9663527eb06 100644
--- a/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
+++ b/app-text/ghostscript-gpl/ghostscript-gpl-9.21.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="AGPL-3 CPL-1.0"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="cups dbus gtk l10n_de static-libs tiff unicode X"
 
 COMMON_DEPEND="



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

2017-06-22 Thread Markus Meier
commit: 541d13ecd01ad6fa644fc0d58a79a0857b08732d
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:38:43 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:38:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=541d13ec

net-vpn/strongswan: arm stable, bug #620256

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 net-vpn/strongswan/strongswan-5.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/strongswan/strongswan-5.5.3.ebuild 
b/net-vpn/strongswan/strongswan-5.5.3.ebuild
index 64c766aa40d..7ec9a3ae14f 100644
--- a/net-vpn/strongswan/strongswan-5.5.3.ebuild
+++ b/net-vpn/strongswan/strongswan-5.5.3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://download.strongswan.org/${P}.tar.bz2;
 
 LICENSE="GPL-2 RSA DES"
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
+KEYWORDS="amd64 arm ppc ~ppc64 x86"
 IUSE="+caps curl +constraints debug dhcp eap farp gcrypt +gmp ldap mysql 
networkmanager +non-root +openssl selinux sqlite pam pkcs11"
 
 STRONGSWAN_PLUGINS_STD="led lookip systime-fix unity vici"



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

2017-06-22 Thread Markus Meier
commit: b04f4c947a0e40fdec1ce73d00125e6b80bb9838
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:37:41 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:37:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b04f4c94

media-libs/jbig2dec: arm stable, bug #616464

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

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

diff --git a/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild 
b/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
index 67d74e7df23..4d284c3eba3 100644
--- a/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
+++ b/media-libs/jbig2dec/jbig2dec-0.13-r4.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://downloads.ghostscript.com/public/${PN}/${P}.tar.gz
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x86-solaris"
 IUSE="png static-libs test"
 
 RDEPEND="png? ( media-libs/libpng:0= )"



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

2017-06-22 Thread Markus Meier
commit: 6ee2ab2c88b2afcef289cc7d69a8180a0ff85fe0
Author: Markus Meier  gentoo  org>
AuthorDate: Fri Jun 23 04:37:03 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Fri Jun 23 04:37:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ee2ab2c

dev-db/redis: arm stable, bug #614182

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="arm"

 dev-db/redis/redis-3.2.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/redis/redis-3.2.8-r2.ebuild 
b/dev-db/redis/redis-3.2.8-r2.ebuild
index 4fd31d17384..73a1880bef4 100644
--- a/dev-db/redis/redis-3.2.8-r2.ebuild
+++ b/dev-db/redis/redis-3.2.8-r2.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://redis.io/;
 SRC_URI="http://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux 
~x86-macos ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ~hppa ppc ppc64 x86 ~amd64-linux ~x86-linux 
~x86-macos ~x86-solaris"
 IUSE="+jemalloc tcmalloc luajit test"
 SLOT="0"
 



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

2017-06-22 Thread Hans de Graaff
commit: d982581a7e9d0d202838833868b37b4a31289ccf
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:51:53 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:59:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d982581a

dev-ruby/ruby-gettext: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/ruby-gettext/Manifest  |  2 -
 dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild | 65 -
 dev-ruby/ruby-gettext/ruby-gettext-3.2.1.ebuild | 65 -
 3 files changed, 132 deletions(-)

diff --git a/dev-ruby/ruby-gettext/Manifest b/dev-ruby/ruby-gettext/Manifest
index 61c3f9917af..7d0861a718a 100644
--- a/dev-ruby/ruby-gettext/Manifest
+++ b/dev-ruby/ruby-gettext/Manifest
@@ -1,5 +1,3 @@
 DIST gettext-3.1.1.gem 221184 SHA256 
323a1b07db0863e032436f6935a0e63a5ab7475ac8c387d2632065ee7bafc12a SHA512 
b59462fd5c75aa64c1671fd54248ff86325be9aa53df2b4e720e663ae04d40febe83205c6ec75f6200dcf75abfdefe23db1effe838dc1149154457acc2fadc05
 WHIRLPOOL 
445999cff5241654252073b027388b058f272ffbaaa7d844208908996275cc22ed15c7055bd99a89977737192e60af84e0539bd6461b2da748bf97d41d5744f3
 DIST gettext-3.1.2.gem 224768 SHA256 
1ed987d0a46448cfc76617b486ad9a991e0d48501855e49eacb781aa531df6eb SHA512 
14fbccf1d853bd58ae3ecbda3188294147404fb8473a54caeac505b93ffa25f96098786bd1171449aa1f0f74c4116e93b5d2f7c0705930dd014b210720667479
 WHIRLPOOL 
5a31bf87b38370276bf4c61886025f8721a7cb297012fbe6d1947abf82d1d35d779838506f5e56adbdda090a0ae20d4e5c74b9c4a08a4c782998d78b3a7c1768
-DIST gettext-3.1.9.gem 283136 SHA256 
68901981aa98cfebb1b1d65c800aafba73ad82b82047c060b51ab52470a25f61 SHA512 
b06da799bde3d2d704283387d5bd79bb6a88cfd74200d7a566408b5c6078e23fb10aad72135feeece05b77b76f90a282ead7482ff0436d3615a13729aa7945a5
 WHIRLPOOL 
42602b14eaf7c9a37f933695314b9f317d869a6168b072ae278204c7d79c0f2c0277acfc9d47902ab8bb7c1118979fe3967eb029413eb2f3519501e03776fb97
-DIST gettext-3.2.1.gem 283136 SHA256 
a2ab0c7dc294cc7b5b0b9a589d5b392caffc17852939c47b3ae4d21499843bd5 SHA512 
8adf2e09ca2973242e622e34e6b581ac81d51b097762f91bb7ac8f909c34e42d3b2fb5db1dd3e70383f90da1102f4edb86e8d62076095c81e2e13cea3b559d11
 WHIRLPOOL 
f85229f156cd60cacbe733158baf017e6eb0bfc56ec8b37a25d4f332a5405969b61198838954296820ddda885435b2da8b7f68fe2c5d8ed7238c5534995803ab
 DIST gettext-3.2.2.gem 283648 SHA256 
9d250bb79273efb4a268977f219d2daca05cdc7473eff40288b8ab8ddd0f51b4 SHA512 
c6806a4f2b9c8519cccdf7651b3482e5938015323648cb1b82acd0632d88ea5c7cdabd925eecb2d4e17d0d396126d4e2ebaac26241c3c7b4f61e187cd4b3133f
 WHIRLPOOL 
c83776908d16e0f47010be5ba830a0c3b13f4b51055f6f14b62572e70b08d72932ef4d1fdea468ae47cf67ab5b031cd29e3f3c03b164fdcc95979b0a6c4e654a

diff --git a/dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild 
b/dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild
deleted file mode 100644
index e65d4e2a180..000
--- a/dev-ruby/ruby-gettext/ruby-gettext-3.1.9.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_NAME="${PN/ruby-/}"
-RUBY_FAKEGEM_VERSION="${PV%_*}"
-
-RUBY_FAKEGEM_RECIPE_DOC="yard"
-RUBY_FAKEGEM_EXTRADOC="README.md doc/text/news.md"
-
-RUBY_FAKEGEM_TASK_TEST="none"
-
-RUBY_FAKEGEM_EXTRAINSTALL="locale po"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Native Language Support Library and Tools modeled after GNU 
gettext package"
-HOMEPAGE="http://ruby-gettext.github.io/;
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc test"
-SLOT="0"
-LICENSE="|| ( Ruby LGPL-3+ )"
-
-ruby_add_rdepend ">=dev-ruby/locale-2.0.5 >=dev-ruby/text-1.3.0"
-
-ruby_add_bdepend "doc? ( dev-ruby/yard )
-   dev-ruby/racc"
-ruby_add_bdepend "test? (
-   dev-ruby/test-unit:2
-   dev-ruby/test-unit-rr )"
-
-RDEPEND+=" sys-devel/gettext"
-DEPEND+=" sys-devel/gettext"
-
-all_ruby_prepare() {
-   # Fix broken racc invocation
-   sed -i -e '/command_line/ s/#{racc}/-S racc/' Rakefile || die
-
-   # Avoid bundler dependency
-   sed -i -e '/bundler/,/helper.install/ s:^:#:' \
-   -e 's/helper.gemspec/Gem::Specification.new/' Rakefile || die
-
-   # Avoid dependency on developer-specific tools.
-   sed -i -e '/notify/ s:^:#:' test/run-test.rb || die
-
-   # Avoid tests failing due to a missing test file.
-   sed -i -e '/test_invalid_charset/,/end/ s:^:#:' test/test_mo.rb || die
-}
-
-each_ruby_test() {
-   # Upstream tries to daisy-chain rake calls but they fail badly
-   # with our setup, so run it manually.
-   ${RUBY} test/run-test.rb || die "tests failed"
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   insinto /usr/share/doc/${PF}
-   doins -r samples
-}

diff --git a/dev-ruby/ruby-gettext/ruby-gettext-3.2.1.ebuild 
b/dev-ruby/ruby-gettext/ruby-gettext-3.2.1.ebuild
deleted file mode 100644
index 

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

2017-06-22 Thread Mike Gilbert
commit: 284925796221ffcea6c748ad229cbe16799d192a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Jun 23 03:39:57 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Jun 23 03:41:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28492579

www-client/chromium: cross-compile mksnapshot

Package-Manager: Portage-2.3.6_p9, Repoman-2.3.2_p77

 www-client/chromium/chromium-61.0.3128.3.ebuild | 10 --
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/www-client/chromium/chromium-61.0.3128.3.ebuild 
b/www-client/chromium/chromium-61.0.3128.3.ebuild
index 09e3875b0b4..4a2c2ada6f8 100644
--- a/www-client/chromium/chromium-61.0.3128.3.ebuild
+++ b/www-client/chromium/chromium-61.0.3128.3.ebuild
@@ -488,6 +488,7 @@ src_configure() {
if tc-is-cross-compiler; then
tc-export BUILD_{AR,CC,CXX,NM}
myconf_gn+=" host_toolchain=\"${FILESDIR}/toolchain:host\""
+   myconf_gn+=" 
v8_snapshot_toolchain=\"${FILESDIR}/toolchain:host\""
else
myconf_gn+=" host_toolchain=\"${FILESDIR}/toolchain:default\""
fi
@@ -534,8 +535,13 @@ src_compile() {
fi
 
# Build mksnapshot and pax-mark it.
-   eninja -C out/Release mksnapshot || die
-   pax-mark m out/Release/mksnapshot
+   if tc-is-cross-compiler; then
+   eninja -C out/Release host/mksnapshot || die
+   pax-mark m out/Release/host/mksnapshot
+   else
+   eninja -C out/Release mksnapshot || die
+   pax-mark m out/Release/mksnapshot
+   fi
 
# Even though ninja autodetects number of CPUs, we respect
# user's options, for debugging with -j 1 or any other reason.



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

2017-06-22 Thread Hans de Graaff
commit: 2bba10bb5ba609391c3238e99e5e126e2d04753e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 02:55:16 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 02:55:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bba10bb

dev-ruby/timecop: add 0.9.0

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/timecop/Manifest |  1 +
 dev-ruby/timecop/timecop-0.9.0.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/timecop/Manifest b/dev-ruby/timecop/Manifest
index 78359c5dbc9..b20b4982592 100644
--- a/dev-ruby/timecop/Manifest
+++ b/dev-ruby/timecop/Manifest
@@ -1,3 +1,4 @@
 DIST timecop-0.7.1.gem 15360 SHA256 
22e529f06739b1361b4e3b40adc667dfa8f50e66b13b778448cf51fb62bc8f2a SHA512 
cbc1e1d6575473ed4200e71a8bbc91f4dd78a0e612e08ca236f485a92e71f02621bd199dc32a983dd7eea9a143b8fbf4b833f73016b5a7ea6a7459730efc1d83
 WHIRLPOOL 
f54018f65fdd55c8d7399083a7c9d1f6f1405a6cea5941b8e20ef143d3c4a57350cc2714a2626f918ff753a11dafb506539d41ef4c43464258a2832590215a2a
 DIST timecop-0.8.0.gem 16384 SHA256 
1ac7a7d13c700d21d13c533ccab3d004ecc2d8ddf339a93df7c29bd12634c47d SHA512 
bd47dd44215be3a0ec9bc095094a258a29e79dcbe19d8afde015eef60ff0951888e81a6e0cbf9790789d4d0083265bf91088556d38db58461eb38edae9b15682
 WHIRLPOOL 
ae0b5d7df5bf2cb9b5bd7695ec56b3373e5c3c0b692c86b1ef41affc4bc07441b76c43a977d2bd8f407d1ec0d379e89f96242609b7c53b12df2038bbbd2bd32d
 DIST timecop-0.8.1.gem 16384 SHA256 
bdce943521113e0b9ed2a6136e1c7396fa413ec7100814f2fe5bc1ee319f8b6f SHA512 
c4d281aa04fe94636dc23dc0fa6ea4a1dc27fc1debe550b06a208ceaab1d9d8b160f792bd5f14a7c004cecf489d4427df39873a68fe6ab27fe9c0e94770cc764
 WHIRLPOOL 
794420343bb9112f36d69b7aa161b865d1a79da3069200c2befbf693c4916f8a4021e9bbac28751beeefa8a77f21db82ff2caeddab39d5c310c8ce12147dafb1
+DIST timecop-0.9.0.gem 16896 SHA256 
adced6244cf4f853f8028b240be5f78f0c44be2021949c7c7db075a2963810ed SHA512 
820a953ed70588bd377d1b15188937429f0b8d7902e3c6696cbd0c878dfbe95269985654adae6598482384ccbf79b4cd9edf025ec61baf0982eaf340ce19c314
 WHIRLPOOL 
ca756a190d8489b33b5e60c02c68b8a9f330ab6765fb54e8a5bab14c38afac9bf61ceaf777d5cdcfba00512850ae8fd66a4bebeedccf8aaeb98d5c7a1c416403

diff --git a/dev-ruby/timecop/timecop-0.9.0.ebuild 
b/dev-ruby/timecop/timecop-0.9.0.ebuild
new file mode 100644
index 000..b7796fa3431
--- /dev/null
+++ b/dev-ruby/timecop/timecop-0.9.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_TASK_TEST="test"
+
+RUBY_FAKEGEM_TASK_DOC="rdoc"
+RUBY_FAKEGEM_DOCDIR="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.markdown"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A gem providing 'time travel' and 'time freezing' capabilities"
+HOMEPAGE="https://github.com/jtrupiano/timecop;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd"
+IUSE=""
+
+# Missing testdep activesupport
+ruby_add_bdepend "test? ( dev-ruby/mocha )"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/ s:^:#:' -e '/History.rdoc/d' Rakefile 
test/test_helper.rb || die
+   sed -i -e '/rubygems/ a\gem "test-unit"' \
+   -e '/minitest\/rg/ s:^:#:' test/test_helper.rb || die
+   # FIXME after activesupport gained ruby22 support
+   rm test/time_stack_item_test.rb || die
+}
+
+each_ruby_test() {
+   for f in test/*_test.rb ; do
+   ${RUBY} -Ilib $f || die
+   done
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/coffee-script-source/

2017-06-22 Thread Hans de Graaff
commit: ffbac2ecd064e1d469ac5b72f7b1badf8da97289
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:08:16 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:08:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffbac2ec

dev-ruby/coffee-script-source: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/coffee-script-source/Manifest|  2 --
 .../coffee-script-source-1.10.0.ebuild| 19 ---
 .../coffee-script-source-1.11.1.ebuild| 19 ---
 3 files changed, 40 deletions(-)

diff --git a/dev-ruby/coffee-script-source/Manifest 
b/dev-ruby/coffee-script-source/Manifest
index ca12e72ec1a..571e88e2811 100644
--- a/dev-ruby/coffee-script-source/Manifest
+++ b/dev-ruby/coffee-script-source/Manifest
@@ -1,4 +1,2 @@
-DIST coffee-script-source-1.10.0.gem 58880 SHA256 
e0e341d3717e0bc72c9e0d7113bed29ee8449723493ac8de5d83ce9cd3788ecc SHA512 
09b8a25f185feac94e6d0226accdaf2bee207995a46ede77b6daa581afce7b5c2fc87acc4660d8467fae881d15b2c78c64bc5f1084b68a51ac287efe09a3b053
 WHIRLPOOL 
6783c1656a67af168c198856cdf85b4fbb518e7af3f25bab2623b00258ef465d97cdfd18f1fe1dfd5156e791fadd0caed1a63ecd30ce2f01dca1b6fa7b436dd6
-DIST coffee-script-source-1.11.1.gem 64000 SHA256 
096ee2a4c29e286077292da31675199cd7a0e9e308319e86410e01f42984da75 SHA512 
5b1512682e261b71b44a73ce0606f1619810c55410fcc98fe5fd892f78afc6fddd90881ef3263c8c102864e7d80ddbfee9a85512f452da792ef0a4161dff6db4
 WHIRLPOOL 
435c49fb8935352b65eb1437aabb4a7d7929106cb40445200ed98fb87224ab6927f0c1c3238cdb159f57cb3f883024800ccdaec41770c142fc0238b79f64e0da
 DIST coffee-script-source-1.12.2.gem 65024 SHA256 
e12b16fd8927fbbf8b87cb2e9a85a6cf457c6881cc7ff8b1af15b31f70da07a4 SHA512 
f20dfc576202e5100f297e28481ac4e61776fd6684600ce5949b5deb26bfbacd74ae183462fc3cdaa81f95eb95729cd520b72841f70b6b4b133b1eea08ed6fcb
 WHIRLPOOL 
069e5dd89a63482a0a338a150056ece984c9dce050fe7da5eaf469a7233ff94b75f24e78ce536836743ee4ffefa066b4e996a6d851aa95879176ca709deda332
 DIST coffee-script-source-1.9.3.gem 58880 SHA256 
d2e34f9541e1bb57131dc64881b7bdc0835706216f06a13f6b3a73e4da0ced45 SHA512 
099a656499b72bd532d5c6d365f168f82dfdec91c79edb385ed939f9d78055926846c1a03084b41aa1e789f5b32873d5d86e8079bc081acb61654996371c829b
 WHIRLPOOL 
89df9e62d02ca8a275618deb8852a019e600bccdae278565f01cd467269715b64a9b8aae6fa949ca65997c902aa3b6381d13d2c17a5a1f3f6e7d1a2f0354cac3

diff --git a/dev-ruby/coffee-script-source/coffee-script-source-1.10.0.ebuild 
b/dev-ruby/coffee-script-source/coffee-script-source-1.10.0.ebuild
deleted file mode 100644
index 2df02004548..000
--- a/dev-ruby/coffee-script-source/coffee-script-source-1.10.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby CoffeeScript is a bridge to the official CoffeeScript 
compiler"
-HOMEPAGE="http://jashkenas.github.io/coffee-script/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos ~x86-solaris"
-
-IUSE=""

diff --git a/dev-ruby/coffee-script-source/coffee-script-source-1.11.1.ebuild 
b/dev-ruby/coffee-script-source/coffee-script-source-1.11.1.ebuild
deleted file mode 100644
index 321fb4753dc..000
--- a/dev-ruby/coffee-script-source/coffee-script-source-1.11.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby CoffeeScript is a bridge to the official CoffeeScript 
compiler"
-HOMEPAGE="http://coffeescript.org/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x64-macos ~x86-solaris"
-
-IUSE=""



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

2017-06-22 Thread Hans de Graaff
commit: a1f4589b8c9b2a4f5748a7025366a33449064baa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:38:14 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:38:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1f4589b

dev-ruby/rack-test: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/rack-test/rack-test-0.6.3.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/rack-test/rack-test-0.6.3.ebuild 
b/dev-ruby/rack-test/rack-test-0.6.3.ebuild
index a241f353f10..be105cc8850 100644
--- a/dev-ruby/rack-test/rack-test-0.6.3.ebuild
+++ b/dev-ruby/rack-test/rack-test-0.6.3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 # no documentation is generable, it needs hanna, which is broken
 RUBY_FAKEGEM_TASK_DOC=""
@@ -27,5 +27,5 @@ ruby_add_bdepend "
 
 all_ruby_prepare() {
rm Gemfile* || die
-   sed -i -e '/bundler/d' -e '/[Cc]ode[Cc]limate/d' spec/spec_helper.rb || 
die
+   sed -i -e '/bundler/d' -e '/[Cc]ode[Cc]limate/d' -e '1igem "rack", 
"~>1.0"' spec/spec_helper.rb || die
 }



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

2017-06-22 Thread Hans de Graaff
commit: 817aebfd63328672e93d8fd1aefca5327128b066
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:20:29 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:20:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=817aebfd

dev-ruby/bluecloth: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild 
b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
index 167abde83bb..aa4e333b4a2 100644
--- a/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
+++ b/dev-ruby/bluecloth/bluecloth-2.2.0-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_EXTRADOC="History.rdoc README.rdoc"



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

2017-06-22 Thread Hans de Graaff
commit: 4bb0ebd31877e9fd2c5e42872f021f9dc3b2ec4d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:13:22 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:13:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4bb0ebd3

dev-ruby/coffee-script: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/coffee-script/coffee-script-2.4.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild 
b/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild
index 8d89c7598db..4197df14468 100644
--- a/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild
+++ b/dev-ruby/coffee-script/coffee-script-2.4.1.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_TASK_TEST=""
 RUBY_FAKEGEM_TASK_DOC=""



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

2017-06-22 Thread Hans de Graaff
commit: 716a2bc0fe8a567042226e6ab6ee0a5c87abc2a1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:38:37 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:38:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=716a2bc0

dev-ruby/rack-protection: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild 
b/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild
index bdbd4525962..5fad2f28015 100644
--- a/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild
+++ b/dev-ruby/rack-protection/rack-protection-1.5.3-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 RUBY_FAKEGEM_TASK_DOC=""



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

2017-06-22 Thread Hans de Graaff
commit: 61c07dd50cc410585bdf07a047ca9efe4b406bdc
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:37:50 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:37:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c07dd5

dev-ruby/sinatra: add 1.4.8

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/sinatra/Manifest |  1 +
 dev-ruby/sinatra/sinatra-1.4.8.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/dev-ruby/sinatra/Manifest b/dev-ruby/sinatra/Manifest
index 3d3c151d593..7c91617aafa 100644
--- a/dev-ruby/sinatra/Manifest
+++ b/dev-ruby/sinatra/Manifest
@@ -1 +1,2 @@
 DIST sinatra-1.4.7.gem 369664 SHA256 
b7572e8fd4dba57c4bad6ff68cd2b99e4e6e02f3260bdc58a2acd662f29a01ad SHA512 
f13531390af95e0bb42f7c5cc350e3aee7136c1bb81b487ef71cc194ed6675722a1c23ff6b65ac0e3b2c1a0986bfa733c4a0f24cf9bbe0168a18cd4d18d8a13a
 WHIRLPOOL 
20477cde3faba54f103d73d80609ce8dbbf22652f5777656293407849637d7a0445a47297680b2665ab9a189f56022d77bf5c803f188d3ddde56f605d5917fb0
+DIST sinatra-1.4.8.gem 369152 SHA256 
18cb20ffabf31484b02d8606e450fbf040b52aea6147755a07718e9e0ffddd2f SHA512 
e56a5a6d7ceb0be4bc537feb6ada2956f1fd64b452dee347b259837aa02041dfa53d9808531cdd0a02a91093ba92f7c505c39f0dd990dfbc6e872681f40bc5e9
 WHIRLPOOL 
eb2e85e9c1603aa0bb625ccbd9daed0b147149ecfdb04858555825fda9ee61ba83b5e187cefdd2f9e5217e582ebd8753ba0de531f1d0784c56c251041b9c9bae

diff --git a/dev-ruby/sinatra/sinatra-1.4.8.ebuild 
b/dev-ruby/sinatra/sinatra-1.4.8.ebuild
new file mode 100644
index 000..7e01de65b87
--- /dev/null
+++ b/dev-ruby/sinatra/sinatra-1.4.8.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+# no documentation is generable, it needs hanna, which is broken
+RUBY_FAKEGEM_TASK_DOC=""
+
+RUBY_FAKEGEM_EXTRADOC="README.md AUTHORS.md CHANGELOG.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A DSL for quickly creating web applications in Ruby with minimal 
effort"
+HOMEPAGE="http://www.sinatrarb.com/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+ruby_add_rdepend "=dev-ruby/rack-1*:* >=dev-ruby/rack-1.5:*
+   >=dev-ruby/rack-protection-1.4:1
+   >=dev-ruby/tilt-1.3.4:* =dev-ruby/rack-test-0.5.6 dev-ruby/erubis 
dev-ruby/builder )"
+
+# haml tests are optional and not yet marked for ruby20.
+#USE_RUBY="ruby20" ruby_add_bdepend "test? ( >=dev-ruby/haml-3.0 )"
+
+all_ruby_prepare() {
+   # Remove implicit build dependency on git.
+   sed -i -e '/\(s.files\|s.test_files\|s.extra_rdoc_files\)/d' 
sinatra.gemspec || die
+
+   # Use correct rack version in tests
+   sed -i -e '1igem "rack", "~> 1.5"' test/helper.rb 
test/integration/app.rb || die
+}



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

2017-06-22 Thread Hans de Graaff
commit: f1563b694bf55fc4c7e61519825a666ae6f014ed
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:28:20 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:28:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1563b69

dev-ruby/tilt: add 2.0.5

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/tilt/tilt-2.0.5.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/tilt/tilt-2.0.5.ebuild b/dev-ruby/tilt/tilt-2.0.5.ebuild
index e37c458cf12..5850b064f1f 100644
--- a/dev-ruby/tilt/tilt-2.0.5.ebuild
+++ b/dev-ruby/tilt/tilt-2.0.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/TEMPLATES.md"
@@ -37,7 +37,7 @@ all_ruby_prepare() {
 
# Avoid tests with minor syntax differences since this happens all
# the time when details in the dependencies change.
-   sed -e '/test_smarty_pants_true/,/^end/ s:^:#:' -i 
test/tilt_markdown_test.rb || die
+   sed -e '/test_smarty_pants_true/,/^end/ s:^:#:' \
+   -e '/test_smart_quotes_true/,/^  end/ s:^:#:' -i 
test/tilt_markdown_test.rb || die
sed -e '/smartypants when :smart is set/,/^end/ s:^:#:' -i 
test/tilt_rdiscounttemplate_test.rb || die
-   #sed -i -e '/docbook templates/,/^end/ s:^:#:' 
test/tilt_asciidoctor_test.rb || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/coffee-script-source/

2017-06-22 Thread Hans de Graaff
commit: ccbfe9a8357e8b1ffa1b6b1db3ded69a6376
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jun 23 03:05:11 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jun 23 03:05:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccbfe9a8

dev-ruby/coffee-script-source: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild 
b/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild
index 321fb4753dc..867b6b82621 100644
--- a/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild
+++ b/dev-ruby/coffee-script-source/coffee-script-source-1.12.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_TASK_TEST=""
 RUBY_FAKEGEM_TASK_DOC=""



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

2017-06-22 Thread Mike Gilbert
commit: e4cc97141886e28f721a0395987b1a7f707b5298
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Jun 23 02:05:35 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Jun 23 02:05:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4cc9714

dev-python/pip: don't use epatch

Package-Manager: Portage-2.3.6_p9, Repoman-2.3.2_p77

 dev-python/pip/pip-9.0.1-r2.ebuild | 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-python/pip/pip-9.0.1-r2.ebuild 
b/dev-python/pip/pip-9.0.1-r2.ebuild
index dfb1f988cb3..fa6353f956a 100644
--- a/dev-python/pip/pip-9.0.1-r2.ebuild
+++ b/dev-python/pip/pip-9.0.1-r2.ebuild
@@ -59,13 +59,12 @@ RESTRICT="test"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${DEPEND}"
 
-PATCHES=(
-   "${FILESDIR}/${PN}-9.0.1-disable-version-check.patch"
-)
-
 python_prepare_all() {
+   local PATCHES=(
+   "${FILESDIR}/${PN}-9.0.1-disable-version-check.patch"
+   )
if ! use vanilla; then
-   epatch "${FILESDIR}/pip-disable-system-install.patch"
+   PATCHES+=( "${FILESDIR}/pip-disable-system-install.patch" )
fi
distutils-r1_python_prepare_all
 }



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

2017-06-22 Thread Matt Thode
commit: e3d3386c7692eb396a4e2b82e59ddde36ab21d5e
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 01:43:48 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 01:43:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3d3386c

dev-python/pip: allow users to install system wide if they really want to.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/pip/pip-9.0.1-r2.ebuild | 85 ++
 1 file changed, 85 insertions(+)

diff --git a/dev-python/pip/pip-9.0.1-r2.ebuild 
b/dev-python/pip/pip-9.0.1-r2.ebuild
new file mode 100644
index 000..dfb1f988cb3
--- /dev/null
+++ b/dev-python/pip/pip-9.0.1-r2.ebuild
@@ -0,0 +1,85 @@
+# 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 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit eutils bash-completion-r1 distutils-r1
+
+DESCRIPTION="Installs python packages -- replacement for easy_install"
+HOMEPAGE="https://pip.pypa.io/ https://pypi.python.org/pypi/pip/ 
https://github.com/pypa/pip/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux"
+SLOT="0"
+
+IUSE="-vanilla"
+
+# Check pip/_vendor/vendor.txt for this
+#VENDOR_DEPEND="
+#  >=dev-python/distlib-0.2.2[${PYTHON_USEDEP}]
+#  >=dev-python/html5lib-1.0b8[${PYTHON_USEDEP}]
+#  >=dev-python/six-1.10.0${PYTHON_USEDEP}]
+#  >=dev-python/colorama-0.3.6[${PYTHON_USEDEP}]
+#  >=dev-python/requests-2.9.1-r2[${PYTHON_USEDEP}]
+#  >=dev-python/CacheControl-0.11.6[${PYTHON_USEDEP}]
+#  >=dev-python/lockfile-0.12.2[${PYTHON_USEDEP}]
+#  >=dev-python/progress-1.2[${PYTHON_USEDEP}]
+#  >=dev-python/packaging-16.5[${PYTHON_USEDEP}]
+#  >=dev-python/retrying-1.3.3[${PYTHON_USEDEP}]
+#  >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
+#  virtual/python-ipaddress[${PYTHON_USEDEP}]
+#"
+# https://github.com/pypa/pip/issues/3057
+#RDEPEND="${VENDOR_DEPEND}
+#  >=dev-python/setuptools-19.2[${PYTHON_USEDEP}]
+#   "${COMPLETION}" || die
+   newbashcomp "${COMPLETION}" ${PN}
+
+   "${PYTHON}" -m pip completion --zsh > "${COMPLETION}" || die
+   insinto /usr/share/zsh/site-functions
+   newins "${COMPLETION}" _pip
+}



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

2017-06-22 Thread Zac Medico
commit: 3a75f2cc834f554de7d21b741e644164eaad697f
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jun 23 00:28:08 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jun 23 00:28:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a75f2cc

app-admin/consul: version bump to 0.8.4

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-admin/consul/Manifest|  1 +
 app-admin/consul/consul-0.8.4.ebuild | 67 
 2 files changed, 68 insertions(+)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index 2dd5a8d39f7..b39f8b6b6b3 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -1,5 +1,6 @@
 DIST consul-0.7.5.tar.gz 5157056 SHA256 
e213ba0c55bcb0d752ab120c770048e5156159db5974dc94193731f2e67d7d1f SHA512 
6825a92ca2d1e3bf1db561de803e890bfa3a4c08718477a819ea10f5d0d9d13bf23ba7bedf2123cfa32b8f87d63ede7ee85d57a20f8cef5effd4651d28ab8a36
 WHIRLPOOL 
56e139b39bf73df558369acdd99a0cec42e05b88333013c18f69cfc56837ec007985ec48a845d461df44eed57d0f13256948942860431b84ab4d5d01becca2d2
 DIST consul-0.8.0.tar.gz 4629677 SHA256 
d50787c290d91f6e3472d2adeb3b2cedf3eb71c7c0fce32b60d2739af2d81dcf SHA512 
4bb8bb50e4ab897cac7936bef590c7d8f93eca61913cd88588d5d0324c04fe2582d224dd25191b20bf76b000f764b4decce23118d3f8ed024b887b3194520644
 WHIRLPOOL 
b0f1b03ed013f5a23a3d37cabe09fdc839c4097612f6355238ecfee55a7d5ab91b6386a6d107dfb01f210ff722e505abbe3882b0f6c2fd4015e20b1faef91765
 DIST consul-0.8.3.tar.gz 6513579 SHA256 
8088ae2f4259a736400211eed63f6df3b5264f3a18d31b31845c4a4481b349ac SHA512 
84c72f5cdc9f82288b29b92e386324214bf71ef3952cbd3391f4c7c427cf5f385a3e472304cfb8c837bbfb009547ad3b736d6f66f0546a5f994d547d431bd4b8
 WHIRLPOOL 
159e0cc899702d19e5d46e02b4e64da5097a13016acc0331a638f248f6678ecee19ef019dad3123a42081a97985b7498622731d486c6eb9e015da80d442b2c33
+DIST consul-0.8.4.tar.gz 6614287 SHA256 
d5573d6e70d490c8b8109722c2019b5a2b35eff703b92d6276997846361cff1b SHA512 
4bbb167a603f1d20940330bd9615ba0f50e0113e1d96ce47773f5d2813635f76dd1aec8f43dae4c8c547cec8a891eb0726eeeda7bd7c5b1d495029b359378e68
 WHIRLPOOL 
e270367c69fe74f25c89ef9e8c7f71307d3b8e48b4210e43e48907f1f5a73f11f45aa2b212f70c24463e35d800b861ccd34e2c82de863fc6e7da9cd3eda5214c
 DIST gox-c9740af9c6574448fd48eb30a71f964014c7a837.tar.gz 15772 SHA256 
82828f1ec3e535268fa95d983362c6c773e9a87aa94613e7a47805d22e38 SHA512 
d4b2d5d9666285584697bc0d6ddc2f1a1e3f23741650e831adb42baffbb5f72fc3d5ae8a8fb6719faf1df75d3da334941b0404387f0c213aabdb5c3d5634c55d
 WHIRLPOOL 
89d52013bfb563a11a4042760470ac317398c3f8a61b9e7734c3ac2737d916126ad10a113948eb5a8362de3d77e598e42f4a0510760ae67465bde08658947f7a
 DIST iochan-87b45ffd0e9581375c491fef3d32130bb15c5bd7.tar.gz 1785 SHA256 
71c117246bb1d4d78ad5c3bc5d301942bcebaae5b1e35da1ad7851ceac71a675 SHA512 
2efc0e3cbca496240e3e24550fd0d2aab742eb9b227230ff1ed4ee47344b994642b028bd4644cd45cd697f5f5ef6a729aad65537b10c6555bd52d9ca4b9c717c
 WHIRLPOOL 
15dfd50bfc992a7b6a1b5d672d5bf9bfcb71a357eae371eac773e7fe9ad4ec8d4d0578e0dc6b12bb14689d1497129616b0eb300bbcb483a6865ac315bced562a

diff --git a/app-admin/consul/consul-0.8.4.ebuild 
b/app-admin/consul/consul-0.8.4.ebuild
new file mode 100644
index 000..e12beae0d6c
--- /dev/null
+++ b/app-admin/consul/consul-0.8.4.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit golang-vcs-snapshot systemd user
+
+KEYWORDS="~amd64"
+EGO_PN="github.com/hashicorp/consul"
+DESCRIPTION="A tool for service discovery, monitoring and configuration"
+HOMEPAGE="http://www.consul.io;
+SRC_URI="https://github.com/hashicorp/consul/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MPL-2.0"
+IUSE=""
+
+RESTRICT="test"
+
+DEPEND="dev-go/gox
+   >=dev-lang/go-1.7.5:=
+   >=dev-go/go-tools-0_pre20160121"
+RDEPEND=""
+
+pkg_setup() {
+   enewgroup consul
+   enewuser consul -1 -1 /var/lib/${PN} consul
+}
+
+src_prepare() {
+   eapply_user
+
+   sed -e 's:^\(GIT_DESCRIBE=\).*:\1v'${PV}':' \
+   -e 's:^\(GIT_COMMIT=\).*:\1:' \
+   -e 's:^\(GIT_DIRTY=\).*:\1:' \
+   -e 's:go get -u -v $(GOTOOLS)::' \
+   -i "${S}/src/${EGO_PN}/GNUmakefile" || die
+}
+
+src_compile() {
+   # The dev target sets causes build.sh to set appropriate XC_OS
+   # and XC_ARCH, and skips generation of an unused zip file,
+   # avoiding a dependency on app-arch/zip.
+   GOPATH="${S}" \
+   emake -C "${S}/src/${EGO_PN}" dev
+}
+
+src_install() {
+   local x
+
+   dobin "${S}/bin/${PN}"
+
+   keepdir /etc/consul.d
+   insinto /etc/consul.d
+   doins "${FILESDIR}/"*.json.example
+
+   for x in /var/{lib,log}/${PN}; do
+   keepdir "${x}"
+   fowners consul:consul "${x}"
+   done
+
+   newinitd "${FILESDIR}/consul.initd" "${PN}"
+   newconfd "${FILESDIR}/consul.confd" "${PN}"
+   

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

2017-06-22 Thread Zac Medico
commit: 179b6a4311183b1a7f4518f1ae5082606f1eb1d7
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jun 23 00:13:09 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jun 23 00:13:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=179b6a43

app-admin/consul: remove old versions

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-admin/consul/Manifest|   3 -
 app-admin/consul/consul-0.7.1.ebuild | 104 --
 app-admin/consul/consul-0.7.2.ebuild | 106 ---
 app-admin/consul/consul-0.7.3.ebuild | 106 ---
 4 files changed, 319 deletions(-)

diff --git a/app-admin/consul/Manifest b/app-admin/consul/Manifest
index d9c22b7b40d..2dd5a8d39f7 100644
--- a/app-admin/consul/Manifest
+++ b/app-admin/consul/Manifest
@@ -1,6 +1,3 @@
-DIST consul-0.7.1.tar.gz 4003354 SHA256 
d1498c851df8aa150c7b4398fdbb74467af4949d20ce5b4840b88095fce71135 SHA512 
0cc7dfb5b13c9aa5c59f3c74d44c863cb4099108dadc448233edd006bfd1c1ad422c18224d58113bdad1ca6160a89d1a0a04bf1f5e5f645d5499c0c4422d12ba
 WHIRLPOOL 
33ebd4521a3caa0fb84a4d698e05b7f32c59848b90bbab0899661c51dc34c96fbac37f4eb9cb141be079c4419f57ac0da942d764737baf36dafd73230c84feac
-DIST consul-0.7.2.tar.gz 4200076 SHA256 
28441273a928d0976a668ca0657ec655b10fffe45be19b879f3731812ec9e1c5 SHA512 
62638f652bad421fe6400338f52f6a142dda9bf4838682f5a31c94ebdb3569ed217cfc7ba8b53a38fae448e93912a486d445ed7addb2ff58c7c608469322
 WHIRLPOOL 
fff1869c7d20dc6aa50b765d81d07b610187331d53bd9ec1526fcd85bb00b5426ee8b879946534186694bd3da88a2dd10042632c9bb31249ba6eeb9a8ca20b62
-DIST consul-0.7.3.tar.gz 5022341 SHA256 
4055c74382e9fd33c34389ed2b0ed00ab48dca19c1ab1f4293ca3d8f842b1d3d SHA512 
abb81183118fa3af0e3ef6c46b15441c8ce6b15dbd37e8516a36f2a2fe7eda8f98a11c40e14181392858ba92d86f4148849c15b6afef16439f1b2e250159a717
 WHIRLPOOL 
04a4fed4f699a25201e036fd086c9375cd8cb54adfb31e1137f45fa24a478bdc8e1e16798354df192e7badffca0ab7ef6af3394aa371d32a3924912cfdc8f33d
 DIST consul-0.7.5.tar.gz 5157056 SHA256 
e213ba0c55bcb0d752ab120c770048e5156159db5974dc94193731f2e67d7d1f SHA512 
6825a92ca2d1e3bf1db561de803e890bfa3a4c08718477a819ea10f5d0d9d13bf23ba7bedf2123cfa32b8f87d63ede7ee85d57a20f8cef5effd4651d28ab8a36
 WHIRLPOOL 
56e139b39bf73df558369acdd99a0cec42e05b88333013c18f69cfc56837ec007985ec48a845d461df44eed57d0f13256948942860431b84ab4d5d01becca2d2
 DIST consul-0.8.0.tar.gz 4629677 SHA256 
d50787c290d91f6e3472d2adeb3b2cedf3eb71c7c0fce32b60d2739af2d81dcf SHA512 
4bb8bb50e4ab897cac7936bef590c7d8f93eca61913cd88588d5d0324c04fe2582d224dd25191b20bf76b000f764b4decce23118d3f8ed024b887b3194520644
 WHIRLPOOL 
b0f1b03ed013f5a23a3d37cabe09fdc839c4097612f6355238ecfee55a7d5ab91b6386a6d107dfb01f210ff722e505abbe3882b0f6c2fd4015e20b1faef91765
 DIST consul-0.8.3.tar.gz 6513579 SHA256 
8088ae2f4259a736400211eed63f6df3b5264f3a18d31b31845c4a4481b349ac SHA512 
84c72f5cdc9f82288b29b92e386324214bf71ef3952cbd3391f4c7c427cf5f385a3e472304cfb8c837bbfb009547ad3b736d6f66f0546a5f994d547d431bd4b8
 WHIRLPOOL 
159e0cc899702d19e5d46e02b4e64da5097a13016acc0331a638f248f6678ecee19ef019dad3123a42081a97985b7498622731d486c6eb9e015da80d442b2c33

diff --git a/app-admin/consul/consul-0.7.1.ebuild 
b/app-admin/consul/consul-0.7.1.ebuild
deleted file mode 100644
index f86dc68c4e7..000
--- a/app-admin/consul/consul-0.7.1.ebuild
+++ /dev/null
@@ -1,104 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd user
-
-KEYWORDS="~amd64"
-EGO_PN="github.com/hashicorp/consul"
-DESCRIPTION="A tool for service discovery, monitoring and configuration"
-HOMEPAGE="http://www.consul.io;
-SRC_URI="https://github.com/hashicorp/consul/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   
https://github.com/mitchellh/gox/archive/c9740af9c6574448fd48eb30a71f964014c7a837.tar.gz
 -> gox-c9740af9c6574448fd48eb30a71f964014c7a837.tar.gz
-   
https://github.com/mitchellh/iochan/archive/87b45ffd0e9581375c491fef3d32130bb15c5bd7.tar.gz
 -> iochan-87b45ffd0e9581375c491fef3d32130bb15c5bd7.tar.gz
-"
-
-SLOT="0"
-LICENSE="MPL-2.0"
-IUSE=""
-
-RESTRICT="test"
-
-DEPEND="
-   app-arch/zip
-   >=dev-lang/go-1.6:=
-   >=dev-go/go-tools-0_pre20160121"
-RDEPEND=""
-
-pkg_setup() {
-   enewgroup consul
-   enewuser consul -1 -1 /var/lib/${PN} consul
-}
-
-get_archive_go_package() {
-   local archive=${1} uri x
-   for x in ${SRC_URI}; do
-   if [[ ${x} == http* ]]; then
-   uri=${x}
-   elif [[ ${x} == ${archive} ]]; then
-   break
-   fi
-   done
-   uri=${uri#https://}
-   echo ${uri%/archive/*}
-}
-
-unpack_go_packages() {
-   local go_package x
-   # Unpack packages to appropriate locations for GOPATH
-   for x in ${A}; do
-   unpack ${x}
-   if [[ ${x} == *.tar.gz ]]; then
-   

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

2017-06-22 Thread Zac Medico
commit: bad9289cfc67b6d55054ce7ddb34b92e62a2e9c2
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jun 22 20:40:04 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jun 23 00:13:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bad9289c

dev-python/astroid: version bump to 1.5.3

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/astroid/Manifest |  1 +
 dev-python/astroid/astroid-1.5.3.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-python/astroid/Manifest b/dev-python/astroid/Manifest
index fe763e3f9e6..21c707bc4e1 100644
--- a/dev-python/astroid/Manifest
+++ b/dev-python/astroid/Manifest
@@ -2,3 +2,4 @@ DIST astroid-1.3.8.tar.gz 155302 SHA256 
3971c35c675dc7acfceb636eb1758b7df9fc3ad7
 DIST astroid-1.4.8.tar.gz 184091 SHA256 
5f064785a7e45ed519285f2eb30b795e58a4932a0736b32030da6fef3394ddb3 SHA512 
54bb20edf5518b417470a2d63210802b267fe727f9d30e1ac5000db00a7894739b1c4249468fb55df81b55d382f3a5bbe019876141f7ee4d94040fd699dc0c2c
 WHIRLPOOL 
1d1d4ea2c14057a42023d776cc65e50c965f20cc0b37ad62fbf77446a8bba07669b5a3aae92c9987c232e9a639fe330d0a0dd05980c030a531dbda3040de0c48
 DIST astroid-1.4.9.tar.gz 189315 SHA256 
a483e7891ce3a06dadfc6cb9095b0938aca58940d43576d72e4502b480c085d7 SHA512 
9091afbeffeae3f10a5f4b0dfb476ed5515661744508dde159bb3faa4af032c6359f4544cc3766a6613974f7725e6f8e28bad45bc68e3282764def019a233303
 WHIRLPOOL 
296973dbbf853766e424a5bd5f5ac7a1eae29f2e4d28efe75eeb4751e4265038c425f20fb186a5038c53b33c862a6610605af673706e0c62e871450b33872b00
 DIST astroid-1.5.2.tar.gz 240007 SHA256 
271f1c9ad6519a5dde2a7f0c9b62c2923b55e16569bdd888f9f9055cc5be37ed SHA512 
e8e4facc34f7a5ca1128961c3134d3adb0e59437aa38ef567bfe777b94215fedc32ae524135c6d376a3bc648c851d59315f4caadac684d7576e582e5d9e3b2fe
 WHIRLPOOL 
084cfcd38379df10193bcf32ddb2b70737a10f058847f02c9b26bb6971d32bba2a031bb2f26a09fc52748bca84f525381c56168edc03220d9fba588c7213d111
+DIST astroid-1.5.3.tar.gz 240617 SHA256 
492c2a2044adbf6a84a671b7522e9295ad2f6a7c781b899014308db25312dd35 SHA512 
2a224d9bf8e41059a1316d80738cdc0f1e4c4e0f987baf3969710bae7192466b708c7942cd7e4eeccea55582ce70bb687c96b9e7dece3229ae4cffc558aa2319
 WHIRLPOOL 
e1843a668b6a13bbbd9428c1e0b7399d7fa0ce79496edd7ee490f465930703e25c6a814eb8bf500833de2306c0e3a19162bd675ec01c546e33e3827557f1af68

diff --git a/dev-python/astroid/astroid-1.5.3.ebuild 
b/dev-python/astroid/astroid-1.5.3.ebuild
new file mode 100644
index 000..971e558cca3
--- /dev/null
+++ b/dev-python/astroid/astroid-1.5.3.ebuild
@@ -0,0 +1,51 @@
+# 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="Abstract Syntax Tree for logilab packages"
+HOMEPAGE="https://bitbucket.org/logilab/astroid 
https://pypi.python.org/pypi/astroid;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86 ~x64-macos ~x86-macos"
+IUSE="test"
+
+# Version specified in __pkginfo__.py.
+RDEPEND="
+   dev-python/lazy-object-proxy[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/wrapt[${PYTHON_USEDEP}]
+   virtual/python-enum34[${PYTHON_USEDEP}]
+   virtual/python-singledispatch[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/backports-functools-lru-cache[${PYTHON_USEDEP}]' -2)"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/numpy[${PYTHON_USEDEP}]' 
'python*')
+   >=dev-python/pylint-1.6.0[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   )"
+
+python_prepare_all() {
+   # Disable failing tests
+   # TODO: investigate if it's our fault and how can we fix it
+   sed -i -e "s/test_namespace_package_pth_support/_&/" \
+   astroid/tests/unittest_manager.py || die
+   # we hack xml module, so it does not match what they expect...
+   sed -i -e "s/test_module_model/_&/" \
+   astroid/tests/unittest_object_model.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   ${EPYTHON} -m unittest discover -p "unittest*.py" --verbose || die
+}



[gentoo-commits] proj/layman:master commit in: pm_plugins/portage/sync/modules/laymansync/

2017-06-22 Thread Devan Franchini
commit: 22e1bd138dbcf32ca50f9659c9d847fdae11a5f0
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Apr  9 21:54:17 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Fri Jun 23 00:05:40 2017 +
URL:https://gitweb.gentoo.org/proj/layman.git/commit/?id=22e1bd13

pm_plugins/portage: drop portage._native_kwargs usage (bug 613936)

The portage._native_kwargs function is not available since
portage-2.3.0.

X-Gentoo-Bug: 613936
X-Gentoo-Bug-URL: https://bugs.gentoo.org/613936

 pm_plugins/portage/sync/modules/laymansync/subproc.py | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/pm_plugins/portage/sync/modules/laymansync/subproc.py 
b/pm_plugins/portage/sync/modules/laymansync/subproc.py
index 1166841..477bb46 100644
--- a/pm_plugins/portage/sync/modules/laymansync/subproc.py
+++ b/pm_plugins/portage/sync/modules/laymansync/subproc.py
@@ -72,7 +72,7 @@ class Layman(NewBase):
 
 exitcode = portage.process.spawn_bash("%(command)s" % \
 ({'command': command}),
-**portage._native_kwargs(self.spawn_kwargs))
+**self.spawn_kwargs)
 if exitcode != os.EX_OK:
 msg = "!!! layman add error in %(repo)s"\
 % ({'repo': self.repo.name})
@@ -111,7 +111,7 @@ class Layman(NewBase):
 command = ' '.join(args)
 exitcode = portage.process.spawn_bash("%(command)s" % \
 ({'command': command}),
-**portage._native_kwargs(self.spawn_kwargs))
+**self.spawn_kwargs)
 
 if exitcode != os.EX_OK:
 exitcode = self.new()[0]



[gentoo-commits] repo/gentoo:master commit in: sys-block/partitionmanager/

2017-06-22 Thread Andreas Sturmlechner
commit: 53a9154ce4b63ea9e2432c64f3b1a9ca37b82a42
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jun 22 23:32:42 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jun 22 23:36:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53a9154c

sys-block/partitionmanager: 3.1.0 version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-block/partitionmanager/Manifest|  1 +
 .../partitionmanager/partitionmanager-3.1.0.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/sys-block/partitionmanager/Manifest 
b/sys-block/partitionmanager/Manifest
index 3bbe8fe2724..ccbc22dc321 100644
--- a/sys-block/partitionmanager/Manifest
+++ b/sys-block/partitionmanager/Manifest
@@ -1 +1,2 @@
 DIST partitionmanager-3.0.1.tar.xz 1318148 SHA256 
2090d94e0fd3744b035cc58bd669a63168d6a1763187826fef76544f4b23 SHA512 
ebdfc9fb5aa5081078c928428d44fa4405cd5fdc56db3348d914ac16a536d162842bbc88f015ec2d21eb7831f4b28c8e6825950681095dddb5fd9415c7e49150
 WHIRLPOOL 
4b7452985c9f9cd7edec636176820cbe5a6d2b95e1038592103a9741f576a91ebcf061a85aa756a68070296146bf18f6a4cc3cf592d19fd78ae96df82d0fb2a1
+DIST partitionmanager-3.1.0.tar.xz 1297180 SHA256 
46c3f97711cd8709aece346a27bc6ba89c29cfb5bcf2399bf1982c2e11ee6272 SHA512 
3e81c06131a207f886967ab33c11c3d9643adefba6322b81a06c06e41ff3adf0dc0bede16b55d4bd5a0c7c59b74655014be35f442c61d561d03c763aa0f5ebae
 WHIRLPOOL 
da100fca6ef84ad92ed3c5cfcaa88907885946a7406256815c4ecad222cb926385b1b9c65b6caba406be8375fdc504d932830cf52283881dd17926e79b563227

diff --git a/sys-block/partitionmanager/partitionmanager-3.1.0.ebuild 
b/sys-block/partitionmanager/partitionmanager-3.1.0.ebuild
new file mode 100644
index 000..31b347d530e
--- /dev/null
+++ b/sys-block/partitionmanager/partitionmanager-3.1.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+QT_MINIMAL="5.7.1"
+inherit kde5
+
+DESCRIPTION="KDE utility for management of partitions and file systems"
+HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
+[[ ${KDE_BUILD_TYPE} == release ]] && 
SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-3"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kjobwidgets)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+   sys-apps/util-linux
+   >=sys-libs/kpmcore-3.0.2:5=
+"
+RDEPEND="${DEPEND}
+   $(add_plasma_dep kde-cli-tools kdesu)
+   !sys-block/partitionmanager:0
+"



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

2017-06-22 Thread Andreas Sturmlechner
commit: 7f61fe1322eb89ea4b83d514d25e9344693af00a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jun 22 23:27:27 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jun 22 23:36:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f61fe13

sys-libs/kpmcore: 3.1.1 version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 sys-libs/kpmcore/Manifest |  1 +
 sys-libs/kpmcore/kpmcore-3.1.1.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/sys-libs/kpmcore/Manifest b/sys-libs/kpmcore/Manifest
index 267347d3a10..bb5d0a55f5c 100644
--- a/sys-libs/kpmcore/Manifest
+++ b/sys-libs/kpmcore/Manifest
@@ -1,2 +1,3 @@
 DIST kpmcore-3.0.3.tar.xz 401800 SHA256 
a271a7f6e84ef161a1130a7ff9d998fc8b74d91098bfa8e0a92e0c9ec6cd989e SHA512 
20d21b8317aebea56ed63b636b852df1ae50895aacbe9c92e1470c9d8a1085561aa04a44fc41d70df71713a3f90c2d7f4192d232a060fe352422093012744186
 WHIRLPOOL 
6cedde5b242e1ca7b3228369c610647b57a973f279e9c77ee4bb3ac1bef911c154eec5d9215bbc3c5bb6bad745cd95ecb987768429f5f2273b970236b8a5765e
 DIST kpmcore-3.1.0.tar.xz 403860 SHA256 
93f37452e46df56c334fa4e6b78afb2b9b0eea43a181f2a692477ab75746df5b SHA512 
fbb5da36f0a0616ca749acb496bd27f38cc960c7400f407a10898b4fb2d9ecf70d6fbb2c519132c759571324a6ac527e8a4fb42634fb4ad65d161d2d2e32e8f1
 WHIRLPOOL 
d0780155202127c63e65e6adf76384449b0bdb6d4f3ee22c483594c0a2e6ea720ec224a0dcb889dfc167f5194ef8443817da69e1e72854f5adbfd0f433b5f7a6
+DIST kpmcore-3.1.1.tar.xz 403384 SHA256 
e65c657ab38a0b60b25e3af675ac38ae24bcb1f8bbf2592a11c33309e77ed321 SHA512 
19cbc320052e98f047592c193587572750520df1a4e3b8172a2cfd063f38a16efe2ec037fb911e19cde6707dd12f5fc6977d2ae7153fef801a289d2e6e7e9e11
 WHIRLPOOL 
6ee781c0579ba5c159d2a8d4f79dd7e105a5468a25a35590c6297f653e74c0b351a986718cd0e5fd74a23ce686ff474a0b56ede2caa5774652fa4fa0e35d0643

diff --git a/sys-libs/kpmcore/kpmcore-3.1.1.ebuild 
b/sys-libs/kpmcore/kpmcore-3.1.1.ebuild
new file mode 100644
index 000..6b1b7065601
--- /dev/null
+++ b/sys-libs/kpmcore/kpmcore-3.1.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit kde5
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="Library for managing partitions"
+HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
+LICENSE="GPL-3"
+SLOT="5/5"
+IUSE=""
+
+CDEPEND="
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+   dev-libs/libatasmart
+   sys-apps/util-linux
+   >=sys-block/parted-3
+"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+"
+RDEPEND="${CDEPEND}
+   !

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

2017-06-22 Thread Devan Franchini
commit: bc687464acfaadd0c8dbde354f7d5d1d1f1f7d31
Author: Devan Franchini  gentoo  org>
AuthorDate: Thu Jun 22 23:31:18 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Thu Jun 22 23:33:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc687464

app-admin/webapp-config: Adds 1.55 ebuild to the tree

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-admin/webapp-config/Manifest  |  1 +
 app-admin/webapp-config/webapp-config-1.55.ebuild | 66 +++
 2 files changed, 67 insertions(+)

diff --git a/app-admin/webapp-config/Manifest b/app-admin/webapp-config/Manifest
index 4c6c0ac1933..49de5cd1bdf 100644
--- a/app-admin/webapp-config/Manifest
+++ b/app-admin/webapp-config/Manifest
@@ -1,3 +1,4 @@
 DIST webapp-config-1.52.tar.bz2 62951 SHA256 
b8295bbc518f68f60913fe2ee9232d77f1a10e21fcddffb8c4370546ba96a2a5 SHA512 
ec616067588e6ab306af067e70bab9d17961aa675f387ee67a2291235ce81638b49a784d9a6c31891b7c78a712f276c3e62c6681a5e496a52c7e6fe7753922ea
 WHIRLPOOL 
ca6484871e26acff6d14510a4a925672258f58c1c8c05c5207b78350b1cc787e29c6ea68c1af05b5c5aaebed12ce545e023f54acbdc7215678b30a2f14708eee
 DIST webapp-config-1.53.tar.bz2 63429 SHA256 
4d45b1452feb730cc55bfdce686277183acfd64ab6aef5fab82992d1a508263d SHA512 
7d2fc7197d537f2264c26b68b61e69273d2fcd3eec93657db54ba685c8383e7b8245cf05ed2ddd8b72453bf3fbf8f4bc4867e53d608331799df2e6162be14820
 WHIRLPOOL 
f12ca0f3fcee31de6e2ead3cd3685fa32c697d258324bf40fc2bfc2f1787c4e7cbd7290bbb5f5523515bff29cb78bece35fcad390e419cf5dd619e5efdafc1dc
 DIST webapp-config-1.54.tar.bz2 58954 SHA256 
7663c4f7ae0d4e7206e349f3bf79fed479c9971365363929f431c92ebd622d17 SHA512 
fa61e88696eaed130575e5ae9a17ec827aa14aece359e5ba43fa723ad00083def22e44fb02d99fc5ba6000a5949c5ce7aecea9307d2bfae333e202ef111dcd31
 WHIRLPOOL 
417944147e0bdc7eb1575b10102230306f6c76652beeb0e2866d0fbe41b12bcdeb31421dd7551961db55f4fe4544ca5600c072cb74083621745c7c74fbfeec2e
+DIST webapp-config-1.55.tar.bz2 72583 SHA256 
222c41ac71b2991b078352fb8d09a0d458ff30b9c9729a2429165835c38c564b SHA512 
44294b276fd036908438cd984ebf70433639caa18d8330bab348433b4f39ea2c42c57fa8de4f0a6198f7875429a3ef9ebe61321c288d910f9be8b3414865f438
 WHIRLPOOL 
80d577e4398f6872129544221d58003beb5b5ce972c181a241ec96cfe0fe34975e7bef5a96acc40977320ad71cd4370ee58216c0517d78c1765f000a42d8ea56

diff --git a/app-admin/webapp-config/webapp-config-1.55.ebuild 
b/app-admin/webapp-config/webapp-config-1.55.ebuild
new file mode 100644
index 000..d1f94e21cf1
--- /dev/null
+++ b/app-admin/webapp-config/webapp-config-1.55.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+
+inherit distutils-r1 prefix
+
+SRC_URI="https://dev.gentoo.org/~twitch153/${PN}/${P}.tar.bz2;
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~x86-fbsd"
+
+DESCRIPTION="Gentoo's installer for web-based applications"
+HOMEPAGE="https://sourceforge.net/projects/webapp-config/;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+portage"
+
+DEPEND="app-text/xmlto
+   !dev-python/configparser
+   sys-apps/gentoo-functions"
+RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
+
+python_prepare_all() {
+   distutils-r1_python_prepare_all
+   eprefixify WebappConfig/eprefix.py config/webapp-config
+}
+
+python_compile_all() {
+   emake -C doc/
+}
+
+python_install() {
+   # According to this discussion:
+   # 
http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
+   # distutils does not provide for specifying two different script install
+   # locations. Since we only install one script here the following should
+   # be ok
+   distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin"
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   insinto /etc/vhosts
+   doins config/webapp-config
+
+   keepdir /usr/share/webapps
+   keepdir /var/db/webapps
+
+   dodoc AUTHORS
+   doman doc/*.[58]
+   dohtml doc/*.[58].html
+}
+
+python_test() {
+   PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \
+   || die "Testing failed with ${EPYTHON}"
+}
+
+pkg_postinst() {
+   elog "Now that you have upgraded webapp-config, you **must** update 
your"
+   elog "config files in /etc/vhosts/webapp-config before you emerge any"
+   elog "packages that use webapp-config."
+}



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

2017-06-22 Thread Devan Franchini
commit: 2ae9900b7310a643423546b3ee3bb847c55ffefe
Author: Devan Franchini  gentoo  org>
AuthorDate: Thu Jun 22 23:26:56 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Thu Jun 22 23:33:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae9900b

app-admin/webapp-config: Deletes 1.54-r1 ebuild

 .../webapp-config/webapp-config-1.54-r1.ebuild | 64 --
 1 file changed, 64 deletions(-)

diff --git a/app-admin/webapp-config/webapp-config-1.54-r1.ebuild 
b/app-admin/webapp-config/webapp-config-1.54-r1.ebuild
deleted file mode 100644
index 2141c27bac3..000
--- a/app-admin/webapp-config/webapp-config-1.54-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="5"
-
-PYTHON_COMPAT=( python{2_7,3_4,3_5} pypy )
-
-inherit distutils-r1
-
-SRC_URI="https://dev.gentoo.org/~twitch153/${PN}/${P}.tar.bz2;
-KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~x86-fbsd"
-
-DESCRIPTION="Gentoo's installer for web-based applications"
-HOMEPAGE="https://sourceforge.net/projects/webapp-config/;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+portage"
-
-DEPEND="app-text/xmlto
-   sys-apps/gentoo-functions"
-RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
-
-python_prepare() {
-   epatch "${FILESDIR}/${P}-pvr-check.patch"
-}
-python_compile_all() {
-   emake -C doc/
-}
-
-python_install() {
-   # According to this discussion:
-   # 
http://mail.python.org/pipermail/distutils-sig/2004-February/003713.html
-   # distutils does not provide for specifying two different script install
-   # locations. Since we only install one script here the following should
-   # be ok
-   distutils-r1_python_install --install-scripts="${EPREFIX}/usr/sbin"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   insinto /etc/vhosts
-   doins config/webapp-config
-
-   keepdir /usr/share/webapps
-   keepdir /var/db/webapps
-
-   dodoc AUTHORS
-   doman doc/*.[58]
-   dohtml doc/*.[58].html
-}
-
-python_test() {
-   PYTHONPATH="." "${PYTHON}" WebappConfig/tests/external.py \
-   || die "Testing failed with ${EPYTHON}"
-}
-
-pkg_postinst() {
-   elog "webapp-config now requires that all -I/-U/-C commands be followed"
-   elog "by the package name and package version of the webapp"
-   elog "eg.) 'webapp-config -d drupal -I drupal 8.0.0_beta10'"
-   elog "See 'man 8 webapp-config' for more information"
-}



[gentoo-commits] repo/gentoo:master commit in: app-text/mupdf/files/, app-text/mupdf/

2017-06-22 Thread Michael Weber
commit: 3be187616f2921e36c9bf82cb95d97f00cb12ad2
Author: Michael Weber  gentoo  org>
AuthorDate: Thu Jun 22 23:30:06 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Thu Jun 22 23:30:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3be18761

app-text/mupdf: drop empty libmupdfthird.a file (bug 620874, thanks Cddr).

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/mupdf/files/mupdf-1.11-drop-libmupdfthird.patch | 11 +++
 app-text/mupdf/mupdf-1.11-r2.ebuild  |  1 +
 2 files changed, 12 insertions(+)

diff --git a/app-text/mupdf/files/mupdf-1.11-drop-libmupdfthird.patch 
b/app-text/mupdf/files/mupdf-1.11-drop-libmupdfthird.patch
new file mode 100644
index 000..eaf11678868
--- /dev/null
+++ b/app-text/mupdf/files/mupdf-1.11-drop-libmupdfthird.patch
@@ -0,0 +1,11 @@
+--- mupdf-1.11-source/Makefile
 mupdf-1.11-source/Makefile
+@@ -301,7 +301,7 @@
+ # --- Library ---
+ 
+ MUPDF_LIB = $(OUT)/libmupdf.a
+-THIRD_LIB = $(OUT)/libmupdfthird.a
++THIRD_LIB =
+ THREAD_LIB = $(OUT)/libmuthreads.a
+ 
+ MUPDF_OBJ := $(FITZ_OBJ) $(FONT_OBJ) $(PDF_OBJ) $(XPS_OBJ) $(SVG_OBJ) 
$(CBZ_OBJ) $(HTML_OBJ) $(GPRF_OBJ)

diff --git a/app-text/mupdf/mupdf-1.11-r2.ebuild 
b/app-text/mupdf/mupdf-1.11-r2.ebuild
index 53319aa7581..ba45032f219 100644
--- a/app-text/mupdf/mupdf-1.11-r2.ebuild
+++ b/app-text/mupdf/mupdf-1.11-r2.ebuild
@@ -49,6 +49,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-1.11-openssl-curl-x11.patch
"${FILESDIR}"/${PN}-1.11-system-glfw.patch
"${FILESDIR}"/${PN}-1.11-CVE-2017-6060.patch
+   "${FILESDIR}"/${PN}-1.11-drop-libmupdfthird.patch
 )
 
 src_prepare() {



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

2017-06-22 Thread Michael Weber
commit: 7eedd5c3b84a3b83525dfed536735be99c1382b0
Author: Michael Weber  gentoo  org>
AuthorDate: Thu Jun 22 23:22:11 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Thu Jun 22 23:22:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eedd5c3

app-text/mupdf: fix executable bit on CHANGES (bug 622076).

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/mupdf/mupdf-1.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mupdf/mupdf-1.11-r2.ebuild 
b/app-text/mupdf/mupdf-1.11-r2.ebuild
index e7a4fef0f02..53319aa7581 100644
--- a/app-text/mupdf/mupdf-1.11-r2.ebuild
+++ b/app-text/mupdf/mupdf-1.11-r2.ebuild
@@ -147,5 +147,5 @@ src_install() {
insinto /usr/$(get_libdir)/pkgconfig
doins platform/debian/${PN}.pc
 
-   dodoc README docs/*.{txt,c}
+   dodoc README CHANGES docs/*.{txt,c}
 }



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

2017-06-22 Thread Michael Weber
commit: 49e8f195b53830a62dad0c3632798b0357a4c376
Author: Michael Weber  gentoo  org>
AuthorDate: Thu Jun 22 23:18:18 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Thu Jun 22 23:18:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49e8f195

app-text/mupdf: allow USE=-X,opengl and cleanup .desktop and symlink mess.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/mupdf/mupdf-1.11-r2.ebuild | 151 
 1 file changed, 151 insertions(+)

diff --git a/app-text/mupdf/mupdf-1.11-r2.ebuild 
b/app-text/mupdf/mupdf-1.11-r2.ebuild
new file mode 100644
index 000..e7a4fef0f02
--- /dev/null
+++ b/app-text/mupdf/mupdf-1.11-r2.ebuild
@@ -0,0 +1,151 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs
+
+DESCRIPTION="a lightweight PDF viewer and toolkit written in portable C"
+HOMEPAGE="http://mupdf.com/;
+SRC_URI="http://mupdf.com/downloads/${P}-source.tar.gz;
+
+LICENSE="AGPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="X +curl javascript libressl opengl +openssl static static-libs vanilla"
+
+LIB_DEPEND="
+   !libressl? ( dev-libs/openssl:0[static-libs?] )
+   libressl? ( dev-libs/libressl[static-libs?] )
+   javascript? ( >=dev-lang/mujs-0_p20160504 )
+   media-libs/freetype:2[static-libs?]
+   media-libs/harfbuzz[static-libs?]
+   media-libs/jbig2dec[static-libs?]
+   media-libs/libpng:0[static-libs?]
+   >=media-libs/openjpeg-2.1:2[static-libs?]
+   net-misc/curl[static-libs?]
+   virtual/jpeg[static-libs?]
+   X? ( x11-libs/libX11[static-libs?]
+   x11-libs/libXext[static-libs?] )
+   opengl? ( >=media-libs/glfw-3.2 )"
+RDEPEND="${LIB_DEPEND}"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   static-libs? ( ${LIB_DEPEND} )
+   static? ( ${LIB_DEPEND//?}
+   app-arch/bzip2[static-libs]
+   x11-libs/libXau[static-libs]
+   x11-libs/libXdmcp[static-libs]
+   x11-libs/libxcb[static-libs] )"
+
+REQUIRED_USE="opengl? ( !static !static-libs )"
+
+S=${WORKDIR}/${P}-source
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.11-CFLAGS.patch
+   "${FILESDIR}"/${PN}-1.9a-debug-build.patch
+   "${FILESDIR}"/${PN}-1.10a-add-desktop-pc-xpm-files.patch
+   "${FILESDIR}"/${PN}-1.11-openssl-curl-x11.patch
+   "${FILESDIR}"/${PN}-1.11-system-glfw.patch
+   "${FILESDIR}"/${PN}-1.11-CVE-2017-6060.patch
+)
+
+src_prepare() {
+   default
+   use hppa && append-cflags -ffunction-sections
+
+   rm -rf thirdparty || die
+
+   if has_version ">=media-libs/openjpeg-2.1:2" ; then
+   # Remove a switch, which prevents using shared libraries for 
openjpeg2.
+   # See 
http://www.linuxfromscratch.org/blfs/view/cvs/pst/mupdf.html
+   sed '/OPJ_STATIC$/d' -i source/fitz/load-jpx.c
+   fi
+
+   use javascript || \
+   sed -e '/* #define FZ_ENABLE_JS/ a\#define FZ_ENABLE_JS 0' \
+   -i include/mupdf/fitz/config.h
+
+   sed -e "/^libdir=/s:/lib:/$(get_libdir):" \
+   -e "/^prefix=/s:=.*:=${EROOT}/usr:" \
+   -i platform/debian/${PN}.pc || die
+
+   use vanilla || eapply \
+   "${FILESDIR}"/${PN}-1.3-zoom-2.patch
+
+   sed -e "1iOS = Linux" \
+   -e "1iCC = $(tc-getCC)" \
+   -e "1iLD = $(tc-getCC)" \
+   -e "1iAR = $(tc-getAR)" \
+   -e "1iverbose = yes" \
+   -e "1ibuild = debug" \
+   -e "1iprefix = ${ED}usr" \
+   -e "1ilibdir = ${ED}usr/$(get_libdir)" \
+   -e "1idocdir = ${ED}usr/share/doc/${PF}" \
+   -e "1iWANT_X11 = $(usex X)" \
+   -e "1iWANT_OPENSSL = $(usex openssl)" \
+   -e "1iWANT_CURL = $(usex curl)" \
+   -e "1iHAVE_MUJS = $(usex javascript)" \
+   -e "1iMUJS_LIBS = $(usex javascript -lmujs '')" \
+   -e "1iMUJS_CFLAGS =" \
+   -e "1iHAVE_GLFW = $(usex opengl yes no)" \
+   -i Makerules || die
+
+   if use static-libs || use static ; then
+   cp -a "${S}" "${S}"-static || die
+   #add missing Libs.private for xcb and freetype
+   sed -e 's:\(pkg-config --libs\):\1 --static:' \
+   -e '/^SYS_X11_LIBS = /s:\(.*\):\1 -lpthread:' \
+   -e '/^SYS_FREETYPE_LIBS = /s:\(.*\):\1 -lbz2:' \
+   -i "${S}"-static/Makerules || die
+   fi
+
+   my_soname=libmupdf.so.${PV}
+   my_soname_js_none=libmupdf-js-none.so.${PV}
+   sed -e "\$a\$(MUPDF_LIB): \$(MUPDF_JS_NONE_LIB)" \
+   -e "\$a\\\t\$(QUIET_LINK) \$(CC) \$(LDFLAGS) 

[gentoo-commits] proj/webapp-config:master commit in: config/, WebappConfig/

2017-06-22 Thread Devan Franchini
commit: b68584681207baa80012345d2800764b1b338dfb
Author: Vladimir Pavljuchenkov (SpiderX)  spiderx  dp 
 ua>
AuthorDate: Mon Jan  9 09:31:54 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Mon Jan  9 09:31:54 2017 +
URL:https://gitweb.gentoo.org/proj/webapp-config.git/commit/?id=b6858468

Adds uWSGI server support

 WebappConfig/config.py |  3 ++-
 WebappConfig/server.py | 13 -
 config/webapp-config   |  1 +
 3 files changed, 15 insertions(+), 2 deletions(-)

diff --git a/WebappConfig/config.py b/WebappConfig/config.py
index 3a176a0..c66d146 100644
--- a/WebappConfig/config.py
+++ b/WebappConfig/config.py
@@ -1581,7 +1581,8 @@ class Config:
'cherokee' : WebappConfig.server.Cherokee,
'nginx': WebappConfig.server.Nginx,
'gatling'  : WebappConfig.server.Gatling,
-   'tracd': WebappConfig.server.Tracd,}
+   'tracd': WebappConfig.server.Tracd,
+   'uwsgi': WebappConfig.server.uWSGI,}
 
 
 server = self.config.get('USER', 'vhost_server')

diff --git a/WebappConfig/server.py b/WebappConfig/server.py
index ec9c141..a458505 100644
--- a/WebappConfig/server.py
+++ b/WebappConfig/server.py
@@ -366,6 +366,16 @@ class Tracd(Basic):
 self.vhost_server_uid = get_user('tracd')
 self.vhost_server_gid = get_group('tracd')
 
+class uWSGI(Basic):
+
+name   = 'uWSGI'
+desc   = 'supports installation on uWSGI'
+dep= 'www-servers/uwsgi'
+
+def set_server_user(self):
+self.vhost_server_uid = get_user('uwsgi')
+self.vhost_server_gid = get_group('uwsgi')
+
 def listservers():
 
 OUT.notice('\n'.join(['apache',
@@ -373,4 +383,5 @@ def listservers():
   'cherokee',
   'nginx',
   'gatling',
-  'tracd',]))
+  'tracd',
+  'uwsgi',]))

diff --git a/config/webapp-config b/config/webapp-config
index da01bc6..e8d1d8a 100755
--- a/config/webapp-config
+++ b/config/webapp-config
@@ -70,6 +70,7 @@ vhost_hostname="localhost"
 # nginx
 # gatling
 # tracd
+# uwsgi
 
 #
 # you can override this setting by using the -s switch to webapp-config



[gentoo-commits] proj/webapp-config:master commit in: WebappConfig/

2017-06-22 Thread Devan Franchini
commit: 55b6d681dd3df9954094a5fc3732c391e9544036
Author: Devan Franchini  gentoo  org>
AuthorDate: Thu Jun 22 23:01:12 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Thu Jun 22 23:04:31 2017 +
URL:https://gitweb.gentoo.org/proj/webapp-config.git/commit/?id=55b6d681

version.py: Updates version number

 WebappConfig/version.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/WebappConfig/version.py b/WebappConfig/version.py
index f52527b..e41cb0c 100644
--- a/WebappConfig/version.py
+++ b/WebappConfig/version.py
@@ -13,7 +13,7 @@
 #
 # 
 
-WCVERSION = '1.54-git'
+WCVERSION = '1.55-git'
 
 if __name__ == '__main__':
 print(WCVERSION)



[gentoo-commits] proj/webapp-config:master commit in: /

2017-06-22 Thread Devan Franchini
commit: 8bb88ecdc7b98469e21f68159c80f31f610d6f0e
Author: Devan Franchini  gmail  com>
AuthorDate: Tue May 23 00:44:11 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Tue May 23 00:44:11 2017 +
URL:https://gitweb.gentoo.org/proj/webapp-config.git/commit/?id=8bb88ecd

Merge pull request #6 from SpiderX/master

Adds uWSGI server support

 WebappConfig/config.py |  3 ++-
 WebappConfig/server.py | 13 -
 config/webapp-config   |  1 +
 3 files changed, 15 insertions(+), 2 deletions(-)



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

2017-06-22 Thread Lars Wendler
commit: 1aaddf96855be594dd3dd059ab437201e8ad86ef
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Jun 22 22:41:46 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Jun 22 22:42:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aaddf96

sys-libs/gdbm: Added multilib usedep (bug #622400).

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-libs/gdbm/gdbm-1.13.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/gdbm/gdbm-1.13.ebuild b/sys-libs/gdbm/gdbm-1.13.ebuild
index 0f59b4a15ec..1aafca746d3 100644
--- a/sys-libs/gdbm/gdbm-1.13.ebuild
+++ b/sys-libs/gdbm/gdbm-1.13.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~s390 ~s
 IUSE="+berkdb exporter nls +readline static-libs"
 
 DEPEND="
-   readline? ( sys-libs/readline:0= )
+   readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
 "
 RDEPEND="${DEPEND}"
 



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

2017-06-22 Thread Andreas Sturmlechner
commit: 701b635f727ba383eaf73dd8149412dffbbb164a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Jun 22 22:36:50 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Jun 22 22:36:50 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=701b635f

kde-apps/kubrick: Frameworks merged to master

Thanks-to: Andrius Å tikonas  stikonas.eu>

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 kde-apps/kubrick/kubrick-5..ebuild | 32 
 kde-apps/kubrick/kubrick-.ebuild   | 23 +--
 2 files changed, 17 insertions(+), 38 deletions(-)

diff --git a/kde-apps/kubrick/kubrick-5..ebuild 
b/kde-apps/kubrick/kubrick-5..ebuild
deleted file mode 100644
index eae8cb4425..00
--- a/kde-apps/kubrick/kubrick-5..ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-KDE_HANDBOOK=true
-EGIT_BRANCH="frameworks"
-inherit kde5
-
-DESCRIPTION="Game based on the \"Rubik's Cube\" puzzle by KDE"
-HOMEPAGE="https://www.kde.org/applications/games/kubrick/;
-KEYWORDS=""
-IUSE=""
-
-RDEPEND="
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_kdeapps_dep libkdegames)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtopengl)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-   virtual/glu
-"
-DEPEND="${RDEPEND}
-   virtual/opengl
-"

diff --git a/kde-apps/kubrick/kubrick-.ebuild 
b/kde-apps/kubrick/kubrick-.ebuild
index b75c156b0a..a16a2cedb4 100644
--- a/kde-apps/kubrick/kubrick-.ebuild
+++ b/kde-apps/kubrick/kubrick-.ebuild
@@ -3,16 +3,27 @@
 
 EAPI=6
 
-KDE_HANDBOOK="optional"
-OPENGL_REQUIRED="always"
-inherit kde4-base
+KDE_HANDBOOK="true"
+inherit kde5
 
-DESCRIPTION="A game based on the \"Rubik's Cube\" puzzle"
+DESCRIPTION="Game based on the \"Rubik's Cube\" puzzle by KDE"
 HOMEPAGE="https://www.kde.org/applications/games/kubrick/;
 KEYWORDS=""
-IUSE="debug"
+IUSE=""
 
-RDEPEND="$(add_kdeapps_dep libkdegames)
+RDEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kxmlgui)
+   $(add_kdeapps_dep libkdegames)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtopengl)
+   $(add_qt_dep qtsvg)
+   $(add_qt_dep qtwidgets)
virtual/glu
 "
 DEPEND="${RDEPEND}



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

2017-06-22 Thread Michael Weber
commit: b36da72f37b5764c8d1796b042d0cefb04725ccf
Author: Michael Weber  gentoo  org>
AuthorDate: Thu Jun 22 22:14:22 2017 +
Commit: Michael Weber  gentoo  org>
CommitDate: Thu Jun 22 22:14:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b36da72f

net-misc/hotot: revbump dropping USE="gtk2 gtk3 qt4" (bug 608606).

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 ...812.ebuild => hotot-0.9.8.15_p20150812-r2.ebuild} | 20 +++-
 1 file changed, 3 insertions(+), 17 deletions(-)

diff --git a/net-misc/hotot/hotot-0.9.8.15_p20150812.ebuild 
b/net-misc/hotot/hotot-0.9.8.15_p20150812-r2.ebuild
similarity index 67%
rename from net-misc/hotot/hotot-0.9.8.15_p20150812.ebuild
rename to net-misc/hotot/hotot-0.9.8.15_p20150812-r2.ebuild
index 9c7adee05bb..3b3bda77c0f 100644
--- a/net-misc/hotot/hotot-0.9.8.15_p20150812.ebuild
+++ b/net-misc/hotot/hotot-0.9.8.15_p20150812-r2.ebuild
@@ -14,21 +14,12 @@ 
SRC_URI="https://github.com/lyricat/Hotot/tarball/452fc0924a98923b -> ${P}.tar.g
 LICENSE="LGPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="chrome gtk2 gtk3 kde qt4 qt5"
+IUSE="chrome kde qt5"
 
-REQUIRED_USE="|| ( chrome gtk2 gtk3 qt4 qt5 ) ${PYTHON_REQUIRED_USE}"
+REQUIRED_USE="|| ( chrome qt5 ) ${PYTHON_REQUIRED_USE}"
 
 RDEPEND="${PYTHON_DEPS}
dev-python/dbus-python[${PYTHON_USEDEP}]
-   gtk2? ( dev-python/pywebkitgtk[${PYTHON_USEDEP}] )
-   gtk3? ( dev-python/pygobject:3[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   net-libs/webkit-gtk:3[introspection] )
-   qt4? (
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtwebkit:4
-   kde? ( kde-frameworks/kdelibs:4 ) )
qt5? (
dev-qt/qtcore:5
dev-qt/qtgui:5
@@ -37,18 +28,13 @@ RDEPEND="${PYTHON_DEPS}
dev-qt/qtwidgets:5
)"
 DEPEND="${RDEPEND}
-   sys-devel/gettext
-   qt4? ( dev-qt/qtsql:4 )"
+   sys-devel/gettext"
 
 src_configure() {
mycmakeargs=(
${mycmakeargs}
-DWITH_CHROME=$(usex chrome)
-   -DWITH_GTK=$(usex gtk2)
-   -DWITH_GTK2=$(usex gtk2)
-   -DWITH_GTK3=$(usex gtk3)
-DWITH_KDE=$(usex kde)
-   -DWITH_QT=$(usex qt4)
-DWITH_QT5=$(usex qt5)
-DPYTHON_EXECUTABLE=${PYTHON} )
 



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

2017-06-22 Thread Patrice Clement
commit: 03e328116a02937579c4182a5ab249a54bcc0a7f
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jun 22 21:57:51 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jun 22 21:57:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03e32811

dev-util/lockrun: EAPI 6 bump.

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-util/lockrun/lockrun-20120508-r1.ebuild | 30 +
 1 file changed, 30 insertions(+)

diff --git a/dev-util/lockrun/lockrun-20120508-r1.ebuild 
b/dev-util/lockrun/lockrun-20120508-r1.ebuild
new file mode 100644
index 000..1a0c8c9f499
--- /dev/null
+++ b/dev-util/lockrun/lockrun-20120508-r1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Lockrun - runs cronjobs with overrun protection"
+HOMEPAGE="http://www.unixwiz.net/tools/lockrun.html;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+
+S="${WORKDIR}"
+
+src_unpack() {
+   cp -v "${FILESDIR}"/${PN}.c-${PV} "${S}"/${PN}.c || die
+   cp -v "${FILESDIR}"/${PN}.c-${PV} "${S}"/README || die
+}
+
+src_compile() {
+   emake CC=$(tc-getCC) ${PN}
+   sed -i README -e '60q;s|^ \*||g' || die
+}
+
+src_install () {
+   dobin ${PN}
+   einstalldocs
+}



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

2017-06-22 Thread Patrice Clement
commit: c0e16f1968b8538f04297bb5bb3f1cb6cae01e30
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jun 22 21:55:07 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Thu Jun 22 21:55:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0e16f19

dev-util/huc: punt DOCS array.

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-util/huc/huc-0.1-r1.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-util/huc/huc-0.1-r1.ebuild b/dev-util/huc/huc-0.1-r1.ebuild
index 26aa8a38554..c2261b0ddc2 100644
--- a/dev-util/huc/huc-0.1-r1.ebuild
+++ b/dev-util/huc/huc-0.1-r1.ebuild
@@ -13,8 +13,6 @@ SLOT="0"
 LICENSE="GPL-2"
 KEYWORDS="amd64 ppc sparc x86 ~x86-linux ~ppc-macos"
 
-DOCS=( README )
-
 src_compile() {
$(tc-getCXX) \
${LDFLAGS} ${CXXFLAGS} \



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

2017-06-22 Thread Andreas Hüttel
commit: d84d80228793e521c259cd298beafb80de5dfe51
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Jun 22 20:57:00 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Thu Jun 22 20:57:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d84d8022

dev-util/dejagnu: Versopm ni,ü

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/dejagnu/Manifest   |  1 +
 dev-util/dejagnu/dejagnu-1.6.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/dev-util/dejagnu/Manifest b/dev-util/dejagnu/Manifest
index 6e9e55a95e0..b6e3be396f5 100644
--- a/dev-util/dejagnu/Manifest
+++ b/dev-util/dejagnu/Manifest
@@ -1,2 +1,3 @@
 DIST dejagnu-1.4.4.tar.gz 1080346 SHA256 
d0fbedef20fb0843318d60551023631176b27ceb1e11de7468a971770d0e048d SHA512 
fae08d4801b6a815af8771896e6e5eb12b297b773faa89743eac28d08c7eac6ed7e530921acdba1b9a7903990060c520497d281651d29d98ab0def1dbfab392e
 WHIRLPOOL 
beddb08790591bd817b6096c8ee9f02e2b7e921420658eaebaadc2e1b806d5114632d3adea95d5e5814c4dedc542521582360a03d16f1cc5236052ccbbf149a4
 DIST dejagnu-1.5.tar.gz 576269 SHA256 
c8b45808357a6f3e32cd56d8b56a4fdf8a1d5f3818818045c2022993e0e8a3db SHA512 
a9486e28f7ce25c34b59d00c0e4862bbb4b7a01d8faae0d1f28669b9d3ded9ed233b892aa27c34e1d06911f071d894aba7c1469e2fd0bddaa5611c2383e4974f
 WHIRLPOOL 
3bc4b393f8f6185f8cce4afcb255a18d11342f14d29eed0e0fc2fd4baf106db707c520802c4913d9c2df3c3dba254c79e1da89e565fd9d5b768e7b4a2abe9912
+DIST dejagnu-1.6.tar.gz 523969 SHA256 
00b64a618e2b6b581b16eb9131ee80f721baa2669fa0cdee93c500d1a652d763 SHA512 
a494dd5cde8d275b397116049c93e183f5f1731d63660ee8d2f4263b099fc5be7fbddde927fab3ccd5f000c43d50242f94bbb4d95497b915ea53be418bc145bc
 WHIRLPOOL 
a6b681995462b631af3c545e71c37ee808e286b1b39bc500164ce3d52e0a247b166c6414576783f3f6172b7e70f9ca8b58ad5f7f1b88402b63fdbda633d8dc07

diff --git a/dev-util/dejagnu/dejagnu-1.6.ebuild 
b/dev-util/dejagnu/dejagnu-1.6.ebuild
new file mode 100644
index 000..6ea9754aa79
--- /dev/null
+++ b/dev-util/dejagnu/dejagnu-1.6.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Framework for testing other programs"
+HOMEPAGE="https://www.gnu.org/software/dejagnu/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x86-macos ~x86-solaris"
+IUSE="doc"
+
+DEPEND="dev-lang/tcl
+   dev-tcltk/expect"
+
+src_test() {
+   # if you dont have dejagnu emerged yet, you cant
+   # run the tests ... crazy aint it :)
+   type -p runtest || return 0
+   emake check
+}
+
+src_install() {
+   emake install DESTDIR="${D}"
+   dodoc AUTHORS ChangeLog NEWS README TODO
+   use doc && dodoc -r doc/html
+}



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

2017-06-22 Thread Sven Wegener
commit: 61a20a40e699b3421d1495116cad5b9a017a356f
Author: Louis Sautier  gmail  com>
AuthorDate: Wed Jun 21 22:37:13 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Thu Jun 22 20:36:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61a20a40

net-nntp/nzbget: update homepage

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

 net-nntp/nzbget/nzbget-17.1.ebuild | 4 ++--
 net-nntp/nzbget/nzbget-18.0_pre1865.ebuild | 2 +-
 net-nntp/nzbget/nzbget-19.0_pre1903.ebuild | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/net-nntp/nzbget/nzbget-17.1.ebuild 
b/net-nntp/nzbget/nzbget-17.1.ebuild
index 980f58c3644..964b5c5fc4d 100644
--- a/net-nntp/nzbget/nzbget-17.1.ebuild
+++ b/net-nntp/nzbget/nzbget-17.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ MY_PV=${PV/_pre/-r}
 MY_P=${PN}-${PV/_pre/-testing-r}
 
 DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
-HOMEPAGE="http://nzbget.net/;
+HOMEPAGE="https://nzbget.net/;
 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
 
 LICENSE="GPL-2+"

diff --git a/net-nntp/nzbget/nzbget-18.0_pre1865.ebuild 
b/net-nntp/nzbget/nzbget-18.0_pre1865.ebuild
index 8daca793594..c6d86f04383 100644
--- a/net-nntp/nzbget/nzbget-18.0_pre1865.ebuild
+++ b/net-nntp/nzbget/nzbget-18.0_pre1865.ebuild
@@ -9,7 +9,7 @@ MY_PV=${PV/_pre/-r}
 MY_P=${PN}-${PV/_pre/-testing-r}
 
 DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
-HOMEPAGE="http://nzbget.net/;
+HOMEPAGE="https://nzbget.net/;
 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
 
 LICENSE="GPL-2+"

diff --git a/net-nntp/nzbget/nzbget-19.0_pre1903.ebuild 
b/net-nntp/nzbget/nzbget-19.0_pre1903.ebuild
index 8daca793594..c6d86f04383 100644
--- a/net-nntp/nzbget/nzbget-19.0_pre1903.ebuild
+++ b/net-nntp/nzbget/nzbget-19.0_pre1903.ebuild
@@ -9,7 +9,7 @@ MY_PV=${PV/_pre/-r}
 MY_P=${PN}-${PV/_pre/-testing-r}
 
 DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
-HOMEPAGE="http://nzbget.net/;
+HOMEPAGE="https://nzbget.net/;
 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
 
 LICENSE="GPL-2+"



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

2017-06-22 Thread Sven Wegener
commit: 1c45fef9a1b804b28a913fb8322d247ecf1693a6
Author: Louis Sautier  gmail  com>
AuthorDate: Wed Jun 21 22:40:20 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Thu Jun 22 20:37:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c45fef9

net-nntp/nzbget: bump to 19.0_pre2021

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

 net-nntp/nzbget/Manifest   |   1 +
 net-nntp/nzbget/nzbget-19.0_pre2021.ebuild | 121 +
 2 files changed, 122 insertions(+)

diff --git a/net-nntp/nzbget/Manifest b/net-nntp/nzbget/Manifest
index cb1fc9a8236..9fc25a16c7b 100644
--- a/net-nntp/nzbget/Manifest
+++ b/net-nntp/nzbget/Manifest
@@ -3,3 +3,4 @@ DIST nzbget-17.1.tar.gz 1609931 SHA256 
4b3cf500d9bb6e9ab65b2c8451358e6c93af03681
 DIST nzbget-18.0_pre1865.tar.gz 1781151 SHA256 
5dba945d5d53cab4602b91d7e465524943fb762db05831c0d3b4c8c171f98add SHA512 
df114a424f896a57f80e205a6cf8be8d24eeecff8a4cce7febdb5f78ced9868f1fad7090c75901f8df2cff190382dd912457924d0fe8abc460825cbb31525530
 WHIRLPOOL 
e204ffbbe5bf92570a3bb2aee26cc2194bc458391ee0641d03be5c645a3689666255c4e28a788b0cbc43fa24d6e5586de55b88cb8e50d7881d58969cd36cebfb
 DIST nzbget-18.1.tar.gz 1784894 SHA256 
ddf7f9eda1cc4d6f01cd28a5ee4362ef7a399085cda45a82ffdf250d56393819 SHA512 
ef7749a024eee9639e2dbd50ab9d57996e7a95a81dd4b9b29b9fdc98a717b053ce43902e638b119d43a8826a83218ccfbd7a6bbd4ea50f3cbf4425ef06df141d
 WHIRLPOOL 
29e96393945d039e8572de4e1be50ab3cb2259d905db934923eb27ccfe1e30b88448e505243689d5e10b8a05f8bd159605fca464352315d6761eeffa4157e76d
 DIST nzbget-19.0_pre1903.tar.gz 1784803 SHA256 
ddb1ac3d90f6cef2cbc84c20e5505662836f32d6e4d9aa50b7b5b9778122d3e3 SHA512 
e03c2927ca07272c8179eb417cbc0b6b95a570aed52cab050914d5351754dd8114166f2837c39e621f819741a0b31e8d78c2fb200f1aeb9f31a963b14d430244
 WHIRLPOOL 
9b7ab22fafc61087d36a31a2ebc062476151ea30e1c337638bea3b79579e054bc060b6a0dac8cd5d036488993e7ea0551c94ec035754f772ecef707e50dbee91
+DIST nzbget-19.0_pre2021.tar.gz 1808479 SHA256 
8c4392e8582a12fa980f217b31183032e12010f4ca7ff324599839771e4f2582 SHA512 
a3c1a164267400fff55255fbda353648aa35fa9ebea2b909864706f3680f5767f8b35d80a176c7fbdde6a73f80d2645bb8a8a551742689a484a64c8337af8abf
 WHIRLPOOL 
1ee382145996867746449bf3c5d49502c81801d9d5d873bea8b2a6285ae4855fd028dff61212ff90d44f26c517e248178ce7337cf8b13607129317bdc759e919

diff --git a/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild 
b/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild
new file mode 100644
index 000..c6d86f04383
--- /dev/null
+++ b/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic user
+
+MY_PV=${PV/_pre/-r}
+MY_P=${PN}-${PV/_pre/-testing-r}
+
+DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
+HOMEPAGE="https://nzbget.net/;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE="debug gnutls ncurses parcheck ssl test zlib"
+
+RDEPEND="dev-libs/libxml2
+   ncurses? ( sys-libs/ncurses:0= )
+   ssl? (
+   gnutls? (
+   net-libs/gnutls:=
+   dev-libs/nettle:=
+   )
+   !gnutls? ( dev-libs/openssl:0= )
+   )
+   zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+DOCS=( ChangeLog README nzbget.conf )
+
+S=${WORKDIR}/${PN}-${PV/_pre*/-testing}
+
+check_compiler() {
+   if [[ ${MERGE_TYPE} != binary ]] && ! test-flag-CXX -std=c++14; then
+   eerror "${P} requires a C++14-capable compiler. Your current 
compiler"
+   eerror "does not seem to support the -std=c++14 option. Please"
+   eerror "upgrade to gcc-4.9 or an equivalent version supporting 
C++14."
+   die "The currently active compiler does not support -std=c++14"
+   fi
+}
+
+pkg_pretend() {
+   check_compiler
+}
+
+pkg_setup() {
+   check_compiler
+}
+
+src_prepare() {
+   default
+   eautoreconf
+
+   sed -i 's:^ScriptDir=.*:ScriptDir=/usr/share/nzbget/ppscripts:' 
nzbget.conf || die
+
+   sed \
+   -e 's:^MainDir=.*:MainDir=/var/lib/nzbget:' \
+   -e 's:^LockFile=.*:LockFile=/run/nzbget/nzbget.pid:' \
+   -e 's:^LogFile=.*:LogFile=/var/log/nzbget/nzbget.log:' \
+   -e 's:^WebDir=.*:WebDir=/usr/share/nzbget/webui:' \
+   -e 
's:^ConfigTemplate=.*:ConfigTemplate=/usr/share/nzbget/nzbget.conf:' \
+   -e 's:^DaemonUsername=.*:DaemonUsername=nzbget:' \
+   nzbget.conf > nzbgetd.conf || die
+}
+
+src_configure() {
+   econf \
+   $(use_enable debug) \
+   $(use_enable ncurses curses) \
+   $(use_enable parcheck) \
+   

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

2017-06-22 Thread Sven Wegener
commit: 6547a83cb3beee159bb18a1c63cc0d3b21d8be09
Author: Louis Sautier  gmail  com>
AuthorDate: Wed Jun 21 22:41:14 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Thu Jun 22 20:37:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6547a83c

net-nntp/nzbget: remove old

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

 net-nntp/nzbget/Manifest   |   2 -
 net-nntp/nzbget/nzbget-18.0_pre1865.ebuild | 121 -
 net-nntp/nzbget/nzbget-19.0_pre1903.ebuild | 121 -
 3 files changed, 244 deletions(-)

diff --git a/net-nntp/nzbget/Manifest b/net-nntp/nzbget/Manifest
index 9fc25a16c7b..45f5ec330d8 100644
--- a/net-nntp/nzbget/Manifest
+++ b/net-nntp/nzbget/Manifest
@@ -1,6 +1,4 @@
 DIST nzbget-14.1.tar.gz 1332334 SHA256 
a16b816b61f7035cc373e9b77094ca474d5b7b7f7ceff5fa8818249181db4b18 SHA512 
fae938529bb3968c0161f63ec3af07f844a8128b61abf6298457a4878ac0d47541d76730c8a068509fa091b102de07c9d28dcd668a8192fcfac60980f69be56d
 WHIRLPOOL 
9e9636b67d0af7780d2cc8f897465f5a2e23cd8695b3bd982e3e9f78d68adb34f84faf59253044c7b2f95db737cf59207b35cf312d1f1825fe4b9ecce2e4014f
 DIST nzbget-17.1.tar.gz 1609931 SHA256 
4b3cf500d9bb6e9ab65b2c8451358e6c93af0368176f193eebafca17d7209c39 SHA512 
5fde874b68423bb6d4cf63fc68aee0087b4d801a73a05124c1b3d0e883877cd58541191e58386e115b2664906f16e67f5f7d5a0ece93bf51f55ec1e7309b
 WHIRLPOOL 
bcae41e87e8cb6ce429dd065fe7904cc04b36da4435de43c3424afd1a37f3e5da55769d2684df368687fb8ee6d6f72ff80452c54a07ffa09fbe9918c7d40c167
-DIST nzbget-18.0_pre1865.tar.gz 1781151 SHA256 
5dba945d5d53cab4602b91d7e465524943fb762db05831c0d3b4c8c171f98add SHA512 
df114a424f896a57f80e205a6cf8be8d24eeecff8a4cce7febdb5f78ced9868f1fad7090c75901f8df2cff190382dd912457924d0fe8abc460825cbb31525530
 WHIRLPOOL 
e204ffbbe5bf92570a3bb2aee26cc2194bc458391ee0641d03be5c645a3689666255c4e28a788b0cbc43fa24d6e5586de55b88cb8e50d7881d58969cd36cebfb
 DIST nzbget-18.1.tar.gz 1784894 SHA256 
ddf7f9eda1cc4d6f01cd28a5ee4362ef7a399085cda45a82ffdf250d56393819 SHA512 
ef7749a024eee9639e2dbd50ab9d57996e7a95a81dd4b9b29b9fdc98a717b053ce43902e638b119d43a8826a83218ccfbd7a6bbd4ea50f3cbf4425ef06df141d
 WHIRLPOOL 
29e96393945d039e8572de4e1be50ab3cb2259d905db934923eb27ccfe1e30b88448e505243689d5e10b8a05f8bd159605fca464352315d6761eeffa4157e76d
-DIST nzbget-19.0_pre1903.tar.gz 1784803 SHA256 
ddb1ac3d90f6cef2cbc84c20e5505662836f32d6e4d9aa50b7b5b9778122d3e3 SHA512 
e03c2927ca07272c8179eb417cbc0b6b95a570aed52cab050914d5351754dd8114166f2837c39e621f819741a0b31e8d78c2fb200f1aeb9f31a963b14d430244
 WHIRLPOOL 
9b7ab22fafc61087d36a31a2ebc062476151ea30e1c337638bea3b79579e054bc060b6a0dac8cd5d036488993e7ea0551c94ec035754f772ecef707e50dbee91
 DIST nzbget-19.0_pre2021.tar.gz 1808479 SHA256 
8c4392e8582a12fa980f217b31183032e12010f4ca7ff324599839771e4f2582 SHA512 
a3c1a164267400fff55255fbda353648aa35fa9ebea2b909864706f3680f5767f8b35d80a176c7fbdde6a73f80d2645bb8a8a551742689a484a64c8337af8abf
 WHIRLPOOL 
1ee382145996867746449bf3c5d49502c81801d9d5d873bea8b2a6285ae4855fd028dff61212ff90d44f26c517e248178ce7337cf8b13607129317bdc759e919

diff --git a/net-nntp/nzbget/nzbget-18.0_pre1865.ebuild 
b/net-nntp/nzbget/nzbget-18.0_pre1865.ebuild
deleted file mode 100644
index c6d86f04383..000
--- a/net-nntp/nzbget/nzbget-18.0_pre1865.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools eutils flag-o-matic user
-
-MY_PV=${PV/_pre/-r}
-MY_P=${PN}-${PV/_pre/-testing-r}
-
-DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
-HOMEPAGE="https://nzbget.net/;
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
-IUSE="debug gnutls ncurses parcheck ssl test zlib"
-
-RDEPEND="dev-libs/libxml2
-   ncurses? ( sys-libs/ncurses:0= )
-   ssl? (
-   gnutls? (
-   net-libs/gnutls:=
-   dev-libs/nettle:=
-   )
-   !gnutls? ( dev-libs/openssl:0= )
-   )
-   zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-DOCS=( ChangeLog README nzbget.conf )
-
-S=${WORKDIR}/${PN}-${PV/_pre*/-testing}
-
-check_compiler() {
-   if [[ ${MERGE_TYPE} != binary ]] && ! test-flag-CXX -std=c++14; then
-   eerror "${P} requires a C++14-capable compiler. Your current 
compiler"
-   eerror "does not seem to support the -std=c++14 option. Please"
-   eerror "upgrade to gcc-4.9 or an equivalent version supporting 
C++14."
-   die "The currently active compiler does not support -std=c++14"
-   fi
-}
-
-pkg_pretend() {
-   check_compiler
-}
-
-pkg_setup() {
-   check_compiler
-}
-
-src_prepare() {
-   default
-   eautoreconf
-

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

2017-06-22 Thread Sven Wegener
commit: 30c360b4cf84195a9f15ee1d4610aa3929f0c08f
Author: Louis Sautier  gmail  com>
AuthorDate: Wed Jun 21 22:39:43 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Thu Jun 22 20:36:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30c360b4

net-nntp/nzbget: bump to 18.1

Gentoo-Bug: 622168
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4967

 net-nntp/nzbget/Manifest   |   1 +
 net-nntp/nzbget/nzbget-18.1.ebuild | 121 +
 2 files changed, 122 insertions(+)

diff --git a/net-nntp/nzbget/Manifest b/net-nntp/nzbget/Manifest
index 16f45509cb2..cb1fc9a8236 100644
--- a/net-nntp/nzbget/Manifest
+++ b/net-nntp/nzbget/Manifest
@@ -1,4 +1,5 @@
 DIST nzbget-14.1.tar.gz 1332334 SHA256 
a16b816b61f7035cc373e9b77094ca474d5b7b7f7ceff5fa8818249181db4b18 SHA512 
fae938529bb3968c0161f63ec3af07f844a8128b61abf6298457a4878ac0d47541d76730c8a068509fa091b102de07c9d28dcd668a8192fcfac60980f69be56d
 WHIRLPOOL 
9e9636b67d0af7780d2cc8f897465f5a2e23cd8695b3bd982e3e9f78d68adb34f84faf59253044c7b2f95db737cf59207b35cf312d1f1825fe4b9ecce2e4014f
 DIST nzbget-17.1.tar.gz 1609931 SHA256 
4b3cf500d9bb6e9ab65b2c8451358e6c93af0368176f193eebafca17d7209c39 SHA512 
5fde874b68423bb6d4cf63fc68aee0087b4d801a73a05124c1b3d0e883877cd58541191e58386e115b2664906f16e67f5f7d5a0ece93bf51f55ec1e7309b
 WHIRLPOOL 
bcae41e87e8cb6ce429dd065fe7904cc04b36da4435de43c3424afd1a37f3e5da55769d2684df368687fb8ee6d6f72ff80452c54a07ffa09fbe9918c7d40c167
 DIST nzbget-18.0_pre1865.tar.gz 1781151 SHA256 
5dba945d5d53cab4602b91d7e465524943fb762db05831c0d3b4c8c171f98add SHA512 
df114a424f896a57f80e205a6cf8be8d24eeecff8a4cce7febdb5f78ced9868f1fad7090c75901f8df2cff190382dd912457924d0fe8abc460825cbb31525530
 WHIRLPOOL 
e204ffbbe5bf92570a3bb2aee26cc2194bc458391ee0641d03be5c645a3689666255c4e28a788b0cbc43fa24d6e5586de55b88cb8e50d7881d58969cd36cebfb
+DIST nzbget-18.1.tar.gz 1784894 SHA256 
ddf7f9eda1cc4d6f01cd28a5ee4362ef7a399085cda45a82ffdf250d56393819 SHA512 
ef7749a024eee9639e2dbd50ab9d57996e7a95a81dd4b9b29b9fdc98a717b053ce43902e638b119d43a8826a83218ccfbd7a6bbd4ea50f3cbf4425ef06df141d
 WHIRLPOOL 
29e96393945d039e8572de4e1be50ab3cb2259d905db934923eb27ccfe1e30b88448e505243689d5e10b8a05f8bd159605fca464352315d6761eeffa4157e76d
 DIST nzbget-19.0_pre1903.tar.gz 1784803 SHA256 
ddb1ac3d90f6cef2cbc84c20e5505662836f32d6e4d9aa50b7b5b9778122d3e3 SHA512 
e03c2927ca07272c8179eb417cbc0b6b95a570aed52cab050914d5351754dd8114166f2837c39e621f819741a0b31e8d78c2fb200f1aeb9f31a963b14d430244
 WHIRLPOOL 
9b7ab22fafc61087d36a31a2ebc062476151ea30e1c337638bea3b79579e054bc060b6a0dac8cd5d036488993e7ea0551c94ec035754f772ecef707e50dbee91

diff --git a/net-nntp/nzbget/nzbget-18.1.ebuild 
b/net-nntp/nzbget/nzbget-18.1.ebuild
new file mode 100644
index 000..c6d86f04383
--- /dev/null
+++ b/net-nntp/nzbget/nzbget-18.1.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils flag-o-matic user
+
+MY_PV=${PV/_pre/-r}
+MY_P=${PN}-${PV/_pre/-testing-r}
+
+DESCRIPTION="A command-line based binary newsgrabber supporting .nzb files"
+HOMEPAGE="https://nzbget.net/;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${MY_PV}/${MY_P}-src.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86"
+IUSE="debug gnutls ncurses parcheck ssl test zlib"
+
+RDEPEND="dev-libs/libxml2
+   ncurses? ( sys-libs/ncurses:0= )
+   ssl? (
+   gnutls? (
+   net-libs/gnutls:=
+   dev-libs/nettle:=
+   )
+   !gnutls? ( dev-libs/openssl:0= )
+   )
+   zlib? ( sys-libs/zlib )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+DOCS=( ChangeLog README nzbget.conf )
+
+S=${WORKDIR}/${PN}-${PV/_pre*/-testing}
+
+check_compiler() {
+   if [[ ${MERGE_TYPE} != binary ]] && ! test-flag-CXX -std=c++14; then
+   eerror "${P} requires a C++14-capable compiler. Your current 
compiler"
+   eerror "does not seem to support the -std=c++14 option. Please"
+   eerror "upgrade to gcc-4.9 or an equivalent version supporting 
C++14."
+   die "The currently active compiler does not support -std=c++14"
+   fi
+}
+
+pkg_pretend() {
+   check_compiler
+}
+
+pkg_setup() {
+   check_compiler
+}
+
+src_prepare() {
+   default
+   eautoreconf
+
+   sed -i 's:^ScriptDir=.*:ScriptDir=/usr/share/nzbget/ppscripts:' 
nzbget.conf || die
+
+   sed \
+   -e 's:^MainDir=.*:MainDir=/var/lib/nzbget:' \
+   -e 's:^LockFile=.*:LockFile=/run/nzbget/nzbget.pid:' \
+   -e 's:^LogFile=.*:LogFile=/var/log/nzbget/nzbget.log:' \
+   -e 's:^WebDir=.*:WebDir=/usr/share/nzbget/webui:' \
+   -e 
's:^ConfigTemplate=.*:ConfigTemplate=/usr/share/nzbget/nzbget.conf:' \
+ 

[gentoo-commits] repo/gentoo:master commit in: dev-ada/xmlada/files/, dev-ada/xmlada/

2017-06-22 Thread Alfredo Tupone
commit: 2fffa1c734df3707050d0650cdde74e43666f76c
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Thu Jun 22 20:04:35 2017 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Jun 22 20:04:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fffa1c7

dev-ada/xmlada: Build using the compiler associated to gprbuild

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-ada/xmlada/files/xmlada-2016-gentoo.patch | 10 --
 dev-ada/xmlada/files/xmlada-2017-gentoo.patch | 10 --
 dev-ada/xmlada/xmlada-2017.ebuild |  2 --
 3 files changed, 22 deletions(-)

diff --git a/dev-ada/xmlada/files/xmlada-2016-gentoo.patch 
b/dev-ada/xmlada/files/xmlada-2016-gentoo.patch
index 820fa526edc..7c28a02289f 100644
--- a/dev-ada/xmlada/files/xmlada-2016-gentoo.patch
+++ b/dev-ada/xmlada/files/xmlada-2016-gentoo.patch
@@ -17,13 +17,3 @@
  
  # Rebuild the tests (and not the XML/Ada code itself)
  test: force
 xmlada-gpl-2016-src/shared.gpr.in.old  2017-06-20 21:22:08.312775803 
+0200
-+++ xmlada-gpl-2016-src/shared.gpr.in  2017-06-20 21:22:47.486201843 +0200
-@@ -76,6 +76,7 @@
-  when "profile" =>
- for Switches ("Ada") use warnings & ("-g", "-pg");
-   end case;
-+  for Driver ("Ada") use External ("ADA", "gcc");
-end compiler;
- 
-package binder is

diff --git a/dev-ada/xmlada/files/xmlada-2017-gentoo.patch 
b/dev-ada/xmlada/files/xmlada-2017-gentoo.patch
deleted file mode 100644
index cdf5da8bb5f..000
--- a/dev-ada/xmlada/files/xmlada-2017-gentoo.patch
+++ /dev/null
@@ -1,10 +0,0 @@
 xmlada-gpl-2016-src/shared.gpr.in.old  2017-06-20 21:22:08.312775803 
+0200
-+++ xmlada-gpl-2016-src/shared.gpr.in  2017-06-20 21:22:47.486201843 +0200
-@@ -76,6 +76,7 @@
-  when "profile" =>
- for Switches ("Ada") use warnings & ("-g", "-pg");
-   end case;
-+  for Driver ("Ada") use External ("ADA", "gcc");
-end compiler;
- 
-package binder is

diff --git a/dev-ada/xmlada/xmlada-2017.ebuild 
b/dev-ada/xmlada/xmlada-2017.ebuild
index 0b67a93ace6..08f0beb233e 100644
--- a/dev-ada/xmlada/xmlada-2017.ebuild
+++ b/dev-ada/xmlada/xmlada-2017.ebuild
@@ -24,8 +24,6 @@ DEPEND="${RDEPEND}
 
 S="${WORKDIR}"/${MYP}-src
 
-PATCHES=( "${FILESDIR}"/${P}-gentoo.patch )
-
 src_configure () {
econf --prefix="${D}"/usr
 }



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gprbuild/, dev-ada/gprbuild/files/

2017-06-22 Thread Alfredo Tupone
commit: e9989d791181545303167f7629934981ff99da4f
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Thu Jun 22 20:02:02 2017 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Jun 22 20:02:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9989d79

dev-ada/gprbuild: Add build tool instruction to gprbuild-2016

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-ada/gprbuild/files/gprbuild-2016.xml | 94 
 dev-ada/gprbuild/gprbuild-2016.ebuild| 11 +++-
 2 files changed, 104 insertions(+), 1 deletion(-)

diff --git a/dev-ada/gprbuild/files/gprbuild-2016.xml 
b/dev-ada/gprbuild/files/gprbuild-2016.xml
new file mode 100644
index 000..7d321e03b6a
--- /dev/null
+++ b/dev-ada/gprbuild/files/gprbuild-2016.xml
@@ -0,0 +1,94 @@
+
+
+  
+GNAT-@VER@
+gnatmake-@VER@
+
+  ${PREFIX}gnatls-@VER@ -v --version
+  
+
+Ada
+
+  ${PREFIX}gcc-@VER@ -v
+  
+
+
+   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/adalib/
+   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/ada_object_path
+   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/rts-(.*)/adalib/
+   \.\./$TARGET/lib/gnat/(.*)/adalib/
+
+
+  ${PREFIX}gcc-@VER@ -dumpmachine
+  
+
+  
+
+  
+
+  
+
+   
+   package Naming is
+  for Spec_Suffix ("Ada") use ".ads";
+  for Body_Suffix ("Ada") use ".adb";
+  for Casing use "lowercase";
+  for Dot_Replacement use "-";
+   end Naming;
+
+   package Compiler is
+  for Driver   ("Ada") use 
"${PATH(ada)}${PREFIX(ada)}gcc-@VER@";
+  for Language_Kind("Ada") use "unit_based";
+  for Dependency_Kind  ("Ada") use "ALI_File";
+  for Leading_Required_Switches("Ada") use
+ ("-c", "-x", "ada", "-gnatA")
+  Compiler'Leading_Required_Switches ("Ada");
+  for Mapping_File_Switches("Ada") use ("-gnatem=");
+  for Mapping_Spec_Suffix  ("Ada") use "%s";
+  for Mapping_Body_Suffix  ("Ada") use "%b";
+  for Config_File_Switches ("Ada") use ("-gnatec=");
+  for Include_Path_File ("Ada") use "ADA_PRJ_INCLUDE_FILE";
+  for Multi_Unit_Switches ("Ada") use ("-gnateI");
+  for Multi_Unit_Object_Separator ("Ada") use "~";
+  for Config_Body_File_Name ("Ada") use
+   "pragma Source_File_Name_Project (%u, Body_File_Name => ""%f"");";
+  for Config_Spec_File_Name ("Ada") use
+   "pragma Source_File_Name_Project (%u, Spec_File_Name => ""%f"");";
+  for Config_Body_File_Name_Index ("Ada") use
+   "pragma Source_File_Name_Project (%u, Body_File_Name => ""%f"", 
Index => %i);";
+  for Config_Spec_File_Name_Index ("Ada") use
+   "pragma Source_File_Name_Project (%u, Spec_File_Name => ""%f"", 
Index => %i);";
+  for Config_Body_File_Name_Pattern ("Ada") use
+   "pragma Source_File_Name_Project " 
+   "  (Body_File_Name  => ""*%b""," 
+   "   Casing  => %c," 
+   "   Dot_Replacement => ""%d"");";
+  for Config_Spec_File_Name_Pattern ("Ada") use
+   "pragma Source_File_Name_Project " 
+   "  (Spec_File_Name  => ""*%s""," 
+   "   Casing  => %c," 
+   "   Dot_Replacement => ""%d"");";
+  for Config_File_Unique("Ada") use "False";
+  for PIC_Option  ("Ada") use ("-fPIC");
+   end Compiler;
+
+   package Binder is
+  for Objects_Path_File ("Ada") use "ADA_PRJ_OBJECTS_FILE";
+  for Driver ("Ada") use
+  "${GPRCONFIG_PREFIX}libexec/gprbuild/gprbind";
+  for Switches ("Ada") use ("--gnatbind_path=gnatbind-@VER@");
+   end Binder;
+
+   package Clean is
+  for Source_Artifact_Extensions ("Ada")
+ use (".dg", ".rep", ".stdout", ".stderr");
+  for Object_Artifact_Extensions ("Ada") use (".s", ".ci", ".gcno");
+   end Clean;
+
+   for Toolchain_Version ("Ada") use "GNAT ${VERSION(ada)}";
+   for Runtime_Library_Dir   ("Ada") use "${RUNTIME_DIR(ada)}/adalib/";
+   for Runtime_Source_Dirs   ("Ada") use ("${RUNTIME_DIR(ada)}/adainclude/");
+   for Library_Encapsulated_Supported use "true";
+   
+  
+

diff --git a/dev-ada/gprbuild/gprbuild-2016.ebuild 
b/dev-ada/gprbuild/gprbuild-2016.ebuild
index a3691ac46ff..c880ef95b51 100644
--- a/dev-ada/gprbuild/gprbuild-2016.ebuild
+++ b/dev-ada/gprbuild/gprbuild-2016.ebuild
@@ -41,6 +41,13 @@ pkg_setup() {
fi
 }
 
+src_prepare() {
+   gnatbase=$(basename ${GCC})
+   GCC_PV=${gnatbase#*gcc-}
+   sed -e "s:@VER@:${GCC_PV}:g" "${FILESDIR}"/${P}.xml > gnat-${GCC_PV}.xml
+   default
+}
+
 src_configure() {
if ! use bootstrap ; then
default
@@ -78,9 +85,9 @@ src_compile() {
 src_install() {
if use bootstrap; then
dobin ${bin_progs}
-   insinto /usr/share/gprconfig
exeinto /usr/libexec/gprbuild
doexe ${lib_progs}
+

[gentoo-commits] repo/gentoo:master commit in: dev-lang/gnat-gpl/files/, dev-lang/gnat-gpl/

2017-06-22 Thread Alfredo Tupone
commit: 27440b1aa409e5471622a0ad0bbebbf97e7f79c8
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Thu Jun 22 19:59:41 2017 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Thu Jun 22 19:59:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27440b1a

dev-lang/gnat-gpl: Remove tool description file (to be put on gprbuild)

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-lang/gnat-gpl/files/gnat-gpl.xml   | 94 --
 dev-lang/gnat-gpl/gnat-gpl-2016.ebuild |  4 --
 dev-lang/gnat-gpl/gnat-gpl-2017.ebuild |  4 --
 3 files changed, 102 deletions(-)

diff --git a/dev-lang/gnat-gpl/files/gnat-gpl.xml 
b/dev-lang/gnat-gpl/files/gnat-gpl.xml
deleted file mode 100644
index 7d321e03b6a..000
--- a/dev-lang/gnat-gpl/files/gnat-gpl.xml
+++ /dev/null
@@ -1,94 +0,0 @@
-
-
-  
-GNAT-@VER@
-gnatmake-@VER@
-
-  ${PREFIX}gnatls-@VER@ -v --version
-  
-
-Ada
-
-  ${PREFIX}gcc-@VER@ -v
-  
-
-
-   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/adalib/
-   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/ada_object_path
-   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/rts-(.*)/adalib/
-   \.\./$TARGET/lib/gnat/(.*)/adalib/
-
-
-  ${PREFIX}gcc-@VER@ -dumpmachine
-  
-
-  
-
-  
-
-  
-
-   
-   package Naming is
-  for Spec_Suffix ("Ada") use ".ads";
-  for Body_Suffix ("Ada") use ".adb";
-  for Casing use "lowercase";
-  for Dot_Replacement use "-";
-   end Naming;
-
-   package Compiler is
-  for Driver   ("Ada") use 
"${PATH(ada)}${PREFIX(ada)}gcc-@VER@";
-  for Language_Kind("Ada") use "unit_based";
-  for Dependency_Kind  ("Ada") use "ALI_File";
-  for Leading_Required_Switches("Ada") use
- ("-c", "-x", "ada", "-gnatA")
-  Compiler'Leading_Required_Switches ("Ada");
-  for Mapping_File_Switches("Ada") use ("-gnatem=");
-  for Mapping_Spec_Suffix  ("Ada") use "%s";
-  for Mapping_Body_Suffix  ("Ada") use "%b";
-  for Config_File_Switches ("Ada") use ("-gnatec=");
-  for Include_Path_File ("Ada") use "ADA_PRJ_INCLUDE_FILE";
-  for Multi_Unit_Switches ("Ada") use ("-gnateI");
-  for Multi_Unit_Object_Separator ("Ada") use "~";
-  for Config_Body_File_Name ("Ada") use
-   "pragma Source_File_Name_Project (%u, Body_File_Name => ""%f"");";
-  for Config_Spec_File_Name ("Ada") use
-   "pragma Source_File_Name_Project (%u, Spec_File_Name => ""%f"");";
-  for Config_Body_File_Name_Index ("Ada") use
-   "pragma Source_File_Name_Project (%u, Body_File_Name => ""%f"", 
Index => %i);";
-  for Config_Spec_File_Name_Index ("Ada") use
-   "pragma Source_File_Name_Project (%u, Spec_File_Name => ""%f"", 
Index => %i);";
-  for Config_Body_File_Name_Pattern ("Ada") use
-   "pragma Source_File_Name_Project " 
-   "  (Body_File_Name  => ""*%b""," 
-   "   Casing  => %c," 
-   "   Dot_Replacement => ""%d"");";
-  for Config_Spec_File_Name_Pattern ("Ada") use
-   "pragma Source_File_Name_Project " 
-   "  (Spec_File_Name  => ""*%s""," 
-   "   Casing  => %c," 
-   "   Dot_Replacement => ""%d"");";
-  for Config_File_Unique("Ada") use "False";
-  for PIC_Option  ("Ada") use ("-fPIC");
-   end Compiler;
-
-   package Binder is
-  for Objects_Path_File ("Ada") use "ADA_PRJ_OBJECTS_FILE";
-  for Driver ("Ada") use
-  "${GPRCONFIG_PREFIX}libexec/gprbuild/gprbind";
-  for Switches ("Ada") use ("--gnatbind_path=gnatbind-@VER@");
-   end Binder;
-
-   package Clean is
-  for Source_Artifact_Extensions ("Ada")
- use (".dg", ".rep", ".stdout", ".stderr");
-  for Object_Artifact_Extensions ("Ada") use (".s", ".ci", ".gcno");
-   end Clean;
-
-   for Toolchain_Version ("Ada") use "GNAT ${VERSION(ada)}";
-   for Runtime_Library_Dir   ("Ada") use "${RUNTIME_DIR(ada)}/adalib/";
-   for Runtime_Source_Dirs   ("Ada") use ("${RUNTIME_DIR(ada)}/adainclude/");
-   for Library_Encapsulated_Supported use "true";
-   
-  
-

diff --git a/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild 
b/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild
index 5f8e52f2347..8ad45cb76a1 100644
--- a/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild
+++ b/dev-lang/gnat-gpl/gnat-gpl-2016.ebuild
@@ -94,8 +94,6 @@ src_unpack() {
 }
 
 src_prepare() {
-   sed -e "s:@VER@:${TOOLCHAIN_GCC_PV}:g" "${FILESDIR}"/${PN}.xml > 
${P}.xml
-
mv ../gnat-gpl-${PV}-src/src/ada gcc/ || die
mv ../gcc-interface-${REL}-gpl-${PV}-src gcc/ada/gcc-interface || die
 
@@ -153,8 +151,6 @@ src_compile() {
 }
 
 src_install() {
-   insinto /usr/share/gprconfig
-   doins ${P}.xml
toolchain_src_install
cd "${D}"${BINPATH}
for x in gnat*; do

diff --git a/dev-lang/gnat-gpl/gnat-gpl-2017.ebuild 

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

2017-06-22 Thread Alexis Ballier
commit: 47629bcd377fa7ce6c03bd6768d18cae122afc51
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 19:11:45 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 19:11:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47629bcd

media-libs/zvbi: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/media-libs/zvbi/zvbi-0.2.35-r1.ebuild 
b/media-libs/zvbi/zvbi-0.2.35-r1.ebuild
index 02b94b7885b..3f634ef235c 100644
--- a/media-libs/zvbi/zvbi-0.2.35-r1.ebuild
+++ b/media-libs/zvbi/zvbi-0.2.35-r1.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://zapping.sourceforge.net;
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE="doc dvb nls static-libs v4l X"
 
 RDEPEND=">=media-libs/libpng-1.5.18:0=[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: sys-boot/grub/

2017-06-22 Thread Mike Gilbert
commit: dc39d7b692b39fa398f71b71a6f37b331ccc138f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Jun 22 18:31:12 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Jun 22 18:31:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc39d7b6

sys-boot/grub: remove old

Package-Manager: Portage-2.3.6_p9, Repoman-2.3.2_p77

 sys-boot/grub/Manifest  |   9 -
 sys-boot/grub/grub-2.02_beta2-r9.ebuild | 323 
 sys-boot/grub/grub-2.02_beta3-r1.ebuild | 291 
 sys-boot/grub/grub-2.02_rc1.ebuild  | 284 
 sys-boot/grub/grub-2.02_rc2.ebuild  | 298 -
 5 files changed, 1205 deletions(-)

diff --git a/sys-boot/grub/Manifest b/sys-boot/grub/Manifest
index 029dcd6b340..32b751da264 100644
--- a/sys-boot/grub/Manifest
+++ b/sys-boot/grub/Manifest
@@ -1,15 +1,6 @@
-DIST dejavu-sans-ttf-2.34.zip 406977 SHA256 
242e8c1cb2bdc7458bece02cca898f962c2bc919dcf67d97428149228290184d SHA512 
dcd802b9c83cfa749b7542d0855eb1facb665a035af8c05f58830fce3ce37ba8d4a6f0353c07ae924c7fc25460d330b7312cbaffd34a2cb314a8e222de385c1b
 WHIRLPOOL 
d8b3289997cc39aca1c909ac1cae79727a19932f07b116a4a0bcc83e4a2f136d05d18c8ef2b05504a2f1f65eba85f93d61d52b0c913be7bb3e23f6a403eb6a82
-DIST dejavu-sans-ttf-2.35.zip 415463 SHA256 
c629bce270e75b6234d5285a739cd186bebc27319993f4b1ea6beb3631810799 SHA512 
23c24218da70b3a93fa8c72e8db972b2b881bf3f76056a9315e29162743a8edaf5b699e0a527de121ca5f9efe07243eaf15811db355dba8cca1b92bdd1210732
 WHIRLPOOL 
e3436818e11dab0330bff1a129d1e6fbf670b06a362b353f7bd00388cf46790bde202f1f7dd67b03ad7f9ae7d76098a5a72bc5321f359c2138c4d42c0cebc2aa
 DIST dejavu-sans-ttf-2.37.zip 417746 SHA256 
5c6e497a2f36552cb5ffb112c413a6af39c0f3c47653662b90b4fa6499822fd7 SHA512 
ede5899daa1984c5aa8cacb1c850eb53f189dddef3d9bb78bf9774d8976b7c0d6eb0bcf86237cd7d11f5b36cf5b5058d42cd94d3bd76f2bd0931c7ceb1271fae
 WHIRLPOOL 
6f19280e76ea3efe265db09236e94bdd00268c5d8742c191100b8eb19faa532289fb03d838e33aa3c501d8a3243db248648af8929d5d5dba1bfd2ea2c10358cd
 DIST grub-0.97-patches-1.14.tar.bz2 52916 SHA256 
5c7ca31fd9b2123471daf2e46a1936c4044ad0c12e353d9d3d8c3f83a1c7a0e5 SHA512 
d9a8d420fd5a36f181ca608f9b70be90f9d82cee66c8484636fda5085290586071b5d9379d917e8141b993ffc4777859cd02971c916d6167dca6f50d83282c26
 WHIRLPOOL 
60abd5087e85d9969784b9f5a100934606a76da03b665533d9d4d1d13f4e2d15de233a71e67a32d18a5fbfe128c2c8bf04c0d4451de24e6ca4fbd8dd862e23ea
 DIST grub-0.97.tar.gz 971783 SHA256 
4e1d15d12dbd3e9208111d6b806ad5a9857ca8850c47877d36575b904559260b SHA512 
c2bc9ffc8583aeae71cee9ddcc4418969768d4e3764d47307da54f93981c0109fb07d84b061b3a3628bd00ba4d14a54742bc04848110eb3ae8ca25dbfbaabadb
 WHIRLPOOL 
0ad7f5dc035e2a3ad5fd29b6388f06fd12a8cc694117b4cbd42b5302433aa522db23566222d35219fe17fb95edb5090553156198507f70208eda5d858fd52dd5
 DIST grub-2.02.tar.xz 6113260 SHA256 
810b3798d316394f94096ec2797909dbf23c858e48f7b3830826b8daa06b7b0f SHA512 
cc6eb0a42b5c8df2f671cc128ff725afb3ff1f8832a196022e433cf0d3b75decfca2316d0aa5fabea75747d55e88f3d021dd93508563f8ca80fd7b9e7fe1f088
 WHIRLPOOL 
a7f5d786064642f926faa444b9db1555ccfbb460655f81a0ca408bc5ad2acfb89fe596f81d161078944ce1b2dc00e82e8fb056f050bf026fc07f6417af7b9776
-DIST grub-2.02_beta2-gentoo-r3.tar.xz 14532 SHA256 
78d14f27ed60458601021d13c247387dad324d4141ed46721e2e14f4a4fda990 SHA512 
b46390c217e9a1f9fccbefbc5aab062c228919b9b7b6f16effd9d292534c516a28747376d85d5db8b7f883cf7e8c2aa0ca6573e8ed2913aadabbc1cd795fc861
 WHIRLPOOL 
acb6d2e39e1670a4342e21e6d35ab390e36557512784a8ee0b5bda051ec5fb633061a28d2a2deab8c3d1961052db6c3870742ff866e292d8e4c0fd3c7a0acf45
-DIST grub-2.02~beta2.tar.xz 5798740 SHA256 
f6c702b2a8ea58f27a2b02928bb77973cb5a827af08f63db38c471c0a01b418d SHA512 
359903928febce1df53b3bd38aab701b4ea010dfad0dee434e853c865af4bbc60d115e61eac100c79f18d89aa78b2216ef20123f4ef04cc948ecbe226ea1a58c
 WHIRLPOOL 
f92e94f43888648484a972a0c82b0a2ac4dc7fbdd6e35ca8b11a6ee92168ac8cf7ee68987b84697ec46ad18189e5c5c9aee8105b91bb131cd7f6f499f45cd58f
-DIST grub-2.02~beta3.tar.xz 6030784 SHA256 
30ec3d555e52a702c3eef449872ef874eff28b320f40b55ffc47f70db8e5ada1 SHA512 
4a530efef4dae45f4046cf3550563f14acb24d25cb88d5e06c93953ca5b1eec115118c6860233a9f627edcddae2571e5d6b867b70ff9dd5c184c9fef83ef7e11
 WHIRLPOOL 
b1042c24060e35ea5a492b7258b147fde80c949c2e81dcff3a31750966b7d31cdb62e1492274843f313226d70b202a8edbf08d11c5e79e4173a4c373879e4aad
-DIST grub-2.02~rc1.tar.xz 6051964 SHA256 
445239e9b96d1143c194c1d37851cf4196b83701c60172e49665e9d453d80278 SHA512 
c55a91f43d3c065dc9303fc9ab164910432095a571e28082cbcae646b8b92212f85da22873af99a1a5d7c943c51e2f90837dd2c68abf87ff50bf2e5955877f39
 WHIRLPOOL 
7ae697d8de28f1e936e49662564900ce82402895a7d3d07c70879c68ed9765ac2e82a89a8d2da4cfb6ecf64cc04c61ff4b889283a2e8abad0c38d86d889a6317
-DIST grub-2.02~rc2.tar.xz 6055836 SHA256 
053bfcbe366733e4f5a1baf4eb15e1efd977225bdd323b78087ce5fa172fc246 SHA512 

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

2017-06-22 Thread Mike Gilbert
commit: 1dbef46d5b9a78045ef036bc9aaea913441b142a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Jun 22 18:06:12 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Jun 22 18:06:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dbef46d

www-client/chromium: beta channel bump (60.0.3112.40)

Package-Manager: Portage-2.3.6_p9, Repoman-2.3.2_p77

 www-client/chromium/Manifest   |  2 +-
 ...3112.24.ebuild => chromium-60.0.3112.40.ebuild} | 47 +++---
 2 files changed, 33 insertions(+), 16 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 13d421824d6..16c8a59f61d 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,5 +1,5 @@
 DIST chromium-59.0.3071.104.tar.xz 531895868 SHA256 
a949fa166cdcdbd8419fbdb4583804613d9845130f0c851e4c647d79a4c300d0 SHA512 
419cf5bafa80f190cd301c2933502351929c1ef1d5cfedc720ce6762674a0e6af3b4246a8f92e0c29743420338b056061d4e7f9f4a4066a5bdd4d2ee8db3ddbf
 WHIRLPOOL 
ab2fbd1beeb485a5c07743a5a84c850b5ad8178a1f97421a0aa0573817b474e633a6ac65ad43f7db67d35d257183ea4eceacd12b4cad63f88cd9777cfa498e68
-DIST chromium-60.0.3112.24.tar.xz 537341808 SHA256 
26a4ef3e94399d23c077197ea47d5aab5d9165a6aa7eb8d4d66167fc043f2a94 SHA512 
3abb8bd78f9235c69ae1372d939c215d582da00125ad26aa28e1c4dc2aef0b40e5cf593b6b0438bddcf9ef5928df0e44bed5e7b1a8752706704f4d71fae9353d
 WHIRLPOOL 
467e3b8c4ea95c7bb432c1a1e6557e570141d7503b98e6a9bd8d2bded1e83779747c5f01358c877378a438f198d0db104ccb2ad044dcc22ad3d39d99ad183769
 DIST chromium-60.0.3112.32.tar.xz 537426032 SHA256 
d972469bfc26a3d135a1863c22b88e23a9f00096841f6392dbb83b75ad0d17f1 SHA512 
625bac567f0717d1077ac77023c87bdd2ad1244d63c50ce6935bcb41b85aab4c06b05fda7e0f48cc7305c331080a350a16592adb37583c13736c97a55404d6ab
 WHIRLPOOL 
78af7bbf83466c044428f294209512c27ed649e746829df083edf8e8fc4eddb23618606ec8571bc4eb433a7d67e921236c562c2c175f3685017ef2576b3f7802
+DIST chromium-60.0.3112.40.tar.xz 537575476 SHA256 
4fdc590fc6ef4af16cc72d790b9eaa50829cd8193893a9ec0719481b03f328d3 SHA512 
0e121887f7158d47a9fdb7c0be43a0b1cb32d19a893f99cfc13e2ce146e553e6428fdd82815180bacb430eace42f8bf83595073cf449f49e963633e8414b07ef
 WHIRLPOOL 
b7b2b62f61c18ed77890383ba1ac2d25094e14c12042fa1b1af50fa1f8d69807673a036fdb54078622e92b32eb7211040fda3513cb079598e3caf1219c594631
 DIST chromium-61.0.3124.4.tar.xz 542178452 SHA256 
8976732d3fbbbfe188d79cb64169a5ceafe8e23351b8fb650cfd02fdfd74a83c SHA512 
6d690824376382774957c6eb0a35cb3bd443d3c501d7d5988d912dccd17da44e8e2bd5f9ac8b59d9381d7fbf67216e001dcf081591bd95c732018155f7b212f2
 WHIRLPOOL 
9a3720bb615a4f66cc77b5250dad50afb2301e076b1e0e334c0db770f420862051acac0bc68907ea1cc3f4b6a6edb108ea44f392b520c8ba916612f7eb7e54fa
 DIST chromium-61.0.3128.3.tar.xz 542407004 SHA256 
21b284c71cbd1df1302b3d41f813765c8265ba279a78455447a30ada710e9929 SHA512 
b5808dea9220182db2500f122b38e32707e285372e64031f5c5d238d82787172e44350e47bd2400ea267e8a857cd59f0db402ed2b542aa097afa4a797226e070
 WHIRLPOOL 
5eac6a151b7ce1634577e707ae2252a30549f13a029c95a73ec073b93022092dd7cac642060100d51fed01b594532526dddbda159a439bef0ca1b971d83bbd1a

diff --git a/www-client/chromium/chromium-60.0.3112.24.ebuild 
b/www-client/chromium/chromium-60.0.3112.40.ebuild
similarity index 95%
rename from www-client/chromium/chromium-60.0.3112.24.ebuild
rename to www-client/chromium/chromium-60.0.3112.40.ebuild
index b6eb7690264..e389e0e3174 100644
--- a/www-client/chromium/chromium-60.0.3112.24.ebuild
+++ b/www-client/chromium/chromium-60.0.3112.40.ebuild
@@ -331,6 +331,22 @@ src_prepare() {
build/linux/unbundle/remove_bundled_libraries.py "${keeplibs[@]}" 
--do-remove || die
 }
 
+bootstrap_gn() {
+   if tc-is-cross-compiler; then
+   local -x AR=${BUILD_AR}
+   local -x CC=${BUILD_CC}
+   local -x CXX=${BUILD_CXX}
+   local -x NM=${BUILD_NM}
+   local -x CFLAGS=${BUILD_CFLAGS}
+   local -x CXXFLAGS=${BUILD_CXXFLAGS}
+   local -x LDFLAGS=${BUILD_LDFLAGS}
+   fi
+   einfo "Building GN..."
+   set -- tools/gn/bootstrap/bootstrap.py -s -v --no-clean
+   echo "$@"
+   "$@" || die
+}
+
 src_configure() {
local myconf_gn=""
 
@@ -396,7 +412,6 @@ src_configure() {
 
if tc-is-clang; then
myconf_gn+=" is_clang=true clang_use_chrome_plugins=false"
-   myconf_gn+=" clang_base_path=\"$(realpath $(dirname `which 
clang`)/..)\""
else
myconf_gn+=" is_clang=false"
fi
@@ -423,16 +438,16 @@ src_configure() {
 
local myarch="$(tc-arch)"
if [[ $myarch = amd64 ]] ; then
-   target_arch=x64
+   myconf_gn+=" target_cpu=\"x64\""
ffmpeg_target_arch=x64
elif [[ $myarch = x86 ]] ; then
-   target_arch=ia32
+   myconf_gn+=" target_cpu=\"x86\""
ffmpeg_target_arch=ia32
elif [[ $myarch = 

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

2017-06-22 Thread Anthony G. Basile
commit: bb03e3f5d73b4a929bc97e2bc70f7cb0628de222
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jun 22 17:20:52 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jun 22 17:20:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb03e3f5

net-dns/c-ares: version bump to 1.13.0

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 net-dns/c-ares/Manifest |  1 +
 net-dns/c-ares/c-ares-1.13.0.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/net-dns/c-ares/Manifest b/net-dns/c-ares/Manifest
index c0136a63056..674fa7bd99e 100644
--- a/net-dns/c-ares/Manifest
+++ b/net-dns/c-ares/Manifest
@@ -1 +1,2 @@
 DIST c-ares-1.12.0.tar.gz 1769879 SHA256 
8692f9403cdcdf936130e045c84021665118ee9bfea905d1a76f04d4e6f365fb SHA512 
3da0fadb04eccab49b4e6eff3f087a392dd76238d47e74e2ede723883468da688e41f679ee8ca38613fc4f80d3bd7c29e69d3d6c711f988a02fd5d21a3ee1dc6
 WHIRLPOOL 
69d297213c6ca0988d3b7697d40443dabb3a9b4ceb65c357a3ec99ab2af7c0a7c669f2dc7f75833e0c8a661525ae4003be8109d2d5c1e90887b8349cd63a8d5c
+DIST c-ares-1.13.0.tar.gz 1446797 SHA256 
03f708f1b14a26ab26c38abd51137640cb444d3ec72380b21b20f1a8d2861da7 SHA512 
4a7942e754673f5b8d55a7471e31b0f390e8324b14c12077580c956147fad4d165c7fe8a3190199b1add95c710ceeb1a7957706d4f0d6299d39c5dddc719bd9d
 WHIRLPOOL 
02a398db6a1256aabb77e445be6131319f2f1f15327146fb3293033f7b6a15e499bead3d8ded022eb38f6509c76dc0981a3ce139e16132373540c21e7a313d89

diff --git a/net-dns/c-ares/c-ares-1.13.0.ebuild 
b/net-dns/c-ares/c-ares-1.13.0.ebuild
new file mode 100644
index 000..0953dcfdfbc
--- /dev/null
+++ b/net-dns/c-ares/c-ares-1.13.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools eutils multilib-minimal
+
+DESCRIPTION="C library that resolves names asynchronously"
+HOMEPAGE="http://c-ares.haxx.se/;
+SRC_URI="http://${PN}.haxx.se/download/${P}.tar.gz;
+
+LICENSE="MIT"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc64-solaris"
+IUSE="static-libs"
+
+# Subslot = SONAME of libcares.so.2
+SLOT="0/2"
+
+DOCS=( AUTHORS CHANGES NEWS README.md RELEASE-NOTES TODO )
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/ares_build.h
+)
+
+src_prepare() {
+   eapply "${FILESDIR}"/${PN}-1.12.0-remove-tests.patch
+   eapply_user
+   eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE=${S} \
+   econf \
+   --enable-nonblocking \
+   --enable-symbol-hiding \
+   $(use_enable static-libs static)
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   prune_libtool_files --all
+}



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

2017-06-22 Thread Anthony G. Basile
commit: 3c4a1bded9c142a01465f6e35040f44b3a8e8c88
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jun 22 17:00:44 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jun 22 17:00:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c4a1bde

net-misc/electrum: version bump to 2.8.3

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 net-misc/electrum/Manifest  |   1 +
 net-misc/electrum/electrum-2.8.3.ebuild | 161 
 2 files changed, 162 insertions(+)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index 02350cd61b6..20b9057eb2a 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -1,3 +1,4 @@
 DIST Electrum-2.7.15.tar.gz 1967697 SHA256 
1f237b394079ec5ced34ae09dc6b50472e51233dd1dfef580127168e293b9652 SHA512 
2f4f5181dcf0b98ce34348c296e50383b677db1fd14fa0052a0168a7c880d18d04ebb9a91dbb7316e09adeda275cc87b5457c8f0925b3635a1c769c81f31165c
 WHIRLPOOL 
b7a85fd9a4f7fdf5f64dc1182630b9d5b1bb033e49ebb00f1dd421d93c02f8fab8a0679de9a2fae074fdda5932fbfd261d5c8a2d6be3940821f18f82d46f2e28
 DIST Electrum-2.8.0.tar.gz 2241359 SHA256 
6343ae1732920734c45ebf899592c1c29123530ce027b4dcdd4a62e87663e9ef SHA512 
dcef8c84677ff6045ee00a7b26aac7ded00b54753737c32a0c9b8939647a8467769ba93be3ce6beecdc5030c94dc6647121681ce22e84f487b36ede6d0d69e1c
 WHIRLPOOL 
5f6f170306fa6c62e4fe4ebbfac1460b04e1a6606f1e3a2339b6d4284d9f884c2123f78401201511653402a3771b383fea7aed2b2c0fcb8b720472b80a4662a6
 DIST Electrum-2.8.2.tar.gz 2277689 SHA256 
d8152bebc5c6f47b28a5d867707bc5742158fe544e7e8046d2c4747ae282b707 SHA512 
4f4dd4b017e1b4ef3de311d840e9704e0169d4813f646296f99aa00afe39ea83c5b53b320fd31244dd2a67c320be1537b7132b54d775b7c1a9f1da54627ecf9d
 WHIRLPOOL 
bcd9ce9369dbe9d94c75e46429ba05968a51f4fdf8a6d2b67e27c981b13bf239fb7d290bf18227ed07e6704c3f292e10e5022dec95d7dc84fb5740d11acbf6d4
+DIST Electrum-2.8.3.tar.gz 2321524 SHA256 
c16ea6266f036a942efa1554ac138e2748a8050c78551da30995ffe6a9e25a12 SHA512 
40988667538eb2c8733f9cede52380cb3c9212efc0780e5c4665b93b55677f0705262216fafc7544c5c18e77621bac4828312b792acbb35ac6048f54b17877a9
 WHIRLPOOL 
8f197ab89674899ba8d0f41804c496cf851cd2c096f8f6b8c84ebd0c1da0a8e5e49f7b0d384a851f5509eda4273089b2fe26734ba23b05bfbf4234febc1fb05a

diff --git a/net-misc/electrum/electrum-2.8.3.ebuild 
b/net-misc/electrum/electrum-2.8.3.ebuild
new file mode 100644
index 000..d6fe7a859a4
--- /dev/null
+++ b/net-misc/electrum/electrum-2.8.3.ebuild
@@ -0,0 +1,161 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="ncurses?"
+
+inherit distutils-r1 gnome2-utils
+
+MY_P="Electrum-${PV}"
+DESCRIPTION="User friendly Bitcoin client"
+HOMEPAGE="https://electrum.org/;
+SRC_URI="https://download.electrum.org/${PV}/${MY_P}.tar.gz;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+LINGUAS="ar_SA bg_BG cs_CZ da_DK de_DE el_GR eo_UY es_ES fr_FR hu_HU hy_AM 
id_ID it_IT ja_JP ko_KR ky_KG lv_LV nb_NO nl_NL no_NO pl_PL pt_BR pt_PT ro_RO 
ru_RU sk_SK sl_SI ta_IN th_TH tr_TR vi_VN zh_CN"
+
+IUSE="audio_modem cli cosign digitalbitbox email greenaddress_it ncurses 
qrcode +qt4 sync trustedcoin_com vkb"
+
+for lingua in ${LINGUAS}; do
+   IUSE+=" linguas_${lingua}"
+done
+
+REQUIRED_USE="
+   || ( cli ncurses qt4 )
+   audio_modem? ( qt4 )
+   cosign? ( qt4 )
+   digitalbitbox? ( qt4 )
+   email? ( qt4 )
+   greenaddress_it? ( qt4 )
+   qrcode? ( qt4 )
+   sync? ( qt4 )
+   trustedcoin_com? ( qt4 )
+   vkb? ( qt4 )
+"
+
+RDEPEND="
+   dev-python/ecdsa[${PYTHON_USEDEP}]
+   dev-python/jsonrpclib[${PYTHON_USEDEP}]
+   dev-python/pbkdf2[${PYTHON_USEDEP}]
+   dev-python/pyaes[${PYTHON_USEDEP}]
+   dev-python/PySocks[${PYTHON_USEDEP}]
+   dev-python/qrcode[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/tlslite[${PYTHON_USEDEP}]
+   dev-libs/protobuf[python,${PYTHON_USEDEP}]
+   virtual/python-dnspython[${PYTHON_USEDEP}]
+   qrcode? ( media-gfx/zbar[python,v4l,${PYTHON_USEDEP}] )
+   qt4? (
+   dev-python/PyQt4[X,${PYTHON_USEDEP}]
+   )
+   ncurses? ( dev-lang/python )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+DOCS="RELEASE-NOTES"
+
+src_prepare() {
+   eapply "${FILESDIR}/2.8.0-no-user-root.patch"
+
+   # Don't advise using PIP
+   sed -i "s/On Linux, try 'sudo pip install zbar'/Re-emerge Electrum with 
the qrcode USE flag/" lib/qrscanner.py || die
+
+   # Prevent icon from being installed in the wrong location
+   sed -i '/icons/d' setup.py || die
+
+   # Remove unrequested localization files:
+   for lang in ${LINGUAS}; do
+   use "linguas_${lang}" && continue
+   rm -r "lib/locale/${lang}" || die
+   done
+
+   local 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/lwt/

2017-06-22 Thread Alexis Ballier
commit: 8b386b6b4a1338d82cd2e317329266eb6e1da588
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:13:00 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b386b6b

dev-ml/lwt: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/lwt/lwt-3.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/lwt/lwt-3.0.0.ebuild b/dev-ml/lwt/lwt-3.0.0.ebuild
index 64514dce6e0..c7d0d673ddb 100644
--- a/dev-ml/lwt/lwt-3.0.0.ebuild
+++ b/dev-ml/lwt/lwt-3.0.0.ebuild
@@ -28,7 +28,7 @@ DEPEND="${DEPEND}
 
 SLOT="0/${PV}"
 LICENSE="LGPL-2.1-with-linking-exception"
-KEYWORDS="~amd64 ~arm ~ppc ~x86-fbsd"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86-fbsd"
 
 DOCS=( "CHANGES" "README.md" )
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/parmap/

2017-06-22 Thread Alexis Ballier
commit: 838532e971a8a21403d631d7cb9d03d045cac3e7
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:51:20 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=838532e9

dev-ml/parmap: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/parmap/parmap-1.0_rc8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/parmap/parmap-1.0_rc8.ebuild 
b/dev-ml/parmap/parmap-1.0_rc8.ebuild
index fef21fd86c8..e56e50216e7 100644
--- a/dev-ml/parmap/parmap-1.0_rc8.ebuild
+++ b/dev-ml/parmap/parmap-1.0_rc8.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/rdicosmo/parmap/archive/${MY_PV}.tar.gz -> ${P}.tar.
 
 LICENSE="LGPL-2-with-linking-exception"
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND=">=dev-lang/ocaml-4.03:=[ocamlopt?]"



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ulex/

2017-06-22 Thread Alexis Ballier
commit: 2775f775b93291b866ff3e76e35aa885fc30a693
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:53:24 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2775f775

dev-ml/ulex: depend on ocamlbuild only now that old ocaml is gone

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ulex/ulex-1.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/ulex/ulex-1.1.ebuild b/dev-ml/ulex/ulex-1.1.ebuild
index f02989ff2fd..6b98ec8bd78 100644
--- a/dev-ml/ulex/ulex-1.1.ebuild
+++ b/dev-ml/ulex/ulex-1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -17,7 +17,7 @@ IUSE="+ocamlopt"
 RDEPEND=">=dev-lang/ocaml-3.10.2:=[ocamlopt?]
dev-ml/camlp4:="
 DEPEND="${RDEPEND}
-   || ( dev-ml/ocamlbuild 

[gentoo-commits] repo/gentoo:master commit in: dev-ml/js_of_ocaml/

2017-06-22 Thread Alexis Ballier
commit: 97deb89461d9abef0be98c0f185e3e1c80b287bf
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 13:47:38 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97deb894

dev-ml/js_of_ocaml: default enable previously mandatory flags

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild | 2 +-
 dev-ml/js_of_ocaml/js_of_ocaml-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild
index 3a44770cfb6..9fe8dff84ed 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild
@@ -20,7 +20,7 @@ fi
 
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
-IUSE="+ocamlopt camlp4 lwt doc +deriving +ppx +xml test"
+IUSE="+ocamlopt +camlp4 +lwt doc +deriving +ppx +xml test"
 
 RDEPEND="
>=dev-lang/ocaml-3.12:=[ocamlopt?]

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild
index 3a44770cfb6..9fe8dff84ed 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild
@@ -20,7 +20,7 @@ fi
 
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
-IUSE="+ocamlopt camlp4 lwt doc +deriving +ppx +xml test"
+IUSE="+ocamlopt +camlp4 +lwt doc +deriving +ppx +xml test"
 
 RDEPEND="
>=dev-lang/ocaml-3.12:=[ocamlopt?]



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

2017-06-22 Thread Alexis Ballier
commit: 252ab408d51a083073225aa239f6e0486eb96082
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 13:25:15 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=252ab408

app-text/gtkspell: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/gtkspell/gtkspell-2.0.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/gtkspell/gtkspell-2.0.16.ebuild 
b/app-text/gtkspell/gtkspell-2.0.16.ebuild
index d6b25bbcc90..fa7512b9378 100644
--- a/app-text/gtkspell/gtkspell-2.0.16.ebuild
+++ b/app-text/gtkspell/gtkspell-2.0.16.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://${PN}.sourceforge.net/download/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~x86-macos ~x86-solaris"
 IUSE=""
 
 RDEPEND="x11-libs/gtk+:2



[gentoo-commits] repo/gentoo:master commit in: dev-ml/js_of_ocaml/

2017-06-22 Thread Alexis Ballier
commit: 0dc5e83d174cd5271de5c6829ee987844a9eb886
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:46:29 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc5e83d

dev-ml/js_of_ocaml: bump to 3.0.0 and update live ebuild

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/js_of_ocaml/Manifest |  1 +
 dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild | 75 +
 dev-ml/js_of_ocaml/js_of_ocaml-.ebuild  | 72 +++
 dev-ml/js_of_ocaml/metadata.xml |  2 +
 4 files changed, 119 insertions(+), 31 deletions(-)

diff --git a/dev-ml/js_of_ocaml/Manifest b/dev-ml/js_of_ocaml/Manifest
index 6a21ead28e5..3790dbaf16c 100644
--- a/dev-ml/js_of_ocaml/Manifest
+++ b/dev-ml/js_of_ocaml/Manifest
@@ -1 +1,2 @@
 DIST js_of_ocaml-2.8.4.tar.gz 1344082 SHA256 
74edd38a964fcee930778a908c896b5c9795f64fc34a3c58361ccfa441811725 SHA512 
8dc65bac7d60f2d3534e31e0fddb061f1b97bfd8146b1a34b4a1a516574c6a39f66d115646aa9767b7e24a51ec76949b05841088601f97d76972c8899a50c4fd
 WHIRLPOOL 
bc444184519ae90d308ae4675078e1d5fd461ea32f4dccf5e74bab25f0a0e8ba49d229f951205effd676b337656633fb7046cd908c2167799253dcee0a61f20f
+DIST js_of_ocaml-3.0.0.tar.gz 1433377 SHA256 
eb49ca6d66ac51a41cf611f1a6a85269d310dbc1711ac4b819c9a04ee53b5a4e SHA512 
dc4bbbfdacb43338aa7f97b7012b6de8a2eac5d7c5f535ceb9565c477c961a212ce5b2a75b1719fcd9f2d57938ee2162f6f04d3364397a469d7a13d1fe4e3908
 WHIRLPOOL 
a43b35000af7714f571f0cf373b529883063194ff0a4b57a9bae9670b257ee38288a5b8f4caf19b9ee18fdceeea0a2f5fc0f45cd503ebfa1281b657115a54fc1

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild
new file mode 100644
index 000..3a44770cfb6
--- /dev/null
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-3.0.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit findlib eutils
+
+DESCRIPTION="A compiler from OCaml bytecode to javascript"
+HOMEPAGE="http://ocsigen.org/js_of_ocaml/;
+
+if [ "${PV#}" != "${PV}" ] ; then
+   inherit git-r3
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/ocsigen/js_of_ocaml;
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/ocsigen/js_of_ocaml/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="LGPL-2.1-with-linking-exception"
+SLOT="0/${PV}"
+IUSE="+ocamlopt camlp4 lwt doc +deriving +ppx +xml test"
+
+RDEPEND="
+   >=dev-lang/ocaml-3.12:=[ocamlopt?]
+
+   camlp4? ( dev-ml/camlp4:= )
+
+   dev-ml/cmdliner:=
+   dev-ml/cppo:=
+
+   lwt? ( >=dev-ml/lwt-2.4.4:= )
+
+   dev-ml/ocamlbuild:=
+
+   dev-ml/ocaml-migrate-parsetree:=
+   dev-ml/ppx_tools_versioned:=
+   dev-ml/uchar:=
+
+   ppx? ( dev-ml/ppx_tools:= dev-ml/ppx_deriving:= )
+
+   xml? ( >=dev-ml/tyxml-4:= dev-ml/reactiveData:= )
+"
+DEPEND="${RDEPEND}
+   dev-ml/jbuilder
+   dev-ml/opam
+   test? ( dev-util/patdiff )
+"
+REQUIRED_USE="xml? ( ppx )"
+
+src_compile() {
+   emake
+   use doc && emake doc
+}
+
+oinstall() {
+   opam-installer -i \
+   --prefix="${ED}/usr" \
+   --libdir="${D}/$(ocamlc -where)" \
+   --docdir="${ED}/usr/share/doc/${PF}" \
+   --mandir="${ED}/usr/share/man" \
+   ${1}.install || die
+}
+
+src_install() {
+   use camlp4 && oinstall js_of_ocaml-camlp4
+   oinstall js_of_ocaml-compiler
+   use lwt && oinstall js_of_ocaml-lwt
+   oinstall js_of_ocaml-ocamlbuild
+   oinstall js_of_ocaml
+   use ppx && oinstall js_of_ocaml-ppx
+   use ppx && oinstall js_of_ocaml-toplevel
+   use xml && oinstall js_of_ocaml-tyxml
+}

diff --git a/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild 
b/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild
index 5b17a890bb3..3a44770cfb6 100644
--- a/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild
+++ b/dev-ml/js_of_ocaml/js_of_ocaml-.ebuild
@@ -20,46 +20,56 @@ fi
 
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
-IUSE="+ocamlopt doc +deriving +ppx +react +xml X"
+IUSE="+ocamlopt camlp4 lwt doc +deriving +ppx +xml test"
 
 RDEPEND="
-   >=dev-lang/ocaml-3.12:=[ocamlopt?,X?]
-   >=dev-ml/lwt-2.4.4:=[camlp4(+)]
-   react? ( dev-ml/react:=  dev-ml/reactiveData:= )
-   xml? ( >=dev-ml/tyxml-4:= )
-   ppx? ( dev-ml/ppx_tools:= dev-ml/ppx_deriving:= dev-ml/ppx_driver:= )
+   >=dev-lang/ocaml-3.12:=[ocamlopt?]
+
+   camlp4? ( dev-ml/camlp4:= )
+
dev-ml/cmdliner:=
-   dev-ml/menhir:=
-   dev-ml/ocaml-base64:=
-   dev-ml/camlp4:=
dev-ml/cppo:=
-   dev-ml/uchar:=
+
+   lwt? ( >=dev-ml/lwt-2.4.4:= )
+
dev-ml/ocamlbuild:=
-   dev-ml/yojson:=
-   deriving? ( >=dev-ml/deriving-0.6:= )"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   printf 

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

2017-06-22 Thread Alexis Ballier
commit: 19aabeaaf216417bc995f26b7adce87f7eb5064a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:08:27 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19aabeaa

app-arch/rpm: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-arch/rpm/rpm-4.12.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/rpm/rpm-4.12.0.1.ebuild b/app-arch/rpm/rpm-4.12.0.1.ebuild
index 40eda0c093b..1c8029fe8dc 100644
--- a/app-arch/rpm/rpm-4.12.0.1.ebuild
+++ b/app-arch/rpm/rpm-4.12.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -13,7 +13,7 @@ 
SRC_URI="http://rpm.org/releases/rpm-$(get_version_component_range 1-2).x/${P}.t
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-linux ~x86-linux"
 
 IUSE="nls python doc caps lua acl selinux"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/kaputt/

2017-06-22 Thread Alexis Ballier
commit: a5a9e47a4dddb2f00a075940820411364576894d
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:54:25 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a9e47a

dev-ml/kaputt: depend on ocamlbuild only now that old ocaml is gone

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/kaputt/kaputt-1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ml/kaputt/kaputt-1.2.ebuild b/dev-ml/kaputt/kaputt-1.2.ebuild
index 35f9d4ddb4a..89ce7b66f51 100644
--- a/dev-ml/kaputt/kaputt-1.2.ebuild
+++ b/dev-ml/kaputt/kaputt-1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -16,7 +16,7 @@ IUSE=""
 
 RDEPEND=">=dev-lang/ocaml-3.11:=[ocamlopt]"
 DEPEND="${RDEPEND}
-   || ( dev-ml/ocamlbuild 

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

2017-06-22 Thread Alexis Ballier
commit: a48045addf9a6a69812d54a36b0462d5949c8a74
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 13:39:37 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a48045ad

profiles/arch/arm64: drop vaapi mask to give it wider testing

 profiles/arch/arm64/use.mask | 1 -
 1 file changed, 1 deletion(-)

diff --git a/profiles/arch/arm64/use.mask b/profiles/arch/arm64/use.mask
index 3272dbbeb8c..4d2e5cbdd02 100644
--- a/profiles/arch/arm64/use.mask
+++ b/profiles/arch/arm64/use.mask
@@ -163,7 +163,6 @@ nut
 dvd
 fits
 tokyocabinet
-vaapi
 rtmp
 vpx
 plotutils



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

2017-06-22 Thread Alexis Ballier
commit: 8782373a01227ba7a8fe44cbfc411044864593a8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 13:26:04 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8782373a

x11-libs/gtkglarea: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild 
b/x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild
index c4c48187398..b27202dcb50 100644
--- a/x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild
+++ b/x11-libs/gtkglarea/gtkglarea-2.1.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -11,7 +11,7 @@ HOMEPAGE="http://www.mono-project.com/GtkGLArea;
 
 LICENSE="LGPL-2+ GPL-2+" # examples are GPL-2+, library is LGPL-2+
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="examples"
 
 RDEPEND="



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

2017-06-22 Thread Alexis Ballier
commit: c72b1ae9888cbf3e673def360cb3830822ae7740
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 13:40:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c72b1ae9

gnome-base/libgnomecanvas: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild 
b/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild
index 35d18555b60..0f5756bec03 100644
--- a/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild
+++ b/gnome-base/libgnomecanvas/libgnomecanvas-2.30.3-r1.ebuild
@@ -13,7 +13,7 @@ 
HOMEPAGE="https://library.gnome.org/devel/libgnomecanvas/stable/;
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="glade"
 
 RDEPEND=">=dev-libs/glib-2.34.3:2[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: media-libs/zvbi/files/, media-libs/zvbi/

2017-06-22 Thread Alexis Ballier
commit: f5081e2efceec7b034d0519f0d60c3205bd86701
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:19:15 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5081e2e

media-libs/zvbi: Fix building tests with gcc7.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/zvbi/files/tests-gcc7.patch | 22 ++
 media-libs/zvbi/zvbi-0.2.35-r1.ebuild  |  1 +
 2 files changed, 23 insertions(+)

diff --git a/media-libs/zvbi/files/tests-gcc7.patch 
b/media-libs/zvbi/files/tests-gcc7.patch
new file mode 100644
index 000..181285cfbd4
--- /dev/null
+++ b/media-libs/zvbi/files/tests-gcc7.patch
@@ -0,0 +1,22 @@
+Index: zvbi-0.2.35/test/test-dvb_mux.cc
+===
+--- zvbi-0.2.35.orig/test/test-dvb_mux.cc
 zvbi-0.2.35/test/test-dvb_mux.cc
+@@ -137,7 +137,7 @@ is_good_service(vbi_service_set
servi
+ static const vbi_service_set
+ all_services [] = {
+   0,
+-  -1,
++  (vbi_service_set)-1,
+   VBI_SLICED_2xCAPTION_525,
+   VBI_SLICED_CAPTION_525,
+   VBI_SLICED_CAPTION_525_F1,
+@@ -3237,7 +3237,7 @@ static void
+ test_dvb_mux_cor_pts (void)
+ {
+   static const int64_t ptss [] = {
+-  0x8000ll, -1, 0, 0x7FFFll,
++  (int64_t)0x8000ll, -1, 0, 0x7FFFll,
+   };
+   DVBPESMuxTest mx;
+   unsigned int i;

diff --git a/media-libs/zvbi/zvbi-0.2.35-r1.ebuild 
b/media-libs/zvbi/zvbi-0.2.35-r1.ebuild
index 1ebe916ea7c..02b94b7885b 100644
--- a/media-libs/zvbi/zvbi-0.2.35-r1.ebuild
+++ b/media-libs/zvbi/zvbi-0.2.35-r1.ebuild
@@ -24,6 +24,7 @@ DEPEND="${RDEPEND}
X? ( x11-libs/libXt )"
 
 src_prepare() {
+   epatch "${FILESDIR}/tests-gcc7.patch"
elibtoolize
 }
 



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

2017-06-22 Thread Alexis Ballier
commit: e85c0d27917d082fa8de489b5e4e3f9b5ab7d514
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:38:57 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e85c0d27

dev-util/patdiff: initial import

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/patdiff/Manifest |  1 +
 dev-util/patdiff/metadata.xml | 11 +++
 dev-util/patdiff/patdiff-0.9.0.ebuild | 36 +++
 3 files changed, 48 insertions(+)

diff --git a/dev-util/patdiff/Manifest b/dev-util/patdiff/Manifest
new file mode 100644
index 000..805e070b68a
--- /dev/null
+++ b/dev-util/patdiff/Manifest
@@ -0,0 +1 @@
+DIST patdiff-0.9.0.tar.gz 40059 SHA256 
ca5cddb2aad11eb29108e14b661427fc9488fca6753578b0141b331ee39683f5 SHA512 
a48d58c7b2681d5be6281fd6ff4e95df98d6c6f50622eaae5560a9f99c3b8ea0154cec5e6e5eaff687122a1d907657e943239869125089cab5e94e65f7c6a298
 WHIRLPOOL 
3dc776b01b77b06d04b4511b06c9d892d5cc2eb93c62333707c274dc2af301bca05ed5be08b86e5c371b8efc8c98032fbff587e6d93de0acf7b8e1154b11b14e

diff --git a/dev-util/patdiff/metadata.xml b/dev-util/patdiff/metadata.xml
new file mode 100644
index 000..80d170f9a1b
--- /dev/null
+++ b/dev-util/patdiff/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+  
+ janestreet/patdiff
+  
+

diff --git a/dev-util/patdiff/patdiff-0.9.0.ebuild 
b/dev-util/patdiff/patdiff-0.9.0.ebuild
new file mode 100644
index 000..2c95dc9f454
--- /dev/null
+++ b/dev-util/patdiff/patdiff-0.9.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Colored patience diffs with word-level refinement"
+HOMEPAGE="https://github.com/janestreet/patdiff;
+SRC_URI="https://github.com/janestreet/patdiff/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-lang/ocaml:=
+   dev-ml/core:=
+   dev-ml/core_extended:=
+   dev-ml/patience_diff:=
+   dev-ml/ppx_driver:=
+   dev-ml/ppx_jane:=
+   dev-ml/re2:=
+   dev-ml/sexplib:=
+   dev-ml/ocaml-migrate-parsetree:=
+   dev-ml/pcre-ocaml:=
+"
+DEPEND="${RDEPEND} dev-ml/opam dev-ml/jbuilder"
+
+src_install() {
+   opam-installer -i \
+   --prefix="${ED}/usr" \
+   --libdir="${D}/$(ocamlc -where)" \
+   --docdir="${ED}/usr/share/doc/${PF}" \
+   --mandir="${ED}/usr/share/man" \
+   ${PN}.install || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/ocurl/

2017-06-22 Thread Alexis Ballier
commit: a3595beb9e7d99c11821b98c0653a5ce7dd11b2f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:46:41 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3595beb

dev-ml/ocurl: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/ocurl/ocurl-0.7.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/ocurl/ocurl-0.7.10.ebuild b/dev-ml/ocurl/ocurl-0.7.10.ebuild
index f791477c09b..1f4b0e34097 100644
--- a/dev-ml/ocurl/ocurl-0.7.10.ebuild
+++ b/dev-ml/ocurl/ocurl-0.7.10.ebuild
@@ -19,7 +19,7 @@ RDEPEND=">=net-misc/curl-7.9.8
>=dev-lang/ocaml-3.12:=[ocamlopt]"
 DEPEND="${RDEPEND}
virtual/pkgconfig"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~arm64"
 
 src_compile()
 {



[gentoo-commits] repo/gentoo:master commit in: dev-ml/patience_diff/

2017-06-22 Thread Alexis Ballier
commit: 2bbea554372d23a4db567b771b668981b3bbd596
Author: Alexis Ballier  gentoo  org>
AuthorDate: Thu Jun 22 12:36:47 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Thu Jun 22 14:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bbea554

dev-ml/patience_diff: initial import

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/patience_diff/Manifest   |  1 +
 dev-ml/patience_diff/metadata.xml   | 11 +
 dev-ml/patience_diff/patience_diff-0.9.0.ebuild | 30 +
 3 files changed, 42 insertions(+)

diff --git a/dev-ml/patience_diff/Manifest b/dev-ml/patience_diff/Manifest
new file mode 100644
index 000..fc684136055
--- /dev/null
+++ b/dev-ml/patience_diff/Manifest
@@ -0,0 +1 @@
+DIST patience_diff-0.9.0.tar.gz 16520 SHA256 
d47943ca89602e4c4b030f8dec7fa60b5011592a7005fa79cf746b79308d66f8 SHA512 
62cc0950edd8d46d5a11cd612dbdb8dc531a9a2c71403f30e6022e20d9ee21cb2e7a531362fa8b350075003eec929f1f70481b8e160b253831966d80a8becd83
 WHIRLPOOL 
f1bb11f6862c9612f48cb861b74028c7c4c720738f44ac75b42d47f527781f6d054d690ac3a36318a6ea3d754544f4e0b9e83627a781989f9c46f5fc4b524f01

diff --git a/dev-ml/patience_diff/metadata.xml 
b/dev-ml/patience_diff/metadata.xml
new file mode 100644
index 000..949b707595e
--- /dev/null
+++ b/dev-ml/patience_diff/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+   m...@gentoo.org
+   Gentoo ML Project
+
+  
+ janestreet/patience_diff
+  
+

diff --git a/dev-ml/patience_diff/patience_diff-0.9.0.ebuild 
b/dev-ml/patience_diff/patience_diff-0.9.0.ebuild
new file mode 100644
index 000..727b5d56ef3
--- /dev/null
+++ b/dev-ml/patience_diff/patience_diff-0.9.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Tool and library implementing patience diff"
+HOMEPAGE="https://github.com/janestreet/${PN};
+SRC_URI="https://github.com/janestreet/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="
+   dev-lang/ocaml:=
+   dev-ml/core_kernel:=
+   dev-ml/ppx_driver:=
+   dev-ml/ppx_jane:=
+   dev-ml/ocaml-migrate-parsetree:=
+"
+DEPEND="${RDEPEND} dev-ml/opam dev-ml/jbuilder"
+
+src_install() {
+   opam-installer -i \
+   --prefix="${ED}/usr" \
+   --libdir="${D}/$(ocamlc -where)" \
+   --docdir="${ED}/usr/share/doc/${PF}" \
+   ${PN}.install || die
+}



[gentoo-commits] proj/musl:master commit in: net-libs/webkit-gtk/files/, net-libs/webkit-gtk/

2017-06-22 Thread Aric Belsito
commit: 2b31a13628ffc61ef6eca37dc6191790b50e70b3
Author: Aric Belsito  gmail  com>
AuthorDate: Thu Jun 22 14:19:18 2017 +
Commit: Aric Belsito  gmail  com>
CommitDate: Thu Jun 22 14:19:18 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=2b31a136

net-libs/webkit-gtk: version bump to 2.16.4

 net-libs/webkit-gtk/Manifest   |   7 +-
 .../files/2.16.2-avoid-perl-ithreads.patch | 130 -
 net-libs/webkit-gtk/webkit-gtk-2.16.3.ebuild   |   2 +-
 ...-gtk-2.16.2.ebuild => webkit-gtk-2.16.4.ebuild} |   9 +-
 4 files changed, 7 insertions(+), 141 deletions(-)

diff --git a/net-libs/webkit-gtk/Manifest b/net-libs/webkit-gtk/Manifest
index 033394e..ac00fef 100644
--- a/net-libs/webkit-gtk/Manifest
+++ b/net-libs/webkit-gtk/Manifest
@@ -1,5 +1,4 @@
 AUX 2.16.1-avoid-perl-ithreads.patch 3179 SHA256 
77a3e8ad48868c23834e14b98f99131940a461f79dfeee8703f79eaad60fbf39 SHA512 
86a1bcde4a2870aea66823ac90bbb1a3d2398a781994c534720e39843785f2eb4d4382a761ee024ae5420d0aeef212175128bdafda1b47b036b5c6a30e002604
 WHIRLPOOL 
3e1730282070c1e06dc5b8d9b0dcf60a3e4b6eb6130c43c5dfb679593bd1ad97b29ac17eb0649e03e3ca0be929213fd7a84751142bcd2e921d3dedb643ef0534
-AUX 2.16.2-avoid-perl-ithreads.patch 3681 SHA256 
659a6f2c2df55bdd5e5cff8b8a9628f2d18c66ecf92d267b68ed7f48540a2e93 SHA512 
b5b567fc198eebf2fb1d538b2692907e30adcd5583a38a00bcd7bdff906464188392fd6ac0b65d574a8d7ea90873bb4f4d8fa2d09c1cdb32013241cc401b8b15
 WHIRLPOOL 
47784091762aeb0570af5ea3aab75c75a9322ffdb1dbb6b9326b9bc804c17b6490c01d59b03f577968d902d39217478b91a9838ba440bf01dfb76fd7c0a014df
 AUX webkit-gtk-1.11.90-gtk-docize-fix.patch 426 SHA256 
20d26df63afbdbf829974597bf53a9657007e9940431ffa0020f1d5fa5d22b4f SHA512 
e35cc255e36742519b4f26b60d8e704eb3e0e66e8e13599cadae6fe445a3a87a2c6c65b6746c4d39f1ab11e7eb79b0f63a5fc9d5af5d7fa8907b224b852e3b32
 WHIRLPOOL 
a91ba71b8b4fa2f1ff5de1633fa477bc1f45de37f3bbd212af1ecf4b6298c5454c199cd89f6602854978d4ae6a551316eb96c4f90c82a0c07018e94ac3025e43
 AUX webkit-gtk-1.6.1-darwin-quartz.patch 1516 SHA256 
34ad751c33e868d85b41e06ecbd085b61a81c42bd52063bada52bc59b9e05a23 SHA512 
ca8c80d06aa93c07d658ebf3433f5fdee9225616740a075f5606df87e3b90a83b2c492777a8e30255cdd4f11f889be789544ac1fc4a39056e1929a72720347ea
 WHIRLPOOL 
558250f3cf6de4d511a26afb0aeacc04b7049b3d0499362d320c035acac20932d7c16f6ff99d83833498296e3a21b5e2bab985b1ee5fca709754b582195a0fd1
 AUX webkit-gtk-2.14.3-musl.patch 4111 SHA256 
cc371f6dd10f489169eaa5b0ef3b197eae7a0f7d349aca86f830dd45f39473af SHA512 
eb47b3c9d58bfa121acf83f2f58e819e2e2a2198c58ff926a1d3db8ee1c5ddbcbaad5c06d113cec1c20f286877823edcd52cc0caf3993a8b89a6fb5277f0a387
 WHIRLPOOL 
486613fe49588ed3019298eebe66a94a6e823e1719ff602dedc330222a931350a605dc64013f3a0244d661d335699a5836cf4083c93b5723a6cb457845e5ca04
@@ -15,11 +14,11 @@ AUX 
webkit-gtk-2.4.9-remove-disallow_ctypes_h-braindead.patch 733 SHA256 d447d71
 AUX webkit-gtk-2.4.9-remove-execinfo_h.patch 1374 SHA256 
9a6cea9456c7d38b280be1d4f29417e3d4ebd619e183535368175c473485c2dd SHA512 
f4a0647530f29bed5fdbf0fcec5d52c6064a13c00715fb6fb490490dee29dac87bb2b1d9ab35ce2bf7b9eb2da262cf5bb07b7c84f82f84cfab784a61f163811e
 WHIRLPOOL 
f18be67ef26051ebe271481c3444761c604a40fcda9679f3778cccbc3513f8501a6c3ea9b43fa1b3c3eaa04ca08585e62d8b3a27185358dc69c612ef8eab8364
 AUX webkit-gtk-2.8.5-fix-alpha-build.patch 914 SHA256 
aa6617505fe9342153ba9442ea109d880ca6c3315777c57ab599f67515e2a9f7 SHA512 
c3599c21dbcc709cf1bbc56eafdff8f8d30d65732fff73e601a828b397523d9a0cec96a4e7940ad1b4b3d9b4711f6d5f2935dcd34cac9adec63b73401638fd5e
 WHIRLPOOL 
68a39ccf49e7719393f14cd5d53497148527bd697b010378bdec4cdefb21c5fc7ce5081ce10b412c61390a82e45fa44d9d34aa7f223c51ad15eb1d0288ccbe60
 AUX webkit-gtk-2.8.5-fix-ia64-build.patch 663 SHA256 
d076739707de117fbc9aebc684c4a43024e1673e4c30fdfa3be529331f0c1f78 SHA512 
ce8dbe7f2bacfc6d1ad70d39d80447ab90e6daf63bc1dc4a49c406255f76eff090f79e6076ebc349d69193b72a821fa6591692cf74a28e529f8db95cf86358fc
 WHIRLPOOL 
adf8e11ee3060bcba606cf17673d06d9c98034a71f6a7406832fabf461c4697abcd0c3d4cdb8d8298caf221c797e0732a9f865d761fcf05753a1dfd96dfd3d82
-DIST webkitgtk-2.16.2.tar.xz 14650116 SHA256 
5ef689a202eb2b71141efbe8b7b53288adced90790f9f08df6e0a2ec1809f252 SHA512 
0bd16f663dffd41d713a53e2186576c4a7c42e7f872605a1688c80e8b55408b5f96f1274a1fe24624b4974240e901df5b11d1ff27a03fa2d9950575f1260abc8
 WHIRLPOOL 
7268820bdee088eb639e4453c683e8f6b13e7cc7093f8d4148b3911aa7ea7807291ca443b18c885de4a9a838cd80ba9247f728d1cd8106b373b4c568a918a16b
 DIST webkitgtk-2.16.3.tar.xz 14652068 SHA256 
204e9131da0101b9bc8765716e70a897121af04b964d9827cd9f20816a77b512 SHA512 
551367551ed1bceaf9c70269f229e97972706820c6ae2dbc6d8b0992d6de34a156f9c245813c1f1701ce54f5476a44512590acfa6cfd6e67663d94caa91e
 WHIRLPOOL 
bac846be9d5f7b0a4c08b201d338bed6b84e65bdb105f2689350e02e0f0011944f5e23961e9411f712040c26a5313ef9bb4e30dda2cb19216c8e8d665ab0550f
+DIST webkitgtk-2.16.4.tar.xz 14655288 SHA256 

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

2017-06-22 Thread Agostino Sarubbo
commit: f0445109f07ed6a37d8f50653cea30d87562f41d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jun 22 12:46:50 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jun 22 12:46:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0445109

net-misc/networkmanager-openvpn: amd64 stable wrt bug #622376

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-misc/networkmanager-openvpn/networkmanager-openvpn-1.2.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.2.10.ebuild 
b/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.2.10.ebuild
index 17fe3108517..98dcfc5494f 100644
--- a/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.2.10.ebuild
+++ b/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.2.10.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="gtk test"
 
 RDEPEND="



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

2017-06-22 Thread Agostino Sarubbo
commit: 6e699ffea95521b960755038b92a4725b1f92316
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jun 22 12:47:08 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jun 22 12:47:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e699ffe

dev-perl/HTML-Tree: amd64 stable wrt bug #622450

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/HTML-Tree/HTML-Tree-5.60.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/HTML-Tree/HTML-Tree-5.60.0.ebuild 
b/dev-perl/HTML-Tree/HTML-Tree-5.60.0.ebuild
index ded65bb5dfe..49bfc9ced48 100644
--- a/dev-perl/HTML-Tree/HTML-Tree-5.60.0.ebuild
+++ b/dev-perl/HTML-Tree/HTML-Tree-5.60.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A library to manage HTML-Tree in PERL"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2017-06-22 Thread Agostino Sarubbo
commit: 5a4a82db98e65de144379cd7717279c1eaa40555
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jun 22 12:47:02 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jun 22 12:47:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a4a82db

dev-perl/ExtUtils-PkgConfig: amd64 stable wrt bug #622448

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/ExtUtils-PkgConfig/ExtUtils-PkgConfig-1.160.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/ExtUtils-PkgConfig/ExtUtils-PkgConfig-1.160.0.ebuild 
b/dev-perl/ExtUtils-PkgConfig/ExtUtils-PkgConfig-1.160.0.ebuild
index 307433402d0..e003c89870e 100644
--- a/dev-perl/ExtUtils-PkgConfig/ExtUtils-PkgConfig-1.160.0.ebuild
+++ b/dev-perl/ExtUtils-PkgConfig/ExtUtils-PkgConfig-1.160.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Simplistic perl interface to pkg-config"
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-p2p/transmission-remote-gtk/

2017-06-22 Thread Agostino Sarubbo
commit: 47328067b6c2f3eab9a233c43f7ca623b0cd12e6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Jun 22 12:47:14 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Jun 22 12:47:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47328067

net-p2p/transmission-remote-gtk: amd64 stable wrt bug #622452

Package-Manager: Portage-2.3.6, Repoman-2.3.1
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.3.1.ebuild 
b/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.3.1.ebuild
index 1d7533fb792..bef684ca11f 100644
--- a/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.3.1.ebuild
+++ b/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.3.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="ayatana debug geoip libnotify libproxy rss"
 
 # RESTRICT="test"



  1   2   >