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

2017-08-09 Thread Hans de Graaff
commit: 2ee2e9f031c65c3830078805c2651cc99bcbbd7f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Aug 10 05:03:50 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Aug 10 05:03:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee2e9f0

dev-ruby/coolio: add 1.5.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/coolio/Manifest|  1 +
 dev-ruby/coolio/coolio-1.5.1.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/dev-ruby/coolio/Manifest b/dev-ruby/coolio/Manifest
index e83caff8848..90480b5dd95 100644
--- a/dev-ruby/coolio/Manifest
+++ b/dev-ruby/coolio/Manifest
@@ -1,3 +1,4 @@
 DIST cool.io-1.4.2.gem 109568 SHA256 
29922ff388da1ae2c17432e73dd35af58972dd7596bb5b065f6e158e45b45402 SHA512 
fefa4140f4250f776505537abe3e87ce199e7aa5236ec98b92f88df3412a7347751ec0499f801c22eab11c051b4daa3317d161388bf904730d2db8aa98f3362a
 WHIRLPOOL 
08e81de71a9c26fa4f7d6e2a8eba9919a4cffcb49a7875eddd881e7645bc15b1a62b681f736cbd88b05892cf484314af6972cd201236ca58cfc3f112889656f0
 DIST cool.io-1.4.5.gem 109568 SHA256 
6182eb0c80ade7757af4a2d9ec4c9db37f38a6e8b073779e466672d9a49faef4 SHA512 
80f726f2a8873159d9cbb58d1b354f41d799ec5740e619ac564cbe19f11fe18e858dece26af6cae8637a41c5799cb93b1b07ed13a0b3e0c9c9cb6932542345af
 WHIRLPOOL 
56358a7750431dd6e521597ec824b21ddbaa53258c8865be278097746b20cee5034083a2dbd0b92d8ba70668a5a0d1f274f307ba794a71d8dd990319c89aadee
 DIST cool.io-1.5.0.gem 112128 SHA256 
dbf0af137fd347b4b519b1fe8c27eda1b784fe7ca79a398c1d6163593f872045 SHA512 
e3089282352eb1f5c08d9cf2c8a8397904eaa3835b1146439c04f104210630b5ae49696716a971a9ba5a33e8cf85f28dc706d211ef47fbe6dfcbbb81a3a87bc1
 WHIRLPOOL 
e9f24508469e04618b0c3023113cd17be06c229b499ed6dbda7655f5119776140f5a51dd68ff9f59f02c4b890c172a0efe6a70c0b3d3cd78d052cf38190248e8
+DIST cool.io-1.5.1.gem 112128 SHA256 
6e189ba8868df8833247b62357fe6db3215f27cb5296f7cbd162ea74c94f8bd2 SHA512 
faf85ca190f7090d288202daf7a74068940402098bcd8ff954e4dc603be9934b332aeb8b43869f56c59a413954e98cbe8a48a554ae65690988a5d9d64169627e
 WHIRLPOOL 
cfa977a3d0cc3a344059750777399bec71eae8b51d8ad009bede3f9781251f383b9997b115da275814eb0449e2db6ba436712b211190955389a54a1c8350b23b

diff --git a/dev-ruby/coolio/coolio-1.5.1.ebuild 
b/dev-ruby/coolio/coolio-1.5.1.ebuild
new file mode 100644
index 000..1f704335342
--- /dev/null
+++ b/dev-ruby/coolio/coolio-1.5.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+RUBY_FAKEGEM_NAME="cool.io"
+
+RUBY_FAKEGEM_GEMSPEC="cool.io.gemspec"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="A high performance event framework for Ruby which uses the libev 
C library"
+HOMEPAGE="https://coolio.github.com/;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# cool.io includes a bundled version of libev that is patched to work 
correctly with ruby.
+
+ruby_add_rdepend ">=dev-ruby/iobuffer-1"
+
+all_ruby_prepare() {
+   rm -r Gemfile* lib/.gitignore || die
+
+   sed -i -e '/[Bb]undler/d' Rakefile || die
+   sed -i -e '28i  s.add_dependency "iobuffer"' ${RUBY_FAKEGEM_GEMSPEC} || 
die
+   sed -i -e '/git ls-files/d' ${RUBY_FAKEGEM_GEMSPEC} || die
+
+   # Avoid dependency on rake-compiler
+   sed -i -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' Rakefile || die
+
+   # Remove specs that require network connectivity
+   rm -f spec/dns_spec.rb || die
+
+   # Use one address consistently
+   sed -i -e 's/localhost/127.0.0.1/' 
spec/{udp_socket,tcp_server,iobuffer}_spec.rb || die
+}
+
+each_ruby_configure() {
+   pushd ext/cool.io || die
+   ${RUBY} extconf.rb || die
+   popd || die
+}
+
+each_ruby_compile() {
+   pushd ext/cool.io || die
+   emake V=1
+   popd || die
+   cp ext/cool.io/cool.io_ext$(get_modname) lib/ || die
+}



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

2017-08-09 Thread Hans de Graaff
commit: 9ef2ee88d392cc4ef5848c080bcd03aa6f4cce0b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Aug 10 04:58:35 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Aug 10 04:58:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ef2ee88

dev-ruby/coolio: move ~x86 keyword forward

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-ruby/coolio/coolio-1.5.0.ebuild 
b/dev-ruby/coolio/coolio-1.5.0.ebuild
index 2c41d2ba4d2..47345b593b9 100644
--- a/dev-ruby/coolio/coolio-1.5.0.ebuild
+++ b/dev-ruby/coolio/coolio-1.5.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://coolio.github.com/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 # cool.io includes a bundled version of libev that is patched to work 
correctly with ruby.



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

2017-08-09 Thread Hans de Graaff
commit: c4b18e4f789562a3376e10ceca838cf61b21d378
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Aug 10 05:04:36 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Aug 10 05:04:36 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4b18e4f

dev-ruby/iobuffer: add ruby24

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/iobuffer/iobuffer-1.1.2-r3.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/iobuffer/iobuffer-1.1.2-r3.ebuild 
b/dev-ruby/iobuffer/iobuffer-1.1.2-r3.ebuild
index 069d2849449..158cdf41c5d 100644
--- a/dev-ruby/iobuffer/iobuffer-1.1.2-r3.ebuild
+++ b/dev-ruby/iobuffer/iobuffer-1.1.2-r3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-# rbx: Kernel(Autoload)#allocate (method_missing)
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_TASK_DOC=""
 RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"



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

2017-08-09 Thread Hans de Graaff
commit: 378d2416a7468a13208ff51bf1d1940e84c6adf0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Aug 10 05:05:21 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Aug 10 05:05:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=378d2416

dev-ruby/ox: add 2.6.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ruby/ox/Manifest|  1 +
 dev-ruby/ox/ox-2.6.0.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-ruby/ox/Manifest b/dev-ruby/ox/Manifest
index b74e4afda56..9dc32602026 100644
--- a/dev-ruby/ox/Manifest
+++ b/dev-ruby/ox/Manifest
@@ -1,3 +1,4 @@
 DIST ox-2.4.11.tar.gz 191015 SHA256 
fbd6f64dc1b38099b5a1e4cbc4726f1cf1f1541f4202f9565d4a59e3bf11fe45 SHA512 
504820125127e2076d275d885d16e92f508b0e02728ecaec390a56dc57d5ab655bb76bf0e809c99a17c68e3eb1e38f217aca809ca76c3fe67152a544387e1a07
 WHIRLPOOL 
74dc44b8e85ac778aa8b0301d892ac021259ba4155447ce8b81f1385d9a76615770a1fea52743853c142ab6d2aed5c3d8cf3b273a8697be28d4cc7392c38
 DIST ox-2.4.13.tar.gz 191174 SHA256 
a5918f804bc33a887c5f4663b665d96ab7fd2fc11c902baa572841b092767e79 SHA512 
98ed5549ba58461ee02945c3862dce27b3c6330ee3669f207cf3d58f27767ff5c5ac9f9f8d640720bb5ed3380f0f37d45a850e25c43f72acc8f7f3ab069ec771
 WHIRLPOOL 
45602639bc137b0bd5e1fb887977d9d31dc448f10c8410c143770c68dd6468a78db4464c3bb981b62b9a3881b9a643e0d7bee09faf7dae2cd26d2e985efe69d6
 DIST ox-2.5.0.tar.gz 191422 SHA256 
01c6a98cb925b864ecefa40f297416a489c95b08715db4d2b276db8bb0c30edd SHA512 
470c3b281e44423ab4197989f5b6fdb85e979a13dbcb9add192b4b36de1e768add4768f8cb4bee798aac424b9fe453e925f24af5a13c4cde4157e7fcebd0a3a2
 WHIRLPOOL 
8c843047ecf0431c810689698e4f5b6f025a5a093d68881cef09fdd919998fb98648d495be73c2eacdaec26ae38aaf235bcf423bcf38fef7690c6fe120309bcb
+DIST ox-2.6.0.tar.gz 191979 SHA256 
d96f93640cde0e837e4b71e1a6dcd0f1d0221f3a4ad5b8484e74b851571459cc SHA512 
8765fc3bfd10e52a05d59dab9e9ec973f933976c3511a91d6c84f120e2cac6abccc8ccb7ea9d301882198049b37823a392520464197a791cddf79ba9ce252f37
 WHIRLPOOL 
a6d83bdedd6af70e17478893d3c7e91cdae6cea9a7b66360019310cd1511a0643a9a18f27fb497ba7da7a157b47ea00df8d85331c1dcb9ebf1419e003f291fdf

diff --git a/dev-ruby/ox/ox-2.6.0.ebuild b/dev-ruby/ox/ox-2.6.0.ebuild
new file mode 100644
index 000..eee48251f7b
--- /dev/null
+++ b/dev-ruby/ox/ox-2.6.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+RUBY_FAKEGEM_TASK_DOC=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="A fast XML parser and Object marshaller"
+HOMEPAGE="http://www.ohler.com/ox/ https://github.com/ohler55/ox;
+SRC_URI="https://github.com/ohler55/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="BSD"
+
+KEYWORDS="~amd64 ~ppc64 ~x86"
+SLOT="0"
+IUSE=""
+
+each_ruby_configure() {
+   ${RUBY} -Cext/ox extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/ox
+   cp ext/ox/ox$(get_modname) lib/ox/ || die
+}
+
+each_ruby_test() {
+   ${RUBY} test/tests.rb || die
+}



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

2017-08-09 Thread Robin H. Johnson
commit: 90dc3c702ec1b5d9827fb5d890a82acaad95cb5a
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Thu Aug 10 04:42:42 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Thu Aug 10 04:43:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90dc3c70

dev-vcs/git: permit -pcre-jit w/ dev-libs/libpcre[jit]

Package-Manager: portage-2.3.6

 dev-vcs/git/git-2.14.0-r1.ebuild | 2 +-
 dev-vcs/git/git--r1.ebuild   | 2 +-
 dev-vcs/git/git--r2.ebuild   | 2 +-
 dev-vcs/git/git--r3.ebuild   | 2 +-
 dev-vcs/git/git-.ebuild  | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/dev-vcs/git/git-2.14.0-r1.ebuild b/dev-vcs/git/git-2.14.0-r1.ebuild
index 492ea3ac973..50f3a1988c8 100644
--- a/dev-vcs/git/git-2.14.0-r1.ebuild
+++ b/dev-vcs/git/git-2.14.0-r1.ebuild
@@ -53,7 +53,7 @@ CDEPEND="
sys-libs/zlib
pcre? (
pcre-jit? ( dev-libs/libpcre2[jit(+)] )
-   !pcre-jit? ( dev-libs/libpcre[-jit(-)] )
+   !pcre-jit? ( dev-libs/libpcre )
)
perl? ( dev-lang/perl:=[-build(-)] )
tk? ( dev-lang/tk:0= )

diff --git a/dev-vcs/git/git--r1.ebuild b/dev-vcs/git/git--r1.ebuild
index d5d419248fd..1dd3819d0a7 100644
--- a/dev-vcs/git/git--r1.ebuild
+++ b/dev-vcs/git/git--r1.ebuild
@@ -53,7 +53,7 @@ CDEPEND="
sys-libs/zlib
pcre? (
pcre-jit? ( dev-libs/libpcre2[jit(+)] )
-   !pcre-jit? ( dev-libs/libpcre[-jit(-)] )
+   !pcre-jit? ( dev-libs/libpcre )
)
perl? ( dev-lang/perl:=[-build(-)] )
tk? ( dev-lang/tk:0= )

diff --git a/dev-vcs/git/git--r2.ebuild b/dev-vcs/git/git--r2.ebuild
index d097d9be3f9..17621717d20 100644
--- a/dev-vcs/git/git--r2.ebuild
+++ b/dev-vcs/git/git--r2.ebuild
@@ -53,7 +53,7 @@ CDEPEND="
sys-libs/zlib
pcre? (
pcre-jit? ( dev-libs/libpcre2[jit(+)] )
-   !pcre-jit? ( dev-libs/libpcre[-jit(-)] )
+   !pcre-jit? ( dev-libs/libpcre )
)
perl? ( dev-lang/perl:=[-build(-)] )
tk? ( dev-lang/tk:0= )

diff --git a/dev-vcs/git/git--r3.ebuild b/dev-vcs/git/git--r3.ebuild
index 5f87faa86de..1ef3c35807c 100644
--- a/dev-vcs/git/git--r3.ebuild
+++ b/dev-vcs/git/git--r3.ebuild
@@ -53,7 +53,7 @@ CDEPEND="
sys-libs/zlib
pcre? (
pcre-jit? ( dev-libs/libpcre2[jit(+)] )
-   !pcre-jit? ( dev-libs/libpcre[-jit(-)] )
+   !pcre-jit? ( dev-libs/libpcre )
)
perl? ( dev-lang/perl:=[-build(-)] )
tk? ( dev-lang/tk:0= )

diff --git a/dev-vcs/git/git-.ebuild b/dev-vcs/git/git-.ebuild
index 4a0448a0496..98deedf0d9f 100644
--- a/dev-vcs/git/git-.ebuild
+++ b/dev-vcs/git/git-.ebuild
@@ -53,7 +53,7 @@ CDEPEND="
sys-libs/zlib
pcre? (
pcre-jit? ( dev-libs/libpcre2[jit(+)] )
-   !pcre-jit? ( dev-libs/libpcre[-jit(-)] )
+   !pcre-jit? ( dev-libs/libpcre )
)
perl? ( dev-lang/perl:=[-build(-)] )
tk? ( dev-lang/tk:0= )



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

2017-08-09 Thread Markus Meier
commit: 9cf21286e173427508c574413e28c810b499bb08
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:40:46 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:40:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9cf21286

dev-util/kyua: arm stable, bug #627040

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

 dev-util/kyua/kyua-0.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/kyua/kyua-0.13-r1.ebuild 
b/dev-util/kyua/kyua-0.13-r1.ebuild
index 5d7ae53da08..dec65cd3008 100644
--- a/dev-util/kyua/kyua-0.13-r1.ebuild
+++ b/dev-util/kyua/kyua-0.13-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/jmmv/kyua/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 # Tests fail



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

2017-08-09 Thread Markus Meier
commit: 7fb285a2340720d298de89a63f4fad5d0394571a
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:40:52 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:40:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fb285a2

dev-lua/lutok: arm stable, bug #627040

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

 dev-lua/lutok/lutok-0.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lutok/lutok-0.4-r1.ebuild 
b/dev-lua/lutok/lutok-0.4-r1.ebuild
index 8966a017741..9e49908f159 100644
--- a/dev-lua/lutok/lutok-0.4-r1.ebuild
+++ b/dev-lua/lutok/lutok-0.4-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/jmmv/lutok/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2017-08-09 Thread Markus Meier
commit: 255bd107e9dc972d90a418a040f74700432c62b2
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:40:57 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:40:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=255bd107

dev-util/pkgconf: arm stable, bug #627040

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

 dev-util/pkgconf/pkgconf-1.3.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/pkgconf/pkgconf-1.3.7.ebuild 
b/dev-util/pkgconf/pkgconf-1.3.7.ebuild
index 71ddeb1b480..e0a773084d9 100644
--- a/dev-util/pkgconf/pkgconf-1.3.7.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.3.7.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "" ]] ; then
inherit autotools git-r3
 else
SRC_URI="https://distfiles.dereferenced.org/${PN}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 fi
 
 inherit ltprune multilib-minimal



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

2017-08-09 Thread Markus Meier
commit: a78b7f76c41308e3917900812944e6cb99f14a8e
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:39:50 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:39:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a78b7f76

dev-libs/atf: arm stable, bug #627040

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

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

diff --git a/dev-libs/atf/atf-0.21.ebuild b/dev-libs/atf/atf-0.21.ebuild
index b9de9363951..0e1b96bc6e7 100644
--- a/dev-libs/atf/atf-0.21.ebuild
+++ b/dev-libs/atf/atf-0.21.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/jmmv/atf/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="virtual/pkgconfig"



[gentoo-commits] repo/gentoo:master commit in: sys-auth/rtkit/

2017-08-09 Thread Markus Meier
commit: 086a16df82a58adc2be86bed6852f94632b91443
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:38:47 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:38:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=086a16df

sys-auth/rtkit: arm stable, bug #626788

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

 sys-auth/rtkit/rtkit-0.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/rtkit/rtkit-0.11-r2.ebuild 
b/sys-auth/rtkit/rtkit-0.11-r2.ebuild
index 64a2634869e..19871d4fb60 100644
--- a/sys-auth/rtkit/rtkit-0.11-r2.ebuild
+++ b/sys-auth/rtkit/rtkit-0.11-r2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://0pointer.de/public/${P}.tar.xz;
 
 LICENSE="GPL-3 BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~sh ~sparc ~x86"
 IUSE=""
 
 RDEPEND="



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

2017-08-09 Thread Markus Meier
commit: 2498e8c81143deff0b7706c553b609a22ec1ba79
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:38:27 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:38:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2498e8c8

dev-go/siphash: arm stable, bug #626778

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

 dev-go/siphash/siphash-1.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-go/siphash/siphash-1.0.0.ebuild 
b/dev-go/siphash/siphash-1.0.0.ebuild
index 1b96d9db6ef..661097863e1 100644
--- a/dev-go/siphash/siphash-1.0.0.ebuild
+++ b/dev-go/siphash/siphash-1.0.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
 
 EAPI=6
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/dchest/siphash/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 DESCRIPTION="Go implementation of SipHash-2.4"
 HOMEPAGE="https://github.com/dchest/siphash;
 
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 arm ~x86"
 
 LICENSE="CC0-1.0"
 SLOT="0"



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

2017-08-09 Thread Markus Meier
commit: 759236a7c6812bf9349a761366d0943451eccbe4
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:38:07 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:38:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=759236a7

net-misc/dhcp: arm stable, bug #626750

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

 net-misc/dhcp/dhcp-4.3.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dhcp/dhcp-4.3.5.ebuild b/net-misc/dhcp/dhcp-4.3.5.ebuild
index 3e735401ddc..134f99e02e8 100644
--- a/net-misc/dhcp/dhcp-4.3.5.ebuild
+++ b/net-misc/dhcp/dhcp-4.3.5.ebuild
@@ -17,7 +17,7 @@ SRC_URI="ftp://ftp.isc.org/isc/dhcp/${MY_P}.tar.gz
 
 LICENSE="ISC BSD SSLeay GPL-2" # GPL-2 only for init script
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="+client ipv6 kernel_linux ldap libressl selinux +server ssl vim-syntax"
 
 DEPEND="



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

2017-08-09 Thread Markus Meier
commit: 0371191cf6c01bbcce9f52b963fa13ba13325270
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:39:07 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:39:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0371191c

sys-process/time: arm stable, bug #626880

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

 sys-process/time/time-1.7-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/time/time-1.7-r3.ebuild 
b/sys-process/time/time-1.7-r3.ebuild
index b432383944d..20f33a4e78f 100644
--- a/sys-process/time/time-1.7-r3.ebuild
+++ b/sys-process/time/time-1.7-r3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/time/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 DEPEND="sys-apps/texinfo"



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

2017-08-09 Thread Markus Meier
commit: 9546fe8d1a8af6728af2faaaf7f3224cb6a0c0a6
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:39:30 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:39:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9546fe8d

sys-apps/openrc: arm stable, bug #626934

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

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

diff --git a/sys-apps/openrc/openrc-0.28.ebuild 
b/sys-apps/openrc/openrc-0.28.ebuild
index 96718235fb0..6a9371c2ec1 100644
--- a/sys-apps/openrc/openrc-0.28.ebuild
+++ b/sys-apps/openrc/openrc-0.28.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 fi
 
 LICENSE="BSD-2"



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

2017-08-09 Thread Markus Meier
commit: a5e4d18e1c2a6dd6dc48c3d3c1bc84ec96dba113
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:37:23 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:37:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5e4d18e

dev-libs/ossp-uuid: arm stable, bug #573940

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

 dev-libs/ossp-uuid/ossp-uuid-1.6.2-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r6.ebuild 
b/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r6.ebuild
index 3c24d863f21..392817bf35e 100644
--- a/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r6.ebuild
+++ b/dev-libs/ossp-uuid/ossp-uuid-1.6.2-r6.ebuild
@@ -22,7 +22,7 @@ SRC_URI="ftp://ftp.ossp.org/pkg/lib/uuid/${MY_P}.tar.gz;
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="~alpha ~amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos"
 IUSE="+cxx perl php static-libs"
 
 DEPEND="perl? ( dev-lang/perl:= )"



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

2017-08-09 Thread Markus Meier
commit: b5c64d1c1b1173d0c3c2439a27b25c28cba5fbb0
Author: Markus Meier  gentoo  org>
AuthorDate: Thu Aug 10 04:37:48 2017 +
Commit: Markus Meier  gentoo  org>
CommitDate: Thu Aug 10 04:37:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5c64d1c

dev-libs/nettle: arm stable, bug #626010

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

 dev-libs/nettle/nettle-3.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/nettle/nettle-3.3-r2.ebuild 
b/dev-libs/nettle/nettle-3.3-r2.ebuild
index b7fd0e89af0..38dd8421fd2 100644
--- a/dev-libs/nettle/nettle-3.3-r2.ebuild
+++ b/dev-libs/nettle/nettle-3.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/6.1" # subslot = libnettle soname version, .1 as broke ABI bug#601512
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 ~s390 ~sh ~sparc 
~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="doc +gmp neon static-libs test cpu_flags_x86_aes"
 
 DEPEND="gmp? ( >=dev-libs/gmp-5.0:0=[${MULTILIB_USEDEP}] )"



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

2017-08-09 Thread Anthony G. Basile
commit: a761e170eb3d6ae161c13815563eea04695ed0ee
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Aug 10 04:33:16 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Aug 10 04:33:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a761e170

net-misc/curl: version bump to 7.55.0, bug #626776

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-misc/curl/Manifest   |   1 +
 net-misc/curl/curl-7.55.0.ebuild | 242 +++
 2 files changed, 243 insertions(+)

diff --git a/net-misc/curl/Manifest b/net-misc/curl/Manifest
index e8889eaaebd..b8aa81b5828 100644
--- a/net-misc/curl/Manifest
+++ b/net-misc/curl/Manifest
@@ -2,3 +2,4 @@ DIST curl-7.53.0.tar.bz2 2612491 SHA256 
b2345a8bef87b4c229dedf637cb203b5e21db05e
 DIST curl-7.53.1.tar.bz2 2609559 SHA256 
1c7207c06d75e9136a944a2e0528337ce76f15b9ec9ae4bb30d703b59bf530e8 SHA512 
c668494d0e795f34b00505ca68ab41fbb475a1bccbcac1d0bbacbbbafa40a994472e100be18a0c10f8fa21b5b9bd3f4e66c1e68ff5423b13b82d829cbaefcd52
 WHIRLPOOL 
bf5f0a795a2612284e84fa7917351b2d41370bda0efc84f2e21456f7110f1f1f6cbf52b0956b0ba586cdcafbbaad5e47bfea82bf37cde39434a18ee5d0dbfdaf
 DIST curl-7.54.0.tar.bz2 2602286 SHA256 
f50ebaf43c507fa7cc32be4b8108fa8bbd0f5022e90794388f3c7694a302ff06 SHA512 
2ed8d32a6803ecddcb587495107d9ebce724d34dae5cad1f8be241e93340e913bb8ce9b69259cb84b3d53c2e672e142c3aad471c4a251bd1d42fc06eb9d8f650
 WHIRLPOOL 
37dc3e01e0466cdfb7ed061bd791b816112ca9af6ed88dfb89e47e814111e5968d980d2a8e6542d1a87882d540d04bac9d4f4ed6f4f7c5861e3f05ee623752e7
 DIST curl-7.54.1.tar.bz2 2612443 SHA256 
fdfc4df2d001ee0c44ec071186e770046249263c491fcae48df0e1a3ca8f25a0 SHA512 
eb9639677f0ca1521ca631c520ab83ad071c52b31690e5e7f31546f6a44b2f11d1bb62282056cffb570eb290bf1e7830e87cb536295ac6a54a904663e795f2da
 WHIRLPOOL 
199b4ec87451303ed06a6864ea398f1c7f5b4f2653935aa203f1b5c0435904e70da7e899d6c60846ea275445b96d563d538dfbfed0c438206f3c5cb742cda069
+DIST curl-7.55.0.tar.bz2 2782908 SHA256 
af1d69ec6f15fe70a2cabaa98309732bf035ef2a735e4e1a3e08754d2780e5b1 SHA512 
4975864621219e937585aaf5a9a54bba112b58bbf5a8acd92e1e972ea747a15a5564143548c5d8930b8c0d0e9d27d28225d0c81e52a1ba71e4c6f9e3859c978b
 WHIRLPOOL 
a40968bb46f5325fa92c190c4e983bb5b5383e0bb2103d57c2750f9825719b77bd1d40e25095aa571b21ad4333888d4146130712f7ed260cbb269a5d1023a5d4

diff --git a/net-misc/curl/curl-7.55.0.ebuild b/net-misc/curl/curl-7.55.0.ebuild
new file mode 100644
index 000..5227717914f
--- /dev/null
+++ b/net-misc/curl/curl-7.55.0.ebuild
@@ -0,0 +1,242 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit autotools eutils prefix multilib-minimal
+
+DESCRIPTION="A Client that groks URLs"
+HOMEPAGE="https://curl.haxx.se/;
+SRC_URI="https://curl.haxx.se/download/${P}.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE="adns http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl 
static-libs test threads"
+IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls 
curl_ssl_nss +curl_ssl_openssl curl_ssl_winssl"
+IUSE+=" elibc_Winnt"
+
+#lead to lots of false negatives, bug #285669
+RESTRICT="test"
+
+RDEPEND="ldap? ( net-nds/openldap[${MULTILIB_USEDEP}] )
+   ssl? (
+   curl_ssl_axtls? (
+   net-libs/axtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_gnutls? (
+   net-libs/gnutls:0=[static-libs?,${MULTILIB_USEDEP}]
+   dev-libs/nettle:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_libressl? (
+   dev-libs/libressl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_mbedtls? (
+   net-libs/mbedtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   curl_ssl_openssl? (
+   dev-libs/openssl:0=[static-libs?,${MULTILIB_USEDEP}]
+   )
+   curl_ssl_nss? (
+   dev-libs/nss:0[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   )
+   http2? ( net-libs/nghttp2[${MULTILIB_USEDEP}] )
+   idn? ( net-dns/libidn2:0[static-libs?,${MULTILIB_USEDEP}] )
+   adns? ( net-dns/c-ares:0[${MULTILIB_USEDEP}] )
+   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   metalink? ( >=media-libs/libmetalink-0.1.1[${MULTILIB_USEDEP}] )
+   rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )
+   ssh? ( net-libs/libssh2[static-libs?,${MULTILIB_USEDEP}] )
+   

[gentoo-commits] proj/musl:master commit in: dev-libs/icu/

2017-08-09 Thread Jory Pratt
commit: 2cf03e6f7488b9b848905cbe8c7b68a2b219057e
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Thu Aug 10 01:55:17 2017 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Thu Aug 10 01:55:17 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=2cf03e6f

dev-libs/icu - sync with tree, version 59.1

 dev-libs/icu/Manifest | 3 ++-
 dev-libs/icu/{icu-58.2.ebuild => icu-59.1.ebuild} | 3 +--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/icu/Manifest b/dev-libs/icu/Manifest
index cb428ba..7a65c54 100644
--- a/dev-libs/icu/Manifest
+++ b/dev-libs/icu/Manifest
@@ -5,7 +5,8 @@ AUX icu-58.2-CVE-2017-7867.patch 8934 SHA256 
2dfef95f7f0ac9f769a8d221ba2572f30bb
 AUX icu-58.2-no-xlocale.patch 464 SHA256 
450510c2c946974e9e70dec067bc2a14b5c50b23312c01255f5adbdcc3fc21d9 SHA512 
ff2a0846302a215c0b36dc705cb5eb5386ef972d8d16d06a5901140d9809f3c7fee989c9151c51530f4771a353297f5dee8473004b04ce12689d68bdbca5fb60
 WHIRLPOOL 
0c49b90b37ba64edaabc1c8b3cedf612bc7a289cd6d4f6755eb31335a0af87004f5af4313af4c4f46b797f092c710b283c46f191765c74429cf171625d4da5d3
 DIST icu4c-58_1-src.tgz 23366443 SHA256 
0eb46ba3746a9c2092c8ad347a29b1a1b4941144772d13a88667a7b11ea30309 SHA512 
59b2a76834192a35125fda326587e613ef4486152cf0278c6f22568d4ae02c4b2d897efcea2654ef2b11bd1c3154aecd38cb68a70f69430736f343689f94c155
 WHIRLPOOL 
faf2624a83f0d6f874166b328522dc9c89088db2690433ab05e96371722b635b81fd5210c7e87fe8e5df6681e881cf10204832925b448552affe8c2f6c851e37
 DIST icu4c-58_2-src.tgz 23369902 SHA256 
2b0a4410153a9b20de0e20c7d8b66049a72aef244b53683d0d7521371683da0c SHA512 
5c21af748f48b392e6c0412bd0aee92162ea931820dcbfab4ec6e0299868504b303d88f7586cc95de55c777ac0dca3a29d6c8ca0892c646ebc864c8a5b5a162a
 WHIRLPOOL 
25829f8ee870b703fd604ae5b9b584390a142f5011e2a5db18332453e2f1640d81270086f243318eeb93f187b04ea23dab14901ab81c8d924c8d47b1f77aee5a
+DIST icu4c-59_1-src.tgz 22706578 SHA256 
7132fdaf9379429d004005217f10e00b7d2319d0fea22bdfddef8991c45b75fe SHA512 
9348aa68d72a74cd1f26588c30c80eee1b48800a26930d7eb0749390fd65f7930ee8843058b6a6dd5f265e79054fef661e807ded16a1ad691cbc5ebc5ab944c4
 WHIRLPOOL 
f213951e98b7e1b59a3caf193f671fd9dff9a77c49aa3c4c118d6e3414688830ffb029d5c01495b369d4e666ab38669340a4c24a26f93742a99145972e20ede0
 EBUILD icu-58.1-r1.ebuild 3375 SHA256 
ab02bc4f595c342de9eb6c1c970c0db874f8c979b1ba9391172a330fac4c0e23 SHA512 
e97c42dffbf27cebf2c6380b199f2ae01884322a8cdeb0a56669f6e017673175f3c12f41e4a3344fd7ddb54e442c2987a5e9d975f457579cbd39949ff9ffda75
 WHIRLPOOL 
881c33e01d00742a3bdb76595f60d9c0a366fb7e3b764ef40d5ad09636b4726b23f38357650b2fe4e2138850fe2103a55746726b39b08dda2a3bc504f2e9d641
 EBUILD icu-58.2-r1.ebuild 3423 SHA256 
c07728cfbf6f7167053bd814089ae4a24afb70169d3240f437dcd6deabd48c4c SHA512 
f33406ee757ff17b155c1b5b38bd0eec6565e9704288630f47c1ff89ac3baa8ff91668df0a3994f1cbdff0bfeca285f453f06157685ab09eac0518fcdf485e13
 WHIRLPOOL 
df30a838489eb79fdcb92eca36eaa4437969102f8731644eec892554b05ad181074846cce7765918f7815c0e3ce01daace61dfeb6b850e3d4d093c66e1480101
-EBUILD icu-58.2.ebuild 3385 SHA256 
1e18328e726e0009dcb9647e0a15bb38f5b1340fba007cd34c8be5f30f2ed40e SHA512 
608070d11d128eaba89674c006d1567886156071c0cf4cd75dd00cebd6bcfe504412713f81ee704f75f14080940d427ba9f97e60ae9d973c6b64f8b5447221aa
 WHIRLPOOL 
9be176bfc25aadcf230775faa67257419cabbd36f85b4d16ff427104c23a3ec753425b5ccfeac56734a39e57e20b171664fedbd975deb5fea8d209eac41fc271
+EBUILD icu-59.1.ebuild 3336 SHA256 
6f6769e25f9125053fe80a6773b828ea7c194363c2c2dab9b2046e5f7a31775a SHA512 
41946386ed1cb07fc3ceb218378ca300a2b321bfa0be0da169a2a642e658f396837d1cb0c25f78c05a4c6211739bde0b2ce4ffab47e3d412690f4f2ee9d42f2d
 WHIRLPOOL 
9406c20ac5270cb661af6dbf06053a45e3b0ce5cf1d10f9180d70050db3fd60058a38ba903f765c10a0592a64ed1a688b325dda8a15cafa5253f2a77e64424cf
 MISC metadata.xml 255 SHA256 
34d028c790cfe86c47c5c3dcf8655fcefc3e23ff52fed38a400ce42d678c8c5e SHA512 
ac646e8ac676faf0aac283e4be31c5f2b29e98ccf07327073ed05e688ce696caf639bdfea63e4aed141a90e84c0a86892bc717a52b95cdf1739aaa15240013c3
 WHIRLPOOL 
87f716948fe95e5417f8da0c4c90cd51a68f246ac8ae87a2e2a31c11c709f220d664eb893b34692577415e5f5eb351dd7e310dbc59f508fa40c7edb8ceeb

diff --git a/dev-libs/icu/icu-58.2.ebuild b/dev-libs/icu/icu-59.1.ebuild
similarity index 95%
rename from dev-libs/icu/icu-58.2.ebuild
rename to dev-libs/icu/icu-59.1.ebuild
index 4eaa113..f0f9f26 100644
--- a/dev-libs/icu/icu-58.2.ebuild
+++ b/dev-libs/icu/icu-59.1.ebuild
@@ -13,7 +13,7 @@ LICENSE="BSD"
 
 SLOT="0/${PV}"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~x86-fbsd"
 IUSE="debug doc examples static-libs"
 
 DEPEND="
@@ -31,7 +31,6 @@ MULTILIB_CHOST_TOOLS=(
 
 PATCHES=(
"${FILESDIR}/${PN}-58.1-remove-bashisms.patch"
-   "${FILESDIR}/${PN}-58.1-iterator.patch"

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

2017-08-09 Thread Jason Donenfeld
commit: 04081db25cda5c7dd9c3e8bbc8d3b971313ffc90
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Thu Aug 10 00:20:22 2017 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Thu Aug 10 00:20:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04081db2

net-vpn/wireguard: bump

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 net-vpn/wireguard/Manifest  | 2 +-
 .../{wireguard-0.0.20170726.ebuild => wireguard-0.0.20170810.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/wireguard/Manifest b/net-vpn/wireguard/Manifest
index c16e990a9ab..d5b0a8d3f8a 100644
--- a/net-vpn/wireguard/Manifest
+++ b/net-vpn/wireguard/Manifest
@@ -1 +1 @@
-DIST WireGuard-0.0.20170726.tar.xz 165052 SHA256 
db91452b6b5ec28049721a520fe4fd0683825bad45b7383d12d7b819668201db SHA512 
64f7583f0031ab79d70a494ce734fbb5a31b508d3dd4ac00214cce7fdd0eb61468ab49410c92d9e0dc07a382d83c9cf7af9298e6e794b18c081e1089f969729b
 WHIRLPOOL 
61a9f610a347227c673b2a4156fe7a889feed5c1ca8a292810e10b325b1b9d8506214c5fad7fa82908e516f145a6743fd6795bc0f7646d617439780c9e8594cf
+DIST WireGuard-0.0.20170810.tar.xz 164328 SHA256 
ab96230390625aad6f4816fa23aef6e9f7fee130f083d838919129ff12089bf7 SHA512 
41aa997fa9d333a8d93096e5a4a776be7bdd14d227c4cffe3027ff1db6dff36b2fa56c1d028a574aa05b5e1572badbf5af3c1612334382f405caa30e92cfd34e
 WHIRLPOOL 
99d82dc4822fa5c238b2e162761538b5b9ae4a842441e716f1d69f4873eccfc99f94cf5878149d2c05cf34ba97755d712ef5d596a27bb0cddbd8a62e92f5cde2

diff --git a/net-vpn/wireguard/wireguard-0.0.20170726.ebuild 
b/net-vpn/wireguard/wireguard-0.0.20170810.ebuild
similarity index 100%
rename from net-vpn/wireguard/wireguard-0.0.20170726.ebuild
rename to net-vpn/wireguard/wireguard-0.0.20170810.ebuild



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

2017-08-09 Thread Gilles Dartiguelongue
commit: 9c4101d59ab003661aff4d53c91825c9a3088235
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Wed Aug  9 22:55:56 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Wed Aug  9 22:58:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c4101d5

app-text/evince: version bump 3.24.0 → 3.24.1

Performance enhancements. Fix a problem with layers not from the
current visible page and crash with orca.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-text/evince/Manifest |  1 +
 app-text/evince/evince-3.24.1.ebuild | 98 
 2 files changed, 99 insertions(+)

diff --git a/app-text/evince/Manifest b/app-text/evince/Manifest
index 5c901954c2f..19784c89eac 100644
--- a/app-text/evince/Manifest
+++ b/app-text/evince/Manifest
@@ -1,2 +1,3 @@
 DIST evince-3.22.1.tar.xz 3365004 SHA256 
f3d439db3b5a5745d26175d615a71dffa1535235b1e3aa0b85d397ea33ab231c SHA512 
c36a90bf98f25b4f9f05536f1a09c38be30b814529e17a4ab159ba7c1e952402a211f335d4cdf1928ace8a5b46d6d019fbbd457ce11c2ffa264d8bb7c32d5a18
 WHIRLPOOL 
7b646bab40f9c05b7689de70b1de2e313b0576a772887187d71b51b00c456251169b7e5bb85f44f443a0dcce5199a405dc303c49a4be3d62c244225493c58749
 DIST evince-3.24.0.tar.xz 3507256 SHA256 
043895af7bbd6f1b57f9ab8778e78cf9c0af5dfcc347eaa94a17bf864c04dc8f SHA512 
b793c44b2976abe58461adfdb0b1874af8d6bafaf9b80a851d94b776f9d50f6a81774bcb5b35cd59a9ad3afeea9a8b88018aa85d670373c7c2fa9617407a09c4
 WHIRLPOOL 
944a9622802d2ab99140115f65922cf79baefcabf43be08b9b3f9654fe095ef57909a03ba20ad6cfe1f396878674265d7198e48669168b288e4b21ace1172a69
+DIST evince-3.24.1.tar.xz 3511576 SHA256 
9ca0c5213407b37be55fddb04a85d9301b692c4412c5920319d975403bff0f37 SHA512 
205c1c9b68c9215bdcebf0c36841a35898e056ef8e56208db62c1fac04c4efad8fbc0800f410e3c94c526536adba5e8ead68bebec8f81061a3831789c5173726
 WHIRLPOOL 
de0074c42ec8614a7ef34848de6768a722a855f3113fdad7392993a913f707f6e4fc55f86cbab945b41bc84ba92d79c82e2bc0b680a99702681b4d775706e3c6

diff --git a/app-text/evince/evince-3.24.1.ebuild 
b/app-text/evince/evince-3.24.1.ebuild
new file mode 100644
index 000..28ce5a2f8a0
--- /dev/null
+++ b/app-text/evince/evince-3.24.1.ebuild
@@ -0,0 +1,98 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2 systemd
+
+DESCRIPTION="Simple document viewer for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Evince;
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+# subslot = evd3.(suffix of libevdocument3)-evv3.(suffix of libevview3)
+SLOT="0/evd3.4-evv3.3"
+IUSE="djvu dvi gstreamer gnome gnome-keyring +introspection nautilus nsplugin 
+postscript t1lib tiff xps"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+
+# atk used in libview
+# gdk-pixbuf used all over the place
+COMMON_DEPEND="
+   dev-libs/atk
+   >=dev-libs/glib-2.36:2[dbus]
+   >=dev-libs/libxml2-2.5:2
+   sys-libs/zlib:=
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.16.0:3[introspection?]
+   gnome-base/gsettings-desktop-schemas
+   >=x11-libs/cairo-1.10:=
+   >=app-text/poppler-0.33[cairo]
+   djvu? ( >=app-text/djvu-3.5.22:= )
+   dvi? (
+   virtual/tex-base
+   dev-libs/kpathsea:=
+   t1lib? ( >=media-libs/t1lib-5:= ) )
+   gstreamer? (
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   media-libs/gst-plugins-good:1.0 )
+   gnome? ( gnome-base/gnome-desktop:3= )
+   gnome-keyring? ( >=app-crypt/libsecret-0.5 )
+   introspection? ( >=dev-libs/gobject-introspection-1:= )
+   nautilus? ( >=gnome-base/nautilus-2.91.4[introspection?] )
+   postscript? ( >=app-text/libspectre-0.2:= )
+   tiff? ( >=media-libs/tiff-3.6:0= )
+   xps? ( >=app-text/libgxps-0.2.1:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   gnome-base/gvfs
+   gnome-base/librsvg
+   || (
+   >=x11-themes/adwaita-icon-theme-2.17.1
+   >=x11-themes/hicolor-icon-theme-0.10 )
+"
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.3
+   app-text/yelp-tools
+   dev-util/gdbus-codegen
+   >=dev-util/gtk-doc-am-1.13
+   >=dev-util/intltool-0.35
+   dev-util/itstool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+# eautoreconf needs:
+#  app-text/yelp-tools
+
+src_prepare() {
+   gnome2_src_prepare
+
+   # Do not depend on adwaita-icon-theme, bug #326855, #391859
+   # https://bugs.freedesktop.org/show_bug.cgi?id=29942
+   sed -e 's/adwaita-icon-theme >= $ADWAITA_ICON_THEME_REQUIRED//g' \
+   -i configure || die "sed failed"
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   --enable-pdf \
+   --enable-comics \
+   --enable-thumbnailer \
+   

[gentoo-commits] repo/gentoo:master commit in: app-accessibility/orca/

2017-08-09 Thread Gilles Dartiguelongue
commit: 7419dcb240065b80c905223a00ef68751e0dadd1
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Wed Aug  9 21:53:48 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Wed Aug  9 22:58:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7419dcb2

app-accessibility/orca: fix repoman complaint about metadata.xml indentation

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-accessibility/orca/metadata.xml | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-accessibility/orca/metadata.xml 
b/app-accessibility/orca/metadata.xml
index 3d2c7506561..81828abc636 100644
--- a/app-accessibility/orca/metadata.xml
+++ b/app-accessibility/orca/metadata.xml
@@ -9,10 +9,10 @@
Enable braille support
 
 
-Orca is a flexible, extensible, and powerful assistive technology
-for people with visual impairments. Using various combinations of
-speech synthesis, braille, and magnification, Orca helps provide
-access to applications and toolkits that support the AT-SPI (e.g.,
-the GNOME desktop).
+   Orca is a flexible, extensible, and powerful assistive technology
+   for people with visual impairments. Using various combinations of
+   speech synthesis, braille, and magnification, Orca helps provide
+   access to applications and toolkits that support the AT-SPI (e.g.,
+   the GNOME desktop).
 
 



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

2017-08-09 Thread Gilles Dartiguelongue
commit: bf9661595d3a590f623d2e1d9a33c50b7484bc18
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Wed Aug  9 22:09:13 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Wed Aug  9 22:58:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf966159

app-arch/file-roller: add CPE to metadata

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-arch/file-roller/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-arch/file-roller/metadata.xml 
b/app-arch/file-roller/metadata.xml
index f89b8750da8..fee03a0b376 100644
--- a/app-arch/file-roller/metadata.xml
+++ b/app-arch/file-roller/metadata.xml
@@ -13,5 +13,6 @@


fileroller
+   cpe:/a:paolo_bacchilega:file_roller

 



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/orca/

2017-08-09 Thread Gilles Dartiguelongue
commit: bf7e40ed7ca3829e0933f7a620372ed06206e4f8
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Wed Aug  9 21:50:45 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Wed Aug  9 22:58:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf7e40ed

app-accessibility/orca: version bump 3.22.2 → 3.24.0

Updates to Web, MATE and LibreOffice handling. Couple of enhancements
in dealing with general GUI items (menus, autocompletion) and
translations updates.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-accessibility/orca/Manifest   |  1 +
 app-accessibility/orca/orca-3.24.0.ebuild | 72 +++
 2 files changed, 73 insertions(+)

diff --git a/app-accessibility/orca/Manifest b/app-accessibility/orca/Manifest
index e294ae41e3b..30690e96086 100644
--- a/app-accessibility/orca/Manifest
+++ b/app-accessibility/orca/Manifest
@@ -1 +1,2 @@
 DIST orca-3.22.2.tar.xz 2345292 SHA256 
599bc99fcf24aed7b97c832140f9355c79504c9250fcae90f611680368ca SHA512 
0c4f3055509fd983da1081c4e33a4675ca498e75a8f2701318c000810cf691758eaded01969a6b56a2c25cf507bc4cb7e099f8498d1a0f6fa739d074a23528c5
 WHIRLPOOL 
9d6a88310a6e53ab93d16740e90eed8af54185b47b93fa2e0f7ffdda37178be2f07f5d1db38bc23b526ba2f3ec408aab15749a97f81367bfd5951a72e5967c53
+DIST orca-3.24.0.tar.xz 2391740 SHA256 
27bd5e4eee12da737176a200b31d33e118d55ae832a4e3f0cbd3e756027246d1 SHA512 
9aa65b534f69bb4a1b800e715776416843ac3756ec1267feca3c66476e34e54f6744f70c0f8ac8868a009d38b6cc165267268491a9ad29ebbd3601dba09d424c
 WHIRLPOOL 
79c6e88d96603e14d5a7485f0cec22e5c6b67c850b974b9df279658cfb7a9ed1238b513256d45c7cbf34f81844eb6d8f3a851bc059d62d0730d85dbc19f301c2

diff --git a/app-accessibility/orca/orca-3.24.0.ebuild 
b/app-accessibility/orca/orca-3.24.0.ebuild
new file mode 100644
index 000..5d32bd31ed7
--- /dev/null
+++ b/app-accessibility/orca/orca-3.24.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python3_{4,5} )
+PYTHON_REQ_USE="threads"
+
+inherit gnome2 python-r1
+
+DESCRIPTION="Extensible screen reader that provides access to the desktop"
+HOMEPAGE="https://wiki.gnome.org/Projects/Orca;
+
+LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+
+IUSE="+braille"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=app-accessibility/at-spi2-atk-2.12:2
+   >=app-accessibility/at-spi2-core-2.12:2[introspection]
+   >=dev-libs/atk-2.10
+   >=dev-libs/glib-2.28:2
+   dev-python/gst-python:1.0[${PYTHON_USEDEP}]
+   >=dev-python/pygobject-3.10:3[${PYTHON_USEDEP}]
+   media-libs/gstreamer:1.0[introspection]
+   >=x11-libs/gtk+-3.6.2:3[introspection]
+   braille? (
+   >=app-accessibility/brltty-5.0-r3[python,${PYTHON_USEDEP}]
+   dev-libs/liblouis[python,${PYTHON_USEDEP}] )
+"
+RDEPEND="${COMMON_DEPEND}
+   >=app-accessibility/speech-dispatcher-0.8[python,${PYTHON_USEDEP}]
+   dev-libs/atk[introspection]
+   dev-python/pyatspi[${PYTHON_USEDEP}]
+   dev-python/setproctitle[${PYTHON_USEDEP}]
+   x11-libs/libwnck:3[introspection]
+   x11-libs/pango[introspection]
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-util/intltool-0.50
+   dev-util/itstool
+   virtual/pkgconfig
+"
+#  app-text/yelp-tools
+
+src_prepare() {
+   gnome2_src_prepare
+   python_copy_sources
+}
+
+src_configure() {
+   python_foreach_impl run_in_build_dir gnome2_src_configure \
+   $(use_with braille liblouis)
+}
+
+src_compile() {
+   python_foreach_impl run_in_build_dir gnome2_src_compile
+}
+
+src_install() {
+   installing() {
+   gnome2_src_install
+   # Massage shebang to make python_doscript happy
+   sed -e 's:#!'"${PYTHON}:#!/usr/bin/python:" \
+   -i src/orca/orca || die
+   python_doscript src/orca/orca
+   }
+   python_foreach_impl run_in_build_dir installing
+}



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

2017-08-09 Thread Gilles Dartiguelongue
commit: f47a7cfd27c96693cb4ee9f1919a058c5f603248
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Wed Aug  9 22:38:04 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Wed Aug  9 22:58:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f47a7cfd

app-misc/gnote: version bump 3.22.1 → 3.24.0

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-misc/gnote/Manifest|  1 +
 app-misc/gnote/gnote-3.24.0.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/app-misc/gnote/Manifest b/app-misc/gnote/Manifest
index e1bc66fbd02..90520a393ab 100644
--- a/app-misc/gnote/Manifest
+++ b/app-misc/gnote/Manifest
@@ -1 +1,2 @@
 DIST gnote-3.22.1.tar.xz 3309984 SHA256 
fa9434c2ba11bea73bd63436e5fd76949aca4f66dfd902295629c66ef27cd5eb SHA512 
0bbf89b39699294fe5a373decf10bcd7f3a86a20c49b9d82699fb758c7cd27b6939764236a1a7ffe21964a2ae196780d0861123776b1568344935e0b649e2f5f
 WHIRLPOOL 
b36307a24800078843a1cf6217aa7f2a88f2c2f2cc6707ac0b93a7c735e8e820b3ed3f07132647cb47273286771006150a4fe05c425f63554e4da0dee0d100ae
+DIST gnote-3.24.0.tar.xz 3307940 SHA256 
62e38c19ce7dfcd895729adabd72f654f31e03f28dbf4cbca68279e745c79cd4 SHA512 
640f24d1829a546e53eb2d269f965daafa651e141566fd2f7a4572245b309c06259f548fa38c86c55954f2d0f8f98c48b7da2ed982864ae6ffbcac4b5d64aecb
 WHIRLPOOL 
b866cde708f9950fe4b4a9af4e97bcc06336e61cfcbf649162323162daf7ef7a1c536ffec9460dc580d54e3cc3a03606967a6ff5aad79b5b847e20c4234ab707

diff --git a/app-misc/gnote/gnote-3.24.0.ebuild 
b/app-misc/gnote/gnote-3.24.0.ebuild
new file mode 100644
index 000..b0b68f6acf7
--- /dev/null
+++ b/app-misc/gnote/gnote-3.24.0.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit gnome2 readme.gentoo-r1
+
+DESCRIPTION="Desktop note-taking application"
+HOMEPAGE="https://wiki.gnome.org/Apps/Gnote;
+
+LICENSE="GPL-3+ FDL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+# Automagic:
+# glib-2.32 dep
+# >=dev-libs/unittest++-1.5.1 (but not detected due to missing .pc)
+COMMON_DEPEND="
+   >=app-crypt/libsecret-0.8
+   >=app-text/gtkspell-3.0:3
+   >=dev-cpp/glibmm-2.32:2
+   >=dev-cpp/gtkmm-3.18:3.0
+   >=dev-libs/glib-2.32:2[dbus]
+   >=dev-libs/libxml2-2:2
+   dev-libs/libxslt
+   >=sys-apps/util-linux-2.16:=
+   >=x11-libs/gtk+-3.20:3
+"
+RDEPEND="${COMMON_DEPEND}
+   gnome-base/gsettings-desktop-schemas
+"
+DEPEND="${DEPEND}
+   app-text/docbook-xml-dtd:4.1.2
+   >=dev-util/intltool-0.35.0
+   dev-util/itstool
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   # Do not alter CFLAGS
+   sed 's/-DDEBUG -g/-DDEBUG/' -i configure.ac configure || die
+
+   gnome2_src_prepare
+
+   if has_version net-fs/wdfs; then
+   DOC_CONTENTS="You have net-fs/wdfs installed. app-misc/gnote 
will use it to
+   synchronize notes."
+   else
+   DOC_CONTENTS="Gnote can use net-fs/wdfs to synchronize notes.
+   If you want to use that functionality just emerge net-fs/wdfs.
+   Gnote will automatically detect that you did and let you use 
it."
+   fi
+}
+
+src_configure() {
+   gnome2_src_configure \
+   --disable-static \
+   $(use_enable debug)
+}
+
+src_install() {
+   gnome2_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   gnome2_pkg_postinst
+   readme.gentoo_print_elog
+}



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

2017-08-09 Thread Gilles Dartiguelongue
commit: d9267f69777e61a95edb723ae419da1703b1ee6c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Wed Aug  9 22:07:44 2017 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Wed Aug  9 22:58:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9267f69

app-arch/file-roller: version bump 3.22.3 → 3.24.1

Restore nautilus extension for file types not supported by nautilus.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-arch/file-roller/Manifest  |  1 +
 app-arch/file-roller/file-roller-3.24.1.ebuild | 89 ++
 app-arch/file-roller/metadata.xml  |  2 +
 3 files changed, 92 insertions(+)

diff --git a/app-arch/file-roller/Manifest b/app-arch/file-roller/Manifest
index c6d78807555..5f2dcc36102 100644
--- a/app-arch/file-roller/Manifest
+++ b/app-arch/file-roller/Manifest
@@ -1 +1,2 @@
 DIST file-roller-3.22.3.tar.xz 1423048 SHA256 
de858640632a0e22769b6b73d5b98527f3cfc2c83f99692063e352e41d533505 SHA512 
f234388686cf539fc085866322083199176f94043e4c2c888d5806a2efa0dfcf5a090f64240a3d08aae39ed3d34d6b281e1a06d748c56b0f80508a01fac40b28
 WHIRLPOOL 
9729c333d9d42d5714aa1fa9905f87f125e40c22800cd9cc85af67c31a90aad9863bd5a73aa659a0a5a997aacf638a9c974afbbc04541e90ee7d6c011e66e802
+DIST file-roller-3.24.1.tar.xz 1428216 SHA256 
011545e8bd81a415fb068718347bf63ced4ab176210ce36a668904a3124c7f3a SHA512 
bd8750b8ffe3e7d3c74492e2ffdde519e7879d46f16c559d06042bac60c8ee63f492aeeaa66b4aff7c997150f4f2955e02a3b0565edf4bd7641a089ed052f268
 WHIRLPOOL 
1d8c0d5fd1c2e7cc9cec0e02b44b252df2b3076bb83f553bf87cd89b7ffb9e116f320e52694413cbc80a1fe6287ff77b794b1af0a032a8687d0e22941813c34c

diff --git a/app-arch/file-roller/file-roller-3.24.1.ebuild 
b/app-arch/file-roller/file-roller-3.24.1.ebuild
new file mode 100644
index 000..d0ee0fd3d69
--- /dev/null
+++ b/app-arch/file-roller/file-roller-3.24.1.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+
+inherit eutils gnome2 readme.gentoo-r1
+
+DESCRIPTION="Archive manager for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/FileRoller;
+
+LICENSE="GPL-2+ CC-BY-SA-3.0"
+SLOT="0"
+IUSE="libnotify nautilus packagekit"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+
+# gdk-pixbuf used extensively in the source
+# cairo used in eggtreemultidnd.c
+# pango used in fr-window
+RDEPEND="
+   >=app-arch/libarchive-3:=
+   >=dev-libs/glib-2.36:2
+   >=dev-libs/json-glib-0.14
+   >=x11-libs/gtk+-3.13.2:3
+   sys-apps/file
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/pango
+   libnotify? ( >=x11-libs/libnotify-0.4.3:= )
+   nautilus? ( >=gnome-base/nautilus-2.22.2 )
+   packagekit? ( app-admin/packagekit-base )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/intltool-0.50.1
+   dev-util/itstool
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+# eautoreconf needs:
+#  gnome-base/gnome-common
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="
+${PN} is a frontend for several archiving utilities. If you want a
+particular archive format support, see ${HOMEPAGE}
+and install the relevant package. For example:
+7-zip   - app-arch/p7zip
+ace - app-arch/unace
+arj - app-arch/arj
+cpio- app-arch/cpio
+deb - app-arch/dpkg
+iso - app-cdr/cdrtools
+jar,zip - app-arch/zip and app-arch/unzip
+lha - app-arch/lha
+lzop- app-arch/lzop
+lz4 - app-arch/lz4
+rar - app-arch/unrar or app-arch/unar
+rpm - app-arch/rpm
+unstuff - app-arch/stuffit
+zoo - app-arch/zoo"
+
+src_prepare() {
+   # File providing Gentoo package names for various archivers
+   cp -f "${FILESDIR}"/3.22-packages.match data/packages.match || die
+   gnome2_src_prepare
+}
+
+src_configure() {
+   # --disable-debug because enabling it adds -O0 to CFLAGS
+   gnome2_src_configure \
+   --disable-run-in-place \
+   --disable-static \
+   --disable-debug \
+   --enable-magic \
+   --enable-libarchive \
+   $(use_enable libnotify notification) \
+   $(use_enable nautilus nautilus-actions) \
+   $(use_enable packagekit)
+}
+
+src_install() {
+   gnome2_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   gnome2_pkg_postinst
+   readme.gentoo_print_elog
+}

diff --git a/app-arch/file-roller/metadata.xml 
b/app-arch/file-roller/metadata.xml
index 732e9f58dee..f89b8750da8 100644
--- a/app-arch/file-roller/metadata.xml
+++ b/app-arch/file-roller/metadata.xml
@@ -6,6 +6,8 @@
Gentoo GNOME Desktop


+   Build contextual menu extension for
+   gnome-base/nautilus.
Enable support for the distro-neutral 
package
manager GUI app-admin/packagekit
   

[gentoo-commits] proj/javatoolkit:master commit in: src/py/

2017-08-09 Thread Patrice Clement
commit: 477dbfbb5e308ddcfc8b16513fe2183f618d8a23
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Aug  9 22:28:46 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Aug  9 22:28:46 2017 +
URL:https://gitweb.gentoo.org/proj/javatoolkit.git/commit/?id=477dbfbb

convert usage to a multi line string

 src/py/xml-rewrite-2.py | 29 ++---
 1 file changed, 14 insertions(+), 15 deletions(-)

diff --git a/src/py/xml-rewrite-2.py b/src/py/xml-rewrite-2.py
index 46b4bfd..a6b88ee 100755
--- a/src/py/xml-rewrite-2.py
+++ b/src/py/xml-rewrite-2.py
@@ -204,21 +204,20 @@ class SaxRewriter(XMLGenerator, StreamRewriterBase):
 
 
 def main():
-usage = "Copyright 2004,2006,2007 Gentoo Foundation\n"
-usage += "Distributed under the terms of the GNU General Public Lincense 
v2\n"
-usage += "Please contact the Gentoo Java Team  with 
problems.\n"
-usage += "\n"
-usage += "Usage:\n"
-usage += " xml-rewrite.py [-f file] --delete [-g] -e tag [-e tag] -a 
attribute [-a attribute] [-i index]\n"
-usage += " xml-rewrite.py [-f file] --change [-g] -e tag [-e tag] -a 
attribute -v value [-a attribute -v value] \\\n"
-usage += " [--source-element tag] [--source-attribute 
attribute --source-value value] \\\n"
-usage += " [--target-element tag] [--target-attribute 
attribute --target-value value] [-i index]\n"
-usage += "Or:\n"
-usage += " xml-rewrite.py [-f file] -g\n"
-usage += "\n"
-usage += "If the -f parameter is not utilized, the script will read and\n"
-usage += "write to stdin and stdout respectively.  The use of quotes on\n"
-usage += "parameters will break the script.\n"
+usage = """Copyright 2004, 2006, 2007, 2017 Gentoo Foundation
+Distributed under the terms of the GNU General Public Lincense v2
+Please contact the Gentoo Java Team  with problems.
+Usage:
+xml-rewrite.py [-f file] --delete [-g] -e tag [-e tag] -a attribute [-a 
attribute] [-i index]
+xml-rewrite.py [-f file] --change [-g] -e tag [-e tag] -a attribute -v 
value [-a attribute -v value]
+   [--source-element tag] [--source-attribute attribute --source-value 
value]
+   [--target-element tag] [--target-attribute attribute --target-value 
value] [-i index]
+Or:
+xml-rewrite.py [-f file] -g
+
+If the -f parameter is not utilized, the script will read and
+write to stdin and stdout respectively. The use of quotes on
+parameters will break the script."""
 
 def error(message):
 print("ERROR: " + message)



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

2017-08-09 Thread Matt Thode
commit: b1d74d3c7e50c8d93221278532d25060f12b34b4
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  9 22:20:15 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  9 22:20:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d74d3c

sys-boot/plymouth: fixing up 

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-boot/plymouth/plymouth-0.9.3.ebuild |  2 +-
 sys-boot/plymouth/plymouth-.ebuild  | 47 -
 2 files changed, 24 insertions(+), 25 deletions(-)

diff --git a/sys-boot/plymouth/plymouth-0.9.3.ebuild 
b/sys-boot/plymouth/plymouth-0.9.3.ebuild
index ef1d1a8d76e..ea9aa1bd7d6 100644
--- a/sys-boot/plymouth/plymouth-0.9.3.ebuild
+++ b/sys-boot/plymouth/plymouth-0.9.3.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="git://anongit.freedesktop.org/plymouth"
inherit git-r3
 else
-   SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz;
+   SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz;
 fi
 
 inherit autotools readme.gentoo-r1 systemd toolchain-funcs

diff --git a/sys-boot/plymouth/plymouth-.ebuild 
b/sys-boot/plymouth/plymouth-.ebuild
index e05e8ca9e1e..ea9aa1bd7d6 100644
--- a/sys-boot/plymouth/plymouth-.ebuild
+++ b/sys-boot/plymouth/plymouth-.ebuild
@@ -1,20 +1,18 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-SRC_URI="
-   
https://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo.png;
+SRC_URI="https://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo.png;
 
 if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="git://anongit.freedesktop.org/plymouth"
-   AUTOTOOLS_AUTORECONF="1"
inherit git-r3
 else
-   SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.bz2;
+   SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz;
 fi
 
-inherit autotools-utils readme.gentoo systemd toolchain-funcs
+inherit autotools readme.gentoo-r1 systemd toolchain-funcs
 
 DESCRIPTION="Graphical boot animation (splash) and logger"
 HOMEPAGE="https://cgit.freedesktop.org/plymouth/;
@@ -48,28 +46,29 @@ DOC_CONTENTS="
https://wiki.gentoo.org/wiki/Plymouth#Configuration
 "
 
-src_prepare() {
-   autotools-utils_src_prepare
-}
+PATCHES=(
+)
 
 src_configure() {
-   local myeconfargs=(
-   --with-system-root-install=no
-   --localstatedir=/var
-   --without-rhgb-compat-link
-   --enable-systemd-integration
-   "$(systemd_with_unitdir)"
-   $(use_enable debug tracing)
-   $(use_enable gtk gtk)
-   $(use_enable libkms drm)
-   $(use_enable pango)
-   $(use_enable gdm gdm-transition)
-   )
-   autotools-utils_src_configure
+   local myconf
+   myconf="--with-system-root-install=no
+   --localstatedir=/var
+   --without-rhgb-compat-link
+   --enable-systemd-integration
+   --with-systemdunitdir="$(systemd_get_systemunitdir)"
+   $(use_enable !static-libs shared)
+   $(use_enable static-libs static)
+   $(use_enable debug tracing)
+   $(use_enable gtk gtk)
+   $(use_enable libkms drm)
+   $(use_enable pango)
+   $(use_enable gdm gdm-transition)"
+   eautoreconf
+   econf ${myconf}
 }
 
 src_install() {
-   autotools-utils_src_install
+   default
 
insinto /usr/share/plymouth
newins "${DISTDIR}"/gentoo-logo.png bizcom.png



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

2017-08-09 Thread Matt Thode
commit: 55f3cd600b6730803473086842903db6f2187f88
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  9 22:15:31 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  9 22:20:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55f3cd60

sys-boot/plymouth: 0.9.3 bup

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 sys-boot/plymouth/Manifest  |  1 +
 sys-boot/plymouth/plymouth-0.9.3.ebuild | 95 +
 2 files changed, 96 insertions(+)

diff --git a/sys-boot/plymouth/Manifest b/sys-boot/plymouth/Manifest
index 5fd15751352..0b119724dc2 100644
--- a/sys-boot/plymouth/Manifest
+++ b/sys-boot/plymouth/Manifest
@@ -1,2 +1,3 @@
 DIST gentoo-logo.png 14501 SHA256 
79ebc1d66693371a90e218ad421cfed05066b51a6645bd967bb7da356a0881fa SHA512 
059a555931b6d2a910bcd887f5ea0cc17c6edf2d2d45c03a1fec1bdda0138ba6bca6bdf90a65c6520a3f8f1b51ecf6f7956098f45ed6c1276f29c835e729163c
 WHIRLPOOL 
65496223badb9a96cc72ba6a2432860af0756eea57f67946d2466ff1c3c1171c84568c502aa576613b77767c41cf251856728b509c72003567d4cebd1943375e
 DIST plymouth-0.9.2.tar.bz2 1231336 SHA256 
2f0ce82042cf9c7eadd2517a1f74c8a85fa8699781d9f294a06eade29fbed57f SHA512 
89356eb8326504fbf3155de262ce15de0847f0a0e6d157d873cf1dea9af464a6cb9e11d7143ee9a595b217a2487060b5835eba5ac142c3cd6d66689deb272e60
 WHIRLPOOL 
5f9e662dec633bb606cf4246611b442a0eb9eaa92942b37c53d1c48b6ca8ef96c5f4330d574b82de6a026ca175a770c1a45f52c7809c80d026126d805e707eba
+DIST plymouth-0.9.3.tar.xz 1102724 SHA256 
9f8dd08a90ceaf6228dcd8c27759adf18fc9482f15b6c56dcbcced268b4e4a74 SHA512 
d7b9ba97485cdac7ad6bcaf5a7f1a9c84ece54b8d46d5efce4170294c0aa6571656d7d9957b53aed9c1e51d4d525714f54b7dbb08d8ec0b196a1a4419fd186ed
 WHIRLPOOL 
a7ccc870fb6149da21873ec92b241f564ce76ee0319a626a423ed1f77820deb0d09ed52bab86fdd501a4827dd02bd7403e78af1cbbd4e9f77fc9bda57ce59fa3

diff --git a/sys-boot/plymouth/plymouth-0.9.3.ebuild 
b/sys-boot/plymouth/plymouth-0.9.3.ebuild
new file mode 100644
index 000..ef1d1a8d76e
--- /dev/null
+++ b/sys-boot/plymouth/plymouth-0.9.3.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+SRC_URI="https://dev.gentoo.org/~aidecoe/distfiles/${CATEGORY}/${PN}/gentoo-logo.png;
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="git://anongit.freedesktop.org/plymouth"
+   inherit git-r3
+else
+   SRC_URI="${SRC_URI} 
https://www.freedesktop.org/software/plymouth/releases/${P}.tar.xz;
+fi
+
+inherit autotools readme.gentoo-r1 systemd toolchain-funcs
+
+DESCRIPTION="Graphical boot animation (splash) and logger"
+HOMEPAGE="https://cgit.freedesktop.org/plymouth/;
+
+LICENSE="GPL-2"
+SLOT="0"
+[[ ${PV} ==  ]] || \
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="debug gdm +gtk +libkms +pango static-libs"
+
+CDEPEND="
+   >=media-libs/libpng-1.2.16:=
+   gtk? (
+   dev-libs/glib:2
+   >=x11-libs/gtk+-3.14:3
+   x11-libs/cairo )
+   libkms? ( x11-libs/libdrm[libkms] )
+   pango? ( >=x11-libs/pango-1.21 )
+"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+"
+# Block due bug #383067
+RDEPEND="${CDEPEND}
+   virtual/udev
+   !https://wiki.gentoo.org/wiki/Plymouth#Configuration
+"
+
+PATCHES=(
+)
+
+src_configure() {
+   local myconf
+   myconf="--with-system-root-install=no
+   --localstatedir=/var
+   --without-rhgb-compat-link
+   --enable-systemd-integration
+   --with-systemdunitdir="$(systemd_get_systemunitdir)"
+   $(use_enable !static-libs shared)
+   $(use_enable static-libs static)
+   $(use_enable debug tracing)
+   $(use_enable gtk gtk)
+   $(use_enable libkms drm)
+   $(use_enable pango)
+   $(use_enable gdm gdm-transition)"
+   eautoreconf
+   econf ${myconf}
+}
+
+src_install() {
+   default
+
+   insinto /usr/share/plymouth
+   newins "${DISTDIR}"/gentoo-logo.png bizcom.png
+
+   # Install compatibility symlinks as some rdeps hardcode the paths
+   dosym /usr/bin/plymouth /bin/plymouth
+   dosym /usr/sbin/plymouth-set-default-theme 
/sbin/plymouth-set-default-theme
+   dosym /usr/sbin/plymouthd /sbin/plymouthd
+
+   readme.gentoo_create_doc
+
+   # looks like make install create /var/run/plymouth
+   # this is not needed for systemd, same should hold for openrc
+   # so remove
+   rm -rf "${D}"/var/run
+}
+
+pkg_postinst() {
+   readme.gentoo_print_elog
+   if ! has_version "sys-kernel/dracut" && ! has_version 
"sys-kernel/genkernel-next[plymouth]"; then
+   ewarn "If you want initramfs builder with plymouth support, 
please emerge"
+   ewarn "sys-kernel/dracut or 
sys-kernel/genkernel-next[plymouth]."
+   fi
+}



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

2017-08-09 Thread Sergei Trofimovich
commit: b9b009e308ea3d96dc0ec7abc3a3f31169e8de9a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 22:12:34 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 22:12:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b009e3

dev-libs/libdbusmenu: keyworded 16.04.0 for ia64, bug #627178

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

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

diff --git a/dev-libs/libdbusmenu/libdbusmenu-16.04.0.ebuild 
b/dev-libs/libdbusmenu/libdbusmenu-16.04.0.ebuild
index 131d663ca80..d2561e2e665 100644
--- a/dev-libs/libdbusmenu/libdbusmenu-16.04.0.ebuild
+++ b/dev-libs/libdbusmenu/libdbusmenu-16.04.0.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://launchpad.net/${PN/lib}/${PV%.*}/${PV}/+download/${P}.tar.gz;
 
 LICENSE="LGPL-2.1 LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm"
+KEYWORDS="~amd64 ~arm ~ia64"
 IUSE="debug gtk gtk3 +introspection test"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2017-08-09 Thread Sergei Trofimovich
commit: cd9379f46acc42e184f8af1969ab1e8fdd1d71f9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:59:00 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:59:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd9379f4

media-sound/vorbis-tools: stable 1.4.0-r3 for ia64, bug #559170

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

 media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild 
b/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild
index 977e7e88ff3..d25a9991ee9 100644
--- a/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild
+++ b/media-sound/vorbis-tools/vorbis-tools-1.4.0-r3.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://downloads.xiph.org/releases/vorbis/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="flac kate nls +ogg123 speex"
 
 RDEPEND=">=media-libs/libvorbis-1.3.0



[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/

2017-08-09 Thread Sergei Trofimovich
commit: 55129e6ac323977003d36ffaa0aa3b5ca85398c6
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:59:05 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:59:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55129e6a

app-shells/zsh: stable 5.3.1 for ia64, bug #626942

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

 app-shells/zsh/zsh-5.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-shells/zsh/zsh-5.3.1.ebuild b/app-shells/zsh/zsh-5.3.1.ebuild
index a2f821d3dbc..1a6cd147b98 100644
--- a/app-shells/zsh/zsh-5.3.1.ebuild
+++ b/app-shells/zsh/zsh-5.3.1.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3 autotools
EGIT_REPO_URI="git://git.code.sf.net/p/zsh/code"
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
SRC_URI="http://www.zsh.org/pub/${P}.tar.xz
doc? ( http://www.zsh.org/pub/${P}-doc.tar.xz )"
 fi



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

2017-08-09 Thread Göktürk Yüksek
commit: 787af928bb03f77f86f0896cda50aa66381cfa8a
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Wed Aug  9 21:22:18 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Aug  9 21:31:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=787af928

dev-db/haildb: remove last-rited package #623654

 dev-db/haildb/Manifest|  1 -
 dev-db/haildb/haildb-2.3.2.ebuild | 53 ---
 dev-db/haildb/metadata.xml| 26 ---
 3 files changed, 80 deletions(-)

diff --git a/dev-db/haildb/Manifest b/dev-db/haildb/Manifest
deleted file mode 100644
index 2d449395fe3..000
--- a/dev-db/haildb/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST haildb-2.3.2.tar.gz 1687216 SHA256 
4dff658c27d68c1c72b8e985fa9c20ad0e2095a573cca13c77c7ffb582f8c0af SHA512 
4e3cf9a90242c27a61b4aa93903ee2e2e329613ae939332ae969901409824eb185310e0145c5728aca058af664f95bb7ffa60448ede9b8c216318db9f9ce49fd
 WHIRLPOOL 
81a3abe16e8447964d898417a7f565adf41de02725f88bc1e085c5c298f172821348ecdd2f7eaf0a6fb024c0894461b0a3ff83f0d1f47abb8ada76ad46fecb96

diff --git a/dev-db/haildb/haildb-2.3.2.ebuild 
b/dev-db/haildb/haildb-2.3.2.ebuild
deleted file mode 100644
index 3cbe47ccd04..000
--- a/dev-db/haildb/haildb-2.3.2.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-
-inherit versionator flag-o-matic
-
-DESCRIPTION="a relational database in shared library form"
-HOMEPAGE="http://www.haildb.com/;
-SRC_URI="https://launchpad.net/haildb/$(get_version_component_range 
1-2)/cairo/+download/${P}.tar.gz"
-LICENSE="GPL-2 MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="debug tcmalloc zlib"
-
-RDEPEND="tcmalloc? ( dev-util/google-perftools )
-   zlib? ( sys-libs/zlib )"
-DEPEND="${RDEPEND}
-   sys-devel/bison"
-
-src_configure() {
-   local myconf
-
-   if use debug; then
-   # Since --with-debug would turn off optimisations as well as
-   # enabling debug, we just enable debug through the
-   # preprocessor then.
-   append-flags -DDEBUG
-   else
-   myconf="${myconf} --disable-assert"
-   fi
-
-   # never allow it to find valgrind, easier this way
-   export ac_cv_header_valgrind_memcheck_h=no
-
-   econf \
-   --disable-static \
-   --disable-dependency-tracking \
-   --enable-fast-install \
-   --disable-silent-rules \
-   --disable-mtmalloc \
-   $(use_enable zlib compression) \
-   $(use_enable tcmalloc) \
-   ${myconf} \
-   || die "econf failed"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die "install failed"
-   dodoc ChangeLog README || die
-
-   find "${D}" -name '*.la' -delete || die
-}

diff --git a/dev-db/haildb/metadata.xml b/dev-db/haildb/metadata.xml
deleted file mode 100644
index 473a85f79d3..000
--- a/dev-db/haildb/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   pavel.stratil-...@fenix.cz
-   Proxied co-maintainer, assign bugs to 
him
-   
-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   
-   
-   
-  Add support for compressed tables through
-  sys-libs/zlib.
-
-   
-  Enable extra debug codepaths and assertions. If disabled, both
-  the debug code and assertions are removed from the resulting
-  binaries. Optimisations are untouched.
-
-   
-   
-   haildb
-   
-



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

2017-08-09 Thread Sergei Trofimovich
commit: f644deb9950f71f17ff15aefc0f511e1848065e2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:27:10 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:27:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f644deb9

dev-ml/ocurl: keyworded 0.7.9 for ppc, bug #553496

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

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



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

2017-08-09 Thread Sergei Trofimovich
commit: f509644ea226c197adb9c531ce0f5c48305d16d2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:27:31 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:27:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f509644e

dev-ml/ocurl: keyworded 0.7.10 for ppc, bug #553496

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

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



[gentoo-commits] repo/gentoo:master commit in: app-vim/udev-syntax/

2017-08-09 Thread Patrice Clement
commit: 6e92265d7773af88fe8b729072116b9d3ba5fbba
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Aug  9 21:26:35 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Aug  9 21:26:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e92265d

app-vim/udev-syntax: EAPI 6 bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-vim/udev-syntax/udev-syntax-20051016-r2.ebuild | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/app-vim/udev-syntax/udev-syntax-20051016-r2.ebuild 
b/app-vim/udev-syntax/udev-syntax-20051016-r2.ebuild
new file mode 100644
index 000..68ed0060b73
--- /dev/null
+++ b/app-vim/udev-syntax/udev-syntax-20051016-r2.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit vim-plugin
+
+DESCRIPTION="vim plugin: syntax highlighting for udev rules files"
+HOMEPAGE="http://www.vim.org/scripts/script.php?script_id=1381;
+LICENSE="vim"
+KEYWORDS="~amd64 ~hppa ~mips ~ppc ~sparc ~x86"
+
+VIM_PLUGIN_HELPTEXT=\
+"This plugin provides syntax highlighting for udev.rules files. These files
+are automatically detected by filename; manual loading is also possible,
+via :set filetype=udev"
+
+PATCHES=( "${FILESDIR}/${P}-ftdetect.patch" )



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

2017-08-09 Thread Sergei Trofimovich
commit: c5b62320a01ea660bdfdaeb8c004ba63b8d8be27
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:17:28 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:17:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5b62320

media-libs/libffado: keyworded 2.3.0 for ppc64, bug #622718

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/media-libs/libffado/libffado-2.3.0.ebuild 
b/media-libs/libffado/libffado-2.3.0.ebuild
index bbe9be7a09b..0479887fdc1 100644
--- a/media-libs/libffado/libffado-2.3.0.ebuild
+++ b/media-libs/libffado/libffado-2.3.0.ebuild
@@ -13,10 +13,10 @@ HOMEPAGE="http://www.ffado.org;
 if [ "${PV}" = "" ]; then
inherit subversion
ESVN_REPO_URI="http://subversion.ffado.org/ffado/trunk/${PN};
-   KEYWORDS="~arm ~ia64 ~ppc"
+   KEYWORDS="~arm ~ia64 ~ppc ~ppc64"
 else
SRC_URI="http://www.ffado.org/files/${P}.tgz;
-   KEYWORDS="~amd64 ~arm ~ia64 ~ppc"
+   KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64"
 fi
 
 LICENSE="GPL-2 GPL-3"



[gentoo-commits] repo/gentoo:master commit in: dev-libs/dbus-c++/

2017-08-09 Thread Sergei Trofimovich
commit: 3c524d255791aeb3afb8e2cb1648d6905d423781
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:17:20 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:17:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c524d25

dev-libs/dbus-c++: keyworded 0.9.0-r3 for ppc64, bug #622718

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

 dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild 
b/dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild
index 35674002738..be3903cd741 100644
--- a/dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild
+++ b/dev-libs/dbus-c++/dbus-c++-0.9.0-r3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/dbus-cplusplus/lib${P}.tar.gz"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="doc ecore glib static-libs test"
 
 RDEPEND="sys-apps/dbus[${MULTILIB_USEDEP}]



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

2017-08-09 Thread Sergei Trofimovich
commit: f8877066ce10f1f5a235475b9011a75d4c6e211c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:17:24 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:17:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8877066

dev-libs/libconfig: keyworded 1.5 for ppc64, bug #622718

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-libs/libconfig/libconfig-1.5.ebuild 
b/dev-libs/libconfig/libconfig-1.5.ebuild
index 85bf5985379..692c2843787 100644
--- a/dev-libs/libconfig/libconfig-1.5.ebuild
+++ b/dev-libs/libconfig/libconfig-1.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://www.hyperrealm.com/${PN}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ia64 ~mips ppc ppc64 sparc x86 ~x86-linux"
+KEYWORDS="amd64 ~arm ~ia64 ~mips ppc ~ppc64 sparc x86 ~x86-linux"
 IUSE="+cxx examples static-libs"
 
 DEPEND="



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

2017-08-09 Thread Sergei Trofimovich
commit: 681399674c90a46dffb526ff8bacb22d8f4e4d8c
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:04:16 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:04:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68139967

dev-util/kyua: keyworded 0.13-r1 for ppc/ppc64, bug #617758

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc ppc64"

 dev-util/kyua/kyua-0.13-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/kyua/kyua-0.13-r1.ebuild 
b/dev-util/kyua/kyua-0.13-r1.ebuild
index 0360cfbda44..5d7ae53da08 100644
--- a/dev-util/kyua/kyua-0.13-r1.ebuild
+++ b/dev-util/kyua/kyua-0.13-r1.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/jmmv/kyua/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 
 # Tests fail



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

2017-08-09 Thread Sergei Trofimovich
commit: 257d806415f953e917b904245c56cf0022439659
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:04:22 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:04:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=257d8064

dev-util/pkgconf: keyworded 1.3.7 for ppc/ppc64, bug #617758

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc ppc64"

 dev-util/pkgconf/pkgconf-1.3.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/pkgconf/pkgconf-1.3.7.ebuild 
b/dev-util/pkgconf/pkgconf-1.3.7.ebuild
index d172bb444c8..71ddeb1b480 100644
--- a/dev-util/pkgconf/pkgconf-1.3.7.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.3.7.ebuild
@@ -8,7 +8,7 @@ if [[ ${PV} == "" ]] ; then
inherit autotools git-r3
 else
SRC_URI="https://distfiles.dereferenced.org/${PN}/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 fi
 
 inherit ltprune multilib-minimal



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

2017-08-09 Thread Sergei Trofimovich
commit: 20c6a95988a5d671b8ce35ba1c3e5c12082c98f1
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:04:33 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:04:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20c6a959

dev-lua/lutok: keyworded 0.4-r1 for ppc/ppc64, bug #617758

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc ppc64"

 dev-lua/lutok/lutok-0.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/lutok/lutok-0.4-r1.ebuild 
b/dev-lua/lutok/lutok-0.4-r1.ebuild
index 3546c81d15f..8966a017741 100644
--- a/dev-lua/lutok/lutok-0.4-r1.ebuild
+++ b/dev-lua/lutok/lutok-0.4-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/jmmv/lutok/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2017-08-09 Thread Sergei Trofimovich
commit: 551eaec04a717665e81de19347a3e2131f4fb325
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 21:04:07 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:04:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=551eaec0

dev-libs/atf: keyworded 0.21 for ppc/ppc64, bug #617758

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc ppc64"

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

diff --git a/dev-libs/atf/atf-0.21.ebuild b/dev-libs/atf/atf-0.21.ebuild
index c928df01f03..b9de9363951 100644
--- a/dev-libs/atf/atf-0.21.ebuild
+++ b/dev-libs/atf/atf-0.21.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/jmmv/atf/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="BSD BSD-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ia64 ~ppc ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="virtual/pkgconfig"



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

2017-08-09 Thread Sergei Trofimovich
commit: fafa5b99c0d92fc13237739cadc107d95d684356
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:59:32 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 21:00:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fafa5b99

media-libs/libffado: keyworded 2.3.0 for ppc, bug #622718

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/media-libs/libffado/libffado-2.3.0.ebuild 
b/media-libs/libffado/libffado-2.3.0.ebuild
index 27f250a964b..bbe9be7a09b 100644
--- a/media-libs/libffado/libffado-2.3.0.ebuild
+++ b/media-libs/libffado/libffado-2.3.0.ebuild
@@ -13,10 +13,10 @@ HOMEPAGE="http://www.ffado.org;
 if [ "${PV}" = "" ]; then
inherit subversion
ESVN_REPO_URI="http://subversion.ffado.org/ffado/trunk/${PN};
-   KEYWORDS="~arm ~ia64"
+   KEYWORDS="~arm ~ia64 ~ppc"
 else
SRC_URI="http://www.ffado.org/files/${P}.tgz;
-   KEYWORDS="~amd64 ~arm ~ia64"
+   KEYWORDS="~amd64 ~arm ~ia64 ~ppc"
 fi
 
 LICENSE="GPL-2 GPL-3"



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

2017-08-09 Thread Patrice Clement
commit: 49da4ccbd8b37648ee94a7bd853a56b41b59b981
Author: Tomas Mozes  gmail  com>
AuthorDate: Wed Aug  9 08:40:07 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Aug  9 20:57:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49da4ccb

app-misc/elasticsearch: bump to 5.5.1, drop old.

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

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

 app-misc/elasticsearch/Manifest  |  2 +-
 ...earch-5.1.2.ebuild => elasticsearch-5.5.1.ebuild} | 20 
 2 files changed, 5 insertions(+), 17 deletions(-)

diff --git a/app-misc/elasticsearch/Manifest b/app-misc/elasticsearch/Manifest
index d36188f3cbd..61a037f5ecb 100644
--- a/app-misc/elasticsearch/Manifest
+++ b/app-misc/elasticsearch/Manifest
@@ -1,4 +1,4 @@
-DIST elasticsearch-5.1.2.tar.gz 33299777 SHA256 
74d752f9a8b46898d306ad169b72f328e17215c0909149e156a576089ef11c42 SHA512 
1867626e8a87f11ed109e1325fd1d16c9e0af06ebe6a30c78ea679ab533ab377f5da8ea55af6871be33af226f02187a2aadd77e5e23c097dd24055be21e9d691
 WHIRLPOOL 
2e9df71c915343e2cc8ad82c59b877f41f5e093cbeba21f471c32cb51a195eccc6223bc48da48bb4af2e6bea9f2539f2e93b866963148f4ca2940ba4466e614e
 DIST elasticsearch-5.2.2.tar.gz 33799732 SHA256 
cf88930695794a8949342d386f028548bd10b26ecc8c4b422a94ea674faf8ac9 SHA512 
670f8aa81a34191a13cc8c608a9dc7bec60c63bbed8fdb9bc0619585d644867576a7677eb0f14b4e4d064e59def186d4b431930bf79b54bcbf59a29b0b327e85
 WHIRLPOOL 
4ec1f3b5ed15b9f22d27512ea784ffe9e32e00808fec89418860955d2f4759d045775e18c0a61693da47f39de9f235de954eada231fbd6de5fbfd17f552e8452
 DIST elasticsearch-5.3.3.tar.gz 33701608 SHA256 
c7e23fddd74d66207b01dea777597c9d04c242973e1ac61aec0f13b716ebed1d SHA512 
36fc00081afceb0c0c6e8300c184d40e7176e084d899f2bfaafc3a36c6ba0f457c4bccde95a282d441fa26d84aba4ee1b8ef634831ffdef2f14feb725daa
 WHIRLPOOL 
ce641c9cb2071661a221f95fe38018ae2108ffdd855c70aafba4286da369cde461ff39afc674d650ca33925c350592d82e170b2e937e73e949279ca49850a325
 DIST elasticsearch-5.4.3.tar.gz 33326964 SHA256 
0ceaf6a2243e9a6f3519dce62991ccab09a44326d6899688cd09422b8c31c68f SHA512 
8cc8c96ed6d1db947f20624b5231a9718897fbe5acdab9828ef3ec580b8e5bef2bbdf961ace437d192c2bae3d70f6962e1ab6985c25e314979daf6479470acc0
 WHIRLPOOL 
2d124ceb2aabde87d043bd4178704e1b451a174ff0b9082894aaaf74d924113f656f95d8d25ee58f7987c6821000907dcb67e217989835d6344ae30fd8f08c42
+DIST elasticsearch-5.5.1.tar.gz 33476827 SHA256 
e0924ae2af5f4435cef009ad3a567169e9653263e7a3b8693dba932698ea7e34 SHA512 
9bedd48396cdd6c39c107a7951eba8446b8574493bd44c17a79ba3443670a48b72c053006821cf69dc17bf49ff1c05904db14a07d8a6403b2d2061fc605937bd
 WHIRLPOOL 
770b2eab9d67212fde7bafb5eaa885c13195f3ecb41897c261bac405987397e299d064badda454d12901ed86a8f9a4e87ab0242ccf5f6971005397ad9061f8c6

diff --git a/app-misc/elasticsearch/elasticsearch-5.1.2.ebuild 
b/app-misc/elasticsearch/elasticsearch-5.5.1.ebuild
similarity index 74%
rename from app-misc/elasticsearch/elasticsearch-5.1.2.ebuild
rename to app-misc/elasticsearch/elasticsearch-5.5.1.ebuild
index 434ea6d44fa..3b2c5bc251f 100644
--- a/app-misc/elasticsearch/elasticsearch-5.1.2.ebuild
+++ b/app-misc/elasticsearch/elasticsearch-5.5.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=6
 
-inherit eutils systemd user
+inherit systemd user
 
 DESCRIPTION="Open Source, Distributed, RESTful, Search Engine"
 HOMEPAGE="https://www.elastic.co/products/elasticsearch;
@@ -12,16 +12,8 @@ LICENSE="Apache-2.0 BSD-2 LGPL-3 MIT public-domain"
 SLOT="0"
 KEYWORDS="~amd64"
 
-RESTRICT="strip"
-
 RDEPEND="virtual/jre:1.8"
 
-pkg_preinst() {
-   if has_version '

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

2017-08-09 Thread Sergei Trofimovich
commit: 607cfcb80caf43ca65c4227825e777251da1a7fa
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:55:25 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 20:56:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607cfcb8

dev-python/cryptography: keyworded 2.0.2 for ppc64, bug #616618

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-python/cryptography/cryptography-2.0.2.ebuild 
b/dev-python/cryptography/cryptography-2.0.2.ebuild
index 23ae7825462..26b0e582312 100644
--- a/dev-python/cryptography/cryptography-2.0.2.ebuild
+++ b/dev-python/cryptography/cryptography-2.0.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~x86"
 IUSE="libressl test"
 
 RDEPEND="



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

2017-08-09 Thread Sergei Trofimovich
commit: 8fdb81bae2afd2c6f038f9b125342cd7e57fa9d7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:56:01 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 20:56:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fdb81ba

dev-python/cryptography: keyworded 1.8.1 for ppc, bug #616618

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/cryptography/cryptography-1.8.1.ebuild 
b/dev-python/cryptography/cryptography-1.8.1.ebuild
index 99d7a3e..abe8fa0ffb9 100644
--- a/dev-python/cryptography/cryptography-1.8.1.ebuild
+++ b/dev-python/cryptography/cryptography-1.8.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
 IUSE="libressl test"
 
 RDEPEND="



[gentoo-commits] proj/portage:master commit in: pym/portage/sync/modules/git/

2017-08-09 Thread Zac Medico
commit: 2d0cefbcbf9612538171c581485c290f140b57ff
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Aug  9 20:54:48 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Aug  9 20:56:24 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=2d0cefbc

GitSync.retrieve_head: return str, not bytes (bug 625888)

Fixes: 0e1699ad6b3f ("emerge: Add head commit per repo to --info")

 pym/portage/sync/modules/git/git.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/pym/portage/sync/modules/git/git.py 
b/pym/portage/sync/modules/git/git.py
index 19c167485..8068149c7 100644
--- a/pym/portage/sync/modules/git/git.py
+++ b/pym/portage/sync/modules/git/git.py
@@ -137,8 +137,9 @@ class GitSync(NewBase):
self._kwargs(kwargs)
rev_cmd = [self.bin_command, "rev-list", "--max-count=1", 
"HEAD"]
try:
-   ret = (os.EX_OK, subprocess.check_output(rev_cmd,
-   
cwd=portage._unicode_encode(self.repo.location)))
+   ret = (os.EX_OK,
+   
portage._unicode_decode(subprocess.check_output(rev_cmd,
+   
cwd=portage._unicode_encode(self.repo.location
except subprocess.CalledProcessError:
ret = (1, False)
return ret



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

2017-08-09 Thread Sergei Trofimovich
commit: ec5912cee4d9f8bc53e4a212f9942d3f34f0b1e9
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:54:32 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 20:56:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec5912ce

dev-python/cryptography: keyworded 1.8.1 for ppc64, bug #616618

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc64"

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

diff --git a/dev-python/cryptography/cryptography-1.8.1.ebuild 
b/dev-python/cryptography/cryptography-1.8.1.ebuild
index 2cf527d074e..99d7a3e 100644
--- a/dev-python/cryptography/cryptography-1.8.1.ebuild
+++ b/dev-python/cryptography/cryptography-1.8.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~x86"
 IUSE="libressl test"
 
 RDEPEND="



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

2017-08-09 Thread Sergei Trofimovich
commit: 5de1b8e5da78d56629056c42b4f1433edfb21605
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:55:31 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 20:56:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5de1b8e5

dev-python/cryptography: keyworded 2.0.2 for ppc, bug #616618

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/cryptography/cryptography-2.0.2.ebuild 
b/dev-python/cryptography/cryptography-2.0.2.ebuild
index 26b0e582312..963e8c1c16d 100644
--- a/dev-python/cryptography/cryptography-2.0.2.ebuild
+++ b/dev-python/cryptography/cryptography-2.0.2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( Apache-2.0 BSD )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
 IUSE="libressl test"
 
 RDEPEND="



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

2017-08-09 Thread Pacho Ramos
commit: f3cf40711eb4ff59151b6cc656272dd1b1ec57c1
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Aug  9 20:52:36 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Aug  9 20:52:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3cf4071

app-emulation/virt-manager: Version bump, drop gnome-icon-theme dependency (not 
needed as confirmed in https://bugzilla.redhat.com/show_bug.cgi?id=1479862)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/app-emulation/virt-manager/Manifest 
b/app-emulation/virt-manager/Manifest
index 98a93584809..feb6a032f58 100644
--- a/app-emulation/virt-manager/Manifest
+++ b/app-emulation/virt-manager/Manifest
@@ -1,2 +1,3 @@
 DIST virt-manager-1.4.0.tar.gz 2667631 SHA256 
bf31a40cc48500cbf87a0e93a5838fc3f6ce4e2fa03f8bce6aa2615625e6caca SHA512 
6e28b0c4a91a9d96a0b5402e2af2bb0e670eb545824cf73877053c84891449bce236ffe2a79834a34d46443a7e5caa102cbbb0ac54af840a3997fbb61e155d51
 WHIRLPOOL 
824e088d90015a63264fb425fc94f2f9d21368475719a0682d3e6a724cd0f20be039ef8164817f223ed72fdfea83033d2787ee19b014374ec520dca860be
 DIST virt-manager-1.4.1.tar.gz 2715863 SHA256 
e6c54f14fbda210c07821910bfa35c086542e166f8b00d7c83717e9f3944 SHA512 
ea4cdc16d7adecdb85431fdfbe7305518917b7d66342375b6773462d33d5647c2a4d3f054c08cd44d7c4e7785da92e38b18881a422083e82303b5a3dbd7b4cdd
 WHIRLPOOL 
5b14893ad6fa05452dccb6ff579694f6ae5fc99a4b65feea4b0333bef7db49cd4fb5b83aa8d1baac25d21502982533f610c8b282943e335e7aa79ebfedb91660
+DIST virt-manager-1.4.2.tar.gz 2770982 SHA256 
43e440bb099facf59b59c27c2fc4eb2c42ef0d4ed8d67d93c9e3d98538b6d574 SHA512 
df154a5dc2724e03f8e0b1646a39c4284fb5f38a4326b6ef42f4e1efc16187164c1b5259608bac366860fe6707e2134e8729228f6cf4d6cd9eca4b0edc01a53e
 WHIRLPOOL 
82616e9e3f59a34e2d7d63e297a92e4ec87cc57fb8f803f176490878ec488227d83e123d8ad88c1c058a728b7f7abd42499e8525a24be5b5b7d9a0b936686591

diff --git a/app-emulation/virt-manager/virt-manager-.ebuild 
b/app-emulation/virt-manager/virt-manager-1.4.2.ebuild
similarity index 97%
copy from app-emulation/virt-manager/virt-manager-.ebuild
copy to app-emulation/virt-manager/virt-manager-1.4.2.ebuild
index 7e64ce32473..7d4df33db5d 100644
--- a/app-emulation/virt-manager/virt-manager-.ebuild
+++ b/app-emulation/virt-manager/virt-manager-1.4.2.ebuild
@@ -43,11 +43,12 @@ RDEPEND="!app-emulation/virtinst
x11-libs/vte:2.91[introspection]
gnome-keyring? ( gnome-base/libgnome-keyring )
policykit? ( sys-auth/polkit[introspection] )
-   x11-themes/gnome-icon-theme
-   )"
+   )
+"
 DEPEND="${RDEPEND}
dev-lang/perl
-   dev-util/intltool"
+   dev-util/intltool
+"
 
 DOCS=( README.md NEWS.md )
 

diff --git a/app-emulation/virt-manager/virt-manager-.ebuild 
b/app-emulation/virt-manager/virt-manager-.ebuild
index 7e64ce32473..7d4df33db5d 100644
--- a/app-emulation/virt-manager/virt-manager-.ebuild
+++ b/app-emulation/virt-manager/virt-manager-.ebuild
@@ -43,11 +43,12 @@ RDEPEND="!app-emulation/virtinst
x11-libs/vte:2.91[introspection]
gnome-keyring? ( gnome-base/libgnome-keyring )
policykit? ( sys-auth/polkit[introspection] )
-   x11-themes/gnome-icon-theme
-   )"
+   )
+"
 DEPEND="${RDEPEND}
dev-lang/perl
-   dev-util/intltool"
+   dev-util/intltool
+"
 
 DOCS=( README.md NEWS.md )
 



[gentoo-commits] repo/gentoo:master commit in: mail-client/balsa/

2017-08-09 Thread Sergei Trofimovich
commit: f67a535cf812f905f0437072113fec7c0dbf72b2
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:51:38 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 20:52:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67a535c

mail-client/balsa: keyworded 2.5.3 for ppc, bug #626690

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

 mail-client/balsa/balsa-2.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/balsa/balsa-2.5.3.ebuild 
b/mail-client/balsa/balsa-2.5.3.ebuild
index 56de030dea2..c2af66a84eb 100644
--- a/mail-client/balsa/balsa-2.5.3.ebuild
+++ b/mail-client/balsa/balsa-2.5.3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://pawsa.fedorapeople.org/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~ppc x86"
 
 IUSE="crypt gnome gnome-keyring kerberos ldap libnotify libressl rubrica spell 
sqlite webkit xface"
 



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

2017-08-09 Thread Sergei Trofimovich
commit: 097e981e2be9a32bbd9fc2ee414ad66a6323a240
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:51:31 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 20:52:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=097e981e

dev-python/html2text: keyworded 2016.9.19 for ppc, bug #626690

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/dev-python/html2text/html2text-2016.9.19.ebuild 
b/dev-python/html2text/html2text-2016.9.19.ebuild
index e28994c5a64..6e7cf55e98d 100644
--- a/dev-python/html2text/html2text-2016.9.19.ebuild
+++ b/dev-python/html2text/html2text-2016.9.19.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/Alir3z4/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~ppc ~x86"
 
 CDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="${CDEPEND}



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

2017-08-09 Thread Sergei Trofimovich
commit: 782e713539ac9285fa4449f6a06121bf8ef33054
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Wed Aug  9 20:51:21 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Aug  9 20:52:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782e7135

app-text/gspell: keyworded 1.2.3 for ppc, bug #626690

Package-Manager: Portage-2.3.6, Repoman-2.3.3
RepoMan-Options: --include-arches="ppc"

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

diff --git a/app-text/gspell/gspell-1.2.3.ebuild 
b/app-text/gspell/gspell-1.2.3.ebuild
index 303a6dde936..666297d4e37 100644
--- a/app-text/gspell/gspell-1.2.3.ebuild
+++ b/app-text/gspell/gspell-1.2.3.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/gspell;
 
 LICENSE="LGPL-2.1+"
 SLOT="0/1" # subslot = libgspell-1 soname version
-KEYWORDS="~alpha amd64 ~arm x86"
+KEYWORDS="~alpha amd64 ~arm ~ppc x86"
 
 IUSE="+introspection vala"
 REQUIRED_USE="vala? ( introspection )"



[gentoo-commits] proj/portage:master commit in: pym/portage/sync/modules/git/

2017-08-09 Thread Zac Medico
commit: 540b97e416371c03e681625dd02a8f0eb371e9ab
Author: Zac Medico  gentoo  org>
AuthorDate: Wed Aug  9 20:38:08 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed Aug  9 20:39:26 2017 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=540b97e4

GitSync: fix subprocess.CalledProcessError reference (bug 627416)

Fixes: 0e1699ad6b3f ("emerge: Add head commit per repo to --info")

 pym/portage/sync/modules/git/git.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/portage/sync/modules/git/git.py 
b/pym/portage/sync/modules/git/git.py
index 8df9ca612..19c167485 100644
--- a/pym/portage/sync/modules/git/git.py
+++ b/pym/portage/sync/modules/git/git.py
@@ -139,6 +139,6 @@ class GitSync(NewBase):
try:
ret = (os.EX_OK, subprocess.check_output(rev_cmd,

cwd=portage._unicode_encode(self.repo.location)))
-   except CalledProcessError:
+   except subprocess.CalledProcessError:
ret = (1, False)
return ret



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

2017-08-09 Thread Jeroen Roovers
commit: 815b7c2b6e619565bd4349ac203537c0a5683aa5
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Aug  9 19:37:36 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Aug  9 19:38:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=815b7c2b

www-client/opera: Version bump.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 www-client/opera/Manifest  |  1 +
 www-client/opera/opera-47.0.2631.39.ebuild | 86 ++
 2 files changed, 87 insertions(+)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index 298c1ed..0d9d4cc5e30 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -3,3 +3,4 @@ DIST opera-12.16-1860.i386.freebsd.tar.xz 13385696 SHA256 
dcd80ea7a8f090a47007fc
 DIST opera-12.16-1860.i386.linux.tar.xz 13154668 SHA256 
df640656a52b7c714faf25de92d84992116ce8f82b7a67afc1121eb3c428489d SHA512 
a13ec53311e3e78f35103a9dd5337c0e9a555362860213080211ee9d21de88fbd6aae03bed20b7515874d5a09dfbab108954213745fb82175f5e48e555152613
 WHIRLPOOL 
ae1af6858847fe51dcac8cb076a67099846ad66b734ecf92780e953daec963754c9e4352e979a636eac70e785a62bd94e084124080d7fe0f59b420a99a2133cc
 DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 SHA256 
b3b5cada3829d2b3b0e2da25e9444ce9dff73dc6692586ce72cfd4f6431e639e SHA512 
c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b
 WHIRLPOOL 
539cdf43b4c8175c664fbf786b27ede1d33e58c44f75229a1a50612951136f526d646f3e0444b6cc69961259c3e3ef7dbf722b520abb4d4dbb98032c4de335d1
 DIST opera-stable_46.0.2597.57_amd64.deb 50893166 SHA256 
d69bc0a9d489e8d8f65b3498372fde2c935e258972f191cef74d06c526d76f2e SHA512 
7d34aa5768c17f1fe8f3431df404fb40c80f32121a3f10a3819e796826792394df8ee9c28b599fbd3aa93b2711b49405044580a6343fcd8ecdbfac6559e770bc
 WHIRLPOOL 
3b4f4437fb0358c8838c14d77adc9ee60bbd62e051fba7ddb93278fd019fe6e5bf11f3640fa83518ae6d08160eaceb5c83d01801fd72b4bd3aabcbe4a48ad721
+DIST opera-stable_47.0.2631.39_amd64.deb 50321580 SHA256 
9a719476fc632656b56511f4b51b64707b2b7478268c1824214db0b08b74fef9 SHA512 
8748213abb9e3b1fc3e4f5ce1ffc052c9c76dd5f76bd9c5daf7a8efc0b184198a803e67bd63d6f45ae3ee93c677084e705048474f90a153ed0ddbdfab5abc9c7
 WHIRLPOOL 
ee4ff64fda568cf6f16c8f72c387a8a1d27f40b2b666039f3c8434a230cbc1e4594bf3715e01062f0169ae99359bc54a3ab4963f6d708cc87ee1ae534472d829

diff --git a/www-client/opera/opera-47.0.2631.39.ebuild 
b/www-client/opera/opera-47.0.2631.39.ebuild
new file mode 100644
index 000..50d95517948
--- /dev/null
+++ b/www-client/opera/opera-47.0.2631.39.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr he hi hr hu id 
it
+   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
+   zh-CN zh-TW
+"
+inherit chromium-2 multilib unpacker
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="http://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="http://get.geo.opera.com/pub/;
+SRC_URI="
+   amd64? ( 
"${SRC_URI_BASE}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb" )
+"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+OPERA_HOME="usr/$(get_libdir)/${PN}"
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   esac
+
+   rm usr/bin/${PN} || die
+
+   rm usr/share/doc/${PN}-stable/copyright || die
+   mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die
+
+   pushd "${OPERA_HOME}/localization" > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+   sed -i \
+   -e 's|^TargetEnvironment|X-&|g' \
+   usr/share/applications/${PN}.desktop || die
+}
+
+src_install() {
+   mv * "${D}" || die
+   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
+   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
+}



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

2017-08-09 Thread Jeroen Roovers
commit: 478b740e34a3a2605bfd4806795a5deb534843b9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Aug  9 19:37:15 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Aug  9 19:38:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=478b740e

www-client/opera-beta: Old.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 www-client/opera-beta/Manifest |  1 -
 .../opera-beta/opera-beta-47.0.2631.31.ebuild  | 89 --
 2 files changed, 90 deletions(-)

diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest
index 75d743a7858..c00c7a9ea28 100644
--- a/www-client/opera-beta/Manifest
+++ b/www-client/opera-beta/Manifest
@@ -1,2 +1 @@
-DIST opera-beta_47.0.2631.31_amd64.deb 50394902 SHA256 
99af3c05e340cc270f7ede2f6a56e46d057389e6c18952bb9a6a16793eee3647 SHA512 
d01f822d9b3c9da8bba8518b315db47e64229c18240fbb5d57c0856238391e0ff3a8a2b392071879af5fd079985d881548d51dbd940e2a192b3d5fbb7e18b4c5
 WHIRLPOOL 
c99b87d80f204bde4e8b3876b7df7067433fa623bcb06d0d8af8834f7a27c0d878d31458f9378a6f3e58f486281d4188f945dc1f1ef1232f3a75cc032fe73413
 DIST opera-beta_47.0.2631.34_amd64.deb 50158936 SHA256 
fc4e70cf8cb669cb08dc4e2086a788f5f1ec88d963a94faf0daa73b713ae8d6f SHA512 
eff13d5be2ba626f355d72ba65c40a14732d31f74a97cb5e7930251180d52cb7e92829ff0d3481995b0247b21c9f5a342f55a594cc42fd42da1fa423b1f06e08
 WHIRLPOOL 
e3034c0b6de10449e6a31ee7ced81b7ba70d43a7ad5afb52071dfce4e52ea1ec0a0ce28b3fc8ef518d407955d40397964bc48b2efbdcf928bc63e1ac113a5a83

diff --git a/www-client/opera-beta/opera-beta-47.0.2631.31.ebuild 
b/www-client/opera-beta/opera-beta-47.0.2631.31.ebuild
deleted file mode 100644
index b72074ee152..000
--- a/www-client/opera-beta/opera-beta-47.0.2631.31.ebuild
+++ /dev/null
@@ -1,89 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr he hi hr hu id 
it
-   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
-   zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="http://get.geo.opera.com/pub/;
-SRC_URI="
-   amd64?  ( "${SRC_URI_BASE}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb" )
-"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   x86)
-   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
-   ;;
-   esac
-
-   rm usr/bin/${PN} || die
-
-   rm usr/share/doc/${PN}/copyright || die
-   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
-}



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

2017-08-09 Thread Jeroen Roovers
commit: 15e4df4522b6753a4f4215dce2457a1f701f39c1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Wed Aug  9 19:35:43 2017 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Wed Aug  9 19:38:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15e4df45

www-client/opera: Old.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 www-client/opera/Manifest  |  1 -
 www-client/opera/opera-46.0.2597.46.ebuild | 86 --
 2 files changed, 87 deletions(-)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index 0830291a5ff..298c1ed 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -2,5 +2,4 @@ DIST opera-12.16-1860.amd64.freebsd.tar.xz 13312684 SHA256 
ecc001605c45baa4acf60
 DIST opera-12.16-1860.i386.freebsd.tar.xz 13385696 SHA256 
dcd80ea7a8f090a47007fc630495817feeb167220b9a9bbffbf349687f3e29d3 SHA512 
0bb2c0548765ea476cdb8be6c84faf1d60dddb5a2c08b7312027f4cd17fa8ebd4fbc1a97657bbcb0ac07733e5f3b340b181a307a778c38543140adbfe7f8b844
 WHIRLPOOL 
5703b2c736694cf6ffcf808872e72585b81c7fed9d2263d5679ee54f667f4eb6b9d34a73b80c8efc0a8640daf03da60dafa0defe0c560d3ef78f2a8a68cbb960
 DIST opera-12.16-1860.i386.linux.tar.xz 13154668 SHA256 
df640656a52b7c714faf25de92d84992116ce8f82b7a67afc1121eb3c428489d SHA512 
a13ec53311e3e78f35103a9dd5337c0e9a555362860213080211ee9d21de88fbd6aae03bed20b7515874d5a09dfbab108954213745fb82175f5e48e555152613
 WHIRLPOOL 
ae1af6858847fe51dcac8cb076a67099846ad66b734ecf92780e953daec963754c9e4352e979a636eac70e785a62bd94e084124080d7fe0f59b420a99a2133cc
 DIST opera-12.16-1860.x86_64.linux.tar.xz 14018800 SHA256 
b3b5cada3829d2b3b0e2da25e9444ce9dff73dc6692586ce72cfd4f6431e639e SHA512 
c1289f352ea5fc8133b105771f48fdc56ccd770920330b1a0ed939ff909abc68081447673572eabeb1aae6db5194b6ab35c93afad78a91d8f7a9a0f91e81ef8b
 WHIRLPOOL 
539cdf43b4c8175c664fbf786b27ede1d33e58c44f75229a1a50612951136f526d646f3e0444b6cc69961259c3e3ef7dbf722b520abb4d4dbb98032c4de335d1
-DIST opera-stable_46.0.2597.46_amd64.deb 50605030 SHA256 
8b7fa0dc6727b872772d625b448600da8c73dbcfb32f983047213641fae507f2 SHA512 
d90ed51cb88ffe95ad3d0a5e1d590bac906f787b7eed5bfd4bed9a41b1a3f7b098235921c3e4823dcbfe6ec630dd43093f3406b87855f5cf59cdc43877c6d049
 WHIRLPOOL 
597a5ffcbc9de367aef52104d8edce3c7a3d398014709c97b596a6b23efffd3ae258dd39c5feb6e627fdb7811a88014f82f3785fbc76e2aa6eff7f9b2c4878f6
 DIST opera-stable_46.0.2597.57_amd64.deb 50893166 SHA256 
d69bc0a9d489e8d8f65b3498372fde2c935e258972f191cef74d06c526d76f2e SHA512 
7d34aa5768c17f1fe8f3431df404fb40c80f32121a3f10a3819e796826792394df8ee9c28b599fbd3aa93b2711b49405044580a6343fcd8ecdbfac6559e770bc
 WHIRLPOOL 
3b4f4437fb0358c8838c14d77adc9ee60bbd62e051fba7ddb93278fd019fe6e5bf11f3640fa83518ae6d08160eaceb5c83d01801fd72b4bd3aabcbe4a48ad721

diff --git a/www-client/opera/opera-46.0.2597.46.ebuild 
b/www-client/opera/opera-46.0.2597.46.ebuild
deleted file mode 100644
index 50d95517948..000
--- a/www-client/opera/opera-46.0.2597.46.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es-419 es fil fi fr-CA fr he hi hr hu id 
it
-   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
-   zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="http://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="http://get.geo.opera.com/pub/;
-SRC_URI="
-   amd64? ( 
"${SRC_URI_BASE}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb" )
-"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:2
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   esac
-
-   rm usr/bin/${PN} || die
-
-   rm usr/share/doc/${PN}-stable/copyright || die
-   mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   

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

2017-08-09 Thread Amadeusz Piotr Żołnowski
commit: 7d42990d40c7101eac5a182a11172e853aeccf87
Author: Amadeusz Żołnowski  gentoo  org>
AuthorDate: Wed Aug  9 19:36:15 2017 +
Commit: Amadeusz Piotr Żołnowski  gentoo  org>
CommitDate: Wed Aug  9 19:36:46 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d42990d

dev-python/urwidtrees: urwidtrees is compatible with Python 3

Add compatibility with the same Python versions as defined for
dev-python/urwid.

Package-Manager: Portage-2.3.6, Repoman-2.3.3

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

diff --git a/dev-python/urwidtrees/urwidtrees-1.0.2.ebuild 
b/dev-python/urwidtrees/urwidtrees-1.0.2.ebuild
index 26a98d8ca21..866c17183b5 100644
--- a/dev-python/urwidtrees/urwidtrees-1.0.2.ebuild
+++ b/dev-python/urwidtrees/urwidtrees-1.0.2.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python2_7 python3_4 python3_5 python3_6 )
 
 inherit distutils-r1
 



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

2017-08-09 Thread Tim Harder
commit: 3399fde06b3d78c7595fb1b2f900afaf73252935
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Aug  9 16:45:21 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Aug  9 18:58:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3399fde0

net-fs/btfs: remove old

 net-fs/btfs/Manifest |  2 --
 net-fs/btfs/btfs-2.11.ebuild | 39 ---
 net-fs/btfs/btfs-2.12.ebuild | 39 ---
 3 files changed, 80 deletions(-)

diff --git a/net-fs/btfs/Manifest b/net-fs/btfs/Manifest
index 77814ecbd1c..59f3c885b23 100644
--- a/net-fs/btfs/Manifest
+++ b/net-fs/btfs/Manifest
@@ -1,4 +1,2 @@
-DIST btfs-2.11.tar.gz 21636 SHA256 
7c15001e6206c5c28350df0e1609ab10cd7e1578908f46eb334d3b41634a8ba8 SHA512 
3b185139692525b59fb3981bcd1a9645fedb3a7acf8709fd0d4c4233b1598cc247263f8935801ed448c358e2c7aba1cc845725f8ec07d3498cd4f81d0d4e6ab0
 WHIRLPOOL 
03ed85a4858fef2f87eb5c873bb2b5ebb3ec34657239b96481e7c9b20c7cb361988431b1af0a1df1ad2fc92cfb41bfd113dc96b6d7a57e03b52d292fbf7e6215
-DIST btfs-2.12.tar.gz 21738 SHA256 
cffa14795994b9f7d6548e4f535aac97506a3a4cf8751cdba337a5ad3c96539d SHA512 
1f0b23b363e4eba9d2f97f37a43c1b042acff4a59d0e9f0c4c6c99c2a84d885580f3e0253d0e1f6ab4e0fb2b549af957f5c23aa29834e2ea20174b7e68d0b360
 WHIRLPOOL 
0010b3884acb578befa9d556039665edf72beef28a5bae907fecf002f081468db3276408119ae58a30c50e7cb762ef657815c67179ef832cacbb45a4572098ac
 DIST btfs-2.13.tar.gz 21887 SHA256 
494c3e16261e3c7535efa86493e09270dde29cd7121e97c29d226c239cbeabd6 SHA512 
847ed68b9effab92da87a94fdefe1ac6953d97069707fc1b61276f3e341b13fedf22a4131bf8273562866877976a2e7a389e30e722ca67f16165193793d47636
 WHIRLPOOL 
63abb124462660bf14d6fdbf16744cb0e8617bdde72e63ac4d418641f6d236ac27fb75b9c7f883c88fae64cd47e1850690d27a012f1e943af27dd2cb7b99b1c9
 DIST btfs-2.15.tar.gz 22832 SHA256 
7cb562504cb4a45db64f4524d55d080c84514c3cff46838ad1c1807785edc692 SHA512 
c95ce2161d5493a3145b5381af83f4c1990f6036a554c5571efdb490d6bac217163b52369cce0c50885eaad0a0a8139e798d25eb55722438535c0241546e50fc
 WHIRLPOOL 
7ba09585939dfeb14bd3272624613c780f0bd813f3a3642aef59c28585ea8f9abfc34569540ef03f9b2a29c06a039bf9975e6877014e91c13426e4a319d828bf

diff --git a/net-fs/btfs/btfs-2.11.ebuild b/net-fs/btfs/btfs-2.11.ebuild
deleted file mode 100644
index cfe0ddb63de..000
--- a/net-fs/btfs/btfs-2.11.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit autotools python-r1
-
-DESCRIPTION="a bittorrent filesystem based on FUSE"
-HOMEPAGE="https://github.com/johang/btfs;
-SRC_URI="https://github.com/johang/btfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-CDEPEND=">=sys-fs/fuse-2.8.0
-   >=net-misc/curl-7.22.0
-   dev-libs/boost:=
-   >=net-libs/libtorrent-rasterbar-0.16.0:="
-DEPEND="${CDEPEND}
-   virtual/pkgconfig"
-RDEPEND="${CDEPEND}
-   ${PYTHON_DEPS}"
-
-src_prepare() {
-   default
-
-   # don't install btplay via make
-   sed -i '/^SUBDIRS =/s/scripts//' Makefile.am || die
-
-   eautoreconf
-}
-
-src_install() {
-   default
-   python_foreach_impl python_doscript scripts/btplay
-}

diff --git a/net-fs/btfs/btfs-2.12.ebuild b/net-fs/btfs/btfs-2.12.ebuild
deleted file mode 100644
index cfe0ddb63de..000
--- a/net-fs/btfs/btfs-2.12.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
-
-inherit autotools python-r1
-
-DESCRIPTION="a bittorrent filesystem based on FUSE"
-HOMEPAGE="https://github.com/johang/btfs;
-SRC_URI="https://github.com/johang/btfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-CDEPEND=">=sys-fs/fuse-2.8.0
-   >=net-misc/curl-7.22.0
-   dev-libs/boost:=
-   >=net-libs/libtorrent-rasterbar-0.16.0:="
-DEPEND="${CDEPEND}
-   virtual/pkgconfig"
-RDEPEND="${CDEPEND}
-   ${PYTHON_DEPS}"
-
-src_prepare() {
-   default
-
-   # don't install btplay via make
-   sed -i '/^SUBDIRS =/s/scripts//' Makefile.am || die
-
-   eautoreconf
-}
-
-src_install() {
-   default
-   python_foreach_impl python_doscript scripts/btplay
-}



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

2017-08-09 Thread Tim Harder
commit: befd2cd68c99dff9d2b060c1ffcaa96976a1949b
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Aug  9 16:44:39 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Aug  9 18:58:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=befd2cd6

net-fs/btfs: version bump to 2.15

 net-fs/btfs/Manifest |  1 +
 net-fs/btfs/btfs-2.15.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/net-fs/btfs/Manifest b/net-fs/btfs/Manifest
index 2ac483517f0..77814ecbd1c 100644
--- a/net-fs/btfs/Manifest
+++ b/net-fs/btfs/Manifest
@@ -1,3 +1,4 @@
 DIST btfs-2.11.tar.gz 21636 SHA256 
7c15001e6206c5c28350df0e1609ab10cd7e1578908f46eb334d3b41634a8ba8 SHA512 
3b185139692525b59fb3981bcd1a9645fedb3a7acf8709fd0d4c4233b1598cc247263f8935801ed448c358e2c7aba1cc845725f8ec07d3498cd4f81d0d4e6ab0
 WHIRLPOOL 
03ed85a4858fef2f87eb5c873bb2b5ebb3ec34657239b96481e7c9b20c7cb361988431b1af0a1df1ad2fc92cfb41bfd113dc96b6d7a57e03b52d292fbf7e6215
 DIST btfs-2.12.tar.gz 21738 SHA256 
cffa14795994b9f7d6548e4f535aac97506a3a4cf8751cdba337a5ad3c96539d SHA512 
1f0b23b363e4eba9d2f97f37a43c1b042acff4a59d0e9f0c4c6c99c2a84d885580f3e0253d0e1f6ab4e0fb2b549af957f5c23aa29834e2ea20174b7e68d0b360
 WHIRLPOOL 
0010b3884acb578befa9d556039665edf72beef28a5bae907fecf002f081468db3276408119ae58a30c50e7cb762ef657815c67179ef832cacbb45a4572098ac
 DIST btfs-2.13.tar.gz 21887 SHA256 
494c3e16261e3c7535efa86493e09270dde29cd7121e97c29d226c239cbeabd6 SHA512 
847ed68b9effab92da87a94fdefe1ac6953d97069707fc1b61276f3e341b13fedf22a4131bf8273562866877976a2e7a389e30e722ca67f16165193793d47636
 WHIRLPOOL 
63abb124462660bf14d6fdbf16744cb0e8617bdde72e63ac4d418641f6d236ac27fb75b9c7f883c88fae64cd47e1850690d27a012f1e943af27dd2cb7b99b1c9
+DIST btfs-2.15.tar.gz 22832 SHA256 
7cb562504cb4a45db64f4524d55d080c84514c3cff46838ad1c1807785edc692 SHA512 
c95ce2161d5493a3145b5381af83f4c1990f6036a554c5571efdb490d6bac217163b52369cce0c50885eaad0a0a8139e798d25eb55722438535c0241546e50fc
 WHIRLPOOL 
7ba09585939dfeb14bd3272624613c780f0bd813f3a3642aef59c28585ea8f9abfc34569540ef03f9b2a29c06a039bf9975e6877014e91c13426e4a319d828bf

diff --git a/net-fs/btfs/btfs-2.15.ebuild b/net-fs/btfs/btfs-2.15.ebuild
new file mode 100644
index 000..62a37b110eb
--- /dev/null
+++ b/net-fs/btfs/btfs-2.15.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit autotools python-r1
+
+DESCRIPTION="a bittorrent filesystem based on FUSE"
+HOMEPAGE="https://github.com/johang/btfs;
+SRC_URI="https://github.com/johang/btfs/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+CDEPEND=">=sys-fs/fuse-2.8.0
+   >=net-misc/curl-7.22.0
+   dev-libs/boost:=
+   >=net-libs/libtorrent-rasterbar-0.16.0:="
+DEPEND="${CDEPEND}
+   virtual/pkgconfig"
+RDEPEND="${CDEPEND}
+   ${PYTHON_DEPS}"
+
+src_prepare() {
+   default
+
+   # don't install btplay via make
+   sed -i '/^SUBDIRS =/s/scripts//' Makefile.am || die
+
+   eautoreconf
+}
+
+src_install() {
+   default
+   python_foreach_impl python_doscript scripts/btplay
+}



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

2017-08-09 Thread Tim Harder
commit: 2abe351d0a4cd318ac47cc3a150b5e930f0f1559
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Aug  9 18:35:20 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Aug  9 18:58:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2abe351d

sys-apps/baselayout: fix version_is_at_least function typo

 sys-apps/baselayout/baselayout-2.4.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/baselayout/baselayout-2.4.1-r1.ebuild 
b/sys-apps/baselayout/baselayout-2.4.1-r1.ebuild
index e0b71bd2af4..edb3c393e38 100644
--- a/sys-apps/baselayout/baselayout-2.4.1-r1.ebuild
+++ b/sys-apps/baselayout/baselayout-2.4.1-r1.ebuild
@@ -242,7 +242,7 @@ pkg_postinst() {
fi
 
for x in ${REPLACING_VERSIONS}; do
-   if ! xersion_is_at_least 2.4 ${v}; then
+   if ! version_is_at_least 2.4 ${v}; then
ewarn "After updating ${EROOT}etc/profile, please run"
ewarn "env-update and . /etc/profile"
break



[gentoo-commits] repo/gentoo:master commit in: app-shells/zsh/, app-shells/zsh/files/

2017-08-09 Thread Tim Harder
commit: 86a207399d8e4abaf3a1a3999fbbce2cb068aa30
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Aug  9 18:52:50 2017 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Aug  9 18:58:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86a20739

app-shells/zsh: version bump to 5.4.1

Also, apply patch by Mike Gilbert to set PATH=${ROOTPATH} if EUID = 0;
otherwise, leave it alone. Leave prefix as-is for now.

Bug: https://bugs.gentoo.org/255695
Bug: https://bugs.gentoo.org/621334

 app-shells/zsh/Manifest|  2 ++
 app-shells/zsh/files/zprofile-2| 41 ++
 .../zsh/{zsh-.ebuild => zsh-5.4.1.ebuild}  |  3 +-
 app-shells/zsh/zsh-.ebuild |  3 +-
 4 files changed, 47 insertions(+), 2 deletions(-)

diff --git a/app-shells/zsh/Manifest b/app-shells/zsh/Manifest
index f5f22ca42b3..72c3a8796c3 100644
--- a/app-shells/zsh/Manifest
+++ b/app-shells/zsh/Manifest
@@ -6,3 +6,5 @@ DIST zsh-5.3-doc.tar.xz 3161944 SHA256 
cdfc6c3f7235b13308af5316cfa87abb5f51b3ec7
 DIST zsh-5.3.1-doc.tar.xz 3161408 SHA256 
d51762fcb5699c332da8a4e404cb9eb8d5de8fa4e0235a08bcf252c915bda6ed SHA512 
27f9d50094c21a77b36fe3309a9ab81a2ccf6570139b11038bbebe9fff2d0701f0bccf9163f5bf47d51ce7b978df621a4cb9089c33e9179a61636fcc94a9fb9c
 WHIRLPOOL 
40d10cf9767a168f2619b0bed947d6a05a45bece6a5a5bd353422fef88ca267bf2f03f18f6ce9ee86def9219b13e3c8fa145f73c22bb3f9d786ee6eddd773953
 DIST zsh-5.3.1.tar.xz 2928832 SHA256 
fc886cb2ade032d006da8322c09a7e92b2309177811428b121192d44832920da SHA512 
25f723c76d2779c3cb53de2e0dbb1163ec289f76282bec49757880d0ce32bf64a001a6b40c54c290d342aa09f92319af5c597bff99de8dbd1fc895c11836f304
 WHIRLPOOL 
cdd62b5c144a7b416bb46b7a14ddc12f5e1ff133acc292abcdc94d402b2c0a6b57667f962cb808bdd52fdedd4b98fb5669327d1754183f242f29bdaea73747fc
 DIST zsh-5.3.tar.xz 2928684 SHA256 
76f82cfd5ce373cf799a03b6f395283f128430db49202e3e3f512fb5a19d6f8a SHA512 
b34da1a062954ccb166b0a22fa48b0d08bdb8f50fd96cb391f04887c0bf416e771ceaa8af8fa7da2dc2e6f7c3ecce5c92c4e3bee21fd93e467849c8febc021b0
 WHIRLPOOL 
9d52e36528c2272e2de33144bd76ddb50e505ecc2dec13e332c9e9185be1e919b5f4276de052b0d558d5f809c0437d1a85491924a6febd143dcfced53c323c81
+DIST zsh-5.4.1-doc.tar.xz 3197560 SHA256 
b8b1a40aeec852806ad2b74b0a0c534320bf517e2fe2a087c0c9d39e75dc29f1 SHA512 
2cc2c87dd408fba68a483fb33323abb2d3ecd66c2f4042fd4e1cff13d83df819075f54ef72c9ab6dfc98638948653e4210f2b8c0ea5c40e3b993e93bd77ee8a0
 WHIRLPOOL 
d279964f59386d9a4cecf53998bb90b5c99b9331a06641bbe352445f27f8d6868214ea257e238e3179bdda0a22e46d4716853209ae4f01ad232ffe7615dec785
+DIST zsh-5.4.1.tar.xz 2972824 SHA256 
94cbd57508287e8faa081424509738d496f5f41e32ed890e3a5498ce05d3633b SHA512 
c666c54b05e2707e3a3cf9a87a17863792f0c89ec14f5fdc85a3064f26249cfba42a2953bc76bb90205fb87a08c203a165a5240c9fd6c489c13d8cc82ee6e979
 WHIRLPOOL 
efc33f3bfc79013dd51c4cde14c99fafe51ee18b69d26d244d1cc3fe2845633edb9183bf2db0e6df02cc4329ca3d59e1dacba9328ed68c72f0e7b8dac35e

diff --git a/app-shells/zsh/files/zprofile-2 b/app-shells/zsh/files/zprofile-2
new file mode 100644
index 000..9c4313c4494
--- /dev/null
+++ b/app-shells/zsh/files/zprofile-2
@@ -0,0 +1,41 @@
+# @GENTOO_PORTAGE_EPREFIX@/etc/zsh/zprofile
+
+# Load environment settings from profile.env, which is created by
+# env-update from the files in /etc/env.d
+if [ -e "@GENTOO_PORTAGE_EPREFIX@"/etc/profile.env ] ; then
+   . "@GENTOO_PORTAGE_EPREFIX@"/etc/profile.env
+fi
+
+# You should override these in your ~/.zprofile (or equivalent) for per-user
+# settings.  For system defaults, you can add a new file in /etc/profile.d/.
+export EDITOR=${EDITOR:-/bin/nano}
+export PAGER=${PAGER:-/usr/bin/less}
+
+# 077 would be more secure, but 022 is generally quite realistic
+umask 022
+
+# Set up PATH depending on whether we're root or a normal user.
+# There's no real reason to exclude sbin paths from the normal user,
+# but it can make tab-completion easier when they aren't in the
+# user's PATH to pollute the executable namespace.
+#
+# It is intentional in the following line to use || instead of -o.
+# This way the evaluation can be short-circuited and calling whoami is
+# avoided.
+if [ "$EUID" = "0" ] || [ "$USER" = "root" ] ; then
+   @ZSH_NOPREFIX@PATH="${ROOTPATH}"
+   
@ZSH_PREFIX@PATH="@GENTOO_PORTAGE_EPREFIX@/usr/sbin:@GENTOO_PORTAGE_EPREFIX@/usr/bin:@GENTOO_PORTAGE_EPREFIX@/sbin:@GENTOO_PORTAGE_EPREFIX@/bin:${ROOTPATH}:/usr/sbin:/usr/bin:/sbin:/bin"
+@ZSH_PREFIX@else
+   
@ZSH_PREFIX@PATH="@GENTOO_PORTAGE_EPREFIX@/usr/bin:@GENTOO_PORTAGE_EPREFIX@/bin:${PATH}:/usr/bin:/bin"
+fi
+export PATH
+unset ROOTPATH
+
+shopts=$-
+setopt nullglob
+for sh in "@GENTOO_PORTAGE_EPREFIX@"/etc/profile.d/*.sh ; do
+   [ -r "$sh" ] && . "$sh"
+done
+unsetopt nullglob
+set -$shopts
+unset sh shopts

diff --git a/app-shells/zsh/zsh-.ebuild b/app-shells/zsh/zsh-5.4.1.ebuild
similarity index 98%
copy from app-shells/zsh/zsh-.ebuild
copy to 

[gentoo-commits] repo/gentoo:master commit in: net-fs/cifs-utils/, net-fs/cifs-utils/files/

2017-08-09 Thread Austin English
commit: 82fd27bd179c57ee98732718805eeb11df55b16c
Author: Austin English  gentoo  org>
AuthorDate: Tue Aug  8 19:08:40 2017 +
Commit: Austin English  gentoo  org>
CommitDate: Wed Aug  9 18:50:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82fd27bd

net-fs/cifs-utils: add patch to fix building when talloc is not installed

Gentoo-Bug: https://bugs.gentoo.org/612018
Acked-By: axs  gentoo.org
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-fs/cifs-utils/cifs-utils-6.7.ebuild|  4 +++
 .../cifs-utils/files/cifs-utils-6.7-talloc.patch   | 29 ++
 2 files changed, 33 insertions(+)

diff --git a/net-fs/cifs-utils/cifs-utils-6.7.ebuild 
b/net-fs/cifs-utils/cifs-utils-6.7.ebuild
index e312ad6cd2b..b18e773d460 100644
--- a/net-fs/cifs-utils/cifs-utils-6.7.ebuild
+++ b/net-fs/cifs-utils/cifs-utils-6.7.ebuild
@@ -35,6 +35,10 @@ REQUIRED_USE="acl? ( ads )"
 
 DOCS="doc/linux-cifs-client-guide.odt"
 
+PATCHES=(
+   "${FILESDIR}/${P}-talloc.patch"
+)
+
 pkg_setup() {
linux-info_pkg_setup
 

diff --git a/net-fs/cifs-utils/files/cifs-utils-6.7-talloc.patch 
b/net-fs/cifs-utils/files/cifs-utils-6.7-talloc.patch
new file mode 100644
index 000..7e3418631bd
--- /dev/null
+++ b/net-fs/cifs-utils/files/cifs-utils-6.7-talloc.patch
@@ -0,0 +1,29 @@
+https://bugs.gentoo.org/show_bug.cgi?id=612018
+
+From: Thomas Witt 
+Date: Wed, 15 Mar 2017 20:20:44 + (+)
+Subject: mount.cifs: Remove data_blob.h include
+X-Git-Url: 
https://git.samba.org/?p=cifs-utils.git;a=commitdiff_plain;h=272d523a57a4e8791d625a479128613be5e401f5
+
+mount.cifs: Remove data_blob.h include
+
+data_blob.h includes talloc.h from libtalloc, but that is only marked as
+a dependency for cifs.upcall. No symbols from that header are used by
+cifs.mount, so remove it to avoid the libtalloc dependency
+
+Signed-off-by: Thomas Witt 
+---
+
+diff --git a/mount.cifs.c b/mount.cifs.c
+index 13b71ef..2612feb 100644
+--- a/mount.cifs.c
 b/mount.cifs.c
+@@ -61,7 +61,6 @@
+ #include "mount.h"
+ #include "util.h"
+ #include "resolve_host.h"
+-#include "data_blob.h"
+
+ #ifndef MS_MOVE
+ #define MS_MOVE 8192
+



[gentoo-commits] proj/elections:master commit in: completed/trustees2006/, completed/trustees2005/

2017-08-09 Thread Robin H. Johnson
commit: 971c8bbb9fa34c7b7637cea73db355088f8da7fd
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Aug  9 18:11:47 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Aug  9 18:11:47 2017 +
URL:https://gitweb.gentoo.org/proj/elections.git/commit/?id=971c8bbb

Last missing master ballot & casting history for trustees2005/2006.

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

 completed/trustees2005/casting-voters-trustees2005 |  84 
 completed/trustees2006/casting-voters-trustees2006 |  79 
 completed/trustees2006/master-trustees2006 | 459 +
 3 files changed, 622 insertions(+)

diff --git a/completed/trustees2005/casting-voters-trustees2005 
b/completed/trustees2005/casting-voters-trustees2005
new file mode 100644
index 000..ccd8913
--- /dev/null
+++ b/completed/trustees2005/casting-voters-trustees2005
@@ -0,0 +1,84 @@
+agriffis
+azarah
+bass
+batlogg
+bcowan
+beejay
+bennyc
+blackace
+cam
+cardoe
+carlo
+carpaski
+ciaranm
+cshields
+cybersystem
+dertobi123
+dholm
+dmwaters
+dostrow
+dragonheart
+dsd
+eradicator
+ferringb
+fmccor
+g2boojum
+genone
+gerrynjr
+gregkh
+gustavoz
+hattya
+iggy
+jforman
+johnm
+jrinkovs
+jstubbs
+kanaka
+karltk
+klieber
+kloeri
+koon
+kugelfang
+kumba
+lanius
+latexer
+lcars
+leonardop
+liquidx
+lu_zero
+mcummings
+method
+mr_bones_
+nakano
+nerdboy
+neysx
+npmccallum
+patrick
+pauldv
+pfeifer
+pjp
+port001
+pvdabeel
+pylon
+pythonhead
+ramereth
+robbat2
+roger55
+rphillips
+seemant
+sejo
+solar
+spyderous
+stkn
+swift
+tantive
+taviso
+tester
+tigger
+twp
+usata
+vapier
+weeve
+wolf31o2
+zhen
+zypher

diff --git a/completed/trustees2006/casting-voters-trustees2006 
b/completed/trustees2006/casting-voters-trustees2006
new file mode 100644
index 000..77a61dd
--- /dev/null
+++ b/completed/trustees2006/casting-voters-trustees2006
@@ -0,0 +1,79 @@
+agaffney
+amne
+anpereir
+astinus
+axxo
+betelgeuse
+blackace
+cam
+chainsaw
+corsair
+cryos
+dang
+dberkholz
+deathwing00
+dertobi123
+dju
+dragonheart
+ferdy
+flameeyes
+fmccor
+fox2mike
+fuzzyray
+g2boojum
+genone
+genstef
+geoman
+george
+grahl
+grobian
+hansmi
+hattya
+ian
+iluxa
+jakub
+jkt
+joshuabaergen
+kaiowas
+kallamej
+kanaka
+killerfox
+kloeri
+kugelfang
+langthang
+leonardop
+lu_zero
+maedhros
+malc
+mcummings
+mr_bones_
+mrness
+neysx
+nixphoeni
+patrick
+pauldv
+phreak
+pylon
+pythonhead
+r2d2
+radek
+rajiv
+ribosome
+rl03
+robbat2
+roger55
+seemant
+so
+spb
+stefaan
+stuart
+tester
+ticho
+tove
+vapier
+vivo
+vorlon
+wolf31o2
+wormo
+yoswink
+zypher

diff --git a/completed/trustees2006/master-trustees2006 
b/completed/trustees2006/master-trustees2006
new file mode 100644
index 000..8bff879
--- /dev/null
+++ b/completed/trustees2006/master-trustees2006
@@ -0,0 +1,459 @@
+- confirmation 299e -
+g2boojum
+seemant
+wolf31o2
+rl03
+mcummings
+pauldv
+stuart
+- confirmation 2afa -
+seemant g2boojum mcummings wolf31o2
+rl03
+pauldv stuart
+- confirmation 30ae -
+rl03
+seemant stuart
+g2boojum
+mcummings
+wolf31o2
+pauldv
+- confirmation 345a -
+g2boojum
+seemant
+mcummings
+stuart
+wolf31o2 pauldv rl03
+- confirmation 36ff -
+wolf31o2 seemant
+mcummings g2boojum rl03 pauldv stuart
+- confirmation 3706 -
+seemant
+g2boojum wolf31o2
+mcummings pauldv rl03
+stuart
+- confirmation 05b7 -
+seemant
+g2boojum pauldv
+mcummings wolf31o2
+rl03
+stuart
+- confirmation 3cfb -
+seemant g2boojum
+wolf31o2
+pauldv stuart
+mcummings rl03
+- confirmation 3e20 -
+stuart
+rl03
+wolf31o2
+mcummings
+pauldv
+g2boojum
+seemant
+- confirmation 43a5 -
+pauldv
+stuart
+seemant
+wolf31o2 mcummings rl03
+g2boojum
+- confirmation 44b9 -
+g2boojum
+seemant
+mcummings
+stuart
+rl03
+pauldv
+wolf31o2
+- confirmation 459e -
+seemant
+mcummings
+pauldv
+g2boojum
+rl03
+stuart
+wolf31o2
+- confirmation 4775 -
+seemant
+wolf31o2
+pauldv g2boojum mcummings stuart rl03
+- confirmation 4c0a -
+seemant
+wolf31o2 g2boojum
+mcummings pauldv
+rl03
+stuart
+- confirmation 511d -
+mcummings seemant
+pauldv stuart
+g2boojum rl03 wolf31o2
+- confirmation 083f -
+seemant
+g2boojum
+mcummings
+rl03
+wolf31o2
+pauldv
+stuart
+- confirmation 554f -
+wolf31o2
+g2boojum
+seemant
+stuart
+mcummings
+pauldv
+rl03
+- confirmation 5f21 -
+g2boojum seemant
+- confirmation 09b5 -
+wolf31o2
+g2boojum
+seemant
+pauldv
+stuart
+- confirmation 63a2 -
+wolf31o2
+seemant
+g2boojum
+mcummings
+pauldv
+rl03
+stuart
+- confirmation 6873 -
+wolf31o2 seemant
+mcummings
+g2boojum stuart pauldv rl03
+- confirmation 6b64 -
+stuart
+mcummings
+rl03
+pauldv
+wolf31o2
+seemant
+g2boojum
+- confirmation 6f3e -
+g2boojum seemant stuart
+wolf31o2

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

2017-08-09 Thread Alexey Shvetsov
commit: 1df4f4bc9e90e99cfecd881de489d2ce79deaa37
Author: Alexey Shvetsov  gentoo  org>
AuthorDate: Wed Aug  9 18:07:50 2017 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Wed Aug  9 18:07:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1df4f4bc

www-client/pybugz: Works with py3_6

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 www-client/pybugz/pybugz-0.13.ebuild | 2 +-
 www-client/pybugz/pybugz-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/pybugz/pybugz-0.13.ebuild 
b/www-client/pybugz/pybugz-0.13.ebuild
index 8c60c0ae338..1376fb7ff52 100644
--- a/www-client/pybugz/pybugz-0.13.ebuild
+++ b/www-client/pybugz/pybugz-0.13.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python3_4 python3_5 )
+PYTHON_COMPAT=( python3_{4,5,6} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then

diff --git a/www-client/pybugz/pybugz-.ebuild 
b/www-client/pybugz/pybugz-.ebuild
index 50fd5e4d8a9..580e0af4cd1 100644
--- a/www-client/pybugz/pybugz-.ebuild
+++ b/www-client/pybugz/pybugz-.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-PYTHON_COMPAT=( python3_4 python3_5 )
+PYTHON_COMPAT=( python3_{4,5,6} )
 PYTHON_REQ_USE="readline(+)"
 
 if [ "${PV}" = "" ]; then



[gentoo-commits] proj/elections:master commit in: completed/foundation-referendum-2009-01/, completed/trustees2005/

2017-08-09 Thread Robin H. Johnson
commit: aca4c30ed18248c754e5a65fa61f182cfda48bcc
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Aug  9 17:56:06 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Aug  9 17:56:06 2017 +
URL:https://gitweb.gentoo.org/proj/elections.git/commit/?id=aca4c30e

More old master ballots.

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

 .../master-foundation-referendum-2009-01   |  150 +++
 completed/trustees2005/master-trustees2005 | 1244 
 2 files changed, 1394 insertions(+)

diff --git 
a/completed/foundation-referendum-2009-01/master-foundation-referendum-2009-01 
b/completed/foundation-referendum-2009-01/master-foundation-referendum-2009-01
new file mode 100644
index 000..66c46c7
--- /dev/null
+++ 
b/completed/foundation-referendum-2009-01/master-foundation-referendum-2009-01
@@ -0,0 +1,150 @@
+- confirmation 2954 -
+yes
+no
+- confirmation 29d9 -
+yes
+no
+- confirmation 2dfe -
+yes
+no
+- confirmation 3027 -
+no
+yes
+- confirmation 30c1 -
+yes
+no
+- confirmation 34fa -
+yes
+no
+- confirmation 3d01 -
+yes
+no
+- confirmation 468d -
+yes
+no
+- confirmation 4915 -
+yes
+- confirmation 525f -
+yes no
+- confirmation 5863 -
+yes
+no
+- confirmation 5941 -
+yes
+no
+- confirmation 0b4d -
+yes
+no
+- confirmation 7368 -
+yes
+no
+- confirmation 7492 -
+yes
+- confirmation 75a3 -
+yes
+no
+- confirmation 76e2 -
+yes
+no
+- confirmation 7767 -
+no
+yes
+- confirmation 7934 -
+yes
+no
+- confirmation 7b70 -
+yes
+no
+- confirmation 80a1 -
+yes
+- confirmation 866a -
+yes
+no
+- confirmation 9299 -
+yes
+no
+- confirmation 9302 -
+yes
+no
+- confirmation 956e -
+yes
+- confirmation 9b37 -
+yes
+- confirmation a40a -
+yes
+no
+- confirmation a61b -
+yes
+no
+- confirmation a648 -
+yes
+- confirmation acae -
+yes
+no
+- confirmation b67d -
+yes
+no
+- confirmation 1252 -
+yes
+no
+- confirmation b9eb -
+yes
+no
+- confirmation bc06 -
+no
+yes
+- confirmation bc50 -
+yes
+no
+- confirmation be99 -
+yes
+no
+- confirmation c1a1 -
+yes
+no
+- confirmation c4a4 -
+yes
+no
+- confirmation c8c7 -
+yes
+no
+- confirmation 150e -
+no
+yes
+- confirmation d2d5 -
+yes
+no
+- confirmation d486 -
+yes
+no
+- confirmation d4b4 -
+no
+- confirmation d53c -
+yes
+no
+- confirmation daaf -
+no
+yes
+- confirmation e30f -
+yes
+no
+- confirmation e685 -
+yes
+no
+- confirmation ead4 -
+yes
+no
+- confirmation ed9f -
+yes
+no
+- confirmation 17f0 -
+yes
+- confirmation f262 -
+yes
+no
+- confirmation f5d8 -
+yes
+no
+- confirmation 1be9 -
+yes
+no

diff --git a/completed/trustees2005/master-trustees2005 
b/completed/trustees2005/master-trustees2005
new file mode 100644
index 000..12568dd
--- /dev/null
+++ b/completed/trustees2005/master-trustees2005
@@ -0,0 +1,1244 @@
+- confirmation 0430 -
+klieber
+ramereth
+carpaski cshields g2boojum seemant
+foser spyderous swift
+cardoe jhuebel pylon pythonhead dmwaters
+bcowan dostrow kumba patrick pauldv tantive zypher
+- confirmation 2c80 -
+dmwaters
+seemant
+spyderous
+cshields
+g2boojum
+cardoe
+ramereth
+foser
+dostrow
+carpaski
+zypher
+pylon
+jhuebel
+pauldv
+pythonhead
+bcowan
+swift
+klieber
+kumba
+patrick
+tantive
+- confirmation 2c83 -
+g2boojum swift cshields
+dmwaters ramereth spyderous pauldv pythonhead
+carpaski foser seemant
+dostrow
+kumba pylon klieber jhuebel zypher
+bcowan cardoe tantive patrick
+- confirmation 3000 -
+zypher pylon patrick
+tantive
+ramereth seemant
+spyderous cshields swift
+carpaski kumba jhuebel
+foser cardoe dostrow
+bcowan pythonhead g2boojum
+dmwaters klieber pauldv
+- confirmation 39f3 -
+klieber
+cshields
+swift
+g2boojum
+pauldv
+carpaski
+dostrow
+spyderous
+ramereth
+dmwaters
+jhuebel
+pylon
+seemant
+pythonhead
+kumba
+tantive
+foser
+bcowan
+zypher
+patrick
+cardoe
+- confirmation 3b8e -
+kumba pylon jhuebel spyderous
+cshields dmwaters
+klieber carpaski seemant foser
+pythonhead bcowan g2boojum
+pauldv cardoe patrick ramereth zypher dostrow tantive swift
+- confirmation 3f29 -
+seemant dmwaters
+jhuebel

[gentoo-commits] proj/elections:master commit in: completed/council2007/, completed/council2008b/

2017-08-09 Thread Robin H. Johnson
commit: fbd2fbea345dc1ded4cdff42f64d193806a85167
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Aug  9 17:43:24 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Aug  9 17:43:24 2017 +
URL:https://gitweb.gentoo.org/proj/elections.git/commit/?id=fbd2fbea

More old council master ballots.

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

 completed/council2007/master-council2007   | 1031 
 completed/council2008b/master-council2008b |  564 +++
 2 files changed, 1595 insertions(+)

diff --git a/completed/council2007/master-council2007 
b/completed/council2007/master-council2007
new file mode 100644
index 000..7e19696
--- /dev/null
+++ b/completed/council2007/master-council2007
@@ -0,0 +1,1031 @@
+- confirmation 2c8f -
+uberlord
+amne
+dberkholz
+jokey
+welp
+dertobi123
+flameeyes
+vapier
+betelgeuse
+jaervosz
+christel
+lu_zero
+- confirmation 3260 -
+amne
+dertobi123
+jokey
+jaervosz
+flameeyes
+dberkholz
+uberlord
+lu_zero
+welp
+betelgeuse
+christel
+vapier
+- confirmation 370b -
+uberlord
+jokey
+dberkholz
+lu_zero
+betelgeuse
+amne
+vapier
+- confirmation 37a0 -
+betelgeuse
+vapier lu_zero
+dberkholz
+flameeyes amne
+jokey uberlord jaervosz dertobi123
+christel
+welp
+- confirmation 3c41 -
+flameeyes
+dberkholz
+vapier
+lu_zero
+christel
+dertobi123
+uberlord
+betelgeuse amne welp jokey jaervosz
+- confirmation 4072 -
+flameeyes dberkholz
+vapier
+jaervosz
+christel
+jokey
+welp
+betelgeuse
+uberlord
+lu_zero
+dertobi123
+amne
+- confirmation 41c9 -
+dberkholz vapier
+lu_zero
+uberlord
+jokey
+jaervosz
+betelgeuse christel flameeyes
+amne
+dertobi123
+welp
+- confirmation 433d -
+vapier uberlord
+welp jaervosz
+amne
+- confirmation 4661 -
+dberkholz dertobi123
+amne welp christel lu_zero
+jokey betelgeuse
+uberlord
+flameeyes
+jaervosz
+vapier
+- confirmation 0762 -
+dberkholz
+uberlord
+vapier
+jaervosz
+betelgeuse
+- confirmation 077b -
+dberkholz
+vapier
+betelgeuse
+jokey
+uberlord
+dertobi123 amne
+christel jaervosz welp lu_zero
+flameeyes
+- confirmation 0787 -
+dberkholz dertobi123
+amne
+jokey
+betelgeuse
+lu_zero
+uberlord
+flameeyes
+welp
+vapier
+jaervosz
+christel
+- confirmation 50d3 -
+vapier
+dberkholz
+christel
+uberlord
+dertobi123
+amne
+welp
+jokey
+lu_zero
+jaervosz
+flameeyes
+betelgeuse
+- confirmation 516e -
+vapier dberkholz
+uberlord jaervosz
+christel
+betelgeuse flameeyes dertobi123
+- confirmation 5182 -
+vapier
+uberlord
+lu_zero
+jaervosz
+dberkholz
+dertobi123
+jokey
+betelgeuse christel welp amne flameeyes
+- confirmation 5523 -
+betelgeuse
+dertobi123 jokey
+welp dberkholz
+flameeyes jaervosz
+vapier uberlord
+lu_zero amne
+christel
+- confirmation 552d -
+vapier uberlord
+dberkholz lu_zero
+jaervosz welp dertobi123 amne betelgeuse
+flameeyes
+christel
+jokey
+- confirmation 582b -
+vapier
+dberkholz flameeyes uberlord
+amne dertobi123 jaervosz lu_zero
+jokey betelgeuse
+welp
+christel
+- confirmation 5887 -
+vapier
+jaervosz uberlord
+dberkholz lu_zero betelgeuse
+flameeyes
+jokey
+dertobi123
+amne christel welp
+- confirmation 59d8 -
+betelgeuse
+welp
+flameeyes
+lu_zero
+dberkholz
+vapier
+christel uberlord jaervosz dertobi123 jokey amne
+- confirmation 5aa9 -
+flameeyes
+betelgeuse
+vapier
+dertobi123
+jokey
+amne
+dberkholz
+jaervosz
+christel lu_zero uberlord welp
+- confirmation 5b6e -
+dberkholz
+flameeyes
+jokey
+welp
+betelgeuse
+amne
+lu_zero
+dertobi123
+vapier
+uberlord
+christel
+jaervosz
+- confirmation 5ca4 -
+christel
+uberlord jaervosz
+betelgeuse dberkholz welp dertobi123 vapier
+lu_zero jokey flameeyes amne
+- confirmation 0947 -
+amne
+dertobi123
+jokey
+flameeyes
+lu_zero
+uberlord
+dberkholz
+vapier
+jaervosz
+betelgeuse
+welp
+christel
+- confirmation 5d1b -
+dertobi123
+amne
+flameeyes
+jokey
+welp
+dberkholz
+uberlord
+jaervosz
+vapier
+betelgeuse
+christel
+lu_zero
+- confirmation 5e30 -
+jokey
+welp
+betelgeuse
+dberkholz
+uberlord
+lu_zero
+flameeyes
+jaervosz
+christel
+dertobi123
+amne
+vapier
+- confirmation 62e3 -
+vapier dberkholz
+jaervosz uberlord
+flameeyes betelgeuse
+lu_zero dertobi123
+jokey
+welp amne christel
+- confirmation 0a10 -
+vapier
+dberkholz
+uberlord
+amne
+jaervosz lu_zero christel
+flameeyes betelgeuse
+dertobi123 jokey
+welp
+- confirmation 6a62 -
+vapier
+lu_zero
+uberlord
+welp
+christel
+betelgeuse
+flameeyes
+jokey
+amne
+jaervosz
+dberkholz
+dertobi123
+- confirmation 6c84 -
+dberkholz uberlord christel betelgeuse
+welp flameeyes lu_zero
+amne
+jokey

[gentoo-commits] proj/elections:master commit in: completed/council-201706/, council-201706/

2017-08-09 Thread Robin H. Johnson
commit: 03057003268eaa0d573d549a4bc3b9c6425f969c
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Aug  9 17:36:41 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Aug  9 17:37:49 2017 +
URL:https://gitweb.gentoo.org/proj/elections.git/commit/?id=03057003

council-201706 is completed.

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

 .../council-201706}/Votify.pm  |   0
 .../council-201706}/ballot-council-201706  |   0
 .../council-201706}/casting-voters-council-201706  |   0
 .../council-201706}/election-details   |   0
 .../council-201706}/get-devs-list  |   0
 completed/council-201706/master-council-201706 | 826 +
 .../council-201706}/officials-council-201706   |   0
 .../council-201706}/start-council-201706   |   0
 .../council-201706}/stop-council-201706|   0
 .../council-201706}/voters-council-201706  |   0
 10 files changed, 826 insertions(+)

diff --git a/council-201706/Votify.pm b/completed/council-201706/Votify.pm
similarity index 100%
rename from council-201706/Votify.pm
rename to completed/council-201706/Votify.pm

diff --git a/council-201706/ballot-council-201706 
b/completed/council-201706/ballot-council-201706
similarity index 100%
rename from council-201706/ballot-council-201706
rename to completed/council-201706/ballot-council-201706

diff --git a/council-201706/casting-voters-council-201706 
b/completed/council-201706/casting-voters-council-201706
similarity index 100%
rename from council-201706/casting-voters-council-201706
rename to completed/council-201706/casting-voters-council-201706

diff --git a/council-201706/election-details 
b/completed/council-201706/election-details
similarity index 100%
rename from council-201706/election-details
rename to completed/council-201706/election-details

diff --git a/council-201706/get-devs-list 
b/completed/council-201706/get-devs-list
similarity index 100%
rename from council-201706/get-devs-list
rename to completed/council-201706/get-devs-list

diff --git a/completed/council-201706/master-council-201706 
b/completed/council-201706/master-council-201706
new file mode 100644
index 000..277229d
--- /dev/null
+++ b/completed/council-201706/master-council-201706
@@ -0,0 +1,826 @@
+- confirmation 27f0 -
+patrick dilfridge williamh ulm
+tamiko bircoph soap zx2c4 leio k_f ago slyfox lu_zero
+mgorny
+_reopen_nominations
+- confirmation 042e -
+mgorny
+lu_zero
+ulm
+dilfridge
+tamiko
+williamh
+k_f
+bircoph
+_reopen_nominations
+- confirmation 2e41 -
+zx2c4
+soap
+mgorny
+ulm
+dilfridge
+k_f
+tamiko
+williamh
+bircoph
+leio
+slyfox
+lu_zero
+ago
+patrick
+_reopen_nominations
+- confirmation 3322 -
+leio
+dilfridge ulm
+mgorny
+soap
+tamiko williamh
+bircoph slyfox zx2c4
+ago lu_zero
+k_f
+_reopen_nominations
+patrick
+- confirmation 35c2 -
+ulm mgorny ago dilfridge
+soap tamiko slyfox k_f williamh
+leio zx2c4 patrick bircoph lu_zero
+_reopen_nominations
+- confirmation 059b -
+dilfridge ulm
+leio williamh tamiko
+mgorny k_f lu_zero
+bircoph slyfox ago zx2c4 patrick soap
+_reopen_nominations
+- confirmation 3a22 -
+dilfridge
+mgorny
+patrick
+leio
+soap
+ulm
+k_f
+tamiko
+slyfox
+bircoph
+ago
+lu_zero
+williamh
+_reopen_nominations
+zx2c4
+- confirmation 3c74 -
+ulm lu_zero k_f
+patrick williamh dilfridge leio
+slyfox ago tamiko zx2c4 bircoph soap
+mgorny
+_reopen_nominations
+- confirmation 3f1f -
+ulm
+ago
+k_f
+leio
+zx2c4
+tamiko
+soap
+slyfox
+bircoph
+- confirmation 40c1 -
+ulm
+mgorny patrick
+leio tamiko
+soap
+zx2c4
+bircoph
+slyfox
+ago
+williamh
+_reopen_nominations
+dilfridge k_f lu_zero
+- confirmation 4527 -
+ulm
+dilfridge
+k_f
+leio
+slyfox
+tamiko
+williamh
+ago
+mgorny
+patrick
+zx2c4
+bircoph
+soap
+lu_zero
+_reopen_nominations
+- confirmation 4654 -
+k_f lu_zero patrick
+ulm
+ago leio williamh slyfox soap zx2c4 bircoph tamiko
+_reopen_nominations
+dilfridge
+mgorny
+- confirmation 487e -
+leio
+ulm
+tamiko
+zx2c4
+williamh
+k_f
+mgorny
+dilfridge
+bircoph
+ago
+slyfox
+lu_zero
+soap
+patrick
+_reopen_nominations
+- confirmation 48df -
+k_f
+ulm
+dilfridge
+williamh
+mgorny
+- confirmation 4a3f -
+dilfridge ulm k_f
+soap slyfox
+zx2c4 tamiko
+patrick
+_reopen_nominations
+bircoph leio lu_zero williamh mgorny ago
+- confirmation 4a56 -
+ulm
+dilfridge
+williamh
+bircoph
+lu_zero
+mgorny
+ago
+zx2c4
+k_f
+patrick
+slyfox
+tamiko
+leio
+soap
+_reopen_nominations
+- confirmation 5049 -
+patrick ulm mgorny williamh dilfridge ago
+leio
+_reopen_nominations
+tamiko
+soap
+bircoph
+lu_zero
+zx2c4
+k_f
+slyfox
+- confirmation 0856 -
+_reopen_nominations
+ulm
+bircoph k_f
+slyfox mgorny ago
+williamh 

[gentoo-commits] repo/gentoo:master commit in: app-admin/ansible/, app-admin/ansible/files/, profiles/

2017-08-09 Thread Denis Dupeyron
commit: 450cb03a2d599c16754bb36da218f39a4556b245
Author: Denis Dupeyron  gentoo  org>
AuthorDate: Wed Aug  9 17:22:43 2017 +
Commit: Denis Dupeyron  gentoo  org>
CommitDate: Wed Aug  9 17:22:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=450cb03a

app-admin/ansible: add masked 2.3.2.0-r1

Fix a long standing incompatibility between recent versions of ansible
and jinja.
https://github.com/ansible/ansible/issues/20494

Based on a patch by Zac Medico at:
https://github.com/zmedico/ansible/pull/1/commits/32e5613a95e525c3a25b8cd5aa1beaa75a4b0d5c

Masked for testing.

 app-admin/ansible/ansible-2.3.2.0-r1.ebuild| 64 +++
 .../files/ansible-2.3.2.0-fix_key_error.patch  | 74 ++
 profiles/package.mask  |  5 ++
 3 files changed, 143 insertions(+)

diff --git a/app-admin/ansible/ansible-2.3.2.0-r1.ebuild 
b/app-admin/ansible/ansible-2.3.2.0-r1.ebuild
new file mode 100644
index 000..17a663cf185
--- /dev/null
+++ b/app-admin/ansible/ansible-2.3.2.0-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 eutils versionator
+
+DESCRIPTION="Model-driven deployment, config management, and command execution 
framework"
+HOMEPAGE="http://ansible.com/;
+SRC_URI="http://releases.ansible.com/${PN}/${P}.tar.gz
+   
https://dev.gentoo.org/~prometheanfire/dist/ansible/ansible-2.3.2.0-pycryptodome.patch;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~x64-macos"
+IUSE="test"
+
+RDEPEND="
+   dev-python/paramiko[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   || (
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}]
+   )
+   dev-python/httplib2[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   net-misc/sshpass
+   virtual/ssh
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/packaging-16.6[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   dev-python/nose[${PYTHON_USEDEP}]
+   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+   
+Date: Wed, 9 Aug 2017 12:01:31 -0500
+Subject: [PATCH] template: fix KeyError: 'undefined variable: 0
+
+Fixes: https://github.com/ansible/ansible/issues/20494
+
+Based on a patch by Zac Medico at:
+https://github.com/zmedico/ansible/pull/1/commits/32e5613a95e525c3a25b8cd5aa1beaa75a4b0d5c
+---
+ lib/ansible/template/template.py | 10 --
+ lib/ansible/template/vars.py | 14 +-
+ 2 files changed, 21 insertions(+), 3 deletions(-)
+
+diff --git a/lib/ansible/template/template.py 
b/lib/ansible/template/template.py
+index 55936f4..fe11471 100644
+--- a/lib/ansible/template/template.py
 b/lib/ansible/template/template.py
+@@ -33,5 +33,11 @@ class AnsibleJ2Template(jinja2.environment.Template):
+ '''
+ 
+ def new_context(self, vars=None, shared=False, locals=None):
+-return self.environment.context_class(self.environment, 
vars.add_locals(locals), self.name, self.blocks)
+-
++if vars is not None:
++if isinstance(vars, dict):
++vars = vars.copy()
++if locals is not None:
++vars.update(locals)
++else:
++vars = vars.add_locals(locals)
++return self.environment.context_class(self.environment, vars, 
self.name, self.blocks)
+diff --git a/lib/ansible/template/vars.py b/lib/ansible/template/vars.py
+index fc6140c..2bf95ac 100644
+--- a/lib/ansible/template/vars.py
 b/lib/ansible/template/vars.py
+@@ -19,6 +19,8 @@
+ from __future__ import (absolute_import, division, print_function)
+ __metaclass__ = type
+ 
++from collections import Mapping
++
+ from ansible.compat.six import iteritems
+ from jinja2.utils import missing
+ from ansible.module_utils._text import to_native
+@@ -27,7 +29,7 @@ from ansible.module_utils._text import to_native
+ __all__ = ['AnsibleJ2Vars']
+ 
+ 
+-class AnsibleJ2Vars:
++class AnsibleJ2Vars(Mapping):
+ '''
+ Helper class to template all variable content before jinja2 sees it. This 
is
+ done by hijacking the variable storage that jinja2 uses, and overriding 
__contains__
+@@ -68,6 +70,16 @@ class AnsibleJ2Vars:
+ return True
+ return False
+ 
++def __iter__(self):
++keys = set()
++keys.update(self._templar._available_variables, self._locals, 
self._globals, *self._extras)
++return iter(keys)
++
++def __len__(self):
++keys = set()
++keys.update(self._templar._available_variables, self._locals, 
self._globals, *self._extras)
++return len(keys)
++
+ def __getitem__(self, varname):
+ if 

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

2017-08-09 Thread Sebastien Fabbro
commit: 52148abd2a46023d8185029d368520c933d2905c
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Wed Aug  9 17:01:22 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Aug  9 17:02:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52148abd

dev-python/pyavm: version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/pyavm/Manifest  |  2 +-
 .../pyavm/{pyavm-0.9.2.ebuild => pyavm-0.9.4.ebuild}   | 14 +-
 2 files changed, 6 insertions(+), 10 deletions(-)

diff --git a/dev-python/pyavm/Manifest b/dev-python/pyavm/Manifest
index d362f34f1cc..ffdcab013f0 100644
--- a/dev-python/pyavm/Manifest
+++ b/dev-python/pyavm/Manifest
@@ -1,2 +1,2 @@
-DIST PyAVM-0.9.2.tar.gz 101071 SHA256 
4bfc4bcb820d239b09d1f9c5a4cd1a3e0fc63af71d96f884a020cb7cc0c800fa SHA512 
5e724d023ddd74ce64c3846fdb2e6310cbf8e2b9670e2bc28dd1b7978eae76f43f48a223d8e69f805aded41c569657c874d999bcb8198e0b8de7f02dbb51e7c1
 WHIRLPOOL 
d7bc41a4cde21651ad2e278d10825c5b568d184be394f31066369a43970e9828d751272dcfc56ca6d42a9ed9be54f57502d2f27308203c52ff9de6ef65c4ab7c
 DIST PyAVM-0.9.3.tar.gz 220824 SHA256 
ea90ddfbc3c8705f21ca24e205dc0208510905b5b69829db38c7d0e53928873a SHA512 
c505c2dc483befd3060e7d9c45b38f6e18502a223577fbcb73d253859138c4b97e468e6aba39cb7eff4bb4c0526108e8556251de15e2d78f8482ff22a033bad9
 WHIRLPOOL 
f6f2093bb566463de508e8a08a6190a5becb133bf84781dee598d6efd46571eb185e97a474ccdfb3ce6835a6818534297e10838986734d1c98c30aea7f917e7a
+DIST PyAVM-0.9.4.tar.gz 221928 SHA256 
f298b864e5bc101ecbb0e46252e95e18a180ac28ba6ec362e63c12a7e914e386 SHA512 
95b10a57206dcace2941342015155ad46c6d71fd11963e5516d766067d2074d2302b60d6455b2194034beb6668c2a989cbf88908871d2bacd28ba6433a83a89e
 WHIRLPOOL 
2b04bf7ccf67b681ad7d52ae43bff75e152493741cbd252b6a5ed2c51766deaf30b909df161b3dbf4bbc8015e95b758cbe5fa866f9a8d18ae53e58b671d9a55a

diff --git a/dev-python/pyavm/pyavm-0.9.2.ebuild 
b/dev-python/pyavm/pyavm-0.9.4.ebuild
similarity index 67%
rename from dev-python/pyavm/pyavm-0.9.2.ebuild
rename to dev-python/pyavm/pyavm-0.9.4.ebuild
index 6f4ab260aa1..02c42573b38 100644
--- a/dev-python/pyavm/pyavm-0.9.2.ebuild
+++ b/dev-python/pyavm/pyavm-0.9.4.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
 
 inherit distutils-r1
 
@@ -19,19 +19,15 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
-RDEPEND="
-   >=dev-python/astropy-0.2[${PYTHON_USEDEP}]"
-
-DEPEND="
+RDEPEND="dev-python/astropy[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? (
-   >=dev-python/astropy-0.2[${PYTHON_USEDEP}]
+   dev-python/astropy[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
)"
 
 S="${WORKDIR}/${MYP}"
 
-PATCHES=( "${FILESDIR}/${P}-deprecated-fromstring.patch" )
-
 python_test() {
py.test || die "tests for ${EPYTHON} failed"
 }



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

2017-08-09 Thread Sebastien Fabbro
commit: e0f4c2eaad8d19e0c956886450e621f886934545
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Thu Aug  3 23:35:39 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Aug  9 17:01:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0f4c2ea

dev-python/ginga: moved to xdg-utils and removed old

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/ginga/Manifest   |  1 -
 dev-python/ginga/ginga-2.6.2.ebuild | 78 -
 dev-python/ginga/ginga-2.6.5.ebuild | 11 --
 3 files changed, 8 insertions(+), 82 deletions(-)

diff --git a/dev-python/ginga/Manifest b/dev-python/ginga/Manifest
index 41c5aa5b10f..05fb0ee2e46 100644
--- a/dev-python/ginga/Manifest
+++ b/dev-python/ginga/Manifest
@@ -1,3 +1,2 @@
-DIST ginga-2.6.2.tar.gz 17258711 SHA256 
a8bc2fd66f1a74b56282ce53086446a9aa2d9a0628911669615c3e0f7e3d5526 SHA512 
be9f24382019fb0d1c2013cf8da00518234da787ce54a724dccae273e093fd843e8b6a0ea206d288123835328c26961e71a59a48b179cd7d2898e02148e4f62a
 WHIRLPOOL 
453f1d834d1c99a0a873e749f0507a56af0007d0e0783d80a95c25ceb13e6f2d85ba2b64eb3e10680ebb308ad5d2c4ea6871605eeacf2c4d5880f29a18695fae
 DIST ginga-2.6.4.tar.gz 19971195 SHA256 
25d3435af454135c3539108ab41d4a55169e939739e0a947f12643dce16aa16e SHA512 
79c471ee3fefb6dc03c90538147b8fa8606b37b7747712f9a69163870e6ae460d259f0ea08388a07163ea8b588676d0208fcdd51577d04cfc334aacbd0c01599
 WHIRLPOOL 
7ab2c47015446aae322f5a167a4054f40e601f2d0ace9b164a87bf4cf1f084765d7cc05592a69847010fee20b780e47a4532defcd5acfbdf6ba74568dd6dbc52
 DIST ginga-2.6.5.tar.gz 19969984 SHA256 
0a8000a2e872d10fd05368cf3fa9d48d67c9191877998d764cd681f3f88b0e25 SHA512 
66c55662a8ce1fe683cdf6a83511f39146fadf10d1fedabd6d6c5c46662a3abd2496bd1f0200612a84bdad246f960990e242bccee7a8a13e3aaf88a4884ceb80
 WHIRLPOOL 
76284b1ada78ff60bfb7e350f71ed1d6e81f73704757574864a64fb437d80fd1ab011fa50daadd231dae75dc3d22efb76d48f14678538e7949a7f56a6f44412e

diff --git a/dev-python/ginga/ginga-2.6.2.ebuild 
b/dev-python/ginga/ginga-2.6.2.ebuild
deleted file mode 100644
index 5aa32a1b960..000
--- a/dev-python/ginga/ginga-2.6.2.ebuild
+++ /dev/null
@@ -1,78 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python{2_7,3_5} )
-PYTHON_REQ_USE='tk?'
-
-inherit distutils-r1 eutils fdo-mime
-
-DESCRIPTION="Astronomical image toolkit for Python"
-HOMEPAGE="https://ejeschke.github.io/ginga;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="doc examples gtk qt4 qt5 test tk"
-
-RDEPEND="
-   dev-python/astropy[${PYTHON_USEDEP}]
-   media-fonts/roboto
-   gtk? (  dev-python/pygobject[${PYTHON_USEDEP},cairo] )
-   qt4? ( || (
- dev-python/pyside[${PYTHON_USEDEP},help,X]
- dev-python/PyQt4[${PYTHON_USEDEP},help,X]
-  ) )
-   qt5? (  dev-python/PyQt5[${PYTHON_USEDEP},help,gui,widgets] )"
-
-DEPEND="${RDEPEND}
-   dev-python/astropy-helpers[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
-
-PATCHES=( "${FILESDIR}"/${PN}-no-roboto.patch )
-
-python_prepare_all() {
-   # use system astropy-helpers instead of bundled one
-   sed -i -e '/auto_use/s/True/False/' setup.cfg || die
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   if use doc; then
-   python_setup
-   PYTHONPATH="${BUILD_DIR}"/lib esetup.py build_sphinx 
--no-intersphinx
-   fi
-}
-
-python_test() {
-   esetup.py test
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( doc/_build/html/. )
-   distutils-r1_python_install_all
-   rm -r "${ED%/}"/usr/lib*/*/*/ginga/examples || die
-   if use examples; then
-   insinto /usr/share/doc/${PF}
-   doins -r ginga/examples
-   fi
-   domenu ginga.desktop
-}
-
-pkg_postinst() {
-   optfeature "Pick, Cuts, Histogram, LineProfile" \
-  dev-python/matplotlib sci-libs/scipy
-   optfeature "Online help browser" dev-qt/qtwebkit
-   optfeature "To save a movie" media-video/mplayer
-   optfeature "Speeds up rotation and some transformations" \
-  dev-python/numexpr dev-python/opencv 
dev-python/pyopencl
-   optfeature "Aids in identifying files when opening them" \
-  dev-python/filemagic
-   optfeature "Useful for various RGB file manipulations" dev-python/pillow
-
-   # Update mimedb for the new .desktop file
-   fdo-mime_desktop_database_update
-}

diff --git a/dev-python/ginga/ginga-2.6.5.ebuild 
b/dev-python/ginga/ginga-2.6.5.ebuild
index 6cbcae46aae..e08f9fa4c1f 100644
--- a/dev-python/ginga/ginga-2.6.5.ebuild
+++ b/dev-python/ginga/ginga-2.6.5.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 PYTHON_COMPAT=( 

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

2017-08-09 Thread Sebastien Fabbro
commit: 457531f140b42307a2f1e9fa30dec6c16b3f69c8
Author: Sébastien Fabbro  gentoo  org>
AuthorDate: Thu Aug  3 23:29:11 2017 +
Commit: Sebastien Fabbro  gentoo  org>
CommitDate: Wed Aug  9 17:01:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=457531f1

dev-python/ginga:

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-python/ginga/Manifest   |  1 +
 dev-python/ginga/ginga-2.6.5.ebuild | 77 +
 2 files changed, 78 insertions(+)

diff --git a/dev-python/ginga/Manifest b/dev-python/ginga/Manifest
index bf8ef605d7d..41c5aa5b10f 100644
--- a/dev-python/ginga/Manifest
+++ b/dev-python/ginga/Manifest
@@ -1,2 +1,3 @@
 DIST ginga-2.6.2.tar.gz 17258711 SHA256 
a8bc2fd66f1a74b56282ce53086446a9aa2d9a0628911669615c3e0f7e3d5526 SHA512 
be9f24382019fb0d1c2013cf8da00518234da787ce54a724dccae273e093fd843e8b6a0ea206d288123835328c26961e71a59a48b179cd7d2898e02148e4f62a
 WHIRLPOOL 
453f1d834d1c99a0a873e749f0507a56af0007d0e0783d80a95c25ceb13e6f2d85ba2b64eb3e10680ebb308ad5d2c4ea6871605eeacf2c4d5880f29a18695fae
 DIST ginga-2.6.4.tar.gz 19971195 SHA256 
25d3435af454135c3539108ab41d4a55169e939739e0a947f12643dce16aa16e SHA512 
79c471ee3fefb6dc03c90538147b8fa8606b37b7747712f9a69163870e6ae460d259f0ea08388a07163ea8b588676d0208fcdd51577d04cfc334aacbd0c01599
 WHIRLPOOL 
7ab2c47015446aae322f5a167a4054f40e601f2d0ace9b164a87bf4cf1f084765d7cc05592a69847010fee20b780e47a4532defcd5acfbdf6ba74568dd6dbc52
+DIST ginga-2.6.5.tar.gz 19969984 SHA256 
0a8000a2e872d10fd05368cf3fa9d48d67c9191877998d764cd681f3f88b0e25 SHA512 
66c55662a8ce1fe683cdf6a83511f39146fadf10d1fedabd6d6c5c46662a3abd2496bd1f0200612a84bdad246f960990e242bccee7a8a13e3aaf88a4884ceb80
 WHIRLPOOL 
76284b1ada78ff60bfb7e350f71ed1d6e81f73704757574864a64fb437d80fd1ab011fa50daadd231dae75dc3d22efb76d48f14678538e7949a7f56a6f44412e

diff --git a/dev-python/ginga/ginga-2.6.5.ebuild 
b/dev-python/ginga/ginga-2.6.5.ebuild
new file mode 100644
index 000..6cbcae46aae
--- /dev/null
+++ b/dev-python/ginga/ginga-2.6.5.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6} )
+PYTHON_REQ_USE='tk?'
+
+inherit distutils-r1 eutils fdo-mime virtualx
+
+DESCRIPTION="Astronomical image toolkit for Python"
+HOMEPAGE="https://ejeschke.github.io/ginga;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+LICENSE="BSD"
+SLOT="0"
+IUSE="examples gtk qt4 qt5 test tk"
+
+RDEPEND="
+   dev-python/astropy[${PYTHON_USEDEP}]
+   media-fonts/roboto
+   gtk? (  dev-python/pygobject[${PYTHON_USEDEP},cairo] )
+   qt4? ( || (
+  dev-python/pyside[${PYTHON_USEDEP},help,X]
+  dev-python/PyQt4[${PYTHON_USEDEP},help,X]
+ )
+ dev-python/QtPy[${PYTHON_USEDEP},gui]
+  )
+   qt5? (
+dev-python/PyQt5[${PYTHON_USEDEP},help,gui,widgets]
+dev-python/QtPy[${PYTHON_USEDEP},gui]
+   )
+"
+
+DEPEND="${RDEPEND}
+   dev-python/astropy-helpers[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/QtPy[${PYTHON_USEDEP},gui] )
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-no-roboto.patch )
+
+python_prepare_all() {
+   # use system astropy-helpers instead of bundled one
+   sed -i -e '/auto_use/s/True/False/' setup.cfg || die
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   virtx esetup.py test
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+   rm -r "${ED%/}"/usr/lib*/*/*/ginga/examples || die
+   if use examples; then
+   dodoc -r ginga/examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+   domenu ginga.desktop
+}
+
+pkg_postinst() {
+   optfeature "Pick, Cuts, Histogram, LineProfile" \
+  dev-python/matplotlib sci-libs/scipy
+   optfeature "Online help browser" dev-qt/qtwebkit
+   optfeature "To save a movie" media-video/mplayer
+   optfeature "Speeds up rotation and some transformations" \
+  dev-python/numexpr dev-python/opencv 
dev-python/pyopencl
+   optfeature "Aids in identifying files when opening them" \
+  dev-python/filemagic
+   optfeature "Useful for various RGB file manipulations" dev-python/pillow
+
+   # Update mimedb for the new .desktop file
+   fdo-mime_desktop_database_update
+}



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

2017-08-09 Thread Kent Fredric
commit: 798f48b8ab303f50c8bc778e43160343328a85eb
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Aug  8 16:14:21 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Aug  9 16:44:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=798f48b8

dev-perl/IO-Stty: Fix metadata.xml

My legacy contact details are no longer needed as I can maintain this
through project association.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/IO-Stty/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-perl/IO-Stty/metadata.xml b/dev-perl/IO-Stty/metadata.xml
index 9ec89d1db85..0f96b8ef349 100644
--- a/dev-perl/IO-Stty/metadata.xml
+++ b/dev-perl/IO-Stty/metadata.xml
@@ -1,10 +1,6 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   kentfred...@gmail.com
-   Kent Fredric
-   

p...@gentoo.org
Gentoo Perl Project



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

2017-08-09 Thread Kent Fredric
commit: c66e8ac461379636fd6ea1a22c7544d633ce
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Aug  8 16:13:11 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Aug  9 16:44:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c66e8ac4

dev-perl/Tie-Sub: Fix metadata.xml

Avoid use of legacy email contact and promoting to project
maintainership. Proxy maint are no longer needed :)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Tie-Sub/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/dev-perl/Tie-Sub/metadata.xml b/dev-perl/Tie-Sub/metadata.xml
index 8007ab25825..5b2cc2c7c07 100644
--- a/dev-perl/Tie-Sub/metadata.xml
+++ b/dev-perl/Tie-Sub/metadata.xml
@@ -1,18 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-kentfred...@gmail.com
-Kent Fredric
-  
   
 p...@gentoo.org
 Gentoo Perl Project
   
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
   
 Tie-Sub
 Tie::Sub



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

2017-08-09 Thread Kent Fredric
commit: 9a4ae248101d8406ebfe68887d2f7e477c9fb973
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Aug  8 16:11:59 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Wed Aug  9 16:43:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a4ae248

dev-perl/Graphics-ColorObject: Fix metadata.xml

1. I no longer need to be specifically mentioned here, @perl can handle
   this
2. I can use @gentoo if I was
3. Proxy maint are no longer needed due to #2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Graphics-ColorObject/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/dev-perl/Graphics-ColorObject/metadata.xml 
b/dev-perl/Graphics-ColorObject/metadata.xml
index e5ce97095f4..9bf2bea4fbb 100644
--- a/dev-perl/Graphics-ColorObject/metadata.xml
+++ b/dev-perl/Graphics-ColorObject/metadata.xml
@@ -1,18 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-kentfred...@gmail.com
-Kent Fredric
-  
   
 p...@gentoo.org
 Gentoo Perl Project
   
-  
-proxy-ma...@gentoo.org
-Proxy Maintainers
-  
   
 Graphics-ColorObject
 Graphics::ColorObject



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

2017-08-09 Thread Richard Freeman
commit: 04a25c6530fefc6e2254232b324336ce6d101dc3
Author: Richard Freeman  gentoo  org>
AuthorDate: Wed Aug  9 16:29:04 2017 +
Commit: Richard Freeman  gentoo  org>
CommitDate: Wed Aug  9 16:29:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04a25c65

media-video/ffmpeg: amd64 stable #622912

Bug: 622912
Package-Manager: Portage-2.3.6, Repoman-2.3.3

 media-video/ffmpeg/ffmpeg-3.2.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild 
b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
index 7a663545d22..d0fe0453d6e 100644
--- a/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
+++ b/media-video/ffmpeg/ffmpeg-3.2.6.ebuild
@@ -54,7 +54,7 @@ LICENSE="
samba? ( GPL-3 )
 "
 if [ "${PV#}" = "${PV}" ] ; then
-   KEYWORDS="~alpha ~amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm ~hppa ia64 ~mips ~ppc ~ppc64 ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 fi
 
 # Options to use as use_enable in the foo[:bar] form.



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

2017-08-09 Thread Richard Freeman
commit: 203716a12838c7639979609096f584db24f8d356
Author: Richard Freeman  gentoo  org>
AuthorDate: Wed Aug  9 16:33:47 2017 +
Commit: Richard Freeman  gentoo  org>
CommitDate: Wed Aug  9 16:33:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203716a1

sys-apps/shadow: amd64 stable #627044

Bug: 627044
Package-Manager: Portage-2.3.6, Repoman-2.3.3

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

diff --git a/sys-apps/shadow/shadow-4.5.ebuild 
b/sys-apps/shadow/shadow-4.5.ebuild
index d7c7555b423..0044fa22718 100644
--- a/sys-apps/shadow/shadow-4.5.ebuild
+++ b/sys-apps/shadow/shadow-4.5.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/shadow-maint/shadow/releases/download/${PV}/${P}.tar
 
 LICENSE="BSD GPL-2"
 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 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
 IUSE="acl audit cracklib nls pam selinux skey xattr"
 # Taken from the man/Makefile.am file.
 LANGS=( cs da de es fi fr hu id it ja ko pl pt_BR ru sv tr zh_CN zh_TW )



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

2017-08-09 Thread Paweł Hajdan
commit: cf850a99f3338b701743094973e6b734b5bab9bd
Author: Pawel Hajdan, Jr  gentoo  org>
AuthorDate: Wed Aug  9 16:19:14 2017 +
Commit: Paweł Hajdan  gentoo  org>
CommitDate: Wed Aug  9 16:19:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf850a99

www-client/chromium: dev channel bump (62.0.3178.0)

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 www-client/chromium/Manifest   |   1 +
 www-client/chromium/chromium-62.0.3178.0.ebuild| 642 +
 .../chromium/files/chromium-gn-bootstrap-r15.patch |  11 +
 .../chromium/files/chromium-system-zlib-r1.patch   |  22 +
 4 files changed, 676 insertions(+)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index fb1a29bd622..8973074bba4 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -4,3 +4,4 @@ DIST chromium-60.0.3112.78.tar.xz 537669428 SHA256 
a82db2aa1b9348b619c01894db565
 DIST chromium-61.0.3163.25.tar.xz 552570440 SHA256 
58060965c4dd155dbe08b26f13695002ad990532c545aafb70a4a0d07f135679 SHA512 
771017c495bcf675e0fa55e42578b0c9d16147c6cc8a25138104be7aeb9af49c7877d6dd74b62577a655b185831b788036085820b3a813acb70f58cd27f77703
 WHIRLPOOL 
c8b9ed8ce368cd6f7a227dc0c09a76d15b9efa5cf590cd1ee95d55ac389734992ccd319de56ae514991c5e4841d5ea61fdaba2dd14f514195ea3e6e7e7bd3260
 DIST chromium-61.0.3163.31.tar.xz 552755500 SHA256 
1425debb3702d3386c0e2f465af593dd630302b7af869b050a0bc6240ee21bfb SHA512 
54413996a22b722ebd8191657ff9f5ef59d3d1d590fb47a83fd9783e7e868061ce77e4dbe30f0d80c3560b45fc2932b1fdcd3a55de4d78c329fb58586d808b16
 WHIRLPOOL 
972d7609a500f8ffd7ddb158e8d87013b44df9ffba206446490f8b6b076f1f700bb7f7ce589b85ecaaa931605419b174262b0d3dac3dc6a0a48d43cd3871d031
 DIST chromium-62.0.3175.4.tar.xz 552651752 SHA256 
d5199dcf3f40e511cdf99f3a7f99dc0ddd69416b197c64e71806a8cbc813e369 SHA512 
8f3c0f9e8f9a96bf63189678ecb5672a4bc2d4670e5587c8736023f255e59ad4b14ed6b738b885bf8548675ad6457246e23541a9e8fc48d00141f82ac28d
 WHIRLPOOL 
5ba59e73d4e381d7e58e5f3f041f11efaf49bf30f46e9baa370b766e4d61940ef82539c7573c7b86f10ca694e248095abe2780e148afb279191fab9591756f00
+DIST chromium-62.0.3178.0.tar.xz 553128768 SHA256 
86abba3a2bf996de642b4141c69b13ffd3c92443bc271d1be07d3f9de669cf50 SHA512 
aec904bf4f879921d655390520a68adcff1f835eb3a4b89609155a7865f02481379a49052be8950145ee62c5301493a60a510611bc266fea967675851fdf1a7b
 WHIRLPOOL 
106ddacf8c88ae22aebd4409d2210d1c593b09743768355bc1ec6076204ce166ca3e0169a07007e079797695f484cf5c206f442c85dddf5b875f87b90f5070f0

diff --git a/www-client/chromium/chromium-62.0.3178.0.ebuild 
b/www-client/chromium/chromium-62.0.3178.0.ebuild
new file mode 100644
index 000..626f09a5b82
--- /dev/null
+++ b/www-client/chromium/chromium-62.0.3178.0.ebuild
@@ -0,0 +1,642 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+PYTHON_COMPAT=( python2_7 )
+
+CHROMIUM_LANGS="am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr gu 
he
+   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl 
sr
+   sv sw ta te th tr uk vi zh-CN zh-TW"
+
+inherit check-reqs chromium-2 eutils gnome2-utils flag-o-matic multilib 
ninja-utils pax-utils portability python-any-r1 readme.gentoo-r1 
toolchain-funcs versionator xdg-utils
+
+DESCRIPTION="Open-source version of Google Chrome web browser"
+HOMEPAGE="http://chromium.org/;
+SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="component-build cups gnome-keyring +hangouts kerberos neon pic 
+proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-icu 
+system-libvpx +tcmalloc widevine"
+RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
+
+COMMON_DEPEND="
+   app-arch/bzip2:=
+   cups? ( >=net-print/cups-1.3.11:= )
+   dev-libs/expat:=
+   dev-libs/glib:2
+   system-icu? ( =dev-libs/nss-3.14.3:=
+   >=dev-libs/re2-0.2016.05.01:=
+   gnome-keyring? ( >=gnome-base/libgnome-keyring-3.12:= )
+   >=media-libs/alsa-lib-1.0.19:=
+   media-libs/fontconfig:=
+   media-libs/freetype:=
+   >=media-libs/harfbuzz-1.4.2:=[icu(-)]
+   media-libs/libjpeg-turbo:=
+   media-libs/libpng:=
+   system-libvpx? ( media-libs/libvpx:=[postproc,svc] )
+   >=media-libs/openh264-1.6.0:=
+   pulseaudio? ( media-sound/pulseaudio:= )
+   system-ffmpeg? ( >=media-video/ffmpeg-3:= media-libs/opus:= )
+   sys-apps/dbus:=
+   sys-apps/pciutils:=
+   virtual/udev
+   x11-libs/cairo:=
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3
+   x11-libs/libX11:=
+   x11-libs/libXcomposite:=
+   x11-libs/libXcursor:=
+   x11-libs/libXdamage:=
+   x11-libs/libXext:=
+   x11-libs/libXfixes:=
+   >=x11-libs/libXi-1.6.0:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   

[gentoo-commits] repo/gentoo:master commit in: app-laptop/batti/

2017-08-09 Thread Pacho Ramos
commit: 28f6e022f93776fe256fc180467548be2fa80261
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Aug  9 15:10:40 2017 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Aug  9 15:12:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f6e022

app-laptop/batti: Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-laptop/batti/batti-0.3.8-r3.ebuild | 42 --
 1 file changed, 42 deletions(-)

diff --git a/app-laptop/batti/batti-0.3.8-r3.ebuild 
b/app-laptop/batti/batti-0.3.8-r3.ebuild
deleted file mode 100644
index 9ac6eb6cd0b..000
--- a/app-laptop/batti/batti-0.3.8-r3.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 gnome2-utils eutils
-
-DESCRIPTION="A upower based battery monitor for the system tray, similar to 
batterymon"
-HOMEPAGE="https://code.google.com/p/batti-gtk/;
-SRC_URI="https://batti-gtk.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="libnotify"
-
-RDEPEND="dev-python/pygtk[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   || ( sys-power/upower sys-power/upower-pm-utils )
-   x11-themes/gnome-icon-theme
-   libnotify? ( x11-libs/libnotify )"
-DEPEND=""
-
-DOCS=( AUTHORS ChangeLog )
-
-src_prepare() {
-   has_version ">=sys-power/upower-0.99" && epatch 
"${FILESDIR}/${P}-upower-0.99.patch"
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



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

2017-08-09 Thread Marek Szuba
commit: 5333f190c3388bf71552464fd59ab6dd80ea24a4
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Aug  9 14:56:44 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Aug  9 15:10:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5333f190

virtual/opencl: add VIDEO_CARDS=amdgpu support

Radeon Open Compute has not been added to Gentoo yet but even without it, it is 
possible
to enable OpenCL on recent AMD cards by combining OpenCL libraries from the 
proprietary
AMDGPU-Pro stack with the Open Source amdgpu stack. It's a hack but it works, 
at least
on Polaris GPUs.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 virtual/opencl/opencl-0-r5.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/virtual/opencl/opencl-0-r5.ebuild 
b/virtual/opencl/opencl-0-r5.ebuild
index d9e8a055e43..f137f7884b8 100644
--- a/virtual/opencl/opencl-0-r5.ebuild
+++ b/virtual/opencl/opencl-0-r5.ebuild
@@ -8,13 +8,15 @@ inherit multilib-build
 DESCRIPTION="Virtual for OpenCL implementations"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~x86"
-CARDS=( fglrx i965 nvidia )
+CARDS=( amdgpu fglrx i965 nvidia )
 IUSE="${CARDS[@]/#/video_cards_}"
 
-# intel-ocl-sdk is amd64-only
+# amdgpu-pro-opencl and intel-ocl-sdk are amd64-only
 RDEPEND="app-eselect/eselect-opencl
|| (
>=media-libs/mesa-9.1.6[opencl,${MULTILIB_USEDEP}]
+   video_cards_amdgpu? (
+   abi_x86_64? ( !abi_x86_32? ( dev-libs/amdgpu-pro-opencl 
) ) )
video_cards_fglrx? (
>=x11-drivers/ati-drivers-12.1-r1 )
video_cards_i965? (



[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/

2017-08-09 Thread Marek Szuba
commit: 922aa9d9f9fc15f8ccf0d65dba15f4f5d627910d
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Aug  9 15:06:24 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Aug  9 15:10:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=922aa9d9

net-p2p/syncthing: bump to 0.14.35

Among other fixes, this version closes a security vulnerability which allowed
file overwrite via versioned symlinks.

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-p2p/syncthing/Manifest |   1 +
 net-p2p/syncthing/syncthing-0.14.35.ebuild | 123 +
 2 files changed, 124 insertions(+)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index cb4f04367b0..6d67eaa639f 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1,3 +1,4 @@
 DIST syncthing-0.14.28.tar.gz 4616581 SHA256 
ef0a9916f82cf99e31deb5ae75127b8440abcb3b293c30c0c72d3a4ffb3d3d20 SHA512 
0163d894080f7591536e78f7c50a5faf3ee63e62517c4c6989c084b8c7f6406bc221f1e4bdb3831cf1a93292d942942efa240bbe7592ec7c4436e1a6b7f6121b
 WHIRLPOOL 
d603dcf2fe2d8f82ffd0a9047a44ca9f5baa710e5e1212e9b8f0648bca5b13b199fcca9d9b7b0e978788bd9e59718fb3680e1c64a17b37428dfc2e91954238f8
 DIST syncthing-0.14.30.tar.gz 4616400 SHA256 
e3f03ad6421e8832ea1b0f3363490e2eefb241e037016e5c87e72c20a8995a57 SHA512 
fd2745595657f27f1ad157b685374b8671694ff9ab47a94e9c613aa1662146db78c31d93abf35b8c336948affb3dd2e3d54184b41996bfab9db204f380a6a3f0
 WHIRLPOOL 
db0d0099a641b13b8bc1e27d576a0636b6e63c28308ebaa1e52bfec43103897538ac3c09f263e34e6598438ff5f9d6e47459d0460d34939df7570fe70865811c
 DIST syncthing-0.14.32.tar.gz 6943444 SHA256 
d5b5d5bcb1b13f47d7889d9dbe7e13fed6080750fb4a93241a7fb7cf6324a463 SHA512 
1db8939c0d7b5d6d1d21ed32a19bc8bc5832407a04546af88e36f8ad82113cf73909789531a2d39b670eebbfc799cdd9ac81bc1e1d42ba4702341f98b875b786
 WHIRLPOOL 
1e2ece603568f4deb5373bfa2ecc0bc115b12856be8520b66bbc122ed9c4ead7093f85a1346204622e0c43a9f9704ab5c99eb0fe705912ace5fddfb3a4182208
+DIST syncthing-0.14.35.tar.gz 8235883 SHA256 
58509294a150d137fbd005b5629d2859cce661d25e8063505813c4e7faa62fae SHA512 
2a3de76e7118be6e91b8bc6bc69b10e250755836b378fa762e0feaed280bb2206d2e4552f09fd230d51e246633108fd8cff343ac355742ebb1bd06c2145fe086
 WHIRLPOOL 
bdc971896378fe04576273cab23432f3dfdd96f77d464c0ea0bc8143771a40a15520d20ce2e76ccd790e78c04421f92e31ce1af04f66760a4f101b8b67b6c852

diff --git a/net-p2p/syncthing/syncthing-0.14.35.ebuild 
b/net-p2p/syncthing/syncthing-0.14.35.ebuild
new file mode 100644
index 000..27a867b3aba
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-0.14.35.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="github.com/${PN}/${PN}"
+
+inherit golang-vcs-snapshot systemd user versionator
+
+DESCRIPTION="Open Source Continuous File Synchronization"
+HOMEPAGE="https://syncthing.net;
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~arm"
+IUSE="selinux tools"
+
+RDEPEND="selinux? ( sec-policy/selinux-syncthing )"
+
+DOCS=( README.md AUTHORS CONTRIBUTING.md )
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+
+   if use tools ; then
+   # separate user for the relay server
+   enewgroup strelaysrv
+   enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
+   # and his home folder
+   keepdir /var/lib/strelaysrv
+   fowners strelaysrv:strelaysrv /var/lib/strelaysrv
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i \
+   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
+   
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
+   || die
+}
+
+src_compile() {
+   export GOPATH="${S}:$(get_golibdir_gopath)"
+   cd src/${EGO_PN} || die
+   go run build.go -version "v${PV}" -no-upgrade install \
+   $(usex tools "all" "") || die "build failed"
+}
+
+src_test() {
+   cd src/${EGO_PN} || die
+   go run build.go test || die "test failed"
+}
+
+src_install() {
+   pushd src/${EGO_PN} >& /dev/null || die
+   doman man/*.[157]
+   einstalldocs
+
+   dobin bin/syncthing
+   if use tools ; then
+   exeinto /usr/libexec/syncthing
+   local exe
+   for exe in bin/* ; do
+   [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
+   done
+   fi
+   popd >& /dev/null || die
+
+   # openrc and systemd service files
+   systemd_dounit 
src/${EGO_PN}/etc/linux-systemd/system/${PN}{@,-resume}.service
+   systemd_douserunit src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
+   newconfd "${FILESDIR}/${PN}.confd" ${PN}
+   newinitd "${FILESDIR}/${PN}.initd" ${PN}
+
+   keepdir /var/{lib,log}/${PN}
+ 

[gentoo-commits] repo/gentoo:master commit in: net-p2p/syncthing/

2017-08-09 Thread Marek Szuba
commit: 62bc5fe1546ef6cd315c1f064ec81f67b82e6ae1
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Aug  9 15:09:06 2017 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Aug  9 15:10:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62bc5fe1

net-p2p/syncthing: remove versions vulnerable to the symlink attack

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-p2p/syncthing/Manifest |   3 -
 net-p2p/syncthing/syncthing-0.14.28.ebuild | 123 -
 net-p2p/syncthing/syncthing-0.14.30.ebuild | 123 -
 net-p2p/syncthing/syncthing-0.14.32.ebuild | 123 -
 4 files changed, 372 deletions(-)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index 6d67eaa639f..320318280fb 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1,4 +1 @@
-DIST syncthing-0.14.28.tar.gz 4616581 SHA256 
ef0a9916f82cf99e31deb5ae75127b8440abcb3b293c30c0c72d3a4ffb3d3d20 SHA512 
0163d894080f7591536e78f7c50a5faf3ee63e62517c4c6989c084b8c7f6406bc221f1e4bdb3831cf1a93292d942942efa240bbe7592ec7c4436e1a6b7f6121b
 WHIRLPOOL 
d603dcf2fe2d8f82ffd0a9047a44ca9f5baa710e5e1212e9b8f0648bca5b13b199fcca9d9b7b0e978788bd9e59718fb3680e1c64a17b37428dfc2e91954238f8
-DIST syncthing-0.14.30.tar.gz 4616400 SHA256 
e3f03ad6421e8832ea1b0f3363490e2eefb241e037016e5c87e72c20a8995a57 SHA512 
fd2745595657f27f1ad157b685374b8671694ff9ab47a94e9c613aa1662146db78c31d93abf35b8c336948affb3dd2e3d54184b41996bfab9db204f380a6a3f0
 WHIRLPOOL 
db0d0099a641b13b8bc1e27d576a0636b6e63c28308ebaa1e52bfec43103897538ac3c09f263e34e6598438ff5f9d6e47459d0460d34939df7570fe70865811c
-DIST syncthing-0.14.32.tar.gz 6943444 SHA256 
d5b5d5bcb1b13f47d7889d9dbe7e13fed6080750fb4a93241a7fb7cf6324a463 SHA512 
1db8939c0d7b5d6d1d21ed32a19bc8bc5832407a04546af88e36f8ad82113cf73909789531a2d39b670eebbfc799cdd9ac81bc1e1d42ba4702341f98b875b786
 WHIRLPOOL 
1e2ece603568f4deb5373bfa2ecc0bc115b12856be8520b66bbc122ed9c4ead7093f85a1346204622e0c43a9f9704ab5c99eb0fe705912ace5fddfb3a4182208
 DIST syncthing-0.14.35.tar.gz 8235883 SHA256 
58509294a150d137fbd005b5629d2859cce661d25e8063505813c4e7faa62fae SHA512 
2a3de76e7118be6e91b8bc6bc69b10e250755836b378fa762e0feaed280bb2206d2e4552f09fd230d51e246633108fd8cff343ac355742ebb1bd06c2145fe086
 WHIRLPOOL 
bdc971896378fe04576273cab23432f3dfdd96f77d464c0ea0bc8143771a40a15520d20ce2e76ccd790e78c04421f92e31ce1af04f66760a4f101b8b67b6c852

diff --git a/net-p2p/syncthing/syncthing-0.14.28.ebuild 
b/net-p2p/syncthing/syncthing-0.14.28.ebuild
deleted file mode 100644
index 27a867b3aba..000
--- a/net-p2p/syncthing/syncthing-0.14.28.ebuild
+++ /dev/null
@@ -1,123 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_PN="github.com/${PN}/${PN}"
-
-inherit golang-vcs-snapshot systemd user versionator
-
-DESCRIPTION="Open Source Continuous File Synchronization"
-HOMEPAGE="https://syncthing.net;
-SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~arm"
-IUSE="selinux tools"
-
-RDEPEND="selinux? ( sec-policy/selinux-syncthing )"
-
-DOCS=( README.md AUTHORS CONTRIBUTING.md )
-
-pkg_setup() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
-
-   if use tools ; then
-   # separate user for the relay server
-   enewgroup strelaysrv
-   enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
-   # and his home folder
-   keepdir /var/lib/strelaysrv
-   fowners strelaysrv:strelaysrv /var/lib/strelaysrv
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i \
-   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
-   
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
-   || die
-}
-
-src_compile() {
-   export GOPATH="${S}:$(get_golibdir_gopath)"
-   cd src/${EGO_PN} || die
-   go run build.go -version "v${PV}" -no-upgrade install \
-   $(usex tools "all" "") || die "build failed"
-}
-
-src_test() {
-   cd src/${EGO_PN} || die
-   go run build.go test || die "test failed"
-}
-
-src_install() {
-   pushd src/${EGO_PN} >& /dev/null || die
-   doman man/*.[157]
-   einstalldocs
-
-   dobin bin/syncthing
-   if use tools ; then
-   exeinto /usr/libexec/syncthing
-   local exe
-   for exe in bin/* ; do
-   [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
-   done
-   fi
-   popd >& /dev/null || die
-
-   # openrc and systemd service files
-   systemd_dounit 
src/${EGO_PN}/etc/linux-systemd/system/${PN}{@,-resume}.service
-   systemd_douserunit src/${EGO_PN}/etc/linux-systemd/user/${PN}.service
-   newconfd "${FILESDIR}/${PN}.confd" ${PN}
-   newinitd 

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

2017-08-09 Thread Manuel Rüger
commit: 4d69dc3cf5d538dbdfbe80affbfa484c6c5bd4c4
Author: Manuel Rüger  gentoo  org>
AuthorDate: Wed Aug  9 14:30:55 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Wed Aug  9 14:31:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d69dc3c

net-analyzer/prometheus: Version bump to 2.0.0_beta0

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 net-analyzer/prometheus/Manifest   |  1 +
 .../prometheus/prometheus-2.0.0_beta0.ebuild   | 59 ++
 2 files changed, 60 insertions(+)

diff --git a/net-analyzer/prometheus/Manifest b/net-analyzer/prometheus/Manifest
index 428e4323256..3ce346c0e6b 100644
--- a/net-analyzer/prometheus/Manifest
+++ b/net-analyzer/prometheus/Manifest
@@ -1 +1,2 @@
 DIST prometheus-1.7.1.tar.gz 5122747 SHA256 
209832310f5bef99faef3beaaa95263612a4d0126ca512c4a4c23a8543d3ccf5 SHA512 
98a42e95978477530082d7549c29f17b133043d7c233ba3c90b183f06a3f24ee578f8fed75cba476d3c93a22abcccfdbccc94488beb8450a02f260d24165ba26
 WHIRLPOOL 
8ab473430752336e09b4a0c38fd1117abe21196478d7f2f7e813c27f07c950cc3525d9e9ba32309711c73a1032f3cff27ddc1582d0c4b6c66fe82d5b58675550
+DIST prometheus-2.0.0_beta0.tar.gz 5475399 SHA256 
7463ff35335ff7fee05018234aa1d100ef78e10f8c549e23675a7552b0429f77 SHA512 
f9da91cbe4e7d5510088e09c8457b08bcfe6a4e0ef781e33a848bbd78045f46042e9a55c4329b71dec4cb11143566de2d077fa34361da3eb66af19f8261baab8
 WHIRLPOOL 
854010b6d9c86688311c992f644cb51c3b0d50523702fc4d82814f92400a141e9557fe367e47aafd2ae2628a73b6533627fab49b1a7f69bbe36081e2c8193f0e

diff --git a/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild 
b/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild
new file mode 100644
index 000..c8412fb071e
--- /dev/null
+++ b/net-analyzer/prometheus/prometheus-2.0.0_beta0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/prometheus/prometheus"
+MY_PV=${PV/_beta/-beta.}
+EGIT_COMMIT="v${MY_PV}"
+PROMETHEUS_COMMIT="2b5d915"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Prometheus monitoring system and time series database"
+HOMEPAGE="https://github.com/prometheus/prometheus;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-util/promu"
+
+PROMETHEUS_HOME="/var/lib/prometheus"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup prometheus
+   enewuser prometheus -1 -1 "${PROMETHEUS_HOME}" prometheus
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/{{.Revision}}/${PROMETHEUS_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   GOPATH="${S}" promu build -v || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin promtool prometheus
+   dodoc -r {documentation,{README,CHANGELOG,CONTRIBUTING}.md}
+   insinto /etc/prometheus
+   doins documentation/examples/prometheus.yml
+   insinto /usr/share/prometheus
+   doins -r console_libraries consoles
+   dosym ../../usr/share/prometheus/console_libraries 
/etc/prometheus/console_libraries
+   dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
+   popd || die
+
+   newinitd "${FILESDIR}"/prometheus.initd prometheus
+   newconfd "${FILESDIR}"/prometheus.confd prometheus
+   keepdir /var/log/prometheus /var/lib/prometheus
+   fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
+}



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

2017-08-09 Thread Mike Gilbert
commit: c0643d5f577ef12288c702ac0fa086818b243567
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Aug  9 14:29:56 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Aug  9 14:29:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0643d5f

www-client/chromium: remove old patches

Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

 www-client/chromium/files/chromium-57-gcc4.patch   | 22 --
 www-client/chromium/files/chromium-clang-r1.patch  | 11 ---
 .../chromium/files/chromium-dma-buf-r2.patch   | 20 -
 .../chromium/files/chromium-gn-bootstrap-r10.patch | 18 -
 .../chromium/files/chromium-gn-bootstrap-r11.patch | 27 ---
 .../chromium/files/chromium-gn-bootstrap-r12.patch | 10 ---
 .../chromium/files/chromium-gn-bootstrap-r13.patch | 18 -
 .../chromium/files/chromium-gn-bootstrap-r2.patch  | 13 
 .../chromium/files/chromium-gn-bootstrap-r3.patch  | 13 
 .../chromium/files/chromium-gn-bootstrap-r4.patch  | 21 -
 .../chromium/files/chromium-gn-bootstrap-r5.patch  | 11 ---
 .../chromium/files/chromium-gn-bootstrap-r6.patch  | 18 -
 .../chromium/files/chromium-gn-bootstrap-r7.patch  | 16 
 .../chromium/files/chromium-gn-bootstrap-r9.patch  | 20 -
 .../chromium/files/chromium-system-ffmpeg-r4.patch | 48 
 .../chromium/files/chromium-system-ffmpeg-r5.patch | 66 
 .../files/chromium-system-harfbuzz-r1.patch| 25 --
 .../chromium/files/chromium-system-icu-r2.patch| 89 --
 .../files/chromium-system-libjpeg-r1.patch |  9 ---
 .../chromium/files/chromium-system-libpng-r1.patch | 18 -
 .../files/chromium-system-libwebp-r1.patch |  9 ---
 .../chromium/files/chromium-system-opus-r1.patch   | 20 -
 22 files changed, 522 deletions(-)

diff --git a/www-client/chromium/files/chromium-57-gcc4.patch 
b/www-client/chromium/files/chromium-57-gcc4.patch
deleted file mode 100644
index 044c8f41b9f..000
--- a/www-client/chromium/files/chromium-57-gcc4.patch
+++ /dev/null
@@ -1,22 +0,0 @@
 a/chrome/browser/ui/libgtkui/gtk_ui.cc
-+++ b/chrome/browser/ui/libgtkui/gtk_ui.cc
-@@ -676,7 +676,7 @@
- : nullptr);
-   }
- 
--  return gtk_border;
-+  return std::move(gtk_border);
- }
- 
- void GtkUi::AddWindowButtonOrderObserver(
 a/third_party/webrtc/modules/desktop_capture/screen_capturer_x11.cc
-+++ b/third_party/webrtc/modules/desktop_capture/screen_capturer_x11.cc
-@@ -412,7 +412,7 @@ std::unique_ptr 
DesktopCapturer::CreateRawScreenCapturer(
- return nullptr;
-   }
- 
--  return capturer;
-+  return std::move(capturer);
- }
- 
- }  // namespace webrtc

diff --git a/www-client/chromium/files/chromium-clang-r1.patch 
b/www-client/chromium/files/chromium-clang-r1.patch
deleted file mode 100644
index ea593200cf7..000
--- a/www-client/chromium/files/chromium-clang-r1.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/base/containers/flat_set.h.orig  2017-04-28 14:39:24.143751606 +
-+++ b/base/containers/flat_set.h   2017-04-28 14:39:33.815953089 +
-@@ -5,6 +5,8 @@
- #ifndef BASE_CONTAINERS_FLAT_SET_H_
- #define BASE_CONTAINERS_FLAT_SET_H_
- 
-+#include 
-+
- #include "base/containers/flat_tree.h"
- 
- namespace base {

diff --git a/www-client/chromium/files/chromium-dma-buf-r2.patch 
b/www-client/chromium/files/chromium-dma-buf-r2.patch
deleted file mode 100644
index 2de680cf031..000
--- a/www-client/chromium/files/chromium-dma-buf-r2.patch
+++ /dev/null
@@ -1,20 +0,0 @@
 a/ui/gfx/linux/client_native_pixmap_dmabuf.cc.orig 2017-04-28 
10:27:57.890505336 +
-+++ b/ui/gfx/linux/client_native_pixmap_dmabuf.cc  2017-04-28 
10:28:17.726916569 +
-@@ -19,9 +19,6 @@
- #include "base/strings/stringprintf.h"
- #include "base/trace_event/trace_event.h"
- 
--#if LINUX_VERSION_CODE >= KERNEL_VERSION(4, 6, 0)
--#include 
--#else
- #include 
- 
- struct dma_buf_sync {
-@@ -36,7 +33,6 @@
- 
- #define DMA_BUF_BASE 'b'
- #define DMA_BUF_IOCTL_SYNC _IOW(DMA_BUF_BASE, 0, struct dma_buf_sync)
--#endif
- 
- namespace gfx {
- 

diff --git a/www-client/chromium/files/chromium-gn-bootstrap-r10.patch 
b/www-client/chromium/files/chromium-gn-bootstrap-r10.patch
deleted file mode 100644
index f27fe374eb4..000
--- a/www-client/chromium/files/chromium-gn-bootstrap-r10.patch
+++ /dev/null
@@ -1,18 +0,0 @@
 a/tools/gn/bootstrap/bootstrap.py
-+++ b/tools/gn/bootstrap/bootstrap.py
-@@ -447,6 +447,7 @@ def write_gn_ninja(path, root_gen_dir, options):
-   'base/metrics/field_trial_param_associator.cc',
-   'base/metrics/histogram.cc',
-   'base/metrics/histogram_base.cc',
-+  'base/metrics/histogram_functions.cc',
-   'base/metrics/histogram_samples.cc',
-   'base/metrics/metrics_hashes.cc',
-   'base/metrics/persistent_histogram_allocator.cc',
-@@ -509,6 +510,7 @@ def write_gn_ninja(path, root_gen_dir, options):
-   'base/third_party/icu/icu_utf.cc',
-   

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

2017-08-09 Thread Mike Gilbert
commit: 39e14977ef8f339b42162077bcdcee01f4bac3ad
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Aug  9 14:26:27 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Aug  9 14:26:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39e14977

www-client/chromium: require GCC 5

Bug: https://bugs.gentoo.org/627356
Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

 www-client/chromium/chromium-60.0.3112.78.ebuild | 6 +++---
 www-client/chromium/chromium-61.0.3163.31.ebuild | 6 +++---
 www-client/chromium/chromium-62.0.3175.4.ebuild  | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/www-client/chromium/chromium-60.0.3112.78.ebuild 
b/www-client/chromium/chromium-60.0.3112.78.ebuild
index 864ef2b89b6..b833fa977df 100644
--- a/www-client/chromium/chromium-60.0.3112.78.ebuild
+++ b/www-client/chromium/chromium-60.0.3112.78.ebuild
@@ -147,9 +147,9 @@ pre_build_checks() {
# bugs: #601654
die "At least clang 3.9.1 is required"
fi
-   if tc-is-gcc && ! version_is_at_least 4.8 "$(gcc-version)"; then
-   # bugs: #535730, #525374, #518668, #600288
-   die "At least gcc 4.8 is required"
+   if tc-is-gcc && ! version_is_at_least 5.0 "$(gcc-version)"; then
+   # bugs: #535730, #525374, #518668, #600288, #627356
+   die "At least gcc 5.0 is required"
fi
fi
 

diff --git a/www-client/chromium/chromium-61.0.3163.31.ebuild 
b/www-client/chromium/chromium-61.0.3163.31.ebuild
index c55fd86c15d..6d7c9fefa05 100644
--- a/www-client/chromium/chromium-61.0.3163.31.ebuild
+++ b/www-client/chromium/chromium-61.0.3163.31.ebuild
@@ -156,9 +156,9 @@ pre_build_checks() {
# bugs: #601654
die "At least clang 3.9.1 is required"
fi
-   if tc-is-gcc && ! version_is_at_least 4.8 "$(gcc-version)"; then
-   # bugs: #535730, #525374, #518668, #600288
-   die "At least gcc 4.8 is required"
+   if tc-is-gcc && ! version_is_at_least 5.0 "$(gcc-version)"; then
+   # bugs: #535730, #525374, #518668, #600288, #627356
+   die "At least gcc 5.0 is required"
fi
fi
 

diff --git a/www-client/chromium/chromium-62.0.3175.4.ebuild 
b/www-client/chromium/chromium-62.0.3175.4.ebuild
index 5b77e3865b5..d4307de5d7a 100644
--- a/www-client/chromium/chromium-62.0.3175.4.ebuild
+++ b/www-client/chromium/chromium-62.0.3175.4.ebuild
@@ -145,9 +145,9 @@ pre_build_checks() {
# bugs: #601654
die "At least clang 3.9.1 is required"
fi
-   if tc-is-gcc && ! version_is_at_least 4.8 "$(gcc-version)"; then
-   # bugs: #535730, #525374, #518668, #600288
-   die "At least gcc 4.8 is required"
+   if tc-is-gcc && ! version_is_at_least 5.0 "$(gcc-version)"; then
+   # bugs: #535730, #525374, #518668, #600288, #627356
+   die "At least gcc 5.0 is required"
fi
fi
 



[gentoo-commits] repo/gentoo:master commit in: net-nntp/sabnzbd/, net-nntp/sabnzbd/files/patches/

2017-08-09 Thread Justin Bronder
commit: 6afc5aa840f0b9d83d484b4a66242f14b66488cf
Author: Justin Bronder  gentoo  org>
AuthorDate: Wed Aug  9 14:24:13 2017 +
Commit: Justin Bronder  gentoo  org>
CommitDate: Wed Aug  9 14:24:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6afc5aa8

net-nntp/sabnzbd: bump 2.1.0

Fixes #621540

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 net-nntp/sabnzbd/Manifest  |  2 +-
 .../files/patches/0001-use-system-configobj.patch  |  6 ++--
 .../files/patches/0002-use-system-feedparser.patch |  6 ++--
 .../sabnzbd/files/patches/0003-use-gntp-1.0.patch  |  8 ++---
 .../0004-cfg-disable-NtfOSD-by-default.patch   | 25 
 .../0004-cfg-disable-growl-by-default.patch| 34 --
 .../{sabnzbd-2.0.1.ebuild => sabnzbd-2.1.0.ebuild} |  0
 7 files changed, 36 insertions(+), 45 deletions(-)

diff --git a/net-nntp/sabnzbd/Manifest b/net-nntp/sabnzbd/Manifest
index 4487dcf6c42..2310c66af25 100644
--- a/net-nntp/sabnzbd/Manifest
+++ b/net-nntp/sabnzbd/Manifest
@@ -1 +1 @@
-DIST SABnzbd-2.0.1-src.tar.gz 2715648 SHA256 
62619aab1c741e5d9088bfa177418da2961b82e58f93a763154514fb9d94880f SHA512 
d23d5848fc69d1e2f9ddce266af3dabc3e6fb746177fdc87cf376e2fda5ff17c60caf65af74440a5dafb23435a32c7061da92e82e2608a750a7102aa802fe748
 WHIRLPOOL 
2a93830067e45b4862aa13d81de9e61802f52dc230a9d578c5af0796ae943f05ea3ab00a0249bd9681010c4ab7fb95e06b08077607cbba23ce306c8bdb09979c
+DIST SABnzbd-2.1.0-src.tar.gz 2683475 SHA256 
bad49cc66381448e472280e143fbdd096788c51a9aada8317f12817ce7a855b6 SHA512 
1c52b3b15de6493ed956b40a02d9c87fdd8fb96fdc587cf694f61f04f50c7f76de936dd171045a6ae5d82f6e4df68cd07bd04d149b8a1e5c9c4ba587a373327f
 WHIRLPOOL 
c27b5ca8541f7d56a499b3467e02d734cff9a6511651f5bc7893ced77cc9238dde10a1ba33340b3a1635cf63203b6ed3a859d91396dd800f8424b56129f52d92

diff --git a/net-nntp/sabnzbd/files/patches/0001-use-system-configobj.patch 
b/net-nntp/sabnzbd/files/patches/0001-use-system-configobj.patch
index bca7f1eb2ef..7da07926ca2 100644
--- a/net-nntp/sabnzbd/files/patches/0001-use-system-configobj.patch
+++ b/net-nntp/sabnzbd/files/patches/0001-use-system-configobj.patch
@@ -1,7 +1,7 @@
-From 55328c07986010fd7c91c7da42bca136fc4cd2e9 Mon Sep 17 00:00:00 2001
+From c12601b509ab66ac1b076679fe69fe7698455fb1 Mon Sep 17 00:00:00 2001
 From: Justin Bronder 
 Date: Mon, 13 Feb 2017 18:20:39 -0500
-Subject: [PATCH 1/5] use system configobj
+Subject: [PATCH 1/4] use system configobj
 
 ---
  sabnzbd/config.py | 3 ++-
@@ -24,5 +24,5 @@ index 93dd9bb..aab1648 100644
  SAVE_CONFIG_LOCK = threading.Lock()
  
 -- 
-2.10.2
+2.13.0
 

diff --git a/net-nntp/sabnzbd/files/patches/0002-use-system-feedparser.patch 
b/net-nntp/sabnzbd/files/patches/0002-use-system-feedparser.patch
index 790e86f3c55..cb9d9310576 100644
--- a/net-nntp/sabnzbd/files/patches/0002-use-system-feedparser.patch
+++ b/net-nntp/sabnzbd/files/patches/0002-use-system-feedparser.patch
@@ -1,7 +1,7 @@
-From 6a28d8ba51e902e9d49ad6c18fa2de6511908119 Mon Sep 17 00:00:00 2001
+From 7095a430201d0a9ec28e2c8f7e05f76eea59431e Mon Sep 17 00:00:00 2001
 From: Justin Bronder 
 Date: Mon, 13 Feb 2017 18:21:28 -0500
-Subject: [PATCH 2/5] use system feedparser
+Subject: [PATCH 2/4] use system feedparser
 
 ---
  sabnzbd/rss.py | 4 ++--
@@ -30,5 +30,5 @@ index 9987e91..8ee1552 100644
  
  
 -- 
-2.10.2
+2.13.0
 

diff --git a/net-nntp/sabnzbd/files/patches/0003-use-gntp-1.0.patch 
b/net-nntp/sabnzbd/files/patches/0003-use-gntp-1.0.patch
index d4d97fe208e..da87c01a6bd 100644
--- a/net-nntp/sabnzbd/files/patches/0003-use-gntp-1.0.patch
+++ b/net-nntp/sabnzbd/files/patches/0003-use-gntp-1.0.patch
@@ -1,14 +1,14 @@
-From 821a02104149aa65a6581730457eddbe082153cc Mon Sep 17 00:00:00 2001
+From 1530dc98302cd8a57cf8c3a4616341a7f2c08e50 Mon Sep 17 00:00:00 2001
 From: Justin Bronder 
 Date: Mon, 13 Feb 2017 18:23:46 -0500
-Subject: [PATCH 3/5] use >=gntp-1.0
+Subject: [PATCH 3/4] use >=gntp-1.0
 
 ---
  sabnzbd/notifier.py | 2 +-
  1 file changed, 1 insertion(+), 1 deletion(-)
 
 diff --git a/sabnzbd/notifier.py b/sabnzbd/notifier.py
-index f99083f..581eda0 100644
+index 38d0678..4742b3d 100644
 --- a/sabnzbd/notifier.py
 +++ b/sabnzbd/notifier.py
 @@ -39,7 +39,7 @@ from sabnzbd.constants import NOTIFY_KEYS
@@ -21,5 +21,5 @@ index f99083f..581eda0 100644
  try:
  import Growl
 -- 
-2.10.2
+2.13.0
 

diff --git 
a/net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch 
b/net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch
new file mode 100644
index 000..25856801af7
--- /dev/null
+++ b/net-nntp/sabnzbd/files/patches/0004-cfg-disable-NtfOSD-by-default.patch
@@ -0,0 +1,25 @@
+From 31eec0d37bcb962afb1b0f0974411dae728dcd9f Mon Sep 17 00:00:00 2001
+From: Justin Bronder 
+Date: Sat, 5 Aug 2017 17:38:03 -0400
+Subject: [PATCH 4/4] cfg:  disable NtfOSD by default
+
+---
+ sabnzbd/cfg.py | 

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

2017-08-09 Thread Matt Thode
commit: 66775a78b4e3ac11ab12be06bba206f7122ff8d1
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  9 14:09:16 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  9 14:09:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66775a78

dev-ruby/puppetdb-termini: 5.0.1 stable amd64 and x86

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 dev-ruby/puppetdb-termini/puppetdb-termini-5.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-5.0.1.ebuild 
b/dev-ruby/puppetdb-termini/puppetdb-termini-5.0.1.ebuild
index 52fb80cef4d..d55f5a81cf0 100644
--- a/dev-ruby/puppetdb-termini/puppetdb-termini-5.0.1.ebuild
+++ b/dev-ruby/puppetdb-termini/puppetdb-termini-5.0.1.ebuild
@@ -15,7 +15,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""
 # will need the same keywords as puppet
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 
 RDEPEND+=""
 DEPEND+=""



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

2017-08-09 Thread Matt Thode
commit: e8b083c81e9fab7d9e2a26f9fd8dd4e83ff4f564
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  9 14:15:30 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  9 14:15:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8b083c8

app-admin/puppetserver: 5.0.0-r1 stable with cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-admin/puppetserver/Manifest|   2 -
 app-admin/puppetserver/puppetserver-2.3.2.ebuild   | 106 -
 app-admin/puppetserver/puppetserver-2.4.0.ebuild   | 106 -
 .../puppetserver/puppetserver-5.0.0-r1.ebuild  |   2 +-
 4 files changed, 1 insertion(+), 215 deletions(-)

diff --git a/app-admin/puppetserver/Manifest b/app-admin/puppetserver/Manifest
index 55700fa8244..dfb6d1f74d4 100644
--- a/app-admin/puppetserver/Manifest
+++ b/app-admin/puppetserver/Manifest
@@ -1,4 +1,2 @@
-DIST puppetserver-2.3.2.tar.gz 33673099 SHA256 
81e92875c07f73e636143405804f1214f31f0f840d521f03289d93bd7b2a0899 SHA512 
3ab750128bd11d1e3d9815a1c9907fc81b673281ec21def56318557c134635bca0418ed445d090da6257da9dd64e65a9c2b9e82257868d5a895459c7458cc731
 WHIRLPOOL 
55b679e1eed246ad10bea4f973ca51f65b50b2bf112a6d90d8bda600a1d0e4c09abf74756851a4844cf68705d1b94b9f80f688f1523813d9fe14fbc4424d14e0
-DIST puppetserver-2.4.0.tar.gz 33822659 SHA256 
81d574f7483760bd70cafc079486fe14d243137612f0c130069d94ba7d4fded4 SHA512 
c9afab58bb2f432874d302cb63fb213ead561e2bcecc44f776be49dc09eb86deda3019eae1bddb7369bb7bdc1a3d82f47f6053d526b2b28b189358a2bdded852
 WHIRLPOOL 
079186ecd239a1be1dde847b23a5fe1bc4dedc543b510f2197cd776bc59f943166d3f403727e1cc0ac0232a8519a36944cb4e6ec6bb6bfdc0e822405c4b7fd96
 DIST puppetserver-2.7.1.tar.gz 33989388 SHA256 
9e2ad86fedb719e824d42055383d4f66c621e21c4c285e70b5c1dbc158c0 SHA512 
91fd1ee7bf9726e3d2fca9a81227756076b1945b3ad6fd63bf5be85957cdda81601cd707af2533c53fe182fe6945ec48c75b0f7cfef5a64e81643adf633df778
 WHIRLPOOL 
3661d09f04e85db94320acf6afc842557bde66d969a7e3164edcc9f74e4f1f8a5849b7a766fcf98339d47652d6ae4cda1d766e5a09e5a54d062b27306863aa1d
 DIST puppetserver-5.0.0.tar.gz 66380485 SHA256 
b1b62c31d31a69cf1912d6b785f53cbff219a98e0e7300b7f50114694b06ccbf SHA512 
1dd7b332871abf12981a7ef33ee92a813275c86ca0cd72a24c3853679c3e93aaf264b76bf4108bf62c04021889e0b7ee0bb46963bd1f3df1f8e67c48e41698e8
 WHIRLPOOL 
89d15509f3afc96ccdae5370346c101dc48daa68dddbfc98b51151d0e706945858b4485d7358710223c43760f317b5aa6a27b247db3fa02d80077694b0ee4a9c

diff --git a/app-admin/puppetserver/puppetserver-2.3.2.ebuild 
b/app-admin/puppetserver/puppetserver-2.3.2.ebuild
deleted file mode 100644
index cede8aa827d..000
--- a/app-admin/puppetserver/puppetserver-2.3.2.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib systemd user
-
-DESCRIPTION="Puppet Server is the next-generation application for managing 
Puppet agents."
-HOMEPAGE="http://docs.puppetlabs.com/puppetserver/;
-SRC_URI="https://downloads.puppetlabs.com/puppet/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="puppetdb"
-# will need the same keywords as puppet
-KEYWORDS="amd64 x86"
-
-RDEPEND+="
-   >=virtual/jdk-1.7.0
-   app-admin/puppet-agent[puppetdb?]"
-DEPEND+=""
-
-pkg_setup() {
-   enewgroup puppet
-   enewuser puppet -1 -1 /opt/puppetlabs/server/data/puppetserver "puppet"
-}
-
-src_prepare() {
-   sed -i 
's/sysconfig\/puppetserver/systemd\/system\/puppetserver\.service\.d\/gentoo\.conf/g'
 ext/redhat/puppetserver.service || die
-   sed -i 
's/sysconfig\/puppetserver/systemd\/system\/puppetserver\.service\.d\/gentoo\.conf/g'
 ext/bin/puppetserver || die
-   sed -i 
's/sysconfig\/puppetserver/systemd\/system\/puppetserver\.service\.d\/gentoo\.conf/g'
 install.sh || die
-   sed -i 's/var\/run/run/g' ext/config/conf.d/puppetserver.conf || die
-   sed -i 's/var\/run/run/g' ext/redhat/puppetserver.service || die
-   sed -i 's/var\/run/run/g' install.sh || die
-}
-
-src_compile() {
-   einfo "not compiling"
-}
-
-src_install() {
-   insinto /opt/puppetlabs/server/apps/puppetserver
-   insopts -m0774
-   doins ext/ezbake-functions.sh
-   insopts -m0644
-   doins ext/ezbake.manifest
-   doins puppet-server-release.jar
-   insinto /etc/puppetlabs/puppetserver
-   doins ext/config/logback.xml
-   doins ext/config/bootstrap.cfg
-   doins ext/config/request-logging.xml
-   insinto /etc/puppetlabs/puppetserver/conf.d
-   doins ext/config/conf.d/puppetserver.conf
-   doins ext/config/conf.d/auth.conf
-   doins ext/config/conf.d/global.conf
-   doins ext/config/conf.d/web-routes.conf
-   doins ext/config/conf.d/webserver.conf
-   insopts -m0755
-   insinto /opt/puppetlabs/server/apps/puppetserver/scripts
-   doins install.sh
-   insinto 

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

2017-08-09 Thread Matt Thode
commit: 96b1ca2a8d93406e13d2c7d8592b3504d9d64ec0
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  9 14:11:15 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  9 14:11:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96b1ca2a

app-admin/puppet-agent: cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-admin/puppet-agent/Manifest|   6 --
 app-admin/puppet-agent/puppet-agent-1.10.1.ebuild  | 111 -
 app-admin/puppet-agent/puppet-agent-1.10.4.ebuild  | 111 -
 .../puppet-agent/puppet-agent-5.0.0-r1.ebuild  | 105 ---
 4 files changed, 333 deletions(-)

diff --git a/app-admin/puppet-agent/Manifest b/app-admin/puppet-agent/Manifest
index fa67c17a5bf..38e4ad46288 100644
--- a/app-admin/puppet-agent/Manifest
+++ b/app-admin/puppet-agent/Manifest
@@ -1,10 +1,4 @@
-DIST puppet-agent_1.10.1-1xenial_amd64.deb 16276180 SHA256 
e0dc22258c2f23302ed2f1f5dd024d9e780a7d3dc49646c24afd2560eb45a9e7 SHA512 
308504915621c4ae28780e32877e672067a13f9bd6b5e2dac35bdb4ab62596099eaddd8da371cc97edb0ff15419d7f2fceda7aebd6e524198cc7d3ddfe3f15db
 WHIRLPOOL 
a40dc8a531af746c504c9fc0eabded6c8f06550d9b767a4c40e799aa75ddffc9464dca768b8544def89344ec4a9331e1f315e3d318668747b0c46b6415477a89
-DIST puppet-agent_1.10.1-1xenial_i386.deb 16205078 SHA256 
22cdd5e41c82e63ae038f4c96ed8f19218f3eda600f1f6149eca9b1e7b60a560 SHA512 
be310ae8db1bf1670b480a382866feb2fc247e69f0a4c26aac2b8f67f1b43984b581809ccfc1e0182fe71895aca8dadf20f6ff7b99506e84b787a62555e547c3
 WHIRLPOOL 
50563a4a85200e675d408e8a5618763821e7bf408f65172dadcf1b33ba3f4b9930bfaece3a21d744a8df513f9b91cce1f9ed45d770b1e9601e0d84642755e3b7
-DIST puppet-agent_1.10.4-1xenial_amd64.deb 16157840 SHA256 
4e6ec3496e9d30b06b2064f066465ae268765760c0251390292e1fe2c0b5120e SHA512 
25c1be6ebfdd2b2c9f8d10347c681af1cb7265b6d95f7e573f31c4b580bf5df046945cdf9d87841d792233b7227db0c46ae348bf6e6ff18b44f6f746794a3627
 WHIRLPOOL 
7fd01b43f627647960ee588eb20a8a8d35223e711d295f83a283d13d896bb93c251f51a20f082bdcb8830f4508ba28cdf7c0cd4d8e73e3f3c5cd15fd8ac8d071
-DIST puppet-agent_1.10.4-1xenial_i386.deb 16053584 SHA256 
ef42df8facaffb47bd926842886b988276111b67a887619873d146c0dee8f55c SHA512 
b2e519b2a24f40a8d099b2fa8690a706d9105693affad70e6f38c3b4cc3539044bc805462c45b828147349bfbdc04859e8563fca2588e3fb538de3798df8f262
 WHIRLPOOL 
51e5faed153d8aa8ee4b1acadc66f8be5e60534faad28cdf37504e91bdbd60441859cb00e2a8746c96c22cd88de3c58c8e188b2abc699758e0c3a02f01d480e8
 DIST puppet-agent_1.10.5-1xenial_amd64.deb 16457578 SHA256 
70bdc6be278a5b9734054063379bbf09627e2446af59a9a41cb655bda94c9460 SHA512 
4c527a8dd69a2de24ed374024b225f98b481beed3a829649a0db34de9f2f846442a84a4ff5bdb9c4cdda3540f4139c647510504baa7326140cb86d47d2117281
 WHIRLPOOL 
e759d0df31d741556c7e0b42606dee441291bbf3fc7fbf673685449eb9022332ff5b842529177d0d73ebdcfc772af303f71b45a039c0e69e7ca8eae8a2553a97
 DIST puppet-agent_1.10.5-1xenial_i386.deb 16130300 SHA256 
064867c3e9a9e4ab0ffdee9a9ae1a4a1c651194662290e05d3fd936f8c092787 SHA512 
0780edf969ca97a00a7720fa2573efba7298be887acbad5318cbb5b9914bd67adc31c305aa44f879d667c2e56419b3fa85fdee10e00386edb75dede673c4cbc4
 WHIRLPOOL 
7ee4d69748ed80f7693ae28b20a8a90699e74016dcbf8626f90b443ecc299546760d878bcdf1be2d08003f54c381cab6f1fd2673de5ca191842103a6ebdc9ca3
-DIST puppet-agent_5.0.0-1xenial_amd64.deb 15120014 SHA256 
b2983d7a01c056c306e5a5534a9059515b68ff5f72f05dab8a3751fee4276ce4 SHA512 
b1255a8db15e6c922d7a102ad3541c496c4fac1cc484e763c6083bb09cbb93db5abf185ea0a39d13d6bee1b18ba53803691d024dbaa64431cda5e9517f3c3c6a
 WHIRLPOOL 
6c36343e5ee50941bab714d0ea8d7b7e7236c78c7f51ede2672b9fe7c883a897fe303d063dce37e411f9b4e89222f7affb38579f72b31ae0d2aa0e2c102be639
-DIST puppet-agent_5.0.0-1xenial_i386.deb 15619584 SHA256 
820367b49827855f19d3094d156184c8da2958e00e7dda4a3da37bbac7696cf5 SHA512 
9264b1143189c620cbf9dc7ff0b67939427c732c6bf27941a214066dcf88ed6570641a122f243774d01524607361129a777e50fa7b97addf15e9966d7701dee2
 WHIRLPOOL 
1cafcce45fb1072b8c4ba49192c0bd8da7a7cf60542530626468e12bb11f09fc7568b761403d1f03725c368e73209c0be00c07e5a5a007e9d653ef2e7cd32c41
 DIST puppet-agent_5.0.1-1xenial_amd64.deb 15171814 SHA256 
44b67741a276256cbee8dfad72053d6be9a9b1e4aeea43cb80413d569129a2c0 SHA512 
0dc388b2f561b2ddd7d9064188298de212648c31bbf0e70e15f20de9c851a2efba1f648e38b593c6f0e8f027f7161d50051e1039dda1a1abbaed1b90c8e9a72c
 WHIRLPOOL 
b40844b6b873e4dfa63d90ee0f17a08b7f2d4862c9353d2fbb6590fa6387071f3b414a5063407ab75ee04c1f2f8e14186197cbc7be3bd617ee640f2283b596ab
 DIST puppet-agent_5.0.1-1xenial_i386.deb 15591958 SHA256 
d302ae9543812ef64252f04ef031ae2c46929c6950c8356e5e1d23526e47d24f SHA512 
e7da74e534993c896ce79a27667717adecd8cbcb6002335210c0a29ca5002f58e03528d9da820908a0ed76c9a02f70b3bad7f82cdfa63eebc28aae01f7aaeee5
 WHIRLPOOL 
c8061395adfd91b49e36975a971b36679bc0600e8df56e04902828c41b5389792161df83d00bbec4c4440f97fb1815bd4740635c457c66bc1326c37ea458dbcb

diff --git 

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

2017-08-09 Thread Matt Thode
commit: 8e5832ac0ba3d2c79053c2f723a7e4d172d7f0c7
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  9 14:14:33 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  9 14:14:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e5832ac

app-admin/puppetdb: 5.0.1 stable with cleanup amd64 and x86

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-admin/puppetdb/Manifest |  3 -
 app-admin/puppetdb/puppetdb-4.2.2.ebuild| 90 ---
 app-admin/puppetdb/puppetdb-4.2.4.ebuild| 91 
 app-admin/puppetdb/puppetdb-4.3.0-r1.ebuild | 94 -
 app-admin/puppetdb/puppetdb-5.0.1.ebuild|  2 +-
 5 files changed, 1 insertion(+), 279 deletions(-)

diff --git a/app-admin/puppetdb/Manifest b/app-admin/puppetdb/Manifest
index fa6b2948ec6..32af118639c 100644
--- a/app-admin/puppetdb/Manifest
+++ b/app-admin/puppetdb/Manifest
@@ -1,5 +1,2 @@
-DIST puppetdb-4.2.2.tar.gz 22423081 SHA256 
21f02707e6c7a544e95897ffbb4bfa755cdeed04fbc75220b7e63b353e8f385a SHA512 
fde6a37eef88dd484c7654935ba059be6ac0bc088b60c1689ce61f5fd89c0fa1eb898460b973f422f457fe8eeaed073e19d0d8420b7ac5075164d180dca690da
 WHIRLPOOL 
3b84daffda9e64cd34d07c78c91a5f4bc41a3687fcfb1bcd90d7451520e0081fd37d5d6989d3534cc7c7f9f506f4a47847da3aaa9cfb82d027c67ceabde02208
-DIST puppetdb-4.2.4.tar.gz 22555040 SHA256 
dd0db3c883dc71d6d198a213b628f3993d35e62b900d268791ba8e655c8a430a SHA512 
05856abb3f12b4e3b0b7602a07ef39d43cb459cde9d3b6d047439ebb28cca56512caa6c481833abf27bfc0cb075f2252c0d0fd2646aea2c38e1bc2a4169514ba
 WHIRLPOOL 
37b6bd8dba1fdeb6df1d8a7b2f8541cc4522b0a95369fdeae6f563dbf672a3b8281813f7a169bbbaf2b3e0c0b0e103b5b4834cb1c26d75d6de78879ddc9c10da
-DIST puppetdb-4.3.0.tar.gz 22576514 SHA256 
f0f1cc2d7676043b58b05e78593aec0009316b1ad1eaf9ec7d277d078c1c452d SHA512 
062d7193dbe3f814fdf1c45ec912d4b93136d8b42ff5bdde530bee7ddd988a75f222b0436a042d3b7b927ca1a57210a6bfbe3f0d1721d55ca490cee95dd2d8c9
 WHIRLPOOL 
6694ae3840b0d242a174c8242762451c911ac2caa902895a49d173f360fc03e0d4efcbf3dd85250b607f713f3739b9c13ae8a2935950541b3493f80b8c768e72
 DIST puppetdb-4.4.0.tar.gz 23629723 SHA256 
b9e656846981397a3eed64dff44a7171e6a01b7e8c76c877bd93267d96f50414 SHA512 
2caaa2b39146b42388b03ecd830d386efcc25774dfe9b6e1bd25fd6f1820902364dda7526c2e019657d18371be4afdb84a165d9bec1078a6c3621bc80241a5a2
 WHIRLPOOL 
768e33674c5b62c96c3379cd822f09f519d6e70cd976526ba630c8bfef7c1ee226f0b5bcb6957040355769aecbd1889f25fbc22e8685a6430c077af9f5256639
 DIST puppetdb-5.0.1.tar.gz 24055687 SHA256 
ac75c40c16ecfd14a64c3122811adcceaa2f32c1874e07c763ad0b1ec7338a27 SHA512 
0e08e27a2004b6cf07704a77d931ad30326559e3fd6504c9a839f468c8379c49407214187bf47f960fd3b5cdba9ec162c69e67e7ed7125c4137a77ed076e42f1
 WHIRLPOOL 
fdde4ec40c95cf436da97f78f5c70a0adcc037cea9f20e93b569cec966dfb5d40c78ce5991571ab2495aca1d424341bdbf785eced325b5b9925628eca03c0357

diff --git a/app-admin/puppetdb/puppetdb-4.2.2.ebuild 
b/app-admin/puppetdb/puppetdb-4.2.2.ebuild
deleted file mode 100644
index 798d22ccf49..000
--- a/app-admin/puppetdb/puppetdb-4.2.2.ebuild
+++ /dev/null
@@ -1,90 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit multilib systemd user
-
-DESCRIPTION="PuppetDB collects data generated by Puppet."
-HOMEPAGE="http://docs.puppetlabs.com/puppetdb/;
-SRC_URI="https://downloads.puppetlabs.com/${PN}/${P}.tar.gz;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-# will need the same keywords as puppet
-KEYWORDS="amd64 x86"
-
-RDEPEND+=">=virtual/jdk-1.7.0"
-DEPEND+=""
-
-pkg_setup() {
-   enewgroup puppetdb
-   enewuser puppetdb -1 -1 /opt/puppetlabs/server/data/puppetdb "puppetdb"
-}
-
-src_prepare() {
-   sed -i 's/sysconfig/conf\.d/g' ext/redhat/puppetdb.service || die
-   sed -i 's/sysconfig/conf\.d/g' ext/bin/puppetdb || die
-   sed -i 's/sysconfig/conf\.d/g' install.sh || die
-   sed -i 's/var\/run/run/g' ext/puppetdb.tmpfiles.conf || die
-   sed -i 's/var\/run/run/g' install.sh || die
-}
-
-src_compile() {
-   einfo "not compiling"
-}
-
-src_install() {
-   dodir /opt/puppetlabs/server/data/puppetdb
-   insinto /opt/puppetlabs/server/apps/puppetdb
-   insopts -m0744
-   doins ext/ezbake-functions.sh
-   insopts -m0644
-   doins ext/ezbake.manifest
-   doins puppetdb.jar
-   insinto /etc/puppetlabs/puppetdb
-   doins ext/config/logback.xml
-   doins ext/config/bootstrap.cfg
-   doins ext/config/request-logging.xml
-   insinto /etc/puppetlabs/puppetdb/conf.d
-   doins ext/config/conf.d/jetty.ini
-   doins ext/config/conf.d/repl.ini
-   doins ext/config/conf.d/database.ini
-   doins ext/config/conf.d/config.ini
-   insopts -m0755
-   insinto /opt/puppetlabs/server/apps/puppetdb/scripts
-   doins install.sh
-   insinto /opt/puppetlabs/server/apps/puppetdb/cli/apps
-   doins 

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

2017-08-09 Thread Matt Thode
commit: 54c38aa12c2ab77f11ce18e2c34bc923092d3c9b
Author: Matthew Thode  gentoo  org>
AuthorDate: Wed Aug  9 14:09:55 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Wed Aug  9 14:09:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54c38aa1

app-admin/puppet-agent: 1.10.5 and 5.0.1 stable amd64 and x86

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-admin/puppet-agent/puppet-agent-1.10.5.ebuild | 2 +-
 app-admin/puppet-agent/puppet-agent-5.0.1.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/puppet-agent/puppet-agent-1.10.5.ebuild 
b/app-admin/puppet-agent/puppet-agent-1.10.5.ebuild
index 669892ac4a9..96ad0defaf6 100644
--- a/app-admin/puppet-agent/puppet-agent-1.10.5.ebuild
+++ b/app-admin/puppet-agent/puppet-agent-1.10.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="experimental puppetdb selinux"
 RESTRICT="strip"
 

diff --git a/app-admin/puppet-agent/puppet-agent-5.0.1.ebuild 
b/app-admin/puppet-agent/puppet-agent-5.0.1.ebuild
index 15f80df9e2b..dbc30d052ec 100644
--- a/app-admin/puppet-agent/puppet-agent-5.0.1.ebuild
+++ b/app-admin/puppet-agent/puppet-agent-5.0.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="puppetdb selinux"
 RESTRICT="strip"
 



[gentoo-commits] repo/gentoo:master commit in: app-shells/mksh/

2017-08-09 Thread Patrick Lauer
commit: ca531f615a5a4a2325d195e867fdbaec0f67ead8
Author: Patrick Lauer  gentoo  org>
AuthorDate: Wed Aug  9 14:04:03 2017 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Wed Aug  9 14:05:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca531f61

app-shells/mksh: Bump

Package-Manager: Portage-2.3.6, Repoman-2.3.3

 app-shells/mksh/Manifest   |  1 +
 app-shells/mksh/mksh-56.ebuild | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/app-shells/mksh/Manifest b/app-shells/mksh/Manifest
index 53c47fb3378..41cbb881eb4 100644
--- a/app-shells/mksh/Manifest
+++ b/app-shells/mksh/Manifest
@@ -2,3 +2,4 @@ DIST mksh-R52.tgz 383814 SHA256 
45c2f5cdd2c63a6a831ffae65cea0afd021eabb983537aa2
 DIST mksh-R52b.tgz 385085 SHA256 
93231332a1df0a9c8d4a0d54a519d8b485989a52f7400f0e6451366a0c74b81f SHA512 
d204f0d0e221a8592dc0efdb31b909ce522792708937ab1f3ec0a4b1098f2d5171c06cda029a9f7e63eb087a1acf53210f4701cee5564868c15c6294e6fe322f
 WHIRLPOOL 
687eba22ad7d4de53a57e53a5f851558190ea69daca21ea820a85fbeca00da8fa92e9d8a4dd833498d9adb80482c3394913a61251e9fe2a3cc9e962e74e4
 DIST mksh-R52c.tgz 386254 SHA256 
c6341acea725103f782c14e994d6e12dabaee69e60fe1bc78603a41258d43ba6 SHA512 
f2434f2e165da290cc3f5d78846fb4774115a6e35ef3299d0343b1797b3773921d614396b0da78f8e9a451d6029df9abff503575c5cdcb232e18df7731d18da0
 WHIRLPOOL 
86ed90260285180fc097296ea5ba90015222fc2733570dfd9a056a867dba9661e2083e863632bca3f771699dec60ca65b1e1dc8821b492269bcc095b8bad2f9e
 DIST mksh-R53a.tgz 393344 SHA256 
3bb2453c8cb65abbda24f9bdd8b8371e30a6e1c2f7a0d5474a3efae438639635 SHA512 
634e1cbdba7eaa3b6a7d75d9ade23e6465c8874ef616adb708867f6c46e5722bd2e4818f92350aeb7908872678fb446635224fff990d4dcdd4cf4f666cf2e91c
 WHIRLPOOL 
f35a34fb99df4a1b0e8284b17735bb0788355753114969bee328895afafa087e90d4e3c78eced242fcd44f827212f866c74602acf71f74556177a1f2fb87849b
+DIST mksh-R56.tgz 414865 SHA256 
ad38fa722f64d1ccf6a58cfacd5da9eb866c5d80de022e91bb32a62292949ff4 SHA512 
33839ed112b1b80eb6090f7fd3027d136e5b7c57ff5b3bd16f76f76fe1f39c8c0d49a0b43381ecfd3b20366c5edec515e554535151fe17021ab3dfaa70e84d82
 WHIRLPOOL 
f03625a87d198fb059f38e1770f19a0ab6f38f9fef4818985cb82621a18e787593d4902a884ea8b75307ee3151aa1c8439c963095f32a4feebb109bd8a45d6ad

diff --git a/app-shells/mksh/mksh-56.ebuild b/app-shells/mksh/mksh-56.ebuild
new file mode 100644
index 000..a538d6b1972
--- /dev/null
+++ b/app-shells/mksh/mksh-56.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="MirBSD KSH Shell"
+HOMEPAGE="http://mirbsd.de/mksh;
+SRC_URI="http://www.mirbsd.org/MirOS/dist/mir/mksh/${PN}-R${PV}.tgz;
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE="static"
+DEPEND="static? ( dev-libs/klibc )"
+RDEPEND=""
+S="${WORKDIR}/${PN}"
+
+src_compile() {
+   tc-export CC
+   # we want to build static with klibc
+   if use static ; then
+   unset CC
+   export CC="/usr/bin/klcc"
+   export LDSTATIC="-static"
+   fi
+   export CPPFLAGS="${CPPFLAGS} 
-DMKSH_DEFAULT_PROFILEDIR=\\\"${EPREFIX}/etc\\\""
+   # we can't assume lto existing/enabled, so we add a fallback
+   sh Build.sh -r -c lto || sh Build.sh -r || die
+}
+
+src_install() {
+   exeinto /bin
+   doexe mksh
+   doman mksh.1
+   dodoc dot.mkshrc
+}
+
+src_test() {
+   ./test.sh || die
+}
+
+pkg_postinst() {
+   ebegin "Updating /etc/shells"
+   ( grep -v "^/bin/mksh$" "${ROOT}"etc/shells; echo "/bin/mksh" ) > 
"${T}"/shells
+   mv -f "${T}"/shells "${ROOT}"etc/shells
+   eend $?
+}



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

2017-08-09 Thread Mike Gilbert
commit: 689090f1ec53b7b958a903f6ed01f38b71e1b819
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Aug  9 14:04:25 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Aug  9 14:04:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=689090f1

www-client/chromium: backport build fix

Bug: https://bugs.gentoo.org/626684
Package-Manager: Portage-2.3.6_p23, Repoman-2.3.3_p1

 www-client/chromium/chromium-61.0.3163.31.ebuild  |  1 +
 www-client/chromium/files/chromium-mojo-dep.patch | 54 +++
 2 files changed, 55 insertions(+)

diff --git a/www-client/chromium/chromium-61.0.3163.31.ebuild 
b/www-client/chromium/chromium-61.0.3163.31.ebuild
index 600995b990b..c55fd86c15d 100644
--- a/www-client/chromium/chromium-61.0.3163.31.ebuild
+++ b/www-client/chromium/chromium-61.0.3163.31.ebuild
@@ -146,6 +146,7 @@ PATCHES=(
"${FILESDIR}/${PN}-gcc-r1.patch"
"${FILESDIR}/${PN}-gn-bootstrap-r14.patch"
"${FILESDIR}/${PN}-atk-r1.patch"
+   "${FILESDIR}/${PN}-mojo-dep.patch"
 )
 
 pre_build_checks() {

diff --git a/www-client/chromium/files/chromium-mojo-dep.patch 
b/www-client/chromium/files/chromium-mojo-dep.patch
new file mode 100644
index 000..bf618540d17
--- /dev/null
+++ b/www-client/chromium/files/chromium-mojo-dep.patch
@@ -0,0 +1,54 @@
+From f8e2c057ec6123b0a1d08294f41e78c427636b49 Mon Sep 17 00:00:00 2001
+From: Mike Bjorge 
+Date: Mon, 7 Aug 2017 18:41:58 +
+Subject: [PATCH] Add mojo_blink dep from WebKit loader/.
+
+Now that loader has a direct dependency on the generated mojom-blink
+headers (https://chromium-review.googlesource.com/c/577488), the loader/
+target should have a dep on the mojo target that generates the headers,
+otherwise the build may fail depending on build order.
+
+All the other platform/ targets that depend on the mojom-blink headers
+are directly included in the platform target, which has the necessary
+dependency already.
+
+Bug: 746197
+Bug: 750883
+Change-Id: Ife1429ec649605aae3f7920560cec37f3a218154
+Reviewed-on: https://chromium-review.googlesource.com/602869
+Reviewed-by: Yutaka Hirano 
+Reviewed-by: Matt Falkenhagen 
+Commit-Queue: Mike Bjorge 
+Cr-Commit-Position: refs/heads/master@{#492369}
+---
+ third_party/WebKit/Source/platform/loader/BUILD.gn | 1 +
+ third_party/WebKit/public/BUILD.gn | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/third_party/WebKit/Source/platform/loader/BUILD.gn 
b/third_party/WebKit/Source/platform/loader/BUILD.gn
+index d483734b21cf..409befe884a8 100644
+--- a/third_party/WebKit/Source/platform/loader/BUILD.gn
 b/third_party/WebKit/Source/platform/loader/BUILD.gn
+@@ -99,6 +99,7 @@ source_set("loader") {
+ "//components/link_header_util:link_header_util",
+ "//mojo/public/cpp/system:system",
+ "//storage/public/interfaces:interfaces_blink__generator",
++"//third_party/WebKit/public:mojo_bindings_blink",
+   ]
+ 
+   public_deps = [
+diff --git a/third_party/WebKit/public/BUILD.gn 
b/third_party/WebKit/public/BUILD.gn
+index 84ee3ca9136d..cc847663efc6 100644
+--- a/third_party/WebKit/public/BUILD.gn
 b/third_party/WebKit/public/BUILD.gn
+@@ -755,6 +755,7 @@ mojom("mojo_bindings") {
+   visibility_blink = [
+ "//content/common:mojo_bindings_blink",
+ "//third_party/WebKit/Source/platform",
++"//third_party/WebKit/Source/platform/loader",
+   ]
+   sources = [
+ "platform/display_mode.mojom",
+-- 
+2.14.0
+



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

2017-08-09 Thread Amy Liffey
commit: 8634e867df221165f30d7a130b266daafc17b7ca
Author: Amy Liffey  gentoo  org>
AuthorDate: Wed Aug  9 12:45:45 2017 +
Commit: Amy Liffey  gentoo  org>
CommitDate: Wed Aug  9 12:45:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8634e867

app-crypt/gifshuffle: EAPI 6 bump

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 .../{gifshuffle-2.0.ebuild => gifshuffle-2.0-r1.ebuild}| 10 ++
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild 
b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild
similarity index 74%
rename from app-crypt/gifshuffle/gifshuffle-2.0.ebuild
rename to app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild
index 219f1830c34..c2a8cfb2d9d 100644
--- a/app-crypt/gifshuffle/gifshuffle-2.0.ebuild
+++ b/app-crypt/gifshuffle/gifshuffle-2.0-r1.ebuild
@@ -1,6 +1,8 @@
-# Copyright 1999-2009 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+EAPI=6
+
 inherit toolchain-funcs
 
 DESCRIPTION="GIF colourmap steganography"
@@ -15,14 +17,14 @@ IUSE=""
 DEPEND=""
 RDEPEND=""
 
-S="${WORKDIR}"/${PN}
+S="${WORKDIR}/${PN}"
 
 src_compile() {
-   echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c
+   echo $(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die
$(tc-getCC) -o ${PN} ${CFLAGS} ${LDFLAGS} *.c || die "Cannot compile 
${PN}"
 }
 
 src_install() {
-   dobin ${PN} || die "Cannot install ${PN}"
+   dobin ${PN}
dodoc gshuf.txt
 }



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

2017-08-09 Thread Anthony G. Basile
commit: 32f0c98e76c16c47c282ea1d05307da7a4d7fd4c
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Aug  9 09:12:45 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug  9 12:18:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32f0c98e

net-misc/curl: remove unused patch

 net-misc/curl/files/curl-7.52.1-fix-openssl.patch | 36 ---
 1 file changed, 36 deletions(-)

diff --git a/net-misc/curl/files/curl-7.52.1-fix-openssl.patch 
b/net-misc/curl/files/curl-7.52.1-fix-openssl.patch
deleted file mode 100644
index 259f618d46e..000
--- a/net-misc/curl/files/curl-7.52.1-fix-openssl.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-From a7b38c9dc98481e4a5fc37e51a8690337c674dfb Mon Sep 17 00:00:00 2001
-From: Daniel Stenberg 
-Date: Mon, 26 Dec 2016 00:06:33 +0100
-Subject: [PATCH] vtls: s/SSLEAY/OPENSSL
-
-Fixed an old leftover use of the USE_SSLEAY define which would make a
-socket get removed from the applications sockets to monitor when the
-multi_socket API was used, leading to timeouts.
-
-Bug: #1174

- lib/vtls/vtls.c | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/lib/vtls/vtls.c b/lib/vtls/vtls.c
-index b808e1c..707f24b 100644
 a/lib/vtls/vtls.c
-+++ b/lib/vtls/vtls.c
-@@ -484,7 +484,7 @@ void Curl_ssl_close_all(struct Curl_easy *data)
-   curlssl_close_all(data);
- }
- 
--#if defined(USE_SSLEAY) || defined(USE_GNUTLS) || defined(USE_SCHANNEL) || \
-+#if defined(USE_OPENSSL) || defined(USE_GNUTLS) || defined(USE_SCHANNEL) || \
- defined(USE_DARWINSSL) || defined(USE_NSS)
- /* This function is for OpenSSL, GnuTLS, darwinssl, and schannel only. */
- int Curl_ssl_getsock(struct connectdata *conn, curl_socket_t *socks,
-@@ -518,7 +518,7 @@ int Curl_ssl_getsock(struct connectdata *conn,
-   (void)numsocks;
-   return GETSOCK_BLANK;
- }
--/* USE_SSLEAY || USE_GNUTLS || USE_SCHANNEL || USE_DARWINSSL || USE_NSS */
-+/* USE_OPENSSL || USE_GNUTLS || USE_SCHANNEL || USE_DARWINSSL || USE_NSS */
- #endif
- 
- void Curl_ssl_close(struct connectdata *conn, int sockindex)



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

2017-08-09 Thread Anthony G. Basile
commit: d3cbd9d03ed37de94df83f45a4535ce3f7391542
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Aug  9 09:11:30 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug  9 12:18:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3cbd9d0

dev-util/valgrind: remove unused patches

 .../files/valgrind-3.10.1-glibc-2.21.patch |  17 ---
 .../files/valgrind-3.10.1-glibc-2.22.patch |  17 ---
 .../valgrind/files/valgrind-3.10.1-linux-4.patch   |  29 
 .../files/valgrind-3.10.1-non-exec-stack.patch | 148 
 .../files/valgrind-3.11.0-non-exec-stack.patch | 154 -
 .../files/valgrind-3.6.0-local-labels.patch|  24 
 .../valgrind/files/valgrind-3.9.0-glibc-2.19.patch |  37 -
 7 files changed, 426 deletions(-)

diff --git a/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.21.patch 
b/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.21.patch
deleted file mode 100644
index 286e431b0dd..000
--- a/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.21.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -Naur valgrind-3.10.1.orig/configure.ac valgrind-3.10.1/configure.ac
 valgrind-3.10.1.orig/configure.ac  2014-11-25 14:41:13.0 -0500
-+++ valgrind-3.10.1/configure.ac   2015-07-28 22:35:22.315604804 -0400
-@@ -1018,6 +1018,13 @@
-   DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
-   DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
-   ;;
-+ 2.21)
-+  AC_MSG_RESULT(2.21 family)
-+  AC_DEFINE([GLIBC_2_21], 1, [Define to 1 if you're using glibc 2.21.x])
-+  DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
-+  DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
-+  DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
-+  ;;
-  darwin)
-   AC_MSG_RESULT(Darwin)
-   AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])

diff --git a/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.22.patch 
b/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.22.patch
deleted file mode 100644
index aa44aec4a57..000
--- a/dev-util/valgrind/files/valgrind-3.10.1-glibc-2.22.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -Naur valgrind-3.10.1.orig/configure.ac valgrind-3.10.1/configure.ac
 valgrind-3.10.1.orig/configure.ac  2016-04-16 04:24:22.285314910 -0400
-+++ valgrind-3.10.1/configure.ac   2016-04-16 04:39:03.437329726 -0400
-@@ -1032,6 +1032,13 @@
-   DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
-   DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
-   ;;
-+ 2.22)
-+  AC_MSG_RESULT(2.22 family)
-+  AC_DEFINE([GLIBC_2_22], 1, [Define to 1 if you're using glibc 2.22.x])
-+  DEFAULT_SUPP="glibc-2.X.supp ${DEFAULT_SUPP}"
-+  DEFAULT_SUPP="glibc-2.34567-NPTL-helgrind.supp ${DEFAULT_SUPP}"
-+  DEFAULT_SUPP="glibc-2.X-drd.supp ${DEFAULT_SUPP}"
-+  ;;
-  darwin)
-   AC_MSG_RESULT(Darwin)
-   AC_DEFINE([DARWIN_LIBC], 1, [Define to 1 if you're using Darwin])

diff --git a/dev-util/valgrind/files/valgrind-3.10.1-linux-4.patch 
b/dev-util/valgrind/files/valgrind-3.10.1-linux-4.patch
deleted file mode 100644
index 63918c2c1d0..000
--- a/dev-util/valgrind/files/valgrind-3.10.1-linux-4.patch
+++ /dev/null
@@ -1,29 +0,0 @@
-From ecb3746d69820905c076b89e1be7042f52ceaa5f Mon Sep 17 00:00:00 2001
-From: Janne Grunau 
-Date: Thu, 19 Mar 2015 22:44:51 +0100
-Subject: [PATCH 1/1] configure: support linux 4.*
-
-There is nothing special in linux 4.0. Handle it as another 3.* (or
-another 2.6.*) release. Compare changeset 14955 in valgrind's
-subversion repository. Valgrind trunk also drops support for linux 2.4
-but there is no need to do that for realeased software.

- configure.ac | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/configure.ac b/configure.ac
-index 0fd2a41..33c7954 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -303,7 +303,7 @@ case "${host_os}" in
- kernel=`uname -r`
- 
- case "${kernel}" in
-- 2.6.*|3.*) 
-+ 2.6.*|3.*|4.*)
-   AC_MSG_RESULT([2.6.x/3.x family (${kernel})])
-   AC_DEFINE([KERNEL_2_6], 1, [Define to 1 if you're using 
Linux 2.6.x or Linux 3.x])
-   ;;
--- 
-2.3.3
-

diff --git a/dev-util/valgrind/files/valgrind-3.10.1-non-exec-stack.patch 
b/dev-util/valgrind/files/valgrind-3.10.1-non-exec-stack.patch
deleted file mode 100644
index e25de99e790..000
--- a/dev-util/valgrind/files/valgrind-3.10.1-non-exec-stack.patch
+++ /dev/null
@@ -1,148 +0,0 @@
-diff -Naur valgrind-3.10.1.orig/coregrind/Makefile.am 
valgrind-3.10.1/coregrind/Makefile.am
 valgrind-3.10.1.orig/coregrind/Makefile.am 2014-11-25 14:41:19.0 
-0500
-+++ valgrind-3.10.1/coregrind/Makefile.am  2014-11-26 13:36:44.113678744 
-0500
-@@ -333,18 +333,6 @@
-   m_demangle/demangle.c 

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

2017-08-09 Thread Anthony G. Basile
commit: 9ede47e701d02b584543ddf6317a095b47c5a4d2
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Aug  9 09:09:27 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug  9 12:18:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ede47e7

net-libs/mbedtls: remove unused patches

 .../files/mbedtls-2.3.0-include-guards.patch   |  34 ---
 .../files/mbedtls-2.3.0-move-to-header.patch   | 333 -
 net-libs/mbedtls/files/mbedtls-2.3.0-tests.patch   |  23 --
 3 files changed, 390 deletions(-)

diff --git a/net-libs/mbedtls/files/mbedtls-2.3.0-include-guards.patch 
b/net-libs/mbedtls/files/mbedtls-2.3.0-include-guards.patch
deleted file mode 100644
index af12d4b1f4a..000
--- a/net-libs/mbedtls/files/mbedtls-2.3.0-include-guards.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 23e9778684ba734dbfba1445e145b04dd6b59e76 Mon Sep 17 00:00:00 2001
-From: Simon Butcher 
-Date: Wed, 13 Jul 2016 13:31:08 +0100
-Subject: [PATCH] Adds missing conditions for platform time
-
-In platform.c, made the time functions dependent on the configuration
-MBEDTLS_HAVE_TIME to fix a build break where the functions could be
-built but the mbedtls_time_t was not defined.

- library/platform.c | 4 
- 1 file changed, 4 insertions(+)
-
-diff --git a/library/platform.c b/library/platform.c
-index 68ca45d..2591c45 100644
 a/library/platform.c
-+++ b/library/platform.c
-@@ -190,6 +190,8 @@ int mbedtls_platform_set_exit( void (*exit_func)( int 
status ) )
- }
- #endif /* MBEDTLS_PLATFORM_EXIT_ALT */
- 
-+#if defined(MBEDTLS_HAVE_TIME)
-+
- #if defined(MBEDTLS_PLATFORM_TIME_ALT)
- #if !defined(MBEDTLS_PLATFORM_STD_TIME)
- /*
-@@ -213,6 +215,8 @@ int mbedtls_platform_set_time( mbedtls_time_t 
(*time_func)( mbedtls_time_t* time
- }
- #endif /* MBEDTLS_PLATFORM_TIME_ALT */
- 
-+#endif /* MBEDTLS_HAVE_TIME */
-+
- #if defined(MBEDTLS_ENTROPY_NV_SEED)
- #if !defined(MBEDTLS_PLATFORM_NO_STD_FUNCTIONS) && defined(MBEDTLS_FS_IO)
- /* Default implementations for the platform independent seed functions use

diff --git a/net-libs/mbedtls/files/mbedtls-2.3.0-move-to-header.patch 
b/net-libs/mbedtls/files/mbedtls-2.3.0-move-to-header.patch
deleted file mode 100644
index 2c858bb7f82..000
--- a/net-libs/mbedtls/files/mbedtls-2.3.0-move-to-header.patch
+++ /dev/null
@@ -1,333 +0,0 @@
-From b5b6af2663fdb7f57c30494607bade90810f6844 Mon Sep 17 00:00:00 2001
-From: Simon Butcher 
-Date: Wed, 13 Jul 2016 14:46:18 +0100
-Subject: [PATCH] Puts platform time abstraction into its own header
-
-Separates platform time abstraction into it's own header from the
-general platform abstraction as both depend on different build options.
-(MBEDTLS_PLATFORM_C vs MBEDTLS_HAVE_TIME)

- include/mbedtls/platform.h  | 37 ++-
- include/mbedtls/platform_time.h | 81 +
- include/mbedtls/ssl.h   |  2 +-
- library/net.c   |  1 -
- library/ssl_cache.c |  2 -
- library/ssl_ciphersuites.c  |  1 -
- library/ssl_cli.c   |  4 +-
- library/ssl_cookie.c|  2 -
- library/ssl_srv.c   |  4 +-
- library/ssl_ticket.c|  2 -
- library/ssl_tls.c   |  1 -
- library/x509.c  |  7 +++-
- programs/ssl/dtls_client.c  |  1 -
- 13 files changed, 93 insertions(+), 52 deletions(-)
- create mode 100644 include/mbedtls/platform_time.h
-
-diff --git a/include/mbedtls/platform.h b/include/mbedtls/platform.h
-index caf8f25..b1b019e 100644
 a/include/mbedtls/platform.h
-+++ b/include/mbedtls/platform.h
-@@ -29,6 +29,10 @@
- #include MBEDTLS_CONFIG_FILE
- #endif
- 
-+#if defined(MBEDTLS_HAVE_TIME)
-+#include "mbedtls/platform_time.h"
-+#endif
-+
- #ifdef __cplusplus
- extern "C" {
- #endif
-@@ -244,39 +248,6 @@ int mbedtls_platform_set_exit( void (*exit_func)( int 
status ) );
- #endif
- 
- /*
-- * The time_t datatype
-- */
--#if defined(MBEDTLS_PLATFORM_TIME_TYPE_MACRO)
--typedef MBEDTLS_PLATFORM_TIME_TYPE_MACRO mbedtls_time_t;
--#else
--/* For time_t */
--#include 
--typedef time_t mbedtls_time_t;
--#endif /* MBEDTLS_PLATFORM_TIME_TYPE_MACRO */
--
--/*
-- * The function pointers for time
-- */
--#if defined(MBEDTLS_PLATFORM_TIME_ALT)
--extern mbedtls_time_t (*mbedtls_time)( mbedtls_time_t* time );
--
--/**
-- * \brief   Set your own time function pointer
-- *
-- * \param   time_func   the time function implementation
-- *
-- * \return  0
-- */
--int mbedtls_platform_set_time( mbedtls_time_t (*time_func)( mbedtls_time_t* 
time ) );
--#else
--#if defined(MBEDTLS_PLATFORM_TIME_MACRO)
--#define mbedtls_timeMBEDTLS_PLATFORM_TIME_MACRO
--#else
--#define mbedtls_time   time
--#endif /* MBEDTLS_PLATFORM_TIME_MACRO */
--#endif /* MBEDTLS_PLATFORM_TIME_ALT */
--
--/*
-  * The function pointers for reading from and writing a seed file to
-  * Non-Volatile storage 

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

2017-08-09 Thread Anthony G. Basile
commit: 99b4f590c3ec75b1b535671d7ddcffad329561a3
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Aug  9 09:08:50 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug  9 12:18:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99b4f590

net-misc/cgminer: remove unused patch

 .../files/cgminer-4.4.2-system-jansson.patch   | 47 --
 1 file changed, 47 deletions(-)

diff --git a/net-misc/cgminer/files/cgminer-4.4.2-system-jansson.patch 
b/net-misc/cgminer/files/cgminer-4.4.2-system-jansson.patch
deleted file mode 100644
index a54054cb630..000
--- a/net-misc/cgminer/files/cgminer-4.4.2-system-jansson.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-diff -Naur cgminer-4.4.2.orig/compat/Makefile.am 
cgminer-4.4.2/compat/Makefile.am
 cgminer-4.4.2.orig/compat/Makefile.am  2014-07-16 23:01:05.0 
-0400
-+++ cgminer-4.4.2/compat/Makefile.am   2014-07-17 06:55:09.703029301 -0400
-@@ -1,8 +1,5 @@
--
--SUBDIRS   = jansson-2.6
--
- if WANT_USBUTILS
- if WANT_STATIC_LIBUSB
--SUBDIRS += libusb-1.0
-+SUBDIRS = libusb-1.0
- endif
- endif
-diff -Naur cgminer-4.4.2.orig/configure.ac cgminer-4.4.2/configure.ac
 cgminer-4.4.2.orig/configure.ac2014-07-17 00:35:21.0 -0400
-+++ cgminer-4.4.2/configure.ac 2014-07-17 06:55:44.964030906 -0400
-@@ -418,8 +418,7 @@
- 
- AM_CONDITIONAL([WANT_STATIC_LIBUSB], [test x$dlibusb = xno])
- 
--AC_CONFIG_SUBDIRS([compat/jansson-2.6])
--JANSSON_LIBS="compat/jansson-2.6/src/.libs/libjansson.a"
-+JANSSON_LIBS="-ljansson"
- 
- PKG_PROG_PKG_CONFIG()
- 
-diff -Naur cgminer-4.4.2.orig/Makefile.am cgminer-4.4.2/Makefile.am
 cgminer-4.4.2.orig/Makefile.am 2014-07-16 23:01:30.0 -0400
-+++ cgminer-4.4.2/Makefile.am  2014-07-17 06:56:01.140031642 -0400
-@@ -1,8 +1,6 @@
- 
- ACLOCAL_AMFLAGS = -I m4
- 
--JANSSON_CPPFLAGS= -I$(top_builddir)/compat/jansson-2.6/src 
-I$(top_srcdir)/compat/jansson-2.6/src
--
- if WANT_USBUTILS
- USBUTILS_CPPFLAGS = -I$(top_builddir)/compat/libusb-1.0/libusb 
-I$(top_srcdir)/compat/libusb-1.0/libusb
- else
-@@ -18,7 +16,7 @@
- 
- SUBDIRS   = lib compat ccan
- 
--cgminer_CPPFLAGS = $(PTHREAD_FLAGS) -fno-strict-aliasing $(JANSSON_CPPFLAGS) 
$(USBUTILS_CPPFLAGS)
-+cgminer_CPPFLAGS = $(PTHREAD_FLAGS) -fno-strict-aliasing $(USBUTILS_CPPFLAGS)
- 
- bin_PROGRAMS  = cgminer
- 



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

2017-08-09 Thread Anthony G. Basile
commit: 8d99602315f2674c8c5399cc79b927812ac44dc1
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Aug  9 09:15:46 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug  9 12:18:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d996023

www-servers/thttpd: remove unused file

 www-servers/thttpd/files/thttpd.service | 12 
 1 file changed, 12 deletions(-)

diff --git a/www-servers/thttpd/files/thttpd.service 
b/www-servers/thttpd/files/thttpd.service
deleted file mode 100644
index 4e56c0877d7..000
--- a/www-servers/thttpd/files/thttpd.service
+++ /dev/null
@@ -1,12 +0,0 @@
-[Unit]
-Description=Fork of thttpd, a small, fast, multiplexing webserver.
-After=network.target
-
-[Service]
-Type=forking
-PIDFile=/var/run/thttpd.pid
-WorkingDirectory=/var/www/localhost
-ExecStart=/usr/sbin/thttpd -C /etc/thttpd/thttpd.conf
-
-[Install]
-WantedBy=multi-user.target



[gentoo-commits] repo/gentoo:master commit in: sys-libs/uclibc-ng/files/

2017-08-09 Thread Anthony G. Basile
commit: 2428b2cc28820f2c15febdabdf6a0fc67cbc
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Wed Aug  9 09:13:33 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Aug  9 12:18:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2428b2cc

sys-libs/uclibc-ng: remove unused patch

 sys-libs/uclibc-ng/files/uclibc-compat.patch | 12 
 1 file changed, 12 deletions(-)

diff --git a/sys-libs/uclibc-ng/files/uclibc-compat.patch 
b/sys-libs/uclibc-ng/files/uclibc-compat.patch
deleted file mode 100644
index 58277561b74..000
--- a/sys-libs/uclibc-ng/files/uclibc-compat.patch
+++ /dev/null
@@ -1,12 +0,0 @@
-diff -Naur uClibc-ng-1.0.13.orig/ldso/ldso/Makefile.in 
uClibc-ng-1.0.13/ldso/ldso/Makefile.in
 uClibc-ng-1.0.13.orig/ldso/ldso/Makefile.in2016-03-13 
21:48:40.0 +
-+++ uClibc-ng-1.0.13/ldso/ldso/Makefile.in 2016-04-08 13:45:06.837079637 
+
-@@ -76,8 +76,6 @@
- $(ldso:.$(ABI_VERSION)=): | $(top_builddir)lib
- $(ldso:.$(ABI_VERSION)=): $($(UCLIBC_LDSO_NAME)_OUT)/$(UCLIBC_LDSO_NAME)_so.a
-   $(call link.so,$(ldso_FULL_NAME),$(ABI_VERSION))
--  # link for backward compatibility
--  (cd $(top_builddir)lib; ln -sf $(UCLIBC_LDSO_NAME).so.$(ABI_VERSION) 
$(UCLIBC_LDSO_NAME).so.0 )
- 
- $($(UCLIBC_LDSO_NAME)_OUT)/$(UCLIBC_LDSO_NAME)_so.a: $(ldso-y)
-   $(Q)$(RM) $@



  1   2   >