[gentoo-commits] repo/gentoo:master commit in: app-backup/btrbk/

2016-11-16 Thread David Seifert
commit: 1fba4663bc7ab98c0e42543f9905e64a376fb781
Author: Craig Andrews  integralblue  com>
AuthorDate: Wed Nov 16 17:30:39 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Nov 17 07:35:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fba4663

app-backup/btrbk-0.24.0: version bump

Gentoo-bug: 600024
Closes: https://github.com/gentoo/gentoo/pull/2849

Signed-off-by: David Seifert  gentoo.org>

 app-backup/btrbk/Manifest|  1 +
 app-backup/btrbk/btrbk-0.24.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/app-backup/btrbk/Manifest b/app-backup/btrbk/Manifest
index 44082d2..8d8b45a 100644
--- a/app-backup/btrbk/Manifest
+++ b/app-backup/btrbk/Manifest
@@ -1 +1,2 @@
 DIST btrbk-0.23.3.tar.xz 69388 SHA256 
779636116261e3e0fe64ec986e39be594c04454d87be8005115c8577f62b1725 SHA512 
d9fc29b8e2a6e191be93c7845c7f1f99ab60fb4ec910d8b60947ef902b7fdaf789bc73a4884bdd6060f1b180cafaacd5fa8f93dc29624dfea8a2890618ce4012
 WHIRLPOOL 
4cc9aa102c46feccfb0b90e65d03dd53bed07d78e5a9ddd2afeccfe21fb29f9a2aeba8389771ee7c203598858fb94d59c0d19b73ce1fa29b3772e916bbf4f23b
+DIST btrbk-0.24.0.tar.xz 72308 SHA256 
032671c2905005d91a87b85acf8daec05df09bfad9e191092610094fb9a65906 SHA512 
fbe180743743ead1241968765b5ae6eff37b2925bee8379443568c126426f2098d280a3f62d13e5f5b63f967ac9889ad9331d73f354d0cd441c907ba92258267
 WHIRLPOOL 
19052093dcec40d4a8bd5593538f6ec44ea2bbaf6a846f966cebb1f1ff76b9c94700a0bad6f16f33258f92fa05180efc2ba770f02db5553e755beb21b6761ed9

diff --git a/app-backup/btrbk/btrbk-0.24.0.ebuild 
b/app-backup/btrbk/btrbk-0.24.0.ebuild
new file mode 100644
index ..20374d4
--- /dev/null
+++ b/app-backup/btrbk/btrbk-0.24.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit systemd
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="git://dev.tty0.ch/btrbk.git"
+   inherit git-r3
+   SRC_URI=""
+   KEYWORDS=""
+else
+   SRC_URI="https://digint.ch/download/btrbk/releases/${P}.tar.xz;
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+DESCRIPTION="Tool for creating snapshots and remote backups of btrfs 
subvolumes"
+HOMEPAGE="https://digint.ch/btrbk/;
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="+pv"
+
+DEPEND=""
+RDEPEND="dev-lang/perl
+   net-misc/openssh
+   pv? ( sys-apps/pv )
+   >=sys-fs/btrfs-progs-3.18.2"
+
+src_install() {
+   emake DESTDIR="${D}" DOCDIR="/usr/share/doc/${PF}" 
SYSTEMDDIR="$(systemd_get_systemunitdir)" install
+}



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

2016-11-16 Thread David Seifert
commit: 13f6601b599d575f4f43e9620e1b174f9c10b757
Author: Gerhard Bräunlich  gmx  net>
AuthorDate: Fri Sep 23 10:07:23 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Nov 17 07:35:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13f6601b

media-tv/kodi: Adding cross-compilation support

Gentoo-bugs: https://bugs.gentoo.org/show_bug.cgi?id=560196

Package-Manager: portage-2.2.28
Closes: https://github.com/gentoo/gentoo/pull/2392

Signed-off-by: David Seifert  gentoo.org>

 media-tv/kodi/kodi-16.0.ebuild | 24 +++-
 media-tv/kodi/kodi-16.1.ebuild | 24 +++-
 media-tv/kodi/kodi-.ebuild | 24 +++-
 3 files changed, 69 insertions(+), 3 deletions(-)

diff --git a/media-tv/kodi/kodi-16.0.ebuild b/media-tv/kodi/kodi-16.0.ebuild
index 47aac92..faa7ec2 100644
--- a/media-tv/kodi/kodi-16.0.ebuild
+++ b/media-tv/kodi/kodi-16.0.ebuild
@@ -178,7 +178,29 @@ src_prepare() {
multijob_finish
elibtoolize
 
-   if [[ ${PV} == "" ]] || use java ; then #558798
+   # Cross-compiler support
+   # We need JsonSchemaBuilder and TexturePacker binaries for the host 
system
+   # Later we need libsquish for the target system
+   if tc-is-cross-compiler ; then
+   mkdir "${WORKDIR}"/${CBUILD} || die
+   pushd "${WORKDIR}"/${CBUILD} >/dev/null || die
+   einfo "Building host tools"
+   cp -a "$S"/{tools,xbmc} ./ || die
+   local tools=( JsonSchemaBuilder )
+   use texturepacker && tools+=( TexturePacker )
+   for tool in "${tools[@]}" ; do
+   tc-env_build emake -C tools/depends/native/$tool
+   mkdir "$S"/tools/depends/native/$tool/bin || die
+   ln -s 
"${WORKDIR}"/${CBUILD}/tools/depends/native/$tool/bin/$tool 
"$S"/tools/depends/native/$tool/bin/$tool || die
+   done
+   popd >/dev/null || die
+
+   emake -f codegenerator.mk
+
+   # Binary kodi.bin links against libsquish,
+   # so we need libsquish compiled for the target system
+   emake -C tools/depends/native/libsquish-native/ CXX=$(tc-getCXX)
+   elif [[ ${PV} == "" ]] || use java ; then #558798
tc-env_build emake -f codegenerator.mk
fi
 

diff --git a/media-tv/kodi/kodi-16.1.ebuild b/media-tv/kodi/kodi-16.1.ebuild
index 0195f28..0f9bb40 100644
--- a/media-tv/kodi/kodi-16.1.ebuild
+++ b/media-tv/kodi/kodi-16.1.ebuild
@@ -182,7 +182,29 @@ src_prepare() {
multijob_finish
elibtoolize
 
-   if [[ ${PV} == "" ]] || use java ; then #558798
+   # Cross-compiler support
+   # We need JsonSchemaBuilder and TexturePacker binaries for the host 
system
+   # Later we need libsquish for the target system
+   if tc-is-cross-compiler ; then
+   mkdir "${WORKDIR}"/${CBUILD} || die
+   pushd "${WORKDIR}"/${CBUILD} >/dev/null || die
+   einfo "Building host tools"
+   cp -a "$S"/{tools,xbmc} ./ || die
+   local tools=( JsonSchemaBuilder )
+   use texturepacker && tools+=( TexturePacker )
+   for tool in "${tools[@]}" ; do
+   tc-env_build emake -C tools/depends/native/$tool
+   mkdir "$S"/tools/depends/native/$tool/bin || die
+   ln -s 
"${WORKDIR}"/${CBUILD}/tools/depends/native/$tool/bin/$tool 
"$S"/tools/depends/native/$tool/bin/$tool || die
+   done
+   popd >/dev/null || die
+
+   emake -f codegenerator.mk
+
+   # Binary kodi.bin links against libsquish,
+   # so we need libsquish compiled for the target system
+   emake -C tools/depends/native/libsquish-native/ CXX=$(tc-getCXX)
+   elif [[ ${PV} == "" ]] || use java ; then #558798
tc-env_build emake -f codegenerator.mk
fi
 

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 58bc542..462bb8b 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -183,7 +183,29 @@ src_prepare() {
multijob_finish
elibtoolize
 
-   if [[ ${PV} == "" ]] || use java ; then #558798
+   # Cross-compiler support
+   # We need JsonSchemaBuilder and TexturePacker binaries for the host 
system
+   # Later we need libsquish for the target system
+   if tc-is-cross-compiler ; then
+   mkdir "${WORKDIR}"/${CBUILD} || die
+   pushd "${WORKDIR}"/${CBUILD} >/dev/null || die
+   einfo "Building host tools"
+   cp -a "$S"/{tools,xbmc} ./ || die
+   local tools=( JsonSchemaBuilder )
+   use texturepacker && tools+=( TexturePacker )
+   for tool in "${tools[@]}" ; do
+   tc-env_build emake -C 

[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-http-pipeline/, dev-ruby/net-http-pipeline/files/

2016-11-16 Thread Hans de Graaff
commit: bbb4cf4fedaf0d8a98be12c30df4f13a1ab32dc7
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 17 07:01:33 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 17 07:01:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbb4cf4f

dev-ruby/net-http-pipeline: fix tests; add ruby22, ruby23

Package-Manager: portage-2.3.0

 .../files/net-http-pipeline-accept-encoding.patch  | 18 ++
 .../net-http-pipeline/net-http-pipeline-1.0.1.ebuild   |  4 +++-
 2 files changed, 21 insertions(+), 1 deletion(-)

diff --git 
a/dev-ruby/net-http-pipeline/files/net-http-pipeline-accept-encoding.patch 
b/dev-ruby/net-http-pipeline/files/net-http-pipeline-accept-encoding.patch
new file mode 100644
index ..3adfdf2
--- /dev/null
+++ b/dev-ruby/net-http-pipeline/files/net-http-pipeline-accept-encoding.patch
@@ -0,0 +1,18 @@
+--- test/test_net_http_pipeline.rb.old 2016-11-17 07:58:57.284997283 +0100
 test/test_net_http_pipeline.rb 2016-11-17 07:58:50.345168508 +0100
+@@ -96,6 +96,7 @@
+   def http_get
+ get = []
+ get << 'GET / HTTP/1.1'
++get << 'Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3'
+ get << 'Accept: */*'
+ get << 'User-Agent: Ruby' if RUBY_VERSION > '1.9'
+ get.push nil, nil
+@@ -106,6 +107,7 @@
+   def http_post
+ get = []
+ get << 'POST / HTTP/1.1'
++get << 'Accept-Encoding: gzip;q=1.0,deflate;q=0.6,identity;q=0.3'
+ get << 'Accept: */*'
+ get << 'User-Agent: Ruby' if RUBY_VERSION > '1.9'
+ get.push nil, nil

diff --git a/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild 
b/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild
index f9cfa20..fe348b5 100644
--- a/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild
+++ b/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 
 inherit ruby-fakegem
@@ -16,6 +16,8 @@ SLOT="1"
 KEYWORDS="~amd64"
 IUSE=""
 
+RUBY_PATCHES=( ${PN}-accept-encoding.patch )
+
 ruby_add_bdepend "
dev-ruby/hoe
test? ( dev-ruby/minitest )



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

2016-11-16 Thread Hans de Graaff
commit: 44f5d93698f81cbcce04f527ab1ecd3cffdc6685
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 17 06:30:50 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 17 07:01:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f5d936

dev-ruby/spring: fix warning

Package-Manager: portage-2.3.0

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

diff --git a/dev-ruby/spring/spring-2.0.0.ebuild 
b/dev-ruby/spring/spring-2.0.0.ebuild
index cb49834..7ba3324 100644
--- a/dev-ruby/spring/spring-2.0.0.ebuild
+++ b/dev-ruby/spring/spring-2.0.0.ebuild
@@ -22,7 +22,7 @@ KEYWORDS="~amd64 ~arm ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-s
 
 IUSE=""
 
-ruby_add_rdepend ">=dev-ruby/activesupport-4.2"
+ruby_add_rdepend ">=dev-ruby/activesupport-4.2:*"
 
 ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/activesupport )"
 



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

2016-11-16 Thread Hans de Graaff
commit: 567109324e101ff602640eaca84403be97a22105
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 17 06:53:05 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 17 07:01:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56710932

dev-ruby/gh: fix FEATURES=test

Package-Manager: portage-2.3.0

 dev-ruby/gh/Manifest|  1 +
 dev-ruby/gh/gh-0.14.0-r1.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-ruby/gh/Manifest b/dev-ruby/gh/Manifest
index 127a145..ed9b990 100644
--- a/dev-ruby/gh/Manifest
+++ b/dev-ruby/gh/Manifest
@@ -1 +1,2 @@
 DIST gh-0.14.0.gem 15360 SHA256 
a243023cbd972df27799b3949a59efeae284d4189155681fb6bbcfdfab34f548 SHA512 
05f5c520698c7424efeb1da7d166463c61d003085053e35534ad3fdbaf2282ee025f1a7336b585805051dd0e93974d0c437fcbed77c64db36ee52032984cf33a
 WHIRLPOOL 
8f29664d04b7c8dbe8ffd730bfc4a4bafce29d1f37d0f7b880e5c6b852535b0c0c5393e74ded4b92044535f1a0aeb8aa2d8a6b34fbeac4de7d9f2e4b6fad02a4
+DIST gh-0.14.0.tar.gz 64205 SHA256 
ddc973a2835ca2eaddaf3663413c7f3f1da6188104630cddfbab4a2b8f4d0b68 SHA512 
8fd4c7bac702c57d98ee509d35dbbc81291f45977bb0e2c3b1f06e2cc3d8635d0656adafa5569ef6b3f9d6acbc563f8db7c69b43cf177dd379335d673f5ef781
 WHIRLPOOL 
164621c8121e0d5a9d31c39cd37f69f73bd34d71409e143ecca99df7085e1ff82e530714a2ba5e0c12f22adbc16e49c7067572e8664632a9f19638fce16ed7d8

diff --git a/dev-ruby/gh/gh-0.14.0-r1.ebuild b/dev-ruby/gh/gh-0.14.0-r1.ebuild
new file mode 100644
index ..d572aef
--- /dev/null
+++ b/dev-ruby/gh/gh-0.14.0-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21"
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="multi-layer client for the github api v3"
+HOMEPAGE="https://github.com/travis-ci/gh;
+SRC_URI="https://github.com/travis-ci/gh/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "
+   dev-ruby/webmock
+"
+
+ruby_add_rdepend "
+   dev-ruby/addressable
+   dev-ruby/backports
+   >dev-ruby/faraday-0.8
+   >dev-ruby/multi_json-1.0
+   >=dev-ruby/net-http-persistent-2.7
+   dev-ruby/net-http-pipeline
+"



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

2016-11-16 Thread Hans de Graaff
commit: a19ddca2e7879c938dc99fbe05c85c34220a4f65
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 17 06:30:07 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 17 07:01:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a19ddca2

dev-ruby/spring: add 2.0.0

Package-Manager: portage-2.3.0

 dev-ruby/spring/Manifest|  1 +
 dev-ruby/spring/spring-2.0.0.ebuild | 33 +
 2 files changed, 34 insertions(+)

diff --git a/dev-ruby/spring/Manifest b/dev-ruby/spring/Manifest
index ef5f476..535c70f 100644
--- a/dev-ruby/spring/Manifest
+++ b/dev-ruby/spring/Manifest
@@ -1,3 +1,4 @@
 DIST spring-1.6.4.tar.gz 39370 SHA256 
d7584ecb01fb980451c12d65bbb0175c7b15fb3bf8c117058145de5ecc8c349b SHA512 
9dffdcef750bd25028761da8e69c44ae3eace843dff9f81d5566085d3a8c7f944f4c99b6d455078ff564b7135116ae38dcf1aaf6dcc127ac351eae85e15dc143
 WHIRLPOOL 
b7fd0e1520b77e1dc150f270e1cb222915ab98322b9ec0f75242fbfeceec7bd6155262a2fdeee8cf8c5651e9b03e1ce441159042c877675ddc3c4e07fbb2e1cb
 DIST spring-1.7.1.tar.gz 41162 SHA256 
36f422666a20cd9ae930993f14056e9072e350a24025a26cc5ec59c76725ec33 SHA512 
bf561ae5c9bb5e9f6af640c42bedd0e4992713b90c42e984491d77002c729ffa51723b7f691d14443531243150e37f8bfb67cca1f06aefd4c76548f66728103f
 WHIRLPOOL 
f934c5484d27a1d54eaf305d604f006d7ef2797b6209de1e6e4802e6ebdddc85f59c6891b5bafde4878d0c8d99f6d5b94738f987320976f7cf49a23769d24924
 DIST spring-1.7.2.tar.gz 41340 SHA256 
652c12950a04b3f342428137b7167bf579b73cb04c7b72e48fa2eacb8047a5b5 SHA512 
737bdd3597eeef2c2a832a4060c626f83fe2bc3d6941421c84514086392cfe91f408d9e5cceadfcda03d62a589b6758da6d9c029f5336fca5130e6b6857e
 WHIRLPOOL 
a00867a08b99d6207063ef8dabc69a488308ad72e8a6986409ccd4f185cd8e6f3b665bef352bce53db9ca1098a7e8fd5fdd6bb76c321b6934ce7d9b5b9a1e962
+DIST spring-2.0.0.tar.gz 41972 SHA256 
5bc0d1c7a05654cad6821da66b3e224a839b8ed44dba0fadd0d6d596238e0990 SHA512 
8e26ebc33289341c5716002d575eb52b004a7e0f3c5bc657f8afabac2f596f03630cb8be172d8a00d7f68e9b7cda373cc0c3fef404b9082c6dae2375398b1f5d
 WHIRLPOOL 
8c32d4773bf4a0429eb0d6ebf643e7de44152348897fabcf1a607911502069f9136193a10bb6dbc5d4495e29105279e127a1d8b62c5b6b40130e7f6d0599f15c

diff --git a/dev-ruby/spring/spring-2.0.0.ebuild 
b/dev-ruby/spring/spring-2.0.0.ebuild
new file mode 100644
index ..cb49834
--- /dev/null
+++ b/dev-ruby/spring/spring-2.0.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_TASK_TEST="test:unit"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Rails application preloader"
+HOMEPAGE="https://github.com/rails/spring;
+SRC_URI="https://github.com/rails/spring/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="1.1"
+KEYWORDS="~amd64 ~arm ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/activesupport-4.2"
+
+ruby_add_bdepend "test? ( dev-ruby/bundler dev-ruby/activesupport )"
+
+all_ruby_prepare() {
+   sed -i -e '/files/d' \
+   -e '/bump/d' ${PN}.gemspec || die
+   sed -i -e '/bump/d' Rakefile || die
+}



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

2016-11-16 Thread Michael Palimaka
commit: 92f8321a8ce7f237f5f43eea215535669f1adefb
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Nov 17 07:01:16 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Nov 17 07:01:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92f8321a

kde-plasma/plasma-workspace: raise minimum frameworks version

Gentoo-bug: 600044

Package-Manager: portage-2.3.2

 kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r2.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r2.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r2.ebuild
index c97f621..48c832e 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r2.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-5.8.3-r2.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=6
 
+FRAMEWORKS_MINIMAL="5.28.0"
 KDE_HANDBOOK="forceoptional"
 KDE_TEST="forceoptional"
 VIRTUALX_REQUIRED="test"



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

2016-11-16 Thread Michael Palimaka
commit: aa8fb52fdc97c5b5798fde404f15931d80e4bcee
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Nov 17 07:00:52 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Nov 17 07:01:07 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=aa8fb52f

kde-plasma/plasma-workspace: raise minimal frameworks version

Upstream-commit: 3f859c3dbdded68cc96d4c695ff27d15c387da09
Gentoo-bug: 600044

Package-Manager: portage-2.3.2

 kde-plasma/plasma-workspace/plasma-workspace-5.8.49..ebuild | 1 +
 kde-plasma/plasma-workspace/plasma-workspace-.ebuild| 1 +
 2 files changed, 2 insertions(+)

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.8.49..ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-5.8.49..ebuild
index b57fff0..65217be 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-5.8.49..ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-5.8.49..ebuild
@@ -4,6 +4,7 @@
 
 EAPI=6
 
+FRAMEWORKS_MINIMAL="5.28.0"
 KDE_HANDBOOK="forceoptional"
 KDE_TEST="forceoptional"
 VIRTUALX_REQUIRED="test"

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-.ebuild
index e1208ed..ba4b610 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-.ebuild
@@ -4,6 +4,7 @@
 
 EAPI=6
 
+FRAMEWORKS_MINIMAL="5.28.0"
 KDE_HANDBOOK="forceoptional"
 KDE_TEST="forceoptional"
 VIRTUALX_REQUIRED="test"



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

2016-11-16 Thread Michael Palimaka
commit: bb85aa585f4b421dc6475acca242b70a98a413f5
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Nov 17 06:54:28 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Nov 17 06:54:41 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=bb85aa58

kde-frameworks/kservice: avoid breaking the menu

If kservice was upgraded while the session was running, the application menu
and favourites became empty.

kbuildsycoca5 compiles in the value of APPLICATIONS_MENU_NAME, so it's possible
this was caused by a race condition between it getting triggered and
applications.menu being renamed on disk.

Gentoo-bug: 596316

Package-Manager: portage-2.3.2

 kde-frameworks/kservice/kservice-.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/kde-frameworks/kservice/kservice-.ebuild 
b/kde-frameworks/kservice/kservice-.ebuild
index 6dbd76c..1538b79 100644
--- a/kde-frameworks/kservice/kservice-.ebuild
+++ b/kde-frameworks/kservice/kservice-.ebuild
@@ -38,3 +38,10 @@ src_configure() {
 
kde5_src_configure
 }
+
+src_install() {
+   kde5_src_install
+
+   # bug 596316
+   dosym /etc/xdg/menus/kf5-applications.menu 
/etc/xdg/menus/applications.menu
+}



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kservice/

2016-11-16 Thread Michael Palimaka
commit: 6e4af635b856db16f7c92e28b937ec8934869c61
Author: Michael Palimaka  gentoo  org>
AuthorDate: Thu Nov 17 06:49:18 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Thu Nov 17 06:49:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e4af635

kde-frameworks/kservice: avoid breaking the menu

Gentoo-bug: 596316

Package-Manager: portage-2.3.2

 kde-frameworks/kservice/kservice-5.28.0-r1.ebuild | 47 +++
 1 file changed, 47 insertions(+)

diff --git a/kde-frameworks/kservice/kservice-5.28.0-r1.ebuild 
b/kde-frameworks/kservice/kservice-5.28.0-r1.ebuild
new file mode 100644
index ..8eca227
--- /dev/null
+++ b/kde-frameworks/kservice/kservice-5.28.0-r1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit kde5
+
+DESCRIPTION="Advanced plugin and service introspection"
+LICENSE="LGPL-2 LGPL-2.1+"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+man"
+
+RDEPEND="
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtxml)
+"
+DEPEND="${RDEPEND}
+   sys-devel/bison
+   sys-devel/flex
+   man? ( $(add_frameworks_dep kdoctools) )
+   test? ( $(add_qt_dep qtconcurrent) )
+"
+
+# requires running kde environment
+RESTRICT+=" test"
+
+src_configure() {
+   local mycmakeargs=(
+   -DAPPLICATIONS_MENU_NAME=kf5-applications.menu
+   $(cmake-utils_use_find_package man KF5DocTools)
+   )
+
+   kde5_src_configure
+}
+
+src_install() {
+   kde5_src_install
+
+   # bug 596316
+   dosym /etc/xdg/menus/kf5-applications.menu 
/etc/xdg/menus/applications.menu
+}



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

2016-11-16 Thread Kent Fredric
commit: 859113181f0cf2c462c555b07cca45209eef9391
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 06:10:46 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 06:10:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85911318

dev-perl/Module-ScanDeps: Bump to version 1.230.0

- EAPI6

Upstream:
- add _glob_in_inc_1 helper
- add more preload rules

Package-Manager: portage-2.3.2

 dev-perl/Module-ScanDeps/Manifest  |  1 +
 .../Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild | 38 ++
 dev-perl/Module-ScanDeps/metadata.xml  |  1 -
 3 files changed, 39 insertions(+), 1 deletion(-)

diff --git a/dev-perl/Module-ScanDeps/Manifest 
b/dev-perl/Module-ScanDeps/Manifest
index b658dcf..80b652d 100644
--- a/dev-perl/Module-ScanDeps/Manifest
+++ b/dev-perl/Module-ScanDeps/Manifest
@@ -1 +1,2 @@
 DIST Module-ScanDeps-1.20.tar.gz 64260 SHA256 
72003547e36db833f920eb85247943b755c94ded998e640bae20ff37d6104691 SHA512 
1756c48d8932d50f03e5440e9b1a1c38c4f795c5701d6c9704cef88ac1162efeefb863f003b105b8516bb9cb8113c9c8524e7c6847070450228ef6baeb4d578d
 WHIRLPOOL 
d7d573c3138cf62ca371deac91ef10c9a0fad8d09abb1b7eb315921a7a420a80cf3cff4fc99bee499e1a4f22dc462da63ecd837ac0a3389789a123a71d5fae5d
+DIST Module-ScanDeps-1.23.tar.gz 55076 SHA256 
162b6f771197ad4662ac60c427d473b4c0a41cac476fa96b48556cce7fca040e SHA512 
7ceb1705aa9be7601a44dea2521a0952de70eb294a88939147d254c3af7056602bbfab97fd117ac4f4184da92354aa1f83f1207d84bf502eb02b0c60fc417ba8
 WHIRLPOOL 
e179cc2552765bad5823997dbd222d7c53a1c3093193393cb35c8dc3b1e66204381c6d500ec6758e0f6e8c3520ca775502956a56d59ad3a26a068eec2f7a271d

diff --git a/dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild 
b/dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild
new file mode 100644
index ..928d611
--- /dev/null
+++ b/dev-perl/Module-ScanDeps/Module-ScanDeps-1.230.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=RSCHUPP
+DIST_VERSION=1.23
+inherit perl-module
+
+DESCRIPTION="Recursively scan Perl code for dependencies"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~x86-fbsd ~amd64-linux ~ppc-macos ~x64-macos ~x86-macos"
+IUSE="test"
+
+RDEPEND="
+   virtual/perl-File-Spec
+   virtual/perl-File-Temp
+   virtual/perl-Getopt-Long
+   virtual/perl-Module-Metadata
+   virtual/perl-Text-ParseWords
+   virtual/perl-version
+"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.590.0
+   test? (
+   virtual/perl-Test-Simple
+   dev-perl/prefork
+   dev-perl/Module-Pluggable
+   dev-perl/Test-Requires
+   )
+"
+
+src_test() {
+   perl_rm_files t/0-pod.t
+   perl-module_src_test
+}

diff --git a/dev-perl/Module-ScanDeps/metadata.xml 
b/dev-perl/Module-ScanDeps/metadata.xml
index 05b8de5..b7c518e 100644
--- a/dev-perl/Module-ScanDeps/metadata.xml
+++ b/dev-perl/Module-ScanDeps/metadata.xml
@@ -9,6 +9,5 @@
 Module-ScanDeps
 Module::ScanDeps
 Module::ScanDeps::Cache
-Module::ScanDeps::DataFeed
   
 



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

2016-11-16 Thread Kent Fredric
commit: ff038a0cc38249e4aa67b2cb1fd77a0479ff8d4f
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 06:00:08 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 06:00:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff038a0c

dev-perl/DateTime: Bump to version 1.410.0 (masked)

Upstream:
- add and subtract methods now expressly support DateTime::Duration
  objects as arguments

Package-Manager: portage-2.3.2

 dev-perl/DateTime/DateTime-1.410.0.ebuild | 46 +++
 dev-perl/DateTime/Manifest|  1 +
 dev-perl/DateTime/metadata.xml|  1 +
 3 files changed, 48 insertions(+)

diff --git a/dev-perl/DateTime/DateTime-1.410.0.ebuild 
b/dev-perl/DateTime/DateTime-1.410.0.ebuild
new file mode 100644
index ..bb45dcb
--- /dev/null
+++ b/dev-perl/DateTime/DateTime-1.410.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=DROLSKY
+DIST_VERSION=1.41
+inherit perl-module
+
+DESCRIPTION="A date and time object"
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x86-solaris"
+IUSE="test"
+
+CONFLICTS="
+   !<=dev-perl/DateTime-Format-Mail-0.402.0
+"
+RDEPEND="
+   ${CONFLICTS}
+   virtual/perl-Carp
+   >=dev-perl/DateTime-Locale-1.60.0
+   >=dev-perl/DateTime-TimeZone-2.20.0
+   >=dev-perl/Dist-CheckConflicts-0.20.0
+   >=dev-perl/Params-ValidationCompiler-0.130.0
+   virtual/perl-Scalar-List-Utils
+   >=dev-perl/Specio-0.180.0
+   dev-perl/Try-Tiny
+   virtual/perl-XSLoader
+   >=dev-perl/namespace-autoclean-0.190.0
+   virtual/perl-parent
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-CPAN-Meta-Requirements
+   >=dev-perl/CPAN-Meta-Check-0.11.0
+   virtual/perl-File-Spec
+   virtual/perl-Storable
+   dev-perl/Test-Fatal
+   >=virtual/perl-Test-Simple-0.960.0
+   >=dev-perl/Test-Warnings-0.5.0
+   )
+"

diff --git a/dev-perl/DateTime/Manifest b/dev-perl/DateTime/Manifest
index cf30653..13d90ae 100644
--- a/dev-perl/DateTime/Manifest
+++ b/dev-perl/DateTime/Manifest
@@ -3,3 +3,4 @@ DIST DateTime-1.21.tar.gz 221151 SHA256 
a3a5840cae36d693b1371bd0f615aa8e3ab7f6cc
 DIST DateTime-1.28.tar.gz 229774 SHA256 
781a25ab7dada202c917f6c5db06f6d9e6f03d5a395e91afab478ba074e75787 SHA512 
cf2c883636073086101dc08596210e59af0cf301ae78e496358e6952f26104aa26c1fdc0784aa10e05ac0308a1ed7aef78a7682b803679481fa570f5de1c04a3
 WHIRLPOOL 
0eaeb2a30382f7952c7113bee2b8857f1e9409d1052f3031a55e72caf5ab18ec5827b062c4e57a540f917973235eff291cdf396de0ccd6e84a8cc4fdb64ea3dc
 DIST DateTime-1.36.tar.gz 235407 SHA256 
bc60e430c27d7693df5af7b1ee33a4f03308677512790ae3c608e70c0760e159 SHA512 
debb3c10f55d4dca66a495a89ac92f6a1f90c0091b6c223391f0e5d8835a6b5ef00e9529ac29f837e4e82baf630b82e3fcab20223e13ccaf4db9e9d08573486c
 WHIRLPOOL 
2b6b679b989d8335021142109799e5b1e8589234ee70080a32bf46b699f5256674ecb6810d0f585a104767e854914819818be8df1f99632bc932a0f255068439
 DIST DateTime-1.40.tar.gz 236885 SHA256 
5f340af70c738d5bf9d402560cc207e38e8a3d131e4413b5fa895af79247 SHA512 
e86d7c644e34b2bab004073e6159357be48fd2580a38be675486129a692ccf80acf375b7bd928edb295824baf511f01c10e24fa39733bb183edb8a7cd4055306
 WHIRLPOOL 
1a46a20b1140af263bea15cd61b7c182cf2855fcbcc5d0fbfdc10ec557039c9f1e738e8b4ca4584e640f423fda1d19a3090c609b5fbaadf7e323519c062381db
+DIST DateTime-1.41.tar.gz 237742 SHA256 
5b0d9616cd36dfd39c0e2f06b54c55f7a300af19a2d16aaa76b3557c3bbb77a7 SHA512 
68e2d1a55fd5a54941c22c8907db5266c1189d00559d2ee32ac96f0d8bfd27089b257d68326f8cec135e4576321ab27c3501e0c5b4fc46bd5509486bc2fa9bf4
 WHIRLPOOL 
e726c5725f780a48895a0a4df07ab8b71643f7cdce82947c2e8b40d67d0f1e06a8c1835a07fd0aaa467afce270e8a70d1b226b8c295e3b42192bdcb053d10ba7

diff --git a/dev-perl/DateTime/metadata.xml b/dev-perl/DateTime/metadata.xml
index 62d730f..724c65f 100644
--- a/dev-perl/DateTime/metadata.xml
+++ b/dev-perl/DateTime/metadata.xml
@@ -16,5 +16,6 @@
 DateTime::LeapSecond
 DateTime::PP
 DateTime::PPExtra
+DateTime::Types
   
 



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

2016-11-16 Thread Kent Fredric
commit: 40e14deb661629283b4ac5f5e4ec00284d117549
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 06:01:20 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 06:01:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40e14deb

dev-perl/DateTime: Remove old

Package-Manager: portage-2.3.2

 dev-perl/DateTime/DateTime-1.400.0.ebuild | 46 ---
 dev-perl/DateTime/Manifest|  1 -
 2 files changed, 47 deletions(-)

diff --git a/dev-perl/DateTime/DateTime-1.400.0.ebuild 
b/dev-perl/DateTime/DateTime-1.400.0.ebuild
deleted file mode 100644
index d3b8b3c..
--- a/dev-perl/DateTime/DateTime-1.400.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-DIST_AUTHOR=DROLSKY
-DIST_VERSION=1.40
-inherit perl-module
-
-DESCRIPTION="A date and time object"
-
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~ppc-aix ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x86-solaris"
-IUSE="test"
-
-CONFLICTS="
-   !<=dev-perl/DateTime-Format-Mail-0.402.0
-"
-RDEPEND="
-   ${CONFLICTS}
-   virtual/perl-Carp
-   >=dev-perl/DateTime-Locale-1.60.0
-   >=dev-perl/DateTime-TimeZone-2.20.0
-   >=dev-perl/Dist-CheckConflicts-0.20.0
-   >=dev-perl/Params-ValidationCompiler-0.130.0
-   virtual/perl-Scalar-List-Utils
-   >=dev-perl/Specio-0.180.0
-   dev-perl/Try-Tiny
-   virtual/perl-XSLoader
-   >=dev-perl/namespace-autoclean-0.190.0
-   virtual/perl-parent
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   virtual/perl-CPAN-Meta-Requirements
-   >=dev-perl/CPAN-Meta-Check-0.11.0
-   virtual/perl-File-Spec
-   virtual/perl-Storable
-   dev-perl/Test-Fatal
-   >=virtual/perl-Test-Simple-0.960.0
-   >=dev-perl/Test-Warnings-0.5.0
-   )
-"

diff --git a/dev-perl/DateTime/Manifest b/dev-perl/DateTime/Manifest
index 13d90ae..2ac7a53 100644
--- a/dev-perl/DateTime/Manifest
+++ b/dev-perl/DateTime/Manifest
@@ -2,5 +2,4 @@ DIST DateTime-1.20.tar.gz 220697 SHA256 
ac909ca4e26f2713940302ad1fd8068de0a69704
 DIST DateTime-1.21.tar.gz 221151 SHA256 
a3a5840cae36d693b1371bd0f615aa8e3ab7f6cc25e06bff40c7010217d3f6b1 SHA512 
256b49c6857c2eab4508ed1c1ddca0d88a32339c10334d70f95599d4d49934fe2fbc7689df334121c29abdb8eb0ebdf066183361224a5dbdce98fc1a216a721f
 WHIRLPOOL 
73a277d680f6a806f54fd23d31d2bc34220e042e202d8df1d272c664f4171f3afbb34e2be8aef091bf4bd48ff9f4b775efa4810284a8e9081ac6bbde1af0e5ec
 DIST DateTime-1.28.tar.gz 229774 SHA256 
781a25ab7dada202c917f6c5db06f6d9e6f03d5a395e91afab478ba074e75787 SHA512 
cf2c883636073086101dc08596210e59af0cf301ae78e496358e6952f26104aa26c1fdc0784aa10e05ac0308a1ed7aef78a7682b803679481fa570f5de1c04a3
 WHIRLPOOL 
0eaeb2a30382f7952c7113bee2b8857f1e9409d1052f3031a55e72caf5ab18ec5827b062c4e57a540f917973235eff291cdf396de0ccd6e84a8cc4fdb64ea3dc
 DIST DateTime-1.36.tar.gz 235407 SHA256 
bc60e430c27d7693df5af7b1ee33a4f03308677512790ae3c608e70c0760e159 SHA512 
debb3c10f55d4dca66a495a89ac92f6a1f90c0091b6c223391f0e5d8835a6b5ef00e9529ac29f837e4e82baf630b82e3fcab20223e13ccaf4db9e9d08573486c
 WHIRLPOOL 
2b6b679b989d8335021142109799e5b1e8589234ee70080a32bf46b699f5256674ecb6810d0f585a104767e854914819818be8df1f99632bc932a0f255068439
-DIST DateTime-1.40.tar.gz 236885 SHA256 
5f340af70c738d5bf9d402560cc207e38e8a3d131e4413b5fa895af79247 SHA512 
e86d7c644e34b2bab004073e6159357be48fd2580a38be675486129a692ccf80acf375b7bd928edb295824baf511f01c10e24fa39733bb183edb8a7cd4055306
 WHIRLPOOL 
1a46a20b1140af263bea15cd61b7c182cf2855fcbcc5d0fbfdc10ec557039c9f1e738e8b4ca4584e640f423fda1d19a3090c609b5fbaadf7e323519c062381db
 DIST DateTime-1.41.tar.gz 237742 SHA256 
5b0d9616cd36dfd39c0e2f06b54c55f7a300af19a2d16aaa76b3557c3bbb77a7 SHA512 
68e2d1a55fd5a54941c22c8907db5266c1189d00559d2ee32ac96f0d8bfd27089b257d68326f8cec135e4576321ab27c3501e0c5b4fc46bd5509486bc2fa9bf4
 WHIRLPOOL 
e726c5725f780a48895a0a4df07ab8b71643f7cdce82947c2e8b40d67d0f1e06a8c1835a07fd0aaa467afce270e8a70d1b226b8c295e3b42192bdcb053d10ba7



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

2016-11-16 Thread Kent Fredric
commit: 008eb96030a81ed1c5a0a37810097605b15815cf
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 05:47:21 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 05:47:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=008eb960

dev-perl/DBD-mysql: Bump to version 4.39.0

Upstream:
- Fix for CVE-2016-1249, Out-of-Bounds read using server-side
  prepared statements

Package-Manager: portage-2.3.2

 dev-perl/DBD-mysql/DBD-mysql-4.39.0.ebuild | 66 ++
 dev-perl/DBD-mysql/Manifest|  1 +
 2 files changed, 67 insertions(+)

diff --git a/dev-perl/DBD-mysql/DBD-mysql-4.39.0.ebuild 
b/dev-perl/DBD-mysql/DBD-mysql-4.39.0.ebuild
new file mode 100644
index ..dd284d4
--- /dev/null
+++ b/dev-perl/DBD-mysql/DBD-mysql-4.39.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=CAPTTOFU
+DIST_VERSION=4.039
+inherit eutils perl-module
+
+DESCRIPTION="MySQL driver for the Perl5 Database Interface (DBI)"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+
+# embedded=on disables ssl support
+# https://metacpan.org/source/MICHIELB/DBD-mysql-4.036/dbdimp.c#L1886
+REQUIRED_USE="?? ( embedded ssl )"
+IUSE="embedded test +ssl"
+
+RDEPEND=">=dev-perl/DBI-1.609.0
+   virtual/libmysqlclient:=
+   embedded? ( virtual/mysql[embedded] )
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   virtual/perl-Data-Dumper
+   test? (
+   dev-perl/Test-Deep
+   >=virtual/perl-Test-Simple-0.900.0
+   virtual/perl-Time-HiRes
+   )
+"
+
+src_configure() {
+   if use test; then
+   myconf="${myconf} --testdb=test \
+   --testhost=localhost \
+   --testuser=test \
+   --testpassword=test"
+   fi
+   myconf="${myconf} --$(usex ssl ssl nossl)"
+   use embedded && myconf="${myconf} --force-embedded 
--embedded=mysql_config"
+   perl-module_src_configure
+}
+
+# Parallel testing is broken as 2 tests create the same table
+# and mysql isn't acid compliant and can't limit visibility of tables
+# to a transaction...
+DIST_TEST="do"
+
+src_test() {
+   einfo
+   einfo "If tests fail, you have to configure your MySQL instance to 
create"
+   einfo "and grant some privileges to the test user."
+   einfo "You can run the following commands at the MySQL prompt: "
+   einfo "> CREATE USER 'test'@'localhost' IDENTIFIED BY 'test';"
+   einfo "> CREATE DATABASE test;"
+   einfo "> GRANT ALL PRIVILEGES ON test.* TO 'test'@'localhost';"
+   einfo
+   sleep 5
+   perl_rm_files t/pod.t t/manifest.t
+   # Don't be a hero and try to do EXTENDED_TESTING=1 unless you can figure
+   # out why 60leaks.t fails
+   perl-module_src_test
+}

diff --git a/dev-perl/DBD-mysql/Manifest b/dev-perl/DBD-mysql/Manifest
index 32535a6..b87702a 100644
--- a/dev-perl/DBD-mysql/Manifest
+++ b/dev-perl/DBD-mysql/Manifest
@@ -3,3 +3,4 @@ DIST DBD-mysql-4.036.tar.gz 146513 SHA256 
5c48a823f86b8110ccb6504c6176ca248b52f5
 DIST DBD-mysql-4.037.tar.gz 146639 SHA256 
df578acef28ed3f6aaae52dc98e6821a1407d3bfa88585255729bb0ebfed3cfc SHA512 
3bda6ea18d29e32028b7eb93cd06fdbabbadafa66f982556298a68980c42a7b5236872113696e6d2df66a345049d1e63bc90ab358c8631f0cbea187780e514af
 WHIRLPOOL 
2cd51fb258de4877010d6d5f88a27f8e251d86b311d5d7dc3b62a46e7d6ac87facaad7c2bbba6c7f306d91d106e7a713fb21c2f1b7d2934e989aa30794d38a7f
 DIST DBD-mysql-4.038.tar.gz 149016 SHA256 
4174bb885a5ccb34d942fc10fafb8bfcbc6d4b4311681ed90727ae1d3bd122e8 SHA512 
ba9515f3fe0a5afdede86bdfdeb2b06dafe9251650e868da6d3630e593d2992b292eb8027c964f15c6cbfc80c2fb67270e13ccd013e83d0c55ac503c99d2e1c2
 WHIRLPOOL 
1f18c7629a5e185d60e14df339f9a6c50e1234a732d7da2a91d10b0b874bfafa0b9c87aa41132581b869def9ff2c0869a0d8a6af985a9e84f81930970e4c2982
 DIST DBD-mysql-4.038_01.tar.gz 148907 SHA256 
2cf04092f1ec55a46aa6a01325dddab0a07a284f2c5d9472c8330cf6b37b3c05 SHA512 
4b2e508a52fe55c66ca5d58f9676a5a72bc54b090a6e98aef8a201e46c61d2f0d407ea96ee5cf26728073a22757dc7350ee0121a1983421a1bd5140bd9015a6d
 WHIRLPOOL 
b0997048eaadc2a024402eb502b6690ee5720533fb01c7552bc8bff0069272eb06e95ac38e0348a656f007b3a24cc2abd557056eeba7246bd9a0effcbcabda4c
+DIST DBD-mysql-4.039.tar.gz 149928 SHA256 
1602a9d22e13bd2c5b27e8e2f2a7cc7fa08d6ce53162b0aa12b5d7d5e41a974c SHA512 
eb8fa2f7f67ee7eefb5062259a0b20a121df0a8101de1fb2e086d445163d8552939038a6caa5e49b7335d1eb3f9172b466cb6eb932654c1289df53767782b87b
 WHIRLPOOL 
35f4a53cb1137a844f56a708a18034e5cfcf6904fbc058fc2b89ad6a3c6a52e2ac1d04338f7a00a4a3b111efc83e524020043f017e263e6c8cbc077c46fb694b



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

2016-11-16 Thread Kent Fredric
commit: e2254b7d738dbf58b145f8f6884f69c982ad579e
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 05:35:06 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 05:35:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2254b7d

dev-perl/Log-Log4perl: Bump to version 1.480.0

- Added USE=examples

Upstream:
- Fixed issue with Semaphores in Synchronized logger
- header_text now works with syswrite
- Code reflowed slightly to avoid issues when checked into CVS

Package-Manager: portage-2.3.2

 dev-perl/Log-Log4perl/Log-Log4perl-1.480.0.ebuild | 27 +++
 dev-perl/Log-Log4perl/Manifest|  1 +
 dev-perl/Log-Log4perl/metadata.xml|  1 +
 3 files changed, 29 insertions(+)

diff --git a/dev-perl/Log-Log4perl/Log-Log4perl-1.480.0.ebuild 
b/dev-perl/Log-Log4perl/Log-Log4perl-1.480.0.ebuild
new file mode 100644
index ..2f53204
--- /dev/null
+++ b/dev-perl/Log-Log4perl/Log-Log4perl-1.480.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MSCHILLI
+DIST_VERSION=1.48
+DIST_EXAMPLES=( "eg/*" )
+inherit perl-module
+
+DESCRIPTION="Log4j implementation for Perl"
+HOMEPAGE="http://log4perl.sourceforge.net/;
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+IUSE="test"
+
+RDEPEND="
+   >=virtual/perl-File-Path-2.60.600
+   >=virtual/perl-File-Spec-0.820.0
+   virtual/perl-Time-HiRes
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? ( >=virtual/perl-Test-Simple-0.450.0 )
+"

diff --git a/dev-perl/Log-Log4perl/Manifest b/dev-perl/Log-Log4perl/Manifest
index 9a0689e..bc1484b 100644
--- a/dev-perl/Log-Log4perl/Manifest
+++ b/dev-perl/Log-Log4perl/Manifest
@@ -1,2 +1,3 @@
 DIST Log-Log4perl-1.46.tar.gz 278058 SHA256 
31011a17c04e78016e73eaa4865d0481d2ffc3dc22813c61065d90ad73c64e6f SHA512 
f8e9b75eb8a3d0076069b370ab2ec455a9425fa7056e40ba2ba3d3a423489d650e1a28fd5d5e7bca57511a63f6a9dc2b438dacb10b028a955ecc3516fcf3ae45
 WHIRLPOOL 
32c1a63ae6f574ef96d672a503233cb24a3937a6468ed5f06ba659bf06a6ded620f63606294b9db18c034dab172176d5b32058152404d1641878dc7b41e981f8
 DIST Log-Log4perl-1.47.tar.gz 278780 SHA256 
9001dded011226538b9a50c7856815bb0dba72a1e6218fdcaba56f651356b96f SHA512 
f0630cdb22586a9ab85d9ed900a9becb74a15376155f334efdf19bd0eeba00fe76820d6cef74550263c55dc2773504ac0ac8e94b5f287da739e8fbad18a6a5a6
 WHIRLPOOL 
ef56d110ffec35b4021372cea07c0d4224221a0d33706006c3c9bf53d88626185b3e20c5d02d3931c9d29606d40e3df8e47685a35d1eb3b9a42284d7be7fce6c
+DIST Log-Log4perl-1.48.tar.gz 279197 SHA256 
cf6e9fc1f9183fabbe540d84f603c6541458034092b7c53e41008093db62dc98 SHA512 
d19a19b26fbe396e9599b27d7ebc41a80abc6b392e85f348df9b6fc8e830405e34e72fb6602dd07a7145d858368244daf35184163022721c687ae0b2d5901639
 WHIRLPOOL 
c25bbfe9db303134f5d6a24b59e1a76967261dcd07fe4ede43ad9d31b55ce27acc18b6d07911d71a3a047d9c3d96897655a5cf555e1343256e6f2810e6bf2d45

diff --git a/dev-perl/Log-Log4perl/metadata.xml 
b/dev-perl/Log-Log4perl/metadata.xml
index d5250a6..72cfac7 100644
--- a/dev-perl/Log-Log4perl/metadata.xml
+++ b/dev-perl/Log-Log4perl/metadata.xml
@@ -33,6 +33,7 @@
 Log::Log4perl::Filter::Boolean
 Log::Log4perl::Filter::LevelMatch
 Log::Log4perl::Filter::LevelRange
+Log::Log4perl::Filter::MDC
 Log::Log4perl::Filter::StringMatch
 Log::Log4perl::InternalDebug
 Log::Log4perl::JavaMap



[gentoo-commits] repo/gentoo:master commit in: net-im/qtox/

2016-11-16 Thread Göktürk Yüksek
commit: 840ede2f4ed05dba6bbb53bdbf6d6f038c82e542
Author: Zetok Zalbavar  openmailbox  org>
AuthorDate: Sun Nov 13 22:43:18 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Nov 17 05:26:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=840ede2f

net-im/qtox: bump version to v1.6.0 and remove outdated versions

Package-Manager: portage-2.3.0

 net-im/qtox/Manifest   |  3 +-
 net-im/qtox/qtox-1.3.0.ebuild  | 80 --
 .../qtox/{qtox-1.4.0.ebuild => qtox-1.6.0.ebuild}  | 10 +--
 3 files changed, 6 insertions(+), 87 deletions(-)

diff --git a/net-im/qtox/Manifest b/net-im/qtox/Manifest
index 12eae9f..a58464e 100644
--- a/net-im/qtox/Manifest
+++ b/net-im/qtox/Manifest
@@ -1,3 +1,2 @@
-DIST qtox-1.3.0.tar.gz 4679256 SHA256 
a2d1483a9aa6e99684853733a0a0a04c8cde168a775b9d2bdab94771fd82bc0a SHA512 
9147e9f6c80098a6d1c3d9deaf92d5ae2a62894f0628b058e59a66616873aebbca8a1ba04c0436a1b2793ae766a2ba9056a832be1550b47e1799de24216f19e8
 WHIRLPOOL 
646eb1bb940408d1d9c7bfddf43ce66898b238158d0f0bb49896ec4899e3d540bae30ee968969bea544b529d6b8279d0017262c4a9a6e5c50d43b35da745eb2d
-DIST qtox-1.4.0.tar.gz 3021956 SHA256 
f869aafddb597286dc03b828b48e2560a97983f180914c396fdcf2f1ca07ae79 SHA512 
4c93e90ec20e8c9289f5be628f6543d356c99f59d72e735814ba2640b257fbb78f18a9dbd42070a5cfb7fded492906f07cc678d1ae737ac795da689b3e6abe2d
 WHIRLPOOL 
68991d933427be17b6757010d03fda8647c3e3c448fe44a4dad812b9636802f9dc8667b76824d6b867f514e61da202a52d9ea2c4117cc3cda833b82301589f11
 DIST qtox-1.5.0.tar.gz 3452369 SHA256 
216c07cf6c37f655aa91de6f507f3f0a86831ad502d7733c0e67c336ed197a86 SHA512 
253effc91663cac373cf9fd1595f4cb26f38c5cf997050217def4d1c659a710afa10a29cb5aecb5d23dbdeb3ea7cf8b651f4a120d79e8681c96fb7b8b4500812
 WHIRLPOOL 
d73650790e7be2be5636dd3b1507ed1e704307ad8e916f6dc12aa2739525717ccc221c76104bc231f77e4c2c87b6370fdaf8a5aad160a0e06e86767f760eeb66
+DIST qtox-1.6.0.tar.gz 3481328 SHA256 
7450e751da5cc6dce00b58df6d06a309e2674c7bd9311de6af21e53c36c3f155 SHA512 
6ccf2c17c25ea30899356518b8f8849ed53404a8ac81180e2719c979dab1f411a93aa08ad759b3e8defea994d3baaf538ed354b733a321de3615521dcf6c8192
 WHIRLPOOL 
999aacf9724697526f925721e7202168076bcaac9fb5a733ef6374518f3ab86c9a3ded9d0911e2a2d677c0af0c474054d7f6c2cc06fd430c98366d9fa48f19ab

diff --git a/net-im/qtox/qtox-1.3.0.ebuild b/net-im/qtox/qtox-1.3.0.ebuild
deleted file mode 100644
index 8c6a714..
--- a/net-im/qtox/qtox-1.3.0.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit eutils qmake-utils
-
-DESCRIPTION="Most feature-rich GUI for net-libs/tox using Qt5"
-HOMEPAGE="https://github.com/tux3/qtox;
-SRC_URI="https://github.com/tux3/qTox/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="gtk X"
-
-# needed, since tarball provided by github extracts to `qTox`
-S="${WORKDIR}/qTox-${PV}"
-
-RDEPEND="
-   dev-db/sqlcipher
-   dev-qt/qtconcurrent:5
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5[gif,jpeg,png,xcb]
-   dev-qt/qtnetwork:5
-   dev-qt/qtopengl:5
-   dev-qt/qtsql:5
-   dev-qt/qtsvg:5
-   dev-qt/qtxml:5
-   media-gfx/qrencode
-   media-libs/openal
-   >=media-video/ffmpeg-2.6.3[webp,v4l]
-   gtk? (  dev-libs/atk
-   dev-libs/glib:2
-   x11-libs/gdk-pixbuf[X]
-   x11-libs/gtk+:2
-   x11-libs/cairo[X]
-   x11-libs/pango[X] )
-   net-libs/tox[av]
-   X? ( x11-libs/libX11
-   x11-libs/libXScrnSaver )
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-pkg_pretend() {
-   if [[ ${MERGE_TYPE} != binary ]]; then
-   if tc-is-gcc ; then
-   if [[ $(gcc-major-version) == 4 && $(gcc-minor-version) 
-lt 8 || $(gcc-major-version) -lt 4 ]] ; then
-   eerror "You need at least sys-devel/gcc-4.8.3"
-   die "You need at least sys-devel/gcc-4.8.3"
-   fi
-   fi
-   fi
-}
-
-src_configure() {
-   use gtk || local 
NO_GTK_SUPPORT="ENABLE_SYSTRAY_STATUSNOTIFIER_BACKEND=NO 
ENABLE_SYSTRAY_GTK_BACKEND=NO"
-   use X || local NO_X_SUPPORT="DISABLE_PLATFORM_EXT=YES"
-   # filter_audio is disabled since it's not available in Gentoo, and
-   # support for it in qTox at the present is ~broken anyway
-   eqmake5 \
-   GIT_DESCRIBE="${PV}" \
-   DISABLE_FILTER_AUDIO=YES \
-   ${NO_GTK_SUPPORT} \
-   ${NO_X_SUPPORT}
-}
-
-src_install() {
-   dobin "${S}/qtox"
-   # install all png icons
-   local ICONS=(16 22 24 32 36 48 64 72 96 128 192 256 512)
-   for i in "${ICONS[@]}"; do
-   newicon -s "${i}" 

[gentoo-commits] proj/devmanual:master commit in: ebuild-writing/variables/

2016-11-16 Thread Göktürk Yüksek
commit: 9663bc625de09bf50c6605a856dff9e7c7cb9d2a
Author: Wim Muskee  gmail  com>
AuthorDate: Sun Nov 13 14:59:54 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Nov 17 05:22:53 2016 +
URL:https://gitweb.gentoo.org/proj/devmanual.git/commit/?id=9663bc62

ebuild-writing/variables: add explanation for no homepage to HOMEPAGE

 ebuild-writing/variables/text.xml | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/ebuild-writing/variables/text.xml 
b/ebuild-writing/variables/text.xml
index f402070..7613b57 100644
--- a/ebuild-writing/variables/text.xml
+++ b/ebuild-writing/variables/text.xml
@@ -168,8 +168,10 @@ The following variables may or must be defined by every 
ebuild.
 Package's homepage. Mandatory (except for virtuals). If you are
 unable to locate an official one, try to provide a link to
 http://freshmeat.net;>freshmeat.net or a similar
-package tracking site. Never refer to a variable name in the
-string; include only raw text.
+package tracking site. If the homepage of the package is unavailable
+and no new location can be found, please update it to
+https://wiki.gentoo.org/wiki/No_homepage.
+Never refer to a variable name in the string; include only raw text.
 
   
   



[gentoo-commits] repo/gentoo:master commit in: games-board/stockfish/

2016-11-16 Thread Matthias Maier
commit: ca6b7a4e16875ac5c136b10974834faa226c4f51
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Nov 17 05:16:25 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Nov 17 05:19:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca6b7a4e

games-board/stockfish: bump to version 8

Package-Manager: portage-2.3.0

 games-board/stockfish/Manifest   |  1 +
 games-board/stockfish/stockfish-8.ebuild | 70 
 2 files changed, 71 insertions(+)

diff --git a/games-board/stockfish/Manifest b/games-board/stockfish/Manifest
index e3fc501..77676e8 100644
--- a/games-board/stockfish/Manifest
+++ b/games-board/stockfish/Manifest
@@ -1 +1,2 @@
 DIST stockfish-7-src.zip 158788 SHA256 
89f1bb855c9251c1c644156d82960c71aa68e837390367f5111aa756e0785f36 SHA512 
e5f2bb5e1309db9bf8e89ed35d69c7cf1c63b9da5158dfb32faea33113569c337781e40ec3f4fc03760f1e17acfbb671ecc2eaf57dec1fd018173fe0ae6d70d1
 WHIRLPOOL 
201d405b977355be3326f21567b2b836522d8d021fdab028d74fb3dd21b5eb281825f28df56d35f6a85b0e91cad9f2f674775180715a96f11e85ad4a06f0d663
+DIST stockfish-8-src.zip 159017 SHA256 
7bad36f21f649ab24f6d7786bbb1b74b3e4037f165f32e3d42d1ae19c8874ce9 SHA512 
4dcc8c6e975367e96d5b4e76c241094e1bade53fd19fa29320a5df10177ff5ae04844ca7ae9f9cfe929aa1341d898aabbbe523bbdab4c5beef75ca8332ce50c1
 WHIRLPOOL 
ac28ea7e89a447e465dfc102cc4f1a7a9131e0933bf52f57b00483f541065613d678797c807d462c6b364a1052b86c55e0471bfb76fe8e61e3355ea79133fc84

diff --git a/games-board/stockfish/stockfish-8.ebuild 
b/games-board/stockfish/stockfish-8.ebuild
new file mode 100644
index ..ff0852b
--- /dev/null
+++ b/games-board/stockfish/stockfish-8.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit toolchain-funcs
+
+DESCRIPTION="Free UCI chess engine, claimed to be the strongest in the world"
+HOMEPAGE="http://stockfishchess.org/;
+
+SRC_URI="https://stockfish.s3.amazonaws.com/${P}-src.zip;
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="armv7 cpu_flags_x86_avx2 cpu_flags_x86_popcnt cpu_flags_x86_sse debug
+   general-32 general-64 +optimize"
+
+DEPEND="|| ( app-arch/unzipapp-arch/zip )"
+RDEPEND=""
+
+S="${WORKDIR}/${P}-src/src"
+
+src_prepare() {
+   default
+
+   # prevent pre-stripping
+   sed -e 's:-strip $(BINDIR)/$(EXE)::' -i Makefile \
+   || die 'failed to disable stripping in the Makefile'
+}
+
+src_compile() {
+   local my_arch
+
+   # generic unoptimized first
+   use general-32 && my_arch=general-32
+   use general-64 && my_arch=general-64
+
+   # x86
+   use x86 && my_arch=x86-32-old
+   use cpu_flags_x86_sse && my_arch=x86-32
+
+   # amd64
+   use amd64 && my_arch=x86-64
+   use cpu_flags_x86_popcnt && my_arch=x86-64-modern
+
+   # both bmi2 and avx2 are part of hni (haswell new instructions)
+   use cpu_flags_x86_avx2 && my_arch=x86-64-bmi2
+
+   # other architectures
+   use armv7 && my_arch=armv7
+   use ppc && my_arch=ppc
+   use ppc64 && my_arch=ppc64
+
+   # Skip the "build" target and use "all" instead to avoid the config
+   # sanity check (which would throw a fit about our compiler). There's
+   # a nice hack in the Makefile that overrides the value of CXX with
+   # COMPILER to support Travis CI and we abuse it to make sure that we
+   # build with our compiler of choice.
+   emake all ARCH="${my_arch}" \
+   COMP=$(tc-getCXX) \
+   COMPILER=$(tc-getCXX) \
+   debug=$(usex debug "yes" "no") \
+   optimize=$(usex optimize "yes" "no")
+}
+
+src_install() {
+   dobin "${PN}"
+   dodoc ../AUTHORS ../Readme.md
+}



[gentoo-commits] repo/gentoo:master commit in: games-board/stockfish/

2016-11-16 Thread Matthias Maier
commit: d16f74e7c0aab3f2166842134dc305bcaa3174d4
Author: Matthias Maier  gentoo  org>
AuthorDate: Thu Nov 17 05:18:32 2016 +
Commit: Matthias Maier  gentoo  org>
CommitDate: Thu Nov 17 05:19:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d16f74e7

games-board/stockfish: take over maintainership

Package-Manager: portage-2.3.0

 games-board/stockfish/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/games-board/stockfish/metadata.xml 
b/games-board/stockfish/metadata.xml
index 831231b..38f3f41 100644
--- a/games-board/stockfish/metadata.xml
+++ b/games-board/stockfish/metadata.xml
@@ -1,11 +1,14 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-  
-  
-Build for armv7; enables PIE
-Generic unoptimized 32-bits build
-Generic unoptimized 64-bits build
-Enable upstream -O3 optimizations (default 
enabled)
-  
+   
+   tam...@gentoo.org
+   Matthias Maier
+   
+   
+   Build for armv7; enables PIE
+   Generic unoptimized 32-bits build
+   Generic unoptimized 64-bits build
+   Enable upstream -O3 optimizations 
(default enabled)
+   
 



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

2016-11-16 Thread Kent Fredric
commit: cae075f5402973bcecbd61ce223456e9a25c8bae
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 04:00:11 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 04:03:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cae075f5

dev-perl/JSON-XS: Bump to version 3.30.0

- EAPI6
- Parallel Tests
- Add USE="examples"

Upstream:
- Avoid crash on older perls with shared hash keys
- fix calling encode/decode in list context
- Add cbor format to json_xs tool
- Allow literal tabs in strings in relaxed mode
- allow_nonref applies to booleans as well
- Fix toformat error message
- Fix bug in workaround in sv_chop w/ incremental parsing

Package-Manager: portage-2.3.2

 dev-perl/JSON-XS/JSON-XS-3.30.0.ebuild | 27 +++
 dev-perl/JSON-XS/Manifest  |  1 +
 dev-perl/JSON-XS/metadata.xml  |  1 -
 3 files changed, 28 insertions(+), 1 deletion(-)

diff --git a/dev-perl/JSON-XS/JSON-XS-3.30.0.ebuild 
b/dev-perl/JSON-XS/JSON-XS-3.30.0.ebuild
new file mode 100644
index ..e5ab07d
--- /dev/null
+++ b/dev-perl/JSON-XS/JSON-XS-3.30.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MLEHMANN
+DIST_VERSION=3.03
+DIST_EXAMPLES=("eg/bench")
+inherit perl-module
+
+DESCRIPTION="JSON::XS - JSON serialising/deserialising, done correctly and 
fast"
+
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x64-macos ~x86-solaris"
+IUSE="test"
+
+RDEPEND="
+   dev-perl/Types-Serialiser
+   dev-perl/common-sense
+   !
 JSON-XS
 JSON::XS
-JSON::XS::Boolean
   
 



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

2016-11-16 Thread Mike Gilbert
commit: 213b51ac6407f9f48122d129e63520125d318780
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Nov 17 04:01:29 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Nov 17 04:02:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=213b51ac

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

Package-Manager: portage-2.3.2_p8

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...-beta-55.0.2883.44.ebuild => google-chrome-beta-55.0.2883.52.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 4de3f48..87ae8ee 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_55.0.2883.44-1_amd64.deb 48186422 SHA256 
bf57d73fa38febb2b0ed71ab58e5719c946ee2aa3c3c9d189b0dcda38f8aa3ed SHA512 
89bc1df9815535739735b957352a2ac1014c9547f35aa77f1a100b81fe21cdf7d8eebc9c5a4664bd49b56787c25c8bff9e4b9f18a84c9ebc77450ad6277f0828
 WHIRLPOOL 
0a87b6d2b7ab4b6e8d5a53ec7af78d7327f1cf1627f01b9b942cead9cf798ee0bd6796614439c08e1d77fe1318febce87b50c817c461d9a5d8e16f8478c9a515
+DIST google-chrome-beta_55.0.2883.52-1_amd64.deb 48104092 SHA256 
3c9e4919deff8f3aaa9334810a4ff5a0131beb819e7290d9d2a1a987fe5249b9 SHA512 
409dcb1ac9726bb5e05155782c7e0d9584a6607643ed412a2e0ec05ecb0327be4a59783a862ed8584d025faf6a879a51db09ce816c1384de89231f1e61daa2d9
 WHIRLPOOL 
daccdf9cb9bf2a60819ef096cca2879e7dd69bc43faecfeb7e8e85577875d59da638f795e664e168317a6f8c3e6d4067b3d645f5f23ac49f4190759a37d4c0c8

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



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

2016-11-16 Thread Mike Gilbert
commit: 5506eda3fbad61f0c635274c629839bf1430a13b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Thu Nov 17 04:01:41 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Nov 17 04:02:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5506eda3

www-plugins/chrome-binary-plugins: automated update (55.0.2883.52)

Package-Manager: portage-2.3.2_p8

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...83.44_beta.ebuild => chrome-binary-plugins-55.0.2883.52_beta.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index b9ccd2a..4f81627 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_55.0.2883.44-1_amd64.deb 48186422 SHA256 
bf57d73fa38febb2b0ed71ab58e5719c946ee2aa3c3c9d189b0dcda38f8aa3ed SHA512 
89bc1df9815535739735b957352a2ac1014c9547f35aa77f1a100b81fe21cdf7d8eebc9c5a4664bd49b56787c25c8bff9e4b9f18a84c9ebc77450ad6277f0828
 WHIRLPOOL 
0a87b6d2b7ab4b6e8d5a53ec7af78d7327f1cf1627f01b9b942cead9cf798ee0bd6796614439c08e1d77fe1318febce87b50c817c461d9a5d8e16f8478c9a515
+DIST google-chrome-beta_55.0.2883.52-1_amd64.deb 48104092 SHA256 
3c9e4919deff8f3aaa9334810a4ff5a0131beb819e7290d9d2a1a987fe5249b9 SHA512 
409dcb1ac9726bb5e05155782c7e0d9584a6607643ed412a2e0ec05ecb0327be4a59783a862ed8584d025faf6a879a51db09ce816c1384de89231f1e61daa2d9
 WHIRLPOOL 
daccdf9cb9bf2a60819ef096cca2879e7dd69bc43faecfeb7e8e85577875d59da638f795e664e168317a6f8c3e6d4067b3d645f5f23ac49f4190759a37d4c0c8
 DIST google-chrome-stable_54.0.2840.100-1_amd64.deb 45600222 SHA256 
89f0fc871ce19f68b9edfccd6eee1f81cc4b8f79b98a86a30296cf639bf28917 SHA512 
d7401e329e5d5e68f450ff3789f328106a8489fc324c9753c32ab83cdf5167bb1433f2713fed0ae8afff08646b403a51534e0b32165b58507a1a4d14607cead5
 WHIRLPOOL 
74d88b133d418c678b4b3cbe50a424988fc755fee97b26738065342a9b863b7d30d830a6d9ca901648fcf42846661d9f72989e1b72a457f4e2892905d63e9e51
 DIST google-chrome-unstable_56.0.2914.3-1_amd64.deb 48870496 SHA256 
6ac971d3433f5c659a5299b9aa5f396f8f3cca66388ba968031c846602a207f3 SHA512 
af21aa1e2edeb3ab3c1c0a84af7d717bdacb030f3db3ad77d30017bb39c5710d805940bb26ebe795a5f58aed8b5105d461e43962a9f847744179fa236a04dbb5
 WHIRLPOOL 
5b7d9bf0ede37fc51809957f11f7a1f6967ed8636974a4dff54f6f67e74cb320632bbf0e4a0de440902ee28824533a4fa98cdb377177c4ada8582d207f164485

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



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

2016-11-16 Thread Kent Fredric
commit: 0b56e55a7596363d78a4ab9397c7dce9e5aa0048
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 03:41:28 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 03:41:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b56e55a

dev-perl/JSON-Parse: Bump to version 0.460.0

- Add USE="examples"

Upstream:
- remove $json_diagnostics
- add method diagnostics_hash
- Improved warnings for parse_json_safe
- Remove JSON::Whitespace
- Add JSON::Tokenize interface

Package-Manager: portage-2.3.2

 dev-perl/JSON-Parse/JSON-Parse-0.460.0.ebuild | 24 
 dev-perl/JSON-Parse/Manifest  |  1 +
 dev-perl/JSON-Parse/metadata.xml  |  1 -
 3 files changed, 25 insertions(+), 1 deletion(-)

diff --git a/dev-perl/JSON-Parse/JSON-Parse-0.460.0.ebuild 
b/dev-perl/JSON-Parse/JSON-Parse-0.460.0.ebuild
new file mode 100644
index ..c6e5ef9
--- /dev/null
+++ b/dev-perl/JSON-Parse/JSON-Parse-0.460.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=BKB
+DIST_VERSION=0.46
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Read JSON into a Perl Variable"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="virtual/perl-Getopt-Long"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-Test-Simple
+   virtual/perl-Encode
+   )
+"

diff --git a/dev-perl/JSON-Parse/Manifest b/dev-perl/JSON-Parse/Manifest
index 6940cd9..4a40c95 100644
--- a/dev-perl/JSON-Parse/Manifest
+++ b/dev-perl/JSON-Parse/Manifest
@@ -1,2 +1,3 @@
 DIST JSON-Parse-0.42.tar.gz 65871 SHA256 
bac333e09f9e6d18daca1742732045032609a8bdd70cf93f4ae64ec48cd493aa SHA512 
de13b79da092fb4232d82dfacab05c0585d77dda735b76a9622a571a1992e7e5a652b29df26f25a5837894f120d0fe4627963981636865a3a457dfe68082e34e
 WHIRLPOOL 
0b5dcb8e47b210ed5fcfd21082cdffc3c5725e02d2e117655c47cfdb386e58710fe653ca29b9c01c94e770e3a21a3e363b2aa8fd2cef8eee685291d962a8ad7a
 DIST JSON-Parse-0.43.tar.gz 67271 SHA256 
74c642000f064f6a85e3fb07ce0cb54bdea26b55af85baa71083da7e485ea98e SHA512 
31495ae0298a0ced702668116b63a87d26de02eeb74b31ddeef0a25e96684bb6bc60a524534a32be5a2b5fb0adf3259084e67c829c3bea80c4a1bb33c185510e
 WHIRLPOOL 
47f24afe264df5d8e8aa78021367759418acb00d67f90d64d34edaa77be66dea2e8d331c914d02d359f183f25b8b4a031c8acb5b5f0707529da99f5e8b7673a7
+DIST JSON-Parse-0.46.tar.gz 72873 SHA256 
657d537a93d7126d01cbc41286e0d61f066e9537c9565464e052452445b22b41 SHA512 
ea6180c18c0027e88bbf9ef0c088479409020fca4da9af91775a7aa4a9e65a56c6c2b5852ecf605aa1b694201a00c54d340fa79635578551c2536cbc7e829508
 WHIRLPOOL 
33b57062d67b6774b11189e783bc8cc05f6c405e3c6b699323c883622bac92ce5a337311163d571753aa31538c3067b93c10d130e08247d615f9a743bdd7eacf

diff --git a/dev-perl/JSON-Parse/metadata.xml b/dev-perl/JSON-Parse/metadata.xml
index 6726e352..176969e 100644
--- a/dev-perl/JSON-Parse/metadata.xml
+++ b/dev-perl/JSON-Parse/metadata.xml
@@ -9,6 +9,5 @@
 JSON-Parse
 JSON::Parse
 JSON::Tokenize
-JSON::Whitespace
   
 



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

2016-11-16 Thread Kent Fredric
commit: bb0259e5f7f99a42b4d9b5a4688af9133b3e23bd
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 03:23:10 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 03:23:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb0259e5

dev-perl/MP3-Tag: Bump to version 1.140.0 re bug #600062

- EAPI6
- Add USE="examples"

Upstream:
- Fixed warnings on Perl 5.22+
- New method have_one_of_frame
- New methods *_have() for all basic types like "title" etc
- New tunable ampersand_joiner
- New method _auto_field_from
- Fix _parse_rex_microinterpolate not updateing $ecount with %%
- Fix some %-escapes not being matched
- More careful ID3v2 frame name parsing

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

Package-Manager: portage-2.3.2

 dev-perl/MP3-Tag/MP3-Tag-1.140.0.ebuild | 23 +++
 dev-perl/MP3-Tag/Manifest   |  1 +
 2 files changed, 24 insertions(+)

diff --git a/dev-perl/MP3-Tag/MP3-Tag-1.140.0.ebuild 
b/dev-perl/MP3-Tag/MP3-Tag-1.140.0.ebuild
new file mode 100644
index ..2e34630
--- /dev/null
+++ b/dev-perl/MP3-Tag/MP3-Tag-1.140.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=ILYAZ
+DIST_VERSION=1.14
+DIST_SECTION=modules
+DIST_EXAMPLES=("examples/*")
+inherit perl-module
+
+DESCRIPTION="Module for reading tags of MP3 Audio files"
+
+SLOT="0"
+LICENSE="Artistic"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~x86-freebsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE=""
+
+RDEPEND="dev-perl/MP3-Info"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"

diff --git a/dev-perl/MP3-Tag/Manifest b/dev-perl/MP3-Tag/Manifest
index 762c3cc..3281525 100644
--- a/dev-perl/MP3-Tag/Manifest
+++ b/dev-perl/MP3-Tag/Manifest
@@ -1 +1,2 @@
 DIST MP3-Tag-1.13.tar.gz 275907 SHA256 
34d3c33c1efa4c4448e27a45b1689ca20a27882fb3c74c0d3588e6aa315f33ae SHA512 
3dcdc186d8e2f00fc474eccadb755058fcba6cb80637c87d8565981f073bb19fa867a755de7423e3d58393bc730fe85f601f63dd928f4fe27a9fe9b80f63bfc3
 WHIRLPOOL 
1a0d203f0070af4f6fd5ae349f5957d7ca79795021b0f5ad1cabb8d1132f68b0fd916f4a63cbf15aa806d214e7d9339a8f9dce43b808015ad0759c44c0eb45c2
+DIST MP3-Tag-1.14.tar.gz 279630 SHA256 
3ec392f273ce38228ee2d7e53f7622f6f90a9c31c5079e6c9f354fb04a98c259 SHA512 
05e35f024868505cfc8a07146442e248ef1e80c3c156fd1eabeb874d458356f6b391793e343a24e9e490fd537e7f280316f651b6717378c06953480d271ed2e1
 WHIRLPOOL 
2db6994d83dcca06d48cd82275a786b01fb9deb3c4c56b5d63eb96434aea897c91c40375c4bbe54a617902b93b2cda31d211f3b1e65d53fe5eed8ec31bf54768



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

2016-11-16 Thread Kent Fredric
commit: 3186f3a7c74f4042e1c2fc96e5db993d329c9eb8
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 02:49:52 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 02:50:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3186f3a7

dev-perl/PDF-Create: Bump to version 1.370.0

Upstream:
- fixed block_text() line spacing calculation
- Added util verify-char-width for font character with testing
- Fixed calculation of Helvetica and HelveticaBold fonts
- Ensure to close passed write filehandles to avoid corruption

Keywording:
- New dependencies
- Dropped alpha ia64 ppc sparc

Package-Manager: portage-2.3.2

 dev-perl/PDF-Create/Manifest  |  1 +
 dev-perl/PDF-Create/PDF-Create-1.370.0.ebuild | 37 +++
 dev-perl/PDF-Create/metadata.xml  |  1 +
 3 files changed, 39 insertions(+)

diff --git a/dev-perl/PDF-Create/Manifest b/dev-perl/PDF-Create/Manifest
index 3e5acd6..d27e05c 100644
--- a/dev-perl/PDF-Create/Manifest
+++ b/dev-perl/PDF-Create/Manifest
@@ -1 +1,2 @@
 DIST PDF-Create-1.29.tar.gz 103868 SHA256 
7adc48a56786e2b15147e94d9474cfaabc652f83def13491d699ae19dda6d592 SHA512 
82939b22163c448de67565ff0997021c2df2345a1af443e7b9e00fdb299108cea71c9157a945881314742167cefa55b57909e28905e29bb743aa3448b33dbb4d
 WHIRLPOOL 
a688cfe61f18ee6c32392b04549240e5ad7c7110244a0884f475219cd1e1ab44112bb0d3d40e5f751c2da4c4da5cb5a82ad8357830debbb03acccadda9b60ded
+DIST PDF-Create-1.37.tar.gz 120384 SHA256 
fd2e76a5d5aefe40421dd2ebd90d61f9239344a9eee75611951751ba615ecc5b SHA512 
75ef488ddfbda663997b3fb036d99fe8e93554d7fcc6fea420d099d5d02db4d51ca21b194a59ca5225b53b7f1cfe8ec73d0e55adac4fb49c023c0c890272746f
 WHIRLPOOL 
ec1d6dd56ddc7dee54dd21441416b9b70e48d7cdfe52b8b67de79d2373b8f3a4b6bcb39aeedb085ca563ec9e9764ddc2bab4dcdbe87b589b06272a1a09bbb05a

diff --git a/dev-perl/PDF-Create/PDF-Create-1.370.0.ebuild 
b/dev-perl/PDF-Create/PDF-Create-1.370.0.ebuild
new file mode 100644
index ..024b686
--- /dev/null
+++ b/dev-perl/PDF-Create/PDF-Create-1.370.0.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MANWAR
+DIST_VERSION=1.37
+DIST_EXAMPLES=( "eg/*" )
+inherit perl-module
+
+DESCRIPTION="Create PDF documents in Perl"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test examples"
+
+RDEPEND="
+   virtual/perl-Carp
+   virtual/perl-Data-Dumper
+   >=dev-perl/File-Share-0.250.0
+   dev-perl/JSON
+   virtual/perl-Scalar-List-Utils
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   dev-perl/File-ShareDir-Install
+   test? (
+   virtual/perl-File-Temp
+   >=dev-perl/Test-LeakTrace-0.140.0
+   >=virtual/perl-Test-Simple-1.0.0
+   )
+"
+src_test() {
+   perl_rm_files "t/changes.t" "t/meta-json.t" "t/meta-yml.t" "t/pod.t" 
"t/manifest.t"
+   perl-module_src_test
+}

diff --git a/dev-perl/PDF-Create/metadata.xml b/dev-perl/PDF-Create/metadata.xml
index 14fc929..239ddbe 100644
--- a/dev-perl/PDF-Create/metadata.xml
+++ b/dev-perl/PDF-Create/metadata.xml
@@ -10,6 +10,7 @@
 PDF::Create
 PDF::Create::Outline
 PDF::Create::Page
+PDF::Font
 PDF::Image::GIF
 PDF::Image::JPEG
   



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

2016-11-16 Thread Kent Fredric
commit: fb8ca4f43b2f971a3ae93d3582d8934caa98cc13
Author: Kent Fredric  gentoo  org>
AuthorDate: Thu Nov 17 01:32:55 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Thu Nov 17 02:50:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb8ca4f4

dev-perl/File-Share: Add version 0.250.0

Required for new dev-perl/PDF-Create

Package-Manager: portage-2.3.2

 dev-perl/File-Share/File-Share-0.250.0.ebuild | 24 
 dev-perl/File-Share/Manifest  |  1 +
 dev-perl/File-Share/metadata.xml  | 12 
 3 files changed, 37 insertions(+)

diff --git a/dev-perl/File-Share/File-Share-0.250.0.ebuild 
b/dev-perl/File-Share/File-Share-0.250.0.ebuild
new file mode 100644
index ..808d482
--- /dev/null
+++ b/dev-perl/File-Share/File-Share-0.250.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=INGY
+DIST_VERSION=0.25
+inherit perl-module
+
+DESCRIPTION="Extend File::ShareDir to local libraries"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND=">=dev-perl/File-ShareDir-1.30.0"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.300.0
+   test? ( virtual/perl-Test-Simple )
+"
+src_test() {
+   perl_rm_files t/release-pod-syntax.t
+   perl-module_src_test
+}

diff --git a/dev-perl/File-Share/Manifest b/dev-perl/File-Share/Manifest
new file mode 100644
index ..e7fe9fa
--- /dev/null
+++ b/dev-perl/File-Share/Manifest
@@ -0,0 +1 @@
+DIST File-Share-0.25.tar.gz 13696 SHA256 
8e9d256e0ac4384228384b4ad2a57819a163edb39f20988ed5c1318c01407070 SHA512 
7c9f9a341a5d2d397479a09da05136df1d0c6b9869da511e45ee75b49565218f2231fd1b45c61e68ab802402a95af02513c4c78ce72cf8205537d0e68f9b1e46
 WHIRLPOOL 
98a4d487b44495a2ddbf5aec838d59181bd38fd46ce72cc692878dba6e57d0b6c40bfb0b3f23fd894cca927742279e8a552855528ee1362877822678d64f7f74

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



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

2016-11-16 Thread Zac Medico
commit: 03728297b5c6b9eeb13a7201b4af2ac9fdac613c
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Nov 17 02:21:57 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Nov 17 02:22:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03728297

dev-python/aiohttp: version bump to 1.1.5

Package-Manager: portage-2.3.2

 dev-python/aiohttp/Manifest |  1 +
 dev-python/aiohttp/aiohttp-1.1.5.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/dev-python/aiohttp/Manifest b/dev-python/aiohttp/Manifest
index 7e57385..276abbc 100644
--- a/dev-python/aiohttp/Manifest
+++ b/dev-python/aiohttp/Manifest
@@ -4,3 +4,4 @@ DIST aiohttp-1.0.4.tar.gz 562803 SHA256 
7e2d4282b2031ca2aaef35d4291743f37a884082
 DIST aiohttp-1.0.5.tar.gz 563623 SHA256 
053a16d03672cb3055cfac06650d238f55205702207be4a3b40c42333df0ebeb SHA512 
f6fe77729a54d817046f0cc952d8906524c2dfe6712dd1972d696680fe34310b6dba9a3b48b6e27c52d3fedd3fa0f541a7c1ac45488b3358e39e3768a01749d9
 WHIRLPOOL 
51c609bed1bad59e8c1761fa412ed36031da7b80dff03f5edffd84763044cdb570c49d7b9970d133c9b1b224cc293e73004b00447f5b242d91c8286cc21e87c9
 DIST aiohttp-1.1.1.tar.gz 575872 SHA256 
6f624d2b340a2c622949e5585540373a86349d31c2f6d46cd4d7b8446cf35f4a SHA512 
38636ce4547688ade569ebfc0dbc62b769379500451954c528cd5dddfc7e6c25e6397a56382959ecd43c85c2f344039f4140bf91551e90b288fbd2aefdc94823
 WHIRLPOOL 
d08ba4a51ddb8f66ceed6a64b304192635fccca31f9982484d17f4beaee3cb60d341a3101db6fda8d45231bd99e82ee18b3b86270edbbb9312bd9504f360ac43
 DIST aiohttp-1.1.2.tar.gz 576160 SHA256 
8be33ad39522d5fbc06ce527da4615bf93e6c5d4f933173072bc51fa27ea0cf4 SHA512 
ccba7a8e9a2cebaa0afadcfa927fbe9113577b2c69165cd64d8f1169d6cdb4efca252a228ad8d4780b20fcc94fffb9fa8217cbd0d49cbe9c5560a81e4423be41
 WHIRLPOOL 
ea3f9d74f7c4a0d266b56a2cd5a8655734fd8c9043a7b8f5423f960ff90cbaec1b1d6f3965b089d1cb4db7e1abb39a58dd7d5f627e6f88fb292c822ae75ab77a
+DIST aiohttp-1.1.5.tar.gz 577346 SHA256 
8f4c31a10b0a96667ac8a13e3756a3505e040c423c3c4075b99745056b3537d8 SHA512 
44b1474a64ce150164045f30734da119a1848a3677d885493f99f2d724d20884dac9a24adce4b90017e203fc67b295443f91d14f1af9eb20d657a3cd4b69d747
 WHIRLPOOL 
036265681123f902aaa2000fd6ddd83980c3b1a48d67b583b5e1da7e7079d381a9c92669c12040c1494ba3890c2a849cd1f190003a1ec611df7a72843242bcec

diff --git a/dev-python/aiohttp/aiohttp-1.1.5.ebuild 
b/dev-python/aiohttp/aiohttp-1.1.5.ebuild
new file mode 100644
index ..e63aabe
--- /dev/null
+++ b/dev-python/aiohttp/aiohttp-1.1.5.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+PYTHON_COMPAT=( python3_4 python3_5 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="http client/server for asyncio"
+HOMEPAGE="https://pypi.python.org/pypi/aiohttp;
+SRC_URI="https://github.com/KeepSafe/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+EGIT_REPO_URI="https://github.com/KeepSafe/aiohttp;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+CDEPEND="
+   dev-python/async_timeout[${PYTHON_USEDEP}]
+   dev-python/chardet[${PYTHON_USEDEP}]
+   >=dev-python/multidict-2.0[${PYTHON_USEDEP}]
+   dev-python/yarl[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/cython[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/alabaster-0.6.2[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-asyncio[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-newsfeed[${PYTHON_USEDEP}]
+   dev-python/sphinxcontrib-spelling[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${CDEPEND}
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   www-servers/gunicorn[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="${CDEPEND}"
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   PYTHONPATH="${PWD}:${PYTHONPATH}" ${PYTHON} -m pytest tests/ || die 
"Tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   distutils-r1_python_install_all
+}



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

2016-11-16 Thread Patrick McLean
commit: 5586801fedbf37bdbc087fdb324547693b7867a7
Author: Patrick McLean  gentoo  org>
AuthorDate: Thu Nov 17 02:04:09 2016 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Thu Nov 17 02:04:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5586801f

net-misc/openvpn: Version bump to 2.3.13

Package-Manager: portage-2.3.2

 net-misc/openvpn/Manifest  |   1 +
 net-misc/openvpn/openvpn-2.3.13.ebuild | 138 +
 2 files changed, 139 insertions(+)

diff --git a/net-misc/openvpn/Manifest b/net-misc/openvpn/Manifest
index 443bd2e..0ee7d1f 100644
--- a/net-misc/openvpn/Manifest
+++ b/net-misc/openvpn/Manifest
@@ -1 +1,2 @@
 DIST openvpn-2.3.12.tar.gz 1235262 SHA256 
f5d39b8c55f75b0aab943059b20571452b494146d997b12d48ce9bd753c01cff SHA512 
8de40e9177268cce64906915ddc0d23381b4040ed00e6eefe4784b04d48f50d5c5ce9e99886eb18fe45d22c5c047478b9aa942e4c4eeaf115cc443a1d3ebe631
 WHIRLPOOL 
4adeb0da83a4fbff27bc90a3941b593f97dfdc3f50c3ccf10c113293bb0e4f85ead680b53645a2a078f907026549c8dbf068dcc64c9f89b6a967b3eb919f2c8c
+DIST openvpn-2.3.13.tar.gz 1237826 SHA256 
0e017211bf2a0607b1dda5e8e3f710b4c54aa5a63e1f89a8b17054abee20fa86 SHA512 
72e979f2e3e10d2aec6cb8a8bda97bc15bbf3a4e392ae13a5ebc7d0553c174801d2d93ccd2087e16ac0cbd6527a93dd66a4823be658d5730a9391c7a8bce2294
 WHIRLPOOL 
f896e91341eee512a941efb58b2fa42b88181870f17d54ae08ad8fb848ab09e922e9678d0d6325fd57b54c5dd9848fda0cc820ec692dcbe58db96e14186b7641

diff --git a/net-misc/openvpn/openvpn-2.3.13.ebuild 
b/net-misc/openvpn/openvpn-2.3.13.ebuild
new file mode 100644
index ..673ce7b
--- /dev/null
+++ b/net-misc/openvpn/openvpn-2.3.13.ebuild
@@ -0,0 +1,138 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit multilib flag-o-matic user systemd linux-info
+
+DESCRIPTION="Robust and highly flexible tunneling application compatible with 
many OSes"
+SRC_URI="http://swupdate.openvpn.net/community/releases/${P}.tar.gz;
+HOMEPAGE="http://openvpn.net/;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="examples down-root iproute2 libressl +lzo pam pkcs11 +plugins polarssl 
selinux socks +ssl static systemd userland_BSD"
+
+REQUIRED_USE="static? ( !plugins !pkcs11 )
+   polarssl? ( ssl !libressl )
+   pkcs11? ( ssl )
+   !plugins? ( !pam !down-root )"
+
+DEPEND="
+   kernel_linux? (
+   iproute2? ( sys-apps/iproute2[-minimal] ) !iproute2? ( 
sys-apps/net-tools )
+   )
+   pam? ( virtual/pam )
+   ssl? (
+   !polarssl? (
+   !libressl? ( >=dev-libs/openssl-0.9.7:* )
+   libressl? ( dev-libs/libressl )
+   )
+   polarssl? ( >=net-libs/polarssl-1.3.8 )
+   )
+   lzo? ( >=dev-libs/lzo-1.07 )
+   pkcs11? ( >=dev-libs/pkcs11-helper-1.11 )
+   systemd? ( sys-apps/systemd )"
+RDEPEND="${DEPEND}
+   selinux? ( sec-policy/selinux-openvpn )
+"
+
+CONFIG_CHECK="~TUN"
+
+pkg_setup()  {
+   linux-info_pkg_setup
+}
+
+src_configure() {
+   use static && LDFLAGS="${LDFLAGS} -Xcompiler -static"
+   local myconf
+   use polarssl && myconf="--with-crypto-library=polarssl"
+   econf \
+   ${myconf} \
+   --docdir="${EPREFIX}/usr/share/doc/${PF}" \
+   --with-plugindir="${ROOT}/usr/$(get_libdir)/$PN" \
+   $(use_enable ssl) \
+   $(use_enable ssl crypto) \
+   $(use_enable lzo) \
+   $(use_enable pkcs11) \
+   $(use_enable plugins) \
+   $(use_enable iproute2) \
+   $(use_enable socks) \
+   $(use_enable pam plugin-auth-pam) \
+   $(use_enable down-root plugin-down-root) \
+   $(use_enable systemd)
+}
+
+src_install() {
+   default
+   find "${ED}/usr" -name '*.la' -delete
+   # install documentation
+   dodoc AUTHORS ChangeLog PORTS README README.IPv6
+
+   # Install some helper scripts
+   keepdir /etc/openvpn
+   exeinto /etc/openvpn
+   doexe "${FILESDIR}/up.sh"
+   doexe "${FILESDIR}/down.sh"
+
+   # Install the init script and config file
+   newinitd "${FILESDIR}/${PN}-2.1.init" openvpn
+   newconfd "${FILESDIR}/${PN}-2.1.conf" openvpn
+
+   # install examples, controlled by the respective useflag
+   if use examples ; then
+   # dodoc does not supportly support directory traversal, #15193
+   insinto /usr/share/doc/${PF}/examples
+   doins -r sample contrib
+   fi
+
+   systemd_newtmpfilesd "${FILESDIR}"/${PN}.tmpfile ${PN}.conf
+   systemd_newunit distro/systemd/openvpn-client@.service 
openvpn-client@.service
+   systemd_newunit 

[gentoo-commits] repo/gentoo:master commit in: app-editors/vim/, app-editors/gvim/, app-editors/vim-core/

2016-11-16 Thread Tim Harder
commit: 4b755377dbe49bbd7e50bea41c618f3a75b44ff0
Author: Tim Harder  gentoo  org>
AuthorDate: Thu Nov 17 00:44:20 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Thu Nov 17 00:46:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b755377

app-editors/vim: update live ebuilds to work with renamed file

configure.in was renamed to configure.ac (bug #52).

 app-editors/gvim/gvim-.ebuild | 6 +++---
 app-editors/vim-core/vim-core-.ebuild | 6 +++---
 app-editors/vim/vim-.ebuild   | 6 +++---
 3 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/app-editors/gvim/gvim-.ebuild 
b/app-editors/gvim/gvim-.ebuild
index 8dd474d..02afc20 100644
--- a/app-editors/gvim/gvim-.ebuild
+++ b/app-editors/gvim/gvim-.ebuild
@@ -117,12 +117,12 @@ src_prepare() {
"${S}"/runtime/doc/tagsrch.txt \
"${S}"/runtime/doc/usr_29.txt \
"${S}"/runtime/menu.vim \
-   "${S}"/src/configure.in || die 'sed failed'
+   "${S}"/src/configure.ac || die 'sed failed'
 
# Don't be fooled by /usr/include/libc.h.  When found, vim thinks
# this is NeXT, but it's actually just a file in dev-libs/9libs
# This fixes bug 43885 (20 Mar 2004 agriffis)
-   sed -i 's/ libc\.h / /' "${S}"/src/configure.in || die 'sed failed'
+   sed -i 's/ libc\.h / /' "${S}"/src/configure.ac || die 'sed failed'
 
# gcc on sparc32 has this, uhm, interesting problem with detecting EOF
# correctly. To avoid some really entertaining error messages about 
stuff
@@ -162,7 +162,7 @@ src_configure() {
replace-flags -O3 -O2
 
# Fix bug 18245: Prevent "make" from the following chain:
-   # (1) Notice configure.in is newer than auto/configure
+   # (1) Notice configure.ac is newer than auto/configure
# (2) Rebuild auto/configure
# (3) Notice auto/configure is newer than auto/config.mk
# (4) Run ./configure (with wrong args) to remake auto/config.mk

diff --git a/app-editors/vim-core/vim-core-.ebuild 
b/app-editors/vim-core/vim-core-.ebuild
index b270bdd..4efe938 100644
--- a/app-editors/vim-core/vim-core-.ebuild
+++ b/app-editors/vim-core/vim-core-.ebuild
@@ -60,12 +60,12 @@ src_prepare() {
"${S}"/runtime/doc/tagsrch.txt \
"${S}"/runtime/doc/usr_29.txt \
"${S}"/runtime/menu.vim \
-   "${S}"/src/configure.in || die 'sed failed'
+   "${S}"/src/configure.ac || die 'sed failed'
 
# Don't be fooled by /usr/include/libc.h.  When found, vim thinks
# this is NeXT, but it's actually just a file in dev-libs/9libs
# This fixes bug 43885 (20 Mar 2004 agriffis)
-   sed -i 's/ libc\.h / /' "${S}"/src/configure.in || die 'sed failed'
+   sed -i 's/ libc\.h / /' "${S}"/src/configure.ac || die 'sed failed'
 
# gcc on sparc32 has this, uhm, interesting problem with detecting EOF
# correctly. To avoid some really entertaining error messages about 
stuff
@@ -106,7 +106,7 @@ src_configure() {
replace-flags -O3 -O2
 
# Fix bug 18245: Prevent "make" from the following chain:
-   # (1) Notice configure.in is newer than auto/configure
+   # (1) Notice configure.ac is newer than auto/configure
# (2) Rebuild auto/configure
# (3) Notice auto/configure is newer than auto/config.mk
# (4) Run ./configure (with wrong args) to remake auto/config.mk

diff --git a/app-editors/vim/vim-.ebuild b/app-editors/vim/vim-.ebuild
index bc0ca8d..8ae35c4 100644
--- a/app-editors/vim/vim-.ebuild
+++ b/app-editors/vim/vim-.ebuild
@@ -92,12 +92,12 @@ src_prepare() {
"${S}"/runtime/doc/tagsrch.txt \
"${S}"/runtime/doc/usr_29.txt \
"${S}"/runtime/menu.vim \
-   "${S}"/src/configure.in || die 'sed failed'
+   "${S}"/src/configure.ac || die 'sed failed'
 
# Don't be fooled by /usr/include/libc.h.  When found, vim thinks
# this is NeXT, but it's actually just a file in dev-libs/9libs
# This fixes bug 43885 (20 Mar 2004 agriffis)
-   sed -i 's/ libc\.h / /' "${S}"/src/configure.in || die 'sed failed'
+   sed -i 's/ libc\.h / /' "${S}"/src/configure.ac || die 'sed failed'
 
# gcc on sparc32 has this, uhm, interesting problem with detecting EOF
# correctly. To avoid some really entertaining error messages about 
stuff
@@ -150,7 +150,7 @@ src_configure() {
replace-flags -O3 -O2
 
# Fix bug 18245: Prevent "make" from the following chain:
-   # (1) Notice configure.in is newer than auto/configure
+   # (1) Notice configure.ac is newer than auto/configure
# (2) Rebuild auto/configure
# (3) Notice auto/configure is newer than auto/config.mk
# (4) Run ./configure (with wrong args) to remake auto/config.mk



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

2016-11-16 Thread Mike Gilbert
commit: 2473fbf5d63c16770d30f580a863ff46d4639b6d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 20:54:04 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Nov 17 00:23:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2473fbf5

sys-kernel/dracut: remove 034-r1

Package-Manager: portage-2.3.2_p8

 sys-kernel/dracut/Manifest |   2 -
 sys-kernel/dracut/dracut-034-r4.ebuild | 333 -
 sys-kernel/dracut/metadata.xml |   5 -
 3 files changed, 340 deletions(-)

diff --git a/sys-kernel/dracut/Manifest b/sys-kernel/dracut/Manifest
index 0e1c985..8d50caa 100644
--- a/sys-kernel/dracut/Manifest
+++ b/sys-kernel/dracut/Manifest
@@ -1,5 +1,3 @@
-DIST 034-0010-module-setup.sh-add-comments.patch.bz2 6424 SHA256 
fbcb940c83e362cc93a78c5be28ffd7c794a331f992498e451d69c1830f054fa SHA512 
e5e41b8696716c5284ea981ae85dbe688c5c31330e400c79f4ba46890939dffdd7744e4a85d27d074987a8db65114332171af0a5471338e3e4bed19d54edc6fd
 WHIRLPOOL 
c5d29ef2f20aa752e57180be35a2014c214a25e4e49d3f623d05cd6ef1debd2cec38d24453ecb0c004cdbb52239f0d541ddc9df065ab84fb7d62c30594704347
-DIST dracut-034.tar.bz2 277692 SHA256 
48c7fd57e287d4f34dfff5b5ead14a4511926858f1e2ffaa40b762f257516d7f SHA512 
ae06510668e63550d4d6b509b314c7668880387cfe696fc7f21cf04cc488be743440871dbd1fcf4e8314f9aa9e61ee3e78a42a75631123c420767677c6744e34
 WHIRLPOOL 
0412dea239fbd82d79e873869211ea31b7495dac74d7079e8aa52dd8d2484986fd0a0831aefffe29cfe5acfbf64fa01a9a1fa742192a28276a8671b663a69e13
 DIST dracut-040.tar.xz 263944 SHA256 
b6e743353804b46e350177b9ecb9a8511df7e8c4ff9e0b4f3b4f72bc509c98a3 SHA512 
6bc6a714572cc18c4cf9f9c1af4bc787287554ead1e39fbec8a1b8986585cf8c7c7ef476f87fc361f565eb344fe2594d63185ffe02cc5fa7cc3eaa03bcb4b72b
 WHIRLPOOL 
d8dbdbf6cb7705a0b7793f82a0323c49b4ac0dc3d61cf0073e3061f34af0b5c92dd21a7dc080f2a8d24d3eef3abc99df91f113675721267352f934f1319c66ba
 DIST dracut-041.tar.xz 268288 SHA256 
8ece6c2240bf0e9283e5f717b65dfcd6830b3ef7f8d1c01b60014052f1063251 SHA512 
358444588febfc482627eb5423b8a87b588ed3842ae814b9f88d8c5dfec28419f2aea92cd54c11c4949b9968d60d7e05ba9cfea78d26d2dc6f2a943a38b28dac
 WHIRLPOOL 
ab538fe1ffeb3d43185c6222a6e65af8c684b292be571e0571fdd69011f654c3093f3a2256f3003d5dbaf07d0a26f83d82055885bae1868738ad15dc74982e72
 DIST dracut-043.tar.xz 272744 SHA256 
1484b558ed20330125aa04dcccab84da15c5689e19068285aa011f7177889cd1 SHA512 
a36271e1ed4c1205a01bece7652095a8bfd722bcf7239a93baeb21e7e0a60fa86dd6657aa69b594241981056c87c6fe9d372f18ac045785122a9cafe8b0c31eb
 WHIRLPOOL 
d1efd59e2c41478e489d4707114b141e8bb0501c54209e364edc2060d3ffac7f2e1afd640b0812a452e7fbe7f9134e5e96436f0f1f2a54613d9468f9dca61a0c

diff --git a/sys-kernel/dracut/dracut-034-r4.ebuild 
b/sys-kernel/dracut/dracut-034-r4.ebuild
deleted file mode 100644
index 05db2ab..
--- a/sys-kernel/dracut/dracut-034-r4.ebuild
+++ /dev/null
@@ -1,333 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit bash-completion-r1 eutils linux-info multilib systemd
-
-add_req_use_for() {
-   local dep="$1"; shift
-   local f
-
-   for f in "$@"; do
-   REQUIRED_USE+="${f}? ( ${dep} )
-"
-   done
-}
-
-DESCRIPTION="Generic initramfs generation tool"
-HOMEPAGE="https://dracut.wiki.kernel.org;
-AIDECOE_DISTFILES="https://dev.gentoo.org/~aidecoe/distfiles;
-SRC_URI="mirror://kernel/linux/utils/boot/${PN}/${P}.tar.bz2
-   
${AIDECOE_DISTFILES}/${CATEGORY}/${PN}/${PV}-0010-module-setup.sh-add-comments.patch.bz2"
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-
-REQUIRED_USE="
-   dracut_modules_bootchart? ( !dracut_modules_systemd )
-   dracut_modules_crypt-gpg? ( dracut_modules_crypt )
-   dracut_modules_crypt-loop? ( dracut_modules_crypt )
-   dracut_modules_livenet? ( dracut_modules_dmsquash-live )
-   "
-COMMON_MODULES="
-   dracut_modules_biosdevname
-   dracut_modules_bootchart
-   dracut_modules_btrfs
-   dracut_modules_caps
-   dracut_modules_crypt-gpg
-   dracut_modules_crypt-loop
-   dracut_modules_dash
-   dracut_modules_gensplash
-   dracut_modules_mdraid
-   dracut_modules_multipath
-   dracut_modules_plymouth
-   dracut_modules_syslog
-   dracut_modules_systemd
-   "
-DM_MODULES="
-   dracut_modules_crypt
-   dracut_modules_dmraid
-   dracut_modules_dmsquash-live
-   dracut_modules_livenet
-   dracut_modules_lvm
-   "
-NETWORK_MODULES="
-   dracut_modules_cifs
-   dracut_modules_iscsi
-   dracut_modules_livenet
-   dracut_modules_nbd
-   dracut_modules_nfs
-   dracut_modules_ssh-client
-   "
-add_req_use_for device-mapper ${DM_MODULES}
-add_req_use_for net ${NETWORK_MODULES}
-IUSE_DRACUT_MODULES="${COMMON_MODULES} ${DM_MODULES} ${NETWORK_MODULES}"
-IUSE="debug device-mapper net selinux ${IUSE_DRACUT_MODULES}"
-

[gentoo-commits] repo/gentoo:master commit in: profiles/base/, profiles/arch/sparc/, profiles/arch/arm/, profiles/desc/, ...

2016-11-16 Thread Mike Gilbert
commit: 7b8470560359e6fc6c9ab966811a3afabc9c868f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:02:34 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Thu Nov 17 00:24:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b847056

profiles: remove DRACUT_MODULES USE_EXPAND

This is no longer utilized by any version of dracut still in the repo.

 profiles/arch/alpha/package.use.mask   |  3 ---
 profiles/arch/amd64/package.use.mask   |  4 
 profiles/arch/arm/package.use.mask |  4 
 profiles/arch/arm64/package.use.mask   |  4 
 profiles/arch/ia64/package.use.mask|  3 ---
 profiles/arch/nios2/package.use.mask   |  4 
 profiles/arch/powerpc/package.use.mask |  3 ---
 profiles/arch/sparc/package.use.mask   |  3 ---
 profiles/arch/x86/package.use.mask |  4 
 profiles/base/make.defaults|  2 +-
 profiles/base/package.use.mask |  5 -
 profiles/desc/dracut_modules.desc  | 29 -
 profiles/embedded/make.defaults|  2 +-
 profiles/features/selinux/package.use.mask |  1 -
 14 files changed, 2 insertions(+), 69 deletions(-)

diff --git a/profiles/arch/alpha/package.use.mask 
b/profiles/arch/alpha/package.use.mask
index 6ccfdda..89cd486 100644
--- a/profiles/arch/alpha/package.use.mask
+++ b/profiles/arch/alpha/package.use.mask
@@ -218,9 +218,6 @@ media-video/mpv doc-pdf
 # Missing keywords, bug #495250
 >=gnome-base/gnome-extra-apps-3.10 tracker
 
-# Pacho Ramos  (11 Jan 2014)
-sys-kernel/dracut -dracut_modules_systemd
-
 # Pacho Ramos  (02 Dec 2013)
 # Missing keywords, bug #493156
 media-libs/libgphoto2 serial

diff --git a/profiles/arch/amd64/package.use.mask 
b/profiles/arch/amd64/package.use.mask
index 437aa98..4abd5f5 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -151,10 +151,6 @@ sci-libs/cholmod -cuda
 sci-libs/flann -cuda
 
 # Alexandre Rostovtsev  (30 Dec 2012)
-# sys-apps/biosdevname, systemd work on this arch (masked in base)
-sys-kernel/dracut -dracut_modules_biosdevname -dracut_modules_systemd
-
-# Alexandre Rostovtsev  (30 Dec 2012)
 # chromium, mono work on this arch (masked in base)
 gnome-extra/zeitgeist-datasources -chromium -tomboy
 

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index dff0319..10c4b89 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -397,10 +397,6 @@ x11-misc/colord argyllcms extra-print-profiles
 gnome-extra/sushi office
 
 # Alexandre Rostovtsev  (30 Dec 2012)
-# sys-apps/systemd works on this arch (masked in base)
-sys-kernel/dracut -dracut_modules_systemd
-
-# Alexandre Rostovtsev  (30 Dec 2012)
 # requires dev-util/bustle, which is written in haskell
 # remove mask if/when dev-lang/ghc is keywoded for arm
 dev-util/dbus-test-runner test

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 4a5f83b..f6ff3fb 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -136,10 +136,6 @@ x11-misc/colord extra-print-profiles
 gnome-extra/sushi office
 
 # Alexandre Rostovtsev  (30 Dec 2012)
-# sys-apps/systemd works on this arch (masked in base)
-sys-kernel/dracut -dracut_modules_systemd
-
-# Alexandre Rostovtsev  (30 Dec 2012)
 # requires dev-util/bustle, which is written in haskell
 # remove mask if/when dev-lang/ghc is keywoded for arm
 dev-util/dbus-test-runner test

diff --git a/profiles/arch/ia64/package.use.mask 
b/profiles/arch/ia64/package.use.mask
index 4c92625..f3891cc 100644
--- a/profiles/arch/ia64/package.use.mask
+++ b/profiles/arch/ia64/package.use.mask
@@ -186,9 +186,6 @@ dev-util/dbus-test-runner test
 # Missing keywords, bug #478254
 gnome-base/gnome classic extras
 
-# Pacho Ramos  (11 Jan 2014)
-sys-kernel/dracut -dracut_modules_systemd
-
 # Julian Ospald  (04 Jan 2014)
 # no keyword for media-libs/tremor
 >=dev-libs/DirectFB-1.7.1 tremor

diff --git a/profiles/arch/nios2/package.use.mask 
b/profiles/arch/nios2/package.use.mask
index d7db09f..6dac8c2 100644
--- a/profiles/arch/nios2/package.use.mask
+++ b/profiles/arch/nios2/package.use.mask
@@ -124,10 +124,6 @@ x11-misc/colord extra-print-profiles
 gnome-extra/sushi office
 
 # Alexandre Rostovtsev  (30 Dec 2012)
-# sys-apps/systemd works on this arch (masked in base)
-sys-kernel/dracut -dracut_modules_systemd
-
-# Alexandre Rostovtsev  (30 Dec 2012)
 # requires dev-util/bustle, which is written in haskell
 # remove mask if/when dev-lang/ghc is keywoded for arm
 dev-util/dbus-test-runner test

diff --git a/profiles/arch/powerpc/package.use.mask 

[gentoo-commits] repo/gentoo:master commit in: games-engines/openxcom/

2016-11-16 Thread Austin English
commit: a17b08abddfe18d225111b776308718f8f08812b
Author: Austin English  gentoo  org>
AuthorDate: Thu Nov 17 00:06:01 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Thu Nov 17 00:06:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17b08ab

games-engines/openxcom: remove deprecated games eclass

Also update to EAPI 6

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

Package-Manager: portage-2.3.2

 ...enxcom-.ebuild => openxcom-1.0.0-r1.ebuild} | 40 ++
 games-engines/openxcom/openxcom-.ebuild| 20 ---
 2 files changed, 17 insertions(+), 43 deletions(-)

diff --git a/games-engines/openxcom/openxcom-.ebuild 
b/games-engines/openxcom/openxcom-1.0.0-r1.ebuild
similarity index 60%
copy from games-engines/openxcom/openxcom-.ebuild
copy to games-engines/openxcom/openxcom-1.0.0-r1.ebuild
index b29d5df..65ea890 100644
--- a/games-engines/openxcom/openxcom-.ebuild
+++ b/games-engines/openxcom/openxcom-1.0.0-r1.ebuild
@@ -2,16 +2,16 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-inherit eutils cmake-utils gnome2-utils git-r3 games
+EAPI=6
+inherit eutils cmake-utils gnome2-utils
 
 DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
 HOMEPAGE="http://openxcom.org/;
-EGIT_REPO_URI="https://github.com/SupSuper/OpenXcom.git;
+SRC_URI="https://github.com/SupSuper/OpenXcom/archive/v1.0.tar.gz -> 
${P}.tar.gz"
 
-LICENSE="GPL-3+ CC-BY-SA-4.0"
+LICENSE="GPL-3 CC-BY-SA-4.0"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE="doc"
 
 RDEPEND=">=dev-cpp/yaml-cpp-0.5.1
@@ -22,20 +22,11 @@ RDEPEND=">=dev-cpp/yaml-cpp-0.5.1
 DEPEND="${RDEPEND}
doc? ( app-doc/doxygen )"
 
-src_unpack() {
-   git-r3_src_unpack
-}
+DOCS=( README.txt )
 
-src_prepare() {
-   cmake-utils_src_prepare
-   sed -i -e '/\/res\//d' CMakeLists.txt || die
-}
+S=${WORKDIR}/OpenXcom-1.0
 
 src_configure() {
-   mycmakeargs=(
-   "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
-   "-DCMAKE_INSTALL_DATADIR=${GAMES_DATADIR}"
-   )
cmake-utils_src_configure
 }
 
@@ -45,15 +36,12 @@ src_compile() {
 }
 
 src_install() {
-   DOCS="README.md" \
-   cmake-utils_src_install
-   use doc && dohtml -r "${CMAKE_BUILD_DIR}"/docs/html/*
+   cmake-utils_src_install
+   use doc && dodoc -r "${CMAKE_BUILD_DIR}"/docs/html/*
doicon -s scalable res/linux/icons/openxcom.svg
newicon -s 48 res/linux/icons/openxcom_48x48.png openxcom.png
newicon -s 128 res/linux/icons/openxcom_128x128.png openxcom.png
domenu res/linux/openxcom.desktop
-
-   prepgamesdirs
 }
 
 pkg_preinst() {
@@ -62,21 +50,15 @@ pkg_preinst() {
 }
 
 pkg_postinst() {
-   games_pkg_postinst
gnome2_icon_cache_update
echo
elog "In order to play you need copy GEODATA, GEOGRAPH, MAPS, ROUTES, 
SOUND,"
elog "TERRAIN, UFOGRAPH, UFOINTRO, UNITS folders from original X-COM 
game to"
-   elog "${GAMES_DATADIR}/${PN}/UFO"
-   echo
-   elog "If you want to play the TFTD mod, you need to copy ANIMS, 
FLOP_INT,"
-   elog "GEODATA, GEOGRAPH, MAPS, ROUTES, SOUND, TERRAIN, UFOGRAPH, UNITS 
folders"
-   elog "from the original Terror from the Deep game to"
-   elog "${GAMES_DATADIR}/${PN}/TFTD"
+   elog "/usr/share/${PN}/data"
echo
elog "If you need or want text in some language other than english, 
download:"
elog "http://openxcom.org/translations/latest.zip and uncompress it in"
-   elog "${GAMES_DATADIR}/${PN}/common/Language"
+   elog "/usr/share/${PN}/data/Language"
 }
 
 pkg_postrm() {

diff --git a/games-engines/openxcom/openxcom-.ebuild 
b/games-engines/openxcom/openxcom-.ebuild
index b29d5df..c8d680c 100644
--- a/games-engines/openxcom/openxcom-.ebuild
+++ b/games-engines/openxcom/openxcom-.ebuild
@@ -2,8 +2,8 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI=5
-inherit eutils cmake-utils gnome2-utils git-r3 games
+EAPI=6
+inherit eutils cmake-utils gnome2-utils git-r3
 
 DESCRIPTION="An open-source reimplementation of the popular UFO: Enemy Unknown"
 HOMEPAGE="http://openxcom.org/;
@@ -32,10 +32,6 @@ src_prepare() {
 }
 
 src_configure() {
-   mycmakeargs=(
-   "-DCMAKE_INSTALL_PREFIX=${GAMES_PREFIX}"
-   "-DCMAKE_INSTALL_DATADIR=${GAMES_DATADIR}"
-   )
cmake-utils_src_configure
 }
 
@@ -47,36 +43,32 @@ src_compile() {
 src_install() {
DOCS="README.md" \
cmake-utils_src_install
-   use doc && dohtml -r "${CMAKE_BUILD_DIR}"/docs/html/*
+   use doc && dodoc -r "${CMAKE_BUILD_DIR}"/docs/html/*
doicon -s scalable res/linux/icons/openxcom.svg
newicon -s 48 res/linux/icons/openxcom_48x48.png openxcom.png
newicon -s 128 res/linux/icons/openxcom_128x128.png openxcom.png
domenu 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Human-Duration/

2016-11-16 Thread Göktürk Yüksek
commit: eb42e92fadce70395448c95e4ca64e5bd0a3adde
Author: Christian Affolter  purplehaze  ch>
AuthorDate: Tue Oct 18 23:14:11 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Nov 16 23:49:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb42e92f

dev-perl/DateTime-Format-Human-Duration: Initial ebuild

Required dependency for >=www-apps/webdavcgi-0.8.5

 .../DateTime-Format-Human-Duration-0.640.0.ebuild  | 21 +
 dev-perl/DateTime-Format-Human-Duration/Manifest   |  1 +
 .../DateTime-Format-Human-Duration/metadata.xml| 22 ++
 3 files changed, 44 insertions(+)

diff --git 
a/dev-perl/DateTime-Format-Human-Duration/DateTime-Format-Human-Duration-0.640.0.ebuild
 
b/dev-perl/DateTime-Format-Human-Duration/DateTime-Format-Human-Duration-0.640.0.ebuild
new file mode 100644
index ..b2a50c9
--- /dev/null
+++ 
b/dev-perl/DateTime-Format-Human-Duration/DateTime-Format-Human-Duration-0.640.0.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR=MSTRAT
+DIST_VERSION=0.64
+inherit perl-module
+
+DESCRIPTION="Get a locale specific string describing the span of a given 
duration"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND=""
+DEPEND="dev-perl/Module-Build
+   ${RDEPEND}"
+
+DIST_TEST="do"

diff --git a/dev-perl/DateTime-Format-Human-Duration/Manifest 
b/dev-perl/DateTime-Format-Human-Duration/Manifest
new file mode 100644
index ..d55adbd
--- /dev/null
+++ b/dev-perl/DateTime-Format-Human-Duration/Manifest
@@ -0,0 +1 @@
+DIST DateTime-Format-Human-Duration-0.64.tar.gz 17683 SHA256 
9d384cf926051bd6eb511cd9069b296bf33fd3fa699eceae44d56f49e939a076 SHA512 
2ae94d56e1176adcdb55b2f1291a04e15c50c0116477be18b49f9b95bd3ac0778c0bc280df323df213e3fcd8be25f8d91227be1841ce68b4cfa86be479d34376
 WHIRLPOOL 
0b1fd8aaf9fda7f37acd02cc49c46b83a61e44d926e43a2e7d59b2d47f63b4f865f5dfe649d49b1afddd34bd9c252a94f6b15360bbd6821dc26ad04a40a952b8

diff --git a/dev-perl/DateTime-Format-Human-Duration/metadata.xml 
b/dev-perl/DateTime-Format-Human-Duration/metadata.xml
new file mode 100644
index ..913420a
--- /dev/null
+++ b/dev-perl/DateTime-Format-Human-Duration/metadata.xml
@@ -0,0 +1,22 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   c.affol...@stepping-stone.ch
+   Christian Affolter
+   
+   
+   dev-z...@gentoo.org
+   Tiziano Müller
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
+   Get a locale specific string describing the span of a 
given
+   duration.
+  
+DateTime-Format-Human-Duration
+DateTime::Format::Human::Duration
+  
+



[gentoo-commits] repo/gentoo:master commit in: www-apps/webdavcgi/, www-apps/webdavcgi/files/

2016-11-16 Thread Göktürk Yüksek
commit: 4c4dd65a7b97bab2fd4fffe39f33f637652d1711
Author: Christian Affolter  stepping-stone  ch>
AuthorDate: Sun Oct 23 11:25:41 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Wed Nov 16 23:49:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4dd65a

www-apps/webdavcgi: Version bump to 1.1.1

Added new upstream 1.1.1 WebDAV CGI release with the following changes:
* Switched to EAPI 6
* Updated dependencies
* Moved temporary directories from /var/cache to /var/tmp (to make QA happy)
* Pre-create trash and optimizer directory
* Added updated Apache HTTP configuration snipped for version 2.4
* Added updated wedav 1.1 configuration
* Added note for systemd users

Gentoo-Bug: 595060

 www-apps/webdavcgi/Manifest|   1 +
 .../files/apache-webdavcgi-1.1-example.conf|  63 +++
 www-apps/webdavcgi/files/webdav-1.1.conf   | 125 ++
 www-apps/webdavcgi/webdavcgi-1.1.1.ebuild  | 185 +
 4 files changed, 374 insertions(+)

diff --git a/www-apps/webdavcgi/Manifest b/www-apps/webdavcgi/Manifest
index a60eeb1..125ed73 100644
--- a/www-apps/webdavcgi/Manifest
+++ b/www-apps/webdavcgi/Manifest
@@ -1,2 +1,3 @@
 DIST webdavcgi-0.8.3.tar.bz2 1190975 SHA256 
d8ca7feb1f25f6acce67a5ea769a089edd404660c85633dfbd6303696f1cd294 SHA512 
f50e6bb1e78a88ab6bc6452c04f2e5d0cec86f6641d1813556ae3b06c33e2c9250e623926bf1a71ea10f6ca3912e708cb54cd0956b344329de1499887e48e784
 WHIRLPOOL 
e05d0b2e5d6905d3c86e807c1f6b7544c1fa9629f310496648088c2a1a5bb491e507e492b80fa4beb6ab43f9f1d1bbfd095d1b670e3ca88e89b3605f5d790743
 DIST webdavcgi-0.8.4.tar.bz2 1195935 SHA256 
d04438a515a770502117b4219ebb5406ed1ab949420802d0ce623fe3f61038ef SHA512 
17d9dcfe68012820bf809bc3bd54a881fc9e66a9ddfd87d9381ec0cb08abe3f81638afba4d28ab3079ed56cf1e263b4a764b8348691f17a06743bb1ddf3a2a4e
 WHIRLPOOL 
86d65aad94cd6461f72c39d39f1beb0c24b049a50072ef3b4e16629b388ec562136ee0cb2f93674eaf9342feac077540e98f78b22ad186cf4592cf8d53cbc530
+DIST webdavcgi-1.1.1.tar.bz2 11623234 SHA256 
0806ac2c80ad1aba9e8bf9a562ee7884601ece7a59728a91dd83ca542255f0b8 SHA512 
660b3e54d72c5b96c1fb329d8e0838b1dbf68e1671af3880f7e096bfdfe559909cf3e1e3069fe4877e0ffbd67d24dc4a38c3db8baaae6d62db05bde31cea789f
 WHIRLPOOL 
952a98c2a15db429ecc3f01f526212d8f4940149ce8585bfb2aa43c0378a8036700c46cd3e1d43a1af9763a665f49e8effbe5e9472a673b8a3e1acdd0ce4220d

diff --git a/www-apps/webdavcgi/files/apache-webdavcgi-1.1-example.conf 
b/www-apps/webdavcgi/files/apache-webdavcgi-1.1-example.conf
new file mode 100644
index ..4ee926f
--- /dev/null
+++ b/www-apps/webdavcgi/files/apache-webdavcgi-1.1-example.conf
@@ -0,0 +1,63 @@
+# Example Apache HTTP server configuration snippet for WebDAV CGI
+#
+# Add the following lines to the Apache HTTP virtual host which should run
+# WebDAV CGI.
+#
+# WebDAV CGI will be accessible via http://www.example.com/webdav/ and uses
+# basic HTTP authentication (by default). For this to work, you need to add all
+# valid users to the AuthUserFile with the help of the htpasswd command:
+#
+# htpasswd -c /etc/webdavcgi-1.1/default/users.htpasswd user1
+# htpasswd /etc/webdavcgi-1.1/default/users.htpasswd user2
+#
+# Note, that if you have the UID/GID wrapper enabled (USE=suid), WebDAV CGI 
will
+# switch to the login user after a successful login, thus the users within the
+# AuthType need to be present on the system as well.
+#
+# You probably want to review and change the following settings:
+# - /webdavcgi should point to your desired webdavwrapper, which is either
+#   webdavwrapper, webdavwrapper-afs, webdavwrapper-krb or in case you disabled
+#   the UID/GID wrapper (USE=-suid), webdav.pl
+#
+# - The /webdav location
+#   If you change this location, make sure to reflect the new path within the
+#   WebDAV CGI configuration (WEBDAVCONF -> $VIRTUAL_BASE) as well.
+#
+# - The authentication provider and/or AuthUserFile
+#
+# - The HOMEURL environment variable. After a user logs out, the browser will
+#   be redirected to this URL.
+#
+# - The WEBDAVCONF environment variable has to point to your configuration
+#
+# For further informations and other configuration possibilities consult the
+# WebDAV CGI documentation which is located at http://webdavcgi.sourceforge.net
+# and the Apache HTTP server documentation at https://httpd.apache.org/docs/
+#
+ScriptAlias /webdavcgi "/usr/libexec/webdavcgi-1.1/cgi-bin/webdavwrapper"
+ScriptAlias /webdav/logout "/usr/libexec/webdavcgi-1.1/cgi-bin/logout"
+
+
+Require all granted
+# Disable the line above and enable the two lines below
+# if you're still on Apache 2.2
+#Order Allow,Deny
+#Allow from all
+
+
+
+AuthType Basic
+AuthName "WebDAV-CGI"
+AuthUserFile /etc/webdavcgi-1.1/default/users.htpasswd
+Require valid-user
+# Also enable the following two lines if you're still on Apache 2.2
+#Order Allow,Deny
+

[gentoo-commits] repo/gentoo:master commit in: app-crypt/mit-krb5/, app-crypt/mit-krb5/files/

2016-11-16 Thread Mike Frysinger
commit: e506143656e90f7f705f9727d128d176e1700b2a
Author: Zentaro Kavanagh  google  com>
AuthorDate: Wed Nov 16 23:21:13 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Nov 16 23:21:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5061436

app-crypt/mit-krb5: fix clang build due to ttyname redecl

 .../files/mit-krb5-1.14.2-redeclared-ttyname.patch | 26 ++
 app-crypt/mit-krb5/mit-krb5-1.14.2.ebuild  |  1 +
 app-crypt/mit-krb5/mit-krb5-1.14.3.ebuild  |  1 +
 app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild  |  1 +
 4 files changed, 29 insertions(+)

diff --git a/app-crypt/mit-krb5/files/mit-krb5-1.14.2-redeclared-ttyname.patch 
b/app-crypt/mit-krb5/files/mit-krb5-1.14.2-redeclared-ttyname.patch
new file mode 100644
index ..a76cd3a
--- /dev/null
+++ b/app-crypt/mit-krb5/files/mit-krb5-1.14.2-redeclared-ttyname.patch
@@ -0,0 +1,26 @@
+Fixes the redeclaration of ttyname which was preventing
+enabling clang fortify.
+
+The error was;
+
+main.c:858:15: error: redeclaration of 'ttyname' must have the 'overloadable' 
attribute
+char *p, *ttyname();
+  ^
+/build/samus/usr/include/unistd.h:784:14: note: previous overload of function 
is here
+extern char *ttyname (int __fd) __THROW __CLANG_NO_MANGLE (ttyname);
+
+https://github.com/krb5/krb5/pull/568
+
+Patch by Zentaro Kavanagh 
+
+--- clients/ksu/main.c
 clients/ksu/main.c
+@@ -855,7 +855,7 @@
+ 
+ static char * ontty()
+ {
+-char *p, *ttyname();
++char *p;
+ static char buf[MAXPATHLEN + 5];
+ int result;
+ 

diff --git a/app-crypt/mit-krb5/mit-krb5-1.14.2.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.14.2.ebuild
index 60d7a5b..8a3c7c3 100644
--- a/app-crypt/mit-krb5/mit-krb5-1.14.2.ebuild
+++ b/app-crypt/mit-krb5/mit-krb5-1.14.2.ebuild
@@ -58,6 +58,7 @@ MULTILIB_CHOST_TOOLS=(
 src_prepare() {
epatch "${FILESDIR}/${PN}-1.12_warn_cflags.patch"
epatch "${FILESDIR}/${PN}-config_LDFLAGS.patch"
+   epatch "${FILESDIR}/${PN}-1.14.2-redeclared-ttyname.patch"
 
eautoreconf
 }

diff --git a/app-crypt/mit-krb5/mit-krb5-1.14.3.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.14.3.ebuild
index 4a050dd..0a8a335 100644
--- a/app-crypt/mit-krb5/mit-krb5-1.14.3.ebuild
+++ b/app-crypt/mit-krb5/mit-krb5-1.14.3.ebuild
@@ -58,6 +58,7 @@ MULTILIB_CHOST_TOOLS=(
 src_prepare() {
epatch "${FILESDIR}/${PN}-1.12_warn_cflags.patch"
epatch "${FILESDIR}/${PN}-config_LDFLAGS.patch"
+   epatch "${FILESDIR}/${PN}-1.14.2-redeclared-ttyname.patch"
 
eautoreconf
 }

diff --git a/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild
index 9e30788..0eff67b 100644
--- a/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild
+++ b/app-crypt/mit-krb5/mit-krb5-1.14.4.ebuild
@@ -58,6 +58,7 @@ MULTILIB_CHOST_TOOLS=(
 src_prepare() {
epatch "${FILESDIR}/${PN}-1.12_warn_cflags.patch"
epatch "${FILESDIR}/${PN}-config_LDFLAGS.patch"
+   epatch "${FILESDIR}/${PN}-1.14.2-redeclared-ttyname.patch"
 
# Make sure we always use the system copies.
rm -rf util/{et,ss,verto}



[gentoo-commits] repo/gentoo:master commit in: app-crypt/rhash/files/, app-crypt/rhash/

2016-11-16 Thread James Le Cuirot
commit: 253b1d93e3d85af187f126ab1e74b0c2dd90bf48
Author: James Le Cuirot  gentoo  org>
AuthorDate: Wed Nov 16 22:41:18 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Wed Nov 16 22:48:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=253b1d93

app-crypt/rhash: Version bump to 1.3.4

Upstream merged my patch. Always make build-shared as its cheap and
needed for the tests.

Package-Manager: portage-2.3.2

 app-crypt/rhash/Manifest   |  2 +-
 app-crypt/rhash/files/librhash-symlink.patch   | 38 --
 .../{rhash-1.3.3-r2.ebuild => rhash-1.3.4.ebuild}  |  9 ++---
 3 files changed, 3 insertions(+), 46 deletions(-)

diff --git a/app-crypt/rhash/Manifest b/app-crypt/rhash/Manifest
index a29fefa..13d53c9 100644
--- a/app-crypt/rhash/Manifest
+++ b/app-crypt/rhash/Manifest
@@ -1 +1 @@
-DIST rhash-1.3.3-src.tar.gz 248855 SHA256 
5b520b597bd83f933d316fce1382bb90e0b0b87b559b8c9c9a197551c935315a SHA512 
0ac1699a0e5718b750610cd6189d9d582186d7e17191e3723a994559c8f9c6ea7e0d34825da0c96fd0fc6be3e14b5f44ce7a21d17156cdfce3f0e3e4ff09389e
 WHIRLPOOL 
d2b17c8fd0a121e6d7e853c22bfce0545235e272c48893f13a28a5d424b26bc0cb18a5aa7eb51e07428b677116f4fdae89859a4d4e3e7cdefb4dea62337b558e
+DIST rhash-1.3.4-src.tar.gz 249357 SHA256 
406662c4703bd4cb1caae26f32700951a5e12adf39f141d3f40e0b461b1e9e49 SHA512 
a78be309011798d5e55023eb93f898c10254a42270288fa5ec68ad446b5f3d001e8c6f893683e5171e3858c86d45ce2ce16eefde1173209e1925420c27a7ff7a
 WHIRLPOOL 
5883dcbf0c2bf51036434d1906b85b615eae65ef2729a68d7ac637e2bea3c494cd3ee7fa9a60d3c4f3241bc4fd5c62c8f7e058c0e53649d50dade241e06dda2e

diff --git a/app-crypt/rhash/files/librhash-symlink.patch 
b/app-crypt/rhash/files/librhash-symlink.patch
deleted file mode 100644
index faba2fb..
--- a/app-crypt/rhash/files/librhash-symlink.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 30c5897a7533b746388f44f3999ad2e23c529364 Mon Sep 17 00:00:00 2001
-From: James Le Cuirot 
-Date: Fri, 16 Sep 2016 22:53:51 +0100
-Subject: [PATCH] Handle librhash.so symlink in shared Makefile rules, not
- static
-

- librhash/Makefile | 4 ++--
- 1 file changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/librhash/Makefile b/librhash/Makefile
-index a38073f..fc5e5c3 100644
 a/librhash/Makefile
-+++ b/librhash/Makefile
-@@ -46,18 +46,18 @@ dist-clean: clean
- install-lib-static: $(LIBRARY) install-headers
-   $(INSTALL) -d $(DESTDIR)$(LIBDIR)
-   $(INSTALL_DATA) $(LIBRARY) $(DESTDIR)$(LIBDIR)/
--  ln -s $(SONAME) $(DESTDIR)$(LIBDIR)/$(SOLINK)
- 
- install-lib-shared: $(SONAME)
-   $(INSTALL) -d $(DESTDIR)$(LIBDIR)
-   $(INSTALL_SHARED) $(SONAME) $(DESTDIR)$(LIBDIR)/
-+  ln -s $(SONAME) $(DESTDIR)$(LIBDIR)/$(SOLINK)
- 
- uninstall-lib-static: uninstall-headers
-   rm -f $(DESTDIR)$(LIBDIR)/$(LIBRARY)
--  rm -f $(DESTDIR)$(LIBDIR)/$(SOLINK)
- 
- uninstall-lib-shared:
-   rm -f $(DESTDIR)$(LIBDIR)/$(SONAME)
-+  rm -f $(DESTDIR)$(LIBDIR)/$(SOLINK)
- 
- install-headers:
-   $(INSTALL) -d $(DESTDIR)$(INCDIR)
--- 
-2.8.2
-

diff --git a/app-crypt/rhash/rhash-1.3.3-r2.ebuild 
b/app-crypt/rhash/rhash-1.3.4.ebuild
similarity index 88%
rename from app-crypt/rhash/rhash-1.3.3-r2.ebuild
rename to app-crypt/rhash/rhash-1.3.4.ebuild
index 578f581..cd33ea8 100644
--- a/app-crypt/rhash/rhash-1.3.3-r2.ebuild
+++ b/app-crypt/rhash/rhash-1.3.4.ebuild
@@ -20,10 +20,6 @@ RDEPEND="openssl? ( dev-libs/openssl:0=[${MULTILIB_USEDEP}] 
)"
 DEPEND="${RDEPEND}
nls? ( sys-devel/gettext )"
 
-PATCHES=(
-   "${FILESDIR}"/librhash-symlink.patch
-)
-
 src_prepare() {
default
 
@@ -46,8 +42,7 @@ multilib_src_compile() {
 
emake CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" CC="$(tc-getCC)" \
  ADDCFLAGS="${ADDCFLAGS[*]}" ADDLDFLAGS="${ADDLDFLAGS[*]}" \
- $(multilib_is_native_abi && echo build-shared || echo 
lib-shared) \
- $(use static-libs && echo lib-static)
+ build-shared $(use static-libs && echo lib-static)
 }
 
 myemake() {
@@ -55,7 +50,7 @@ myemake() {
 }
 
 multilib_src_install() {
-   myemake install-lib-shared
+   myemake -C librhash install-lib-shared install-so-link
multilib_is_native_abi && myemake install-shared
use static-libs && myemake install-lib-static
 }



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

2016-11-16 Thread Anthony G. Basile
commit: 7ff69ead5f44e461213fbe78abe8c3d82491ddb0
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Nov 16 22:21:30 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Nov 16 22:24:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff69ead

dev-util/elfkickers: version bump to 3.1

Package-Manager: portage-2.3.0

 dev-util/elfkickers/Manifest   |   1 +
 dev-util/elfkickers/elfkickers-3.1.ebuild  |  35 +++
 .../files/elfkickers-3.1-create-destdir-path.patch |  17 
 .../elfkickers-3.1-respect-CFLAGS-LDFLAGS.patch| 103 +
 4 files changed, 156 insertions(+)

diff --git a/dev-util/elfkickers/Manifest b/dev-util/elfkickers/Manifest
index 8e8bff7..c2e6deb 100644
--- a/dev-util/elfkickers/Manifest
+++ b/dev-util/elfkickers/Manifest
@@ -1,2 +1,3 @@
 DIST ELFkickers-3.0.tar.gz 99527 SHA256 
8597dc38ecb1a352f86c5075608547f2c4dcd50f4ba89de70c5494cf6611c6aa SHA512 
dab3076baa0bc62cdcadd885fa101df77e602ba32b67ad1635be1f981e817078944f682f3bffaba1c8b0dc181036f7266ddbd82fe15a2e34ca5dadf1aa9974ed
 WHIRLPOOL 
d5d4a98169ad397df695a7f7861a95b44ca7c48d454968788965098077e04a58c953d984dfa6dbb7963c1cd52cec2965f4faf6a7ca08e1adde1e9d8915dabd62
 DIST ELFkickers-3.0a.tar.gz 100112 SHA256 
c3429957142169c21ff550e0c06bbb0d48bb76437c4ccbc67164bf56b6e9774f SHA512 
c90a763e5b60069f9cb67fd5c114da753184ff466c3db1dd9a44e86de9408a4384a3ac00a8c67191ca9a6556fd0db11058542361e987710f9b5bedabaec2717c
 WHIRLPOOL 
9ed47c5c64c79dca6bce891beb430502b33481b3bc14f19f46e26157b6772ca5d1e6bc00907337dd3dc07d163b6a0cc246fef7e4afd36a85547e210b7b4bd2ea
+DIST ELFkickers-3.1.tar.gz 101406 SHA256 
6d663fb06dd723a078282937052368498e3860d3c42f0d765579d496e5f51a58 SHA512 
a0b1ba6cdb23b12f41b81cac1960b15cc2a4418cef48923900b668fa5132ce428bab16b1780698864fdf0c374762d57f471fc124d231f8de143be172c757000b
 WHIRLPOOL 
550df625744d0de9170623ae6aa849840309369085be65d7784b81147826109f8c2997d65cdc20359f728b468a94b212bc5c89d6236a0cb05c9f98fa8e3fec9d

diff --git a/dev-util/elfkickers/elfkickers-3.1.ebuild 
b/dev-util/elfkickers/elfkickers-3.1.ebuild
new file mode 100644
index ..dbeb2f2
--- /dev/null
+++ b/dev-util/elfkickers/elfkickers-3.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit eutils toolchain-funcs
+
+MY_PN=${PN/elf/ELF}-${PV}
+S=${WORKDIR}/${MY_PN}
+
+DESCRIPTION="collection of programs to manipulate ELF files: sstrip, rebind, 
elfls, elftoc"
+HOMEPAGE="http://www.muppetlabs.com/~breadbox/software/elfkickers.html;
+SRC_URI="http://www.muppetlabs.com/~breadbox/pub/software/${MY_PN}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~sparc ~x86 ~x86-fbsd"
+IUSE="doc"
+
+DEPEND="app-misc/pax-utils"
+RDEPEND=""
+
+src_prepare() {
+   epatch "${FILESDIR}"/${P}-respect-CFLAGS-LDFLAGS.patch
+   epatch "${FILESDIR}"/${P}-create-destdir-path.patch
+   epatch "${FILESDIR}"/add-freebsd-elf-defs.patch
+   sed -i -e "s:^prefix = /usr/local:prefix = ${D}:" Makefile \
+   || die "sed failed"
+   eapply_user
+}
+
+src_compile() {
+   emake CC=$(tc-getCC) all
+}

diff --git a/dev-util/elfkickers/files/elfkickers-3.1-create-destdir-path.patch 
b/dev-util/elfkickers/files/elfkickers-3.1-create-destdir-path.patch
new file mode 100644
index ..1f0c3e9
--- /dev/null
+++ b/dev-util/elfkickers/files/elfkickers-3.1-create-destdir-path.patch
@@ -0,0 +1,17 @@
+diff -Naur ELFkickers-3.1.orig/Makefile ELFkickers-3.1/Makefile
+--- ELFkickers-3.1.orig/Makefile   2015-07-23 13:25:30.0 -0400
 ELFkickers-3.1/Makefile2016-11-16 17:17:08.237039268 -0500
+@@ -24,10 +24,9 @@
+ infect: bin/infect doc/infect.1
+ 
+ install: $(PROGRAMS)
+-  mkdir -p $(prefix)/bin
+-  cp bin/* $(prefix)/bin/.
+-  mkdir -p $(prefix)/share/man/man1
+-  cp doc/* $(prefix)/share/man/man1/.
++  install -d $(prefix)/usr/bin $(prefix)/usr/share/man/man1
++  install bin/* $(prefix)/usr/bin
++  install -m 644 doc/* $(prefix)/usr/share/man/man1
+ 
+ clean:
+   for dir in elfrw $(PROGRAMS) ; do $(MAKE) -C$$dir clean ; done

diff --git 
a/dev-util/elfkickers/files/elfkickers-3.1-respect-CFLAGS-LDFLAGS.patch 
b/dev-util/elfkickers/files/elfkickers-3.1-respect-CFLAGS-LDFLAGS.patch
new file mode 100644
index ..b285f3b
--- /dev/null
+++ b/dev-util/elfkickers/files/elfkickers-3.1-respect-CFLAGS-LDFLAGS.patch
@@ -0,0 +1,103 @@
+diff -Naur ELFkickers-3.1.orig/ebfc/Makefile ELFkickers-3.1/ebfc/Makefile
+--- ELFkickers-3.1.orig/ebfc/Makefile  2014-11-17 14:50:34.0 -0500
 ELFkickers-3.1/ebfc/Makefile   2016-11-16 17:13:53.297033908 -0500
+@@ -1,7 +1,7 @@
+ #  Makefile for ebfc
+ 
+-CC = gcc
+-CFLAGS = -Wall -Wextra -Wno-missing-field-initializers
++CC ?= gcc
++CFLAGS += -Wno-missing-field-initializers
+ 
+ ebfc: ebfc.o brainfuck.o libelfparts.a
+ 
+diff -Naur 

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

2016-11-16 Thread Anthony G. Basile
commit: 80db8c1e02ac44f472fe4fba0917c27a08fa7549
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Wed Nov 16 22:24:20 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Wed Nov 16 22:24:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80db8c1e

dev-util/elfkickers: remove older versions

Package-Manager: portage-2.3.0

 dev-util/elfkickers/Manifest |  1 -
 dev-util/elfkickers/elfkickers-3.0-r1.ebuild | 33 ---
 dev-util/elfkickers/elfkickers-3.0-r2.ebuild | 34 
 3 files changed, 68 deletions(-)

diff --git a/dev-util/elfkickers/Manifest b/dev-util/elfkickers/Manifest
index c2e6deb..b06ea68 100644
--- a/dev-util/elfkickers/Manifest
+++ b/dev-util/elfkickers/Manifest
@@ -1,3 +1,2 @@
-DIST ELFkickers-3.0.tar.gz 99527 SHA256 
8597dc38ecb1a352f86c5075608547f2c4dcd50f4ba89de70c5494cf6611c6aa SHA512 
dab3076baa0bc62cdcadd885fa101df77e602ba32b67ad1635be1f981e817078944f682f3bffaba1c8b0dc181036f7266ddbd82fe15a2e34ca5dadf1aa9974ed
 WHIRLPOOL 
d5d4a98169ad397df695a7f7861a95b44ca7c48d454968788965098077e04a58c953d984dfa6dbb7963c1cd52cec2965f4faf6a7ca08e1adde1e9d8915dabd62
 DIST ELFkickers-3.0a.tar.gz 100112 SHA256 
c3429957142169c21ff550e0c06bbb0d48bb76437c4ccbc67164bf56b6e9774f SHA512 
c90a763e5b60069f9cb67fd5c114da753184ff466c3db1dd9a44e86de9408a4384a3ac00a8c67191ca9a6556fd0db11058542361e987710f9b5bedabaec2717c
 WHIRLPOOL 
9ed47c5c64c79dca6bce891beb430502b33481b3bc14f19f46e26157b6772ca5d1e6bc00907337dd3dc07d163b6a0cc246fef7e4afd36a85547e210b7b4bd2ea
 DIST ELFkickers-3.1.tar.gz 101406 SHA256 
6d663fb06dd723a078282937052368498e3860d3c42f0d765579d496e5f51a58 SHA512 
a0b1ba6cdb23b12f41b81cac1960b15cc2a4418cef48923900b668fa5132ce428bab16b1780698864fdf0c374762d57f471fc124d231f8de143be172c757000b
 WHIRLPOOL 
550df625744d0de9170623ae6aa849840309369085be65d7784b81147826109f8c2997d65cdc20359f728b468a94b212bc5c89d6236a0cb05c9f98fa8e3fec9d

diff --git a/dev-util/elfkickers/elfkickers-3.0-r1.ebuild 
b/dev-util/elfkickers/elfkickers-3.0-r1.ebuild
deleted file mode 100644
index 964a2f1..
--- a/dev-util/elfkickers/elfkickers-3.0-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit eutils toolchain-funcs
-
-MY_PN=${PN/elf/ELF}-${PV}
-S=${WORKDIR}/${MY_PN}
-
-DESCRIPTION="collection of programs to manipulate ELF files: sstrip, rebind, 
elfls, elftoc"
-HOMEPAGE="http://www.muppetlabs.com/~breadbox/software/elfkickers.html;
-SRC_URI="http://www.muppetlabs.com/~breadbox/pub/software/${MY_PN}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~mips ~sparc x86"
-IUSE="doc"
-
-DEPEND="app-misc/pax-utils"
-RDEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}"/respect-CFLAGS-LDFLAGS.patch
-   epatch "${FILESDIR}"/create-destdir-path.patch
-   sed -i -e "s:^prefix = /usr/local:prefix = ${D}:" Makefile \
-   || die "sed failed"
-}
-
-src_compile() {
-   emake CC=$(tc-getCC) all
-}

diff --git a/dev-util/elfkickers/elfkickers-3.0-r2.ebuild 
b/dev-util/elfkickers/elfkickers-3.0-r2.ebuild
deleted file mode 100644
index c00344f..
--- a/dev-util/elfkickers/elfkickers-3.0-r2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-
-inherit eutils toolchain-funcs
-
-MY_PN=${PN/elf/ELF}-${PV}
-S=${WORKDIR}/${MY_PN}
-
-DESCRIPTION="collection of programs to manipulate ELF files: sstrip, rebind, 
elfls, elftoc"
-HOMEPAGE="http://www.muppetlabs.com/~breadbox/software/elfkickers.html;
-SRC_URI="http://www.muppetlabs.com/~breadbox/pub/software/${MY_PN}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
-IUSE="doc"
-
-DEPEND="app-misc/pax-utils"
-RDEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}"/respect-CFLAGS-LDFLAGS.patch
-   epatch "${FILESDIR}"/create-destdir-path.patch
-   epatch "${FILESDIR}"/add-freebsd-elf-defs.patch
-   sed -i -e "s:^prefix = /usr/local:prefix = ${D}:" Makefile \
-   || die "sed failed"
-}
-
-src_compile() {
-   emake CC=$(tc-getCC) all
-}



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

2016-11-16 Thread Mike Frysinger
commit: 8ec3e4da8a051ed983a770b719b10730038474bb
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Nov 16 22:19:27 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Nov 16 22:19:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ec3e4da

sys-apps/sandbox: fix crashes when the system is prelinked #599894

 .../sandbox/files/sandbox-2.11-exec-prelink.patch  | 107 +
 ...ndbox-2.11-r2.ebuild => sandbox-2.11-r3.ebuild} |   1 +
 2 files changed, 108 insertions(+)

diff --git a/sys-apps/sandbox/files/sandbox-2.11-exec-prelink.patch 
b/sys-apps/sandbox/files/sandbox-2.11-exec-prelink.patch
new file mode 100644
index ..067824f
--- /dev/null
+++ b/sys-apps/sandbox/files/sandbox-2.11-exec-prelink.patch
@@ -0,0 +1,107 @@
+From 5628d830548e91819953d2d14397170e219df7c6 Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Wed, 16 Nov 2016 15:59:28 -0500
+Subject: [PATCH] libsandbox: fix symtab walking with prelinked ELFs
+
+When prelink runs on an ELF, it moves the string table from right
+after the symbol table to the end, and then replaces the string
+table with its liblist table.  This ends up breaking sandbox's
+assumption that the string table always follows the symbol table
+leading to prelinked ELFs crashing.
+
+Update the range check to use the liblist table when available.
+Since the prelink code has this logic hardcoded (swapping the
+string table for the liblist table), this should be OK for now.
+
+URL: https://bugs.gentoo.org/599894
+Reported-by: Anders Larsson 
+Reported-by: Kenton Groombridge 
+Reported-by: Marien Zwart 
+Signed-off-by: Mike Frysinger 
+---
+ libsandbox/wrapper-funcs/__wrapper_exec.c | 39 ++-
+ 1 file changed, 28 insertions(+), 11 deletions(-)
+
+diff --git a/libsandbox/wrapper-funcs/__wrapper_exec.c 
b/libsandbox/wrapper-funcs/__wrapper_exec.c
+index d372366c5478..226c0c0f4407 100644
+--- a/libsandbox/wrapper-funcs/__wrapper_exec.c
 b/libsandbox/wrapper-funcs/__wrapper_exec.c
+@@ -83,8 +83,8 @@ static bool sb_check_exec(const char *filename, char *const 
argv[])
+ ({ \
+   Elf##n##_Ehdr *ehdr = (void *)elf; \
+   Elf##n##_Phdr *phdr = (void *)(elf + ehdr->e_phoff); \
+-  Elf##n##_Addr vaddr, filesz, vsym = 0, vstr = 0, vhash = 0; \
+-  Elf##n##_Off offset, symoff = 0, stroff = 0, hashoff = 0; \
++  Elf##n##_Addr vaddr, filesz, vsym = 0, vstr = 0, vhash = 0, vliblist = 
0; \
++  Elf##n##_Off offset, symoff = 0, stroff = 0, hashoff = 0, liblistoff = 
0; \
+   Elf##n##_Dyn *dyn; \
+   Elf##n##_Sym *sym, *symend; \
+   uint##n##_t ent_size = 0, str_size = 0; \
+@@ -102,11 +102,12 @@ static bool sb_check_exec(const char *filename, char 
*const argv[])
+   dyn = (void *)(elf + phdr[i].p_offset); \
+   while (dyn->d_tag != DT_NULL) { \
+   switch (dyn->d_tag) { \
+-  case DT_SYMTAB: vsym = dyn->d_un.d_val; break; \
+-  case DT_SYMENT: ent_size = dyn->d_un.d_val; 
break; \
+-  case DT_STRTAB: vstr = dyn->d_un.d_val; break; \
+-  case DT_STRSZ:  str_size = dyn->d_un.d_val; 
break; \
+-  case DT_HASH:   vhash = dyn->d_un.d_val; break; 
\
++  case DT_SYMTAB:  vsym = dyn->d_un.d_val; 
break; \
++  case DT_SYMENT:  ent_size = 
dyn->d_un.d_val; break; \
++  case DT_STRTAB:  vstr = dyn->d_un.d_val; 
break; \
++  case DT_STRSZ:   str_size = 
dyn->d_un.d_val; break; \
++  case DT_HASH:vhash = dyn->d_un.d_val; 
break; \
++  case DT_GNU_LIBLIST: vliblist = 
dyn->d_un.d_val; break; \
+   } \
+   ++dyn; \
+   } \
+@@ -126,6 +127,8 @@ static bool sb_check_exec(const char *filename, char 
*const argv[])
+   stroff = offset + (vstr - vaddr); \
+   if (vhash >= vaddr && vhash < vaddr + filesz) \
+   hashoff = offset + (vhash - vaddr); \
++  if (vliblist >= vaddr && vliblist < vaddr + filesz) \
++  liblistoff = offset + (vliblist - vaddr); \
+   } \
+   \
+   /* Finally walk the symbol table.  This should generally be 
fast as \
+@@ -133,19 +136,33 @@ static bool sb_check_exec(const char *filename, char 
*const argv[])
+* out there do not export any symbols at all. \
+*/ \
+   if (symoff && stroff) { \
+-  /* Hash entries are always 32-bits. */ \
+-

[gentoo-commits] proj/sandbox:master commit in: libsandbox/wrapper-funcs/

2016-11-16 Thread Mike Frysinger
commit: 3ff625739ab2660e7f0adeb99f75ee44c20fef09
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Nov 16 20:59:28 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Nov 16 20:59:28 2016 +
URL:https://gitweb.gentoo.org/proj/sandbox.git/commit/?id=3ff62573

libsandbox: fix symtab walking with prelinked ELFs

When prelink runs on an ELF, it moves the string table from right
after the symbol table to the end, and then replaces the string
table with its liblist table.  This ends up breaking sandbox's
assumption that the string table always follows the symbol table
leading to prelinked ELFs crashing.

Update the range check to use the liblist table when available.
Since the prelink code has this logic hardcoded (swapping the
string table for the liblist table), this should be OK for now.

URL: https://bugs.gentoo.org/599894
Reported-by: Anders Larsson  larsson.xyz>
Reported-by: Kenton Groombridge  comcast.net>
Reported-by: Marien Zwart  gmail.com>
Signed-off-by: Mike Frysinger  gentoo.org>

 libsandbox/wrapper-funcs/__wrapper_exec.c | 39 ++-
 1 file changed, 28 insertions(+), 11 deletions(-)

diff --git a/libsandbox/wrapper-funcs/__wrapper_exec.c 
b/libsandbox/wrapper-funcs/__wrapper_exec.c
index d372366..226c0c0 100644
--- a/libsandbox/wrapper-funcs/__wrapper_exec.c
+++ b/libsandbox/wrapper-funcs/__wrapper_exec.c
@@ -83,8 +83,8 @@ static bool sb_check_exec(const char *filename, char *const 
argv[])
 ({ \
Elf##n##_Ehdr *ehdr = (void *)elf; \
Elf##n##_Phdr *phdr = (void *)(elf + ehdr->e_phoff); \
-   Elf##n##_Addr vaddr, filesz, vsym = 0, vstr = 0, vhash = 0; \
-   Elf##n##_Off offset, symoff = 0, stroff = 0, hashoff = 0; \
+   Elf##n##_Addr vaddr, filesz, vsym = 0, vstr = 0, vhash = 0, vliblist = 
0; \
+   Elf##n##_Off offset, symoff = 0, stroff = 0, hashoff = 0, liblistoff = 
0; \
Elf##n##_Dyn *dyn; \
Elf##n##_Sym *sym, *symend; \
uint##n##_t ent_size = 0, str_size = 0; \
@@ -102,11 +102,12 @@ static bool sb_check_exec(const char *filename, char 
*const argv[])
dyn = (void *)(elf + phdr[i].p_offset); \
while (dyn->d_tag != DT_NULL) { \
switch (dyn->d_tag) { \
-   case DT_SYMTAB: vsym = dyn->d_un.d_val; break; \
-   case DT_SYMENT: ent_size = dyn->d_un.d_val; 
break; \
-   case DT_STRTAB: vstr = dyn->d_un.d_val; break; \
-   case DT_STRSZ:  str_size = dyn->d_un.d_val; 
break; \
-   case DT_HASH:   vhash = dyn->d_un.d_val; break; 
\
+   case DT_SYMTAB:  vsym = dyn->d_un.d_val; 
break; \
+   case DT_SYMENT:  ent_size = 
dyn->d_un.d_val; break; \
+   case DT_STRTAB:  vstr = dyn->d_un.d_val; 
break; \
+   case DT_STRSZ:   str_size = 
dyn->d_un.d_val; break; \
+   case DT_HASH:vhash = dyn->d_un.d_val; 
break; \
+   case DT_GNU_LIBLIST: vliblist = 
dyn->d_un.d_val; break; \
} \
++dyn; \
} \
@@ -126,6 +127,8 @@ static bool sb_check_exec(const char *filename, char *const 
argv[])
stroff = offset + (vstr - vaddr); \
if (vhash >= vaddr && vhash < vaddr + filesz) \
hashoff = offset + (vhash - vaddr); \
+   if (vliblist >= vaddr && vliblist < vaddr + filesz) \
+   liblistoff = offset + (vliblist - vaddr); \
} \
\
/* Finally walk the symbol table.  This should generally be 
fast as \
@@ -133,19 +136,33 @@ static bool sb_check_exec(const char *filename, char 
*const argv[])
 * out there do not export any symbols at all. \
 */ \
if (symoff && stroff) { \
-   /* Hash entries are always 32-bits. */ \
-   uint32_t *hashes = (void *)(elf + hashoff); \
/* Nowhere is the # of symbols recorded, or the size of 
the symbol \
 * table.  Instead, we do what glibc does: use the sysv 
hash table \
 * if it exists, else assume that the string table 
always directly \
 * follows the symbol table.  This seems like a poor 
assumption to \
-* make, but glibc has gotten by this long. \
+* make, but glibc has gotten by this long.  See 
determine_info in \
+* glibc's elf/dl-addr.c. \
+* \
+* Turns out prelink will violate that assumption.  
Fortunately it 

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

2016-11-16 Thread Andrew Savchenko
commit: 7cbec58a3a12c898ae15ebbe78e3fd81e8ceb894
Author: Andrew Savchenko  gentoo  org>
AuthorDate: Wed Nov 16 22:06:01 2016 +
Commit: Andrew Savchenko  gentoo  org>
CommitDate: Wed Nov 16 22:06:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7cbec58a

dev-util/dropwatch: version bump and fixes

- update to the latest git HEAD snapshot (20150706);
- update to EAPI 6;
- add subsolt dep on binutils-libs (fixes bug 599908), thanks
  Thomas Deutschmann (whissi  gentoo.org) for the report and the patch.

Package-Manager: portage-2.3.2
Signed-off-by: Andrew Savchenko  gentoo.org>

 dev-util/dropwatch/Manifest|  1 +
 dev-util/dropwatch/dropwatch-1.4_p20150706.ebuild  | 42 ++
 .../files/dropwatch-1.4-binutils-2.23.patch| 37 ---
 .../files/dropwatch-1.4_p20150706-makefile.patch   | 21 +++
 4 files changed, 89 insertions(+), 12 deletions(-)

diff --git a/dev-util/dropwatch/Manifest b/dev-util/dropwatch/Manifest
index e4cc3b5..c7d2096 100644
--- a/dev-util/dropwatch/Manifest
+++ b/dev-util/dropwatch/Manifest
@@ -1 +1,2 @@
 DIST dropwatch-1.4.tbz2 32199 SHA256 
ede45fd3b4a847a9befa73e9e8f6336aee5418fc3e041648c684e5085113a3b4 SHA512 
a5744ea156464c53d31d5b54bcaf9bd61f2035285059bc05a3eec20be71d1451a6191237f194dc5d8e6fb6fcbb81d9ef87adf5ac2d878cc1f159191c47118e29
 WHIRLPOOL 
3d8661ab85da0a7485e8f6312eeb99e1ed14f6af38d119093c835e94f518918908e596d3e5744be5f529d280b6644b459106eb503112df58b63865737f8eecc1
+DIST dropwatch-1.4_p20150706.tar.xz 14880 SHA256 
c0977172d1d1f14ddadf4fd5f5449f1ef0ced77c73b34c4ce9d256c7380c9b29 SHA512 
f78f19f063408cb655869e662e92709b1cec820ab35b11272b87a990c380e0799c6e9067dcf53edab795916347dfe3fd04932f9699c3f5649f96d62567957fbd
 WHIRLPOOL 
26e460964db3c71bb9a0d7f89fcec5985471a7ad94cdaadd4fdef0e0a70f1d990fd8db1092945fd30e34fe54868647d31d60235b4fa7d60533c58e4e1e050d4d

diff --git a/dev-util/dropwatch/dropwatch-1.4_p20150706.ebuild 
b/dev-util/dropwatch/dropwatch-1.4_p20150706.ebuild
new file mode 100644
index ..69c033d
--- /dev/null
+++ b/dev-util/dropwatch/dropwatch-1.4_p20150706.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit linux-info toolchain-funcs
+
+DESCRIPTION="A utility to interface to the kernel to monitor for dropped 
network packets"
+HOMEPAGE="https://fedorahosted.org/dropwatch/;
+SRC_URI="https://dev.gentoo.org/~bircoph/distfiles/${P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-libs/libnl:3
+   sys-libs/binutils-libs:=
+   sys-libs/readline:="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+CONFIG_CHECK="~NET_DROP_MONITOR"
+
+PATCHES=(
+   "${FILESDIR}/${P}-makefile.patch"
+   "${FILESDIR}/${PN}-1.4-binutils-2.23.patch"
+)
+
+src_compile() {
+   emake CC="$(tc-getCC)" -C src
+}
+
+src_install() {
+   dobin "src/${PN}"
+   doman "doc/${PN}.1"
+   dodoc README
+}
+
+pkg_postinst() {
+   einfo "Ensure that 'drop_monitor' kernel module is loaded before 
running ${PN}"
+}

diff --git a/dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch 
b/dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch
index 43702c4..1a7fa79 100644
--- a/dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch
+++ b/dev-util/dropwatch/files/dropwatch-1.4-binutils-2.23.patch
@@ -1,6 +1,16 @@
-diff -aurd src.orig/lookup.c src/lookup.c
 src.orig/lookup.c  2011-10-03 22:51:38.0 +0400
-+++ src/lookup.c   2013-02-18 09:13:56.683214438 +0400
+commit a5aa2c3cbae207d12b9f2fded36a47031c55be36
+Author: Andrew Savchenko 
+Date:   Thu Nov 17 00:04:47 2016 +0300
+
+Fix build with recent binutils
+
+Gentoo-Bug: 457980
+Upstream Ticket:5
+
+diff --git a/src/lookup.c b/src/lookup.c
+index ba54991..809981b 100644
+--- a/src/lookup.c
 b/src/lookup.c
 @@ -27,13 +27,13 @@
  #include 
  #include 
@@ -16,9 +26,10 @@ diff -aurd src.orig/lookup.c src/lookup.c
  
  extern struct lookup_methods bfd_methods;
  extern struct lookup_methods kallsym_methods;
-diff -aurd src.orig/lookup.h src/lookup.h
 src.orig/lookup.h  2011-10-03 22:51:38.0 +0400
-+++ src/lookup.h   2013-02-18 09:11:00.506895026 +0400
+diff --git a/src/lookup.h b/src/lookup.h
+index e6568d8..47a7b56 100644
+--- a/src/lookup.h
 b/src/lookup.h
 @@ -28,6 +28,9 @@
  #include 
  #include 
@@ -29,9 +40,10 @@ diff -aurd src.orig/lookup.h src/lookup.h
  
  /*
   * Initalization routine
-diff -aurd src.orig/lookup_bfd.c src/lookup_bfd.c
 src.orig/lookup_bfd.c  2012-01-16 22:34:11.0 +0400
-+++ src/lookup_bfd.c   2013-02-18 09:14:02.472984310 +0400
+diff --git a/src/lookup_bfd.c b/src/lookup_bfd.c
+index cc7010b..271d426 100644
+--- a/src/lookup_bfd.c
 b/src/lookup_bfd.c
 @@ -25,13 +25,13 @@
  #include 
  #include 
@@ -47,9 +59,10 @@ diff -aurd 

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

2016-11-16 Thread David Seifert
commit: 0ab7ef215229febf87ca58900d5b4cda9ba5ab30
Author: Louis Sautier  gmail  com>
AuthorDate: Tue Nov 15 13:38:59 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Nov 16 21:59:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ab7ef21

net-p2p/syncthing: bump to 0.14.11

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

Signed-off-by: David Seifert  gentoo.org>

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

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index ce1b73e..1d4c41a 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1,4 +1,5 @@
 DIST syncthing-0.14.10.tar.gz 6439231 SHA256 
abd0695f12a4bc1dbb9ac1c5f3a9caf7b20e3c2cdeee9ab3859d66df98070dce SHA512 
69f9d7ab3b3df663604d0da272d35abcf47553ae7e0b825d22385a3331848621597d35c6bd4b9591231c1160d9fb2c8d368fb9845f0d2e80aef7833acb829b7a
 WHIRLPOOL 
bf63ee69f889ed54f5bded339224a131ef2aa9781df4cbfbfb7d279fe83c9268c9ca350ccbaa3f8509d46297e05754f2454d854d96966ef366340bc05fef29cd
+DIST syncthing-0.14.11.tar.gz 6455020 SHA256 
7d6b85724cf7a9b5cf0ded602f8cd132e02f1809c3d5d59593d6b78248c75e9f SHA512 
ff326096da47c1b14a0c2c89ade96e79342c63b5d412d7bb5031fc1d489c9468f245d296b971a7e5b90183a4b2f4a8e8fe7d8ab0b01ca06fc780dd277523a68e
 WHIRLPOOL 
cd8d4dfd701783cc05403349f48acbf0ab6eb2e760ff00104bca337dd2b8868fda4eb6e1860a6d5402ffc4bcc3973ab24c2094a1fd481ef958b514138400ecc3
 DIST syncthing-0.14.6.tar.gz 6390369 SHA256 
481d9e88db0c3b3e9b0c796fa6dbb62447f0da69022c77f0065370873b0909ff SHA512 
2a6d7dda6f014b1fce75d3199afdde517344524356e3881bb3cac035adc53dae3401260f072099a60d31394279e386c1d0e661fe21a5df0f1bf6b9808017ba34
 WHIRLPOOL 
e24ce88d5448d4f599a3de52c049d5eed3531d7072b9dbf731ec684e648b580f02b559e0b72f441b4bc41aeb8500e7e78cc2379aeb029b35c7b91bb7e411970e
 DIST syncthing-0.14.7.tar.gz 6434379 SHA256 
5586f24e10e695bf2a3db1f2bfd2b8bf986753ecbc9919c922e2ba10c0bbb119 SHA512 
883c8c7b060b7f216bcaf54393614f56f730772ccda91dc1c08545e26b439dca8532fcda1bd406ba07f32aad747af14174cd8d72be3349f5030d985ac90af0e3
 WHIRLPOOL 
d736c6ade06e81b3de94a3dd72ef7888cfa1f30c3097870fde4ce80d332b9ee2dedfeae5bec9e511d63ac34b4828010147c5ab238a84d807f1c1c2047be28400
 DIST syncthing-0.14.9.tar.gz 6431103 SHA256 
c04350e66a88ec027daa0d72f9fea5815ac73dc8543c271fe2fa0b53657c5502 SHA512 
19d4e6ab9ad76c16e4406914b125626c9bec1d76b1ce28e776e357dd78cee1e0a4117346927376ab8292a0c6ba4843bc32c04abdf25bae9e6010343306873079
 WHIRLPOOL 
879c5eae5aade78e596fdd1f4f1da595a9c48e2b521fc0a9616af5721a7d3dd117d392fe654650bc0d9ca613a395e689ffbbe47c4b76a16a4bfccf8e621d145b

diff --git a/net-p2p/syncthing/syncthing-0.14.11.ebuild 
b/net-p2p/syncthing/syncthing-0.14.11.ebuild
new file mode 100644
index ..ade2ed9
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-0.14.11.ebuild
@@ -0,0 +1,122 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+EGO_PN="github.com/${PN}/${PN}"
+
+inherit golang-vcs-snapshot systemd user versionator
+
+DESCRIPTION="Open Source Continuous File Synchronization"
+HOMEPAGE="https://syncthing.net;
+SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~arm"
+IUSE="tools"
+
+DOCS=(README.md AUTHORS CONTRIBUTING.md)
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
+
+   if use tools ; then
+   # separate user for the relay server
+   enewgroup strelaysrv
+   enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
+   # and his home folder
+   keepdir /var/lib/strelaysrv
+   fowners strelaysrv:strelaysrv /var/lib/strelaysrv
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i \
+   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
+   
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
+   || die
+}
+
+src_compile() {
+   export GOPATH="${S}:$(get_golibdir_gopath)"
+   cd src/${EGO_PN} || die
+   # If we pass "build" to build.go, it builds only syncthing itself, and
+   # places the binary in the root folder. If we do not pass "build", all 
the
+   # tools are built, and all binaries are placed in folder ./bin.
+   go run build.go -version "v${PV}" -no-upgrade $(usex tools "" "build") \
+   || die "build failed"
+}
+
+# Tests sometimes fail, reported upstream
+# https://github.com/syncthing/syncthing/issues/3735
+src_test() {
+   cd src/${EGO_PN} || die
+   go run build.go test || die "test failed"
+}
+
+src_install() {
+   pushd src/${EGO_PN} >& /dev/null || die
+   doman man/*.[157]
+   einstalldocs
+
+   if use tools ; then
+   dobin 

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

2016-11-16 Thread David Seifert
commit: 22392fda5115b12ce43e996a808cd03bbc0a2be1
Author: Louis Sautier  gmail  com>
AuthorDate: Tue Nov 15 13:40:16 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Nov 16 21:59:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22392fda

net-p2p/syncthing: remove old

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

Signed-off-by: David Seifert  gentoo.org>

 net-p2p/syncthing/Manifest|   1 -
 net-p2p/syncthing/syncthing-0.14.7.ebuild | 122 --
 2 files changed, 123 deletions(-)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index 1d4c41a..09a6e7e 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1,5 +1,4 @@
 DIST syncthing-0.14.10.tar.gz 6439231 SHA256 
abd0695f12a4bc1dbb9ac1c5f3a9caf7b20e3c2cdeee9ab3859d66df98070dce SHA512 
69f9d7ab3b3df663604d0da272d35abcf47553ae7e0b825d22385a3331848621597d35c6bd4b9591231c1160d9fb2c8d368fb9845f0d2e80aef7833acb829b7a
 WHIRLPOOL 
bf63ee69f889ed54f5bded339224a131ef2aa9781df4cbfbfb7d279fe83c9268c9ca350ccbaa3f8509d46297e05754f2454d854d96966ef366340bc05fef29cd
 DIST syncthing-0.14.11.tar.gz 6455020 SHA256 
7d6b85724cf7a9b5cf0ded602f8cd132e02f1809c3d5d59593d6b78248c75e9f SHA512 
ff326096da47c1b14a0c2c89ade96e79342c63b5d412d7bb5031fc1d489c9468f245d296b971a7e5b90183a4b2f4a8e8fe7d8ab0b01ca06fc780dd277523a68e
 WHIRLPOOL 
cd8d4dfd701783cc05403349f48acbf0ab6eb2e760ff00104bca337dd2b8868fda4eb6e1860a6d5402ffc4bcc3973ab24c2094a1fd481ef958b514138400ecc3
 DIST syncthing-0.14.6.tar.gz 6390369 SHA256 
481d9e88db0c3b3e9b0c796fa6dbb62447f0da69022c77f0065370873b0909ff SHA512 
2a6d7dda6f014b1fce75d3199afdde517344524356e3881bb3cac035adc53dae3401260f072099a60d31394279e386c1d0e661fe21a5df0f1bf6b9808017ba34
 WHIRLPOOL 
e24ce88d5448d4f599a3de52c049d5eed3531d7072b9dbf731ec684e648b580f02b559e0b72f441b4bc41aeb8500e7e78cc2379aeb029b35c7b91bb7e411970e
-DIST syncthing-0.14.7.tar.gz 6434379 SHA256 
5586f24e10e695bf2a3db1f2bfd2b8bf986753ecbc9919c922e2ba10c0bbb119 SHA512 
883c8c7b060b7f216bcaf54393614f56f730772ccda91dc1c08545e26b439dca8532fcda1bd406ba07f32aad747af14174cd8d72be3349f5030d985ac90af0e3
 WHIRLPOOL 
d736c6ade06e81b3de94a3dd72ef7888cfa1f30c3097870fde4ce80d332b9ee2dedfeae5bec9e511d63ac34b4828010147c5ab238a84d807f1c1c2047be28400
 DIST syncthing-0.14.9.tar.gz 6431103 SHA256 
c04350e66a88ec027daa0d72f9fea5815ac73dc8543c271fe2fa0b53657c5502 SHA512 
19d4e6ab9ad76c16e4406914b125626c9bec1d76b1ce28e776e357dd78cee1e0a4117346927376ab8292a0c6ba4843bc32c04abdf25bae9e6010343306873079
 WHIRLPOOL 
879c5eae5aade78e596fdd1f4f1da595a9c48e2b521fc0a9616af5721a7d3dd117d392fe654650bc0d9ca613a395e689ffbbe47c4b76a16a4bfccf8e621d145b

diff --git a/net-p2p/syncthing/syncthing-0.14.7.ebuild 
b/net-p2p/syncthing/syncthing-0.14.7.ebuild
deleted file mode 100644
index 3d1e955..
--- a/net-p2p/syncthing/syncthing-0.14.7.ebuild
+++ /dev/null
@@ -1,122 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-EGO_PN="github.com/${PN}/${PN}"
-
-inherit golang-vcs-snapshot systemd user versionator
-
-DESCRIPTION="Open Source Continuous File Synchronization"
-HOMEPAGE="https://syncthing.net;
-SRC_URI="https://${EGO_PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~arm"
-IUSE="tools"
-
-DOCS="README.md AUTHORS CONTRIBUTING.md"
-
-pkg_setup() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /var/lib/${PN} ${PN}
-
-   if use tools ; then
-   # separate user for the relay server
-   enewgroup strelaysrv
-   enewuser strelaysrv -1 -1 /var/lib/strelaysrv strelaysrv
-   # and his home folder
-   keepdir /var/lib/strelaysrv
-   fowners strelaysrv:strelaysrv /var/lib/strelaysrv
-   fi
-}
-
-src_prepare() {
-   default
-   sed -i \
-   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
-   
src/${EGO_PN}/cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
-   || die
-}
-
-src_compile() {
-   export GOPATH="${S}:$(get_golibdir_gopath)"
-   cd src/${EGO_PN} || die
-   # If we pass "build" to build.go, it builds only syncthing itself, and
-   # places the binary in the root folder. If we do not pass "build", all 
the
-   # tools are built, and all binaries are placed in folder ./bin.
-   ST_BUILD="build"
-   if use tools ; then
-   ST_BUILD=""
-   fi
-   go run build.go -version "v${PV}" -no-upgrade ${ST_BUILD} || die "build 
failed"
-}
-
-src_test() {
-   cd src/${EGO_PN} || die
-   go run build.go test || die "test failed"
-}
-
-src_install() {
-   cd src/${EGO_PN} || die
-   doman man/*.[157]
-   einstalldocs
-
-   if use tools ; then
-   dobin bin/syncthing
-   exeinto /usr/libexec/syncthing
-  

[gentoo-commits] repo/gentoo:master commit in: games-misc/xcowsay/files/

2016-11-16 Thread David Seifert
commit: ea482884c66d5c4c8f4a14d23fcc96aa3dbc3d04
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Tue Nov 15 18:45:46 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Wed Nov 16 22:01:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea482884

games-misc/xcowsay: remove unused patch

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

Signed-off-by: David Seifert  gentoo.org>

 games-misc/xcowsay/files/xcowsay-1.2-no-dbus.patch | 14 --
 1 file changed, 14 deletions(-)

diff --git a/games-misc/xcowsay/files/xcowsay-1.2-no-dbus.patch 
b/games-misc/xcowsay/files/xcowsay-1.2-no-dbus.patch
deleted file mode 100644
index a35f349..
--- a/games-misc/xcowsay/files/xcowsay-1.2-no-dbus.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff --git a/configure.ac b/configure.ac
-index 3554e67..b8b66c1 100644
 a/configure.ac
-+++ b/configure.ac
-@@ -35,8 +35,8 @@ AC_ARG_ENABLE(dbus,
- [AS_HELP_STRING([--enable-dbus], [Build the DBus daemon.])],
- [if test "$enableval" = "yes" ; then
-modules="$xcowsayd_modules"
-+   CFLAGS="$CFLAGS -DWITH_DBUS"
-  fi
-- CFLAGS="$CFLAGS -DWITH_DBUS"
-AC_FUNC_FORK])
- 
- PKG_CHECK_MODULES(XCOWSAY, $modules)



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

2016-11-16 Thread Lars Wendler
commit: a887af5e381fe3b4673a7ec310d6ddf0ad6830ff
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Nov 16 21:10:01 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Nov 16 21:30:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a887af5e

media-libs/glm: Removed old.

Package-Manager: portage-2.3.2

 media-libs/glm/Manifest   |  1 -
 media-libs/glm/glm-0.9.8.1.ebuild | 31 ---
 2 files changed, 32 deletions(-)

diff --git a/media-libs/glm/Manifest b/media-libs/glm/Manifest
index 4212fd3..1bf4178 100644
--- a/media-libs/glm/Manifest
+++ b/media-libs/glm/Manifest
@@ -1,5 +1,4 @@
 DIST glm-0.9.6.1.zip 4232099 SHA256 
1a8a0c84dee47b0493aa8d45ccd38dc02b917d9f14da835c5b06fb0b93bb33e8 SHA512 
7f1468c5e60e65181f4685a2429fa8d70350a3576175a55b7c9e8597a03837cb84aeaeb88d311e1e1948c5bd90ad9cee9286433cb78fdee54b0fbe5313ce2f84
 WHIRLPOOL 
88e0c6df25ee1bf73b625614be61c21c07389a7ecc05e2e74714da08412ab3ab0eba6c99c6a793f7b08d52f6748ef5202d8301c1b6cf4d64ab06184bc9482030
 DIST glm-0.9.7.6.tar.gz 3457100 SHA256 
872fdea580b69b752562adc60734d7472fd97d5724c4ead585564083deac3953 SHA512 
d4e1e173405c11b5744df8dc12f0848cd84ab27b868434c0f8fc74f15110b78606564991f3063ccc97e68a0aa1c1cb4a1b40ba6ce7feffb0d1a23c3e5cff315a
 WHIRLPOOL 
ac48038cc7ed3e5a7f8a192ba4fe7cd43cc4f5f65cbfebe545ef0b9841f945e9fd6ff1385fa8c8d09ac4c578883827f187290b1154e1f5f01b8558a5e604883b
-DIST glm-0.9.8.1.tar.gz 3766725 SHA256 
8bafbc2442548bb7fbe17a7d0e2256394495f09fe7edfae3a8bd9a0222d3792d SHA512 
0ae0948c13ad17f07a1cc1e987d43bab904ba14575086678d0aa4fb189a591e87a6e805ea66a3f36f12435c1d5b4421942882d528a12370021514995c542de28
 WHIRLPOOL 
2b341a39ec59b345e1208aff908f282f9192e631a628e597a006f9f3cd4356a8b3e492708c0d9cb87687b81a3634f16f727a257b8bcc354342478c66c1727f4d
 DIST glm-0.9.8.2.tar.gz 3767435 SHA256 
430cc444881750622040f386b1e509c238f4813a58e069f9e39d3e3e7b73b629 SHA512 
88232f020ba1f749803bd22c6924a834d8a660a7b120269d872438bdc6ccf110f6c5c1fdb8349ee55c58a9fd295a4ae545eaddf227f2175d10f967ef1dd3dc80
 WHIRLPOOL 
b1526dc7ab26cee31d842f59b8d3f69ba95dea028f76154aaf0770b2dd01a12f03889c5e2e8c5caa2bd9cf6e75409042816e73f81f18b43be83d7852ca4ad217
 DIST glm-0.9.8.3.tar.gz 3767840 SHA256 
0c09d7d03e68cef60e6384385739c36eb9d49586f6827c4ca95fac1819c9328e SHA512 
708317254941f288449b9abe41b57053d67e689a9a13efcce9d71940ae27fef777a5ffc2e2a33a0142701af78ddc66a17c9f59851e4be8690919fa8e9eeeb2fa
 WHIRLPOOL 
21e4b1e1f0105b0721c98a913234b9a7d78e56b5cac0b9f08b0ac4cefe0459bcaf8f74dc29052bf7b88b5780c632a066a2702b6581cb4e2468ce3995d09afb6d

diff --git a/media-libs/glm/glm-0.9.8.1.ebuild 
b/media-libs/glm/glm-0.9.8.1.ebuild
deleted file mode 100644
index 0ef2057..
--- a/media-libs/glm/glm-0.9.8.1.ebuild
+++ /dev/null
@@ -1,31 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit cmake-utils
-
-DESCRIPTION="OpenGL Mathematics"
-HOMEPAGE="http://glm.g-truc.net/;
-SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( HappyBunny MIT )"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx 
cpu_flags_x86_avx2"
-
-RDEPEND="virtual/opengl"
-
-src_configure() {
-   if use test; then
-   local mycmakeargs=( -DGLM_TEST_ENABLE=ON )
-
-   use cpu_flags_x86_sse2 && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_SSE2=ON )
-   use cpu_flags_x86_sse3 && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_SSE3=ON )
-   use cpu_flags_x86_avx  && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_AVX=ON )
-   use cpu_flags_x86_avx2 && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_AVX2=ON )
-   fi
-
-   cmake-utils_src_configure
-}



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

2016-11-16 Thread Lars Wendler
commit: 36c163c407ec64f0253dd0822f2f531f20fbbedb
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Nov 16 21:09:24 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Nov 16 21:30:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36c163c4

media-libs/glm: Bump to version 0.9.8.3 (bug #599674).

Should also fix bug #599112.

Package-Manager: portage-2.3.2

 media-libs/glm/Manifest   |  1 +
 media-libs/glm/glm-0.9.8.3.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/media-libs/glm/Manifest b/media-libs/glm/Manifest
index 1284627..4212fd3 100644
--- a/media-libs/glm/Manifest
+++ b/media-libs/glm/Manifest
@@ -2,3 +2,4 @@ DIST glm-0.9.6.1.zip 4232099 SHA256 
1a8a0c84dee47b0493aa8d45ccd38dc02b917d9f14da
 DIST glm-0.9.7.6.tar.gz 3457100 SHA256 
872fdea580b69b752562adc60734d7472fd97d5724c4ead585564083deac3953 SHA512 
d4e1e173405c11b5744df8dc12f0848cd84ab27b868434c0f8fc74f15110b78606564991f3063ccc97e68a0aa1c1cb4a1b40ba6ce7feffb0d1a23c3e5cff315a
 WHIRLPOOL 
ac48038cc7ed3e5a7f8a192ba4fe7cd43cc4f5f65cbfebe545ef0b9841f945e9fd6ff1385fa8c8d09ac4c578883827f187290b1154e1f5f01b8558a5e604883b
 DIST glm-0.9.8.1.tar.gz 3766725 SHA256 
8bafbc2442548bb7fbe17a7d0e2256394495f09fe7edfae3a8bd9a0222d3792d SHA512 
0ae0948c13ad17f07a1cc1e987d43bab904ba14575086678d0aa4fb189a591e87a6e805ea66a3f36f12435c1d5b4421942882d528a12370021514995c542de28
 WHIRLPOOL 
2b341a39ec59b345e1208aff908f282f9192e631a628e597a006f9f3cd4356a8b3e492708c0d9cb87687b81a3634f16f727a257b8bcc354342478c66c1727f4d
 DIST glm-0.9.8.2.tar.gz 3767435 SHA256 
430cc444881750622040f386b1e509c238f4813a58e069f9e39d3e3e7b73b629 SHA512 
88232f020ba1f749803bd22c6924a834d8a660a7b120269d872438bdc6ccf110f6c5c1fdb8349ee55c58a9fd295a4ae545eaddf227f2175d10f967ef1dd3dc80
 WHIRLPOOL 
b1526dc7ab26cee31d842f59b8d3f69ba95dea028f76154aaf0770b2dd01a12f03889c5e2e8c5caa2bd9cf6e75409042816e73f81f18b43be83d7852ca4ad217
+DIST glm-0.9.8.3.tar.gz 3767840 SHA256 
0c09d7d03e68cef60e6384385739c36eb9d49586f6827c4ca95fac1819c9328e SHA512 
708317254941f288449b9abe41b57053d67e689a9a13efcce9d71940ae27fef777a5ffc2e2a33a0142701af78ddc66a17c9f59851e4be8690919fa8e9eeeb2fa
 WHIRLPOOL 
21e4b1e1f0105b0721c98a913234b9a7d78e56b5cac0b9f08b0ac4cefe0459bcaf8f74dc29052bf7b88b5780c632a066a2702b6581cb4e2468ce3995d09afb6d

diff --git a/media-libs/glm/glm-0.9.8.3.ebuild 
b/media-libs/glm/glm-0.9.8.3.ebuild
new file mode 100644
index ..0ef2057
--- /dev/null
+++ b/media-libs/glm/glm-0.9.8.3.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit cmake-utils
+
+DESCRIPTION="OpenGL Mathematics"
+HOMEPAGE="http://glm.g-truc.net/;
+SRC_URI="https://github.com/g-truc/glm/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( HappyBunny MIT )"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="test cpu_flags_x86_sse2 cpu_flags_x86_sse3 cpu_flags_x86_avx 
cpu_flags_x86_avx2"
+
+RDEPEND="virtual/opengl"
+
+src_configure() {
+   if use test; then
+   local mycmakeargs=( -DGLM_TEST_ENABLE=ON )
+
+   use cpu_flags_x86_sse2 && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_SSE2=ON )
+   use cpu_flags_x86_sse3 && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_SSE3=ON )
+   use cpu_flags_x86_avx  && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_AVX=ON )
+   use cpu_flags_x86_avx2 && mycmakeargs+=( 
-DGLM_TEST_ENABLE_SIMD_AVX2=ON )
+   fi
+
+   cmake-utils_src_configure
+}



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

2016-11-16 Thread Lars Wendler
commit: 7f7fe55c3c58b276e212c7e2c6bfba24a875debe
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Nov 16 21:30:05 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Nov 16 21:30:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f7fe55c

media-gfx/imagemagick: Removed old.

Package-Manager: portage-2.3.2

 media-gfx/imagemagick/Manifest   |   1 -
 media-gfx/imagemagick/imagemagick-6.9.6.3.ebuild | 178 ---
 2 files changed, 179 deletions(-)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index a5fe617..48f452c 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -1,6 +1,5 @@
 DIST ImageMagick-6.9.5-10.tar.xz 8794440 SHA256 
2805ab7945ca92251172335da992df800bcc09fee993eeb4711b20c53efeb233 SHA512 
7ee467cf8b1776300c12f135c7fea73afe888d4592c2008e76e578afa436efadccc62e7f2fd9d356aeb8559cc5ff9168ee477bab5474f7495a332756aba294bb
 WHIRLPOOL 
3105e524182f81d1210fd3f56c3457259c04d3d95d5a5a118f0854dd5f5851e43c70256f915221a0c3dd772e344fc5d9e1d36c3d2b77fccde68d70f66471c299
 DIST ImageMagick-6.9.6-2.tar.xz 8784120 SHA256 
39244823fe736626fb4ea22c4b6cb4cae30c6a27a38a02ecd774f0ce3c4d308d SHA512 
7d639684474eb5da7fc85adba0977d81252eca92d671ce1d16863e4e66118b0231f9c926b1adf2623fb029b3663715217c60f97b852915c105b4ec92f5cb4df1
 WHIRLPOOL 
ad735cddb6d5a53d989124abf98c39f29bb291b15b98b84f2691b9ab432a703ca2ee2ca479147809762d315babd519c5252a9c742c26385997d24c3ed5e57645
-DIST ImageMagick-6.9.6-3.tar.xz 8785472 SHA256 
c34c16d345e2d158bf9c8cf486d0c559e6c9831c31a50f4bb4cb6cd8ea413656 SHA512 
0ae0ab4e82761baef23c9ac4170f3556fe2e461a8f2055aae115a9d6a78f66077b774393f6f945d3d9695140f4999a58f15099f263caed413364cf12f9e3fb12
 WHIRLPOOL 
492c760c719beef1d0afc79f3ff1f51e96eaa09c536168f00f20657bf8ea4b7842ee477b0b3dc9a7324461991696839e642eb0c99afa2fb67ace68fd6b2cf184
 DIST ImageMagick-6.9.6-4.tar.xz 8767920 SHA256 
d523c2c45dc2ff55f1bc27aa0cfa6e00e6f80dc182e8d6c27fcac99461c462d7 SHA512 
38e1c0ceced8facff6da22c35c87c2fd37519a2e19b1252dbff94430891e0c48bcccb591f3d8b3954264b5196e8bcc8d638b8f92c088541cb999efc9601ef8ab
 WHIRLPOOL 
679d3c42e51cc561a06dbd37c0898736d45a59d8991836a559795939719700f0d70c5a13b383125129a1951dfde90eb567dbc121d1fb530ccbac94e68a73115c
 DIST ImageMagick-6.9.6-5.tar.xz 8762376 SHA256 
8d0122ba93a3f16d09cadcd4228f996c0048f0a44d92113d3d61150faa78f40c SHA512 
4cf8d24f78c9ab15e38bd71ca28357db885640bb65c8fe23eaddc18f217f796a159cf950036bb9e240ffc3a13729c66f99eab3b8adbc504ad110ef95cf0b385c
 WHIRLPOOL 
5c9674605dcbffb6b083023efb5414557e887404f840e8ee3c5c25945d338f98a6dad0519192098b1b199ff8a4a303b3103884418fcd1099e7c8ce9929e9a8db
 DIST ImageMagick-7.0.3-7.tar.xz 8290176 SHA256 
140b99f33a3326aed92132a7cd054ee962a6e2562064c68495640411aa4571d7 SHA512 
ade84f576ddd48ee6fe99d25139b879ba38da18f2b0e868109dd04263636b398fbd10c88660cfec9ac75ae500ba4690373f445677aa39908cea6845f3fcb5ad4
 WHIRLPOOL 
9875b70a5154d07c3f277df88fd64e5c126e5685fdb722a14f1f335b3c085ea475e9cd39b4e5d3b1f37fda6f0edb472fc4551d8c69ca122b05a8077d5b54e611

diff --git a/media-gfx/imagemagick/imagemagick-6.9.6.3.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.6.3.ebuild
deleted file mode 100644
index 47260e1..
--- a/media-gfx/imagemagick/imagemagick-6.9.6.3.ebuild
+++ /dev/null
@@ -1,178 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit eutils flag-o-matic libtool multilib toolchain-funcs versionator
-
-MY_P=ImageMagick-$(replace_version_separator 3 '-')
-
-DESCRIPTION="A collection of tools and libraries for many image formats"
-HOMEPAGE="http://www.imagemagick.org/;
-SRC_URI="mirror://${PN}/${MY_P}.tar.xz"
-
-LICENSE="imagemagick"
-SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="autotrace bzip2 corefonts cxx djvu fftw fontconfig fpx graphviz hdri 
jbig jpeg jpeg2k lcms lqr lzma opencl openexr openmp pango perl png postscript 
q32 q64 q8 raw static-libs svg test tiff truetype webp wmf X xml zlib"
-
-RESTRICT="perl? ( userpriv )"
-
-RDEPEND="
-   dev-libs/libltdl:0
-   autotrace? ( >=media-gfx/autotrace-0.31.1 )
-   bzip2? ( app-arch/bzip2 )
-   corefonts? ( media-fonts/corefonts )
-   djvu? ( app-text/djvu )
-   fftw? ( sci-libs/fftw:3.0 )
-   fontconfig? ( media-libs/fontconfig )
-   fpx? ( >=media-libs/libfpx-1.3.0-r1 )
-   graphviz? ( media-gfx/graphviz )
-   jbig? ( >=media-libs/jbigkit-2:= )
-   jpeg? ( virtual/jpeg:0 )
-   jpeg2k? ( >=media-libs/openjpeg-2.1.0:2 )
-   lcms? ( media-libs/lcms:2= )
-   lqr? ( media-libs/liblqr )
-   opencl? ( virtual/opencl )
-   openexr? ( media-libs/openexr:0= )
-   pango? ( x11-libs/pango )
-   perl? ( 

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

2016-11-16 Thread Lars Wendler
commit: e83b1cd9ab9e9aefe2e2dd137f1d8059d29c80f3
Author: Lars Wendler  gentoo  org>
AuthorDate: Wed Nov 16 21:29:17 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Wed Nov 16 21:30:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e83b1cd9

media-gfx/imagemagick: Bump to versions 6.9.6.5 and 7.0.3.7. Removed old.

Package-Manager: portage-2.3.2

 media-gfx/imagemagick/Manifest | 3 ++-
 .../{imagemagick-7.0.3.6.ebuild => imagemagick-6.9.6.5.ebuild} | 0
 .../{imagemagick-7.0.3.6.ebuild => imagemagick-7.0.3.7.ebuild} | 0
 3 files changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-gfx/imagemagick/Manifest b/media-gfx/imagemagick/Manifest
index 60302ea..a5fe617 100644
--- a/media-gfx/imagemagick/Manifest
+++ b/media-gfx/imagemagick/Manifest
@@ -2,4 +2,5 @@ DIST ImageMagick-6.9.5-10.tar.xz 8794440 SHA256 
2805ab7945ca92251172335da992df80
 DIST ImageMagick-6.9.6-2.tar.xz 8784120 SHA256 
39244823fe736626fb4ea22c4b6cb4cae30c6a27a38a02ecd774f0ce3c4d308d SHA512 
7d639684474eb5da7fc85adba0977d81252eca92d671ce1d16863e4e66118b0231f9c926b1adf2623fb029b3663715217c60f97b852915c105b4ec92f5cb4df1
 WHIRLPOOL 
ad735cddb6d5a53d989124abf98c39f29bb291b15b98b84f2691b9ab432a703ca2ee2ca479147809762d315babd519c5252a9c742c26385997d24c3ed5e57645
 DIST ImageMagick-6.9.6-3.tar.xz 8785472 SHA256 
c34c16d345e2d158bf9c8cf486d0c559e6c9831c31a50f4bb4cb6cd8ea413656 SHA512 
0ae0ab4e82761baef23c9ac4170f3556fe2e461a8f2055aae115a9d6a78f66077b774393f6f945d3d9695140f4999a58f15099f263caed413364cf12f9e3fb12
 WHIRLPOOL 
492c760c719beef1d0afc79f3ff1f51e96eaa09c536168f00f20657bf8ea4b7842ee477b0b3dc9a7324461991696839e642eb0c99afa2fb67ace68fd6b2cf184
 DIST ImageMagick-6.9.6-4.tar.xz 8767920 SHA256 
d523c2c45dc2ff55f1bc27aa0cfa6e00e6f80dc182e8d6c27fcac99461c462d7 SHA512 
38e1c0ceced8facff6da22c35c87c2fd37519a2e19b1252dbff94430891e0c48bcccb591f3d8b3954264b5196e8bcc8d638b8f92c088541cb999efc9601ef8ab
 WHIRLPOOL 
679d3c42e51cc561a06dbd37c0898736d45a59d8991836a559795939719700f0d70c5a13b383125129a1951dfde90eb567dbc121d1fb530ccbac94e68a73115c
-DIST ImageMagick-7.0.3-6.tar.xz 8291984 SHA256 
740c6ea723fe6dca0fc91e36c5b37cd2c0dd2ad3ca65d10508476c9a24184557 SHA512 
ba288bdbfa3b51c11f8cca8c00509ae532c76079cf83033cddb09d0e13cd34dc576870b3946ac3d2260c496bc485a6a0dbe06bafb3eb335d61a4941ea2aa0b65
 WHIRLPOOL 
59ec8779d1c1379efa2d6f0b342209f4cf667930ec3e95d386aa4b316b2c370530a4ec69ad198fe29bf83d6095b0fcb43b3271b5257b99c44d3e4f6f7d3c4a95
+DIST ImageMagick-6.9.6-5.tar.xz 8762376 SHA256 
8d0122ba93a3f16d09cadcd4228f996c0048f0a44d92113d3d61150faa78f40c SHA512 
4cf8d24f78c9ab15e38bd71ca28357db885640bb65c8fe23eaddc18f217f796a159cf950036bb9e240ffc3a13729c66f99eab3b8adbc504ad110ef95cf0b385c
 WHIRLPOOL 
5c9674605dcbffb6b083023efb5414557e887404f840e8ee3c5c25945d338f98a6dad0519192098b1b199ff8a4a303b3103884418fcd1099e7c8ce9929e9a8db
+DIST ImageMagick-7.0.3-7.tar.xz 8290176 SHA256 
140b99f33a3326aed92132a7cd054ee962a6e2562064c68495640411aa4571d7 SHA512 
ade84f576ddd48ee6fe99d25139b879ba38da18f2b0e868109dd04263636b398fbd10c88660cfec9ac75ae500ba4690373f445677aa39908cea6845f3fcb5ad4
 WHIRLPOOL 
9875b70a5154d07c3f277df88fd64e5c126e5685fdb722a14f1f335b3c085ea475e9cd39b4e5d3b1f37fda6f0edb472fc4551d8c69ca122b05a8077d5b54e611

diff --git a/media-gfx/imagemagick/imagemagick-7.0.3.6.ebuild 
b/media-gfx/imagemagick/imagemagick-6.9.6.5.ebuild
similarity index 100%
copy from media-gfx/imagemagick/imagemagick-7.0.3.6.ebuild
copy to media-gfx/imagemagick/imagemagick-6.9.6.5.ebuild

diff --git a/media-gfx/imagemagick/imagemagick-7.0.3.6.ebuild 
b/media-gfx/imagemagick/imagemagick-7.0.3.7.ebuild
similarity index 100%
rename from media-gfx/imagemagick/imagemagick-7.0.3.6.ebuild
rename to media-gfx/imagemagick/imagemagick-7.0.3.7.ebuild



[gentoo-commits] repo/gentoo:master commit in: x11-wm/fluxbox/

2016-11-16 Thread Markus Meier
commit: 02a18b3f0ea87780aef404e4961e8cfbeb6a30e8
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:18:21 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:18:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02a18b3f

x11-wm/fluxbox: arm stable, bug #598298

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 x11-wm/fluxbox/fluxbox-1.3.7-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/fluxbox/fluxbox-1.3.7-r3.ebuild 
b/x11-wm/fluxbox/fluxbox-1.3.7-r3.ebuild
index 58f4b8b..e2385fa 100644
--- a/x11-wm/fluxbox/fluxbox-1.3.7-r3.ebuild
+++ b/x11-wm/fluxbox/fluxbox-1.3.7-r3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://sourceforge/fluxbox/${P}.tar.xz"
 HOMEPAGE="http://www.fluxbox.org;
 SLOT="0"
 LICENSE="MIT"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~x86-linux"
 
 RDEPEND="
!!<=x11-misc/fbdesk-1.2.1



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

2016-11-16 Thread Markus Meier
commit: 2ae35b42772f115c8250f9aa1ac3d3d443c07bf8
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:17:12 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:17:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ae35b42

dev-libs/libisoburn: arm stable, bug #598012

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/libisoburn/libisoburn-1.4.6.ebuild 
b/dev-libs/libisoburn/libisoburn-1.4.6.ebuild
index 882be32..dbd0a1c 100644
--- a/dev-libs/libisoburn/libisoburn-1.4.6.ebuild
+++ b/dev-libs/libisoburn/libisoburn-1.4.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2 GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ppc ~ppc64 ~x86"
 IUSE="acl cdio debug external-filters external-filters-setuid frontend-optional
launch-frontend launch-frontend-setuid libedit readline static-libs 
xattr zlib"
 



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

2016-11-16 Thread Markus Meier
commit: cdc184d844543102bcdd12dfcd56a0c310031165
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:16:26 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:16:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc184d8

dev-libs/libisofs: arm stable, bug #598012

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/libisofs/libisofs-1.4.6.ebuild 
b/dev-libs/libisofs/libisofs-1.4.6.ebuild
index c618109..6bfd5cd 100644
--- a/dev-libs/libisofs/libisofs-1.4.6.ebuild
+++ b/dev-libs/libisofs/libisofs-1.4.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="acl debug static-libs verbose-debug xattr zlib"
 
 RDEPEND="acl? ( virtual/acl )



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

2016-11-16 Thread Markus Meier
commit: f680635b7b9f0df2823f070ebe9161f5e9f671bd
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:15:43 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:15:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f680635b

dev-libs/libburn: arm stable, bug #598012

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/libburn/libburn-1.4.6.ebuild 
b/dev-libs/libburn/libburn-1.4.6.ebuild
index a0ccff1..e0fa2e8 100644
--- a/dev-libs/libburn/libburn-1.4.6.ebuild
+++ b/dev-libs/libburn/libburn-1.4.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://files.libburnia-project.org/releases/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="cdio debug static-libs track-src-odirect"
 
 RDEPEND="cdio? ( >=dev-libs/libcdio-0.83 )"



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

2016-11-16 Thread Markus Meier
commit: c9600e2e14be80ee36fb69ff86a8e3760dc7ff2f
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:14:47 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:14:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9600e2e

dev-libs/libcdio-paranoia: arm stable, bug #597926

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 dev-libs/libcdio-paranoia/libcdio-paranoia-0.93_p1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libcdio-paranoia/libcdio-paranoia-0.93_p1.ebuild 
b/dev-libs/libcdio-paranoia/libcdio-paranoia-0.93_p1.ebuild
index c64cff4..117796f 100644
--- a/dev-libs/libcdio-paranoia/libcdio-paranoia-0.93_p1.ebuild
+++ b/dev-libs/libcdio-paranoia/libcdio-paranoia-0.93_p1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -18,7 +18,7 @@ SRC_URI="mirror://gnu/${PN%-*}/${MY_P}.tar.gz"
 # clause "or later" so we use LGPL-2.1 without +
 LICENSE="GPL-3+ GPL-2+ LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~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 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="+cxx static-libs test"
 
 RDEPEND="app-eselect/eselect-cdparanoia



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

2016-11-16 Thread Markus Meier
commit: a8be5abc7f0f97ea95dc3e3cf8b66f77bd8a6f86
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:14:01 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:14:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8be5abc

dev-libs/libcdio: arm stable, bug #597926

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 dev-libs/libcdio/libcdio-0.93.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libcdio/libcdio-0.93.ebuild 
b/dev-libs/libcdio/libcdio-0.93.ebuild
index e748bea..22dbf2f 100644
--- a/dev-libs/libcdio/libcdio-0.93.ebuild
+++ b/dev-libs/libcdio/libcdio-0.93.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/15" # subslot is based on SONAME
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~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 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 IUSE="cddb +cxx minimal static-libs test"
 
 RDEPEND="



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

2016-11-16 Thread Markus Meier
commit: c5cbf45a75c1124399ad189aa8a9ab63ab01870e
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:13:06 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:13:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5cbf45a

app-text/xapian-omega: arm stable, bug #597894

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 app-text/xapian-omega/xapian-omega-1.2.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/xapian-omega/xapian-omega-1.2.24.ebuild 
b/app-text/xapian-omega/xapian-omega-1.2.24.ebuild
index e9f8412..9a54d54 100644
--- a/app-text/xapian-omega/xapian-omega-1.2.24.ebuild
+++ b/app-text/xapian-omega/xapian-omega-1.2.24.ebuild
@@ -11,7 +11,7 @@ S="${WORKDIR}/xapian-omega-${PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE=""
 
 DEPEND="dev-libs/xapian:0/1.2.22



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

2016-11-16 Thread Markus Meier
commit: 4ff23149fb02dafd0a02152e9534e4adb45bc944
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:12:21 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:12:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ff23149

dev-libs/xapian-bindings: arm stable, bug #597894

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 dev-libs/xapian-bindings/xapian-bindings-1.2.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xapian-bindings/xapian-bindings-1.2.24.ebuild 
b/dev-libs/xapian-bindings/xapian-bindings-1.2.24.ebuild
index 6584951..566d21c 100644
--- a/dev-libs/xapian-bindings/xapian-bindings-1.2.24.ebuild
+++ b/dev-libs/xapian-bindings/xapian-bindings-1.2.24.ebuild
@@ -23,7 +23,7 @@ SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 #IUSE="java lua mono perl php python ruby tcl"
 #REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )"
 IUSE="java lua perl php python ruby tcl"



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

2016-11-16 Thread Markus Meier
commit: c4aee05de64bd0d76f85bfb543194433dfe4bc7f
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:11:22 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:11:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4aee05d

dev-libs/xapian: arm stable, bug #597894

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/dev-libs/xapian/xapian-1.2.24.ebuild 
b/dev-libs/xapian/xapian-1.2.24.ebuild
index 1928d0d..ea6ef93 100644
--- a/dev-libs/xapian/xapian-1.2.24.ebuild
+++ b/dev-libs/xapian/xapian-1.2.24.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0/1.2.22" # ABI version of libxapian.so, prefixed with 1.2.
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="doc static-libs -cpu_flags_x86_sse +cpu_flags_x86_sse2 +brass +chert 
+inmemory"
 
 DEPEND="sys-libs/zlib"



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

2016-11-16 Thread Markus Meier
commit: f214e6599bde32c7e05fd02d29f5c793f9c4a9fa
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:10:28 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:10:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f214e659

sys-apps/logwatch: arm stable, bug #597828

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/sys-apps/logwatch/logwatch-7.4.3.ebuild 
b/sys-apps/logwatch/logwatch-7.4.3.ebuild
index 175dc56..0c47128 100644
--- a/sys-apps/logwatch/logwatch-7.4.3.ebuild
+++ b/sys-apps/logwatch/logwatch-7.4.3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 IUSE=""
 
 DEPEND=""



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

2016-11-16 Thread Markus Meier
commit: 59c50e7789bf1a069561405b4e2e4f72745510b5
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:09:31 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:09:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59c50e77

media-libs/libwebp: arm stable, bug #597756

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/media-libs/libwebp/libwebp-0.4.2.ebuild 
b/media-libs/libwebp/libwebp-0.4.2.ebuild
index 03d204d..16d11f9 100644
--- a/media-libs/libwebp/libwebp-0.4.2.ebuild
+++ b/media-libs/libwebp/libwebp-0.4.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://downloads.webmproject.org/releases/webp/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0/5" # subslot = libwebp soname version
-KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~m68k-mint"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x64-macos ~m68k-mint"
 IUSE="experimental gif +jpeg opengl +png static-libs swap-16bit-csp tiff"
 
 # TODO: dev-lang/swig bindings in swig/ subdirectory



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

2016-11-16 Thread Markus Meier
commit: 67e95b2c780d65b066fcc7782fc360883b2b0797
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:08:34 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:08:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67e95b2c

net-libs/libmicrohttpd: arm stable, bug #597392

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild 
b/net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild
index 6ff69e3..64d9a48 100644
--- a/net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild
+++ b/net-libs/libmicrohttpd/libmicrohttpd-0.9.51.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnu/${PN}/${MY_P}.tar.gz"
 
 LICENSE="LGPL-2.1"
 SLOT="0/12"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="epoll messages ssl static-libs test"
 
 RDEPEND="ssl? (



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

2016-11-16 Thread Markus Meier
commit: 6427313a5f49425b4b59e5cbd08fa98e4bb5ecf6
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:07:41 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:07:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6427313a

media-gfx/gpicview: arm stable, bug #597350

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/media-gfx/gpicview/gpicview-0.2.5.ebuild 
b/media-gfx/gpicview/gpicview-0.2.5.ebuild
index a1e92e8..6809e0f 100644
--- a/media-gfx/gpicview/gpicview-0.2.5.ebuild
+++ b/media-gfx/gpicview/gpicview-0.2.5.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/lxde/${P}.tar.xz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~x86 ~arm-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~ppc ~x86 ~arm-linux ~x86-linux"
 IUSE=""
 
 RDEPEND="virtual/jpeg:0



[gentoo-commits] repo/gentoo:master commit in: dev-tex/cjk-latex/

2016-11-16 Thread Markus Meier
commit: 67bf159542f612b8a296b4a3d48d7012d34da0c3
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:06:46 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:06:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67bf1595

dev-tex/cjk-latex: arm stable, bug #596938

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild 
b/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild
index 776d38f..e4220cc 100644
--- a/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild
+++ b/dev-tex/cjk-latex/cjk-latex-4.8.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,7 +17,7 @@ SRC_URI="ftp://ftp.ffii.org/pub/cjk/${MY_P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux"
 IUSE="doc emacs"
 
 RDEPEND="virtual/latex-base



[gentoo-commits] repo/gentoo:master commit in: net-mail/dovecot/

2016-11-16 Thread Markus Meier
commit: 2da056bfaefbe6b003ff33748bc1bb4688d064fe
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:05:48 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:05:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2da056bf

net-mail/dovecot: arm stable, bug #596820

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 net-mail/dovecot/dovecot-2.2.25.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-mail/dovecot/dovecot-2.2.25.ebuild 
b/net-mail/dovecot/dovecot-2.2.25.ebuild
index 330cdce..55aa84e 100644
--- a/net-mail/dovecot/dovecot-2.2.25.ebuild
+++ b/net-mail/dovecot/dovecot-2.2.25.ebuild
@@ -25,7 +25,7 @@ HOMEPAGE="http://www.dovecot.org/;
 
 SLOT="0"
 LICENSE="LGPL-2.1 MIT"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ppc ppc64 ~s390 ~x86"
+KEYWORDS="alpha ~amd64 arm hppa ~ppc ppc64 ~s390 ~x86"
 
 IUSE_DOVECOT_AUTH="kerberos ldap mysql pam postgres sqlite vpopmail"
 IUSE_DOVECOT_STORAGE="cydir imapc +maildir mbox mdbox pop3c sdbox"



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

2016-11-16 Thread Aric Belsito
commit: 9bf39e197d68ef9128530c4b4bf76d5ec0cf3f75
Author: Aric Belsito  gmail  com>
AuthorDate: Wed Nov 16 21:05:31 2016 +
Commit: Aric Belsito  gmail  com>
CommitDate: Wed Nov 16 21:05:31 2016 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=9bf39e19

app-emulation/qemu: Sync with tree.

 app-emulation/qemu/Manifest |   3 +-
 app-emulation/qemu/qemu-2.7.0-r5.ebuild | 709 
 app-emulation/qemu/qemu-2.7.0-r7.ebuild |   5 +-
 3 files changed, 3 insertions(+), 714 deletions(-)

diff --git a/app-emulation/qemu/Manifest b/app-emulation/qemu/Manifest
index 9e5c8db..89b8304 100644
--- a/app-emulation/qemu/Manifest
+++ b/app-emulation/qemu/Manifest
@@ -36,6 +36,5 @@ AUX qemu-2.7.0-CVE-2016-9106.patch 835 SHA256 
594213b4200ae109dfbc6ec8e536d275d7
 AUX qemu-2.7.0-configure-ifunc.patch 517 SHA256 
40f6183f1f490216855e83cf03bf21ec8d23786acf83cda21292fea92776d898 SHA512 
e34476b5fc5039091862dc9e93c47b69e203e7e394092e7e0bda467b7523e0b5b743c2c6eaf1f36fad3ee743278e321a50d356b6365e2340280556ca6d9b32ad
 WHIRLPOOL 
cb6f92a70f91557f14a0f6719d1b3a4dee9cfcb5c34aa897eee0ad48d13c45255252666d826ce00f3183da86b9b265e0dd93aa9b85210cde2a7ce3de56644e59
 AUX qemu-binfmt.initd-r1 7966 SHA256 
5b4b432aa1e44f387c9eb789de0ec6322741fd36dd241f76520f17c6cd6ac49b SHA512 
2ba0bff6eb2b6bac4ed440f793771ce9551cad48e38bddb6cf04f804faac2407e80879f66771910344ddcea45f0014095dcc8bfeb0aad5085ef048fd3612dbd8
 WHIRLPOOL 
a2a1fb830a970757d1e203378c7d382b161b1040f3b8aaf0f22bb3b5e46467eff395474ff40d93c9f133bab307b345a6f75d63eae9f8dd8daf67324db41032f9
 DIST qemu-2.7.0.tar.bz2 26867760 SHA256 
326e739506ba690daf69fc17bd3913a6c313d9928d743bd8eddb82f403f81e53 SHA512 
654acaa7b3724a288e5d7e2a26ab780d9c9ed9f647fba00a906cbaffbe9d58fd666f2d962514aa2c5b391b4c53811ac3170d2eb51727f090bd19dfe45ca9a9db
 WHIRLPOOL 
dcb3e5f7da89dd8e14d636d7ebd476e076e0043880bb9ea3fb1c03cb4bcd4e5c7d3c4719da26c3ce521e3a3db5ae671e86f198ac1bc3474e774d75504fef8b8d
-EBUILD qemu-2.7.0-r5.ebuild 22219 SHA256 
3241db5ffacb81638a3b9dcd01676d59bc5abe87ef374baa44685231d7cb6de2 SHA512 
2dbbf9f2a1eab0b9d52dd3609f5bac95f511a5f243c3def7d6b074bda97ef1383c2afc3290261f81a7af25ea7021eed4826da73a244bcad2e9677c7909c38618
 WHIRLPOOL 
591b38c5bba7b5566dfc2fce30f398153aec9b0986baf8bb82e83b5f68ce20dc4b0fb000e511355dca058ac8c7355b3add2c00e0db9573e6f507ad65ce451d86
-EBUILD qemu-2.7.0-r7.ebuild 22531 SHA256 
ac2251d5bbf850bee8a544a4dd7c05f3c59d95004d8f2ce06e772b494df7b1ec SHA512 
2dae9e789691d6be338f9cff9b3b0abbc04cdadf16c9d8553b9736c8908fbe9756a9de78740250ad96e1c304ec5e141d12a08d2fb625b3a818e45f5df6127cef
 WHIRLPOOL 
bf230a4ac6a1c182f0fc0d58a0041c214657807f6340e306b9d63f4a27356813f63f9df7802468f01abda7e776fc3025dff5742d805582ada4517f6b3e1d9728
+EBUILD qemu-2.7.0-r7.ebuild 22495 SHA256 
a606d5b6805d24191245b4191c1f62a09096d8ee283c62629f038851b4c8e6c5 SHA512 
c45e516c4c45b5a1eaec06d046cebf129f1422c2d5910699c0a367a4c8c7d49e323a6addc765e1ec57209df12270e196169e52a7618afef28019be06feff70ea
 WHIRLPOOL 
94ae6ab13fc03450ce5b6b0e5840e488401116d6bf60ec411cc01f39f2d10931bd65572f25bdf958e9f94bb4f6582795018039b5b4c988fa3bd5dee928014c65
 MISC metadata.xml 3925 SHA256 
d1c219b7da0cbf77919cd1e055acbb3f6788a574fd802c98a43c89a411697b36 SHA512 
3ff45d1c8ede12b4eedc7d01f39777b76a1cbd0ba9364299dec99d4b4a05cade5784d6f6e50197d5b5ae1f1b8e831c49da195eb53263c49b7d16aec8ee28b6e6
 WHIRLPOOL 
bc25783fac0f3f13318834cc535404af9af20de16c7aeec222e59dc2ed7740ac5e767b329a5bcd6356d0cbae2428e278515f1446aa8ecb87a873bf4dbe04bf41

diff --git a/app-emulation/qemu/qemu-2.7.0-r5.ebuild 
b/app-emulation/qemu/qemu-2.7.0-r5.ebuild
deleted file mode 100644
index 5872941..000
--- a/app-emulation/qemu/qemu-2.7.0-r5.ebuild
+++ /dev/null
@@ -1,709 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE="ncurses,readline"
-
-PLOCALES="bg de_DE fr_FR hu it tr zh_CN"
-
-inherit eutils flag-o-matic linux-info toolchain-funcs multilib python-r1 \
-   user udev fcaps readme.gentoo-r1 pax-utils l10n
-
-if [[ ${PV} = ** ]]; then
-   EGIT_REPO_URI="git://git.qemu.org/qemu.git"
-   inherit git-2
-   SRC_URI=""
-else
-   SRC_URI="http://wiki.qemu-project.org/download/${P}.tar.bz2;
-   KEYWORDS="amd64 ~arm64 ~ppc ~ppc64 x86 ~x86-fbsd"
-fi
-
-DESCRIPTION="QEMU + Kernel-based Virtual Machine userland tools"
-HOMEPAGE="http://www.qemu.org http://www.linux-kvm.org;
-
-LICENSE="GPL-2 LGPL-2 BSD-2"
-SLOT="0"
-IUSE="accessibility +aio alsa bluetooth bzip2 +caps +curl debug +fdt glusterfs 
\
-gnutls gtk gtk2 infiniband iscsi +jpeg \
-kernel_linux kernel_FreeBSD lzo ncurses nfs nls numa opengl +pin-upstream-blobs
-+png pulseaudio python \
-rbd sasl +seccomp sdl sdl2 selinux smartcard snappy spice ssh static 
static-softmmu
-static-user systemtap tci test +threads usb usbredir +uuid vde +vhost-net \
-virgl virtfs +vnc vte xattr xen xfs"
-

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

2016-11-16 Thread Markus Meier
commit: 71c37f8f06ac11fd8ec51753207199396f672a87
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:04:31 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:04:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71c37f8f

app-text/libexttextcat: arm stable, bug #596820

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

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

diff --git a/app-text/libexttextcat/libexttextcat-3.4.4.ebuild 
b/app-text/libexttextcat/libexttextcat-3.4.4.ebuild
index bc208b4..6fba136 100644
--- a/app-text/libexttextcat/libexttextcat-3.4.4.ebuild
+++ b/app-text/libexttextcat/libexttextcat-3.4.4.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz;
 
 LICENSE="BSD-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~arm hppa ~ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm hppa ~ppc ppc64 ~s390 x86 ~amd64-linux ~x86-linux"
 IUSE="static-libs"
 
 DEPEND=""



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

2016-11-16 Thread Markus Meier
commit: d413db207a52103bebf57537b06cfbb53a378ec8
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:03:33 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:03:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d413db20

sys-auth/consolekit: arm stable, bug #596264

Package-Manager: portage-2.3.2
RepoMan-Options: --include-arches="arm"

 sys-auth/consolekit/consolekit-1.1.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/consolekit/consolekit-1.1.0-r1.ebuild 
b/sys-auth/consolekit/consolekit-1.1.0-r1.ebuild
index 8a5819b..b66032f 100644
--- a/sys-auth/consolekit/consolekit-1.1.0-r1.ebuild
+++ b/sys-auth/consolekit/consolekit-1.1.0-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/releases/download/${PV}/${MY_P}.ta
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm hppa ~ppc ppc64 ~x86 ~amd64-fbsd ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 arm hppa ~ppc ppc64 ~x86 ~amd64-fbsd ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
 IUSE="acl cgroups debug doc kernel_linux pam pm-utils policykit selinux test"
 
 COMMON_DEPEND=">=dev-libs/glib-2.40:2=[dbus]



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

2016-11-16 Thread Markus Meier
commit: 62c9bb3bcd13f58ed0e1548cae655f3565c42de0
Author: Markus Meier  gentoo  org>
AuthorDate: Wed Nov 16 21:00:47 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Wed Nov 16 21:01:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62c9bb3b

media-gfx/pqiv: version bump, bug #542352

Package-Manager: portage-2.3.2

 media-gfx/pqiv/Manifest|  1 +
 media-gfx/pqiv/pqiv-2.6.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/media-gfx/pqiv/Manifest b/media-gfx/pqiv/Manifest
index 00d42ff..c72ffb2 100644
--- a/media-gfx/pqiv/Manifest
+++ b/media-gfx/pqiv/Manifest
@@ -1 +1,2 @@
 DIST pqiv-2.2.tar.gz 52414 SHA256 
88d625de4437c8e65a49d74e993df5debf224ecf726365e138bf90a602b8b74b SHA512 
2f504e228607b4b7b3cb341def5a104c86d932dc93f54b68893acbf5becc9cfa5c4d7549ead8ee25c4cb1f6a3cf13623eb3836e368299de2a21624d9773458bc
 WHIRLPOOL 
0df549d3cc686806413741e453335e7e54f1e194c4296ccc9a72f9b6805b5f83514ee6dbdb45478753c91d36b7baf6b1bf88abb5f84ea9fb1c1bf9643c4fe2f9
+DIST pqiv-2.6.tar.gz 96050 SHA256 
f0c0d803724cdde2ccac1dc8d7e8928bdc633e758914a67320734a6961ee099c SHA512 
b5c811bdd48b5252e23c3d59147af2a06adb35527e28b6129d10e5c4c4c01e5b030b860142c9db6eb35b5a1dbbc6d0814275ce08fa93da773ae08aac7da6814f
 WHIRLPOOL 
bbd69ec79afd08fb5bf95106fbac491f3a869065d101ba1e0ab346eebd261f6dca342233084b8891efd3dbd124cf3cb0271e7a67a57325f243961cab1bc85b51

diff --git a/media-gfx/pqiv/pqiv-2.6.ebuild b/media-gfx/pqiv/pqiv-2.6.ebuild
new file mode 100644
index ..282572f
--- /dev/null
+++ b/media-gfx/pqiv/pqiv-2.6.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit linux-info toolchain-funcs
+
+DESCRIPTION="Modern rewrite of Quick Image Viewer"
+HOMEPAGE="https://github.com/phillipberndt/pqiv 
http://www.pberndt.com/Programme/Linux/pqiv/;
+SRC_URI="https://github.com/phillipberndt/pqiv/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="ffmpeg imagemagick kernel_linux libav pdf postscript"
+
+RDEPEND=">=dev-libs/glib-2.8:2
+   >=x11-libs/cairo-1.6
+   x11-libs/gtk+:3
+   ffmpeg? (
+   !libav? ( media-video/ffmpeg:0= )
+   libav? ( media-video/libav:0= )
+   )
+   imagemagick? ( media-gfx/imagemagick:0= )
+   pdf? ( app-text/poppler:0= )
+   postscript? ( app-text/libspectre:0= )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+DOCS=( "README.markdown" )
+
+pkg_setup() {
+   if use kernel_linux; then
+   CONFIG_CHECK="~INOTIFY_USER"
+   linux-info_pkg_setup
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i \
+   -e "s:/lib/:/$(get_libdir)/:g" \
+   GNUmakefile || die
+}
+
+src_configure() {
+   local backends="gdkpixbuf"
+   use ffmpeg || use libav && backends="${backends},libav"
+   use imagemagick && backends="${backends},magick"
+   use pdf && backends="${backends},poppler"
+   use postscript && backends="${backends},spectre"
+
+   ./configure \
+   --backends-build=shared \
+   --backends=${backends} \
+   --prefix="${EPREFIX}/usr" \
+   --destdir="${ED}" \
+   || die
+}
+
+src_compile() {
+   tc-export CC
+   emake CFLAGS="${CFLAGS}"
+}



[gentoo-commits] repo/gentoo:master commit in: sci-physics/espresso/

2016-11-16 Thread Christoph Junghans
commit: 2a73c4db0593360558c423674a37a147dfecb6e2
Author: Christoph Junghans  gentoo  org>
AuthorDate: Wed Nov 16 20:53:01 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Wed Nov 16 20:53:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a73c4db

sci-physics/espresso: fix deps

Package-Manager: portage-2.3.0

 sci-physics/espresso/espresso-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-physics/espresso/espresso-.ebuild 
b/sci-physics/espresso/espresso-.ebuild
index 48c5e8d..6a10134 100644
--- a/sci-physics/espresso/espresso-.ebuild
+++ b/sci-physics/espresso/espresso-.ebuild
@@ -41,7 +41,7 @@ RDEPEND="
cuda? ( >=dev-util/nvidia-cuda-toolkit-4.2.9-r1 )
fftw? ( sci-libs/fftw:3.0 )
dev-libs/boost:=[mpi]
-   hdf5? ( sci-libs/hdf5 )
+   hdf5? ( sci-libs/hdf5:= )
packages? ( dev-tcltk/tcllib )"
 
 DEPEND="${RDEPEND}



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

2016-11-16 Thread Jason Donenfeld
commit: 94924e5875c223bf17e5523d5b2b0b77e783bb42
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Nov 16 20:50:01 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Wed Nov 16 20:50:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94924e58

net-misc/wireguard: bump

Package-Manager: portage-2.3.2

 net-misc/wireguard/Manifest | 2 +-
 .../{wireguard-0.0.20161116.ebuild => wireguard-0.0.20161116.1.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/wireguard/Manifest b/net-misc/wireguard/Manifest
index ff0f8db..a2bb65a1 100644
--- a/net-misc/wireguard/Manifest
+++ b/net-misc/wireguard/Manifest
@@ -1 +1 @@
-DIST WireGuard-experimental-0.0.20161116.tar.xz 119836 SHA256 
783a174c06c70987e43d1e1258df9e44a846b19b13395b34161fc7668259184d SHA512 
f216a1e6605ed6f68d4900e440ee5ed966bb798a7e69c4e5661b1cb0460d982a2d2d16814e94da14556b9bbc36d29d17cb56c8f6ddebd56d67d2da15c6faec0c
 WHIRLPOOL 
b0d7abe03860be03c7edc5a608e5c1d8de84e82f252fbb838ebc5780851792f28f0a16d63e95233a5050cd3373a83a8222e67d433d5706cf5bc2c905b14cfb82
+DIST WireGuard-experimental-0.0.20161116.1.tar.xz 119748 SHA256 
730d9d919e1942cf83e59dcb8c6ee6ac6696c62ce363c4802474774a5db8238d SHA512 
abfe4e973ea5f829e90c929994f359fcc814a72d8fd92274a0921d5756ecee8b1c8e3a7b0d97947ae37915f4c7437c1cdee59ff88dc53d124fbb1a6d1f22e8d8
 WHIRLPOOL 
8bcfa59370240f61b2818e0509962a987fa2d1ddf87c9c0f23568edc806719a9f6293157e0d23f54a965fa81bbddee0622491c38400f11a8c128906fb47a6489

diff --git a/net-misc/wireguard/wireguard-0.0.20161116.ebuild 
b/net-misc/wireguard/wireguard-0.0.20161116.1.ebuild
similarity index 100%
rename from net-misc/wireguard/wireguard-0.0.20161116.ebuild
rename to net-misc/wireguard/wireguard-0.0.20161116.1.ebuild



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

2016-11-16 Thread Pacho Ramos
commit: 7c4dfcde57c9fb01cf7cc075cef74b4c60f5acc4
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 20:15:30 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:32:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c4dfcde

dev-util/geany: amd64/x86 stable, bug #599264

Package-Manager: portage-2.3.2

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

diff --git a/dev-util/geany/geany-1.28.ebuild b/dev-util/geany/geany-1.28.ebuild
index 7fc0697..4bbdce0 100644
--- a/dev-util/geany/geany-1.28.ebuild
+++ b/dev-util/geany/geany-1.28.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://download.geany.org/${P}.tar.bz2;
 
 LICENSE="GPL-2+ HPND"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd ~amd64-linux 
~x86-linux"
 IUSE="gtk3 +vte"
 
 RDEPEND=">=dev-libs/glib-2.32:2



[gentoo-commits] repo/gentoo:master commit in: net-voip/ekiga/

2016-11-16 Thread Pacho Ramos
commit: 96b7a02ded98b52421859ad3faf530e33e6e1cf7
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 20:14:58 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:32:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96b7a02d

net-voip/ekiga: amd64/x86 stable, bug #598916

Package-Manager: portage-2.3.2

 net-voip/ekiga/ekiga-4.0.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-voip/ekiga/ekiga-4.0.1-r1.ebuild 
b/net-voip/ekiga/ekiga-4.0.1-r1.ebuild
index 8652776..a69c4dd 100644
--- a/net-voip/ekiga/ekiga-4.0.1-r1.ebuild
+++ b/net-voip/ekiga/ekiga-4.0.1-r1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.ekiga.org/;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="dbus debug doc eds h323 ldap libnotify cpu_flags_x86_mmx pulseaudio +shm 
v4l xv zeroconf"
 
 # gconf is a hard requirement until this bug is fixed:



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

2016-11-16 Thread Pacho Ramos
commit: 261a4f117bf4cadddb9198c133c4551abf36895d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 20:13:51 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:32:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=261a4f11

dev-libs/libpcre2: amd64/x86 stable, bug #599218

Package-Manager: portage-2.3.2

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

diff --git a/dev-libs/libpcre2/libpcre2-10.22.ebuild 
b/dev-libs/libpcre2/libpcre2-10.22.ebuild
index 4532930..21e23f5 100644
--- a/dev-libs/libpcre2/libpcre2-10.22.ebuild
+++ b/dev-libs/libpcre2/libpcre2-10.22.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="bzip2 +jit libedit pcre16 pcre32 +readline +recursion-limit static-libs 
unicode zlib"
 REQUIRED_USE="?? ( libedit readline )"
 



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

2016-11-16 Thread Pacho Ramos
commit: 2f0f378186de7751847d6320dfe396f2ef314447
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 20:16:08 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:32:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0f3781

dev-util/geany-plugins: amd64/x86 stable, bug #599264

Package-Manager: portage-2.3.2

 dev-util/geany-plugins/geany-plugins-1.28-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/geany-plugins/geany-plugins-1.28-r1.ebuild 
b/dev-util/geany-plugins/geany-plugins-1.28-r1.ebuild
index 6a97819..74e2f5b 100644
--- a/dev-util/geany-plugins/geany-plugins-1.28-r1.ebuild
+++ b/dev-util/geany-plugins/geany-plugins-1.28-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://plugins.geany.org/${PN}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 IUSE="gtk3 +autoclose +automark +commander ctags debugger +defineformat 
enchant git gpg gtkspell lua multiterm nls +overview python scope soup"
 REQUIRED_USE="



[gentoo-commits] repo/gentoo:master commit in: sys-fs/udisks/files/, sys-fs/udisks/

2016-11-16 Thread Mike Frysinger
commit: fdf00e407a5e6a674a07e983a8f2ce3f3b04185e
Author: Mike Frysinger  gentoo  org>
AuthorDate: Wed Nov 16 20:19:32 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Wed Nov 16 20:20:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdf00e40

sys-fs/udisks: fix old SLOT=0 building w/newer glibc too #580230

 sys-fs/udisks/files/udisks-1.0.5-sysmacros.patch | 72 
 sys-fs/udisks/udisks-1.0.5-r1.ebuild |  3 +-
 2 files changed, 74 insertions(+), 1 deletion(-)

diff --git a/sys-fs/udisks/files/udisks-1.0.5-sysmacros.patch 
b/sys-fs/udisks/files/udisks-1.0.5-sysmacros.patch
new file mode 100644
index ..96ce943
--- /dev/null
+++ b/sys-fs/udisks/files/udisks-1.0.5-sysmacros.patch
@@ -0,0 +1,72 @@
+https://bugs.gentoo.org/580230
+https://bugs.freedesktop.org/95028
+
+From 245093a15abe985b1746603c00084cb972fb71ae Mon Sep 17 00:00:00 2001
+From: Mike Frysinger 
+Date: Tue, 19 Apr 2016 23:04:32 -0400
+Subject: [PATCH] include sys/sysmacros.h for major/minor/makedev
+
+Linux C libraries are moving away from implicit includes of
+sys/sysmacros.h, so pull in this header directly in the files
+that use these funcs.
+
+--- a/src/daemon.c
 b/src/daemon.c
+@@ -38,6 +38,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+--- a/src/device.c
 b/src/device.c
+@@ -28,6 +28,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+--- a/src/mount-monitor.c
 b/src/mount-monitor.c
+@@ -27,6 +27,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+--- a/src/probers/part-id.c
 b/src/probers/part-id.c
+@@ -23,6 +23,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+--- a/tools/udisks.c
 b/tools/udisks.c
+@@ -28,6 +28,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+--- a/tools/umount-udisks.c
 b/tools/umount-udisks.c
+@@ -28,6 +28,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/sys-fs/udisks/udisks-1.0.5-r1.ebuild 
b/sys-fs/udisks/udisks-1.0.5-r1.ebuild
index 5273b24..5404e75 100644
--- a/sys-fs/udisks/udisks-1.0.5-r1.ebuild
+++ b/sys-fs/udisks/udisks-1.0.5-r1.ebuild
@@ -53,7 +53,8 @@ src_prepare() {
epatch \
"${FILESDIR}"/${PN}-1.0.2-ntfs-3g.patch \
"${FILESDIR}"/${PN}-1.0.4-revert-floppy.patch \
-   "${FILESDIR}"/${PN}-1.0.5-stat-includes.patch
+   "${FILESDIR}"/${PN}-1.0.5-stat-includes.patch \
+   "${FILESDIR}"/${PN}-1.0.5-sysmacros.patch
 
sed -i -e "s:/lib/udev:$(get_udevdir):" data/80-udisks.rules || die
 



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

2016-11-16 Thread Pacho Ramos
commit: 3880adcf43afabbba1be7624ae553feb09c36c30
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 19:46:08 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:05:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3880adcf

media-gfx/pinta: Update live ebuild (#598854 by Alessandro Calorì)

Package-Manager: portage-2.3.2

 media-gfx/pinta/pinta-.ebuild | 27 ---
 1 file changed, 8 insertions(+), 19 deletions(-)

diff --git a/media-gfx/pinta/pinta-.ebuild 
b/media-gfx/pinta/pinta-.ebuild
index d95905d..ad455c4 100644
--- a/media-gfx/pinta/pinta-.ebuild
+++ b/media-gfx/pinta/pinta-.ebuild
@@ -1,43 +1,32 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-inherit autotools fdo-mime gnome2-utils git-2 mono
+inherit fdo-mime mono-env gnome2-utils autotools git-2
 
 DESCRIPTION="Simple Painting for Gtk"
 HOMEPAGE="http://pinta-project.com;
-EGIT_REPO_URI="git://github.com/PintaProject/Pinta.git"
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/PintaProject/Pinta.git;
 
 LICENSE="MIT CC-BY-3.0"
 SLOT="0"
 KEYWORDS=""
 
-COMMON_DEPEND="dev-dotnet/atk-sharp:2
-   dev-dotnet/gdk-sharp:2
-   dev-dotnet/glib-sharp:2
-   dev-dotnet/gtk-sharp:2
-   dev-dotnet/mono-addins[gtk]
-   dev-dotnet/pango-sharp:2
-   dev-lang/mono"
+COMMON_DEPEND="dev-lang/mono
+   dev-dotnet/mono-addins[gtk]"
 RDEPEND="${COMMON_DEPEND}
x11-libs/cairo[X]
x11-libs/gdk-pixbuf[X,jpeg,tiff]
x11-themes/gnome-icon-theme"
 DEPEND="${COMMON_DEPEND}
dev-util/intltool
-   virtual/pkgconfig"
+   virtual/pkgconfig
+   sys-devel/gettext"
 
 src_prepare() {
-   local i
-   if [[ -n "${LINGUAS+x}" ]] ; then
-   for i in $(cd "${S}"/po ; echo *.po) ; do
-   if ! has ${i%.po} ${LINGUAS} ; then
-   sed -i -e "/po\/${i%.po}.po/{N;N;d;}" 
Pinta.Install.proj || die
-   fi
-   done
-   fi
eautoreconf
 }
 



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

2016-11-16 Thread Pacho Ramos
commit: 19b6dc259acf6a00d42957ad5cd17ab981a2081d
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 20:05:02 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:05:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19b6dc25

www-client/links: Fix libevent automagic dep (#573360 by Duncan)

Package-Manager: portage-2.3.2

 www-client/links/links-2.12-r3.ebuild | 136 ++
 www-client/links/metadata.xml |   3 +
 2 files changed, 139 insertions(+)

diff --git a/www-client/links/links-2.12-r3.ebuild 
b/www-client/links/links-2.12-r3.ebuild
new file mode 100644
index ..35e9c8d
--- /dev/null
+++ b/www-client/links/links-2.12-r3.ebuild
@@ -0,0 +1,136 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools eutils fdo-mime
+
+DEBIAN_REVISION=2.10-2
+
+DESCRIPTION="A fast and lightweight web browser running in both graphics and 
text mode"
+HOMEPAGE="http://links.twibright.com/;
+SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2
+   
mirror://debian/pool/main/${PN:0:1}/${PN}2/${PN}2_${DEBIAN_REVISION}.debian.tar.xz"
+
+LICENSE="GPL-2"
+SLOT="2"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris 
~x64-solaris ~x86-solaris"
+IUSE="bzip2 directfb fbcon gpm ipv6 jpeg libevent libressl livecd lzma ssl 
suid svga tiff unicode X zlib"
+
+GRAPHICS_DEPEND="media-libs/libpng:0="
+
+RDEPEND="bzip2? ( app-arch/bzip2 )
+   directfb? (
+   ${GRAPHICS_DEPEND}
+   dev-libs/DirectFB
+   )
+   fbcon? ( ${GRAPHICS_DEPEND} )
+   gpm? ( sys-libs/gpm )
+   jpeg? ( virtual/jpeg:0 )
+   libevent? ( dev-libs/libevent:0= )
+   livecd? (
+   ${GRAPHICS_DEPEND}
+   sys-libs/gpm
+   virtual/jpeg:0
+   )
+   lzma? ( app-arch/xz-utils )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   )
+   svga? (
+   ${GRAPHICS_DEPEND}
+   media-libs/svgalib
+   )
+   tiff? ( media-libs/tiff:0 )
+   X? (
+   ${GRAPHICS_DEPEND}
+   x11-libs/libXext
+   )
+   zlib? ( sys-libs/zlib )"
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   fbcon? ( virtual/os-headers )
+   livecd? ( virtual/os-headers )"
+
+REQUIRED_USE="!livecd? ( fbcon? ( gpm ) )
+   svga? ( suid )"
+
+DOCS=( AUTHORS BRAILLE_HOWTO ChangeLog KEYS NEWS README SITES )
+
+src_prepare() {
+   default
+
+   if use unicode; then
+   pushd intl >/dev/null
+   ./gen-intl || die
+   ./synclang || die
+   popd >/dev/null
+   fi
+
+   # error: conditional "am__fastdepCXX" was never defined (for 
eautoreconf)
+   sed -i \
+   -e '/AC_PROG_CXX/s:dnl ::' \
+   -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
+   configure.in || die #467020
+
+   # Upstream configure produced by broken autoconf-2.13. This also fixes
+   # toolchain detection.
+   mv configure.in configure.ac || die
+   eautoreconf #131440 and #103483#c23
+}
+
+src_configure() {
+   local myconf
+
+   if use livecd; then
+   export ac_cv_lib_gpm_Gpm_Open=yes
+   myconf+=' --with-fb --with-libjpeg'
+   else
+   export ac_cv_lib_gpm_Gpm_Open=$(usex gpm)
+   fi
+
+   if use X || use fbcon || use directfb || use svga || use livecd; then
+   myconf+=' --enable-graphics'
+   fi
+
+   econf \
+   $(use_with ipv6) \
+   $(use_with ssl) \
+   $(use_with zlib) \
+   $(use_with bzip2) \
+   $(use_with lzma) \
+   $(use_with svga svgalib) \
+   $(use_with X x) \
+   $(use_with fbcon fb) \
+   $(use_with directfb) \
+   $(use_with libevent) \
+   $(use_with jpeg libjpeg) \
+   $(use_with tiff libtiff) \
+   ${myconf}
+}
+
+src_install() {
+   HTML_DOCS="doc/links_cal/*"
+   default
+
+   if use X; then
+   newicon Links_logo.png links.png
+   make_desktop_entry 'links -g %u' Links links 
'Network;WebBrowser'
+   local d="${ED}"/usr/share/applications
+   echo 'MimeType=x-scheme-handler/http;' >> "${d}"/*.desktop
+   use ssl && sed -i -e 
's:x-scheme-handler/http;:/https;:' \
+   "${d}"/*.desktop
+   fi
+
+   use suid && fperms 4755 /usr/bin/links
+}
+
+pkg_postinst() {
+   use X && fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   use X && 

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

2016-11-16 Thread Pacho Ramos
commit: 90c198eaf22ad2c8e2a1d351c9395f7c5065ecf0
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 20:02:58 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:05:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90c198ea

www-client/links: Drop old

Package-Manager: portage-2.3.2

 www-client/links/Manifest|   4 --
 www-client/links/links-2.10.ebuild   | 131 ---
 www-client/links/links-2.11.ebuild   | 128 --
 www-client/links/links-2.12.ebuild   | 128 --
 www-client/links/links-2.9-r1.ebuild | 131 ---
 www-client/links/links-2.9.ebuild| 131 ---
 6 files changed, 653 deletions(-)

diff --git a/www-client/links/Manifest b/www-client/links/Manifest
index 33ea0cb..8a7ea3d 100644
--- a/www-client/links/Manifest
+++ b/www-client/links/Manifest
@@ -1,8 +1,4 @@
-DIST links-2.10.tar.bz2 6230715 SHA256 
840e0b0cc804a58567bdfed1fa8012c9ea2d34a853d4e90f857786ab4b791d53 SHA512 
7963d95d48496087c8e3a30bcf5827bdebd0831184a168696220b4cd598a8242a0b815523a36474282e749b68bf6c046615bde9cb6d463cc0de8ef67a0f48f3f
 WHIRLPOOL 
b993e82f2d6fff156d18b30df919787da1eb95eac7920d17939da79e15eab08dcf2ff7ffb3032b066f4b608e2236d2354ccb6058c2f8c29375ea92655e2d6cdd
-DIST links-2.11.tar.bz2 6409903 SHA256 
87f7f927d6394f1dc45886dd5ff89234c4e0fb321132ceaa009db5bcc26f123f SHA512 
661868021914db7aad788d4302093e3abdf2e6e541bcbd7206b816c2a07707cec99f86c54271bec906f760f1637d78cde97f0eb37bb795279cf7b6b3a5e040b5
 WHIRLPOOL 
839d0b120d1065da939d412826f57c0de0cc3c73468e8db1e40bf3a79c3bfb5464ad1a1d9a7bb9658a099e35207123b39081a499ea0a32d6253ee86866502085
 DIST links-2.12.tar.bz2 6418151 SHA256 
98411811ded1e8028f5aed708dd7d8ec0ae63ce24c2991a0241a989b7d09d84e SHA512 
cd41eac369a8da090c56fbec42016541204fa4e098c8693f5f7766ce6e108a0cda0b205d090d3a351db0a9d9483e9b9145763faa255f0a13873bcd0ef058d6b5
 WHIRLPOOL 
ba2a741e670aa2c131800a3234e37b4f14b3735177d80c56b5750c01c802a444dd475bd3d094be1fa111f43faf8212e3f830582290fbe377742773fb8c479d16
 DIST links-2.8.tar.bz2 4102643 SHA256 
7950da386fa2014d75edc23abfaeed1b1f171ebc73bf0f557352948f12390096 SHA512 
e6325be0bb81a9f4dc602f9c05150ebc3c4e16373767c284c02a87bd6b89b9a28ff409c175695542277faa361b71151c5c619135f36a59a04558fc3426c4b30a
 WHIRLPOOL 
d5233857bb057279b54883fc9026b5a35e22116ba9f9bb00971872d8a4a658c9fc20b765abd50328c5f1e835ab03e32f9432115671a74c729510d46b53f5d0eb
-DIST links-2.9.tar.bz2 4111393 SHA256 
4360ead54d5f41da16b2f4c0033317ca775f40c1e658a29e9e7f8ce4bc23878f SHA512 
386f53e8a8eac78b5f1a85277d449f2cc23e96dbc505c776fa5123c3c4ee34916c9da867766849fb71ff7701df161bd1906a34468bd9c31183abdce1d03819a7
 WHIRLPOOL 
b3f4e88df0df05c20c8915ebb30b81aa0aef519ef09fff0f6528c787174adcd003b68b2374851b7b37d4329ea6b4766f6a2a6145703a1d8ce338dbaf1a57dab6
 DIST links2_2.10-2.debian.tar.xz 13964 SHA256 
2fbefdaed1864fd4e21b2dd8aed477e3954a7edd69bc16bb1cecd4ebcf16295c SHA512 
01101edef00ede0b95857ea28d305e98198306c428b79bb9c05da16285d8b4052b7f800f7def67a945d498db440745d81b7e3b6a03c9b077d5bcf5da1cb2691e
 WHIRLPOOL 
092b38877454dabb6833482479498e0db45e3ead3fdbeb31030cca048fbe4c98bfd1739a30a284ba68840c2e30c439fd807fa6c356cbd3d70b9a903931978bfd
 DIST links2_2.8-1.debian.tar.gz 12121 SHA256 
878529c4f93c934c1821edc3576ca6219bc4018f4e29866d6ffa469681a0bd80 SHA512 
134fb292c88ec4d36529886d0e5d12083b773f38b89cb90b471b5f6b11d7f8d990de0a57ade5eb5f887cf1c4398687a6e81aed4a660959e81219c675c1de6af2
 WHIRLPOOL 
e9c362de5874ca8de96a2ef184c81e40fa365e9d4e20c4a902845749946a438060ef2784e87972d40c459d4979e0e0ffc8158a5dcab1e02fc3980413c79edfc4
-DIST links2_2.9-2.debian.tar.xz 12708 SHA256 
ec074c302da1cd7410a8af3414e2b600653e89ad874937deb37f00dd98428a55 SHA512 
9663145a1ec5de7b17b6805d2051a6259c2a80502b7c9742d265863a961dba76caff170af9088bbc9ff4b0353a8d2fba3e87f67d7c99df2e91ff7d919d3c9964
 WHIRLPOOL 
505a8c6e9af35161ef4430f5b7f73027d615e9d87b575ea382ed2ab235388bc6df29771be1b0d736d1d91e99e2e17a461923e6415cf63fe9688ab376afc9d281

diff --git a/www-client/links/links-2.10.ebuild 
b/www-client/links/links-2.10.ebuild
deleted file mode 100644
index 5ccc14f..
--- a/www-client/links/links-2.10.ebuild
+++ /dev/null
@@ -1,131 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit autotools eutils fdo-mime
-
-DEBIAN_REVISION=2.9-2
-
-DESCRIPTION="A fast and lightweight web browser running in both graphics and 
text mode"
-HOMEPAGE="http://links.twibright.com/;
-SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2
-   
mirror://debian/pool/main/${PN:0:1}/${PN}2/${PN}2_${DEBIAN_REVISION}.debian.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos 

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

2016-11-16 Thread Pacho Ramos
commit: b262adcba92d0810c8444ae5dbdd3e7656ac3b67
Author: Pacho Ramos  gentoo  org>
AuthorDate: Wed Nov 16 20:01:26 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Wed Nov 16 20:05:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b262adcb

www-client/links: x86 stable, bug #591910

Package-Manager: portage-2.3.2

 www-client/links/links-2.12-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/links/links-2.12-r2.ebuild 
b/www-client/links/links-2.12-r2.ebuild
index 9950b97..7dd9e95 100644
--- a/www-client/links/links-2.12-r2.ebuild
+++ b/www-client/links/links-2.12-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://${PN}.twibright.com/download/${P}.tar.bz2
 
 LICENSE="GPL-2"
 SLOT="2"
-KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc x86 
~ppc-aix ~amd64-fbsd ~x86-fbsd ~ia64-hpux ~x86-interix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~x64-solaris 
~x86-solaris"
 IUSE="bzip2 directfb fbcon gpm ipv6 jpeg libressl livecd lzma ssl suid svga 
tiff unicode X zlib"
 
 GRAPHICS_DEPEND="media-libs/libpng:0="



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

2016-11-16 Thread Amy Winston
commit: a8b34129eedef739e16abf6279f2702303b3e7c3
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Nov 16 19:50:43 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Wed Nov 16 19:50:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8b34129

Revert "dev-vcs/bzr: remove old"

This reverts commit 16a6aade2e851cd49240894dc40c951e17094123.

 dev-vcs/bzr/bzr-2.5.1.ebuild | 88 
 1 file changed, 88 insertions(+)

diff --git a/dev-vcs/bzr/bzr-2.5.1.ebuild b/dev-vcs/bzr/bzr-2.5.1.ebuild
new file mode 100644
index ..6ba611d
--- /dev/null
+++ b/dev-vcs/bzr/bzr-2.5.1.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2014 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="4"
+PYTHON_DEPEND="2:2.6"
+PYTHON_USE_WITH="threads ssl"
+SUPPORT_PYTHON_ABIS="1"
+RESTRICT_PYTHON_ABIS="2.[45] 3.* 2.7-pypy-*"
+
+inherit bash-completion-r1 distutils eutils versionator
+
+MY_P=${PN}-${PV}
+SERIES=$(get_version_component_range 1-2)
+
+DESCRIPTION="Bazaar is a next generation distributed version control system"
+HOMEPAGE="http://bazaar-vcs.org/;
+#SRC_URI="http://bazaar-vcs.org/releases/src/${MY_P}.tar.gz;
+SRC_URI="https://launchpad.net/bzr/${SERIES}/${PV}/+download/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
+IUSE="curl doc +sftp test"
+
+RDEPEND="|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] 
dev-python/celementtree )
+   curl? ( dev-python/pycurl )
+   sftp? ( dev-python/paramiko )"
+
+DEPEND="test? (
+   ${RDEPEND}
+   >=dev-python/pyftpdlib-0.7.0
+   dev-python/subunit
+   >=dev-python/testtools-0.9.5
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
+
+DOCS="doc/*.txt"
+PYTHON_MODNAME="bzrlib"
+
+src_prepare() {
+   distutils_src_prepare
+
+   # Don't regenerate .c files from .pyx when pyrex is found.
+   epatch "${FILESDIR}/${PN}-2.4.2-no-pyrex-citon.patch"
+
+   epatch "${FILESDIR}/${P}-sphinx-test-failures.patch"
+}
+
+src_test() {
+   # Some tests expect the usual pyc compiling behaviour.
+   python_enable_pyc
+
+   # Define tests which are known to fail below.
+   local skip_tests="("
+   # https://bugs.launchpad.net/bzr/+bug/850676
+   skip_tests+="per_transport.TransportTests.test_unicode_paths.*"
+   skip_tests+=")"
+   if [[ -n ${skip_tests} ]]; then
+   einfo "Skipping tests known to fail: ${skip_tests}"
+   fi
+
+   testing() {
+   LC_ALL="C" "$(PYTHON)" bzr --no-plugins selftest 
${skip_tests:+-x} ${skip_tests}
+   }
+   python_execute_function testing
+
+   # Just to make sure we don't hit any errors on later stages.
+   python_disable_pyc
+}
+
+src_install() {
+   distutils_src_install --install-data "${EPREFIX}/usr/share"
+
+   if use doc; then
+   docinto developers
+   dodoc -r doc/developers/* || die
+   for doc in mini-tutorial tutorials user-{guide,reference}; do
+   docinto ${doc}
+   dodoc -r doc/en/${doc}/* || die
+   done
+   fi
+
+   dobashcomp contrib/bash/bzr || die
+}



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

2016-11-16 Thread Johannes Huber
commit: 6efb50199691dfb2e7a3a2a5e9e185d558570526
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Nov 16 19:07:10 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Nov 16 19:07:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6efb5019

profiles: Mask kde-apps/kuser for removal

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

diff --git a/profiles/package.mask b/profiles/package.mask
index b6355bb..3e05d11 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Johannes Huber  (16 Nov 2016)
+# Masked for removal in 30 days. Declared as dead by upstream.
+# Last release with 16.08.3. Exported to kde-sunset overlay.
+kde-apps/kuser
+
 # Chí-Thanh Christopher Nguyễn  (16 Nov 2016)
 # Mask until drivers are fixed or adjusted to depend on older versions #599976
 =x11-base/xorg-drivers-1.19*



[gentoo-commits] proj/kde:master commit in: profiles/package.mask/

2016-11-16 Thread Michael Palimaka
commit: 4956fa366a4f58438060eb555257cafd38301aee
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Nov 16 19:04:31 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Nov 16 19:07:04 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4956fa36

profiles: drop mask for kde-frameworks-5.28.0

 profiles/package.mask/kde-frameworks-5.28.0 | 77 -
 1 file changed, 77 deletions(-)

diff --git a/profiles/package.mask/kde-frameworks-5.28.0 
b/profiles/package.mask/kde-frameworks-5.28.0
deleted file mode 100644
index 5f42799..000
--- a/profiles/package.mask/kde-frameworks-5.28.0
+++ /dev/null
@@ -1,77 +0,0 @@
-#
-# UNRELEASED
-#
-~kde-frameworks/attica-5.28.0
-~kde-frameworks/baloo-5.28.0
-~kde-frameworks/bluez-qt-5.28.0
-~kde-frameworks/breeze-icons-5.28.0
-~kde-frameworks/breeze-icons-rcc-5.28.0
-~kde-frameworks/extra-cmake-modules-5.28.0
-~kde-frameworks/frameworkintegration-5.28.0
-~kde-frameworks/kactivities-5.28.0
-~kde-frameworks/kactivities-stats-5.28.0
-~kde-frameworks/kapidox-5.28.0
-~kde-frameworks/karchive-5.28.0
-~kde-frameworks/kauth-5.28.0
-~kde-frameworks/kbookmarks-5.28.0
-~kde-frameworks/kcmutils-5.28.0
-~kde-frameworks/kcodecs-5.28.0
-~kde-frameworks/kcompletion-5.28.0
-~kde-frameworks/kconfig-5.28.0
-~kde-frameworks/kconfigwidgets-5.28.0
-~kde-frameworks/kcoreaddons-5.28.0
-~kde-frameworks/kcrash-5.28.0
-~kde-frameworks/kdbusaddons-5.28.0
-~kde-frameworks/kdeclarative-5.28.0
-~kde-frameworks/kded-5.28.0
-~kde-frameworks/kdelibs4support-5.28.0
-~kde-frameworks/kdesignerplugin-5.28.0
-~kde-frameworks/kdesu-5.28.0
-~kde-frameworks/kdewebkit-5.28.0
-~kde-frameworks/kdnssd-5.28.0
-~kde-frameworks/kdoctools-5.28.0
-~kde-frameworks/kemoticons-5.28.0
-~kde-frameworks/kfilemetadata-5.28.0
-~kde-frameworks/kglobalaccel-5.28.0
-~kde-frameworks/kguiaddons-5.28.0
-~kde-frameworks/khtml-5.28.0
-~kde-frameworks/ki18n-5.28.0
-~kde-frameworks/kiconthemes-5.28.0
-~kde-frameworks/kidletime-5.28.0
-~kde-frameworks/kimageformats-5.28.0
-~kde-frameworks/kinit-5.28.0
-~kde-frameworks/kio-5.28.0
-~kde-frameworks/kitemmodels-5.28.0
-~kde-frameworks/kitemviews-5.28.0
-~kde-frameworks/kjobwidgets-5.28.0
-~kde-frameworks/kjs-5.28.0
-~kde-frameworks/kjsembed-5.28.0
-~kde-frameworks/kmediaplayer-5.28.0
-~kde-frameworks/knewstuff-5.28.0
-~kde-frameworks/knotifications-5.28.0
-~kde-frameworks/knotifyconfig-5.28.0
-~kde-frameworks/kpackage-5.28.0
-~kde-frameworks/kparts-5.28.0
-~kde-frameworks/kpeople-5.28.0
-~kde-frameworks/kplotting-5.28.0
-~kde-frameworks/kpty-5.28.0
-~kde-frameworks/kross-5.28.0
-~kde-frameworks/krunner-5.28.0
-~kde-frameworks/kservice-5.28.0
-~kde-frameworks/ktexteditor-5.28.0
-~kde-frameworks/ktextwidgets-5.28.0
-~kde-frameworks/kunitconversion-5.28.0
-~kde-frameworks/kwallet-5.28.0
-~kde-frameworks/kwayland-5.28.0
-~kde-frameworks/kwidgetsaddons-5.28.0
-~kde-frameworks/kwindowsystem-5.28.0
-~kde-frameworks/kxmlgui-5.28.0
-~kde-frameworks/kxmlrpcclient-5.28.0
-~kde-frameworks/modemmanager-qt-5.28.0
-~kde-frameworks/networkmanager-qt-5.28.0
-~kde-frameworks/oxygen-icons-5.28.0
-~kde-frameworks/plasma-5.28.0
-~kde-frameworks/solid-5.28.0
-~kde-frameworks/sonnet-5.28.0
-~kde-frameworks/syntax-highlighting-5.28.0
-~kde-frameworks/threadweaver-5.28.0



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

2016-11-16 Thread Michael Palimaka
commit: 0255dbac884a82144bf0a1bcfec9788b1753204a
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Nov 16 19:04:51 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Nov 16 19:07:04 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0255dbac

kde5.eclass: kde-frameworks-5.28.0 is released

 eclass/kde5.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 7a8c85a..9ef7c15 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -119,7 +119,7 @@ fi
 # An array of $CATEGORY-$PV pairs of packages that are unreleased upstream.
 # Any package matching this will have fetch restriction enabled, and receive
 # a proper error message via pkg_nofetch.
-KDE_UNRELEASED=( kde-frameworks-5.28.0 )
+KDE_UNRELEASED=( )
 
 if [[ ${KDEBASE} = kdevelop ]]; then
HOMEPAGE="https://www.kdevelop.org/;



[gentoo-commits] proj/kde:master commit in: kde-frameworks/plasma/, kde-frameworks/oxygen-icons/, kde-frameworks/kxmlgui/, ...

2016-11-16 Thread Michael Palimaka
commit: 554cd4a1e532f230176827d39b472e4b0a294086
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Nov 16 19:05:42 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Nov 16 19:07:04 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=554cd4a1

kde-frameworks: 5.28.0 moved to main tree

Package-Manager: portage-2.3.2

 kde-frameworks/attica/attica-5.28.0.ebuild | 17 -
 kde-frameworks/baloo/baloo-5.28.0.ebuild   | 33 -
 kde-frameworks/bluez-qt/bluez-qt-5.28.0.ebuild | 30 
 .../breeze-icons-rcc-5.28.0.ebuild | 30 
 .../breeze-icons/breeze-icons-5.28.0.ebuild| 27 ---
 .../extra-cmake-modules-5.28.0.ebuild  | 60 ---
 .../frameworkintegration-5.28.0.ebuild | 39 --
 .../kactivities-stats-5.28.0.ebuild| 22 --
 .../kactivities/kactivities-5.28.0.ebuild  | 28 ---
 kde-frameworks/kapidox/kapidox-5.28.0.ebuild   | 29 
 kde-frameworks/karchive/karchive-5.28.0.ebuild | 28 ---
 kde-frameworks/kauth/kauth-5.28.0.ebuild   | 34 -
 kde-frameworks/kbookmarks/kbookmarks-5.28.0.ebuild | 30 
 kde-frameworks/kcmutils/kcmutils-5.28.0.ebuild | 32 
 kde-frameworks/kcodecs/kcodecs-5.28.0.ebuild   | 14 
 .../kcompletion/kcompletion-5.28.0.ebuild  | 22 --
 kde-frameworks/kconfig/kconfig-5.28.0.ebuild   | 27 ---
 .../kconfigwidgets/kconfigwidgets-5.28.0.ebuild| 38 --
 .../kcoreaddons/kcoreaddons-5.28.0.ebuild  | 31 
 kde-frameworks/kcrash/kcrash-5.28.0.ebuild | 39 --
 .../kdbusaddons/kdbusaddons-5.28.0.ebuild  | 29 
 .../kdeclarative/kdeclarative-5.28.0.ebuild| 32 
 kde-frameworks/kded/kded-5.28.0.ebuild | 36 -
 .../kdelibs4support/kdelibs4support-5.28.0.ebuild  | 86 --
 .../kdesignerplugin/kdesignerplugin-5.28.0.ebuild  | 54 --
 kde-frameworks/kdesu/kdesu-5.28.0.ebuild   | 33 -
 kde-frameworks/kdewebkit/kdewebkit-5.28.0.ebuild   | 30 
 kde-frameworks/kdnssd/kdnssd-5.28.0.ebuild | 32 
 kde-frameworks/kdoctools/kdoctools-5.28.0.ebuild   | 25 ---
 kde-frameworks/kemoticons/kemoticons-5.28.0.ebuild | 26 ---
 .../kfilemetadata/kfilemetadata-5.28.0.ebuild  | 50 -
 .../kglobalaccel/kglobalaccel-5.28.0.ebuild| 32 
 kde-frameworks/kguiaddons/kguiaddons-5.28.0.ebuild | 23 --
 kde-frameworks/khtml/khtml-5.28.0.ebuild   | 67 -
 kde-frameworks/ki18n/ki18n-5.28.0.ebuild   | 35 -
 .../kiconthemes/kiconthemes-5.28.0.ebuild  | 30 
 kde-frameworks/kidletime/kidletime-5.28.0.ebuild   | 25 ---
 .../kimageformats/kimageformats-5.28.0.ebuild  | 35 -
 kde-frameworks/kinit/kinit-5.28.0.ebuild   | 41 ---
 kde-frameworks/kio/kio-5.28.0.ebuild   | 80 
 .../kitemmodels/kitemmodels-5.28.0.ebuild  | 15 
 kde-frameworks/kitemviews/kitemviews-5.28.0.ebuild | 21 --
 .../kjobwidgets/kjobwidgets-5.28.0.ebuild  | 36 -
 kde-frameworks/kjs/kjs-5.28.0.ebuild   | 22 --
 kde-frameworks/kjsembed/kjsembed-5.28.0.ebuild | 26 ---
 .../kmediaplayer/kmediaplayer-5.28.0.ebuild| 21 --
 kde-frameworks/knewstuff/knewstuff-5.28.0.ebuild   | 33 -
 .../knotifications/knotifications-5.28.0.ebuild| 45 ---
 .../knotifyconfig/knotifyconfig-5.28.0.ebuild  | 25 ---
 kde-frameworks/kpackage/kpackage-5.28.0.ebuild | 30 
 kde-frameworks/kparts/kparts-5.28.0.ebuild | 31 
 kde-frameworks/kpeople/kpeople-5.28.0.ebuild   | 32 
 kde-frameworks/kplotting/kplotting-5.28.0.ebuild   | 19 -
 kde-frameworks/kpty/kpty-5.28.0.ebuild | 27 ---
 kde-frameworks/kross/kross-5.28.0.ebuild   | 32 
 kde-frameworks/krunner/krunner-5.28.0.ebuild   | 30 
 kde-frameworks/kservice/kservice-5.28.0.ebuild | 40 --
 .../ktexteditor/ktexteditor-5.28.0.ebuild  | 53 -
 .../ktextwidgets/ktextwidgets-5.28.0.ebuild| 38 --
 .../kunitconversion/kunitconversion-5.28.0.ebuild  | 19 -
 kde-frameworks/kwallet/kwallet-5.28.0.ebuild   | 52 -
 kde-frameworks/kwayland/kwayland-5.28.0.ebuild | 29 
 .../kwidgetsaddons/kwidgetsaddons-5.28.0.ebuild| 22 --
 .../kwindowsystem/kwindowsystem-5.28.0.ebuild  | 41 ---
 kde-frameworks/kxmlgui/kxmlgui-5.28.0.ebuild   | 42 ---
 .../kxmlrpcclient/kxmlrpcclient-5.28.0.ebuild  | 22 --
 .../modemmanager-qt/modemmanager-qt-5.28.0.ebuild  | 25 ---
 .../networkmanager-qt-5.28.0.ebuild| 27 ---
 .../oxygen-icons/oxygen-icons-5.28.0.ebuild| 30 
 

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

2016-11-16 Thread Johannes Huber
commit: dece28706ea90a4c1b9351d3f0990c526af4f40f
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Nov 16 19:05:24 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Nov 16 19:05:24 2016 +
URL:https://gitweb.gentoo.org/proj/kde-sunset.git/commit/?id=dece2870

kde-apps/kuser: Import latest from gentoo main tree

Package-Manager: portage-2.3.2

 kde-apps/kuser/kuser-16.08.3.ebuild | 21 +
 1 file changed, 21 insertions(+)

diff --git a/kde-apps/kuser/kuser-16.08.3.ebuild 
b/kde-apps/kuser/kuser-16.08.3.ebuild
new file mode 100644
index 000..ded9c33
--- /dev/null
+++ b/kde-apps/kuser/kuser-16.08.3.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="optional"
+inherit kde4-base
+
+DESCRIPTION="KDE application that helps you manage system users"
+HOMEPAGE="https://www.kde.org/applications/system/kuser/;
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="debug"
+
+DEPEND="
+   $(add_kdeapps_dep kdepimlibs)
+"
+# notify is needed for dialogs
+RDEPEND="${DEPEND}
+   $(add_kdeapps_dep knotify)
+"



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdeadmin-meta/

2016-11-16 Thread Johannes Huber
commit: 9ea734d00468205a55ad7bb7ee8d825f24c77494
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Nov 16 18:55:28 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Nov 16 18:56:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ea734d0

kde-apps/kdeadmin-meta: Drop obsolete comment

Upstream declared kuser as dead.

Package-Manager: portage-2.3.2

 kde-apps/kdeadmin-meta/kdeadmin-meta-16.04.3.ebuild | 2 --
 kde-apps/kdeadmin-meta/kdeadmin-meta-16.08.3.ebuild | 2 --
 2 files changed, 4 deletions(-)

diff --git a/kde-apps/kdeadmin-meta/kdeadmin-meta-16.04.3.ebuild 
b/kde-apps/kdeadmin-meta/kdeadmin-meta-16.04.3.ebuild
index 2fe6d52..74ffe7d 100644
--- a/kde-apps/kdeadmin-meta/kdeadmin-meta-16.04.3.ebuild
+++ b/kde-apps/kdeadmin-meta/kdeadmin-meta-16.04.3.ebuild
@@ -10,8 +10,6 @@ DESCRIPTION="KDE administration tools - merge this to pull in 
all kdeadmin-deriv
 KEYWORDS="amd64 x86"
 IUSE="+cron"
 
-# FIXME: Add back when ported
-# $(add_kdeapps_dep kuser)
 RDEPEND="
$(add_kdeapps_dep ksystemlog)
cron? ( $(add_kdeapps_dep kcron) )

diff --git a/kde-apps/kdeadmin-meta/kdeadmin-meta-16.08.3.ebuild 
b/kde-apps/kdeadmin-meta/kdeadmin-meta-16.08.3.ebuild
index 036c3d7..6e4d21b 100644
--- a/kde-apps/kdeadmin-meta/kdeadmin-meta-16.08.3.ebuild
+++ b/kde-apps/kdeadmin-meta/kdeadmin-meta-16.08.3.ebuild
@@ -12,8 +12,6 @@ IUSE="+cron nls"
 
 [[ ${KDE_BUILD_TYPE} = live ]] && L10N_MINIMAL=${KDE_APPS_MINIMAL}
 
-# FIXME: Add back when ported
-# $(add_kdeapps_dep kuser)
 RDEPEND="
$(add_kdeapps_dep ksystemlog)
cron? ( $(add_kdeapps_dep kcron) )



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

2016-11-16 Thread Michael Palimaka
commit: 7bc55c6cfd54f8989f8d7a7e5cdd49c29fb43c83
Author: Michael Palimaka  gentoo  org>
AuthorDate: Wed Nov 16 18:37:49 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Nov 16 18:38:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bc55c6c

kde-plasma/plasma-workspace: backport patch from upstream resolving krunner 
crash

Package-Manager: portage-2.3.2

 .../plasma-workspace-5.8.3-krunner-crash.patch | 441 +
 .../plasma-workspace-5.8.3-r2.ebuild   | 176 
 2 files changed, 617 insertions(+)

diff --git 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.8.3-krunner-crash.patch 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.8.3-krunner-crash.patch
new file mode 100644
index ..9b238b6
--- /dev/null
+++ 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.8.3-krunner-crash.patch
@@ -0,0 +1,441 @@
+From 3f859c3dbdded68cc96d4c695ff27d15c387da09 Mon Sep 17 00:00:00 2001
+From: Aleix Pol 
+Date: Mon, 10 Oct 2016 16:30:24 +0200
+Subject: [PATCH] Port to new plasma-framework API
+
+Reduces unnecessary castings.
+Ports away the WindowedWidgets runner from KService
+
+REVIEW: 129101
+---
+ applets/systemtray/systemtray.cpp  | 30 +++---
+ .../shellprivate/widgetexplorer/widgetexplorer.cpp | 14 +++
+ plasma-windowed/plasmawindowedcorona.cpp   |  2 +-
+ runners/windowedwidgets/windowedwidgetsrunner.cpp  | 46 ++
+ runners/windowedwidgets/windowedwidgetsrunner.h|  2 +-
+ shell/alternativeshelper.cpp   |  6 +--
+ shell/containmentconfigview.cpp|  2 +-
+ shell/scripting/containment.cpp|  4 +-
+ shell/scripting/widget.cpp |  2 +-
+ shell/shellcorona.cpp  | 15 +++
+ 10 files changed, 60 insertions(+), 63 deletions(-)
+
+diff --git a/applets/systemtray/systemtray.cpp 
b/applets/systemtray/systemtray.cpp
+index e1cd610..ecc23a4 100644
+--- a/applets/systemtray/systemtray.cpp
 b/applets/systemtray/systemtray.cpp
+@@ -99,19 +99,19 @@ void SystemTray::init()
+ {
+ Containment::init();
+ 
+-for (const auto : 
Plasma::PluginLoader::self()->listAppletInfo(QString())) {
+-if (!info.isValid() || 
info.property(QStringLiteral("X-Plasma-NotificationArea")) != "true") {
++for (const auto : 
Plasma::PluginLoader::self()->listAppletMetaData(QString())) {
++if (!info.isValid() || 
info.value(QStringLiteral("X-Plasma-NotificationArea")) != "true") {
+ continue;
+ }
+-m_systrayApplets[info.pluginName()] = info;
++m_systrayApplets[info.pluginId()] = KPluginInfo(info);
+ 
+-if (info.isPluginEnabledByDefault()) {
+-m_defaultPlasmoids += info.pluginName();
++if (info.isEnabledByDefault()) {
++m_defaultPlasmoids += info.pluginId();
+ }
+-const QString dbusactivation = 
info.property(QStringLiteral("X-Plasma-DBusActivationService")).toString();
++const QString dbusactivation = 
info.value(QStringLiteral("X-Plasma-DBusActivationService"));
+ if (!dbusactivation.isEmpty()) {
+-qCDebug(SYSTEM_TRAY) << "ST Found DBus-able Applet: " << 
info.pluginName() << dbusactivation;
+-m_dbusActivatableTasks[info.pluginName()] = dbusactivation;
++qCDebug(SYSTEM_TRAY) << "ST Found DBus-able Applet: " << 
info.pluginId() << dbusactivation;
++m_dbusActivatableTasks[info.pluginId()] = dbusactivation;
+ }
+ }
+ }
+@@ -119,12 +119,12 @@ void SystemTray::init()
+ void SystemTray::newTask(const QString )
+ {
+ foreach (Plasma::Applet *applet, applets()) {
+-if (!applet->pluginInfo().isValid()) {
++if (!applet->pluginMetaData().isValid()) {
+ continue;
+ }
+ 
+ //only allow one instance per applet
+-if (task == applet->pluginInfo().pluginName()) {
++if (task == applet->pluginMetaData().pluginId()) {
+ //Applet::destroy doesn't delete the applet from 
Containment::applets in the same event
+ //potentially a dbus activated service being restarted can be 
added in this time.
+ if (!applet->destroyed()) {
+@@ -156,7 +156,7 @@ void SystemTray::newTask(const QString )
+ void SystemTray::cleanupTask(const QString )
+ {
+ foreach (Plasma::Applet *applet, applets()) {
+-if (!applet->pluginInfo().isValid() || task == 
applet->pluginInfo().pluginName()) {
++if (!applet->pluginMetaData().isValid() || task == 
applet->pluginMetaData().pluginId()) {
+ //we are *not* cleaning the config here, because since is one
+ //of those automatically loaded/unloaded by dbus, we want to 
recycle
+ //the config the next time it's loaded, in case the user 
configured something here
+@@ -255,11 +255,11 @@ Q_INVOKABLE QString 

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

2016-11-16 Thread Amy Winston
commit: 857a2b70948aaba3753f559ad9b4bf339241987c
Author: Michael Mair-Keimberger (asterix)  gmail 
 com>
AuthorDate: Mon Nov 14 17:12:57 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Wed Nov 16 18:04:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=857a2b70

dev-vcs/bzr: remove unused patch/file

Closes: #2834

 dev-vcs/bzr/files/71bzr-gentoo.el|  5 
 dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch | 33 
 2 files changed, 38 deletions(-)

diff --git a/dev-vcs/bzr/files/71bzr-gentoo.el 
b/dev-vcs/bzr/files/71bzr-gentoo.el
deleted file mode 100644
index e8af05f..
--- a/dev-vcs/bzr/files/71bzr-gentoo.el
+++ /dev/null
@@ -1,5 +0,0 @@
-
-;;; dev-util/bzr site-lisp configuration
-
-(unless (fboundp 'vc-bzr-registered)
- (add-to-list 'load-path "@SITELISP@"))

diff --git a/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch 
b/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch
deleted file mode 100644
index da5b3c8..
--- a/dev-vcs/bzr/files/bzr-2.4.0-no-pyrex-citon.patch
+++ /dev/null
@@ -1,33 +0,0 @@
 setup.py.orig  2011-08-16 17:18:11.280853205 +0200
-+++ setup.py   2011-08-16 17:20:12.597637778 +0200
-@@ -178,28 +178,8 @@
- from distutils.errors import CCompilerError, DistutilsPlatformError
- from distutils.extension import Extension
- ext_modules = []
--try:
--try:
--from Cython.Distutils import build_ext
--from Cython.Compiler.Version import version as pyrex_version
--except ImportError:
--print("No Cython, trying Pyrex...")
--from Pyrex.Distutils import build_ext
--from Pyrex.Compiler.Version import version as pyrex_version
--except ImportError:
--have_pyrex = False
--# try to build the extension from the prior generated source.
--print("")
--print("The python package 'Pyrex' is not available."
--  " If the .c files are available,")
--print("they will be built,"
--  " but modifying the .pyx files will not rebuild them.")
--print("")
--from distutils.command.build_ext import build_ext
--else:
--have_pyrex = True
--pyrex_version_info = tuple(map(int, pyrex_version.split('.')))
--
-+have_pyrex = False
-+from distutils.command.build_ext import build_ext
- 
- class build_ext_if_possible(build_ext):
- 



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

2016-11-16 Thread Amy Winston
commit: 16a6aade2e851cd49240894dc40c951e17094123
Author: Amy Winston  gentoo  org>
AuthorDate: Wed Nov 16 18:05:27 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Wed Nov 16 18:05:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16a6aade

dev-vcs/bzr: remove old

Package-Manager: portage-2.3.0

 dev-vcs/bzr/bzr-2.5.1.ebuild | 88 
 1 file changed, 88 deletions(-)

diff --git a/dev-vcs/bzr/bzr-2.5.1.ebuild b/dev-vcs/bzr/bzr-2.5.1.ebuild
deleted file mode 100644
index 6ba611d..
--- a/dev-vcs/bzr/bzr-2.5.1.ebuild
+++ /dev/null
@@ -1,88 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="4"
-PYTHON_DEPEND="2:2.6"
-PYTHON_USE_WITH="threads ssl"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="2.[45] 3.* 2.7-pypy-*"
-
-inherit bash-completion-r1 distutils eutils versionator
-
-MY_P=${PN}-${PV}
-SERIES=$(get_version_component_range 1-2)
-
-DESCRIPTION="Bazaar is a next generation distributed version control system"
-HOMEPAGE="http://bazaar-vcs.org/;
-#SRC_URI="http://bazaar-vcs.org/releases/src/${MY_P}.tar.gz;
-SRC_URI="https://launchpad.net/bzr/${SERIES}/${PV}/+download/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~s390 ~sh sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris"
-IUSE="curl doc +sftp test"
-
-RDEPEND="|| ( dev-lang/python:2.7[xml] dev-lang/python:2.6[xml] 
dev-python/celementtree )
-   curl? ( dev-python/pycurl )
-   sftp? ( dev-python/paramiko )"
-
-DEPEND="test? (
-   ${RDEPEND}
-   >=dev-python/pyftpdlib-0.7.0
-   dev-python/subunit
-   >=dev-python/testtools-0.9.5
-   )"
-
-S="${WORKDIR}/${MY_P}"
-
-PYTHON_CFLAGS=("2.* + -fno-strict-aliasing")
-
-DOCS="doc/*.txt"
-PYTHON_MODNAME="bzrlib"
-
-src_prepare() {
-   distutils_src_prepare
-
-   # Don't regenerate .c files from .pyx when pyrex is found.
-   epatch "${FILESDIR}/${PN}-2.4.2-no-pyrex-citon.patch"
-
-   epatch "${FILESDIR}/${P}-sphinx-test-failures.patch"
-}
-
-src_test() {
-   # Some tests expect the usual pyc compiling behaviour.
-   python_enable_pyc
-
-   # Define tests which are known to fail below.
-   local skip_tests="("
-   # https://bugs.launchpad.net/bzr/+bug/850676
-   skip_tests+="per_transport.TransportTests.test_unicode_paths.*"
-   skip_tests+=")"
-   if [[ -n ${skip_tests} ]]; then
-   einfo "Skipping tests known to fail: ${skip_tests}"
-   fi
-
-   testing() {
-   LC_ALL="C" "$(PYTHON)" bzr --no-plugins selftest 
${skip_tests:+-x} ${skip_tests}
-   }
-   python_execute_function testing
-
-   # Just to make sure we don't hit any errors on later stages.
-   python_disable_pyc
-}
-
-src_install() {
-   distutils_src_install --install-data "${EPREFIX}/usr/share"
-
-   if use doc; then
-   docinto developers
-   dodoc -r doc/developers/* || die
-   for doc in mini-tutorial tutorials user-{guide,reference}; do
-   docinto ${doc}
-   dodoc -r doc/en/${doc}/* || die
-   done
-   fi
-
-   dobashcomp contrib/bash/bzr || die
-}



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

2016-11-16 Thread Chí-Thanh Christopher Nguyễn
commit: a888de834a6c88bf6def88694ceb11945f3b5ae6
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Wed Nov 16 17:39:22 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Wed Nov 16 17:40:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a888de83

profiles/package.mask: Mask xorg-drivers too.

This fixes package visibility.

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 91b6bd3..b6355bb 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,7 @@
 
 # Chí-Thanh Christopher Nguyễn  (16 Nov 2016)
 # Mask until drivers are fixed or adjusted to depend on older versions #599976
+=x11-base/xorg-drivers-1.19*
 =x11-base/xorg-server-1.19*
 
 # Michał Górny  (15 Nov 2016)



[gentoo-commits] repo/gentoo:master commit in: dev-lisp/sbcl/files/, dev-lisp/sbcl/

2016-11-16 Thread Andrey Grozin
commit: 7bfab2119e74409da904f5e21e19463cc17ca43b
Author: Andrey Grozin  gentoo  org>
AuthorDate: Wed Nov 16 17:37:42 2016 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Wed Nov 16 17:37:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bfab211

dev-lisp/sbcl: fix problem with hardened gcc in 1.3.11

Bug: 599902

Package-Manager: portage-2.3.0

 dev-lisp/sbcl/files/sbcl-1.3.11-config.patch | 16 
 dev-lisp/sbcl/sbcl-1.3.11.ebuild |  2 ++
 2 files changed, 18 insertions(+)

diff --git a/dev-lisp/sbcl/files/sbcl-1.3.11-config.patch 
b/dev-lisp/sbcl/files/sbcl-1.3.11-config.patch
new file mode 100644
index ..e23f1e6
--- /dev/null
+++ b/dev-lisp/sbcl/files/sbcl-1.3.11-config.patch
@@ -0,0 +1,16 @@
+diff -r -U2 sbcl-1.3.11.orig/src/runtime/Config.x86-64-linux 
sbcl-1.3.11/src/runtime/Config.x86-64-linux
+--- sbcl-1.3.11.orig/src/runtime/Config.x86-64-linux   2016-10-30 
23:28:43.0 +0700
 sbcl-1.3.11/src/runtime/Config.x86-64-linux2016-11-16 
23:27:37.248815622 +0700
+@@ -58,12 +58,4 @@
+ endif
+ 
+-# The following works for Ubuntu 16.10. There must be a better way to
+-# do this across various flavors of linux.
+-ifneq ($(shell $(CC) -dumpspecs 2>/dev/null | grep -e no-pie),)
+-CFLAGS += -fno-pie
+-LINKFLAGS += -no-pie
+-LDFLAGS += -no-pie
+-endif
+-
+ # Nothing to do for after-grovel-headers.
+ .PHONY: after-grovel-headers

diff --git a/dev-lisp/sbcl/sbcl-1.3.11.ebuild b/dev-lisp/sbcl/sbcl-1.3.11.ebuild
index 3681769..334669e 100644
--- a/dev-lisp/sbcl/sbcl-1.3.11.ebuild
+++ b/dev-lisp/sbcl/sbcl-1.3.11.ebuild
@@ -101,6 +101,8 @@ src_prepare() {
eapply "${FILESDIR}"/bsd-sockets-test-1.2.11.patch
# bugs #560276, #561018
eapply "${FILESDIR}"/sb-posix-test-1.2.15.patch
+   # bug #599902
+   eapply "${FILESDIR}"/${PN}-1.3.11-config.patch
 
eapply "${FILESDIR}"/${PN}-1.2.11-solaris.patch
eapply "${FILESDIR}"/${PN}-1.2.13-verbose-build.patch



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

2016-11-16 Thread Patrice Clement
commit: f8cdb896640c4883d4820a34d0f67d0fbec70583
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Nov 16 17:15:19 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Nov 16 17:16:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8cdb896

dev-python/pylons: removal.

 dev-python/pylons/Manifest   |  2 --
 dev-python/pylons/metadata.xml   | 15 -
 dev-python/pylons/pylons-1.0.1-r1.ebuild | 54 
 dev-python/pylons/pylons-1.0.2.ebuild| 54 
 4 files changed, 125 deletions(-)

diff --git a/dev-python/pylons/Manifest b/dev-python/pylons/Manifest
deleted file mode 100644
index b4c321a..
--- a/dev-python/pylons/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST Pylons-1.0.1.tar.gz 2299257 SHA256 
7c22579516d92e6fcab3f9555b33fe7a259cc2e16d2fe414816c0138c91e8c0d SHA512 
1b34541c912c914636fc7b0d358439a6705e5161a306a4bfa6a08cbc1ee4741cb3882afc9cae9a22d208f89f9648a4b7559304842339c8d6d75472f058a91ceb
 WHIRLPOOL 
58019b223a0fc52f5cf7582a03ae7f5b25c29b88d3faff42c03ed5602f3fb2bc4bc9a4cce48d761109c2c7a4edc0b05ffcb100bf1bab70cf572f93c6da38d2c8
-DIST Pylons-1.0.2.tar.gz 187012 SHA256 
918fd04b8bdb9515ebb8ccbb981df43276aeaf865a0d4cec81b392b3ac96874f SHA512 
a57b6cd25486824dc3143b1202dc7c11ed5bbb5f5beba4359a1a491bb1611057976d36b0792037aabda3bc5ef87e12f3dc17a431609961c81a28632268570bb1
 WHIRLPOOL 
97e925456e443a5fe0512663460dc639d723d0c9ce922a5707bd3a41e01bc570e0f6411d0865e6f96138f43925fb9d68a609ba998d1760d5c72dce12106b76a9

diff --git a/dev-python/pylons/metadata.xml b/dev-python/pylons/metadata.xml
deleted file mode 100644
index 0c6c7ba..
--- a/dev-python/pylons/metadata.xml
+++ /dev/null
@@ -1,15 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   pyt...@gentoo.org
-   Python
-   
-   
-   Add optional genshi support
-   Add optional jinja support
-   
-   
-   Pylons
-   
-

diff --git a/dev-python/pylons/pylons-1.0.1-r1.ebuild 
b/dev-python/pylons/pylons-1.0.1-r1.ebuild
deleted file mode 100644
index 45e7017..
--- a/dev-python/pylons/pylons-1.0.1-r1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="Pylons"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Pylons Web Framework"
-HOMEPAGE="http://pylonshq.com/ https://pypi.python.org/pypi/Pylons;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="genshi jinja test"
-
-RDEPEND=">=dev-python/beaker-1.3[${PYTHON_USEDEP}]
-   >=dev-python/decorator-2.3.2[${PYTHON_USEDEP}]
-   >=dev-python/formencode-1.2.1[${PYTHON_USEDEP}]
-   >=dev-python/mako-0.2.4[${PYTHON_USEDEP}]
-   >=dev-python/nose-0.10.4[${PYTHON_USEDEP}]
-   >=dev-python/paste-1.7.2[${PYTHON_USEDEP}]
-   >=dev-python/pastedeploy-1.3.3[${PYTHON_USEDEP}]
-   >=dev-python/pastescript-1.7.3[${PYTHON_USEDEP}]
-   >=dev-python/repoze-lru-0.3[${PYTHON_USEDEP}]
-   >=dev-python/routes-1.12[${PYTHON_USEDEP}]
-   >=dev-python/simplejson-2.0.8[${PYTHON_USEDEP}]
-   >=dev-python/tempita-0.2[${PYTHON_USEDEP}]
-   >=dev-python/weberror-0.10.1[${PYTHON_USEDEP}]
-   >=dev-python/webhelpers-0.6.4[${PYTHON_USEDEP}]
-   >=dev-python/webob-0.9.6.1[${PYTHON_USEDEP}]
-   >=dev-python/webtest-1.1[${PYTHON_USEDEP}]
-   genshi? ( >=dev-python/genshi-0.4.4[${PYTHON_USEDEP}] )
-   jinja? ( >=dev-python/jinja-2[${PYTHON_USEDEP}] )"
-# Dependency on >=dev-python/coverage-2.85 and dev-python/genshi is not with 
Jython.
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   >=dev-python/coverage-2.85[${PYTHON_USEDEP}]
-   dev-python/genshi[${PYTHON_USEDEP}]
-   >=dev-python/jinja-2.2.1[${PYTHON_USEDEP}]
-   )"
-
-S="${WORKDIR}/${MY_P}"
-
-python_test() {
-   nosetests || die "Tests fail with ${EPYTHON}"
-}

diff --git a/dev-python/pylons/pylons-1.0.2.ebuild 
b/dev-python/pylons/pylons-1.0.2.ebuild
deleted file mode 100644
index aa81dd6..
--- a/dev-python/pylons/pylons-1.0.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN="Pylons"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Pylons Web Framework"
-HOMEPAGE="http://pylonshq.com/ https://pypi.python.org/pypi/Pylons;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="genshi jinja test"
-
-RDEPEND=">=dev-python/beaker-1.5.4[${PYTHON_USEDEP}]
-   >=dev-python/decorator-3.3.2[${PYTHON_USEDEP}]
- 

[gentoo-commits] repo/gentoo:master commit in: dev-python/pylons-sphinx-themes/

2016-11-16 Thread Patrice Clement
commit: a962d098919e19fc36691444b063e75996dd7bda
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Nov 16 17:15:33 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Nov 16 17:16:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a962d098

dev-python/pylons-sphinx-themes: removal.

 dev-python/pylons-sphinx-themes/Manifest |  1 -
 dev-python/pylons-sphinx-themes/metadata.xml | 11 ---
 .../pylons-sphinx-themes-0.3.1.ebuild| 20 
 3 files changed, 32 deletions(-)

diff --git a/dev-python/pylons-sphinx-themes/Manifest 
b/dev-python/pylons-sphinx-themes/Manifest
deleted file mode 100644
index e07bee5..
--- a/dev-python/pylons-sphinx-themes/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST pylons-sphinx-themes-0.3.1.tar.gz 135393 SHA256 
c107542e6a3ed89a9e9d9d2cd9d2f8ee3e6d551a394796bb6a9fb03a36afaa58 SHA512 
3b3c51b9efc1e4d753b5c0be6baf2a0ea876c536be7d19f3226135d379930320ecca91cd964c9b577347184079cf07349be24c38851511631a5d5b45d1e5ad20
 WHIRLPOOL 
4ee426757a070a9790ede16ef8f806e795d9b0ee8dcfb4022e965f679e8463bd1cee97f14d54b7f621358dc06b1ad301b5c6420e705ae1530c29694dd0f8ab31

diff --git a/dev-python/pylons-sphinx-themes/metadata.xml 
b/dev-python/pylons-sphinx-themes/metadata.xml
deleted file mode 100644
index 8d3259a..
--- a/dev-python/pylons-sphinx-themes/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   pyt...@gentoo.org
-   Python
-   
-   
-   pylons-sphinx-themes
-   
-

diff --git a/dev-python/pylons-sphinx-themes/pylons-sphinx-themes-0.3.1.ebuild 
b/dev-python/pylons-sphinx-themes/pylons-sphinx-themes-0.3.1.ebuild
deleted file mode 100644
index a6807e9..
--- a/dev-python/pylons-sphinx-themes/pylons-sphinx-themes-0.3.1.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5} pypy pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Pylons Sphinx themes for documentation styling"
-HOMEPAGE="https://pypi.python.org/pypi/pylons-sphinx-themes;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD-4"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~x86-fbsd"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-11-16 Thread Patrice Clement
commit: 975d391fa1b8bad9e2ac9708b99146b047fb8d6e
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Nov 16 17:16:17 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Nov 16 17:16:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=975d391f

profiles/package.mask: clean up obsolete entries.

 profiles/package.mask | 13 -
 1 file changed, 13 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 077b15c..91b6bd3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -132,19 +132,6 @@ sci-geosciences/osm2mp
 sci-geosciences/osmosis
 sci-geosciences/mkgmap
 
-# Patrice Clement  (11 Oct 2016)
-# Upstream's homepage is dead and nowhere to be found.
-# Masked for removal in 30 days.
-dev-python/oosuite
-
-# Patrice Clement  (10 Oct 2016)
-# Note from upstream (https://github.com/Pylons/pylons):
-# Pylons has merged with repoze.bfg, and is now in maintenance-only mode. It's
-# highly recommended that new projects start with the new merged web framework,
-# pyramid. Masked for removal in 30 days.
-dev-python/pylons-sphinx-themes
-dev-python/pylons
-
 # Julian Ospald  (21 Jul 2013)
 # Mask all unfetchable versions and those with tons of random
 # bugs and segfaults (all). Don't ask for a version bump unless



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

2016-11-16 Thread Patrice Clement
commit: a584bbda4f070e45e6f2f7146815e4ff3dc60864
Author: Patrice Clement  gentoo  org>
AuthorDate: Wed Nov 16 17:14:29 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Wed Nov 16 17:16:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a584bbda

dev-python/oosuite: removal.

 dev-python/oosuite/Manifest|   2 -
 dev-python/oosuite/metadata.xml|  26 
 dev-python/oosuite/oosuite-0.45.ebuild | 109 -
 dev-python/oosuite/oosuite-0.50.ebuild | 109 -
 4 files changed, 246 deletions(-)

diff --git a/dev-python/oosuite/Manifest b/dev-python/oosuite/Manifest
deleted file mode 100644
index 2505fe4..
--- a/dev-python/oosuite/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST OOSuite-0.45.zip 520692 SHA256 
62bae3f45d256c63858f5acb4caeffd1c93d0b8748a2cdfed8ac9323258eb6fe SHA512 
9908da3fd5919a18770f45ff1e995d8345e3dca22b90aa4cec439485d261e482633e481fb1f57aa6e1da43505da3a009ad97aa9a306171eb885dd7ee19f48c74
 WHIRLPOOL 
1674fe4d0bd5df81724d40d6b2b9947315c116c242e5699d91fe3c72cec4b8333db1b3c28e394fe1fca9243e8a1478a36aaa96c715f716ca1e195669df0431b5
-DIST OOSuite-0.50.zip 529690 SHA256 
64954e7f22fb8218d24d0c479671dcf53442896c2dcacd50dae27ea9510f9c59 SHA512 
b8dcdb750bd623050702c40e221f681a1b226975532dfe9b2e8d9b4cda7948612782c049ea46f582bf38a99e7b746e0d20afba5693f7ab36f8288cec7c44a7d2
 WHIRLPOOL 
5a4be22c24274b94d0259ffe48fa8156733ad5e814b1783cb4db10f9c9f424d3600b3c43595fc915e59d374105f89756b9b9d71d03bad3cfd3353a67bc672c52

diff --git a/dev-python/oosuite/metadata.xml b/dev-python/oosuite/metadata.xml
deleted file mode 100644
index f3b2c61..
--- a/dev-python/oosuite/metadata.xml
+++ /dev/null
@@ -1,26 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-   sci-mathemat...@gentoo.org
-   Gentoo Mathematics Project
-
-
-  The OpenOpt suite of Python packages contains the following modules:
-  * openopt: universal numerical optimization package with
-several solvers (e.g. ralg) and connections to tens of other,
-graphical output of convergence. 
-  * FuncDesigner: tool to rapidly build functions over
-variables/arrays and get their dense/sparse derivatives via
-automatic differentiation, integration (with specifiable accuracy by
-interalg), interpolation, uncertainty analysis and interval
-analysis, eigenvalue analysis, solve systems of linear/nonlinear/ODE
-equations and numerical optimization problems coded in FuncDesigner
-by OpenOpt. 
-  * DerApproximator: tool to get (or check user-supplied) derivatives
-via finite-difference approximation 
-  * SpaceFuncs: tool for 2D, 3D, N-dimensional geometric modeling with
-possibilities of parametrized calculations, numerical optimization
-and solving systems of geometrical equations.
-
-

diff --git a/dev-python/oosuite/oosuite-0.45.ebuild 
b/dev-python/oosuite/oosuite-0.45.ebuild
deleted file mode 100644
index 832d389..
--- a/dev-python/oosuite/oosuite-0.45.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-PYTHON_REQ_USE='tk?'
-
-inherit distutils-r1 eutils
-
-MYPN="OOSuite"
-MYPID="f/f3"
-
-DESCRIPTION="OpenOpt suite of Python modules for numerical optimization"
-HOMEPAGE="http://openopt.org/;
-SRC_URI="http://openopt.org/images/${MYPID}/${MYPN}.zip -> ${MYPN}-${PV}.zip"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="examples minimal tk"
-
-RDEPEND="
-   dev-python/numpy[${PYTHON_USEDEP}]
-   !minimal? (
-   dev-python/cvxopt[glpk,${PYTHON_USEDEP}]
-   dev-python/lp_solve[${PYTHON_USEDEP}]
-   dev-python/matplotlib[${PYTHON_USEDEP}]
-   dev-python/setproctitle[${PYTHON_USEDEP}]
-   sci-libs/nlopt[python]
-   sci-libs/scipy[${PYTHON_USEDEP}] )"
-DEPEND="
-   app-arch/unzip
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]"
-
-S="${WORKDIR}/PythonPackages"
-
-OO_DIRS="DerApproximator FuncDesigner OpenOpt SpaceFuncs"
-
-python_prepare() {
-   # reorganize SpaceFuncs
-   pushd SpaceFuncs > /dev/null
-   mkdir SpaceFuncs
-   cp __version__.py SpaceFuncs || die
-   mv SpaceFuncs.py __init__.py kernel SpaceFuncs || die
-   popd > /dev/null
-   local d
-   for d in ${OO_DIRS}; do
-   pushd ${d} > /dev/null
-   find . -name "*COPYING*" -delete
-   find . -type d -name examples -or -name tests -or -name doc \
-   -exec rm -r '{}' +
-   distutils-r1_python_prepare
-   popd > /dev/null
-   done
-}
-
-src_prepare() {
-   distutils-r1_src_prepare
-   # move all examples and tests to ease installation in proper directory
-   mkdir "${WORKDIR}/examples"
- 

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

2016-11-16 Thread Chí-Thanh Christopher Nguyễn
commit: 2971797e1fd0e55b13eb98f5a18537ba2826bb87
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Wed Nov 16 16:58:21 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Wed Nov 16 17:02:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2971797e

profiles/package.mask: Mask x11-base/xorg-server-1.19

Mask until drivers are fixed or adjusted to depend on older versions.

Bug: https://bugs.gentoo.org/show_bug.cgi?id=599976

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 5b3bc44..077b15c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Chí-Thanh Christopher Nguyễn  (16 Nov 2016)
+# Mask until drivers are fixed or adjusted to depend on older versions #599976
+=x11-base/xorg-server-1.19*
+
 # Michał Górny  (15 Nov 2016)
 # OpenVG support in Mesa is long gone, and the last version supporting
 # it is removed. Removal in 14 days.



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

2016-11-16 Thread Chí-Thanh Christopher Nguyễn
commit: acc0bd80b041ddc3d9e865949924b529f546872b
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Wed Nov 16 16:52:59 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Wed Nov 16 17:02:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acc0bd80

profiles/package.mask: remove mask for dropped mesa ebuilds

 profiles/package.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 73f9ed0..5b3bc44 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -657,10 +657,6 @@ app-eselect/eselect-lua
 =dev-lang/lua-5.2.3
 =dev-lang/lua-5.2.3-r1
 
-# Chí-Thanh Christopher Nguyễn  (26 Mar 2014)
-# Affected by multiple vulnerabilities, #445916, #471098 and #472280
- (20 Mar 2014)
 # Security mask of vulnerable versions, wrt bug #424167
 

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

2016-11-16 Thread Michael Palimaka
commit: 746dd5a0a9108f8210e675e1e6db43f01adb8e02
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Nov 14 18:31:32 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Nov 16 16:49:09 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=746dd5a0

kde-apps/sweeper: Drop unused DEPEND

Upstream commit 2b27eaeeef4c9b5cea6ce17f98591574d09b6473

Package-Manager: portage-2.3.0

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

diff --git a/kde-apps/sweeper/sweeper-5..ebuild 
b/kde-apps/sweeper/sweeper-5..ebuild
index f5150b5..d35a5ef 100644
--- a/kde-apps/sweeper/sweeper-5..ebuild
+++ b/kde-apps/sweeper/sweeper-5..ebuild
@@ -20,7 +20,6 @@ DEPEND="
$(add_frameworks_dep kconfig)
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep ktextwidgets)



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

2016-11-16 Thread Michael Palimaka
commit: e4034f72b7bcc851d19561125f2405a794387efe
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Nov 13 01:22:52 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Wed Nov 16 16:49:09 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e4034f72

kde-apps/libkonq: Cleanup unused file

 kde-apps/libkonq/metadata.xml | 8 
 1 file changed, 8 deletions(-)

diff --git a/kde-apps/libkonq/metadata.xml b/kde-apps/libkonq/metadata.xml
deleted file mode 100644
index 2fdbf33..000
--- a/kde-apps/libkonq/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   k...@gentoo.org
-   Gentoo KDE Project
-   
-



[gentoo-commits] repo/gentoo:master commit in: sys-power/acpi_call/files/

2016-11-16 Thread Christoph Junghans
commit: 8c3c9afda2d624fc383de95fbf07815dfb08c941
Author: Christoph Junghans  gentoo  org>
AuthorDate: Wed Nov 16 16:45:31 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Wed Nov 16 16:46:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c3c9afd

sys-power/acpi_call: update patch

Package-Manager: portage-2.3.0

 sys-power/acpi_call/files/acpi_call-1.1.0-linux-3.17.patch | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-power/acpi_call/files/acpi_call-1.1.0-linux-3.17.patch 
b/sys-power/acpi_call/files/acpi_call-1.1.0-linux-3.17.patch
index 32923a4..0db7d37 100644
--- a/sys-power/acpi_call/files/acpi_call-1.1.0-linux-3.17.patch
+++ b/sys-power/acpi_call/files/acpi_call-1.1.0-linux-3.17.patch
@@ -1,5 +1,5 @@
 From c5b7a4bf93a28e6ce68beb54b48d3745db943e54 Mon Sep 17 00:00:00 2001
-From: Christoph Junghans 
+From: Christoph Junghans 
 Date: Mon, 27 Oct 2014 21:57:10 -0600
 Subject: [PATCH] fix build with linux-3.17
 



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

2016-11-16 Thread Johannes Huber
commit: 6f1255533aa4fc6ff04f78cecbd11f4b829a35fc
Author: Johannes Huber  gentoo  org>
AuthorDate: Wed Nov 16 16:28:41 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Wed Nov 16 16:28:41 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=6f125553

kde-apps/kdeadmin-meta: Fix typo

Thanks-to: Arfrever

Package-Manager: portage-2.3.2

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

diff --git a/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild 
b/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild
index e732993..3681e34 100644
--- a/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild
+++ b/kde-apps/kdeadmin-meta/kdeadmin-meta-.ebuild
@@ -12,7 +12,7 @@ IUSE="+cron nls"
 
 [[ ${KDE_BUILD_TYPE} = live ]] && L10N_MINIMAL=${KDE_APPS_MINIMAL}
 
-LRDEPEND="
+RDEPEND="
$(add_kdeapps_dep ksystemlog)
cron? ( $(add_kdeapps_dep kcron) )
nls? ( $(add_kdeapps_dep kde-l10n '' ${L10N_MINIMAL}) )



  1   2   >