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

2016-11-19 Thread Jeroen Roovers
commit: 7335969291b9d994b6dfc031b713c71b16c20e58
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 09:20:28 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 09:20:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73359692

net-analyzer/tcpreplay: Add MAXPACKET patch (bug #588302).

Package-Manager: portage-2.3.2

 .../files/tcpreplay-4.1.1-MAXPACKET.patch  | 22 ++
 net-analyzer/tcpreplay/tcpreplay-4.1.1-r1.ebuild   | 78 ++
 2 files changed, 100 insertions(+)

diff --git a/net-analyzer/tcpreplay/files/tcpreplay-4.1.1-MAXPACKET.patch 
b/net-analyzer/tcpreplay/files/tcpreplay-4.1.1-MAXPACKET.patch
new file mode 100644
index ..ccb2dca
--- /dev/null
+++ b/net-analyzer/tcpreplay/files/tcpreplay-4.1.1-MAXPACKET.patch
@@ -0,0 +1,22 @@
+--- a/src/defines.h.in
 b/src/defines.h.in
+@@ -145,7 +145,7 @@
+ #define DEFAULT_MTU 1500/* Max Transmission Unit of standard ethernet
+  * don't forget *frames* are MTU + L2 header! 
*/
+ 
+-#define MAXPACKET 65535 /* was 16436 linux loopback, but maybe 
something is bigger then
++#define MAXPACKET 65549 /* was 16436 linux loopback, but maybe 
something is bigger then
+linux loopback */
+ 
+ #define MAX_SNAPLEN 65535   /* tell libpcap to capture the entire packet 
*/
+--- a/src/tcprewrite.c
 b/src/tcprewrite.c
+@@ -253,6 +253,8 @@ rewrite_packets(tcpedit_t *tcpedit, pcap_t *pin, 
pcap_dumper_t *pout)
+ packetnum++;
+ dbgx(2, "packet " COUNTER_SPEC " caplen %d", packetnum, 
pkthdr.caplen);
+ 
++if (pkthdr.caplen > MAXPACKET)
++errx(-1, "Frame too big, caplen %d exceeds %d", pkthdr.caplen, 
MAXPACKET);
+ /* 
+  * copy over the packet so we can pad it out if necessary and
+  * because pcap_next() returns a const ptr

diff --git a/net-analyzer/tcpreplay/tcpreplay-4.1.1-r1.ebuild 
b/net-analyzer/tcpreplay/tcpreplay-4.1.1-r1.ebuild
new file mode 100644
index ..93eb633
--- /dev/null
+++ b/net-analyzer/tcpreplay/tcpreplay-4.1.1-r1.ebuild
@@ -0,0 +1,78 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools flag-o-matic
+
+DESCRIPTION="utilities for editing and replaying previously captured network 
traffic"
+HOMEPAGE="http://tcpreplay.appneta.com/ https://github.com/appneta/tcpreplay;
+LICENSE="BSD GPL-3"
+SRC_URI="https://github.com/appneta/${PN}/releases/download/v${PV}/${P}.tar.gz;
+
+SLOT="0"
+KEYWORDS="~amd64 ~sparc ~x86"
+IUSE="debug pcapnav +tcpdump"
+
+DEPEND="
+   >=sys-devel/autogen-5.18.4[libopts]
+   dev-libs/libdnet
+   >=net-libs/libpcap-0.9
+   tcpdump? ( net-analyzer/tcpdump )
+   pcapnav? ( net-libs/libpcapnav )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=(
+   docs/{CHANGELOG,CREDIT,HACKING,TODO}
+)
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.1.0-enable-pcap_findalldevs.patch
+   "${FILESDIR}"/${PN}-4.1.1-MAXPACKET.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i \
+   -e 's|-O3||g' \
+   -e 's|AM_CONFIG_HEADER|AC_CONFIG_HEADERS|g' \
+   configure.ac || die
+   sed -i \
+   -e 's|#include |#include |g' \
+   src/common/sendpacket.c || die
+   sed -i \
+   -e 's|@\([A-Z_]*\)@|$(\1)|g' \
+   -e '/tcpliveplay_CFLAGS/s|$| $(LDNETINC)|g' \
+   -e '/tcpliveplay_LDADD/s|$| $(LDNETLIB)|g' \
+   src/Makefile.am || die
+
+   eautoreconf
+}
+
+src_configure() {
+   # By default it uses static linking. Avoid that, bug 252940
+   econf \
+   $(use_enable debug) \
+   $(use_with pcapnav pcapnav-config /usr/bin/pcapnav-config) \
+   $(use_with tcpdump tcpdump /usr/sbin/tcpdump) \
+   --disable-local-libopts \
+   --enable-dynamic-link \
+   --enable-shared \
+   --with-libdnet \
+   --with-testnic2=lo \
+   --with-testnic=lo
+}
+
+src_test() {
+   if [[ ! ${EUID} -eq 0 ]]; then
+   ewarn "Some tests were disabled due to FEATURES=userpriv"
+   ewarn "To run all tests issue the following command as root:"
+   ewarn " # make -C ${S}/test"
+   emake -j1 -C test tcpprep || die "self test failed - see 
${S}/test/test.log"
+   else
+   emake -j1 test || {
+   ewarn "Note, that some tests require eth0 iface to be 
UP." ;
+   die "self test failed - see ${S}/test/test.log" ; }
+   fi
+}



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

2016-11-19 Thread Michael Palimaka
commit: 779dab071079295c1499b8a3c4baa87b01a5d49b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 19 11:08:14 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 11:08:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=779dab07

app-text/kchmviewer: amd64/x86 stable

Package-Manager: portage-2.3.2

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

diff --git a/app-text/kchmviewer/kchmviewer-7.7.ebuild 
b/app-text/kchmviewer/kchmviewer-7.7.ebuild
index cdcd179..fb22f48 100644
--- a/app-text/kchmviewer/kchmviewer-7.7.ebuild
+++ b/app-text/kchmviewer/kchmviewer-7.7.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/kchmviewer/${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



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

2016-11-19 Thread Michael Palimaka
commit: f43dc903106559cae69b55524bdf275d9b950a41
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 19 11:08:25 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 11:08:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f43dc903

app-text/kchmviewer: remove old

Package-Manager: portage-2.3.2

 app-text/kchmviewer/Manifest |  1 -
 app-text/kchmviewer/kchmviewer-7.5-r1.ebuild | 76 
 2 files changed, 77 deletions(-)

diff --git a/app-text/kchmviewer/Manifest b/app-text/kchmviewer/Manifest
index 89dab6a..8b0741d 100644
--- a/app-text/kchmviewer/Manifest
+++ b/app-text/kchmviewer/Manifest
@@ -1,2 +1 @@
-DIST kchmviewer-7.5.tar.gz 342487 SHA256 
c81f8fb7ac1fe8a5284e03b0d91def61cbd5638f2276c5de8046251755352e53 SHA512 
4e867766d60788f11cddc7373b82f7930fb9e5efbef4231fbb386ed2651297d9ab2f893770142c6445c18bf0df3ad2b47b8a0428bb3baa37465d9091e2e15f9a
 WHIRLPOOL 
a12e2c63b0cb3aa03d60f463da7d98500fa7021335d721fc26aeec53bee0d2d4af2ce5e6495e2d4b6a0bb5b25734b9a46f255482f0e065d3e26afbeb09bf3c67
 DIST kchmviewer-7.7.tar.gz 345952 SHA256 
27cbac45c786b1718550a87e6f86010e161302b426c6396ff2a3091b913b17dd SHA512 
e217db388f99142114e4de6735916d46c9d89f144390b58dffd739ed7246048c23af75c2eb9effba3e942a21564f9205265155a93a21d6343bea83a26fd99070
 WHIRLPOOL 
94230893add520861605edc09979f98774cc553f95b30364860afb130e5a77cbafa487fa5623d7d063bbec350a3b5d845ecd54072556128fc9c7a7d1d24dfa46

diff --git a/app-text/kchmviewer/kchmviewer-7.5-r1.ebuild 
b/app-text/kchmviewer/kchmviewer-7.5-r1.ebuild
deleted file mode 100644
index 91aab85..
--- a/app-text/kchmviewer/kchmviewer-7.5-r1.ebuild
+++ /dev/null
@@ -1,76 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit fdo-mime qmake-utils
-
-DESCRIPTION="Feature rich chm file viewer, based on Qt"
-HOMEPAGE="http://www.kchmviewer.net/;
-SRC_URI="mirror://sourceforge/kchmviewer/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="qt5"
-
-RDEPEND="
-   dev-libs/chmlib
-   dev-libs/libzip:=
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtprintsupport:5
-   dev-qt/qtwebkit:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   )
-   !qt5? (
-   dev-qt/qtcore:4
-   dev-qt/qtdbus:4
-   dev-qt/qtgui:4
-   dev-qt/qtwebkit:4
-   )
-
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   # fix parallel build wrt bug #527192
-   echo "src.depends = lib" >> ${PN}.pro || die
-
-   # bug #579430
-   sed -i \
-   -e "s:zip:zip;:g" \
-   packages/kchmviewer.desktop || die "Failed to fix desktop file"
-
-   eapply_user
-}
-
-src_configure() {
-   if use qt5; then
-   eqmake5
-   else
-   eqmake4
-   fi
-}
-
-src_install() {
-   dodoc ChangeLog DBUS-bindings FAQ README
-   doicon packages/kchmviewer.png
-
-   dobin bin/kchmviewer
-   domenu packages/kchmviewer.desktop
-
-}
-
-pkg_postinst() {
-   fdo-mime_desktop_database_update
-}
-
-pkg_postrm() {
-   fdo-mime_desktop_database_update
-}



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

2016-11-19 Thread Alexys Jacob
commit: 335607e5c022bc971a7bf6b5cd0a39314b9f54dd
Author: Ultrabug  gentoo  org>
AuthorDate: Sat Nov 19 11:23:59 2016 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sat Nov 19 11:23:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=335607e5

dev-db/redis: remove useless unstable ebuilds

Package-Manager: portage-2.3.2

 dev-db/redis/Manifest|   4 --
 dev-db/redis/redis-2.8.21.ebuild | 120 ---
 dev-db/redis/redis-3.0.5.ebuild  | 116 -
 dev-db/redis/redis-3.0.6.ebuild  | 116 -
 dev-db/redis/redis-3.2.0.ebuild  | 118 --
 5 files changed, 474 deletions(-)

diff --git a/dev-db/redis/Manifest b/dev-db/redis/Manifest
index 89e4aae..2e1328b 100644
--- a/dev-db/redis/Manifest
+++ b/dev-db/redis/Manifest
@@ -1,9 +1,5 @@
 DIST redis-2.8.17.tar.gz 1234543 SHA256 
53c7cc639571729fa57d7baa7f81aec1d5886f86bac9c66f6ad06dbdaee236a7 SHA512 
29515abd4437e03da20063a1831f0eb11ac65ba9d51cbfbb1987726102e3a55c76a3286b8c9a3bfbaf5290998fb5b662ef4aadbe0d131cd60824c8533e088441
 WHIRLPOOL 
22eb01f8100a07178352e397f4342d44f478aadda7a0a7bdfa9a08d8cfa1578ac6e98ba0cce0a9828cc226364d9a7995d86bc78adfc73476c04868639307be30
-DIST redis-2.8.21.tar.gz 1260030 SHA256 
3da371693bb54c22da04d86cab1b871072c8d19bdfbc4f811469b7b53384c563 SHA512 
8be68e949e08fc1d143c2fd7bbd123d0c3618d8ac9333bd9ef691384364d307c85f9222b7a607668cf667e5c2193ef40d0c7167fa15b981c6ffcfe5f2e6120d8
 WHIRLPOOL 
d548a7aff0c84c2eb0fbf4c33436a0e46b7f6150f83e768e634441003974715b31c755d658fbc7f2fb5635511232e50c8ad2f7dce10a196bcc7b3da9193c3224
 DIST redis-2.8.23.tar.gz 1265194 SHA256 
f3c79778f478a01237035b67edaaa19332e5624dfa849d66815a4328d3e95ace SHA512 
ab27d5f4da3a1a03f513dd6e731517b59c8857961599651f51ced29138c907e3968390d2a473e26690d8ada6808cff1b948999ed171e9826cad8449031fc39ce
 WHIRLPOOL 
e18e5caf086c41743642d817b69ce7d923505ebb90373c7b8ccac5990bfa1972e264292e3d78310e84378b958c0ab818d208349763ab43eb9cfc05030755a6f5
 DIST redis-3.0.4.tar.gz 1364993 SHA256 
a35e90ad581925134aa0fc92e969cc825f5cdee8e13c36a87d4d6995316112cf SHA512 
7d8d681222892c759e7c3809203522a96a547457e0ff123cca296bac911395c7d8c1ded06331ae5cb487b87d0adcbaa02aa12c2dd724196a7b86111e236b023a
 WHIRLPOOL 
e12f7751e3e25068a25c02990d0e8416cedc152f66b5e9e1e47ae91f10a0d543b96ad456a4eb7fe16cb92ed46a0cc2fee65954207b354b9c211f425191a6c388
-DIST redis-3.0.5.tar.gz 1366160 SHA256 
4c176826eee909fbdc63db1c15adc22aab42d758043829e556f4331e6a5bd480 SHA512 
f44e2bcf2f4910da9f9d9e31ec542d5816ec0ba4329efe3e5053cc0176a5a8557d905f23bd3fd37e8a6e674eaf12804613718f63cb2ca1eac2b4f9c6082acab6
 WHIRLPOOL 
5b58ca02af6be7768c89e9307d668081cc161f9a200a1db40f0216b6c564cb67c8230d420024c12fb5f2397cedb8979a62ad01a61d526030018171a69a22e19d
-DIST redis-3.0.6.tar.gz 1372648 SHA256 
6f1e1523194558480c3782d84d88c2decf08a8e4b930c56d4df038e565b75624 SHA512 
cb29b2ed6db4a77ffafc27a94deb71b73332f4e05b63957ac870532a634d7aaf1df4225aec8bc3011322b6df35a7f0e7c3f3bb070e29aabd3dabdb5cfbb681d4
 WHIRLPOOL 
ce0de5aa188d8c631456ea5bf6346357676eb8c5f0f6bc69a704f7d35559ec6a4f5c0e583e321f546fc91c6c51d0331065d64be601864e033ce7d47da002d71b
 DIST redis-3.0.7.tar.gz 1375200 SHA256 
b2a791c4ea3bb7268795c45c6321ea5abcc24457178373e6a6e3be6372737f23 SHA512 
6c8f4c88d911e1433fd28efff2f6d62763e08be89814ebf4aa4e68e2c8bd605eba24ca3410548b2f480ae094437ce96c0bafa7a5762b3b405d5d850886297ba3
 WHIRLPOOL 
53c2c967b999bbcb5b45117bbad74b46457158ad94e8c43566311dd3d58c63c2d0cc2dac5dc9e8806821c2532ee4beded17e039da4ddeae958e5a0092429ee3a
-DIST redis-3.2.0.tar.gz 1525900 SHA256 
989f1af3dc0ac1828fdac48cd6c608f5a32a235046dddf823226f760c0fd8762 SHA512 
02a046080d070a81d38f4e8868ae85ace2db26718fc292388a94fd8f0ac45fe071f1536b3197e22451f99848dcd110469005f84456b8455836b2779eeb554d49
 WHIRLPOOL 
d12e1f1b5ffc4170844f007ee7e25ef893fd59872bff45f95d9702cc54e0847fc66816bfa22b67f89b0570c9da167a7311a2b27f959fcf8348bb129d647498ed
 DIST redis-3.2.5.tar.gz 1544040 SHA256 
8509ceb1efd849d6b2346a72a8e926b5a4f6ed3cc7c3cd8d9f36b2e9ba085315 SHA512 
4ecf6277c8fdf4411223b9f5a5c8308829da9bd756b45de5217d469e9def8faad8c05b6348c06aef99eca9245d45abfd52df056c3c819723da66a2ca20c381dd
 WHIRLPOOL 
db1eecac5e407734002d39cc16f708fcb1f506829df4dabda53bffc7012746a23ea2342cded4d90f39db72ba61eda349b80b4a3e4f1eba06dbaa6cad8c50264e

diff --git a/dev-db/redis/redis-2.8.21.ebuild b/dev-db/redis/redis-2.8.21.ebuild
deleted file mode 100644
index 50e7905..
--- a/dev-db/redis/redis-2.8.21.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils flag-o-matic systemd toolchain-funcs user
-
-DESCRIPTION="A persistent caching system, key-value and data structures 
database"
-HOMEPAGE="http://redis.io/;
-SRC_URI="http://download.redis.io/releases/${P}.tar.gz;
-
-LICENSE="BSD"
-KEYWORDS="~amd64 

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

2016-11-19 Thread Patrice Clement
commit: 41aaa62f841871dcfc13a292acd1053c0f82973c
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Nov 19 11:39:49 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Nov 19 11:39:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41aaa62f

dev-perl/Clipboard: Stable for amd64. Mark stable for the remaining arches 
using the ALLARCHES policy.

Package-Manager: portage-2.3.0

 dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild 
b/dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild
index 0696164..33828b1 100644
--- a/dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild
+++ b/dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Copy and paste with any OS"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm ppc ppc64 x86"
 IUSE=""
 
 # See bug 521890.



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

2016-11-19 Thread Patrice Clement
commit: 8a4c4cc257b485fa4589ce2af593c72eb73a9a98
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Nov 19 11:41:01 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Nov 19 11:41:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4c4cc2

dev-perl/Clipboard: Clean up old.

Package-Manager: portage-2.3.0

 dev-perl/Clipboard/Clipboard-0.130.0-r1.ebuild | 17 -
 1 file changed, 17 deletions(-)

diff --git a/dev-perl/Clipboard/Clipboard-0.130.0-r1.ebuild 
b/dev-perl/Clipboard/Clipboard-0.130.0-r1.ebuild
deleted file mode 100644
index 54f5b95..
--- a/dev-perl/Clipboard/Clipboard-0.130.0-r1.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=KING
-MODULE_VERSION=0.13
-inherit perl-module
-
-DESCRIPTION="Copy and paste with any OS"
-
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~ppc64 x86"
-IUSE=""
-
-RDEPEND="x11-misc/xclip"



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

2016-11-19 Thread Jeroen Roovers
commit: bcdd0a18e7677f4f148fbe9abf949c0dd7d71195
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 08:35:27 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 08:35:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcdd0a18

dev-python/pillow: Stable for HPPA PPC64 (bug #599610).

Package-Manager: portage-2.3.2
RepoMan-Options: --ignore-arches

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

diff --git a/dev-python/pillow/pillow-3.4.2.ebuild 
b/dev-python/pillow/pillow-3.4.2.ebuild
index de597f0..eb71dc9 100644
--- a/dev-python/pillow/pillow-3.4.2.ebuild
+++ b/dev-python/pillow/pillow-3.4.2.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
 
 LICENSE="HPND"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
 IUSE="doc examples jpeg jpeg2k lcms test tiff tk truetype webp zlib"
 
 REQUIRED_USE="test? ( jpeg tiff )"



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

2016-11-19 Thread Jeroen Roovers
commit: 8f8b2cba767640ce8b07683bf9b9b2a9e2e9dab1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 08:32:53 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 08:32:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f8b2cba

net-analyzer/wireshark: Stable for HPPA PPC64 (bug #600086).

Package-Manager: portage-2.3.2
RepoMan-Options: --ignore-arches

 net-analyzer/wireshark/wireshark-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/wireshark/wireshark-2.2.2.ebuild 
b/net-analyzer/wireshark/wireshark-2.2.2.ebuild
index 15a88a8..fee52d1 100644
--- a/net-analyzer/wireshark/wireshark-2.2.2.ebuild
+++ b/net-analyzer/wireshark/wireshark-2.2.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="
adns androiddump +caps ciscodump cpu_flags_x86_sse4_2 crypt doc doc-pdf
geoip +gtk kerberos lua +netlink +pcap portaudio +qt4 qt5 sbc selinux 
smi



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

2016-11-19 Thread Jeroen Roovers
commit: 2aa6fe04f5f8bbf4e284820e655b9de02ef29fee
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 08:42:21 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 08:42:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aa6fe04

sys-kernel/gentoo-sources: Stable for PPC64 (bug #598378).

Package-Manager: portage-2.3.2
RepoMan-Options: --ignore-arches

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

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



[gentoo-commits] repo/gentoo:master commit in: x11-misc/kbdd/

2016-11-19 Thread Jeroen Roovers
commit: 532683f6e158036dec83b27bdbce7bc866c34d6a
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 09:23:04 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 09:23:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=532683f6

x11-misc/kbdd: Fix metadata.

Package-Manager: portage-2.3.2

 x11-misc/kbdd/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/x11-misc/kbdd/metadata.xml b/x11-misc/kbdd/metadata.xml
index 4bf3fc1..611bcc8 100644
--- a/x11-misc/kbdd/metadata.xml
+++ b/x11-misc/kbdd/metadata.xml
@@ -3,7 +3,6 @@
 
   
 qni...@gentoo.org
-Very simple layout switcher
   
   
 qnikst/kbdd



[gentoo-commits] repo/gentoo:master commit in: kde-plasma/plasma-workspace/

2016-11-19 Thread Michael Palimaka
commit: 5502bfc254d0a0df518590bc787ff987f778e83f
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 19 09:36:02 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 09:36:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5502bfc2

kde-plasma/plasma-workspace: revision bump to ensure rebuild against non-broken 
kde-frameworks/kpackage

KDE-bug: 372594

Package-Manager: portage-2.3.2

 ...plasma-workspace-5.8.3-r3.ebuild => plasma-workspace-5.8.3-r4.ebuild} | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r3.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r4.ebuild
similarity index 98%
rename from kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r3.ebuild
rename to kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r4.ebuild
index c97f621..481701d 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r3.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r4.ebuild
@@ -68,6 +68,7 @@ COMMON_DEPEND="
$(add_qt_dep qtx11extras)
$(add_qt_dep qtxml)
dev-libs/libdbusmenu-qt[qt5]
+   || ( >=kde-frameworks/kpackage-5.28.0-r1 


[gentoo-commits] proj/kde:master commit in: dev-libs/kreport/

2016-11-19 Thread Michael Palimaka
commit: 10952edcd661a43febbeb651aeba89eddb6ac8d9
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Nov 19 00:42:19 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 00:53:22 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=10952edc

dev-libs/kreport: Add USE=marble,scripting,webkit for missing DEPENDs

Package-Manager: portage-2.3.0

 dev-libs/kreport/kreport-.ebuild | 15 +--
 dev-libs/kreport/metadata.xml|  4 
 2 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/dev-libs/kreport/kreport-.ebuild 
b/dev-libs/kreport/kreport-.ebuild
index 9bf8237..c951f2a 100644
--- a/dev-libs/kreport/kreport-.ebuild
+++ b/dev-libs/kreport/kreport-.ebuild
@@ -15,22 +15,33 @@ DESCRIPTION="Framework for creation and generation of 
reports in multiple format
 
 LICENSE="LGPL-2+"
 KEYWORDS=""
-IUSE=""
+IUSE="marble +scripting webkit"
 
 RDEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kross)
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
dev-libs/kproperty
+   marble? ( $(add_kdeapps_dep marble '' '' '5=') )
+   scripting? ( $(add_qt_dep qtdeclarative) )
+   webkit? ( $(add_qt_dep qtwebkit) )
 "
 DEPEND="${RDEPEND}
${PYTHON_DEPS}
 "
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package marble Marble)
+   $(cmake-utils_use_find_package webkit Qt5WebKitWidgets)
+   -DKREPORT_SCRIPTING=$(usex scripting)
+   )
+   kde5_src_configure
+}

diff --git a/dev-libs/kreport/metadata.xml b/dev-libs/kreport/metadata.xml
index 2fdbf33..b26b44c 100644
--- a/dev-libs/kreport/metadata.xml
+++ b/dev-libs/kreport/metadata.xml
@@ -5,4 +5,8 @@
k...@gentoo.org
Gentoo KDE Project

+   
+   Enable displaying of maps using 
kde-apps/marble
+   Support Qml scripting using 
dev-qt/qtdeclarative
+   
 



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

2016-11-19 Thread Michael Palimaka
commit: db9a3607f7f9a4e70dbe1a67bd1b333198e7820b
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Nov 19 01:00:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 01:00:03 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=db9a3607

kde-apps/libkipi: Bump subslot

Package-Manager: portage-2.3.0

 kde-apps/libkipi/libkipi-16.12.49..ebuild | 2 +-
 kde-apps/libkipi/libkipi-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/libkipi/libkipi-16.12.49..ebuild 
b/kde-apps/libkipi/libkipi-16.12.49..ebuild
index 5c0471d..a2d93eb 100644
--- a/kde-apps/libkipi/libkipi-16.12.49..ebuild
+++ b/kde-apps/libkipi/libkipi-16.12.49..ebuild
@@ -9,7 +9,7 @@ inherit kde5
 
 DESCRIPTION="A library for image plugins accross KDE applications"
 LICENSE="GPL-2+"
-SLOT="5/31"
+SLOT="5/32"
 KEYWORDS=""
 IUSE=""
 

diff --git a/kde-apps/libkipi/libkipi-.ebuild 
b/kde-apps/libkipi/libkipi-.ebuild
index 5c0471d..a2d93eb 100644
--- a/kde-apps/libkipi/libkipi-.ebuild
+++ b/kde-apps/libkipi/libkipi-.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 
 DESCRIPTION="A library for image plugins accross KDE applications"
 LICENSE="GPL-2+"
-SLOT="5/31"
+SLOT="5/32"
 KEYWORDS=""
 IUSE=""
 



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

2016-11-19 Thread Michael Palimaka
commit: 5afa991ccc424d87451ab7d1d3a118e899ed65a6
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Nov 19 00:13:02 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 00:18:29 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5afa991c

kde5.eclass: Add KDE_SUBSLOT

 eclass/kde5.eclass | 33 ++---
 1 file changed, 30 insertions(+), 3 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 4876d7c..a6fdfa4 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -113,6 +113,14 @@ fi
 # add a dependency on sec-policy/selinux-${KDE_SELINUX_MODULE} to (R)DEPEND.
 : ${KDE_SELINUX_MODULE:=none}
 
+# @ECLASS-VARIABLE: KDE_SUBSLOT
+# @DESCRIPTION:
+# If set to "false", do nothing.
+# If set to "true", add a subslot to the package, where subslot is either
+# defined as major.minor version for kde-*/ categories or ${PV} if other.
+# For any other value, that value will be used as subslot.
+: ${KDE_SUBSLOT:=false}
+
 # @ECLASS-VARIABLE: KDE_UNRELEASED
 # @INTERNAL
 # @DESCRIPTION
@@ -133,12 +141,31 @@ fi
 
 LICENSE="GPL-2"
 
+SLOT=5
+
 if [[ ${CATEGORY} = kde-frameworks ]]; then
-   SLOT=5/$(get_version_component_range 1-2)
-else
-   SLOT=5
+   KDE_SUBSLOT=true
 fi
 
+case ${KDE_SUBSLOT} in
+   false)  ;;
+   true)
+   case ${CATEGORY} in
+   kde-frameworks | \
+   kde-plasma | \
+   kde-apps)
+   SLOT+="/$(get_version_component_range 1-2)"
+   ;;
+   *)
+   SLOT+="/${PV}"
+   ;;
+   esac
+   ;;
+   *)
+   SLOT+="/${KDE_SUBSLOT}"
+   ;;
+esac
+
 case ${KDE_AUTODEPS} in
false)  ;;
*)



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

2016-11-19 Thread Michael Palimaka
commit: babaa9e08f100f389b352a3c1553ce183cc16d18
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Nov 18 19:21:31 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 00:18:29 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=babaa9e0

kde-apps/marble: Add KDE_SUBSLOT=true

Package-Manager: portage-2.3.0

 kde-apps/marble/marble-16.12.49..ebuild | 1 +
 kde-apps/marble/marble-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/kde-apps/marble/marble-16.12.49..ebuild 
b/kde-apps/marble/marble-16.12.49..ebuild
index f79dac2..c772895 100644
--- a/kde-apps/marble/marble-16.12.49..ebuild
+++ b/kde-apps/marble/marble-16.12.49..ebuild
@@ -5,6 +5,7 @@
 EAPI=6
 
 KDE_HANDBOOK="forceoptional"
+KDE_SUBSLOT="true"
 KDE_TEST="forceoptional"
 VIRTUALX_REQUIRED="test"
 inherit kde5

diff --git a/kde-apps/marble/marble-.ebuild 
b/kde-apps/marble/marble-.ebuild
index f79dac2..c772895 100644
--- a/kde-apps/marble/marble-.ebuild
+++ b/kde-apps/marble/marble-.ebuild
@@ -5,6 +5,7 @@
 EAPI=6
 
 KDE_HANDBOOK="forceoptional"
+KDE_SUBSLOT="true"
 KDE_TEST="forceoptional"
 VIRTUALX_REQUIRED="test"
 inherit kde5



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

2016-11-19 Thread Mike Pagano
commit: f13a81bef4970bd4993d84ad318bfe4990d92536
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Nov 19 11:05:07 2016 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Nov 19 11:05:07 2016 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=f13a81be

Linux patch 4.8.9

 _README|4 +
 1008_linux-4.8.9.patch | 3120 
 2 files changed, 3124 insertions(+)

diff --git a/_README b/_README
index 236529a..d5af994 100644
--- a/_README
+++ b/_README
@@ -75,6 +75,10 @@ Patch:  1007_linux-4.8.8.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.8.8
 
+Patch:  1008_linux-4.8.9.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.8.9
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1008_linux-4.8.9.patch b/1008_linux-4.8.9.patch
new file mode 100644
index 000..6b106d5
--- /dev/null
+++ b/1008_linux-4.8.9.patch
@@ -0,0 +1,3120 @@
+diff --git a/Makefile b/Makefile
+index 8f18daa2c76a..c1519ab85258 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 8
+-SUBLEVEL = 8
++SUBLEVEL = 9
+ EXTRAVERSION =
+ NAME = Psychotic Stoned Sheep
+ 
+diff --git a/arch/arc/kernel/time.c b/arch/arc/kernel/time.c
+index f927b8dc6edd..c10390d1ddb6 100644
+--- a/arch/arc/kernel/time.c
 b/arch/arc/kernel/time.c
+@@ -152,14 +152,17 @@ static cycle_t arc_read_rtc(struct clocksource *cs)
+   cycle_t  full;
+   } stamp;
+ 
+-
+-  __asm__ __volatile(
+-  "1: \n"
+-  "   lr  %0, [AUX_RTC_LOW]   \n"
+-  "   lr  %1, [AUX_RTC_HIGH]  \n"
+-  "   lr  %2, [AUX_RTC_CTRL]  \n"
+-  "   bbit0.nt%2, 31, 1b  \n"
+-  : "=r" (stamp.low), "=r" (stamp.high), "=r" (status));
++  /*
++   * hardware has an internal state machine which tracks readout of
++   * low/high and updates the CTRL.status if
++   *  - interrupt/exception taken between the two reads
++   *  - high increments after low has been read
++   */
++  do {
++  stamp.low = read_aux_reg(AUX_RTC_LOW);
++  stamp.high = read_aux_reg(AUX_RTC_HIGH);
++  status = read_aux_reg(AUX_RTC_CTRL);
++  } while (!(status & _BITUL(31)));
+ 
+   return stamp.full;
+ }
+diff --git a/arch/arc/mm/dma.c b/arch/arc/mm/dma.c
+index 20afc65e22dc..9288851d43a0 100644
+--- a/arch/arc/mm/dma.c
 b/arch/arc/mm/dma.c
+@@ -105,6 +105,31 @@ static void arc_dma_free(struct device *dev, size_t size, 
void *vaddr,
+   __free_pages(page, get_order(size));
+ }
+ 
++static int arc_dma_mmap(struct device *dev, struct vm_area_struct *vma,
++  void *cpu_addr, dma_addr_t dma_addr, size_t size,
++  unsigned long attrs)
++{
++  unsigned long user_count = vma_pages(vma);
++  unsigned long count = PAGE_ALIGN(size) >> PAGE_SHIFT;
++  unsigned long pfn = __phys_to_pfn(plat_dma_to_phys(dev, dma_addr));
++  unsigned long off = vma->vm_pgoff;
++  int ret = -ENXIO;
++
++  vma->vm_page_prot = pgprot_noncached(vma->vm_page_prot);
++
++  if (dma_mmap_from_coherent(dev, vma, cpu_addr, size, ))
++  return ret;
++
++  if (off < count && user_count <= (count - off)) {
++  ret = remap_pfn_range(vma, vma->vm_start,
++pfn + off,
++user_count << PAGE_SHIFT,
++vma->vm_page_prot);
++  }
++
++  return ret;
++}
++
+ /*
+  * streaming DMA Mapping API...
+  * CPU accesses page via normal paddr, thus needs to explicitly made
+@@ -193,6 +218,7 @@ static int arc_dma_supported(struct device *dev, u64 
dma_mask)
+ struct dma_map_ops arc_dma_ops = {
+   .alloc  = arc_dma_alloc,
+   .free   = arc_dma_free,
++  .mmap   = arc_dma_mmap,
+   .map_page   = arc_dma_map_page,
+   .map_sg = arc_dma_map_sg,
+   .sync_single_for_device = arc_dma_sync_single_for_device,
+diff --git a/arch/s390/hypfs/hypfs_diag.c b/arch/s390/hypfs/hypfs_diag.c
+index 28f03ca60100..794bebb43d23 100644
+--- a/arch/s390/hypfs/hypfs_diag.c
 b/arch/s390/hypfs/hypfs_diag.c
+@@ -363,11 +363,11 @@ out:
+ static int diag224_get_name_table(void)
+ {
+   /* memory must be below 2GB */
+-  diag224_cpu_names = kmalloc(PAGE_SIZE, GFP_KERNEL | GFP_DMA);
++  diag224_cpu_names = (char *) __get_free_page(GFP_KERNEL | GFP_DMA);
+   if (!diag224_cpu_names)
+   return -ENOMEM;
+   if (diag224(diag224_cpu_names)) {
+-  kfree(diag224_cpu_names);
++  free_page((unsigned long) diag224_cpu_names);
+   return -EOPNOTSUPP;
+   }

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

2016-11-19 Thread Jeroen Roovers
commit: 0be2a9a671a343a2102a3491d723dbccea88061c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 11:25:11 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 11:27:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be2a9a6

x11-libs/c++-gtk-utils: Version bump.

Package-Manager: portage-2.3.2

 x11-libs/c++-gtk-utils/Manifest|  2 ++
 x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild | 42 ++
 x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.14.ebuild | 42 ++
 3 files changed, 86 insertions(+)

diff --git a/x11-libs/c++-gtk-utils/Manifest b/x11-libs/c++-gtk-utils/Manifest
index f26216f..0956979 100644
--- a/x11-libs/c++-gtk-utils/Manifest
+++ b/x11-libs/c++-gtk-utils/Manifest
@@ -1,6 +1,8 @@
 DIST c++-gtk-utils-2.0.27.tar.gz 2608722 SHA256 
218b518d0945212d1dc40cf3ee420e4c51993bc0f8e9f8acbe03c099c9f940f7 SHA512 
8d6c12797d54d9b379302bfd572ded8b9e6e64ea5911ba4b13a0dd6d588711ec6d10bc3a83af8cab23165feeaae8873de5c3945cec94954590806f60490038bc
 WHIRLPOOL 
c8a19fdef5c6a7cf15615aad5083d666b487d1ebb2443977853822c97a991f5da8b461d8cb1c6bfc986325954b78a2129bdf328a4fdc0e4d8f2739ceffd79aeb
 DIST c++-gtk-utils-2.0.29.tar.gz 2704000 SHA256 
279fcf0cf22ea4494eef7f690ae8722f30160bf7bf78b8e97d3803bbedce9368 SHA512 
52a74609eee41c53b91de119533c67627f68900509763717c7c8738bcdab0747a0f0f62b4b25110a311ad0951bdb5670bf13898787a576438663face967d
 WHIRLPOOL 
d6e01457f4bbfb62832aeeb21eaa5d3e28cc807b8775d0ec2ce6f615c5c2a3d1651024dc6441ecd08400d413fef9b6f883c77e9c426be1896d7c91001295366c
 DIST c++-gtk-utils-2.0.30.tar.gz 2707580 SHA256 
4684662d217b75dfdc2cf6a199c99d3b46de50564f7a7c39b8a094c3251330fa SHA512 
220048b2ad1121c0cface6fd8bceaa86f1c228a1156ef5a4b1d13af421583fd6dfefe6309259f4f23125578b80fe945625b089dad272041d9681ac032d18b6a7
 WHIRLPOOL 
1bdecda46c9b80a1d243e3c7b31e8c0608ca9c7fcb4c319c2b0b893478ae0994fe0f8b01a3af9bb3931e47ea1ca2ab5643488aa08adc652f68f1b0b930dffbec
+DIST c++-gtk-utils-2.0.31.tar.gz 2756583 SHA256 
e7a80292f4d7f93059a5047a6b1cf339295519998d04cfd5ad04fb2341177979 SHA512 
688e738c2433838ea8eaa6f51f34d201f93b186b3689ac7ff93b1467fa178a17fd31884a7fe2f1358cbfc0cc7001c0c95ce8aaadaaf9b84f11e476b94f777311
 WHIRLPOOL 
719a0990b12b02bf571b585d686b46da4c0298b8e2de66bba99614cc9f5a27fe51c988d04638c752675c3f4e6cb53fb62f190955a690db8ca3c13b53855d
 DIST c++-gtk-utils-2.2.10.tar.gz 2643918 SHA256 
e898bf19455706ebe593e6d795584e9a8ed26046c0928597a94c89fa33321191 SHA512 
a0ea673988c95404846da6af6ff7ea51978653df3781be6a8323db5fe96826e94b0de9bbda5d3b821bbba2286dda6e66f4c099de4cd8da7bdefa4caa684d7a31
 WHIRLPOOL 
c4901315da82e7633b8e860628c69aad5451e6ff9a2da8eeb5adc245b0b6f5ca6bc703666f4cb3ae169823605c94d445742b2f9790c9b6cec0040cebb2ca7081
 DIST c++-gtk-utils-2.2.12.tar.gz 2738884 SHA256 
3e69fd4dc952bf305c95f37417edc2c387ec84e0aebeffa49c2828725e2d76e9 SHA512 
c2edca67104b304a0cdbceb9903f6060594e80024a7e156db9abc0a8a9360361467bf356860197a0d1eb9549e2452c5e5075d0a1a34cedc3e29760783b82f270
 WHIRLPOOL 
e21d265bcde114a2d7d91af383ae507675b3c2a10bbd9f333008fbd675a0681cd898b4c0ef07a5ca866b73e29f472cc285dd73346e8f4bb65cf79ff9eaed6017
 DIST c++-gtk-utils-2.2.13.tar.gz 2742099 SHA256 
b46db4b656a3b921ff229291fd981a5dbb828e289f5294acb81db7441634971b SHA512 
42b4f92722e3e03546311702ed233e248d39fcb38b51c687e34ce48e57abe31078c31a99d199aeb3c8de68ae0cf280b606a2585c43898d4a003f962bbe132c2f
 WHIRLPOOL 
8ce2bfeb993659dfd7a52d4deb1b11f36578c81d219a979b6fa13426403a63bf7cc00cdd13490ca45868e4ec8e342d36e098bccf067a621896fbbaa2e2b5b8eb
+DIST c++-gtk-utils-2.2.14.tar.gz 2797320 SHA256 
ac345abc190b45a110be274059afb11ad108035e9821cc558bc1dd4f0cc83972 SHA512 
c32de0023f6e1bf0c32cc9b2ee4a38394f938e8ae631ed702f3a5b941cda024594dc147924239e24d94462393cc49e408a1cbafc06f9a31006b639165600941e
 WHIRLPOOL 
49b651c20151cd0f8cfe6af81a9e39b9c64854289781d2aa59ffaf3b4e79a88388416f539065ad9d636c47d234f3c4ae854af10b13eb5748a3a57134da324c1a

diff --git a/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild 
b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild
new file mode 100644
index ..562a878
--- /dev/null
+++ b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils
+
+DESCRIPTION="A library containing a number of classes and functions for 
programming GTK+ programs using C++"
+HOMEPAGE="http://cxx-gtk-utils.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN/++/xx}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE="+gtk nls static-libs"
+SLOT="3"
+
+RDEPEND="
+   >=dev-libs/glib-2.26
+   gtk? ( x11-libs/gtk+:3 )
+"
+DEPEND="
+   ${RDEPEND}
+   nls? ( sys-devel/gettext )
+   virtual/pkgconfig
+"
+
+DOCS=( ChangeLog )
+
+src_configure() {
+   econf \
+   $(use_enable nls) \
+   $(use_with gtk) \
+   

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

2016-11-19 Thread Jeroen Roovers
commit: 981e3f5ea79cef31afb206fa9b7edb9f3ca22f33
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 11:27:01 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 11:27:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=981e3f5e

x11-libs/c++-gtk-utils: Shorten DESCRIPTION.

Package-Manager: portage-2.3.2

 x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild | 2 +-
 x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.14.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild 
b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild
index 562a878..5dbf95f 100644
--- a/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild
+++ b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.0.31.ebuild
@@ -5,7 +5,7 @@
 EAPI=6
 inherit eutils
 
-DESCRIPTION="A library containing a number of classes and functions for 
programming GTK+ programs using C++"
+DESCRIPTION="A number of classes and functions for programming GTK+ programs 
using C++"
 HOMEPAGE="http://cxx-gtk-utils.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN/++/xx}/${P}.tar.gz"
 

diff --git a/x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.14.ebuild 
b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.14.ebuild
index 76f41f0..92fd8e7 100644
--- a/x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.14.ebuild
+++ b/x11-libs/c++-gtk-utils/c++-gtk-utils-2.2.14.ebuild
@@ -5,7 +5,7 @@
 EAPI=6
 inherit eutils
 
-DESCRIPTION="A library containing a number of classes and functions for 
programming GTK+ programs using C++"
+DESCRIPTION="A number of classes and functions for programming GTK+ programs 
using C++"
 HOMEPAGE="http://cxx-gtk-utils.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN/++/xx}/${P}.tar.gz"
 



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

2016-11-19 Thread Jeroen Roovers
commit: 15b0f78b54eba02a7fa265909ca52828c0fdc1b7
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 08:55:03 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 08:55:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b0f78b

net-analyzer/tcptraceroute: Depend on net-libs/libnet:1.1 (bug #600154 by 
Toralf Förster).

Package-Manager: portage-2.3.2

 net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild 
b/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild
index a72e415..b68676f 100644
--- a/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild
+++ b/net-analyzer/tcptraceroute/tcptraceroute-1.5_beta7-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ SLOT="0"
 KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ppc ppc64 sparc x86 ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux"
 
 DEPEND="
-   net-libs/libnet
+   net-libs/libnet:1.1
net-libs/libpcap
 "
 RDEPEND="${DEPEND}"



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

2016-11-19 Thread Jeroen Roovers
commit: 9fba171bb2adb3cb04c8f71191336ee8ab44f011
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 09:25:38 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 09:25:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fba171b

media-gfx/povray: Stable for PPC64 (bug #550018).

Package-Manager: portage-2.3.2
RepoMan-Options: --ignore-arches

 media-gfx/povray/povray-3.7.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/povray/povray-3.7.0.0-r1.ebuild 
b/media-gfx/povray/povray-3.7.0.0-r1.ebuild
index c8f380a..cee0d06 100644
--- a/media-gfx/povray/povray-3.7.0.0-r1.ebuild
+++ b/media-gfx/povray/povray-3.7.0.0-r1.ebuild
@@ -22,7 +22,7 @@ 
SRC_URI="https://github.com/POV-Ray/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="AGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~mips ppc ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="debug +io-restrictions openexr static-libs tiff X"
 
 DEPEND="



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

2016-11-19 Thread Kent Fredric
commit: 10e598f98856628c2526b78085a1d53c3223267c
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 09:03:03 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 10:04:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10e598f9

dev-perl/Contextual-Return: Bump to version 0.4.9

Upstream:
- Improved FREEZE and DUMP implementations

Package-Manager: portage-2.3.2

 .../Contextual-Return-0.4.9.ebuild | 29 ++
 dev-perl/Contextual-Return/Manifest|  1 +
 2 files changed, 30 insertions(+)

diff --git a/dev-perl/Contextual-Return/Contextual-Return-0.4.9.ebuild 
b/dev-perl/Contextual-Return/Contextual-Return-0.4.9.ebuild
new file mode 100644
index ..fab3829
--- /dev/null
+++ b/dev-perl/Contextual-Return/Contextual-Return-0.4.9.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=DCONWAY
+DIST_VERSION=0.004009
+inherit perl-module
+
+DESCRIPTION="Create context-sensitive return values"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~ppc-aix"
+IUSE="test"
+
+RDEPEND="
+   dev-perl/Want
+   virtual/perl-version
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( virtual/perl-Test-Simple )
+"
+
+src_test() {
+   perl_rm_files t/pod.t
+   perl-module_src_test
+}

diff --git a/dev-perl/Contextual-Return/Manifest 
b/dev-perl/Contextual-Return/Manifest
index f5013e5..31e56b8 100644
--- a/dev-perl/Contextual-Return/Manifest
+++ b/dev-perl/Contextual-Return/Manifest
@@ -1,2 +1,3 @@
 DIST Contextual-Return-0.004007.tar.gz 39900 SHA256 
3a8e81b3592c581d21fc567c7965c329bac9ffc39ef3c3e2cbb5706621d938ff SHA512 
021b7dda5724f934e758e4781ae848697f98499db8ab0b3c0a6259128202ea0d8e8d7faeee47d469fa72f82b8be2b66aa959a2267a32bb486512407e0a2fb6c5
 WHIRLPOOL 
336b1993d99fa96dea3efb5b592ed5724414a02e11a019e441d943e13b87e3dc79af749bb9b5fade97e35d12d4bc82aca2eb67d664f35295cf37115a5b22fea6
 DIST Contextual-Return-0.004008.tar.gz 40585 SHA256 
db868be1c4567bec6b9fcc7ab511b80acf2640aa86c08974dd0927af5f3f07c9 SHA512 
7eb2ac596197a46459ea345d29859986ea27657270353913d403516f224785fbacfb9de3cfe673f33c92cb51cce846bd40901ac3e34740d38df49f343dab1f33
 WHIRLPOOL 
4e4048a3bd2283586089616ddfe0fb6efcac915c026e74ea07f6fc4b1c7ddb226d88913f0d581723fad92ddf201790abad7cd6758cd3b6b14189ec9c1b929873
+DIST Contextual-Return-0.004009.tar.gz 40813 SHA256 
b5454b0657d44925aa382ac4c4c1cade16ea090991420918259ca452adb864a3 SHA512 
f59d23a176fed1398a54b31ca53907978585366f06a7c45f3a7764b30cf175c045de06a525e2b9a01907eb3c44e4a2f9cb854af4c4e4c24f27b983ec90d31ea1
 WHIRLPOOL 
3ac921bf192f44d3b208460695a3c67783b27737f1a78ec97b65e417f8f0b6b3eb6b197d004ba131159391f654180935c59716e63209dc5106e27fabb1008a8b



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

2016-11-19 Thread Michael Palimaka
commit: 6764ceba6d6539c227bb1abb2f47932a7e9f97c5
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Fri Nov 18 19:10:34 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 10:47:23 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6764ceba

kde-apps/konqueror: Drop unused DEPEND

Upstream commit bca1425fe6dc2fd334742fc3e6560bfcc2440e80

Package-Manager: portage-2.3.0

 kde-apps/konqueror/konqueror-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-apps/konqueror/konqueror-.ebuild 
b/kde-apps/konqueror/konqueror-.ebuild
index 1b068c1..f799192 100644
--- a/kde-apps/konqueror/konqueror-.ebuild
+++ b/kde-apps/konqueror/konqueror-.ebuild
@@ -31,7 +31,6 @@ COMMON_DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kded)
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kdesu)
$(add_frameworks_dep kguiaddons)



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

2016-11-19 Thread Michael Palimaka
commit: e3826972c4283b4b76c23a8894e8dbb3064669db
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Nov 17 23:02:19 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 10:47:23 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e3826972

kde-apps/kio-extras: Raise QT_MINIMAL to 5.7.0

Upstream commit a00069f7d18562f20f5033bcc96e4537cf92eae1

Package-Manager: portage-2.3.0

 kde-apps/kio-extras/kio-extras-16.12.49..ebuild | 1 +
 kde-apps/kio-extras/kio-extras-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/kde-apps/kio-extras/kio-extras-16.12.49..ebuild 
b/kde-apps/kio-extras/kio-extras-16.12.49..ebuild
index 41b3922..86ef2be 100644
--- a/kde-apps/kio-extras/kio-extras-16.12.49..ebuild
+++ b/kde-apps/kio-extras/kio-extras-16.12.49..ebuild
@@ -6,6 +6,7 @@ EAPI=6
 
 KDE_HANDBOOK="forceoptional"
 KDE_TEST="optional"
+QT_MINIMAL="5.7.0"
 VIRTUALX_REQUIRED="test"
 inherit kde5
 

diff --git a/kde-apps/kio-extras/kio-extras-.ebuild 
b/kde-apps/kio-extras/kio-extras-.ebuild
index 41b3922..86ef2be 100644
--- a/kde-apps/kio-extras/kio-extras-.ebuild
+++ b/kde-apps/kio-extras/kio-extras-.ebuild
@@ -6,6 +6,7 @@ EAPI=6
 
 KDE_HANDBOOK="forceoptional"
 KDE_TEST="optional"
+QT_MINIMAL="5.7.0"
 VIRTUALX_REQUIRED="test"
 inherit kde5
 



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

2016-11-19 Thread Michael Palimaka
commit: 8a058c4d005bc96e9934ede39c644260cea9a523
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Nov 17 22:51:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 10:47:23 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8a058c4d

kde-apps/kpat: Fix DEPENDs

Upstream commit cf9f191a35c381185c7fc4d9fc5e0c349adb08db

Package-Manager: portage-2.3.0

 kde-apps/kpat/kpat-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kpat/kpat-.ebuild b/kde-apps/kpat/kpat-.ebuild
index 8632307..a0d23c1 100644
--- a/kde-apps/kpat/kpat-.ebuild
+++ b/kde-apps/kpat/kpat-.ebuild
@@ -20,9 +20,9 @@ DEPEND="
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kcrash)
$(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kio)
$(add_frameworks_dep knewstuff)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)



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

2016-11-19 Thread Michael Palimaka
commit: f88754110e8f02040c887f35bf76b565f61be207
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Thu Nov 17 23:20:27 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 10:47:23 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f8875411

kde-apps/kcachegrind: Update HOMEPAGE

Package-Manager: portage-2.3.0

 kde-apps/kcachegrind/kcachegrind-16.12.49..ebuild | 4 ++--
 kde-apps/kcachegrind/kcachegrind-.ebuild  | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/kde-apps/kcachegrind/kcachegrind-16.12.49..ebuild 
b/kde-apps/kcachegrind/kcachegrind-16.12.49..ebuild
index 9f2f5c8..1ed7642 100644
--- a/kde-apps/kcachegrind/kcachegrind-16.12.49..ebuild
+++ b/kde-apps/kcachegrind/kcachegrind-16.12.49..ebuild
@@ -7,9 +7,9 @@ EAPI=6
 KDE_HANDBOOK="optional"
 inherit kde4-base
 
-DESCRIPTION="KDE Frontend for Cachegrind"
+DESCRIPTION="Frontend for Cachegrind by KDE"
 HOMEPAGE="https://www.kde.org/applications/development/kcachegrind
-http://kcachegrind.sourceforge.net;
+https://kcachegrind.github.io/html/Home.html;
 KEYWORDS=""
 IUSE="debug"
 

diff --git a/kde-apps/kcachegrind/kcachegrind-.ebuild 
b/kde-apps/kcachegrind/kcachegrind-.ebuild
index b0aa607..27d1f53 100644
--- a/kde-apps/kcachegrind/kcachegrind-.ebuild
+++ b/kde-apps/kcachegrind/kcachegrind-.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 
 DESCRIPTION="Frontend for Cachegrind by KDE"
 HOMEPAGE="https://www.kde.org/applications/development/kcachegrind
-http://kcachegrind.sourceforge.net;
+https://kcachegrind.github.io/html/Home.html;
 KEYWORDS=""
 IUSE=""
 



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

2016-11-19 Thread Michael Palimaka
commit: 657a97e550138810d5b5181e611e22ea55cae47c
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 19 10:57:59 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 10:58:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657a97e5

dev-libs/kreport: revision bump to resolve automagic dependencies

Package-Manager: portage-2.3.2

 .../{kreport-3.0.0.ebuild => kreport-3.0.0-r1.ebuild} | 15 +--
 dev-libs/kreport/metadata.xml |  4 
 2 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/dev-libs/kreport/kreport-3.0.0.ebuild 
b/dev-libs/kreport/kreport-3.0.0-r1.ebuild
similarity index 67%
rename from dev-libs/kreport/kreport-3.0.0.ebuild
rename to dev-libs/kreport/kreport-3.0.0-r1.ebuild
index 22ff757..77014b0 100644
--- a/dev-libs/kreport/kreport-3.0.0.ebuild
+++ b/dev-libs/kreport/kreport-3.0.0-r1.ebuild
@@ -15,22 +15,33 @@ DESCRIPTION="Framework for creation and generation of 
reports in multiple format
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
+IUSE="marble +scripting webkit"
 
 RDEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kguiaddons)
$(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kross)
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
dev-libs/kproperty
+   marble? ( $(add_kdeapps_dep marble '' '' '5=') )
+   scripting? ( $(add_qt_dep qtdeclarative) )
+   webkit? ( $(add_qt_dep qtwebkit) )
 "
 DEPEND="${RDEPEND}
${PYTHON_DEPS}
 "
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package marble Marble)
+   $(cmake-utils_use_find_package webkit Qt5WebKitWidgets)
+   -DKREPORT_SCRIPTING=$(usex scripting)
+   )
+   kde5_src_configure
+}

diff --git a/dev-libs/kreport/metadata.xml b/dev-libs/kreport/metadata.xml
index 2fdbf33..b26b44c 100644
--- a/dev-libs/kreport/metadata.xml
+++ b/dev-libs/kreport/metadata.xml
@@ -5,4 +5,8 @@
k...@gentoo.org
Gentoo KDE Project

+   
+   Enable displaying of maps using 
kde-apps/marble
+   Support Qml scripting using 
dev-qt/qtdeclarative
+   
 



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

2016-11-19 Thread Mike Pagano
commit: ff8f1dc40d8c978f9eafa7b97ff2e44a017a9af5
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Nov 19 11:03:15 2016 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Nov 19 11:03:15 2016 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=ff8f1dc4

Linux patch 4.4.33

 _README |4 +
 1032_linux-4.4.33.patch | 1230 +++
 2 files changed, 1234 insertions(+)

diff --git a/_README b/_README
index fd829db..1789a94 100644
--- a/_README
+++ b/_README
@@ -171,6 +171,10 @@ Patch:  1031_linux-4.4.32.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.32
 
+Patch:  1032_linux-4.4.33.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.33
+
 Patch:  1500_XATTR_USER_PREFIX.patch
 From:   https://bugs.gentoo.org/show_bug.cgi?id=470644
 Desc:   Support for namespace user.pax.* on tmpfs.

diff --git a/1032_linux-4.4.33.patch b/1032_linux-4.4.33.patch
new file mode 100644
index 000..4a02c80
--- /dev/null
+++ b/1032_linux-4.4.33.patch
@@ -0,0 +1,1230 @@
+diff --git a/Makefile b/Makefile
+index fba9b09a1330..a513c045c8de 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 32
++SUBLEVEL = 33
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arc/kernel/time.c b/arch/arc/kernel/time.c
+index dfad287f1db1..dbedc576e4ca 100644
+--- a/arch/arc/kernel/time.c
 b/arch/arc/kernel/time.c
+@@ -130,14 +130,17 @@ static cycle_t arc_counter_read(struct clocksource *cs)
+   cycle_t  full;
+   } stamp;
+ 
+-
+-  __asm__ __volatile(
+-  "1: \n"
+-  "   lr  %0, [AUX_RTC_LOW]   \n"
+-  "   lr  %1, [AUX_RTC_HIGH]  \n"
+-  "   lr  %2, [AUX_RTC_CTRL]  \n"
+-  "   bbit0.nt%2, 31, 1b  \n"
+-  : "=r" (stamp.low), "=r" (stamp.high), "=r" (status));
++  /*
++   * hardware has an internal state machine which tracks readout of
++   * low/high and updates the CTRL.status if
++   *  - interrupt/exception taken between the two reads
++   *  - high increments after low has been read
++   */
++  do {
++  stamp.low = read_aux_reg(AUX_RTC_LOW);
++  stamp.high = read_aux_reg(AUX_RTC_HIGH);
++  status = read_aux_reg(AUX_RTC_CTRL);
++  } while (!(status & _BITUL(31)));
+ 
+   return stamp.full;
+ }
+diff --git a/arch/mips/include/asm/kvm_host.h 
b/arch/mips/include/asm/kvm_host.h
+index dd7cee795709..c8c04a1f1c9f 100644
+--- a/arch/mips/include/asm/kvm_host.h
 b/arch/mips/include/asm/kvm_host.h
+@@ -400,7 +400,10 @@ struct kvm_vcpu_arch {
+   /* Host KSEG0 address of the EI/DI offset */
+   void *kseg0_commpage;
+ 
+-  u32 io_gpr; /* GPR used as IO source/target */
++  /* Resume PC after MMIO completion */
++  unsigned long io_pc;
++  /* GPR used as IO source/target */
++  u32 io_gpr;
+ 
+   struct hrtimer comparecount_timer;
+   /* Count timer control KVM register */
+@@ -422,8 +425,6 @@ struct kvm_vcpu_arch {
+   /* Bitmask of pending exceptions to be cleared */
+   unsigned long pending_exceptions_clr;
+ 
+-  unsigned long pending_load_cause;
+-
+   /* Save/Restore the entryhi register when are are preempted/scheduled 
back in */
+   unsigned long preempt_entryhi;
+ 
+diff --git a/arch/mips/kvm/emulate.c b/arch/mips/kvm/emulate.c
+index 4298aeb1e20f..4c85ab808f99 100644
+--- a/arch/mips/kvm/emulate.c
 b/arch/mips/kvm/emulate.c
+@@ -1473,6 +1473,7 @@ enum emulation_result kvm_mips_emulate_load(uint32_t 
inst, uint32_t cause,
+   struct kvm_vcpu *vcpu)
+ {
+   enum emulation_result er = EMULATE_DO_MMIO;
++  unsigned long curr_pc;
+   int32_t op, base, rt, offset;
+   uint32_t bytes;
+ 
+@@ -1481,7 +1482,18 @@ enum emulation_result kvm_mips_emulate_load(uint32_t 
inst, uint32_t cause,
+   offset = inst & 0x;
+   op = (inst >> 26) & 0x3f;
+ 
+-  vcpu->arch.pending_load_cause = cause;
++  /*
++   * Find the resume PC now while we have safe and easy access to the
++   * prior branch instruction, and save it for
++   * kvm_mips_complete_mmio_load() to restore later.
++   */
++  curr_pc = vcpu->arch.pc;
++  er = update_pc(vcpu, cause);
++  if (er == EMULATE_FAIL)
++  return er;
++  vcpu->arch.io_pc = vcpu->arch.pc;
++  vcpu->arch.pc = curr_pc;
++
+   vcpu->arch.io_gpr = rt;
+ 
+   switch (op) {
+@@ -2461,9 +2473,8 @@ enum emulation_result kvm_mips_complete_mmio_load(struct 
kvm_vcpu *vcpu,
+   goto done;
+   }
+ 
+-  er = update_pc(vcpu, vcpu->arch.pending_load_cause);
+-  if (er == EMULATE_FAIL)
+-  return er;
++  /* Restore saved resume PC */
++  vcpu->arch.pc = vcpu->arch.io_pc;

[gentoo-commits] proj/kde:master commit in: kde-plasma/kinfocenter/files/

2016-11-19 Thread Michael Palimaka
commit: 498285093d28d7960e8f172f99da93d72d968a62
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Nov 19 11:03:38 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Nov 19 11:03:45 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=49828509

kde-plasma/kinfocenter: use https

Package-Manager: portage-2.3.2

 kde-plasma/kinfocenter/files/kcm-about-distrorc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-plasma/kinfocenter/files/kcm-about-distrorc 
b/kde-plasma/kinfocenter/files/kcm-about-distrorc
index bdae77a..b55389f 100644
--- a/kde-plasma/kinfocenter/files/kcm-about-distrorc
+++ b/kde-plasma/kinfocenter/files/kcm-about-distrorc
@@ -1,4 +1,4 @@
 [General]
 Name=Gentoo Linux
 LogoPath=/usr/share/kinfocenter/glogo-small.png
-Website=http://www.gentoo.org/
+Website=https://www.gentoo.org/



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

2016-11-19 Thread Alexys Jacob
commit: 02c8b45067a4bedb4645cabded16237c55b77d7b
Author: Ultrabug  gentoo  org>
AuthorDate: Sat Nov 19 11:16:33 2016 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sat Nov 19 11:17:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c8b450

removing awol proxy-maintainer

 dev-db/redis/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/dev-db/redis/metadata.xml b/dev-db/redis/metadata.xml
index c88bca0..09d7718 100644
--- a/dev-db/redis/metadata.xml
+++ b/dev-db/redis/metadata.xml
@@ -2,11 +2,6 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-b...@bergstroem.nu
-Johan Bergström
-Proxy-Maintainer, assign bugs
-  
-  
 ultra...@gentoo.org
   
   



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Clipboard/files/, dev-perl/Clipboard/

2016-11-19 Thread Patrice Clement
commit: 6ea7c366c608b4ea144a8a31cdaf2553b08bf5ef
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Nov 19 11:32:52 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Nov 19 11:33:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ea7c366

dev-perl/Clipboard: fix insecure temporary file usage.

This is a community patch taken from
https://anonscm.debian.org/cgit/pkg-perl/packages/libclipboard-perl.git/tree/debian/patches/insecure-tempfile.patch.

Courtesy of Gregor Herrmann  debian.org>.

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

Package-Manager: portage-2.3.0

 dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild | 22 +
 .../Clipboard-0.130.0-insecure-tempfile.patch  | 23 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild 
b/dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild
new file mode 100644
index ..0696164
--- /dev/null
+++ b/dev-perl/Clipboard/Clipboard-0.130.0-r2.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MODULE_AUTHOR=KING
+MODULE_VERSION=0.13
+inherit perl-module
+
+DESCRIPTION="Copy and paste with any OS"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+IUSE=""
+
+# See bug 521890.
+PATCHES=(
+   "${FILESDIR}"/"${P}"-insecure-tempfile.patch
+)
+
+RDEPEND="x11-misc/xclip"

diff --git a/dev-perl/Clipboard/files/Clipboard-0.130.0-insecure-tempfile.patch 
b/dev-perl/Clipboard/files/Clipboard-0.130.0-insecure-tempfile.patch
new file mode 100644
index ..1fd452c
--- /dev/null
+++ b/dev-perl/Clipboard/files/Clipboard-0.130.0-insecure-tempfile.patch
@@ -0,0 +1,23 @@
+Description: Fix insecure use of temporary files.
+ This is CVE-2014-5509.
+Origin: vendor
+Bug: https://rt.cpan.org/Public/Bug/Display.html?id=98435
+Forwarded: https://rt.cpan.org/Public/Bug/Display.html?id=98435
+Author: gregor herrmann 
+Last-Update: 2016-08-13
+
+--- a/scripts/clipedit
 b/scripts/clipedit
+@@ -1,10 +1,11 @@
+ #!/usr/bin/perl
+ use strict;
+ use Clipboard;
++use File::Temp qw( tempfile );
+ 
+ my $orig = Clipboard->paste;
+ 
+-my $tmpfilename = "/tmp/clipedit$$";
++my ($tmpfile, $tmpfilename) = tempfile();
+ open my $tmpfile, ">$tmpfilename" or die "Failure to open $tmpfilename: $!";
+ print $tmpfile $orig;
+ close $tmpfile;



[gentoo-commits] proj/linux-patches: New tag: 4.8-10

2016-11-19 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Nov 19 14:14:21 2016 +

New tag: 4.8-10




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

2016-11-19 Thread Alice Ferrazzi
commit: a57fd18c349810b26b980abef2444fd8c267ee41
Author: Alice Ferrazzi  gentoo  org>
AuthorDate: Sat Nov 19 14:56:17 2016 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Nov 19 14:58:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a57fd18c

sys-kernel/gentoo-sources: Linux patch 4.8.9

Package-Manager: portage-2.3.2

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.8.9.ebuild | 29 ++
 2 files changed, 32 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index c24cbbb..3d5dba2 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -74,6 +74,9 @@ DIST genpatches-4.4-33.extras.tar.xz 16356 SHA256 
1938d9cc5380cae7cb10def088e706
 DIST genpatches-4.4-34.base.tar.xz 859080 SHA256 
2e054815b7af0b23cedd90fd0d567781b17ecc1a8e7e05821a0a7346e79233b6 SHA512 
ae3303f0cdbbe52653c2ec8e3a30df77933ccb5862c89cebf89e088687360482d743020c58397e8b9248caa15bb2c6190a0c5bef05bc697238fee30e33fcdfde
 WHIRLPOOL 
11aaa290448100c8309153950692c03de0bd2648b66ca26f1c54b0fb9eba2f1a1d16dec0f88ab0cd0e6ee113ead64be238a7e5d27ccdaaa8d16c86296ff25b17
 DIST genpatches-4.4-34.experimental.tar.xz 87780 SHA256 
6a050d8763bb9b8a8fcd32b8887a1640a5941d1a8253fd845e8fb2dbd2f598ba SHA512 
1a4433e146fed5f771769790ccc45b3bbeff15b1e500e69a260bab54f52fdc74f7116529b39d148ef180f89bc05bc046268cb154a04e6c4463c4531c183c9293
 WHIRLPOOL 
eecf3fea2d77a9bd1900b7ca3fc26de673a321be46cc96d3023c764817823a034d563b08fbdc76cbc111ebd71512c15ba6ef1ef2fbea501e00dbbf0d29cda276
 DIST genpatches-4.4-34.extras.tar.xz 16352 SHA256 
b65e56fd010c22413f0c3aeb04f6ecb380510a021fcc49f2a8dd5cb7fc0c17fb SHA512 
273e428934ce29a0e57b9bfaec784da7c9bc730cdca49e0b81ce658a56edd00a586d0e77749b8cb0e932b948281ee8db7ea5044c7673663e26cfc8149de6c2bb
 WHIRLPOOL 
1911dbdaeb4400d407b590867191a03969c2a9d2add3b371372d4ab2524c460d78c4a43761977d37f51d0d1628665f7b94e940467508a536ca908eac057855db
+DIST genpatches-4.8-10.base.tar.xz 195816 SHA256 
c682b801ff8d0fa91ea25668223737fbab94e9034ea2d881992dd7b91ab36360 SHA512 
b468210994ad688512b80608e25b9969461751827c46d63060534fc9c4d34c552f0bdc325fad1fa8556e4a7cdf4b346328129a997feb562f74a1f8471249cd2c
 WHIRLPOOL 
67cfffd2aebc3253920b3abc42f8874b603f2df4e850c10575cf6210507eb25b911c4808604228c8cc1e2ad9e836d8b7c878facf460c38dd7e318e4c491b28ea
+DIST genpatches-4.8-10.experimental.tar.xz 91996 SHA256 
aa8e2fdf527534f7595fd08da6e4f4108ed7c576298793af1a20ed1c57cc87dd SHA512 
46eb1d232150e459452108b09326635d9250b1bb55beef05259bf4e64244fd46aa844dc063aa07cae4ce516338c74013b2f7f17aaefaa059b861851d356077d7
 WHIRLPOOL 
7556bfc112af421dee3e26a44b9fac70226a6cc8df27c8ef172c7bbd37705ffeda8e3b05c3cddb0127b3e47d27a952e71ffd1ac5b23c7e23fef94978182f4b1e
+DIST genpatches-4.8-10.extras.tar.xz 17228 SHA256 
2585cd316731f3390d8dcd655f5b20599576de7a0112d443154a699bd8828169 SHA512 
d43698b7ff8583bf8962097311ed22efe5a1eb072115376302312f7d2f581b743936585b82ef30920e0f124ec655320ad5df3a2572f9e8b3f82f9ce1def51578
 WHIRLPOOL 
23ff3f4edd52bca20110e9493c20bd5ebdc6bee580bfd7a63f34cf40842ea0db1b41b4f362c39fb402a5a73a3e7a1113310c3312c87794ecf8a04a8570865f72
 DIST genpatches-4.8-4.base.tar.xz 22700 SHA256 
ec60a8dd77a13b82d4f6dc862579f4647ef4b42f3d8385fbad465a2182084c22 SHA512 
6450df1fb0cf026246cf69cbed318969daa6c96615ea82d9c9e79362b5f3d4bfef634923c61910276e1c4ff3ad4fb325a7c76b2ba771123c4be125ad65662dec
 WHIRLPOOL 
4ec100607196d1eaa22784c6c224683af638faa92529dae3a476aa75fe18f60a08c766f97f4f754048135a020fc3d35281cace8a58386fcf3a0d75961299a536
 DIST genpatches-4.8-4.experimental.tar.xz 4272 SHA256 
9d9cf00237787816175dd877669c184ff7d2de72bc7e428bdb3e7c1fb3e3174c SHA512 
d701269683acdef0d5e472323d7e56a44d1e9c2cffd695005688ff3c6cca161254957cc572b583aedaa9bee3db6da085a0053d3a7961bd81cfeed1fed8239b63
 WHIRLPOOL 
4058bfa922a54f7bacba79c0820ea13dd05c9d07abe8d5be17d937b3533f8b0c279f2eca00cfa660c0ca88f991590ca6432238c69ef08b837f6981bfca138da8
 DIST genpatches-4.8-4.extras.tar.xz 17244 SHA256 
69cdebdb2cb1b7c2b9791afd372267089f5a9f83c3e74ae16f1497d49abfe081 SHA512 
4238be54a0315eae698b7cd48a3a459ddf43ddf1f07e884910696b97c7dfc3d8a5b5b14ac96fdf69ea8fd37203a32a78fc45e9576e5e9217afaa0a2a6674c8e1
 WHIRLPOOL 
b7107325834f02e486419a8006e0f5c478a46fb33e1df90f2d4b46aac36a221115698777a30cc8414cb5daa419e8bef17d55e5c9536e17562d88ea37eea5a5ad

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.8.9.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.8.9.ebuild
new file mode 100644
index ..06ba867
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.8.9.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="10"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips 

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

2016-11-19 Thread Anthony G. Basile
commit: bd3777bf8f24397ec783b3b20387d14a39dc76fc
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 19 15:12:37 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 19 15:12:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd3777bf

sys-apps/gradm: stable on amd64 and x86, and remove older

Package-Manager: portage-2.3.0

 sys-apps/gradm/Manifest  |  1 -
 sys-apps/gradm/gradm-3.1.201507191652.ebuild | 48 
 sys-apps/gradm/gradm-3.1.201607172312.ebuild |  2 +-
 3 files changed, 1 insertion(+), 50 deletions(-)

diff --git a/sys-apps/gradm/Manifest b/sys-apps/gradm/Manifest
index 19142f8..a1d5c54 100644
--- a/sys-apps/gradm/Manifest
+++ b/sys-apps/gradm/Manifest
@@ -1,4 +1,3 @@
-DIST gradm-3.1-201507191652.tar.gz 91460 SHA256 
2f14c357bf0459e502a4e108b76c3f6240aa484762d07bb1687796b9b9297a50 SHA512 
94b655164369d3ae061ae74710db1098e743a435eecdee9faef77b39aa3fe58f552b4479e55c9546b3c25dea194dc490d9442fc404318628c77d1ecd05d6243e
 WHIRLPOOL 
22041c8424bacccdb53eef953b2419a84b24318caac91e137c59b3b88a5ef57d32dfe31dcf8ddb0c36e35b935db0526b9778ac0650d6dfdf612a469ccdc17f78
 DIST gradm-3.1-201603152148.tar.gz 91549 SHA256 
07f4decbc95ddfb8a88a35ab2960705fb48d0daf108afc09c2b752e2e86fd7b5 SHA512 
a423db1dfdaa0b068970b92dc970d6e10bfc20695437e92d967b064c3efe05114ab6de672eec984ab2f048b67b12ec8c6667a71bc584f03e5d2f0ebab1476158
 WHIRLPOOL 
69b4808f71c55a51784397870d115b851dedd845f8bd588b75d7a39cab140e29eb20ec83542979d6265b203ec78c9a45bc6b1eecb6bcaa061450a3e8fac2512d
 DIST gradm-3.1-201607172312.tar.gz 91667 SHA256 
4281c72e3e82f0ea2c01d124975c19326b2157c10911fa065c1549195d5e6ee4 SHA512 
61f14038ee555b99e4d0096dd01697d8adba45e057ffceadb44eafbdfba807b53030684c5073d169c005902acfa6baa673975ed4ab00ad035941c209f8f1d2e2
 WHIRLPOOL 
38fd29b829b78aa016e922ba011bcfeba0cc8de8d45ccacf2b7658153dcbed54df7035c6bcead8b4956595f812f3ca35a8553b364feb37352e5e39eee15c2661
 DIST gradm-3.1-201608131257.tar.gz 91949 SHA256 
2b771346458f55805713e4cdfc4fefba1da88826dd9ecff38dacd0087331a578 SHA512 
0947abda8d4085fd6f4a569a29f146d6f093c7013ea3aba50df4fb740487b93696b63ab475eb862cfcd26aeb62cd69a55c3d6083b91a2eb9349ad566735f8cfe
 WHIRLPOOL 
99d9c32ec7bba80e57cc3b543a9f9df5c0317226b7e5cf146b5d6fcab3b600577adc79f83cc031f94a3526875a99ce9af97de08139b3e933bf341a35d41c7d70

diff --git a/sys-apps/gradm/gradm-3.1.201507191652.ebuild 
b/sys-apps/gradm/gradm-3.1.201507191652.ebuild
deleted file mode 100644
index eeae39c..
--- a/sys-apps/gradm/gradm-3.1.201507191652.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-inherit flag-o-matic toolchain-funcs versionator eutils udev
-
-MY_PV="$(replace_version_separator 2 -)"
-
-DESCRIPTION="Administrative interface for the grsecurity Role Based Access 
Control system"
-HOMEPAGE="http://www.grsecurity.net/;
-SRC_URI="https://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.tar.gz;
-LICENSE="GPL-2"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
-IUSE="pam"
-
-RDEPEND=""
-DEPEND="
-   sys-devel/bison
-   sys-devel/flex
-   pam? ( virtual/pam )"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
-   epatch "${FILESDIR}"/respect-gentoo-env-r3.patch
-   sed -i -e "s:/lib/udev:$(get_udevdir):" Makefile || die
-}
-
-src_compile() {
-   local target
-   use pam || target="nopam"
-
-   emake ${target} CC="$(tc-getCC)" OPT_FLAGS="${CFLAGS}"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-   fperms 711 /sbin/gradm
-}
-
-pkg_postinst() {
-   ewarn
-   ewarn "Be sure to set a password with 'gradm -P' before enabling 
learning mode."
-   ewarn
-}

diff --git a/sys-apps/gradm/gradm-3.1.201607172312.ebuild 
b/sys-apps/gradm/gradm-3.1.201607172312.ebuild
index ab71f12..aa0d4a4 100644
--- a/sys-apps/gradm/gradm-3.1.201607172312.ebuild
+++ b/sys-apps/gradm/gradm-3.1.201607172312.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.
 LICENSE="GPL-2"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="pam"
 
 RDEPEND=""



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

2016-11-19 Thread Anthony G. Basile
commit: b5cdb27c6950e32e11f47f6a19f95af001c039b5
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 19 15:11:05 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 19 15:12:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5cdb27c

sys-apps/gradm: version bump to 3.1.201608131257

Package-Manager: portage-2.3.0

 sys-apps/gradm/Manifest  |  1 +
 sys-apps/gradm/gradm-3.1.201608131257.ebuild | 49 
 2 files changed, 50 insertions(+)

diff --git a/sys-apps/gradm/Manifest b/sys-apps/gradm/Manifest
index 6470d8f..19142f8 100644
--- a/sys-apps/gradm/Manifest
+++ b/sys-apps/gradm/Manifest
@@ -1,3 +1,4 @@
 DIST gradm-3.1-201507191652.tar.gz 91460 SHA256 
2f14c357bf0459e502a4e108b76c3f6240aa484762d07bb1687796b9b9297a50 SHA512 
94b655164369d3ae061ae74710db1098e743a435eecdee9faef77b39aa3fe58f552b4479e55c9546b3c25dea194dc490d9442fc404318628c77d1ecd05d6243e
 WHIRLPOOL 
22041c8424bacccdb53eef953b2419a84b24318caac91e137c59b3b88a5ef57d32dfe31dcf8ddb0c36e35b935db0526b9778ac0650d6dfdf612a469ccdc17f78
 DIST gradm-3.1-201603152148.tar.gz 91549 SHA256 
07f4decbc95ddfb8a88a35ab2960705fb48d0daf108afc09c2b752e2e86fd7b5 SHA512 
a423db1dfdaa0b068970b92dc970d6e10bfc20695437e92d967b064c3efe05114ab6de672eec984ab2f048b67b12ec8c6667a71bc584f03e5d2f0ebab1476158
 WHIRLPOOL 
69b4808f71c55a51784397870d115b851dedd845f8bd588b75d7a39cab140e29eb20ec83542979d6265b203ec78c9a45bc6b1eecb6bcaa061450a3e8fac2512d
 DIST gradm-3.1-201607172312.tar.gz 91667 SHA256 
4281c72e3e82f0ea2c01d124975c19326b2157c10911fa065c1549195d5e6ee4 SHA512 
61f14038ee555b99e4d0096dd01697d8adba45e057ffceadb44eafbdfba807b53030684c5073d169c005902acfa6baa673975ed4ab00ad035941c209f8f1d2e2
 WHIRLPOOL 
38fd29b829b78aa016e922ba011bcfeba0cc8de8d45ccacf2b7658153dcbed54df7035c6bcead8b4956595f812f3ca35a8553b364feb37352e5e39eee15c2661
+DIST gradm-3.1-201608131257.tar.gz 91949 SHA256 
2b771346458f55805713e4cdfc4fefba1da88826dd9ecff38dacd0087331a578 SHA512 
0947abda8d4085fd6f4a569a29f146d6f093c7013ea3aba50df4fb740487b93696b63ab475eb862cfcd26aeb62cd69a55c3d6083b91a2eb9349ad566735f8cfe
 WHIRLPOOL 
99d9c32ec7bba80e57cc3b543a9f9df5c0317226b7e5cf146b5d6fcab3b600577adc79f83cc031f94a3526875a99ce9af97de08139b3e933bf341a35d41c7d70

diff --git a/sys-apps/gradm/gradm-3.1.201608131257.ebuild 
b/sys-apps/gradm/gradm-3.1.201608131257.ebuild
new file mode 100644
index ..ab71f12
--- /dev/null
+++ b/sys-apps/gradm/gradm-3.1.201608131257.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+inherit flag-o-matic toolchain-funcs versionator eutils udev
+
+MY_PV="$(replace_version_separator 2 -)"
+
+DESCRIPTION="Administrative interface for the grsecurity Role Based Access 
Control system"
+HOMEPAGE="http://www.grsecurity.net/;
+SRC_URI="https://dev.gentoo.org/~blueness/hardened-sources/gradm/${PN}-${MY_PV}.tar.gz;
+LICENSE="GPL-2"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="pam"
+
+RDEPEND=""
+DEPEND="
+   sys-devel/bison
+   sys-devel/flex
+   pam? ( virtual/pam )"
+
+S=${WORKDIR}/${PN}
+
+src_prepare() {
+   epatch "${FILESDIR}"/respect-gentoo-env-r3.patch
+   sed -i -e "s:/lib/udev:$(get_udevdir):" Makefile || die
+   eapply_user
+}
+
+src_compile() {
+   local target
+   use pam || target="nopam"
+
+   emake ${target} CC="$(tc-getCC)" OPT_FLAGS="${CFLAGS}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   fperms 711 /sbin/gradm
+}
+
+pkg_postinst() {
+   ewarn
+   ewarn "Be sure to set a password with 'gradm -P' before enabling 
learning mode."
+   ewarn
+}



[gentoo-commits] proj/linux-patches: New tag: 4.4-35

2016-11-19 Thread Alice Ferrazzi
commit: 
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Sat Nov 19 15:22:41 2016 +

New tag: 4.4-35




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

2016-11-19 Thread Anthony G. Basile
commit: a86c6a00d09d263a993dfac13f2a10b76e4b4403
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Nov 19 15:36:42 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Nov 19 15:36:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a86c6a00

net-firewall/ipsec-tools: fix bug #550118, CVE-2015-4047

Package-Manager: portage-2.3.0

 .../files/ipsec-tools-CVE-2015-4047.patch  |  16 ++
 .../ipsec-tools/ipsec-tools-0.8.2-r5.ebuild| 283 +
 2 files changed, 299 insertions(+)

diff --git a/net-firewall/ipsec-tools/files/ipsec-tools-CVE-2015-4047.patch 
b/net-firewall/ipsec-tools/files/ipsec-tools-CVE-2015-4047.patch
new file mode 100644
index ..58f72e1
--- /dev/null
+++ b/net-firewall/ipsec-tools/files/ipsec-tools-CVE-2015-4047.patch
@@ -0,0 +1,16 @@
+See: https://bugs.gentoo.org/show_bug.cgi?id=550118
+
+--- ./src/racoon/gssapi.c9 Sep 2006 16:22:09 -   1.4
 ./src/racoon/gssapi.c19 May 2015 15:16:00 -  1.6
+@@ -192,6 +192,11 @@
+   gss_name_t princ, canon_princ;
+   OM_uint32 maj_stat, min_stat;
+ 
++  if (iph1->rmconf == NULL) {
++  plog(LLV_ERROR, LOCATION, NULL, "no remote config\n");
++  return -1;
++  }
++
+   gps = racoon_calloc(1, sizeof (struct gssapi_ph1_state));
+   if (gps == NULL) {
+   plog(LLV_ERROR, LOCATION, NULL, "racoon_calloc failed\n");

diff --git a/net-firewall/ipsec-tools/ipsec-tools-0.8.2-r5.ebuild 
b/net-firewall/ipsec-tools/ipsec-tools-0.8.2-r5.ebuild
new file mode 100644
index ..b79dd83
--- /dev/null
+++ b/net-firewall/ipsec-tools/ipsec-tools-0.8.2-r5.ebuild
@@ -0,0 +1,283 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit flag-o-matic autotools linux-info pam systemd
+
+DESCRIPTION="A port of KAME's IPsec utilities to the Linux-2.6 IPsec 
implementation"
+HOMEPAGE="http://ipsec-tools.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="BSD GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~x86"
+IUSE="hybrid idea ipv6 kerberos ldap libressl nat pam rc5 readline selinux 
stats"
+
+CDEPEND="
+   !libressl? ( dev-libs/openssl:0 )
+   libressl? ( dev-libs/libressl )
+   kerberos? ( virtual/krb5 )
+   ldap? ( net-nds/openldap )
+   pam? ( sys-libs/pam )
+   readline? ( sys-libs/readline:0= )
+   selinux? ( sys-libs/libselinux )"
+
+DEPEND="${CDEPEND}
+   >=sys-kernel/linux-headers-2.6.30"
+
+RDEPEND="${CDEPEND}
+   selinux? ( sec-policy/selinux-ipsec )
+"
+
+pkg_preinst() {
+   if has_version "<${CATEGORY}/${PN}-0.8.0-r5" ; then
+   ewarn
+   ewarn 
"\033[1;33m**\033[00m"
+   ewarn
+   if ! has_version "net-misc/strongswan" &&
+   ! has_version "net-misc/openswan" &&
+   ! has_version "net-misc/libreswan"; then
+   ewarn "We found an earlier version of ${PN} installed."
+   ewarn "As of ${PN}-0.8.0-r5, the old configuration 
file,"
+   ewarn "ipsec.conf, has been changed to ipsec-tools.conf 
to avoid"
+   ewarn "a conflict with net-misc/strongswan; bug 
#436144.  We will"
+   ewarn "rename this file for you with this upgrade.  
However, if"
+   ewarn "you later downgrade, you'll have to rename the 
file to"
+   ewarn "its orignal manually or change 
/etc/conf.d/racoon to point"
+   ewarn "to the new file."
+
+   if [[ -f /etc/ipsec.conf && ! -f /etc/ipsec-tools.conf 
]] ; then
+   mv /etc/ipsec.conf /etc/ipsec-tools.conf
+   else
+   ewarn
+   ewarn "Oops!  I can't move ipsec.conf to 
ipsec-tools.conf!"
+   ewarn "Either the former doesn't exist or the 
later does and"
+   ewarn "I won't clobber it.  Please fix this 
situation manually."
+   fi
+   else
+   ewarn "You had both an earlier version of ${PN} and"
+   ewarn "net-misc/strongswan installed.  I can't tell 
whether"
+   ewarn "the configuration file, ipsec.conf, belongs to 
one"
+   ewarn "package or the other due to a file conflict; bug 
#436144."
+   ewarn "The current version of ${PN} uses 
ipsec-tools.conf"
+   ewarn "as its configuration file, as will future 
versions."
+   ewarn "Please fix this situation manually."
+   fi
+   ewarn
+   ewarn 

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

2016-11-19 Thread Jeroen Roovers
commit: c9d35add51dc7da383e9f5356638b95378392a96
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Nov 19 12:49:21 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Nov 19 12:49:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9d35add

sys-devel/binutils-hppa64: Version bump.

Package-Manager: portage-2.3.2

 sys-devel/binutils-hppa64/Manifest |  2 ++
 .../binutils-hppa64/binutils-hppa64-2.27.ebuild| 27 ++
 2 files changed, 29 insertions(+)

diff --git a/sys-devel/binutils-hppa64/Manifest 
b/sys-devel/binutils-hppa64/Manifest
index 2dbe237..4c4701c 100644
--- a/sys-devel/binutils-hppa64/Manifest
+++ b/sys-devel/binutils-hppa64/Manifest
@@ -14,3 +14,5 @@ DIST binutils-2.25.1-patches-1.1.tar.xz 18724 SHA256 
3d4c0ab2d45d3a952f60246fa5a
 DIST binutils-2.25.1.tar.bz2 24163561 SHA256 
b5b14added7d78a8d1ca70b5cb75fef57ce2197264f4f5835326b0df22ac9f22 SHA512 
0b36dda0e6d32cd25613c0e64b56b28312515c54d6a159efd3db9a86717f114ab0a0a1f69d08975084d55713ebaeab64e4085c9b3d1c3fa86712869f80eb954d
 WHIRLPOOL 
daa804331ee880296c2fe29fd9b8a52cc695629d4bbe0b9889d96ffc54d330f00fac3f3cb12b3aaf6b7505521ef499c53760912cd7c9bb54f2d5e288224bd1eb
 DIST binutils-2.26.1-patches-1.0.tar.xz 11212 SHA256 
e56e2a6b64b8abe2f4aed1a9b1517fc8cbb5fd661f40118d0163d93943870e77 SHA512 
c520967659c66f05f7ad795bb0bc2522e139977ab3ae8cfd9ec0d093a412a7291d1cabaa6b429c618fcf7253458a6fbe5a7dc3f62e0ac9762667308067db075c
 WHIRLPOOL 
027b6a864134e2690d309922009740338bbd927581c6657c640d3061447f308c2e27a8c06a9202ae3f4aac4bcbf9e28303b52f81745d4062bf5b8c638cd1a9b7
 DIST binutils-2.26.1.tar.bz2 25595243 SHA256 
39c346c87aa4fb14b2f786560aec1d29411b6ec34dce3fe7309fe3dd56949fd8 SHA512 
9d9165609fd3b0f20d616f9891fc8e2b466eb13e2bfce40125e12427f8f201d20e2b8322bb6cb2b45e8df812f0e8ac059149f8a1f69ba3ed9d86a35c6a540b67
 WHIRLPOOL 
c33eecdf855dd17314c3b7bbb0060399148d4dba867eb038bfb7555010fd003ba8b5b86480e4df389e19bba7b1fd0b9264291e6af20be4ffd4ff504d2255d003
+DIST binutils-2.27-patches-1.0.tar.xz 8852 SHA256 
07be45786e1e56498aad2c52a43d4104ccd0ded3c6a84a930486bc418d7fa36d SHA512 
489b5fff87886682d8e98eafa2f082e6dcf811d2a693b6c41d76bd1ac50815a6e7d26fb7c9e3811c2d8e0e1dc307557e6ffe46d1d0f7caeb581060cf14bda899
 WHIRLPOOL 
cf73342292a6dd8450a420f62a6a28e1ae38eed2c0b62643619ac002f3e9233ba5a0df19deb862167e88bd2c4a7ef4e002fe4d76f971eba876014d145dc30171
+DIST binutils-2.27.tar.bz2 26099568 SHA256 
369737ce51587f92466041a97ab7d2358c6d9e1b6490b3940eb09fb0a9a6ac88 SHA512 
cf276f84935312361a2ca077e04d0b469d23a3aed979d8ba5d92ea590904ffb2c2e7ed12cc842822bfc402836be86f479660cef3791aa62f3753d8a1a6f564cb
 WHIRLPOOL 
d3204b4900529f697285fb1fe622ecc949c43f064e6b83a1cecb1ea8810a214842c729266c9a44537dc0a86d6d2b3ac100f54c721cc284e54f9d6feb90930d15

diff --git a/sys-devel/binutils-hppa64/binutils-hppa64-2.27.ebuild 
b/sys-devel/binutils-hppa64/binutils-hppa64-2.27.ebuild
new file mode 100644
index ..ffa35f5
--- /dev/null
+++ b/sys-devel/binutils-hppa64/binutils-hppa64-2.27.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+export CTARGET=hppa64-${CHOST#*-}
+
+PATCHVER="1.0"
+ELF2FLT_VER=""
+inherit toolchain-binutils
+
+DESCRIPTION="binutils package for building 64bit kernels on HPPA"
+
+KEYWORDS="-* ~hppa"
+
+# 66_all_binutils-2.22-warn-textrel.patch fails to apply with
+# patch-2.5.9, so require a version that for sure works
+DEPEND+=" >=sys-devel/patch-2.6.1"
+
+src_install() {
+   toolchain-binutils_src_install
+
+   # tweak the default fake list a little bit
+   cd "${D}"/etc/env.d/binutils
+   sed -i '/FAKE_TARGETS=/s:"$: hppa64-linux":' ${CTARGET}-${BVER} || die
+}



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

2016-11-19 Thread Kristian Fiskerstrand
commit: a7b7768e469d7bc59c91c2ae8964f0ed22d7ec61
Author: Kristian Fiskerstrand  gentoo  org>
AuthorDate: Sat Nov 19 13:20:37 2016 +
Commit: Kristian Fiskerstrand  gentoo  org>
CommitDate: Sat Nov 19 13:20:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7b7768e

dev-libs/libgpg-error: New upstream version

Package-Manager: portage-2.3.2

 dev-libs/libgpg-error/Manifest |  1 +
 dev-libs/libgpg-error/libgpg-error-1.25.ebuild | 60 ++
 2 files changed, 61 insertions(+)

diff --git a/dev-libs/libgpg-error/Manifest b/dev-libs/libgpg-error/Manifest
index d2ae217..1c0ca43 100644
--- a/dev-libs/libgpg-error/Manifest
+++ b/dev-libs/libgpg-error/Manifest
@@ -5,3 +5,4 @@ DIST libgpg-error-1.20.tar.bz2 770279 SHA256 
3266895ce3419a7fb093e63e95e2ee3056c
 DIST libgpg-error-1.21.tar.bz2 763186 SHA256 
b7dbdb3cad63a740e9f0c632a1da32d4afdb694ec86c8625c98ea0691713b84d SHA512 
1bc2e27b9904cb66b091c4d15855d2d2fe5d88ed11917df628cd7865989a8a208b607e5d6c499a5d64a16d22b2310b7df6868fa5462cc30cd8fda80a2f8c8315
 WHIRLPOOL 
28a387991fb162b2e74e28437b2274a7b887f7cf99de9729192e7b0691954ce0ce73a4044ce6b97db856ec84fdf9f962ddc99ea7d9d2a685d7b0fba3cc45bb58
 DIST libgpg-error-1.22.tar.bz2 777502 SHA256 
f2a04ee6317bdb41a625bea23fdc7f0b5a63fb677f02447c647ed61fb9e69d7b SHA512 
0e2bbbd1cf51e247921836642ebc0b52573565dde0f3c9df405d74ca148aafd9b6509ae782f8db93ef31425c88466c8a9d11c147aa65b4f21a1856af29f0b8db
 WHIRLPOOL 
b3a457387758b7a592b1fc9bbfd7840f5457dc01dbbad503370c7f688efc7a40828f17f0143216426f54705a1c3744049858616e0a396564f8493e9e39a0f60f
 DIST libgpg-error-1.24.tar.bz2 783628 SHA256 
9268e1cc487de5e6e4460fca612a06e4f383072ac43ae90603e5e46783d3e540 SHA512 
d577ebf36251402dd27187056f7c54cea226119f499d1c3bc1c4201ba4d2ae4a9dcefdf4502411cfcffe52b1cefab8c2cfddfa16b7e6ad3b49305a3394ccca31
 WHIRLPOOL 
2f216d374e0cc9ca64a9a9d3a4c3e756d28275e80ff42fa00649d2d969bf03b04bc56e71125fac176da447176fe8fe6052014c71b1f70ccb1d3c4cb11194c09c
+DIST libgpg-error-1.25.tar.bz2 797159 SHA256 
f628f75843433b38b05af248121beb7db5bd54bb2106f384edac39934261320c SHA512 
46f276609fc66f09e9633f6a1a33d4cfcfaa65e36f34aaf0802edbc766ed4c0f2dc148582db10c2afce9c0b8ba536dbac78ec0c1a72cb81723403b6ece295590
 WHIRLPOOL 
1bf96456ee9450a00c7621c85ea293292c9b11f2484dd4048b77b912acf99bfa7c3f97b1e8ade3c41353e30bdc3868f75b85f0d27cbe4dd1033cfed59354dfdf

diff --git a/dev-libs/libgpg-error/libgpg-error-1.25.ebuild 
b/dev-libs/libgpg-error/libgpg-error-1.25.ebuild
new file mode 100644
index ..129a592
--- /dev/null
+++ b/dev-libs/libgpg-error/libgpg-error-1.25.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils libtool multilib-minimal toolchain-funcs
+
+DESCRIPTION="Contains error handling functions used by GnuPG software"
+HOMEPAGE="http://www.gnupg.org/related_software/libgpg-error;
+SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+IUSE="common-lisp nls static-libs"
+
+RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )
+   abi_x86_32? (
+   !app-emulation/emul-linux-x86-baselibs[-abi_x86_32(-)]
+   !<=app-emulation/emul-linux-x86-baselibs-20131008-r12
+   )"
+DEPEND="${RDEPEND}
+   nls? ( sys-devel/gettext )"
+
+MULTILIB_CHOST_TOOLS=(
+   /usr/bin/gpg-error-config
+)
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/gpg-error.h
+)
+
+src_prepare() {
+   epatch_user
+   elibtoolize
+}
+
+multilib_src_configure() {
+   local myeconfargs=(
+   CC_FOR_BUILD=$(tc-getBUILD_CC)
+   --enable-threads
+   $(use_enable nls)
+   $(use_enable static-libs static)
+   $(use_enable common-lisp languages)
+   )
+
+   multilib_is_native_abi || myeconfargs+=(
+   --disable-languages
+   )
+
+   ECONF_SOURCE=${S} \
+   econf "${myeconfargs[@]}"
+}
+
+multilib_src_install_all() {
+   einstalldocs
+
+   # library has no dependencies, so it does not need the .la file
+   prune_libtool_files --all
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-Compile-SOAP/

2016-11-19 Thread Kent Fredric
commit: 15b2738d7bd9f1b10f0c2ba3a843900bae632758
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 13:22:42 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15b2738d

dev-perl/XML-Compile-SOAP: Add version 3.200.0

Required by sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/XML-Compile-SOAP/Manifest |  1 +
 .../XML-Compile-SOAP-3.200.0.ebuild| 31 ++
 dev-perl/XML-Compile-SOAP/metadata.xml | 26 ++
 3 files changed, 58 insertions(+)

diff --git a/dev-perl/XML-Compile-SOAP/Manifest 
b/dev-perl/XML-Compile-SOAP/Manifest
new file mode 100644
index ..bfbd408
--- /dev/null
+++ b/dev-perl/XML-Compile-SOAP/Manifest
@@ -0,0 +1 @@
+DIST XML-Compile-SOAP-3.20.tar.gz 100249 SHA256 
a5bf457134b66d3efb6d7429e47c4f78bd44e1ad32141d7d62f7a48ccf59f462 SHA512 
72f322fed07f8d4d82002975924c7774934b8f1b199f3f197113a00f48a42e0723b7e2af0219a26b842f49bb691f8aa9280a5d9dfda2e38f8fc6820331172ff5
 WHIRLPOOL 
a54e8d1d8e1db055e51d900ffaa2766e31b1903af05fa32aa856d1fba4081b83e47971f640b480541406417b50544b137773751958c77433fdd164d49ce3bc42

diff --git a/dev-perl/XML-Compile-SOAP/XML-Compile-SOAP-3.200.0.ebuild 
b/dev-perl/XML-Compile-SOAP/XML-Compile-SOAP-3.200.0.ebuild
new file mode 100644
index ..4395571
--- /dev/null
+++ b/dev-perl/XML-Compile-SOAP/XML-Compile-SOAP-3.200.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=3.20
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Soap 1.1 XML Compiler"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   dev-perl/File-Slurp-Tiny
+   >=dev-perl/libwww-perl-6.80.0
+   >=dev-perl/Log-Report-1.50.0
+   virtual/perl-Time-HiRes
+   >=dev-perl/XML-Compile-1.510.0
+   >=dev-perl/XML-Compile-Cache-1.30.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.540.0
+   >=dev-perl/XML-Compile-Tester-0.900.0
+   )
+"

diff --git a/dev-perl/XML-Compile-SOAP/metadata.xml 
b/dev-perl/XML-Compile-SOAP/metadata.xml
new file mode 100644
index ..49eb063
--- /dev/null
+++ b/dev-perl/XML-Compile-SOAP/metadata.xml
@@ -0,0 +1,26 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+XML-Compile-SOAP
+XML::Compile::SOAP
+XML::Compile::SOAP11
+XML::Compile::SOAP11::Client
+XML::Compile::SOAP11::Operation
+XML::Compile::SOAP11::Server
+XML::Compile::SOAP::Client
+XML::Compile::SOAP::Extension
+XML::Compile::SOAP::Operation
+XML::Compile::SOAP::Server
+XML::Compile::SOAP::Trace
+XML::Compile::SOAP::Util
+XML::Compile::Transport
+XML::Compile::Transport::SOAPHTTP
+XML::Compile::XOP
+XML::Compile::XOP::Include
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-Compile-Cache/

2016-11-19 Thread Kent Fredric
commit: d331ac196861a2f0cfea52b22122ab004945de7c
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 13:16:23 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d331ac19

dev-perl/XML-Compile-Cache: Added version 1.50.0

Deep dependency of sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/XML-Compile-Cache/Manifest|  1 +
 .../XML-Compile-Cache-1.50.0.ebuild| 27 ++
 dev-perl/XML-Compile-Cache/metadata.xml| 12 ++
 3 files changed, 40 insertions(+)

diff --git a/dev-perl/XML-Compile-Cache/Manifest 
b/dev-perl/XML-Compile-Cache/Manifest
new file mode 100644
index ..bb7a8ab
--- /dev/null
+++ b/dev-perl/XML-Compile-Cache/Manifest
@@ -0,0 +1 @@
+DIST XML-Compile-Cache-1.05.tar.gz 16255 SHA256 
5c3b9f6e254fc8ccd508e99654624266d98d45a58ffa52bb460fa608bfa67c75 SHA512 
41b50babe59ae9f3fe43bd21c23ad8237fc4fcd0ad07dbaae6c446d230448283f50fb085cc18f11f35775858af0828afd8598c96c0da49ca3d3ca85e6cd6d249
 WHIRLPOOL 
70964b99141f9ab2b7418dc860ea31cff2b6af25bb6e7a3f064a682c9c26265452c3e0406d21c6efcd7781a0b779572e25b55622eb6e6ec90edc44dd7aa7efd4

diff --git a/dev-perl/XML-Compile-Cache/XML-Compile-Cache-1.50.0.ebuild 
b/dev-perl/XML-Compile-Cache/XML-Compile-Cache-1.50.0.ebuild
new file mode 100644
index ..2649313
--- /dev/null
+++ b/dev-perl/XML-Compile-Cache/XML-Compile-Cache-1.50.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=1.05
+inherit perl-module
+
+DESCRIPTION="Cache compiled XML translations"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/Log-Report-0.190.0
+   >=dev-perl/XML-Compile-1.480.0
+   >=dev-perl/XML-LibXML-Simple-0.950.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.540.0
+   >=dev-perl/XML-Compile-Tester-0.20.0
+   )
+"

diff --git a/dev-perl/XML-Compile-Cache/metadata.xml 
b/dev-perl/XML-Compile-Cache/metadata.xml
new file mode 100644
index ..f13ace5
--- /dev/null
+++ b/dev-perl/XML-Compile-Cache/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+XML-Compile-Cache
+XML::Compile::Cache
+  
+



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

2016-11-19 Thread Kent Fredric
commit: f5c147e698b460134f3a51def45f8857b590a8e9
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 11:47:55 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5c147e6

dev-perl/Unicode-LineBreak: Keyword for ~x86

Tested by kensington  gentoo.org

Package-Manager: portage-2.3.2

 dev-perl/Unicode-LineBreak/Unicode-LineBreak-2016.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Unicode-LineBreak/Unicode-LineBreak-2016.3.0.ebuild 
b/dev-perl/Unicode-LineBreak/Unicode-LineBreak-2016.3.0.ebuild
index cd7678a..b0f2820 100644
--- a/dev-perl/Unicode-LineBreak/Unicode-LineBreak-2016.3.0.ebuild
+++ b/dev-perl/Unicode-LineBreak/Unicode-LineBreak-2016.3.0.ebuild
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="UAX #14 Unicode Line Breaking Algorithm"
 
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="dev-perl/MIME-Charset



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

2016-11-19 Thread Kent Fredric
commit: 265111441c095ef214d8b9e3064d76f7ba6a1300
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 12:00:06 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26511144

dev-perl/String-Print: Add 0.150.0

Deep dependencies of sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/String-Print/Manifest|  1 +
 dev-perl/String-Print/String-Print-0.150.0.ebuild | 24 +++
 dev-perl/String-Print/metadata.xml| 12 
 3 files changed, 37 insertions(+)

diff --git a/dev-perl/String-Print/Manifest b/dev-perl/String-Print/Manifest
new file mode 100644
index ..e97e844
--- /dev/null
+++ b/dev-perl/String-Print/Manifest
@@ -0,0 +1 @@
+DIST String-Print-0.15.tar.gz 13569 SHA256 
b4e97c3ced0f75d485be6d73987bde4757e71d31e790ea61424f1b935b6134d9 SHA512 
9f25f588bf47930504ef3a7ecd351561096cddd3f5451f99c87443e3944f7f1ebf0cefafadeb441901a387f80e7d42f1b73efa7723ad6e7732df7f6851de5e4a
 WHIRLPOOL 
bd38e86f53187760bfb54258b9ab4bcdbaf0ed470140ed4c95475d3a34d02c8ba7860559cbab6e3eac783b15a162fdca9dc0561a860222e73ccbd939c9948b29

diff --git a/dev-perl/String-Print/String-Print-0.150.0.ebuild 
b/dev-perl/String-Print/String-Print-0.150.0.ebuild
new file mode 100644
index ..c47dff8
--- /dev/null
+++ b/dev-perl/String-Print/String-Print-0.150.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=0.15
+inherit perl-module
+
+DESCRIPTION="Extensions to printf"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Encode
+   dev-perl/Unicode-LineBreak
+"
+DEPEND="${RDEPEND}
+   test? (
+   >=virtual/perl-Test-Simple-0.860.0
+   )
+"

diff --git a/dev-perl/String-Print/metadata.xml 
b/dev-perl/String-Print/metadata.xml
new file mode 100644
index ..b747d8d
--- /dev/null
+++ b/dev-perl/String-Print/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+String-Print
+String::Print
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Log-Report-Optional/

2016-11-19 Thread Kent Fredric
commit: 401b51de2de6177c6ada129aaaf979471f17379f
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 12:14:54 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=401b51de

dev-perl/Log-Report-Optional: Added 1.20.0

Deep dep of sci-biology/meme

Package-Manager: portage-2.3.2

 .../Log-Report-Optional-1.20.0.ebuild  | 24 ++
 dev-perl/Log-Report-Optional/Manifest  |  1 +
 dev-perl/Log-Report-Optional/metadata.xml  | 15 ++
 3 files changed, 40 insertions(+)

diff --git a/dev-perl/Log-Report-Optional/Log-Report-Optional-1.20.0.ebuild 
b/dev-perl/Log-Report-Optional/Log-Report-Optional-1.20.0.ebuild
new file mode 100644
index ..cbf599d
--- /dev/null
+++ b/dev-perl/Log-Report-Optional/Log-Report-Optional-1.20.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=1.02
+inherit perl-module
+
+DESCRIPTION="Lightweight implementation logger for Log::Report"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/String-Print-0.130.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.860.0
+   )
+"

diff --git a/dev-perl/Log-Report-Optional/Manifest 
b/dev-perl/Log-Report-Optional/Manifest
new file mode 100644
index ..421fa2b
--- /dev/null
+++ b/dev-perl/Log-Report-Optional/Manifest
@@ -0,0 +1 @@
+DIST Log-Report-Optional-1.02.tar.gz 11126 SHA256 
0c5b865f99049cf7fcb7b02d878edab926a9eda9991fab91b40141e07c7d92f0 SHA512 
a548aed43658133b771573e86ced16ae37bfba89d47f8b69d2b53351ab84ed3c6c6e40bcd6c98a6258c87b9155eed00f0efd9451968837efc90646b6358f3f98
 WHIRLPOOL 
6807655f29b6d09eadceff7877c24bda6ad0f9cbcf958042bf5958d3540333860fcfa44ab35f82ecf4f211eafb69ddccc82f131e05d6a6704dfbf597f484417b

diff --git a/dev-perl/Log-Report-Optional/metadata.xml 
b/dev-perl/Log-Report-Optional/metadata.xml
new file mode 100644
index ..812250f
--- /dev/null
+++ b/dev-perl/Log-Report-Optional/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Log-Report-Optional
+Log::Report::Minimal
+Log::Report::Minimal::Domain
+Log::Report::Optional
+Log::Report::Util
+  
+



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

2016-11-19 Thread Kent Fredric
commit: 1ee00efc8db7076eac51676b92df94ea005d4c04
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 10:37:09 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ee00efc

dev-perl/Data-Validate-IP: Bump to version 0.270.0

Upstream:
- Use optimised path through Socket.pm for is_*_ip routines where
  safe.

Package-Manager: portage-2.3.2

 .../Data-Validate-IP-0.270.0.ebuild| 31 ++
 dev-perl/Data-Validate-IP/Manifest |  1 +
 2 files changed, 32 insertions(+)

diff --git a/dev-perl/Data-Validate-IP/Data-Validate-IP-0.270.0.ebuild 
b/dev-perl/Data-Validate-IP/Data-Validate-IP-0.270.0.ebuild
new file mode 100644
index ..0b597fd
--- /dev/null
+++ b/dev-perl/Data-Validate-IP/Data-Validate-IP-0.270.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=DROLSKY
+DIST_VERSION=0.27
+DIST_EXAMPLES=("bench/*")
+
+inherit perl-module
+
+DESCRIPTION="Lightweight IPv4 and IPv6 validation module"
+
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-Exporter
+   >=dev-perl/NetAddr-IP-4
+   virtual/perl-Scalar-List-Utils
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-File-Spec
+   >=virtual/perl-Test-Simple-0.960.0
+   dev-perl/Test-Requires
+   )
+"

diff --git a/dev-perl/Data-Validate-IP/Manifest 
b/dev-perl/Data-Validate-IP/Manifest
index 094e332..722bea6 100644
--- a/dev-perl/Data-Validate-IP/Manifest
+++ b/dev-perl/Data-Validate-IP/Manifest
@@ -1,2 +1,3 @@
 DIST Data-Validate-IP-0.24.tar.gz 30535 SHA256 
2977fb1183da439c4c216bec94b28e683c9769b13140381fe85ea327f509e318 SHA512 
250528726096e51d39361f2bad1b696b008328d7a746fb504052e5a5f6ce3278919deb370210fe6302be6adb937a9401f5f1ec61bfd4b4fd0852c5cf3b8c09df
 WHIRLPOOL 
aceee7a36b5f4a98fb04aacd3ef8557bda62d93fdc4e902219a16e66e831b6cff94f51bf8c769ec8ab268d4ec63f95e1ccc81139c23dc9bf844e4d390b5379db
 DIST Data-Validate-IP-0.26.tar.gz 37128 SHA256 
d03190483f3ecec728c8e1b2e24989b7aed78ce3c989bea7dc6be0285d374690 SHA512 
63d792492f07eb0270f88bb13c97cd66b27c30efaea4c1a78b6380901569c90602cec8e2d22b01e7e6626897a38ef46dadddaa4b6fb8c460e99ed310d1d32f87
 WHIRLPOOL 
227b52a4486270357cdd27008c07affd46c749a7832020f761093f66026e2e07dd124d30af6cf848a3caae83f40d30e66c440880a4b8c0e4bf2fc4b05e1b5bab
+DIST Data-Validate-IP-0.27.tar.gz 38139 SHA256 
e1aa92235dcb9c6fd9b6c8cda184d1af73537cc77f4f83a0f88207a8bfbfb7d6 SHA512 
5a93f730d53e7adcac4fe5e227b69a44e58cdc94b0081d79978547263095e97c3690c8c6fc6664fc8e4b230ab4c360beda22e6600a3c7abe5e61129ee70553b8
 WHIRLPOOL 
ff9dde03dad9214d0be304f4d5f2ec1a4dfd5f6e3c9ee3d0d9d551035302c184f7f48fe65c3ae9025388482482e1a4ede12dd40f76e6f0bf1a1d8132490b41ef



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

2016-11-19 Thread Kent Fredric
commit: fef2c0ac50d182ed46bcf9716a04c31e76a51dc7
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 12:37:50 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fef2c0ac

dev-perl/Log-Report: Add version 1.180.0

Deep dependency of sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/Log-Report/Log-Report-1.180.0.ebuild | 30 ++
 dev-perl/Log-Report/Manifest  |  1 +
 dev-perl/Log-Report/metadata.xml  | 31 +++
 3 files changed, 62 insertions(+)

diff --git a/dev-perl/Log-Report/Log-Report-1.180.0.ebuild 
b/dev-perl/Log-Report/Log-Report-1.180.0.ebuild
new file mode 100644
index ..fc97e83
--- /dev/null
+++ b/dev-perl/Log-Report/Log-Report-1.180.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=1.18
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="A pluggable, multilingual handler driven problem reporting system"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/Devel-GlobalDestruction-0.90.0
+   >=virtual/perl-Encode-2.0.0
+   >=dev-perl/Log-Report-Optional-1.20.0
+   virtual/perl-Scalar-List-Utils
+   >=dev-perl/String-Print-0.130.0
+   >=virtual/perl-Sys-Syslog-0.270.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.860.0
+   )
+"

diff --git a/dev-perl/Log-Report/Manifest b/dev-perl/Log-Report/Manifest
new file mode 100644
index ..a7000eb
--- /dev/null
+++ b/dev-perl/Log-Report/Manifest
@@ -0,0 +1 @@
+DIST Log-Report-1.18.tar.gz 90477 SHA256 
7f468841f0ecd544069916b61dd5a2d67dc4debd6b7ef2002be48337e38ff30b SHA512 
3f6fea8e7d0c66bc4b81b5565fd26832ad891936b0e4b79654670b5aa1092c16f060dc8a0c290687ddefc2672ca3206b7cbca4e135a79f98df1ea1b9fed5c3c8
 WHIRLPOOL 
c6862bdaa1bfe04ceab88a9f744ffa9c3cb6edeba037fa83fc613cf8c5401fa9b7e939ab82cdabb88fb26a52f5cd8fdda51676e3f6ea218c0b43423883d78fc1

diff --git a/dev-perl/Log-Report/metadata.xml b/dev-perl/Log-Report/metadata.xml
new file mode 100644
index ..535bb1f
--- /dev/null
+++ b/dev-perl/Log-Report/metadata.xml
@@ -0,0 +1,31 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Log-Report
+Dancer2::Logger::LogReport
+Dancer2::Plugin::LogReport
+Dancer2::Plugin::LogReport::Message
+Dancer::Logger::LogReport
+Log::Report
+Log::Report::DBIC::Profiler
+Log::Report::Die
+Log::Report::Dispatcher
+Log::Report::Dispatcher::Callback
+Log::Report::Dispatcher::File
+Log::Report::Dispatcher::Log4perl
+Log::Report::Dispatcher::LogDispatch
+Log::Report::Dispatcher::Perl
+Log::Report::Dispatcher::Syslog
+Log::Report::Dispatcher::Try
+Log::Report::Domain
+Log::Report::Exception
+Log::Report::Message
+Log::Report::Translator
+MojoX::Log::Report
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-Compile-Tester/

2016-11-19 Thread Kent Fredric
commit: 9e016c7ca6550bc529f58f98bd963ccf0d30f44b
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 13:02:58 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e016c7c

dev-perl/XML-Compile-Tester: Add version 0.900.0

Deep dependency required for sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/XML-Compile-Tester/Manifest   |  1 +
 .../XML-Compile-Tester-0.900.0.ebuild  | 28 ++
 dev-perl/XML-Compile-Tester/metadata.xml   | 12 ++
 3 files changed, 41 insertions(+)

diff --git a/dev-perl/XML-Compile-Tester/Manifest 
b/dev-perl/XML-Compile-Tester/Manifest
new file mode 100644
index ..7bd9059
--- /dev/null
+++ b/dev-perl/XML-Compile-Tester/Manifest
@@ -0,0 +1 @@
+DIST XML-Compile-Tester-0.90.tar.gz 5943 SHA256 
e15e46fc1adca7e64d60a84d7436475e178471c2eaa42b7dda9829cf504794ad SHA512 
405cf02987797a752319dea2f6b27528f323d127faa85d4d0787f409bdaf0656ec2a5c50d46354835afaaee8268e4749f7f2d6d9c26541cdb15576f607d20ce1
 WHIRLPOOL 
eb85b039dffa48eb8b81dd11f70c47f2e93428efb32e19d2bf952c71ad48a56f88707dd20a7b929c2e489245ff2a9e8f8e9b4b38a247efcdac73ad395a07b0eb

diff --git a/dev-perl/XML-Compile-Tester/XML-Compile-Tester-0.900.0.ebuild 
b/dev-perl/XML-Compile-Tester/XML-Compile-Tester-0.900.0.ebuild
new file mode 100644
index ..f26c8f7
--- /dev/null
+++ b/dev-perl/XML-Compile-Tester/XML-Compile-Tester-0.900.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=0.90
+inherit perl-module
+
+DESCRIPTION="Support XML::Compile related regression testing"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/Log-Report-0.170.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.540.0
+   )
+"
+src_test() {
+   perl_rm_files t/99pod.t
+   perl-module_src_test
+}

diff --git a/dev-perl/XML-Compile-Tester/metadata.xml 
b/dev-perl/XML-Compile-Tester/metadata.xml
new file mode 100644
index ..b1d8a8a
--- /dev/null
+++ b/dev-perl/XML-Compile-Tester/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+XML-Compile-Tester
+XML::Compile::Tester
+  
+



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

2016-11-19 Thread Kent Fredric
commit: 44d1486298ec418cc2cbd3dbc3941171f8897d89
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 13:07:22 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:23:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44d14862

dev-perl/XML-Compile: Added version 1.540.0

Deep dependency of sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/XML-Compile/Manifest   |  1 +
 dev-perl/XML-Compile/XML-Compile-1.540.0.ebuild | 36 +
 dev-perl/XML-Compile/metadata.xml   | 12 +
 3 files changed, 49 insertions(+)

diff --git a/dev-perl/XML-Compile/Manifest b/dev-perl/XML-Compile/Manifest
new file mode 100644
index ..91c7ba3
--- /dev/null
+++ b/dev-perl/XML-Compile/Manifest
@@ -0,0 +1 @@
+DIST XML-Compile-1.54.tar.gz 205002 SHA256 
4c640da5b99494eb1375996413e2d0bb42f800836957a5c3de1ddf054c0ae4c2 SHA512 
824318d0c941cd3e17f6c7396b815675f87fa03c5b17de6e2a71cfeefcffec8b2f050b1c6d63e013726a3d57cfc76c4ee29dbde14b91a6b1500341dd9c5e7310
 WHIRLPOOL 
9aad6bd92bc71185908f14f38a8ab604ce87376d7cbe0f55636a72b6191d02596ef00d49221ffb32cfcd03b715adcce32be8acc1861dbf8cd2aa4af4925edf64

diff --git a/dev-perl/XML-Compile/XML-Compile-1.540.0.ebuild 
b/dev-perl/XML-Compile/XML-Compile-1.540.0.ebuild
new file mode 100644
index ..67dcc24
--- /dev/null
+++ b/dev-perl/XML-Compile/XML-Compile-1.540.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=1.54
+inherit perl-module
+
+DESCRIPTION="Compilation based XML Processing"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=virtual/perl-Digest-MD5-2.360.0
+   >=dev-perl/Log-Report-1.30.0
+   >=virtual/perl-MIME-Base64-3.100.0
+   >=virtual/perl-Math-BigInt-1.770.0
+   >=virtual/perl-Math-BigRat-0.100.0
+   virtual/perl-Scalar-List-Utils
+   >=dev-perl/XML-LibXML-2.10.700
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=dev-perl/Test-Deep-0.95.0
+   >=virtual/perl-Test-Simple-0.540.0
+   >=dev-perl/XML-Compile-Tester-0.900.0
+   )
+"
+src_install() {
+   perl-module_src_install
+   dodoc -r html
+}

diff --git a/dev-perl/XML-Compile/metadata.xml 
b/dev-perl/XML-Compile/metadata.xml
new file mode 100644
index ..01fc816
--- /dev/null
+++ b/dev-perl/XML-Compile/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+XML-Compile
+XML::Compile
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-Compile-WSDL11/

2016-11-19 Thread Kent Fredric
commit: d447c579e741b2f04d4d69de019d255736393d3f
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 13:37:00 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:37:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d447c579

dev-perl/XML-Compile-WSDL11: Add version 3.50.0

Required for sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/XML-Compile-WSDL11/Manifest   |  1 +
 .../XML-Compile-WSDL11-3.50.0.ebuild   | 28 ++
 dev-perl/XML-Compile-WSDL11/metadata.xml   | 12 ++
 3 files changed, 41 insertions(+)

diff --git a/dev-perl/XML-Compile-WSDL11/Manifest 
b/dev-perl/XML-Compile-WSDL11/Manifest
new file mode 100644
index ..b003c9f
--- /dev/null
+++ b/dev-perl/XML-Compile-WSDL11/Manifest
@@ -0,0 +1 @@
+DIST XML-Compile-WSDL11-3.05.tar.gz 24298 SHA256 
8469fd033ec2d2d7c54f7fb8921a2bbf3357aa7b306f4e441afdaf8c838da0a8 SHA512 
88eb20a3e395f8f31855fcd12750d8208ac4b463a3504b4b1f17e477131ecb4272234537d3044972ef311c475cbd88584f30e98d6454914945e141bbe1de
 WHIRLPOOL 
da32665746197d835064dce10165123093c84d5edaacbde558021d3534104adc198608ea0f904910249eb4f25b4aa6927585d12d4e9f2e36b689b2d9cb2c8941

diff --git a/dev-perl/XML-Compile-WSDL11/XML-Compile-WSDL11-3.50.0.ebuild 
b/dev-perl/XML-Compile-WSDL11/XML-Compile-WSDL11-3.50.0.ebuild
new file mode 100644
index ..2011b9c
--- /dev/null
+++ b/dev-perl/XML-Compile-WSDL11/XML-Compile-WSDL11-3.50.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MARKOV
+DIST_VERSION=3.05
+DIST_EXAMPLES=("bin/*")
+inherit perl-module
+
+DESCRIPTION="WSDL version 1.1 XML Compiler"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-perl/Log-Report-1.50.0
+   >=dev-perl/XML-Compile-1.480.0
+   >=dev-perl/XML-Compile-Cache-1.30.0
+   >=dev-perl/XML-Compile-SOAP-3.160.0
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.540.0
+   )
+"

diff --git a/dev-perl/XML-Compile-WSDL11/metadata.xml 
b/dev-perl/XML-Compile-WSDL11/metadata.xml
new file mode 100644
index ..755a420
--- /dev/null
+++ b/dev-perl/XML-Compile-WSDL11/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+XML-Compile-WSDL11
+XML::Compile::WSDL11
+  
+



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

2016-11-19 Thread Kent Fredric
commit: 0161600a01667aa8f11d1cc64d39d6ed582006ce
Author: Kent Fredric  gentoo  org>
AuthorDate: Sat Nov 19 13:47:00 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sat Nov 19 13:47:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0161600a

dev-perl/Math-CDF: Add version 0.100.0

Required by sci-biology/meme

Package-Manager: portage-2.3.2

 dev-perl/Math-CDF/Manifest|  1 +
 dev-perl/Math-CDF/Math-CDF-0.100.0.ebuild | 19 +++
 dev-perl/Math-CDF/metadata.xml| 12 
 3 files changed, 32 insertions(+)

diff --git a/dev-perl/Math-CDF/Manifest b/dev-perl/Math-CDF/Manifest
new file mode 100644
index ..4979c3d
--- /dev/null
+++ b/dev-perl/Math-CDF/Manifest
@@ -0,0 +1 @@
+DIST Math-CDF-0.1.tar.gz 65855 SHA256 
7896bf250835ce47dcc813cb8cf9dc576c5455de42e822dcd7d8d3fef2125565 SHA512 
5c85b26a68cd5521e4b2502cfb3491072ed86bdf713f1aa5347ccfcdfced7109532237d6cf77e0fc3941fd5d813827f25d142176d35bba1cd2d4dc5ab137a6c8
 WHIRLPOOL 
80066860f9033b2fb5e86f3df87caaf4f4cce1ae295dcd4195e4713738f9c4c3347f842321bc1a69b66871177e8ec47e67c9faaafafbc632114c5fbf0fabaeac

diff --git a/dev-perl/Math-CDF/Math-CDF-0.100.0.ebuild 
b/dev-perl/Math-CDF/Math-CDF-0.100.0.ebuild
new file mode 100644
index ..da964a4
--- /dev/null
+++ b/dev-perl/Math-CDF/Math-CDF-0.100.0.ebuild
@@ -0,0 +1,19 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=CALLAHAN
+DIST_VERSION=0.1
+inherit perl-module
+
+DESCRIPTION="Generate probabilities and quantiles from statistical functions"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"

diff --git a/dev-perl/Math-CDF/metadata.xml b/dev-perl/Math-CDF/metadata.xml
new file mode 100644
index ..1688f11
--- /dev/null
+++ b/dev-perl/Math-CDF/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+  
+Math-CDF
+Math::CDF
+  
+



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

2016-11-19 Thread Agostino Sarubbo
commit: f94c41efad9d0d00a4ef01b920253e66ce3e607c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:53:02 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:53:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f94c41ef

app-arch/p7zip: amd64 stable wrt bug #582832

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-arch/p7zip/p7zip-16.02-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/p7zip/p7zip-16.02-r1.ebuild 
b/app-arch/p7zip/p7zip-16.02-r1.ebuild
index e0e7011..00fcb5d 100644
--- a/app-arch/p7zip/p7zip-16.02-r1.ebuild
+++ b/app-arch/p7zip/p7zip-16.02-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_src_all.tar.bz2"
 
 LICENSE="LGPL-2.1 rar? ( unRAR )"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
 IUSE="abi_x86_x32 doc kde +pch rar static wxwidgets"
 
 REQUIRED_USE="kde? ( wxwidgets )"



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-http/

2016-11-19 Thread Agostino Sarubbo
commit: 396f2d703b6273881cac8e2b409cec3f13304e96
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:52:55 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:52:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=396f2d70

dev-php/pecl-http: amd64 stable wrt bug #587466

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/pecl-http/pecl-http-2.5.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-http/pecl-http-2.5.6.ebuild 
b/dev-php/pecl-http/pecl-http-2.5.6.ebuild
index c08fe56..f42ddb7 100644
--- a/dev-php/pecl-http/pecl-http-2.5.6.ebuild
+++ b/dev-php/pecl-http/pecl-http-2.5.6.ebuild
@@ -13,7 +13,7 @@ USE_PHP="php5-6"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DESCRIPTION="Extended HTTP Support for PHP"
 LICENSE="BSD-2 MIT"



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-http/

2016-11-19 Thread Agostino Sarubbo
commit: b28e532ad80242b3a0941e4db6273563f64a616e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:55:17 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:55:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28e532a

dev-php/pecl-http: x86 stable wrt bug #587466

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/pecl-http/pecl-http-2.5.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-http/pecl-http-2.5.6.ebuild 
b/dev-php/pecl-http/pecl-http-2.5.6.ebuild
index f42ddb7..8acbc17 100644
--- a/dev-php/pecl-http/pecl-http-2.5.6.ebuild
+++ b/dev-php/pecl-http/pecl-http-2.5.6.ebuild
@@ -13,7 +13,7 @@ USE_PHP="php5-6"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DESCRIPTION="Extended HTTP Support for PHP"
 LICENSE="BSD-2 MIT"



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

2016-11-19 Thread Agostino Sarubbo
commit: 7356625cff6719a267af4f6b5056b961906d2286
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:55:36 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:55:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7356625c

media-libs/giflib: x86 stable wrt bug #569652

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/media-libs/giflib/giflib-5.1.4.ebuild 
b/media-libs/giflib/giflib-5.1.4.ebuild
index bdec635..416ccbc 100644
--- a/media-libs/giflib/giflib-5.1.4.ebuild
+++ b/media-libs/giflib/giflib-5.1.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/giflib/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0/7"
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
 RDEPEND="



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

2016-11-19 Thread Agostino Sarubbo
commit: 95a3e1d72ab2aa4182aecb62d806d372dea4137e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:53:09 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:53:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a3e1d7

dev-db/redis: amd64 stable wrt bug #595730

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-db/redis/redis-3.2.5.ebuild b/dev-db/redis/redis-3.2.5.ebuild
index 5434093..a8cb5a4 100644
--- a/dev-db/redis/redis-3.2.5.ebuild
+++ b/dev-db/redis/redis-3.2.5.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://redis.io/;
 SRC_URI="http://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~x86-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~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: net-libs/libupnp/

2016-11-19 Thread Agostino Sarubbo
commit: 4f749edd7d4494c53165c6efe7b603f16353a049
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:52:19 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:52:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f749edd

net-libs/libupnp: amd64 stable wrt bug #589136

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libupnp/libupnp-1.6.18-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.6.18-r2.ebuild 
b/net-libs/libupnp/libupnp-1.6.18-r2.ebuild
index 655b6b6..ed934f5 100644
--- a/net-libs/libupnp/libupnp-1.6.18-r2.ebuild
+++ b/net-libs/libupnp/libupnp-1.6.18-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/pupnp/${P}.tar.bz2"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux"
 IUSE="debug doc ipv6 static-libs"
 
 DOCS="NEWS README ChangeLog"



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

2016-11-19 Thread Agostino Sarubbo
commit: 933cfa15dff39b81ebb0339e5850a9ad62d1d76e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:52:25 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:52:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=933cfa15

dev-libs/expat: amd64 stable wrt bug #585510

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/expat/expat-2.2.0-r1.ebuild 
b/dev-libs/expat/expat-2.2.0-r1.ebuild
index 55efcb4..b4058cd 100644
--- a/dev-libs/expat/expat-2.2.0-r1.ebuild
+++ b/dev-libs/expat/expat-2.2.0-r1.ebuild
@@ -11,7 +11,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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 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: dev-php/pecl-raphf/

2016-11-19 Thread Agostino Sarubbo
commit: 174325fc533666198af6cfe01ad67d2b59bb431e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:52:43 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:52:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=174325fc

dev-php/pecl-raphf: amd64 stable wrt bug #587466

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild 
b/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild
index 3f39b07..fdf4c74 100644
--- a/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild
+++ b/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild
@@ -12,7 +12,7 @@ USE_PHP="php5-6"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DESCRIPTION="A reusable, persistent handle and resource factory API"
 LICENSE="BSD-2"



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

2016-11-19 Thread Agostino Sarubbo
commit: 8050529169842c9c85b91562752889c86b24b16e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:52:35 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:52:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80505291

net-nds/openldap: amd64 stable wrt bug #560424

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-nds/openldap/openldap-2.4.43.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-nds/openldap/openldap-2.4.43.ebuild 
b/net-nds/openldap/openldap-2.4.43.ebuild
index 42f229c..b261da2 100644
--- a/net-nds/openldap/openldap-2.4.43.ebuild
+++ b/net-nds/openldap/openldap-2.4.43.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${P}.tgz
 
 LICENSE="OPENLDAP GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~amd64-linux ~x86-linux ~x86-solaris"
 
 IUSE_DAEMON="crypt icu samba slp tcpd experimental minimal"
 IUSE_BACKEND="+berkdb"



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-propro/

2016-11-19 Thread Agostino Sarubbo
commit: da82ee1ddb6483a39c9b1b286168aa6c4995c5ec
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:52:49 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:52:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da82ee1d

dev-php/pecl-propro: amd64 stable wrt bug #587466

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/pecl-propro/pecl-propro-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild 
b/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild
index b84a9a6b..76d0968 100644
--- a/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild
+++ b/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild
@@ -12,7 +12,7 @@ USE_PHP="php5-6"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 DESCRIPTION="A reusable, property proxy API for PHP"
 LICENSE="BSD-2"



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

2016-11-19 Thread Agostino Sarubbo
commit: b0773d556df87b25a2751b92fa86d8fa97e8fb16
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:53:15 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:53:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0773d55

media-libs/giflib: amd64 stable wrt bug #569652

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/media-libs/giflib/giflib-5.1.4.ebuild 
b/media-libs/giflib/giflib-5.1.4.ebuild
index 9cee595..bdec635 100644
--- a/media-libs/giflib/giflib-5.1.4.ebuild
+++ b/media-libs/giflib/giflib-5.1.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/giflib/${P}.tar.bz2"
 
 LICENSE="MIT"
 SLOT="0/7"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
 RDEPEND="



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

2016-11-19 Thread Agostino Sarubbo
commit: 022cf5b70deaa18d3bf626cc6ffbefa665fe1b9c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:54:43 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:54:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=022cf5b7

net-libs/libupnp: x86 stable wrt bug #589136

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-libs/libupnp/libupnp-1.6.18-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libupnp/libupnp-1.6.18-r2.ebuild 
b/net-libs/libupnp/libupnp-1.6.18-r2.ebuild
index ed934f5..7b8be8d 100644
--- a/net-libs/libupnp/libupnp-1.6.18-r2.ebuild
+++ b/net-libs/libupnp/libupnp-1.6.18-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/pupnp/${P}.tar.bz2"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux"
 IUSE="debug doc ipv6 static-libs"
 
 DOCS="NEWS README ChangeLog"



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

2016-11-19 Thread Agostino Sarubbo
commit: 7727f7e0affa5e87f9cf619f349466e572d7f7f9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:54:49 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:54:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7727f7e0

dev-libs/expat: x86 stable wrt bug #585510

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/expat/expat-2.2.0-r1.ebuild 
b/dev-libs/expat/expat-2.2.0-r1.ebuild
index b4058cd..4429f7e 100644
--- a/dev-libs/expat/expat-2.2.0-r1.ebuild
+++ b/dev-libs/expat/expat-2.2.0-r1.ebuild
@@ -11,7 +11,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 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 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: dev-db/redis/

2016-11-19 Thread Agostino Sarubbo
commit: a58a48114cb9cb3cae13318e9e78c7e841d863a2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:55:30 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:55:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a58a4811

dev-db/redis: x86 stable wrt bug #595730

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-db/redis/redis-3.2.5.ebuild b/dev-db/redis/redis-3.2.5.ebuild
index a8cb5a4..1ebfa9a 100644
--- a/dev-db/redis/redis-3.2.5.ebuild
+++ b/dev-db/redis/redis-3.2.5.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://redis.io/;
 SRC_URI="http://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE="BSD"
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x86-macos 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~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-php/pecl-propro/

2016-11-19 Thread Agostino Sarubbo
commit: 1328ac275400d5e8dcd35287d6d96b42037e7fe5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:55:11 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:55:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1328ac27

dev-php/pecl-propro: x86 stable wrt bug #587466

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/pecl-propro/pecl-propro-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild 
b/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild
index 76d0968..402674b 100644
--- a/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild
+++ b/dev-php/pecl-propro/pecl-propro-1.0.2.ebuild
@@ -12,7 +12,7 @@ USE_PHP="php5-6"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DESCRIPTION="A reusable, property proxy API for PHP"
 LICENSE="BSD-2"



[gentoo-commits] repo/gentoo:master commit in: dev-php/pecl-raphf/

2016-11-19 Thread Agostino Sarubbo
commit: 60e8aeecdae3ffb4ea5185ddd74e93db73e81851
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:55:06 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:55:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60e8aeec

dev-php/pecl-raphf: x86 stable wrt bug #587466

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild 
b/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild
index fdf4c74..1846135 100644
--- a/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild
+++ b/dev-php/pecl-raphf/pecl-raphf-1.1.2.ebuild
@@ -12,7 +12,7 @@ USE_PHP="php5-6"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 DESCRIPTION="A reusable, persistent handle and resource factory API"
 LICENSE="BSD-2"



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

2016-11-19 Thread Agostino Sarubbo
commit: b73cc74262d776a85828ef2df12bf6c9a602f964
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:54:58 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:54:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b73cc742

net-nds/openldap: x86 stable wrt bug #560424

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-nds/openldap/openldap-2.4.43.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-nds/openldap/openldap-2.4.43.ebuild 
b/net-nds/openldap/openldap-2.4.43.ebuild
index b261da2..76b17cf 100644
--- a/net-nds/openldap/openldap-2.4.43.ebuild
+++ b/net-nds/openldap/openldap-2.4.43.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="ftp://ftp.openldap.org/pub/OpenLDAP/openldap-release/${P}.tgz
 
 LICENSE="OPENLDAP GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~x86-solaris"
 
 IUSE_DAEMON="crypt icu samba slp tcpd experimental minimal"
 IUSE_BACKEND="+berkdb"



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

2016-11-19 Thread Agostino Sarubbo
commit: 16d3cc901a799a5d8a35b7a5e0b5184af031e7c2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Nov 19 13:55:23 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Nov 19 13:55:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16d3cc90

app-arch/p7zip: x86 stable wrt bug #582832

Package-Manager: portage-2.3.0
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-arch/p7zip/p7zip-16.02-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/p7zip/p7zip-16.02-r1.ebuild 
b/app-arch/p7zip/p7zip-16.02-r1.ebuild
index 00fcb5d..08b7939 100644
--- a/app-arch/p7zip/p7zip-16.02-r1.ebuild
+++ b/app-arch/p7zip/p7zip-16.02-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="mirror://sourceforge/${PN}/${PN}_${PV}_src_all.tar.bz2"
 
 LICENSE="LGPL-2.1 rar? ( unRAR )"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
 IUSE="abi_x86_x32 doc kde +pch rar static wxwidgets"
 
 REQUIRED_USE="kde? ( wxwidgets )"



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

2016-11-19 Thread James Le Cuirot
commit: 97b978de4fd9d15f2254ee16f1293d2a93cdedc2
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov 19 17:09:33 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov 19 17:18:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97b978de

dev-java/icedtea-bin: Version bump to 7.2.6.8 wrt security bug #600224

Package-Manager: portage-2.3.2

 dev-java/icedtea-bin/Manifest   |   6 +
 dev-java/icedtea-bin/icedtea-bin-7.2.6.8.ebuild | 206 
 2 files changed, 212 insertions(+)

diff --git a/dev-java/icedtea-bin/Manifest b/dev-java/icedtea-bin/Manifest
index af9d5cd..9349514 100644
--- a/dev-java/icedtea-bin/Manifest
+++ b/dev-java/icedtea-bin/Manifest
@@ -8,9 +8,12 @@ DIST icedtea-bin-core-3.2.0-ppc64.tar.xz 54021752 SHA256 
f5eb2d85f5518356b53d079
 DIST icedtea-bin-core-3.2.0-x86.tar.xz 61103504 SHA256 
e74bb34040f8bebc7edc531c73069a411075464a6d6f8aa51d3930ad1281ab83 SHA512 
960b72971a13375c35c4ff7ddbd0466cab6a6434565a0841f0b760b67466b9057476be46a804afc4224c8d75cafdf21021661937197d1ea5a2674da835fb28b0
 WHIRLPOOL 
0decc2ed58c23f19048ca73e5a44c7d6174105a14932ef66301759ba349f3451a5f7fbd00821832b62eacbae68a7b4a4ce7f0d02bc0fce0317471adfa48f9293
 DIST icedtea-bin-core-7.2.6.7-amd64.tar.xz 53121664 SHA256 
3c43a1b1ae0b49ab9c5b01fb925fc2e40e36b26ee94bb134a9041ba550abb301 SHA512 
7c468356464ace98396b68596444b4e6b8545883fbe4a83e61413955f3a7f5f49d2f6eb3b97108633b03e37ac95fc328d28ec1eaff1464887e394752266da5a5
 WHIRLPOOL 
8f0f73fbe8d2e1fd6a3393868210c8b7d44b249392b2aa54cd399215607da8984d4979c23ae36563d04cd37b4cc9041018bf508a7596c4923abc15269fedd15f
 DIST icedtea-bin-core-7.2.6.7-x86.tar.xz 54806556 SHA256 
644b8355a62484ec38357bde77ffa72843bf7c1391be305f834f43be374c62e5 SHA512 
380968a2da744d2ea2a67c882416c909cc4132bb2fc9b79eb8ff263c8aa5d49c262e41792884c67a09fb93bfee371002a5fb9ebd630982d02429bd268489c264
 WHIRLPOOL 
84669bae688cd043ace4eb2b6912510d1f0358a7dacfbb193d8e6655b038ff82fd156743b5498c763435863cb22fd021dd7a2dbf38d6827990c6a5acf6e0c769
+DIST icedtea-bin-core-7.2.6.8-amd64.tar.xz 53161352 SHA256 
f96ef80de8568e3cd9d41c7829918e77c9705866e284e1390c94f68f911887a6 SHA512 
833d586119cfa218e711bbccf33aaa4934bd4bc34839920af7ab2677b93e4c5ebe844c9cc293fb1aa47265695c9ac9673eea81d44fcc533118ccfcfa2aa490a3
 WHIRLPOOL 
a438aa02fa1b3fec1129b06c43cad7990068798956a3880c8b71fc135e2ebab01dde9f3bf84c3ed44007b65f6e52e306e00933f8d9260f0550b6720945549301
+DIST icedtea-bin-core-7.2.6.8-x86.tar.xz 54834440 SHA256 
c5867db7613cb73d94c0d413f00d1bc5e5563143977bdf046ca1bc42f00a28da SHA512 
da511acc62225af3a3755e6dac7f0ffb47ed9eb4c6ce7faecde6850fd499cf9427504903d94b7efe5c5126095b0ac71dd5bbe401ff47ebd8026574f105b2b9c9
 WHIRLPOOL 
8471a3e60dbb75befeeb8f338165d3ae28b6fa3fb602f98ca5eaca4759ed8a447a728023853d3bbd04a822411dfdcaf45dcb55f6b2ba9beac6ccacba0ee3140e
 DIST icedtea-bin-doc-3.1.0.tar.xz 11683216 SHA256 
05e5ed8110123e4a0941458f4b4b73ee999029db98fcbad35033d0de97e14b25 SHA512 
cd4d3f60e29777240a26ac6fffead099ee31eb05bfb2faa8f3c2c5a7c2aded3159ad0a8aecdc298e7a84bf96cae626d7c1b1cf18af24c39f02c6455d260a64a5
 WHIRLPOOL 
a008c276bf6da08385524c8886366d2f62c2975659d6181991bcbab9f2396a8a8c5a1cdee847d71d6c994ded738d126aeacc4c7180f4a1f5202a7e01f171db00
 DIST icedtea-bin-doc-3.2.0.tar.xz 11641392 SHA256 
2c519fa79584c4519978dbbd4872e50de774d2efeb6c117c9288f03351a88730 SHA512 
c3e5cd37cdb53b153c012bdafb381ee1313683c8673e1d5c8dca04ce9c697055eac745fac19cc8b0b5f6d33bf552d0be5a80a6bf2e22cfaafdc4ba036401b5e0
 WHIRLPOOL 
086b59a8fb20171379de93ca959f79153a04adff1f5d2f1abb35447be4658ec7ddbc389767caa05cce92fbd797485c25d88de163a72469dc7a622bff244739af
 DIST icedtea-bin-doc-7.2.6.7.tar.xz 10603912 SHA256 
951c33293ec4161084c6d1b40c9af836547c138985ccca2a7062f03c915aae61 SHA512 
ea5b0f092388641c82a31bc143565c245dcc3eefa511ec89cd2e4ecafb8ef06b738cfea007fb6530f416d1ae1b8203a3ef495791ec0d6ce14ee4e7574c096d4f
 WHIRLPOOL 
a4745cf762dc1877e01cfb65675d990623d740015ee54c7d5b9d5f5fc72cab14a8c547aa3987f49158eb8e7013867c772365fe2905974d6e1b239c0400cfb994
+DIST icedtea-bin-doc-7.2.6.8.tar.xz 10608092 SHA256 
259f3e3bc826f93b5bab5720e21901ac1f17ef5807e9b8ff077c5315ee0275ae SHA512 
84c741aea87ee9edbb4c54ee4dcecd2adc155f0598bbc1031fac5ed5e5c5828e259a839200b3f908d0928806a0c851ffcfa8aed4ec0486c11fb521a21173fafa
 WHIRLPOOL 
cadc1346bf2aeceabf60fac58d7a104012fb857962a9e7684071ca1319c2caf66d5909bfee5802d020db981db65cf58ffa70ecbf0a9ba40cfa5ba48797175d80
 DIST icedtea-bin-examples-3.1.0-amd64.tar.xz 1855912 SHA256 
f5d40a7d8a6e2877f0edb331e2fe288be12f07c373b09e7682440ea1348c SHA512 
c89acc0b6e3b41f043da6a95ca73239606e6b4d262de0a38624e1f31539619c60933ffc6c92ef8f5cf2cb88b2c3bedabe129fbe88a6579c1d44a60c806112139
 WHIRLPOOL 
e2c8567d4d419f79828157118cf2b581b25e6519b13d9fda4c54adfd3c2ac08b593a5f190d1deedfaa19cdf34003748caf6d714751e0b1538038b09005597969
 DIST icedtea-bin-examples-3.1.0-arm.tar.xz 1838976 SHA256 
a64f2e9b0129847f629304cc96d3b003005afd4bef8160d53c91dd585f956c6b SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-java/gcj-jdk/

2016-11-19 Thread James Le Cuirot
commit: b81663eda754db5b97042cb46dede32c95b782e4
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Nov 17 12:44:33 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov 19 17:17:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b81663ed

dev-java/gcj-jdk: Version bump to 4.9.4

Package-Manager: portage-2.3.2

 dev-java/gcj-jdk/{gcj-jdk-4.9.3.ebuild => gcj-jdk-4.9.4.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-java/gcj-jdk/gcj-jdk-4.9.3.ebuild 
b/dev-java/gcj-jdk/gcj-jdk-4.9.4.ebuild
similarity index 100%
rename from dev-java/gcj-jdk/gcj-jdk-4.9.3.ebuild
rename to dev-java/gcj-jdk/gcj-jdk-4.9.4.ebuild



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

2016-11-19 Thread James Le Cuirot
commit: d0f8404365acf6576c6cca09a8218d8514fbab05
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov 19 11:04:45 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov 19 17:17:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f84043

dev-java/icedtea: Version bump to 3.2.0 wrt security bug #600224

Package-Manager: portage-2.3.2

 dev-java/icedtea/Manifest |  10 +
 dev-java/icedtea/icedtea-3.2.0.ebuild | 368 ++
 2 files changed, 378 insertions(+)

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index deeb0ee..05aea1e 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -16,6 +16,16 @@ DIST icedtea-3.1-nashorn-289b6e3c6e05.tar.xz 2219684 SHA256 
56b36f5f7c073b140f83
 DIST icedtea-3.1-openjdk-453780834f92.tar.xz 334244 SHA256 
c19f7ffaec510db20b3c66b6447040012c28df319ab1dcfaf0a41c0e807bdddc SHA512 
f2b40a39418e9df667a871293629cec85a8b43edd9051caf80961e1b92916e7a7509dfebaaf6c461ff0d51e6e8d653d7584de8ff35fb7229e8def6ee0f8ddadc
 WHIRLPOOL 
a072fd9dac5cefd00f60557bd25f4089ede0400caf64b179924df2cd1a18ded15d9eef072d355870c735d311012ecb53178b834ea3a738d994decacf13433b16
 DIST icedtea-3.1-shenandoah-997386c525f7.tar.xz 6839400 SHA256 
9363a37649f102de9c49e11f1fdd2b42be82f83e004265894cfc036325d511ea SHA512 
7cf4b07c62d790225ce102ab7e835e00bf53cbeace9c1bc10faf84f5d1a8b6eb9e2be62e542e98d7ecef75594738fa660bb738e951c91067220487cd105b3454
 WHIRLPOOL 
8bf3d81d01d84e362ed0d446a9183702e6f22a3eb186842cf4e63a98842263e28e98fd4d16d4c995cd6b2c87e839ee2484b2182edca6b02ae6702a25f7cdf61e
 DIST icedtea-3.1.0.tar.xz 1437400 SHA256 
75616641ad6d8437124c32fed3fadddac67b14bba26757e15f6c2f69149233b4 SHA512 
85b54df0d50e5554b62191c7e868c7c2154619617732af227408a8d6a9c8b2a4b86fc2f98f33b58c4b14485931e6da4eff8d50026d63b0f7a5a46bf9d66140a3
 WHIRLPOOL 
c2f3b42a2b16fd1e28d3a9f1929cba76e2f0aa77872eac8f451b53fb20eaaf7aec140c769133af976e0377315742d6a2cc054a325c82195380dd8cc5e5bc45c7
+DIST icedtea-3.2-corba-9d3757e6da35.tar.xz 939832 SHA256 
902607987e26c67489f01fe8cf693fbbbd5850f3b9b06ff12af5486b75822387 SHA512 
b66f13f3f65085857bbdfb37d4d05a872a4cdb115394787365c8b4f67a70b95df4c66702b930fb6ec637e9f5065e21283df344127d618477d3e1beca7b9d047a
 WHIRLPOOL 
d5b5e96f55e9f0d61eaec4f22e4006bfd2a75ad89e603bb60fc74af8b05e19ab70dfabb05c30a8919b980857a1ba7631d0d322ee0b000af5352f6409af9e3dd1
+DIST icedtea-3.2-hotspot-be4aeaa327f7.tar.xz 6809636 SHA256 
9dd74ff7ac16b6104410c7c331f39e96fe50940e4023201b1a2898a8314e1fbf SHA512 
69df8dc706900d07eca71982de27c55c9cde18c41061752e91108c30cd85d0d9b37f8b9e041aab0622746510900173bb635cdc4cc3c4fd0f795898fc15158441
 WHIRLPOOL 
09077c8c10dbc90585df60ae785411ac4dcc14f3955cce52fd1aea5b6c24cf3ee07ffb865275f239f52d04aa5553b63fcbf4f889b312a6cd41e98cab3d946925
+DIST icedtea-3.2-jaxp-81c2773fbb0d.tar.xz 2301272 SHA256 
61d6c7a44746ace38812582474b66c2c96f1ce9c7bd5b9ad251b4d5982bee6d6 SHA512 
44c0c43509a5c7e7f95ff319a857019acfc1645cadc584e5a20bbc4df2ba154f1d6ed85f9e6154f5526800dcc997971b53762040c2392f4edafe85c55e05721a
 WHIRLPOOL 
77f887aabea7347232cc1c18acbb15ebfe5134e731970c112be6bae97ec1fe6bfa074d26e03eada7c3ad5bc2e2902141684f042034ae6954fb8b7a562439ea9a
+DIST icedtea-3.2-jaxws-f57f3ff6.tar.xz 2268764 SHA256 
1285b9cb273b6fa97f985ace4cb6b5dc1963b1d5e0ae06ad4802f5ff678465b9 SHA512 
5768d2dcee308e4060f797b30176959ea1295fd448a1525ecd40fc8a5bd1e97daa81813c19d1aed370f063e81a33bed4a6cb6bbebaa55de11f6173c7eda86574
 WHIRLPOOL 
58f071d6e0e97f2797b5088eb6b70e846f1284243049adfe2dfefd86694368146ab967dc52164b24c62b20ba6a4802cba4c2f4fba45e46ab08446c2ee4ecb8b6
+DIST icedtea-3.2-jdk-0cc71de3df18.tar.xz 38857856 SHA256 
92557d8fbf826a643c730bbb4081e87140eb45e40e5662fd3d75829b5f61c9c5 SHA512 
c52136ce97db6a77fd878f4af8182aa1232a02f6010ac9cf570c99ef9576af6427f703b10efc6546bb4a72f91e2f2c39a891b54b9b34ecfc997713ed2a74025f
 WHIRLPOOL 
67881505d5125f9a2c893c0e298fd81721ce83f35fdf2a19430b465edcd18ed0b5bf4a6846c50ff34f68765be5968aec7bee0015c812918b57a19a566d91c903
+DIST icedtea-3.2-langtools-a553c153d376.tar.xz 2061172 SHA256 
94d1754bba9020b2ee658c7adc2388ac38208e71e55650dc0393d24b20816a4d SHA512 
b799f21be6bab4cec51a3b4b8e3b578aa91501449bfd336c0fedb04df109644a41e57e847eda65bf4cee54b3f55bb8785a4c0df5fb5ff9021870883c77fe3898
 WHIRLPOOL 
47b7b9a897ca5f2d4614cbbe3c6e16df3030d3449426f716cbf53521ca8b9e0f8d3183a0deef7cc99aa9ee95b92e00b6f9f146322325503d137f032b0f8f3a03
+DIST icedtea-3.2-nashorn-0fb33c8b64d1.tar.xz 2227096 SHA256 
5f72fedfa82415fdf98a0a9bf01d2c171b060810b314bf5bb1c69b57123dc910 SHA512 
c526678a0c406300e92e8290617518bf326e6992f0cf8b305aa28b45e52b92cbd5a5fa54ea9ef93862a0acbf1a14a1f15986bc64ffb55a6f769a5be068e0e5e2
 WHIRLPOOL 
82885f077caa95f72f0822318655ec9c01b9518fdb5501230817a6dada7e9e387e8cc27f3b15194460cf9fdfb58a23ec6e09cd9f6922916bb6ea1e6539dee98a
+DIST icedtea-3.2-openjdk-200203ccf4bb.tar.xz 336232 SHA256 
6c1040b4044efdd0c413d15865304f1ac46230d91435a31347a7b755e91e7924 SHA512 

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

2016-11-19 Thread Kristian Fiskerstrand
commit: d4b058fc263ed35703a3862fbcfe37289aacfb5e
Author: Kristian Fiskerstrand  gentoo  org>
AuthorDate: Sat Nov 19 18:29:08 2016 +
Commit: Kristian Fiskerstrand  gentoo  org>
CommitDate: Sat Nov 19 18:29:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b058fc

app-crypt/gnupg: Enable tools IUSE by default

At least until bug 600208 is resolved

Package-Manager: portage-2.3.2

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

diff --git a/app-crypt/gnupg/gnupg-2.1.16.ebuild 
b/app-crypt/gnupg/gnupg-2.1.16.ebuild
index a1c03eb..4fc5fd6 100644
--- a/app-crypt/gnupg/gnupg-2.1.16.ebuild
+++ b/app-crypt/gnupg/gnupg-2.1.16.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://gnupg/gnupg/${MY_P}.tar.bz2"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
 
 SLOT="0"
-IUSE="bzip2 doc +gnutls ldap nls readline selinux +smartcard tofu tools usb 
wks-server"
+IUSE="bzip2 doc +gnutls ldap nls readline selinux +smartcard tofu +tools usb 
wks-server"
 
 COMMON_DEPEND_LIBS="
>=dev-libs/npth-1.2



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

2016-11-19 Thread William Hubbs
commit: 9cd25c21392af7f1e5d127acddb3dab73e5a4227
Author: William Hubbs  gentoo  org>
AuthorDate: Sat Nov 19 19:48:17 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat Nov 19 19:48:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cd25c21

app-emulation/runc: remove unstable versions

Package-Manager: portage-2.3.0

 app-emulation/runc/Manifest  |  3 --
 app-emulation/runc/runc-0.0.2.ebuild | 49 
 app-emulation/runc/runc-0.0.5.ebuild | 52 --
 app-emulation/runc/runc-0.1.1.ebuild | 55 
 4 files changed, 159 deletions(-)

diff --git a/app-emulation/runc/Manifest b/app-emulation/runc/Manifest
index 9c0b7dc..988e8c5 100644
--- a/app-emulation/runc/Manifest
+++ b/app-emulation/runc/Manifest
@@ -1,5 +1,2 @@
-DIST runc-0.0.2.tar.gz 370712 SHA256 
3d0aa68ebb1622853d0bbed432ebd4b6c9ef210881ac74f3a695b4e914d246dc SHA512 
e0a44d5dd8a1b8eaeaf7d466cebc7dc8beaa26f49bd0e76d3a955cef9c5c266d2afe6652f28fa905a408b5b93966f52e345112fa7aef373216561ad7069181c5
 WHIRLPOOL 
e7ed1ee3d159a81fb0b2b0f5fac9a9a66116035babc88f6f266a6c8455953ce372e93351baf7c621c42ab8c5907961fd899b1d158e7f7b1335f83fcef7252c71
-DIST runc-0.0.5.tar.gz 441874 SHA256 
e80323412883e4afcfcf8e1b2eaefdcb74632628d02fd7f48618caf78e5e4aa0 SHA512 
625d67ec02e23c66a3d1a97113a0c58f3f200404866839556bc3cd5b3e34342230b8091613d17ef4a38d05ca51df586cd7366dc6bddeeddd6b69bb9a2ae7efda
 WHIRLPOOL 
862b08621b67fc57286940ad5e20557d90cfef63aae5be0a90fc6f5b764d032b187ba5ad5dcb1fa99fb5ec59d6217941aa19ca9048637bd02b64e52c8cecdce6
 DIST runc-0.1.0.tar.gz 496358 SHA256 
681d6d89541ae2e06757f999a242a1f97bbcb1ad6e10f4cdee287ec4a9d2bff9 SHA512 
8a9ff02b0161eda0a730194b0fbf7ad76e8f379992e74061ef49302da3492fd0c53f06db9153ded4d934d67bbf6f4291d6154254f1b924ef73c97c44cd14ffcf
 WHIRLPOOL 
81f488a4f1e23e8704a9fa8404965b2f12f74a875ba8e67dc15de93f43b075dc538cd0d89c7a1187cb74ac6320317b5985855945fb8bf8f749d6736df47b844a
-DIST runc-0.1.1.tar.gz 496416 SHA256 
f9955daed1e73e842b2f28a258fba51f4e72a6b4b64cc3fc06415481d55ce000 SHA512 
074482636fd2342c490c450d7a379cd14cd6c7b1ec6109cf729c4b451cc8cfb0e6b286d0df8e0cc0dba7b24d63d12bd5978013e08301a785db5e4280c595fdaa
 WHIRLPOOL 
f605e70d2bea88b5ba10f6375543824167509630cc3ed839575d5e0d3b05bb07edcac8fcee168aa3ae89adaf0ccf5ab816a201b27022ddcf31fd0218bd59c357
 DIST runc-1.0.0_rc2.tar.gz 550449 SHA256 
638742c48426b9a3281aeb619e27513d972de228bdbd43b478baea99c186d491 SHA512 
83a3d45efbb86d3d583b96062202b9e60121d250af2c0dd37d07fda574b642aa6f05e29cac6644ad3d624647400db694082e280383e41ca9f31dc0a33b87ed76
 WHIRLPOOL 
990a45739689db80bbeed43b0fd3a4ce4d0563ea833361b9112e750782313f19e638c4bfbd455f5dd1882d64c724dcf0213701322029c2c9f98f624863c744f3

diff --git a/app-emulation/runc/runc-0.0.2.ebuild 
b/app-emulation/runc/runc-0.0.2.ebuild
deleted file mode 100644
index f5bb49f..
--- a/app-emulation/runc/runc-0.0.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="runc container cli tools"
-HOMEPAGE="http://runc.io;
-
-GITHUB_URI="github.com/opencontainers/runc"
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="git://${GITHUB_URI}.git"
-   inherit git-r3
-else
-   SRC_URI="https://${GITHUB_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-inherit multilib
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-DEPEND=">=dev-lang/go-1.4:="
-RDEPEND=""
-
-src_prepare() {
-   epatch_user
-}
-
-src_compile() {
-   # Taken from app-emulation/docker-1.7.0-r1
-   export CGO_CFLAGS="-I${ROOT}/usr/include"
-   export CGO_LDFLAGS="-L${ROOT}/usr/$(get_libdir)"
-
-   # Setup GOPATH so things build
-   rm -rf .gopath
-   mkdir -p .gopath/src/"$(dirname "${GITHUB_URI}")"
-   ln -sf ../../../.. .gopath/src/"${GITHUB_URI}"
-   export GOPATH="${PWD}/.gopath:${PWD}/vendor"
-
-   make
-}
-
-src_install() {
-   dobin runc
-}

diff --git a/app-emulation/runc/runc-0.0.5.ebuild 
b/app-emulation/runc/runc-0.0.5.ebuild
deleted file mode 100644
index 5cd3836..
--- a/app-emulation/runc/runc-0.0.5.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib
-
-DESCRIPTION="runc container cli tools"
-HOMEPAGE="http://runc.io;
-
-GITHUB_URI="github.com/opencontainers/runc"
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="git://${GITHUB_URI}.git"
-   inherit git-r3
-else
-   SRC_URI="https://${GITHUB_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-   KEYWORDS="~amd64"
-fi
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="+seccomp"
-
-DEPEND=">=dev-lang/go-1.4:="
-RDEPEND="seccomp? ( sys-libs/libseccomp )"
-
-src_prepare() {
-   epatch_user
-}
-
-src_compile() {
-   # Taken from 

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

2016-11-19 Thread Johannes Huber
commit: 4efe59899e3fa62ab302286c4ec0928fecbd14ba
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 19:50:19 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 19:50:19 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4efe5989

kde-apps/messagelib: DEPEND on dev-qt/qtsql

Upstream commit: c09a8f0929eef87299374f691db6b3bed1148f7c

Thanks-to: Arfrever

Package-Manager: portage-2.3.2

 kde-apps/messagelib/messagelib-16.12.49..ebuild | 1 +
 kde-apps/messagelib/messagelib-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/kde-apps/messagelib/messagelib-16.12.49..ebuild 
b/kde-apps/messagelib/messagelib-16.12.49..ebuild
index ddabea7..1f34223 100644
--- a/kde-apps/messagelib/messagelib-16.12.49..ebuild
+++ b/kde-apps/messagelib/messagelib-16.12.49..ebuild
@@ -57,6 +57,7 @@ COMMON_DEPEND="
$(add_qt_dep qtgui '' '' '5=')
$(add_qt_dep qtnetwork)
$(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtsql)
$(add_qt_dep qtwebengine 'widgets')
$(add_qt_dep qtwebkit)
$(add_qt_dep qtwidgets)

diff --git a/kde-apps/messagelib/messagelib-.ebuild 
b/kde-apps/messagelib/messagelib-.ebuild
index ddabea7..1f34223 100644
--- a/kde-apps/messagelib/messagelib-.ebuild
+++ b/kde-apps/messagelib/messagelib-.ebuild
@@ -57,6 +57,7 @@ COMMON_DEPEND="
$(add_qt_dep qtgui '' '' '5=')
$(add_qt_dep qtnetwork)
$(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtsql)
$(add_qt_dep qtwebengine 'widgets')
$(add_qt_dep qtwebkit)
$(add_qt_dep qtwidgets)



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

2016-11-19 Thread Johannes Huber
commit: d13704cd6bf37141ed82aa6d4e2cf5bccc9d3ba4
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 20:06:40 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 20:06:40 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d13704cd

kde-frameworks/knewstuff: Update dependencies

Upstream commit 29e1276039878c52fa331862deb259c75908ab5c

Thanks-to: Arfrever

Package-Manager: portage-2.3.2

 kde-frameworks/knewstuff/knewstuff-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/kde-frameworks/knewstuff/knewstuff-.ebuild 
b/kde-frameworks/knewstuff/knewstuff-.ebuild
index 760ac9e..ddfdd96 100644
--- a/kde-frameworks/knewstuff/knewstuff-.ebuild
+++ b/kde-frameworks/knewstuff/knewstuff-.ebuild
@@ -26,7 +26,9 @@ RDEPEND="
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kxmlgui)
+   $(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
 "



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

2016-11-19 Thread Dirkjan Ochtman
commit: 386141c5882133f8b24374002fb23285ed06a263
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Sat Nov 19 20:36:36 2016 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Sat Nov 19 20:36:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=386141c5

dev-util/cargo: version bump to 0.14.0

Package-Manager: portage-2.3.0

 dev-util/cargo/Manifest|  19 
 dev-util/cargo/cargo-0.14.0.ebuild | 176 +
 2 files changed, 195 insertions(+)

diff --git a/dev-util/cargo/Manifest b/dev-util/cargo/Manifest
index 51adff4..fc2a367 100644
--- a/dev-util/cargo/Manifest
+++ b/dev-util/cargo/Manifest
@@ -2,11 +2,14 @@ DIST advapi32-sys-0.1.2.crate 7052 SHA256 
307c92332867e586720c0222ee9d890bbe8431
 DIST advapi32-sys-0.2.0.crate 7217 SHA256 
e06588080cb19d0acb6739808aafa5f26bfb2ca015b2b6370028b44cf7cb8a9a SHA512 
8e6bc75fcb2b91d2b8fe281d165aa8281c8ecca9ba09552f5e4cdbadc03b91db5a98789233c4dc858ee9cf8a3488f28af5a742dac50b44f6397fd14478b77618
 WHIRLPOOL 
30da033ae33a8d6e350bf49e8e525a984d3c18abe7356660f1d2d1e9cbb1dcbae3ac86bfd1469058358889bbeb900fa5dd5be4a6e337005657a82adedc60b1a7
 DIST aho-corasick-0.5.1.crate 29015 SHA256 
67077478f0a03952bed2e6786338d400d40c25e9836e08ad50af96607317fd03 SHA512 
81dbcf720613671880c5f28066a1368ee7e953c5d9f44253dc1f9c31b601e87bac518baa48cfaa34b905a4f687ec30233c1dcb00da093dbe502ce8a2f96b9619
 WHIRLPOOL 
33ddea81b7768c02a14d4a461b0f8e0175567ffbf70dc0aa849bbd46830df0607212c2c5d51efa1b3902ad156b20f22c14fa07be2d03b848a202b66579639d54
 DIST aho-corasick-0.5.2.crate 542932 SHA256 
2b3fb52b09c1710b961acb35390d514be82e4ac96a9969a8e38565a29b878dc9 SHA512 
06686b33a42bc6a9d2cf48632987f8ff96a46c2a8d94cfb6cb9c2e0006e21e11b08bac6bb104690cbd3e5b6d015b73defe8da7e1a67d50d7d849be7ae699d9c7
 WHIRLPOOL 
2da56e0130e9611b58b38d291710695cfd15a61ee2c77d32fe699d449ec71260586605b855d6a66e8c49f093146be31bde823ef9bf92fbaee76b4d4d98340b32
+DIST aho-corasick-0.5.3.crate 252052 SHA256 
ca972c2ea5f742bfce5687b9aef75506a764f61d37f8f649047846a9686ddb66 SHA512 
cc297b4882b869919edf9023ee2bd7100eb48709f6e7076fd26d1701dab3d8aa2cfb03752a764877cd92177ab7a4ce3dcdae76d16965eca2ff53667832afda31
 WHIRLPOOL 
93651414398a02de849aa0b1dd8319678e20df385643422da751e38388afe60ae305f197a68cf2b9d1d6e39ef56c54979b6290a2c82555eb811839acffb72531
 DIST bitflags-0.1.1.crate 8719 SHA256 
2a6577517ecd0ee0934f48a7295a89aaef3e6dfafeac404f94c0b3448518ddfe SHA512 
aa85c6adda0e9d192f2ae817e3c727167bac8609eb85c8153d99bb42d990de3f931e890924841ca11ba8dbd1413d1c5bf20acd584d182292e8828ed56fcedc18
 WHIRLPOOL 
c93a45bb238b32e551dee23f9023db97eab10c2418a59dd9e3c44ca8cf7c8916de90ffbb5e84b7bff4863ce7a71de54e9fa760967989be906a90bec509a2956a
 DIST bitflags-0.7.0.crate 10851 SHA256 
aad18937a628ec6abcd26d1489012cc0e18c21798210f491af69ded9b881106d SHA512 
fdfe472c26e5486d1a3f1bfe5a27d26678781235c6e14b49bdb75388359cb78841f38d794fc4557548581a80a10b715d8840182c9ca3316049984a6b9f35b3c0
 WHIRLPOOL 
60551486cd6688c78ecd0ac40ca39b1f3d75537dd96ec32e9882e205bfe2062de939a129777d66f8c269c8a71e2f2aa240e015c0b3bfa51adbad478024e296d4
 DIST bufstream-0.1.1.crate 7437 SHA256 
7e493de6a8aed51697088e36dc5245ea3edd34e6872e32c732e5f996ed5b23b2 SHA512 
e1d378a5dd9d6b096f9b8d9de018c17652615ff373d1644b0978b74325f22fba2157ce0aa9fba423e1f452119af1485a72c2e44f7b3b8c5350dfd3f8f2e93436
 WHIRLPOOL 
de26e042bbb6323946d8570c682fa9ea08292508910ca7c928206935d6c1f6c888d3cb04bf285f1404b59c109cf813cc79ecbc64a6d16dfabf72412aabfc6be9
 DIST cargo-0.12.0.tar.gz 574902 SHA256 
4080d76b56b8202f7df271b4bb7d7d22abea5ff8c261aef42e6e5d248ca5972b SHA512 
6fba348b068c07d49a6a263f143b31c3dff1e0aa399b90193830ad1823a3c07c5097fb39ff09fcc7713e78e85cfa1b5d8825db75055c49e2c3237fe4bffad3bc
 WHIRLPOOL 
dceacc324bf167276c0f3163c1a476064362679220e0c310c97021e69b691d3c03fc6b6f967b66290c7c63512ca70ac78c09642585ef5f96264bffd50603c832
 DIST cargo-0.13.0.tar.gz 610125 SHA256 
90429180d3724385acb094f2896feea0c73690451a92215d6054d05edf4a5c49 SHA512 
04b5ad177fb586965349a11da36a1fff0d883ff2b21e783a6163c0c5497d559c44c9fb98e201eb7e5dc0e72608f83f9990e239df3a23824c961e305cced7
 WHIRLPOOL 
8d40be025f04097ec34866ecf242bd31734a9820c3955b936099266f89b7f0a1d94ce4ac5b87b64ec8a43b40160ffe196deb225359279b9bf426f9c90ba040bd
+DIST cargo-0.14.0.tar.gz 625305 SHA256 
90ec0e644586959f62e6e34e649ba57db6f74aa37b89e90972f817c49b187531 SHA512 
dcd6857f256f1b4cd4d0dfedbb7fceedadcf3ecbe92014f58ff3e668870624d5a1cddda1c4b2653b6ec713c6aef4810760e112e589b6eba81bba9692356acb4f
 WHIRLPOOL 
d9794dc55539356d48d05f72fd16794956b4dc6b05e31a2df214513d3aabc32e81ae41ef17b42c6852de01dc7c4bc8ca1fdb988fd717e8d062e681a0f92f45a4
+DIST cargo-registry-14f7adaa984f78037839f7e64912fe89d7af025a.tar.gz 2567101 
SHA256 ee2e0232c730876a49f212e227b1f4990059a090300b061a79ca358d590533e2 SHA512 
16c2c0fbbb9632547a1227d241025d550bd40125e9c6b04ddd3b1e07dc829dd7b41ad645cce0934e0e4b4c174cf4ba94eea404642de268d137359e06948288c0
 WHIRLPOOL 

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

2016-11-19 Thread Dirkjan Ochtman
commit: 0ac4dd91404e1fe250e202bd1310a21634612f05
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Sat Nov 19 20:37:25 2016 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Sat Nov 19 20:37:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ac4dd91

dev-lang/rust: version bump to 1.13.0

Package-Manager: portage-2.3.0

 dev-lang/rust/Manifest   |   3 +
 dev-lang/rust/rust-1.13.0.ebuild | 153 +++
 2 files changed, 156 insertions(+)

diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest
index 9703908..e765bfc 100644
--- a/dev-lang/rust/Manifest
+++ b/dev-lang/rust/Manifest
@@ -4,4 +4,7 @@ DIST rustc-1.11.0-i686-unknown-linux-gnu.tar.gz 45977053 SHA256 
16273afc0540b435
 DIST rustc-1.11.0-src.tar.gz 26126471 SHA256 
3685034a78e70637bdfa3117619f759f2481002fd9abbc78cc0f737c9974de6a SHA512 
6ad050a02e3a3b48f205f5d5ed9393fd2a1a2237e5c78b3e51af8162f410b93a831ebe5980ce78c4d38c5a692395c7fec8442956497a5d21e9f7157404c6b5aa
 WHIRLPOOL 
f57ea2f42c97256427964f3a553207a2b587b1e4f1c2636c66d9c47f92a9de508a64ba8288ab3a80444d9dba1c59d545be876448a1f80f283c69a4cc3356da25
 DIST rustc-1.11.0-x86_64-unknown-linux-gnu.tar.gz 45436770 SHA256 
e9d27a72900da33c1bbd0e59dd42fd6414c6bcdfa33593fb7c7360068406394a SHA512 
a7565f00761cd4b2bd1e873bc9a75f52f3ba12379b4e1055e8aaf7c1818fb6357a4270630365fc8d7fb73816aa6f5520e6ac6e667105a4e0459d3755852d8d51
 WHIRLPOOL 
fc708585b5ab6e1c62052b77ab08ebd560f8f1861a004653fb3636feb0f4fd33d01e1c793dc428d7172d2005050809f24321820c4d48503eea59a686e172f2d6
 DIST rustc-1.12.0-src.tar.gz 27501444 SHA256 
ac5907d6fa96c19bd5901d8d99383fb8755127571ead3d4070cce9c1fb5f337a SHA512 
0bd98c3a8c37420877e8e71b80e376d3b34c35a7bea9a986b7f332ab1885d76d456dbcbae6bf52e1155231bbf93284699ddc0d5297cc19b74d97bdfd8b804adc
 WHIRLPOOL 
17cb131bd60bc8bb8abf882006367b992fb563c2a7df9bc19821dfa93cb5d01c83c7c057fabb13534492a686e331ad913c5dc08d186ef1c68c9161f81f2680a4
+DIST rustc-1.12.1-i686-unknown-linux-gnu.tar.gz 49384200 SHA256 
6c1f62db6f9c317aa656774b5193ce3d0783de4c73f2424d98ff4c9f1f962d25 SHA512 
e6ae7c6a8070322dc32e19f119df5ed6c66f2024c6f22e4ed9fdc6cd057942d859078b371087da654bf04e4c92fb6bf130130bd3e6c593801a96aee8ed2d5638
 WHIRLPOOL 
d4c1d677db805fa1c771a4135378fbba48079981948885d8d61efb0072b2f87d1b9dbd24aa76febab3c3da68b80512acf6b2470eb0d97331c6cc2fbb04d402d7
 DIST rustc-1.12.1-src.tar.gz 27511443 SHA256 
97913ae4cb255618aaacd1a534b11f343634b040b32656250d09d8d9ec02d3dc SHA512 
1923e9efb9f7ca4d691a8d368fd327c80892a019a85716876e21b794584422a2050362388511c7e0763975c6ffad20cc06ce6f86b3ea5fe36f64dbd59aabc821
 WHIRLPOOL 
74a9d2b9f4e3be96ef30a037cb1eec6fa70f7bf266f6aff8324bf8314457177edf1a8bef839843c72a1a06910e024f7a80f9c84f6151edcbc5f2548ffbd7dcaa
+DIST rustc-1.12.1-x86_64-unknown-linux-gnu.tar.gz 47642897 SHA256 
a753e3b6cfa8417978e4bfc0d3282f22be4abc5e106af39f4cb54dc775f64546 SHA512 
4b0d769b453885b5129d7707cc36c5265a32e78482958c501a91d82d52bc0b0d594ab4f64ce3453c5e83976340e018611abdd66b587330499b93c4405f93545f
 WHIRLPOOL 
7b3f19141796e8ff8c6a26d695f8270ec6a89b249b7e3b1673c943a787ac949e98484468962c22e23d00151cfdb2489c988c69ee29cd0bea58bb025a5cdea275
+DIST rustc-1.13.0-src.tar.gz 27483805 SHA256 
ecb84775ca977a5efec14d0cad19621a155bfcbbf46e8050d18721bb1e3e5084 SHA512 
6d2983c28834165139b06b9f1bdc909c35814b32500072f5265a53360f7ca54f3a34a1e463a1c0ce58ffd0d3d7c3cb5b1b4ddcb24a374e2279fbbdc30b03d992
 WHIRLPOOL 
51f9563fcc2cb352cf0f814002da5d35bf83e22c448b965a4eb041de636671ddb982e766582c2577c6c17eec45014c05d89b1c11cd7b7180a18c44939cced435

diff --git a/dev-lang/rust/rust-1.13.0.ebuild b/dev-lang/rust/rust-1.13.0.ebuild
new file mode 100644
index ..a26c7a8
--- /dev/null
+++ b/dev-lang/rust/rust-1.13.0.ebuild
@@ -0,0 +1,153 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit python-any-r1 versionator toolchain-funcs
+
+if [[ ${PV} = *beta* ]]; then
+   betaver=${PV//*beta}
+   BETA_SNAPSHOT="${betaver:0:4}-${betaver:4:2}-${betaver:6:2}"
+   MY_P="rustc-beta"
+   SLOT="beta/${PV}"
+   SRC="${BETA_SNAPSHOT}/rustc-beta-src.tar.gz"
+   KEYWORDS=""
+else
+   ABI_VER="$(get_version_component_range 1-2)"
+   SLOT="stable/${ABI_VER}"
+   MY_P="rustc-${PV}"
+   SRC="${MY_P}-src.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+CARGO_VERSION="0.$(($(get_version_component_range 2) + 1)).0"
+STAGE0_VERSION="1.$(($(get_version_component_range 2) - 1)).1"
+RUST_STAGE0_amd64="rustc-${STAGE0_VERSION}-x86_64-unknown-linux-gnu"
+RUST_STAGE0_x86="rustc-${STAGE0_VERSION}-i686-unknown-linux-gnu"
+
+DESCRIPTION="Systems programming language from Mozilla"
+HOMEPAGE="http://www.rust-lang.org/;
+
+SRC_URI="https://static.rust-lang.org/dist/${SRC} -> rustc-${PV}-src.tar.gz
+   amd64? ( https://static.rust-lang.org/dist/${RUST_STAGE0_amd64}.tar.gz )
+   x86? ( 

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

2016-11-19 Thread Dirkjan Ochtman
commit: 0fad28cf1c8b12a7eeb2dedcf8f9d3dee772b38f
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Sat Nov 19 20:39:31 2016 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Sat Nov 19 20:39:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fad28cf

dev-lang/rust-bin: version bump to 1.13.0

Package-Manager: portage-2.3.0

 dev-lang/rust-bin/Manifest   |   2 +
 dev-lang/rust-bin/rust-bin-1.13.0.ebuild | 102 +++
 2 files changed, 104 insertions(+)

diff --git a/dev-lang/rust-bin/Manifest b/dev-lang/rust-bin/Manifest
index a74d012..0698f54 100644
--- a/dev-lang/rust-bin/Manifest
+++ b/dev-lang/rust-bin/Manifest
@@ -1,2 +1,4 @@
 DIST rust-1.12.1-i686-unknown-linux-gnu.tar.gz 123818795 SHA256 
ede9b9d14d1ddbc29975d1ead73fcf2758719b4b371363afe1c32eb8d6e96bb3 SHA512 
8393bd91652ebe2a3a6decdd53bcb388d308a8867736ea68f75c2d073a0356583d90f74ce0af6105bd867ab03feed02af17422f25cf3bbf0601d59062aa1c70a
 WHIRLPOOL 
20fab3b60d94e5e75c086ed86bde745c1a915347f4c0af16d3289c57d6cb4396656e1fd93a52d61ea2425c0e37d7c89c5d7a62ea424cd54f5ef2b4eaf5443e97
 DIST rust-1.12.1-x86_64-unknown-linux-gnu.tar.gz 120844880 SHA256 
9e546aec13e389429ba2d86c8f4e67eba5af146c979e4faa16ffb40ddaf9984c SHA512 
888ad195b9d4b8d1d7ccaffd460e6fe0f6003461a6818937b4b6f80a92462eb96095888729188421f21e6bd0e21fa558a7ea81327b78eab5c3b70807c5069492
 WHIRLPOOL 
309c0dfbf25a20bf8a48609d83212e29d409b21f51fcc228b2f83242df1486cd65a9fb884e5b3737fbc90db0a59e6b155528b445412466a84988a77b3999bcdc
+DIST rust-1.13.0-i686-unknown-linux-gnu.tar.gz 94614521 SHA256 
239734113f6750d31085c7a08c260d492991cc1ef10817b6d44154515f3f9439 SHA512 
acea228b6c17cddfc6b1db1ab7d9e71ef852e7137bd992eaef69fa051f9d6f1b449d91b3f0984c3c64de274f246b5c37f9dc9cd5457d797be01beb3357d3c557
 WHIRLPOOL 
893c733313da95041d40d689a9f871ead8462b77c6062623c24e97f8ddd97ff8a7f58ed2c7595631752469018e850cd0db52949ad25365fb460489613e554a29
+DIST rust-1.13.0-x86_64-unknown-linux-gnu.tar.gz 91007029 SHA256 
95f4c372b1b81ac1038161e87e932dd7ab875d25c167a861c3949b0f6a65516d SHA512 
b5d217aef6e20ed159506d2b46df2003de09c212794725693bc09fa4bcd7e527fed23969e62121591601749ec161de4d90b2c261807f83e2c0114727659b4f6e
 WHIRLPOOL 
60d9cc1c365e44b554211b47fe89dd076d04a96f876574d2eecff9416aa43f3233470acb1607406d7298d40769900a6b9cda93645e2b1eeeca9fe8067442b607

diff --git a/dev-lang/rust-bin/rust-bin-1.13.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.13.0.ebuild
new file mode 100644
index ..444dc27
--- /dev/null
+++ b/dev-lang/rust-bin/rust-bin-1.13.0.ebuild
@@ -0,0 +1,102 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils bash-completion-r1
+
+MY_P="rust-${PV}"
+
+DESCRIPTION="Systems programming language from Mozilla"
+HOMEPAGE="http://www.rust-lang.org/;
+SRC_URI="amd64? ( 
http://static.rust-lang.org/dist/${MY_P}-x86_64-unknown-linux-gnu.tar.gz )
+   x86? ( 
http://static.rust-lang.org/dist/${MY_P}-i686-unknown-linux-gnu.tar.gz )"
+
+LICENSE="|| ( MIT Apache-2.0 ) BSD-1 BSD-2 BSD-4 UoI-NCSA"
+SLOT="stable"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+DEPEND=">=app-eselect/eselect-rust-0.3_pre20150425
+   !dev-lang/rust:0
+"
+RDEPEND="${DEPEND}"
+
+QA_PREBUILT="
+   opt/${P}/bin/rustc-bin-${PV}
+   opt/${P}/bin/rustdoc-bin-${PV}
+   opt/${P}/lib/*.so
+   opt/${P}/lib/rustlib/*/lib/*.so
+"
+
+src_unpack() {
+   default
+
+   local postfix
+   use amd64 && postfix=x86_64-unknown-linux-gnu
+   use x86 && postfix=i686-unknown-linux-gnu
+   mv "${WORKDIR}/${MY_P}-${postfix}" "${S}" || die
+}
+
+src_install() {
+   local std=$(grep 'std' ./components)
+   local components="rustc,${std}"
+   use doc && components="${components},rust-docs"
+   ./install.sh \
+   --components="${components}" \
+   --disable-verify \
+   --prefix="${D}/opt/${P}" \
+   --mandir="${D}/usr/share/${P}/man" \
+   --disable-ldconfig \
+   || die
+
+   local rustc=rustc-bin-${PV}
+   local rustdoc=rustdoc-bin-${PV}
+   local rustgdb=rust-gdb-bin-${PV}
+
+   mv "${D}/opt/${P}/bin/rustc" "${D}/opt/${P}/bin/${rustc}" || die
+   mv "${D}/opt/${P}/bin/rustdoc" "${D}/opt/${P}/bin/${rustdoc}" || die
+   mv "${D}/opt/${P}/bin/rust-gdb" "${D}/opt/${P}/bin/${rustgdb}" || die
+
+   dosym "/opt/${P}/bin/${rustc}" "/usr/bin/${rustc}"
+   dosym "/opt/${P}/bin/${rustdoc}" "/usr/bin/${rustdoc}"
+   dosym "/opt/${P}/bin/${rustgdb}" "/usr/bin/${rustgdb}"
+
+   cat <<-EOF > "${T}"/50${P}
+   LDPATH="/opt/${P}/lib"
+   MANPATH="/usr/share/${P}/man"
+   EOF
+   doenvd "${T}"/50${P}
+
+   cat <<-EOF > "${T}/provider-${P}"
+   /usr/bin/rustdoc
+   /usr/bin/rust-gdb
+   EOF
+   dodir /etc/env.d/rust
+   insinto /etc/env.d/rust
+   doins "${T}/provider-${P}"
+}
+
+pkg_postinst() {
+   eselect 

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

2016-11-19 Thread Matt Thode
commit: 777688951a6a393123ae27c6713f5fd8e59e787a
Author: Ben Roberts  sihnon  net>
AuthorDate: Thu Nov 17 22:27:40 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Nov 19 21:20:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77768895

app-admin/puppetserver: fix 2.7.0 missing cli commands

The way the puppetserver systemd service unit starts and stops the server
has changed, and the additional cli commands are not installed by the 2.7.0
ebuild. This commit adds the missing files.

Fixes #600136
Related to #600130

Signed-off-by: Matthew Thode  gentoo.org>

 .../{puppetserver-2.7.0.ebuild => puppetserver-2.7.0-r1.ebuild}| 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-admin/puppetserver/puppetserver-2.7.0.ebuild 
b/app-admin/puppetserver/puppetserver-2.7.0-r1.ebuild
similarity index 98%
rename from app-admin/puppetserver/puppetserver-2.7.0.ebuild
rename to app-admin/puppetserver/puppetserver-2.7.0-r1.ebuild
index 676e0aa..3e64b1e 100644
--- a/app-admin/puppetserver/puppetserver-2.7.0.ebuild
+++ b/app-admin/puppetserver/puppetserver-2.7.0-r1.ebuild
@@ -67,6 +67,9 @@ src_install() {
doins ext/cli/foreground
doins ext/cli/gem
doins ext/cli/ruby
+   doins ext/cli/reload
+   doins ext/cli/start
+   doins ext/cli/stop
insinto /opt/puppetlabs/server/apps/puppetserver/bin
doins ext/bin/puppetserver
insopts -m0644



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

2016-11-19 Thread Markus Meier
commit: 9b0579078e646c23419ac83cb01f750f0ead4ab1
Author: Markus Meier  gentoo  org>
AuthorDate: Sat Nov 19 17:14:39 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sat Nov 19 17:14:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b057907

media-gfx/pqiv: fix USE=imagemagick configure argument, bug #600168

Package-Manager: portage-2.3.2

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

diff --git a/media-gfx/pqiv/pqiv-2.6.ebuild b/media-gfx/pqiv/pqiv-2.6.ebuild
index 282572f..c340cc5 100644
--- a/media-gfx/pqiv/pqiv-2.6.ebuild
+++ b/media-gfx/pqiv/pqiv-2.6.ebuild
@@ -46,7 +46,7 @@ src_prepare() {
 src_configure() {
local backends="gdkpixbuf"
use ffmpeg || use libav && backends="${backends},libav"
-   use imagemagick && backends="${backends},magick"
+   use imagemagick && backends="${backends},wand"
use pdf && backends="${backends},poppler"
use postscript && backends="${backends},spectre"
 



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

2016-11-19 Thread Zac Medico
commit: 8db6b9e143ad836e2febec9618e11a19686c8c30
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Nov 19 18:55:27 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Nov 19 19:01:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8db6b9e1

app-emulation/rkt: use emake V=3

Package-Manager: portage-2.3.2

 app-emulation/rkt/rkt-1.16.0.ebuild | 4 ++--
 app-emulation/rkt/rkt-1.17.0.ebuild | 4 ++--
 app-emulation/rkt/rkt-1.18.0.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-emulation/rkt/rkt-1.16.0.ebuild 
b/app-emulation/rkt/rkt-1.16.0.ebuild
index 70e3b76..00f2ec2 100644
--- a/app-emulation/rkt/rkt-1.16.0.ebuild
+++ b/app-emulation/rkt/rkt-1.16.0.ebuild
@@ -202,8 +202,8 @@ src_compile() {
case ${arch} in
amd64) arch=x86_64;;
esac
-   ARCH=${arch} emake
-   ARCH=${arch} emake bash-completion
+   ARCH=${arch} emake V=3
+   ARCH=${arch} emake V=3 bash-completion
 }
 
 src_install() {

diff --git a/app-emulation/rkt/rkt-1.17.0.ebuild 
b/app-emulation/rkt/rkt-1.17.0.ebuild
index 8ceb643..9e0068c 100644
--- a/app-emulation/rkt/rkt-1.17.0.ebuild
+++ b/app-emulation/rkt/rkt-1.17.0.ebuild
@@ -202,8 +202,8 @@ src_compile() {
case ${arch} in
amd64) arch=x86_64;;
esac
-   ARCH=${arch} emake
-   ARCH=${arch} emake bash-completion
+   ARCH=${arch} emake V=3
+   ARCH=${arch} emake V=3 bash-completion
 }
 
 src_install() {

diff --git a/app-emulation/rkt/rkt-1.18.0.ebuild 
b/app-emulation/rkt/rkt-1.18.0.ebuild
index febbe80..3cf4584 100644
--- a/app-emulation/rkt/rkt-1.18.0.ebuild
+++ b/app-emulation/rkt/rkt-1.18.0.ebuild
@@ -202,8 +202,8 @@ src_compile() {
case ${arch} in
amd64) arch=x86_64;;
esac
-   ARCH=${arch} emake
-   ARCH=${arch} emake bash-completion
+   ARCH=${arch} emake V=3
+   ARCH=${arch} emake V=3 bash-completion
 }
 
 src_install() {



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

2016-11-19 Thread Patrick McLean
commit: 2812f454f216f51c81f16c8018c0121db8a40321
Author: Patrick McLean  gentoo  org>
AuthorDate: Sat Nov 19 19:35:37 2016 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Sat Nov 19 19:35:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2812f454

sys-kernel/vanilla-sources: Remove old versions

Package-Manager: portage-2.3.2

 sys-kernel/vanilla-sources/Manifest |  2 --
 .../vanilla-sources/vanilla-sources-4.4.32.ebuild   | 17 -
 sys-kernel/vanilla-sources/vanilla-sources-4.8.8.ebuild | 17 -
 3 files changed, 36 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index e0a7b9b..0d5ea3e 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -14,7 +14,5 @@ DIST patch-3.18.44.xz 1054032 SHA256 
04c8c45d1a8a8085abbfe0b6f7e83fef56a953eda31
 DIST patch-3.2.83.xz 1620216 SHA256 
0f1895f98499ca2a3e0888bb7949e7aa5b704e5bf7e992c8afe1b0142d01d3c8 SHA512 
a0c5fd87c25a2170de9a28b6903133042fb49fb4b469e4d8e55cf45e6c80e9f0cf211c4148ae8392042a3c06fb16a94977f867ff519d4143a52080138c02e968
 WHIRLPOOL 
79ef18d2ac80f96baed3697a66832ce8b13a8877b4714f2576d05d40b9554888e612d3fe8156615a393de8befd445a5acdcaf38fd9b6a75482a56a23cec1a95a
 DIST patch-3.4.113.xz 1362096 SHA256 
d5492eeaadcf12aaad471011066e447907999035c26368da8e4f82b1871ef03a SHA512 
cd212cb2c2d6fb911571472466027c7e502277f7af2426050a5afcd4c7799920e48414190b8a8a039f88d85bbf0d9e164c7d8c45982bf51f7567da9304137688
 WHIRLPOOL 
bc88441d583b9ed2f315b6ed809c168cb00af5a3c1f91fd1e4bd651a5f21cc69fd9343460976b5707916ec992b3e7a2f519953ce1bbc55fbb3290237ec4b44a3
 DIST patch-4.1.35.xz 901088 SHA256 
cb9a7bf8998625e5a2c638745e868e0219315439a68b536c33c0e1607b02202f SHA512 
da5ac04585da84c850122e376243fe7aa76fbb0fcffa7e9332d8d8e1854f89fbf18228c15cefd3c7a9ca97124c09b35e07a814af4b5ce6e3453a8e2d6dcf8663
 WHIRLPOOL 
32904115980075aa750afcd674fa27dfde5f25f26bcbb5db68dfc5a85e5b5588a644e9d0a05396f6201e21fd259159364c71685fba4d1242511e4b9133d9f14e
-DIST patch-4.4.32.xz 812316 SHA256 
329b6b24e9e02b2e01ab13a9f62f853b37272c4f1c210cdcdda93937e0d0cb18 SHA512 
118923fc9bfc123d9b140f345823c20f402fa4f338d6cce2395bec792e018f937b10809ad4f33149da6a0cbde782f26a224b40c5b2dcd22e995f36c2d76d59df
 WHIRLPOOL 
e763772e83aaa2319bd46c5eb400ad1375ac96659c67f5ea38a579e570ae99c935c4972769fa2e887985ad2a241fb70f3ff9311cfe3f2fe69edbf679
 DIST patch-4.4.33.xz 819976 SHA256 
aaa027196af00a5195e04b4b97203c8da962461eb0feac4f72701049d5441f52 SHA512 
01a728ea1c46de4c0a034c7ebc84440fee454365273ee0984d04284be3caf9b7375ac1c02fb1214676b2393c22f6cc2861cb8657dc8c8736c3c85d926d995b86
 WHIRLPOOL 
fa6a816cc78d57e66f2056d47d7bffb1609fa350d4bdf1e5aee4929d27808ff4c5cd0b2649be44bba903ebd55faac9a4850e4fd0c26466851df41115a8966625
-DIST patch-4.8.8.xz 167244 SHA256 
588b6537cb660c2f7d483aca13f7509a5fc86c60df32c167d40e81d6c7ab4f9c SHA512 
4ad7b881c9fafaf446d00e53af22d1940ecf00291ed57d1706ad12725a7bf525abb1d17500d662409eccd77ed0e9c2a11580ce94d6b6344188f35bd9e49c2418
 WHIRLPOOL 
681543197a4964fe4cafb818ea774779d71c829d0dd4a71adce4004f13071c5be06e4d7457c3d6eb17014b2528bc6951fcf821363650bc6a0feaffb1e9db8213
 DIST patch-4.8.9.xz 190728 SHA256 
9f3c1924080a16ac2b8f054aa9d0490bc0ee4c6159e2fd10e5f6732b2e9604f6 SHA512 
c4a5b85f0a7567f0fe0f24d7729aa71a78dae66294caafff2921f2d56a656ca6d5047c1bff027ad603a7899dd97c33ffa1594cad06e3b844ac0fd30c24c26740
 WHIRLPOOL 
4476a08902378bd5156e4e852d4b87f802be70a2f2a0e0e984d1f18ba545b6b46fb8ef7699be2aaf93ad1eac757c9228a434cbb3f37bd93e89aab9a330eba75a

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.32.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.32.ebuild
deleted file mode 100644
index 88af46c..
--- a/sys-kernel/vanilla-sources/vanilla-sources-4.4.32.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-K_NOUSENAME="yes"
-K_NOSETEXTRAVERSION="yes"
-K_SECURITY_UNSUPPORTED="1"
-ETYPE="sources"
-inherit kernel-2
-detect_version
-
-DESCRIPTION="Full sources for the Linux kernel"
-HOMEPAGE="https://www.kernel.org;
-SRC_URI="${KERNEL_URI}"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.8.8.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.8.8.ebuild
deleted file mode 100644
index 88af46c..
--- a/sys-kernel/vanilla-sources/vanilla-sources-4.8.8.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-K_NOUSENAME="yes"
-K_NOSETEXTRAVERSION="yes"
-K_SECURITY_UNSUPPORTED="1"
-ETYPE="sources"
-inherit kernel-2
-detect_version
-
-DESCRIPTION="Full sources for the Linux kernel"
-HOMEPAGE="https://www.kernel.org;
-SRC_URI="${KERNEL_URI}"
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa 

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

2016-11-19 Thread Patrick McLean
commit: 28e59d9c01dfd98e067f9ccf8db2e203699a6ede
Author: Patrick McLean  gentoo  org>
AuthorDate: Sat Nov 19 19:34:24 2016 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Sat Nov 19 19:34:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28e59d9c

sys-kernel/vanilla-sources: Version bump to 4.4.33 and 4.8.9

Package-Manager: portage-2.3.2

 sys-kernel/vanilla-sources/Manifest |  2 ++
 .../vanilla-sources/vanilla-sources-4.4.33.ebuild   | 17 +
 sys-kernel/vanilla-sources/vanilla-sources-4.8.9.ebuild | 17 +
 3 files changed, 36 insertions(+)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 63ebbfb..e0a7b9b 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -15,4 +15,6 @@ DIST patch-3.2.83.xz 1620216 SHA256 
0f1895f98499ca2a3e0888bb7949e7aa5b704e5bf7e9
 DIST patch-3.4.113.xz 1362096 SHA256 
d5492eeaadcf12aaad471011066e447907999035c26368da8e4f82b1871ef03a SHA512 
cd212cb2c2d6fb911571472466027c7e502277f7af2426050a5afcd4c7799920e48414190b8a8a039f88d85bbf0d9e164c7d8c45982bf51f7567da9304137688
 WHIRLPOOL 
bc88441d583b9ed2f315b6ed809c168cb00af5a3c1f91fd1e4bd651a5f21cc69fd9343460976b5707916ec992b3e7a2f519953ce1bbc55fbb3290237ec4b44a3
 DIST patch-4.1.35.xz 901088 SHA256 
cb9a7bf8998625e5a2c638745e868e0219315439a68b536c33c0e1607b02202f SHA512 
da5ac04585da84c850122e376243fe7aa76fbb0fcffa7e9332d8d8e1854f89fbf18228c15cefd3c7a9ca97124c09b35e07a814af4b5ce6e3453a8e2d6dcf8663
 WHIRLPOOL 
32904115980075aa750afcd674fa27dfde5f25f26bcbb5db68dfc5a85e5b5588a644e9d0a05396f6201e21fd259159364c71685fba4d1242511e4b9133d9f14e
 DIST patch-4.4.32.xz 812316 SHA256 
329b6b24e9e02b2e01ab13a9f62f853b37272c4f1c210cdcdda93937e0d0cb18 SHA512 
118923fc9bfc123d9b140f345823c20f402fa4f338d6cce2395bec792e018f937b10809ad4f33149da6a0cbde782f26a224b40c5b2dcd22e995f36c2d76d59df
 WHIRLPOOL 
e763772e83aaa2319bd46c5eb400ad1375ac96659c67f5ea38a579e570ae99c935c4972769fa2e887985ad2a241fb70f3ff9311cfe3f2fe69edbf679
+DIST patch-4.4.33.xz 819976 SHA256 
aaa027196af00a5195e04b4b97203c8da962461eb0feac4f72701049d5441f52 SHA512 
01a728ea1c46de4c0a034c7ebc84440fee454365273ee0984d04284be3caf9b7375ac1c02fb1214676b2393c22f6cc2861cb8657dc8c8736c3c85d926d995b86
 WHIRLPOOL 
fa6a816cc78d57e66f2056d47d7bffb1609fa350d4bdf1e5aee4929d27808ff4c5cd0b2649be44bba903ebd55faac9a4850e4fd0c26466851df41115a8966625
 DIST patch-4.8.8.xz 167244 SHA256 
588b6537cb660c2f7d483aca13f7509a5fc86c60df32c167d40e81d6c7ab4f9c SHA512 
4ad7b881c9fafaf446d00e53af22d1940ecf00291ed57d1706ad12725a7bf525abb1d17500d662409eccd77ed0e9c2a11580ce94d6b6344188f35bd9e49c2418
 WHIRLPOOL 
681543197a4964fe4cafb818ea774779d71c829d0dd4a71adce4004f13071c5be06e4d7457c3d6eb17014b2528bc6951fcf821363650bc6a0feaffb1e9db8213
+DIST patch-4.8.9.xz 190728 SHA256 
9f3c1924080a16ac2b8f054aa9d0490bc0ee4c6159e2fd10e5f6732b2e9604f6 SHA512 
c4a5b85f0a7567f0fe0f24d7729aa71a78dae66294caafff2921f2d56a656ca6d5047c1bff027ad603a7899dd97c33ffa1594cad06e3b844ac0fd30c24c26740
 WHIRLPOOL 
4476a08902378bd5156e4e852d4b87f802be70a2f2a0e0e984d1f18ba545b6b46fb8ef7699be2aaf93ad1eac757c9228a434cbb3f37bd93e89aab9a330eba75a

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.33.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.33.ebuild
new file mode 100644
index ..88af46c
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.4.33.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.8.9.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.8.9.ebuild
new file mode 100644
index ..88af46c
--- /dev/null
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.8.9.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+K_NOUSENAME="yes"
+K_NOSETEXTRAVERSION="yes"
+K_SECURITY_UNSUPPORTED="1"
+ETYPE="sources"
+inherit kernel-2
+detect_version
+
+DESCRIPTION="Full sources for the Linux kernel"
+HOMEPAGE="https://www.kernel.org;
+SRC_URI="${KERNEL_URI}"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86"



[gentoo-commits] proj/kde-sunset:master commit in: kde-misc/systemd-kcm/

2016-11-19 Thread Johannes Huber
commit: 99dcb1ecbbe42946f0f5a6d4557b8ffc9c2f16f3
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 21:57:49 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 21:57:49 2016 +
URL:https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=99dcb1ec

kde-misc/systemd-kcm: Import from gentoo main tree

Package-Manager: portage-2.3.2

 kde-misc/systemd-kcm/metadata.xml | 15 ++
 kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild | 28 +++
 2 files changed, 43 insertions(+)

diff --git a/kde-misc/systemd-kcm/metadata.xml 
b/kde-misc/systemd-kcm/metadata.xml
new file mode 100644
index 000..eea1483
--- /dev/null
+++ b/kde-misc/systemd-kcm/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   
+KDE control module for systemd. Provides a graphical frontend for the systemd 
daemon, which allows to view and control systemd units, as well as modifying 
configuration files. Integrates in the KDE System Settings dialogue.
+   
+   
+   
+   rthoms...@gmail.com
+   Ragnar Thomsen
+   
+   rthomsen/kcmsystemd
+   
+

diff --git a/kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild 
b/kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild
new file mode 100644
index 000..0021edc
--- /dev/null
+++ b/kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_PN="kcmsystemd"
+inherit kde4-base
+
+DESCRIPTION="KDE control module for systemd"
+HOMEPAGE="https://projects.kde.org/projects/playground/sysadmin/systemd-kcm;
+SRC_URI="https://github.com/rthomsen/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+IUSE="debug"
+LICENSE="GPL-3"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="
+   >=dev-libs/boost-1.45
+"
+RDEPEND="${DEPEND}
+   $(add_kdeapps_dep kcmshell)
+   sys-apps/systemd
+"
+
+# only needed for 0.7.0 and 1.1.0
+S="${WORKDIR}"/${MY_PN}-${PV}



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

2016-11-19 Thread James Le Cuirot
commit: 6c34dceb302a8f848973ca6200ae3aff6302ab09
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov 19 11:05:38 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov 19 17:18:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c34dceb

dev-java/icedtea: Remove vulnerable 3.1.0 wrt security bug #600224

Package-Manager: portage-2.3.2

 dev-java/icedtea/Manifest |  10 -
 dev-java/icedtea/icedtea-3.1.0.ebuild | 365 --
 2 files changed, 375 deletions(-)

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index 05aea1e..ed4c6ea 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -6,16 +6,6 @@ DIST icedtea-2.6-jdk-8b6b930489cb.tar.bz2 32719530 SHA256 
e93cd330b2346bc6145bb7
 DIST icedtea-2.6-langtools-ca9d8b242a10.tar.bz2 1706461 SHA256 
13e700318ed4a00bc85890525a1fe16b7ff4798ad9e49acdf730b6dfe1a6b4e4 SHA512 
d26044cbd0104d27449c84bc24a687809c67a48926a23de5e155600f456a0a35514571304b38b63017d81d1c61991908e1d10cb60616dc16f9ba4635f3adad4c
 WHIRLPOOL 
f63867b325d29382e69f2969eba7d102038fa4d1457b112832bca087867577c27fd8f6c9d51ca5d2302f98ea6899f41e8f7e03510d648d5e2a9e93bf58711330
 DIST icedtea-2.6-openjdk-6aafb6fe0a1e.tar.bz2 130221 SHA256 
5cacafbe543ad4b9179ab1cbfdb7d9baf8aa04d954510b9e7baf0bfef7db6878 SHA512 
819acf776e423bb5bcb8682967ac0fb3fcc37da4ada618d5da186d052d6958611f537799c7cec0ceb57fbf677727840dbf8cd569d9f2226693c6551586de2ae4
 WHIRLPOOL 
c3ca72d11b095bcf51127bf88ab439879604045bbfc316b24290d8580c2c5f27d225898961b65203c5c79598d6e6c43f173c8de7473f64aea75dd06ffe296801
 DIST icedtea-2.6.7.tar.xz 2085824 SHA256 
d0922d6ecffca8e246a0b60db6e1d0c5ff924a8d5a86362991e2d4269d0a9ee4 SHA512 
85b6bf9e72e200ae9f26b4b2e8a35af6907fdb85463073cf08fc4394d9364586c3eb1042ba83a39e13e6924aac28d3f6ad5dee906b49a5b1338f20f34a63abc1
 WHIRLPOOL 
087dfe9dc1815e91d1eb9c697845e09f36fb3081371534b9a15d37aa93a3a2dc00506caeb7202f64d04fc7f103a7965a21ad159040862c2666d450ccb0982626
-DIST icedtea-3.1-corba-7ea39ff8c227.tar.xz 938792 SHA256 
5e334d4250de441517c0e761a3202dfdf4beacb75c0f7a03617b62d89cb71c21 SHA512 
9b0ebefec9cdc6b653b7b88b2db4c7dd7aebe0e120c23e967cf3433837bc52c65b31da36034161d1c7ae18ddc18a2a5294b2a1469eeec23c7817ef1530909d67
 WHIRLPOOL 
677945e73e1cbe207fc737e53ec8e8e706a44e8c2031f386b932af2650dc45695e7d64c640ac8378b88d2fb3f4e02efa67e723bb58de5c4282cd2ae200cd6f9a
-DIST icedtea-3.1-hotspot-e480e0df8eea.tar.xz 6797536 SHA256 
33581ea3ef4deffa786be82e110ae3d6b0431cc56140eb51453af1f11962b174 SHA512 
8fcd3934afb446cd683f991f99c2b22fbeee607a1221665d7300d1e8d53740d7d2fee7894ccc53cddb02b902acaff68fd3ca1454dc244feeb641f5d5fd6308b4
 WHIRLPOOL 
3d004d4bb41991a8390d0ab28d3b8239c68ef33e9e1a5ce55b7236234580c6dc6f4be1cca6c1e409233c2fd6fc1f82b1a7ad24a0a2784ecb506cf36537427f1b
-DIST icedtea-3.1-jaxp-9368913c75fa.tar.xz 2299184 SHA256 
6d58edfd2b7f07b4d543910f7525fe08d94d56899b96493efce217b4a226aca3 SHA512 
e7e605937292f37aa8a5510f3bfda20ccdeee17d6cbe5a69260eddbb7f39733ef9dd7d91ffd3e968aee926d1c21b4ace2522cb28687915168baf070b0fe38354
 WHIRLPOOL 
1faf6d50a091cb3f4aa5db3faac8cbb1c206e6bf5955905b1d3c45abacb6cf0757c6f28c5e8be38b7cbe4891ce82a9a28a4a8bcba2ead77ac03523e4496301ef
-DIST icedtea-3.1-jaxws-534ca1b701d1.tar.xz 2267744 SHA256 
811ad76dfcffe1e6f2ef39a088f27a8858ed3371ef93816c8dc453f90516c7d7 SHA512 
0fd71e75e38a90e4d74477c9c7a2843d3b7fb9430332fa18a1a2f36376918832f6091bc3f2de86900e332bb4fc11a480ce7aedafeaddc3fc93493944183dc42a
 WHIRLPOOL 
93ce79f91478cd740b9c91b5c4c24001a72c616206b983e756be5df8d8e36b3b542e5757d574dbeb29433f57ab4b66845dcc1f85201cfdb700c3b90668e419f7
-DIST icedtea-3.1-jdk-3d312c038b60.tar.xz 38656892 SHA256 
83880a4b865e33e7913bec603da1e5439ea3602b3540d8071408de7bef8162a9 SHA512 
9fb70cd63412c4de7112fa1645b485ef5840dc21ff8fc35c12a10d843b879d6400a6109634351974257a1e12d2843ad4b22811d4d9662cbe2e2114838bd6cba8
 WHIRLPOOL 
33461af7edf71e20f5e304f9056e9566652847b19c654aee163f1bea141c0993e9e3047eb6d7d5121ca2527f316cc1f9549642f3faa42ef4af5d023524cd2cbd
-DIST icedtea-3.1-langtools-05822f2e947b.tar.xz 2060848 SHA256 
2a7f8dd0b0c1b256c58b8e841033b7915beb08d983350f9a9357115a05677f1d SHA512 
c6eb7b5287cb7dbf518ac9d7167b9e63df086b9abe893adfc72b7ba5d9e0a16861fa72b5fbb46ce58bd02cf837b81d03cd1b860dea947a9e58ff39a8d62411ee
 WHIRLPOOL 
289b389621276947376934eaa1d40fa30929e8ae83b7bca34dbd5470676e6ce6e026f1523269a89a5de9abe3abc18b60fdd00b77bf30be09660c725ed3032245
-DIST icedtea-3.1-nashorn-289b6e3c6e05.tar.xz 2219684 SHA256 
56b36f5f7c073b140f8316084a23080553d8790d9f1f7e6d6288c6b0fd45cd7f SHA512 
61f060f02a8852681212ac26018de0ad3403156f9c1fb984c658fa31bc4e58a0da588188c57d629da022b32c763c2f5915a8938997c6f94b127ceacde8d050f9
 WHIRLPOOL 
7c1f866c9e58f01d21cfdb999cb4991faba63f160378baa3ef7b7c2c1e7ce6e1f0578d001b0f419234e91571bf9eba3b6c0570c5efdaf855508ffeb54bc32dc5
-DIST icedtea-3.1-openjdk-453780834f92.tar.xz 334244 SHA256 
c19f7ffaec510db20b3c66b6447040012c28df319ab1dcfaf0a41c0e807bdddc SHA512 

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

2016-11-19 Thread James Le Cuirot
commit: e6481acf1e98f32e51107f6457d3816e0113ec27
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov 19 17:04:41 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov 19 17:18:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6481acf

dev-java/icedtea: Version bump to 7.2.6.8 wrt security bug #600224

Package-Manager: portage-2.3.2

 dev-java/icedtea/Manifest   |   8 +
 dev-java/icedtea/icedtea-7.2.6.8.ebuild | 388 
 2 files changed, 396 insertions(+)

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index ed4c6ea..75a49cf 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -1,11 +1,19 @@
+DIST icedtea-2.6-corba-9e002eaf26ed.tar.bz2 1072838 SHA256 
2f728daac0ca88e7097a223f8c1ceaff8b4597e4622c5e365931edb25aa04538 SHA512 
b306a562b999c7e221c2535d5ef575f835a0e1fbbc6fab331cfa3ae016c048d6d7f822786a270e61958c9590395ae360af0f8069beaa123c00be1592487c37dd
 WHIRLPOOL 
6a1428c051a1febf07c5fd48a5f401d9ca0f4dd98902deb149b01e202e73d69007d008fae9c565f23562ed8ee38772bb2f9adc0af056e4a1c7ce789625de57de
 DIST icedtea-2.6-corba-e5578d3bc593.tar.bz2 1072909 SHA256 
0049439ea08f8391c0dae464ceb249f0af9d8e70c68142a734ceb25fa145e764 SHA512 
735553ba107df875b61bea38735309ddd1d99cdce989826eaae3587efb10b2a99a3ec1bd749574d17bf502dd7cdcb12436a1a7d608fa1b44b8bbb79b603d8dfc
 WHIRLPOOL 
441d51e2f1e3114b3a06dda7c9545b08e1d9b2e38cc431acfe67a2111e261a69fd0a993322acfff82d48882154e9c5ced62ac444609e383c142270df661bdcee
+DIST icedtea-2.6-hotspot-223f6c442d49.tar.bz2 8191191 SHA256 
ca55f548f3169ba9bb6ca81265900722150953ee19b19606e4bf8e6dd50d7194 SHA512 
e197a9e4e302d1b823eb4905ff58f2559d4d180e68deb7b9ec013ba41f155fb42b312f9f55315c67adfad632f37a01ee2f295d40f7c2b08dae07fc4aa8d509eb
 WHIRLPOOL 
e6fb07cbf9e144b0fb4464efea38152fcb2a1c1ff6b1bd77d4ce1da2ed289a9663c673be0fee80d3418b57547741d86317ec82fbd9852a341058b9fdd4377c30
 DIST icedtea-2.6-hotspot-75297b84957e.tar.bz2 8187345 SHA256 
0412594f4dabd77a759957bba038aedf277dee87d06153505fb63919c0cb6a5c SHA512 
9dc53d5f9bff967dffb994779621464540b94239a209d75482a6529d4b284bf40469ca180ada1a20cdede894d5b5d1297946db5d7ba5fc7d875c33b2d3559a02
 WHIRLPOOL 
94c88990aa9cc720781a6e141e3816c00d381dbbc0acb780b3496800b492c4e8d37f58b683ca02cf8b357d1d1185f9bf3acec4f8d64ac9b575b5e434ec656313
+DIST icedtea-2.6-jaxp-3369fa5a875b.tar.bz2 2733402 SHA256 
ba1ba48e9ad9ee36df344e6e283f0f7a9f8aa9cee223c8ea2f2ee711092091fc SHA512 
6b865927f97f6fcb709790f9a53917241c00f7d1123b5a5babf6752bdb1fe3c01aa8cca5dea40b5b64ad2d5ef8cdbac80ff7f9f32e736a9f71283e3eaf1a7e99
 WHIRLPOOL 
42dccb729503b9af5ba464be221a9604ca2daec1db6bba17ae2fae607c3a9bfdf6a487af3c79c8b8b30d816f733636331cd847ae4c3081aaa24cfa1a2a7fb9d2
 DIST icedtea-2.6-jaxp-b643540c673d.tar.bz2 2734041 SHA256 
9fbd60855406879b898843d7eeac2a5df64b0ccdeb927c615c5be648b8fac70b SHA512 
2483561e7ad0f6e201740689dffc097419d53640d394883026ec216b7ecacafb5f1952b12e5229fd5a6cd9174388fb45105bebcf80cefd7feb592b33e2f65b24
 WHIRLPOOL 
9e9982fbb16b5b490047569969cc757a8bec77480358254a2a9e44d4049adea11ba975cc5a63021c84ead4f8091c1cdb578c29a9915e7c4770d27aed192363f9
+DIST icedtea-2.6-jaxws-26bcf28b3a60.tar.bz2 2022420 SHA256 
753093e71ac609b9350bf16daf230fdc2f873cd573428883448098e39e4c041a SHA512 
a555c192377da223fef4f31a64296e71237389126db0777f9d64d086e026ecddb7d529d6330cb09097b726246ff880bf3597769ab695249d93fc7f2e14e9affe
 WHIRLPOOL 
869d5245443bd9f737cca91af861a5a27bd6071f73bd2da0b5af91a1ccd20beff1fdbef48bd705473da07be35b4e36bc673e67af4eb53484a40cd71ede159533
 DIST icedtea-2.6-jaxws-4a99f4eac257.tar.bz2 2021978 SHA256 
c9fcc1553bbb4fe1dd5ae4616b6a1f52f42c2bb990fd1cbdafeac43bfd6b30f7 SHA512 
e9c65a65dc61bdbc56bf7f0ff7945abfdff95551c0484fb031a29a540a692f11309916c76f2d8717f88a3d93fc59f6a97aa21d24231668f6d49c3afbc403bad1
 WHIRLPOOL 
e78095f6cff39e66d01a6d37093cc5891f8785c2d5a80693d9dc4ff2bf4eba23697082cb3124e9767864ec4e341d3caab0d488583f319e40a3fc3b69d2bc636a
+DIST icedtea-2.6-jdk-52225839bbea.tar.bz2 32770146 SHA256 
ec1118f52eb208a529e99ec1a64351b737bc0f892e05f0ffd4327b4be533e761 SHA512 
68c401f90496861852a3531de8f0f5f2d1951e8a6aef7566bdbb98a06e32d9ea0bc263b05a03d4558f96afb37687f69131d371b28f23a6106e5937875f50f281
 WHIRLPOOL 
64d086bab0a3a6aa2e6afce36fe6c467990c1e2a5edc0e5a2b44f850d0f9c04b791ce1cca9436c40421ebd576694597d430ace24f9fd98bd6b06fd16a6bdb847
 DIST icedtea-2.6-jdk-8b6b930489cb.tar.bz2 32719530 SHA256 
e93cd330b2346bc6145bb76a141233aa1cc083eb25bbc82819632e1581290d81 SHA512 
ac07270f88f6b1359224d665ad8e0c44d3a50fec186e9ee5291885d5574f0c77d3c2660583d2b09b21945213ace25dcdb45f72e2738794721901c22d740ca110
 WHIRLPOOL 
2b46907839088f32e1f2938ad730998010b0514adf5e5564b0eb756ee3a02e7f7f93c155a4ac72c17f6fee77ccecccbfdd2769b48ced2ac130da0ea150215f7e
+DIST icedtea-2.6-langtools-545e512eb4de.tar.bz2 1707805 SHA256 
004ec63ebdd0b6182c2bde3e190bb745a0d932ad7b05901a4376a04f06158813 SHA512 

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

2016-11-19 Thread James Le Cuirot
commit: 433403f69674fca140192b823e595ee48f0d89b9
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov 19 11:45:25 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov 19 17:18:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=433403f6

dev-java/icedtea-bin: Version bump to 3.2.0 wrt security bug #600224

Package-Manager: portage-2.3.2

 dev-java/icedtea-bin/Manifest |  10 ++
 dev-java/icedtea-bin/icedtea-bin-3.2.0.ebuild | 155 ++
 2 files changed, 165 insertions(+)

diff --git a/dev-java/icedtea-bin/Manifest b/dev-java/icedtea-bin/Manifest
index b2fed85..af9d5cd 100644
--- a/dev-java/icedtea-bin/Manifest
+++ b/dev-java/icedtea-bin/Manifest
@@ -2,15 +2,25 @@ DIST icedtea-bin-core-3.1.0-amd64.tar.xz 61688188 SHA256 
51cffe3202b311bea19c5a6
 DIST icedtea-bin-core-3.1.0-arm.tar.xz 53013144 SHA256 
8d3fe33f9cd65936cb0aa5da39fca3bd3a2b73e88ca3870bc066b2caa5c6de78 SHA512 
acc0b057f4ab3748c6f1e492ee47cea5fe566781721717c34fa7100685bdefa76be5d463b9292f3e80708632c1d45f62509ce50b521c5dcddee09e2aa73a4de1
 WHIRLPOOL 
a05385af3d2f4c9190b20e3167aeca860600de6d2b90fc04a4958e5153d47a5f2637e783ac4cc423642cd782a0afedde5e15d2333201a175919860953eb5838e
 DIST icedtea-bin-core-3.1.0-ppc64.tar.xz 54025844 SHA256 
2183b3c2764d3c4293d9af7a6bd27249e469c75f1835d0f9f9acc4ff27354227 SHA512 
ef259a57e354f149f41d1f1d3f67596e6adf931104953599baee95cb8adf6f329a6d7f739d71b6aa87013494a19989bc953e83b40a0452ed5824a79b78d78682
 WHIRLPOOL 
6c1dae02103379b4f0cef1547428c11eeb3b0e1aa6b06f14e6856da1925295275e07eab03e02fc302eb96fddac26266eac6ea6be6c8bce65d0d3e8a1f5b8b0ef
 DIST icedtea-bin-core-3.1.0-x86.tar.xz 61073964 SHA256 
f8ab3a75f48444fa608fda61163423db473f99a8923a4f7ea17c520382578fd6 SHA512 
1380b1875c7ea48000cc1bc557f8f6a222afd2304afd145db413f7949e7919d6d1838aadc84c6059b6aa105879b2f0b92c99a19da96906c107aa7d42c85c94a8
 WHIRLPOOL 
34a0800d86460fbde7b8d3f036a4310866ab7b7c65b46ddc58ef6c4f97344f530e346e111dfd76d2dd9f22546b75a883b9e296ede8d033ed1b20d72f1b770b3c
+DIST icedtea-bin-core-3.2.0-amd64.tar.xz 61686584 SHA256 
0b2db937058f6fc38530247aefd35a1d43ae625d6a1f6409f98da731a908297d SHA512 
b98c703854b4f81080c99eec8be2596c46607ed86c6fb047f2ddf5fb93960cc0c57e128dd278cba7566593c39772f85804a98d0086cbae6b6e57457329e6c273
 WHIRLPOOL 
72af2bf592b265b3b65c927f3555c1b988486028031598859694e38ce1280b735b3f42d3115155348ac2a2ca607741f97e1c846dcf3c5ffc3948e390fd24dbc2
+DIST icedtea-bin-core-3.2.0-arm.tar.xz 53012424 SHA256 
49539e7276cf9cd0930e94998e9fb0722be65b0c5d005b0f571914c336a81ab1 SHA512 
51f83d747204e5c312050b08c7e1fab8e68baabed21d3e8fe8f4711fab53d89f5cfddcfacf9757ccbc183e77da01151d4c8bffd0c00deb82c137b2fd475395ac
 WHIRLPOOL 
40740d265a3a16de8c43f6394fb698bea2dfbb0ebd2cb2c7401dc33c76146ac9b60078debe42a131895e91acbddd149b7532af81026f8953c5774d31fcdc8b21
+DIST icedtea-bin-core-3.2.0-ppc64.tar.xz 54021752 SHA256 
f5eb2d85f5518356b53d079b4827d1d228e8c3185235cb4b5bec5dceab235be5 SHA512 
fef015ca8cf1bc0e01bab6df0560a38abcbab6c94dd8936a1f5847cacb9c8202af287096db2277ef259ec0444b089141e680549fac669fe21d40d09f28ceb2bd
 WHIRLPOOL 
e96f68f0900beaf9745b0fba000b37296e4d707b87a7a40a856c7f3049a1e635d41986ec522fad615529ff63f58de8a59cacdff6540de819b7f12b621780702c
+DIST icedtea-bin-core-3.2.0-x86.tar.xz 61103504 SHA256 
e74bb34040f8bebc7edc531c73069a411075464a6d6f8aa51d3930ad1281ab83 SHA512 
960b72971a13375c35c4ff7ddbd0466cab6a6434565a0841f0b760b67466b9057476be46a804afc4224c8d75cafdf21021661937197d1ea5a2674da835fb28b0
 WHIRLPOOL 
0decc2ed58c23f19048ca73e5a44c7d6174105a14932ef66301759ba349f3451a5f7fbd00821832b62eacbae68a7b4a4ce7f0d02bc0fce0317471adfa48f9293
 DIST icedtea-bin-core-7.2.6.7-amd64.tar.xz 53121664 SHA256 
3c43a1b1ae0b49ab9c5b01fb925fc2e40e36b26ee94bb134a9041ba550abb301 SHA512 
7c468356464ace98396b68596444b4e6b8545883fbe4a83e61413955f3a7f5f49d2f6eb3b97108633b03e37ac95fc328d28ec1eaff1464887e394752266da5a5
 WHIRLPOOL 
8f0f73fbe8d2e1fd6a3393868210c8b7d44b249392b2aa54cd399215607da8984d4979c23ae36563d04cd37b4cc9041018bf508a7596c4923abc15269fedd15f
 DIST icedtea-bin-core-7.2.6.7-x86.tar.xz 54806556 SHA256 
644b8355a62484ec38357bde77ffa72843bf7c1391be305f834f43be374c62e5 SHA512 
380968a2da744d2ea2a67c882416c909cc4132bb2fc9b79eb8ff263c8aa5d49c262e41792884c67a09fb93bfee371002a5fb9ebd630982d02429bd268489c264
 WHIRLPOOL 
84669bae688cd043ace4eb2b6912510d1f0358a7dacfbb193d8e6655b038ff82fd156743b5498c763435863cb22fd021dd7a2dbf38d6827990c6a5acf6e0c769
 DIST icedtea-bin-doc-3.1.0.tar.xz 11683216 SHA256 
05e5ed8110123e4a0941458f4b4b73ee999029db98fcbad35033d0de97e14b25 SHA512 
cd4d3f60e29777240a26ac6fffead099ee31eb05bfb2faa8f3c2c5a7c2aded3159ad0a8aecdc298e7a84bf96cae626d7c1b1cf18af24c39f02c6455d260a64a5
 WHIRLPOOL 
a008c276bf6da08385524c8886366d2f62c2975659d6181991bcbab9f2396a8a8c5a1cdee847d71d6c994ded738d126aeacc4c7180f4a1f5202a7e01f171db00
+DIST icedtea-bin-doc-3.2.0.tar.xz 11641392 SHA256 
2c519fa79584c4519978dbbd4872e50de774d2efeb6c117c9288f03351a88730 SHA512 

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

2016-11-19 Thread James Le Cuirot
commit: 6987a39342c6201cd4745fdf8fa8e7ea25fb4416
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Nov 19 17:06:02 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Nov 19 17:18:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6987a393

dev-java/icedtea: Remove vulnerable 7.2.6.7 wrt security bug #600224

Package-Manager: portage-2.3.2

 dev-java/icedtea/Manifest   |   8 -
 dev-java/icedtea/icedtea-7.2.6.7.ebuild | 389 
 2 files changed, 397 deletions(-)

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index 75a49cf..2a93e36 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -1,18 +1,10 @@
 DIST icedtea-2.6-corba-9e002eaf26ed.tar.bz2 1072838 SHA256 
2f728daac0ca88e7097a223f8c1ceaff8b4597e4622c5e365931edb25aa04538 SHA512 
b306a562b999c7e221c2535d5ef575f835a0e1fbbc6fab331cfa3ae016c048d6d7f822786a270e61958c9590395ae360af0f8069beaa123c00be1592487c37dd
 WHIRLPOOL 
6a1428c051a1febf07c5fd48a5f401d9ca0f4dd98902deb149b01e202e73d69007d008fae9c565f23562ed8ee38772bb2f9adc0af056e4a1c7ce789625de57de
-DIST icedtea-2.6-corba-e5578d3bc593.tar.bz2 1072909 SHA256 
0049439ea08f8391c0dae464ceb249f0af9d8e70c68142a734ceb25fa145e764 SHA512 
735553ba107df875b61bea38735309ddd1d99cdce989826eaae3587efb10b2a99a3ec1bd749574d17bf502dd7cdcb12436a1a7d608fa1b44b8bbb79b603d8dfc
 WHIRLPOOL 
441d51e2f1e3114b3a06dda7c9545b08e1d9b2e38cc431acfe67a2111e261a69fd0a993322acfff82d48882154e9c5ced62ac444609e383c142270df661bdcee
 DIST icedtea-2.6-hotspot-223f6c442d49.tar.bz2 8191191 SHA256 
ca55f548f3169ba9bb6ca81265900722150953ee19b19606e4bf8e6dd50d7194 SHA512 
e197a9e4e302d1b823eb4905ff58f2559d4d180e68deb7b9ec013ba41f155fb42b312f9f55315c67adfad632f37a01ee2f295d40f7c2b08dae07fc4aa8d509eb
 WHIRLPOOL 
e6fb07cbf9e144b0fb4464efea38152fcb2a1c1ff6b1bd77d4ce1da2ed289a9663c673be0fee80d3418b57547741d86317ec82fbd9852a341058b9fdd4377c30
-DIST icedtea-2.6-hotspot-75297b84957e.tar.bz2 8187345 SHA256 
0412594f4dabd77a759957bba038aedf277dee87d06153505fb63919c0cb6a5c SHA512 
9dc53d5f9bff967dffb994779621464540b94239a209d75482a6529d4b284bf40469ca180ada1a20cdede894d5b5d1297946db5d7ba5fc7d875c33b2d3559a02
 WHIRLPOOL 
94c88990aa9cc720781a6e141e3816c00d381dbbc0acb780b3496800b492c4e8d37f58b683ca02cf8b357d1d1185f9bf3acec4f8d64ac9b575b5e434ec656313
 DIST icedtea-2.6-jaxp-3369fa5a875b.tar.bz2 2733402 SHA256 
ba1ba48e9ad9ee36df344e6e283f0f7a9f8aa9cee223c8ea2f2ee711092091fc SHA512 
6b865927f97f6fcb709790f9a53917241c00f7d1123b5a5babf6752bdb1fe3c01aa8cca5dea40b5b64ad2d5ef8cdbac80ff7f9f32e736a9f71283e3eaf1a7e99
 WHIRLPOOL 
42dccb729503b9af5ba464be221a9604ca2daec1db6bba17ae2fae607c3a9bfdf6a487af3c79c8b8b30d816f733636331cd847ae4c3081aaa24cfa1a2a7fb9d2
-DIST icedtea-2.6-jaxp-b643540c673d.tar.bz2 2734041 SHA256 
9fbd60855406879b898843d7eeac2a5df64b0ccdeb927c615c5be648b8fac70b SHA512 
2483561e7ad0f6e201740689dffc097419d53640d394883026ec216b7ecacafb5f1952b12e5229fd5a6cd9174388fb45105bebcf80cefd7feb592b33e2f65b24
 WHIRLPOOL 
9e9982fbb16b5b490047569969cc757a8bec77480358254a2a9e44d4049adea11ba975cc5a63021c84ead4f8091c1cdb578c29a9915e7c4770d27aed192363f9
 DIST icedtea-2.6-jaxws-26bcf28b3a60.tar.bz2 2022420 SHA256 
753093e71ac609b9350bf16daf230fdc2f873cd573428883448098e39e4c041a SHA512 
a555c192377da223fef4f31a64296e71237389126db0777f9d64d086e026ecddb7d529d6330cb09097b726246ff880bf3597769ab695249d93fc7f2e14e9affe
 WHIRLPOOL 
869d5245443bd9f737cca91af861a5a27bd6071f73bd2da0b5af91a1ccd20beff1fdbef48bd705473da07be35b4e36bc673e67af4eb53484a40cd71ede159533
-DIST icedtea-2.6-jaxws-4a99f4eac257.tar.bz2 2021978 SHA256 
c9fcc1553bbb4fe1dd5ae4616b6a1f52f42c2bb990fd1cbdafeac43bfd6b30f7 SHA512 
e9c65a65dc61bdbc56bf7f0ff7945abfdff95551c0484fb031a29a540a692f11309916c76f2d8717f88a3d93fc59f6a97aa21d24231668f6d49c3afbc403bad1
 WHIRLPOOL 
e78095f6cff39e66d01a6d37093cc5891f8785c2d5a80693d9dc4ff2bf4eba23697082cb3124e9767864ec4e341d3caab0d488583f319e40a3fc3b69d2bc636a
 DIST icedtea-2.6-jdk-52225839bbea.tar.bz2 32770146 SHA256 
ec1118f52eb208a529e99ec1a64351b737bc0f892e05f0ffd4327b4be533e761 SHA512 
68c401f90496861852a3531de8f0f5f2d1951e8a6aef7566bdbb98a06e32d9ea0bc263b05a03d4558f96afb37687f69131d371b28f23a6106e5937875f50f281
 WHIRLPOOL 
64d086bab0a3a6aa2e6afce36fe6c467990c1e2a5edc0e5a2b44f850d0f9c04b791ce1cca9436c40421ebd576694597d430ace24f9fd98bd6b06fd16a6bdb847
-DIST icedtea-2.6-jdk-8b6b930489cb.tar.bz2 32719530 SHA256 
e93cd330b2346bc6145bb76a141233aa1cc083eb25bbc82819632e1581290d81 SHA512 
ac07270f88f6b1359224d665ad8e0c44d3a50fec186e9ee5291885d5574f0c77d3c2660583d2b09b21945213ace25dcdb45f72e2738794721901c22d740ca110
 WHIRLPOOL 
2b46907839088f32e1f2938ad730998010b0514adf5e5564b0eb756ee3a02e7f7f93c155a4ac72c17f6fee77ccecccbfdd2769b48ced2ac130da0ea150215f7e
 DIST icedtea-2.6-langtools-545e512eb4de.tar.bz2 1707805 SHA256 
004ec63ebdd0b6182c2bde3e190bb745a0d932ad7b05901a4376a04f06158813 SHA512 

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

2016-11-19 Thread Johannes Huber
commit: bceb8bd44cd1a542df6833a68b7ebcb0c5384378
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 19:46:31 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 19:46:31 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bceb8bd4

kde-apps/kstars: Raise dependency on sci-libs/indilib

Upstream commit cb99a35f6e6b56e3bbb5e9012af263c0f23d266b

Thanks-to: Arfrever

Package-Manager: portage-2.3.2

 kde-apps/kstars/kstars-16.12.49..ebuild | 2 +-
 kde-apps/kstars/kstars-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/kstars/kstars-16.12.49..ebuild 
b/kde-apps/kstars/kstars-16.12.49..ebuild
index a543bc2..9ea9486 100644
--- a/kde-apps/kstars/kstars-16.12.49..ebuild
+++ b/kde-apps/kstars/kstars-16.12.49..ebuild
@@ -38,7 +38,7 @@ COMMON_DEPEND="
fits? ( sci-libs/cfitsio )
indi? (
$(add_frameworks_dep knotifications)
-   >=sci-libs/indilib-1.2.0
+   >=sci-libs/indilib-1.3.1
)
raw? ( media-libs/libraw )
wcs? ( sci-astronomy/wcslib )

diff --git a/kde-apps/kstars/kstars-.ebuild 
b/kde-apps/kstars/kstars-.ebuild
index a543bc2..9ea9486 100644
--- a/kde-apps/kstars/kstars-.ebuild
+++ b/kde-apps/kstars/kstars-.ebuild
@@ -38,7 +38,7 @@ COMMON_DEPEND="
fits? ( sci-libs/cfitsio )
indi? (
$(add_frameworks_dep knotifications)
-   >=sci-libs/indilib-1.2.0
+   >=sci-libs/indilib-1.3.1
)
raw? ( media-libs/libraw )
wcs? ( sci-astronomy/wcslib )



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

2016-11-19 Thread David Seifert
commit: 16f0405f85337957f26665e873f2bd692efb62dd
Author: Nicholas Vinson  gmail  com>
AuthorDate: Sat Nov  5 16:16:41 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Nov 19 20:52:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f0405f

net-analyzer/nagios-check_logfiles: version bump

Package-Manager: portage-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/2751

 net-analyzer/nagios-check_logfiles/Manifest|  1 +
 .../nagios-check_logfiles-3.7.5.2.ebuild   | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/net-analyzer/nagios-check_logfiles/Manifest 
b/net-analyzer/nagios-check_logfiles/Manifest
index ad781c7..e31119e 100644
--- a/net-analyzer/nagios-check_logfiles/Manifest
+++ b/net-analyzer/nagios-check_logfiles/Manifest
@@ -1,2 +1,3 @@
 DIST check_logfiles-2.3.2.1.tar.gz 140546 SHA256 
8aba94b2942ac4433368487245085afec30d39ffbc62fcfaa1d3bfacac9edd94 SHA512 
c8295a4cdbe421982d97b7de671e04f4420689f46e5a75b9ca2833a083423a127871350f805f47b2a08a762db914f81ceb0f3badedf545909df55dbbbcb59152
 WHIRLPOOL 
c8f23c872515a6858d0791881d7837a9d68e1c4b32938fb28d3788150e2b75874f77a381e4f405b7aa3cb13c44e1ff6807834e76f5b765b54397dd5533bac91e
 DIST check_logfiles-3.7.3.1.tar.gz 234827 SHA256 
453416566d1d96a4b15f38b0ea9b78d265079f21e850652312e90ae48dc896cf SHA512 
84f196b9687a43dc2be8754a078f64836db45b3e273c52f1dafaaa78fe06a71c6f9fc27ce9b2964c2b4ba5d0a354708472fdd634b18b4e856d54b8bc1c6e393b
 WHIRLPOOL 
5313299d6c5541ab5b082a8688cb28c65493ca670a963d9ccab2264d22b354e0f1877dc0950796b7d5f46e6e02138119d8c9837e0891705197f9dc3dd1b502fc
+DIST check_logfiles-3.7.5.2.tar.gz 235992 SHA256 
3e5de1ab130d118f4eabe1645fb8abf80ba377cc92930f8349b432ad74c4f140 SHA512 
5c1f59820ed5b761713688de3a0908a29ca945dfc7d6e6ec1f58938257996270bb78b4501b31cf10515ad655d6e6cc81359e16d4571ee63b822b112f4a2397de
 WHIRLPOOL 
65ae90a257af420de53dbb14d98a1506baf6800ded9fe26efee9285aa412c8283a9dbcc544ae9186bd9aa35441c71d62fc1ba275c1883590f6bf3b1c03474193

diff --git 
a/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.5.2.ebuild 
b/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.5.2.ebuild
new file mode 100644
index ..3bf2998
--- /dev/null
+++ b/net-analyzer/nagios-check_logfiles/nagios-check_logfiles-3.7.5.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="A nagios plugin for checking logfiles"
+HOMEPAGE="https://labs.consol.de/nagios/check_logfiles/index.html;
+
+MY_P=${P/nagios-/}
+
+SRC_URI="https://labs.consol.de/assets/downloads/nagios/${MY_P}.tar.gz;
+LICENSE="GPL-3"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND=">=net-analyzer/nagios-plugins-1.4.13-r1"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf \
+   --libexecdir="${EPREFIX}/usr/$(get_libdir)/nagios/plugins" \
+   --sysconfdir="${EPREFIX}/etc/nagios"
+}



[gentoo-commits] repo/gentoo:master commit in: sys-process/fcron/files/

2016-11-19 Thread Thomas Deutschmann
commit: 9dcd5b2da7816a3c5431bddd28a926f135a85fe2
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Nov 19 20:48:49 2016 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov 19 20:49:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dcd5b2d

sys-process/fcron: runscript: Make shellcheck happy

Further POSIX improvements.

Package-Manager: portage-2.3.2

 sys-process/fcron/files/fcron.init.4 | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-process/fcron/files/fcron.init.4 
b/sys-process/fcron/files/fcron.init.4
index 25fafc1..9b7765f 100644
--- a/sys-process/fcron/files/fcron.init.4
+++ b/sys-process/fcron/files/fcron.init.4
@@ -5,7 +5,7 @@
 
 FCRON_INSTANCE="${SVCNAME##*.}"
 
-if [ -n "${FCRON_INSTANCE}" -a "${SVCNAME}" != "fcron" ]; then
+if [ -n "${FCRON_INSTANCE}" ] && [ "${SVCNAME}" != "fcron" ]; then
FCRON_CONFIGFILE="/etc/fcron/fcron.${FCRON_INSTANCE}.conf"
 else
FCRON_CONFIGFILE="/etc/fcron/fcron.conf"
@@ -17,10 +17,10 @@ getconfig() {
local value=
 
if service_started; then
-   value="$(service_get_value ${key})"
+   value="$(service_get_value "${key}")"
fi
 
-   if [ -z "${value}" -a -r "${FCRON_CONFIGFILE}" ]; then
+   if [ -z "${value}" ] && [ -r "${FCRON_CONFIGFILE}" ]; then
value="$(sed -n -e 's:^'"${key}"'[ \t]*=[ \t]*::p' 
"${FCRON_CONFIGFILE}")"
fi
 



[gentoo-commits] repo/gentoo:master commit in: kde-misc/colord-kde/files/, kde-misc/colord-kde/

2016-11-19 Thread Johannes Huber
commit: 4b3ae9949ef68a1026cb17c5b32cbd633696d675
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 22:10:35 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 22:10:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b3ae994

kde-misc/colord-kde: Drop slot 4

Exported to kde-sunset overlay.

Package-Manager: portage-2.3.2

 kde-misc/colord-kde/Manifest   |  1 -
 kde-misc/colord-kde/colord-kde-0.3.0.ebuild| 34 --
 .../files/colord-kde-0.3.0-cmake34.patch   | 11 ---
 3 files changed, 46 deletions(-)

diff --git a/kde-misc/colord-kde/Manifest b/kde-misc/colord-kde/Manifest
index 1d16d92..aa53692 100644
--- a/kde-misc/colord-kde/Manifest
+++ b/kde-misc/colord-kde/Manifest
@@ -1,2 +1 @@
-DIST colord-kde-0.3.0.tar.bz2 48933 SHA256 
ab3cdb7c8c98aa2ee8de32a92f87770e1fbd58eade6471f3f24d932b50b4cf09 SHA512 
21e20b79cc0875c33b7b240b46d63b045ba3db45445a4d6d3c533577c0f9d9e1f1efc48dc9a35c588eb93e02d0eedb1bceb39d5eaa982bb01acae07e55abe0ba
 WHIRLPOOL 
f4ec74c8e20952eb84cb16435275a564fc8bd53c15bc3e2b4d67b6fa5ae5144e8043eb22acf58c6d81d051b7820824e10f525999c7a9ee4e7ba985217157d1ad
 DIST colord-kde-0.5.0.tar.xz 97572 SHA256 
6c545009af737ad67900e4d8549086bc65b979c799b2402871bba44addb52d2f SHA512 
f285931f0f97462fcf173f64aaf2f32752bddb0b724d2055055ce5beb7dbe89ccebc62cb8c2ce455a8d68beb737fd55bf89be8e4dc7eaa37f09878b757370f07
 WHIRLPOOL 
4dc42e0378caded5277f665e3ee79b6f38f91ec97c37cf10f022d02e20b470b785c07a59ca02cc2918b8dfebc47bd9c0d8a644572b91e6ad00decd10e0e3291f

diff --git a/kde-misc/colord-kde/colord-kde-0.3.0.ebuild 
b/kde-misc/colord-kde/colord-kde-0.3.0.ebuild
deleted file mode 100644
index c348cc7..
--- a/kde-misc/colord-kde/colord-kde-0.3.0.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit kde4-base
-
-DESCRIPTION="Provides interfaces and session daemon to colord"
-HOMEPAGE="https://projects.kde.org/projects/playground/graphics/colord-kde;
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.bz2"
-
-LICENSE="GPL-2+"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug"
-
-DEPEND="
-   media-libs/lcms:2
-   >=x11-libs/libXrandr-1.3.0
-"
-RDEPEND="${DEPEND}
-   x11-misc/colord
-"
-
-PATCHES=( "${FILESDIR}/${P}-cmake34.patch" )
-
-pkg_postinst() {
-   kde4-base_pkg_postinst
-   if ! has_version "gnome-extra/gnome-color-manager"; then
-   elog "You may want to install gnome-extra/gnome-color-manager 
to add support for"
-   elog "colorhug calibration devices."
-   fi
-}

diff --git a/kde-misc/colord-kde/files/colord-kde-0.3.0-cmake34.patch 
b/kde-misc/colord-kde/files/colord-kde-0.3.0-cmake34.patch
deleted file mode 100644
index 671482d..
--- a/kde-misc/colord-kde/files/colord-kde-0.3.0-cmake34.patch
+++ /dev/null
@@ -1,11 +0,0 @@
-Fix build with >cmake-3.4
-
-Gentoo-bug: 569602
-
 a/ConfigureChecks.cmake
-+++ b/ConfigureChecks.cmake
-@@ -1,3 +1,4 @@
-+include(CheckIncludeFiles)
- include(CheckTypeSize)
- include(FindPkgConfig)
- 



[gentoo-commits] repo/gentoo:master commit in: kde-misc/kimtoy/

2016-11-19 Thread Johannes Huber
commit: acc0462325a2082771e5060493b9896fa7d2db35
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 22:58:35 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 22:58:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc04623

kde-misc/kimtoy: Drop slot 4

Exported to kde-sunset overlay.

Package-Manager: portage-2.3.2

 kde-misc/kimtoy/Manifest  |  1 -
 kde-misc/kimtoy/kimtoy-1.8.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/kde-misc/kimtoy/Manifest b/kde-misc/kimtoy/Manifest
index 1a826cf..06aa7ee 100644
--- a/kde-misc/kimtoy/Manifest
+++ b/kde-misc/kimtoy/Manifest
@@ -1,2 +1 @@
-DIST 140967-kimtoy-1.8.tar.bz2 283652 SHA256 
221601efef75f284b8025d2e3c96cb5bdd158a328c073025d7bd2faf08819f3b SHA512 
7b40fa0784443d2d49b7936640d6e984e6aa5466d5bcab50e208b1a8e456d7c8b876079e090ed4360ea6a99e331987766dc2b562fd9ab627eb6cb291450a5ffd
 WHIRLPOOL 
f029fd1cb88ce4f103f57b77c0ac8e58fb35a8758b1954097bcbdd63e7a515259e4ba441238c112aab7755a3c573860900fbd70fcd70b0eb1aebff3e77ec2725
 DIST 140967-kimtoy-1.91.tar.bz2 377053 SHA256 
58aa484a52b44eb34d0e49ced25bb9deef47bccade77f88648c32fbc4805ce90 SHA512 
60d1592fa6632fc5d69f6cebb9478827c8dd3eb252c7d3f3c4c90035c7682cef7cb883e8d36cd23ee828175c2ea7b5d3c081139e5295cf032340aeeca3d9406d
 WHIRLPOOL 
2e654f00555ee824d2fe763f70c815da4e61812de98f8cb459f8f85415e1f364de82a36dbd2a84a5577b65a3c01e7c184c9646f3c2453bf264746b1f5fad6eed

diff --git a/kde-misc/kimtoy/kimtoy-1.8.ebuild 
b/kde-misc/kimtoy/kimtoy-1.8.ebuild
deleted file mode 100644
index b8146ad..
--- a/kde-misc/kimtoy/kimtoy-1.8.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-KDE_LINGUAS="cs da de es et ga ja it nds nl pl pt pt_BR sk sv uk zh_CN"
-inherit kde4-base
-
-DESCRIPTION="An input method frontend for KDE"
-HOMEPAGE="http://kde-apps.org/content/show.php/KIMToy?content=140967;
-SRC_URI="http://kde-apps.org/CONTENT/content-files/140967-${P}.tar.bz2;
-
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-LICENSE="GPL-2+"
-IUSE=""
-
-DEPEND="
-   >=app-i18n/fcitx-4.0
-   >=app-i18n/scim-1.4.9
-   dev-libs/dbus-c++
-"
-RDEPEND="${DEPEND}
-   $(add_kdebase_dep plasma-workspace)
-"
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_IBus=OFF
-   )
-
-   kde4-base_src_configure
-}



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

2016-11-19 Thread Johannes Huber
commit: 6f4441009dfed8aa47ce87080c7f7579f0e18c17
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 22:57:22 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 22:57:22 2016 +
URL:https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=6f444100

kde-misc/kimtoy: Import from gentoo main tree

Package-Manager: portage-2.3.2

 kde-misc/kimtoy/kimtoy-1.8.ebuild | 34 ++
 kde-misc/kimtoy/metadata.xml  |  5 +
 2 files changed, 39 insertions(+)

diff --git a/kde-misc/kimtoy/kimtoy-1.8.ebuild 
b/kde-misc/kimtoy/kimtoy-1.8.ebuild
new file mode 100644
index 000..161bdea
--- /dev/null
+++ b/kde-misc/kimtoy/kimtoy-1.8.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_LINGUAS="cs da de es et ga ja it nds nl pl pt pt_BR sk sv uk zh_CN"
+inherit kde4-base
+
+DESCRIPTION="An input method frontend for KDE"
+HOMEPAGE="http://kde-apps.org/content/show.php/KIMToy?content=140967;
+SRC_URI="http://kde-apps.org/CONTENT/content-files/140967-${P}.tar.bz2;
+
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+LICENSE="GPL-2+"
+IUSE=""
+
+DEPEND="
+   >=app-i18n/fcitx-4.0
+   >=app-i18n/scim-1.4.9
+   dev-libs/dbus-c++
+"
+RDEPEND="${DEPEND}
+   $(add_kdebase_dep plasma-workspace)
+"
+
+src_configure() {
+   local mycmakeargs=(
+   -DWITH_IBus=OFF
+   )
+
+   kde4-base_src_configure
+}

diff --git a/kde-misc/kimtoy/metadata.xml b/kde-misc/kimtoy/metadata.xml
new file mode 100644
index 000..7a38bb9
--- /dev/null
+++ b/kde-misc/kimtoy/metadata.xml
@@ -0,0 +1,5 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+



[gentoo-commits] proj/kde-sunset:master commit in: kde-misc/kdeconnect/, kde-misc/kdeconnect/files/

2016-11-19 Thread Johannes Huber
commit: 114e67ada719a09dd61288269ac24b855a83a4da
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 17:24:01 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 17:24:01 2016 +
URL:https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=114e67ad

kde-misc/kdeconnect: Import from gentoo main tree

Package-Manager: portage-2.3.2

 .../kdeconnect/files/kdeconnect-0.8-ninja.patch| 36 ++
 .../files/kdeconnect-0.8-openssh-7.0.patch | 32 
 kde-misc/kdeconnect/kdeconnect-0.8-r1.ebuild   | 58 ++
 kde-misc/kdeconnect/metadata.xml   |  5 ++
 4 files changed, 131 insertions(+)

diff --git a/kde-misc/kdeconnect/files/kdeconnect-0.8-ninja.patch 
b/kde-misc/kdeconnect/files/kdeconnect-0.8-ninja.patch
new file mode 100644
index 000..d482549
--- /dev/null
+++ b/kde-misc/kdeconnect/files/kdeconnect-0.8-ninja.patch
@@ -0,0 +1,36 @@
+From d9e0c61185a5ecbd9b013740fe73d21ba5adaa44 Mon Sep 17 00:00:00 2001
+From: Michael Palimaka 
+Date: Thu, 10 Sep 2015 21:56:39 +1000
+Subject: [PATCH] Fix make with ninja.
+
+The custom command name must differ from the name of the generated file.
+
+REVIEW: 125137
+---
+ cmake/DbusInterfaceMacros.cmake | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/cmake/DbusInterfaceMacros.cmake b/cmake/DbusInterfaceMacros.cmake
+index 9d4810d..801452a 100644
+--- a/cmake/DbusInterfaceMacros.cmake
 b/cmake/DbusInterfaceMacros.cmake
+@@ -12,7 +12,7 @@ macro (generate_and_install_dbus_interface 
main_project_target header_file outpu
+ OPTIONS ${qdbus_options}
+ )
+ add_custom_target(
+-${output_xml_file}
++${output_xml_file}_target
+ SOURCES ${CMAKE_CURRENT_BINARY_DIR}/${output_xml_file}
+ )
+ install(
+@@ -21,6 +21,6 @@ macro (generate_and_install_dbus_interface 
main_project_target header_file outpu
+ )
+ add_dependencies(
+ ${main_project_target}
+-${output_xml_file}
++${output_xml_file}_target
+ )
+ endmacro (generate_and_install_dbus_interface)
+-- 
+2.4.6
+

diff --git a/kde-misc/kdeconnect/files/kdeconnect-0.8-openssh-7.0.patch 
b/kde-misc/kdeconnect/files/kdeconnect-0.8-openssh-7.0.patch
new file mode 100644
index 000..3689156
--- /dev/null
+++ b/kde-misc/kdeconnect/files/kdeconnect-0.8-openssh-7.0.patch
@@ -0,0 +1,32 @@
+From 56028b694176d1f52475ac073b0feb842c71a894 Mon Sep 17 00:00:00 2001
+From: Albert Vaca 
+Date: Mon, 24 Aug 2015 21:27:24 -0700
+Subject: [PATCH] Fixed incompatibility with OpenSSH 7.0
+
+BUG: 351725
+
+Conflicts:
+   plugins/sftp/mounter.cpp
+---
+ plugins/sftp/mounter.cpp | 5 +++--
+ 1 file changed, 3 insertions(+), 2 deletions(-)
+
+diff --git a/plugins/sftp/mounter.cpp b/plugins/sftp/mounter.cpp
+index c414f77..f13bb52 100644
+--- a/plugins/sftp/mounter.cpp
 b/plugins/sftp/mounter.cpp
+@@ -136,8 +136,9 @@ void Mounter::onPakcageReceived(const NetworkPackage& np)
+ << "-f"
+ << "-o" << "IdentityFile=" + m_sftp->device()->privateKeyPath()
+ << "-o" << "StrictHostKeyChecking=no" //Do not ask for confirmation 
because it is not a known host
+-<< "-o" << "UserKnownHostsFile=/dev/null"; //Prevent storing as a 
known host
+-
++<< "-o" << "UserKnownHostsFile=/dev/null" //Prevent storing as a 
known host
++<< "-o" << "HostKeyAlgorithms=+ssh-dss"; 
//https://bugs.kde.org/show_bug.cgi?id=351725
++
+ m_proc->setProgram(program, arguments);
+ 
+ //To debug
+-- 
+2.4.9
+

diff --git a/kde-misc/kdeconnect/kdeconnect-0.8-r1.ebuild 
b/kde-misc/kdeconnect/kdeconnect-0.8-r1.ebuild
new file mode 100644
index 000..de10795
--- /dev/null
+++ b/kde-misc/kdeconnect/kdeconnect-0.8-r1.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_PN="${PN}-kde"
+DECLARATIVE_REQUIRED="always"
+KDE_LINGUAS="ar bg bs ca cs da de es fi fr gl hu it ja ko lt nl pl pt pt_BR ro 
ru sk sv tr uk"
+inherit kde4-base
+
+if [[ ${KDE_BUILD_TYPE} != live ]]; then
+   MY_P="${MY_PN}-${PV}"
+   SRC_URI="mirror://kde/unstable/${PN}/${PV}/src/${MY_P}.tar.xz"
+   KEYWORDS="~amd64 ~x86"
+else
+   EGIT_REPO_URI="git://anongit.kde.org/${MY_PN}"
+   KEYWORDS=""
+fi
+
+DESCRIPTION="Adds communication between KDE and your smartphone"
+HOMEPAGE="https://www.kde.org/;
+
+LICENSE="GPL-2+"
+SLOT="4"
+IUSE="debug"
+
+COMMON_DEPEND="
+   app-crypt/qca:2[qt4(+)]
+   dev-libs/qjson
+   x11-libs/libfakekey
+   x11-libs/libX11
+   x11-libs/libXtst
+"
+RDEPEND="${COMMON_DEPEND}
+   $(add_kdebase_dep plasma-workspace)
+   app-crypt/qca:2[ssl]
+"
+DEPEND="${COMMON_DEPEND}
+   sys-devel/gettext
+"
+
+[[ ${KDE_BUILD_TYPE} != live ]] && S=${WORKDIR}/${MY_P}
+
+PATCHES=(
+   "${FILESDIR}/${P}-ninja.patch"
+   

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/cvs/, dev-vcs/cvs/files/

2016-11-19 Thread Robin H. Johnson
commit: a06f6c599f999a9ae9b1e7ca448712ebfb31ad5f
Author: Felix Janda  posteo  de>
AuthorDate: Sat Oct 22 00:17:27 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Oct 23 00:05:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a06f6c59

dev-vcs/cvs: security fix, QA fix and musl compilation fix

* add patch for CVE-2012-0804 (#402593)
* respect AR (#440270)
* fix format-security (#520508)
* fix compilation with musl libc
* modernize ebuild

Gentoo-Bug: https://bugs.gentoo.org/402593
Gentoo-Bug: https://bugs.gentoo.org/440270
Gentoo-Bug: https://bugs.gentoo.org/520508

 dev-vcs/cvs/cvs-1.12.12-r11.ebuild | 104 +
 dev-vcs/cvs/files/cvs-1.12.12-CVE-2012-0804.patch  |  30 ++
 .../cvs/files/cvs-1.12.12-format-security.patch|  22 +
 dev-vcs/cvs/files/cvs-1.12.12-getdelim.patch   |   4 +-
 dev-vcs/cvs/files/cvs-1.12.12-hash-nameclash.patch |   4 +-
 .../cvs/files/cvs-1.12.12-mktime-configure.patch   |   4 +-
 dev-vcs/cvs/files/cvs-1.12.12-musl.patch   |  13 +++
 .../cvs/files/cvs-1.12.12-rcs2log-coreutils.patch  |   6 +-
 8 files changed, 178 insertions(+), 9 deletions(-)

diff --git a/dev-vcs/cvs/cvs-1.12.12-r11.ebuild 
b/dev-vcs/cvs/cvs-1.12.12-r11.ebuild
new file mode 100644
index ..860cd3f
--- /dev/null
+++ b/dev-vcs/cvs/cvs-1.12.12-r11.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit pam toolchain-funcs
+
+DESCRIPTION="Concurrent Versions System - source code revision control tools"
+HOMEPAGE="http://cvs.nongnu.org/;
+
+SRC_URI="mirror://gnu/non-gnu/cvs/source/feature/${PV}/${P}.tar.bz2
+   doc? ( 
mirror://gnu/non-gnu/cvs/source/feature/${PV}/cederqvist-${PV}.html.tar.bz2
+   
mirror://gnu/non-gnu/cvs/source/feature/${PV}/cederqvist-${PV}.pdf
+   
mirror://gnu/non-gnu/cvs/source/feature/${PV}/cederqvist-${PV}.ps )"
+
+LICENSE="GPL-2 LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64
+   ~s390 ~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd
+   ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos ~m68k-mint
+   ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+IUSE="crypt doc kerberos nls pam server"
+RESTRICT="test"
+
+DEPEND=">=sys-libs/zlib-1.1.4
+   kerberos? ( virtual/krb5 )
+   pam? ( virtual/pam )"
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+   unpack ${P}.tar.bz2
+   use doc && unpack cederqvist-${PV}.html.tar.bz2
+}
+
+PATCHES=(
+   "${FILESDIR}"/${P}-cvsbug-tmpfix.patch
+   "${FILESDIR}"/${P}-openat.patch
+   "${FILESDIR}"/${P}-block-requests.patch
+   "${FILESDIR}"/${P}-cvs-gnulib-vasnprintf.patch
+   "${FILESDIR}"/${P}-install-sh.patch
+   "${FILESDIR}"/${P}-hash-nameclash.patch # for AIX
+   "${FILESDIR}"/${P}-getdelim.patch # 314791
+   "${FILESDIR}"/${PN}-1.12.12-rcs2log-coreutils.patch # 144114
+   "${FILESDIR}"/${P}-mktime-x32.patch # 395641
+   "${FILESDIR}"/${P}-fix-massive-leak.patch
+   "${FILESDIR}"/${P}-mktime-configure.patch #220040 #570208
+   "${FILESDIR}"/${P}-CVE-2012-0804.patch
+   "${FILESDIR}"/${P}-format-security.patch
+   "${FILESDIR}"/${P}-musl.patch
+   )
+DOCS=( BUGS ChangeLog{,.zoo} DEVEL-CVS FAQ HACKING MINOR-BUGS NEWS \
+   PROJECTS README TESTS TODO )
+
+src_prepare() {
+   default
+
+   sed -i "/^AR/s/ar/$(tc-getAR)/" diff/Makefile.in lib/Makefile.in || die
+}
+
+src_configure() {
+   if tc-is-cross-compiler ; then
+   # Sane defaults when cross-compiling (as these tests want to
+   # try and execute code).
+   export cvs_cv_func_printf_ptr="yes"
+   fi
+   econf \
+   --with-external-zlib \
+   --with-tmpdir=${EPREFIX%/}/tmp \
+   $(use_enable crypt encryption) \
+   $(use_with kerberos gssapi) \
+   $(use_enable nls) \
+   $(use_enable pam) \
+   $(use_enable server)
+}
+
+src_install() {
+   # Not installed into emacs site-lisp because it clobbers the normal C
+   # indentations.
+   DOCS+=( cvs-format.el )
+
+   if use doc; then
+   DOCS+=( "${DISTDIR}"/cederqvist-${PV}.{pdf,ps} )
+   HTML_DOCS=( ../cederqvist-${PV}.html/. )
+   fi
+
+   default
+
+   use doc && dosym cvs.html /usr/share/doc/${PF}/html/index.html
+
+   if use server; then
+   newdoc "${FILESDIR}"/cvs-1.12.12-cvs-custom.c cvs-custom.c
+   insinto /etc/xinetd.d
+   newins "${FILESDIR}"/cvspserver.xinetd.d cvspserver
+   newenvd "${FILESDIR}"/01-cvs-env.d 01cvs
+   fi
+
+   newpamd "${FILESDIR}"/cvs.pam-include-1.12.12 cvs
+}
+
+pkg_postinst() {
+   use server || elog "If you want any CVS server functionality, you MUST 
emerge with 

[gentoo-commits] repo/gentoo:master commit in: sys-process/fcron/files/, sys-process/fcron/

2016-11-19 Thread Thomas Deutschmann
commit: d493c1ced55419c1b3a1b40e3a16d824c6d33f26
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Nov 19 18:55:42 2016 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Nov 19 18:56:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d493c1ce

sys-process/fcron: Bashism in runscript removed

With the previous bump 531e27c45e1 I have accidentally introduced bashisms into
the runscript which are now removed. (Bug #600228)

This revision also introduces a sanity check for multi instances to make sure
that they don't use the default values so that they don't clash with the default
instance.

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

Package-Manager: portage-2.3.2

 .../{fcron-3.2.1.ebuild => fcron-3.2.1-r1.ebuild}  |  0
 sys-process/fcron/files/fcron.init.4   | 36 +++---
 2 files changed, 31 insertions(+), 5 deletions(-)

diff --git a/sys-process/fcron/fcron-3.2.1.ebuild 
b/sys-process/fcron/fcron-3.2.1-r1.ebuild
similarity index 100%
rename from sys-process/fcron/fcron-3.2.1.ebuild
rename to sys-process/fcron/fcron-3.2.1-r1.ebuild

diff --git a/sys-process/fcron/files/fcron.init.4 
b/sys-process/fcron/files/fcron.init.4
index e2441ee..25fafc1 100644
--- a/sys-process/fcron/files/fcron.init.4
+++ b/sys-process/fcron/files/fcron.init.4
@@ -5,7 +5,7 @@
 
 FCRON_INSTANCE="${SVCNAME##*.}"
 
-if [[ -n "${FCRON_INSTANCE}" && "${SVCNAME}" != "fcron" ]]; then
+if [ -n "${FCRON_INSTANCE}" -a "${SVCNAME}" != "fcron" ]; then
FCRON_CONFIGFILE="/etc/fcron/fcron.${FCRON_INSTANCE}.conf"
 else
FCRON_CONFIGFILE="/etc/fcron/fcron.conf"
@@ -20,11 +20,11 @@ getconfig() {
value="$(service_get_value ${key})"
fi
 
-   if [[ -z "${value}" && -r "${FCRON_CONFIGFILE}" ]]; then
+   if [ -z "${value}" -a -r "${FCRON_CONFIGFILE}" ]; then
value="$(sed -n -e 's:^'"${key}"'[ \t]*=[ \t]*::p' 
"${FCRON_CONFIGFILE}")"
fi
 
-   if [[ -z "${value}" ]]; then
+   if [ -z "${value}" ]; then
# Value not explicitly set in the configfile or configfile does 
not exist
# or is not readable
echo "${value_default}"
@@ -42,7 +42,7 @@ depend() {
need hostname
 
# provide the cron service if we are the main instance
-   [[ "${SVCNAME}" == "fcron" ]] && provide cron
+   [ "${SVCNAME}" = "fcron" ] && provide cron
 }
 
 command="/usr/libexec/fcron"
@@ -50,6 +50,7 @@ command_args="-c \"${FCRON_CONFIGFILE}\""
 start_stop_daemon_args=${FCRON_SSDARGS:-"--wait 1000"}
 pidfile="$(getconfig pidfile /run/fcron.pid)"
 fcrontabs="$(getconfig fcrontabs /var/spool/fcron)"
+fifofile="$(getconfig fifofile /run/fcron.fifo)"
 required_files="${FCRON_CONFIGFILE}"
 
 extra_started_commands="reload"
@@ -59,9 +60,33 @@ reload() {
 }
 
 start_pre() {
+   if [ "${SVCNAME}" != "fcron" ]; then
+   local _has_invalid_instance_cfg=0
+
+   if [ "${pidfile}" = "/run/fcron.pid" ]; then
+   eerror "You cannot use the same pidfile like the 
default instance!"
+   eerror "Please adjust your 'pidfile' setting in 
'${FCRON_CONFIGFILE}'."
+   _has_invalid_instance_cfg=1
+   fi
+
+   if [ "${fcrontabs}" = "/var/spool/fcron" ]; then
+   eerror "You cannot use the same fcrontabs location like 
the default instance!"
+   eerror "Please adjust your 'fcrontabs' setting in 
'${FCRON_CONFIGFILE}'."
+   _has_invalid_instance_cfg=1
+   fi
+
+   if [ "${fifofile}" = "/run/fcron.fifo" ]; then
+   eerror "You cannot use the same fifo file like the 
default instance!"
+   eerror "Please adjust your 'fifofile' setting in 
'${FCRON_CONFIGFILE}'."
+   _has_invalid_instance_cfg=1
+   fi
+
+   [ ${_has_invalid_instance_cfg} -ne 0 ] && return 1
+   fi
+
checkpath --file "${FCRON_CONFIGFILE}" --owner root:fcron --mode 0640
 
-   if [[ ! -d "${fcrontabs}" ]]; then
+   if [ ! -d "${fcrontabs}" ]; then
ebegin "Creating missing spooldir '${fcrontabs}'"
${command} --newspooldir "${fcrontabs}"
eend $?
@@ -70,4 +95,5 @@ start_pre() {
 
 start_post() {
service_set_value fcrontabs "${fcrontabs}"
+   service_set_value fifofile "${fifofile}"
 }



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

2016-11-19 Thread Robin H. Johnson
commit: cb50f677120f57cee02994ca064ed03c4093eaea
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Nov 19 18:52:04 2016 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Nov 19 18:55:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb50f677

Merge remote-tracking branch 'github/pr/2627'

* github/pr/2627:
  dev-vcs/cvs: security fix, QA fix and musl compilation fix

Fixes: https://github.com/gentoo/gentoo/pull/2627
Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-vcs/cvs/cvs-1.12.12-r11.ebuild | 104 +
 dev-vcs/cvs/files/cvs-1.12.12-CVE-2012-0804.patch  |  30 ++
 .../cvs/files/cvs-1.12.12-format-security.patch|  22 +
 dev-vcs/cvs/files/cvs-1.12.12-getdelim.patch   |   4 +-
 dev-vcs/cvs/files/cvs-1.12.12-hash-nameclash.patch |   4 +-
 .../cvs/files/cvs-1.12.12-mktime-configure.patch   |   4 +-
 dev-vcs/cvs/files/cvs-1.12.12-musl.patch   |  13 +++
 .../cvs/files/cvs-1.12.12-rcs2log-coreutils.patch  |   6 +-
 8 files changed, 178 insertions(+), 9 deletions(-)



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

2016-11-19 Thread William Hubbs
commit: beea75c4951aa78427db7289cfa858a6fe20cd35
Author: William Hubbs  gentoo  org>
AuthorDate: Sat Nov 19 21:37:00 2016 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sat Nov 19 21:37:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=beea75c4

Revert "app-emulation/runc: remove unstable versions"

This reverts commit 9cd25c21392af7f1e5d127acddb3dab73e5a4227.
We need these until I look at containerd

 app-emulation/runc/Manifest  |  3 ++
 app-emulation/runc/runc-0.0.2.ebuild | 49 
 app-emulation/runc/runc-0.0.5.ebuild | 52 ++
 app-emulation/runc/runc-0.1.1.ebuild | 55 
 4 files changed, 159 insertions(+)

diff --git a/app-emulation/runc/Manifest b/app-emulation/runc/Manifest
index 988e8c5..9c0b7dc 100644
--- a/app-emulation/runc/Manifest
+++ b/app-emulation/runc/Manifest
@@ -1,2 +1,5 @@
+DIST runc-0.0.2.tar.gz 370712 SHA256 
3d0aa68ebb1622853d0bbed432ebd4b6c9ef210881ac74f3a695b4e914d246dc SHA512 
e0a44d5dd8a1b8eaeaf7d466cebc7dc8beaa26f49bd0e76d3a955cef9c5c266d2afe6652f28fa905a408b5b93966f52e345112fa7aef373216561ad7069181c5
 WHIRLPOOL 
e7ed1ee3d159a81fb0b2b0f5fac9a9a66116035babc88f6f266a6c8455953ce372e93351baf7c621c42ab8c5907961fd899b1d158e7f7b1335f83fcef7252c71
+DIST runc-0.0.5.tar.gz 441874 SHA256 
e80323412883e4afcfcf8e1b2eaefdcb74632628d02fd7f48618caf78e5e4aa0 SHA512 
625d67ec02e23c66a3d1a97113a0c58f3f200404866839556bc3cd5b3e34342230b8091613d17ef4a38d05ca51df586cd7366dc6bddeeddd6b69bb9a2ae7efda
 WHIRLPOOL 
862b08621b67fc57286940ad5e20557d90cfef63aae5be0a90fc6f5b764d032b187ba5ad5dcb1fa99fb5ec59d6217941aa19ca9048637bd02b64e52c8cecdce6
 DIST runc-0.1.0.tar.gz 496358 SHA256 
681d6d89541ae2e06757f999a242a1f97bbcb1ad6e10f4cdee287ec4a9d2bff9 SHA512 
8a9ff02b0161eda0a730194b0fbf7ad76e8f379992e74061ef49302da3492fd0c53f06db9153ded4d934d67bbf6f4291d6154254f1b924ef73c97c44cd14ffcf
 WHIRLPOOL 
81f488a4f1e23e8704a9fa8404965b2f12f74a875ba8e67dc15de93f43b075dc538cd0d89c7a1187cb74ac6320317b5985855945fb8bf8f749d6736df47b844a
+DIST runc-0.1.1.tar.gz 496416 SHA256 
f9955daed1e73e842b2f28a258fba51f4e72a6b4b64cc3fc06415481d55ce000 SHA512 
074482636fd2342c490c450d7a379cd14cd6c7b1ec6109cf729c4b451cc8cfb0e6b286d0df8e0cc0dba7b24d63d12bd5978013e08301a785db5e4280c595fdaa
 WHIRLPOOL 
f605e70d2bea88b5ba10f6375543824167509630cc3ed839575d5e0d3b05bb07edcac8fcee168aa3ae89adaf0ccf5ab816a201b27022ddcf31fd0218bd59c357
 DIST runc-1.0.0_rc2.tar.gz 550449 SHA256 
638742c48426b9a3281aeb619e27513d972de228bdbd43b478baea99c186d491 SHA512 
83a3d45efbb86d3d583b96062202b9e60121d250af2c0dd37d07fda574b642aa6f05e29cac6644ad3d624647400db694082e280383e41ca9f31dc0a33b87ed76
 WHIRLPOOL 
990a45739689db80bbeed43b0fd3a4ce4d0563ea833361b9112e750782313f19e638c4bfbd455f5dd1882d64c724dcf0213701322029c2c9f98f624863c744f3

diff --git a/app-emulation/runc/runc-0.0.2.ebuild 
b/app-emulation/runc/runc-0.0.2.ebuild
new file mode 100644
index ..f5bb49f
--- /dev/null
+++ b/app-emulation/runc/runc-0.0.2.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="runc container cli tools"
+HOMEPAGE="http://runc.io;
+
+GITHUB_URI="github.com/opencontainers/runc"
+
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="git://${GITHUB_URI}.git"
+   inherit git-r3
+else
+   SRC_URI="https://${GITHUB_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+inherit multilib
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND=">=dev-lang/go-1.4:="
+RDEPEND=""
+
+src_prepare() {
+   epatch_user
+}
+
+src_compile() {
+   # Taken from app-emulation/docker-1.7.0-r1
+   export CGO_CFLAGS="-I${ROOT}/usr/include"
+   export CGO_LDFLAGS="-L${ROOT}/usr/$(get_libdir)"
+
+   # Setup GOPATH so things build
+   rm -rf .gopath
+   mkdir -p .gopath/src/"$(dirname "${GITHUB_URI}")"
+   ln -sf ../../../.. .gopath/src/"${GITHUB_URI}"
+   export GOPATH="${PWD}/.gopath:${PWD}/vendor"
+
+   make
+}
+
+src_install() {
+   dobin runc
+}

diff --git a/app-emulation/runc/runc-0.0.5.ebuild 
b/app-emulation/runc/runc-0.0.5.ebuild
new file mode 100644
index ..5cd3836
--- /dev/null
+++ b/app-emulation/runc/runc-0.0.5.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils multilib
+
+DESCRIPTION="runc container cli tools"
+HOMEPAGE="http://runc.io;
+
+GITHUB_URI="github.com/opencontainers/runc"
+
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="git://${GITHUB_URI}.git"
+   inherit git-r3
+else
+   SRC_URI="https://${GITHUB_URI}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="+seccomp"
+
+DEPEND=">=dev-lang/go-1.4:="
+RDEPEND="seccomp? ( sys-libs/libseccomp )"
+
+src_prepare() {

[gentoo-commits] repo/gentoo:master commit in: kde-misc/systemd-kcm/

2016-11-19 Thread Johannes Huber
commit: 415889561a10e25f34d7aa8d843f34a664bf5184
Author: Johannes Huber  gentoo  org>
AuthorDate: Sat Nov 19 21:59:44 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Sat Nov 19 22:00:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41588956

kde-misc/systemd-kcm: Drop slot 4

Exported to kde-sunset overlay.

Package-Manager: portage-2.3.2

 kde-misc/systemd-kcm/Manifest |  1 -
 kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild | 28 ---
 2 files changed, 29 deletions(-)

diff --git a/kde-misc/systemd-kcm/Manifest b/kde-misc/systemd-kcm/Manifest
index 37adb51..6ce16a9 100644
--- a/kde-misc/systemd-kcm/Manifest
+++ b/kde-misc/systemd-kcm/Manifest
@@ -1,2 +1 @@
-DIST systemd-kcm-0.7.0.tar.gz 52063 SHA256 
8988e9b782546147e089c9ed86e65600cb9111ac7770dc4aa2fc8f862f4630cf SHA512 
67658a97544148bc7a3208d00a0d990eea662f5e88032ff3d1d61f125ade1c3f36e0b1c772ab06fa90d954c9bf2c09436f0a5808d36373cbcf0687a57ff478c5
 WHIRLPOOL 
95087b293a20c3ddf0f880adecc4a48878199c835e743534fbedc633ddb751b8fa6b4d43f41bf0c730a19dcdc9b539b048f4a9b970607dc4a66b13e90cdfa508
 DIST systemd-kcm-1.2.1.tar.xz 86268 SHA256 
51960f4d3b4a1ceae28737c172c35aec8c1f4e534327fbc6dda76f1c17341389 SHA512 
e3dcf6db6513b88b37e724b3a472939fbb155642a605527ca669e71c5a0b8616c4c6add1796037c94170af788bce519415c698f22f010f1133c0e14452245e76
 WHIRLPOOL 
772dabd48eb5f8ed7ef96398317909c15968fea93db34479f32a3f45a9c750e4bf630291a7b5e19185c9f00e3abd12f5c49444bcf2a21937da02ce59e96dc497

diff --git a/kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild 
b/kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild
deleted file mode 100644
index f9f3120..
--- a/kde-misc/systemd-kcm/systemd-kcm-0.7.0.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MY_PN="kcmsystemd"
-inherit kde4-base
-
-DESCRIPTION="KDE control module for systemd"
-HOMEPAGE="https://projects.kde.org/projects/playground/sysadmin/systemd-kcm;
-SRC_URI="https://github.com/rthomsen/${MY_PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-IUSE="debug"
-LICENSE="GPL-3"
-SLOT="4"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="
-   >=dev-libs/boost-1.45
-"
-RDEPEND="${DEPEND}
-   $(add_kdeapps_dep kcmshell)
-   sys-apps/systemd
-"
-
-# only needed for 0.7.0 and 1.1.0
-S="${WORKDIR}"/${MY_PN}-${PV}



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

2016-11-19 Thread Mike Gilbert
commit: dd1061bfffa7586f8cb5e101357671b4199b9517
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Nov 19 18:05:39 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Nov 19 18:05:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd1061bf

dev-python/mysql-connector-python: remove vulnerable versions

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

Package-Manager: portage-2.3.2_p8

 dev-python/mysql-connector-python/Manifest |  3 ---
 .../mysql-connector-python-2.0.3.ebuild| 20 -
 .../mysql-connector-python-2.1.1.ebuild| 21 -
 .../mysql-connector-python-2.1.3.ebuild| 26 --
 4 files changed, 70 deletions(-)

diff --git a/dev-python/mysql-connector-python/Manifest 
b/dev-python/mysql-connector-python/Manifest
index 29173b2..e9e05a1 100644
--- a/dev-python/mysql-connector-python/Manifest
+++ b/dev-python/mysql-connector-python/Manifest
@@ -1,4 +1 @@
-DIST mysql-connector-python-2.0.3.tar.gz 210699 SHA256 
b07a42c6c1d0476d47315428df89f3fd84626d1df18045babdaa182a6a331ec8 SHA512 
2c9c6ee8042c3a694b7a88841176db682ae17def03e6a9628e098b5652d387eca882cbf1ec3e6d963c3b3913f66bc63e26ce7cc82a5f9fba01dfe00fcb574d7c
 WHIRLPOOL 
41fe675d60b24a73f959117fb9ab85257d821f6f53f7f8f2ca0029aa17100ef30b7201f71dffd52bc64bca3e435f725bb9fac573078b852161507991990f6aca
-DIST mysql-connector-python-2.1.1.tar.gz 260751 SHA256 
5306e982592fbd4adbdc6a89f198f175ac1a7353c7c57def59e1d2e74b954cb3 SHA512 
02eef242c186ed648454225bbb75931fa7099d1286cb3425224e86c57ba5e7cca3bb2216892109c8be366596e76c671d4ebde7c6641fc39869cbffeb3738597c
 WHIRLPOOL 
57b7390403b54727fac4cd0d92323190ac37e9f8b18bc588cef569d336b8db2fa36b5ddeaf1887ecff4e61ffab941a156c858ff626060536e8d7cdca6102e53e
-DIST mysql-connector-python-2.1.3.tar.gz 271939 SHA256 
c6b5975de7117c41cb7364f2fb99c7f2e58b33c670b74a2d3c5b4a91a52720e3 SHA512 
52c865beae4088bbd3b49ede15f3d2de27fa160ff2bff579d4845f32e2963213c7b31f76689cb040b370e698f63d84adebd2b178df427f472741561c70ab61a8
 WHIRLPOOL 
f5b9cf827880dafd625d01e52525177c183a771d5ce696ac4dc5bb2859f80ed4120ca31a137098dd40a4c84334d2485ec575120edf5669a8f02936747846c318
 DIST mysql-connector-python-2.1.4.tar.gz 11766506 SHA256 
f34f2ac9984c3b3065347506653b88cb2661b0a891871c80dc767c3a1352079b SHA512 
1071c4b3d0e30dd90cb1ed7d6376a7dd688f16b285ab28c26eccd182a3b3c5bb3c36890aec38b037ccf70e2c2ae24a9013139c7ca71e69ae8e9e29f2c15204d9
 WHIRLPOOL 
0c461129dabc929400784204672fa39bf16e489a257bfd2c050b366f6ad2f7cd482d1410284ac844ce50c937eb7ec3012149ae1e2de8b25d1b289a37167edf9e

diff --git 
a/dev-python/mysql-connector-python/mysql-connector-python-2.0.3.ebuild 
b/dev-python/mysql-connector-python/mysql-connector-python-2.0.3.ebuild
deleted file mode 100644
index 104bc2f..
--- a/dev-python/mysql-connector-python/mysql-connector-python-2.0.3.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-inherit distutils-r1
-
-DESCRIPTION="Python client library for MariaDB/MySQL"
-HOMEPAGE="https://dev.mysql.com/downloads/connector/python/;
-SRC_URI="mirror://mysql/Downloads/Connector-Python/${P}.tar.gz"
-
-KEYWORDS="~amd64 ~arm ~x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="examples"
-
-DOCS=( README.txt CHANGES.txt )
-EXAMPLES=( examples/. )

diff --git 
a/dev-python/mysql-connector-python/mysql-connector-python-2.1.1.ebuild 
b/dev-python/mysql-connector-python/mysql-connector-python-2.1.1.ebuild
deleted file mode 100644
index b057d9f..
--- a/dev-python/mysql-connector-python/mysql-connector-python-2.1.1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-inherit distutils-r1
-
-DESCRIPTION="Python client library for MariaDB/MySQL"
-HOMEPAGE="https://dev.mysql.com/downloads/connector/python/;
-SRC_URI="mirror://mysql/Downloads/Connector-Python/${P}.tar.gz"
-
-KEYWORDS="~amd64 ~arm ~x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="examples"
-
-DOCS=( README.txt CHANGES.txt docs/README_DOCS.txt )
-
-EXAMPLES=( examples/. )

diff --git 
a/dev-python/mysql-connector-python/mysql-connector-python-2.1.3.ebuild 
b/dev-python/mysql-connector-python/mysql-connector-python-2.1.3.ebuild
deleted file mode 100644
index d3c1816..
--- a/dev-python/mysql-connector-python/mysql-connector-python-2.1.3.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-inherit distutils-r1
-
-DESCRIPTION="Python client library for MariaDB/MySQL"
-HOMEPAGE="https://dev.mysql.com/downloads/connector/python/;
-SRC_URI="https://dev.mysql.com/get/Downloads/Connector-Python/${P}.tar.gz;
-
-KEYWORDS="~amd64 ~arm ~x86"

  1   2   >