[gentoo-commits] repo/gentoo:master commit in: www-apache/passenger/

2017-06-16 Thread Hans de Graaff
commit: ec1f3b94ed03fcb691c7c438b4a3fc14858cc609
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jun 17 05:38:08 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jun 17 05:38:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1f3b94

www-apache/passenger: add 5.1.5

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 www-apache/passenger/Manifest   |   1 +
 www-apache/passenger/passenger-5.1.5.ebuild | 122 
 2 files changed, 123 insertions(+)

diff --git a/www-apache/passenger/Manifest b/www-apache/passenger/Manifest
index 87b5270d9ed..0321c1ab88d 100644
--- a/www-apache/passenger/Manifest
+++ b/www-apache/passenger/Manifest
@@ -1,2 +1,3 @@
 DIST passenger-5.1.2.tar.gz 5646103 SHA256 
7fb03a54650ef5e508895c9e45bc2d8151f6c4811ea6797e81f017fedddfdbab SHA512 
88a77c749857a8538ea268f793d2708fa29b8891d2c3197577155f81cb66aa04919c25e713d4f00692051ad385eebaa94729cd30baa68edcf3d17c23bae0acdd
 WHIRLPOOL 
8f115162e2a7c43af20cef1d689290c8a523cce10f617500eeb50ab6a226c203a404fc7ce53fd0e21e63276aa359c5d64b685318be36f79ce165ff598bac8766
 DIST passenger-5.1.4.tar.gz 5403636 SHA256 
6e8460143fff88c7ae833b43ff5389c0b0d2654ee38ab1ac62e24a3814416de0 SHA512 
c15df4ff59d21ec57361b5290106455a0e5b0aa1dc2b8442f06749426b81de0986e9826b9ca66f5e4f6536096c1ec201321e5d54200ead1fc2e67f3736ecb52c
 WHIRLPOOL 
9311d5cea73df891b151512e81adf27f1fb98411944b23adedc43c0fa2b4e9fa78a778113e1cfb398aeaea580492b2444bd1a7b9d5d2704e0be514a120bb3ea1
+DIST passenger-5.1.5.tar.gz 5126337 SHA256 
ea4139d2f0d9f7aa6488be966ffbfe602f80764a47b7077892d92324bff5eb47 SHA512 
81a434015f4e4693bb9053449e614c235969d1604a09b7938725b796e9684dbdae4b317e068f03c118a2e8a4dfe80b88f91ef6008241e381978bd95d65d6e535
 WHIRLPOOL 
33481e7fdc280d9ba344b6d2a34778c21ae7b60f9da7264299f5537b848be7f1789835d996048cfa8e7bd23befd209bf2fe28dc865fc0e66bc6e8627e0a66fad

diff --git a/www-apache/passenger/passenger-5.1.5.ebuild 
b/www-apache/passenger/passenger-5.1.5.ebuild
new file mode 100644
index 000..3dc6b74b68b
--- /dev/null
+++ b/www-apache/passenger/passenger-5.1.5.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+inherit apache-module flag-o-matic multilib ruby-ng toolchain-funcs
+
+DESCRIPTION="Passenger makes deployment of Ruby on Rails applications a breeze"
+HOMEPAGE="https://www.phusionpassenger.com/;
+SRC_URI="https://s3.amazonaws.com/phusion-passenger/releases/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="apache2 debug"
+
+ruby_add_bdepend "dev-ruby/rake"
+
+ruby_add_rdepend "
+   >=dev-ruby/rack-1.0.0:*
+   >=dev-ruby/rake-0.8.1"
+
+# libev is bundled but with adapations that do not seem to be accepted
+# upstream, so we must use the bundled version :-(
+CDEPEND="
+   >=dev-libs/libuv-1.8.0
+   net-misc/curl[ssl]
+   apache2? ( www-servers/apache[apache2_modules_unixd(+)] )"
+
+RDEPEND="${RDEPEND} ${CDEPEND}"
+DEPEND="${DEPEND} ${CDEPEND}"
+
+APACHE2_MOD_CONF="30_mod_${PN}-5.0.0 30_mod_${PN}"
+APACHE2_MOD_DEFINE="PASSENGER"
+
+want_apache2
+
+pkg_setup() {
+   use debug && append-flags -DPASSENGER_DEBUG
+   depend.apache_pkg_setup
+}
+
+all_ruby_prepare() {
+   epatch "${FILESDIR}"/${PN}-5.0.20-gentoo.patch
+   epatch "${FILESDIR}"/${PN}-5.1.1-isnan.patch
+
+   # Change these with sed instead of a patch so that we can easily use
+   # the toolchain-funcs methods.
+   sed -i -e "/^CC/ s/=.*$/= '$(tc-getCC)'/" \
+   -e "/^CXX\s/ s/=.*$/= '$(tc-getCXX)'/" \
+   -e 's/PlatformInfo.debugging_cflags//' build/basics.rb || die
+
+   # Avoid fixed debugging CFLAGs.
+   sed -e '/debugging_cflags/areturn ""' -i 
src/ruby_supportlib/phusion_passenger/platform_info/compiler.rb || die
+
+   # Use sed here so that we can dynamically set the documentation 
directory.
+   sed -i -e "s:/usr/share/doc/passenger:/usr/share/doc/${P}:" \
+   -e 
"s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" \
+   src/ruby_supportlib/phusion_passenger.rb || die
+   sed -i -e 
"s:/usr/lib/phusion-passenger/agents:/usr/libexec/phusion-passenger/agents:" 
src/cxx_supportlib/ResourceLocator.h || die
+
+   # Don't install a tool that won't work in our setup.
+   sed -i -e '/passenger-install-apache2-module/d' 
src/ruby_supportlib/phusion_passenger/packaging.rb || die
+   rm -f bin/passenger-install-apache2-module || die "Unable to remove 
unneeded install script."
+
+   # Make sure we use the system-provided version where possible
+   rm -rf src/cxx_supportlib/vendor-copy/libuv || die "Unable to remove 
vendored code."
+
+   # Avoid building documentation to avoid a dependency on mizuho.
+   #sed -i -e 's/, :doc//' build/packaging.rb || die
+   touch doc/*.html || die
+
+   # 

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

2017-06-16 Thread Hans de Graaff
commit: 7ed4e95a82b599c1d1f283487fbd4092f531372f
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jun 17 05:18:59 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jun 17 05:18:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ed4e95a

dev-ruby/selenium-webdriver: add 3.4.3

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-ruby/selenium-webdriver/Manifest   |  1 +
 .../selenium-webdriver-3.4.3.ebuild| 33 ++
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/selenium-webdriver/Manifest 
b/dev-ruby/selenium-webdriver/Manifest
index 8e276713d36..cb0d87d42cc 100644
--- a/dev-ruby/selenium-webdriver/Manifest
+++ b/dev-ruby/selenium-webdriver/Manifest
@@ -3,3 +3,4 @@ DIST selenium-webdriver-3.3.0.gem 823808 SHA256 
3605ceed7093ac503a0dbf0d64820b91
 DIST selenium-webdriver-3.4.0.gem 834560 SHA256 
80cb651a6e403f976c1d5d01539f6e70dc6e1ba0645bcc1d47e170327f704a17 SHA512 
fef7552929ee4c703c14244957274d0d9b58e326789ffb641bab009315150b93fc5b7ea76f9dff80d8d98d6385375edbddf861440b889f8a33827db29fd8afda
 WHIRLPOOL 
8f2ee764ffba9168e0b836fdcbd0cd1ee16ff023670813066d3c5238742844204f1ad1056e8858bd49da53e6e46f4af1209f2c133f092db25a05294bdc66a013
 DIST selenium-webdriver-3.4.1.gem 837632 SHA256 
7b38d3b6cf2f379e2b9c50c9db38f5437f7a667a040c95c9ec91133b965934da SHA512 
c461411d6f44a37c3eb9bd080326e7046df70de5743ee1dd7bc27d9afa795e8c9dddaf3aebf1cc909cba1fa5262fdb706539972785495e1e80b3a6eebaa49557
 WHIRLPOOL 
4f9f80751b7a25ff9e44648aa74b9736a0716dd65f19f22ad7a57f433fd8cac710e0c5bcf1469c15b8f18f16b27fb7d8e10252100fb69a93278d1035694b853d
 DIST selenium-webdriver-3.4.2.gem 837632 SHA256 
78b2f9a4e79bb503528f297ea59f39d5d8f859e28ca175b1fb5d26e815ee6e22 SHA512 
e46d50b11326e17e8e81569e25f33074fcc4677aad8d891864ff922b84c68897adecee13194cb589901e66c72a24076744111e210d07584a33cb8b1a6107032f
 WHIRLPOOL 
28cfe54cb1209c24406048b56d2788c9fab2b8534f60c16ef68aaabd06975b812b64839aca5c9cae5d6b3f6a0560147ef86f2d9a87948c0d1b9c80db3522fa0f
+DIST selenium-webdriver-3.4.3.gem 837632 SHA256 
61b29ae4970250f811f559bdf67dc704a9fccb49eb0a53052b6b56c98d552aa0 SHA512 
29df75d4a89a710fbd48e67b6c6c72e85a2a266e678de7ce45965da9d108ea01f997cf881996930e41804c1d793e6f4b93e5bef18ecccf19be16ca2538d90c5f
 WHIRLPOOL 
edb2ba1dd3abebec61b4ab9282054a2887742cfcfded9e7e9f0b41b696ca0a4be8198128ee84fe84b07f565bda555e083918f381a3cf0e5b3a9f8bad892bbd5a

diff --git a/dev-ruby/selenium-webdriver/selenium-webdriver-3.4.3.ebuild 
b/dev-ruby/selenium-webdriver/selenium-webdriver-3.4.3.ebuild
new file mode 100644
index 000..423d9a25852
--- /dev/null
+++ b/dev-ruby/selenium-webdriver/selenium-webdriver-3.4.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+USE_RUBY="ruby21 ruby22 ruby23"
+
+# NOTE: this package contains precompiled code. It appears that all
+# source code can be found at https://code.google.com/p/selenium/ but the
+# repository is not organized in a way so that we can easily rebuild the
+# suited shared object. We'll just try our luck with the precompiled
+# objects for now.
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_QA_ALLOWED_LIBS="x_ignore_nofocus.so"
+QA_PREBUILT="*/x_ignore_nofocus.so"
+
+inherit ruby-fakegem
+
+DESCRIPTION="This gem provides Ruby bindings for WebDriver"
+HOMEPAGE="https://github.com/seleniumhq/selenium;
+
+LICENSE="Apache-2.0"
+SLOT="3"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/childprocess-0.5.0
+   dev-ruby/rubyzip:1"



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

2017-06-16 Thread Hans de Graaff
commit: 41b5f52719b35fa74ef1c260e8e6271bc08577a3
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jun 17 05:17:19 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jun 17 05:17:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41b5f527

dev-ruby/rb-inotify: add 0.9.9

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-ruby/rb-inotify/Manifest|  1 +
 dev-ruby/rb-inotify/rb-inotify-0.9.9.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/rb-inotify/Manifest b/dev-ruby/rb-inotify/Manifest
index 8f0a9ee165c..f609175ee08 100644
--- a/dev-ruby/rb-inotify/Manifest
+++ b/dev-ruby/rb-inotify/Manifest
@@ -1,2 +1,3 @@
 DIST rb-inotify-0.9.5.gem 14336 SHA256 
69559fc3d790c275b90f55f8c76cde94a999e3400f5a51f2e0d463a0a2e8ad4d SHA512 
1ecc0142ed44358a2f51403736533e9854b5fc13cb81b552eb866310b60535b14e2ac6bfb6ee53bc1ee65ac14e51fc5a981e52f843607dbb3d8390c1d6c13e60
 WHIRLPOOL 
19d7d1f7ca8e65a297de94fae3311c1bc8d9942aa47dc2c92202ce0adb8f04d62ac94f0c51c76a6bd263e773df2481b2337b6576f818cff7bf4fd2ccaa30fd27
 DIST rb-inotify-0.9.8.gem 14336 SHA256 
e9492784d99c75aa818b523d49f97a1bd8c568cac0bdfe2600d596568723012f SHA512 
9fecf48c7ca20bd8edcf616980bcebe5bd124a0c0a59a2166790cc57c4e43e1bd4b499c58ebc2a573f2c2e140c8aeabc08c8cf6ef2a9a594b207e78ee63d80c5
 WHIRLPOOL 
4e416aa3a4327b4d8c2dc870dd17de9e71d673b36c3e4fdd8fc14f79ae3f5d894d7abdb769ebba27defdc3bf00c7f95aa949cffb2cac76443360a802f4b8b180
+DIST rb-inotify-0.9.9.gem 15360 SHA256 
1ef0ceafb745c2c050a7e5a89b78e1f23b23dc26a0a20eba7ca963ca01726ec5 SHA512 
0b635508682dd32c623416e620666df848443e53d17c98180d0e7b6d3752cca94f59f193413711f1e5a6093fac18f5adccb030e37d9c0e3cb87162914dfd783c
 WHIRLPOOL 
545d9ba8a4e82fbd00bb13d976e25f092d403e9f6ca5968e9000219fec54bf46398fb877f35b79b60c5b7b10b684e32a4a762eb6d85062f1dc11eb370a66256c

diff --git a/dev-ruby/rb-inotify/rb-inotify-0.9.9.ebuild 
b/dev-ruby/rb-inotify/rb-inotify-0.9.9.ebuild
new file mode 100644
index 000..407ac93665e
--- /dev/null
+++ b/dev-ruby/rb-inotify/rb-inotify-0.9.9.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A thorough inotify wrapper for Ruby using FFI"
+HOMEPAGE="https://github.com/nex3/rb-inotify;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE=""
+
+ruby_add_rdepend "virtual/ruby-ffi"
+
+all_ruby_prepare() {
+   # Avoid unneeded dependency on jeweler.
+   sed -i -e '/:build/ s:^:#:' -e '/module Jeweler/,/^end/ s:^:#:' -e 
'/class Jeweler/,/^end/ s:^:#:' Rakefile || die
+
+   # Remove mandatory markup processor from yard options, bug 436112.
+   sed -i -e '/maruku/d' .yardopts || die
+
+   sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die
+}



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

2017-06-16 Thread Hans de Graaff
commit: 516598b5d9b34e588c09935f718a04da51c12327
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jun 17 05:21:42 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jun 17 05:21:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=516598b5

dev-ruby/optionable: add ruby23, ruby24

Package-Manager: Portage-2.3.5, Repoman-2.3.1

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

diff --git a/dev-ruby/optionable/optionable-0.2.0.ebuild 
b/dev-ruby/optionable/optionable-0.2.0.ebuild
index f5404f808c9..2c4a9de82ca 100644
--- a/dev-ruby/optionable/optionable-0.2.0.ebuild
+++ b/dev-ruby/optionable/optionable-0.2.0.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2017-06-16 Thread Hans de Graaff
commit: ff85bfccb44b0676fcce2d8e96f10b4f0c07e4e4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Jun 17 05:20:19 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Jun 17 05:20:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff85bfcc

dev-ruby/permutation: add ruby23, ruby24

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-ruby/permutation/permutation-0.1.8-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/permutation/permutation-0.1.8-r1.ebuild 
b/dev-ruby/permutation/permutation-0.1.8-r1.ebuild
index 0d692e4cb1e..f8657084582 100644
--- a/dev-ruby/permutation/permutation-0.1.8-r1.ebuild
+++ b/dev-ruby/permutation/permutation-0.1.8-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby21 ruby22 ruby23 ruby24"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/nm-applet/

2017-06-16 Thread Mike Gilbert
commit: d939877804a9c2eb51e685a7b84769380b106306
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Jun 17 03:16:18 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Jun 17 03:16:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9398778

gnome-extra/nm-applet: bump to 1.8.2

Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75

 gnome-extra/nm-applet/Manifest   |  1 +
 gnome-extra/nm-applet/nm-applet-1.8.2.ebuild | 62 
 2 files changed, 63 insertions(+)

diff --git a/gnome-extra/nm-applet/Manifest b/gnome-extra/nm-applet/Manifest
index e4353808560..f5e2e585630 100644
--- a/gnome-extra/nm-applet/Manifest
+++ b/gnome-extra/nm-applet/Manifest
@@ -1,3 +1,4 @@
 DIST network-manager-applet-1.2.4.tar.xz 1321740 SHA256 
dff72956c939743e899954c9d32f0ebff4f213f1307a8157adc548584a0da37a SHA512 
0cf9dd2db3289b29e550f96212c425c807b4a425d6a98cf00981e44d2bd5d1eb41c482072b5b030f32ae744c27f49a7757d762f7eda17cbba90560f0b3af1a30
 WHIRLPOOL 
e2157108be89cbfab2327ded1bbee101c2332a5b8f85d3ad4bd490b4e4bcfb07f751d87ade9ef9538c2a1004abd6c146c6741eacd5c8825ad8392d40ae9b2277
 DIST network-manager-applet-1.4.6.tar.xz 1388916 SHA256 
10a6fcfe8c6206cf18ec78a522a716b5ec9d0b7ca1e7d234c638725b316fec76 SHA512 
f0eab5c50739c2309fa19336e23ead6603dc953b62fff0600a91988df8d41c2f300c22ebd4d5be8654a3fd7bac38dacc23be149f1a7085f10bb55e1830d9472f
 WHIRLPOOL 
f04c5bcf0796539b37fc1b83f81151be2fa68bb078209555196840617332ac8e624cc5911c9932b1768764c2bd696c613c760681d543f8e8e28d0f7f0bc7e221
 DIST network-manager-applet-1.8.0.tar.xz 1446328 SHA256 
d4de2457d27dc8bc236ece54d79e6b5ab24611b9ce7cbdd514671ebcb772d576 SHA512 
5f86806cd60d740ddd7773d6f006b1fd2cefdaecdf617c97dba48732a872f0cb1d4ac0785e87f989f13cd626cdbe017b6f99ce0079aecc6031d3cc52d8d2a36d
 WHIRLPOOL 
06e0fad89a9190e0f83ddd92cff43a8be4db658fbbb3cfaa754026e50e6c60e3f9ec0d38cf00d7dae907bbfb514f342498eeff9db1a880e502ce6ad8ccb555af
+DIST network-manager-applet-1.8.2.tar.xz 1445920 SHA256 
3e57e9cf545a336da7035af1ba6171900ebc023ef19a594fe170da64af84c925 SHA512 
1e9019ca17a55138e08eaf34c7889b7d5f531e918412bf025c0e03eb0794dc323b59f0d3521f14e93b6a94756f8e2a52139c76117ed430c73bcd1366eeffb5c9
 WHIRLPOOL 
1f711907c0f0265b25b79b17681c8c666129699362d0dec11eac0413b0f9d9be322f4a0e2a760d586cb769c5446eb1fc191d4459be45a39f3c37e11ee738d495

diff --git a/gnome-extra/nm-applet/nm-applet-1.8.2.ebuild 
b/gnome-extra/nm-applet/nm-applet-1.8.2.ebuild
new file mode 100644
index 000..2a6ddf30c27
--- /dev/null
+++ b/gnome-extra/nm-applet/nm-applet-1.8.2.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+GNOME_ORG_MODULE="network-manager-applet"
+
+inherit gnome2
+
+DESCRIPTION="GNOME applet for NetworkManager"
+HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
+
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="+introspection gcr modemmanager selinux teamd"
+KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   app-crypt/libsecret
+   >=dev-libs/glib-2.32:2[dbus]
+   >=dev-libs/dbus-glib-0.88
+   >=sys-apps/dbus-1.4.1
+   >=sys-auth/polkit-0.96-r1
+   >=x11-libs/gtk+-3.4:3[introspection?]
+   >=x11-libs/libnotify-0.7.0
+
+   app-text/iso-codes
+   >=net-misc/networkmanager-1.7:=[introspection?,modemmanager?,teamd?]
+   net-misc/mobile-broadband-provider-info
+
+   introspection? ( >=dev-libs/gobject-introspection-0.9.6:= )
+   virtual/freedesktop-icon-theme
+   virtual/libgudev:=
+   gcr? ( >=app-crypt/gcr-3.14:= )
+   modemmanager? ( net-misc/modemmanager )
+   selinux? ( sys-libs/libselinux )
+   teamd? ( >=dev-libs/jansson-2.3 )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.0
+   >=dev-util/intltool-0.50.1
+   virtual/pkgconfig
+"
+
+PDEPEND="virtual/notification-daemon" #546134
+
+src_configure() {
+   local myconf=(
+   --without-appindicator
+   --disable-lto
+   --disable-ld-gc
+   --disable-more-warnings
+   --disable-static
+   --localstatedir=/var
+   $(use_enable introspection)
+   $(use_with gcr)
+   $(use_with modemmanager wwan)
+   $(use_with selinux)
+   $(use_with teamd team)
+   )
+   gnome2_src_configure "${myconf[@]}"
+}



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

2017-06-16 Thread Mike Gilbert
commit: 60bacbd8eb4561ba6c9f219d5e6eef37d127c622
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Jun 17 03:15:15 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Jun 17 03:15:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60bacbd8

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

Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75

 www-client/chromium/Manifest| 2 +-
 .../{chromium-60.0.3112.20.ebuild => chromium-60.0.3112.32.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index ab575807ea4..7796895992a 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,6 +1,6 @@
 DIST chromium-59.0.3071.104.tar.xz 531895868 SHA256 
a949fa166cdcdbd8419fbdb4583804613d9845130f0c851e4c647d79a4c300d0 SHA512 
419cf5bafa80f190cd301c2933502351929c1ef1d5cfedc720ce6762674a0e6af3b4246a8f92e0c29743420338b056061d4e7f9f4a4066a5bdd4d2ee8db3ddbf
 WHIRLPOOL 
ab2fbd1beeb485a5c07743a5a84c850b5ad8178a1f97421a0aa0573817b474e633a6ac65ad43f7db67d35d257183ea4eceacd12b4cad63f88cd9777cfa498e68
 DIST chromium-59.0.3071.86.tar.xz 531842404 SHA256 
c31431aa9f4ae521d784bee89792e7fa05793cb822bfb8d3fbacaf414b29ace7 SHA512 
1b92956435dcc422f3edf0ccd031007a19d291620d5af284ac2c1d2578b8524691713927b47130d2fd7c9acb7d9cd0376e9f5e3821b5feece7529b8b7bddf193
 WHIRLPOOL 
59454903b5a79f04a47e368fd9d18a22ceedc9e90650278e58523e8bedf6aecd3ef64d795a83524c514d7adc2aab847585971ae213af38c651a9c9924f56c601
-DIST chromium-60.0.3112.20.tar.xz 537314876 SHA256 
b508b8ecd85a0bf9778d836af3c7564dd97ef3628d964c1bfea353658113c494 SHA512 
93da55ec8171f7ebcba7732db149178a717c8f627664752b6d5bd12aa51fb3d928bc4a1369a0bee34730a98829aaba8c5a90d59136d39a5b7eddf15b8da6bba2
 WHIRLPOOL 
d66366868e848cbbd05bb97ead1577860c6e7a6c2f1dbb9f9833203f76d70b6d2a4d353b181e2ef51cca1d9f4c73e8f740be548f275cc382c2302d5c5cc41355
 DIST chromium-60.0.3112.24.tar.xz 537341808 SHA256 
26a4ef3e94399d23c077197ea47d5aab5d9165a6aa7eb8d4d66167fc043f2a94 SHA512 
3abb8bd78f9235c69ae1372d939c215d582da00125ad26aa28e1c4dc2aef0b40e5cf593b6b0438bddcf9ef5928df0e44bed5e7b1a8752706704f4d71fae9353d
 WHIRLPOOL 
467e3b8c4ea95c7bb432c1a1e6557e570141d7503b98e6a9bd8d2bded1e83779747c5f01358c877378a438f198d0db104ccb2ad044dcc22ad3d39d99ad183769
+DIST chromium-60.0.3112.32.tar.xz 537426032 SHA256 
d972469bfc26a3d135a1863c22b88e23a9f00096841f6392dbb83b75ad0d17f1 SHA512 
625bac567f0717d1077ac77023c87bdd2ad1244d63c50ce6935bcb41b85aab4c06b05fda7e0f48cc7305c331080a350a16592adb37583c13736c97a55404d6ab
 WHIRLPOOL 
78af7bbf83466c044428f294209512c27ed649e746829df083edf8e8fc4eddb23618606ec8571bc4eb433a7d67e921236c562c2c175f3685017ef2576b3f7802
 DIST chromium-61.0.3124.4.tar.xz 542178452 SHA256 
8976732d3fbbbfe188d79cb64169a5ceafe8e23351b8fb650cfd02fdfd74a83c SHA512 
6d690824376382774957c6eb0a35cb3bd443d3c501d7d5988d912dccd17da44e8e2bd5f9ac8b59d9381d7fbf67216e001dcf081591bd95c732018155f7b212f2
 WHIRLPOOL 
9a3720bb615a4f66cc77b5250dad50afb2301e076b1e0e334c0db770f420862051acac0bc68907ea1cc3f4b6a6edb108ea44f392b520c8ba916612f7eb7e54fa
 DIST chromium-61.0.3128.3.tar.xz 542407004 SHA256 
21b284c71cbd1df1302b3d41f813765c8265ba279a78455447a30ada710e9929 SHA512 
b5808dea9220182db2500f122b38e32707e285372e64031f5c5d238d82787172e44350e47bd2400ea267e8a857cd59f0db402ed2b542aa097afa4a797226e070
 WHIRLPOOL 
5eac6a151b7ce1634577e707ae2252a30549f13a029c95a73ec073b93022092dd7cac642060100d51fed01b594532526dddbda159a439bef0ca1b971d83bbd1a

diff --git a/www-client/chromium/chromium-60.0.3112.20.ebuild 
b/www-client/chromium/chromium-60.0.3112.32.ebuild
similarity index 100%
rename from www-client/chromium/chromium-60.0.3112.20.ebuild
rename to www-client/chromium/chromium-60.0.3112.32.ebuild



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

2017-06-16 Thread Davide Pesavento
commit: 6add7578f6460383ca8664fab6b451c2e06cbd41
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sat Jun 17 01:39:20 2017 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Jun 17 01:39:20 2017 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=6add7578

Merge pull request #157 from leycec

Closes: https://github.com/gentoo/qt/pull/157

 dev-python/pyside/pyside-.ebuild | 19 +--
 dev-python/shiboken/shiboken-.ebuild |  6 --
 2 files changed, 9 insertions(+), 16 deletions(-)



[gentoo-commits] proj/qt:master commit in: dev-python/shiboken/, dev-python/pyside/

2017-06-16 Thread Davide Pesavento
commit: c73c5e142b217215f6e4802266d850c8aa0adc9b
Author: leycec  gmail  com>
AuthorDate: Tue Jun 13 05:51:07 2017 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sat Jun 17 01:38:08 2017 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=c73c5e14

dev-python/pyside: Fix upstream repo URIs.

The live PySide2 and shiboken2 ebuilds now pull from the same
"pyside-setup.git" repository. The old separate "pyside.git" and
"shiboken.git" repositories still exist but are no longer maintained.
Since upstream has resolved PYSIDE-502, the prior patch for optional
dependencies in the live PySide2 ebuild has been removed.

 dev-python/pyside/pyside-.ebuild | 19 +--
 dev-python/shiboken/shiboken-.ebuild |  6 --
 2 files changed, 9 insertions(+), 16 deletions(-)

diff --git a/dev-python/pyside/pyside-.ebuild 
b/dev-python/pyside/pyside-.ebuild
index 36134162..0ed4aa4c 100644
--- a/dev-python/pyside/pyside-.ebuild
+++ b/dev-python/pyside/pyside-.ebuild
@@ -10,8 +10,8 @@ inherit cmake-utils python-r1 virtualx git-r3
 DESCRIPTION="Python bindings for the Qt framework"
 HOMEPAGE="https://wiki.qt.io/PySide2;
 EGIT_REPO_URI=(
-   "git://code.qt.io/pyside/${PN}.git"
-   "https://code.qt.io/git/pyside/${PN}.git;
+   "git://code.qt.io/pyside/pyside-setup.git"
+   "https://code.qt.io/git/pyside/pyside-setup.git;
 )
 #FIXME: Switch to the clang-enabled "dev" branch once stable.
 EGIT_BRANCH="5.6"
@@ -77,15 +77,9 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
-src_prepare() {
-   #FIXME: Remove the following "sed" patch after this upstream issue is 
closed:
-   #https://bugreports.qt.io/browse/PYSIDE-502
-   # Force the optional "Qt5Concurrent", "Qt5Gui", "Qt5Network",
-   # "Qt5PrintSupport", "Qt5Sql", "Qt5Test", and "Qt5Widgets" packages
-   # erroneously marked as mandatory to be optional.
-   sed -i -e 
's/^\(CHECK_PACKAGE_FOUND(Qt5\(Concurrent\|Gui\|Network\|PrintSupport\|Sql\|Test\|Widgets\)\))$/\1
 opt)/' \
-   PySide2/CMakeLists.txt || die
+S=${WORKDIR}/${P}/sources/pyside2
 
+src_prepare() {
if use prefix; then
cp "${FILESDIR}"/rpath.cmake . || die
sed -i -e '1iinclude(rpath.cmake)' CMakeLists.txt || die
@@ -95,10 +89,7 @@ src_prepare() {
 }
 
 src_configure() {
-   # For each line of the form "CHECK_PACKAGE_FOUND(${PACKAGE_NAME} opt)" 
in
-   # PySide2/CMakeLists.txt defining an optional dependency, an option of 
the
-   # form "-DCMAKE_DISABLE_FIND_PACKAGE_${PACKAGE_NAME}=$(usex 
!${USE_FLAG})"
-   # is passed to cmake here conditionally disabling this dependency.
+   # See COLLECT_MODULE_IF_FOUND macros in CMakeLists.txt
local mycmakeargs=(
-DBUILD_TESTS=$(usex test)
-DCMAKE_DISABLE_FIND_PACKAGE_Qt5Concurrent=$(usex !concurrent)

diff --git a/dev-python/shiboken/shiboken-.ebuild 
b/dev-python/shiboken/shiboken-.ebuild
index 6eb6cdd8..db5f67f6 100644
--- a/dev-python/shiboken/shiboken-.ebuild
+++ b/dev-python/shiboken/shiboken-.ebuild
@@ -10,8 +10,8 @@ inherit cmake-utils llvm python-r1 git-r3
 DESCRIPTION="Tool for creating Python bindings for C++ libraries"
 HOMEPAGE="https://wiki.qt.io/PySide2;
 EGIT_REPO_URI=(
-   "git://code.qt.io/pyside/${PN}.git"
-   "https://code.qt.io/git/pyside/${PN}.git;
+   "git://code.qt.io/pyside/pyside-setup.git"
+   "https://code.qt.io/git/pyside/pyside-setup.git;
 )
 #FIXME: Switch to the clang-enabled "dev" branch once stable.
 EGIT_BRANCH="5.6"
@@ -36,6 +36,8 @@ DEPEND="
 "
 RDEPEND="${DEPEND}"
 
+S=${WORKDIR}/${P}/sources/shiboken2
+
 DOCS=( AUTHORS )
 
 src_prepare() {



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

2017-06-16 Thread Mike Gilbert
commit: b22c808f9d1d1028843a9a79e406ca1d030d5d08
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Jun 17 00:11:32 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Jun 17 00:11:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b22c808f

www-client/chromium: stable channel bump (59.0.3071.104)

Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75

 www-client/chromium/Manifest  |   1 +
 www-client/chromium/chromium-59.0.3071.104.ebuild | 629 ++
 2 files changed, 630 insertions(+)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index b9c96c67f1f..ab575807ea4 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,3 +1,4 @@
+DIST chromium-59.0.3071.104.tar.xz 531895868 SHA256 
a949fa166cdcdbd8419fbdb4583804613d9845130f0c851e4c647d79a4c300d0 SHA512 
419cf5bafa80f190cd301c2933502351929c1ef1d5cfedc720ce6762674a0e6af3b4246a8f92e0c29743420338b056061d4e7f9f4a4066a5bdd4d2ee8db3ddbf
 WHIRLPOOL 
ab2fbd1beeb485a5c07743a5a84c850b5ad8178a1f97421a0aa0573817b474e633a6ac65ad43f7db67d35d257183ea4eceacd12b4cad63f88cd9777cfa498e68
 DIST chromium-59.0.3071.86.tar.xz 531842404 SHA256 
c31431aa9f4ae521d784bee89792e7fa05793cb822bfb8d3fbacaf414b29ace7 SHA512 
1b92956435dcc422f3edf0ccd031007a19d291620d5af284ac2c1d2578b8524691713927b47130d2fd7c9acb7d9cd0376e9f5e3821b5feece7529b8b7bddf193
 WHIRLPOOL 
59454903b5a79f04a47e368fd9d18a22ceedc9e90650278e58523e8bedf6aecd3ef64d795a83524c514d7adc2aab847585971ae213af38c651a9c9924f56c601
 DIST chromium-60.0.3112.20.tar.xz 537314876 SHA256 
b508b8ecd85a0bf9778d836af3c7564dd97ef3628d964c1bfea353658113c494 SHA512 
93da55ec8171f7ebcba7732db149178a717c8f627664752b6d5bd12aa51fb3d928bc4a1369a0bee34730a98829aaba8c5a90d59136d39a5b7eddf15b8da6bba2
 WHIRLPOOL 
d66366868e848cbbd05bb97ead1577860c6e7a6c2f1dbb9f9833203f76d70b6d2a4d353b181e2ef51cca1d9f4c73e8f740be548f275cc382c2302d5c5cc41355
 DIST chromium-60.0.3112.24.tar.xz 537341808 SHA256 
26a4ef3e94399d23c077197ea47d5aab5d9165a6aa7eb8d4d66167fc043f2a94 SHA512 
3abb8bd78f9235c69ae1372d939c215d582da00125ad26aa28e1c4dc2aef0b40e5cf593b6b0438bddcf9ef5928df0e44bed5e7b1a8752706704f4d71fae9353d
 WHIRLPOOL 
467e3b8c4ea95c7bb432c1a1e6557e570141d7503b98e6a9bd8d2bded1e83779747c5f01358c877378a438f198d0db104ccb2ad044dcc22ad3d39d99ad183769

diff --git a/www-client/chromium/chromium-59.0.3071.104.ebuild 
b/www-client/chromium/chromium-59.0.3071.104.ebuild
new file mode 100644
index 000..6228360e18e
--- /dev/null
+++ b/www-client/chromium/chromium-59.0.3071.104.ebuild
@@ -0,0 +1,629 @@
+# 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 virtualx 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 gconf gnome-keyring +gtk3 +hangouts kerberos neon 
pic +proprietary-codecs pulseaudio selinux +suid +system-ffmpeg +system-libvpx 
+tcmalloc widevine"
+RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
+
+# Native Client binaries are compiled with different set of flags, bug #452066.
+QA_FLAGS_IGNORED=".*\.nexe"
+
+# Native Client binaries may be stripped by the build system, which uses the
+# right tools for it, bug #469144 .
+QA_PRESTRIPPED=".*\.nexe"
+
+COMMON_DEPEND="
+   app-arch/bzip2:=
+   cups? ( >=net-print/cups-1.3.11:= )
+   dev-libs/expat:=
+   dev-libs/glib:2
+   dev-libs/icu:=
+   dev-libs/libxslt:=
+   dev-libs/nspr:=
+   >=dev-libs/nss-3.14.3:=
+   >=dev-libs/re2-0.2016.05.01:=
+   gconf? ( >=gnome-base/gconf-2.24.0:= )
+   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] )
+   pulseaudio? ( media-sound/pulseaudio:= )
+   system-ffmpeg? ( >=media-video/ffmpeg-3:= )
+   sys-apps/dbus:=
+   sys-apps/pciutils:=
+   virtual/udev
+   x11-libs/cairo:=
+   x11-libs/gdk-pixbuf:2
+   x11-libs/libX11:=
+   x11-libs/libXcomposite:=
+   x11-libs/libXcursor:=
+   x11-libs/libXdamage:=
+   x11-libs/libXext:=
+   x11-libs/libXfixes:=
+   

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

2017-06-16 Thread Andreas Hüttel
commit: 3fbc2fc8a2d0aaf822cf711ffe33ee928b3b450a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 23:03:38 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 23:03:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fbc2fc8

dev-perl/Test-SubCalls: Fix Perl 5.26 dot-in-inc as recommended by upstream. 
Bug 615696.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild  | 14 --
 .../Test-SubCalls/files/Test-SubCalls-1.90.0-dot.patch |  7 +++
 2 files changed, 11 insertions(+), 10 deletions(-)

diff --git a/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild 
b/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild
index d0e120168fe..4231a50ee12 100644
--- a/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild
+++ b/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild
@@ -1,10 +1,10 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=6
 
-MODULE_AUTHOR=ADAMK
-MODULE_VERSION=1.09
+DIST_AUTHOR=ADAMK
+DIST_VERSION=1.09
 inherit perl-module
 
 DESCRIPTION="Track the number of times subs are called"
@@ -17,10 +17,4 @@ DEPEND=">=dev-perl/Hook-LexWrap-0.20
virtual/perl-File-Spec"
 RDEPEND="${DEPEND}"
 
-SRC_TEST="do"
-
-src_prepare() {
-   sed -i -e 's/use inc::Module::Install::DSL /use lib q[.]; use 
inc::Module::Install::DSL /' Makefile.PL ||
-   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
-   perl-module_src_prepare
-}
+PATCHES=( "${FILESDIR}/${P}"-dot.patch )

diff --git a/dev-perl/Test-SubCalls/files/Test-SubCalls-1.90.0-dot.patch 
b/dev-perl/Test-SubCalls/files/Test-SubCalls-1.90.0-dot.patch
new file mode 100644
index 000..0be86a6037d
--- /dev/null
+++ b/dev-perl/Test-SubCalls/files/Test-SubCalls-1.90.0-dot.patch
@@ -0,0 +1,7 @@
+--- a/Makefile.PL  2017-03-31 09:05:12.495038191 -0400
 b/Makefile.PL  2017-03-31 09:05:22.634214621 -0400
+@@ -1,3 +1,4 @@
++use lib '.';
+ use inc::Module::Install::DSL 0.83;
+ 
+ all_from  lib/Test/SubCalls.pm



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

2017-06-16 Thread Andreas Hüttel
commit: 944bf0f5f0d4980794c2311cf1e741f53a17d8bd
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 22:53:43 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 22:53:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=944bf0f5

dev-perl/Test-SubCalls: Add fix for Perl 5.26 no-dot-in-inc, bug 615696

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild 
b/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild
index d033a86e47a..d0e120168fe 100644
--- a/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild
+++ b/dev-perl/Test-SubCalls/Test-SubCalls-1.90.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -18,3 +18,9 @@ DEPEND=">=dev-perl/Hook-LexWrap-0.20
 RDEPEND="${DEPEND}"
 
 SRC_TEST="do"
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install::DSL /use lib q[.]; use 
inc::Module::Install::DSL /' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Data-Accessor/

2017-06-16 Thread Andreas Hüttel
commit: a080c244e7018caa467872ab1eba12f782d23d58
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 22:49:14 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 22:49:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a080c244

dev-perl/Class-Data-Accessor: Fixup. No rule without exception.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild 
b/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild
index 5d03d89d187..deee5e68063 100644
--- a/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild
+++ b/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild
@@ -16,7 +16,7 @@ IUSE=""
 SRC_TEST=do
 
 src_prepare() {
-   sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 
inc::Module::Install;/' Makefile.PL ||
+   sed -i -e 's/use inc::Module::Install/use lib q[.]; use 
inc::Module::Install/' Makefile.PL ||
die "Can't patch Makefile.PL for 5.26 dot-in-inc"
perl-module_src_prepare
 }



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Class-Data-Accessor/

2017-06-16 Thread Andreas Hüttel
commit: 4467e0f388bfc113b524cd4c3df99e4b616714e2
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 22:47:35 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 22:47:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4467e0f3

dev-perl/Class-Data-Accessor: Add fix for Perl 5.26 no-dot-in-inc, bug 615512

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild 
b/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild
index 376cdfdacb3..5d03d89d187 100644
--- a/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild
+++ b/dev-perl/Class-Data-Accessor/Class-Data-Accessor-0.40.40-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -14,3 +14,9 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 SRC_TEST=do
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 
inc::Module::Install;/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



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

2017-06-16 Thread Andreas Hüttel
commit: e47ecec4ce5c1a86be9c8f3d98f793abd5717e92
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 22:43:54 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 22:44:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e47ecec4

dev-perl/Term-Encoding: Add fix for Perl 5.26 no-dot-in-inc, bug 615686

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Term-Encoding/Term-Encoding-0.20.0.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Term-Encoding/Term-Encoding-0.20.0.ebuild 
b/dev-perl/Term-Encoding/Term-Encoding-0.20.0.ebuild
index be8d0588530..d6e9d410f1d 100644
--- a/dev-perl/Term-Encoding/Term-Encoding-0.20.0.ebuild
+++ b/dev-perl/Term-Encoding/Term-Encoding-0.20.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -17,3 +17,9 @@ RDEPEND=""
 DEPEND="${RDEPEND}
virtual/perl-ExtUtils-MakeMaker
 "
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 
inc::Module::Install;/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



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

2017-06-16 Thread Matthias Maier
commit: 50369f627584bccddd7e270256c13b1d5bb340c8
Author: Matthias Maier  gentoo  org>
AuthorDate: Fri Jun 16 22:24:24 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Jun 16 22:32:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50369f62

dev-libs/dietlibc: use tc-enables-pie instead of gcc-specs-pie

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild | 4 ++--
 dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild 
b/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild
index 1fd0e978af7..62b7fabdd9c 100644
--- a/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild
+++ b/dev-libs/dietlibc/dietlibc-0.33_pre20110403.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="3"
@@ -41,7 +41,7 @@ pkg_setup() {
-Wno-unused -Wredundant-decls -fno-strict-aliasing
 
# only use -nopie on archs that support it
-   gcc-specs-pie && append-flags -nopie
+   tc-enables-pie && append-flags -nopie
 }
 
 src_compile() {

diff --git a/dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild 
b/dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild
index 399e1e780b9..c35bb403afe 100644
--- a/dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild
+++ b/dev-libs/dietlibc/dietlibc-0.34_pre20140729.ebuild
@@ -36,7 +36,7 @@ src_prepare() {
append-flags $(test-flags -fno-stack-protector)
 
# only use -nopie on archs that support it
-   gcc-specs-pie && append-flags -nopie
+   tc-enables-pie && append-flags -nopie
 
sed -i -e 's:strip::' Makefile || die
append-flags -Wa,--noexecstack



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

2017-06-16 Thread Cédric Krier
commit: b07e573f40608d41203539d5b4404851983c5d7a
Author: Cédric Krier  gentoo  org>
AuthorDate: Fri Jun 16 22:19:25 2017 +
Commit: Cédric Krier  gentoo  org>
CommitDate: Fri Jun 16 22:19:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b07e573f

app-eselect/eselect-chuck: Version bumps for bug #621372

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 app-eselect/eselect-chuck/Manifest |  1 +
 .../eselect-chuck/eselect-chuck-1.0.2.ebuild   | 23 ++
 2 files changed, 24 insertions(+)

diff --git a/app-eselect/eselect-chuck/Manifest 
b/app-eselect/eselect-chuck/Manifest
index c62b30c21bb..4b9f6ca5ca4 100644
--- a/app-eselect/eselect-chuck/Manifest
+++ b/app-eselect/eselect-chuck/Manifest
@@ -1 +1,2 @@
 DIST chuck.eselect-1.0.1.bz2 1268 SHA256 
8ce7ecbbc77e35eace774e34223b453329dc2a79a8e2acf5dc495c9f029f1c1e SHA512 
875c27bb71bdad309554c0541e495d76cac6c663e0c2b3371376f52bca127dbcdc409790a689dee2b2306999eec9ebde6c0afae093891fc151695838567d2483
 WHIRLPOOL 
38e3b588b0ee38c3f9150c3e89bcd6c6e31face8bfbf76a1d62f50b71dc53bee3ebefb11f80d39da412b0fa1b4636f974082ca37055e15bf09307269eb8306fb
+DIST chuck.eselect-1.0.2.bz2 1261 SHA256 
0d472d2ed4637b22e2fe4ff395ef31a6e6668f4504c477a6d9b7297a95735378 SHA512 
a89f0ed00a44e81ff16b8668cfa23a0c794efc35bbcf5e2f06eb5fe9a56095948fa8ddf36a8a3371fc7ab255f539b563831b527717b58149d19dc0d3c32ca387
 WHIRLPOOL 
afa7bfefc2bf890c8451665847f573eacf4be999f3b8a74bb7f0679032de90a946cb5e8c0305afa7e0127fa6361b45c264a6efd1d52699a48183af4ebb790189

diff --git a/app-eselect/eselect-chuck/eselect-chuck-1.0.2.ebuild 
b/app-eselect/eselect-chuck/eselect-chuck-1.0.2.ebuild
new file mode 100644
index 000..113ad8515a9
--- /dev/null
+++ b/app-eselect/eselect-chuck/eselect-chuck-1.0.2.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Manages the /usr/bin/chuck symlink"
+HOMEPAGE="https://www.gentoo.org/;
+SRC_URI="mirror://gentoo/chuck.eselect-${PVR}.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=">=app-admin/eselect-1.2.3"
+DEPEND="!<=media-sound/chuck-1.2.1.2"
+
+S=${WORKDIR}
+
+src_install() {
+   insinto /usr/share/eselect/modules
+   newins "${WORKDIR}/chuck.eselect-${PVR}" chuck.eselect || die
+}



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

2017-06-16 Thread Brian Dolbec
commit: 9ae55c53f4606d6edb1caff8c03e425a9565738f
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Jun 16 19:16:21 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jun 16 21:50:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ae55c53

profiles/base/make.defualts: Add TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE

To prevent access violations for packages that install plugins to twisted.
All pkgs should call /usr/bin/twisted-regen-cache in pkg_postinst() to 
regenrate the caches.

 profiles/base/make.defaults | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/base/make.defaults b/profiles/base/make.defaults
index 28bf57c0e02..b090eab54c8 100644
--- a/profiles/base/make.defaults
+++ b/profiles/base/make.defaults
@@ -136,3 +136,8 @@ UNINSTALL_IGNORE="/lib/modules/* /var/run /var/lock"
 # Andreas K. Hüttel  (23 Aug 2013)
 # Make emerge messages default to English as per Council decision
 LC_MESSAGES="C"
+
+# Brian Dolbec  (16 Jun 2017)
+# disable twisted's plugin cache update to prevent access violations
+# call /usr/bin/twisted-regen-cache in pkg_postinst()
+TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE="1"



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

2017-06-16 Thread Brian Dolbec
commit: 676133f56ce8a8d0a2d1c9af97936b4cb5b9ee57
Author: Brian Dolbec  gentoo  org>
AuthorDate: Fri Jun 16 19:38:36 2017 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Fri Jun 16 21:50:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=676133f5

dev-python/autobahn: Update ebuilds for twisted plugin cashe updates

With TWISTED_DISABLE_WRITING_OF_PLUGIN_CACHE now set in make.defaults to
prevent access violations.  All pkgs installing plugins need to run
/usr/bin/twisted-regen-cache in pkg_postinst() for twisted releases.
For older split twisted installs, the cache has to be done using a copy
of the twisted-r1 eclasses cahche update functions.

Package-Manager: Portage-2.3.6_p2, Repoman-2.3.2_p70

 dev-python/autobahn/Manifest  |   1 -
 dev-python/autobahn/autobahn-0.12.1.ebuild|  46 --
 dev-python/autobahn/autobahn-0.16.0-r1.ebuild | 127 ++
 dev-python/autobahn/autobahn-0.16.0.ebuild|  62 -
 dev-python/autobahn/autobahn-0.9.4.2.ebuild   |  72 ++-
 dev-python/autobahn/autobahn-17.5.1-r1.ebuild | 124 +
 dev-python/autobahn/autobahn-17.5.1.ebuild|  62 -
 7 files changed, 322 insertions(+), 172 deletions(-)

diff --git a/dev-python/autobahn/Manifest b/dev-python/autobahn/Manifest
index 35955819613..3af3f99fc66 100644
--- a/dev-python/autobahn/Manifest
+++ b/dev-python/autobahn/Manifest
@@ -1,4 +1,3 @@
-DIST autobahn-0.12.1.tar.gz 163311 SHA256 
664223879e159c88221f42d8d1ac6b8c4268d8b9316d8ab69a02761c5744cd79 SHA512 
2d944ce6849017f75542b5f33cd2c4a7321c5a70ce01b24480fb17aa34c3a7dec826073261af1133e1611233dbe958e5c7d2a10b1586f6b7e5b32ce4f4e7db06
 WHIRLPOOL 
2d1d78ae0f468e80a7ffe44dc8f1891082adb97319d3cedad575f74ebafa3318a1b0ed1f9cd4187dc097d9a8c2cf2b0ca761c39511a6bbd490e8d30bcbb7d933
 DIST autobahn-0.16.0.tar.gz 185053 SHA256 
a1dcb4315a0914da56ec484659816de72dfad229be4ac19fa61bbc0111ada884 SHA512 
8873202a33c7b68577e89cc91503b8002aa19638836ff39ef99022e3b0ddcfb613154ddf0c373bf315eeb8b6c36f31afc20eb0164c47caa087b2a1b28449d3a8
 WHIRLPOOL 
b5f5f80c1d88b3b031fab0837f0d191d4d71e21798aeec6ae1ee718bad0e21cb403a1b2ecb199615b4c8351522be8d4882781fd02de95e422203cee14f1c01ef
 DIST autobahn-0.9.4-2.zip 175894 SHA256 
5bb64191cfdd1cbdd90d8e359b389ef62c0acdffd2f68d16ec01fa0a287262f0 SHA512 
7e0d4246b8b1c552b25c2ae36f1923ed9931e3d3ca684039a422773fecd92ca04734a0b24394a9bbc787f245c72b5552522351a7c1c8e500128e7c46c740a3d5
 WHIRLPOOL 
aa0f06b82acbebb97ca2e3c424429ada7169dca5b39237ce082a17440ec9701a307e9fc7f162f957023cfc4c067f8e8b82b9923cb056ffcab7b3e64a61a4aae8
 DIST autobahn-17.5.1.tar.gz 205144 SHA256 
2a32fa76a11f8aa8de482e99ad2b7a8acc8f6c0d430c48aebd4666f080e85d5c SHA512 
904f8f4c527a6c1c7840ea8634d0c0a47141458500c6d29f4aa1f05ff51f91c65a451b7c447201cbdf5e255c4c2d07509efa106790217b09398e7d50c1d85382
 WHIRLPOOL 
28b9608110ecfd058b9bfc3a3c587e7d33c7538f62b4ada1969efc2d434dcbcd9b1d3b1711448a09b425016c2622d2135ce789ae1edeaf7f0a1dc96fcdfb7acd

diff --git a/dev-python/autobahn/autobahn-0.12.1.ebuild 
b/dev-python/autobahn/autobahn-0.12.1.ebuild
deleted file mode 100644
index 728d2db2e9d..000
--- a/dev-python/autobahn/autobahn-0.12.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_4 )
-
-RESTRICT="test"
-
-inherit distutils-r1 versionator
-
-MY_P="${PN}-$(replace_version_separator 3 -)"
-
-DESCRIPTION="WebSocket and WAMP for Twisted and Asyncio"
-HOMEPAGE="https://pypi.python.org/pypi/autobahn http://autobahn.ws/python/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-
-RDEPEND="
-   virtual/python-futures[${PYTHON_USEDEP}]
-   >=dev-python/lz4-0.2.1[${PYTHON_USEDEP}]
-   >=dev-python/msgpack-0.4.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-   >=dev-python/snappy-0.5[${PYTHON_USEDEP}]
-   >=dev-python/trollius-0.1.2[${PYTHON_USEDEP}]
-   >=dev-python/twisted-core-11.1[$(python_gen_usedep 'python2*')]
-   >=dev-python/txaio-2.2.0[${PYTHON_USEDEP}]
-   >=dev-python/ujson-1.33[${PYTHON_USEDEP}]
-   >=dev-python/wsaccel-0.6.2[${PYTHON_USEDEP}]
-   >=dev-python/zope-interface-3.6[${PYTHON_USEDEP}]
-   "
-DEPEND="${RDEPEND}
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )"
-
-S="${WORKDIR}"/${MY_P}
-
-python_test() {
-   esetup.py test
-}

diff --git a/dev-python/autobahn/autobahn-0.16.0-r1.ebuild 
b/dev-python/autobahn/autobahn-0.16.0-r1.ebuild
new file mode 100644
index 000..e550e5d7464
--- /dev/null
+++ b/dev-python/autobahn/autobahn-0.16.0-r1.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2

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

2017-06-16 Thread Christoph Junghans
commit: 484cba006062e22ce9f51ad6625feab2f9e4f276
Author: Christoph Junghans  gentoo  org>
AuthorDate: Fri Jun 16 21:15:45 2017 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Fri Jun 16 21:16:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=484cba00

sci-libs/libaec: version bump

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 sci-libs/libaec/Manifest|  1 +
 sci-libs/libaec/libaec-1.0.0.ebuild | 35 +++
 2 files changed, 36 insertions(+)

diff --git a/sci-libs/libaec/Manifest b/sci-libs/libaec/Manifest
index 9cb25f850f3..9471cc22eeb 100644
--- a/sci-libs/libaec/Manifest
+++ b/sci-libs/libaec/Manifest
@@ -1 +1,2 @@
 DIST libaec-0.3.2.tar.gz 353185 SHA256 
acb7cbf4e8f3c63a9ea1af1e1a2d0c9658f4831deb7327f110bdd5c187dc3441 SHA512 
c3935f7d3e2e289e66f24d5af8f8fe21aab1044adbe883708ed64eb194bf93511fe2a9dd2b1658571ebbcc502123b3a5e6dfaa1bc4a1b85eaeaedc8b43d8085e
 WHIRLPOOL 
56214327aeebcfac3c3e828ceb8187d00b8cebeec3cf10777c25edd69c74fe7c89fca2a42591bddc3aaa14f3d301371664f80627d902709f2b87a6b54de3bcc0
+DIST libaec-1.0.0.tar.gz 3118578 SHA256 
3e79e33b380cb2f17323d3de5e70c4e656242a62bfbe72ffcea36adaa344c47d SHA512 
112ded6151e46a90adfe230d8298452b2e42105e0e9d40ce10ac49f1e0160a13fa7ddec22e22346f0d5defc397bbba7c12f9d58b08e024da19991108e6e8d8ba
 WHIRLPOOL 
21154d51c02c03c9f93c5873b4b1d5f3a53c393fe10020d8a6d5e34a7640a6d3b5fcecd6e139164ff042369e7649c4e765fedc95cda267862b38133717aee531

diff --git a/sci-libs/libaec/libaec-1.0.0.ebuild 
b/sci-libs/libaec/libaec-1.0.0.ebuild
new file mode 100644
index 000..313409c2af6
--- /dev/null
+++ b/sci-libs/libaec/libaec-1.0.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils
+# number that might change every version
+PID="631e85bcf877c2dcaca9b2e6d6526339"
+
+DESCRIPTION="Adaptive Entropy Coding library"
+HOMEPAGE="https://gitlab.dkrz.de/k202009/libaec;
+SRC_URI="${HOMEPAGE}/uploads/${PID}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0/2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="static-libs +szip"
+
+DEPEND=""
+RDEPEND="szip? ( !sci-libs/szip )"
+
+src_configure() {
+   econf $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+   # avoid conflict with szip (easier than to patch autotools)
+   if ! use szip; then
+   rm "${ED}"/usr/include/szlib.h || die
+   rm "${ED}"/usr/$(get_libdir)/libsz* || die
+   rm "${ED}"/usr/share/doc/${PF}/README.SZIP || die
+   fi
+   use static-libs || prune_libtool_files --all
+}



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

2017-06-16 Thread Andreas Sturmlechner
commit: 17c0740e84ee85cca4dee803d7b6e812c0bcc296
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Fri Jun 16 21:10:18 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Fri Jun 16 21:10:18 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=17c0740e

kde-frameworks/kfilemetadata: Add new USE="-taglib" DEPEND

Upstream commit 980d4edf2b52f23d87bceed6311f3c005d3cddc5

Package-Manager: Portage-2.3.5, Repoman-2.3.1

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

diff --git a/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild 
b/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild
index d383cc4f1e..ee1dc6e8f6 100644
--- a/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild
+++ b/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild
@@ -21,6 +21,7 @@ RDEPEND="
office? ( $(add_frameworks_dep karchive) )
pdf? ( app-text/poppler[qt5] )
taglib? ( media-libs/taglib )
+   !taglib? ( $(add_qt_dep qtmultimedia) )
 "
 DEPEND="${RDEPEND}
kernel_linux? ( sys-apps/attr )
@@ -34,6 +35,7 @@ src_configure() {
$(cmake-utils_use_find_package office KF5Archive)
$(cmake-utils_use_find_package pdf Poppler)
$(cmake-utils_use_find_package taglib Taglib)
+   $(cmake-utils_use_find_package !taglib Qt5Multimedia)
)
 
kde5_src_configure



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/xfce4-xkb-plugin/

2017-06-16 Thread Michał Górny
commit: 46c2e8bfe12df2b5fb333fdc2264a14d2ac881c7
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 20:08:39 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 21:05:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c2e8bf

xfce-extra/xfce4-xkb-plugin: Bump to 0.8.0

 xfce-extra/xfce4-xkb-plugin/Manifest   |  1 +
 .../xfce4-xkb-plugin/xfce4-xkb-plugin-0.8.0.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/xfce-extra/xfce4-xkb-plugin/Manifest 
b/xfce-extra/xfce4-xkb-plugin/Manifest
index 7508f32b0a8..ccf747638db 100644
--- a/xfce-extra/xfce4-xkb-plugin/Manifest
+++ b/xfce-extra/xfce4-xkb-plugin/Manifest
@@ -1 +1,2 @@
 DIST xfce4-xkb-plugin-0.7.1.tar.bz2 837922 SHA256 
61fe2e33fe99939d5d06a682e94e40e05ef844c930ad612154090d158b2ce681 SHA512 
a6d83a614f85ada6470efbca9d19073ecf31e6531dafff000c1c9d439d7e4a6d02188296810933f28f4cf9b61addd1f99a6a47c8adc6423c44adbf7ffa525094
 WHIRLPOOL 
1ca8b11311313266be0b4ddea9203f7963734124cf71262e85a9dc8c5b0cc9d56221843df9c14a6d423a8a6adad9fc87b132c47645db86ef7697376c8f31de21
+DIST xfce4-xkb-plugin-0.8.0.tar.bz2 835556 SHA256 
3b0d3b9f4b7c3e3e7be668e2f7c845b89b16e0ed3db2bacb544a17272682ced0 SHA512 
8368b87e4f6459bd3d0c5a805ac1fb191aaf62d18a119f97119b3a1273a23952dcfa5b097542d4e6db645f1509e0a31e0e6152e190e9a2ca32cc61138aca8ded
 WHIRLPOOL 
ec7d25f204e5bcd0e21b67e12641e6cdaf6e056ec1d0ad8437e583ef0c5822d17fbf600924600c7ef777db8404dcaeed6ff0f8c8e8ee57eda651c51388ad74da

diff --git a/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.8.0.ebuild 
b/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.8.0.ebuild
new file mode 100644
index 000..da18685cab4
--- /dev/null
+++ b/xfce-extra/xfce4-xkb-plugin/xfce4-xkb-plugin-0.8.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="XKB layout switching panel plug-in for the Xfce desktop 
environment"
+HOMEPAGE="https://goodies.xfce.org/projects/panel-plugins/xfce4-xkb-plugin;
+SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="BSD-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+IUSE=""
+
+COMMON_DEPEND="gnome-base/librsvg:=
+   x11-libs/gtk+:3=
+   x11-libs/libwnck:3=
+   x11-libs/libX11:=
+   >=x11-libs/libxklavier-5.4:=
+   xfce-base/garcon:=
+   >=xfce-base/libxfce4ui-4.12:=
+   >=xfce-base/libxfce4util-4.12:=
+   >=xfce-base/xfce4-panel-4.12:=
+   >=xfce-base/xfconf-4.12.1:="
+RDEPEND="${COMMON_DEPEND}
+   x11-apps/setxkbmap
+   >=xfce-base/xfce4-settings-4.11"
+DEPEND="${COMMON_DEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+src_configure() {
+   local myconf=(
+   --libexecdir="${EPREFIX}"/usr/$(get_libdir)
+   )
+
+   econf "${myconf[@]}"
+}



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

2017-06-16 Thread Michał Górny
commit: fd7278ff845595f4e626a4950e8ffe5e00dacf24
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 19:57:10 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 21:05:09 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd7278ff

x11-libs/libxklavier: Bump to 5.4

 x11-libs/libxklavier/Manifest   |  1 +
 x11-libs/libxklavier/libxklavier-5.4.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/x11-libs/libxklavier/Manifest b/x11-libs/libxklavier/Manifest
index 8f2d0b3f4c1..13f770efb04 100644
--- a/x11-libs/libxklavier/Manifest
+++ b/x11-libs/libxklavier/Manifest
@@ -1 +1,2 @@
 DIST libxklavier-5.3.tar.xz 315684 SHA256 
ebec3bc54b5652838502b96223152fb1cd8fcb14ace5cb02d718fc3276bbd404 SHA512 
7bec94aeedbe80aec2c44c9e2a3b7ea170618970fff3c1b5e677f1b292241e208b74eabd825d477eeab25bb0ee1d27f9b55f986a19ea8aacb078651a0c83b289
 WHIRLPOOL 
e9f64343e750397e2ec55311ce8ed650bfb71fb09eccdf3563cd8ac5a83f4203d79d00695978f7d27c0a91a03d67fd29c4842b401fc8b23621121cd9e9b0d84b
+DIST libxklavier-5.4.tar.bz2 390428 SHA256 
17a34194df5cbcd3b7bfd0f561d95d1f723aa1c87fca56bc2c209514460a9320 SHA512 
e9342d94f6cd67e900e44d9751ee0d8c75bec8e3a7b30989612bd71a5f890be52ff843465162dbbe0bfc9004da76e1d47158a4671b8f915e51c91f9d82f7baae
 WHIRLPOOL 
93e2b73d8035e6ef01c0286c98e36d8f0ad5981238de49c9e93fedd97efc5247feadefa30cfc8fbf924980aa0e95fe6f24d1702b00171e0fdb3f4a430bab1a1f

diff --git a/x11-libs/libxklavier/libxklavier-5.4.ebuild 
b/x11-libs/libxklavier/libxklavier-5.4.ebuild
new file mode 100644
index 000..bad391397de
--- /dev/null
+++ b/x11-libs/libxklavier/libxklavier-5.4.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit libtool vala xdg-utils
+
+DESCRIPTION="A library for the X Keyboard Extension (high-level API)"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/LibXklavier;
+SRC_URI="https://people.freedesktop.org/~svu/${P}.tar.bz2;
+
+LICENSE="LGPL-2"
+SLOT="0/16"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="+introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+RDEPEND="
+   app-text/iso-codes
+   >=dev-libs/glib-2.16:2=
+   dev-libs/libxml2:2=
+   x11-apps/xkbcomp
+   x11-libs/libX11:=
+   >=x11-libs/libXi-1.1.3:=
+   x11-libs/libxkbfile:=
+   >=x11-misc/xkeyboard-config-2.4.1-r3
+   introspection? ( >=dev-libs/gobject-introspection-1.30:= )
+   vala? ( $(vala_depend) )
+"
+DEPEND="${RDEPEND}
+   >=dev-util/gtk-doc-am-1.4
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   default
+   elibtoolize
+   xdg_environment_reset
+   use vala && vala_src_prepare
+}
+
+src_configure() {
+   econf \
+   --disable-static \
+   --disable-gtk-doc \
+   $(use_enable introspection) \
+   $(use_enable vala) \
+   --with-xkb-base="${EPREFIX}"/usr/share/X11/xkb \
+   --with-xkb-bin-base="${EPREFIX}"/usr/bin
+}
+
+src_install() {
+   default
+   dodoc CREDITS
+   find "${D}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/tasty/

2017-06-16 Thread Sergei Trofimovich
commit: 48d5cf6e0caa6e1cabac7230adf02236d9537444
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 16 20:30:26 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 16 20:34:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48d5cf6e

dev-haskell/tasty: revert "drop old" commit e6704b

Commit accidentally deleted a few ~arch KEYWORDS
breaking at least:
  dev-haskell/tasty-hunit
  dev-haskell/tasty-smallcheck

 dev-haskell/tasty/Manifest  |  8 +++
 dev-haskell/tasty/metadata.xml  |  3 +++
 dev-haskell/tasty/tasty-0.11.0.2.ebuild | 33 +
 dev-haskell/tasty/tasty-0.11.0.3.ebuild | 33 +
 dev-haskell/tasty/tasty-0.2.ebuild  | 34 ++
 dev-haskell/tasty/tasty-0.3.1.ebuild| 35 +++
 dev-haskell/tasty/tasty-0.5.2.ebuild| 35 +++
 dev-haskell/tasty/tasty-0.7.ebuild  | 36 
 dev-haskell/tasty/tasty-0.8.1.2.ebuild  | 32 
 dev-haskell/tasty/tasty-0.8.ebuild  | 37 +
 10 files changed, 286 insertions(+)

diff --git a/dev-haskell/tasty/Manifest b/dev-haskell/tasty/Manifest
index b4bb743eb7f..2a55d404b49 100644
--- a/dev-haskell/tasty/Manifest
+++ b/dev-haskell/tasty/Manifest
@@ -1,2 +1,10 @@
 DIST tasty-0.10.1.2.tar.gz 26285 SHA256 
91e0b26ebe5263069747d92b6bdc3937d5513c2797c849b369f1282ca941b730 SHA512 
11171cb42b0c88cee04fc3c42c6003c6e501a16734f86ca4dcb33b7e28bc282fd4af56e88d398f6508ce9bd3da666a954fd3b50b8c89cf27906ea8694d753d3e
 WHIRLPOOL 
b36026976527533a8ac622791cfe77434de25a7f197826e0513953dc607c2bf34fad058e036195c95d959c4a776ed016cdd0516022cf54e62d3d1c3fbe1f550e
+DIST tasty-0.11.0.2.tar.gz 26199 SHA256 
3d87f99a046bfda752dcf558f36931135c784af9a2911a61bc4673199f933c63 SHA512 
598613dcb26b11ebd0f2e71df3d55b4d99a2d7e52cd627b4eddc16802ac5fed3d84d05e7109e953ead9667ac9d4f72ec4a33ca78669203d37b930ff91c8058fb
 WHIRLPOOL 
ab926817b832d3d32d4bb89f2bf3bb24e4102cfe063108dfac8a8f6ffd30314d0b3e8090eb23cc64231ba22205eeb183135158c97f44b97dfc9c6223e9c5f0ec
+DIST tasty-0.11.0.3.tar.gz 26243 SHA256 
ca51533c3b6fb36a63b7a6062d71024e3a823ae173779c1c81850959e29e7efa SHA512 
462798651aa9945d1d3302a8a028eeaecf5c21bf1af72611e0216187743ccb6c55131009fc633353c69d8e37b71156405f7b2fd7b7892629e0c185d6370499f5
 WHIRLPOOL 
3217a6323949e6cd7096a37bf07bf6bf67a85e2a2c68f7fa9d221b5ff11473d79a55df950644aabba68a993b9a6961dad0444576b9ef776ebc1604b36a4d16b4
 DIST tasty-0.11.0.4.tar.gz 26612 SHA256 
e0e248d50aaa098b2633d51a1c71f3da569ba5d6c0e77e0e39b6c9b7de97fd16 SHA512 
8ccf7701829fdb42e367ac1e5805363d7489c770139f6e608d1240cec9e54517230166783a857480b70ca424f40f9ab83313e03e893d6d21503706a4c2e84e95
 WHIRLPOOL 
fbec5ac0a434d9fd9776aa82c0e8b5d0002dc3fc9729281d3014a3304ed9149d65e16e42b93be86b2bebe0b7c79b5d13b4c216d5c723a94febd30648ece93165
+DIST tasty-0.2.tar.gz 11948 SHA256 
185dea647885229c076cee4087c8107fda78f7536cec7df452c72c0ee8220dea SHA512 
f0f5aef19334f95061a48cb71572f750169f945ae9910cb964cb611d306f26bb49a5698b418e40b64357f5fb503bfb3914247bfc7eb5682353f046ad54b825a7
 WHIRLPOOL 
b7101b6bea90d06edb63cc1d33ff0ea9e9c04088d0c00fdaf4989a3d6cbf2b647ff6dfd9b7af9eb839496597789d25d9c2eadccf8a1aa181040d631282741a42
+DIST tasty-0.3.1.tar.gz 12145 SHA256 
60ddc6503d45d5abc8c598dfb5b063f7b29a84a7def3088b06e47dee6f6ef646 SHA512 
aa727d8fcab7cbde07f721ad8eafc957f3fb6f01827a8ffc329bd1dba86bb40dbeb9e17c86becdd44aba592d57e29d07a5435ffbc8fabaa3c92fa0d0fa544e39
 WHIRLPOOL 
b221c0581a5ee725d8d7301e9df4bcf13cfccb542c0cc10be6bf5fffefa56493dffaf80c019b37c0ef1488f78c05e2d2feefa6c1cfc4fe802b869e5e46543153
+DIST tasty-0.5.2.tar.gz 15369 SHA256 
892483af037bb57061c5f6a764067dbed6830a1357fe3bdd8e9a8046f15d467e SHA512 
94116a4a12b842c4c136dfb5fff75e3843aa27c05fbad64e1752bd29b60691dbf12d093c5480e9c93d97ec1adbb98d579e63dd13921323e32e9127fb75bb3d37
 WHIRLPOOL 
ba0e5010ccf253c18668a8718e97b9b8b6f0b3a686ad1ef1ff7a42b6f64716efea04ec777b471121d8d44ff48e68174fc49cd0b47a16e622da17dda5afb79a4f
+DIST tasty-0.7.tar.gz 16765 SHA256 
ad431d944a923cc49b59b70f540cbcc8bea3392fe6b73fcdce4d6c70ea5a905b SHA512 
0b1e28b57bd6ff737ced69491c9d2485e37ec9b519e3d80f53ae03fd6335718353c36125d9f76e8a186c529f6159d5958684e3e77e20c2d0f343ba377020f24a
 WHIRLPOOL 
cf564cea80fc026fcd5f80d54e41dbf3c2daef776cec96a8347b1d2fc9acb0b654a567a529d2934df998c204798994be84930a25f06ff3e730457346f64b12ba
+DIST tasty-0.8.1.2.tar.gz 23234 SHA256 
1a1555d0c21f4efcddb4c0cd1a39263174c7bab5fa1275bda31b89ce52b5fd1e SHA512 
110c605cd8dae769a4ddd75f5940df5681eb1f38e005eaba72a4a9109637e3e8dedda7389dbac5a11fa8874da1f0551b7601cb7740efb8c6c6726e7a6ed10287
 WHIRLPOOL 
5caeee5d88c941843a61aed46567f5f0ae1c7a94281052cdbf0589fa9f3df0ba0f2c3feffb47ed905bc1ebe1fc33668792b9fee071eb6c1eafae6bbcb358633c
+DIST tasty-0.8.tar.gz 23157 SHA256 
8f3a0b5194200405679d46681942cdbed65c149d7dc529eb1eb8855c08ad288b SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-haskell/tasty/

2017-06-16 Thread Sergei Trofimovich
commit: 72fad80c96115ec0ce40f7a2c2ebd4d25118738e
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 16 20:34:18 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 16 20:34:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72fad80c

dev-haskell/tasty: drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-haskell/tasty/Manifest  |  5 -
 dev-haskell/tasty/tasty-0.11.0.2.ebuild | 33 -
 dev-haskell/tasty/tasty-0.11.0.3.ebuild | 33 -
 dev-haskell/tasty/tasty-0.2.ebuild  | 34 --
 dev-haskell/tasty/tasty-0.7.ebuild  | 36 
 dev-haskell/tasty/tasty-0.8.ebuild  | 37 -
 6 files changed, 178 deletions(-)

diff --git a/dev-haskell/tasty/Manifest b/dev-haskell/tasty/Manifest
index 2a55d404b49..5383b107970 100644
--- a/dev-haskell/tasty/Manifest
+++ b/dev-haskell/tasty/Manifest
@@ -1,10 +1,5 @@
 DIST tasty-0.10.1.2.tar.gz 26285 SHA256 
91e0b26ebe5263069747d92b6bdc3937d5513c2797c849b369f1282ca941b730 SHA512 
11171cb42b0c88cee04fc3c42c6003c6e501a16734f86ca4dcb33b7e28bc282fd4af56e88d398f6508ce9bd3da666a954fd3b50b8c89cf27906ea8694d753d3e
 WHIRLPOOL 
b36026976527533a8ac622791cfe77434de25a7f197826e0513953dc607c2bf34fad058e036195c95d959c4a776ed016cdd0516022cf54e62d3d1c3fbe1f550e
-DIST tasty-0.11.0.2.tar.gz 26199 SHA256 
3d87f99a046bfda752dcf558f36931135c784af9a2911a61bc4673199f933c63 SHA512 
598613dcb26b11ebd0f2e71df3d55b4d99a2d7e52cd627b4eddc16802ac5fed3d84d05e7109e953ead9667ac9d4f72ec4a33ca78669203d37b930ff91c8058fb
 WHIRLPOOL 
ab926817b832d3d32d4bb89f2bf3bb24e4102cfe063108dfac8a8f6ffd30314d0b3e8090eb23cc64231ba22205eeb183135158c97f44b97dfc9c6223e9c5f0ec
-DIST tasty-0.11.0.3.tar.gz 26243 SHA256 
ca51533c3b6fb36a63b7a6062d71024e3a823ae173779c1c81850959e29e7efa SHA512 
462798651aa9945d1d3302a8a028eeaecf5c21bf1af72611e0216187743ccb6c55131009fc633353c69d8e37b71156405f7b2fd7b7892629e0c185d6370499f5
 WHIRLPOOL 
3217a6323949e6cd7096a37bf07bf6bf67a85e2a2c68f7fa9d221b5ff11473d79a55df950644aabba68a993b9a6961dad0444576b9ef776ebc1604b36a4d16b4
 DIST tasty-0.11.0.4.tar.gz 26612 SHA256 
e0e248d50aaa098b2633d51a1c71f3da569ba5d6c0e77e0e39b6c9b7de97fd16 SHA512 
8ccf7701829fdb42e367ac1e5805363d7489c770139f6e608d1240cec9e54517230166783a857480b70ca424f40f9ab83313e03e893d6d21503706a4c2e84e95
 WHIRLPOOL 
fbec5ac0a434d9fd9776aa82c0e8b5d0002dc3fc9729281d3014a3304ed9149d65e16e42b93be86b2bebe0b7c79b5d13b4c216d5c723a94febd30648ece93165
-DIST tasty-0.2.tar.gz 11948 SHA256 
185dea647885229c076cee4087c8107fda78f7536cec7df452c72c0ee8220dea SHA512 
f0f5aef19334f95061a48cb71572f750169f945ae9910cb964cb611d306f26bb49a5698b418e40b64357f5fb503bfb3914247bfc7eb5682353f046ad54b825a7
 WHIRLPOOL 
b7101b6bea90d06edb63cc1d33ff0ea9e9c04088d0c00fdaf4989a3d6cbf2b647ff6dfd9b7af9eb839496597789d25d9c2eadccf8a1aa181040d631282741a42
 DIST tasty-0.3.1.tar.gz 12145 SHA256 
60ddc6503d45d5abc8c598dfb5b063f7b29a84a7def3088b06e47dee6f6ef646 SHA512 
aa727d8fcab7cbde07f721ad8eafc957f3fb6f01827a8ffc329bd1dba86bb40dbeb9e17c86becdd44aba592d57e29d07a5435ffbc8fabaa3c92fa0d0fa544e39
 WHIRLPOOL 
b221c0581a5ee725d8d7301e9df4bcf13cfccb542c0cc10be6bf5fffefa56493dffaf80c019b37c0ef1488f78c05e2d2feefa6c1cfc4fe802b869e5e46543153
 DIST tasty-0.5.2.tar.gz 15369 SHA256 
892483af037bb57061c5f6a764067dbed6830a1357fe3bdd8e9a8046f15d467e SHA512 
94116a4a12b842c4c136dfb5fff75e3843aa27c05fbad64e1752bd29b60691dbf12d093c5480e9c93d97ec1adbb98d579e63dd13921323e32e9127fb75bb3d37
 WHIRLPOOL 
ba0e5010ccf253c18668a8718e97b9b8b6f0b3a686ad1ef1ff7a42b6f64716efea04ec777b471121d8d44ff48e68174fc49cd0b47a16e622da17dda5afb79a4f
-DIST tasty-0.7.tar.gz 16765 SHA256 
ad431d944a923cc49b59b70f540cbcc8bea3392fe6b73fcdce4d6c70ea5a905b SHA512 
0b1e28b57bd6ff737ced69491c9d2485e37ec9b519e3d80f53ae03fd6335718353c36125d9f76e8a186c529f6159d5958684e3e77e20c2d0f343ba377020f24a
 WHIRLPOOL 
cf564cea80fc026fcd5f80d54e41dbf3c2daef776cec96a8347b1d2fc9acb0b654a567a529d2934df998c204798994be84930a25f06ff3e730457346f64b12ba
 DIST tasty-0.8.1.2.tar.gz 23234 SHA256 
1a1555d0c21f4efcddb4c0cd1a39263174c7bab5fa1275bda31b89ce52b5fd1e SHA512 
110c605cd8dae769a4ddd75f5940df5681eb1f38e005eaba72a4a9109637e3e8dedda7389dbac5a11fa8874da1f0551b7601cb7740efb8c6c6726e7a6ed10287
 WHIRLPOOL 
5caeee5d88c941843a61aed46567f5f0ae1c7a94281052cdbf0589fa9f3df0ba0f2c3feffb47ed905bc1ebe1fc33668792b9fee071eb6c1eafae6bbcb358633c
-DIST tasty-0.8.tar.gz 23157 SHA256 
8f3a0b5194200405679d46681942cdbed65c149d7dc529eb1eb8855c08ad288b SHA512 
0d7d82d7164efe80d458438b68c1d066803cf8d2e744ded66a3b60cccb64400fcfdfb75bb0731e49a9f3d2cfd601d841f69f4114aa80036a81f00f9b6ebd1771
 WHIRLPOOL 
74989eae6210ed251d4a02aed8273a3f664d7c5f8ae2e59c62834d2fe40a5a7f6704d36f3601e3bb294c029fd5366b2bf0ab415a1b086b91d39f5fc9d4140e04

diff --git a/dev-haskell/tasty/tasty-0.11.0.2.ebuild 
b/dev-haskell/tasty/tasty-0.11.0.2.ebuild
deleted file mode 100644

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

2017-06-16 Thread Andreas Hüttel
commit: df371dfd1f6bb2a1d2a6646674eb5e5c464f8ef2
Author: Kent Fredric  gentoo  org>
AuthorDate: Tue Jun 13 09:34:57 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 20:29:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df371dfd

app-text/po4a: Fix broken library path tweaks re bug #614122

The original code already had a "use lib" incantation that clearly
intended to imply ".", but ... did so by quoting it twice:

  q('.')   == "'.''"

That's too much '

Bug: https://bugs.gentoo.org/614122
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../po4a/files/po4a-0.45-614122-no-dot-inc.patch   | 26 ++
 app-text/po4a/po4a-0.45-r3.ebuild  |  3 +++
 app-text/po4a/po4a-0.47-r1.ebuild  |  4 
 3 files changed, 33 insertions(+)

diff --git a/app-text/po4a/files/po4a-0.45-614122-no-dot-inc.patch 
b/app-text/po4a/files/po4a-0.45-614122-no-dot-inc.patch
new file mode 100644
index 000..226fa0e9b6e
--- /dev/null
+++ b/app-text/po4a/files/po4a-0.45-614122-no-dot-inc.patch
@@ -0,0 +1,26 @@
+From: Kent Fredric 
+Date: Tue, 13 Jun 2017 21:10:34 +1200
+Subject: [PATCH] Fix broken use of lib '.'
+
+   "'.'" is not "."
+
+Bug: https://bugs.gentoo.org/614122
+---
+ Build.PL | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/Build.PL b/Build.PL
+index 43c6f80..9ee443b 100644
+--- a/Build.PL
 b/Build.PL
+@@ -1,6 +1,6 @@
+ #!/usr/bin/perl
+ 
+-use lib q('.');
++use lib q(.);
+ use Po4aBuilder;
+ 
+ my $build = Po4aBuilder->new
+-- 
+2.13.1
+

diff --git a/app-text/po4a/po4a-0.45-r3.ebuild 
b/app-text/po4a/po4a-0.45-r3.ebuild
index 985f6b206af..3523e66bb77 100644
--- a/app-text/po4a/po4a-0.45-r3.ebuild
+++ b/app-text/po4a/po4a-0.45-r3.ebuild
@@ -55,6 +55,9 @@ src_prepare() {
einfo "Your LINGUAS lists the following languages: $LINGUAS"
einfo "Removing locale files not listed in it ..."
 
+   # Fix bad escaping of '.' in @INC modification
+   epatch "${FILESDIR}/${P}-614122-no-dot-inc.patch"
+
# perl_rm_files also updates the Manifest file
# and therefore silences Perl as to .po files we're about to clean
perl_rm_files "${locales_to_remove[@]}"

diff --git a/app-text/po4a/po4a-0.47-r1.ebuild 
b/app-text/po4a/po4a-0.47-r1.ebuild
index a935ce38894..87a6be51c2a 100644
--- a/app-text/po4a/po4a-0.47-r1.ebuild
+++ b/app-text/po4a/po4a-0.47-r1.ebuild
@@ -35,6 +35,10 @@ DEPEND="${RDEPEND}
 # Running tests in parallel fails
 DIST_TEST="do"
 
+PATCHES=(
+   # Fix bad escaping of '.' in @INC modification
+   "${FILESDIR}/${PN}-0.45-614122-no-dot-inc.patch"
+)
 src_prepare() {
# Check against locale files in ${S}/pod/bin for mismatches
# with languages listed in PLOCALES



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/lifted-base/files/, dev-haskell/lifted-base/

2017-06-16 Thread Sergei Trofimovich
commit: 6def7fe632e4835fa56dadada4e8302ad6bd6e34
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 16 20:18:01 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 16 20:18:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6def7fe6

dev-haskell/lifted-base: drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-haskell/lifted-base/Manifest   |  2 --
 .../files/lifted-base-0.1.1-test-ghc-6.12.patch| 19 ---
 dev-haskell/lifted-base/lifted-base-0.1.1.ebuild   | 37 --
 dev-haskell/lifted-base/lifted-base-0.2.1.1.ebuild | 31 --
 dev-haskell/lifted-base/lifted-base-0.2.3.6.ebuild | 33 ---
 5 files changed, 122 deletions(-)

diff --git a/dev-haskell/lifted-base/Manifest b/dev-haskell/lifted-base/Manifest
index 9f9367304b6..c60c1da7c31 100644
--- a/dev-haskell/lifted-base/Manifest
+++ b/dev-haskell/lifted-base/Manifest
@@ -1,4 +1,2 @@
-DIST lifted-base-0.1.1.tar.gz 10640 SHA256 
759300ba3eaf4e78455066c438c3f64ccffd6af5d80550bf4d0075c57f180691 SHA512 
e213b8cc40e14e4ce1c85691b69fffefbc1049aaeeb5463543e6361073caf1068905e08a1f52a0b4f43c169b5a97788c0879c02f0f737614f44ac138d204bd29
 WHIRLPOOL 
3cf82c52ed6e7ed2688b8c53f1235032f15f1ca02c0f80a1695754fb3ccba5053bacb8e6a217fbbd632d374cd957f5ea6871385fe5d3bdc9b79f87b454122f8d
-DIST lifted-base-0.2.1.1.tar.gz 11706 SHA256 
b330aff460e52c7987dba68737487d1b2b15e23f03d0c1bc6d8a3062066c5518 SHA512 
b3def493a40b1d64e9fe0466e9718baf63568af7785eaca5aa47456ac01a10d2677cbe36dcc17705a47ebc9c84df01dc897ef8e1ddaefe88dcaec674353bb500
 WHIRLPOOL 
baae7dc5973e91c538c873a4d3229220e44cd8594adaf06d6df3ad5ea2c68a9a28a4ae9290785ff35b2a9c2c6a1cdba33c80bf3fa015027aebaf9847730ff816
 DIST lifted-base-0.2.3.10.tar.gz 11779 SHA256 
e677e560b176c40da2478d2f27dbeadc79630b2295ea3828603e0de4784d24fc SHA512 
f4251e0322b2802c6eebf7ee2f1d7b0bc8cb89464e710373ef66868c657bcdf9a5ca9a1c0f0b1c9d397c60fa25dbfe78e925820acdd2520633877dadea9c6370
 WHIRLPOOL 
2f6ec0a8e338751732b6fa7b3d88e1c289fb59c5072a5b4f41e64995814dd7eb089867aa54f6c2a1925b8e44480a93f17b1cae2fc37296c57f521178aed2c6dd
 DIST lifted-base-0.2.3.6.tar.gz 11613 SHA256 
57c5837d83f569bb72136ca89256e50e1ac168ee935804a8e7763e9d8322e1fb SHA512 
7fee2208c9043cdeccbea87d0ad44bff82505c10f55a539220484fe09792cd61562a94c9f6fbc2c6f360dd25e8d39ed139972432dbdb748fc2e1f2d47be8a658
 WHIRLPOOL 
fbd7185ac69d1cfde05c14826c2a73efba83b41d52002907301e3caf3fe8869a6f74f41cde3b47f6cf6684b62ff8e6c4ff82350d9be7c46219510a6254d81341

diff --git 
a/dev-haskell/lifted-base/files/lifted-base-0.1.1-test-ghc-6.12.patch 
b/dev-haskell/lifted-base/files/lifted-base-0.1.1-test-ghc-6.12.patch
deleted file mode 100644
index fe92161bbf0..000
--- a/dev-haskell/lifted-base/files/lifted-base-0.1.1-test-ghc-6.12.patch
+++ /dev/null
@@ -1,19 +0,0 @@
 lifted-base-0.1.1-orig/test/test.hs2012-04-28 23:47:19.0 
+1000
-+++ lifted-base-0.1.1/test/test.hs 2012-05-04 11:21:19.840997008 +1000
-@@ -1,4 +1,4 @@
--{-# LANGUAGE DeriveDataTypeable, FlexibleContexts #-}
-+{-# LANGUAGE DeriveDataTypeable, FlexibleContexts, CPP #-}
- 
- -- from base:
- import Prelude hiding (catch)
-@@ -38,7 +38,9 @@
- main :: IO ()
- main = defaultMain
- [ testSuite "IdentityT" runIdentityT
--, testSuite "ListT" $ fmap head . runListT
-+#if MIN_VERSION_base(4,3,0)
-+, testSuite "ListT" $ fmap head . runListT -- this test fails with ghc 
6.12.3
-+#endif
- , testSuite "MaybeT" $ fmap fromJust . runMaybeT
- , testSuite "ReaderT" $ flip runReaderT "reader state"
- , testSuite "WriterT" runWriterT'

diff --git a/dev-haskell/lifted-base/lifted-base-0.1.1.ebuild 
b/dev-haskell/lifted-base/lifted-base-0.1.1.ebuild
deleted file mode 100644
index e5ad2c7838f..000
--- a/dev-haskell/lifted-base/lifted-base-0.1.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-
-# ebuild generated by hackport 0.2.18.
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit base haskell-cabal
-
-DESCRIPTION="lifted IO operations from the base library"
-HOMEPAGE="https://github.com/basvandijk/lifted-base;
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test"
-
-RDEPEND=">=dev-haskell/base-unicode-symbols-0.1.1[profile?]
-   =dev-lang/ghc-6.8.2"
-DEPEND="${RDEPEND}
-   test? ( >=dev-haskell/hunit-1.2.2
-   =dev-haskell/test-framework-0.2.4
-   =dev-haskell/test-framework-hunit-0.2.4
-   =dev-haskell/transformers-0.2
-   =dev-haskell/cabal-1.9.2"
-
-PATCHES=("${FILESDIR}/${PN}-0.1.1-test-ghc-6.12.patch")

diff --git a/dev-haskell/lifted-base/lifted-base-0.2.1.1.ebuild 
b/dev-haskell/lifted-base/lifted-base-0.2.1.1.ebuild
deleted file 

[gentoo-commits] repo/gentoo:master commit in: app-i18n/sunpinyin/

2017-06-16 Thread Andreas Hüttel
commit: 8c0906ea66ab81c026028b346b31e87358eb75ee
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 20:17:37 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 20:17:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c0906ea

Revert "app-i18n/sunpinyin: Drop old, bug 605728" (is still needed)

This reverts commit a5c1b4df8e3d3c0b301334649f4f3eb5258fbe06.

 app-i18n/sunpinyin/Manifest  |  3 ++
 app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild | 64 
 2 files changed, 67 insertions(+)

diff --git a/app-i18n/sunpinyin/Manifest b/app-i18n/sunpinyin/Manifest
index 6a7d9e8dd0d..8ea93a2261f 100644
--- a/app-i18n/sunpinyin/Manifest
+++ b/app-i18n/sunpinyin/Manifest
@@ -1 +1,4 @@
+DIST dict.utf8.tar.bz2 1598995 SHA256 
d8261f6b0bfcdd40a9c4f366228f86b017e06c9d7d64d6ddec1c2c3511eea805 SHA512 
04ec55e4af4b58d29b1141a824b5c3de5dbaaab0133d88e477d9183db738fc63543b4004bf071e611c6ea0d4b4c161b73849a64ab75f4df5bb5116d7f52d8e34
 WHIRLPOOL 
c1ead1556dbcbe0811551cff2b84367ce9827a06733a3f5a6c2a229882ecd9b83069455146d6ea507d235ef3ad979cd10d373cfc806e150ad0fae9bd91330925
+DIST lm_sc.t3g.arpa.tar.bz2 25098718 SHA256 
c80093a8b43561e64158de4139967eef39b851432a2660e8050429d7560907cd SHA512 
1e5e577c92df2f230b6b5962298ef7c215f6069b53e8e2dd4c5ad3eb54f999fc239b0924b4ab031af59c3194da15d6317ea2860f158e805b5cf012eaad98
 WHIRLPOOL 
294b668ca6bcb765392f882bd9b0f16e403c8709eb2d7ae129e4c4aba3372b8b6d9b6a78df67b811a742136e4d1b203b5da7e7f7554296c6986a6fcba361b50b
+DIST sunpinyin-2.0.3.tar.gz 169394 SHA256 
4ab776e7563f69f8dbda8fac7cfaa42bd0db1ea68bab15f756094ce5398d83d1 SHA512 
25f1fc4b8f550663861f2c7426832924676f83e1f201689fde51b04ca78704b46dbbf2b92736234d5e1a729ba1bb23bd1f3a0394f6b8b54cb0df57b9bb7ece1d
 WHIRLPOOL 
71a4efedcbe4ec1dda9ecb1b94256a0e5e8ca570a234a8b378f85af68bf3da9f3b9220aee98c2f3ce509daa33996fea8b554e81594c299281ede58167cf633e8
 DIST sunpinyin-2.0.4_pre20130108.tar.xz 964764 SHA256 
e650957aced55075448b7f02298d0c5cf59a8b8e041e9c7d92d24cb5170de93f SHA512 
7c1dd7db8b800e9d436746a560a16de2c6777576868f2e7e28f6dcb767b91ccd62b974f9d4ce6bd6ce80d30e1ee83887c3ee03c227e7e9fa59c01db4867465b2
 WHIRLPOOL 
82535dcde38c2fce17877e465db7ebeaed14a7f305ad96ca451c5b35ae04244a94e9bde9ce51092a390964c557e39ab43742d2370342f9b72722b24f916c55d6

diff --git a/app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild 
b/app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild
new file mode 100644
index 000..c0dea27daf5
--- /dev/null
+++ b/app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="3"
+
+inherit eutils multilib scons-utils toolchain-funcs
+
+DESCRIPTION="SunPinyin is a SLM (Statistical Language Model) based IME"
+HOMEPAGE="https://sunpinyin.googlecode.com;
+SRC_URI="${HOMEPAGE}/files/${P}.tar.gz
+   https://open-gram.googlecode.com/files/dict.utf8.tar.bz2
+   https://open-gram.googlecode.com/files/lm_sc.t3g.arpa.tar.bz2;
+
+LICENSE="LGPL-2.1 CDDL"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+IUSE=""
+
+RDEPEND="dev-db/sqlite:3"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_unpack() {
+   unpack "${P}.tar.gz"
+   ln -s "${DISTDIR}/dict.utf8.tar.bz2" "${S}/raw/" || die "dict file not 
found"
+   ln -s "${DISTDIR}/lm_sc.t3g.arpa.tar.bz2" "${S}/raw/" || die "dict file 
not found"
+}
+
+src_prepare() {
+   epatch "${FILESDIR}/${P}-force-switch.patch"
+   epatch "${FILESDIR}/${P}-gcc-4.7.patch"
+}
+
+src_configure() {
+   tc-export CXX
+   myesconsargs=(
+   --prefix="${EPREFIX}"/usr
+   --libdir="${EPREFIX}"/usr/$(get_libdir)
+   --libdatadir="${EPREFIX}"/usr/lib
+   )
+}
+
+src_compile() {
+   escons || die
+}
+
+src_install() {
+   escons --install-sandbox="${ED}" install || die
+}
+
+pkg_postinst() {
+   elog ""
+   elog "If you have already installed former version of ${PN}"
+   elog "and any wrapper, please remerge the wrapper to make it work with"
+   elog "the new version."
+   elog ""
+   elog "To use any wrapper for ${PN}, please merge any of the following"
+   elog "packages: "
+   elog "emerge app-i18n/fcitx-sunpinyin"
+   elog "emerge app-i18n/ibus-sunpinyin"
+   elog "emerge app-i18n/scim-sunpinyin"
+   elog "emerge app-i18n/xsunpinyin"
+   elog ""
+}



[gentoo-commits] repo/gentoo:master commit in: dev-haskell/haskeline/, dev-haskell/haskeline/files/

2017-06-16 Thread Sergei Trofimovich
commit: 578f38a7d4bcb1c2daee0f376515be9a8334ea5f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Fri Jun 16 20:09:47 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Fri Jun 16 20:09:57 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=578f38a7

dev-haskell/haskeline: drop old, bug #621912

Reported-by: Ben Kohler
Reported-by: Michał Górny
Bug: https://bugs.gentoo.org/621912
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-haskell/haskeline/Manifest |  2 -
 .../files/haskeline-0.6.4.7-ghc-6.12.patch | 22 ---
 .../files/haskeline-0.6.4.7-ghc-7.5.patch  | 45 --
 .../files/haskeline-0.6.4.7-ghc-7.6.patch  | 22 ---
 dev-haskell/haskeline/haskeline-0.6.4.6-r1.ebuild  | 30 ---
 dev-haskell/haskeline/haskeline-0.6.4.7-r1.ebuild  | 35 -
 6 files changed, 156 deletions(-)

diff --git a/dev-haskell/haskeline/Manifest b/dev-haskell/haskeline/Manifest
index 5ccfbdf8dc0..255985bed4a 100644
--- a/dev-haskell/haskeline/Manifest
+++ b/dev-haskell/haskeline/Manifest
@@ -1,5 +1,3 @@
-DIST haskeline-0.6.4.6.tar.gz 62349 SHA256 
b2f2d275bd1f24370f13bd7607891ffdbbc7564d044dbbdabc5e83b27238d08c SHA512 
86acc677e6c202ad311e343b1a58e4195b62ef78ca28b441a4203546c0d7e44a150eca50686b8ef1ef52bfd0eb1662db6d03c58b35c0d2da2a08ef501bd3a3b8
 WHIRLPOOL 
6a01921a7d3297f61bb3c4a0575580d42485aec59581314d7ba093f95288769b65a3c912bbed1a73903a6069388f368676994899be865a93c4d54c62e2666902
-DIST haskeline-0.6.4.7.tar.gz 62258 SHA256 
301a7c21c73f52efe56763cf25d807d22dac3faea70538175ca843134524aaa2 SHA512 
e31c186a93fd06318ea9b6998c0fa2eea64bc9f7c054cbd3704cdfdebcfede4e6acae966f5233b78eebaaa3c308310954197282103680790c308fb2b61338ba9
 WHIRLPOOL 
51f0bdadb7396a4ff3b7eef2d0b9a9bb2312d5a10a0612f5438cdae0d03e1694b21ca5cef4657e5863b0459b28e21d67261c0386a872386333d7fca6efc40345
 DIST haskeline-0.7.1.2.tar.gz 68251 SHA256 
24f3c8be221b8eee25438afc7444a39a34a37a82376d195fcd83e357a8fa109d SHA512 
11d3ee9507d10d14ad05a45eb269a70a661e755502c7a39c5516508e66bda7c0d56c0d91db3e6ea665ee532001bef246be14a95c12eb257724616753e2b93f6c
 WHIRLPOOL 
f3c573d3e27f4d12c1c466c35c080b721973907bcf9110a62dacedbc315e9acabbd7a403423d106efb12cc73f46de9e12bf3c992f2a801e5583ad1b0caf661ce
 DIST haskeline-0.7.1.3.tar.gz 68291 SHA256 
b10e439b13f5dad8705cfdfabe1cfd2a9446a7ec1cfdfecf4321d6e48f759eaf SHA512 
eed183edd1af5b9d77c61278c40f07599900793e47858771810b48cbd178c34a06264910dd5484f76e5a03e53551e1035e1d291d8e3577ec6f4f5a9ba8d61d5d
 WHIRLPOOL 
db91df0b3da4ef833412831a5b4324cba0da35f07526c3d7b327d5b0d7ce6030a954ef08659a4d296847028ef22eaff5b96b2dad34a3fbb6da739fb34231635c
 DIST haskeline-0.7.2.1.tar.gz 68409 SHA256 
ae56a3c8ead8e33492e01921452db441568236c70df2a4f9086b08678ddf6427 SHA512 
a2f790b9bb27cc8681567c3c0c3476231976d08a0e2d1e9fb69301f55511edd0221034ae8af27ec4c9db4b15f2d72b8b716d013518d0b8d15d98e859dbf0321b
 WHIRLPOOL 
ae40dced4b1c307312d673676e237845ab5ca66ce3701d961ca290778c1cf127592669de6d7421885f04683852c1e4b478e8aab1b0160996dcaafb8158282187

diff --git a/dev-haskell/haskeline/files/haskeline-0.6.4.7-ghc-6.12.patch 
b/dev-haskell/haskeline/files/haskeline-0.6.4.7-ghc-6.12.patch
deleted file mode 100644
index 3e9adc61f61..000
--- a/dev-haskell/haskeline/files/haskeline-0.6.4.7-ghc-6.12.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-Workarounds build failure for ghc-6.12
-
-[18 of 27] Compiling System.Console.Haskeline.Backend.Terminfo ( 
System/Console/Haskeline/Backend/Terminfo.hs, 
dist/build/System/Console/Haskeline/Backend/Terminfo.o )
-
-System/Console/Haskeline/Backend/Terminfo.hs:200:9:
-Inferred type is less polymorphic than expected
-  Quantified type variable `m' escapes
-  In the expression: Writer.tell
-  In the definition of `output': output = Writer.tell
-diff --git a/System/Console/Haskeline/Backend/Terminfo.hs 
b/System/Console/Haskeline/Backend/Terminfo.hs
-index 1bd0373..d01e9ba 100644
 a/System/Console/Haskeline/Backend/Terminfo.hs
-+++ b/System/Console/Haskeline/Backend/Terminfo.hs
-@@ -197,7 +197,7 @@ runActionT m = do
- return x
- 
- output :: TermAction -> ActionM ()
--output = Writer.tell
-+output = \x -> Writer.tell x
- 
- outputText :: String -> ActionM ()
- outputText str = posixEncode str >>= output . const . termText . B.unpack

diff --git a/dev-haskell/haskeline/files/haskeline-0.6.4.7-ghc-7.5.patch 
b/dev-haskell/haskeline/files/haskeline-0.6.4.7-ghc-7.5.patch
deleted file mode 100644
index 086f05ba833..000
--- a/dev-haskell/haskeline/files/haskeline-0.6.4.7-ghc-7.5.patch
+++ /dev/null
@@ -1,45 +0,0 @@
 haskeline-0.6.4.7-orig/haskeline.cabal 2012-05-14 04:29:12.0 
+1000
-+++ haskeline-0.6.4.7/haskeline.cabal  2012-06-30 22:20:29.154377863 +1000
-@@ -50,7 +50,7 @@
- }
- else {
- if impl(ghc>=6.11) {
--Build-depends: base >=4.1 && < 4.6, containers>=0.1 && < 0.6, 
directory>=1.0 && < 1.2,

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

2017-06-16 Thread Alice Ferrazzi
commit: 86f0b5d69d4a6e1138c7c096302b76f972107b46
Author: Karl Linden  gmail  com>
AuthorDate: Fri Jun 16 16:37:18 2017 +
Commit: Alice Ferrazzi  gentoo  org>
CommitDate: Fri Jun 16 19:59:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86f0b5d6

sys-kernel/rt-sources: version bump to 4.11.5_p1

Package-Manager: Portage-2.3.5, Repoman-2.3.1
Closes: https://github.com/gentoo/gentoo/pull/4943

 sys-kernel/rt-sources/Manifest|  5 +++
 sys-kernel/rt-sources/rt-sources-4.11.5_p1.ebuild | 45 +++
 2 files changed, 50 insertions(+)

diff --git a/sys-kernel/rt-sources/Manifest b/sys-kernel/rt-sources/Manifest
index efb01fc87da..aaa471dfb27 100644
--- a/sys-kernel/rt-sources/Manifest
+++ b/sys-kernel/rt-sources/Manifest
@@ -1,13 +1,16 @@
 DIST deblob-3.18 127087 SHA256 
c720eabb3911f8dfa4398c4250853df4633018abebc01a509ee4a283c3e00941 SHA512 
6fe33762ba19aad7ff891b7b805cc26f6e2926f5e40c92fa45bc7f31bdeb5c8fc42b97e5d37d71b9422da239c7c54abd25f1fa2fa1e5733c6053abbf4c9e9011
 WHIRLPOOL 
c351a3ae15c59081fca69c1b5d9b9de10f024eb01f1426722a0d6ccb7caa34330be42897cd85cf19b22ff876352b0cec1c19707edc81c4cb01ad9c1df2e3d831
 DIST deblob-4.1 130695 SHA256 
2888a5a3b5e8e9ec242e4d702582fa1d739a1274fcd94643a9fb3516a210a8a7 SHA512 
b861b9b53f9295e5e993784031ce57cf8cddc418184ec00c28ed92c9e7660406e0ede581a93d0def36e7847b8e068c8ca6c4dfdd65c15cb174d6c5803c16214a
 WHIRLPOOL 
b90f55dd8702eb254968ed7689b50859833ed362e9aa1720ade96aa1f6f84e8f90f5d1eee034c8535e8bf767c0b5f8b0bc559219e8d81d4c6ed53bd5cfe5e65e
+DIST deblob-4.11 148749 SHA256 
4c31a9e39d302a7dfe4ba2bf550dc49312db5949a611dda343575e6ca3b8f06c SHA512 
e560c76cf340d88930e1b2ff1cd86ced028922faa30a0ae6ade34eb92dc8ca916917b62d84c33be5030c697326bc8808fd1fa259a6767eec83227a06df646199
 WHIRLPOOL 
37b8c818b9073affda24c481928bb4d606a47a72bdba70d1148669c368e417785149bd5d6e5f303b25ebfcfb1b021b52bc01c89a8120963a29c2e0cddba4752b
 DIST deblob-4.4 137370 SHA256 
7cf11c8594db0d2a10a1b02390c9ff8916f1d2a1fe9d59058ca45485500c5274 SHA512 
ea5f2f2cdbc97bdc90c2131f846761dc1630a53986db10d8e9d07d1ddee12a9d878c57790edd3ecc75ed9792d479b7b726c39d688a3926e850608c81b1b78a3a
 WHIRLPOOL 
bedd494be2032ce4b8911f25df906055d019af31ea6548b885482f870cd5313e09e7fb544fc8db268b3498cc18c199ae5701023839c972b48dbd8128239eeb75
 DIST deblob-4.9 146273 SHA256 
af4214b851928a53ef470ed8729122b9db910a6c0769d5d46a5de0b3e96f74f3 SHA512 
3654b28e72b343bafdb38de10ef0c3621db0539bc0e7434bc99bb8f8ed911d4c9e53ca4785fd193fcfec369328f014fa5c6f3bda51b6f1a8f98b8c37ece119a6
 WHIRLPOOL 
7b5ddba1469b6515d03d2e0e91a643ab0252803fde271ca710978186582a2f1a3b01deab9718c194bcdae0a79887636b6e98e604305402c9051b15a89fd393df
 DIST deblob-check-3.18 654232 SHA256 
30f22602b6ddf2cbccc16ef25fdc4d92755f3972e1c671d7cab8b9d6865eb155 SHA512 
2cff9abef479a55dd6a0699371be8227ba63b18da1fb153d5df382e0a5e4f1b745b7de256a367a36efa9d12e2aad5622cc288efef009feebf81c108dbef4fe16
 WHIRLPOOL 
e92927ad1565e80ce87e8bda372f8f7eb42bc0f47ad9b19fe5cf737903b2021fd6e3756e8d22b70f3037a46c254fec8b7285b37beb10795ccb4ca99d38876f8c
 DIST deblob-check-4.1 674781 SHA256 
54aa33e23a31ead6f982b830be86003c306b88f0d0a9f96c7dc66fe7cd274acb SHA512 
51fe9d70d723992aaf70f8bfcfcc12ecfedd7a039402ddae07858fb087693b00cd80d1e0e1a5053e049f2a2b8c58ed23e4598e2dae902c499c08bc2eeb33
 WHIRLPOOL 
d2c22280e12863793f8e866b126be53ee10d564373addfe9399b2afe22dd7584513c050f334ea08e6d63dd27a1574f2754456bad9d0a42e8c8d9995eec27aed0
+DIST deblob-check-4.11 734493 SHA256 
39312ac206c249257018e85d4c3455f9bcad0205b4bd18eef28971492090fb43 SHA512 
f3ae2b80ac16f223349c741877c64d619fda2be9ce5a28741cfaf626cb2104547f0f638e6d56afa524054b4ec4ccc8f720515c8518ab333d95bfd29cd8ad056d
 WHIRLPOOL 
c2b0289118d4db9972c25e08a4268b89d7b9ea54ba32adb5da06929823ddd852a4b5538b9e8953ff91967645b3089e8a8123ae5fc6411e24500f11f4e034c301
 DIST deblob-check-4.4 694225 SHA256 
e142bafdd5a05280d5280fbf109aadab3af9ce71152ab2d27ad41e96766e0c3e SHA512 
6554ae567566da4d30e94a37622f88343b8e96ab39a9204fee34de4ddb5dac8c4906b25843b63c2388d03a4441821c25d395b3c39fc875c498a69e677a4f0cb5
 WHIRLPOOL 
414f60a64a2c14f01eedebc84f5adfabf0562bcf76545a57e757cb6ac914ffc49c90c329eedd1aafb1ee752bfc082fd4f6af173774f4f853ddd637525fbeeb9b
 DIST deblob-check-4.9 717834 SHA256 
4599c6eabd53bb352e9b536d574152e72467548add19757fc6b8e34355928d6b SHA512 
46258698f1c574b44a8c5c78cc2b7fdbaca746976266974ee0f6787904531754b17ad15d542b68e07d4633ee91a8e2d9c32a991ea214292ac072c4f26deed9c9
 WHIRLPOOL 
f1afe1f8d8bcd6fc43a01da5eb012d117687418f049212fe20fe7ea88700c482bc6fd3e917102ff9d12baf11e678a40355877a7d214da8b3cbf2b585a51a012e
 DIST linux-3.18.tar.xz 80934708 SHA256 
becc413cc9e6d7f5cc52a3ce66d65c3725bc1d1cc1001f4ce6c32b69eb188cbd SHA512 
2f0b72466e9bc538a675738aa416573d41bbbd7e3e2ffd5b5b127afde609ebc278cec5a3c37e73479607e957c13f1b4ed9782a3795e0dcc2cf8e550228594009
 WHIRLPOOL 
81634af631b7d30ccd1f4798f96f44d9aa0ba6609b73f2747eb6aebaf7a99487fb2dbd45767605186182533cb222bfd9236e8dd5e11a04fdb67c211e4e0a91d6
 DIST 

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

2017-06-16 Thread Andreas Hüttel
commit: c62ea072e887e722705a94bc95f5211ccaabba2c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 19:55:19 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 19:55:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c62ea072

sci-mathematics/nestedsums: Drop old, bug 605728

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sci-mathematics/nestedsums/Manifest|  1 -
 .../nestedsums/nestedsums-1.4.12-r2.ebuild | 31 --
 2 files changed, 32 deletions(-)

diff --git a/sci-mathematics/nestedsums/Manifest 
b/sci-mathematics/nestedsums/Manifest
index 279cb092458..1236f1e89aa 100644
--- a/sci-mathematics/nestedsums/Manifest
+++ b/sci-mathematics/nestedsums/Manifest
@@ -1,2 +1 @@
-DIST nestedsums-1.4.12.tar.gz 415265 SHA256 
4d290529373e83d205d9fe2d1ff1d9f2f95b3dd1dba1585d298ba52593ce831c SHA512 
2fbda746655958f34d83f61779fa7036152a75a8b90423d039ce8693b59fcec3794e1898759c2ee64c4751a745f9f2a910be607b1d656fcc32c093a9cfe4bd4e
 WHIRLPOOL 
60ee37d78731739e05bc49010ad904d2258ddd1b8d3ae6f4ad1a3c50b5d077255b76202309a1d7d84185ff059e11615d72b39bad8f5ec9b139bc946b5e6e013f
 DIST nestedsums-1.5.1.tar.gz 511814 SHA256 
a68446ab86cc4e6cccda90ba9cd7180c8394639b89d2e2d4d9cfd1684e023545 SHA512 
e68e6b58125c5049aebe8d3769b92b7af7c40ea1bcf2caac5091a4c79015c51793d0c78dae20e01d05bdaac9106d54c8a59f6b2157ea6d497cfd117008127aa2
 WHIRLPOOL 
465dd3e4fdfdb1fc636f7f118057338b668a09965a89497fdd2666961eb74bfb4d87cf66d6bc88aade541516d8001fd63b501b58a6ad59b71ae9f5d4eec2284f

diff --git a/sci-mathematics/nestedsums/nestedsums-1.4.12-r2.ebuild 
b/sci-mathematics/nestedsums/nestedsums-1.4.12-r2.ebuild
deleted file mode 100644
index 66b1786a50e..000
--- a/sci-mathematics/nestedsums/nestedsums-1.4.12-r2.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-EAPI="3"
-DESCRIPTION="A GiNaC-based library for symbolic expansion of certain 
transcendental functions"
-HOMEPAGE="http://wwwthep.physik.uni-mainz.de/~stefanw/nestedsums/;
-IUSE="doc"
-SRC_URI="http://wwwthep.physik.uni-mainz.de/~stefanw/download/${P}.tar.gz;
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RDEPEND=">=sci-mathematics/ginac-1.5 

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

2017-06-16 Thread Andreas Hüttel
commit: 6e6d71616267a5dc7b26609ce9fca3b8ad718511
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 19:54:00 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 19:54:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e6d7161

net-misc/mico: Drop old, bug 605728

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-misc/mico/Manifest  |   1 -
 net-misc/mico/mico-2.3.13-r7.ebuild | 125 
 2 files changed, 126 deletions(-)

diff --git a/net-misc/mico/Manifest b/net-misc/mico/Manifest
index 2c31ae67614..2d8ef8b81ab 100644
--- a/net-misc/mico/Manifest
+++ b/net-misc/mico/Manifest
@@ -1,4 +1,3 @@
-DIST mico-2.3.13-gentoo-patches-0.3.tar.bz2 9547 SHA256 
4d76e7e696ac4af60dc40ecc81d3a142cbec410c2e1b9155270a7865e71afca4 SHA512 
1e22066313f3af495678094a5b83f502b080e645b7379bd6b860d71f69b7a02db19047d3f8433b04d3d1f0a2b41e56e480f217041381027638d2b84a373bef5d
 WHIRLPOOL 
fbfabcaafee1ca286697a3ae37c24f8451283683e1f1787f8df3c267b8e4b8da69c79817b82bec810852069e021f541db3f05f76feec6256243bb2ad70a41788
 DIST mico-2.3.13-gentoo-patches-20170529.tar.xz 15196 SHA256 
9d616c90f1ef4db44709e393fd2ab74d1e17f7e65541900c3735c312376de681 SHA512 
ea7cbf00b33ed5eaacc5418539562645cecefc6f2ee7929d58517f7775fa62ac07a26967cd84570410281930b7a4570302f4edc9a9cc76661a99a5f28bce37cf
 WHIRLPOOL 
52494f75a92cfd3e06baf5074b17ce8776f120bb38c63ffea09be78ba95735d629098c2bc34a2289ff5c2ed383d697f450530b76b9f73919dcdacf8072765773
 DIST mico-2.3.13.tar.gz 3269814 SHA256 
a355fd0205440f0c8793b68d105b179942d883babc6b1fe69113707b88fe1d69 SHA512 
b4c09b5a41e480b8211529776b83e84669e1e91ccba7a0d2d940834f217bc7f3d9ef74101dadc43778c6813b733ccfdae2b00eab2f0993b58193bb9f270e3895
 WHIRLPOOL 
e8f5b92502a012e4f316ae341a25a0c24def7718f7a85fed7e24de5298d593b1a2af2fcb21e89d857e6da65d6b0765108eb3f77e820874d98047127d07734389
 DIST mico--gentoo-patches-20170529.tar.xz 16716 SHA256 
e5271dd2c8742b19fd89abb014bd02fa1a1a1acd17d1cf740f61127f0aafd367 SHA512 
33361ab7a40fe897a48bf69fb33ffc3afa3da224a1589cfd7c4660deb00dcb9dd76dd2bc84ed968db6dd8a9e22aa493bb4b78713606675b6021f081eb56deb10
 WHIRLPOOL 
72b5777543e5d7f48cf0b64d4134fd33d6f29c3889281ccdecb9306d846af2f965138dd8093459c7bdb8b26a335c0bce3fab2d10282e59f6f441a45ac79742cf

diff --git a/net-misc/mico/mico-2.3.13-r7.ebuild 
b/net-misc/mico/mico-2.3.13-r7.ebuild
deleted file mode 100644
index 39931615587..000
--- a/net-misc/mico/mico-2.3.13-r7.ebuild
+++ /dev/null
@@ -1,125 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-inherit eutils flag-o-matic toolchain-funcs autotools
-
-DESCRIPTION="A freely available and fully compliant implementation of the 
CORBA standard"
-HOMEPAGE="http://www.mico.org/;
-SRC_URI="http://www.mico.org/${P}.tar.gz;
-
-PATCH_VER=0.3
-
-LICENSE="GPL-2 LGPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux 
~sparc-solaris ~x86-winnt"
-IUSE="gtk postgres qt4 ssl tcl threads X"
-RESTRICT="test" #298101
-
-[[ -z ${PATCH_VER} ]] || \
-   SRC_URI="${SRC_URI} 
https://dev.gentoo.org/~haubi/distfiles/${P}-gentoo-patches-${PATCH_VER}.tar.bz2;
-
-# doesn't compile:
-#   bluetooth? ( net-wireless/bluez )
-
-RDEPEND="
-   gtk?   ( x11-libs/gtk+:2 )
-   postgres?  ( dev-db/postgresql )
-   qt4?   ( dev-qt/qtgui:4[qt3support] )
-   ssl?   ( dev-libs/openssl )
-   tcl?   ( dev-lang/tcl:0 )
-   X? ( x11-libs/libXt )
-"
-DEPEND="${RDEPEND}
-   >=sys-devel/flex-2.5.2
-   >=sys-devel/bison-1.22
-"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
-   EPATCH_SUFFIX=patch epatch "${WORKDIR}"/patches
-
-   eautoreconf
-
-   # cannot use big TOC (AIX only), gdb doesn't like it.
-   # This assumes that the compiler (or -wrapper) uses
-   # gcc flag '-mminimal-toc' for compilation.
-   sed -i -e 's/,-bbigtoc//' "${S}"/configure
-
-   if use qt4; then
-   sed -i -e "s, -lqt\", $(pkg-config --libs Qt3Support)\"," 
configure ||
-   die "cannot update to use Qt3Support of qt4"
-   fi
-}
-
-src_configure() {
-   tc-export CC CXX
-
-   if use gtk; then
-   # need gtk-1 wrapper for gtk-2
-   export PATH="${WORKDIR}"/helpers:${PATH}
-   fi
-
-   # Don't know which version of JavaCUP would suffice, but there is no
-   # configure argument to disable checking for JavaCUP.
-   # So we override the configure check to not find 'javac'.
-   export ac_cv_path_JAVAC=no
-
-   # '--without-ssl' just does not add another search path - the only way
-   # to disable openssl utilization seems to override the configure check.
-   use ssl || export ac_cv_lib_ssl_open=no
-
-   # CFLAGS aren't used when checking for , but CPPFLAGS 
are.
-   use qt4 && append-cppflags $(pkg-config --cflags Qt3Support)
-
-   local myconf=

[gentoo-commits] repo/gentoo:master commit in: app-i18n/sunpinyin/

2017-06-16 Thread Andreas Hüttel
commit: a5c1b4df8e3d3c0b301334649f4f3eb5258fbe06
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 19:44:22 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 19:44:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5c1b4df

app-i18n/sunpinyin: Drop old, bug 605728

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-i18n/sunpinyin/Manifest  |  3 --
 app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild | 64 
 2 files changed, 67 deletions(-)

diff --git a/app-i18n/sunpinyin/Manifest b/app-i18n/sunpinyin/Manifest
index 8ea93a2261f..6a7d9e8dd0d 100644
--- a/app-i18n/sunpinyin/Manifest
+++ b/app-i18n/sunpinyin/Manifest
@@ -1,4 +1 @@
-DIST dict.utf8.tar.bz2 1598995 SHA256 
d8261f6b0bfcdd40a9c4f366228f86b017e06c9d7d64d6ddec1c2c3511eea805 SHA512 
04ec55e4af4b58d29b1141a824b5c3de5dbaaab0133d88e477d9183db738fc63543b4004bf071e611c6ea0d4b4c161b73849a64ab75f4df5bb5116d7f52d8e34
 WHIRLPOOL 
c1ead1556dbcbe0811551cff2b84367ce9827a06733a3f5a6c2a229882ecd9b83069455146d6ea507d235ef3ad979cd10d373cfc806e150ad0fae9bd91330925
-DIST lm_sc.t3g.arpa.tar.bz2 25098718 SHA256 
c80093a8b43561e64158de4139967eef39b851432a2660e8050429d7560907cd SHA512 
1e5e577c92df2f230b6b5962298ef7c215f6069b53e8e2dd4c5ad3eb54f999fc239b0924b4ab031af59c3194da15d6317ea2860f158e805b5cf012eaad98
 WHIRLPOOL 
294b668ca6bcb765392f882bd9b0f16e403c8709eb2d7ae129e4c4aba3372b8b6d9b6a78df67b811a742136e4d1b203b5da7e7f7554296c6986a6fcba361b50b
-DIST sunpinyin-2.0.3.tar.gz 169394 SHA256 
4ab776e7563f69f8dbda8fac7cfaa42bd0db1ea68bab15f756094ce5398d83d1 SHA512 
25f1fc4b8f550663861f2c7426832924676f83e1f201689fde51b04ca78704b46dbbf2b92736234d5e1a729ba1bb23bd1f3a0394f6b8b54cb0df57b9bb7ece1d
 WHIRLPOOL 
71a4efedcbe4ec1dda9ecb1b94256a0e5e8ca570a234a8b378f85af68bf3da9f3b9220aee98c2f3ce509daa33996fea8b554e81594c299281ede58167cf633e8
 DIST sunpinyin-2.0.4_pre20130108.tar.xz 964764 SHA256 
e650957aced55075448b7f02298d0c5cf59a8b8e041e9c7d92d24cb5170de93f SHA512 
7c1dd7db8b800e9d436746a560a16de2c6777576868f2e7e28f6dcb767b91ccd62b974f9d4ce6bd6ce80d30e1ee83887c3ee03c227e7e9fa59c01db4867465b2
 WHIRLPOOL 
82535dcde38c2fce17877e465db7ebeaed14a7f305ad96ca451c5b35ae04244a94e9bde9ce51092a390964c557e39ab43742d2370342f9b72722b24f916c55d6

diff --git a/app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild 
b/app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild
deleted file mode 100644
index c0dea27daf5..000
--- a/app-i18n/sunpinyin/sunpinyin-2.0.3-r1.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-inherit eutils multilib scons-utils toolchain-funcs
-
-DESCRIPTION="SunPinyin is a SLM (Statistical Language Model) based IME"
-HOMEPAGE="https://sunpinyin.googlecode.com;
-SRC_URI="${HOMEPAGE}/files/${P}.tar.gz
-   https://open-gram.googlecode.com/files/dict.utf8.tar.bz2
-   https://open-gram.googlecode.com/files/lm_sc.t3g.arpa.tar.bz2;
-
-LICENSE="LGPL-2.1 CDDL"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
-IUSE=""
-
-RDEPEND="dev-db/sqlite:3"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig"
-
-src_unpack() {
-   unpack "${P}.tar.gz"
-   ln -s "${DISTDIR}/dict.utf8.tar.bz2" "${S}/raw/" || die "dict file not 
found"
-   ln -s "${DISTDIR}/lm_sc.t3g.arpa.tar.bz2" "${S}/raw/" || die "dict file 
not found"
-}
-
-src_prepare() {
-   epatch "${FILESDIR}/${P}-force-switch.patch"
-   epatch "${FILESDIR}/${P}-gcc-4.7.patch"
-}
-
-src_configure() {
-   tc-export CXX
-   myesconsargs=(
-   --prefix="${EPREFIX}"/usr
-   --libdir="${EPREFIX}"/usr/$(get_libdir)
-   --libdatadir="${EPREFIX}"/usr/lib
-   )
-}
-
-src_compile() {
-   escons || die
-}
-
-src_install() {
-   escons --install-sandbox="${ED}" install || die
-}
-
-pkg_postinst() {
-   elog ""
-   elog "If you have already installed former version of ${PN}"
-   elog "and any wrapper, please remerge the wrapper to make it work with"
-   elog "the new version."
-   elog ""
-   elog "To use any wrapper for ${PN}, please merge any of the following"
-   elog "packages: "
-   elog "emerge app-i18n/fcitx-sunpinyin"
-   elog "emerge app-i18n/ibus-sunpinyin"
-   elog "emerge app-i18n/scim-sunpinyin"
-   elog "emerge app-i18n/xsunpinyin"
-   elog ""
-}



[gentoo-commits] repo/gentoo:master commit in: app-i18n/skk-jisyo/

2017-06-16 Thread Andreas Hüttel
commit: 7c84128892667c1dc02d4d9cc8647a78ab9f40f1
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jun 16 19:41:06 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 16 19:41:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c841288

app-i18n/skk-jisyo: Drop old, bug 605728

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-i18n/skk-jisyo/Manifest|  1 -
 app-i18n/skk-jisyo/skk-jisyo-201101.ebuild | 56 --
 2 files changed, 57 deletions(-)

diff --git a/app-i18n/skk-jisyo/Manifest b/app-i18n/skk-jisyo/Manifest
index 6735bd71a68..9396890b719 100644
--- a/app-i18n/skk-jisyo/Manifest
+++ b/app-i18n/skk-jisyo/Manifest
@@ -1,2 +1 @@
-DIST skk-jisyo-201101.tar.bz2 7880875 SHA256 
a57d9a39b705d13f8c90caf9ce8cf3f729852020a6e5b43bcc9e1d7383b252b4 SHA512 
bbdaa6916bda9b545b4afc665fd9c7023797a2f1d2568c019b8f06515eca24f707cdcee8d85f3b0ea2793df4836a233eb131e78572229676cca909591f3e3648
 WHIRLPOOL 
11b4d880fb41f5fb3c704cc18c664ef0f043f6d232f34be6ba1c3737c7d9ccb0aec2361234ceea933e4ec4dbacc344de58af5d975c74412b847044df4aff89d9
 DIST skk-jisyo-201605.tar.xz 6288104 SHA256 
170e8260bc692d43f3cd321a06cf393a02239c462e76657bcde886ddb6d2cb8d SHA512 
1093d363fe571c3e3e05fa54046fc4b88cbed2fbd104838576c83694556585401c3affa0afb2ed078c6f1b06f62a7b14145b1305f6fef089f160b4073900c7a1
 WHIRLPOOL 
f9f5ce13ba7cf86beb41214d682ad514a4181d3867afefd2daf44c829be1ae7f0bcb9c7e39f1a50fa01deab8f205226e7b3916231431e531b9ea474935f642c1

diff --git a/app-i18n/skk-jisyo/skk-jisyo-201101.ebuild 
b/app-i18n/skk-jisyo/skk-jisyo-201101.ebuild
deleted file mode 100644
index 5f09df1a0b9..000
--- a/app-i18n/skk-jisyo/skk-jisyo-201101.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="3"
-
-DESCRIPTION="Jisyo (dictionary) files for the SKK Japanese-input software"
-HOMEPAGE="http://openlab.ring.gr.jp/skk/dic.html;
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2 public-domain freedist"
-SLOT="0"
-KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~sparc-solaris"
-IUSE="cdb"
-
-COMMON_DEPEND="cdb? ( dev-db/cdb )"
-DEPEND="${COMMON_DEPEND}
-   sys-apps/gawk"
-RDEPEND="${COMMON_DEPEND}
-   !app-i18n/skk-jisyo-extra
-   !app-i18n/skk-jisyo-cdb"
-
-src_prepare() {
-   rm SKK-JISYO.wrong.annotated SKK-JISYO.china_taiwan.header
-   rm SKK-JISYO.noregist SKK-JISYO.not_wrong SKK-JISYO.hukugougo
-   rm SKK-JISYO.notes SKK-JISYO.requested SKK-JISYO.pubdic+
-}
-
-src_compile() {
-   # bug 184457
-   unset LANG LC_ALL LC_CTYPE
-
-   for f in SKK-JISYO.* zipcode/SKK-JISYO.* ; do
-   mv ${f} ${f}.annotated
-   gawk -f "${FILESDIR}"/unannotation.awk ${f}.annotated > 
$(basename ${f}) || die
-   if use cdb ; then
-   gawk '
-   /^[^;]/ {
-   s = substr($0, index($0, " ") + 1)
-   print "+" length($1) "," length(s) ":" 
$1 "->" s
-   }
-   END {
-   print ""
-   }
-   ' $(basename ${f}) | cdbmake $(basename ${f}).cdb 
"${T}"/$(basename ${f}) || die
-   fi
-   rm ${f}.annotated
-   done
-}
-
-src_install() {
-   # install dictionaries
-   insinto /usr/share/skk
-   doins SKK-JISYO.* || die
-
-   dodoc ChangeLog* READMEs/committers.txt edict_doc.txt || die
-}



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

2017-06-16 Thread Patrice Clement
commit: 0359da1ff882940714604c2e5e4a622569cba67d
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jun 16 18:48:29 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 16 18:49:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0359da1f

app-misc/tmux: remove FAQ from DOCS array. improve equild's quality.

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

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 app-misc/tmux/tmux-.ebuild | 35 +--
 1 file changed, 17 insertions(+), 18 deletions(-)

diff --git a/app-misc/tmux/tmux-.ebuild b/app-misc/tmux/tmux-.ebuild
index a3361bdd2bf..27997de379f 100644
--- a/app-misc/tmux/tmux-.ebuild
+++ b/app-misc/tmux/tmux-.ebuild
@@ -18,15 +18,18 @@ IUSE="debug selinux utempter vim-syntax kernel_FreeBSD 
kernel_linux"
 
 CDEPEND="
dev-libs/libevent:0=
+   sys-libs/ncurses:0=
utempter? (
kernel_linux? ( sys-libs/libutempter )
kernel_FreeBSD? ( || ( >=sys-freebsd/freebsd-lib-9.0 
sys-libs/libutempter ) )
-   )
-   sys-libs/ncurses:0="
-DEPEND="${CDEPEND}
+   )"
+
+DEPEND="
+   ${CDEPEND}
virtual/pkgconfig"
-RDEPEND="${CDEPEND}
-   dev-libs/libevent:=
+
+RDEPEND="
+   ${CDEPEND}
selinux? ( sec-policy/selinux-screen )
vim-syntax? (
|| (
@@ -35,21 +38,21 @@ RDEPEND="${CDEPEND}
)
)"
 
-DOCS=( CHANGES FAQ README TODO )
+DOCS=( CHANGES README TODO example_tmux.conf )
 
-src_prepare() {
-   # respect CFLAGS and don't add some includes
-   sed \
-   -e 's:-I/usr/local/include::' \
-   -e 's:-O2::' \
-   -i Makefile.am || die
+PATCHES=(
+   # usptream fixes (can be removed with next version bump)
+   "${FILESDIR}/${PN}-2.4-flags.patch"
+)
+
+S="${WORKDIR}/${P/_/-}"
 
+src_prepare() {
# bug 438558
# 1.7 segfaults when entering copy mode if compiled with -Os
replace-flags -Os -O2
 
default
-
eautoreconf
 }
 
@@ -59,17 +62,13 @@ src_configure() {
$(use_enable debug)
$(use_enable utempter)
)
+
econf "${myeconfargs[@]}"
 }
 
 src_install() {
default
 
-   einstalldocs
-
-   dodoc example_tmux.conf
-   docompress -x /usr/share/doc/${PF}/example_tmux.conf
-
if use vim-syntax; then
insinto /usr/share/vim/vimfiles/ftdetect
doins "${FILESDIR}"/tmux.vim



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

2017-06-16 Thread Brian Evans
commit: 745ba2c40ddb417974ff6b1d579000383edc314f
Author: Brian Evans  gentoo  org>
AuthorDate: Fri Jun 16 17:42:06 2017 +
Commit: Brian Evans  gentoo  org>
CommitDate: Fri Jun 16 17:42:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=745ba2c4

dev-php/PEAR-Net_SmartIRC: Version bump to 1.1.11

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-php/PEAR-Net_SmartIRC/Manifest |  1 +
 .../PEAR-Net_SmartIRC-1.1.11.ebuild| 23 ++
 2 files changed, 24 insertions(+)

diff --git a/dev-php/PEAR-Net_SmartIRC/Manifest 
b/dev-php/PEAR-Net_SmartIRC/Manifest
index fdfdfad8d9d..289464688b2 100644
--- a/dev-php/PEAR-Net_SmartIRC/Manifest
+++ b/dev-php/PEAR-Net_SmartIRC/Manifest
@@ -1 +1,2 @@
 DIST Net_SmartIRC-1.1.10.tar.gz 927009 SHA256 
f6f46ec80584b9a62d8bfa3b4180fbd663f473aeb56e8f2440510ded5f66b760 SHA512 
16ad30d358af99f40c53a75cf5f1c944a3e68f4c1cffd586acd61ceed280d5d1fcd4f4d5e88db55f1f66c37c5b7f37aec2f45a26dc6b98860eacb42c9f3fbea5
 WHIRLPOOL 
5fa0d4f1a9e05287b2079d99ba05c85e2c79e8db8a371e455a56fb3537f9761b90f216a8f2f8531e049a42e5d2e534d671ec77a65970dd68395e5c085eb336fa
+DIST Net_SmartIRC-1.1.11.tgz 165935 SHA256 
46abe9f1a210d54d1b3a0cd87d4b8a0c22823fddab6a91988ee0bade2e2d9f82 SHA512 
280c7ab9cd9ac263d7ecad26aabfd9ff3e2c2727794e85c944985139fc7b1c57288b3b02de07ab1139dcd58eb7f12ac47be41601661ea05fcf2b53d780183054
 WHIRLPOOL 
944b57af2a77075a53df5ec6a98c8a7ebd9c6c4c2404be963167efe4720a17febd1943bc4274ca19a8c4f22113f1ce92ba43ad57fdcb2af26c6a66faccd9508e

diff --git a/dev-php/PEAR-Net_SmartIRC/PEAR-Net_SmartIRC-1.1.11.ebuild 
b/dev-php/PEAR-Net_SmartIRC/PEAR-Net_SmartIRC-1.1.11.ebuild
new file mode 100644
index 000..765fc0aab3f
--- /dev/null
+++ b/dev-php/PEAR-Net_SmartIRC/PEAR-Net_SmartIRC-1.1.11.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit php-pear-r2
+
+DESCRIPTION="PHP class to communicate with IRC networks"
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc examples"
+DOCS=( CREDITS FEATURES docs/HOWTO README.md )
+
+src_install() {
+   php-pear-r2_src_install
+   use examples && dodoc -r docs/examples
+
+   if use doc; then
+   dodoc docs/DOCUMENTATION
+   dodoc -r docs/HTML
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: app-cdr/gcdemu/

2017-06-16 Thread Michał Górny
commit: cd4c0505b84d7749104af7183f158f86518aa848
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 15:56:31 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd4c0505

app-cdr/gcdemu: Add myself as co-maint

 app-cdr/gcdemu/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/app-cdr/gcdemu/metadata.xml b/app-cdr/gcdemu/metadata.xml
index f998f663a17..3c7b1adb630 100644
--- a/app-cdr/gcdemu/metadata.xml
+++ b/app-cdr/gcdemu/metadata.xml
@@ -5,6 +5,10 @@
 tetrom...@gentoo.org
 Alexandre Rostovtsev
   
+  
+mgo...@gentoo.org
+Michał Górny
+  
   
 cdemu
   



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

2017-06-16 Thread Michał Górny
commit: f1e40657aa72beff261c10853fb9418a1bd7d9a0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 14:39:45 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1e40657

dev-libs/libmirage: Bump to 3.1.0

 dev-libs/libmirage/Manifest   |  1 +
 dev-libs/libmirage/libmirage-3.1.0.ebuild | 52 +++
 2 files changed, 53 insertions(+)

diff --git a/dev-libs/libmirage/Manifest b/dev-libs/libmirage/Manifest
index 65231a0cae0..9ee0d1cfe24 100644
--- a/dev-libs/libmirage/Manifest
+++ b/dev-libs/libmirage/Manifest
@@ -1,2 +1,3 @@
 DIST libmirage-3.0.3.tar.bz2 210568 SHA256 
d65b70fe7045a4575d3bc71678d515db93e0b047bca58798b515e202497a2d0e SHA512 
f2f74cef07be964516ea5a502d0b16a9631ae8973fea3d2196b5e5da7545958c6c06dcd639f8b6d10570f125fab3c2f4b4e53cedaa30528f1c8c34f33dd88a82
 WHIRLPOOL 
51280bd4470cd78c95b9ed9b6d1533ff36bce1ddf7d7305934c7aba0b5a379c208418db330500fb177602566a9b17677dbe72ac3d6f1606013880ec1a567a9b5
 DIST libmirage-3.0.4.tar.bz2 210624 SHA256 
cc05370f0cc15348910a149207384f03b48b204a19215c1510924244996a3f3f SHA512 
e892133977daf8364f3542789057029de4ae2660ceec565368ad3cf6875fabab6d89142fd8080c1786b269b0b47ebbf867a951cc2f6a8a23c3cb3f1d6574f7f2
 WHIRLPOOL 
81c84cf078ec793ea71028a72b64f8ab4c7e1693ead0260b2347d9f1bbb619d084352f4ff3f1eee4e3d66f73571d65dadf67f614e87a7030feaa79353b99b833
+DIST libmirage-3.1.0.tar.bz2 234649 SHA256 
b67ecc1056cf1986321d637f1a52cb36b0f5bec4fac08fd9c71075dcb7dd7363 SHA512 
fcf49b171b6f84ad32cdeeb63def76e8bd5c5f33aadcc678e06d7388d0c351e8047beae6db9db7b69f704ab4db86aca4e8fb9817b2450c70b5f1d3d7a3760394
 WHIRLPOOL 
d6ad530b06de6e0ba9a0c9583ff0e7c5e41eeaaf30b2c871d9745b2da6246cb20fd94eebb60968dc6c899e7e492443a1457460bf81e18383f5144024f26a

diff --git a/dev-libs/libmirage/libmirage-3.1.0.ebuild 
b/dev-libs/libmirage/libmirage-3.1.0.ebuild
new file mode 100644
index 000..ecbacf7ce60
--- /dev/null
+++ b/dev-libs/libmirage/libmirage-3.1.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cmake-utils xdg-utils
+
+DESCRIPTION="CD and DVD image access library"
+HOMEPAGE="http://cdemu.org;
+SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0/11" # subslot = libmirage soname version
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE="doc +introspection"
+
+RDEPEND=">=app-arch/bzip2-1:=
+   >=app-arch/xz-utils-5:=
+   >=dev-libs/glib-2.28:2
+   >=media-libs/libsamplerate-0.1:=
+   >=media-libs/libsndfile-1.0:=
+   sys-libs/zlib:=
+   introspection? ( >=dev-libs/gobject-introspection-1.30 )"
+DEPEND="${RDEPEND}
+   dev-util/desktop-file-utils
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig
+   doc? ( dev-util/gtk-doc )"
+
+src_configure() {
+   local mycmakeargs=(
+   -DGTKDOC_ENABLED="$(usex doc)"
+   -DINTROSPECTION_ENABLED="$(usex introspection)"
+   -DPOST_INSTALL_HOOKS=OFF # avoid sandbox violation, #487304
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   local DOCS=( AUTHORS README )
+   cmake-utils_src_install
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   xdg_mimeinfo_database_update
+}



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

2017-06-16 Thread Michał Górny
commit: fbd04c62f9f509f7249aaf9003200d63c23d9652
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 14:21:52 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd04c62

dev-libs/libmirage: Add myself as co-maint

 dev-libs/libmirage/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-libs/libmirage/metadata.xml b/dev-libs/libmirage/metadata.xml
index f998f663a17..3c7b1adb630 100644
--- a/dev-libs/libmirage/metadata.xml
+++ b/dev-libs/libmirage/metadata.xml
@@ -5,6 +5,10 @@
 tetrom...@gentoo.org
 Alexandre Rostovtsev
   
+  
+mgo...@gentoo.org
+Michał Górny
+  
   
 cdemu
   



[gentoo-commits] repo/gentoo:master commit in: app-cdr/gcdemu/

2017-06-16 Thread Michał Górny
commit: 64796d3a2355b46c12fe2d9b316e9d1ee6bfba0a
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 16:08:00 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64796d3a

app-cdr/gcdemu: Bump to 3.1.0

 app-cdr/gcdemu/Manifest|  1 +
 app-cdr/gcdemu/gcdemu-3.1.0.ebuild | 56 ++
 2 files changed, 57 insertions(+)

diff --git a/app-cdr/gcdemu/Manifest b/app-cdr/gcdemu/Manifest
index ed8c1098ca6..4e19273804a 100644
--- a/app-cdr/gcdemu/Manifest
+++ b/app-cdr/gcdemu/Manifest
@@ -1,2 +1,3 @@
 DIST gcdemu-3.0.0.tar.bz2 45506 SHA256 
1357a02720f05644929bae167fcc64dc58784f406aa426bcd806955cc458aad4 SHA512 
c4d0d64638e0f7ecccfe11ab1a8527ba2002a5bbb382b2d4e8b58eaaa0a10140ee85b8d62ba93fe4ecdc2882301dfe62a08373dbb9e5404d5ddf7592cd5f0b7d
 WHIRLPOOL 
18c8615ad6ae166c2111e7dd2f1c1d46b4128d99bb11a3f7e2f297c58dfff3e38ad981547703b13af940b0d1e6e3bccb7098180fde51458bfe34e3b19a66a465
 DIST gcdemu-3.0.1.tar.bz2 45508 SHA256 
d9d9cd4270803a021d55205fad2c76f65b51f5b509dde21c70475bb8577896b6 SHA512 
e5a1905642c08145669c5eb9e65159d5a9a2fbcd1657edd28ae091ee1d02673e56bb7007df2a9f95863cae1a1ab01916bb43b4d10fe054d52507beabd7dd532f
 WHIRLPOOL 
e4fd9e009cdbad1f79e1a579339e27225fa76e132d136c9dba5e9388551d0a3c27448bf870d9f4344e99d47f1a7b0cce3c712e26569fc77f0206671cbbef2553
+DIST gcdemu-3.1.0.tar.bz2 48036 SHA256 
025c801300aa6ef13b9da484d8bd1ec2774c53e898942d44a43b4d27c0e0b666 SHA512 
e3e0369cc443bc47befa52989cc2bc5d62e4c9462bb8de1c3dd8563e1240ba7f59fc8cc54aed2e96bdb23a5f6e2fa11ca36073dfa066409f097a1dca619866fc
 WHIRLPOOL 
17da254190e933e7677d021f7f5a06bbeb19e82b05249e8189d4fcb441b95b33e8b86a996a5ef9603a771e53a40ced5f12ef81d29e48f58684b7a02e4a7cac3a

diff --git a/app-cdr/gcdemu/gcdemu-3.1.0.ebuild 
b/app-cdr/gcdemu/gcdemu-3.1.0.ebuild
new file mode 100644
index 000..a4fe8e67d41
--- /dev/null
+++ b/app-cdr/gcdemu/gcdemu-3.1.0.ebuild
@@ -0,0 +1,56 @@
+# 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,5,6}} )
+
+inherit cmake-utils gnome2-utils python-single-r1 xdg-utils
+
+DESCRIPTION="Gtk+ GUI for controlling cdemu-daemon"
+HOMEPAGE="http://cdemu.org/;
+SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# librsvg for pixbuf-loader
+RDEPEND="${PYTHON_DEPS}
+   app-cdr/cdemu-daemon:0/7
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   gnome-base/librsvg:2
+   x11-libs/gdk-pixbuf[introspection]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/libnotify[introspection]"
+DEPEND="${COMMON_DEPEND}
+   dev-util/desktop-file-utils
+   >=dev-util/intltool-0.21
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS README )
+
+src_prepare() {
+   python_fix_shebang src/gcdemu
+   eapply_user
+}
+
+src_configure() {
+   local mycmakeargs=( -DPOST_INSTALL_HOOKS=OFF )
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   GNOME2_ECLASS_GLIB_SCHEMAS=1 \
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   GNOME2_ECLASS_GLIB_SCHEMAS=1 \
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdemu-daemon/

2017-06-16 Thread Michał Górny
commit: 99a06edea4442adb5c4cb6776a3bc1f7c4cd4688
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 15:30:32 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99a06ede

app-cdr/cdemu-daemon: Add myself as co-maint

 app-cdr/cdemu-daemon/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/app-cdr/cdemu-daemon/metadata.xml 
b/app-cdr/cdemu-daemon/metadata.xml
index f998f663a17..3c7b1adb630 100644
--- a/app-cdr/cdemu-daemon/metadata.xml
+++ b/app-cdr/cdemu-daemon/metadata.xml
@@ -5,6 +5,10 @@
 tetrom...@gentoo.org
 Alexandre Rostovtsev
   
+  
+mgo...@gentoo.org
+Michał Górny
+  
   
 cdemu
   



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdemu/

2017-06-16 Thread Michał Górny
commit: 42748c65ae172f7cd8d54d0e053fbfccb98cca10
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 15:35:00 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42748c65

app-cdr/cdemu: Add myself as co-maint

 app-cdr/cdemu/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/app-cdr/cdemu/metadata.xml b/app-cdr/cdemu/metadata.xml
index 9f6ae374121..268d427433c 100644
--- a/app-cdr/cdemu/metadata.xml
+++ b/app-cdr/cdemu/metadata.xml
@@ -5,6 +5,10 @@
 tetrom...@gentoo.org
 Alexandre Rostovtsev
   
+  
+mgo...@gentoo.org
+Michał Górny
+  
   
 Pull app-cdr/cdemu-daemon dependency, 
useful in chroot environment (bug #315491). Do not disable until you know what 
you are doing.
   



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdemu/

2017-06-16 Thread Michał Górny
commit: c14de13e42e213476c4b4c010775fbcf212b3bab
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 15:47:27 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c14de13e

app-cdr/cdemu: Bump to 3.1.0

 app-cdr/cdemu/Manifest   |  1 +
 app-cdr/cdemu/cdemu-3.1.0.ebuild | 51 
 2 files changed, 52 insertions(+)

diff --git a/app-cdr/cdemu/Manifest b/app-cdr/cdemu/Manifest
index 773d4659099..1d21772bbdc 100644
--- a/app-cdr/cdemu/Manifest
+++ b/app-cdr/cdemu/Manifest
@@ -1,2 +1,3 @@
 DIST cdemu-client-3.0.0.tar.bz2 40300 SHA256 
359310a57422d5c59c8f93be0da827a2437edb1e62f455f5614089c28e34ae88 SHA512 
807fe98dc8743a227484d20587c9f9e06cac649d74d8fdd520dba9bb2a2f268ba977c922333fdcf91201baf4f08595044939f6d5bd4834ec26cf689b6a36f361
 WHIRLPOOL 
bd7d5b0ebe75aad5629f8cdf9f1de04fbdf7ad37400163d69e1eb9bfe35a47bc2bca5b58a031bb022611689d7c7c480fcc98403f883643ccc3cc2049f98fb814
 DIST cdemu-client-3.0.1.tar.bz2 40299 SHA256 
cf7b2fedf14bb64df7e318546756e133eef9e018e04218f74891f676eda9e5cd SHA512 
3abbedef15f2e30fc53d9f199c7f31b838da16a763d3dcb0e4745d0dd76675c0962e951a378dec3d8b13f024c339d5f3aa978fdf1f7e664332a684ab279d788d
 WHIRLPOOL 
32099514bdbafda3994646cd08ac0f31fa345963090ef7506185db3955d953bbc42be018b970611bb4664f494790cbd99bb577dc169c53b4295110a26f28bf4d
+DIST cdemu-client-3.1.0.tar.bz2 43066 SHA256 
336a078b0b1f70de81d7ee92ee3e3a1e1957843accc4e90a876aeef28648d868 SHA512 
62c0650cfd18c1e8edca8c53a343460bf12aae35909251fce24098f16b48a3b30d083d436f494bf23145c06252f943f75413f024c6744696f5ad75cac0a15509
 WHIRLPOOL 
a84940b0c0bd1de343cdd81ea47be6612f4e50b03b00e2c8aba62b90f685d867212babf93a2ade02ef3e9798b80bfd11cff4479e8b4a5866ab58dd936a0d8dc2

diff --git a/app-cdr/cdemu/cdemu-3.1.0.ebuild b/app-cdr/cdemu/cdemu-3.1.0.ebuild
new file mode 100644
index 000..725457621cf
--- /dev/null
+++ b/app-cdr/cdemu/cdemu-3.1.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} )
+
+inherit bash-completion-r1 cmake-utils python-single-r1 xdg-utils
+
+DESCRIPTION="Command-line tool for controlling cdemu-daemon"
+HOMEPAGE="http://cdemu.org;
+SRC_URI="mirror://sourceforge/cdemu/cdemu-client-${PV}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="amd64 ~hppa x86"
+IUSE="+cdemu-daemon"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   cdemu-daemon? ( app-cdr/cdemu-daemon:0/7 )"
+DEPEND="${RDEPEND}
+   dev-util/desktop-file-utils
+   >=dev-util/intltool-0.21
+   >=sys-devel/gettext-0.18"
+
+S=${WORKDIR}/cdemu-client-${PV}
+
+src_prepare() {
+   python_fix_shebang src/cdemu
+   eapply -p2 "${FILESDIR}/${PN}-3.0.0-bash-completion-dir.patch"
+   eapply_user
+}
+
+src_configure() {
+   local DOCS=( AUTHORS README )
+   local mycmakeargs=(
+   -DPOST_INSTALL_HOOKS=OFF
+   -DGENTOO_BASHCOMPDIR="$(get_bashcompdir)"
+   )
+   cmake-utils_src_configure
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdemu-daemon/

2017-06-16 Thread Michał Górny
commit: 14f4e13acb238f31a18db354a6a7d4e17a641455
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 15:30:40 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 16:14:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14f4e13a

app-cdr/cdemu-daemon: Bump to 3.1.0

 app-cdr/cdemu-daemon/Manifest  |  1 +
 app-cdr/cdemu-daemon/cdemu-daemon-3.1.0.ebuild | 41 ++
 2 files changed, 42 insertions(+)

diff --git a/app-cdr/cdemu-daemon/Manifest b/app-cdr/cdemu-daemon/Manifest
index ae99b7e9d6a..8a8cc2f18aa 100644
--- a/app-cdr/cdemu-daemon/Manifest
+++ b/app-cdr/cdemu-daemon/Manifest
@@ -1,2 +1,3 @@
 DIST cdemu-daemon-3.0.2.tar.bz2 76029 SHA256 
8c9a0d292e0fd71538f123f2b795f4490ff455f68b391b97812be369c34a4f06 SHA512 
eb09880dcc984c8843cf0254d45aeaa39cff8faa3a415352c574b59ea6778de9bc10a9634022c1fe5c7de8aa0493129a7bd15b859a7ca3895d5175b2bb2296e1
 WHIRLPOOL 
918554fead811418bd1e1b1ad8cd22342c5e5559eb7e4f3e30f1ccb1c889547bbd7f70bd7af86c19af86a7c432281f3d98a2fb5d0ef59f57dcddf3ad0fc10686
 DIST cdemu-daemon-3.0.4.tar.bz2 76121 SHA256 
8101b4ad659de3cc53dcc39b14381d7d85b3dad131d780caefe9cc1c03551ecd SHA512 
e5a3da9dd87e6ad6cf226e53628dbee76eb26104c51a511adb5b6b65d46e3f213a682ba0d845c8a651d939c44b853b6a9881e542e10f9f7d1dd579b8fc408154
 WHIRLPOOL 
b92a78732f177e31b7a80288ec5253d92d5e92f796612cc288c7b976e46d5ebff3e8a2ffd9c3a0a1acb785893a0a663317ece75c3ed5c30592f69d53c01199b8
+DIST cdemu-daemon-3.1.0.tar.bz2 79943 SHA256 
498f0f2fe2225de76acfe0b3dbf9606e4e2eb57ac9d29da9d48064b62587bc4f SHA512 
f0f3de31b2bf6a97852bb1bc45d301e6cbf401ca7499f42e99811ca62431e86b344c83ddb4420571f2038e43432711e04817b9ed3859893eec7d36fbad8dfdb5
 WHIRLPOOL 
52768032e498607879ddecf96a6d5c909293488ec93c55aae7e9c0537e5b9d12567f6b3bc70c74fb65756a379bb7248954009c1f79ebd1e9090b36fe19b0ca80

diff --git a/app-cdr/cdemu-daemon/cdemu-daemon-3.1.0.ebuild 
b/app-cdr/cdemu-daemon/cdemu-daemon-3.1.0.ebuild
new file mode 100644
index 000..df832275938
--- /dev/null
+++ b/app-cdr/cdemu-daemon/cdemu-daemon-3.1.0.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit cmake-utils
+
+DESCRIPTION="Daemon of the CDEmu optical media image mounting suite"
+HOMEPAGE="http://cdemu.org;
+SRC_URI="mirror://sourceforge/cdemu/${P}.tar.bz2"
+
+LICENSE="GPL-2+"
+SLOT="0/7" # subslot = CDEMU_DAEMON_INTERFACE_VERSION_MAJOR in CMakeLists.txt
+KEYWORDS="~amd64 ~hppa ~x86"
+IUSE=""
+
+RDEPEND=">=dev-libs/glib-2.32:2
+   >=dev-libs/libmirage-${PV}:=
+   >=media-libs/libao-0.8.0:=
+   sys-apps/dbus
+   >=sys-fs/vhba-20130607"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS README )
+
+pkg_postinst() {
+   elog "You will need to load the vhba module to use cdemu devices:"
+   elog " # modprobe vhba"
+   elog "To automatically load the vhba module at boot time, edit your"
+   elog "/etc/conf.d/modules file."
+
+   if [[ -e "${ROOT}etc/conf.d/cdemud" ]]; then
+   elog
+   elog "${PN} no longer installs an init.d service; instead, it 
is"
+   elog "automatically activated when needed via dbus."
+   elog "You can therefore remove ${ROOT%/}/etc/conf.d/cdemud"
+   fi
+}



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

2017-06-16 Thread Ian Stakenvicius
commit: 18372ce735d4930c62d26ec0d5c3de5e4de1d508
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Fri Jun 16 14:55:02 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Fri Jun 16 15:47:31 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18372ce7

mail-client/thunderbird-bin: bump to 52.2 for security (bug pending)

Bumped directly to stable by maintainer

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 mail-client/thunderbird-bin/Manifest   | 116 ++---
 ...52.1.1.ebuild => thunderbird-bin-52.2.0.ebuild} |   2 +-
 2 files changed, 59 insertions(+), 59 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 6be99bca1f1..1499496a6a3 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -56,63 +56,63 @@ DIST thunderbird-45.8.0-uk.xpi 536438 SHA256 
168d7efd879e77f7ad7c3e4b736e486110f
 DIST thunderbird-45.8.0-vi.xpi 540498 SHA256 
39f64a6acdc7c916ab73c279db67f0f51db77d756f2154ca22420695e8e5f95c SHA512 
8b25e83624ea59a231af846e4d9baa6d7640c26d70b6e259731f7871af594435d18dd55da1341045b81fc53eb4e9427b5b968d12d6699816911e687a16dcc51e
 WHIRLPOOL 
2b826048ef8188f5e39ccecddf6970787ffec4b663c41744424267a213c89fac8f3fe323ac00197fcced814b34a88b815f9e6fc5f03ebb4ba2585d1ec3990feb
 DIST thunderbird-45.8.0-zh-CN.xpi 489209 SHA256 
05f2e3d25501ef42422e9e2624f15ea61f48a355148d867c29626af1b09a769d SHA512 
346e15d8bec51831c2205a653e84735abfdbc6db1266a8545d138ed11f492d58f3529fc15870eac3c7c28cc60300de2fde85b6927338a2c8fb03ca90449f8a81
 WHIRLPOOL 
e00e1628bfc9f260f40f554ddef9da7a10f16ec7eff86f9d9602f2915c265174009e2c45e8fb862454aafb3073f4ab88fb3a2079acf62c3c36bdf42272cc9968
 DIST thunderbird-45.8.0-zh-TW.xpi 490850 SHA256 
7de83d5ec93a97bfebe8a692313998c02479c8bef705983d3f976360a4a02094 SHA512 
0b473f3eadbcc63225c5f2b90d6be26d79a139aa72120d45dcfad4a22a20309f11c4565e72bbe9281f0ea0fe508173e046d3f747975f1619f6717835361ab70f
 WHIRLPOOL 
20e7590e8dae3ae07e4823ff855964cefeb479143e7761974c715a214f2b48f9f957a536fc2f300cd3da61d8464c073b0015ffd9576b6e3e6998ad7cfe8112f3
-DIST thunderbird-52.1.1-ar.xpi 604235 SHA256 
8989418e122cc3b92d2691e74db44cccfe238369e02e66fbb78832620978fcd3 SHA512 
e490f84c768035be7d3eef8640907310a81a5361d08e49bc2e70dfeeb4d37f4b1ac981a6ae2a0539abc0a26c04b99e578d79dca88694db4658210cb43c397144
 WHIRLPOOL 
a12dbabf8ecc5ed00e2dc14b400976f2822ff2deff952aea76111938d69a557fad421388341c54a59ae496b2be1afaf98127bd825f7db56851a557d7ef3345cd
-DIST thunderbird-52.1.1-ast.xpi 541173 SHA256 
44c8f31f8f6fdb34e5287e0bddae18257e85f5962b68be3a1f3a4c92ef5235d5 SHA512 
bd8cc800583e31056d3dcab8a6c10c1b25ed49853c7891df64856df776c29573575b156faf6649cb32708fca819fdc4e51f09d0714c7209cbaab592e7c0b6111
 WHIRLPOOL 
99f7945f46074d86a9c6fce4432837d3873214b7e3fe71ae27c77e698a7a84e38a4905de1b755cf2eefd4e1973ee74c105b04324b5b8de348e4b52854ef1f4e6
-DIST thunderbird-52.1.1-be.xpi 570931 SHA256 
f48fde4ea03dcf4a257f13cb2c3c85c9a47f12e846c027964b8c89a62497b735 SHA512 
aacd3e48f458f149b04dbb62d56f350b1f87f7b0f99cd22f9ab0f344a853a507705c16446f45d60a4f105c74410b17bd3aab6161577afc4fd3fc4def2d4884fb
 WHIRLPOOL 
bfd736429804b88688a8b0d7c3a00a98bc034309a9bcbb5ed0b13ffaad15bbcd1060e77a5c3cb92a3969690e35c6c9d568864f64f7a73717addbfb2a74ef2855
-DIST thunderbird-52.1.1-bg.xpi 634897 SHA256 
36185e9fd2f82e422924336a331cec03b7581bab3411237e71b45f89e5635fa4 SHA512 
c20fba0ed6da50d28214948c5b766ca0c5fbd5ab536f0cbb060359d14041a618d1a549a2e88e44243b66f0a98952805bc012e243f41aa2fc8d23df8ab9f00e2b
 WHIRLPOOL 
385efda51f10399dc27cd2e37351cb7ac80231f957a3141cc722902b6323f503f9b3fc7f49cc644c4143aadeddba1328a24730d145aa3fe1ecba29dc66110881
-DIST thunderbird-52.1.1-bn-BD.xpi 676900 SHA256 
6a85c7568b7f4ff35becda3ba679d8eb85a4c00aef8836b26edf3bffd3383435 SHA512 
f1b5cf136effc9384927aae124c4a31a2775614a69bab1570cd8bee7dd66d48c2a60ae029bfa90b8e9fdd63815e879d2f7ab4ee3cbcf280fccf83773934517bc
 WHIRLPOOL 
f0318f08852866694647445b26b19b39d0c3f6aef509b00a3c9ab000cce9d10e9b8aa4f550bf38900e1c8cdbe01090317033cac52bbefbf8a38afc684af277ab
-DIST thunderbird-52.1.1-br.xpi 559380 SHA256 
f59aad266c68c72fc55f56869591680b4c7fa433cda06d66c0eb20064edb6dcf SHA512 
f3176cf9e61428f598517c803c3811851859151752bb8e493284913d9bfdb6683c952f9715dad71e48b485ed316b56429743090707848348661badd53f858cd2
 WHIRLPOOL 
6654149c476de0ee8a19df99b7a639e23ed4cf9b2a0a33869e88fa893968d79d47a507e1939064eb87131897ab95452ecbf7aa5f03c2f51c5f4f58b914efb5ab
-DIST thunderbird-52.1.1-ca.xpi 569910 SHA256 
4e1ae4b5bec308de0042373fda1f7202df576a3ef1edf574e805edb2666d3ff3 SHA512 
51e724e28d38de1779801ee86a19aea977defa6b1171fbc5b4936a9de73f25214772469d46221b1dd70f31de48e64477e87a98485603c0e1809bed552b26d5ba
 WHIRLPOOL 
544194c197f56eb70986b1e45691d2cd585fa9a81dadf06f98ac9ad24598ff65b07fa321b51d4a47b5678e587f09a939d054f35e341c38195fa8b76d62182672
-DIST thunderbird-52.1.1-cs.xpi 579149 SHA256 
de56bde1e43551b20961fda8e1715a6d805ea9224b60ea80bfe3bcb05894253e SHA512 

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

2017-06-16 Thread Ian Stakenvicius
commit: d05198ea2ed3269fd1bca91de5e19dfdc244684c
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Fri Jun 16 14:56:14 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Fri Jun 16 15:47:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d05198ea

mail-client/thunderbird-bin: remove old/vulnerable 45.8

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 mail-client/thunderbird-bin/Manifest   |  59 
 .../thunderbird-bin/thunderbird-bin-45.8.0.ebuild  | 164 -
 2 files changed, 223 deletions(-)

diff --git a/mail-client/thunderbird-bin/Manifest 
b/mail-client/thunderbird-bin/Manifest
index 1499496a6a3..74c82f4861b 100644
--- a/mail-client/thunderbird-bin/Manifest
+++ b/mail-client/thunderbird-bin/Manifest
@@ -1,61 +1,4 @@
-DIST lightning-4.7.3.tar.xz 1134460 SHA256 
8834c59a58797af747805f9a67ebcc311607a98bea4d185689d7c35f024bce7b SHA512 
ebca7d74413a15f404ce094e5a4d047d79f250a04c6c1e78a3ab5aa49946e1e1ac81a1f7703bf2e631d841b98df66a21982788ee15af14eefe1d51eca29e1d48
 WHIRLPOOL 
34a28dcf707fe564433a663c2ac3efc79dff409cf22383425f38d4ac06184ac980f35a6ee81ab8e9d7030189538188ffe2d5fa426e0aa1cb8a11ebe6191a5fd1
 DIST lightning-5.4.1.tar.xz 1891296 SHA256 
2c7eb418eeb54919542cb097c76af8c61ada1738b30562a54dfdc1091a416e7f SHA512 
d5e6197f53443f7baf2c8487293e59ce825bd835870c2b38c64feefcf3a20ee46a41e9c2320f55157bed1a647ef51e97b74efc1d1ad41be34caefc943bfdaaca
 WHIRLPOOL 
5e046c862e4fe9ac47a7be4d7fc3342ccb67b8f76c1f8b542f75a8b81816ef7edff9b478525e2fe0efb7d21eb0fe8cec3ee28185a73338ba59e84de3dd622c4a
-DIST thunderbird-45.8.0-ar.xpi 490775 SHA256 
4b8787643041672aad90d1297eacad510ec88d04461d19680d38e004add14f21 SHA512 
95adc2355a27d916f96c43bee0d4527990a1eba8cee9e4f85cd6da9202ea0ff4fb89fde127abce03962e185b272f5bbd1d8cfb032f6f32c7895bf3dde8d35a2c
 WHIRLPOOL 
76ce6c4ff429fe4cc51f87f297ebead9962503ca1fd68c8e0783c43d9898bf370b00a222b7b17f1ed191f30557f9181b56019dc6ac3757fc08fdd53544039864
-DIST thunderbird-45.8.0-ast.xpi 428059 SHA256 
0ead56ad0cd11503a60d5f75cd181c0c85eb7ccbc42fa69c76d3cd64f29a0cd9 SHA512 
eccf877f29099445ef59c833929a50df7424aa475b1ceb432d6c10b28c71b4e25d840a4fedb1afb3106896da0afeb47a3af1b763553dc6ae40f7bda5b0d65040
 WHIRLPOOL 
a370c261f19a1f1ef3da37abc7665d8f1fb0ba1bdc75e5f11dc923e08a0c7a0b891e166cf99273222d0aee92a4d8a06f38ebc5168c121c391b53909cd6e79690
-DIST thunderbird-45.8.0-be.xpi 469096 SHA256 
2836d2485234e541fe2d227af8f8c477173051d6bd6a9db5bab6c64a74fefd04 SHA512 
76c758a68685f974d174f5787b72e5f1955ba9be00c305e2e1b1adaeb17e4e7bc765d1263d6395cb89656112c936618d84cb80a7dc860684d49a4677638eef56
 WHIRLPOOL 
6413aa5fb12931034ebde044f747213bf4da53036b5af9184ffb1c61d6822810669561e8290ec02c016b2add1e25a4a57469dbe42b91384eda6980edb70c9a2d
-DIST thunderbird-45.8.0-bg.xpi 524300 SHA256 
b0cb9a7684809eb71e3d79ffab9b6422c97a4dcf4cb8cbff14a403c79a425980 SHA512 
519c1b0555c0bc8e53e28f50fe14c7b5ecd563ab6b6cd1c30886f9d3d7982fe3fd1712c9ea8ca34d2d59dc63ef62fe69bbaf4610c2d25987e4545d82fa611f50
 WHIRLPOOL 
870a9a9d8648e47bce395eea957a57ecdb6c1b1c1cb5832ce9c594dc4255e276e841e0a1e63e510bb0ac17792882cd89eaaf70c938379369f4c4039370fa095f
-DIST thunderbird-45.8.0-bn-BD.xpi 581440 SHA256 
2c34a6f9a28605551953d40ec868ed42eb605d85ea6012bb868adc2251f18158 SHA512 
de6f8090ebe80131e0d5aeef66287290a6292a12abaa00138d6c7683b8b7d3f619f0b731bc7f45ccabbb670c699404c2c1d606adc6b307c70370224fdd214aeb
 WHIRLPOOL 
348d6e7d5f380cb2a5ca478360011daa487663ed544031e6ebd820354366eb382d63adf503819c8b39240f617ac866b07de70fc7601143473933ba81b207ffdf
-DIST thunderbird-45.8.0-br.xpi 466000 SHA256 
058d05618dd1c83dd854203e043c328ec1f6937f5b85f9ff50245f7e428b3c01 SHA512 
8914cb4869e984ee1207165b5a8ec7fffb822312714dff20e6d1084fad81f596eb310643a34b166dca84739d69a3e8b86ccee2ec0b9dcefe1d6ae39f45ca4f99
 WHIRLPOOL 
4729b1e8067b398676adb8cb7b625f58037cbeb366911514e9c5f344f7867f8c24a7431531395fd23a30934309d63716920c28969324647e1d77d2a0c471c94f
-DIST thunderbird-45.8.0-ca.xpi 467980 SHA256 
89e8c63dfeeb9a8a68f28278302143c2f1b71193bfefacbbbcdf70cb47357046 SHA512 
44382e8fb0070dceffeaeff0b78b415da5ff092f3ed50a6a7af67b847ba83245bfa3a37dbbeccaf856fa42de36887b02cf0e2628933e5819e65b8a3d8c856e29
 WHIRLPOOL 
3644b6abf6448ae181ab89f83c15ce0c5982229e8cd235f48303a359b07d7efdd9c577793f738f2b6b92bfb7f7f64c8efbcab2f037d51321d5de4333ecd909ba
-DIST thunderbird-45.8.0-cs.xpi 474327 SHA256 
50e02729a1a4740a3964b085572b8d17c551cf71438d24e8d1845073d5048ad2 SHA512 
3c5df605e47145db9687e23fc4b455ce8b8d0e50eb16a8b96e3acd47e7d483721f425cb496e32a211b34d982b4932469da4b4b7cb0ba0a53865aaa5deacacb12
 WHIRLPOOL 
60cbbec26155bd3299a2b65b62b864e2bc89f4453a94e13339f23bbb9aa4b2a4ae29c8d951e76486e76d756c6837022da2c9724038baf155532fe331743b1663
-DIST thunderbird-45.8.0-cy.xpi 456120 SHA256 
46f2549f8568db23e734fb95bc3836335e104867b1467086058f062f2471552f SHA512 
9a4ac0048e78ae5e3c0a1305e4f36ea1e1dddb22bc371de77481127273ccd906765dd6add6a7b2ecc8e476a0a9f2caba85c4ce823e5de4e2f211afc17873640d
 WHIRLPOOL 

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

2017-06-16 Thread Ian Stakenvicius
commit: 792bb85e51ad50410d44fa7f6fa4d72f84ac845d
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Thu Jun 15 14:37:58 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Fri Jun 16 15:47:24 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=792bb85e

mail-client/thunderbird: stabilize 52.2.0 for amd64

Stabilized by maintainer

Package-Manager: Portage-2.3.5, Repoman-2.3.1

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

diff --git a/mail-client/thunderbird/thunderbird-52.2.0.ebuild 
b/mail-client/thunderbird/thunderbird-52.2.0.ebuild
index 7931cececb5..0b0dd4418e9 100644
--- a/mail-client/thunderbird/thunderbird-52.2.0.ebuild
+++ b/mail-client/thunderbird/thunderbird-52.2.0.ebuild
@@ -35,7 +35,7 @@ inherit flag-o-matic toolchain-funcs mozconfig-v6.52 makeedit 
autotools pax-util
 DESCRIPTION="Thunderbird Mail Client"
 HOMEPAGE="http://www.mozilla.com/en-US/thunderbird/;
 
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"
 IUSE="bindist crypt hardened ldap lightning +minimal mozdom rust selinux"



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

2017-06-16 Thread Mike Pagano
commit: 43baaf48b47d1a6ca903edb2324ff3d92029a874
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jun 16 15:44:57 2017 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jun 16 15:45:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43baaf48

sys-kernel/gentoo-sources: Linux patch 3.10.106. Removal of redundant patches.

Package-Manager: Portage-2.3.5, Repoman-2.3.1

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 191fee436f7..230f361089e 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -13,6 +13,9 @@ DIST genpatches-3.10-111.extras.tar.xz 17844 SHA256 
ff1c8ef69045500a410eca41ace0
 DIST genpatches-3.10-112.base.tar.xz 1525332 SHA256 
0568152cabbba04071ee8644ce4fc6c89f0dcddc5d004286b258343519e61c36 SHA512 
7d9b7dd2a11ec86682e508cada1bc8d4eb8f16a777e9ac49d6e61b74fb73a52b8502dbe3b8fab73e74954aef6ef5624e724624f886660a3f9d6ac80c9b2448b3
 WHIRLPOOL 
ec1c323b175ba8bcbf4ce579203998667e95261404f8f33276ae716afef214dc79f75f72ffb0dedc590e5e755e92f589cf74ce637d3b2d698071ced7c527163b
 DIST genpatches-3.10-112.experimental.tar.xz 60168 SHA256 
54d70a99f4d06d05c9306b5f116d558110980db2c001c9ea3660e3c79403c3de SHA512 
e01e9965e24817bcf6648ccba29c3d2732452575af2c2402f7521f5cac4ea470c3e45c8d146131d465903f09be843664459eddae7b917aeed9a780be137f4aff
 WHIRLPOOL 
73742016db1be77829e12e7009e15390a806c3563927824cd51cde2639509cdec912350cd3f8acae3e1385f00cd3998f53e0a23eaf8300a813d4a358763013d1
 DIST genpatches-3.10-112.extras.tar.xz 17840 SHA256 
dae86b2005c68f5a658db5db43839825e1d3d1c9c34bbc12bcdea96260bb30fa SHA512 
64d61a0e50efeab00975e493d72f1c44b0328e2e31c7ca06e2e5f5ad0482a797422a96d2db6cc0205547e5cb021c57d8d5d7c51992b307c4c9178958321ddb3e
 WHIRLPOOL 
b4d4294fec8eddb1e2c5c84ebf95fa833726b387b0c2744778257af59ff4d12ef18aa0cb4ba20c97e991bb5817e5402aa810585ee9ba9fc4fd6b502c81cd8066
+DIST genpatches-3.10-113.base.tar.xz 1576460 SHA256 
5e29bad94856058b615207e314ae1ae974d44f9e5623d6d72a883e89a0b7d173 SHA512 
0e7c0f3df57d3084c13ff7fea01131ae615aac1b2688db15779489e57af6ecb02c949b8e4262714b9f5489fc8db677b255f756ee14808ce5e624a1c1729f39a4
 WHIRLPOOL 
6f17b9daa2f4b5513f7f5914016ab331cd381e9c24b0f6db38861d5ace4e2d205e6fe555e9a8ccdc00df6da2b9b2002f70d661341d7168bdab0b3777397689c4
+DIST genpatches-3.10-113.experimental.tar.xz 60168 SHA256 
2c9963acb873c1a51dc3cf1c82a886f736f57f4d78e41274ea8fe102dfa3270c SHA512 
3367b58d148bdeab87b3e35fc4c4f2708c3810d1f64f81ee93fbf76aeb2bbf94ac847137b344a3d06cf6d5470039e822e7915b625cc4b112713e25376f23c12e
 WHIRLPOOL 
5e5cae4ae7a965d8bd01e0f48003437f708555489d82be6e709d589dc277e289fbe2de98c8f97764d22e763f3b8a7c12355a2c22cf8f759dc0334bb75498743d
+DIST genpatches-3.10-113.extras.tar.xz 17852 SHA256 
68c4870d880aff06d92e1a09ad708398b17c458793c480f6d5e9300af8a586ca SHA512 
5a7d05b0fefe69d870867a6f620d2e47c9b5cd5fa8f7635d502e0013e88f964ce9cb16b6ca16b8d9c884e8f8cbb1d155ef50bb37cc82edaf175fe169b5fd137d
 WHIRLPOOL 
0c6b81bd10a0482151059a6d6e325cbb5d2c82d5dd22d2bd7103f83b6eb4a05a9b22f0f6a7f7397ed46ee110fa5dbaa9a9c8564651f544ffeb50a50f0305
 DIST genpatches-3.12-49.base.tar.xz 1545256 SHA256 
f9503fdf958458692b841b95fcdbc561a7ef4ecceeab1c2e532c0740305a25d1 SHA512 
4475cc1e1faee3975598115937869564274053cff1a9dfbefe41b9535846f1dae04abd784541af5925e805e9878ce1590cc2eea999c06cb3ca67b80df94f23e5
 WHIRLPOOL 
25758cf3bad2a875668950923edd3ab481c8fe7f4faa2512a2ad70acf3f4f360dfad0c10bd4599efa60bcb681c29cfb2db5f4b3f8bc82cc792a369517891bf02
 DIST genpatches-3.12-49.experimental.tar.xz 46536 SHA256 
927d367eeddb6823534004c5a4c96093fe822acd5856d262003045935617a741 SHA512 
3ab1222cbd073437af8697b9407ff2dd4a1890be5acaf70d9e14ff6c6e908615a7f6c8a8b3c0def7660e925edca457c6b31fea64b2ec73200c36512df6efa3f1
 WHIRLPOOL 
7d600343ae9e5109e04507176b7914ce2421bf250e2a5f9812122820760060093fbf9112fa9e906f8185c99eb14fd873f198f38da4a3ed7b92c884ce0ff01358
 DIST genpatches-3.12-49.extras.tar.xz 18232 SHA256 
5800be892a1828498d914ca9315cc5315c2493f900390eb493f7ef45bc7d346c SHA512 
b3cad4524b15e15867ed4ae56efed8e59be1d570fe9e822ac381dff7d5c7cfe35af730511a1693ee6f82a48f2e2dc9718b39c37f5530aa00fe18f23d142df4e9
 WHIRLPOOL 
fd8b5bef919d3c155aa49d7c4587c3e3af785ccf1bbff47d0e67fe05fd3d9e4abae8626ba7d44bcded366acac04f4f0ed3244a8ccbcfd886840ebc1663fa7bbf

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-3.10.106.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-3.10.106.ebuild
new file mode 100644
index 000..606874fff1a
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-3.10.106.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="5"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="113"
+inherit kernel-2

[gentoo-commits] proj/mozilla:master commit in: mail-client/thunderbird/

2017-06-16 Thread Ian Stakenvicius
commit: f86d562e2b67a1daf840c706048b06ffbad40e41
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Fri Jun 16 14:53:35 2017 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Fri Jun 16 14:53:35 2017 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=f86d562e

mail-client/thunderbird: bump to 52.2 for security (bug pending)

 mail-client/thunderbird/Manifest   | 116 ++---
 ...ird-52.1.1.ebuild => thunderbird-52.2.0.ebuild} |   2 +-
 2 files changed, 59 insertions(+), 59 deletions(-)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 115c013..0b8c443 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,60 +1,60 @@
-DIST firefox-52.0-patches-08.tar.xz 10084 SHA256 
2acdd54fd4268a1a1a12905fb3586981d55bad5269b8f380a54aa65fc4268a4f SHA512 
974edc753230429a52c820c82d8b78ea727b1e42a10fcd562b9e4173920f369a78550e6517e32cfea64d19a92c658ef1cebb29c59165fe8aaa587ec20107c835
 WHIRLPOOL 
ab2c1520bf795ef48e564fb81ce812e11e7f4f4a2fe472ad85b045011344f359c62ec0c4c83e4ad196d3d891eef8ef52b462a77b6f1485a75eeabc1487462410
+DIST firefox-52.2-patches-01.tar.xz 10400 SHA256 
18dbd0d6bbab50918ef3341b739710d45a45efb4aa6cee86b4b8a620cc590b93 SHA512 
85cc57e27c46c3243deedcc21d248babbd9ac6c144332ac70dd6e00161fb46584d090683bc1e066c0e9136d6ede5a4e30ccb68d83cad448f6b0d8223c726dafc
 WHIRLPOOL 
65d351f5919b897af516754df0df57b65789d8030280a35d9ab1c2e7790b2713aaac8ad1caaa1ee42007aed17f971355d7f478d134930d0e1a6148a254dd9bba
 DIST gdata-provider-3.3.tar.xz 85628 SHA256 
1a1751a5dd3d941bb28051c1d3af5d96c6c06b00c1b2d6b2442e312ec14644bd SHA512 
ae0c0e6fd42d6e7088256ca8a4be5b0bac84b2f331b51afdc982354caef60b6ba631d4f76bfba7523000b49235c8f8c63704d90acf24b34b14696b709be9342b
 WHIRLPOOL 
2b77c9343437633dc8b26365b6f172999364b81b4928744e0eba0d0de50179fbd845085cc4fbf95a0c068a9b76bd2280db8f9f349ded680686ab6cac949bbcc6
 DIST lightning-5.4.1.tar.xz 1891296 SHA256 
2c7eb418eeb54919542cb097c76af8c61ada1738b30562a54dfdc1091a416e7f SHA512 
d5e6197f53443f7baf2c8487293e59ce825bd835870c2b38c64feefcf3a20ee46a41e9c2320f55157bed1a647ef51e97b74efc1d1ad41be34caefc943bfdaaca
 WHIRLPOOL 
5e046c862e4fe9ac47a7be4d7fc3342ccb67b8f76c1f8b542f75a8b81816ef7edff9b478525e2fe0efb7d21eb0fe8cec3ee28185a73338ba59e84de3dd622c4a
-DIST thunderbird-52.1.1-ar.xpi 604235 SHA256 
8989418e122cc3b92d2691e74db44cccfe238369e02e66fbb78832620978fcd3 SHA512 
e490f84c768035be7d3eef8640907310a81a5361d08e49bc2e70dfeeb4d37f4b1ac981a6ae2a0539abc0a26c04b99e578d79dca88694db4658210cb43c397144
 WHIRLPOOL 
a12dbabf8ecc5ed00e2dc14b400976f2822ff2deff952aea76111938d69a557fad421388341c54a59ae496b2be1afaf98127bd825f7db56851a557d7ef3345cd
-DIST thunderbird-52.1.1-ast.xpi 541173 SHA256 
44c8f31f8f6fdb34e5287e0bddae18257e85f5962b68be3a1f3a4c92ef5235d5 SHA512 
bd8cc800583e31056d3dcab8a6c10c1b25ed49853c7891df64856df776c29573575b156faf6649cb32708fca819fdc4e51f09d0714c7209cbaab592e7c0b6111
 WHIRLPOOL 
99f7945f46074d86a9c6fce4432837d3873214b7e3fe71ae27c77e698a7a84e38a4905de1b755cf2eefd4e1973ee74c105b04324b5b8de348e4b52854ef1f4e6
-DIST thunderbird-52.1.1-be.xpi 570931 SHA256 
f48fde4ea03dcf4a257f13cb2c3c85c9a47f12e846c027964b8c89a62497b735 SHA512 
aacd3e48f458f149b04dbb62d56f350b1f87f7b0f99cd22f9ab0f344a853a507705c16446f45d60a4f105c74410b17bd3aab6161577afc4fd3fc4def2d4884fb
 WHIRLPOOL 
bfd736429804b88688a8b0d7c3a00a98bc034309a9bcbb5ed0b13ffaad15bbcd1060e77a5c3cb92a3969690e35c6c9d568864f64f7a73717addbfb2a74ef2855
-DIST thunderbird-52.1.1-bg.xpi 634897 SHA256 
36185e9fd2f82e422924336a331cec03b7581bab3411237e71b45f89e5635fa4 SHA512 
c20fba0ed6da50d28214948c5b766ca0c5fbd5ab536f0cbb060359d14041a618d1a549a2e88e44243b66f0a98952805bc012e243f41aa2fc8d23df8ab9f00e2b
 WHIRLPOOL 
385efda51f10399dc27cd2e37351cb7ac80231f957a3141cc722902b6323f503f9b3fc7f49cc644c4143aadeddba1328a24730d145aa3fe1ecba29dc66110881
-DIST thunderbird-52.1.1-bn-BD.xpi 676900 SHA256 
6a85c7568b7f4ff35becda3ba679d8eb85a4c00aef8836b26edf3bffd3383435 SHA512 
f1b5cf136effc9384927aae124c4a31a2775614a69bab1570cd8bee7dd66d48c2a60ae029bfa90b8e9fdd63815e879d2f7ab4ee3cbcf280fccf83773934517bc
 WHIRLPOOL 
f0318f08852866694647445b26b19b39d0c3f6aef509b00a3c9ab000cce9d10e9b8aa4f550bf38900e1c8cdbe01090317033cac52bbefbf8a38afc684af277ab
-DIST thunderbird-52.1.1-br.xpi 559380 SHA256 
f59aad266c68c72fc55f56869591680b4c7fa433cda06d66c0eb20064edb6dcf SHA512 
f3176cf9e61428f598517c803c3811851859151752bb8e493284913d9bfdb6683c952f9715dad71e48b485ed316b56429743090707848348661badd53f858cd2
 WHIRLPOOL 
6654149c476de0ee8a19df99b7a639e23ed4cf9b2a0a33869e88fa893968d79d47a507e1939064eb87131897ab95452ecbf7aa5f03c2f51c5f4f58b914efb5ab
-DIST thunderbird-52.1.1-ca.xpi 569910 SHA256 
4e1ae4b5bec308de0042373fda1f7202df576a3ef1edf574e805edb2666d3ff3 SHA512 
51e724e28d38de1779801ee86a19aea977defa6b1171fbc5b4936a9de73f25214772469d46221b1dd70f31de48e64477e87a98485603c0e1809bed552b26d5ba
 WHIRLPOOL 

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

2017-06-16 Thread Patrice Clement
commit: 409b75b26b9339c44a2df45f5d06cb5a07998d51
Author: Wade Cline  hotmail  com>
AuthorDate: Fri Jun 16 03:41:02 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 16 14:44:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=409b75b2

net-irc/inspircd: add proxy maintainer.

Gentoo-Bug: https://bugs.gentoo.org/620356
Closes: https://github.com/gentoo/gentoo/pull/4939

 net-irc/inspircd/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/net-irc/inspircd/metadata.xml b/net-irc/inspircd/metadata.xml
index 392f1045061..1a7bfcc663d 100644
--- a/net-irc/inspircd/metadata.xml
+++ b/net-irc/inspircd/metadata.xml
@@ -27,4 +27,8 @@

inspircd/inspircd

+   
+   wadecl...@hotmail.com
+   Wade Cline
+   
 



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

2017-06-16 Thread Agostino Sarubbo
commit: 12625518e98b5cb10a20dac0e6c9ada85cdc552d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:42:29 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:42:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12625518

sys-kernel/vanilla-sources: Automated version bump to {3.10.106,4.1.41} - 
remove old.

Package-Manager: Portage-2.3.5, Repoman-2.3.1
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-kernel/vanilla-sources/Manifest   | 4 ++--
 ...anilla-sources-3.10.105.ebuild => vanilla-sources-3.10.106.ebuild} | 0
 .../{vanilla-sources-4.1.40.ebuild => vanilla-sources-4.1.41.ebuild}  | 0
 3 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-kernel/vanilla-sources/Manifest 
b/sys-kernel/vanilla-sources/Manifest
index c6e2c1e9d2e..69c268537ab 100644
--- a/sys-kernel/vanilla-sources/Manifest
+++ b/sys-kernel/vanilla-sources/Manifest
@@ -8,12 +8,12 @@ DIST linux-4.10.tar.xz 94231404 SHA256 
3c95d9f049bd085e5c346d2c77f063b8425f19146
 DIST linux-4.11.tar.xz 95447768 SHA256 
b67ecafd0a42b3383bf4d82f0850cbff92a7e72a215a6d02f42ddbafcf42a7d6 SHA512 
6610eed97ffb7207c71771198c36179b8244ace7222bebb109507720e26c5f17d918079a56d5febdd8605844d67fb2df0ebe910fa2f2f53690daf6e2a8ad09c3
 WHIRLPOOL 
f577b7c5c209cb8dfef2f1d56d77314fbd53323743a34b900e2559ab0049b7c2d6262bda136dd3d005bc0527788106e0484e46558448a8720dac389a969e5886
 DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 
02abc203d867404b9934aaa4c1e5b5dcbb0b0021e91a03f3a7e7fd224eed106821d8b4949f32a590536db150e5a88c16fcde88538777a26d0c17900f0257b1bc
 DIST linux-4.9.tar.xz 93192404 SHA256 
029098dcffab74875e086ae970e3828456838da6e0ba22ce3f64ef764f3d7f1a SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a
 WHIRLPOOL 
072505b29972ad120eb25a074217847c9c2813416c4903e605a0433574f5f87616dbea0b1454e4b19acc48107f11274b682958b1d773373156e99f8163e6606a
-DIST patch-3.10.105.xz 1397064 SHA256 
f80c551ebb34df1244b3cec5e06d09fb3eff30289c00cb6347f5d1c874976fda SHA512 
f1b54e53c11f98f1f07a31aa77a65dfc8f69d8a420c7a68b6e75d72ab82e3d8b5f16a43d75840439f01a8b9af55ecc941f82f436561c6af410ffd930a89c4625
 WHIRLPOOL 
45c31a090fb1f4747e78eed106b03408bce9cd45a8b657e4b3010ac409676ca554c22202cafe3aa75ba3377e5cf8e3c85b03d1a4a0e1ae50d5bfe052bfb6a0a8
+DIST patch-3.10.106.xz 1444352 SHA256 
281a16f192224c991acd8cd493f01b610118ac24e36a7b5f636f7b4d17fe88e4 SHA512 
19ec02f9c2c57551a5a50b50f33e79c8464de3585bad4ddab3bd8884c0f612495bdb0c73dd5e2db96f60467cc8fd6d1c738b73d8a1e6e0c821e47b406905120d
 WHIRLPOOL 
b6fa0ee2352092f305f4dcc1d45fe7adc7fc729a094a1d3cad83f111806d7f796bb20b7966be6d591c98da5617fcd16ef7b87d1fedf6279a4ab5052fa09b6847
 DIST patch-3.12.74.xz 1801960 SHA256 
254a7c27c5b3d10797dad625cef1e309e488feb63b358338632e170e631314c9 SHA512 
267a0d59f6d14550b1c626f6d2bea5e4c7b683f372e5fd08df312a364fc074b6ec4aa92ea97047cf3fe5e989307ea47382cb0c159b5394bfe696dbdb78add93a
 WHIRLPOOL 
b3531baead607934cfaad4c0a93bd9b059c6cdd8365b1b3e9c142750facfdd908199c0c65ed723117511f980935ee9b37a94718239ccc4df07a0294778e5dd0a
 DIST patch-3.16.44.xz 1562768 SHA256 
6edf090d0080d9096a5872bd4cb01d3883f9ab79e65c03cb0a5fc9a2e263f744 SHA512 
af5d0bbb76afb365d62f9ae34c5dfb03e7e06e8e771e0e5b798333d2917ad7e39bb75cf7ce3f4ee955303e05df04525aa5d82874b707a060db864503b4671ffb
 WHIRLPOOL 
bf355ad70514ea2b5c1553fd1551176114166daa986ce23ec1969f8642d22b072481e76fd8afa01e8b2621531e8526687a72c166de962a96f7f88852bc14d1fe
 DIST patch-3.2.89.xz 1721336 SHA256 
33bc9f07e86f330a1ffaa19a845e12b2ede6aeee516006d3d038e30d931d6b43 SHA512 
5af811fc4b0d03658cdee1e4e9124b3a96373106fea45318c96313b218fd53d2f43e06bf30d567825611742fb60ddd737a0545c70d5fe4b9b8f5f0bfb10e0e3f
 WHIRLPOOL 
8caebcc9ccd3ceb769abfd0c7c9a64b315ee66d71d1a246523235a215c840ca57f1c098ac38b4acc5805e14a75729b62e839e1977118368d26bcee748a73a9a3
 DIST patch-3.4.113.xz 1362096 SHA256 
d5492eeaadcf12aaad471011066e447907999035c26368da8e4f82b1871ef03a SHA512 
cd212cb2c2d6fb911571472466027c7e502277f7af2426050a5afcd4c7799920e48414190b8a8a039f88d85bbf0d9e164c7d8c45982bf51f7567da9304137688
 WHIRLPOOL 
bc88441d583b9ed2f315b6ed809c168cb00af5a3c1f91fd1e4bd651a5f21cc69fd9343460976b5707916ec992b3e7a2f519953ce1bbc55fbb3290237ec4b44a3
-DIST patch-4.1.40.xz 1022520 SHA256 
05f034e695720101c52a088791c2bfc20e5487c7a886ead6575d1d305c138511 SHA512 
936079277ca7fc1478a6d0540026205ad856fba6f13aeb602a36bbac8d340e204f63b25541bdd1682828e90a70e80868f81d1fa8689f11f0330f70fba03e2b96
 WHIRLPOOL 
34e694893d549e1ae6db21342d92f24139695d45a81e385bc21fbb6c86e354f8969d8d8468fc955152e9bcedf9b6512091dc85020f139d2df116c0c92d430b40
+DIST patch-4.1.41.xz 1072196 SHA256 
e87ff4514a8f5b7974e36c3871e57f1c74fca456adcef06b0a56667672c76492 

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

2017-06-16 Thread Matthias Maier
commit: 3c17dc821398caea38e15db5e0ae8788b88f2f80
Author: Matthias Maier  gentoo  org>
AuthorDate: Fri Jun 16 14:33:14 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Jun 16 14:33:14 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c17dc82

sys-libs/glibc: use tc-enables-pie instead of gcc-specs-pie

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-libs/glibc/glibc-2.17.ebuild| 2 +-
 sys-libs/glibc/glibc-2.18-r1.ebuild | 2 +-
 sys-libs/glibc/glibc-2.19-r1.ebuild | 2 +-
 sys-libs/glibc/glibc-2.20-r2.ebuild | 2 +-
 sys-libs/glibc/glibc-2.21-r2.ebuild | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sys-libs/glibc/glibc-2.17.ebuild b/sys-libs/glibc/glibc-2.17.ebuild
index 11f180adc57..a0d0cd113b8 100644
--- a/sys-libs/glibc/glibc-2.17.ebuild
+++ b/sys-libs/glibc/glibc-2.17.ebuild
@@ -111,7 +111,7 @@ src_unpack() {
if use hardened ; then
cd "${S}"
einfo "Patching to get working PIE binaries on PIE (hardened) 
platforms"
-   gcc-specs-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
+   tc-enables-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
epatch 
"${FILESDIR}"/2.10/glibc-2.10-hardened-configure-picdefault.patch
epatch 
"${FILESDIR}"/2.10/glibc-2.10-hardened-inittls-nosysenter.patch
 

diff --git a/sys-libs/glibc/glibc-2.18-r1.ebuild 
b/sys-libs/glibc/glibc-2.18-r1.ebuild
index 71ed7aea497..a9c0bfc2c2b 100644
--- a/sys-libs/glibc/glibc-2.18-r1.ebuild
+++ b/sys-libs/glibc/glibc-2.18-r1.ebuild
@@ -111,7 +111,7 @@ src_unpack() {
if use hardened ; then
cd "${S}"
einfo "Patching to get working PIE binaries on PIE (hardened) 
platforms"
-   gcc-specs-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
+   tc-enables-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
epatch 
"${FILESDIR}"/2.10/glibc-2.10-hardened-configure-picdefault.patch
epatch 
"${FILESDIR}"/2.18/glibc-2.18-hardened-inittls-nosysenter.patch
 

diff --git a/sys-libs/glibc/glibc-2.19-r1.ebuild 
b/sys-libs/glibc/glibc-2.19-r1.ebuild
index f86bb021c50..8860850c022 100644
--- a/sys-libs/glibc/glibc-2.19-r1.ebuild
+++ b/sys-libs/glibc/glibc-2.19-r1.ebuild
@@ -112,7 +112,7 @@ src_unpack() {
 
if use hardened ; then
einfo "Patching to get working PIE binaries on PIE (hardened) 
platforms"
-   gcc-specs-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
+   tc-enables-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
epatch 
"${FILESDIR}"/2.19/glibc-2.19-hardened-configure-picdefault.patch
epatch 
"${FILESDIR}"/2.18/glibc-2.18-hardened-inittls-nosysenter.patch
 

diff --git a/sys-libs/glibc/glibc-2.20-r2.ebuild 
b/sys-libs/glibc/glibc-2.20-r2.ebuild
index d0956e2eb60..04363835f61 100644
--- a/sys-libs/glibc/glibc-2.20-r2.ebuild
+++ b/sys-libs/glibc/glibc-2.20-r2.ebuild
@@ -116,7 +116,7 @@ src_prepare() {
 
if use hardened ; then
einfo "Patching to get working PIE binaries on PIE (hardened) 
platforms"
-   gcc-specs-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
+   tc-enables-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
epatch 
"${FILESDIR}"/2.20/glibc-2.20-hardened-inittls-nosysenter.patch
 
# We don't enable these for non-hardened as the output is very 
terse --

diff --git a/sys-libs/glibc/glibc-2.21-r2.ebuild 
b/sys-libs/glibc/glibc-2.21-r2.ebuild
index ec75650f067..9216657a970 100644
--- a/sys-libs/glibc/glibc-2.21-r2.ebuild
+++ b/sys-libs/glibc/glibc-2.21-r2.ebuild
@@ -116,7 +116,7 @@ src_prepare() {
 
if use hardened ; then
einfo "Patching to get working PIE binaries on PIE (hardened) 
platforms"
-   gcc-specs-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
+   tc-enables-pie && epatch 
"${FILESDIR}"/2.17/glibc-2.17-hardened-pie.patch
epatch 
"${FILESDIR}"/2.20/glibc-2.20-hardened-inittls-nosysenter.patch
 
# We don't enable these for non-hardened as the output is very 
terse --



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

2017-06-16 Thread Matthias Maier
commit: 7a93781c51a264b977a63b75f802f4cdf52f1a91
Author: Matthias Maier  gentoo  org>
AuthorDate: Fri Jun 16 14:29:49 2017 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Fri Jun 16 14:31:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a93781c

app-emulation/qemu: use tc-enables-pie instead of gcc-specs-pie

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-emulation/qemu/qemu-2.9.0-r2.ebuild  | 2 +-
 app-emulation/qemu/qemu-2.9.0-r54.ebuild | 2 +-
 app-emulation/qemu/qemu-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-emulation/qemu/qemu-2.9.0-r2.ebuild 
b/app-emulation/qemu/qemu-2.9.0-r2.ebuild
index 25d899f2579..5717ab67587 100644
--- a/app-emulation/qemu/qemu-2.9.0-r2.ebuild
+++ b/app-emulation/qemu/qemu-2.9.0-r2.ebuild
@@ -507,7 +507,7 @@ qemu_src_configure() {
if use ${static_flag}; then
conf_opts+=( --static --disable-pie )
else
-   gcc-specs-pie && conf_opts+=( --enable-pie )
+   tc-enables-pie && conf_opts+=( --enable-pie )
fi
 
echo "../configure ${conf_opts[*]}"

diff --git a/app-emulation/qemu/qemu-2.9.0-r54.ebuild 
b/app-emulation/qemu/qemu-2.9.0-r54.ebuild
index 69908a33c9a..b2e61b7c403 100644
--- a/app-emulation/qemu/qemu-2.9.0-r54.ebuild
+++ b/app-emulation/qemu/qemu-2.9.0-r54.ebuild
@@ -510,7 +510,7 @@ qemu_src_configure() {
if use ${static_flag}; then
conf_opts+=( --static --disable-pie )
else
-   gcc-specs-pie && conf_opts+=( --enable-pie )
+   tc-enables-pie && conf_opts+=( --enable-pie )
fi
 
echo "../configure ${conf_opts[*]}"

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index e2807cac73a..47175aed761 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -505,7 +505,7 @@ qemu_src_configure() {
if use ${static_flag}; then
conf_opts+=( --static --disable-pie )
else
-   gcc-specs-pie && conf_opts+=( --enable-pie )
+   tc-enables-pie && conf_opts+=( --enable-pie )
fi
 
echo "../configure ${conf_opts[*]}"



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

2017-06-16 Thread Agostino Sarubbo
commit: 50e03b68756e988862f298a7868c017f6da51690
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:09:50 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:09:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50e03b68

mail-mta/postfix: amd64 stable wrt bug #621882

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

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

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



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

2017-06-16 Thread Agostino Sarubbo
commit: a0dc35c373f04f47bb22549e886a2692c67fdc67
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:09:58 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:09:58 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0dc35c3

media-gfx/graphite2: amd64 stable wrt bug #621724

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

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

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



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

2017-06-16 Thread Agostino Sarubbo
commit: 14ad1879f29ae95e843288e28359aa05f52a021d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:10:11 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:10:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14ad1879

dev-lang/spidermonkey: amd64 stable wrt bug #619774

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

 dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild 
b/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild
index f35a9874a69..c4f9436570a 100644
--- a/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild
+++ b/dev-lang/spidermonkey/spidermonkey-1.8.5-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -17,7 +17,7 @@ 
SRC_URI="https://ftp.mozilla.org/pub/mozilla.org/js/${TARBALL_P}.tar.gz;
 
 LICENSE="NPL-1.1"
 SLOT="0/mozjs185"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-macos"
 IUSE="debug minimal static-libs test"
 
 S="${WORKDIR}/${MY_P}"



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

2017-06-16 Thread Agostino Sarubbo
commit: 7804e06d7533fd27793a5607eb2e3951e78084fa
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:08:56 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:08:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7804e06d

media-libs/soxr: amd64 stable wrt bug #621896

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

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

diff --git a/media-libs/soxr/soxr-0.1.2.ebuild 
b/media-libs/soxr/soxr-0.1.2.ebuild
index 30528c0e529..9531cf0a952 100644
--- a/media-libs/soxr/soxr-0.1.2.ebuild
+++ b/media-libs/soxr/soxr-0.1.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/soxr/${MY_P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
 IUSE="examples"
 
 DEPEND=""



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

2017-06-16 Thread Agostino Sarubbo
commit: b38344e39bf568c13e9f85f584054bee3a8d77b8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:09:27 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:09:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b38344e3

sys-boot/grub: amd64 stable wrt bug #608254

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

 sys-boot/grub/grub-2.02.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/grub/grub-2.02.ebuild b/sys-boot/grub/grub-2.02.ebuild
index cc6db989c6e..0feba88343e 100644
--- a/sys-boot/grub/grub-2.02.ebuild
+++ b/sys-boot/grub/grub-2.02.ebuild
@@ -25,7 +25,7 @@ if [[ ${PV} !=  ]]; then
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
S=${WORKDIR}/${P%_*}
fi
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~x86"
 else
inherit git-r3
EGIT_REPO_URI="git://git.sv.gnu.org/grub.git



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

2017-06-16 Thread Agostino Sarubbo
commit: b91dc862f8ee5d402478cfdae997ba04ae4b4131
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:08:07 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:08:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b91dc862

media-libs/fdk-aac: amd64 stable wrt bug #621894

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

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

diff --git a/media-libs/fdk-aac/fdk-aac-0.1.5.ebuild 
b/media-libs/fdk-aac/fdk-aac-0.1.5.ebuild
index edd676afbfd..99cde30573d 100644
--- a/media-libs/fdk-aac/fdk-aac-0.1.5.ebuild
+++ b/media-libs/fdk-aac/fdk-aac-0.1.5.ebuild
@@ -9,7 +9,7 @@ if [[ ${PV} == ** ]]; then
[[ ${PV%} != "" ]] && EGIT_BRANCH="release/${PV%.}"
inherit autotools git-r3
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd 
~x64-macos"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd 
~x64-macos"
if [[ ${PV%_p*} != ${PV} ]]; then # Gentoo snapshot
SRC_URI="mirror://gentoo/${P}.tar.xz"
else # Official release



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

2017-06-16 Thread Agostino Sarubbo
commit: cb2d05b1c2c0b044d6d18f134379aca44ba75191
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Fri Jun 16 14:08:32 2017 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Fri Jun 16 14:08:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb2d05b1

mail-client/mutt: amd64 stable wrt bug #604902

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

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

diff --git a/mail-client/mutt/mutt-1.7.2.ebuild 
b/mail-client/mutt/mutt-1.7.2.ebuild
index 848adca88b6..f9d012186f0 100644
--- a/mail-client/mutt/mutt-1.7.2.ebuild
+++ b/mail-client/mutt/mutt-1.7.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="ftp://ftp.mutt.org/pub/mutt/${P}.tar.gz
 IUSE="berkdb crypt debug doc gdbm gnutls gpg idn imap kerberos libressl mbox 
nls nntp notmuch pop qdbm sasl selinux sidebar slang smime smtp ssl 
tokyocabinet vanilla"
 SLOT="0"
 LICENSE="GPL-2"
-KEYWORDS="~alpha ~amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ppc ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 CDEPEND="
app-misc/mime-types
nls? ( virtual/libintl )



[gentoo-commits] repo/gentoo:master commit in: sys-apps/cpuid/files/, sys-apps/cpuid/

2017-06-16 Thread Matt Turner
commit: f299c787bacbbf389046613d7c94f5bbb8e7d98a
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 16 13:51:28 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 16 14:02:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f299c787

sys-apps/cpuid: Version bump to 20170122

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

 sys-apps/cpuid/Manifest|  1 +
 sys-apps/cpuid/cpuid-20170122.ebuild   | 30 ++
 sys-apps/cpuid/files/cpuid-20170122-Makefile.patch | 28 
 3 files changed, 59 insertions(+)

diff --git a/sys-apps/cpuid/Manifest b/sys-apps/cpuid/Manifest
index 33784bca9dd..885ca13845a 100644
--- a/sys-apps/cpuid/Manifest
+++ b/sys-apps/cpuid/Manifest
@@ -2,3 +2,4 @@ DIST cpuid-20130610.src.tar.gz 65801 SHA256 
f87e835a83e69013eee09eded0e9c5ac0ea5
 DIST cpuid-20140123.src.tar.gz 67882 SHA256 
b85aba5696d382f0dba8dc246bd42d09767089d6181a9cd0633d626f079d79ff SHA512 
8b205cc539959dcd63326d5de700e090213f5b7cdbd5e25925b8db774001cbd95df7ccb696fda124226380fef69ea7fe0c0885869b0ec7e07b0c340dc0cd8a5b
 WHIRLPOOL 
dfcc1b6ea125fb0b6c13b7edd7f6c37592a2acfbc178f4c65cd7ec1577010ec9cc69919af512681e4af048ab028cb8992d1a282435e5b4aace179c40ff607ac4
 DIST cpuid-20150606.src.tar.gz 71882 SHA256 
b7607e81e62e4901180d9e2f48fe407033211c3fb300d758a210f746ef518c4e SHA512 
6f99266b9720b48ec10f220f8a321d3ed052300960151feb6c45d39b586216745f070241db20afd4d16ac0b3389b634eb31f90c93ea9d12f521012cfe5ab9257
 WHIRLPOOL 
0c7140b636e7cca8ac0d150cb015170964471a3e00d48f3b7290976c768415773d5741f53937b2773b751a8e830d21e156c3f199de081dd42c50ffd76688e640
 DIST cpuid-20151017.src.tar.gz 72787 SHA256 
34d35ddd7dab7c9f8b071b7b318d4f99fe112caaa28b6c8571e2ecdaa855db78 SHA512 
83e6d49bd043e3f21610e50e5ca98705ee78bb1527f90e184f8aa380bfce82dc4168f5ef7b85e1e337e059668f4c83b20b96578f303bf73383b0241a50cd5296
 WHIRLPOOL 
a28f12a7b403611d0ea0e6d8e08d27be424b2194a7818a5281a37a19d6b412938fb57b4d067461fc754fe469d536b0f009282e14ce619228326aefd6d6f8b892
+DIST cpuid-20170122.src.tar.gz 80046 SHA256 
667612aae6704341dd10844e97c84c5c5c8700817a5937a3c293b55013bc4865 SHA512 
0e057980c71a0e078254e6b7535747bdf368278932c39943cf7dfafe08443af07297a2b41518499937a710fe6950ba89377cabaada5f6332932650d4d17c1430
 WHIRLPOOL 
25594a2629c8da251d9cbc511a726cf2a4a235cc361c002fd6fa127c9d589f08938475094ea366861bb83b070d5d5955eac494d2b17958e2204b3e7275fd287c

diff --git a/sys-apps/cpuid/cpuid-20170122.ebuild 
b/sys-apps/cpuid/cpuid-20170122.ebuild
new file mode 100644
index 000..3c76118816b
--- /dev/null
+++ b/sys-apps/cpuid/cpuid-20170122.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils toolchain-funcs
+
+DESCRIPTION="Utility to get detailed information about the CPU(s) using the
+CPUID instruction"
+HOMEPAGE="http://www.etallen.com/cpuid.html;
+SRC_URI="http://www.etallen.com/${PN}/${P}.src.tar.gz;
+
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+LICENSE="GPL-2"
+IUSE=""
+
+src_prepare() {
+   epatch "${FILESDIR}"/${PN}-20170122-Makefile.patch
+   eapply_user
+}
+
+src_compile() {
+   tc-export CC
+   emake || die "emake failed"
+}
+
+src_install() {
+   emake BUILDROOT="${D}" install || die "email install failed"
+}

diff --git a/sys-apps/cpuid/files/cpuid-20170122-Makefile.patch 
b/sys-apps/cpuid/files/cpuid-20170122-Makefile.patch
new file mode 100644
index 000..9a02a54563a
--- /dev/null
+++ b/sys-apps/cpuid/files/cpuid-20170122-Makefile.patch
@@ -0,0 +1,28 @@
+diff -ru cpuid-20170122.orig/Makefile cpuid-20170122/Makefile
+--- cpuid-20170122.orig/Makefile   2017-06-16 06:54:32.993875817 -0700
 cpuid-20170122/Makefile2017-06-16 06:55:56.622875498 -0700
+@@ -1,9 +1,3 @@
+-CFLAGS+=-g
+-CPPFLAGS?=
+-LDFLAGS?=
+-ifneq (,$(findstring arch=i386,$(CFLAGS)))
+-CISA=-m32
+-endif
+ CFL=$(CPPFLAGS) $(CFLAGS) $(CISA) -Wall -Wshadow -Wcast-align 
-Wredundant-decls -Wbad-function-cast -Wcast-qual -Wwrite-strings 
-Waggregate-return -Wstrict-prototypes -Wmissing-prototypes 
-D_FILE_OFFSET_BITS=64 -DVERSION=$(VERSION)
+ 
+ PACKAGE=cpuid
+@@ -51,10 +45,10 @@
+   gzip < $< > $@
+ 
+ install: $(PROG) $(PROG).man.gz cpuinfo2cpuid cpuinfo2cpuid.man.gz
+-  install -D -s -m 755 $(PROG)  $(BUILDROOT)/usr/bin/$(PROG)
+-  install -D-m 444 $(PROG).man.gz   
$(BUILDROOT)/usr/share/man/man1/$(PROG).1.gz
+-  install -D-m 755 cpuinfo2cpuid
$(BUILDROOT)/usr/bin/cpuinfo2cpuid
+-  install -D-m 444 cpuinfo2cpuid.man.gz 
$(BUILDROOT)/usr/share/man/man1/cpuinfo2cpuid.1.gz
++  install -D -m 755 $(PROG)  $(BUILDROOT)/usr/bin/$(PROG)
++  install -D -m 444 $(PROG).man.gz   
$(BUILDROOT)/usr/share/man/man1/$(PROG).1.gz
++  install -D -m 755 cpuinfo2cpuid
$(BUILDROOT)/usr/bin/cpuinfo2cpuid
++  install -D -m 444 cpuinfo2cpuid.man.gz 

[gentoo-commits] proj/musl:master commit in: app-admin/sudo/

2017-06-16 Thread Anthony G. Basile
commit: 79c877e72cba66d6124c721721106c38c8ce87cd
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jun 16 13:53:28 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jun 16 13:53:28 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=79c877e7

app-admin/sudo: needs --disable-hardening on i686 with gcc-5

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 app-admin/sudo/Manifest  |   3 +
 app-admin/sudo/metadata.xml  |  33 ++
 app-admin/sudo/sudo-1.8.20_p2.ebuild | 221 +++
 3 files changed, 257 insertions(+)

diff --git a/app-admin/sudo/Manifest b/app-admin/sudo/Manifest
new file mode 100644
index 000..725d646
--- /dev/null
+++ b/app-admin/sudo/Manifest
@@ -0,0 +1,3 @@
+DIST sudo-1.8.20p2.tar.gz 2930769 SHA256 
bd42ae1059e935f795c69ea97b3de09fe9410a58a74b5d5e6836eb5067a445d9 SHA512 
8bf67e687f7a84605fdef8d547b5cd661141b6c8fd25820c33c7e37e97ca7f21f564c3bae691f8a8cd08df7d80338e36a8f06bb5086cc104509d71d6ab1bceda
 WHIRLPOOL 
4e9b6ddaba8cdb4d82358e01252136af56ae50f656f9802285471c7c1e5c831d26aa07cb78205f63ea6098f98846911938681a89256afe5419372039d0e4e792
+EBUILD sudo-1.8.20_p2.ebuild 5735 SHA256 
eafe3cac0db1ccc7782f8ad145986b984f69426658e27ebc1ab1ba9413123ada SHA512 
ab689b5560b43afe8cb5b810b3840ae1ab003679f8eadb3caab25a28ee8630637d25b76f3e4119ef544427a585aeda5b6e09b6d7b581db9be320cb52f06f5f47
 WHIRLPOOL 
7074ca14c96e04d928c159f24e58ada92a7feac46cc2756af3cd3532df119c5da021e951c55c600530b67a0ba86ca753b7bd006460edd636e8d81edf1ea74d3e
+MISC metadata.xml 1035 SHA256 
56b9c0d884f41a5c5174a0324a7e3dbab3f6a23794f0feae4c36fb149a3bce3d SHA512 
c68b8c6977af60d3606d0b9854298192b35d43f16db7a41c92c7c9f1439f7950f6c6af93c3c9c4f3ff7ea4fda810e0c2375c0625c44150f7c6263ac7d1f9b60c
 WHIRLPOOL 
396f0cebd849d866db3c768d540c7bb3b4132cd92588666e041e94d1165d22f31cc9026c20ba1635a47ec8ba605cfb62cff47a60521fbaf42b019054490b3b2e

diff --git a/app-admin/sudo/metadata.xml b/app-admin/sudo/metadata.xml
new file mode 100644
index 000..1625b90
--- /dev/null
+++ b/app-admin/sudo/metadata.xml
@@ -0,0 +1,33 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+base-sys...@gentoo.org
+Gentoo Base System
+  
+  
+Sudo (superuser do) allows a system administrator to give certain
+users (or groups of users) the ability to run some (or all)
+commands as root or another user while logging the commands and
+arguments.
+  
+  
+   
+   Use SHA2 from dev-libs/libgcrypt
+   instead of sudo's internal SHA2.
+   
+   
+   Let sudo print insults when the user types the wrong password.
+   
+   
+   Use SHA2 from dev-libs/openssl
+   instead of sudo's internal SHA2.
+   
+   
+   Allow sudo to send emails with sendmail.
+   
+  
+  
+cpe:/a:todd_miller:sudo
+  
+

diff --git a/app-admin/sudo/sudo-1.8.20_p2.ebuild 
b/app-admin/sudo/sudo-1.8.20_p2.ebuild
new file mode 100644
index 000..81266ea
--- /dev/null
+++ b/app-admin/sudo/sudo-1.8.20_p2.ebuild
@@ -0,0 +1,221 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils pam multilib libtool
+
+MY_P=${P/_/}
+MY_P=${MY_P/beta/b}
+
+uri_prefix=
+case ${P} in
+   *_beta*|*_rc*) uri_prefix=beta/ ;;
+esac
+
+DESCRIPTION="Allows users or groups to run commands as other users"
+HOMEPAGE="http://www.sudo.ws/;
+SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
+   ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz;
+
+# Basic license is ISC-style as-is, some files are released under
+# 3-clause BSD license
+LICENSE="ISC BSD"
+SLOT="0"
+if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
+   KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
+fi
+IUSE="gcrypt ldap nls pam offensive openssl selinux skey +sendmail"
+
+CDEPEND="
+   gcrypt? ( dev-libs/libgcrypt:= )
+   openssl? ( dev-libs/openssl:0= )
+   pam? ( virtual/pam )
+   skey? ( >=sys-auth/skey-1.1.5-r1 )
+   ldap? (
+   >=net-nds/openldap-2.1.30-r1
+   dev-libs/cyrus-sasl
+   )
+   sys-libs/zlib
+"
+RDEPEND="
+   ${CDEPEND}
+   selinux? ( sec-policy/selinux-sudo )
+   ldap? ( dev-lang/perl )
+   pam? ( sys-auth/pambase )
+   >=app-misc/editor-wrapper-3
+   virtual/editor
+   sendmail? ( virtual/mta )
+"
+DEPEND="
+   ${CDEPEND}
+   sys-devel/bison
+"
+
+S="${WORKDIR}/${MY_P}"
+
+REQUIRED_USE="
+   pam? ( !skey )
+   skey? ( !pam )
+   ?? ( gcrypt openssl )
+"
+
+MAKEOPTS+=" SAMPLES="
+
+src_prepare() {
+   default
+   elibtoolize
+}
+
+set_rootpath() {
+   # FIXME: secure_path is a compile time setting. using ROOTPATH
+   # is not perfect, env-update may invalidate this, but until it
+   # is available as a sudoers setting this will have to do.
+   einfo "Setting secure_path ..."
+
+   # 

[gentoo-commits] proj/musl:master commit in: app-admin/sudo/

2017-06-16 Thread Anthony G. Basile
commit: 5e2db6dfad97c57de639c135c6f91da6b96ec7b8
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jun 16 13:54:29 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jun 16 13:54:29 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=5e2db6df

app-admin/sudo: mark 1.8.20_p2 stable on all musl arches

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 app-admin/sudo/Manifest  | 2 +-
 app-admin/sudo/sudo-1.8.20_p2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/sudo/Manifest b/app-admin/sudo/Manifest
index 725d646..4ec8590 100644
--- a/app-admin/sudo/Manifest
+++ b/app-admin/sudo/Manifest
@@ -1,3 +1,3 @@
 DIST sudo-1.8.20p2.tar.gz 2930769 SHA256 
bd42ae1059e935f795c69ea97b3de09fe9410a58a74b5d5e6836eb5067a445d9 SHA512 
8bf67e687f7a84605fdef8d547b5cd661141b6c8fd25820c33c7e37e97ca7f21f564c3bae691f8a8cd08df7d80338e36a8f06bb5086cc104509d71d6ab1bceda
 WHIRLPOOL 
4e9b6ddaba8cdb4d82358e01252136af56ae50f656f9802285471c7c1e5c831d26aa07cb78205f63ea6098f98846911938681a89256afe5419372039d0e4e792
-EBUILD sudo-1.8.20_p2.ebuild 5735 SHA256 
eafe3cac0db1ccc7782f8ad145986b984f69426658e27ebc1ab1ba9413123ada SHA512 
ab689b5560b43afe8cb5b810b3840ae1ab003679f8eadb3caab25a28ee8630637d25b76f3e4119ef544427a585aeda5b6e09b6d7b581db9be320cb52f06f5f47
 WHIRLPOOL 
7074ca14c96e04d928c159f24e58ada92a7feac46cc2756af3cd3532df119c5da021e951c55c600530b67a0ba86ca753b7bd006460edd636e8d81edf1ea74d3e
+EBUILD sudo-1.8.20_p2.ebuild 5731 SHA256 
47ffe81b9a9709720f0be1a247cca4f0e7f0ff98b63941213df509483b387440 SHA512 
f03888a9aa22aad97b015f0dc2956caf52ba99c0bdd721faca5e0b4ddbd797792f78ef45f3a319edaca075e6bf9c1b388c681e69d0f9767585f2e9655c001add
 WHIRLPOOL 
b05f5eaf36206ee4ac1e64248cda3ba2044d053ce4fa763a4cba3aeaaf025faeb171a2f3195ffefd486a4a4de9e146636ddda6a5cc6a213fdbdbae5d8c586df5
 MISC metadata.xml 1035 SHA256 
56b9c0d884f41a5c5174a0324a7e3dbab3f6a23794f0feae4c36fb149a3bce3d SHA512 
c68b8c6977af60d3606d0b9854298192b35d43f16db7a41c92c7c9f1439f7950f6c6af93c3c9c4f3ff7ea4fda810e0c2375c0625c44150f7c6263ac7d1f9b60c
 WHIRLPOOL 
396f0cebd849d866db3c768d540c7bb3b4132cd92588666e041e94d1165d22f31cc9026c20ba1635a47ec8ba605cfb62cff47a60521fbaf42b019054490b3b2e

diff --git a/app-admin/sudo/sudo-1.8.20_p2.ebuild 
b/app-admin/sudo/sudo-1.8.20_p2.ebuild
index 81266ea..678d138 100644
--- a/app-admin/sudo/sudo-1.8.20_p2.ebuild
+++ b/app-admin/sudo/sudo-1.8.20_p2.ebuild
@@ -23,7 +23,7 @@ 
SRC_URI="http://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
 LICENSE="ISC BSD"
 SLOT="0"
 if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~amd64 ~arm ~mips ~ppc ~x86"
+   KEYWORDS="amd64 arm ~mips ppc x86"
 fi
 IUSE="gcrypt ldap nls pam offensive openssl selinux skey +sendmail"
 



[gentoo-commits] proj/musl:master commit in: net-misc/openssh/

2017-06-16 Thread Anthony G. Basile
commit: 0efe8924e0be725630372ba49772ff05fe5e2ad8
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jun 16 13:34:27 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jun 16 13:34:27 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=0efe8924

net-misc/openssh: mark 7.5_p1-r1 stable on all musl arches

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 net-misc/openssh/Manifest | 2 +-
 net-misc/openssh/openssh-7.5_p1-r1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-misc/openssh/Manifest b/net-misc/openssh/Manifest
index eb543f6..98b05d8 100644
--- a/net-misc/openssh/Manifest
+++ b/net-misc/openssh/Manifest
@@ -29,5 +29,5 @@ DIST openssh-7.5p1.tar.gz 1510857 SHA256 
9846e3c5fab9f0547400b4d2c017992f914222b
 DIST openssh-lpk-7.3p1-0.3.14.patch.xz 17800 SHA256 
cf1f60235cb8b0e561cd36cbf9e4f437e16fd748c2616d3f511c128c02deb76c SHA512 
e9a73c5f13e41f6e11c744fdbcdb2e399c394479f79249e901cb3c101efb06f23d51d3ba4869db872184fa034a5910fc93a730fe906266c8d7409e39ad5b1ecd
 WHIRLPOOL 
bbdeadbed8f901148713bd9e4a082a4be2992c3151f995febd8be89bbb85d91185e1f0413b5a94a9340f2f404d18c9cee2aa6e032adaee0306aa1c624f6cc09c
 DIST openssh-lpk-7.5p1-0.3.14.patch.xz 17040 SHA256 
11060be996b291b8d78de698c68a92428430e4ff440553f5045c6de5c0e1dab3 SHA512 
9ce5d7e5d831c972f0f866b686bf93a048a03979ab38627973f5491eeeaa45f9faab0520b3a7ed90a13a67213fdc9cd4cf11e423acad441ea91b71037c8b435b
 WHIRLPOOL 
58526777475786bb5efa193f3a3ec0500c4d48b18fef67698f8b1999cb07f04fbca7b7d3ece469f3a1e1ceca5152cdd08d3dbe7cfa4e7494740dc2c233101b93
 EBUILD openssh-7.3_p1-r7.ebuild 11605 SHA256 
9e0c2be8c1053141a64150e7254bec720d5100435ef56bcb6408346d80881285 SHA512 
24719eaadbe2089cd7c58e878a5a8b4e3da2468ff4282d7278021408676cb549dcf993aa0f770076d1144adacc3d98e8264699680a3ab637e02cbc40057da6bd
 WHIRLPOOL 
06e438e61d120e3274212a594881843866d32b8b5b2410d58557116eaed0f8be1b3d6dcfda9ad63fab4950427c8213e94a340e641693cc889b5d3e14027eba54
-EBUILD openssh-7.5_p1-r1.ebuild 0 SHA256 
c0d2f65e5c84dedc85fd3fb7380d2c7ca58956739a70b53d1610da570d5aab54 SHA512 
36762d3840473ac618b33c3e3448f8ea9542c461141f2f3e09aff53696e2382ded01c84bcb149d16f3d819a35acb19bb4e0d6e22f204d2f92d6ec25414a923af
 WHIRLPOOL 
65e08f3165655bd719d301efc3f9e901e4d409815d7631d9eb6110114a0f4b9028cdc2e5339de6fc452b698d5c34c191b4acebe4c3222d67a2d0022eb8b34d26
+EBUILD openssh-7.5_p1-r1.ebuild 10858 SHA256 
8feb29f3606de745ab864481cb1409dfa0e05cef67f8bc181ec70f31084dd3f1 SHA512 
62965b1891757203fd1ce214e566920d5f949452076fae857bcabf26efefca234f476ed3558ea2cf15ac0ac527f6520cafc435ef390f786bce7b67e69cc245e9
 WHIRLPOOL 
3f2797b40a3dbf66ade8b75f764bfad83d1f6a3540033dc225c15c341837917d70f3796974bead4903ce4a0091fc341b069a41b66587afb06e3fc4047f4ae0a7
 MISC metadata.xml 2212 SHA256 
50f6e3651c8aeb86cfe90d92cef6a2b55640c400584f5fdbb6418cef7ac16f25 SHA512 
958845fbdfb4f1d267fdbc3a005c6338da54c6a0715180a1982416a841ab4865c536de5f10bb8493d07830e182786d0c3f2ac710c9168434b3d077a59ed2ddd5
 WHIRLPOOL 
6d1080bc5c3b10a63836b5286d0d66b925a9d27d35e9855c9f966445458c1d6a752854d019c1740420ea78aef6f60105bef4c771fe61a95aae898034cf100705

diff --git a/net-misc/openssh/openssh-7.5_p1-r1.ebuild 
b/net-misc/openssh/openssh-7.5_p1-r1.ebuild
index f1194dc..b35db78 100644
--- a/net-misc/openssh/openssh-7.5_p1-r1.ebuild
+++ b/net-misc/openssh/openssh-7.5_p1-r1.ebuild
@@ -25,7 +25,7 @@ SRC_URI="mirror://openbsd/OpenSSH/portable/${PARCH}.tar.gz
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~x64-cygwin ~amd64-fbsd ~sparc-fbsd ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~mips ppc x86"
 # Probably want to drop ssl defaulting to on in a future version.
 IUSE="abi_mips_n32 audit bindist debug ${HPN_PATCH:++}hpn kerberos 
kernel_linux ldap ldns libedit libressl livecd pam +pie sctp selinux skey ssh1 
+ssl static test X X509"
 REQUIRED_USE="ldns? ( ssl )



[gentoo-commits] proj/musl:master commit in: net-misc/openssh/files/, net-misc/openssh/

2017-06-16 Thread Anthony G. Basile
commit: 0d711a943ca5c3290d8c08db1368f152de2c2f8b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Fri Jun 16 12:15:59 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Fri Jun 16 12:15:59 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=0d711a94

net-misc/openssh: restrict --without-stackprotector to just i686

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 net-misc/openssh/Manifest  |   9 +
 .../openssh/files/openssh-7.5_p1-GSSAPI-dns.patch  | 351 +
 .../openssh/files/openssh-7.5_p1-cross-cache.patch |  39 +++
 .../openssh/files/openssh-7.5_p1-x32-typo.patch|  25 ++
 net-misc/openssh/openssh-7.5_p1-r1.ebuild  | 336 
 5 files changed, 760 insertions(+)

diff --git a/net-misc/openssh/Manifest b/net-misc/openssh/Manifest
index 858bae0..eb543f6 100644
--- a/net-misc/openssh/Manifest
+++ b/net-misc/openssh/Manifest
@@ -9,6 +9,9 @@ AUX openssh-7.3_p1-hpn-cipher-ctr-mt-no-deadlocks.patch 7005 
SHA256 44ae73966a98
 AUX openssh-7.3_p1-hpn-x509-9.2-glue.patch 1611 SHA256 
7d04d19e62e688c9c12c25fd479933dd2c707f838ac810263dd1dc79a5ff55f1 SHA512 
3604f0f1ea6c74b8418ac158df47910dfb2d54c7ce77f78f1a6c072acd20dc5751e24156acd9dda02aecaac250f43c8d968382f2f4b15b4706e4c4bde8ebde9a
 WHIRLPOOL 
b327a94c5b37da296caaa925bf13adf81ab3a53dffe691b33010b89b07366445613e553b4f486bacab658e2dcec143971001b4158f493e9b7e5bd427f0e072fb
 AUX openssh-7.3_p1-sctp-x509-glue.patch 2447 SHA256 
a6758b9bff99022b1aa1bc729fcdcc8e4e91d0a617c903d72964cc1fca1ea061 SHA512 
f48c2bba7707542741e52f5d794aaafe4468d088e28bc02878c0eb9aa76d31b57dca69b85705f7a9a2d745272df3fdc39a1d13ba337cab34dd0e9d545cee7d41
 WHIRLPOOL 
77e2574065a78a0f7014213f5e5d64651d41f24c7652542589f1106a6a114cf27d9922ef2cddee9e62c0f0f118691d91ebe9dc4a0ae04654843f18bdd20e2cef
 AUX openssh-7.3_p1-x509-9.2-warnings.patch 3060 SHA256 
e7963f4946db01390831ee07a49c3a2291518b06144e95cfc47326c7209fa2e3 SHA512 
f029d6f922e1632b32ac6e7b627378854f78c9d9b828dde37273b1b1a09167273fc6934bcb0653209b9e5ffd06c95d564d1bf5f1ea745993e19b062a4532f1c0
 WHIRLPOOL 
cd4eb68bf861a50e9452c453c903946b8d067fd00171d39c6bad797d20c07631cda2379d9e41246bc93b22252a8d1bd55186e13ba492c7b8cf94048910f3a8a9
+AUX openssh-7.5_p1-GSSAPI-dns.patch 11137 SHA256 
e0b256646651edd7a4bf60ebe4cf2021d85a5f8f3d30393bd499655c0b0c64c1 SHA512 
f84e1d3fdda7a534d9351884caaefc136be7599e735200f0393db0acad03a57abe6585f9402018b50e3454e6842c3281d630120d479ff819f591c4693252dd0e
 WHIRLPOOL 
000276fe1e0cc9ac33da8974cc6e24803a69b3d63c20096a92d6d10206c6e27110bdcaa26c0dbd2e0d0feb501681a738d5adb9d57ae21c7c55f67396f8b26c0e
+AUX openssh-7.5_p1-cross-cache.patch 1220 SHA256 
693c6e28d4c1da71c67b64ef25d286f0d5128f9aebb3450283fa9ce6887186a7 SHA512 
03cf3b5556fcf43c7053d1550c8aa35189759a0a2274a67427b28176ba7938b8d0019992de25fb614dc556c5f45a67649bb5d2d82889ac2c37edd986fc632550
 WHIRLPOOL 
f7a04e19816cadce138a0beec4f1ad5f975773a1802fd1db245846ce8d5d6ec5ddfdcfa099e391172457a29eedb30c416dfa7bf4a56e99cfe507be00d2e1e718
+AUX openssh-7.5_p1-x32-typo.patch 772 SHA256 
17f2baad36e5b6d270d7377db4ebdf157f2eb3bc99d596c32a47d584a1040307 SHA512 
20d19301873d4b8e908527f462f40c2f4a513d0bb89d4c7b885f9fc7eb5d483eea544eb108d87ff6aaa3d988d360c2029910c18f7125c96e8367485553f59a5e
 WHIRLPOOL 
5141fd3a19575593f84890aaa84123373ffb81aa3e860cda2468c7578754acf0a5d8ce0ea9c5ab25a83574ad5b272b9240cdcb29724c3b7cbdc059518da8c609
 AUX sshd.confd 396 SHA256 
29c6d57ac3ec6018cadc6ba6cd9b90c9ed46e20049b970fdcc68ee2481a2ee41 SHA512 
b9ae816af54a55e134a9307e376f05367b815f1b3fd545c2a2c312d18aedcf907f413e8bad8db980cdd9aad4011a72a79e1e94594f69500939a9cb46287f2f81
 WHIRLPOOL 
69f43e6192e009a4663d130f7e40ee8b13c6eb9cc7d960b5e0e22f5d477649c88806a9d219efef211f4346582c2bb51e40d230a8191e5953dbe08bfff976ae53
 AUX sshd.pam_include.2 156 SHA256 
166136e27d653e0bf481a6ca79fecb7d9fa2fc3d597d041f97df595f65a8193c SHA512 
d3f7e6ca8c9f2b5060ebccb259316bb59c9a7e158e8ef9466765a20db263a4043a590811f1a3ab072b718dbd70898bc69b77e0b19603d7f394b5ac1bd0a4a56c
 WHIRLPOOL 
ba7a0a8c3bb39c5fda69de34b822a19696398e0a8789211ac1faae787ee34f9639eb35efe29c67f874b5f9fe674742503e570f441c005974f4a0c93468b8970b
 AUX sshd.rc6.4 2108 SHA256 
43a483014bf177f9238e54a7b8210d5a76830beb67c18999409e543fd744c9e4 SHA512 
fe58e950514743a72467233ff2f2a63112c50e5db843d61e141a5ca3dd8ef8f42a616cd9de7748ae582054c47c2cc38ce48b638e2d88be39c1387f77e79c83e1
 WHIRLPOOL 
ef30b1e3a118b40617e3c1de6b4ebb360f466e90e18157a08d0ed50a4acb488eb7f6159120525e2b7e85393cd19b062c97188460ea51959467eb6ab52632d064
@@ -19,6 +22,12 @@ DIST openssh-7.3_p1-hpn-14.10-r1.patch.xz 20584 SHA256 
0bbbfeb1f9f975ad591ed4ec7
 DIST openssh-7.3_p1-sctp.patch.xz 9968 SHA256 
18c3db45ed1e5495db29626938d8432aee509e88057494f052cfc09d40824c7f SHA512 
f249b76898af0c6f1f65f2a1cfb422648aa712818d0dc051b85a171f26bdddf7980fff5de7761161aa41c309e528b3801b4234f5cdd9f79f8eef173ae83f1e3c
 WHIRLPOOL 

[gentoo-commits] data/api:master commit in: files/overlays/

2017-06-16 Thread Michał Górny
commit: a6a5a9c9838c44314851315183b7fa02600febb4
Author: Andrew Nagle  zyrenth  com>
AuthorDate: Fri Jun 16 04:00:10 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 12:21:48 2017 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a6a5a9c9

repositories: Add zyrenth overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/53

 files/overlays/repositories.xml | 13 +
 1 file changed, 13 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 88a11ce..ab43c82 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -5444,5 +5444,18 @@ FIN
 ssh://g...@git.zx2c4.com/portage
 http://git.zx2c4.com/portage/atom/?h=master
   
+  
+zyrenth
+Personal overlay
+https://github.com/kabili207/zyrenth-overlay
+
+  kabi-bugz.gen...@zyrenth.com
+  Andrew Nagle
+
+https://github.com/kabili207/zyrenth-overlay.git
+git://github.com/kabili207/zyrenth-overlay.git
+g...@github.com:kabili207/zyrenth-overlay.git
+
https://github.com/kabili207/zyrenth-overlay/commits/master.atom
+  
   
 



[gentoo-commits] data/api:master commit in: files/overlays/

2017-06-16 Thread Michał Górny
commit: 66b6b27005f03cf0106894f461f362200a64f8f8
Author: Miloš O. Đurđević  gmail  com>
AuthorDate: Tue Jun 13 01:08:53 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 12:44:22 2017 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=66b6b270

repositories: Add kryptus

Closes: https://github.com/gentoo/api-gentoo-org/pull/51

 files/overlays/repositories.xml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index ab43c82..e7616a3 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -2656,6 +2656,17 @@ FIN
 https://github.com/undying/krontage/commits/master.atom
   
   
+kryptus
+A pocket repository for few unavailable packages
+https://github.com/kryptuss/gentoo-overlay
+
+  milos.om...@gmail.com
+  Miloš O. Đurđević
+
+https://github.com/kryptuss/gentoo-overlay.git
+https://github.com/kryptuss/gentoo-overlay/commits/master.atom
+  
+  
 lacimarsik-overlay
 Various patches and improvements on Gentoo Linux 
ebuilds
 https://github.com/lacimarsik/lacimarsik-overlay



[gentoo-commits] data/api:master commit in: files/overlays/

2017-06-16 Thread Michał Górny
commit: a5aaac4b3169a3bd863609a3e849db4e50637d75
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 16 12:20:31 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 16 12:20:31 2017 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a5aaac4b

repositories: Sort repositories

 files/overlays/repositories.xml | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 7b5d3da..88a11ce 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -5397,6 +5397,19 @@ FIN
 git://gnunet.org/youbroketheinternet-overlay.git
   
   
+yurij-overlay
+Yurij's overlay
+https://github.com/yurijmikhalevich/yurij-overlay
+
+  yu...@mikhalevi.ch
+  Yurij Mikhalevich
+
+https://github.com/yurijmikhalevich/yurij-overlay.git
+git://github.com/yurijmikhalevich/yurij-overlay.git
+g...@github.com:yurijmikhalevich/yurij-overlay.git
+
https://github.com/yurijmikhalevich/yurij-overlay/commits/master.atom
+  
+  
 zoobab
 Personal overlay of Benjamin Henrion
 https://github.com/zoobab/overlay4gentoo/
@@ -5431,18 +5444,5 @@ FIN
 ssh://g...@git.zx2c4.com/portage
 http://git.zx2c4.com/portage/atom/?h=master
   
-  
-yurij-overlay
-Yurij's overlay
-https://github.com/yurijmikhalevich/yurij-overlay
-
-  yu...@mikhalevi.ch
-  Yurij Mikhalevich
-
-https://github.com/yurijmikhalevich/yurij-overlay.git
-git://github.com/yurijmikhalevich/yurij-overlay.git
-g...@github.com:yurijmikhalevich/yurij-overlay.git
-
https://github.com/yurijmikhalevich/yurij-overlay/commits/master.atom
-  
   
 



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2017-06-16 Thread Mike Gilbert
commit: 0518b330edac963f54f98df33391b8e7b9eaee4c
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Jun 16 12:40:05 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Jun 16 12:40:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0518b330

www-client/google-chrome-unstable: automated update (61.0.3128.3)

Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...ble-61.0.3124.4.ebuild => google-chrome-unstable-61.0.3128.3.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index bbecc204179..28e62ab524b 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_61.0.3124.4-1_amd64.deb 66579434 SHA256 
f7d35780aedbf18bf1f95b3cb980c5ad830a2a43d8d7930ad47b3551228a82de SHA512 
e1eb8314798f23b3ca65db68308d71366fcbc923bc80ed18c00fa2fe260de04c02bebaf09aafe85499a4661770de6e5e1dad289f6d7208388235c06a12be05f6
 WHIRLPOOL 
f42b814231388496d9ab05e43e91b71167a1d8a81764142991e5454ceb59a85627fb8d59ac0e6068bb404e48b662943a99ac8b745cc06dcc74421166fc6f
+DIST google-chrome-unstable_61.0.3128.3-1_amd64.deb 67046126 SHA256 
1b5c86123bf27458e0a21f2a2b00cff585227c2f82ab7ce9edb2b45634e42ae6 SHA512 
67b0430b55b9bfa8aac21f110082533783bb441febc7d33a54c448b66868350237a673e9a47cd5446eb45bf8cfad0c97de904c995218d30372c4189be20fc8cd
 WHIRLPOOL 
7c4478697813509cecf6b62b087401a480adde0bb391e0d46075bb602b98b4492adc376f0d611f067d001518fb67a0df0705a0bd58edbd5962b013cd8715f653

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-61.0.3124.4.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-61.0.3128.3.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-61.0.3124.4.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-61.0.3128.3.ebuild



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

2017-06-16 Thread Mike Gilbert
commit: 7fbee3d7cc97d8ef72d7c903286d2746cac9c58a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Jun 16 12:39:21 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Jun 16 12:40:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fbee3d7

www-client/google-chrome-beta: automated update (60.0.3112.32)

Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-60.0.3112.24.ebuild => google-chrome-beta-60.0.3112.32.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index fa91c5d932e..786b00bc835 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_60.0.3112.24-1_amd64.deb 63477786 SHA256 
ff2cfa23b80330f08330f99d8c1052ec193ca40b07b3fb715fb1fad9b8c0a7a4 SHA512 
713b770d1ff003b369d5c40c9d347636fb54edb8d363d82f2cb0dec0e24e37e2f62e15514a06828c777aea7cd912b2feae26f5841869f60e35d6ae48a4ffc609
 WHIRLPOOL 
ff8f07a933344e0153f4255b0fa855320ad13903b09bedcff071aecd058c005f74f6a5b32133530fec6fc603332c26ab5b514d537315e1191aa79e43d99ec5a3
+DIST google-chrome-beta_60.0.3112.32-1_amd64.deb 67132004 SHA256 
57f4a7cbf100b32f875abd99b97dd133eb64e7161fc5e461b8c2f34c51735c7e SHA512 
881e914f5a4167e3c8c4e68af56d8e0b8c53db3adb5c4ccfab3d3ccb9e47259c41518776a1198722cf912ffd52eef59f99476c9551ace333589e75005d373f30
 WHIRLPOOL 
5161ee55cd7efed037383935976c78fd708416e2c837f52039d549f6b5d92bb9890d048608c91fbdd6c42a96e6557bed9ddce19eb684a262511fddd89a49f1c3

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-60.0.3112.24.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-60.0.3112.32.ebuild
similarity index 100%
rename from www-client/google-chrome-beta/google-chrome-beta-60.0.3112.24.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-60.0.3112.32.ebuild



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

2017-06-16 Thread Mike Gilbert
commit: a952726099cd640cda3608a3d574c13a473d1d6e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Jun 16 12:39:57 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Jun 16 12:40:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9527260

www-plugins/chrome-binary-plugins: automated update (61.0.3128.3, 60.0.3112.32, 
59.0.3071.104)

Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75

 www-plugins/chrome-binary-plugins/Manifest  | 6 +++---
 0.3071.86.ebuild => chrome-binary-plugins-59.0.3071.104.ebuild} | 0
 ...4_beta.ebuild => chrome-binary-plugins-60.0.3112.32_beta.ebuild} | 0
 ..._alpha.ebuild => chrome-binary-plugins-61.0.3128.3_alpha.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 75bb3306276..4049e339acc 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_60.0.3112.24-1_amd64.deb 63477786 SHA256 
ff2cfa23b80330f08330f99d8c1052ec193ca40b07b3fb715fb1fad9b8c0a7a4 SHA512 
713b770d1ff003b369d5c40c9d347636fb54edb8d363d82f2cb0dec0e24e37e2f62e15514a06828c777aea7cd912b2feae26f5841869f60e35d6ae48a4ffc609
 WHIRLPOOL 
ff8f07a933344e0153f4255b0fa855320ad13903b09bedcff071aecd058c005f74f6a5b32133530fec6fc603332c26ab5b514d537315e1191aa79e43d99ec5a3
-DIST google-chrome-stable_59.0.3071.86-1_amd64.deb 60835794 SHA256 
895bbda9a3d049daf2b92e1df76ca9196265ad67e77442e0fa9ab5bee18a73af SHA512 
c6089748b1c2c50f55a343e467cd3ce0877a32b69d532ec8d11153ac0675f81624a335f0ab2b821d32669a942bf6776bf66ffc3f36b6e60a6c55f8532a9e11a3
 WHIRLPOOL 
aedde7f1b66b824a5211c36d87ba381e1751d1f4951493caa4270fa87a9901bb9c7a82def44dc8d15e752192a00c380cd27682e0339089d4948ba12037775492
-DIST google-chrome-unstable_61.0.3124.4-1_amd64.deb 66579434 SHA256 
f7d35780aedbf18bf1f95b3cb980c5ad830a2a43d8d7930ad47b3551228a82de SHA512 
e1eb8314798f23b3ca65db68308d71366fcbc923bc80ed18c00fa2fe260de04c02bebaf09aafe85499a4661770de6e5e1dad289f6d7208388235c06a12be05f6
 WHIRLPOOL 
f42b814231388496d9ab05e43e91b71167a1d8a81764142991e5454ceb59a85627fb8d59ac0e6068bb404e48b662943a99ac8b745cc06dcc74421166fc6f
+DIST google-chrome-beta_60.0.3112.32-1_amd64.deb 67132004 SHA256 
57f4a7cbf100b32f875abd99b97dd133eb64e7161fc5e461b8c2f34c51735c7e SHA512 
881e914f5a4167e3c8c4e68af56d8e0b8c53db3adb5c4ccfab3d3ccb9e47259c41518776a1198722cf912ffd52eef59f99476c9551ace333589e75005d373f30
 WHIRLPOOL 
5161ee55cd7efed037383935976c78fd708416e2c837f52039d549f6b5d92bb9890d048608c91fbdd6c42a96e6557bed9ddce19eb684a262511fddd89a49f1c3
+DIST google-chrome-stable_59.0.3071.104-1_amd64.deb 60841702 SHA256 
6e949c5d3dc9e2bf33d009b8e7424625daeb21bc058b121309ca1ce65ae3855e SHA512 
af53954e51b8205e11598a769b8cb57acbb6b451c9697bb7e8267316d0666042e3cc07e9f77374e7a1a12fe86a78242a85b64eb5aec10f3469156602b61a4fda
 WHIRLPOOL 
0379fdec70193c20db7cc5443650d6600228d69fd61ea64dac3762bd88cf121d9dd5afdcedef8ad514c6d7e4db637a918bad62686f1405986609753d7a3758c5
+DIST google-chrome-unstable_61.0.3128.3-1_amd64.deb 67046126 SHA256 
1b5c86123bf27458e0a21f2a2b00cff585227c2f82ab7ce9edb2b45634e42ae6 SHA512 
67b0430b55b9bfa8aac21f110082533783bb441febc7d33a54c448b66868350237a673e9a47cd5446eb45bf8cfad0c97de904c995218d30372c4189be20fc8cd
 WHIRLPOOL 
7c4478697813509cecf6b62b087401a480adde0bb391e0d46075bb602b98b4492adc376f0d611f067d001518fb67a0df0705a0bd58edbd5962b013cd8715f653

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-59.0.3071.86.ebuild 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-59.0.3071.104.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-59.0.3071.86.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-59.0.3071.104.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.24_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.32_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.24_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-60.0.3112.32_beta.ebuild

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-61.0.3124.4_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-61.0.3128.3_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-61.0.3124.4_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-61.0.3128.3_alpha.ebuild



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

2017-06-16 Thread Mike Gilbert
commit: 0068717fe5f97cfe44c809b1a531da731a8da7c7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Fri Jun 16 12:39:39 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Fri Jun 16 12:40:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0068717f

www-client/google-chrome: automated update (59.0.3071.104)

Package-Manager: Portage-2.3.6_p7, Repoman-2.3.2_p75

 www-client/google-chrome/Manifest   | 2 +-
 ...le-chrome-59.0.3071.86.ebuild => google-chrome-59.0.3071.104.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome/Manifest 
b/www-client/google-chrome/Manifest
index ae6feff16c7..427dbfb37d0 100644
--- a/www-client/google-chrome/Manifest
+++ b/www-client/google-chrome/Manifest
@@ -1 +1 @@
-DIST google-chrome-stable_59.0.3071.86-1_amd64.deb 60835794 SHA256 
895bbda9a3d049daf2b92e1df76ca9196265ad67e77442e0fa9ab5bee18a73af SHA512 
c6089748b1c2c50f55a343e467cd3ce0877a32b69d532ec8d11153ac0675f81624a335f0ab2b821d32669a942bf6776bf66ffc3f36b6e60a6c55f8532a9e11a3
 WHIRLPOOL 
aedde7f1b66b824a5211c36d87ba381e1751d1f4951493caa4270fa87a9901bb9c7a82def44dc8d15e752192a00c380cd27682e0339089d4948ba12037775492
+DIST google-chrome-stable_59.0.3071.104-1_amd64.deb 60841702 SHA256 
6e949c5d3dc9e2bf33d009b8e7424625daeb21bc058b121309ca1ce65ae3855e SHA512 
af53954e51b8205e11598a769b8cb57acbb6b451c9697bb7e8267316d0666042e3cc07e9f77374e7a1a12fe86a78242a85b64eb5aec10f3469156602b61a4fda
 WHIRLPOOL 
0379fdec70193c20db7cc5443650d6600228d69fd61ea64dac3762bd88cf121d9dd5afdcedef8ad514c6d7e4db637a918bad62686f1405986609753d7a3758c5

diff --git a/www-client/google-chrome/google-chrome-59.0.3071.86.ebuild 
b/www-client/google-chrome/google-chrome-59.0.3071.104.ebuild
similarity index 100%
rename from www-client/google-chrome/google-chrome-59.0.3071.86.ebuild
rename to www-client/google-chrome/google-chrome-59.0.3071.104.ebuild



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

2017-06-16 Thread Michael Palimaka
commit: 7a0b6622980319c8f9625afdbc39cec15f9f77db
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Jun 16 12:31:56 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Jun 16 12:32:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a0b6622

sys-auth/elogind: version bump 229.6

Gentoo-bug: 621888
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 sys-auth/elogind/Manifest |  1 +
 sys-auth/elogind/elogind-229.6.ebuild | 84 +++
 2 files changed, 85 insertions(+)

diff --git a/sys-auth/elogind/Manifest b/sys-auth/elogind/Manifest
index dfc118e3315..1feee59949c 100644
--- a/sys-auth/elogind/Manifest
+++ b/sys-auth/elogind/Manifest
@@ -1,3 +1,4 @@
 DIST elogind-229.3.tar.gz 757313 SHA256 
8506145e6071a637aec91276e19cd932b3d9cd297c8e833f7b08b8d53fd7a1d7 SHA512 
5449f6b8ca1cb14d91681de1273819e193c88f6ec22b790cfe2c9d9d6e0d37bfc3b707a650d14471e0cb3a577289f725e1a47d22a14db2154a2c0552ecde32ca
 WHIRLPOOL 
e71fc14453017a570c3c2766b42fb444e41b2a703689e745ea3a01bd915fdab896b4bd3f229f74d438d48b8383a0b590c456b9269a739e9bf7b8d60441fbb33c
 DIST elogind-229.4.tar.gz 757388 SHA256 
a34012b087d1da4a5c23ab66a3debe34a4dc01cf61fd4ba91a28a9579aafa2ed SHA512 
d26a1297755ca262b9ac5b85d8c4e8f706d5eccdc69d9de312297812bafc20eeb5180824fb85d6f6c9cdfe4966ca1acc4ce62902c6b8816e4e8fb244aa4b9518
 WHIRLPOOL 
6e9a1a97ce317d3ae562663b1cac5115507487694aed3bd16e500f2c4b295a8735705b2e1c24c1ddf10c00a0eb1d2c444a6bdbb154b1e20c6e7210fdbfa95f8f
 DIST elogind-229.5.tar.gz 765173 SHA256 
82078a0f5eb0c00c81dcaf2866dc5a954bd5e6e2802954ff7ce37e1ae8ec720d SHA512 
95c9f92ea01bd7301331d408f6549d02f39ad205849f3b70694c189778ceb8cff3f332ae623fc31ed46a877ec219ebce756f9bbb7d437b8fab8589132f47d19b
 WHIRLPOOL 
85bf02431a88e3520060baf276cee91fade020777ef3611a52135b606400efb5e70166ad2a7277e0969ae4e172bde5676a7d2fa5e9a6b142675b6cd5e7245524
+DIST elogind-229.6.tar.gz 765900 SHA256 
19f08dba36509b3c5baf1f35d9ac1f5b473b550c081f63fa64ffbe8862ede7aa SHA512 
a1bf2937ad2f8d351cd5a0ca5c1c73e85746d14e0a252befa3ed0d396e782df0fde34c49101931189cd56404b59709a7e5ae5beceaac6f30151b50fb32d26ae0
 WHIRLPOOL 
24d6315d4568b18df4eaa42410f2744b31ab935dd6a7fb0281e4fe2b2e953e411d462db829cbde786c338e823823998e13a9af287252440642499dfe8aca1b1c

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



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

2017-06-16 Thread Kent Fredric
commit: 4c4346b0e122b7684040b0cb11091cc003eb9777
Author: Kent Fredric  gentoo  org>
AuthorDate: Fri Jun 16 01:42:13 2017 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Fri Jun 16 12:28:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4346b0

dev-perl/WWW-Curl: Fix for '.' in @INC

Generic Module::Install fix for Perl 5.26

Bug: https://rt.cpan.org/Ticket/Display.html?id=122110
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/WWW-Curl/WWW-Curl-4.170.0.ebuild | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-perl/WWW-Curl/WWW-Curl-4.170.0.ebuild 
b/dev-perl/WWW-Curl/WWW-Curl-4.170.0.ebuild
index 00437374662..8a61bc797f1 100644
--- a/dev-perl/WWW-Curl/WWW-Curl-4.170.0.ebuild
+++ b/dev-perl/WWW-Curl/WWW-Curl-4.170.0.ebuild
@@ -20,3 +20,9 @@ DEPEND="${RDEPEND}"
 SRC_TEST=online
 
 PATCHES=("${FILESDIR}"/${PN}-4.150.0-curl-7.50.2.patch)
+
+src_prepare() {
+   sed -i -e 's/use inc::Module::Install;/use lib q[.]; use 
inc::Module::Install;/' Makefile.PL ||
+   die "Can't patch Makefile.PL for 5.26 dot-in-inc"
+   perl-module_src_prepare
+}



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

2017-06-16 Thread Alexis Ballier
commit: 116f75f4d317f6c5d12ff0ead7e63301cc8aef0e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:57:34 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 11:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=116f75f4

sci-libs/fftw: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/sci-libs/fftw/fftw-3.3.6_p2.ebuild 
b/sci-libs/fftw/fftw-3.3.6_p2.ebuild
index d8341392a97..24266081efe 100644
--- a/sci-libs/fftw/fftw-3.3.6_p2.ebuild
+++ b/sci-libs/fftw/fftw-3.3.6_p2.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} = * ]]; then
EGIT_REPO_URI="https://github.com/FFTW/fftw3.git;
 else
SRC_URI="http://www.fftw.org/${PN}-${PV/_p/-pl}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 fi
 
 LICENSE="GPL-2+"



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

2017-06-16 Thread Alexis Ballier
commit: ad2ea43b31d189923a40acde2ce3e35fe496952e
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 11:08:25 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 11:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad2ea43b

profiles/arch/arm64: mask neon on pixman, it seems armv7 only.

 profiles/arch/arm64/package.use.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index aa495702648..9d034e1dbe3 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,11 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Alexis Ballier  (16 Jun 2017)
+# neon on pixman seems armv7 only, at least according to configure checks: it
+# aborts when neon is enabled.
+x11-libs/pixman neon
+
 # James Le Cuirot  (22 May 2017)
 # Only available on some architectures.
 dev-java/icedtea -shenandoah



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

2017-06-16 Thread Alexis Ballier
commit: e13e91c399027f67f7305fafa72ab0ecd6a9df55
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:40:31 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 11:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e13e91c3

app-text/psutils: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/psutils/psutils-1.17-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/psutils/psutils-1.17-r3.ebuild 
b/app-text/psutils/psutils-1.17-r3.ebuild
index 24f0a285f2f..fb304f55e98 100644
--- a/app-text/psutils/psutils-1.17-r3.ebuild
+++ b/app-text/psutils/psutils-1.17-r3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="mirror://debian/pool/main/p/${PN}/${PN}_${PV}.dfsg.orig.tar.gz"
 
 LICENSE="psutils"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=""



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

2017-06-16 Thread Alexis Ballier
commit: c8c01536b72120ac7723d96a0bb8a971fb3b938c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:57:57 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 11:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8c01536

virtual/fortran: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 virtual/fortran/fortran-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/fortran/fortran-0.ebuild b/virtual/fortran/fortran-0.ebuild
index 46dad130bea..662d31d04eb 100644
--- a/virtual/fortran/fortran-0.ebuild
+++ b/virtual/fortran/fortran-0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 DESCRIPTION="Virtual for Fortran Compiler"
 
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris"
 IUSE="openmp"
 
 RDEPEND="



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

2017-06-16 Thread Alexis Ballier
commit: 259b81dcca6cb907249d87b1bb6cd088bc8e32ff
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:42:15 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 11:24:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=259b81dc

app-text/t1utils: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/app-text/t1utils/t1utils-1.39.ebuild 
b/app-text/t1utils/t1utils-1.39.ebuild
index 4e80258518f..c5f8095a6db 100644
--- a/app-text/t1utils/t1utils-1.39.ebuild
+++ b/app-text/t1utils/t1utils-1.39.ebuild
@@ -6,7 +6,7 @@ IUSE=""
 DESCRIPTION="Type 1 Font utilities"
 SRC_URI="http://www.lcdf.org/type/${P}.tar.gz;
 HOMEPAGE="http://www.lcdf.org/type/#t1utils;
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 SLOT="0"
 LICENSE="BSD"
 



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

2017-06-16 Thread Alexis Ballier
commit: dca687c97a9f66d7ac0f22f017b5999258d7b531
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 11:03:48 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 11:24:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dca687c9

app-text/enchant: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/app-text/enchant/enchant-1.6.0.ebuild 
b/app-text/enchant/enchant-1.6.0.ebuild
index b0854146f55..5a4e593dc79 100644
--- a/app-text/enchant/enchant-1.6.0.ebuild
+++ b/app-text/enchant/enchant-1.6.0.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="http://www.abisource.com/downloads/${PN}/${PV}/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x86-solaris"
 
 IUSE="aspell +hunspell static-libs zemberek"
 REQUIRED_USE="|| ( hunspell aspell zemberek )"



[gentoo-commits] repo/gentoo:master commit in: mail-filter/rspamd/

2017-06-16 Thread Dirkjan Ochtman
commit: 64e52c168262355de690506dfe8f1c4d12d6269b
Author: Dirkjan Ochtman  gentoo  org>
AuthorDate: Fri Jun 16 11:01:02 2017 +
Commit: Dirkjan Ochtman  gentoo  org>
CommitDate: Fri Jun 16 11:01:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64e52c16

mail-filter/rspamd: version bump to 1.6.1clear

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 mail-filter/rspamd/Manifest|  1 +
 mail-filter/rspamd/rspamd-1.6.1.ebuild | 75 ++
 2 files changed, 76 insertions(+)

diff --git a/mail-filter/rspamd/Manifest b/mail-filter/rspamd/Manifest
index 7fef41a1d11..d063c9714dc 100644
--- a/mail-filter/rspamd/Manifest
+++ b/mail-filter/rspamd/Manifest
@@ -1,3 +1,4 @@
 DIST rspamd-1.5.7.tar.gz 2384051 SHA256 
73d18b129a072e35c74c9a440abdd0985fa15696d308a5e23736ec007432fd70 SHA512 
362f8615795c739d1c869dd48426dadee38924287d82ad725baf0d3f80aa4571db29501d95d1497d3dfef61af39c2c7254f2c9437ee46f453e380f595b5873ca
 WHIRLPOOL 
cec77680fd767badf2b8a302372543e4c34a215dbc7e5e3389b7721a1aac82dd2ba7c0d1ee407f61ad2660ccb6917a366a6613af63d7e2d7922693a7ab9af53d
 DIST rspamd-1.5.9.tar.gz 2386813 SHA256 
864705c09733257449ffc52740f380c1edeb56bb4be6e0ad0a8ab8c0cdf6cbe6 SHA512 
258e266bca592e2f52760019ffa8c319a84c23a53fec984dc803f5ac12f902f2d0978dbc5e35b623eb02ff8e2e7dc00e2cb8efcc0ea9a06b67f7210ae8f42bc3
 WHIRLPOOL 
667c46268d547c20e5868ae649fb81fb6a6dfb2d92b4a261d479ca74aa6393453037e0557a68d5eb5c1307a28568f2a9cee5af8fe3f8e653c518859043c07f0b
 DIST rspamd-1.6.0.tar.gz 2461626 SHA256 
8a4df7115193fce8c8147495ef6b25961acd0f9758a12c6c5f6617f227f7153e SHA512 
af6b362fa77e7153285a47d663afcf0a6c5f344a3888eb2d65abbdbc45c6d1745f5af30cc51df472f1da9a8d10b48712e67966be8632dfbcc9e02f2a589182f1
 WHIRLPOOL 
e4e0fce3f02c1cd12b81724fb5a37ede4d6f30673ed639eb6fca7d2ea2922812af8f2bf266cfb1a96db2bd04003c8dd05fe14135cda59c6ec4a9b48e5f5da844
+DIST rspamd-1.6.1.tar.gz 2462565 SHA256 
c992f1063bc59c9cbe36db4d6a74fb382049528b7310ae30e79da75d460e761e SHA512 
3bd50ebc1d7e413afbe52608f94b644e1cf684a708776207710eb4556abb0500b2a23141a90e811854a25a9fbedf0a6b1c5a05363c0cf372921b8acd457b702b
 WHIRLPOOL 
64bc9138d5e18482402d7a00f3ef1fe8101edb8ff8636d7287dba43fdd2d33ab465e04f17092f6ddea23f21471818b9f0e0bba1e2fd723178c9e99a633c87a8f

diff --git a/mail-filter/rspamd/rspamd-1.6.1.ebuild 
b/mail-filter/rspamd/rspamd-1.6.1.ebuild
new file mode 100644
index 000..e00de6280f1
--- /dev/null
+++ b/mail-filter/rspamd/rspamd-1.6.1.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit cmake-utils pax-utils user systemd
+
+DESCRIPTION="Rapid spam filtering system"
+SRC_URI="https://github.com/vstakhov/rspamd/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+HOMEPAGE="https://github.com/vstakhov/rspamd;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cpu_flags_x86_ssse3 fann gd jemalloc +jit libressl pcre2"
+
+RDEPEND="!libressl? ( dev-libs/openssl:0=[-bindist] )
+   libressl? ( dev-libs/libressl:0= )
+   fann? ( sci-mathematics/fann )
+   pcre2? ( dev-libs/libpcre2[jit=] )
+   !pcre2? ( dev-libs/libpcre[jit=] )
+   jit? ( dev-lang/luajit:2 )
+   jemalloc? ( dev-libs/jemalloc )
+   dev-libs/libevent
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   

[gentoo-commits] proj/sci:master commit in: sci-chemistry/acpype/

2017-06-16 Thread Alexey Shvetsov
commit: db2c346dc7e498e0f3d48bfa587679d5014d06a1
Author: Alexey Shvetsov  omrb  pnpi  spb  ru>
AuthorDate: Fri Jun 16 10:57:02 2017 +
Commit: Alexey Shvetsov  gentoo  org>
CommitDate: Fri Jun 16 10:57:02 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=db2c346d

sci-chemistry/acpype: Move from tree

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sci-chemistry/acpype/acpype-0.1.0.ebuild | 32 
 sci-chemistry/acpype/metadata.xml|  9 +
 2 files changed, 41 insertions(+)

diff --git a/sci-chemistry/acpype/acpype-0.1.0.ebuild 
b/sci-chemistry/acpype/acpype-0.1.0.ebuild
new file mode 100644
index 0..30b496f31
--- /dev/null
+++ b/sci-chemistry/acpype/acpype-0.1.0.ebuild
@@ -0,0 +1,32 @@
+# 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
+
+DESCRIPTION="AnteChamber PYthon Parser interfacE"
+HOMEPAGE="https://github.com/llazzaro;
+SRC_URI="https://github.com/llazzaro/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux"
+IUSE=""
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+DEPEND="
+   ${PYTHON_DEPS}
+   sci-chemistry/openbabel
+   sci-chemistry/ambertools"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   sed \
+   -e '1s:^:#!/usr/bin/python\n\n:g' \
+   -i acpype/CcpnToAcpype.py || die
+   default
+}

diff --git a/sci-chemistry/acpype/metadata.xml 
b/sci-chemistry/acpype/metadata.xml
new file mode 100644
index 0..9528200f2
--- /dev/null
+++ b/sci-chemistry/acpype/metadata.xml
@@ -0,0 +1,9 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   ale...@gentoo.org
+   Alexey Shvetsov
+   AnteChamber PYthon Parser interfacE
+   
+



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

2017-06-16 Thread Alexis Ballier
commit: f3f33e64ee5b36a8bc600a2981cb610b6a74cb82
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:26:43 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:26:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3f33e64

media-libs/imlib2: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/media-libs/imlib2/imlib2-1.4.10.ebuild 
b/media-libs/imlib2/imlib2-1.4.10.ebuild
index 267d7be1dcb..01bf754dc87 100644
--- a/media-libs/imlib2/imlib2-1.4.10.ebuild
+++ b/media-libs/imlib2/imlib2-1.4.10.ebuild
@@ -15,7 +15,7 @@ inherit enlightenment toolchain-funcs multilib-minimal eutils
 DESCRIPTION="Version 2 of an advanced replacement library for libraries like 
libXpm"
 HOMEPAGE="https://www.enlightenment.org/;
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~x64-solaris ~x86-solaris"
 
 IUSE="bzip2 gif jpeg cpu_flags_x86_mmx cpu_flags_x86_sse2 mp3 png static-libs 
tiff X zlib"
 



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

2017-06-16 Thread Alexis Ballier
commit: aca2a02a6d45ecfbe88fde5b704f1722e221a1cc
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:27:18 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:27:18 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aca2a02a

media-libs/libid3tag: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild 
b/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild
index 5e64243d56f..8bd20c8236a 100644
--- a/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild
+++ b/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mad/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 IUSE="debug static-libs"
 
 RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]



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

2017-06-16 Thread Alexis Ballier
commit: c21563bd2b670f01a5877dd1c93f5ac17ba703c8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:25:07 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:25:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c21563bd

media-libs/libcaca: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/media-libs/libcaca/libcaca-0.99_beta19.ebuild 
b/media-libs/libcaca/libcaca-0.99_beta19.ebuild
index 589d14316c6..b099168ad92 100644
--- a/media-libs/libcaca/libcaca-0.99_beta19.ebuild
+++ b/media-libs/libcaca/libcaca-0.99_beta19.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://libcaca.zoy.org/files/${PN}/${MY_P}.tar.gz;
 
 LICENSE="GPL-2 ISC LGPL-2.1 WTFPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~amd64-fbsd 
~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="cxx doc imlib java mono ncurses opengl python ruby slang static-libs 
test truetype X"
 REQUIRED_USE="
python? ( ${PYTHON_REQUIRED_USE} )



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

2017-06-16 Thread Alexis Ballier
commit: 96b4b793f5825acbd0c2406ce306b29759afb95c
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:37:04 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:37:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96b4b793

media-libs/libid3tag: Fix build with gperf 3.1.

https://bugs.gentoo.org/show_bug.cgi?id=605158
By Mihai Moldovan.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../libid3tag/files/libid3tag-0.15.1b-fix-signature.patch| 12 
 media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild |  4 
 2 files changed, 16 insertions(+)

diff --git a/media-libs/libid3tag/files/libid3tag-0.15.1b-fix-signature.patch 
b/media-libs/libid3tag/files/libid3tag-0.15.1b-fix-signature.patch
new file mode 100644
index 000..a365811c55f
--- /dev/null
+++ b/media-libs/libid3tag/files/libid3tag-0.15.1b-fix-signature.patch
@@ -0,0 +1,12 @@
+diff -pur libid3tag-0.15.1b-orig/compat.h libid3tag-0.15.1b/compat.h
+--- libid3tag-0.15.1b-orig/compat.h2004-01-23 10:41:32.0 +0100
 libid3tag-0.15.1b/compat.h 2017-03-15 01:49:23.808834401 +0100
+@@ -34,7 +34,7 @@ struct id3_compat {
+ };
+ 
+ struct id3_compat const *id3_compat_lookup(register char const *,
+- register unsigned int);
++ register size_t);
+ 
+ int id3_compat_fixup(struct id3_tag *);
+ 

diff --git a/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild 
b/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild
index 8bd20c8236a..f5b1ca4ed57 100644
--- a/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild
+++ b/media-libs/libid3tag/libid3tag-0.15.1b-r4.ebuild
@@ -23,6 +23,10 @@ DEPEND="${RDEPEND}
 src_prepare() {
epunt_cxx #74489
epatch "${FILESDIR}/${PV}"/*.patch
+   # gperf 3.1 and newer generate code with a size_t length parameter,
+   # older versions are incompatible and take an unsigned int.
+   has_version '>=dev-util/gperf-3.1' && epatch 
"${FILESDIR}/${P}-fix-signature.patch"
+
elibtoolize #sane .so versionning on fbsd and .so -> .so.version symlink
 }
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/game-music-emu/

2017-06-16 Thread Alexis Ballier
commit: 6f49dbd7d80932cd126c69cd154a9bbbe8af6e64
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:58:37 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:58:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f49dbd7

media-libs/game-music-emu: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/game-music-emu/game-music-emu-0.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild 
b/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild
index 7327946378d..70c22bbe3c9 100644
--- a/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild
+++ b/media-libs/game-music-emu/game-music-emu-0.6.1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://bitbucket.org/mpyne/game-music-emu/downloads/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ppc ppc64 x86 ~amd64-fbsd ~x86-fbsd"
 IUSE=""
 
 DOCS="changes.txt design.txt gme.txt readme.txt"



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

2017-06-16 Thread Alexis Ballier
commit: 10dc5bf108936c557ed1071a34a700351397af61
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:56:45 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:56:45 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10dc5bf1

media-libs/opus: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/opus/opus-1.1.5.ebuild| 2 +-
 media-libs/opus/opus-1.2_beta.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/opus/opus-1.1.5.ebuild 
b/media-libs/opus/opus-1.1.5.ebuild
index d297f50f18f..1fadceaec8e 100644
--- a/media-libs/opus/opus-1.1.5.ebuild
+++ b/media-libs/opus/opus-1.1.5.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://archive.mozilla.org/pub/${PN}/${P}.tar.gz
http://downloads.xiph.org/releases/${PN}/${P}.tar.gz;
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
 fi
 
 DESCRIPTION="Open codec designed for internet transmission of interactive 
speech and audio"

diff --git a/media-libs/opus/opus-1.2_beta.ebuild 
b/media-libs/opus/opus-1.2_beta.ebuild
index f863dd1233f..d832199ea08 100644
--- a/media-libs/opus/opus-1.2_beta.ebuild
+++ b/media-libs/opus/opus-1.2_beta.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
 else
SRC_URI="https://github.com/xiph/opus/archive/v${PV/_/-}.tar.gz -> 
${P}.tar.gz"
if [[ "${PV}" != *_alpha* ]] &&  [[ "${PV}" != *_beta* ]] ; then
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc 
~x86 ~amd64-fbsd"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 
~sparc ~x86 ~amd64-fbsd"
fi
 fi
 



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

2017-06-16 Thread Alexis Ballier
commit: 9eb57af896a1e5aa0fa320238216c30e18cfb2de
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:03:35 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:03:35 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9eb57af8

sys-auth/realtime-base: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-auth/realtime-base/realtime-base-0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-auth/realtime-base/realtime-base-0.1.ebuild 
b/sys-auth/realtime-base/realtime-base-0.1.ebuild
index a24c3f278bc..7af8533be7c 100644
--- a/sys-auth/realtime-base/realtime-base-0.1.ebuild
+++ b/sys-auth/realtime-base/realtime-base-0.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2012 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=3
@@ -11,7 +11,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sh sparc x86 ~amd64-fbsd"
 IUSE=""
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: media-sound/jack-audio-connection-kit/

2017-06-16 Thread Alexis Ballier
commit: cefcbdea3c86d47da2fda6b0d490fac7143cf3a8
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:08:42 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:08:42 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cefcbdea

media-sound/jack-audio-connection-kit: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../jack-audio-connection-kit-0.125.0.ebuild  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild
 
b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild
index 3c517e9cb8a..cecf62c52ed 100644
--- 
a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild
+++ 
b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.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=5
@@ -11,7 +11,7 @@ SRC_URI="http://www.jackaudio.org/downloads/${P}.tar.gz;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd"
 IUSE="cpu_flags_x86_3dnow altivec alsa coreaudio doc debug examples oss 
cpu_flags_x86_sse pam"
 
 # readline: only used for jack_transport -> useless for non native ABIs



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

2017-06-16 Thread Alexis Ballier
commit: 74b717cbc4803d087df3db3b51b6b473f75e2eba
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:02:11 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:02:11 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74b717cb

media-libs/ladspa-sdk: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/ladspa-sdk/ladspa-sdk-1.13-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/ladspa-sdk/ladspa-sdk-1.13-r2.ebuild 
b/media-libs/ladspa-sdk/ladspa-sdk-1.13-r2.ebuild
index 4e3c29e04f7..cefa883934a 100644
--- a/media-libs/ladspa-sdk/ladspa-sdk-1.13-r2.ebuild
+++ b/media-libs/ladspa-sdk/ladspa-sdk-1.13-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://www.ladspa.org/download/${MY_P}.tgz;
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86 ~amd64-fbsd 
~x86-fbsd"
 IUSE=""
 
 RDEPEND="abi_x86_32? ( !<=app-emulation/emul-linux-x86-soundlibs-20130224-r2



[gentoo-commits] repo/gentoo:master commit in: media-sound/jack-audio-connection-kit/

2017-06-16 Thread Alexis Ballier
commit: cd2a7437ed6fbb824463b54858a89f595c2cb4dd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:09:51 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:09:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd2a7437

media-sound/jack-audio-connection-kit: Add := dep on db

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild
 
b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild
index cecf62c52ed..e3df00afefd 100644
--- 
a/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild
+++ 
b/media-sound/jack-audio-connection-kit/jack-audio-connection-kit-0.125.0.ebuild
@@ -17,7 +17,7 @@ IUSE="cpu_flags_x86_3dnow altivec alsa coreaudio doc debug 
examples oss cpu_flag
 # readline: only used for jack_transport -> useless for non native ABIs
 # libsndfile: ditto for jackrec
 RDEPEND="
-   sys-libs/db[${MULTILIB_USEDEP}]
+   sys-libs/db:=[${MULTILIB_USEDEP}]
sys-libs/readline:0=
>=media-libs/libsndfile-1.0.0
alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )



[gentoo-commits] repo/gentoo:master commit in: media-libs/vamp-plugin-sdk/

2017-06-16 Thread Alexis Ballier
commit: 4f8f8b880cc2eb3f28655e570aa51fe2aeb69da2
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 10:03:53 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 10:03:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8f8b88

media-libs/vamp-plugin-sdk: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild 
b/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
index 72dcaa152c2..7ed321aedaa 100644
--- a/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
+++ b/media-libs/vamp-plugin-sdk/vamp-plugin-sdk-2.7.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://code.soundsoftware.ac.uk/attachments/download/2206/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~x86"
 IUSE="doc static-libs"
 
 RDEPEND="media-libs/libsndfile"



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

2017-06-16 Thread Alexis Ballier
commit: 019c44a86ad017ea54703b7594b076cb0b840707
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:44:01 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:44:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=019c44a8

media-libs/kvazaar: Do not build with Werror, bug #618434

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/kvazaar/kvazaar-1.1.0.ebuild | 1 +
 media-libs/kvazaar/kvazaar-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/media-libs/kvazaar/kvazaar-1.1.0.ebuild 
b/media-libs/kvazaar/kvazaar-1.1.0.ebuild
index 959e9d94b3d..385307dd3de 100644
--- a/media-libs/kvazaar/kvazaar-1.1.0.ebuild
+++ b/media-libs/kvazaar/kvazaar-1.1.0.ebuild
@@ -50,6 +50,7 @@ src_prepare() {
 multilib_src_configure() {
ECONF_SOURCE="${S}" \
econf \
+   --disable-werror \
--docdir "/usr/share/doc/${PF}" \
$(use_enable static-libs static)
 }

diff --git a/media-libs/kvazaar/kvazaar-.ebuild 
b/media-libs/kvazaar/kvazaar-.ebuild
index 6de1ffe08b0..8a18c59ab2a 100644
--- a/media-libs/kvazaar/kvazaar-.ebuild
+++ b/media-libs/kvazaar/kvazaar-.ebuild
@@ -49,6 +49,7 @@ src_prepare() {
 multilib_src_configure() {
ECONF_SOURCE="${S}" \
econf \
+   --disable-werror \
--docdir "/usr/share/doc/${PF}" \
$(use_enable static-libs static)
 }



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

2017-06-16 Thread Alexis Ballier
commit: cec71e439694045d70bdffb447db3371769cadf7
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:15:02 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:36:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cec71e43

media-libs/openh264: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/media-libs/openh264/openh264-1.6.0.ebuild 
b/media-libs/openh264/openh264-1.6.0.ebuild
index b5020feb46b..afef0139aed 100644
--- a/media-libs/openh264/openh264-1.6.0.ebuild
+++ b/media-libs/openh264/openh264-1.6.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/cisco/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz
https://github.com/mozilla/gmp-api/archive/Firefox${MOZVER}.tar.gz -> 
gmp-api-Firefox${MOZVER}.tar.gz"
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 IUSE="+plugin utils"
 
 RESTRICT="bindist"



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

2017-06-16 Thread Alexis Ballier
commit: 0a76f1de65a184e2ce70e110954415418fbe095a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:36:12 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:36:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a76f1de

media-libs/soxr: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/media-libs/soxr/soxr-0.1.2.ebuild 
b/media-libs/soxr/soxr-0.1.2.ebuild
index c423d063db9..30528c0e529 100644
--- a/media-libs/soxr/soxr-0.1.2.ebuild
+++ b/media-libs/soxr/soxr-0.1.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/soxr/${MY_P}.tar.xz"
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd"
 IUSE="examples"
 
 DEPEND=""



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

2017-06-16 Thread Alexis Ballier
commit: bb4c53415c23a7a2e70f97f0690afad9ea06bb8f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:15:58 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:36:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4c5341

media-libs/kvazaar: backport upstream fix to build with gcc7.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/kvazaar/files/gcc7.patch | 46 +
 media-libs/kvazaar/kvazaar-1.1.0.ebuild |  1 +
 2 files changed, 47 insertions(+)

diff --git a/media-libs/kvazaar/files/gcc7.patch 
b/media-libs/kvazaar/files/gcc7.patch
new file mode 100644
index 000..12ff8ad00ff
--- /dev/null
+++ b/media-libs/kvazaar/files/gcc7.patch
@@ -0,0 +1,46 @@
+commit 47a9f0de049e77e866ea5bdd4bc7c795ea6dd641
+Author: Ari Lemmetti 
+Date:   Tue Apr 11 12:57:22 2017 +0300
+
+Modify and use FILL_ARRAY macro to prevent warning on GCC 7
+
+Following warning was given and is false positive
+
+error: 'memset' used with length equal to number of elements without 
multiplication by element size [-Werror=memset-elt-size]
+
+diff --git a/src/global.h b/src/global.h
+index bedcd49..5181674 100644
+--- a/src/global.h
 b/src/global.h
+@@ -219,7 +219,11 @@ typedef int16_t coeff_t;
+ // Fill a structure or a static array with val bytes.
+ #define FILL(var, val) memset(&(var), (val), sizeof(var))
+ // Fill a number of elements in an array with val bytes.
+-#define FILL_ARRAY(ar, val, size) memset((ar), (val), (size) * sizeof(*(ar)))
++#define FILL_ARRAY(ar, val, size) \
++{\
++  void *temp_ptr = (void*)(ar);\
++  memset((temp_ptr), (val), (size) * sizeof(*(ar)));\
++}
+ 
+ #define FREE_POINTER(pointer) { free((void*)pointer); pointer = NULL; }
+ #define MOVE_POINTER(dst_pointer,src_pointer) { dst_pointer = src_pointer; 
src_pointer = NULL; }
+diff --git a/src/rdo.c b/src/rdo.c
+index 52305fd..2579f28 100644
+--- a/src/rdo.c
 b/src/rdo.c
+@@ -558,10 +558,10 @@ void kvz_rdoq(encoder_state_t * const state, coeff_t 
*coef, coeff_t *dest_coeff,
+   // Explicitly tell the only possible numbers of elements to be zeroed.
+   // Hope the compiler is able to utilize this information.
+   switch (cg_num) {
+-case  1: memset(sig_coeffgroup_flag, 0,  1 * 
sizeof(sig_coeffgroup_flag[0])); break;
+-case  4: memset(sig_coeffgroup_flag, 0,  4 * 
sizeof(sig_coeffgroup_flag[0])); break;
+-case 16: memset(sig_coeffgroup_flag, 0, 16 * 
sizeof(sig_coeffgroup_flag[0])); break;
+-case 64: memset(sig_coeffgroup_flag, 0, 64 * 
sizeof(sig_coeffgroup_flag[0])); break;
++case  1: FILL_ARRAY(sig_coeffgroup_flag, 0,  1); break;
++case  4: FILL_ARRAY(sig_coeffgroup_flag, 0,  4); break;
++case 16: FILL_ARRAY(sig_coeffgroup_flag, 0, 16); break;
++case 64: FILL_ARRAY(sig_coeffgroup_flag, 0, 64); break;
+ default: assert(0 && "There should be 1, 4, 16 or 64 coefficient groups");
+   }
+ 

diff --git a/media-libs/kvazaar/kvazaar-1.1.0.ebuild 
b/media-libs/kvazaar/kvazaar-1.1.0.ebuild
index 750b6feced9..959e9d94b3d 100644
--- a/media-libs/kvazaar/kvazaar-1.1.0.ebuild
+++ b/media-libs/kvazaar/kvazaar-1.1.0.ebuild
@@ -38,6 +38,7 @@ DEPEND="${DEPEND}
abi_x86_64? ( ${ASM_DEP} )"
 
 src_prepare() {
+   epatch "${FILESDIR}/gcc7.patch"
eautoreconf
if use test && [ "${PV#}" = "${PV}" ]; then
# https://bugs.gentoo.org/show_bug.cgi?id=595932



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

2017-06-16 Thread Alexis Ballier
commit: e9b0cf41cd475b6c3b76ed73c06ae93554471c77
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 08:31:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:36:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9b0cf41

media-video/mkvtoolnix: remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-video/mkvtoolnix/Manifest|   5 -
 media-video/mkvtoolnix/mkvtoolnix-10.0.0.ebuild|  98 --
 media-video/mkvtoolnix/mkvtoolnix-11.0.0-r1.ebuild |  99 --
 media-video/mkvtoolnix/mkvtoolnix-9.7.1.ebuild | 115 -
 media-video/mkvtoolnix/mkvtoolnix-9.8.0.ebuild |  94 -
 media-video/mkvtoolnix/mkvtoolnix-9.9.0.ebuild |  97 -
 6 files changed, 508 deletions(-)

diff --git a/media-video/mkvtoolnix/Manifest b/media-video/mkvtoolnix/Manifest
index cd6879dfcc4..659ae7adbbd 100644
--- a/media-video/mkvtoolnix/Manifest
+++ b/media-video/mkvtoolnix/Manifest
@@ -1,7 +1,2 @@
-DIST mkvtoolnix-10.0.0.tar.xz 3695108 SHA256 
12be72c373645b5bb9b9ea79ce8447958a1b806162868bb67803baa6d0032333 SHA512 
d78bd7d9d607a270f4370f6f4b04af36fc8004af93fbbe7e486544bc1604bd80b659a4cc97d7e69d2a3d0e33d0e98ad657e44053accc938b2f82c73b5272d5e8
 WHIRLPOOL 
a65be46f61e1d9917dbb6b0ed318ca5b34b823fcde9acce06256cdff499d0fc9615f9f6373ea9deaf77818d30d41470472da7a6e782ab672f558e9970f645f5b
-DIST mkvtoolnix-11.0.0.tar.xz 4471692 SHA256 
bb642e1eb2c402c4f93a962f41a1832c99ee5b782f1596dc20f996e9a4aa426d SHA512 
edd212d651b1c5ff527868a23cc258bf032291392a695858cf083fd10f793393ac2c8de31ddd0ead9d6fc1629dc04c301cbd62bd4afdf6f1c8419adf6217d616
 WHIRLPOOL 
0762dfbb4d86f0a2c0d6265bc31f0d4eb2a6b12d2adac35956e0b7c479b5cf33ad83e889f24bb0dd81e7183a8f79750867ad90e1f86f65a550e0c4a5c16036b8
 DIST mkvtoolnix-12.0.0.tar.xz 4480308 SHA256 
5c2401d1cc36d8a2d57cb791a5a22f3cda69cb0824c6cee35326b35e7f94b536 SHA512 
ccb9c0e368f7fb9cfb2bebaa9f4ef248ccb1aca78136b4e653d32a4319316281d4dd63cfd935c6aa18f1294a17493f61462d13f0552d257b058245019cfe6935
 WHIRLPOOL 
81616f93eb0a123958628386023bb4aa358d2b8620efa3af6ed6239794b1d5d0d3c9216a59d6b7403ccee0054a4bd81abc39e552634c283d7e2caeb5be3e3f2b
 DIST mkvtoolnix-9.6.0.tar.xz 3810216 SHA256 
ebab8dcc59533d248b127d375286eb47880a222ef68ff7a10e1c87d49dbd86bb SHA512 
5f469215a10dc865e51f77c43961705d70b1b0e38d70b930e5065d8d89b8379734d9826a63e2cb7ae9cb6723ed8a1d16793df35bad6244cedaa19bc4df49b436
 WHIRLPOOL 
f90056b595402315651754bf4428762a99a665f8ce78d7eb8d6d5ad3bb8bc95e19b130c154c52c2d1281028ebf78c5834abedf068601382a3fcca9ea2c37aa2a
-DIST mkvtoolnix-9.7.1.tar.xz 3824684 SHA256 
b2b8821e2d74df0f765c97f93ddd1dbfb062f3c22b969cfa04d1bb5cb638a88e SHA512 
dec886e6a53abc76ae0f9ccff3e122b7a267afd3493f41eb006e1a29b22b0a7cca386271fb576e7b863d7ea23605da918a0ce8bb3ffc887e00b1bd07e04b73bc
 WHIRLPOOL 
f2347d8f5a4182f3cd0239c7fbf4cc8c13bea677cdcd10f53c258d85c2035e3d535974f91e5c567722990153ce50b3377f23545ce045fa695af357c2ca3a3552
-DIST mkvtoolnix-9.8.0.tar.xz 3790212 SHA256 
494b2fb9ff83a858d8849baecdd3320456717923bb7a854d31a02a49640228db SHA512 
214f378cec45bea606c516e5ca2472704bad3a50fcb337fc931d9ec789ba9367b25e0e97a506ac6b0d3802d97e6c22435e2c54c309a5a6f57402f1c54c888479
 WHIRLPOOL 
3ae3970d02eb43b4f06df83bfcbf32342438d0223c9fa1d2985f29e7853a69f9d21bfc4f1b1ecedfac944004480524e8554a207e29ac9daa9124c45d75fea1b4
-DIST mkvtoolnix-9.9.0.tar.xz 3688304 SHA256 
f06c9359bd197b5de6556a05506f0ea9ddab72045b72f1ed04b1807e4e042043 SHA512 
a00162abd75cf7d34ec14555da4fd80e114473e2a34323f9e1404c807e312ebdc516614643c02e5c22be0e3927e0c3f9ab7ad043d24dc5fd7176cf0719503484
 WHIRLPOOL 
7f6422f77a61593896325c3032eac7d26c4fa1e319ed2b457e1cba59a3f780980e466987882610b84d6f99ace6c6df1ae626b47f4bd7498d6a7471cf224ed4d0

diff --git a/media-video/mkvtoolnix/mkvtoolnix-10.0.0.ebuild 
b/media-video/mkvtoolnix/mkvtoolnix-10.0.0.ebuild
deleted file mode 100644
index b0f69fd2a15..000
--- a/media-video/mkvtoolnix/mkvtoolnix-10.0.0.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit eutils multilib toolchain-funcs versionator multiprocessing autotools
-
-DESCRIPTION="Tools to create, alter, and inspect Matroska files"
-HOMEPAGE="http://www.bunkus.org/videotools/mkvtoolnix;
-SRC_URI="http://www.bunkus.org/videotools/mkvtoolnix/sources/${P}.tar.xz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux"
-IUSE="debug pch test qt5"
-
-RDEPEND="
-   >=dev-libs/boost-1.46.0:=
-   >=dev-libs/libebml-1.3.3:=
-   dev-libs/jsoncpp:=
-   dev-libs/pugixml
-   media-libs/flac
-   >=media-libs/libmatroska-1.4.4:=
-   media-libs/libogg
-   media-libs/libvorbis
-   sys-apps/file
-   sys-libs/zlib
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-  

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

2017-06-16 Thread Alexis Ballier
commit: ff587fa320411ce9cd05a8d84a82ec82489e9c70
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 09:02:04 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:36:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff587fa3

sys-process/numactl: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-process/numactl/numactl-2.0.11-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/numactl/numactl-2.0.11-r1.ebuild 
b/sys-process/numactl/numactl-2.0.11-r1.ebuild
index 989202068e2..ff96a5ace1b 100644
--- a/sys-process/numactl/numactl-2.0.11-r1.ebuild
+++ b/sys-process/numactl/numactl-2.0.11-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="5"
@@ -12,7 +12,7 @@ 
SRC_URI="ftp://oss.sgi.com/www/projects/libnuma/download/${P}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 # ARM lacks the __NR_migrate_pages syscall.
-KEYWORDS="~amd64 -arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux"
+KEYWORDS="~amd64 -arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux"
 IUSE="static-libs"
 
 src_prepare() {



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

2017-06-16 Thread Alexis Ballier
commit: 612253270004b075f0471fd739f52bca28d12219
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 16 08:59:07 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 16 09:36:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61225327

media-libs/x265: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/x265/x265-2.4.ebuild  | 2 +-
 media-libs/x265/x265-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/x265/x265-2.4.ebuild b/media-libs/x265/x265-2.4.ebuild
index 93bc874c3ee..8e49624f425 100644
--- a/media-libs/x265/x265-2.4.ebuild
+++ b/media-libs/x265/x265-2.4.ebuild
@@ -12,7 +12,7 @@ else
SRC_URI="

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

diff --git a/media-libs/x265/x265-.ebuild b/media-libs/x265/x265-.ebuild
index 93bc874c3ee..8e49624f425 100644
--- a/media-libs/x265/x265-.ebuild
+++ b/media-libs/x265/x265-.ebuild
@@ -12,7 +12,7 @@ else
SRC_URI="

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



  1   2   >