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

2017-01-06 Thread Matt Turner
commit: 6de1216fb3715d28dbf02da60e87dc44a016bfd8
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Jan  7 07:30:40 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Jan  7 07:31:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6de1216f

media-libs/mesa: Version bump to 13.0.3.

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-13.0.3.ebuild | 506 +
 2 files changed, 507 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index a239a0e..c3b26ff 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -8,3 +8,4 @@ DIST mesa-12.0.5.tar.xz 8661528 SHA256 
2b0a972d8282860a11291c09c3ef01ac451714059
 DIST mesa-13.0.0.tar.xz 9151388 SHA256 
94edb4ebff82066a68be79d9c2627f15995e1fe10f67ab3fc63deb842027d727 SHA512 
3de56ffed1e7940bf0caf604cb9071d39684b9252e09c1c6430fe28227cd7e88d48b4a31591d5677669feca73b95b1c7958944e16c9247cf6b3c59494099e77d
 WHIRLPOOL 
67a1a53b7783126871f5ae23a5ab3fae2665e68bd57638441b15758e9a173771e64469736e4d8285e97cf49b99113db237153f41772de88d00ffe2b1923eed99
 DIST mesa-13.0.1.tar.xz 9154288 SHA256 
71962fb2bf77d33b0ad4a565b490dbbeaf4619099c6d9722f04a73187957a731 SHA512 
00ae0eaef742a3954c1461b50cdcc8b9f933e829c89784d66bfcc0890e7e2793350efcad1a06f28bd3c115f04702a43a6f1ac6ce86270ca7799a90f1a5cf5127
 WHIRLPOOL 
7198e65498800606b7835003e40c4534f891447d8ad3ef682a08a18b2edac41ec6a75ab216efc81217958735cc21ebf0a7a67a2928ebedd5fb2a08d66185faa4
 DIST mesa-13.0.2.tar.xz 9159100 SHA256 
a6ed622645f4ed61da418bf65adde5bcc4bb79023c36ba7d6b45b389da4416d5 SHA512 
e4e2b9d685910f9b1d70958c50f54d059263623865571a92c3aa185914f4f7aa745d74afc9706b64ecd1f8d04c603ad03a78365d976382e2664284dc6a8351be
 WHIRLPOOL 
49cb109e3b97f491f7682155a3194fd3df8808235a45a18539a8ecf55d2e3a9ba13dabb13f819822e256b272b4145efad029e38e7c666a5bf7abe7906528f6d2
+DIST mesa-13.0.3.tar.xz 9162036 SHA256 
d9aa8be5c176d00d0cd503cb2f64a5a403ea471ec819c022581414860d7ba40e SHA512 
e94a60f7e3b2c64d7b44130ccac95fef8edb74ee1574125aa9ec8ceecb1819df26b0fb08369254aaee6cd6df4eecea814783351e604d4c39b0130746b15a3c1e
 WHIRLPOOL 
02b980a02c862d52395f4b5cbec4e02d16b3d5b9d01c29f3b58538574b1401635b5c39bd5d94a026d4ada6ea2583118542d1eaccac64cc7cd3286e1ecfb5d30c

diff --git a/media-libs/mesa/mesa-13.0.3.ebuild 
b/media-libs/mesa/mesa-13.0.3.ebuild
new file mode 100644
index ..0773786
--- /dev/null
+++ b/media-libs/mesa/mesa-13.0.3.ebuild
@@ -0,0 +1,506 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+EGIT_REPO_URI="git://anongit.freedesktop.org/mesa/mesa"
+
+if [[ ${PV} =  ]]; then
+   GIT_ECLASS="git-r3"
+   EXPERIMENTAL="true"
+fi
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools multilib-minimal python-any-r1 pax-utils ${GIT_ECLASS}
+
+OPENGL_DIR="xorg-x11"
+
+MY_P="${P/_/-}"
+FOLDER="${PV/_rc*/}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="http://mesa3d.sourceforge.net/;
+
+if [[ $PV ==  ]]; then
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="ftp://ftp.freedesktop.org/pub/mesa/${FOLDER}/${MY_P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~sparc-solaris ~x64-solaris ~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="!bindist? ( bindist )"
+
+INTEL_CARDS="i915 i965 ilo intel"
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${INTEL_CARDS} ${RADEON_CARDS} freedreno nouveau vc4 vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   bindist +classic d3d9 debug +dri3 +egl +gallium +gbm gcrypt gles1 gles2
+   libressl +llvm +nettle +nptl opencl osmesa pax_kernel openmax openssl 
pic
+   selinux vaapi valgrind vdpau vulkan wayland xvmc xa kernel_FreeBSD"
+
+REQUIRED_USE="
+   || ( gcrypt libressl nettle openssl )
+   d3d9?   ( dri3 gallium )
+   llvm?   ( gallium )
+   opencl? ( gallium llvm )
+   openmax? ( gallium )
+   gles1?  ( egl )
+   gles2?  ( egl )
+   vaapi? ( gallium )
+   vdpau? ( gallium )
+   vulkan? ( || ( video_cards_i965 video_cards_radeonsi ) )
+   wayland? ( egl gbm )
+   xa?  ( gallium )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_ilo?( gallium )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
+   

[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2017-01-06 Thread Aaron Bauman
commit: daa5a1e9c940d273f01503efa342d55595aaa1f0
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 03:43:44 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 03:43:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa5a1e9

net-fs/samba: amd64 stable wrt bug #588262

 net-fs/samba/samba-4.2.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/samba/samba-4.2.14.ebuild b/net-fs/samba/samba-4.2.14.ebuild
index b109a1b..d127590 100644
--- a/net-fs/samba/samba-4.2.14.ebuild
+++ b/net-fs/samba/samba-4.2.14.ebuild
@@ -17,7 +17,7 @@ SRC_PATH="stable"
 SRC_URI="mirror://samba/${SRC_PATH}/${MY_P}.tar.gz

https://dev.gentoo.org/~polynomial-c/samba-disable-python-patches-4.2.12.tar.xz;
 [[ ${PV} = *_rc* ]] || \
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 DESCRIPTION="Samba Suite Version 4"
 HOMEPAGE="http://www.samba.org/;



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

2017-01-06 Thread Aaron Bauman
commit: 283cebe26bd03c1f75c0429f893ace51cb364587
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 02:32:08 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 02:32:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=283cebe2

dev-php/pecl-yaz: amd64 stable wrt bug #604706

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

diff --git a/dev-php/pecl-yaz/pecl-yaz-1.2.1.ebuild 
b/dev-php/pecl-yaz/pecl-yaz-1.2.1.ebuild
index d6ce1c2..fbaab46 100644
--- a/dev-php/pecl-yaz/pecl-yaz-1.2.1.ebuild
+++ b/dev-php/pecl-yaz/pecl-yaz-1.2.1.ebuild
@@ -13,7 +13,7 @@ USE_PHP="php7-0 php5-6"
 
 inherit php-ext-pecl-r3
 
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
 
 DESCRIPTION="This extension implements a Z39.50 client for PHP using the YAZ 
toolkit"
 LICENSE="BSD"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-HTTP_Header/

2017-01-06 Thread Aaron Bauman
commit: ff04e6b5fd89e026a69c8a70ba4c141c8d3d6f9d
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 02:40:27 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 02:40:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff04e6b5

dev-php/PEAR-HTTP_Header: amd64 stable wrt bug #604868

 dev-php/PEAR-HTTP_Header/PEAR-HTTP_Header-1.2.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-php/PEAR-HTTP_Header/PEAR-HTTP_Header-1.2.1-r2.ebuild 
b/dev-php/PEAR-HTTP_Header/PEAR-HTTP_Header-1.2.1-r2.ebuild
index 283c245..6f2dd2f 100644
--- a/dev-php/PEAR-HTTP_Header/PEAR-HTTP_Header-1.2.1-r2.ebuild
+++ b/dev-php/PEAR-HTTP_Header/PEAR-HTTP_Header-1.2.1-r2.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://pear.php.net/package/HTTP_Header;
 SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 RDEPEND="dev-lang/php:*
dev-php/PEAR-HTTP"



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

2017-01-06 Thread Aaron Bauman
commit: 2ff83e7edaec81cb60b5e470375e9ae3d737273a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 02:22:38 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 02:22:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ff83e7e

sci-libs/fftw: amd64 stable wrt bug #601714

 sci-libs/fftw/fftw-2.1.5-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/fftw/fftw-2.1.5-r9.ebuild 
b/sci-libs/fftw/fftw-2.1.5-r9.ebuild
index 685d9ee..1251bd4 100644
--- a/sci-libs/fftw/fftw-2.1.5-r9.ebuild
+++ b/sci-libs/fftw/fftw-2.1.5-r9.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Fast C library for the Discrete Fourier 
Transform"
 HOMEPAGE="http://www.fftw.org;
 SRC_URI="http://www.fftw.org/${P}.tar.gz;
 
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
 
 LICENSE="GPL-2+"
 SLOT="2.1"



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

2017-01-06 Thread Aaron Bauman
commit: 7b02f21bed400c46ba04f086ef526802e9949f7e
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:53:58 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:53:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b02f21b

dev-php/adodb: amd64 stable wrt bug #604714

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

diff --git a/dev-php/adodb/adodb-5.20.9.ebuild 
b/dev-php/adodb/adodb-5.20.9.ebuild
index 17b9a67..08c7aa0 100644
--- a/dev-php/adodb/adodb-5.20.9.ebuild
+++ b/dev-php/adodb/adodb-5.20.9.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/v${PV}.tar.gz;
 
 LICENSE="BSD LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 # If you want to be picky, we should require that PHP be built with at



[gentoo-commits] repo/gentoo:master commit in: dev-lua/busted/

2017-01-06 Thread Aaron Bauman
commit: 53369c6c442391dcc4fb56ca44e237438faf2ca7
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:51:16 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:52:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53369c6c

dev-lua/busted: amd64 stable wrt bug #597644

 dev-lua/busted/busted-2.0_rc12_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/busted/busted-2.0_rc12_p1.ebuild 
b/dev-lua/busted/busted-2.0_rc12_p1.ebuild
index afbfd0a..333b7f3 100644
--- a/dev-lua/busted/busted-2.0_rc12_p1.ebuild
+++ b/dev-lua/busted/busted-2.0_rc12_p1.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luassert/

2017-01-06 Thread Aaron Bauman
commit: 82d87cf995f62f9b57e18733a79c9e6cbb0008ea
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:49:18 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:52:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82d87cf9

dev-lua/luassert: amd64 stable wrt bug #597644

 dev-lua/luassert/luassert-1.7.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luassert/luassert-1.7.9.ebuild 
b/dev-lua/luassert/luassert-1.7.9.ebuild
index 60e9959..94c0593 100644
--- a/dev-lua/luassert/luassert-1.7.9.ebuild
+++ b/dev-lua/luassert/luassert-1.7.9.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/Olivine-Labs/luassert/archive/v${PV}.tar.gz -> ${P}.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua_cliargs/

2017-01-06 Thread Aaron Bauman
commit: a72e5dac04af6bd74a0a853befd0ec3a3d681726
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:47:29 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:51:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a72e5dac

dev-lua/lua_cliargs: amd64 stable wrt bug #597644

 dev-lua/lua_cliargs/lua_cliargs-3.0_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lua_cliargs/lua_cliargs-3.0_p1.ebuild 
b/dev-lua/lua_cliargs/lua_cliargs-3.0_p1.ebuild
index 4a4b904..fd99735 100644
--- a/dev-lua/lua_cliargs/lua_cliargs-3.0_p1.ebuild
+++ b/dev-lua/lua_cliargs/lua_cliargs-3.0_p1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/amireh/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/mediator_lua/

2017-01-06 Thread Aaron Bauman
commit: c068a6a3d46868a3ba77d9d542568b50bd6e2e43
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:50:38 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:52:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c068a6a3

dev-lua/mediator_lua: amd64 stable wrt bug #597644

 dev-lua/mediator_lua/mediator_lua-1.1.2_p0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/mediator_lua/mediator_lua-1.1.2_p0.ebuild 
b/dev-lua/mediator_lua/mediator_lua-1.1.2_p0.ebuild
index 4743cce..df0b233 100644
--- a/dev-lua/mediator_lua/mediator_lua-1.1.2_p0.ebuild
+++ b/dev-lua/mediator_lua/mediator_lua-1.1.2_p0.ebuild
@@ -16,7 +16,7 @@ 
SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/penlight/

2017-01-06 Thread Aaron Bauman
commit: 3e17f99382ad7442265cb98e7da9783e1bf7a802
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:50:05 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:52:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e17f993

dev-lua/penlight: amd64 stable wrt bug #597644

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

diff --git a/dev-lua/penlight/penlight-1.3.2.ebuild 
b/dev-lua/penlight/penlight-1.3.2.ebuild
index 7536d1c..982fd2d 100644
--- a/dev-lua/penlight/penlight-1.3.2.ebuild
+++ b/dev-lua/penlight/penlight-1.3.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://stevedonovan.github.io/files/${PN}-1.3.2-core.zip;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/lua-term/

2017-01-06 Thread Aaron Bauman
commit: f6c3137e0edc796f4438635b9c41f9654c3c07fa
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:49:47 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:52:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6c3137e

dev-lua/lua-term: amd64 stable wrt bug #597644

 dev-lua/lua-term/lua-term-0.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lua-term/lua-term-0.3.ebuild 
b/dev-lua/lua-term/lua-term-0.3.ebuild
index d1457e5..e1cd9ab 100644
--- a/dev-lua/lua-term/lua-term-0.3.ebuild
+++ b/dev-lua/lua-term/lua-term-0.3.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/hoelzro/lua-term/archive/${MY_PV}.tar.gz -> ${P}.tar
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/dkjson/

2017-01-06 Thread Aaron Bauman
commit: 781fd5302e549b5bffb6cdc95a9276b2447e5274
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:48:31 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:51:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=781fd530

dev-lua/dkjson: amd64 stable wrt bug #597644

 dev-lua/dkjson/dkjson-2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/dkjson/dkjson-2.5.ebuild b/dev-lua/dkjson/dkjson-2.5.ebuild
index 20febb1..d019b19 100644
--- a/dev-lua/dkjson/dkjson-2.5.ebuild
+++ b/dev-lua/dkjson/dkjson-2.5.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://dkolf.de/src/dkjson-lua.fsl/tarball/${P}.tar.gz?uuid=release_2_5
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:=



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luasystem/

2017-01-06 Thread Aaron Bauman
commit: 97b808875b4698ea1e260aca7b47069c7af37b7a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:48:03 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:51:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97b80887

dev-lua/luasystem: amd64 stable wrt bug #597644

 dev-lua/luasystem/luasystem-0.2.0_p0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luasystem/luasystem-0.2.0_p0.ebuild 
b/dev-lua/luasystem/luasystem-0.2.0_p0.ebuild
index 1d6ea49..91c83a1 100644
--- a/dev-lua/luasystem/luasystem-0.2.0_p0.ebuild
+++ b/dev-lua/luasystem/luasystem-0.2.0_p0.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/LuaDist2/luasystem/archive/${MY_PV}.tar.gz ->
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/say/

2017-01-06 Thread Aaron Bauman
commit: 1d062aefbb1c8c49afeef1d00a13c950b1e16127
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:48:52 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:51:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d062aef

dev-lua/say: amd64 stable wrt bug #597644

 dev-lua/say/say-1.3_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/say/say-1.3_p1.ebuild b/dev-lua/say/say-1.3_p1.ebuild
index ff54acc..bc6f302 100644
--- a/dev-lua/say/say-1.3_p1.ebuild
+++ b/dev-lua/say/say-1.3_p1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/Olivine-Labs/${PN}/archive/v${MY_PV}.tar.gz -> ${P}.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND=">=dev-lang/lua-5.1:="



[gentoo-commits] repo/gentoo:master commit in: www-client/seamonkey/, www-client/seamonkey/files/

2017-01-06 Thread Lars Wendler
commit: 422df34e40a8ed9f0a17d509a12baa69f3fa7fe5
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan  7 01:22:27 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  7 01:22:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422df34e

www-client/seamonkey: Added a fix for an configure issue with sed-4.3

This fixes Gentoo bug #604696

Furthermore added a patch so the package works reliably with nss-3.28
This fixes Gentoo bug #603622

Both fixes don't affect stable so no revbump necessary.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 www-client/seamonkey/files/firefox-52-curve.patch  | 34 ++
 .../files/seamonkey-2.46-configure_regexp.patch| 14 +
 www-client/seamonkey/seamonkey-2.46.ebuild |  3 +-
 3 files changed, 50 insertions(+), 1 deletion(-)

diff --git a/www-client/seamonkey/files/firefox-52-curve.patch 
b/www-client/seamonkey/files/firefox-52-curve.patch
new file mode 100644
index ..508d580
--- /dev/null
+++ b/www-client/seamonkey/files/firefox-52-curve.patch
@@ -0,0 +1,34 @@
+# HG changeset patch
+# User Franziskus Kiefer 
+# Date 1469717280 -7200
+#  Thu Jul 28 16:48:00 2016 +0200
+# Node ID 95aa61f1e3562e526bf88179d9d078fd90ad1bda
+# Parent  d42aacfe34af25e2f5110e2ca3d24a210eabeb33
+Update keybits in H2, r=mt
+
+MozReview-Commit-ID: 35oWoDMqe1Y
+
+diff --git a/netwerk/protocol/http/Http2Session.cpp 
b/netwerk/protocol/http/Http2Session.cpp
+--- a/netwerk/protocol/http/Http2Session.cpp
 b/netwerk/protocol/http/Http2Session.cpp
+@@ -3544,18 +3544,18 @@ Http2Session::ConfirmTLSProfile()
+ RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
+   }
+ 
+   uint32_t keybits = ssl->GetKEAKeyBits();
+   if (kea == ssl_kea_dh && keybits < 2048) {
+ LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to DH %d < 2048\n",
+   this, keybits));
+ RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
+-  } else if (kea == ssl_kea_ecdh && keybits < 256) { // 256 bits is "security 
level" of 128
+-LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 256\n",
++  } else if (kea == ssl_kea_ecdh && keybits < 224) { // see rfc7540 9.2.1.
++LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 224\n",
+   this, keybits));
+ RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
+   }
+ 
+   int16_t macAlgorithm = ssl->GetMACAlgorithmUsed();
+   LOG3(("Http2Session::ConfirmTLSProfile %p MAC Algortihm (aead==6) %d\n",
+ this, macAlgorithm));
+   if (macAlgorithm != nsISSLSocketControl::SSL_MAC_AEAD) {

diff --git a/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch 
b/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch
new file mode 100644
index ..6928f84
--- /dev/null
+++ b/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch
@@ -0,0 +1,14 @@
+https://bugs.gentoo.org/604696
+https://bugzilla.mozilla.org/show_bug.cgi?id=1329252
+
+--- seamonkey-2.46/mozilla/build/autoconf/icu.m4
 seamonkey-2.46/mozilla/build/autoconf/icu.m4
+@@ -70,7 +70,7 @@
+ fi
+ fi
+ 
+-version=`sed -n 
's/^[[:space:]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
++version=`sed -n 
's/^[[[:space:]]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
+ if test x"$version" = x; then
+AC_MSG_ERROR([cannot determine icu version number from uvernum.h 
header file $lineno])
+ fi

diff --git a/www-client/seamonkey/seamonkey-2.46.ebuild 
b/www-client/seamonkey/seamonkey-2.46.ebuild
index 63d968e..e7c68b2 100644
--- a/www-client/seamonkey/seamonkey-2.46.ebuild
+++ b/www-client/seamonkey/seamonkey-2.46.ebuild
@@ -135,12 +135,13 @@ src_unpack() {
 src_prepare() {
# Apply our patches
eapply "${WORKDIR}"/seamonkey
+   eapply "${FILESDIR}"/${PN}-2.46-configure_regexp.patch
 
# browser patches go here
pushd "${S}"/mozilla &>/dev/null || die
rm -f "${WORKDIR}"/firefox/2000-firefox_gentoo_install_dirs.patch
eapply "${WORKDIR}"/firefox
-   #eapply "${FILESDIR}"/mozilla-svg-crashfix.patch
+   eapply  "${FILESDIR}"/firefox-52-curve.patch
popd &>/dev/null || die
 
# Shell scripts sometimes contain DOS line endings; bug 391889



[gentoo-commits] repo/gentoo:master commit in: www-client/seamonkey/files/, www-client/seamonkey/, media-video/handbrake/

2017-01-06 Thread Lars Wendler
commit: 2a5741dae751f123ee59351567be2c6fbd75903d
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan  7 01:16:04 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  7 01:16:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5741da

Revert "www-client/seamonkey: Added a fix for an configure issue with sed-4.3"

This reverts commit ace7925507486ba6c86397c82f8bd9184599d81d.

Which also changes some other package that had independent changes.

 media-video/handbrake/handbrake-0.10.5-r2.ebuild   |  2 +-
 media-video/handbrake/handbrake-.ebuild|  2 +-
 www-client/seamonkey/files/firefox-52-curve.patch  | 34 --
 .../files/seamonkey-2.46-configure_regexp.patch| 14 -
 www-client/seamonkey/seamonkey-2.46.ebuild |  3 +-
 5 files changed, 3 insertions(+), 52 deletions(-)

diff --git a/media-video/handbrake/handbrake-0.10.5-r2.ebuild 
b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
index 4eb9205..93a0cb9 100644
--- a/media-video/handbrake/handbrake-0.10.5-r2.ebuild
+++ b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
@@ -31,7 +31,7 @@ REQUIRED_USE="^^ ( fdk libav-aac )"
 RDEPEND="
dev-libs/jansson
media-libs/a52dec
-   media-libs/libass:=
+   media-libs/libass
media-libs/libbluray
media-libs/libdvdnav
media-libs/libdvdread

diff --git a/media-video/handbrake/handbrake-.ebuild 
b/media-video/handbrake/handbrake-.ebuild
index 8481f7a..ec778dd 100644
--- a/media-video/handbrake/handbrake-.ebuild
+++ b/media-video/handbrake/handbrake-.ebuild
@@ -31,7 +31,7 @@ REQUIRED_USE="^^ ( fdk libav-aac )"
 RDEPEND="
dev-libs/jansson
media-libs/a52dec
-   media-libs/libass:=
+   media-libs/libass
media-libs/libbluray
media-libs/libdvdnav
media-libs/libdvdread

diff --git a/www-client/seamonkey/files/firefox-52-curve.patch 
b/www-client/seamonkey/files/firefox-52-curve.patch
deleted file mode 100644
index 508d580..
--- a/www-client/seamonkey/files/firefox-52-curve.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-# HG changeset patch
-# User Franziskus Kiefer 
-# Date 1469717280 -7200
-#  Thu Jul 28 16:48:00 2016 +0200
-# Node ID 95aa61f1e3562e526bf88179d9d078fd90ad1bda
-# Parent  d42aacfe34af25e2f5110e2ca3d24a210eabeb33
-Update keybits in H2, r=mt
-
-MozReview-Commit-ID: 35oWoDMqe1Y
-
-diff --git a/netwerk/protocol/http/Http2Session.cpp 
b/netwerk/protocol/http/Http2Session.cpp
 a/netwerk/protocol/http/Http2Session.cpp
-+++ b/netwerk/protocol/http/Http2Session.cpp
-@@ -3544,18 +3544,18 @@ Http2Session::ConfirmTLSProfile()
- RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
-   }
- 
-   uint32_t keybits = ssl->GetKEAKeyBits();
-   if (kea == ssl_kea_dh && keybits < 2048) {
- LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to DH %d < 2048\n",
-   this, keybits));
- RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
--  } else if (kea == ssl_kea_ecdh && keybits < 256) { // 256 bits is "security 
level" of 128
--LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 256\n",
-+  } else if (kea == ssl_kea_ecdh && keybits < 224) { // see rfc7540 9.2.1.
-+LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 224\n",
-   this, keybits));
- RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
-   }
- 
-   int16_t macAlgorithm = ssl->GetMACAlgorithmUsed();
-   LOG3(("Http2Session::ConfirmTLSProfile %p MAC Algortihm (aead==6) %d\n",
- this, macAlgorithm));
-   if (macAlgorithm != nsISSLSocketControl::SSL_MAC_AEAD) {

diff --git a/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch 
b/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch
deleted file mode 100644
index 6928f84..
--- a/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-https://bugs.gentoo.org/604696
-https://bugzilla.mozilla.org/show_bug.cgi?id=1329252
-
 seamonkey-2.46/mozilla/build/autoconf/icu.m4
-+++ seamonkey-2.46/mozilla/build/autoconf/icu.m4
-@@ -70,7 +70,7 @@
- fi
- fi
- 
--version=`sed -n 
's/^[[:space:]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
-+version=`sed -n 
's/^[[[:space:]]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
- if test x"$version" = x; then
-AC_MSG_ERROR([cannot determine icu version number from uvernum.h 
header file $lineno])
- fi

diff --git a/www-client/seamonkey/seamonkey-2.46.ebuild 
b/www-client/seamonkey/seamonkey-2.46.ebuild
index e7c68b2..63d968e 100644
--- a/www-client/seamonkey/seamonkey-2.46.ebuild
+++ b/www-client/seamonkey/seamonkey-2.46.ebuild
@@ -135,13 +135,12 @@ 

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

2017-01-06 Thread Lars Wendler
commit: 5a85eb8175cc0a2cc9d9131b9831d4f306bb029c
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan  7 01:20:09 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  7 01:20:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a85eb81

media-video/handbrake: Added sub-slot dep for media-libs/libass.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-video/handbrake/handbrake-0.10.5-r2.ebuild | 4 ++--
 media-video/handbrake/handbrake-.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-video/handbrake/handbrake-0.10.5-r2.ebuild 
b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
index 93a0cb9..3a5fa1b 100644
--- a/media-video/handbrake/handbrake-0.10.5-r2.ebuild
+++ b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -31,7 +31,7 @@ REQUIRED_USE="^^ ( fdk libav-aac )"
 RDEPEND="
dev-libs/jansson
media-libs/a52dec
-   media-libs/libass
+   media-libs/libass:=
media-libs/libbluray
media-libs/libdvdnav
media-libs/libdvdread

diff --git a/media-video/handbrake/handbrake-.ebuild 
b/media-video/handbrake/handbrake-.ebuild
index ec778dd..e86f0a3 100644
--- a/media-video/handbrake/handbrake-.ebuild
+++ b/media-video/handbrake/handbrake-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -31,7 +31,7 @@ REQUIRED_USE="^^ ( fdk libav-aac )"
 RDEPEND="
dev-libs/jansson
media-libs/a52dec
-   media-libs/libass
+   media-libs/libass:=
media-libs/libbluray
media-libs/libdvdnav
media-libs/libdvdread



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

2017-01-06 Thread Lars Wendler
commit: 8b1f798422139db5d4f5bd1ed20b2d2d2a20f7f1
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Fri Jan  6 09:03:02 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  7 01:10:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b1f7984

media-sound/murmur: remove unused patches

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

 .../files/murmur-1.2.4-ice-3.5.0-compat.patch  | 12 ---
 .../files/murmur-1.2.4-ice-3.5.1-compat.patch  | 25 --
 2 files changed, 37 deletions(-)

diff --git a/media-sound/murmur/files/murmur-1.2.4-ice-3.5.0-compat.patch 
b/media-sound/murmur/files/murmur-1.2.4-ice-3.5.0-compat.patch
deleted file mode 100644
index f7b82ba..
--- a/media-sound/murmur/files/murmur-1.2.4-ice-3.5.0-compat.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur mumble-1.2.4/src/murmur/murmur.pro 
mumble-1.2.4.new/src/murmur/murmur.pro
 mumble-1.2.4/src/murmur/murmur.pro 2013-06-01 23:16:32.0 +0200
-+++ mumble-1.2.4.new/src/murmur/murmur.pro 2013-06-04 21:38:46.323677587 
+0200
-@@ -74,7 +74,7 @@
-   win32 {
-   slice.commands = slice2cpp --checksum -I\"$$ICE_PATH/slice\" 
${QMAKE_FILE_NAME}
-   } else {
--  slice.commands = slice2cpp --checksum -I/usr/local/share/Ice 
-I/usr/share/Ice/slice -I/usr/share/slice -I/usr/share/Ice-3.4.1/slice/ 
-I/usr/share/Ice-3.3.1/slice/ -I/usr/share/Ice-3.4.2/slice/ ${QMAKE_FILE_NAME}
-+  slice.commands = slice2cpp --checksum -I/usr/local/share/Ice 
-I/usr/share/Ice/slice -I/usr/share/slice -I/usr/share/Ice-3.4.1/slice/ 
-I/usr/share/Ice-3.3.1/slice/ -I/usr/share/Ice-3.4.2/slice/ 
-I/usr/share/Ice-3.5.0/slice/ ${QMAKE_FILE_NAME}
-   }
-   slice.input = SLICEFILES
-   slice.CONFIG *= no_link explicit_dependencies

diff --git a/media-sound/murmur/files/murmur-1.2.4-ice-3.5.1-compat.patch 
b/media-sound/murmur/files/murmur-1.2.4-ice-3.5.1-compat.patch
deleted file mode 100644
index c5d7af5..
--- a/media-sound/murmur/files/murmur-1.2.4-ice-3.5.1-compat.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From d2ed7d2d38e4548b23d105c124737a871b1fc72c Mon Sep 17 00:00:00 2001
-From: Timo Gurr 
-Date: Wed, 16 Oct 2013 13:27:19 +0200
-Subject: [PATCH] Update slice path for Ice 3.5.1
-

- src/murmur/murmur.pro | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/murmur/murmur.pro b/src/murmur/murmur.pro
-index adaeb2b..7621699 100644
 a/src/murmur/murmur.pro
-+++ b/src/murmur/murmur.pro
-@@ -77,7 +77,7 @@ ice {
-   win32 {
-   slice.commands = slice2cpp --checksum -I\"$$ICE_PATH/slice\" 
${QMAKE_FILE_NAME}
-   } else {
--  slice.commands = slice2cpp --checksum -I/usr/local/share/Ice 
-I/usr/share/Ice/slice -I/usr/share/slice -I/usr/share/Ice-3.4.1/slice/ 
-I/usr/share/Ice-3.3.1/slice/ -I/usr/share/Ice-3.4.2/slice/ 
-I/usr/share/Ice-3.5.0/slice/ ${QMAKE_FILE_NAME}
-+  slice.commands = slice2cpp --checksum -I/usr/local/share/Ice 
-I/usr/share/Ice/slice -I/usr/share/slice -I/usr/share/Ice-3.4.1/slice/ 
-I/usr/share/Ice-3.3.1/slice/ -I/usr/share/Ice-3.4.2/slice/ 
-I/usr/share/Ice-3.5.0/slice/ -I/usr/share/Ice-3.5.1/slice/ ${QMAKE_FILE_NAME}
-   }
-   slice.input = SLICEFILES
-   slice.CONFIG *= no_link explicit_dependencies
--- 
-1.8.4
-



[gentoo-commits] repo/gentoo:master commit in: www-client/seamonkey/files/, media-video/handbrake/, www-client/seamonkey/

2017-01-06 Thread Lars Wendler
commit: ace7925507486ba6c86397c82f8bd9184599d81d
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan  7 01:09:28 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  7 01:10:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace79255

www-client/seamonkey: Added a fix for an configure issue with sed-4.3

This fixes Gentoo bug #604696

Furthermore added a patch so the package works reliably with nss-3.28
This fixes Gentoo bug #603622

Both fixes don't affect stable so no revbump necessary.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-video/handbrake/handbrake-0.10.5-r2.ebuild   |  2 +-
 media-video/handbrake/handbrake-.ebuild|  2 +-
 www-client/seamonkey/files/firefox-52-curve.patch  | 34 ++
 .../files/seamonkey-2.46-configure_regexp.patch| 14 +
 www-client/seamonkey/seamonkey-2.46.ebuild |  3 +-
 5 files changed, 52 insertions(+), 3 deletions(-)

diff --git a/media-video/handbrake/handbrake-0.10.5-r2.ebuild 
b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
index 93a0cb9..4eb9205 100644
--- a/media-video/handbrake/handbrake-0.10.5-r2.ebuild
+++ b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
@@ -31,7 +31,7 @@ REQUIRED_USE="^^ ( fdk libav-aac )"
 RDEPEND="
dev-libs/jansson
media-libs/a52dec
-   media-libs/libass
+   media-libs/libass:=
media-libs/libbluray
media-libs/libdvdnav
media-libs/libdvdread

diff --git a/media-video/handbrake/handbrake-.ebuild 
b/media-video/handbrake/handbrake-.ebuild
index ec778dd..8481f7a 100644
--- a/media-video/handbrake/handbrake-.ebuild
+++ b/media-video/handbrake/handbrake-.ebuild
@@ -31,7 +31,7 @@ REQUIRED_USE="^^ ( fdk libav-aac )"
 RDEPEND="
dev-libs/jansson
media-libs/a52dec
-   media-libs/libass
+   media-libs/libass:=
media-libs/libbluray
media-libs/libdvdnav
media-libs/libdvdread

diff --git a/www-client/seamonkey/files/firefox-52-curve.patch 
b/www-client/seamonkey/files/firefox-52-curve.patch
new file mode 100644
index ..508d580
--- /dev/null
+++ b/www-client/seamonkey/files/firefox-52-curve.patch
@@ -0,0 +1,34 @@
+# HG changeset patch
+# User Franziskus Kiefer 
+# Date 1469717280 -7200
+#  Thu Jul 28 16:48:00 2016 +0200
+# Node ID 95aa61f1e3562e526bf88179d9d078fd90ad1bda
+# Parent  d42aacfe34af25e2f5110e2ca3d24a210eabeb33
+Update keybits in H2, r=mt
+
+MozReview-Commit-ID: 35oWoDMqe1Y
+
+diff --git a/netwerk/protocol/http/Http2Session.cpp 
b/netwerk/protocol/http/Http2Session.cpp
+--- a/netwerk/protocol/http/Http2Session.cpp
 b/netwerk/protocol/http/Http2Session.cpp
+@@ -3544,18 +3544,18 @@ Http2Session::ConfirmTLSProfile()
+ RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
+   }
+ 
+   uint32_t keybits = ssl->GetKEAKeyBits();
+   if (kea == ssl_kea_dh && keybits < 2048) {
+ LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to DH %d < 2048\n",
+   this, keybits));
+ RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
+-  } else if (kea == ssl_kea_ecdh && keybits < 256) { // 256 bits is "security 
level" of 128
+-LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 256\n",
++  } else if (kea == ssl_kea_ecdh && keybits < 224) { // see rfc7540 9.2.1.
++LOG3(("Http2Session::ConfirmTLSProfile %p FAILED due to ECDH %d < 224\n",
+   this, keybits));
+ RETURN_SESSION_ERROR(this, INADEQUATE_SECURITY);
+   }
+ 
+   int16_t macAlgorithm = ssl->GetMACAlgorithmUsed();
+   LOG3(("Http2Session::ConfirmTLSProfile %p MAC Algortihm (aead==6) %d\n",
+ this, macAlgorithm));
+   if (macAlgorithm != nsISSLSocketControl::SSL_MAC_AEAD) {

diff --git a/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch 
b/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch
new file mode 100644
index ..6928f84
--- /dev/null
+++ b/www-client/seamonkey/files/seamonkey-2.46-configure_regexp.patch
@@ -0,0 +1,14 @@
+https://bugs.gentoo.org/604696
+https://bugzilla.mozilla.org/show_bug.cgi?id=1329252
+
+--- seamonkey-2.46/mozilla/build/autoconf/icu.m4
 seamonkey-2.46/mozilla/build/autoconf/icu.m4
+@@ -70,7 +70,7 @@
+ fi
+ fi
+ 
+-version=`sed -n 
's/^[[:space:]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
++version=`sed -n 
's/^[[[:space:]]]*#[[:space:]]*define[[:space:]][[:space:]]*U_ICU_VERSION_MAJOR_NUM[[:space:]][[:space:]]*\([0-9][0-9]*\)[[:space:]]*$/\1/p'
 "$icudir/common/unicode/uvernum.h"`
+ if test x"$version" = x; then
+AC_MSG_ERROR([cannot determine icu version number from uvernum.h 
header file $lineno])
+ fi

diff --git a/www-client/seamonkey/seamonkey-2.46.ebuild 
b/www-client/seamonkey/seamonkey-2.46.ebuild
index 63d968e..e7c68b2 100644
--- 

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

2017-01-06 Thread Lars Wendler
commit: a04b94bad36efb9025143ac777286f4c007b05b8
Author: Yuri Konotopov  gnome  org>
AuthorDate: Fri Jan  6 09:15:00 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  7 01:10:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a04b94ba

app-emulation/virtualbox-modules: fix build with objtree != srctree

Gentoo-Bug: https://bugs.gentoo.org/show_bug.cgi?id=285866
Closes: https://github.com/gentoo/gentoo/pull/3347

 app-emulation/virtualbox-modules/virtualbox-modules-5.0.16.ebuild | 2 +-
 app-emulation/virtualbox-modules/virtualbox-modules-5.0.30.ebuild | 2 +-
 app-emulation/virtualbox-modules/virtualbox-modules-5.1.10.ebuild | 2 +-
 app-emulation/virtualbox-modules/virtualbox-modules-5.1.12.ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-emulation/virtualbox-modules/virtualbox-modules-5.0.16.ebuild 
b/app-emulation/virtualbox-modules/virtualbox-modules-5.0.16.ebuild
index 76cc8f0..64cfe00 100644
--- a/app-emulation/virtualbox-modules/virtualbox-modules-5.0.16.ebuild
+++ b/app-emulation/virtualbox-modules/virtualbox-modules-5.0.16.ebuild
@@ -35,7 +35,7 @@ pkg_setup() {
 
linux-mod_pkg_setup
 
-   BUILD_PARAMS="KERN_DIR=${KV_DIR} KERNOUT=${KV_OUT_DIR} V=1 
KBUILD_VERBOSE=1"
+   BUILD_PARAMS="KERN_DIR=${KV_DIR} O=${KV_OUT_DIR} V=1 KBUILD_VERBOSE=1"
 }
 
 src_prepare() {

diff --git a/app-emulation/virtualbox-modules/virtualbox-modules-5.0.30.ebuild 
b/app-emulation/virtualbox-modules/virtualbox-modules-5.0.30.ebuild
index 76cc8f0..64cfe00 100644
--- a/app-emulation/virtualbox-modules/virtualbox-modules-5.0.30.ebuild
+++ b/app-emulation/virtualbox-modules/virtualbox-modules-5.0.30.ebuild
@@ -35,7 +35,7 @@ pkg_setup() {
 
linux-mod_pkg_setup
 
-   BUILD_PARAMS="KERN_DIR=${KV_DIR} KERNOUT=${KV_OUT_DIR} V=1 
KBUILD_VERBOSE=1"
+   BUILD_PARAMS="KERN_DIR=${KV_DIR} O=${KV_OUT_DIR} V=1 KBUILD_VERBOSE=1"
 }
 
 src_prepare() {

diff --git a/app-emulation/virtualbox-modules/virtualbox-modules-5.1.10.ebuild 
b/app-emulation/virtualbox-modules/virtualbox-modules-5.1.10.ebuild
index 847e3c7..c3034ec 100644
--- a/app-emulation/virtualbox-modules/virtualbox-modules-5.1.10.ebuild
+++ b/app-emulation/virtualbox-modules/virtualbox-modules-5.1.10.ebuild
@@ -39,7 +39,7 @@ pkg_setup() {
 
linux-mod_pkg_setup
 
-   BUILD_PARAMS="KERN_DIR=${KV_DIR} KERNOUT=${KV_OUT_DIR} V=1 
KBUILD_VERBOSE=1"
+   BUILD_PARAMS="KERN_DIR=${KV_DIR} O=${KV_OUT_DIR} V=1 KBUILD_VERBOSE=1"
 }
 
 src_prepare() {

diff --git a/app-emulation/virtualbox-modules/virtualbox-modules-5.1.12.ebuild 
b/app-emulation/virtualbox-modules/virtualbox-modules-5.1.12.ebuild
index 76cc8f0..64cfe00 100644
--- a/app-emulation/virtualbox-modules/virtualbox-modules-5.1.12.ebuild
+++ b/app-emulation/virtualbox-modules/virtualbox-modules-5.1.12.ebuild
@@ -35,7 +35,7 @@ pkg_setup() {
 
linux-mod_pkg_setup
 
-   BUILD_PARAMS="KERN_DIR=${KV_DIR} KERNOUT=${KV_OUT_DIR} V=1 
KBUILD_VERBOSE=1"
+   BUILD_PARAMS="KERN_DIR=${KV_DIR} O=${KV_OUT_DIR} V=1 KBUILD_VERBOSE=1"
 }
 
 src_prepare() {



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

2017-01-06 Thread Lars Wendler
commit: ec106177de9ba65349574489b6360a16ee868d11
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Jan  7 00:57:26 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Jan  7 01:10:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec106177

media-video/vlc: Added sub-slot dep for media-libs/libass.

Fixed samba dependencies now that samba-3 is gone.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-video/vlc/vlc-2.2.1-r1.ebuild | 7 +++
 media-video/vlc/vlc-2.2.4-r1.ebuild | 7 +++
 media-video/vlc/vlc-2.2.4.ebuild| 7 +++
 media-video/vlc/vlc-2.2..ebuild | 7 +++
 media-video/vlc/vlc-.ebuild | 6 +++---
 5 files changed, 15 insertions(+), 19 deletions(-)

diff --git a/media-video/vlc/vlc-2.2.1-r1.ebuild 
b/media-video/vlc/vlc-2.2.1-r1.ebuild
index 8e73802..a4c25f8 100644
--- a/media-video/vlc/vlc-2.2.1-r1.ebuild
+++ b/media-video/vlc/vlc-2.2.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -93,7 +93,7 @@ RDEPEND="
jack? ( virtual/jack )
jpeg? ( virtual/jpeg:0 )
kate? ( >=media-libs/libkate-0.3:0 )
-   libass? ( >=media-libs/libass-0.9.8:0 media-libs/fontconfig:1.0 
)
+   libass? ( >=media-libs/libass-0.9.8:0= 
media-libs/fontconfig:1.0 )
libcaca? ( >=media-libs/libcaca-0.99_beta14:0 )
libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 
x11-libs/gdk-pixbuf:2 dev-libs/glib:2 )
libsamplerate? ( media-libs/libsamplerate:0 )
@@ -124,8 +124,7 @@ RDEPEND="
!qt5? ( qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) )
qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 
dev-qt/qtx11extras:5 )
rdp? ( >=net-misc/freerdp-1.0.1:0=[client] =net-fs/samba-3.4.6:0[smbclient] 
=net-fs/samba-4.0.0_alpha1:0[client] ) )
+   samba? ( >=net-fs/samba-4.0.0_alpha1:0[client] )
schroedinger? ( >=media-libs/schroedinger-1.0.10:0 )
sdl? ( >=media-libs/libsdl-1.2.10:0
sdl-image? ( >=media-libs/sdl-image-1.2.10:0 
sys-libs/zlib:0 ) )

diff --git a/media-video/vlc/vlc-2.2.4-r1.ebuild 
b/media-video/vlc/vlc-2.2.4-r1.ebuild
index 43aa8cf..c6a3782 100644
--- a/media-video/vlc/vlc-2.2.4-r1.ebuild
+++ b/media-video/vlc/vlc-2.2.4-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -93,7 +93,7 @@ RDEPEND="
jack? ( virtual/jack )
jpeg? ( virtual/jpeg:0 )
kate? ( >=media-libs/libkate-0.3:0 )
-   libass? ( >=media-libs/libass-0.9.8:0 media-libs/fontconfig:1.0 )
+   libass? ( >=media-libs/libass-0.9.8:0= media-libs/fontconfig:1.0 )
libcaca? ( >=media-libs/libcaca-0.99_beta14:0 )
libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 
dev-libs/glib:2 )
libsamplerate? ( media-libs/libsamplerate:0 )
@@ -124,8 +124,7 @@ RDEPEND="
!qt5? ( qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) )
qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 
dev-qt/qtx11extras:5 )
rdp? ( =net-misc/freerdp-1*:0=[client] )
-   samba? ( || ( ( >=net-fs/samba-3.4.6:0[smbclient] 
=net-fs/samba-4.0.0_alpha1:0[client] ) )
+   samba? ( >=net-fs/samba-4.0.0_alpha1:0[client] )
schroedinger? ( >=media-libs/schroedinger-1.0.10:0 )
sdl? ( >=media-libs/libsdl-1.2.10:0
sdl-image? ( >=media-libs/sdl-image-1.2.10:0 sys-libs/zlib:0 ) )

diff --git a/media-video/vlc/vlc-2.2.4.ebuild b/media-video/vlc/vlc-2.2.4.ebuild
index da16f6c..fe3177a 100644
--- a/media-video/vlc/vlc-2.2.4.ebuild
+++ b/media-video/vlc/vlc-2.2.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -93,7 +93,7 @@ RDEPEND="
jack? ( virtual/jack )
jpeg? ( virtual/jpeg:0 )
kate? ( >=media-libs/libkate-0.3:0 )
-   libass? ( >=media-libs/libass-0.9.8:0 media-libs/fontconfig:1.0 )
+   libass? ( >=media-libs/libass-0.9.8:0= media-libs/fontconfig:1.0 )
libcaca? ( >=media-libs/libcaca-0.99_beta14:0 )
libnotify? ( x11-libs/libnotify:0 x11-libs/gtk+:2 x11-libs/gdk-pixbuf:2 
dev-libs/glib:2 )
libsamplerate? ( media-libs/libsamplerate:0 )
@@ -124,8 +124,7 @@ RDEPEND="
!qt5? ( qt4? ( dev-qt/qtcore:4 dev-qt/qtgui:4 ) )
qt5? ( dev-qt/qtcore:5 dev-qt/qtgui:5 dev-qt/qtwidgets:5 
dev-qt/qtx11extras:5 )
rdp? ( >=net-misc/freerdp-1.0.1:0=[client] =net-fs/samba-3.4.6:0[smbclient] 
=net-fs/samba-4.0.0_alpha1:0[client] ) )
+   samba? ( >=net-fs/samba-4.0.0_alpha1:0[client] )
schroedinger? ( 

[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2017-01-06 Thread Aaron Bauman
commit: 63d79775ddb4cf746637b4a802c338797562ddda
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sat Jan  7 01:08:22 2017 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sat Jan  7 01:09:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63d79775

media-tv/kodi: amd64 stable wrt bug #589882

 media-tv/kodi/kodi-16.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-tv/kodi/kodi-16.1.ebuild b/media-tv/kodi/kodi-16.1.ebuild
index 7497055..2a2e228 100644
--- a/media-tv/kodi/kodi-16.1.ebuild
+++ b/media-tv/kodi/kodi-16.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -24,7 +24,7 @@ case ${PV} in
MY_P="${PN}-${MY_PV}"

SRC_URI="https://github.com/xbmc/xbmc/archive/${MY_PV}-${CODENAME}.tar.gz -> 
${MY_P}.tar.gz
!java? ( 
https://github.com/candrews/gentoo-kodi/raw/master/${MY_P}-generated-addons-r1.tar.xz
 )"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 
S=${WORKDIR}/xbmc-${MY_PV}-${CODENAME}
;;



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/pymc3/

2017-01-06 Thread Sebastien Fabbro
commit: 5086e10641adfda004c4906e47c660e4237dcc34
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Thu Jan  5 04:52:53 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Sat Jan  7 01:00:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5086e106

sci-mathematics/pymc3: initial import

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-mathematics/pymc3/Manifest |  1 +
 sci-mathematics/pymc3/metadata.xml | 18 +
 sci-mathematics/pymc3/pymc3-3.0_rc6.ebuild | 60 ++
 3 files changed, 79 insertions(+)

diff --git a/sci-mathematics/pymc3/Manifest b/sci-mathematics/pymc3/Manifest
new file mode 100644
index ..4d99be0
--- /dev/null
+++ b/sci-mathematics/pymc3/Manifest
@@ -0,0 +1 @@
+DIST pymc3-3.0rc6.tar.gz 992525 SHA256 
8df5a190218d3eea2655915847aad9c87ae9719cc507c5c3e24ec4973408051d SHA512 
54534e07f61dbf1b499a2d9e249512d1475074bcf67612b36ab3b72456945eb6af4a450d6739195891f0d398612304861c23fe4a222304e1609240ba348f1792
 WHIRLPOOL 
251d85ac949569000d5b188a40645548389dbed8fd47f9f21ee6c6569805b3f5350185f6f0247022fd08e46fd4f41f137167b9eba3814e43afb88a09623d95f3

diff --git a/sci-mathematics/pymc3/metadata.xml 
b/sci-mathematics/pymc3/metadata.xml
new file mode 100644
index ..d212131
--- /dev/null
+++ b/sci-mathematics/pymc3/metadata.xml
@@ -0,0 +1,18 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+sci-mathemat...@gentoo.org
+Gentoo Mathematics Project
+  
+  
+PyMC3 is a Python package for Bayesian statistical modeling and
+Probabilistic Machine Learning which focuses on advanced Markov
+chain Monte Carlo and variational fitting algorithms. Its
+flexibility and extensibility make it applicable to a large suite
+of problems.
+  
+  
+pymc-devs/pymc3
+  
+

diff --git a/sci-mathematics/pymc3/pymc3-3.0_rc6.ebuild 
b/sci-mathematics/pymc3/pymc3-3.0_rc6.ebuild
new file mode 100644
index ..ea20888
--- /dev/null
+++ b/sci-mathematics/pymc3/pymc3-3.0_rc6.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+inherit distutils-r1 virtualx xdg-utils
+
+MYP=${P/_}
+S="${WORKDIR}/${MYP}"
+
+DESCRIPTION="Bayesian Modeling and Probabilistic Machine Learning in Python"
+HOMEPAGE="http://pymc-devs.github.io/pymc3/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MYP}.tar.gz"
+
+SLOT=0
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+LICENSE="AFL-3.0"
+
+IUSE="test"
+
+RDEPEND="
+   <=dev-python/CommonMark-0.5.4[${PYTHON_USEDEP}]
+   >=dev-python/joblib-0.9[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.11[${PYTHON_USEDEP},lapack]
+   >=dev-python/matplotlib-1.5[${PYTHON_USEDEP}]
+   dev-python/nbsphinx[${PYTHON_USEDEP}]
+   dev-python/numpydoc[${PYTHON_USEDEP}]
+   >=dev-python/pandas-0.18[${PYTHON_USEDEP}]
+   >=dev-python/patsy-0.4[${PYTHON_USEDEP}]
+   >=dev-python/recommonmark-0.4[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   >=dev-python/theano-0.8.2[${PYTHON_USEDEP}]
+   >=dev-python/tqdm-4.8.4[${PYTHON_USEDEP}]
+   >=sci-libs/scipy-0.12[${PYTHON_USEDEP}]
+   virtual/python-enum34[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   )
+"
+
+DOCS=(CHANGELOG.md  CONTRIBUTING.md RELEASE-NOTES.md
+ CONDUCT.md GOVERNANCE.md README.rst)
+
+python_prepare_all() {
+   xdg_environment_reset
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   echo 'backend: agg' > matplotlibrc || die
+   virtx esetup.py test
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/llvmlite/files/, dev-python/llvmlite/

2017-01-06 Thread Sebastien Fabbro
commit: df761291cf90f6b009a0753fae0e1470cdc1ad27
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Sat Jan  7 01:00:00 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Sat Jan  7 01:00:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df761291

dev-python/llvmlite: version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/llvmlite/Manifest   |  1 +
 .../files/llvmlite-0.15.0-use-system-six.patch | 50 ++
 dev-python/llvmlite/llvmlite-0.15.0.ebuild | 46 
 dev-python/llvmlite/metadata.xml   |  7 +++
 4 files changed, 104 insertions(+)

diff --git a/dev-python/llvmlite/Manifest b/dev-python/llvmlite/Manifest
index cf44e12..82580d7 100644
--- a/dev-python/llvmlite/Manifest
+++ b/dev-python/llvmlite/Manifest
@@ -2,6 +2,7 @@ DIST llvmlite-0.10.0.tar.gz 92000 SHA256 
b6b55e19ae2be38770299e9c73e6ae07d770e4f
 DIST llvmlite-0.11.0.tar.gz 87648 SHA256 
93cfee5bb9e4d16e42d8986b480191a4c1f149a5818c654d58ae142449f382bd SHA512 
6bd801dc01b7949a8206234076579cb9a41b6803039759c16cc346054b9d7e9c6bdb73b77f861564ea23e92cc01da2036bdba5ad5fcfc54e9265181318cc8005
 WHIRLPOOL 
65387cf24ebb2ce9e257a4a8ce16914a108cd4c2548f44d99d326c43c058441a7ef21aa37279adf6c93fb27fb9378b987794e9efc81175d84943c41b04382e24
 DIST llvmlite-0.12.1.tar.gz 88271 SHA256 
3ce71beebd4cbc7a49abe4eadfc99725477fd43caeb7405650ebb746c7a1d0df SHA512 
f5b448f0ae3d84a0d3438dd7bb4c7f87055e551191c4fefb6282539029d25e8c5e1cca9dec5b90c0d99ec0a720719133b2ccf8b9551aa818c3b4626cc522d8d9
 WHIRLPOOL 
82b3e60520eda83d0e4082d75ca377bd34c9baf7c67688814e6dd3a7ae687b1eacf7ddd9758254e0c61f39ea5af77c847a15f1f8071cf030d9dd07bb2b1020a5
 DIST llvmlite-0.13.0.tar.gz 92200 SHA256 
f852be3391acb2e77ef484c5d0ff90e7cf2821dcf9575e358a1f08c274c582eb SHA512 
0a416bc1cda0f2d773ceda602ab4fa87a308e3941316f1c66520cb08448c088383b92bcef4459211666573d2e251e4e23e4647091045fd7d8269dbe8ca912f3f
 WHIRLPOOL 
edd26c3dfeb95d050f408f7fcc5e2bf5195712eff12220c022b0af00770b2276998853b8877b4c484452e9eb80df987fce548663f39285d1b030d6010164f338
+DIST llvmlite-0.15.0.tar.gz 95009 SHA256 
c855835537eda61f3a0d19aedc44f006d5084a2d322aee8ffa87aa06bb800dc4 SHA512 
db49ed82eae989e7e7abbd72f1c1da5129887f7fce447c684085f98ae2aaf47d24e73b79c5916802edbb8dc55dda92efeac833cb903300560b1aa89f2aeb5dca
 WHIRLPOOL 
66336fa610ae2706c9281f5e7febc8e76e0cacf8cbc151952f6978adb104bcc6b98ac65d9661c7289f258e1e63a1e6e4a139f93efc45cdfd2a26f50c35bc03fb
 DIST llvmlite-0.5.0.tar.gz 74434 SHA256 
616b0f16366dd1eec197b7067f4618c6c5183db852e7f4203862c0343ebdd31c SHA512 
aec69c841a8166896a6632a4204a53df1f19a42514c335a3dc21a9c7e7610c110a5d00b293d7013dfe497cc7c1e3ffbaedf0a80ee16970f5f33f0043bacd6aec
 WHIRLPOOL 
737a53017e160a04f371e87abf24eb923f17b101d3b2394c276ae0d47787c617aa496428b268ee86301a2ed33a0a93b0b5d3fbc0fb293e295d38742d8a5b98e8
 DIST llvmlite-0.6.0.tar.gz 74834 SHA256 
0ed6bbf850578dc99c06be3060a1067ea4993474392137760d1c020f7188a236 SHA512 
7db3f774d7cff903e4a5a476eee3efd1c6f107443433ab47543eae4e28918a385534225a23e0cd000cfab65b5ebeb0a5c38d6b963090ee0943c65fb61879fc7b
 WHIRLPOOL 
3bed14fef8defac3f217b9ecdb5a2b4d1c68cd9e19078292cc792f375345a87b4daf63ee9c6429954d5156e7c73b5ea85b3bff54c60f78fbc982067411f2eb40
 DIST llvmlite-0.8.0.tar.gz 80497 SHA256 
a10d8d5e597c6a54ec418baddd31a51a0b7937a895d75b240d890aead946081c SHA512 
d960dd2635d670b3ed2a79f81e5c3ada4fe0a03ac39e8f94a16a83fb62013ecbbce1a430ac48c8e6abd8fa34c37938d4ec7a0b949bd8c490f391c8dc29ce221c
 WHIRLPOOL 
569cf60ae6b6efe63aa1af322d53cb983a4d29550557ba465ff26dbcc49bab598365cc592931cabca5f2e99b979ebb4f101d698a1c457a1ef1fa11eb89184c31

diff --git a/dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch 
b/dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch
new file mode 100644
index ..f7cfeae
--- /dev/null
+++ b/dev-python/llvmlite/files/llvmlite-0.15.0-use-system-six.patch
@@ -0,0 +1,50 @@
+Description: use packaged six instead of stripped module
+Author: Daniel Stender 
+Forwarded: not-needed
+Last-Update: 2016-21-06
+
+--- a/llvmlite/binding/ffi.py
 b/llvmlite/binding/ffi.py
+@@ -3,7 +3,7 @@ import os
+ 
+ from .common import _decode_string, _is_shutting_down
+ from ..utils import get_library_name
+-from ..six import PY2
++from six import PY2
+ 
+ 
+ def _make_opaque_ref(name):
+--- a/llvmlite/ir/values.py
 b/llvmlite/ir/values.py
+@@ -7,7 +7,7 @@ from __future__ import print_function, absolute_import
+ 
+ import string
+ 
+-from .. import six
++import six
+ from . import types, _utils
+ from ._utils import _StrCaching, _StringReferenceCaching, _HasMetadata
+ 
+--- a/llvmlite/tests/customize.py
 b/llvmlite/tests/customize.py
+@@ -12,7 +12,7 @@ import unittest
+ import warnings
+ from unittest import result, runner, signals
+ 
+-from ..six import StringIO
++from six import StringIO
+ 
+ 
+ # "unittest.main" is really the TestProgram class!
+--- 

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

2017-01-06 Thread Mike Pagano
commit: 979aec964b11a2ada4d4819a8c20462df7b267eb
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Jan  7 00:49:00 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Jan  7 00:49:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=979aec96

sys-kernel/gentoo-sources: Linux patch 4.9.1. Update gentoo kconfig patch 
adding CHECKPOINT_RESTORE for GENTOO_LINUX_INIT_SYSTEMD. See bug #598623

Package-Manager: portage-2.3.0

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 13823a6..257d8c7 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -71,6 +71,9 @@ DIST genpatches-4.8-18.extras.tar.xz 17316 SHA256 
024b8833b1f259ccb528cd3a844b53
 DIST genpatches-4.9-1.base.tar.xz 3052 SHA256 
2ea85fcf27c22c0f278e8e08be467fcec012d337c31292e11de9408701beb56c SHA512 
be04e4d0cfbcf09c9a3c2bd13a272675fe89a83201239da519df157d19c7796bca89b8325828e012d4f221cf053c1f660a1d3c9278bbd818f5724b054d557882
 WHIRLPOOL 
cd0b44ea97f46e85c94a70f8ff37449a0c8f9f6b162062c392b56e7d4e40ddefdc4bc75a133cfba6325b410ec15eea266c1ebc9bc43e341bad92aff5651f3ee9
 DIST genpatches-4.9-1.experimental.tar.xz 4272 SHA256 
2ba64defab0be2447c1d262846cb67271b9851c49c8f92b2cdd76ea066881ccd SHA512 
877510ef0038368f3149939101f68c4fee243e9c2225712d9e9b3e8b54d4ed58bdd8b0c10bdf1442042c6aa8e8f2a3685c5f7f1ecdd9c45ae983f16e5824c4e3
 WHIRLPOOL 
9d6acf966b09987fd19f6556798e37637cdef6990eeac517bc9f0690dd16fd22b86296a550a32e88581099b619738bc94f385c6a21baa905d1de341e8bb5591b
 DIST genpatches-4.9-1.extras.tar.xz 17236 SHA256 
e93b547700d725407f490aa7a1c28dc0a01f0a8176ee53ba082c84273624b88d SHA512 
a1bf0ff7c65a8b06cb4a5fbe58e4f74d8a93b1aff07174960c337df4541feabb7b2b80768e71214414b8c2541f7145411f3e2a28778d655867964bd8f3b1ad87
 WHIRLPOOL 
a9302ff0c11319c7147b4613de8a29b16b9694af5f9ff5791a6ccfe2f9f65b3b1baaea92038a3c104f5e1f9bf8362c52f3a66d7172f0dd4acdcc8cd2465e0977
+DIST genpatches-4.9-2.base.tar.xz 34336 SHA256 
20a7220b7ff138aca5511e3d561675fa1ffe065040e78309ad334a6d9131fba0 SHA512 
7ab88a6ed574b9f130bfbc256206a5c6f9cf916ea9cfe56e245b98b24cb80604ec4f917130f67c53a3043659744bb35445e94f8f60a1b5927b43736d7b5fbddd
 WHIRLPOOL 
961dfbbf13f3f88342fac86cf3730f4a511bbb98c3436fb14fa2aed888179ca4a1b787228dba15ed5a74ac6a78a3086344f7c60dffafdb1fd12b4d6ab468b46c
+DIST genpatches-4.9-2.experimental.tar.xz 4272 SHA256 
360ffa93d43c82514367d79aedb66a56e46ce97a187c82eb523bc071189cf644 SHA512 
fc5ac477c4dc7e7a5a99a2417fc050560bbc8d8311f534dd81a8e227bdd1678a033a3bdb8759d787bd74ec597298c6a9cdd1e17ad7ce34eb84a1eb5c32f1f7b5
 WHIRLPOOL 
12d356e48cfbca9385134ec20f39b06ecec2cfc52d4968efbdd5f407976523d0969040ce19e9472721c1b6863114547daffdcde9688f798d4ae0c970cdc5564b
+DIST genpatches-4.9-2.extras.tar.xz 17312 SHA256 
c3d5b924d96f613b39161f9177de61c839f0e1142e4000ad7f3ca293c07c1a4a SHA512 
1d8e24f4dc7cadf9edfca41afaf48147c3947101bd45a9cd52b4275869e70ae6c736758c228bb760b355befd49cc7973b1488bf212cf7e501ec11ba91378c947
 WHIRLPOOL 
f5519bfc35e74a35238e5e7a4fc962e89a796e7ad82f32883467c37a882c1700c8bd4140eef8f6d0ffe6f2f0578713d25d2789fd5fe059e4bd32c6b7cf04e49e
 DIST linux-3.10.tar.xz 73175088 SHA256 
df27fa92d27a9c410bfe6c4a89f141638500d7eadcca5cce578954efc2ad3544 SHA512 
5fb109fcbd59bf3dffc911b853894f0a84afa75151368f783a1252c5ff60c7a1504de216c0012be446df983e2dea400ad8eeed3ce04f24dc61d0ef76c174dc35
 WHIRLPOOL 
e7c0ccc2231e430b831218fc66f1940d095d2d5447d391329c6a7373d4a1d16708f64778b32e4847802ee2dae4fcf7cb67a1238fd4eb204fd0c4bce2d8134053
 DIST linux-3.12.tar.xz 76384600 SHA256 
2e120ec7fde19fa51dc6b6cc11c81860a0775defcad5a5bf910ed9a50e845a02 SHA512 
4ba5797e0772726d05c9f2eee66dc6dc2a5033c749ef44764c805a83da739ed5d0c6443b76785e38fe1ef74cc7ade787e48144faed0cfcb6f124f05248c700ff
 WHIRLPOOL 
a40195f6b53ba3440cf90a44495f6a59670f750851d1518e2bdfe3b949f0e898d1df5d37e271c31c555087026ddb6cc2c9109b22b9639e3222735e6f650a1417
 DIST linux-3.14.tar.xz 78399152 SHA256 
61558aa490855f42b6340d1a1596be47454909629327c49a5e4e10268065dffa SHA512 
5730d83a7a81134c1e77c0bf89e42dee4f8251ad56c1ac2be20c59e26fdfaa7bea55f277e7af156b637f22e1584914a46089af85039177cb43485089c74ac26e
 WHIRLPOOL 
5ad07b78c362ba0b21c50b4abb99407cae06bd08576f3fd8f36047b01409eba096263208020da3dcad4977eefc61d66502276754097bc127635df1d7a5817d41

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.1.ebuild
new file mode 100644
index ..07eac82
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 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="2"
+
+inherit kernel-2
+detect_version
+detect_arch
+

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

2017-01-06 Thread Michael Orlitzky
commit: 58b6120f1688e2e809e117036dffb69965c23a0c
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sat Jan  7 00:37:04 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Jan  7 00:46:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b6120f

profiles: mask dev-php/Savant* for removal.

Gentoo-Bug: 604884

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

diff --git a/profiles/package.mask b/profiles/package.mask
index c42a73c..aa68761 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,14 @@
 
 #--- END OF EXAMPLES ---
 
+# Michael Orlitzky  (06 Jan 2017)
+# Dead templating projects, you should move to something
+# like dev-php/smarty or dev-php/twig instead.
+# Masked for removal in 30 days. Bug 604884.
+dev-php/Savant2
+dev-php/Savant3
+dev-php/Savant3-Plugin-Form
+
 # Mart Raudsepp  (06 Jan 2017)
 # No releases of this API version since April 2001, abandoned
 # in favour of gtk+:2 for 14 years.



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

2017-01-06 Thread Robin H. Johnson
commit: 5c38f0da839a3acec372559f3fdc9c2708c2232c
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sat Jan  7 00:37:02 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Jan  7 00:37:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c38f0da

app-emulation/ganeti: now with QEMU Guest Agent support (merged upstream for 
2.16, not yet released).

Package-Manager: portage-2.3.2

 ...st_agent-QEMU-Guest-Agent-sup.stable-2.15.patch | 122 +
 ...st_agent-QEMU-Guest-Agent-sup.stable-2.16.patch | 122 +
 ...st_agent-QEMU-Guest-Agent-sup.stable-2.17.patch | 122 +
 ...i-2.16.0_rc1.ebuild => ganeti-2.15.2-r6.ebuild} |  26 +++--
 app-emulation/ganeti/ganeti-2.16.0_rc1.ebuild  |  10 +-
 app-emulation/ganeti/ganeti-2.17.0_beta1.ebuild|  10 +-
 app-emulation/ganeti/metadata.xml  |   1 +
 7 files changed, 401 insertions(+), 12 deletions(-)

diff --git 
a/app-emulation/ganeti/files/0001-kvm-use_guest_agent-QEMU-Guest-Agent-sup.stable-2.15.patch
 
b/app-emulation/ganeti/files/0001-kvm-use_guest_agent-QEMU-Guest-Agent-sup.stable-2.15.patch
new file mode 100644
index ..460636f
--- /dev/null
+++ 
b/app-emulation/ganeti/files/0001-kvm-use_guest_agent-QEMU-Guest-Agent-sup.stable-2.15.patch
@@ -0,0 +1,122 @@
+From c3697936405ed8c95b674a7d412886e364306f5f Mon Sep 17 00:00:00 2001
+Message-Id: 

+From: "Robin H. Johnson" 
+Date: Thu, 29 Sep 2016 08:57:28 -0700
+Subject: [PATCH-2.15] kvm: use_guest_agent: QEMU Guest Agent support
+
+Implement the QEMU Guest Agent sockets, so that code/scripts on the
+hypervisors can communicate with guest operating systems easily.
+
+Signed-off-by: Robin H. Johnson 
+---
+ lib/hypervisor/hv_kvm/__init__.py | 23 +++
+ man/gnt-instance.rst  |  7 +++
+ src/Ganeti/Constants.hs   |  5 +
+ 3 files changed, 35 insertions(+)
+
+diff --git a/lib/hypervisor/hv_kvm/__init__.py 
b/lib/hypervisor/hv_kvm/__init__.py
+index cd29baa38..89bc18b85 100644
+--- a/lib/hypervisor/hv_kvm/__init__.py
 b/lib/hypervisor/hv_kvm/__init__.py
+@@ -351,6 +351,7 @@ class KVMHypervisor(hv_base.BaseHypervisor):
+ constants.HV_MIGRATION_BANDWIDTH: hv_base.REQ_NONNEGATIVE_INT_CHECK,
+ constants.HV_MIGRATION_DOWNTIME: hv_base.REQ_NONNEGATIVE_INT_CHECK,
+ constants.HV_MIGRATION_MODE: hv_base.MIGRATION_MODE_CHECK,
++constants.HV_USE_GUEST_AGENT: hv_base.NO_CHECK,
+ constants.HV_USE_LOCALTIME: hv_base.NO_CHECK,
+ constants.HV_DISK_CACHE:
+   hv_base.ParamInSet(True, constants.HT_VALID_CACHE_TYPES),
+@@ -581,6 +582,13 @@ class KVMHypervisor(hv_base.BaseHypervisor):
+ """
+ return utils.PathJoin(cls._CTRL_DIR, "%s.qmp" % instance_name)
+ 
++  @classmethod
++  def _InstanceQemuGuestAgentMonitor(cls, instance_name):
++"""Returns the instance serial QEMU Guest Agent socket name
++
++"""
++return utils.PathJoin(cls._CTRL_DIR, "%s.qga" % instance_name)
++
+   @classmethod
+   def _InstanceKvmdMonitor(cls, instance_name):
+ """Returns the instance kvm daemon socket name
+@@ -667,6 +675,7 @@ class KVMHypervisor(hv_base.BaseHypervisor):
+ utils.RemoveFile(cls._InstanceMonitor(instance_name))
+ utils.RemoveFile(cls._InstanceSerial(instance_name))
+ utils.RemoveFile(cls._InstanceQmpMonitor(instance_name))
++utils.RemoveFile(cls._InstanceQemuGuestAgentMonitor(instance_name))
+ utils.RemoveFile(cls._InstanceKVMRuntime(instance_name))
+ utils.RemoveFile(cls._InstanceKeymapFile(instance_name))
+ uid_file = cls._InstanceUidFile(instance_name)
+@@ -1376,6 +1385,20 @@ class KVMHypervisor(hv_base.BaseHypervisor):
+ if self._UUID_RE.search(kvmhelp):
+   kvm_cmd.extend(["-uuid", instance.uuid])
+ 
++# Add guest agent socket
++if hvp[constants.HV_USE_GUEST_AGENT]:
++  qga_addr = utils.GetFreeSlot(pci_reservations, reserve=True)
++  qga_pci_info = "bus=%s,addr=%s" % ('pci.0', hex(qga_addr))
++  qga_path = self._InstanceQemuGuestAgentMonitor(instance.name)
++  logging.info("KVM: Guest Agent available at %s", qga_path)
++  # The 'qga0' identified can change, but the 'org.qemu.guest_agent.0' 
string is
++  # the default expected by the Guest Agent.
++  kvm_cmd.extend([
++"-chardev", "socket,path=%s,server,nowait,id=qga0" % qga_path,
++"-device", "virtio-serial,id=qga0,%s" % qga_pci_info,
++"-device", "virtserialport,chardev=qga0,name=org.qemu.guest_agent.0",
++])
++
+ if hvp[constants.HV_KVM_EXTRA]:
+   kvm_cmd.extend(hvp[constants.HV_KVM_EXTRA].split(" "))
+ 
+diff --git a/man/gnt-instance.rst b/man/gnt-instance.rst
+index a29fd7972..433b1f3b1 100644
+--- a/man/gnt-instance.rst
 b/man/gnt-instance.rst
+@@ -526,6 +526,13 @@ viridian
+ viridian (Hyper-V) for this instance. The default is 

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

2017-01-06 Thread Robin H. Johnson
commit: de6a4b551f385b86b80187415a9716fbe2903a2c
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jan  6 20:43:12 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sat Jan  7 00:37:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de6a4b55

app-emulation/ganeti: cleanup unused patches.

Package-Manager: portage-2.3.2

 .../ganeti/files/ganeti-2.11-daemon-util.patch | 38 
 .../ganeti/files/ganeti-2.11-qemu-enable-kvm.patch | 12 
 .../ganeti/files/ganeti-2.11-regex-builtin.patch   | 15 -
 .../files/ganeti-2.11-start-stop-daemon-args.patch | 39 -
 .../ganeti/files/ganeti-2.11-useradd.patch | 17 --
 app-emulation/ganeti/files/ganeti-2.12-tests.patch | 59 ---
 .../ganeti/files/ganeti-2.12.3-daemon-util.patch   | 37 
 .../ganeti/files/ganeti-2.13-daemon-util.patch | 46 ---
 .../ganeti-2.13-disable-usersgroups-test.patch | 68 --
 .../files/ganeti-2.13-regex-pcre-builtin.patch | 13 -
 .../ganeti/files/ganeti-2.7-fix-tests.patch| 30 --
 11 files changed, 374 deletions(-)

diff --git a/app-emulation/ganeti/files/ganeti-2.11-daemon-util.patch 
b/app-emulation/ganeti/files/ganeti-2.11-daemon-util.patch
deleted file mode 100644
index 09b10cd..
--- a/app-emulation/ganeti/files/ganeti-2.11-daemon-util.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-diff --git a/daemons/daemon-util.in b/daemons/daemon-util.in
-index 01f2cbb..de4e396 100644
 a/daemons/daemon-util.in
-+++ b/daemons/daemon-util.in
-@@ -22,18 +22,25 @@ set -e
- 
- @SHELL_ENV_INIT@
- 
--readonly defaults_file="$SYSCONFDIR/default/ganeti"
-+readonly defaults_file="$SYSCONFDIR/conf.d/ganeti"
- 
- # This is a list of all daemons and the order in which they're started. The
- # order is important as there are dependencies between them. On shutdown,
- # they're stopped in reverse order.
--DAEMONS=(
--  ganeti-noded
--  ganeti-masterd
--  ganeti-rapi
--  ganeti-luxid
--  ganeti-kvmd
--  )
-+
-+DAEMONS=( ganeti-noded  ) 
-+
-+_is_master() {
-+[ -z "${ganeti_master}" ] && ganeti_master="$(gnt-cluster getmaster)"
-+[ -z "${local_hostname}" ] && local_hostname="$(hostname -f)"
-+[ "${ganeti_master}" = "${local_hostname}" ]
-+}
-+
-+if _is_master; then
-+  DAEMONS+=( ganeti-masterd ganeti-rapi ganeti-luxid )
-+fi
-+
-+DAEMONS+=( ganeti-kvmd )
- 
- _confd_enabled() {
-   [[ "@CUSTOM_ENABLE_CONFD@" == True ]]

diff --git a/app-emulation/ganeti/files/ganeti-2.11-qemu-enable-kvm.patch 
b/app-emulation/ganeti/files/ganeti-2.11-qemu-enable-kvm.patch
deleted file mode 100644
index f2cce0c..
--- a/app-emulation/ganeti/files/ganeti-2.11-qemu-enable-kvm.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff --git a/lib/hypervisor/hv_kvm.py b/lib/hypervisor/hv_kvm.py
-index b61be65..100aafd 100644
 a/lib/hypervisor/hv_kvm.py
-+++ b/lib/hypervisor/hv_kvm.py
-@@ -1380,6 +1380,7 @@ class KVMHypervisor(hv_base.BaseHypervisor):
- kvm = hvp[constants.HV_KVM_PATH]
- kvm_cmd = [kvm]
- # used just by the vnc server, if enabled
-+kvm_cmd.extend(["-enable-kvm"])
- kvm_cmd.extend(["-name", instance.name])
- kvm_cmd.extend(["-m", instance.beparams[constants.BE_MAXMEM]])
- 

diff --git a/app-emulation/ganeti/files/ganeti-2.11-regex-builtin.patch 
b/app-emulation/ganeti/files/ganeti-2.11-regex-builtin.patch
deleted file mode 100644
index 08ef377..
--- a/app-emulation/ganeti/files/ganeti-2.11-regex-builtin.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index d70db62..f94043f 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -612,8 +612,8 @@ CONFD_PKG=
- # if a new confd dependency is needed, add it here like:
- # AC_GHC_PKG_CHECK([somepkg], [], [HS_NODEV=1; CONFD_PKG="$CONFD_PKG 
somepkg"])
- HS_REGEX_PCRE=-DNO_REGEX_PCRE
--AC_GHC_PKG_CHECK([regex-pcre], [HS_REGEX_PCRE=],
-- [HS_NODEV=1; CONFD_PKG="$CONFD_PKG regex-pcre"])
-+AC_GHC_PKG_CHECK([regex-pcre-builtin], [HS_REGEX_PCRE=],
-+ [HS_NODEV=1; CONFD_PKG="$CONFD_PKG regex-pcre-builtin"])
- 
- has_confd=False
- if test "$enable_confd" != no; then

diff --git 
a/app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch 
b/app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch
deleted file mode 100644
index 6f90233..
--- a/app-emulation/ganeti/files/ganeti-2.11-start-stop-daemon-args.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-diff --git a/daemons/daemon-util.in b/daemons/daemon-util.in
-index 4d1d7c5..3deeab7 100644
 a/daemons/daemon-util.in
-+++ b/daemons/daemon-util.in
-@@ -246,10 +246,11 @@ start() {
-   @PKGLIBDIR@/ensure-dirs
- 
-   if type -p start-stop-daemon >/dev/null; then
--start-stop-daemon --start --quiet --oknodo \
-+start-stop-daemon --start --quiet \
-   --pidfile $pidfile \
--  --startas $daemonexec \
--  --chuid $usergroup \
-+  --exec $daemonexec \
-+  

[gentoo-commits] proj/linux-patches: New tag: 4.9-2

2017-01-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Jan  7 00:27:36 2017 +

New tag: 4.9-2




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

2017-01-06 Thread Mike Pagano
commit: 2dce0a2afe9e6daec9f2b78115d2f0d1527516e9
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Jan  7 00:13:58 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Jan  7 00:14:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2dce0a2a

sys-kernel/gentoo-sources: Linux patch 4.8.16

Package-Manager: portage-2.3.0

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 498ed18..13823a6 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -65,6 +65,9 @@ DIST genpatches-4.8-16.extras.tar.xz 17300 SHA256 
6e5e1a38ec23e71e8b4a2c385c1963
 DIST genpatches-4.8-17.base.tar.xz 276508 SHA256 
fc31b2404fda311360da1520669c9d0a687d7efbcd3f52fec3c7b7f88f356816 SHA512 
e927e780d6fc36f4b3739e9ea7cee65a41ff90fc29358c3ee353693f3328f03192a0a50cd444fa06ce41783b67228e82eabb6eea86cf6fe5725f1ee0db05c7df
 WHIRLPOOL 
25e9520feb937ae7aa3f747f334d898d465e89a56c4f25de28b390ba7de74b1b66257ef4a20c4e176c7e34096819f6b214fa2c1b69b0680b1a8ed97638d113dd
 DIST genpatches-4.8-17.experimental.tar.xz 92032 SHA256 
523533d957a94eae5af2fc7d1d6bf9bbf785a2203e507cf737cb60fb10a880ef SHA512 
c8d13c2efd01fa2c19a2da6ee00359297af8a887fa8a50008d785d330e62c13cf50f0522e6568b10dbf29a5a469c8c1e5d2b0c595e56886b8bfb1367f0cc4316
 WHIRLPOOL 
d109e84848c22d4687c0f8b123dd2eb72468a668dbba8a7e1100a6d7bbc6137b63eeb223498c13b098d2d8fe16ab5d5cacb5bc9f44a839dcd3c1605dea40752f
 DIST genpatches-4.8-17.extras.tar.xz 17304 SHA256 
3857eccf543621d0812dc19e5f127d5d38e2c0ef1d104be350fc63b6afb59d16 SHA512 
5b05f764fb8ae7683ddf0e7b6b1425bd624421f36ffd829df1e2b6601834f614814d5163356086e190dbb4e9b456984f9ab3d7facbb88ae31d9a1a27c174a43c
 WHIRLPOOL 
95f8a2293e5170e8c3e04b2cfc5be7acaff1bd0eb50f2d68abb826411136b82db668124dd6e292ade471bba182779caa586d0a74a32020fd16457eadbd062ceb
+DIST genpatches-4.8-18.base.tar.xz 304664 SHA256 
89b161b2e98ac81afd9c865c4fa87cf203164b3c977c48cfc7fc5337b00b2061 SHA512 
5cfc10e59a5adc7a14dce3ae6dc2ab8006d8d2bba7201a8c531c05c5f77e9fa3debbb796f7cdf2047028db43316e2e25f4817e9358524b925488b563514f127e
 WHIRLPOOL 
b0786badbade32dd777d929fc64791c672eb56a4ae5a81fb862c3308c294cb806d25f92f1e0228be6a5e29e5e049b25b6b1c470b3b1617de1d57567a9f5b14de
+DIST genpatches-4.8-18.experimental.tar.xz 91988 SHA256 
716edcee0038610c0737d8c2c0262ce2a4cdf252f3b89030b42e68ec31c2e5d0 SHA512 
f23e94f4b23573f81372723d2475a6d342d9e6e367f7a809aa68032e62c25000fdb33afa29d989bb4bda619202ed818c5acbb9e3d823f62a68a0a2c9185af3fd
 WHIRLPOOL 
21dc1f68ecc3f65e0ffd7a2a744c4b718c64665f00208d32b2304c6a03aa2f3fcf988b4a39d407160846610a134538d849c268a887b380c0ef85675db3981e84
+DIST genpatches-4.8-18.extras.tar.xz 17316 SHA256 
024b8833b1f259ccb528cd3a844b53afb337a1e346ac0709cf3e0049d265c99c SHA512 
4b16f41859f7fd75185eba1f2135c10e7cc0033e41260fe63ff154a4183adb840131dee691a8e020d7191147b30bdb3f80824224ef9d511ddc4e2cc619d258d1
 WHIRLPOOL 
2b067b5d06729ca902e17711c6e954769c848e0be34d9da41732e55b6d80b4cff5177e7f0a4a9fcdbcf509bc6af4c235c9a457c53a8dbe9f97a4dcf278633691
 DIST genpatches-4.9-1.base.tar.xz 3052 SHA256 
2ea85fcf27c22c0f278e8e08be467fcec012d337c31292e11de9408701beb56c SHA512 
be04e4d0cfbcf09c9a3c2bd13a272675fe89a83201239da519df157d19c7796bca89b8325828e012d4f221cf053c1f660a1d3c9278bbd818f5724b054d557882
 WHIRLPOOL 
cd0b44ea97f46e85c94a70f8ff37449a0c8f9f6b162062c392b56e7d4e40ddefdc4bc75a133cfba6325b410ec15eea266c1ebc9bc43e341bad92aff5651f3ee9
 DIST genpatches-4.9-1.experimental.tar.xz 4272 SHA256 
2ba64defab0be2447c1d262846cb67271b9851c49c8f92b2cdd76ea066881ccd SHA512 
877510ef0038368f3149939101f68c4fee243e9c2225712d9e9b3e8b54d4ed58bdd8b0c10bdf1442042c6aa8e8f2a3685c5f7f1ecdd9c45ae983f16e5824c4e3
 WHIRLPOOL 
9d6acf966b09987fd19f6556798e37637cdef6990eeac517bc9f0690dd16fd22b86296a550a32e88581099b619738bc94f385c6a21baa905d1de341e8bb5591b
 DIST genpatches-4.9-1.extras.tar.xz 17236 SHA256 
e93b547700d725407f490aa7a1c28dc0a01f0a8176ee53ba082c84273624b88d SHA512 
a1bf0ff7c65a8b06cb4a5fbe58e4f74d8a93b1aff07174960c337df4541feabb7b2b80768e71214414b8c2541f7145411f3e2a28778d655867964bd8f3b1ad87
 WHIRLPOOL 
a9302ff0c11319c7147b4613de8a29b16b9694af5f9ff5791a6ccfe2f9f65b3b1baaea92038a3c104f5e1f9bf8362c52f3a66d7172f0dd4acdcc8cd2465e0977

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.8.16.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.8.16.ebuild
new file mode 100644
index ..0ad0732
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.8.16.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 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="18"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc 

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

2017-01-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 23:53:20 2017 +

New tag: 4.8-18




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

2017-01-06 Thread Mike Pagano
commit: 5a0bfade39e12ebb3a33a6868f6ebfe07297d6c6
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jan  6 23:11:42 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 23:42:50 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=5a0bfade

Linux patch 4.8.16

 _README |4 +
 1015_linux-4.8.16.patch | 3559 +++
 2 files changed, 3563 insertions(+)

diff --git a/_README b/_README
index 37d0ff1..e7fac7c 100644
--- a/_README
+++ b/_README
@@ -103,6 +103,10 @@ Patch:  1014_linux-4.8.15.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.8.15
 
+Patch:  1015_linux-4.8.16.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.8.16
+
 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/1015_linux-4.8.16.patch b/1015_linux-4.8.16.patch
new file mode 100644
index 000..9977d7a
--- /dev/null
+++ b/1015_linux-4.8.16.patch
@@ -0,0 +1,3559 @@
+diff --git a/Makefile b/Makefile
+index c7f0e798ca34..50f68648a79a 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 8
+-SUBLEVEL = 15
++SUBLEVEL = 16
+ EXTRAVERSION =
+ NAME = Psychotic Stoned Sheep
+ 
+diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c
+index f193414d0f6f..4986dc0c1dff 100644
+--- a/arch/arm/xen/enlighten.c
 b/arch/arm/xen/enlighten.c
+@@ -372,8 +372,7 @@ static int __init xen_guest_init(void)
+* for secondary CPUs as they are brought up.
+* For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
+*/
+-  xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
+- sizeof(struct vcpu_info));
++  xen_vcpu_info = alloc_percpu(struct vcpu_info);
+   if (xen_vcpu_info == NULL)
+   return -ENOMEM;
+ 
+diff --git a/arch/arm64/include/asm/acpi.h b/arch/arm64/include/asm/acpi.h
+index 5420cb0fcb3e..e517088d635f 100644
+--- a/arch/arm64/include/asm/acpi.h
 b/arch/arm64/include/asm/acpi.h
+@@ -12,7 +12,7 @@
+ #ifndef _ASM_ACPI_H
+ #define _ASM_ACPI_H
+ 
+-#include 
++#include 
+ #include 
+ 
+ #include 
+@@ -32,7 +32,11 @@
+ static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
+   acpi_size size)
+ {
+-  if (!page_is_ram(phys >> PAGE_SHIFT))
++  /*
++   * EFI's reserve_regions() call adds memory with the WB attribute
++   * to memblock via early_init_dt_add_memory_arch().
++   */
++  if (!memblock_is_memory(phys))
+   return ioremap(phys, size);
+ 
+   return ioremap_cache(phys, size);
+diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c
+index 536dce22fe76..514b4e3ba029 100644
+--- a/arch/arm64/kernel/setup.c
 b/arch/arm64/kernel/setup.c
+@@ -206,10 +206,15 @@ static void __init request_standard_resources(void)
+ 
+   for_each_memblock(memory, region) {
+   res = alloc_bootmem_low(sizeof(*res));
+-  res->name  = "System RAM";
++  if (memblock_is_nomap(region)) {
++  res->name  = "reserved";
++  res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
++  } else {
++  res->name  = "System RAM";
++  res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
++  }
+   res->start = 
__pfn_to_phys(memblock_region_memory_base_pfn(region));
+   res->end = 
__pfn_to_phys(memblock_region_memory_end_pfn(region)) - 1;
+-  res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
+ 
+   request_resource(_resource, res);
+ 
+diff --git a/block/blk-mq.c b/block/blk-mq.c
+index c207fa9870eb..494e0d800976 100644
+--- a/block/blk-mq.c
 b/block/blk-mq.c
+@@ -1371,9 +1371,9 @@ static blk_qc_t blk_mq_make_request(struct request_queue 
*q, struct bio *bio)
+   blk_mq_put_ctx(data.ctx);
+   if (!old_rq)
+   goto done;
+-  if (!blk_mq_direct_issue_request(old_rq, ))
+-  goto done;
+-  blk_mq_insert_request(old_rq, false, true, true);
++  if (test_bit(BLK_MQ_S_STOPPED, >state) ||
++  blk_mq_direct_issue_request(old_rq, ) != 0)
++  blk_mq_insert_request(old_rq, false, true, true);
+   goto done;
+   }
+ 
+diff --git a/drivers/base/core.c b/drivers/base/core.c
+index 0a8bdade53f2..88df65d1e6f6 100644
+--- a/drivers/base/core.c
 b/drivers/base/core.c
+@@ -836,11 +836,29 @@ static struct kobject *get_device_parent(struct device 
*dev,
+   return NULL;
+ }
+ 
++static inline bool live_in_glue_dir(struct kobject *kobj,
++  struct device *dev)
++{
++  if (!kobj || !dev->class ||
++  kobj->kset != >class->p->glue_dirs)

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

2017-01-06 Thread Mike Pagano
commit: 02c4e64ebc62e190c26111e1f95c5af0d3fe1ce4
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jan  6 23:38:52 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 23:39:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c4e64e

sys-kernel/gentoo-sources: Linux patch 4.4.40

Package-Manager: portage-2.3.0

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index aa90c34..498ed18 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -56,6 +56,9 @@ DIST genpatches-4.4-30.extras.tar.xz 16368 SHA256 
5ae402de247df572e8ea70d8ef2380
 DIST genpatches-4.4-43.base.tar.xz 912072 SHA256 
f7c9220f08385e8bdcd3cc42974581c259209aaf61fab1c3535e71a37e7fcb6c SHA512 
3e84797279583fbe5e3031bef8c3a734363c2aa41ddac266d51871d7885293c1dd63a64f4cfbf0c06cb35420c3f66e84fb93dc5d1a4ea2cf0c63db43605054aa
 WHIRLPOOL 
7b4eb188985fecbb1561cda8e2a78cd01f3695b198efa288482d432392b3a3d5c60fb6c5d6a70566ae4e929793ff967fef56fdadbdcab22426b328463756345d
 DIST genpatches-4.4-43.experimental.tar.xz 87780 SHA256 
534a3f534991a30ed827439a943507610af2a3063e1fdf04a312e53ffc2cc120 SHA512 
37944015c17ca4ffbc09532980c78011b4e18cab22a83e28a052ba5708c9a560220ad84a445469165a4cc1e955c60c323e3cb52c3cdbee0d9c9bb1766c8638d9
 WHIRLPOOL 
0f52497cf2ba2d58c2cd7e84787df2bafb2cfa470c36421d72c4269c9f7f2bc856c611dbcc60e825ed5bebddd1de04adb1fe15893e7a1fb6fc9409e1b16ea34a
 DIST genpatches-4.4-43.extras.tar.xz 16420 SHA256 
edccb4cc994f3a80f3c8e01a0824038b2e0fa38572833027f6161908f2eeb739 SHA512 
776451ecdbab4c28697549536224824c41e4d903bc3ea6fe5eee9d8b747bbac7343b56daddd7ab23bd2d35482e31e0f411dd60fa2b174112bee2fb75b07641c0
 WHIRLPOOL 
59ccb8d8254c1dab01c47bd6c312f442eefea753d1e7424b7b052ae6d652c2be076380406e6250e536cac49233c665955dbca085cc6b12276b13537cc86e69c7
+DIST genpatches-4.4-44.base.tar.xz 927972 SHA256 
56038667600add1d103062e9b58e678d342656fecab3ed484e10a1e3acbb4fee SHA512 
e0b25e6334f1dc846ae324c43776910e99e64ff930fc414c7eb8fc963be023c7f72616c7945bf5a41a8c262651ac2c987242d499a2268ddb8df8dc00a0412f91
 WHIRLPOOL 
4ce426d9e2eb6468a4fe3ecc616fabc19566504dc86adb414d20f31f38cddeb866ec5cd34a91a4e83c4147e99b8fa3217c8d26a1282660ee48ef767c97c44252
+DIST genpatches-4.4-44.experimental.tar.xz 87760 SHA256 
abbb727773db035c9669cd936cf232bb172f793ed9ef65316c691242821d1fc0 SHA512 
626972caed99a662aa4d7c63749a24369a631e572d6ae45bcf9b792349877898b65cd39d43120c347a32057558e083f8dd9bfa0e04b2ca7218833b90b9e582d2
 WHIRLPOOL 
60658f3c37fc6f5c093936cfafc9466df087153e6b87c2c4cb152c0265f2596c0bf2aea7c97017f9123e15127583b4142ea1374d04f5e01c4fd4e20c7898a41c
+DIST genpatches-4.4-44.extras.tar.xz 16420 SHA256 
0026bbb0aa294b80aeb492d01b26661d9b5fa1de5ea0434068990eec0a253adb SHA512 
4edede74d68e912a1c494aa080cd6c03001d436b6c81d3860a13eb3429a8e7419996ef6c3f4097c92cf78c640a5ed7ba1c3951e88a4c55f515fc3d0b6fa84dfe
 WHIRLPOOL 
b0ca5e879d03f202d0b3c69f17bcf577bb1c278d52b4cc6e024a3c259c8c0420c6089dc5950ee03e27d7aac825b72986f2a5b231763e55f262159b0848c228cf
 DIST genpatches-4.8-16.base.tar.xz 268656 SHA256 
1436e623bd2296cfe1976e307cadbba1e9b2ec9d50211c7f9e832fc1b38f9e0a SHA512 
f992bc50f706c2fcdc68c731dfc3965ba11c13426ce1437dd3277b82d1824681ebbd07a6350e13be453e5154f75e291129d09bdc0ed1ed0457b290cbf5aaa999
 WHIRLPOOL 
7eca460ed8a6c53f425f4ba1adc869beda4eee64847b4fe5c0576f90440d8a53f3ba98334f7170e83cb975525b091df88ea8e7cc9099ee7edac2e30e93b089b0
 DIST genpatches-4.8-16.experimental.tar.xz 91992 SHA256 
38bbf0e911602baed1ef7f749626d4aa156f7c1100503388f7ef1c670b21c657 SHA512 
94719f52e70753ce6cf60286fb03689be798fb77dc73e900bebdfc67170fc2154ba3432ae757b9f12c5e2ab5cac38b627c099dda4fe565a9a5b1297ddea18d48
 WHIRLPOOL 
6197840e8eb9e22fec0d3810b1e33d9fd4ea861105166b8a649cd03debdb17b4d00aa4c595412f5b99d04c1fc70df30d83c7df0f3eddc4de4b4cfc96ee733386
 DIST genpatches-4.8-16.extras.tar.xz 17300 SHA256 
6e5e1a38ec23e71e8b4a2c385c1963fc5fb7d94efe36d19695c9eda769c8d9cb SHA512 
0dfed59c281ea1ddd2074bfe3d68a37afc31e44bab721cb3aced63267bc5a74d4cb60c77d15abb2dd0c57f49f65e742f9fe400d2bc3f709ec3ac598195730332
 WHIRLPOOL 
6683ae446c09b92afe09d07581ac7dcfb112a29d311a4d4ca657ac4a86a56a4817331da3e78d3d1683cded44194fd380835b7d8184e6adbc6203570472417096

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.40.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.40.ebuild
new file mode 100644
index ..cf8c56d
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.40.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2017 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="44"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Log/

2017-01-06 Thread Michael Orlitzky
commit: 4dafb32f0dd5fe1d124fa369f81f19d346b86b49
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 23:01:25 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 23:32:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dafb32f

dev-php/PEAR-Log: remove unused version 1.12.8.

Package-Manager: portage-2.3.0

 dev-php/PEAR-Log/Manifest   |  1 -
 dev-php/PEAR-Log/PEAR-Log-1.12.8.ebuild | 17 -
 2 files changed, 18 deletions(-)

diff --git a/dev-php/PEAR-Log/Manifest b/dev-php/PEAR-Log/Manifest
index fce8606..048a8a9 100644
--- a/dev-php/PEAR-Log/Manifest
+++ b/dev-php/PEAR-Log/Manifest
@@ -1,3 +1,2 @@
 DIST Log-1.12.7.tgz 46898 SHA256 
7db9d8dae364e3cde16de2087a371eb862479f33d32631db947620b20d2306c0 SHA512 
1c1bed9bb73a729ff8a48ed1ae0aca63384c6a14217a0aca6f9be886c1b477a07bc38a3a169e1c32430efb1b63c265fd705929e4ee5e18444f8c518a13997fc7
 WHIRLPOOL 
d5011b48f3b1880764b2d3b1f1deeec5cf061f3e75639ab7e790e87f8551bb0b36d3ed63f33f1483314dd056e2280f8690ee92290ef11ca3f2e9d2de3cf85e7e
-DIST Log-1.12.8.tgz 46725 SHA256 
2f6c27ea105b401bda3b31f2a50a20cf54ca6eda175f045db1b4251b073799b3 SHA512 
ab382fe684818ed6cc5f14a4ee5df8b89cf6f9b6e110368be5b4986fe8013e185b37f9385190a85f6ff22ac3191853a96914643d3a6e4c02535927e40df7a1fe
 WHIRLPOOL 
cd904c2d5180953cecafdbb73d15ef64473245e001a087cdf351cb8062f5ca296f8c704ff2b1f6a80eff1b17f2271fec6f4eea1970b3a55df1414859176b7180
 DIST Log-1.13.0.tgz 46718 SHA256 
9ad581d0be9b249c0066db393d936dd861925ced7e635064fee1ccdf2c6fa109 SHA512 
be80bb0c15b594e178ec7cc871c6e84c7d32398843167e67699e55d3ab1fcf0ae86baa84100c8f3115da01da343c91614744245f95320dc499b85f4c6646a81c
 WHIRLPOOL 
ae809147f4b1ce35f2e0b20b84cf133e8443aaee1ad83b8880ce4ff61d77d9fc93f473b3fb9fd85cac028ccbd8c1a6d83ce26ed6d8a9c475b648109228c0857d

diff --git a/dev-php/PEAR-Log/PEAR-Log-1.12.8.ebuild 
b/dev-php/PEAR-Log/PEAR-Log-1.12.8.ebuild
deleted file mode 100644
index e097304..
--- a/dev-php/PEAR-Log/PEAR-Log-1.12.8.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit php-pear-r1
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-
-DESCRIPTION="The Log framework provides an abstracted logging system"
-LICENSE="MIT"
-SLOT="0"
-IUSE="minimal"
-
-RDEPEND="!minimal? ( >=dev-php/PEAR-DB-1.7.6-r1
-   dev-php/PEAR-Mail
-   >=dev-php/PEAR-MDB2-2.0.0_rc1 )"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Log/

2017-01-06 Thread Michael Orlitzky
commit: d37ea2e6e234c812cec5cb46bb98adf739004fef
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 23:30:31 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 23:32:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d37ea2e6

dev-php/PEAR-Log: new version 1.13.1 replacing version 1.13.0.

This new version drops the php-pear-r1 eclass, and fixes a few
bugs. The documentation is now installed in the correct location, and
the examples are behind a USE flag. The "minimal" USE flag is gone,
because detection of features is automagic, and we don't want to
surpise users when they suddenly disappear. The test suite now also
works.

Package-Manager: portage-2.3.0

 dev-php/PEAR-Log/Manifest   |  2 +-
 dev-php/PEAR-Log/PEAR-Log-1.13.0.ebuild | 17 
 dev-php/PEAR-Log/PEAR-Log-1.13.1.ebuild | 48 +
 3 files changed, 49 insertions(+), 18 deletions(-)

diff --git a/dev-php/PEAR-Log/Manifest b/dev-php/PEAR-Log/Manifest
index 048a8a9..d5fd8f0 100644
--- a/dev-php/PEAR-Log/Manifest
+++ b/dev-php/PEAR-Log/Manifest
@@ -1,2 +1,2 @@
 DIST Log-1.12.7.tgz 46898 SHA256 
7db9d8dae364e3cde16de2087a371eb862479f33d32631db947620b20d2306c0 SHA512 
1c1bed9bb73a729ff8a48ed1ae0aca63384c6a14217a0aca6f9be886c1b477a07bc38a3a169e1c32430efb1b63c265fd705929e4ee5e18444f8c518a13997fc7
 WHIRLPOOL 
d5011b48f3b1880764b2d3b1f1deeec5cf061f3e75639ab7e790e87f8551bb0b36d3ed63f33f1483314dd056e2280f8690ee92290ef11ca3f2e9d2de3cf85e7e
-DIST Log-1.13.0.tgz 46718 SHA256 
9ad581d0be9b249c0066db393d936dd861925ced7e635064fee1ccdf2c6fa109 SHA512 
be80bb0c15b594e178ec7cc871c6e84c7d32398843167e67699e55d3ab1fcf0ae86baa84100c8f3115da01da343c91614744245f95320dc499b85f4c6646a81c
 WHIRLPOOL 
ae809147f4b1ce35f2e0b20b84cf133e8443aaee1ad83b8880ce4ff61d77d9fc93f473b3fb9fd85cac028ccbd8c1a6d83ce26ed6d8a9c475b648109228c0857d
+DIST Log-1.13.1.tgz 46764 SHA256 
2206a34816dc6b800bdfeef1dbe4ee340067c6b12b035d19db777be9325765e0 SHA512 
246510b7dbff4dc9f9cdd951d76baf2dd377e30ffde6d38cadac10091dcb92f8095406edb6d8a87ebe2330d514ce99f355f84ebfe57cd8a3f3babc316995148a
 WHIRLPOOL 
fe5ed54ca52e8e1fcad406067200c556ec8bfadf7c66eec352bd0d1af5637fecec06ee00c62c06afefaa0b8207f128b163af97ef07abd25b8c67799d67044158

diff --git a/dev-php/PEAR-Log/PEAR-Log-1.13.0.ebuild 
b/dev-php/PEAR-Log/PEAR-Log-1.13.0.ebuild
deleted file mode 100644
index 254e240..
--- a/dev-php/PEAR-Log/PEAR-Log-1.13.0.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=6
-inherit php-pear-r1
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-
-DESCRIPTION="The Log framework provides an abstracted logging system"
-LICENSE="MIT"
-SLOT="0"
-IUSE="minimal"
-
-RDEPEND="!minimal? ( >=dev-php/PEAR-DB-1.7.6-r1
-   dev-php/PEAR-Mail
-   >=dev-php/PEAR-MDB2-2.0.0_rc1 )"

diff --git a/dev-php/PEAR-Log/PEAR-Log-1.13.1.ebuild 
b/dev-php/PEAR-Log/PEAR-Log-1.13.1.ebuild
new file mode 100644
index ..cfb9386
--- /dev/null
+++ b/dev-php/PEAR-Log/PEAR-Log-1.13.1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN="${PN/PEAR-/}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="The Log framework provides an abstracted logging system"
+HOMEPAGE="http://pear.php.net/package/${MY_PN};
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
+IUSE="examples test"
+
+# The DB, Mail, and MDB2 dependencies are technically optional, but
+# automagic. To avoid surprises, we require them unconditionally.
+RDEPEND="dev-lang/php:*
+   dev-php/PEAR-PEAR
+   dev-php/PEAR-DB
+   dev-php/PEAR-Mail
+   dev-php/PEAR-MDB2"
+DEPEND="test? ( ${RDEPEND} )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+   dodoc docs/guide.txt misc/log.sql
+   use examples && dodoc -r examples
+
+   # I don't like installing "Log.php" right at the top-level, but any
+   # packages depending on us will expect to find it there and not as
+   # e.g. Log/Log.php.
+   insinto "/usr/share/php/"
+   doins Log.php
+   doins -r Log
+}
+
+src_test() {
+   # Requires the "pear" executable from dev-php/PEAR-PEAR.
+   pear run-tests tests || die
+
+   # The command succeeds regardless of whether or not the test suite
+   # passed, but this file is only written when there was a failure.
+   [[ -f run-tests.log ]] && die "test suite failed"
+}



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

2017-01-06 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 23:22:44 2017 +

New tag: 4.4-44




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

2017-01-06 Thread Mike Pagano
commit: 5f1a44e6d0b4658480e2b6a9e7c3413c8168c121
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jan  6 23:13:11 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 23:13:11 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=5f1a44e6

Linux patch 4.4.40

 _README |4 +
 1039_linux-4.4.40.patch | 2245 +++
 2 files changed, 2249 insertions(+)

diff --git a/_README b/_README
index 27da679..1f42635 100644
--- a/_README
+++ b/_README
@@ -199,6 +199,10 @@ Patch:  1038_linux-4.4.39.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.4.39
 
+Patch:  1039_linux-4.4.40.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.4.40
+
 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/1039_linux-4.4.40.patch b/1039_linux-4.4.40.patch
new file mode 100644
index 000..ca0c7b8
--- /dev/null
+++ b/1039_linux-4.4.40.patch
@@ -0,0 +1,2245 @@
+diff --git a/Makefile b/Makefile
+index 88d26a632bef..5b5937780408 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 4
+-SUBLEVEL = 39
++SUBLEVEL = 40
+ EXTRAVERSION =
+ NAME = Blurry Fish Butt
+ 
+diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c
+index fc7ea529f462..52c8c1f642fe 100644
+--- a/arch/arm/xen/enlighten.c
 b/arch/arm/xen/enlighten.c
+@@ -239,8 +239,7 @@ static int __init xen_guest_init(void)
+* for secondary CPUs as they are brought up.
+* For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
+*/
+-  xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
+- sizeof(struct vcpu_info));
++  xen_vcpu_info = alloc_percpu(struct vcpu_info);
+   if (xen_vcpu_info == NULL)
+   return -ENOMEM;
+ 
+diff --git a/block/blk-mq.c b/block/blk-mq.c
+index c3e461ec40e4..9f99a01b00e8 100644
+--- a/block/blk-mq.c
 b/block/blk-mq.c
+@@ -1313,9 +1313,9 @@ static blk_qc_t blk_mq_make_request(struct request_queue 
*q, struct bio *bio)
+   blk_mq_put_ctx(data.ctx);
+   if (!old_rq)
+   goto done;
+-  if (!blk_mq_direct_issue_request(old_rq, ))
+-  goto done;
+-  blk_mq_insert_request(old_rq, false, true, true);
++  if (test_bit(BLK_MQ_S_STOPPED, >state) ||
++  blk_mq_direct_issue_request(old_rq, ) != 0)
++  blk_mq_insert_request(old_rq, false, true, true);
+   goto done;
+   }
+ 
+diff --git a/drivers/base/core.c b/drivers/base/core.c
+index b7d56c5ea3c6..f18856f5954b 100644
+--- a/drivers/base/core.c
 b/drivers/base/core.c
+@@ -836,11 +836,29 @@ static struct kobject *get_device_parent(struct device 
*dev,
+   return NULL;
+ }
+ 
++static inline bool live_in_glue_dir(struct kobject *kobj,
++  struct device *dev)
++{
++  if (!kobj || !dev->class ||
++  kobj->kset != >class->p->glue_dirs)
++  return false;
++  return true;
++}
++
++static inline struct kobject *get_glue_dir(struct device *dev)
++{
++  return dev->kobj.parent;
++}
++
++/*
++ * make sure cleaning up dir as the last step, we need to make
++ * sure .release handler of kobject is run with holding the
++ * global lock
++ */
+ static void cleanup_glue_dir(struct device *dev, struct kobject *glue_dir)
+ {
+   /* see if we live in a "glue" directory */
+-  if (!glue_dir || !dev->class ||
+-  glue_dir->kset != >class->p->glue_dirs)
++  if (!live_in_glue_dir(glue_dir, dev))
+   return;
+ 
+   mutex_lock(_mutex);
+@@ -848,11 +866,6 @@ static void cleanup_glue_dir(struct device *dev, struct 
kobject *glue_dir)
+   mutex_unlock(_mutex);
+ }
+ 
+-static void cleanup_device_parent(struct device *dev)
+-{
+-  cleanup_glue_dir(dev, dev->kobj.parent);
+-}
+-
+ static int device_add_class_symlinks(struct device *dev)
+ {
+   struct device_node *of_node = dev_of_node(dev);
+@@ -1028,6 +1041,7 @@ int device_add(struct device *dev)
+   struct kobject *kobj;
+   struct class_interface *class_intf;
+   int error = -EINVAL;
++  struct kobject *glue_dir = NULL;
+ 
+   dev = get_device(dev);
+   if (!dev)
+@@ -1072,8 +1086,10 @@ int device_add(struct device *dev)
+   /* first, register with generic layer. */
+   /* we require the name to be set before, and pass NULL */
+   error = kobject_add(>kobj, dev->kobj.parent, NULL);
+-  if (error)
++  if (error) {
++  glue_dir = get_glue_dir(dev);
+   goto Error;
++  }
+ 
+   /* notify platform of device entry */
+   if (platform_notify)
+@@ -1154,9 +1170,10 @@ done:
+   device_remove_file(dev, _attr_uevent);
+  attrError:
+   kobject_uevent(>kobj, 

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

2017-01-06 Thread Mike Pagano
commit: 81befa1208eed1da45b7a12153560ab1c0c184ce
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jan  6 23:11:42 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 23:11:42 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=81befa12

Linux patch 4.8.15

 _README |4 +
 1015_linux-4.8.16.patch | 3559 +++
 2 files changed, 3563 insertions(+)

diff --git a/_README b/_README
index 37d0ff1..e7fac7c 100644
--- a/_README
+++ b/_README
@@ -103,6 +103,10 @@ Patch:  1014_linux-4.8.15.patch
 From:   http://www.kernel.org
 Desc:   Linux 4.8.15
 
+Patch:  1015_linux-4.8.16.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.8.16
+
 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/1015_linux-4.8.16.patch b/1015_linux-4.8.16.patch
new file mode 100644
index 000..9977d7a
--- /dev/null
+++ b/1015_linux-4.8.16.patch
@@ -0,0 +1,3559 @@
+diff --git a/Makefile b/Makefile
+index c7f0e798ca34..50f68648a79a 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 8
+-SUBLEVEL = 15
++SUBLEVEL = 16
+ EXTRAVERSION =
+ NAME = Psychotic Stoned Sheep
+ 
+diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c
+index f193414d0f6f..4986dc0c1dff 100644
+--- a/arch/arm/xen/enlighten.c
 b/arch/arm/xen/enlighten.c
+@@ -372,8 +372,7 @@ static int __init xen_guest_init(void)
+* for secondary CPUs as they are brought up.
+* For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
+*/
+-  xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
+- sizeof(struct vcpu_info));
++  xen_vcpu_info = alloc_percpu(struct vcpu_info);
+   if (xen_vcpu_info == NULL)
+   return -ENOMEM;
+ 
+diff --git a/arch/arm64/include/asm/acpi.h b/arch/arm64/include/asm/acpi.h
+index 5420cb0fcb3e..e517088d635f 100644
+--- a/arch/arm64/include/asm/acpi.h
 b/arch/arm64/include/asm/acpi.h
+@@ -12,7 +12,7 @@
+ #ifndef _ASM_ACPI_H
+ #define _ASM_ACPI_H
+ 
+-#include 
++#include 
+ #include 
+ 
+ #include 
+@@ -32,7 +32,11 @@
+ static inline void __iomem *acpi_os_ioremap(acpi_physical_address phys,
+   acpi_size size)
+ {
+-  if (!page_is_ram(phys >> PAGE_SHIFT))
++  /*
++   * EFI's reserve_regions() call adds memory with the WB attribute
++   * to memblock via early_init_dt_add_memory_arch().
++   */
++  if (!memblock_is_memory(phys))
+   return ioremap(phys, size);
+ 
+   return ioremap_cache(phys, size);
+diff --git a/arch/arm64/kernel/setup.c b/arch/arm64/kernel/setup.c
+index 536dce22fe76..514b4e3ba029 100644
+--- a/arch/arm64/kernel/setup.c
 b/arch/arm64/kernel/setup.c
+@@ -206,10 +206,15 @@ static void __init request_standard_resources(void)
+ 
+   for_each_memblock(memory, region) {
+   res = alloc_bootmem_low(sizeof(*res));
+-  res->name  = "System RAM";
++  if (memblock_is_nomap(region)) {
++  res->name  = "reserved";
++  res->flags = IORESOURCE_MEM | IORESOURCE_BUSY;
++  } else {
++  res->name  = "System RAM";
++  res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
++  }
+   res->start = 
__pfn_to_phys(memblock_region_memory_base_pfn(region));
+   res->end = 
__pfn_to_phys(memblock_region_memory_end_pfn(region)) - 1;
+-  res->flags = IORESOURCE_SYSTEM_RAM | IORESOURCE_BUSY;
+ 
+   request_resource(_resource, res);
+ 
+diff --git a/block/blk-mq.c b/block/blk-mq.c
+index c207fa9870eb..494e0d800976 100644
+--- a/block/blk-mq.c
 b/block/blk-mq.c
+@@ -1371,9 +1371,9 @@ static blk_qc_t blk_mq_make_request(struct request_queue 
*q, struct bio *bio)
+   blk_mq_put_ctx(data.ctx);
+   if (!old_rq)
+   goto done;
+-  if (!blk_mq_direct_issue_request(old_rq, ))
+-  goto done;
+-  blk_mq_insert_request(old_rq, false, true, true);
++  if (test_bit(BLK_MQ_S_STOPPED, >state) ||
++  blk_mq_direct_issue_request(old_rq, ) != 0)
++  blk_mq_insert_request(old_rq, false, true, true);
+   goto done;
+   }
+ 
+diff --git a/drivers/base/core.c b/drivers/base/core.c
+index 0a8bdade53f2..88df65d1e6f6 100644
+--- a/drivers/base/core.c
 b/drivers/base/core.c
+@@ -836,11 +836,29 @@ static struct kobject *get_device_parent(struct device 
*dev,
+   return NULL;
+ }
+ 
++static inline bool live_in_glue_dir(struct kobject *kobj,
++  struct device *dev)
++{
++  if (!kobj || !dev->class ||
++  kobj->kset != >class->p->glue_dirs)

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

2017-01-06 Thread Mike Pagano
commit: 81c098a57de042aecbc16572bf83a53d9913b2d0
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jan  6 23:09:41 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 23:09:41 2017 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=81c098a5

Linux patch 4.9.1

 _README|4 +
 1000_linux-4.9.1.patch | 3324 
 2 files changed, 3328 insertions(+)

diff --git a/_README b/_README
index 646b303..c419de2 100644
--- a/_README
+++ b/_README
@@ -43,6 +43,10 @@ EXPERIMENTAL
 Individual Patch Descriptions:
 --
 
+Patch:  1000_linux-4.9.1.patch
+From:   http://www.kernel.org
+Desc:   Linux 4.9.1
+
 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/1000_linux-4.9.1.patch b/1000_linux-4.9.1.patch
new file mode 100644
index 000..ad23816
--- /dev/null
+++ b/1000_linux-4.9.1.patch
@@ -0,0 +1,3324 @@
+diff --git a/Makefile b/Makefile
+index b1037774e8e8..ab3cd5128889 100644
+--- a/Makefile
 b/Makefile
+@@ -1,6 +1,6 @@
+ VERSION = 4
+ PATCHLEVEL = 9
+-SUBLEVEL = 0
++SUBLEVEL = 1
+ EXTRAVERSION =
+ NAME = Roaring Lionus
+ 
+diff --git a/arch/alpha/kernel/ptrace.c b/arch/alpha/kernel/ptrace.c
+index 940dfb406591..04abdec7f496 100644
+--- a/arch/alpha/kernel/ptrace.c
 b/arch/alpha/kernel/ptrace.c
+@@ -283,7 +283,7 @@ long arch_ptrace(struct task_struct *child, long request,
+   /* When I and D space are separate, these will need to be fixed.  */
+   case PTRACE_PEEKTEXT: /* read word at location addr. */
+   case PTRACE_PEEKDATA:
+-  copied = access_process_vm(child, addr, , sizeof(tmp),
++  copied = ptrace_access_vm(child, addr, , sizeof(tmp),
+   FOLL_FORCE);
+   ret = -EIO;
+   if (copied != sizeof(tmp))
+diff --git a/arch/arm/xen/enlighten.c b/arch/arm/xen/enlighten.c
+index f193414d0f6f..4986dc0c1dff 100644
+--- a/arch/arm/xen/enlighten.c
 b/arch/arm/xen/enlighten.c
+@@ -372,8 +372,7 @@ static int __init xen_guest_init(void)
+* for secondary CPUs as they are brought up.
+* For uniformity we use VCPUOP_register_vcpu_info even on cpu0.
+*/
+-  xen_vcpu_info = __alloc_percpu(sizeof(struct vcpu_info),
+- sizeof(struct vcpu_info));
++  xen_vcpu_info = alloc_percpu(struct vcpu_info);
+   if (xen_vcpu_info == NULL)
+   return -ENOMEM;
+ 
+diff --git a/arch/blackfin/kernel/ptrace.c b/arch/blackfin/kernel/ptrace.c
+index 8d79286ee4e8..360d99645163 100644
+--- a/arch/blackfin/kernel/ptrace.c
 b/arch/blackfin/kernel/ptrace.c
+@@ -270,7 +270,7 @@ long arch_ptrace(struct task_struct *child, long request,
+   switch (bfin_mem_access_type(addr, to_copy)) {
+   case BFIN_MEM_ACCESS_CORE:
+   case BFIN_MEM_ACCESS_CORE_ONLY:
+-  copied = access_process_vm(child, addr, ,
++  copied = ptrace_access_vm(child, addr, ,
+  to_copy, FOLL_FORCE);
+   if (copied)
+   break;
+@@ -323,7 +323,7 @@ long arch_ptrace(struct task_struct *child, long request,
+   switch (bfin_mem_access_type(addr, to_copy)) {
+   case BFIN_MEM_ACCESS_CORE:
+   case BFIN_MEM_ACCESS_CORE_ONLY:
+-  copied = access_process_vm(child, addr, ,
++  copied = ptrace_access_vm(child, addr, ,
+  to_copy,
+  FOLL_FORCE | 
FOLL_WRITE);
+   break;
+diff --git a/arch/cris/arch-v32/kernel/ptrace.c 
b/arch/cris/arch-v32/kernel/ptrace.c
+index f0df654ac6fc..fe1f9cf7b391 100644
+--- a/arch/cris/arch-v32/kernel/ptrace.c
 b/arch/cris/arch-v32/kernel/ptrace.c
+@@ -147,7 +147,7 @@ long arch_ptrace(struct task_struct *child, long request,
+   /* The trampoline page is globally mapped, no 
page table to traverse.*/
+   tmp = *(unsigned long*)addr;
+   } else {
+-  copied = access_process_vm(child, addr, , 
sizeof(tmp), FOLL_FORCE);
++  copied = ptrace_access_vm(child, addr, , 
sizeof(tmp), FOLL_FORCE);
+ 
+   if (copied != sizeof(tmp))
+   break;
+diff --git a/arch/ia64/kernel/ptrace.c b/arch/ia64/kernel/ptrace.c
+index 31aa8c0f68e1..36f660da8124 100644
+--- a/arch/ia64/kernel/ptrace.c
 

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

2017-01-06 Thread Mart Raudsepp
commit: acaf761353763d2f9b02c8b3cc37abd9c2a16be9
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jan  6 23:00:54 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jan  6 23:01:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acaf7613

dev-perl/File-Slurper: Drop ~mips keyword, nothing needs it

Gentoo-bug: 603078

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild 
b/dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild
index b8fce78..c506aec 100644
--- a/dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild
+++ b/dev-perl/File-Slurper/File-Slurper-0.0.800.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A simple, sane and efficient module to slurp a file"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 
~sh ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ppc ~ppc64 ~s390 ~sh 
~sparc x86"
 IUSE=""
 
 SRC_TEST="do"



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

2017-01-06 Thread Patrice Clement
commit: 1ef6b0f54d184ee8f6ecbc8addb7d7a1a97569b6
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jan  6 22:57:46 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jan  6 23:00:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ef6b0f5

dev-python/pid: stable for amd64.

Package-Manager: portage-2.3.0

 dev-python/pid/pid-2.1.1.ebuild | 9 +++--
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/dev-python/pid/pid-2.1.1.ebuild b/dev-python/pid/pid-2.1.1.ebuild
index 3db31ae..ed02807 100644
--- a/dev-python/pid/pid-2.1.1.ebuild
+++ b/dev-python/pid/pid-2.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -14,12 +14,9 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="Apache-2.0"
-KEYWORDS="~amd64"
-IUSE=""
+KEYWORDS="amd64"
 
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}]"
+DEPEND="dev-python/nose[${PYTHON_USEDEP}]"
 
 python_test() {
nosetests || die



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xrootconsole/files/, x11-misc/xrootconsole/

2017-01-06 Thread Patrice Clement
commit: 18778e4bea216e5ccededc82d4834ecdd1e9519b
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jan  5 23:20:06 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jan  6 23:00:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18778e4b

x11-misc/xrootconsole: EAPI 6 bump.

Package-Manager: portage-2.3.0

 .../files/xrootconsole-0.4.parse-color.patch   |  4 +-
 .../files/xrootconsole-0.6.makefile.patch  |  4 +-
 .../files/xrootconsole-0.6.manpage.patch   |  4 +-
 .../files/xrootconsole-0.6.noversion.patch |  4 +-
 x11-misc/xrootconsole/xrootconsole-0.6-r1.ebuild   | 46 ++
 5 files changed, 54 insertions(+), 8 deletions(-)

diff --git a/x11-misc/xrootconsole/files/xrootconsole-0.4.parse-color.patch 
b/x11-misc/xrootconsole/files/xrootconsole-0.4.parse-color.patch
index 78114de..2a0d049 100644
--- a/x11-misc/xrootconsole/files/xrootconsole-0.4.parse-color.patch
+++ b/x11-misc/xrootconsole/files/xrootconsole-0.4.parse-color.patch
@@ -1,6 +1,6 @@
 diff -u xrootconsole-0.4/util.c xrootconsole-0.4.new/util.c
 xrootconsole-0.4/util.c2000-10-10 04:17:53.0 +0200
-+++ xrootconsole-0.4.new/util.c2004-02-17 23:59:45.0 +0100
+--- a/util.c   2000-10-10 04:17:53.0 +0200
 b/util.c   2004-02-17 23:59:45.0 +0100
 @@ -53,16 +53,16 @@
  
  

diff --git a/x11-misc/xrootconsole/files/xrootconsole-0.6.makefile.patch 
b/x11-misc/xrootconsole/files/xrootconsole-0.6.makefile.patch
index 37fd4fb..4b3aee4 100644
--- a/x11-misc/xrootconsole/files/xrootconsole-0.6.makefile.patch
+++ b/x11-misc/xrootconsole/files/xrootconsole-0.6.makefile.patch
@@ -1,5 +1,5 @@
 xrootconsole-0.6/Makefile.org  2004-02-20 22:53:28.0 +0100
-+++ xrootconsole-0.6/Makefile  2010-02-08 12:01:11.0 +0100
+--- a/Makefile.org 2004-02-20 22:53:28.0 +0100
 b/Makefile 2010-02-08 12:01:11.0 +0100
 @@ -43,20 +43,16 @@
  else echo Bleeding Edge Version; \
  fi;)

diff --git a/x11-misc/xrootconsole/files/xrootconsole-0.6.manpage.patch 
b/x11-misc/xrootconsole/files/xrootconsole-0.6.manpage.patch
index 55718f2..8d85400 100644
--- a/x11-misc/xrootconsole/files/xrootconsole-0.6.manpage.patch
+++ b/x11-misc/xrootconsole/files/xrootconsole-0.6.manpage.patch
@@ -1,5 +1,5 @@
 xrootconsole.1.orig2005-03-06 16:59:05.837673328 +0900
-+++ xrootconsole.1 2005-03-06 17:04:36.493406016 +0900
+--- a/xrootconsole.1.orig  2005-03-06 16:59:05.837673328 +0900
 b/xrootconsole.1   2005-03-06 17:04:36.493406016 +0900
 @@ -38,6 +38,9 @@
  .Ar number
  columns wide.  Text is written vertically down each column in the order in

diff --git a/x11-misc/xrootconsole/files/xrootconsole-0.6.noversion.patch 
b/x11-misc/xrootconsole/files/xrootconsole-0.6.noversion.patch
index b1ede40..50587f7 100644
--- a/x11-misc/xrootconsole/files/xrootconsole-0.6.noversion.patch
+++ b/x11-misc/xrootconsole/files/xrootconsole-0.6.noversion.patch
@@ -1,5 +1,5 @@
 main.c.orig2004-02-21 07:31:53.0 +0900
-+++ main.c 2005-03-06 16:34:27.949346504 +0900
+--- a/main.c.orig  2004-02-21 07:31:53.0 +0900
 b/main.c   2005-03-06 16:34:27.949346504 +0900
 @@ -68,6 +68,7 @@
  "  --solid  make background a solid color, not shaded-transparent\n" \
  "  --topdowninsert lines at the top and scroll the rest down\n" \

diff --git a/x11-misc/xrootconsole/xrootconsole-0.6-r1.ebuild 
b/x11-misc/xrootconsole/xrootconsole-0.6-r1.ebuild
new file mode 100644
index ..983b789
--- /dev/null
+++ b/x11-misc/xrootconsole/xrootconsole-0.6-r1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="A utility that displays its input in a text box on your root 
window"
+HOMEPAGE="https://sourceforge.net/projects/xrootconsole/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RDEPEND="
+   x11-libs/libX11"
+
+DEPEND="
+   ${RDEPEND}
+   x11-proto/xproto"
+
+PATCHES=(
+   "${FILESDIR}/${P}.noversion.patch"
+   "${FILESDIR}/${P}.makefile.patch"
+   "${FILESDIR}/${P}.manpage.patch"
+)
+
+DOCS=( TODO NEWS CREDITS )
+
+src_compile() {
+   tc-export CC
+   emake
+}
+
+src_install() {
+   dodir /usr/bin
+
+   emake \
+   MANDIR="${D}usr/share/man/man1" \
+   BINDIR="${D}usr/bin/" \
+   install
+
+   einstalldocs
+}



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

2017-01-06 Thread Patrice Clement
commit: a1be014e7ce29a16d49f5fe9d50478df85966cbd
Author: Patrice Clement  gentoo  org>
AuthorDate: Thu Jan  5 23:14:42 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jan  6 23:00:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1be014e

x11-misc/zim: stable for amd64+x86.

Package-Manager: portage-2.3.0

 x11-misc/zim/zim-0.65.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-misc/zim/zim-0.65.ebuild b/x11-misc/zim/zim-0.65.ebuild
index fb9808a..a6cd130 100644
--- a/x11-misc/zim/zim-0.65.ebuild
+++ b/x11-misc/zim/zim-0.65.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ SRC_URI="http://zim-wiki.org/downloads/${P}.tar.gz;
 
 LICENSE="BSD GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="dev-python/pygtk[${PYTHON_USEDEP}]



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

2017-01-06 Thread Patrice Clement
commit: 8fccc8b201d74ba04a702721946ffeae0cf1e5e2
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jan  6 23:00:00 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jan  6 23:00:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fccc8b2

dev-python/pid: clean up old

Package-Manager: portage-2.3.0

 dev-python/pid/Manifest |  1 -
 dev-python/pid/pid-2.0.1.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/pid/Manifest b/dev-python/pid/Manifest
index 592e1a2..1d9f708 100644
--- a/dev-python/pid/Manifest
+++ b/dev-python/pid/Manifest
@@ -1,2 +1 @@
-DIST pid-2.0.1.tar.gz 9373 SHA256 
054cde9c64b8ac979ec27f714e71ebb97ecf8388ea5fe29f6b93db222e92d433 SHA512 
10dcded5b52c415a2fa653afdd85e5fbb06433149eee63f306ff84f225086492048db0341bf3a6e448d0654ba4c02afdb72343c0b111bc9682f2248cc4c3817a
 WHIRLPOOL 
801386fcb80d5a7b16793cc5fd9eb6622aa303d7f8be5142f3fd10dc0453ab573b227e06a9b35dc8f3048b5019017db395c40b8c5fce65b086354cfde4853024
 DIST pid-2.1.1.tar.gz 9591 SHA256 
b443169d3dc21397695b4a82016fadb4cfdb0ed8b2ddb4aaa428e1701bb34e1f SHA512 
5f20338ca902d68a0c4a614b0b8229cd498712bf1750b68fa49037e9e6915c66ad562564d70d7c9308538f4302e90473a5d253dd6366bfa561f6a2248b21a45e
 WHIRLPOOL 
52d3a196fccab813671b71c3f9d719bc741412b9cd76828902513dcf6b8fb2c4f3c0159e1fd43cbda3d39e436247248862ba5a168b710848aa6ce7b8fc26abd7

diff --git a/dev-python/pid/pid-2.0.1.ebuild b/dev-python/pid/pid-2.0.1.ebuild
deleted file mode 100644
index bbf3d67..
--- a/dev-python/pid/pid-2.0.1.ebuild
+++ /dev/null
@@ -1,26 +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,3_5} )
-
-inherit distutils-r1
-
-DESCRIPTION="Pidfile featuring stale detection and file-locking"
-HOMEPAGE="https://pypi.python.org/pypi/pid https://github.com/trbs/pid/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="Apache-2.0"
-KEYWORDS="~amd64"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   dev-python/nose[${PYTHON_USEDEP}]"
-
-python_test() {
-   nosetests || die
-}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Image_Text/

2017-01-06 Thread Michael Orlitzky
commit: b37b3dc2bd514229cce555fbc7c3046564489eab
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 22:59:25 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 22:59:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b37b3dc2

dev-php/PEAR-Image_Text: remove unused version 0.6.1.

Package-Manager: portage-2.3.0

 dev-php/PEAR-Image_Text/Manifest |  1 -
 dev-php/PEAR-Image_Text/PEAR-Image_Text-0.6.1.ebuild | 16 
 2 files changed, 17 deletions(-)

diff --git a/dev-php/PEAR-Image_Text/Manifest b/dev-php/PEAR-Image_Text/Manifest
index d44f6e9..fa2852d 100644
--- a/dev-php/PEAR-Image_Text/Manifest
+++ b/dev-php/PEAR-Image_Text/Manifest
@@ -1,2 +1 @@
-DIST Image_Text-0.6.1.tgz 59929 SHA256 
0ae118593a255ad5097531c798045ac22a11260df8098d262fcc866510480a3a SHA512 
e031780a782e6b343e48c8b0e16784955f5b54540abdb951908a8ab7c90157bd5757941af7e0a9d48946e1aa59104b41adcba1d809c01009981e80f6985fe9d7
 WHIRLPOOL 
75ebaa928bb5c538de67bb1c72f01c9552527a5eaf2c8359fd1636723b8550e13d589a65303c10ee09cdeb4ca58e0c7394e7bff3a439fe26ca5ad09c3e318f62
 DIST Image_Text-0.7.0.tgz 102049 SHA256 
ed1217b36d571c363af22dab83f68fee3009d33f508ef939d919a3a6e5a5587f SHA512 
6644cda649ecf2861af1999a7a1b8c59e2c39f178eaf818c2f3afa532b6eb1fee16eff1f3cb1ef471d5480c023452ab9226edd7ee2232353120ec2976d67b1c5
 WHIRLPOOL 
6da77cb51e6fba3a12a9c3fc47b49a6a09d589caba001993e4e35a3e97530fa7d9a74e28ec2e8f2975dacb7438261b6dc66c79c6c75e255db9e2a5f2334a0653

diff --git a/dev-php/PEAR-Image_Text/PEAR-Image_Text-0.6.1.ebuild 
b/dev-php/PEAR-Image_Text/PEAR-Image_Text-0.6.1.ebuild
deleted file mode 100644
index 324f33a..
--- a/dev-php/PEAR-Image_Text/PEAR-Image_Text-0.6.1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit php-pear-r1
-
-DESCRIPTION="Advanced text manipulations in images"
-LICENSE="PHP-3"
-SLOT="0"
-
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="dev-lang/php[gd]"



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

2017-01-06 Thread Matt Thode
commit: 5adba06a410e2078354effac723413f0ece2d8a9
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jan  6 22:51:47 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jan  6 22:53:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5adba06a

updated dep so it'll actually build

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

diff --git a/net-analyzer/icinga2/icinga2-2.6.0.ebuild 
b/net-analyzer/icinga2/icinga2-2.6.0.ebuild
index 0ff7130..c4d7662 100644
--- a/net-analyzer/icinga2/icinga2-2.6.0.ebuild
+++ b/net-analyzer/icinga2/icinga2-2.6.0.ebuild
@@ -25,7 +25,7 @@ WX_GTK_VER="3.0"
 CDEPEND="
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
-   >=dev-libs/boost-1.41
+   >=dev-libs/boost-1.58-r1
console? ( dev-libs/libedit )
mysql? ( virtual/mysql )
postgres? ( dev-db/postgresql:= )"



[gentoo-commits] proj/kde:master commit in: sys-auth/elogind/

2017-01-06 Thread Andreas Sturmlechner
commit: 14074a5ba7cfcdc25918ed9ab8ca0ada7f0a1ffd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan  6 22:52:10 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 22:52:10 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=14074a5b

sys-auth/elogind: Fix configure

Package-Manager: portage-2.3.0

 sys-auth/elogind/elogind-219.12-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/elogind/elogind-219.12-r3.ebuild 
b/sys-auth/elogind/elogind-219.12-r3.ebuild
index 6029bac..bd3c660 100644
--- a/sys-auth/elogind/elogind-219.12-r3.ebuild
+++ b/sys-auth/elogind/elogind-219.12-r3.ebuild
@@ -65,7 +65,7 @@ src_configure() {
--with-pamlibdir=$(getpam_mod_dir) \
--with-udevrulesdir="$(get_udevdir)"/rules.d \
--libdir="${EPREFIX}"/usr/$(get_libdir) \
-   --enable-smack
+   --enable-smack \
$(use_enable acl) \
$(use_enable apparmor) \
$(use_enable pam) \



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-HTML_Template_Sigma/

2017-01-06 Thread Michael Orlitzky
commit: f3f86f71460856f3457bb64aff8599096b31d588
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 22:49:11 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 22:49:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f86f71

dev-php/PEAR-HTML_Template_Sigma: remove unused version 1.2.0-r1.

Package-Manager: portage-2.3.0

 dev-php/PEAR-HTML_Template_Sigma/Manifest |  1 -
 .../PEAR-HTML_Template_Sigma-1.2.0-r1.ebuild  | 15 ---
 2 files changed, 16 deletions(-)

diff --git a/dev-php/PEAR-HTML_Template_Sigma/Manifest 
b/dev-php/PEAR-HTML_Template_Sigma/Manifest
index de71f40..c4015ec 100644
--- a/dev-php/PEAR-HTML_Template_Sigma/Manifest
+++ b/dev-php/PEAR-HTML_Template_Sigma/Manifest
@@ -1,2 +1 @@
-DIST HTML_Template_Sigma-1.2.0.tgz 29040 SHA256 
b8b5e9b08b29a13dd317fdf9d121d70020809962a7aacf24d0e0bc06a05e222e SHA512 
a76ffb002bb464a957c05387e5bbefa9a6f9436aaa97de0b457d4b6753169eebca35840dce130a0713ac33931ceae6d86194b5b3e94df1583d40b33e47f7a6b7
 WHIRLPOOL 
0d3bc7171dca35b8792bd9bbc3ea7203e5ae12a9b7a64c9e96828e674d97aad3ea0920cc63e2a0c6ca626fe5ce1cd19d81f32778ad84b8ea5ca5877fd81c5d7e
 DIST HTML_Template_Sigma-1.3.0.tgz 30185 SHA256 
24aaf04e84f806a894abbc1fc236e47d7d51c0a5064a67b5f7e29e97c6381a6f SHA512 
586068325a3320e2778131c1da98d6179d2385d2d73308b0ea1e8df3e0de23f869e03d74454752631998ef3411d8e8b37feab93c6c7b9f51ae4bedb48155e3ed
 WHIRLPOOL 
b102d9de52dfd92a94e037b661869be1e4e94beb5de8ffcf3ea7b167286fa7af74ddbb08504e3592fd595725710ce528f0dce385a7f242af82aabc5fc6ec2b62

diff --git 
a/dev-php/PEAR-HTML_Template_Sigma/PEAR-HTML_Template_Sigma-1.2.0-r1.ebuild 
b/dev-php/PEAR-HTML_Template_Sigma/PEAR-HTML_Template_Sigma-1.2.0-r1.ebuild
deleted file mode 100644
index b0c965a..
--- a/dev-php/PEAR-HTML_Template_Sigma/PEAR-HTML_Template_Sigma-1.2.0-r1.ebuild
+++ /dev/null
@@ -1,15 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit php-pear-r1
-
-DESCRIPTION="An implementation of Integrated Templates API with template 
'compilation' added"
-LICENSE="PHP-3.01"
-SLOT="0"
-KEYWORDS="alpha amd64 hppa ia64 ppc ppc64 sparc x86"
-IUSE=""
-
-DEPEND="dev-lang/php[ctype]"



[gentoo-commits] proj/kde:master commit in: app-office/calligra/

2017-01-06 Thread Andreas Sturmlechner
commit: abbe0501207afd394c8fdfb8c0a2f279893e21a0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan  6 22:45:40 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 22:45:40 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=abbe0501

app-office/calligra: Fix DEPENDs, add USE=jpeg2k,phonon

Make USE=lcms do something (enable PLUGIN_COLORENGINES)
Make USE=spacenav do sth (enable PLUGIN_SPACENAVIGATOR)
Block calligra-l10n:4
Drop unused libpng dependency
Move boost,threadweaver RDEPEND -> DEPEND
KDE_TEST=forceoptional-recursive to eliminate a truckload of warnings
Disable benchmarks as well, nothing is installed

Package-Manager: portage-2.3.0

 app-office/calligra/calligra-.ebuild | 51 ++--
 app-office/calligra/metadata.xml |  2 ++
 2 files changed, 30 insertions(+), 23 deletions(-)

diff --git a/app-office/calligra/calligra-.ebuild 
b/app-office/calligra/calligra-.ebuild
index 916e31e..1b17523 100644
--- a/app-office/calligra/calligra-.ebuild
+++ b/app-office/calligra/calligra-.ebuild
@@ -6,20 +6,12 @@ EAPI=6
 
 CHECKREQS_DISK_BUILD="4G"
 KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional"
+KDE_TEST="forceoptional-recursive"
 inherit check-reqs kde5 versionator
 
 DESCRIPTION="KDE Office Suite"
 HOMEPAGE="http://www.calligra.org/;
-
-case ${PV} in
-   3.[0123456789].[789]?)
-   # beta or rc releases
-   SRC_URI="mirror://kde/unstable/${P}/${P}.tar.gz" ;;
-   3.[0123456789].?)
-   # stable releases
-   SRC_URI="mirror://kde/stable/${P}/${P}.tar.gz"
-esac
+[[ ${KDE_BUILD_TYPE} == release ]] && 
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
 
 LICENSE="GPL-2"
 
@@ -29,9 +21,9 @@ KEYWORDS="~amd64 ~x86"
 CAL_FTS=( karbon plan sheets words )
 CAL_EXP_FTS=( braindump stage )
 
-IUSE="activities +crypt +eigen +fontconfig gsl import-filter +lcms pim marble 
okular
-   openexr +pdf spacenav +truetype vc +xml X $(printf 
'calligra_features_%s ' ${CAL_FTS[@]})
-   $(printf 'calligra_experimental_features_%s ' ${CAL_EXP_FTS[@]})"
+IUSE="activities +crypt +eigen +fontconfig gsl import-filter jpeg2k +lcms 
okular openexr +pdf
+phonon pim marble spacenav +truetype vc +xml X $(printf 'calligra_features_%s 
' ${CAL_FTS[@]})
+$(printf 'calligra_experimental_features_%s ' ${CAL_EXP_FTS[@]})"
 
 REQUIRED_USE="calligra_features_sheets? ( eigen )"
 
@@ -55,20 +47,18 @@ COMMON_DEPEND="
$(add_frameworks_dep kio)
$(add_frameworks_dep kitemmodels)
$(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep kjobwidgets)
$(add_frameworks_dep knotifications)
$(add_frameworks_dep knotifyconfig)
$(add_frameworks_dep kparts)
$(add_frameworks_dep kross)
-   $(add_frameworks_dep ktexteditor)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwallet)
$(add_frameworks_dep kwidgetsaddons)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_frameworks_dep sonnet)
-   $(add_frameworks_dep threadweaver)
$(add_qt_dep designer)
-   $(add_qt_dep qtconcurrent)
$(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
$(add_qt_dep qtgui)
@@ -79,8 +69,6 @@ COMMON_DEPEND="
$(add_qt_dep qtwidgets)
$(add_qt_dep qtxml)
dev-lang/perl
-   dev-libs/boost
-   media-libs/libpng:0
sys-libs/zlib
virtual/libiconv
activities? ( $(add_frameworks_dep kactivities) )
@@ -98,10 +86,14 @@ COMMON_DEPEND="
dev-libs/librevenge
media-libs/libvisio
)
-   lcms? ( media-libs/lcms:2 )
+   lcms? (
+   media-libs/ilmbase:=
+   media-libs/lcms:2
+   )
marble? ( $(add_kdeapps_dep marble) )
openexr? ( media-libs/openexr )
pdf? ( app-text/poppler:=[qt5] )
+   phonon? ( media-libs/phonon[qt5] )
spacenav? ( dev-libs/libspnav )
truetype? ( media-libs/freetype:2 )
X? (
@@ -113,12 +105,13 @@ COMMON_DEPEND="
$(add_qt_dep qtwebkit)
okular? ( $(add_kdeapps_dep okular) )
)
+   calligra_features_karbon? ( jpeg2k? ( media-libs/openjpeg:= ) )
calligra_features_plan? (
$(add_frameworks_dep khtml)
$(add_qt_dep qtcore '' '' '5=')
dev-libs/kdiagram:5
-   dev-libs/kproperty:5
-   dev-libs/kreport:5
+   =dev-libs/kproperty-3.0*:5
+   =dev-libs/kreport-3.0*:5
pim? (
$(add_kdeapps_dep akonadi)
$(add_kdeapps_dep akonadi-contacts)
@@ -132,17 +125,20 @@ COMMON_DEPEND="
)
 "
 DEPEND="${COMMON_DEPEND}
+   dev-libs/boost
sys-devel/gettext
x11-misc/shared-mime-info
+   test? ( $(add_frameworks_dep threadweaver) )
vc? ( 

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

2017-01-06 Thread Michael Orlitzky
commit: 25971a5a27a4e2dec8ef93ac9915de1045e7a67e
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 22:11:27 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 22:39:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25971a5a

dev-php/twig: fix build with USE=extension unset.

In commit 14f2ab0, I accidentally broke building with
USE="-extension".  The eclass src_prepare phase was correctly skipped
(a new change), but then afterwards it became possible for the eclass
src_configure and src_compile to fail. Now those phases are skipped
when USE="-extension", too. For consistency and for a minor
performance improvement, the eclass src_unpack phase is skipped, too.

A new revision was made because I'm not 100% certain that it wasn't
possible to install the extension with USE="-extension" before. If
it was possible, any victims would want to re-emerge twig. I have
also added an unconditional RDEPEND on "dev-lang/php" that could
have been omitted before; that would itself justify a new revision.

Gentoo-Bug: 604874

Package-Manager: portage-2.3.0

 .../{twig-1.29.0.ebuild => twig-1.29.0-r1.ebuild}  | 30 +-
 1 file changed, 29 insertions(+), 1 deletion(-)

diff --git a/dev-php/twig/twig-1.29.0.ebuild 
b/dev-php/twig/twig-1.29.0-r1.ebuild
similarity index 66%
rename from dev-php/twig/twig-1.29.0.ebuild
rename to dev-php/twig/twig-1.29.0-r1.ebuild
index 679424c..55c8675 100644
--- a/dev-php/twig/twig-1.29.0.ebuild
+++ b/dev-php/twig/twig-1.29.0-r1.ebuild
@@ -24,15 +24,43 @@ IUSE="doc extension test"
 
 DEPEND="test? ( dev-php/phpunit )"
 
+# We always require *some* version of PHP; the eclass (conditionally)
+# requires *specific* versions.
+RDEPEND="dev-lang/php"
+
+src_unpack() {
+   # Don't make copies of the source tree if they won't be used.
+   if use extension; then
+   php-ext-source-r3_src_unpack
+   else
+   default
+   fi
+}
+
 src_prepare(){
# We need to call eapply_user ourselves, because it may be skipped
# if either the "extension" USE flag is not set, or if the user's
# PHP_TARGETS is essentially empty (does not contain "php5-6"). In
-   # the latter case, the eclass src_prepare does nothing.
+   # the latter case, the eclass src_prepare does nothing. We only call
+   # the eclass phase conditionally because the correct version of
+   # e.g. "phpize" may not be there unless USE=extension is set.
eapply_user
use extension && php-ext-source-r3_src_prepare
 }
 
+src_configure() {
+   # The eclass phase will try to run the ./configure script even if it
+   # doesn't exist (in contrast to the default src_configure), so we
+   # need to skip it if the eclass src_prepare (that creates said
+   # script) is not run.
+   use extension && php-ext-source-r3_src_configure
+}
+
+src_compile() {
+   # Avoids the same problem as in src_configure.
+   use extension && php-ext-source-r3_src_compile
+}
+
 src_install(){
use extension && php-ext-source-r3_src_install
 



[gentoo-commits] repo/gentoo:master commit in: app-office/calligra/, app-office/calligra/files/

2017-01-06 Thread Andreas Sturmlechner
commit: 40af205e956491a6115c088a186080f63b84a9d4
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  4 13:27:19 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 22:30:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40af205e

app-office/calligra: Fix DEPENDs, add USE=jpeg2k,phonon

Make USE=lcms do something (enable PLUGIN_COLORENGINES)
Make USE=spacenav do sth (enable PLUGIN_SPACENAVIGATOR)
Revert upstream disabling AkonadiContact
Block calligra-l10n:4
Drop unused libpng dependency
Move boost,threadweaver RDEPEND -> DEPEND
KDE_TEST=forceoptional-recursive to eliminate a truckload of warnings
Disable benchmarks as well, nothing is installed
Patch out bogus references to kdelibs4

Package-Manager: portage-2.3.0

 app-office/calligra/calligra-3.0.0.1-r1.ebuild | 253 +
 .../calligra/files/calligra-3.0.0.1-deps1.patch|  31 +++
 .../calligra/files/calligra-3.0.0.1-deps2.patch|  65 ++
 .../calligra/files/calligra-3.0.0.1-deps3.patch|  31 +++
 .../files/calligra-3.0.0.1-nokdelibs4.patch|  38 
 .../files/calligra-3.0.0.1-reenable-akonadi.patch  | 113 +
 .../files/calligra-3.0.0.1-relax-deps.patch|  34 +++
 app-office/calligra/metadata.xml   |   2 +
 8 files changed, 567 insertions(+)

diff --git a/app-office/calligra/calligra-3.0.0.1-r1.ebuild 
b/app-office/calligra/calligra-3.0.0.1-r1.ebuild
new file mode 100644
index ..130d128
--- /dev/null
+++ b/app-office/calligra/calligra-3.0.0.1-r1.ebuild
@@ -0,0 +1,253 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+CHECKREQS_DISK_BUILD="4G"
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="forceoptional-recursive"
+inherit check-reqs kde5 versionator
+
+DESCRIPTION="KDE Office Suite"
+HOMEPAGE="http://www.calligra.org/;
+[[ ${KDE_BUILD_TYPE} == release ]] && 
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
+
+LICENSE="GPL-2"
+
+[[ ${KDE_BUILD_TYPE} == release ]] && \
+KEYWORDS="~amd64 ~x86"
+
+CAL_FTS=( karbon plan sheets words )
+CAL_EXP_FTS=( braindump stage )
+
+IUSE="activities +crypt +eigen +fontconfig gsl import-filter jpeg2k +lcms 
okular openexr +pdf
+phonon pim marble spacenav +truetype vc +xml X $(printf 'calligra_features_%s 
' ${CAL_FTS[@]})
+$(printf 'calligra_experimental_features_%s ' ${CAL_EXP_FTS[@]})"
+
+REQUIRED_USE="calligra_features_sheets? ( eigen )"
+
+# TODO: Not packaged: Cauchy (https://bitbucket.org/cyrille/cauchy)
+# Required for the matlab/octave formula tool
+# drop qtcore subslot operator when QT_MINIMAL >= 5.7.0
+COMMON_DEPEND="
+   $(add_frameworks_dep karchive)
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kcodecs)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kemoticons)
+   $(add_frameworks_dep kglobalaccel)
+   $(add_frameworks_dep kguiaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemmodels)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep kjobwidgets)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kparts)
+   $(add_frameworks_dep kross)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwallet)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   $(add_frameworks_dep sonnet)
+   $(add_qt_dep designer)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtdeclarative)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtscript)
+   $(add_qt_dep qtsvg)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   dev-lang/perl
+   sys-libs/zlib
+   virtual/libiconv
+   activities? ( $(add_frameworks_dep kactivities) )
+   crypt? ( app-crypt/qca:2[qt5] )
+   eigen? ( dev-cpp/eigen:3 )
+   fontconfig? ( media-libs/fontconfig )
+   gsl? ( sci-libs/gsl )
+   import-filter? (
+   $(add_frameworks_dep khtml)
+   app-text/libetonyek
+   app-text/libodfgen
+   app-text/libwpd:*
+   app-text/libwpg:*
+   >=app-text/libwps-0.4
+   dev-libs/librevenge
+   media-libs/libvisio
+   )
+   lcms? (
+   media-libs/ilmbase:=
+   media-libs/lcms:2
+   )
+   marble? ( $(add_kdeapps_dep marble) )
+   openexr? ( media-libs/openexr )
+   pdf? ( app-text/poppler:=[qt5] )
+   phonon? ( media-libs/phonon[qt5] )
+   spacenav? ( 

[gentoo-commits] repo/gentoo:master commit in: app-office/calligra/files/, app-office/calligra/

2017-01-06 Thread Andreas Sturmlechner
commit: bc67da033112ad06b72a1eb5019f20e0fe987b89
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Jan  4 14:27:54 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 22:30:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc67da03

app-office/calligra: Drop old

Package-Manager: portage-2.3.0

 app-office/calligra/calligra-3.0.0.1.ebuild| 235 -
 .../files/calligra-3.0.0-optionaldeps.patch|  20 --
 2 files changed, 255 deletions(-)

diff --git a/app-office/calligra/calligra-3.0.0.1.ebuild 
b/app-office/calligra/calligra-3.0.0.1.ebuild
deleted file mode 100644
index 15bb5b9..
--- a/app-office/calligra/calligra-3.0.0.1.ebuild
+++ /dev/null
@@ -1,235 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-CHECKREQS_DISK_BUILD="4G"
-KDE_HANDBOOK="forceoptional"
-KDE_TEST="forceoptional"
-inherit check-reqs kde5 versionator
-
-DESCRIPTION="KDE Office Suite"
-HOMEPAGE="http://www.calligra.org/;
-[[ ${KDE_BUILD_TYPE} == release ]] && 
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.xz"
-
-LICENSE="GPL-2"
-
-[[ ${KDE_BUILD_TYPE} == release ]] && \
-KEYWORDS="~amd64 ~x86"
-
-CAL_FTS=( karbon plan sheets words )
-CAL_EXP_FTS=( braindump stage )
-
-IUSE="activities +crypt +eigen +fontconfig gsl import-filter +lcms pim marble 
okular
-   openexr +pdf spacenav +truetype vc +xml X $(printf 
'calligra_features_%s ' ${CAL_FTS[@]})
-   $(printf 'calligra_experimental_features_%s ' ${CAL_EXP_FTS[@]})"
-
-REQUIRED_USE="calligra_features_sheets? ( eigen )"
-
-# TODO: Not packaged: Cauchy (https://bitbucket.org/cyrille/cauchy)
-# Required for the matlab/octave formula tool
-# drop qtcore subslot operator when QT_MINIMAL >= 5.7.0
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kcodecs)
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdelibs4support)
-   $(add_frameworks_dep kemoticons)
-   $(add_frameworks_dep kglobalaccel)
-   $(add_frameworks_dep kguiaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kitemmodels)
-   $(add_frameworks_dep kitemviews)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kross)
-   $(add_frameworks_dep ktexteditor)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwallet)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kwindowsystem)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep sonnet)
-   $(add_frameworks_dep threadweaver)
-   $(add_qt_dep designer)
-   $(add_qt_dep qtconcurrent)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtprintsupport)
-   $(add_qt_dep qtscript)
-   $(add_qt_dep qtsvg)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   dev-lang/perl
-   dev-libs/boost
-   media-libs/libpng:0
-   sys-libs/zlib
-   virtual/libiconv
-   activities? ( $(add_frameworks_dep kactivities) )
-   crypt? ( app-crypt/qca:2[qt5] )
-   eigen? ( dev-cpp/eigen:3 )
-   fontconfig? ( media-libs/fontconfig )
-   gsl? ( sci-libs/gsl )
-   import-filter? (
-   $(add_frameworks_dep khtml)
-   app-text/libetonyek
-   app-text/libodfgen
-   app-text/libwpd:*
-   app-text/libwpg:*
-   >=app-text/libwps-0.4
-   dev-libs/librevenge
-   media-libs/libvisio
-   )
-   lcms? ( media-libs/lcms:2 )
-   marble? ( $(add_kdeapps_dep marble) )
-   openexr? ( media-libs/openexr )
-   pdf? ( app-text/poppler:=[qt5] )
-   spacenav? ( dev-libs/libspnav )
-   truetype? ( media-libs/freetype:2 )
-   X? (
-   $(add_qt_dep qtx11extras)
-   x11-libs/libX11
-   )
-   calligra_experimental_features_braindump? ( $(add_qt_dep qtwebkit) )
-   calligra_experimental_features_stage? (
-   $(add_qt_dep qtwebkit)
-   okular? ( $(add_kdeapps_dep okular) )
-   )
-   calligra_features_plan? (
-   $(add_frameworks_dep khtml)
-   $(add_qt_dep qtcore '' '' '5=')
-   dev-libs/kdiagram:5
-   dev-libs/kproperty:5
-   dev-libs/kreport:5
-   pim? (
-   $(add_kdeapps_dep akonadi)
-   $(add_kdeapps_dep akonadi-contacts)
-   $(add_kdeapps_dep 

[gentoo-commits] proj/kde:master commit in: sys-auth/elogind/

2017-01-06 Thread Andreas Sturmlechner
commit: c71a831a8d4ce44c2c47fdfffcbe7da8f8ed5c83
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan  6 22:23:08 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 22:23:08 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=c71a831a

sys-auth/elogind: Drop old

Package-Manager: portage-2.3.0

 sys-auth/elogind/elogind-219.12-r2.ebuild | 69 ---
 1 file changed, 69 deletions(-)

diff --git a/sys-auth/elogind/elogind-219.12-r2.ebuild 
b/sys-auth/elogind/elogind-219.12-r2.ebuild
deleted file mode 100644
index 358d5a4..000
--- a/sys-auth/elogind/elogind-219.12-r2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit autotools eutils pam
-
-DESCRIPTION="The systemd project's logind, extracted to a standalone package"
-HOMEPAGE="https://github.com/wingo/elogind;
-SRC_URI="https://github.com/wingo/elogind/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="acl apparmor pam policykit selinux +seccomp"
-
-COMMON_DEPEND="
-   sys-libs/libcap
-   sys-apps/util-linux
-   virtual/libudev:=
-   acl? ( sys-apps/acl )
-   apparmor? ( sys-libs/libapparmor )
-   pam? ( virtual/pam )
-   seccomp? ( sys-libs/libseccomp )
-   selinux? ( sys-libs/libselinux )
-"
-RDEPEND="${COMMON_DEPEND}
-   sys-apps/dbus
-   policykit? ( sys-auth/polkit )
-   !sys-auth/systemd
-"
-DEPEND="${COMMON_DEPEND}
-   dev-util/gperf
-   dev-util/intltool
-   sys-devel/libtool
-   virtual/pkgconfig
-"
-
-DOCS=( NEWS README TODO )
-PATCHES=(
-   "${FILESDIR}/${PN}-docs.patch"
-   "${FILESDIR}/${PN}-lrt.patch"
-   "${FILESDIR}/${P}-session.patch"
-)
-
-src_prepare() {
-   default
-
-   # launch elogind when called via dbus
-   sed -i -e "s|/bin/false|/usr/libexec/elogind/elogind|" 
src/login/org.freedesktop.login1.service || die
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --with-pamlibdir=$(getpam_mod_dir) \
-   $(use_enable acl) \
-   $(use_enable apparmor) \
-   $(use_enable pam) \
-   $(use_enable seccomp) \
-   $(use_enable selinux)
-}
-
-src_install() {
-   default
-   prune_libtool_files --modules
-}



[gentoo-commits] proj/kde:master commit in: sys-auth/elogind/files/, sys-auth/elogind/

2017-01-06 Thread Andreas Sturmlechner
commit: 1f88f2840e6677ad4615be7f5b3c58f63e392990
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan  6 22:22:29 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 22:22:29 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=1f88f284

sys-auth/elogind: Add init script, kernel checks

Gentoo-bug: 599474

Thanks-to: Sven Eden  gmx.net>

Initial ebuild and init script by Sven Eden, simplified by me.

Package-Manager: portage-2.3.0

 sys-auth/elogind/elogind-219.12-r3.ebuild  |  90 ++
 .../files/elogind-219.12-login1-perms.patch| 129 +
 sys-auth/elogind/files/elogind.conf|   7 ++
 sys-auth/elogind/files/elogind.init|  32 +
 4 files changed, 258 insertions(+)

diff --git a/sys-auth/elogind/elogind-219.12-r3.ebuild 
b/sys-auth/elogind/elogind-219.12-r3.ebuild
new file mode 100644
index 000..6029bac
--- /dev/null
+++ b/sys-auth/elogind/elogind-219.12-r3.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools linux-info pam udev
+
+DESCRIPTION="The systemd project's logind, extracted to a standalone package"
+HOMEPAGE="https://github.com/wingo/elogind;
+SRC_URI="https://github.com/wingo/elogind/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="CC0-1.0 LGPL-2.1+ public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="acl apparmor pam policykit selinux +seccomp"
+
+COMMON_DEPEND="
+   sys-libs/libcap
+   sys-apps/util-linux
+   virtual/libudev:=
+   acl? ( sys-apps/acl )
+   apparmor? ( sys-libs/libapparmor )
+   pam? ( virtual/pam )
+   seccomp? ( sys-libs/libseccomp )
+   selinux? ( sys-libs/libselinux )
+"
+RDEPEND="${COMMON_DEPEND}
+   sys-apps/dbus
+   policykit? ( sys-auth/polkit )
+   !sys-auth/systemd
+"
+DEPEND="${COMMON_DEPEND}
+   dev-util/gperf
+   dev-util/intltool
+   sys-devel/libtool
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-docs.patch"
+   "${FILESDIR}/${PN}-lrt.patch"
+   "${FILESDIR}/${P}-session.patch"
+   "${FILESDIR}/${P}-login1-perms.patch"
+)
+
+pkg_setup() {
+   local CONFIG_CHECK="~CGROUPS ~EPOLL ~INOTIFY_USER ~SECURITY_SMACK
+   ~SIGNALFD ~TIMERFD"
+
+   use seccomp && CONFIG_CHECK+=" ~SECCOMP"
+
+   if use kernel_linux; then
+   linux-info_pkg_setup
+   fi
+}
+
+src_prepare() {
+   default
+   eautoreconf # Makefile.am patched by 
"${FILESDIR}/${PN}-{docs,lrt}.patch"
+}
+
+src_configure() {
+   econf \
+   --with-pamlibdir=$(getpam_mod_dir) \
+   --with-udevrulesdir="$(get_udevdir)"/rules.d \
+   --libdir="${EPREFIX}"/usr/$(get_libdir) \
+   --enable-smack
+   $(use_enable acl) \
+   $(use_enable apparmor) \
+   $(use_enable pam) \
+   $(use_enable seccomp) \
+   $(use_enable selinux)
+}
+
+src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+
+   newinitd "${FILESDIR}"/${PN}.init ${PN}
+   newconfd "${FILESDIR}"/${PN}.conf ${PN}
+}
+
+pkg_postinst() {
+   if [ "$(rc-config list default | grep elogind)" = "" ]; then
+   ewarn "To enable the elogind daemon, elogind must be"
+   ewarn "added to the default runlevel:"
+   ewarn "# rc-update add elogind default"
+   fi
+}

diff --git a/sys-auth/elogind/files/elogind-219.12-login1-perms.patch 
b/sys-auth/elogind/files/elogind-219.12-login1-perms.patch
new file mode 100644
index 000..eecf38e
--- /dev/null
+++ b/sys-auth/elogind/files/elogind-219.12-login1-perms.patch
@@ -0,0 +1,129 @@
+From 1ca40c077cd9a08f96a559ba51e8dba230298c4d Mon Sep 17 00:00:00 2001
+From: Michael Palimaka 
+Date: Sun, 19 Jun 2016 01:56:56 +1000
+Subject: [PATCH] Update org.freedesktop.login1.conf
+
+This mirrors an upstream change opening up all of logind's bus calls to
+unprivileged users via polkit.
+
+See systemd/systemd/issues/471.
+Closes #3.
+---
+ src/login/org.freedesktop.login1.conf | 68 +++
+ 1 file changed, 68 insertions(+)
+
+diff --git a/src/login/org.freedesktop.login1.conf 
b/src/login/org.freedesktop.login1.conf
+index 1318328..2e67e3d 100644
+--- a/src/login/org.freedesktop.login1.conf
 b/src/login/org.freedesktop.login1.conf
+@@ -90,6 +90,42 @@
+ 
+ 
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
++
+ 
+ 
++
++
+ 
+ 
++
++
+ 
+ 
++
++
+ 
+ 
++
++
++
++
+ 
+ 
++
++

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

2017-01-06 Thread Brian Dolbec
commit: 9784eec5e074924b4ee9ccb3e90582d195c6dbdc
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Fri Jan  6 21:58:02 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 22:12:20 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=9784eec5

Update cnf/make.conf.example.${ARCH}.diff patches wrt 98f930d4d

Otherwise they fail to apply, which makes portage- fail at prepare
phase.

Signed-off-by: Brian Dolbec  gentoo.org>

 cnf/make.conf.example.alpha.diff  | 2 +-
 cnf/make.conf.example.amd64-fbsd.diff | 2 +-
 cnf/make.conf.example.amd64.diff  | 2 +-
 cnf/make.conf.example.arm.diff| 2 +-
 cnf/make.conf.example.hppa.diff   | 2 +-
 cnf/make.conf.example.ia64.diff   | 2 +-
 cnf/make.conf.example.m68k.diff   | 2 +-
 cnf/make.conf.example.mips.diff   | 2 +-
 cnf/make.conf.example.ppc.diff| 2 +-
 cnf/make.conf.example.ppc64.diff  | 2 +-
 cnf/make.conf.example.s390.diff   | 2 +-
 cnf/make.conf.example.sh.diff | 2 +-
 cnf/make.conf.example.sparc-fbsd.diff | 2 +-
 cnf/make.conf.example.sparc.diff  | 2 +-
 cnf/make.conf.example.x86-fbsd.diff   | 2 +-
 cnf/make.conf.example.x86.diff| 2 +-
 16 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/cnf/make.conf.example.alpha.diff b/cnf/make.conf.example.alpha.diff
index 5306999..83c09ea 100644
--- a/cnf/make.conf.example.alpha.diff
+++ b/cnf/make.conf.example.alpha.diff
@@ -15,7 +15,7 @@
 +#CHOST="alphaev67-unknown-linux-gnu"
 +CHOST="alpha-unknown-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -39,10 +50,18 @@

diff --git a/cnf/make.conf.example.amd64-fbsd.diff 
b/cnf/make.conf.example.amd64-fbsd.diff
index 1277b6d..a02329b 100644
--- a/cnf/make.conf.example.amd64-fbsd.diff
+++ b/cnf/make.conf.example.amd64-fbsd.diff
@@ -9,7 +9,7 @@
 +#
 +CHOST="x86_64-gentoo-freebsd7.1"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -39,10 +44,35 @@

diff --git a/cnf/make.conf.example.amd64.diff b/cnf/make.conf.example.amd64.diff
index dfa4b42..8286df6 100644
--- a/cnf/make.conf.example.amd64.diff
+++ b/cnf/make.conf.example.amd64.diff
@@ -9,7 +9,7 @@
 +#
 +CHOST="x86_64-pc-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -39,10 +44,35 @@

diff --git a/cnf/make.conf.example.arm.diff b/cnf/make.conf.example.arm.diff
index e52d1bc..200e476 100644
--- a/cnf/make.conf.example.arm.diff
+++ b/cnf/make.conf.example.arm.diff
@@ -17,7 +17,7 @@
 +#
 +CHOST="armv4l-unknown-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -39,10 +52,22 @@

diff --git a/cnf/make.conf.example.hppa.diff b/cnf/make.conf.example.hppa.diff
index 2d17b37..78db02e 100644
--- a/cnf/make.conf.example.hppa.diff
+++ b/cnf/make.conf.example.hppa.diff
@@ -16,7 +16,7 @@
 +#CHOST="hppa1.1-unknown-linux-gnu"
 +#CHOST="hppa2.0-unknown-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -39,14 +51,38 @@

diff --git a/cnf/make.conf.example.ia64.diff b/cnf/make.conf.example.ia64.diff
index 68a0cb0..378db8a 100644
--- a/cnf/make.conf.example.ia64.diff
+++ b/cnf/make.conf.example.ia64.diff
@@ -11,7 +11,7 @@
 +
 +CHOST="ia64-unknown-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -76,7 +83,7 @@

diff --git a/cnf/make.conf.example.m68k.diff b/cnf/make.conf.example.m68k.diff
index f967461..7d82b3b 100644
--- a/cnf/make.conf.example.m68k.diff
+++ b/cnf/make.conf.example.m68k.diff
@@ -11,7 +11,7 @@
 +#
 +CHOST="m68k-unknown-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -41,7 +48,7 @@

diff --git a/cnf/make.conf.example.mips.diff b/cnf/make.conf.example.mips.diff
index 7d3d83d..0b521a7 100644
--- a/cnf/make.conf.example.mips.diff
+++ b/cnf/make.conf.example.mips.diff
@@ -11,7 +11,7 @@
 +
 +CHOST="mips-unknown-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -39,10 +46,15 @@

diff --git a/cnf/make.conf.example.ppc.diff b/cnf/make.conf.example.ppc.diff
index b34de8e..a7ef9cf 100644
--- a/cnf/make.conf.example.ppc.diff
+++ b/cnf/make.conf.example.ppc.diff
@@ -11,7 +11,7 @@
 +
 +CHOST="powerpc-unknown-linux-gnu"
 +
- # Host and optimization settings 
+ # Host and optimization settings
  # ==
  #
 @@ -39,10 +46,56 @@

diff --git a/cnf/make.conf.example.ppc64.diff b/cnf/make.conf.example.ppc64.diff
index 961508e..73ce993 100644
--- a/cnf/make.conf.example.ppc64.diff
+++ b/cnf/make.conf.example.ppc64.diff
@@ -11,7 +11,7 @@
 +
 +CHOST="powerpc64-unknown-linux-gnu"
 +
- # Host and 

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

2017-01-06 Thread Michael Orlitzky
commit: 14f2ab0158367ccebb091bb7a023c367cec45e48
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 21:50:11 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 21:50:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14f2ab01

dev-php/twig: don't run eclass phases when USE="extension" is unset.

If the user does not wish to build the C extension, there is no need
to run the php-ext-source-r3 eclass phases. Doing so can lead to a
build failure because those eclass phases use DEPENDencies that are
only required conditionally on USE=extension.

Gentoo-Bug: 604874

Package-Manager: portage-2.3.0

 dev-php/twig/twig-1.29.0.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/dev-php/twig/twig-1.29.0.ebuild b/dev-php/twig/twig-1.29.0.ebuild
index 0cfa0e1..679424c 100644
--- a/dev-php/twig/twig-1.29.0.ebuild
+++ b/dev-php/twig/twig-1.29.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -25,22 +25,26 @@ IUSE="doc extension test"
 DEPEND="test? ( dev-php/phpunit )"
 
 src_prepare(){
-   # We need to call eapply_user ourselves, just in case the user's
+   # We need to call eapply_user ourselves, because it may be skipped
+   # if either the "extension" USE flag is not set, or if the user's
# PHP_TARGETS is essentially empty (does not contain "php5-6"). In
-   # that case the eclass src_prepare does nothing.
+   # the latter case, the eclass src_prepare does nothing.
eapply_user
-   php-ext-source-r3_src_prepare
+   use extension && php-ext-source-r3_src_prepare
 }
 
 src_install(){
-   php-ext-source-r3_src_install
+   use extension && php-ext-source-r3_src_install
 
cd "${S}" || die
# The autoloader requires the 'T' in "Twig" capitalized.
insinto "/usr/share/php/${MY_PN}"
doins -r lib/"${MY_PN}"/*
 
+   # The eclass src_install calls einstalldocs, so we may install a few
+   # files twice. Doing so should be harmless.
dodoc README.rst CHANGELOG
+
# This installs the reStructuredText source documents. There's got
# to be some way to turn them into HTML using Sphinx, but upstream
# doesn't provide for it.



[gentoo-commits] proj/gnome:master commit in: gnome-extra/gnome-todo/

2017-01-06 Thread Mart Raudsepp
commit: 573af00f1108f92d4bebb1d48292ee20f0e9eade
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jan  6 21:11:24 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jan  6 21:11:24 2017 +
URL:https://gitweb.gentoo.org/proj/gnome.git/commit/?id=573af00f

gnome-extra/gnome-todo: Personnal -> Personal in DESCRIPTION

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 gnome-extra/gnome-todo/gnome-todo-3.18.1.ebuild | 4 ++--
 gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild | 4 ++--
 gnome-extra/gnome-todo/gnome-todo-3.22.0.ebuild | 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/gnome-extra/gnome-todo/gnome-todo-3.18.1.ebuild 
b/gnome-extra/gnome-todo/gnome-todo-3.18.1.ebuild
index bdfc866..28d4c7e 100644
--- a/gnome-extra/gnome-todo/gnome-todo-3.18.1.ebuild
+++ b/gnome-extra/gnome-todo/gnome-todo-3.18.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -7,7 +7,7 @@ GCONF_DEBUG="no"
 
 inherit gnome2
 
-DESCRIPTION="Personnal task manager"
+DESCRIPTION="Personal task manager"
 HOMEPAGE="https://wiki.gnome.org/Apps/Todo;
 
 LICENSE="GPL-3+"

diff --git a/gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild 
b/gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild
index e9d7ce9..55ac2da 100644
--- a/gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild
+++ b/gnome-extra/gnome-todo/gnome-todo-3.20.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=6
 
 inherit autotools gnome2
 
-DESCRIPTION="Personnal task manager"
+DESCRIPTION="Personal task manager"
 HOMEPAGE="https://wiki.gnome.org/Apps/Todo;
 
 LICENSE="GPL-3+"

diff --git a/gnome-extra/gnome-todo/gnome-todo-3.22.0.ebuild 
b/gnome-extra/gnome-todo/gnome-todo-3.22.0.ebuild
index eab6908..83b1238 100644
--- a/gnome-extra/gnome-todo/gnome-todo-3.22.0.ebuild
+++ b/gnome-extra/gnome-todo/gnome-todo-3.22.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=6
 
 inherit autotools gnome2
 
-DESCRIPTION="Personnal task manager"
+DESCRIPTION="Personal task manager"
 HOMEPAGE="https://wiki.gnome.org/Apps/Todo;
 
 LICENSE="GPL-3+"



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

2017-01-06 Thread Anthony G. Basile
commit: d4669aeb1463c85c60404bed05231d7e9077f429
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jan  6 20:45:10 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jan  6 20:45:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4669aeb

net-misc/electrum: remove older unstable versions

Package-Manager: portage-2.3.0

 net-misc/electrum/Manifest  |   2 -
 net-misc/electrum/electrum-2.3.3.ebuild | 144 --
 net-misc/electrum/electrum-2.5.4.ebuild | 152 
 3 files changed, 298 deletions(-)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index 117d6d3..6d7ae71 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -1,5 +1,3 @@
 DIST Electrum-2.1.1.tar.gz 1778994 SHA256 
958c7113072aa4a00a7e58a6e325d952fc35896a8678952cf6487636f74164e0 SHA512 
06277a810a6533cc800c6813f874a0a6e3a7e598bdd47b73a6edb440bc5efefc56edacc44c15349e3d0c72d350700c67025f43e5478b4ae838af57acc1c91f52
 WHIRLPOOL 
2bf9392ebbd6e7b63e4e1e12cf72356dae1e1605a3c543c3a174229247fbb280412df5fac37a195b815018b8425d88618be54d4f3b58e37273ba40776f6b3765
-DIST Electrum-2.3.3.tar.gz 1971994 SHA256 
72bac30a4d82c8fbc453fab2d1fa391af690884e1727088aa969d25891a9fc0d SHA512 
26c2d3eaece738a67546168d82a89c7bd5c71a146c678d186514626027d6edac4e985f08e5d6ce34217b91cefa88be0174f5f45e8caba5da4c50911780e37f1b
 WHIRLPOOL 
e10bf9d10c64e1950dd2bb48ce1fca2950acdeefd99483825751acbbf29806494cbb629ac1d51f24978a8a6a2df2ce73de2910380f8e26e4a0884bcc1f116406
-DIST Electrum-2.5.4.tar.gz 2114549 SHA256 
c0b00f440884fe3f087e842c44914e1c5f1139d0288ecb74ba6e1ff0b2504aa3 SHA512 
52ee11aa2265fea5b6302fb85724d27e47c049f81743854aeb7c2fe517f2b68628b67e1b44f543e64671b4b40731c532d45097f1d25954a6876bc3ee43cdb847
 WHIRLPOOL 
7322ca5c54ca99c42e2df118e5e792e3f0fee1359d0445a430ffa016b1edb890b81664f11b9532fe403c0c057212afc0057e3af455aff79b8e40f23aa11605ad
 DIST Electrum-2.6.4.tar.gz 5717600 SHA256 
2ab53b434206ed8ae72e9cadb22d44ef9ba720a7d052abe102f5d55cafbef866 SHA512 
7ae2bf70497b073d74232fd90e0677148b1697803183cc32ed10a34d3098d7228ed988e9c0708086410949f0d2cc1fd408d7f2ce62594e325ec9b84e42ff03b2
 WHIRLPOOL 
368c1d3c41dd9170451fa48261f557fd0b9f2b3ab30396b5177aa9c4632813ad2225eb4ce2982d290dc63296434a369dca2d01f28add52e11f4b77d76f129e4f
 DIST Electrum-2.7.15.tar.gz 1967697 SHA256 
1f237b394079ec5ced34ae09dc6b50472e51233dd1dfef580127168e293b9652 SHA512 
2f4f5181dcf0b98ce34348c296e50383b677db1fd14fa0052a0168a7c880d18d04ebb9a91dbb7316e09adeda275cc87b5457c8f0925b3635a1c769c81f31165c
 WHIRLPOOL 
b7a85fd9a4f7fdf5f64dc1182630b9d5b1bb033e49ebb00f1dd421d93c02f8fab8a0679de9a2fae074fdda5932fbfd261d5c8a2d6be3940821f18f82d46f2e28

diff --git a/net-misc/electrum/electrum-2.3.3.ebuild 
b/net-misc/electrum/electrum-2.3.3.ebuild
deleted file mode 100644
index 7f1acf8..
--- a/net-misc/electrum/electrum-2.3.3.ebuild
+++ /dev/null
@@ -1,144 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="ncurses?"
-
-inherit eutils distutils-r1 gnome2-utils
-
-MY_P="Electrum-${PV}"
-DESCRIPTION="User friendly Bitcoin client"
-HOMEPAGE="https://electrum.org/;
-SRC_URI="https://download.electrum.org/${PV}/${MY_P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-LINGUAS="ar_SA cs_CZ da_DK de_DE el_GR eo_UY es_ES fr_FR hu_HU hy_AM id_ID 
it_IT ja_JP ky_KG lv_LV nl_NL pl_PL pt_BR pt_PT ro_RO ru_RU sk_SK sl_SI ta_IN 
th_TH vi_VN zh_CN"
-
-IUSE="cli cosign +fiat greenaddress_it gtk3 ncurses qrcode +qt4 sync 
trustedcoin_com vkb"
-
-for lingua in ${LINGUAS}; do
-   IUSE+=" linguas_${lingua}"
-done
-
-REQUIRED_USE="
-   || ( cli gtk3 ncurses qt4 )
-   cosign? ( qt4 )
-   fiat? ( qt4 )
-   greenaddress_it? ( qt4 )
-   qrcode? ( qt4 )
-   sync? ( qt4 )
-   trustedcoin_com? ( qt4 )
-   vkb? ( qt4 )
-"
-
-RDEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/ecdsa-0.9[${PYTHON_USEDEP}]
-   dev-python/slowaes[${PYTHON_USEDEP}]
-   dev-python/pbkdf2[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/pyasn1[${PYTHON_USEDEP}]
-   dev-python/pyasn1-modules[${PYTHON_USEDEP}]
-   dev-python/tlslite[${PYTHON_USEDEP}]
-   dev-python/qrcode[${PYTHON_USEDEP}]
-   dev-python/PySocks[${PYTHON_USEDEP}]
-   dev-libs/protobuf[python,${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   gtk3? (
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   x11-libs/gtk+:3[introspection]
-   )
-   qrcode? ( media-gfx/zbar[python,v4l,${PYTHON_USEDEP}] )
-   qt4? (
-   dev-python/PyQt4[${PYTHON_USEDEP}]
-   )
-   ncurses? ( dev-lang/python )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-DOCS="RELEASE-NOTES"
-
-src_prepare() {
-   # Don't advise using PIP
-   sed -i "s/On 

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

2017-01-06 Thread Anthony G. Basile
commit: 4f80a3642631cdc2ce86f319824bdcbb4721cac9
Author: Luke Dashjr 
AuthorDate: Fri Jan  6 20:11:26 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jan  6 20:41:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f80a364

net-misc/electrum: 2.7.15

 net-misc/electrum/Manifest|   1 +
 net-misc/electrum/electrum-2.7.15.ebuild  | 158 ++
 net-misc/electrum/files/2.7.15-no-user-root.patch |  15 ++
 3 files changed, 174 insertions(+)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index 2e7eb6b..117d6d3 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -2,3 +2,4 @@ DIST Electrum-2.1.1.tar.gz 1778994 SHA256 
958c7113072aa4a00a7e58a6e325d952fc3589
 DIST Electrum-2.3.3.tar.gz 1971994 SHA256 
72bac30a4d82c8fbc453fab2d1fa391af690884e1727088aa969d25891a9fc0d SHA512 
26c2d3eaece738a67546168d82a89c7bd5c71a146c678d186514626027d6edac4e985f08e5d6ce34217b91cefa88be0174f5f45e8caba5da4c50911780e37f1b
 WHIRLPOOL 
e10bf9d10c64e1950dd2bb48ce1fca2950acdeefd99483825751acbbf29806494cbb629ac1d51f24978a8a6a2df2ce73de2910380f8e26e4a0884bcc1f116406
 DIST Electrum-2.5.4.tar.gz 2114549 SHA256 
c0b00f440884fe3f087e842c44914e1c5f1139d0288ecb74ba6e1ff0b2504aa3 SHA512 
52ee11aa2265fea5b6302fb85724d27e47c049f81743854aeb7c2fe517f2b68628b67e1b44f543e64671b4b40731c532d45097f1d25954a6876bc3ee43cdb847
 WHIRLPOOL 
7322ca5c54ca99c42e2df118e5e792e3f0fee1359d0445a430ffa016b1edb890b81664f11b9532fe403c0c057212afc0057e3af455aff79b8e40f23aa11605ad
 DIST Electrum-2.6.4.tar.gz 5717600 SHA256 
2ab53b434206ed8ae72e9cadb22d44ef9ba720a7d052abe102f5d55cafbef866 SHA512 
7ae2bf70497b073d74232fd90e0677148b1697803183cc32ed10a34d3098d7228ed988e9c0708086410949f0d2cc1fd408d7f2ce62594e325ec9b84e42ff03b2
 WHIRLPOOL 
368c1d3c41dd9170451fa48261f557fd0b9f2b3ab30396b5177aa9c4632813ad2225eb4ce2982d290dc63296434a369dca2d01f28add52e11f4b77d76f129e4f
+DIST Electrum-2.7.15.tar.gz 1967697 SHA256 
1f237b394079ec5ced34ae09dc6b50472e51233dd1dfef580127168e293b9652 SHA512 
2f4f5181dcf0b98ce34348c296e50383b677db1fd14fa0052a0168a7c880d18d04ebb9a91dbb7316e09adeda275cc87b5457c8f0925b3635a1c769c81f31165c
 WHIRLPOOL 
b7a85fd9a4f7fdf5f64dc1182630b9d5b1bb033e49ebb00f1dd421d93c02f8fab8a0679de9a2fae074fdda5932fbfd261d5c8a2d6be3940821f18f82d46f2e28

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

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

2017-01-06 Thread Mart Raudsepp
commit: 67efb9ef3be1b7e5b552610302a2f9a1f75aa0a2
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jan  6 20:20:51 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jan  6 20:21:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67efb9ef

dev-python/pygobject: Drop dead python3_3 implementation from PYTHON_COMPAT

This was removed in earlier version, but the bump happened on the
same date as the global removal, so it ended up reappearing.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-python/pygobject/pygobject-3.22.0.ebuild 
b/dev-python/pygobject/pygobject-3.22.0.ebuild
index baa6591..fcbbc19 100644
--- a/dev-python/pygobject/pygobject-3.22.0.ebuild
+++ b/dev-python/pygobject/pygobject-3.22.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
 GNOME2_LA_PUNT="yes"
-PYTHON_COMPAT=( python2_7 python3_{3,4,5} )
+PYTHON_COMPAT=( python2_7 python3_{4,5} )
 
 inherit eutils gnome2 python-r1 virtualx
 



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

2017-01-06 Thread Mike Pagano
commit: 6e60e9226249e1c450cfdfa506df34805ecc
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jan  6 20:24:53 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jan  6 20:25:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e60e922

sys-kernel/vanilla-sources: Linux patches 4.9.1, 4.8.16 and 4.4.40. Remove old

Package-Manager: portage-2.3.0

 sys-kernel/vanilla-sources/Manifest  | 5 +++--
 .../{vanilla-sources-4.4.39.ebuild => vanilla-sources-4.4.40.ebuild} | 2 +-
 .../{vanilla-sources-4.8.15.ebuild => vanilla-sources-4.8.16.ebuild} | 2 +-
 .../{vanilla-sources-4.9.0.ebuild => vanilla-sources-4.9.1.ebuild}   | 2 +-
 4 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index 8e7d065..05471d9 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -15,5 +15,6 @@ DIST patch-3.18.46.xz 1065728 SHA256 
8329da1b7a58c40d0eff75924bb6e1685937f552934
 DIST patch-3.2.84.xz 1649140 SHA256 
6ba37e79fc13c7c62ac368258731fe6111f194b5ae279f742b042aaf2ca73eb9 SHA512 
0ac685d6a2434cefaf4e099aeb39d5bf5dced6cf5be1140225e14e960744e8b78faf64957cdda6c53b6e01b9578a3bad8b9f745e9cb2a89b89aa7400223b913f
 WHIRLPOOL 
df6fb1421189b47d300ef7bc77ce61b245860d30e901bc7d918463c78ed5452e7d0668a8e30eb0d84238b714b7454c3026769e2000dc1378074e0cadc402cca4
 DIST patch-3.4.113.xz 1362096 SHA256 
d5492eeaadcf12aaad471011066e447907999035c26368da8e4f82b1871ef03a SHA512 
cd212cb2c2d6fb911571472466027c7e502277f7af2426050a5afcd4c7799920e48414190b8a8a039f88d85bbf0d9e164c7d8c45982bf51f7567da9304137688
 WHIRLPOOL 
bc88441d583b9ed2f315b6ed809c168cb00af5a3c1f91fd1e4bd651a5f21cc69fd9343460976b5707916ec992b3e7a2f519953ce1bbc55fbb3290237ec4b44a3
 DIST patch-4.1.37.xz 930300 SHA256 
26d28f51b3c2fb5126ee458f133e8d3b981f559201608b979c877c3b3e2a2734 SHA512 
f1fcdf987042325058a942705f286e0442e99d35fd1ee3d5107d66b0f703f5c659beb7b53ccd7273c33a506a364f95b9e4e7a5e452b8da126e3186247742b63c
 WHIRLPOOL 
2b3d61eee5f26e553fb0ce0d21ca1e6ebc0dee7f0a031f6b44460957b2f06cee1e4fd90b5021345bf45c4b0e873fe8113e6d94fba8184d9841af07252a2b5383
-DIST patch-4.4.39.xz 861392 SHA256 
fc2b60d221aeaf3eafec4f36f299e4002be81da85117c3f59963fdcb6facb929 SHA512 
c4ab325bb4d49bc3fd12d55bb3c98aecdcd165aee6146afe4548607188bcb4f3ca18c8bf0c6f77fdac79b2c03c8ef369c4ac1ee9ed281362e54ab1e6298c48da
 WHIRLPOOL 
69b078e290f833752a0d0daa351828367e823f6a4762b52d69cfc2394334dfb106988f0a50d38cb881999cdc0abd62ed5ec21428819901670a295cfcc8fb63e8
-DIST patch-4.8.15.xz 268816 SHA256 
cdeff3a6e0dc3d6189d1b1d4d6318f0942b9a28409491cf65592879e4c42b1f7 SHA512 
d819c86f3fe93ee1d083fdce954ae06a683a22e8b0864da170714c5230c4c2fdecc29270194b1ad8a715b836b493141c8ff2c09e76a84426b7a89ebc31fb9e01
 WHIRLPOOL 
36ce7b4f47cb0f86991794f9e8df0160c8f38b1153d413082636f31edba2bcbbff2c5584062800b48c9471dbcb77f825f58d509f4641a9e48a1d396216860155
+DIST patch-4.4.40.xz 875404 SHA256 
0dc651926071934baeffd6bb0678f549af3af35f06e6484311de955e3202519f SHA512 
1d444b9a88cca2bd3d8d9266465f273d2831ee416477a49e416090d078f3f8793f21c9a35c4860ac062356e7ae4f45d50046316e12362b28916c6f1dc78a
 WHIRLPOOL 
dfef4f13f23e5ff55db0e75fc657a9a93f60d73f71a99fe2eabd740e2a6718a98cb5761c9bd8d3fc14971ceacc6b750717e442c23385d7dd182fd3b916a53fb0
+DIST patch-4.8.16.xz 296024 SHA256 
e9f2af4023ddf126045599805053efa804b35e6b3e86f05b6301a01bf8735bb8 SHA512 
b59ce2e0bade676845da2d29eabbf0a596fa4ebfb3b0459fea94d5443b9a0edc4cacc3868dbde1c16787a9097a53822d01f80dd9610a0194d734a4812a66acb1
 WHIRLPOOL 
2a307061de86dbd1613d5aa369605d388ff28087979a232567db651d84a9f39fd19b316a9575bd457672afa5b3663bff96fd5baf1fae8a910ef5b1371214b8d9
+DIST patch-4.9.1.xz 31772 SHA256 
db6dfd7c38a9b6a62052d7a60c6fc5818e07fb2d8fc758ba576e87a8b150e305 SHA512 
d888c88aaeed68351e9e011268abcb7c51253592ddbe50d6605a324f89e4c046f2c1c7c0c698cadb9335f90690e3b5e480602e96864c83571cd26b73cb635750
 WHIRLPOOL 
aaa3a8f1ace9b00e54b9bf3b22c3d698e9dd4da5dd85340651bb3979c5b633d1f50b38ef6af66550afbf83a9e792cfc85f1b7fe97f17d35b50a052593b6ef41b

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.4.39.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.4.40.ebuild
similarity index 90%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.4.39.ebuild
rename to sys-kernel/vanilla-sources/vanilla-sources-4.4.40.ebuild
index 88af46c..6aed91d 100644
--- a/sys-kernel/vanilla-sources/vanilla-sources-4.4.39.ebuild
+++ b/sys-kernel/vanilla-sources/vanilla-sources-4.4.40.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/sys-kernel/vanilla-sources/vanilla-sources-4.8.15.ebuild 
b/sys-kernel/vanilla-sources/vanilla-sources-4.8.16.ebuild
similarity index 90%
rename from sys-kernel/vanilla-sources/vanilla-sources-4.8.15.ebuild
rename to 

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

2017-01-06 Thread Mart Raudsepp
commit: eea5dce22394ffd888a87d5755a213f939d09a55
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jan  6 20:23:25 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jan  6 20:23:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eea5dce2

dev-vcs/notify-webhook: Drop dead python3_3 implementation from PYTHON_COMPAT

Acked-by: Robin H. Johnson  gentoo.org>
Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild 
b/dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild
index 8441e7f..6170bd6 100644
--- a/dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild
+++ b/dev-vcs/notify-webhook/notify-webhook-0.1.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-PYTHON_COMPAT=( python3_{3,4,5} pypy3 )
+PYTHON_COMPAT=( python3_{4,5} pypy3 )
 
 DESCRIPTION="Git post-receive web hook notifier in Python."
 HOMEPAGE="https://github.com/metajack/notify-webhook;



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Text_Highlighter/

2017-01-06 Thread Michael Orlitzky
commit: a1a79b178e30a746a16538f9f8e274e8173738cd
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 20:09:22 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 20:09:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1a79b17

dev-php/PEAR-Text_Highlighter: new revision sans the php-pear-r1 eclass.

This new revision drops php-pear-r1.eclass, and in the process fixes a
few bugs. We no longer install all of the development junk, which
eliminates the /usr/bin/generate executable (used to generate the PHP
classes), and avoids a file collision with app-accessibility/julius.
We also now store the documentation in the correct location.

One extraneous dependency was removed, and another undocumented one
added.

Gentoo-Bug: 544514

Package-Manager: portage-2.3.0

 .../PEAR-Text_Highlighter-0.7.3-r1.ebuild  | 34 ++
 .../PEAR-Text_Highlighter-0.7.3.ebuild | 16 --
 2 files changed, 34 insertions(+), 16 deletions(-)

diff --git 
a/dev-php/PEAR-Text_Highlighter/PEAR-Text_Highlighter-0.7.3-r1.ebuild 
b/dev-php/PEAR-Text_Highlighter/PEAR-Text_Highlighter-0.7.3-r1.ebuild
new file mode 100644
index ..d510d70
--- /dev/null
+++ b/dev-php/PEAR-Text_Highlighter/PEAR-Text_Highlighter-0.7.3-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN="${PN/PEAR-/}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A package for syntax highlighting"
+HOMEPAGE="http://pear.php.net/package/${MY_PN};
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="PHP-3.01"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# There is a documented dependency on XML_Parser, but that's only needed
+# for development -- if you want to *generate* the PHP class files. The
+# ones in the release are already pre-generated. The dependency on the
+# XML_Serializer, on the other hand, is not documented but is requird
+# by the XML output renderer.
+RDEPEND="dev-lang/php
+   dev-php/PEAR-PEAR
+   dev-php/PEAR-XML_Serializer"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+   dodoc README TODO
+
+   insinto /usr/share/php
+   doins -r Text
+}

diff --git a/dev-php/PEAR-Text_Highlighter/PEAR-Text_Highlighter-0.7.3.ebuild 
b/dev-php/PEAR-Text_Highlighter/PEAR-Text_Highlighter-0.7.3.ebuild
deleted file mode 100644
index 1ac7a8c..
--- a/dev-php/PEAR-Text_Highlighter/PEAR-Text_Highlighter-0.7.3.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit php-pear-r1
-
-DESCRIPTION="A package for syntax highlighting"
-LICENSE="PHP-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-php/PEAR-XML_Parser
-   dev-php/PEAR-Console_Getopt"



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

2017-01-06 Thread Sven Wegener
commit: c2d2fd644a043b9b0a298d8d90409c622780e9f0
Author: Sven Wegener  gentoo  org>
AuthorDate: Fri Jan  6 19:47:44 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Fri Jan  6 19:52:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2d2fd64

net-irc/irssi: Version bump

Package-Manager: Portage-2.3.0, Repoman-2.3.1

 net-irc/irssi/Manifest   |  1 +
 net-irc/irssi/irssi-1.0.0.ebuild | 58 
 2 files changed, 59 insertions(+)

diff --git a/net-irc/irssi/Manifest b/net-irc/irssi/Manifest
index e8d3ce6..a68d2c4 100644
--- a/net-irc/irssi/Manifest
+++ b/net-irc/irssi/Manifest
@@ -1,2 +1,3 @@
 DIST irssi-0.8.20.tar.xz 1007252 SHA256 
7882c4e821f5aac469c5e69e69d7e235f4986101285c675e81a9a95bfb20505a SHA512 
ace39022a3e7461fc33cbd0e8c6635aa84c67fc4f6364b66747f860a4538a4b17bbd677e342fbfa9ae7e97783745f8d7dab350a27330ce14f1702386231296b1
 WHIRLPOOL 
3a50767aebed4dbd7fea7639af688cbc6cd2b57a7bae9ab398d277471dbea3491d918c46cf0c05ff48db69b79117c0d733dfe06c2bc0b9bbfce699eb0fdcff37
 DIST irssi-0.8.21.tar.xz 1007524 SHA256 
e433063b8714dcf17438126902c9a9d5c97944b3185ecd0fc5ae25c4959bf35a SHA512 
110934ab85c8574fc76bce367c58378e28603898e63a5014a72170ffe441ffe3dbda432531e899176f5c4126f47d929a3a01a2f87bcacbfe0ba4d6d8cb31e642
 WHIRLPOOL 
8426a82cbf5b488c1fd9497fdeb69ee98d211aa9775560b9d6efc9645d74926fff6b627c2f681642a0df10e83f68dc4d6403d706faaf677391005af5bdccf143
+DIST irssi-1.0.0.tar.xz 1026116 SHA256 
6a8a3c1fc6a021a2c02a693877b2e19cbceb3eccd78fce49e44f596f4bae4fb8 SHA512 
5846fa3fbb0a3f457cdea37b70022ecf31acbcc1be62d090d28a292c305657f0d8efa1ca59e241254a5bfad57e9b78d5ef2553252ea67e1ba95feb87d8ab3ecf
 WHIRLPOOL 
5de172c54f91fc6e19263fe744ba176cb3404b7d3a8b3c64746e0e097a2c0091c19916e60d162124421960c69d6c3a3902a59cffc05a6615a39456fc9c82194a

diff --git a/net-irc/irssi/irssi-1.0.0.ebuild b/net-irc/irssi/irssi-1.0.0.ebuild
new file mode 100644
index ..2d8d161
--- /dev/null
+++ b/net-irc/irssi/irssi-1.0.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils perl-module
+
+# Keep for _rc compability
+MY_P="${P/_/-}"
+
+DESCRIPTION="A modular textUI IRC client with IPv6 support"
+HOMEPAGE="http://irssi.org/;
+SRC_URI="https://github.com/irssi/irssi/releases/download/${PV/_/-}/${MY_P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+perl selinux socks5 +proxy libressl"
+
+CDEPEND="sys-libs/ncurses:0=
+   >=dev-libs/glib-2.6.0
+   !libressl? ( dev-libs/openssl:= )
+   libressl? ( dev-libs/libressl:= )
+   perl? ( dev-lang/perl:= )
+   socks5? ( >=net-proxy/dante-1.1.18 )"
+
+DEPEND="
+   ${CDEPEND}
+   virtual/pkgconfig"
+
+RDEPEND="
+   ${CDEPEND}
+   selinux? ( sec-policy/selinux-irc )
+   perl? ( !net-im/silc-client )"
+
+RESTRICT="test"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   econf \
+   --with-perl-lib=vendor \
+   --enable-true-color \
+   $(use_with proxy) \
+   $(use_with perl) \
+   $(use_with socks5 socks)
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   use perl && perl_delete_localpod
+
+   prune_libtool_files --modules
+
+   dodoc AUTHORS ChangeLog README.md TODO NEWS
+}



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-File_Archive/

2017-01-06 Thread Michael Orlitzky
commit: 2edfb17cc03930ec2e72fbdb24ed3281c3526d80
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 19:39:31 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 19:39:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2edfb17c

dev-php/PEAR-File_Archive: remove unused PEAR-File_Archive-1.5.4-r1.

Package-Manager: portage-2.3.0

 dev-php/PEAR-File_Archive/Manifest |  1 -
 .../PEAR-File_Archive-1.5.4-r1.ebuild  | 18 --
 2 files changed, 19 deletions(-)

diff --git a/dev-php/PEAR-File_Archive/Manifest 
b/dev-php/PEAR-File_Archive/Manifest
index 6924510..8ed22ad 100644
--- a/dev-php/PEAR-File_Archive/Manifest
+++ b/dev-php/PEAR-File_Archive/Manifest
@@ -1,2 +1 @@
-DIST File_Archive-1.5.4.tgz 58042 SHA256 
b3cbbd9387a733a1b574a31176c71bd2a0a4b4fb842e2d4e22f816ec98c8c00d SHA512 
d3f22b39ece7428e055b62834df546681917caf82340afac2113915985172838d14789d0fc0a35eff50edd2f618877b941d888b664071f6b6ab7561edf21f42e
 WHIRLPOOL 
ca07f298199e9870927e9448eead59ea247fe7ecb1e614ed2756b00eccde2fdace4a11757900e6c191b90f05d9db08b76ce9ea436c7c0c04e0c157121843ad42
 DIST File_Archive-1.5.5.tgz 62598 SHA256 
d739ca1d3cc52f7e5b8c46cfe2233afb11dee0e145e57754c0eaba50ffb8bde1 SHA512 
528449e59e0853bbd73e2d7cb14cd11748e68abe889781f0476c6206e0d15e1c4b0b457172d88e73f7bb31cde3b6612ab3e86d8862322e0921e00db331f1d1e1
 WHIRLPOOL 
e0899619ee8b7234dc0b2db29ac7201f8817d75b69a66b5d49804db6da738bde2349ca4d6ca70255d282fa3cdfd5d9dbf75eec6b7b13e47f7b908653d200f431

diff --git a/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.4-r1.ebuild 
b/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.4-r1.ebuild
deleted file mode 100644
index 2110e39..
--- a/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.4-r1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit php-pear-r1
-
-DESCRIPTION="Lets you manipulate easily the tar, gz, tgz, bz2, tbz, zip, ar 
(or deb) files"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="minimal"
-RDEPEND="dev-lang/php[bzip2,zlib]
-   dev-php/PEAR-MIME_Type
-   !minimal? ( dev-php/PEAR-Mail_Mime
-   dev-php/PEAR-Mail
-   >=dev-php/PEAR-Cache_Lite-1.5.0 )"



[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-Date/

2017-01-06 Thread Michael Orlitzky
commit: de3597decd7561790af652471744272ec1e1e3de
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 19:12:19 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 19:39:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de3597de

dev-php/PEAR-Date: remove unused PEAR-Date-1.5.0_alpha1.

Package-Manager: portage-2.3.0

 dev-php/PEAR-Date/Manifest  |  1 -
 dev-php/PEAR-Date/PEAR-Date-1.5.0_alpha1.ebuild | 16 
 2 files changed, 17 deletions(-)

diff --git a/dev-php/PEAR-Date/Manifest b/dev-php/PEAR-Date/Manifest
index bf99c9c..decf268 100644
--- a/dev-php/PEAR-Date/Manifest
+++ b/dev-php/PEAR-Date/Manifest
@@ -1,3 +1,2 @@
 DIST Date-1.4.7.tgz 55754 SHA256 
5249ae74d34b226d9765ae89889778d2fb73c5379e498021a79a18767547ed8f SHA512 
b9850ddde1c7ab1fdc8d04f20a8bac6b2933f76115dfbafc451ea82fed6c29b782d647db52997412fba69fbbed97ee9329bb383a42bc94eba81e2a2504cedb8e
 WHIRLPOOL 
efa11ba7740fb6a62563691d523f16642ded5c479d3747c48a4f92cc8cf9ca36348d2bbc1392fee239021493f92dec9f25a13b68e90f5a77f76eec07fe253727
-DIST Date-1.5.0a1.tgz 216189 SHA256 
3a80f205fe708dae240650a4a02cbb38a52b66d3ea055496b1758d9c5b7a6f25 SHA512 
ebef2d037b1eee362cef4ad3998f2c032abd65a8290b39f948c680b1747e851417eb5905408f38d29f0d0d7c6089b8acb1c4a0779a1c81123b92a33847192e72
 WHIRLPOOL 
a6f979a8293a21255d7b0f0409ac646ae936ec98088644a54a22c607a994358177c9b1b4afaf24c9b74bb4760e684c7b46023267110e59e12e1524a884c0219b
 DIST Date-1.5.0a4.tgz 222378 SHA256 
16cd2db407f5e0767191878b9dc2383947114d510ded80da0466bbd7f5378295 SHA512 
91f80cbb78b8cf24fdc2e4423e7e018da736507136bcf68a61dc8a0f130d44f5937e1ddf39b45189cb08e0d17a4c0295d407920a2b25ba8029517e96a071b65b
 WHIRLPOOL 
85b60b2cfc413df72ef27f7a1b58e7694afd932152bd8a051361d3f1114b9065fb12cad0c0934ad92f1e29c8ff1f6e67a31a9cb60abb07a9263397bc53e5c754

diff --git a/dev-php/PEAR-Date/PEAR-Date-1.5.0_alpha1.ebuild 
b/dev-php/PEAR-Date/PEAR-Date-1.5.0_alpha1.ebuild
deleted file mode 100644
index 5f4abf3..
--- a/dev-php/PEAR-Date/PEAR-Date-1.5.0_alpha1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-inherit php-pear-r1
-
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86"
-
-DESCRIPTION="Date and Time Zone classes"
-LICENSE="BSD"
-SLOT="0"
-IUSE=""
-
-DEPEND="|| ( 

[gentoo-commits] repo/gentoo:master commit in: dev-php/PEAR-File_Archive/

2017-01-06 Thread Michael Orlitzky
commit: eaf846858caab2fd26506b48c63fc9f14cd56172
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jan  6 19:35:02 2017 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jan  6 19:39:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaf84685

dev-php/PEAR-File_Archive: new EAPI=6 revision sans php-pear-r1.eclass.

Package-Manager: portage-2.3.0

 .../PEAR-File_Archive-1.5.5-r1.ebuild  | 34 ++
 .../PEAR-File_Archive-1.5.5.ebuild | 18 
 2 files changed, 34 insertions(+), 18 deletions(-)

diff --git a/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.5-r1.ebuild 
b/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.5-r1.ebuild
new file mode 100644
index ..81b3e4f
--- /dev/null
+++ b/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.5-r1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_PN="${PN/PEAR-/}"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Easily manipulate archives in PHP"
+HOMEPAGE="http://pear.php.net/package/${MY_PN};
+SRC_URI="http://download.pear.php.net/package/${MY_P}.tgz;
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="minimal"
+
+RDEPEND="dev-lang/php[bzip2,zlib]
+   dev-php/PEAR-MIME_Type
+   dev-php/PEAR-PEAR
+   !minimal? (
+   dev-php/PEAR-Mail_Mime
+   dev-php/PEAR-Mail
+   dev-php/PEAR-Cache_Lite
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_install() {
+   dodoc README
+
+   insinto /usr/share/php
+   doins -r File
+}

diff --git a/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.5.ebuild 
b/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.5.ebuild
deleted file mode 100644
index 2110e39..
--- a/dev-php/PEAR-File_Archive/PEAR-File_Archive-1.5.5.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit php-pear-r1
-
-DESCRIPTION="Lets you manipulate easily the tar, gz, tgz, bz2, tbz, zip, ar 
(or deb) files"
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="minimal"
-RDEPEND="dev-lang/php[bzip2,zlib]
-   dev-php/PEAR-MIME_Type
-   !minimal? ( dev-php/PEAR-Mail_Mime
-   dev-php/PEAR-Mail
-   >=dev-php/PEAR-Cache_Lite-1.5.0 )"



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

2017-01-06 Thread Mart Raudsepp
commit: 41d84bfa6ed26969bfa82ee2ac593ce1b1841f4d
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jan  6 19:17:33 2017 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jan  6 19:20:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41d84bfa

profiles: mask x11-libs/gtk+:1 for removal

Gentoo-bug: 604862

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 03d7321..c42a73c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Mart Raudsepp  (06 Jan 2017)
+# No releases of this API version since April 2001, abandoned
+# in favour of gtk+:2 for 14 years.
+# Masked for removal in 30 days. Bug 604862.
+x11-libs/gtk+:1
+
 # Robin H. Johnson  (05 Jan 2017)
 # Masking for testing
 =app-emulation/ganeti-2.16*



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

2017-01-06 Thread Michael Palimaka
commit: 50d553026b956e4f4c677ba2acc34729e9bbc6f5
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Jan  6 18:47:47 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Jan  6 18:47:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50d55302

app-misc/asciinema: don't forget to die

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-misc/asciinema/asciinema-1.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/asciinema/asciinema-1.3.0.ebuild 
b/app-misc/asciinema/asciinema-1.3.0.ebuild
index 1f7c2d9..6ccef2c 100644
--- a/app-misc/asciinema/asciinema-1.3.0.ebuild
+++ b/app-misc/asciinema/asciinema-1.3.0.ebuild
@@ -27,7 +27,7 @@ python_prepare_all() {
distutils-r1_python_prepare_all
 
# obsolete, already removed in upstream git
-   rm asciinema/requests_http_adapter.py
+   rm asciinema/requests_http_adapter.py || die
 }
 
 python_test() {



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

2017-01-06 Thread Michael Palimaka
commit: d167fb5d4cb353d3c5d17baf5330ade17b87d9a7
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Fri Jan  6 18:26:26 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Jan  6 18:45:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d167fb5d

app-misc/asciinema: add python3_5 support

Build succeeds, tests pass, upload works.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-misc/asciinema/asciinema-1.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/asciinema/asciinema-1.3.0.ebuild 
b/app-misc/asciinema/asciinema-1.3.0.ebuild
index 4fa5b5e..1f7c2d9 100644
--- a/app-misc/asciinema/asciinema-1.3.0.ebuild
+++ b/app-misc/asciinema/asciinema-1.3.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
 
-PYTHON_COMPAT=( python3_4)
+PYTHON_COMPAT=( python{3_4,3_5} )
 inherit distutils-r1
 
 DESCRIPTION="Command line recorder for asciinema.org service"



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

2017-01-06 Thread Alon Bar-Lev
commit: 6aeab832da7eb47780cf97b610225ebc131684c0
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Fri Jan  6 10:13:58 2017 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Fri Jan  6 10:14:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6aeab832

dev-util/mingw64-runtime: version bump

Package-Manager: portage-2.3.0

 dev-util/mingw64-runtime/Manifest   | 2 +-
 .../{mingw64-runtime-5.0.0.ebuild => mingw64-runtime-5.0.1.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/mingw64-runtime/Manifest 
b/dev-util/mingw64-runtime/Manifest
index 8003331..72d1657 100644
--- a/dev-util/mingw64-runtime/Manifest
+++ b/dev-util/mingw64-runtime/Manifest
@@ -4,4 +4,4 @@ DIST mingw-w64-v3.2.0.tar.bz2 7053254 SHA256 
78a0de610829a1145ae12c4a29603344963
 DIST mingw-w64-v4.0.1.tar.bz2 10803072 SHA256 
89d2524a071b6337dfd9f3b6e6f46d8002b2633f928c833dc4e873a13e045b17 SHA512 
a216a09a460c56c29208aee1e1cdb428e856f9c8d59dd399723ccf6d549368f0a13a6aacb046d211ddec7c0a1f1c227d5dd599e4f0c33ba4b6d9c92bd0a7fa1b
 WHIRLPOOL 
e021031e2820e918fe0f291624335fadc08641e811f6cf19d45b1586d2ac96c6bff4fb936bcd154a7b48711db9f5faabd27bfdced3a38073b4a20c8471a91915
 DIST mingw-w64-v4.0.4.tar.bz2 10812375 SHA256 
89356a0aa8cf9f8b9dc8d92bc8dd01a131d4750c3acb30c6350a406316c42199 SHA512 
06de6b592f776676184a9c50c63eb105c82a912965dee5d8217f9b5b325e0258c188f5d7d5e28aaeacf7bad44ce5d36bd837b9f1cbb91358754787738fb15146
 WHIRLPOOL 
ff557b2aff821c1833ab6d5fdade4f256b71cb37e84a476d3e5a4cfe13f60db68c336d7e72f6e3eb13b3d127e1bac2cbfdde160ea2f7016867f10efa6a02914b
 DIST mingw-w64-v4.0.6.tar.bz2 10853871 SHA256 
0c407394b0d8635553f4fbca674cdfe446aac223e90b4010603d863e4bdd015c SHA512 
c9ec75b10fe40d80e620b569ca8f452b1f78e9e4dd45ad087a2b69297dc661d06aa30255ea310786f28c042256c35a1d3e709ff7ea8bc19e7f4ea914c120f020
 WHIRLPOOL 
69015094c14f66e1102d343b220eb17cc245f24a66c1a39ffced2f155cae84315eabb9a843bd9aa8e7874a12e34297a4f7cfff06447972a17beecf070bc70b08
-DIST mingw-w64-v5.0.0.tar.bz2 11193007 SHA256 
e41d8ca739e22b4215c8ebe99ed2fc398c734cae73877f3143c394661b096d08 SHA512 
21e3029701a88cf11f0649f7876ab0c3ef04e14cb3221876854dc01d09e627dc3502f1d71a5eb8b0378ff37aa03a0e8080b72a1907ebd47857952fc145ac797a
 WHIRLPOOL 
a761a78db5ba2c0ec3ea017f1bb95f69d7e90478703dbc8cb566424ec8703995aa3201b83409216aad105512cd3583ea0198985a48e171f369d4e304481ec562
+DIST mingw-w64-v5.0.1.tar.bz2 9160780 SHA256 
9bb5cd7df78817377841a63555e73596dc0af4acbb71b09bd48de7cf24aeadd2 SHA512 
73b746f227930597a97f117cf9f9aa19ddabb6090907cf6850864cf30089e5d6e1cd07e257b3b0b9ae0ac762cb24a6f5acf7336c9be48760c975ac038569dcfa
 WHIRLPOOL 
26f3e52a5fb0a0332861a919d2b913dcb3e8dceb26bb174e85830282229823366918132c5db22a5d294167ba3c54c6fd461b663ff0ab92373f46519149817e98

diff --git a/dev-util/mingw64-runtime/mingw64-runtime-5.0.0.ebuild 
b/dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild
similarity index 98%
rename from dev-util/mingw64-runtime/mingw64-runtime-5.0.0.ebuild
rename to dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild
index 3b8b4c2..4fb06ef 100644
--- a/dev-util/mingw64-runtime/mingw64-runtime-5.0.0.ebuild
+++ b/dev-util/mingw64-runtime/mingw64-runtime-5.0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



[gentoo-commits] proj/tinderbox-cluster-www:master commit in: python/tbc_www/

2017-01-06 Thread Magnus Granberg
commit: 11d166a0b90d591b1e18efac99d1b729c6d30678
Author: Magnus Granberg  gentoo  org>
AuthorDate: Fri Jan  6 18:04:01 2017 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Fri Jan  6 18:04:01 2017 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=11d166a0

fix ame 'adict' is not defined line 273

 python/tbc_www/views.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/python/tbc_www/views.py b/python/tbc_www/views.py
index 305ed8c..c272c50 100644
--- a/python/tbc_www/views.py
+++ b/python/tbc_www/views.py
@@ -270,7 +270,7 @@ def new_logs(request):
adict2['Fail'] = BL.Fail
adict2['SummeryText'] = BL.SummeryText
if BL.Fail:
-   adict['FI'] = fail_status(BL.BuildLogId)
+   adict2['FI'] = fail_status(BL.BuildLogId)
alist.append(adict2)
TmpDict['BL_tmp'] = alist
TmpDict['QA_tmp'] = BuildLogsQa.objects.filter(BuildLogId__New = True)



[gentoo-commits] proj/tinderbox-cluster-www:master commit in: python/templates/pages/categories/packages/versions/ebuild/, ...

2017-01-06 Thread Magnus Granberg
commit: b7a478c798f525b39fc52b4b69d3863565cac377
Author: Magnus Granberg  gentoo  org>
AuthorDate: Fri Jan  6 18:00:35 2017 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Fri Jan  6 18:00:35 2017 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=b7a478c7

add categories, logs and build_req

 python/templates/includes/frontpage/new_qa |  10 +
 python/templates/pages/build_req/index.html|  16 ++
 python/templates/pages/categories/index.html   |  61 ++
 .../templates/pages/categories/packages/index.html |  63 ++
 .../categories/packages/versions/ebuild/index.html |  75 +++
 .../pages/categories/packages/versions/index.html  | 233 +
 python/templates/pages/logs/all/build/index.html   | 103 +
 python/templates/pages/logs/build/index.html   | 114 ++
 .../pages/logs/build/submitbug/index.html  |   8 +
 python/templates/pages/logs/index.html |  42 
 10 files changed, 725 insertions(+)

diff --git a/python/templates/includes/frontpage/new_qa 
b/python/templates/includes/frontpage/new_qa
new file mode 100644
index 000..5b3607b
--- /dev/null
+++ b/python/templates/includes/frontpage/new_qa
@@ -0,0 +1,10 @@
+
+  {% for QA in QA_tmp %}
+
+  
+  {{ QA.BuildLogId.EbuildId.PackageId.CategoryId.Category }}/{{ 
QA.BuildLogId.EbuildId.PackageId.Package }}::{{ 
QA.BuildLogId.EbuildId.PackageId.RepoId.Repo }}
+  
+  {{ QA.SummeryText|truncatewords:3 
}}
+
+  {% endfor %}
+

diff --git a/python/templates/pages/build_req/index.html 
b/python/templates/pages/build_req/index.html
new file mode 100644
index 000..979921c
--- /dev/null
+++ b/python/templates/pages/build_req/index.html
@@ -0,0 +1,16 @@
+{% extends "layout/base.html" %}
+{% block content %}
+
+  
+
+  
+  New Build Requst On Packages
+
+  
+  
+
+  {% include "includes/frontpage/new_build_req" %}
+
+  
+
+{% endblock %}

diff --git a/python/templates/pages/categories/index.html 
b/python/templates/pages/categories/index.html
new file mode 100644
index 000..f9463e9
--- /dev/null
+++ b/python/templates/pages/categories/index.html
@@ -0,0 +1,61 @@
+{% extends "layout/base.html" %}
+{% block content %}
+
+  
+
+  
+  Home
+  Packages
+
+
+Packages
+
+
+  
+
+  
+Browse Categories
+  
+  
+
+{% for C_list in CM_tmp %}
+  {{ 
C_list.letter }}
+  {% for CM in C_list.CM_list %}
+  {{CM.Category }}
+  {% endfor %}
+   {% endfor %}
+
+  
+
+  
+  
+
+  
+Update Feeds
+  
+  
+
+  
+  Added Packages
+
+
+  
+  Updated Packages
+
+
+  
+  Newly Stable Packages
+
+
+  
+  Keyworded Packages
+
+  
+
+  
+
+
+
+  
+
+{% endblock %}

diff --git a/python/templates/pages/categories/packages/index.html 
b/python/templates/pages/categories/packages/index.html
new file mode 100644
index 000..0e5678d
--- /dev/null
+++ b/python/templates/pages/categories/packages/index.html
@@ -0,0 +1,63 @@
+{% extends "layout/base.html" %}
+{% block content %}
+
+  
+
+  
+  Home
+  Packages
+  {{ C.CategoryId.Category }}
+
+
+
+  
+
+  
+  {{ C.CategoryId.Category }}
+
+  
+  
+
+  {{ C.Descriptions }}
+
+  
+
+
+
+
+  
+
+
+
+  
+All packages
+  
+  
+{% for PM in PM_tmp %}
+  
+  {{ PM.PackageId.Package }}
+  {{ PM.Descriptions }}
+  
+{% endfor %}
+
+  
+
+  
+  
+
+  
+Statistics
+  
+  
+{{ PM_tmp|length }} Packages
+  
+
+  
+
+
+
+  
+
+{% endblock %}

diff --git 
a/python/templates/pages/categories/packages/versions/ebuild/index.html 
b/python/templates/pages/categories/packages/versions/ebuild/index.html
new file mode 100644
index 000..49ad3e5
--- /dev/null
+++ b/python/templates/pages/categories/packages/versions/ebuild/index.html
@@ -0,0 +1,75 @@
+{% extends "layout/base.html" %}
+{% block content %}
+
+  
+{{ E.PackageId.CategoryId.Category }}/{{ E.PackageId.Package }}
+
+  {% for EM in EM_tmp %}
+
+  
+{{ E.PackageId.Package }}-{{ E.Version }}::{{ E.PackageId.RepoId.Repo }}
+Build
+  
+  
+  {% for K in EK_tmp %}
+{% if K.EbuildId.EbuildId == E.EbuildId and 
K.KeywordId.Keyword != '*' %}
+  {% if K.Status == 'Stable' %}{{ K.KeywordId.Keyword }}{% endif %}
+  {% if K.Status == 'Unstable' %}{{ K.KeywordId.Keyword }}{% endif %}
+  {% if K.Status == 'Negative' %}{{ K.KeywordId.Keyword }}{% 
endif %}
+{% 

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

2017-01-06 Thread Brian Dolbec
commit: 98f930d4d490dd0daf87e9b4c8192a3ad34a624d
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Jan  6 17:51:11 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 17:58:59 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=98f930d4

cnf/make.conf.example: Whitespace cleanup

 cnf/make.conf.example | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/cnf/make.conf.example b/cnf/make.conf.example
index 1df3093..a3b09b5 100644
--- a/cnf/make.conf.example
+++ b/cnf/make.conf.example
@@ -22,7 +22,7 @@
 # Example:
 #USE="X gtk gnome -alsa"
 
-# Host and optimization settings 
+# Host and optimization settings
 # ==
 #
 # For optimal performance, enable a CFLAGS setting appropriate for your CPU.
@@ -143,7 +143,7 @@
 # defined.
 #PORTDIR_OVERLAY=/usr/local/portage
 
-# Fetching files 
+# Fetching files
 # ==
 #
 # If you need to set a proxy for wget or lukemftp, add the appropriate "export
@@ -228,7 +228,7 @@
 #
 # PORTAGE_RSYNC_EXTRA_OPTS can be used to feed additional options to the rsync
 # command used by `emerge --sync`. This will not change the default options
-# which are set by PORTAGE_RSYNC_OPTS (don't change those unless you know 
+# which are set by PORTAGE_RSYNC_OPTS (don't change those unless you know
 # exactly what you're doing).
 #PORTAGE_RSYNC_EXTRA_OPTS=""
 #
@@ -291,7 +291,7 @@
 # Note that to display ccache statistics outside of portage, you must
 # remember to give the correct path to the cache.
 #
-#$ CCACHE_DIR=/var/tmp/ccache ccache -s 
+#$ CCACHE_DIR=/var/tmp/ccache ccache -s
 #
 #CCACHE_DIR="${PORTAGE_TMPDIR}/ccache"
 
@@ -306,11 +306,11 @@
 # PORTAGE_ELOG_SYSTEM: selects the module(s) to process the log messages. 
Modules
 #  included in portage are (empty means logging is 
disabled):
 #  echo (display messages again when emerge exits)
-#  save (saves one log per package in 
$PORT_LOGDIR/elog, 
+#  save (saves one log per package in 
$PORT_LOGDIR/elog,
 #/var/log/portage/elog if $PORT_LOGDIR is 
unset)
 #  custom (passes all messages to 
$PORTAGE_ELOG_COMMAND)
 #  syslog (sends all messages to syslog)
-#  mail (send all messages to the mailserver defined 
+#  mail (send all messages to the mailserver defined
 #in $PORTAGE_ELOG_MAILURI)
 #  save_summary (like "save" but merges all messages
 #in $PORT_LOGDIR/elog/summary.log,
@@ -327,7 +327,7 @@
 
 # PORTAGE_ELOG_COMMAND: only used with the "custom" logging module. Specifies 
a command
 #  to process log messages. Two variables are expanded:
-#  ${PACKAGE} - expands to the cpv entry of the 
processed 
+#  ${PACKAGE} - expands to the cpv entry of the 
processed
 #   package (see $PVR in ebuild(5))
 #  ${LOGFILE} - absolute path to the logfile
 #  Both variables have to be 
quoted with single quotes



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

2017-01-06 Thread Brian Dolbec
commit: d5fe26e92c3a990134f0e660d7fd0f4f8c7ebf11
Author: Vaibhav Niku  yandex  com>
AuthorDate: Fri Jan  6 17:52:29 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 17:59:04 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=d5fe26e9

cnf/make.conf.example: Fix incorrect "it's" usage, should be "its"

 cnf/make.conf.example | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/cnf/make.conf.example b/cnf/make.conf.example
index a3b09b5..04f3a02 100644
--- a/cnf/make.conf.example
+++ b/cnf/make.conf.example
@@ -135,7 +135,7 @@
 # ${CATEGORY}:${PF}:MMDD-HHMMSS.log in the directory specified.
 # If the directory does not exist, it will be created automatically and
 # group permissions will be applied to it.  If the directory already
-# exists, portage will not modify it's permissions.
+# exists, portage will not modify its permissions.
 #PORT_LOGDIR=""
 #
 # PORTDIR_OVERLAY is a directory where local ebuilds may be stored without
@@ -258,7 +258,7 @@
 #PORTAGE_NICENESS=3
 #
 # PORTAGE_IONICE_COMMAND provides a command for portage to call in order to
-# adjust the io priority of portage and it's subprocesses. Default is
+# adjust the io priority of portage and its subprocesses. Default is
 # unset.
 #PORTAGE_IONICE_COMMAND="ionice -c 3 -p \${PID}"
 #



[gentoo-commits] proj/tinderbox-cluster-www:master commit in: python/templates/includes/layout/

2017-01-06 Thread Magnus Granberg
commit: 59354f60f0bc0be1ac29a1550c96055c44d66b81
Author: Magnus Granberg  gentoo  org>
AuthorDate: Fri Jan  6 17:55:47 2017 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Fri Jan  6 17:55:47 2017 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=59354f60

add footer db updater

 python/templates/includes/layout/footer_db_update.html | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/python/templates/includes/layout/footer_db_update.html 
b/python/templates/includes/layout/footer_db_update.html
new file mode 100644
index 000..60284a5
--- /dev/null
+++ b/python/templates/includes/layout/footer_db_update.html
@@ -0,0 +1,10 @@
+Gentoo Packages Database
+  
+
+  Data currrent as of{{ 
jobs.TimeStamp|date:"D d b Y G i" }}
+
+  
+  
+  
+  
+



[gentoo-commits] proj/tinderbox-cluster-www:master commit in: python/tbc_www/utils/

2017-01-06 Thread Magnus Granberg
commit: 9f7bd0adcc9d549f97f421a3d3b589e7ec39fd10
Author: Magnus Granberg  gentoo  org>
AuthorDate: Fri Jan  6 17:50:49 2017 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Fri Jan  6 17:50:49 2017 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster-www.git/commit/?id=9f7bd0ad

add utils

 python/tbc_www/utils/__init__.py   |  0
 python/tbc_www/utils/bugzillasubmit.py | 27 +++
 2 files changed, 27 insertions(+)

diff --git a/python/tbc_www/utils/__init__.py b/python/tbc_www/utils/__init__.py
new file mode 100644
index 000..e69de29

diff --git a/python/tbc_www/utils/bugzillasubmit.py 
b/python/tbc_www/utils/bugzillasubmit.py
new file mode 100644
index 000..d8160dc
--- /dev/null
+++ b/python/tbc_www/utils/bugzillasubmit.py
@@ -0,0 +1,27 @@
+from __future__ import print_function
+
+import bugzilla
+
+URL = "https://bugs.gentoo.org/xmlrpc.cgi;
+def addnewbug(args):
+   bzapi = bugzilla.Bugzilla(URL)
+   print(args['username'])
+   print(args['password'])
+   bzapi.login(user=args['username'], password=args['password'])
+   createinfo = bzapi.build_createbug(
+   product=args['product'],
+   version=args['version'],
+   component=args['component'],
+   summary=args['summary'],
+   description=args['description'],
+   assigned_to=args['assigned_to'])
+   newbug = bzapi.createbug(createinfo)
+   print("Created new bug id=%s url=%s" % (newbug.id, newbug.weburl))
+   update = bzapi.build_update(comment=args['comment'])
+   bzapi.update_bugs(newbug.id, update)
+   kwards = {
+   'contenttype': args['content_type'],
+   }
+   attchment_id = bzapi.attachfile(newbug.id, args['filename'], 
args['comment_attach'], **kwards)
+   bzapi.logout()
+   return newbug



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

2017-01-06 Thread David Seifert
commit: d2580b498bc2e6af4cc979ed3af6a3e6e4331210
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Fri Jan  6 17:22:48 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Jan  6 17:41:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2580b49

media-video/subliminal: fix tests in 2.0.5

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

 media-video/subliminal/Manifest| 1 +
 media-video/subliminal/subliminal-2.0.5.ebuild | 8 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)

diff --git a/media-video/subliminal/Manifest b/media-video/subliminal/Manifest
index 6a6becc..d8b95c3 100644
--- a/media-video/subliminal/Manifest
+++ b/media-video/subliminal/Manifest
@@ -1,2 +1,3 @@
 DIST subliminal-2.0.3.tar.gz 4428821 SHA256 
12ad058d8bfdb0471d2021f8a486c2a11d2470e845bec1e71f698e4523ddc8fe SHA512 
ed014ac25ab867cf1d7d16c1ecc19364a1b1281893c3e1aa1e678176d6df12623fc29f6a8159984cd2d621bf2f708655382ae7e0cf41c92956fc2d803f1b5c37
 WHIRLPOOL 
39a20b595660a78c3a48efa7affc973e4349f2912b5d077583d75d05e4bad8675b5d5594512e739398fff641fdc76a08afdc1deec6f54bba5b02b3f5014ea531
+DIST subliminal-2.0.5-fix-tests.patch 377419 SHA256 
d5280c3ede7a195ca21707a57b801bdcf3401bc6d54eebb82db90836a1e5c566 SHA512 
35a59dec59a0075d51f00147661d9a949019069a00b4882492f7dab4bb2af35d61f4aad70d49094d16128538677907ed154dbb2e2da5959188f3996fb6200d2e
 WHIRLPOOL 
a320ce105288de78cdeeb897706fb9e622c1d82cfe582225e5d08f4b4de3781ba6a4bcdfe6b7875396bee6f8c60e25945a73474be5563755601abd195031ebef
 DIST subliminal-2.0.5.tar.gz 4440754 SHA256 
b956f02ae0286ad04be5bbf1c5570964aa17bb53c99fcce067e8334d99516ae2 SHA512 
e2f563fa86fea286a172aa4a6a846d997e777cf69666fb39f3f73e3073ce5b5467474561ced4468d51708c0b1559f97b314f2f9ffb3d5e61978ad635c00ba0f8
 WHIRLPOOL 
cb57c8d553eb0164a21d2ea1c81129aef78b425748d52be6d73444fc111b227eeae5e3321253d163c2df46acfa274d6c0852d5aa7153b3ee2ba3c311c56dfd2d

diff --git a/media-video/subliminal/subliminal-2.0.5.ebuild 
b/media-video/subliminal/subliminal-2.0.5.ebuild
index cef97ed..720d02b 100644
--- a/media-video/subliminal/subliminal-2.0.5.ebuild
+++ b/media-video/subliminal/subliminal-2.0.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,9 @@ inherit distutils-r1
 
 DESCRIPTION="Python library to search and download subtitles"
 HOMEPAGE="https://github.com/Diaoul/subliminal 
https://pypi.python.org/pypi/subliminal;
-SRC_URI="https://github.com/Diaoul/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+SRC_URI="
+   https://github.com/Diaoul/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
+   https://dev.gentoo.org/~soap/distfiles/${P}-fix-tests.patch;
 
 LICENSE="MIT"
 SLOT="0"
@@ -50,6 +52,8 @@ DEPEND="${RDEPEND}
 # Tests require network.
 RESTRICT=test
 
+PATCHES=( "${DISTDIR}/${P}-fix-tests.patch" )
+
 python_prepare_all() {
# Disable code checkers as they require unavailable dependencies.
sed -i -e 's/--\(pep8\|flakes\)//g' pytest.ini || die



[gentoo-commits] proj/portage:master commit in: repoman/cnf/

2017-01-06 Thread Brian Dolbec
commit: e9c878211c24ac253508cc2e799c6825e5674402
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Oct 12 15:59:29 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 17:33:20 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=e9c87821

repoman: add gentoo to remote-id type

There is no way to presently declare that Gentoo itself is
the upstream hosting location for a given package. Add
'gentoo' option to the remote-id type attribute to cover
such a case.

Signed-off-by: Robin H. Johnson  gentoo.org>

 repoman/cnf/metadata.xsd | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/cnf/metadata.xsd b/repoman/cnf/metadata.xsd
index 0ead09e..33ff58e 100644
--- a/repoman/cnf/metadata.xsd
+++ b/repoman/cnf/metadata.xsd
@@ -256,6 +256,7 @@



+   






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

2017-01-06 Thread Brian Dolbec
commit: cd29451ef73a22a73d20df9cf9ff5c65ecf8a51e
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Fri Jan  6 15:11:36 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 16:06:16 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=cd29451e

repoman: add dev-qt/linguist-tools to RDEPEND.suspect set

linguist-tools is like gettext, but for Qt applications.

Gentoo-Bug: 544938

 repoman/pym/repoman/qa_data.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/qa_data.py b/repoman/pym/repoman/qa_data.py
index 738368e..ed7b83f 100644
--- a/repoman/pym/repoman/qa_data.py
+++ b/repoman/pym/repoman/qa_data.py
@@ -299,6 +299,7 @@ suspect_rdepend = frozenset([
"dev-lang/swig",
"dev-lang/yasm",
"dev-perl/extutils-pkgconfig",
+   "dev-qt/linguist-tools",
"dev-util/byacc",
"dev-util/cmake",
"dev-util/ftjam",



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

2017-01-06 Thread Brian Dolbec
commit: 676927062dc65324ca68d72690114cff36265d1d
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Jan  6 17:14:54 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 17:14:54 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=67692706

Merge Coacher:extend-rdepend-suspect repoman updates

 commit '021199792ce55bdc0f99bc7791a2b31ba1533d2e'

 repoman/pym/repoman/qa_data.py | 3 +++
 1 file changed, 3 insertions(+)



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

2017-01-06 Thread Brian Dolbec
commit: d647bb50f2864b8d1dad9ea34d031c7954f54ce6
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Fri Jan  6 15:16:52 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 16:06:26 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=d647bb50

repoman: add virtual/linuxtv-dvb-headers to RDEPEND.suspect set

linuxtv-dvb-headers installs only headers. No linking happening.
Thus it isn't needed at runtime.

 repoman/pym/repoman/qa_data.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/qa_data.py b/repoman/pym/repoman/qa_data.py
index ed7b83f..5059e8a 100644
--- a/repoman/pym/repoman/qa_data.py
+++ b/repoman/pym/repoman/qa_data.py
@@ -326,6 +326,7 @@ suspect_rdepend = frozenset([
"sys-devel/m4",
"sys-devel/pmake",
"virtual/linux-sources",
+   "virtual/linuxtv-dvb-headers",
"virtual/pkgconfig",
"x11-misc/bdftopcf",
"x11-misc/imake",



[gentoo-commits] proj/portage:master commit in: repoman/pym/repoman/modules/scan/metadata/

2017-01-06 Thread Brian Dolbec
commit: 863001bddadccacda55b26adfa960ac5002cef71
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Jan  4 18:14:38 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 17:04:50 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=863001bd

repoman: make unused local USE flags an error

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

 repoman/pym/repoman/modules/scan/metadata/pkgmetadata.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/repoman/pym/repoman/modules/scan/metadata/pkgmetadata.py 
b/repoman/pym/repoman/modules/scan/metadata/pkgmetadata.py
index 9e4d6cb..92c74e6 100644
--- a/repoman/pym/repoman/modules/scan/metadata/pkgmetadata.py
+++ b/repoman/pym/repoman/modules/scan/metadata/pkgmetadata.py
@@ -166,7 +166,7 @@ class PkgMetadata(ScanBase, USEFlagChecks):
if valid_state:
for myflag in 
self.muselist.difference(self.usedUseFlags):
self.qatracker.add_error(
-   "metadata.warning",
+   "metadata.bad",
"%s/metadata.xml: unused local 
USE-description: '%s'"
% (xpkg, myflag))
return False



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

2017-01-06 Thread Brian Dolbec
commit: 021199792ce55bdc0f99bc7791a2b31ba1533d2e
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Fri Jan  6 15:53:22 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jan  6 16:07:09 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=02119979

repoman: add virtual/os-headers to RDEPEND.suspect set

os-headers installs only headers on Linux. No linking happening.

os-headers installs headers and shared libraries on FreeBSD.
However, it's better to restrict os-headers usage to just headers
in order to prevent its abuse for shared libraries on FreeBSD.

 repoman/pym/repoman/qa_data.py | 1 +
 1 file changed, 1 insertion(+)

diff --git a/repoman/pym/repoman/qa_data.py b/repoman/pym/repoman/qa_data.py
index 5059e8a..c3f4207 100644
--- a/repoman/pym/repoman/qa_data.py
+++ b/repoman/pym/repoman/qa_data.py
@@ -327,6 +327,7 @@ suspect_rdepend = frozenset([
"sys-devel/pmake",
"virtual/linux-sources",
"virtual/linuxtv-dvb-headers",
+   "virtual/os-headers",
"virtual/pkgconfig",
"x11-misc/bdftopcf",
"x11-misc/imake",



[gentoo-commits] proj/kde:master commit in: sys-auth/polkit/

2017-01-06 Thread Andreas Sturmlechner
commit: f4bb3b26bd77b3d35900c8bee540ac5ed2510a97
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan  6 16:51:32 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 16:51:32 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f4bb3b26

sys-auth/polkit: Drop old

Package-Manager: portage-2.3.0

 sys-auth/polkit/polkit-0.113-r200.ebuild | 128 ---
 1 file changed, 128 deletions(-)

diff --git a/sys-auth/polkit/polkit-0.113-r200.ebuild 
b/sys-auth/polkit/polkit-0.113-r200.ebuild
deleted file mode 100644
index 63d8013..000
--- a/sys-auth/polkit/polkit-0.113-r200.ebuild
+++ /dev/null
@@ -1,128 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit eutils multilib pam pax-utils systemd user xdg
-
-DESCRIPTION="Policy framework for controlling privileges for system-wide 
services"
-HOMEPAGE="https://www.freedesktop.org/wiki/Software/polkit;
-SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.gz;
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
-IUSE="elogind examples gtk +introspection jit kde nls pam selinux systemd test"
-
-CDEPEND="
-   dev-lang/spidermonkey:0/mozjs185[-debug]
-   >=dev-libs/glib-2.32:2
-   >=dev-libs/expat-2:=
-   elogind? ( sys-auth/elogind )
-   introspection? ( >=dev-libs/gobject-introspection-1:= )
-   pam? (
-   sys-auth/pambase
-   virtual/pam
-   )
-   systemd? ( sys-apps/systemd:0= )
-"
-DEPEND="${CDEPEND}
-   app-text/docbook-xml-dtd:4.1.2
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   dev-util/gtk-doc-am
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-policykit )
-"
-PDEPEND="
-   gtk? ( >=gnome-extra/polkit-gnome-0.105 )
-   kde? ( || (
-   kde-plasma/polkit-kde-agent
-   sys-auth/polkit-kde-agent
-   ) )
-   !systemd? ( sys-auth/consolekit[policykit] )
-"
-
-QA_MULTILIB_PATHS="
-   usr/lib/polkit-1/polkit-agent-helper-1
-   usr/lib/polkit-1/polkitd"
-
-pkg_setup() {
-   local u=polkitd
-   local g=polkitd
-   local h=/var/lib/polkit-1
-
-   enewgroup ${g}
-   enewuser ${u} -1 -1 ${h} ${g}
-   esethome ${u} ${h}
-}
-
-src_prepare() {
-   sed -i -e 's|unix-group:wheel|unix-user:0|' 
src/polkitbackend/*-default.rules || die #401513
-
-   # Workaround upstream hack around standard gtk-doc behavior, bug #552170
-   sed -i -e 's/@ENABLE_GTK_DOC_TRUE@\(TARGET_DIR\)/\1/' \
-   -e '/install-data-local:/,/uninstall-local:/ 
s/@ENABLE_GTK_DOC_TRUE@//' \
-   -e 's/@ENABLE_GTK_DOC_FALSE@install-data-local://' \
-   docs/polkit/Makefile.in || die
-
-   if use elogind; then
-   sed -i -e "s/libsystemd-login/libelogind/" -e "s|test ! -d 
/sys/fs/cgroup/systemd/|false|" configure || die
-   sed -i -e "s/systemd/elogind/" 
src/polkit/polkitunixsession-systemd.c 
src/polkitbackend/polkitbackendsessionmonitor-systemd.c 
src/polkitbackend/polkitbackendjsauthority.c || die
-   fi
-}
-
-src_configure() {
-   xdg_environment_reset
-
-   econf \
-   --localstatedir="${EPREFIX}"/var \
-   --disable-static \
-   --enable-man-pages \
-   --disable-gtk-doc \
-   $(use_enable systemd libsystemd-login) \
-   $(use_enable elogind) \
-   $(use_enable introspection) \
-   --disable-examples \
-   $(use_enable nls) \
-   --with-mozjs=mozjs185 \
-   "$(systemd_with_unitdir)" \
-   --with-authfw=$(usex pam pam shadow) \
-   $(use pam && echo --with-pam-module-dir="$(getpam_mod_dir)") \
-   $(use_enable test) \
-   --with-os-type=gentoo
-}
-
-src_compile() {
-   default
-
-   # Required for polkitd on hardened/PaX due to spidermonkey's JIT
-   pax-mark mr src/polkitbackend/.libs/polkitd 
test/polkitbackend/.libs/polkitbackendjsauthoritytest
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   dodoc docs/TODO HACKING NEWS README
-
-   fowners -R polkitd:root /{etc,usr/share}/polkit-1/rules.d
-
-   diropts -m0700 -o polkitd -g polkitd
-   keepdir /var/lib/polkit-1
-
-   if use examples; then
-   insinto /usr/share/doc/${PF}/examples
-   doins src/examples/{*.c,*.policy*}
-   fi
-
-   prune_libtool_files
-}
-
-pkg_postinst() {
-   chown -R polkitd:root "${EROOT}"/{etc,usr/share}/polkit-1/rules.d
-   chown -R polkitd:polkitd "${EROOT}"/var/lib/polkit-1
-}



[gentoo-commits] proj/kde:master commit in: sys-auth/polkit/files/, sys-auth/polkit/

2017-01-06 Thread Andreas Sturmlechner
commit: 9a2696a9358f6f509bb84e1181cb89bd07b49691
Author: Sven Eden  gmx  net>
AuthorDate: Fri Jan  6 16:45:04 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 16:50:41 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9a2696a9

sys-auth/polkit: Fix USE=elogind

Gentoo-bug: 598615

Additional changes: dropped unused eclasses, more EAPI 6, sync w/ tree

Package-Manager: portage-2.3.0

 sys-auth/polkit/files/polkit-0.113-elogind.patch | 160 +++
 sys-auth/polkit/polkit-0.113-r201.ebuild | 135 +++
 2 files changed, 295 insertions(+)

diff --git a/sys-auth/polkit/files/polkit-0.113-elogind.patch 
b/sys-auth/polkit/files/polkit-0.113-elogind.patch
new file mode 100644
index 000..fb142c6
--- /dev/null
+++ b/sys-auth/polkit/files/polkit-0.113-elogind.patch
@@ -0,0 +1,160 @@
+--- a/configure.ac 2016-11-03 20:16:02.842071344 +0100
 b/configure.ac 2016-11-03 20:15:34.612071850 +0100
+@@ -183,11 +183,12 @@
+ 
+ AM_CONDITIONAL(BUILD_TEST, [test "x$enable_test" = "xyes"])
+ 
+-dnl 
---
+-dnl - Select wether to use libsystemd-login or ConsoleKit for session tracking
+-dnl 
---
++dnl 
---
++dnl - Select wether to use libsystemd-login, elogind or ConsoleKit for 
session tracking
++dnl 
---
+ 
+ have_libsystemd=no
++have_elogind=no
+ SESSION_TRACKING=ConsoleKit
+ 
+ AC_ARG_ENABLE([libsystemd-login],
+@@ -220,6 +221,29 @@
+ fi
+   fi
+ fi
++
++AC_ARG_ENABLE([libelogind],
++  [AS_HELP_STRING([--enable-libelogind[=@<:@auto/yes/no@:>@]], 
[Use libelogind (auto/yes/no)])],
++  [enable_libelogind=$enableval],
++  [enable_libelogind=auto])
++if test "$enable_libelogind" != "no"; then
++  PKG_CHECK_MODULES([LIBELOGIND],
++[libelogind],
++[have_libelogind=yes],
++[have_libelogind=no])
++  if test "$have_libelogind" = "yes"; then
++SESSION_TRACKING=libelogind
++AC_DEFINE([HAVE_LIBELOGIND], 1, [Define to 1 if libelogind is available])
++save_LIBS=$LIBS
++LIBS=$LIBELOGIND_LIBS
++AC_CHECK_FUNCS(sd_uid_get_display)
++LIBS=$save_LIBS
++  else
++if test "$enable_libelogind" = "yes"; then
++  AC_MSG_ERROR([libelogind support requested but libelogind not found])
++fi
++  fi
++fi
+ 
+ AS_IF([test "x$cross_compiling" != "xyes" ], [
+   AS_IF([test "$have_libsystemd" = "yes"], [
+@@ -245,6 +245,10 @@
+ AC_SUBST(LIBSYSTEMD_LIBS)
+ AM_CONDITIONAL(HAVE_LIBSYSTEMD, [test "$have_libsystemd" = "yes"], [Using 
libsystemd])
+ 
++AC_SUBST(LIBELOGIND_CFLAGS)
++AC_SUBST(LIBELOGIND_LIBS)
++AM_CONDITIONAL(HAVE_LIBELOGIND, [test "$have_libelogind" = "yes"], [Using 
libelogind])
++
+ dnl 
---
+ dnl - systemd unit / service files
+ dnl 
---
+--- a/src/polkitbackend/Makefile.am2016-11-04 04:40:46.930116006 +0100
 b/src/polkitbackend/Makefile.am2016-11-04 04:42:14.586114436 +0100
+@@ -42,21 +42,28 @@
+ libpolkit_backend_1_la_SOURCES += \
+   polkitbackendsessionmonitor.h   
polkitbackendsessionmonitor-systemd.c
+ else
++if HAVE_LIBELOGIND
++libpolkit_backend_1_la_SOURCES += \
++  polkitbackendsessionmonitor.h   
polkitbackendsessionmonitor-systemd.c
++else
+ libpolkit_backend_1_la_SOURCES += \
+   polkitbackendsessionmonitor.h   polkitbackendsessionmonitor.c
+ endif
++endif
+ 
+ libpolkit_backend_1_la_CFLAGS =   
\
+ -D_POLKIT_COMPILATION 
\
+ -D_POLKIT_BACKEND_COMPILATION 
\
+ $(GLIB_CFLAGS)
\
+   $(LIBSYSTEMD_CFLAGS)\
++  $(LIBELOGIND_CFLAGS)\
+   $(LIBJS_CFLAGS) \
+ $(NULL)
+ 
+ libpolkit_backend_1_la_LIBADD =   
\
+ $(GLIB_LIBS)  \
+   $(LIBSYSTEMD_LIBS)  \
++  $(LIBELOGIND_LIBS)  \
+   $(top_builddir)/src/polkit/libpolkit-gobject-1.la   \
+   $(EXPAT_LIBS)   \
+   $(LIBJS_LIBS)   \
+--- a/src/polkit/Makefile.am   2016-11-04 04:41:02.756115723 +0100
 b/src/polkit/Makefile.am   2016-11-04 

[gentoo-commits] proj/kde:master commit in: kde-apps/ktp-desktop-applets/

2017-01-06 Thread Andreas Sturmlechner
commit: 4a235e841715a9a91c845454ba03a16fe6d27e51
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan  6 13:01:03 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 15:45:12 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4a235e84

kde-apps/ktp-desktop-applets: Fix DEPENDs

Package-Manager: portage-2.3.0

 kde-apps/ktp-desktop-applets/ktp-desktop-applets-.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-apps/ktp-desktop-applets/ktp-desktop-applets-.ebuild 
b/kde-apps/ktp-desktop-applets/ktp-desktop-applets-.ebuild
index e312b17..84c071c 100644
--- a/kde-apps/ktp-desktop-applets/ktp-desktop-applets-.ebuild
+++ b/kde-apps/ktp-desktop-applets/ktp-desktop-applets-.ebuild
@@ -17,6 +17,7 @@ DEPEND="
$(add_frameworks_dep kdeclarative)
$(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep plasma)
+   $(add_qt_dep qtdbus)
$(add_qt_dep qtdeclarative)
 "
 RDEPEND="${DEPEND}



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

2017-01-06 Thread Andreas Sturmlechner
commit: 5f80efa768f765f0f31f3956545c13fa7573284d
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jan  6 14:40:57 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jan  6 15:45:12 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5f80efa7

kde5-functions.eclass: Assume slot 5 for add_qt_dep unless defined

So far we relied on ${SLOT} (4|5) to depend on the correct Qt slot, but
this is not always the case. If an ebuild inherits kde5-functions and
uses add_qt_dep then it is safe to assume it will depend on Qt5.

 eclass/kde5-functions.eclass | 9 +++--
 1 file changed, 7 insertions(+), 2 deletions(-)

diff --git a/eclass/kde5-functions.eclass b/eclass/kde5-functions.eclass
index ad576c6..26e9811 100644
--- a/eclass/kde5-functions.eclass
+++ b/eclass/kde5-functions.eclass
@@ -280,14 +280,19 @@ add_qt_dep() {
fi
 
local version
+   local slot=${4}
 
if [[ -n ${3} ]]; then
version=${3}
-   elif [[ -z "${version}" ]] ; then
+   elif [[ -z "${version}" ]]; then
version=${QT_MINIMAL}
fi
 
-   _add_category_dep dev-qt "${1}" "${2}" "${version}" "${4}"
+   if [[ -z ${slot} ]]; then
+   slot="5"
+   fi
+
+   _add_category_dep dev-qt "${1}" "${2}" "${version}" "${slot}"
 }
 
 # @FUNCTION: get_kde_version



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

2017-01-06 Thread Manuel Rüger
commit: 02efe36ac2976de7faca516c1f7e8582d284b68d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jan  6 15:31:48 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jan  6 15:33:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02efe36a

dev-python/schedule: Initial version

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/schedule/Manifest  |  1 +
 dev-python/schedule/metadata.xml  |  8 
 dev-python/schedule/schedule-0.4.2.ebuild | 25 +
 3 files changed, 34 insertions(+)

diff --git a/dev-python/schedule/Manifest b/dev-python/schedule/Manifest
new file mode 100644
index ..26c991b
--- /dev/null
+++ b/dev-python/schedule/Manifest
@@ -0,0 +1 @@
+DIST schedule-0.4.2.tar.gz 10104 SHA256 
933fb83fce86826f03abd2850aa693c73fe6533fa1c7db4ef1d90c90a7ae8611 SHA512 
f088f82a0449350658028b2035c5fbc71bda4d019856fe6ab3363798e9d8d940cce603be544401ecf5f844606e5891ab560c390f5c334a825bf611e6ebfb00ac
 WHIRLPOOL 
41d6c85c311604594cc14d2c276831ee24af866daa13a72b0ad512988c1d568e56c8a1ec4082458d5a0c98c9ba529eb59b410c3b347de2b759c7857debaff38f

diff --git a/dev-python/schedule/metadata.xml b/dev-python/schedule/metadata.xml
new file mode 100644
index ..7f4f33c
--- /dev/null
+++ b/dev-python/schedule/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   pyt...@gentoo.org
+   Python
+   
+

diff --git a/dev-python/schedule/schedule-0.4.2.ebuild 
b/dev-python/schedule/schedule-0.4.2.ebuild
new file mode 100644
index ..5ba906f
--- /dev/null
+++ b/dev-python/schedule/schedule-0.4.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python{3_4,3_5} )
+inherit distutils-r1
+
+DESCRIPTION="Python job scheduling for humans"
+HOMEPAGE="https://github.com/dbader/schedule;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( >=dev-python/mock-2.0.0
+   >=dev-python/pytest-3.0.3 )"
+
+python_test() {
+   py.test test_schedule.py || die
+}



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/octave/

2017-01-06 Thread David Seifert
commit: 24a4b747e224dfdb3ece48f0e8f44aee7768a095
Author: David Seifert  gentoo  org>
AuthorDate: Fri Jan  6 15:16:44 2017 +
Commit: David Seifert  gentoo  org>
CommitDate: Fri Jan  6 15:17:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24a4b747

sci-mathematics/octave: Add missing DEPEND on dev-qt/linguist-tools:5

Gentoo-bug: 604418

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-mathematics/octave/octave-4.2.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/octave/octave-4.2.0-r2.ebuild 
b/sci-mathematics/octave/octave-4.2.0-r2.ebuild
index c2a64e2..bf16ec0 100644
--- a/sci-mathematics/octave/octave-4.2.0-r2.ebuild
+++ b/sci-mathematics/octave/octave-4.2.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -64,8 +64,8 @@ RDEPEND="
sci-libs/cxsparse:0=
sci-libs/umfpack:0= )
X? ( x11-libs/libX11:0= )"
-
 DEPEND="${RDEPEND}
+   gui? ( dev-qt/linguist-tools:5 )
qrupdate? ( app-misc/pax-utils )
sparse? ( app-misc/pax-utils )
java? ( >=virtual/jdk-1.6.0 )



[gentoo-commits] repo/gentoo:master commit in: net-fs/docker-volume-netshare/, net-fs/docker-volume-netshare/files/

2017-01-06 Thread Manuel Rüger
commit: 6336b6fd20b724363bc8e3cc9e7bcf4ad1d6b328
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jan  6 15:00:52 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jan  6 15:01:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6336b6fd

net-fs/docker-volume-netshare: Initial version

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-fs/docker-volume-netshare/Manifest | 12 
 .../docker-volume-netshare-0.32_p20161024.ebuild   | 67 ++
 .../files/docker-volume-netshare.confd |  2 +
 .../files/docker-volume-netshare.initd | 12 
 net-fs/docker-volume-netshare/metadata.xml | 11 
 5 files changed, 104 insertions(+)

diff --git a/net-fs/docker-volume-netshare/Manifest 
b/net-fs/docker-volume-netshare/Manifest
new file mode 100644
index ..93dcdd6
--- /dev/null
+++ b/net-fs/docker-volume-netshare/Manifest
@@ -0,0 +1,12 @@
+DIST Sirupsen-logrus-3ec0642a7fb6488f65b06f9040adc67e3990296a.tar.gz 23879 
SHA256 4a2a3f0a6b979d4e3886e51a2672d91a9c34c23e13039f618739994ef8d059cd SHA512 
8d5a2ca82b45c583ebb3d0101c5452966c282d3657761a7c8e7a9c225cd8cc03f5cbb2eac69bb0ec1a4cb5c20ce77cc3405f3fe1b830d95e5013003c4bc9b31a
 WHIRLPOOL 
40796877fbd0877e28c3cf0d401600b76548af3a07174acc4cf329ad0ad6acab945b9917a62bae5a575245bd0025e48706b412ab67cd628ca8e6a5593b154d65
+DIST coreos-go-systemd-7c9533367ef925dc1078d75e5b7141e10da2c4e8.tar.gz 51668 
SHA256 1f2b7b30e3c1ce51bd1ee7a0cd8c463e140f2788ab420141ae085c2bfc8d9af6 SHA512 
3183da823535c45ef0305aa8fa4935631d8fbbfc0d8a8239364784af8dfef6261665025bf7ab6390c83370420eeda73d56309b0561bfc0720f62d95e40696fd1
 WHIRLPOOL 
f14dcf5897d590bc3637266e9884a8636a582972e815d8816f7ee6430864cf46b7eeaade1e2e068b85309788d1b651aef6e8e3cd9b7ee8b5a610340a488816eb
+DIST coreos-pkg-447b7ec906e523386d9c53be15b55a8ae86ea944.tar.gz 31059 SHA256 
9aebda581ce48b7293ff6487f5037226a9df368373861b5add2ae91ab0510ca4 SHA512 
0ff9c77f4a45b9ce8dc3f80c2a101c40e62c24c3f48c644a373f374bcaae68b5d6926f747a15ea7554f8cc014812f247d58ae9aca67ab825e8b77b12e19a7442
 WHIRLPOOL 
6747a489e9368de4724d0d323a8975ee2d726d75e92c618a2c4134f485c3379443da6d6ceb6fdbca8a8fafc437a2d7378ed1e325233c7739df2c5aff6aff187d
+DIST dickeyxxx-netrc-3acf1b3de25d89c7688c63bb45f6b07f566555ec.tar.gz 5252 
SHA256 2ded9d58248330ad399d6bd79cf97a4ce322f90a910f02a9ce4d53a81df25620 SHA512 
f513f94b180743a3bf447ee79648c067f7908a1877201919794ad7c387fbe8ef4c4513c2def45e24e1d1d7f15c272ecbf3667219071e8aa3922c1fc69aa254e1
 WHIRLPOOL 
22688185138a0ec98d8836a50d8c786f6b876369528c3cb5dadd1d4906e73256be4ef5910fd7d3fbd8c85164da2d9e27e8304416dda64a8a5a8d726b7a2aca93
+DIST docker-go-connections-988efe982fdecb46f01d53465878ff1f2ff411ce.tar.gz 
21629 SHA256 0ca0c5e62528d9ab4b5a15fdffdff9c24129ff6893ee461a7525d86a34146459 
SHA512 
14a9b92be80e9e6c769f9c62cc59d5421ca61caad7e962141cc5f80418bc4d55a0f4846ca5cef9ebbfe88eaf71455e65faf866bc2f171a3cefd838c2434e7cbc
 WHIRLPOOL 
10d415e4121671d590a8a1bad309a4911344a9fd64d37aa8a1b2e3b75e9c06af3f27f9ba270b0003dc64213afc5aa481ef05bdc29315f7e1f272b953fbf2d281
+DIST docker-go-plugins-helpers-8a0198e77ac4e4ee167222caf6894cb32386c5fc.tar.gz 
21175 SHA256 2b75fb4ab662b9e22debe110aff4f52b302d2891dbc7f4899542e2faaf86019a 
SHA512 
bdab2c2811e615a4519d67d9d89678bcc570ecab3ef5182fa5f43c36091ec3045b7cc3134eb28ad4378639fb80d67e373479cc58f793ba0a0c3923a569fd296c
 WHIRLPOOL 
ff67510dd90d8ada2682e05cd93fe8c4b86cd27e9240436b950ec3da18dd320f06c2d8e0a7ff1a027f8318d3e1f684815b8f6f924a8455335e70e5903b34049b
+DIST docker-volume-netshare-0.32_p20161024.tar.gz 18011 SHA256 
8f7433b64e3eaa2a003c218f6d0d0344ab6959e621208cdb1aefa3e965603345 SHA512 
9ab416ea2a051a5fe88bf86df59bff624c642e7873ef8ee64cef0d38ceaf0cf4c1efad6ad17cec3354966e602cd4cc2e79af8abd115fc80d54c04c062fd533ba
 WHIRLPOOL 
de7e698ad3c9d13fe37281e777835bbd0cc8d7566ac02f442b1d1b97cc3c8ead967e57226bacc50bea42eee6d251538c0d21e4abfc48416a1e4f8627c1c89d04
+DIST golang-net-905989bd20b7c354fd28a61074eed1c8f49ebc89.tar.gz 832545 SHA256 
03d549cfbc63f77a381f1108c47300d130aa5a2376cffd4841201ef8490d9c43 SHA512 
f1fca71ffc3284da357a2c2cb6f20ae617f0fe96403ee3e37cdef26f31ed73c4eb08f3fbd7a0d14ce113e0b565c4aa1862d757a53df629cacf8d7c51b6c983ca
 WHIRLPOOL 
bfcf35f6589ce2632d3c68d2210de7a399b76229383077e1612909fe054663ce4e0473ea3da268a18cdeba1804d9456f29faf556f8f3e9240455e7a2dfa3505a
+DIST miekg-dns-58f52c57ce9df13460ac68200cef30a008b9c468.tar.gz 170163 SHA256 
615088fcab96891123bf1b64033f31b653e598bc359e252fa9c20aa4fd8950dd SHA512 
8c915a49781330fea2a8033d58b3e8c83da469116f4055db112483d32bda973d764c131939fc0f41a43562c8dd1e6d384d29f25885fb0c5c5623ef60637ce72a
 WHIRLPOOL 
cd8495a4309e676efa098cf27b7449424506cc4466bcef3747d3ed7e3fe2b4c26554cc289e7552c8ec8f773130a556d3c369545d3c8abcc31c4b87d1fc9a72ee
+DIST opencontainers-runc-1a9dd2678d2d6ad574f05cb7b9ae46ce65586725.tar.gz 
574673 SHA256 93d6e6fdd70c816fc8d321615b7e5bee1f3f8fdb321881468552c0777643645f 
SHA512 

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

2017-01-06 Thread Manuel Rüger
commit: bf9d4d21ac32280ca0c47046d0f1cc2ef06ad279
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jan  6 15:06:00 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jan  6 15:06:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf9d4d21

dev-python/arrow: Version bump to 0.10.0

Package-Manager: Portage-2.3.3, Repoman-2.3.1

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

diff --git a/dev-python/arrow/Manifest b/dev-python/arrow/Manifest
index 119bb60..0e2b694 100644
--- a/dev-python/arrow/Manifest
+++ b/dev-python/arrow/Manifest
@@ -1 +1,2 @@
+DIST arrow-0.10.0.tar.gz 86506 SHA256 
805906f09445afc1f0fc80187db8fe07670e3b25cdafa09b8d8ac264a8c0c722 SHA512 
a2baa23f1424b21506f3b664f0ef02d09f91b9cfaf6e0badfa544f42c750ed51136ae0e8910ac24207c0265a1b233f10a6f3cbafee3124b5f5c4fd965cfd01c0
 WHIRLPOOL 
25ed084436718040d0d516d5f2bfa87760770329d90e93771bd0c86761de44a39699d9b55889a5598499162674b3323e7246471f05076154d35dde460110108f
 DIST arrow-0.8.0.tar.gz 81664 SHA256 
b210c17d6bb850011700b9f54c1ca0eaf8cbbd441f156f0cd292e1fbda84e7af SHA512 
b6c01970d408e1169d042f593859577eef9961a2e7d6e0d5d01ddbdc001f806ca191cf152bd2d4060a877aeabee6754f06c3b91fbca53ee0a135a9355d08b347
 WHIRLPOOL 
60d6045ccc229cdf9f8a71f2622a6529eadde6bc58277c74bf81b38c8057f5bdab112ba46e04ca9765a34cf2b2a3de9eee0c86d650ff286f4d0bde09668c4e16

diff --git a/dev-python/arrow/arrow-0.10.0.ebuild 
b/dev-python/arrow/arrow-0.10.0.ebuild
new file mode 100644
index ..93f2cf2
--- /dev/null
+++ b/dev-python/arrow/arrow-0.10.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python{3_4,3_5} )
+inherit distutils-r1
+
+DESCRIPTION="Better dates and times for Python"
+HOMEPAGE="https://github.com/crsmithdev/arrow/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="dev-python/python-dateutil[${PYTHON_USEDEP}]"
+DEPEND="test? ( dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/chai[${PYTHON_USEDEP}]
+   dev-python/simplejson[${PYTHON_USEDEP}]
+   ${RDEPEND} )"
+
+python_prepare() {
+   sed -i -e "/with-coverage/d" setup.cfg || die
+}
+
+python_test() {
+   nosetests -v || die
+}



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

2017-01-06 Thread Jeroen Roovers
commit: f082a17f0fb52b0eda88b9e0c7dd993034f7ac88
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan  6 14:42:19 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan  6 14:44:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f082a17f

dev-python/rst-linker: Mark ~ppc64 (bug #604504).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-python/rst-linker/rst-linker-1.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/rst-linker/rst-linker-1.7.ebuild 
b/dev-python/rst-linker/rst-linker-1.7.ebuild
index d75da25..966a8bb 100644
--- a/dev-python/rst-linker/rst-linker-1.7.ebuild
+++ b/dev-python/rst-linker/rst-linker-1.7.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86"
 IUSE="doc test"
 
 RDEPEND="



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

2017-01-06 Thread Jeroen Roovers
commit: 8ea14f11c8087092f7096b698b7bc2f6d47080d7
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan  6 14:43:46 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan  6 14:44:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ea14f11

app-admin/lib_users: Mark ~ppc64 (bug #604504).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 app-admin/lib_users/lib_users-0.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/lib_users/lib_users-0.10.ebuild 
b/app-admin/lib_users/lib_users-0.10.ebuild
index 9879c7d..62a0cd3 100644
--- a/app-admin/lib_users/lib_users-0.10.ebuild
+++ b/app-admin/lib_users/lib_users-0.10.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/klausman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2017-01-06 Thread Jeroen Roovers
commit: d375089eeaa0931ec3794fb954d27409e3815ec1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Fri Jan  6 14:42:57 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Fri Jan  6 14:44:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d375089e

dev-python/backports-unittest-mock: Mark ~ppc64 (bug #604504).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild 
b/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild
index 630dc7c..d5e6bec 100644
--- a/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild
+++ b/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~hppa ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86"
 IUSE="doc test"
 
 RDEPEND="dev-python/mock[${PYTHON_USEDEP}]"



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

2017-01-06 Thread Benda XU
commit: debdaa5625ac306670fbcf6fa10126cac8e4dab3
Author: Benda Xu  gentoo  org>
AuthorDate: Fri Jan  6 14:38:27 2017 +
Commit: Benda XU  gentoo  org>
CommitDate: Fri Jan  6 14:38:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=debdaa56

sys-libs/glibc: prefixify the locale-gen script

note that prefix.eclass is compatible with EAPI=0

Bug: 473484

Package-Manager: portage-2.3.3

 sys-libs/glibc/files/eblits/src_prepare.eblit | 4 +++-
 sys-libs/glibc/glibc-2.17.ebuild  | 4 ++--
 sys-libs/glibc/glibc-2.18-r1.ebuild   | 4 ++--
 sys-libs/glibc/glibc-2.19-r1.ebuild   | 4 ++--
 sys-libs/glibc/glibc-2.20-r2.ebuild   | 4 ++--
 sys-libs/glibc/glibc-2.21-r2.ebuild   | 4 ++--
 sys-libs/glibc/glibc-2.22-r4.ebuild   | 4 ++--
 sys-libs/glibc/glibc-2.23-r2.ebuild   | 4 ++--
 sys-libs/glibc/glibc-2.23-r3.ebuild   | 2 +-
 sys-libs/glibc/glibc-2.24.ebuild  | 4 ++--
 sys-libs/glibc/glibc-.ebuild  | 4 ++--
 11 files changed, 22 insertions(+), 20 deletions(-)

diff --git a/sys-libs/glibc/files/eblits/src_prepare.eblit 
b/sys-libs/glibc/files/eblits/src_prepare.eblit
index 4a5c8af..11ff7af 100644
--- a/sys-libs/glibc/files/eblits/src_prepare.eblit
+++ b/sys-libs/glibc/files/eblits/src_prepare.eblit
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -58,6 +58,8 @@ eblit-glibc-src_prepare() {
find . -type f '(' -size 0 -o -name "*.orig" ')' -delete
find . -name configure -exec touch {} +
 
+   eprefixify extra/locale/locale-gen
+
# Fix permissions on some of the scripts.
chmod u+x "${S}"/scripts/*.sh
 }

diff --git a/sys-libs/glibc/glibc-2.17.ebuild b/sys-libs/glibc/glibc-2.17.ebuild
index 9989145..e7eed2f 100644
--- a/sys-libs/glibc/glibc-2.17.ebuild
+++ b/sys-libs/glibc/glibc-2.17.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing
+inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing prefix
 
 DESCRIPTION="GNU libc6 (also called glibc2) C library"
 HOMEPAGE="https://www.gnu.org/software/libc/libc.html;

diff --git a/sys-libs/glibc/glibc-2.18-r1.ebuild 
b/sys-libs/glibc/glibc-2.18-r1.ebuild
index 3f7fe22..437dee6 100644
--- a/sys-libs/glibc/glibc-2.18-r1.ebuild
+++ b/sys-libs/glibc/glibc-2.18-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing
+inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing prefix
 
 DESCRIPTION="GNU libc6 (also called glibc2) C library"
 HOMEPAGE="https://www.gnu.org/software/libc/libc.html;

diff --git a/sys-libs/glibc/glibc-2.19-r1.ebuild 
b/sys-libs/glibc/glibc-2.19-r1.ebuild
index 998b7fd..9412547 100644
--- a/sys-libs/glibc/glibc-2.19-r1.ebuild
+++ b/sys-libs/glibc/glibc-2.19-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing
+inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing prefix
 
 DESCRIPTION="GNU libc6 (also called glibc2) C library"
 HOMEPAGE="https://www.gnu.org/software/libc/libc.html;

diff --git a/sys-libs/glibc/glibc-2.20-r2.ebuild 
b/sys-libs/glibc/glibc-2.20-r2.ebuild
index 0ea96b2..ca4e727 100644
--- a/sys-libs/glibc/glibc-2.20-r2.ebuild
+++ b/sys-libs/glibc/glibc-2.20-r2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI="4"
 
-inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing
+inherit eutils versionator toolchain-funcs flag-o-matic gnuconfig multilib 
systemd unpacker multiprocessing prefix
 
 DESCRIPTION="GNU libc6 (also called glibc2) C library"
 HOMEPAGE="https://www.gnu.org/software/libc/libc.html;

diff --git a/sys-libs/glibc/glibc-2.21-r2.ebuild 
b/sys-libs/glibc/glibc-2.21-r2.ebuild
index 76e250b..c26e049 100644
--- a/sys-libs/glibc/glibc-2.21-r2.ebuild
+++ b/sys-libs/glibc/glibc-2.21-r2.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # 

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

2017-01-06 Thread Tobias Klausmann
commit: 2c9f085ef23345fc63430502b141256e1b30dd5a
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Jan  6 14:37:04 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Jan  6 14:37:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c9f085e

dev-cpp/asio-1.10.8-r0: stable on alpha

Gentoo-Bug: 604516

 dev-cpp/asio/asio-1.10.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-cpp/asio/asio-1.10.8.ebuild b/dev-cpp/asio/asio-1.10.8.ebuild
index b2b80f9..c032b38 100644
--- a/dev-cpp/asio/asio-1.10.8.ebuild
+++ b/dev-cpp/asio/asio-1.10.8.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${PN}/${P}.tar.bz2"
 
 LICENSE="Boost-1.0"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="doc examples ssl test"
 
 RDEPEND="dev-libs/boost



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

2017-01-06 Thread Tobias Klausmann
commit: d630da3657e99aa7e678f32fe47b46cf2539c740
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Jan  6 14:22:14 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Jan  6 14:32:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d630da36

x11-misc/xlockmore-5.47-r0: stable on alpha

Gentoo-Bug: 604370

 x11-misc/xlockmore/xlockmore-5.47.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/xlockmore/xlockmore-5.47.ebuild 
b/x11-misc/xlockmore/xlockmore-5.47.ebuild
index 17dbf16..cfd5a1a 100644
--- a/x11-misc/xlockmore/xlockmore-5.47.ebuild
+++ b/x11-misc/xlockmore/xlockmore-5.47.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.tux.org/~bagleyd/xlock/${P}.tar.xz;
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 ~arm ~hppa ~ppc ppc64 ~sparc x86"
 IUSE="crypt debug gtk imagemagick motif nas opengl pam truetype xinerama 
xlockrc vtlock"
 
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: net-ftp/lftp/

2017-01-06 Thread Tobias Klausmann
commit: ea421e94cbef3d741f6c7b29e628061483209616
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Fri Jan  6 14:22:11 2017 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Fri Jan  6 14:32:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea421e94

net-ftp/lftp-4.7.4-r0: stable on alpha

Gentoo-Bug: 603936

 net-ftp/lftp/lftp-4.7.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/lftp/lftp-4.7.4.ebuild b/net-ftp/lftp/lftp-4.7.4.ebuild
index 5bb6e13..6c76601 100644
--- a/net-ftp/lftp/lftp-4.7.4.ebuild
+++ b/net-ftp/lftp/lftp-4.7.4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}ftp/${P}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 sparc x86 
~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 
 IUSE="convert-mozilla-cookies +gnutls idn ipv6 libressl nls socks5 +ssl 
verify-file"
 LFTP_LINGUAS=( cs de es fr it ja ko pl pt_BR ru uk zh_CN zh_HK zh_TW )



  1   2   >