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

2016-06-26 Thread Michał Górny
commit: 831e3f05df898a0d3df1bbff8914ca28f08a95cb
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun 27 05:57:42 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 27 05:58:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=831e3f05

eclass/tests: Remove KV_* functions from tests-common.sh

 eclass/tests/tests-common.sh | 41 -
 1 file changed, 41 deletions(-)

diff --git a/eclass/tests/tests-common.sh b/eclass/tests/tests-common.sh
index d3095e5..faca39d 100644
--- a/eclass/tests/tests-common.sh
+++ b/eclass/tests/tests-common.sh
@@ -65,47 +65,6 @@ has_version() {
portageq has_version / "$@"
 }
 
-KV_major() {
-   [[ -z $1 ]] && return 1
-
-   local KV=$@
-   echo "${KV%%.*}"
-}
-
-KV_minor() {
-   [[ -z $1 ]] && return 1
-
-   local KV=$@
-   KV=${KV#*.}
-   echo "${KV%%.*}"
-}
-
-KV_micro() {
-   [[ -z $1 ]] && return 1
-
-   local KV=$@
-   KV=${KV#*.*.}
-   echo "${KV%%[^[:digit:]]*}"
-}
-
-KV_to_int() {
-   [[ -z $1 ]] && return 1
-
-   local KV_MAJOR=$(KV_major "$1")
-   local KV_MINOR=$(KV_minor "$1")
-   local KV_MICRO=$(KV_micro "$1")
-   local KV_int=$(( KV_MAJOR * 65536 + KV_MINOR * 256 + KV_MICRO ))
-
-   # We make version 2.2.0 the minimum version we will handle as
-   # a sanity check ... if its less, we fail ...
-   if [[ ${KV_int} -ge 131584 ]] ; then
-   echo "${KV_int}"
-   return 0
-   fi
-
-   return 1
-}
-
 tret=0
 tbegin() {
ebegin "Testing $*"



[gentoo-commits] repo/gentoo:master commit in: eclass/tests/, eclass/

2016-06-26 Thread Michał Górny
commit: 81c226e451be564a545696f93fc5880ebc160812
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jun 27 05:52:14 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jun 27 05:58:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81c226e4

toolchain-funcs.eclass: tc-ninja_magic_to_arch, remove old KV support

Remove the support for old kernel versions that are no longer used
in Gentoo, and rely on KV_to_int() function. This functions is provided
by Portage but not listed in PMS. Furthermore, for a long time Portage
replaced it with 'return 1' in global scope, so they did not really work
as expected anyway.

 eclass/tests/toolchain-funcs.sh |  7 ---
 eclass/toolchain-funcs.eclass   | 16 +++-
 2 files changed, 3 insertions(+), 20 deletions(-)

diff --git a/eclass/tests/toolchain-funcs.sh b/eclass/tests/toolchain-funcs.sh
index e6a1538..bfbe26f 100755
--- a/eclass/tests/toolchain-funcs.sh
+++ b/eclass/tests/toolchain-funcs.sh
@@ -25,13 +25,6 @@ test-tc-arch-kernel() {
done
return ${ret}
 }
-tbegin "tc-arch-kernel() (KV=2.6.0)"
-test-tc-arch-kernel 2.6.0 \
-   alpha arm{,eb}:arm avr32 bfin:blackfin cris hppa:parisc \
-   i{3..6}86:i386 ia64 m68k mips{,eb}:mips nios2 powerpc:ppc 
powerpc64:ppc64 \
-   s390{,x}:s390 sh{1..4}{,eb}:sh sparc{,64} vax x86_64 \
-   i{3..6}86-gentoo-freebsd:i386
-tend $?
 tbegin "tc-arch-kernel() (KV=2.6.30)"
 test-tc-arch-kernel 2.6.30 \
i{3..6}86:x86 x86_64:x86 \

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index d3abfb5..2652e0e 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -460,10 +460,6 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
local host=$2
[[ -z ${host} ]] && host=${CTARGET:-${CHOST}}
 
-   local KV=${KV:-${KV_FULL}}
-   [[ ${type} == "kern" ]] && [[ -z ${KV} ]] && \
-   ewarn "QA: Kernel version could not be determined, please inherit 
kernel-2 or linux-info"
-
case ${host} in
aarch64*)   echo arm64;;
alpha*) echo alpha;;
@@ -479,7 +475,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
# Starting with linux-2.6.24, the 'x86_64' and 'i386'
# trees have been unified into 'x86'.
# FreeBSD still uses i386
-   if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -lt 
$(KV_to_int 2.6.24) || ${host} == *freebsd* ]] ; then
+   if [[ ${type} == "kern" && ${host} == *freebsd* ]] ; 
then
echo i386
else
echo x86
@@ -497,14 +493,8 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
# Starting with linux-2.6.15, the 'ppc' and 'ppc64' 
trees
# have been unified into simply 'powerpc', but until 
2.6.16,
# ppc32 is still using ARCH="ppc" as default
-   if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge 
$(KV_to_int 2.6.16) ]] ; then
+   if [[ ${type} == "kern" ]] ; then
echo powerpc
-   elif [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) 
-eq $(KV_to_int 2.6.15) ]] ; then
-   if [[ ${host} == powerpc64* ]] || [[ 
${PROFILE_ARCH} == "ppc64" ]] ; then
-   echo powerpc
-   else
-   echo ppc
-   fi
elif [[ ${host} == powerpc64* ]] ; then
echo ppc64
elif [[ ${PROFILE_ARCH} == "ppc64" ]] ; then
@@ -529,7 +519,7 @@ ninj() { [[ ${type} == "kern" ]] && echo $1 || echo $2 ; }
x86_64*)
# Starting with linux-2.6.24, the 'x86_64' and 'i386'
# trees have been unified into 'x86'.
-   if [[ ${type} == "kern" ]] && [[ $(KV_to_int ${KV}) -ge 
$(KV_to_int 2.6.24) ]] ; then
+   if [[ ${type} == "kern" ]] ; then
echo x86
else
ninj x86_64 amd64



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

2016-06-26 Thread Göktürk Yüksek
commit: faeddcb8b86ab72b5c2a428e400faad48a9dbd7b
Author: Chaos  gmail  com>
AuthorDate: Tue Jun 14 12:49:02 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 05:49:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faeddcb8

media-video/qgifer: fix deps and doc path, EAPI bump

Fix the version range for media-libs/giflib dependency
Use subslots with opencv
Fix doc path so it uses ${PF} instead of ${PN}

Gentoo-bug: 579246
Closes: https://github.com/gentoo/gentoo/pull/1677

 ...ifer-0.2.1-r1.ebuild => qgifer-0.2.1-r3.ebuild} | 24 +++--
 media-video/qgifer/qgifer-0.2.1.ebuild | 39 --
 2 files changed, 14 insertions(+), 49 deletions(-)

diff --git a/media-video/qgifer/qgifer-0.2.1-r1.ebuild 
b/media-video/qgifer/qgifer-0.2.1-r3.ebuild
similarity index 60%
rename from media-video/qgifer/qgifer-0.2.1-r1.ebuild
rename to media-video/qgifer/qgifer-0.2.1-r3.ebuild
index 2c646a9..9f2cdc5 100644
--- a/media-video/qgifer/qgifer-0.2.1-r1.ebuild
+++ b/media-video/qgifer/qgifer-0.2.1-r3.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-EAPI="5"
+EAPI="6"
 
 inherit cmake-utils
 
@@ -10,31 +10,35 @@ DESCRIPTION="A video-based animated GIF creator"
 HOMEPAGE="https://sourceforge.net/projects/qgifer/;
 SRC_URI="mirror://sourceforge/${PN}/${P}-source.tar.gz"
 
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 IUSE="debug imagemagick opencv3"
 
-RDEPEND="media-libs/giflib:0
+RDEPEND="=media-libs/opencv-2.4.9[ffmpeg] 
=media-libs/opencv-3.0.0[ffmpeg] )
+   !opencv3? ( media-libs/opencv:0/2.4[ffmpeg] )
+   opencv3? ( media-libs/opencv:0/3.0[ffmpeg] )
virtual/ffmpeg:0"
 
-DEPEND="${RDEPEND}
-   >=dev-util/cmake-2.8:0"
+DEPEND="${RDEPEND}"
 
 S="${WORKDIR}/${P}-source"
 
 src_prepare() {
-   epatch "${FILESDIR}"/${P}-desktop.patch
+   eapply -p0 "${FILESDIR}/${P}-desktop.patch"
 
if use opencv3 ; then
-   epatch "${FILESDIR}"/${P}-opencv3.patch
+   eapply "${FILESDIR}/${P}-opencv3.patch"
fi
+
+   # Fix the doc path
+   sed -i -e "s|share/doc/qgifer|share/doc/${PF}|" CMakeLists.txt
+
+   eapply_user
 }
 
 src_configure() {

diff --git a/media-video/qgifer/qgifer-0.2.1.ebuild 
b/media-video/qgifer/qgifer-0.2.1.ebuild
deleted file mode 100644
index 47c8279..000
--- a/media-video/qgifer/qgifer-0.2.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-inherit cmake-utils
-
-DESCRIPTION="A video-based animated GIF creator"
-HOMEPAGE="https://sourceforge.net/projects/qgifer/;
-SRC_URI="mirror://sourceforge/${PN}/${P}-source.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="debug imagemagick"
-
-RDEPEND="media-libs/giflib:0
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   imagemagick? ( media-gfx/imagemagick:0 )
-   media-libs/opencv:0[ffmpeg]
-   virtual/ffmpeg:0"
-
-DEPEND="${RDEPEND}
-   >=dev-util/cmake-2.8:0"
-
-S="${WORKDIR}/${P}-source"
-
-PATCHES=( "${FILESDIR}"/${P}-desktop.patch )
-
-src_configure() {
-   local mycmakeargs=""
-
-   use debug && mycmakeargs+=" -DRELEASE_MODE=OFF"
-
-   cmake-utils_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: app-pda/gtkpod/

2016-06-26 Thread Patrick Lauer
commit: 5e44661d11c45c4248f003452e8400774935ae26
Author: Patrick Lauer  gentoo  org>
AuthorDate: Mon Jun 27 05:37:22 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Mon Jun 27 05:37:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e44661d

app-pda/gtkpod: Remove unneeded useflag description from metadata.xml

Package-Manager: portage-2.3.0

 app-pda/gtkpod/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-pda/gtkpod/metadata.xml b/app-pda/gtkpod/metadata.xml
index 639d0c1..94faaf7 100644
--- a/app-pda/gtkpod/metadata.xml
+++ b/app-pda/gtkpod/metadata.xml
@@ -4,7 +4,6 @@


Enable clutter support for displaying 
coverart
-   Enable webkit support for finding 
coverart


gtkpod



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

2016-06-26 Thread Hans de Graaff
commit: 0574ed99efee25471ecdefbc68be38220054d287
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun 27 04:43:05 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun 27 04:43:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0574ed99

dev-ruby/rash: drop ruby19

Package-Manager: portage-2.2.28

 dev-ruby/rash/rash-0.4.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rash/rash-0.4.0-r2.ebuild 
b/dev-ruby/rash/rash-0.4.0-r2.ebuild
index 99484a1..1da6509 100644
--- a/dev-ruby/rash/rash-0.4.0-r2.ebuild
+++ b/dev-ruby/rash/rash-0.4.0-r2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 



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

2016-06-26 Thread Hans de Graaff
commit: 4efd0b5943df2373ac245cc43ea09971d3c7ac60
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun 27 04:41:16 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun 27 04:41:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4efd0b59

dev-ruby/http: add 2.0.2

Package-Manager: portage-2.2.28

 dev-ruby/http/Manifest  |  1 +
 dev-ruby/http/http-2.0.2.ebuild | 44 +
 2 files changed, 45 insertions(+)

diff --git a/dev-ruby/http/Manifest b/dev-ruby/http/Manifest
index 04e732f..4140c93 100644
--- a/dev-ruby/http/Manifest
+++ b/dev-ruby/http/Manifest
@@ -3,3 +3,4 @@ DIST http-0.9.8.gem 66560 SHA256 
517790c159adc2755c0a6dac5b64d719d4dd8fb4437409e
 DIST http-1.0.2.gem 62464 SHA256 
90f0b96e221d6c4bd6cfbdb6e2ec5426e1bdbb61f833e2fa23ac8385cfdeb34b SHA512 
fbfa76f588d46b10dfa0d3b319d0ca1a5a92749575cf27791febaf5d55f2e4458cf34f48d8b9792d4e220c89c702b75b039ca5b66d3c43d31bab982082312113
 WHIRLPOOL 
8c0d4a94aa182d0d38e2e27e2eb21272efa7b2b48309d7c225acb56aa6a169a1d399a693e897a2ae0cb19b98ba09972370d31fca7b74a24df8002ecf36cb2920
 DIST http-2.0.0.gem 62464 SHA256 
995c38950b382f3982ed1c3adaad27d087855fced1c62a256fcdd765bfe18671 SHA512 
6d03a328e26b9a66cd29c1cb8178ac7b77251bf469464e342ed853f37a6e5cd5d18a112eac3ca813abf6680574535f9a837217c7461e939a179d8eacc6c5fe93
 WHIRLPOOL 
e6a490e23be86a6348c88cd73cda99550bc01276da198e3694411362c523567a11544a37f2194244fff417a3e319ca400e3616dd4539836355b02389a29d7df0
 DIST http-2.0.1.gem 62464 SHA256 
f46f7ea5aec6e56b22fefe2de0d03d081156d348c6ff1f5c063f1f8c79dfe27b SHA512 
db3166b11388974ca07acfd5de0cfeb5971363e6dbeb712abcba025b338d97704cc85593accf4a89c87c139fb2bd327c58665f4b12bc66cf4ab9eedb49c19ab2
 WHIRLPOOL 
c69ccbfeafb5ac8d37942d6923df267136e225d9312c38d6e3999ec00bbf2c19f264a765ac9e90cf54e2cb082e56959411ba16ad90520e7af20f8c5f5c42e6eb
+DIST http-2.0.2.gem 62976 SHA256 
d881dfc7cb8f63fd25e522e8f99cdb922c9fe15410cd0d95b1bba083e07d6b76 SHA512 
0466d270a5bc2fdbd0d5dff085373e16e99bd52142187ae6ec127ece982bfca2998fc369be724647725c7519bef61a4c8ad9a405e0a44a454729fa68984e8862
 WHIRLPOOL 
27ad8882f7d52d38c894ee0297826790a08941574f83f00e2cf2a6b282336857575818cfbf5451736671aa52475672b80b374553ade01b1fa8a9660c455bd3bd

diff --git a/dev-ruby/http/http-2.0.2.ebuild b/dev-ruby/http/http-2.0.2.ebuild
new file mode 100644
index 000..da335b5
--- /dev/null
+++ b/dev-ruby/http/http-2.0.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="An easy-to-use client library for making requests from Ruby"
+HOMEPAGE="https://github.com/tarcieri/http;
+
+LICENSE="MIT"
+SLOT="2.0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/addressable-2.3
+   >=dev-ruby/http-cookie-1.0
+   >=dev-ruby/http-form_data-1.0.1:1.0
+   >=dev-ruby/http_parser_rb-0.6.0 =dev-ruby/http_parser_rb-0.6*"
+
+ruby_add_bdepend "
+   test? ( dev-ruby/certificate_authority dev-ruby/rspec-its )"
+
+all_ruby_prepare() {
+   sed -i -e '/simplecov/,/end/ s:^:#:' \
+   -e '1irequire "cgi"' spec/spec_helper.rb || die
+
+   # Avoid specs that require network access
+   sed -i -e '/.persistent/,/^  end/ s:^:#:' \
+   spec/lib/http_spec.rb || die
+   sed -i -e '/with non-ASCII URLs/,/^end/ s:^:#:' \
+   spec/lib/http/client_spec.rb || die
+
+   # Avoid spec that may fail with a running web server
+   sed -i -e '/unifies socket errors into HTTP::ConnectionError/,/^
end/ s:^:#:' spec/lib/http_spec.rb || die
+}



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

2016-06-26 Thread Hans de Graaff
commit: c9f3eef95a7db38a10d6fba814d2df772a623b3b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun 27 04:29:07 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun 27 04:41:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9f3eef9

dev-ruby/celluloid-supervision: add 0.20.6

Package-Manager: portage-2.2.28

 dev-ruby/celluloid-supervision/Manifest|  1 +
 .../celluloid-supervision-0.20.6.ebuild| 38 ++
 2 files changed, 39 insertions(+)

diff --git a/dev-ruby/celluloid-supervision/Manifest 
b/dev-ruby/celluloid-supervision/Manifest
index 716d71c..ca12ca0 100644
--- a/dev-ruby/celluloid-supervision/Manifest
+++ b/dev-ruby/celluloid-supervision/Manifest
@@ -1 +1,2 @@
 DIST celluloid-supervision-0.20.5.tar.gz 16404 SHA256 
503dad4bbda90f8c6d0a092f128fa68f48ab24b8fc7707baa38bd208b65af5ea SHA512 
0fca953b6ade756574040b8e34e8ac4ea3d392628a9fb14a8d52f39ca3f92371e335520b673dec8fc9a4a44a208b38f51c9c23e2218510078ded64c903533bc8
 WHIRLPOOL 
665a4594e1cb063d7895cb1abd428518cb8b63d4127571854a372ddbd4955957ee04a838e1d1622197e109bb23a268b75a040b559240df7c25261324e2f2199f
+DIST celluloid-supervision-0.20.6.tar.gz 16391 SHA256 
a315537d2d9277ea72c1e7348ece27a4db41d57f88f789e915dbc35a5901fb4e SHA512 
f27d873641bf732822f1c65a8344a2c3bb611040ff0b3c72baff44ad3166f9a872e3dc536310a725f6ae91f1664ff72eba77c3192325ec52a25b7efee1beeaed
 WHIRLPOOL 
19df082ce0be529e5afe492c75ae5b1070e3d21058e92271ac86758348ede3dfed07ec44967fd3897ab3346475314e45d807c681e7d191bc0e6d367b26fe43eb

diff --git a/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.6.ebuild 
b/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.6.ebuild
new file mode 100644
index 000..7c7f015
--- /dev/null
+++ b/dev-ruby/celluloid-supervision/celluloid-supervision-0.20.6.ebuild
@@ -0,0 +1,38 @@
+# 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_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Provides a simple and natural way to build fault-tolerant 
concurrent programs"
+HOMEPAGE="https://github.com/celluloid/celluloid;
+SRC_URI="https://github.com/celluloid/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+IUSE=""
+SLOT="0"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~arm ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+ruby_add_rdepend "
+   >=dev-ruby/timers-4.1.1"
+
+ruby_add_bdepend "test? (
+   >=dev-ruby/celluloid-0.17.2
+   dev-ruby/dotenv
+   dev-ruby/nenv
+   dev-ruby/rspec-retry
+)"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' -e '/coveralls/I s:^:#:' spec/spec_helper.rb 
|| die
+
+   sed -i -e '1irequire "pathname"' spec/spec_helper.rb || die
+   sed -i -e "s:log/test.log:${TMPDIR}/test.log:" .env-dev || die
+}



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

2016-06-26 Thread Hans de Graaff
commit: f22bf82381313094ac3eeea7e8ad3b6ef192c061
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Jun 27 04:34:59 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Jun 27 04:41:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f22bf823

dev-ruby/dotenv: avoid development dependency on rubocop

Package-Manager: portage-2.2.28

 dev-ruby/dotenv/dotenv-2.1.1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-ruby/dotenv/dotenv-2.1.1.ebuild 
b/dev-ruby/dotenv/dotenv-2.1.1.ebuild
index b7072eb..60f2a64 100644
--- a/dev-ruby/dotenv/dotenv-2.1.1.ebuild
+++ b/dev-ruby/dotenv/dotenv-2.1.1.ebuild
@@ -25,6 +25,8 @@ ruby_add_bdepend "test? ( dev-ruby/spring dev-ruby/rails )"
 all_ruby_prepare() {
sed -i -e '/:guard/,/end/ s:^:#:' \
-e '5igem "rspec", "~> 3.0"' Gemfile || die
+
+   sed -i -e '/rubocop/ s:^:#:' dotenv.gemspec || die
 }
 
 each_ruby_prepare() {



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

2016-06-26 Thread Matt Thode
commit: bc183de1c3b453985cc3085cd983e7b36f98fa5e
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun 27 04:19:14 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Jun 27 04:19:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc183de1

net-fs/nfstest: bup

Package-Manager: portage-2.2.28

 net-fs/nfstest/Manifest |  1 +
 net-fs/nfstest/nfstest-2.1.2.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/net-fs/nfstest/Manifest b/net-fs/nfstest/Manifest
index 40e21f4..97492a8 100644
--- a/net-fs/nfstest/Manifest
+++ b/net-fs/nfstest/Manifest
@@ -1 +1,2 @@
 DIST NFStest-1.0.2.tar.gz 214840 SHA256 
9fcde8dfb8da1a36626c5af907eae052ff6530b11a0b0cbf2851eef4f82fa10c SHA512 
3758f6af8c3959274a3dfdc33a3c9e76451bd46c85b779ce7352ec4b4d616273ff2b409598fb31dbaf4663b8a2d743f9e0a1cc3a0c4eabcd918d6d5fbed2f09e
 WHIRLPOOL 
c97d65634d01eeb0087f8545781c8402ef195d6bd819f812aec7cbe7908cac76fe13da2e8c78c24d714a5e515bd7f61cbbbc3e4865984d2eb88261c02454f0e3
+DIST NFStest-2.1.2.tar.gz 357049 SHA256 
de3fbab7c4e9e1c0e5e23c4eedaabc44a387b2e50cabd949912613db7f029baa SHA512 
83d77bd94bb325d1a7badfc48d55fe200c6f53749d13f622c918b2fd6d8a7d279fda5f59e725f86d41b3f573881a14c677556c8b1b36d1a0b5e20d7d9b7639e9
 WHIRLPOOL 
708756823d564bd90744c05e749ed21ca98033cc76e5c9b874ac1fd6085838b6314a53c0ec36fdaf0ead6cae37d97febb0ca7351515a26a73c2266370ba53739

diff --git a/net-fs/nfstest/nfstest-2.1.2.ebuild 
b/net-fs/nfstest/nfstest-2.1.2.ebuild
new file mode 100644
index 000..2a9b72a
--- /dev/null
+++ b/net-fs/nfstest/nfstest-2.1.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1
+
+MY_PN="NFStest"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Tools for testing either the NFS client or the NFS server"
+HOMEPAGE="http://wiki.linux-nfs.org/wiki/index.php/NFStest;
+SRC_URI="http://www.linux-nfs.org/~mora/nfstest/releases/${MY_P}.tar.gz;
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="net-fs/nfs-utils"
+DEPEND=""
+
+S="${WORKDIR}"/${MY_P}



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

2016-06-26 Thread Matt Thode
commit: 7d79c655ca4403674b4d0887bdb3e5960bf003d2
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun 27 04:24:27 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Jun 27 04:24:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d79c655

sys-auth/keystone: fixing patching for bug 586870

Package-Manager: portage-2.2.28

 sys-auth/keystone/keystone-9.0.2.ebuild | 5 ++---
 1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/sys-auth/keystone/keystone-9.0.2.ebuild 
b/sys-auth/keystone/keystone-9.0.2.ebuild
index d3a7097..b7cce24 100644
--- a/sys-auth/keystone/keystone-9.0.2.ebuild
+++ b/sys-auth/keystone/keystone-9.0.2.ebuild
@@ -101,9 +101,8 @@ RDEPEND="
www-servers/gunicorn[${PYTHON_USEDEP}]
)"
 
-PATCHES=(
-   "${FILESDIR}/CVE-2016-4911_9.0.0.patch"
-)
+#PATCHES=(
+#)
 
 pkg_setup() {
enewgroup keystone



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

2016-06-26 Thread Matt Thode
commit: fb4bb7b78dc5b7433532d7a930c765ae815143a7
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun 27 03:14:18 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Jun 27 03:14:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb4bb7b7

dev-python/keyring: bup

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/keyring/Manifest b/dev-python/keyring/Manifest
index 0fe2392..7756de3 100644
--- a/dev-python/keyring/Manifest
+++ b/dev-python/keyring/Manifest
@@ -1,2 +1,3 @@
 DIST keyring-3.7.zip 89249 SHA256 
e187358e6a9b8e63cc2e223f6f9d4c40c972c0076f4aa0d65b8c9eb75edbea02 SHA512 
7343d40566484b33e3f265d874d75fcf502dbc0abfd653db65536ca4d475fc5596ba23a6472467b88b589fca740f62860a39d18ad7a285696b4cc2c79abe2729
 WHIRLPOOL 
79967660e4db75f4a89ebc462ee4cb73b3b261bdfc9666979f7a08cfcac6a04b2cbe975b0467155b8b159c630bdf938afcc5d9a3ab25928abfaf54cf6b233844
 DIST keyring-8.6.tar.gz 38526 SHA256 
92b28d9713ed77bc157680e95a3643a5777f5c3e0690e772c2f2da7df81ce46d SHA512 
a139736381ee706da1c5456259ce0ca07d4079003f2eb90bab6b3dc4b8ff6b7bf68a907427f1f4014e861ed697bbbc89f7fa68a3b53507632d3f668b8bc0
 WHIRLPOOL 
f242f7b5b4c5f22cddc82ee97223aa55d25d85bdb81ccb139571d434a9b4bb5ceac85395a94e7e95491a1ad19d1bd58681a51f9af58fd6350744f88411fa538a
+DIST keyring-9.2.1.tar.gz 40150 SHA256 
c742a3684a5e4f41793fa079eee8e1299d749979ea44a20a5a83db7cbc742a3b SHA512 
65109e8b3e11bb1af743087cca3bdb5d74b9eea204ce9da8138f60b2bfd2e75b4c79990f0903543855967ba6d9496c816c914ffbff6aee2b9e58a407c0d6cf73
 WHIRLPOOL 
7cf33715731582d987d37c6fef7ecf4d0d8df24418075d6ccade2e798eb03460e34717a9d0f10d3b3e8afd6ee6dde419cb7ac8ed9e4eb8e61217d3044f537cc7

diff --git a/dev-python/keyring/keyring-9.2.1.ebuild 
b/dev-python/keyring/keyring-9.2.1.ebuild
new file mode 100644
index 000..ab7471a
--- /dev/null
+++ b/dev-python/keyring/keyring-9.2.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Provides access to the system keyring service"
+HOMEPAGE="https://github.com/jaraco/keyring;
+SRC_URI="mirror://pypi/k/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="PSF-2"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.9[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   )"
+RDEPEND=""
+
+python_test() {
+   py.test -v -v || die "testsuite failed under ${EPYTHON}"
+}



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

2016-06-26 Thread Matt Thode
commit: fdccb054a231ec1e52a465d6ff3e4af12a606ee7
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Jun 26 01:07:18 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Jun 27 02:53:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fdccb054

net-misc/memcached: bup

Package-Manager: portage-2.2.28

 net-misc/memcached/Manifest|  1 +
 net-misc/memcached/memcached-1.4.27.ebuild | 83 ++
 2 files changed, 84 insertions(+)

diff --git a/net-misc/memcached/Manifest b/net-misc/memcached/Manifest
index eb5beb4..eeb4ae2 100644
--- a/net-misc/memcached/Manifest
+++ b/net-misc/memcached/Manifest
@@ -5,3 +5,4 @@ DIST memcached-1.4.17.tar.gz 326970 SHA256 
d9173ef6d99ba798c982ea4566cb4f0e64eb2
 DIST memcached-1.4.24.tar.gz 354917 SHA256 
08a426c504ecf64633151eec1058584754d2f54e62e5ed2d6808559401617e55 SHA512 
446676ae7b21d8d9246f38d3df06b167ea93a853f88ac70ae3a99b1a85a4de3d452ee266e77fac599660b9bc6e785bc89224f46e16ff6e216476d50e4706b9f6
 WHIRLPOOL 
269e920a0d5279786a4f4ef516b71fa7e95cacdf8627a2b692d2387a66d5d9a80618f190cf013bf070aff0f73d70d6e75dc4e3402fe8e64b372026be83170e3d
 DIST memcached-1.4.25.tar.gz 359709 SHA256 
f058437b3c224d321919a9a6bb4e3eedb2312ed718c0caf087ff2f04ab795dda SHA512 
e037c3bbb68c4077f814f855663501af418ce3b1f8bc20f8e7eba3249aea378e55b3291457952fa4511779ec3702496fdaab5799edae7d59bc64eb6fd54ee14e
 WHIRLPOOL 
213bb95d9b814e446dce31073701d997ac6b994bca655bf38eb7b8f552c4bd7e87bd36d5f9a802a965649306fe5e1ea3f093b4ce274119b23fe7aaf22a55f2ca
 DIST memcached-1.4.26.tar.gz 373384 SHA256 
4a67800277eec2e523c51d5f620c416e7d0acfde90beacaa26d8e4f6976b43f6 SHA512 
b9346e5fd60407133d2d1eb1a6fadfe455607b6b9ba4434a00ec9c8ce480dffddf19a4965dfed92a6a10d46b98f1a6754851fd4c20d55c4a19200879db5baf9c
 WHIRLPOOL 
9b03018914b11eadb9af2c7f67af9a298e2fc3d4139af615951f94114e0c099b600f859c08d2230c919888d288b3b80a7d2df188a95e4d73ec781ae6965a7910
+DIST memcached-1.4.27.tar.gz 377793 SHA256 
96a90e7abec041a3c03258b6ce01ab21be16a9c594b7891a55567428392e8fe7 SHA512 
54572e5d18e71d5c03cc3ed9a13c822800eeef7b7779132aa72f685177884c10f783a4c8fa88b6af7aef51dc230df7f351f2fa2b317ddd9b495007be89aefcea
 WHIRLPOOL 
ba7ff04d92a1cc42a4873406fe20ae771411294aa312d002af7f2921584589c1e1811dac7cdd57d0525990861e00d8840377e7e319ff1b6fa9892af921d1e7c7

diff --git a/net-misc/memcached/memcached-1.4.27.ebuild 
b/net-misc/memcached/memcached-1.4.27.ebuild
new file mode 100644
index 000..53f0984
--- /dev/null
+++ b/net-misc/memcached/memcached-1.4.27.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit autotools eutils flag-o-matic systemd user
+
+MY_PV="${PV/_rc/-rc}"
+MY_P="${PN}-${MY_PV}"
+
+DESCRIPTION="High-performance, distributed memory object caching system"
+HOMEPAGE="http://memcached.org/;
+SRC_URI="http://www.memcached.org/files/${MY_P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+IUSE="test slabs-reassign debug sasl selinux" # hugetlbfs later
+
+RDEPEND=">=dev-libs/libevent-1.4
+dev-lang/perl
+sasl? ( dev-libs/cyrus-sasl )
+selinux? ( sec-policy/selinux-memcached )"
+DEPEND="${RDEPEND}
+   test? ( virtual/perl-Test-Harness 
>=dev-perl/Cache-Memcached-1.24 )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   epatch "${FILESDIR}/${PN}-1.2.2-fbsd.patch"
+   # Handled different upstream
+   #epatch "${FILESDIR}/${PN}-1.3.3-gcc4-slab-fixup.patch"
+   epatch "${FILESDIR}/${PN}-1.4.0-fix-as-needed-linking.patch"
+   epatch "${FILESDIR}/${PN}-1.4.4-as-needed.patch"
+   epatch "${FILESDIR}/${PN}-1.4.17-EWOULDBLOCK.patch"
+   sed -i -e 's,-Werror,,g' configure.ac || die
+   sed -i -e 's,AM_CONFIG_HEADER,AC_CONFIG_HEADERS,' configure.ac || die
+   eautoreconf
+   use slabs-reassign && append-flags -DALLOW_SLABS_REASSIGN
+}
+
+src_configure() {
+   econf \
+   --disable-docs \
+   $(use_enable sasl)
+   # The xml2rfc tool to build the additional docs requires TCL :-(
+   # `use_enable doc docs`
+}
+
+src_compile() {
+   # There is a heavy degree of per-object compile flags
+   # Users do NOT know better than upstream. Trying to compile the testapp 
and
+   # the -debug version with -DNDEBUG _WILL_ fail.
+   append-flags -UNDEBUG -pthread
+   emake testapp memcached-debug CFLAGS="${CFLAGS}"
+   filter-flags -UNDEBUG
+   emake
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+   dobin scripts/memcached-tool
+   use debug && dobin memcached-debug
+
+   dodoc AUTHORS ChangeLog NEWS README.md doc/{CONTRIBUTORS,*.txt}
+
+   newconfd "${FILESDIR}/memcached.confd" memcached
+   newinitd 

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

2016-06-26 Thread Matt Thode
commit: 250acfa0b072df81cf21887be464634a8b2131ff
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Jun 27 02:52:47 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Mon Jun 27 02:53:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=250acfa0

app-admin/glance: removing unused file bug 586750

Package-Manager: portage-2.2.28

 app-admin/glance/files/glance.confd | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-admin/glance/files/glance.confd 
b/app-admin/glance/files/glance.confd
deleted file mode 100644
index 4eb2893..000
--- a/app-admin/glance/files/glance.confd
+++ /dev/null
@@ -1 +0,0 @@
-PID_PATH=/var/run/glance



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

2016-06-26 Thread Göktürk Yüksek
commit: 96fe3036308df9f4344043b16a7199bebc1fe27d
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Sun Jun 26 21:29:30 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 00:50:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96fe3036

app-admin/ulogd: remove unneeded USE descriptions

Package-Manager: portage-2.3.0

 app-admin/ulogd/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/app-admin/ulogd/metadata.xml b/app-admin/ulogd/metadata.xml
index 1ca7b99..6105b0a 100644
--- a/app-admin/ulogd/metadata.xml
+++ b/app-admin/ulogd/metadata.xml
@@ -12,9 +12,6 @@

Build JSON output plugin to save packets in 
JSON file format.
Build PCAP output plugin to save packets in 
libpcap file format.
-   Build MySQL output plugin to save packets in 
a mysql database.
-   Build PGSQL output plugin to save packets 
in a postgres database.
-   Build SQLITE3 output plugin to save packets 
in a sqlite database.
Build NFLOG input plugin to support 
stateless packet-based logging via nfnetlink_queue.
Build NFCT input plugin to support stateful 
flow-based logging via nf_conntrack_netlink.
Build NFACCT input plugin to support 
traffic accounting via nfnetlink_acct.



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

2016-06-26 Thread Göktürk Yüksek
commit: 1c9e0625e1b4463d9a062b275e9ccf88c3dca2b5
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Sun Jun 26 21:32:40 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 00:50:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c9e0625

app-admin/ulogd: fix and sort USE descriptions

Package-Manager: portage-2.3.0

 app-admin/ulogd/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/ulogd/metadata.xml b/app-admin/ulogd/metadata.xml
index 1a64198..20ac910 100644
--- a/app-admin/ulogd/metadata.xml
+++ b/app-admin/ulogd/metadata.xml
@@ -12,9 +12,9 @@

Build JSON output plugin to save packets in 
JSON file format
Build PCAP output plugin to save packets in 
libpcap file format
-   Build NFLOG input plugin to support 
stateless packet-based logging via nfnetlink_queue
-   Build NFCT input plugin to support stateful 
flow-based logging via nf_conntrack_netlink
Build NFACCT input plugin to support 
traffic accounting via nfnetlink_acct
+   Build NFCT input plugin to support stateful 
flow-based logging via nfnetlink_conntrack
+   Build NFLOG input plugin to support 
stateless packet-based logging via nfnetlink_log
Build ULOG input plugin to support deprecated 
packet-based logging via ULOG target





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

2016-06-26 Thread Göktürk Yüksek
commit: 1719115883b9b9bd6ccbed02ddc31de4fe7b017d
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Sun Jun 26 21:30:37 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 00:50:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17191158

app-admin/ulogd: remove unneeded periods from USE descriptions

Package-Manager: portage-2.3.0

 app-admin/ulogd/metadata.xml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-admin/ulogd/metadata.xml b/app-admin/ulogd/metadata.xml
index 6105b0a..1a64198 100644
--- a/app-admin/ulogd/metadata.xml
+++ b/app-admin/ulogd/metadata.xml
@@ -10,12 +10,12 @@
Proxy Maintainers


-   Build JSON output plugin to save packets in 
JSON file format.
-   Build PCAP output plugin to save packets in 
libpcap file format.
-   Build NFLOG input plugin to support 
stateless packet-based logging via nfnetlink_queue.
-   Build NFCT input plugin to support stateful 
flow-based logging via nf_conntrack_netlink.
-   Build NFACCT input plugin to support 
traffic accounting via nfnetlink_acct.
-   Build ULOG input plugin to support deprecated 
packet-based logging via ULOG target.
+   Build JSON output plugin to save packets in 
JSON file format
+   Build PCAP output plugin to save packets in 
libpcap file format
+   Build NFLOG input plugin to support 
stateless packet-based logging via nfnetlink_queue
+   Build NFCT input plugin to support stateful 
flow-based logging via nf_conntrack_netlink
+   Build NFACCT input plugin to support 
traffic accounting via nfnetlink_acct
+   Build ULOG input plugin to support deprecated 
packet-based logging via ULOG target



https://bugzilla.netfilter.org/enter_bug.cgi?product=ulogd



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

2016-06-26 Thread Mike Gilbert
commit: d995beac3585e6b21b3d68b1a7e4c59e9b51
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jun 27 00:29:36 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jun 27 00:31:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d995beac

dev-python/configparser: depend on setuptools

Package-Manager: portage-portage_p2.3.0

 dev-python/configparser/configparser-3.3.0.2.ebuild | 4 +++-
 dev-python/configparser/configparser-3.5.0.ebuild   | 2 ++
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-python/configparser/configparser-3.3.0.2.ebuild 
b/dev-python/configparser/configparser-3.3.0.2.ebuild
index 239155e..8ad0a77 100644
--- a/dev-python/configparser/configparser-3.3.0.2.ebuild
+++ b/dev-python/configparser/configparser-3.3.0.2.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$
 
@@ -16,4 +16,6 @@ SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE=""
 
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+
 S=${WORKDIR}/${PN}-${MY_PV}

diff --git a/dev-python/configparser/configparser-3.5.0.ebuild 
b/dev-python/configparser/configparser-3.5.0.ebuild
index 454d51a..2aaa9ef 100644
--- a/dev-python/configparser/configparser-3.5.0.ebuild
+++ b/dev-python/configparser/configparser-3.5.0.ebuild
@@ -14,3 +14,5 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-06-26 Thread Mike Gilbert
commit: 678e6156d42b0a23ea988dd9208df59705db1b1b
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sun Jun 26 09:23:00 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jun 27 00:31:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=678e6156

dev-python/configparser: Version bump to 3.5.0 + bump to EAPI=6

Package-Manager: portage-2.2.26
Closes: https://github.com/gentoo/gentoo/pull/1746

 dev-python/configparser/Manifest  |  1 +
 dev-python/configparser/configparser-3.5.0.ebuild | 16 
 2 files changed, 17 insertions(+)

diff --git a/dev-python/configparser/Manifest b/dev-python/configparser/Manifest
index 3290a0c..7a482d3 100644
--- a/dev-python/configparser/Manifest
+++ b/dev-python/configparser/Manifest
@@ -1 +1,2 @@
 DIST configparser-3.3.0r2.tar.gz 32885 SHA256 
6a2318590dfc4013fc5bf53c2bec14a8cb455a232295eb282a13f94786c4b0b2 SHA512 
86c095bb64766e87ba59462a99d0287ec52073f27a1c9be7d37568516bc0cc4af6f362ca90a1b90f52aaa4342dc275d769c77f18d80c0efb114ba6fce37fff5f
 WHIRLPOOL 
125ea0a2f1632c599e30d2e196f463139248b9fe1d0e24945b15f3497646b5e87dd0659c9ba78625d8fbaeac7ea5a7f8fd4124c0ad52e64ebbf4ec06533fe9b8
+DIST configparser-3.5.0.tar.gz 39573 SHA256 
5308b47021bc2340965c371f0f058cc6971a04502638d4244225c49d80db273a SHA512 
490b9f7807bce02667f41a48389b51f550818d2bd4296b528833d65d4b04bdbe5b906e7584e55eee4495405267a697ba26a056e6504fe6b3f8cf07ea8f55f7d3
 WHIRLPOOL 
b10b1bf1b605d7da4cac44c0feb53e50b7aa1005d06be218e84e502387b32469bd566a68c1d2e0420eb880a90bb754c6e8875771bdcd7d9207553afed0a1ca9d

diff --git a/dev-python/configparser/configparser-3.5.0.ebuild 
b/dev-python/configparser/configparser-3.5.0.ebuild
new file mode 100644
index 000..454d51a
--- /dev/null
+++ b/dev-python/configparser/configparser-3.5.0.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 pypy )
+inherit distutils-r1
+
+DESCRIPTION="Backport of Python-3 built-in configparser"
+HOMEPAGE="https://pypi.python.org/pypi/configparser/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""



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

2016-06-26 Thread Göktürk Yüksek
commit: 096fa821ad0b4945875ce025847edeb2d984e186
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Sun Jun 26 17:17:01 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 00:23:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=096fa821

media-video/mpv: cleanup maintainer list

Acked-By: Maxim Koltsov  gentoo.org>

Package-Manager: portage-2.3.0

 media-video/mpv/metadata.xml | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/media-video/mpv/metadata.xml b/media-video/mpv/metadata.xml
index 20985a6..589e664 100644
--- a/media-video/mpv/metadata.xml
+++ b/media-video/mpv/metadata.xml
@@ -5,9 +5,6 @@
itumaykin+gen...@gmail.com
Coacher

-   
-   maksbo...@gentoo.org
-   

media-vi...@gentoo.org
Gentoo Video project



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

2016-06-26 Thread Göktürk Yüksek
commit: 8cdd1e2f3c5278e31affe85c21a73592fafeabe3
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Sun Jun 26 17:05:59 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 00:23:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cdd1e2f

media-libs/ffmpegsource: cleanup maintainer list

Acked-By: Maxim Koltsov  gentoo.org>

Package-Manager: portage-2.3.0

 media-libs/ffmpegsource/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/media-libs/ffmpegsource/metadata.xml 
b/media-libs/ffmpegsource/metadata.xml
index 560f89c..057f0e4 100644
--- a/media-libs/ffmpegsource/metadata.xml
+++ b/media-libs/ffmpegsource/metadata.xml
@@ -4,11 +4,6 @@

itumaykin+gen...@gmail.com
Coacher
-   Proxied maintainer; set to assignee in all 
bugs
-   
-   
-   maksbo...@gentoo.org
-   Maxim Koltsov


proxy-ma...@gentoo.org



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

2016-06-26 Thread Göktürk Yüksek
commit: 8c6c00d62ae9f52ae54829378b2de549204d1b28
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Sun Jun 26 17:13:23 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 00:23:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c6c00d6

media-video/aegisub: cleanup maintainer list

Acked-By: Maxim Koltsov  gentoo.org>

Package-Manager: portage-2.3.0

 media-video/aegisub/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/media-video/aegisub/metadata.xml b/media-video/aegisub/metadata.xml
index 7a15cc0..8bc3358 100644
--- a/media-video/aegisub/metadata.xml
+++ b/media-video/aegisub/metadata.xml
@@ -4,11 +4,6 @@

itumaykin+gen...@gmail.com
Coacher
-   Proxied maintainer; set to assignee in all 
bugs
-   
-   
-   maksbo...@gentoo.org
-   Maxim Koltsov


proxy-ma...@gentoo.org



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

2016-06-26 Thread Göktürk Yüksek
commit: 83d6bea1250a5f87458687e6bb3e8d88a897ada5
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Sun Jun 26 17:10:25 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Mon Jun 27 00:23:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83d6bea1

media-sound/flacon: cleanup maintainer list

Acked-By: Maxim Koltsov  gentoo.org>

Package-Manager: portage-2.3.0

 media-sound/flacon/metadata.xml | 5 -
 1 file changed, 5 deletions(-)

diff --git a/media-sound/flacon/metadata.xml b/media-sound/flacon/metadata.xml
index d5583ec..a3a3ef9 100644
--- a/media-sound/flacon/metadata.xml
+++ b/media-sound/flacon/metadata.xml
@@ -4,11 +4,6 @@

itumaykin+gen...@gmail.com
Coacher
-   Proxied maintainer; set to assignee in all 
bugs
-   
-   
-   maksbo...@gentoo.org
-   Maxim Koltsov


proxy-ma...@gentoo.org



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

2016-06-26 Thread Mike Gilbert
commit: fad5ac1ade3a278d807f3d474760822320d01ab6
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Jun 27 00:07:30 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Jun 27 00:07:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fad5ac1a

package.mask: drop obsolete google-chrome mask

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

diff --git a/profiles/package.mask b/profiles/package.mask
index a650a98..bc4d516 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -646,23 +646,6 @@ www-plugins/chrome-binary-plugins:unstable
 # Mask development releases
 =media-sound/lilypond-2.19*
 
-# Mike Gilbert  (19 Jan 2014)
-# To prevent accidental switching of release channels (bug 498306),
-# google-chrome has been split into 3 packages:
-#
-# www-client/google-chrome
-# www-client/google-chrome-beta
-# www-client/google-chrome-unstable
-#
-# The stable channel remains as www-client/google-chrome, but has been
-# switched to SLOT="0".
-#
-# Please unmerge your currently installed version and remerge one of the new
-# packages.
-www-client/google-chrome:beta
-www-client/google-chrome:stable
-www-client/google-chrome:unstable
-
 # Justin Lecher  (14 Oct 2013)
 # Seems to break all deps - API change?
 >=sci-libs/metis-5



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

2016-06-26 Thread Zac Medico
commit: ac6f924fa3d9296778d493a16a1d428ab54dda97
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jun 23 06:17:17 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jun 26 23:49:29 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ac6f924f

Add a unit test which reproduces bug 584626

X-Gentoo-Bug: 584626
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=584626

 .../resolver/test_slot_operator_reverse_deps.py| 109 +
 1 file changed, 109 insertions(+)

diff --git a/pym/portage/tests/resolver/test_slot_operator_reverse_deps.py 
b/pym/portage/tests/resolver/test_slot_operator_reverse_deps.py
new file mode 100644
index 000..72879f8
--- /dev/null
+++ b/pym/portage/tests/resolver/test_slot_operator_reverse_deps.py
@@ -0,0 +1,109 @@
+# Copyright 2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+from portage.tests import TestCase
+from portage.tests.resolver.ResolverPlayground import (
+   ResolverPlayground,
+   ResolverPlaygroundTestCase,
+)
+
+class SlotOperatorReverseDepsTestCase(TestCase):
+
+   def testSlotOperatorReverseDeps(self):
+
+   ebuilds = {
+
+   "media-libs/mesa-11.2.2" : {
+   "EAPI": "6",
+   "SLOT": "0",
+   "RDEPEND": ">=sys-devel/llvm-3.6.0:="
+   },
+
+   "sys-devel/clang-3.7.1-r100" : {
+   "EAPI": "6",
+   "SLOT": "0/3.7",
+   "RDEPEND": "~sys-devel/llvm-3.7.1"
+   },
+
+   "sys-devel/clang-3.8.0-r100" : {
+   "EAPI": "6",
+   "SLOT": "0/3.8",
+   "RDEPEND": "~sys-devel/llvm-3.8.0"
+   },
+
+   "sys-devel/llvm-3.7.1-r2" : {
+   "EAPI": "6",
+   "SLOT": "0/3.7.1",
+   "PDEPEND": "=sys-devel/clang-3.7.1-r100"
+   },
+
+   "sys-devel/llvm-3.8.0-r2" : {
+   "EAPI": "6",
+   "SLOT": "0/3.8.0",
+   "PDEPEND": "=sys-devel/clang-3.8.0-r100"
+   },
+
+   }
+
+   installed = {
+
+   "media-libs/mesa-11.2.2" : {
+   "EAPI": "6",
+   "SLOT": "0",
+   "RDEPEND": ">=sys-devel/llvm-3.6.0:0/3.7.1="
+   },
+
+   "sys-devel/clang-3.7.1-r100" : {
+   "EAPI": "6",
+   "SLOT": "0/3.7",
+   "RDEPEND": "~sys-devel/llvm-3.7.1"
+   },
+
+   "sys-devel/llvm-3.7.1-r2" : {
+   "EAPI": "6",
+   "SLOT": "0/3.7.1",
+   "PDEPEND": "=sys-devel/clang-3.7.1-r100"
+   },
+
+   }
+
+   world = ["media-libs/mesa"]
+
+   test_cases = (
+
+   # Test bug #584626, where an llvm update is missed due 
to
+   # the check_reverse_dependencies function seeing that
+   # updating llvm will break a dependency of the installed
+   # version of clang (though a clang update is available).
+   ResolverPlaygroundTestCase(
+   ["@world"],
+   options = {"--update": True, "--deep": True},
+   success = True,
+   mergelist = [],
+   ),
+
+   ResolverPlaygroundTestCase(
+   ["@world"],
+   options = {
+   "--update": True,
+   "--deep": True,
+   "--ignore-built-slot-operator-deps": 
"y",
+   },
+   success = True,
+   mergelist = [
+   'sys-devel/llvm-3.8.0-r2',
+   'sys-devel/clang-3.8.0-r100',
+   ],
+   ),
+
+   )
+
+   playground = ResolverPlayground(ebuilds=ebuilds,
+   installed=installed, world=world, debug=False)
+   try:
+   for test_case in test_cases:
+   playground.run_TestCase(test_case)
+   

[gentoo-commits] proj/portage:master commit in: pym/_emerge/, pym/portage/tests/resolver/soname/, pym/portage/tests/resolver/

2016-06-26 Thread Zac Medico
commit: 0ccb4f0fefa54592f9c90c70c855dbe35d0ede75
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jun 23 06:18:12 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jun 26 23:49:48 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=0ccb4f0f

depgraph: fix missed llvm update (bug 584626)

Fix check_reverse_dependencies to ignore dependencies of parent packages
for which updates are desirable. This solves a missed llvm update by
ignoring a reverse dependency from the installed instance of clang,
since an update to a newer version of clang is desirable.

In order to cope with this change, there are 2 existing unit tests
that require larger --backtrack settings in order to succeed.

X-Gentoo-Bug: 584626
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=584626
Acked-by: Brian Dolbec  gentoo.org>

 pym/_emerge/depgraph.py | 21 +
 .../resolver/soname/test_slot_conflict_reinstall.py |  1 +
 .../tests/resolver/test_slot_conflict_rebuild.py|  2 +-
 .../resolver/test_slot_operator_reverse_deps.py |  6 +-
 4 files changed, 28 insertions(+), 2 deletions(-)

diff --git a/pym/_emerge/depgraph.py b/pym/_emerge/depgraph.py
index f78f08d..c1c37b4 100644
--- a/pym/_emerge/depgraph.py
+++ b/pym/_emerge/depgraph.py
@@ -1822,6 +1822,15 @@ class depgraph(object):
# necessarily relevant.
continue
 
+   if (not self._too_deep(parent.depth) and
+   not 
self._frozen_config.excluded_pkgs.
+   findAtomForPackage(parent,
+   
modified_use=self._pkg_use_enabled(parent)) and
+   
self._upgrade_available(parent)):
+   # This parent may be 
irrelevant, since an
+   # update is available (see bug 
584626).
+   continue
+
atom_set = 
InternalPackageSet(initial_atoms=(atom,),
allow_repo=True)
if not 
atom_set.findAtomForPackage(candidate_pkg,
@@ -2113,6 +2122,18 @@ class depgraph(object):
 
self._dynamic_config._need_restart = True
 
+   def _upgrade_available(self, pkg):
+   """
+   Detect cases where an upgrade of the given package is available
+   within the same slot.
+   """
+   for available_pkg in self._iter_similar_available(pkg,
+   pkg.slot_atom):
+   if available_pkg > pkg:
+   return True
+
+   return False
+
def _downgrade_probe(self, pkg):
"""
Detect cases where a downgrade of the given package is 
considered

diff --git a/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py 
b/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py
index 40e6995..f474761 100644
--- a/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py
+++ b/pym/portage/tests/resolver/soname/test_slot_conflict_reinstall.py
@@ -89,6 +89,7 @@ class SonameSlotConflictReinstallTestCase(TestCase):
"--ignore-soname-deps": "n",
"--update": True,
"--usepkgonly": True,
+   "--backtrack": 10,
},
success = True,
mergelist = [

diff --git a/pym/portage/tests/resolver/test_slot_conflict_rebuild.py 
b/pym/portage/tests/resolver/test_slot_conflict_rebuild.py
index b39eaf0..2dfa79c 100644
--- a/pym/portage/tests/resolver/test_slot_conflict_rebuild.py
+++ b/pym/portage/tests/resolver/test_slot_conflict_rebuild.py
@@ -91,7 +91,7 @@ class SlotConflictRebuildTestCase(TestCase):
# upgrade and we don't want to trigger unnecessary 
rebuilds.
ResolverPlaygroundTestCase(
["@world"],
-   options = {"--update": True, "--deep": True},
+   options = {"--update": True, "--deep": True, 
"--backtrack": 4},
success = True,
mergelist = ["app-misc/D-2", "app-misc/E-0"]),
 

diff --git a/pym/portage/tests/resolver/test_slot_operator_reverse_deps.py 
b/pym/portage/tests/resolver/test_slot_operator_reverse_deps.py
index 72879f8..ce614a4 100644
--- a/pym/portage/tests/resolver/test_slot_operator_reverse_deps.py
+++ 

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

2016-06-26 Thread Zac Medico
commit: 8781a2a86b05cf2bc522fca9a22883844a64fdf6
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jun 26 23:22:32 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jun 26 23:39:09 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=8781a2a8

chpathtool.py: fix byte comparison logic for python3 (bug 587198)

Fix chpathtool.py so that it won't try to compare a byte string with an
integer in python3. This change is also compatible with python2.

X-Gentoo-Bug: 587198
X-Gentoo-Bug-url: https://bugs.gentoo.org/show_bug.cgi?id=587198
Acked-by: Brian Dolbec  gentoo.org>

 bin/chpathtool.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/chpathtool.py b/bin/chpathtool.py
index 73c7a5f..fbd18b9 100755
--- a/bin/chpathtool.py
+++ b/bin/chpathtool.py
@@ -89,7 +89,7 @@ def chpath_inplace(filename, is_text_file, old, new):
if not in_byte:
break
 
-   if in_byte == old[matched_byte_count]:
+   if in_byte == old[matched_byte_count:matched_byte_count+1]:
matched_byte_count += 1
if matched_byte_count == len_old:
modified = True



[gentoo-commits] dev/jmbsvicetto:master commit in: dev-db/phpmyadmin/

2016-06-26 Thread Jorge Manuel B. S. Vicetto
commit: 219a8893798690b8abc6587a1ba4032253e4cb0c
Author: Jorge Manuel B. S. Vicetto (jmbsvicetto)  gentoo 
 org>
AuthorDate: Sun Jun 26 23:12:44 2016 +
Commit: Jorge Manuel B. S. Vicetto  gentoo  org>
CommitDate: Sun Jun 26 23:12:44 2016 +
URL:https://gitweb.gentoo.org/dev/jmbsvicetto.git/commit/?id=219a8893

dev-db/phpmyadmin: Security bump - fixes bug 586964 (PMASA-2016-17 through 
PMASA-2016-28).

Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto)  
gentoo.org>

 dev-db/phpmyadmin/Manifest  | 6 +++---
 .../{phpmyadmin-4.0.10.15.ebuild => phpmyadmin-4.0.10.16.ebuild}| 0
 .../{phpmyadmin-4.4.15.6.ebuild => phpmyadmin-4.4.15.7.ebuild}  | 0
 .../phpmyadmin/{phpmyadmin-4.6.2.ebuild => phpmyadmin-4.6.3.ebuild} | 0
 4 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-db/phpmyadmin/Manifest b/dev-db/phpmyadmin/Manifest
index 246138b..db22826 100644
--- a/dev-db/phpmyadmin/Manifest
+++ b/dev-db/phpmyadmin/Manifest
@@ -1,3 +1,3 @@
-DIST phpMyAdmin-4.0.10.15-all-languages.tar.xz 4778232 SHA256 
f3aea2e7f048b14499912e8ec0f39cff31bcc690480e3bbc773cb56bdeb5e717 SHA512 
a1b1305ad1404a8f842155793e1118a24b4f011349d9d35375970d016e9c044529e5b5b207eee7554f515f6be2c008e73f36a21aae5427a9374bfdba55575774
 WHIRLPOOL 
b525f6c402a391f7e1ec4727d284e89de3b8fe6c12f78a37ed1a4448b1ea047a0605677a2d73b00bdefd73270d46dd37b04be90b3357288d3bbcc23b07ca3b75
-DIST phpMyAdmin-4.4.15.6-all-languages.tar.xz 5783000 SHA256 
3b7249f6fec8af6d5dcf59c7f3eced61b9c41c633de588e2be366fee27eadf66 SHA512 
00ff021df305d53678c219deeb88c011defa11becf795d1c7465e58482bf3aa3a0b19f29e09e3fd42be025f46beff256aeb4625c62c196e7baea7db739c77455
 WHIRLPOOL 
8688eda3e83d32c1893e87dd1a5d33e7744e2e690fb4ba9f88cebf8fb253ccc55d26655362e7d9748f6f4c0a700669ef8600e66500cdde87a1c723647fbdde11
-DIST phpMyAdmin-4.6.2-all-languages.tar.xz 6128060 SHA256 
2ae6f6f0e8697b5ab5d0334bb16fa59da9143dce0d4576e6370ef54f7ad28872 SHA512 
133075282a04b24d1e4ba2f06a8f25cc91ba54d1be2d5a3f813dd51d0b231f644164a073c9221f112dc6adf8c1168039935a480bb0731a5ffb9af4e03c141272
 WHIRLPOOL 
34c842799c26d0bc4044caf52f8c41ac3f9cd974c99b1dd2bcf1683728b2419143372e571ec5cd3217487789cc5d7920ab4613a6ef06b47c3b6f60ef95f1a08a
+DIST phpMyAdmin-4.0.10.16-all-languages.tar.xz 4777656 SHA256 
f034fdc607233f5276e4724a138280dbd24581d7e31ba1c23cc6d3488e84544a SHA512 
f822c78dc21deccdcc1a74c77ff5ad9528e55daa791c48c5f3f2284471c2239f094123158e45cc712f2e4a6005df8c1e0562daa191046def4101c9a0850f6743
 WHIRLPOOL 
cf053a4c4e4de83322734c2f4d7046c19c9f01abd1beaecfaa5f6e0d8677b1185a33d4bccb12f11db9222bc3165d9d40a029a2f715cf768b71f016ce0c69ab82
+DIST phpMyAdmin-4.4.15.7-all-languages.tar.xz 5782436 SHA256 
d1055eab7f85807493b7d3c15f09167f148e1aa6801e539f62fd9f96de683b4f SHA512 
25c5ec3edb9c1491c960902b32569c40c8bd54e3282df01f9e1fb6265861b5d634b3a35547125886ae74cfddf620f43691360d5f108f900d272484ea25988e3e
 WHIRLPOOL 
8a0fd7914bc6a969b4c6133fd36977a6a7850470c6279f5d90c93228160e5e207fb8903e4eb7f5bd3077162082b5161145b236d3105b8fe36f23fbc625fef212
+DIST phpMyAdmin-4.6.3-all-languages.tar.xz 6111852 SHA256 
943bad38a95f21bb015bdb78c9c067e0ea7510c1b35d4b8e757cb89c413e3bac SHA512 
6393dc4e03c519dc57bf2b616e5a4ff6efc98f84bf864c1d2cc250e19a327967a67497cf0440cec76e9ec11d25c37c61a53f557a867afe53c5a428ad0944
 WHIRLPOOL 
8f31311418f482dd23b9ee69313a11b36366c0560b45f90f3d37085417bef41d9fd71157bd0c708ceba695fdf6fd226f220457320034cba6b7395cbfb34d4c2b

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.0.10.15.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.0.10.16.ebuild
similarity index 100%
rename from dev-db/phpmyadmin/phpmyadmin-4.0.10.15.ebuild
rename to dev-db/phpmyadmin/phpmyadmin-4.0.10.16.ebuild

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.4.15.6.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.4.15.7.ebuild
similarity index 100%
rename from dev-db/phpmyadmin/phpmyadmin-4.4.15.6.ebuild
rename to dev-db/phpmyadmin/phpmyadmin-4.4.15.7.ebuild

diff --git a/dev-db/phpmyadmin/phpmyadmin-4.6.2.ebuild 
b/dev-db/phpmyadmin/phpmyadmin-4.6.3.ebuild
similarity index 100%
rename from dev-db/phpmyadmin/phpmyadmin-4.6.2.ebuild
rename to dev-db/phpmyadmin/phpmyadmin-4.6.3.ebuild



[gentoo-commits] repo/gentoo:master commit in: x11-libs/pixman/files/, x11-libs/pixman/

2016-06-26 Thread Austin English
commit: 617823801a0fd4105e0de308d6b4a4efedcd1fdf
Author: Austin English  gentoo  org>
AuthorDate: Sun Jun 26 22:51:05 2016 +
Commit: Austin English  gentoo  org>
CommitDate: Sun Jun 26 22:52:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61782380

x11-libs/pixman: fix building with Clang

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

Package-Manager: portage-2.2.28

 x11-libs/pixman/files/pixman-0.32.8-clang.patch | 93 +
 x11-libs/pixman/pixman-0.32.8.ebuild|  7 +-
 2 files changed, 99 insertions(+), 1 deletion(-)

diff --git a/x11-libs/pixman/files/pixman-0.32.8-clang.patch 
b/x11-libs/pixman/files/pixman-0.32.8-clang.patch
new file mode 100644
index 000..d531929
--- /dev/null
+++ b/x11-libs/pixman/files/pixman-0.32.8-clang.patch
@@ -0,0 +1,93 @@
+From d24b415f3e2753a588759d028b811e1ce38fea6c Mon Sep 17 00:00:00 2001
+From: Andrea Canciani 
+Date: Sun, 11 Oct 2015 09:45:57 +0200
+Subject: mmx: Improve detection of support for "K" constraint
+
+Older versions of clang emitted an error on the "K" constraint, but at
+least since version 3.7 it is supported. Just like gcc, this
+constraint is only allowed for constants, but apparently clang
+requires them to be known before inlining.
+
+Using the macro definition _mm_shuffle_pi16(A, N) ensures that the "K"
+constraint is always applied to a literal constant, independently from
+the compiler optimizations and allows building pixman-mmx on modern
+clang.
+
+Reviewed-by: Matt Turner 
+Signed-off-by: Andrea Canciani 
+
+diff --git a/configure.ac b/configure.ac
+index 2178126..3a66909 100644
+--- a/configure.ac
 b/configure.ac
+@@ -347,15 +347,27 @@ AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
+ #error "Need GCC >= 3.4 for MMX intrinsics"
+ #endif
+ #include 
++#include 
++
++/* Check support for block expressions */
++#define _mm_shuffle_pi16(A, N)
\
++({
\
++  __m64 ret;  \
++  \
++  /* Some versions of clang will choke on K */\
++  asm ("pshufw %2, %1, %0\n\t"\
++   : "=y" (ret)   \
++   : "y" (A), "K" ((const int8_t)N)   \
++  );  \
++  \
++  ret;\
++})
++
+ int main () {
+ __m64 v = _mm_cvtsi32_si64 (1);
+ __m64 w;
+ 
+-/* Some versions of clang will choke on K */
+-asm ("pshufw %2, %1, %0\n\t"
+-: "=y" (w)
+-: "y" (v), "K" (5)
+-);
++w = _mm_shuffle_pi16(v, 5);
+ 
+ /* Some versions of clang will choke on this */
+ asm ("pmulhuw %1, %0\n\t"
+diff --git a/pixman/pixman-mmx.c b/pixman/pixman-mmx.c
+index 05c48a4..dec3974 100644
+--- a/pixman/pixman-mmx.c
 b/pixman/pixman-mmx.c
+@@ -89,21 +89,7 @@ _mm_mulhi_pu16 (__m64 __A, __m64 __B)
+ return __A;
+ }
+ 
+-#  ifdef __OPTIMIZE__
+-extern __inline __m64 __attribute__((__gnu_inline__, __always_inline__, 
__artificial__))
+-_mm_shuffle_pi16 (__m64 __A, int8_t const __N)
+-{
+-__m64 ret;
+-
+-asm ("pshufw %2, %1, %0\n\t"
+-  : "=y" (ret)
+-  : "y" (__A), "K" (__N)
+-);
+-
+-return ret;
+-}
+-#  else
+-#   define _mm_shuffle_pi16(A, N) \
++# define _mm_shuffle_pi16(A, N)   
\
+ ({
\
+   __m64 ret;  \
+   \
+@@ -114,7 +100,6 @@ _mm_shuffle_pi16 (__m64 __A, int8_t const __N)
+   \
+   ret;\
+ })
+-#  endif
+ # endif
+ #endif
+ 
+-- 
+cgit v0.10.2
+

diff --git a/x11-libs/pixman/pixman-0.32.8.ebuild 
b/x11-libs/pixman/pixman-0.32.8.ebuild
index cefd423..e612abc 100644
--- a/x11-libs/pixman/pixman-0.32.8.ebuild
+++ b/x11-libs/pixman/pixman-0.32.8.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
+XORG_EAUTORECONF=yes
 XORG_MULTILIB=yes
 inherit xorg-2 toolchain-funcs versionator
 
@@ -16,6 +17,10 @@ RDEPEND="abi_x86_32? (
!app-emulation/emul-linux-x86-gtklibs[-abi_x86_32(-)]
)"
 
+PATCHES=(
+   "${FILESDIR}/${P}-clang.patch"
+)
+
 src_configure() {
 

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

2016-06-26 Thread Ulrich Müller
commit: 3792e96c12af176790ab5d19bb4d0a39b880db85
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jun 26 22:39:04 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jun 26 22:39:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3792e96c

licenses: Remove unused.

 licenses/atheros-hal| 42 --
 profiles/license_groups |  2 +-
 2 files changed, 1 insertion(+), 43 deletions(-)

diff --git a/licenses/atheros-hal b/licenses/atheros-hal
deleted file mode 100644
index fa8b038..000
--- a/licenses/atheros-hal
+++ /dev/null
@@ -1,42 +0,0 @@
-All files contained in this distribution are covered by the following
-copyright unless explicitly identified otherwise.  Note that this
-copyright does _NOT_ contain a "or GPL" clause and does _NOT_ permit
-redistribution with changes.
-
-/*-
- * Copyright (c) 2002-2006 Sam Leffler, Errno Consulting, Atheros
- * Communications, Inc.  All rights reserved.
- *
- * Redistribution and use in source and binary forms are permitted
- * provided that the following conditions are met:
- * 1. The materials contained herein are unmodified and are used
- *unmodified.
- * 2. Redistributions of source code must retain the above copyright
- *notice, this list of conditions and the following NO
- *''WARRANTY'' disclaimer below (''Disclaimer''), without
- *modification.
- * 3. Redistributions in binary form must reproduce at minimum a
- *disclaimer similar to the Disclaimer below and any redistribution
- *must be conditioned upon including a substantially similar
- *Disclaimer requirement for further binary redistribution.
- * 4. Neither the names of the above-listed copyright holders nor the
- *names of any contributors may be used to endorse or promote
- *product derived from this software without specific prior written
- *permission.
- *
- * NO WARRANTY
- * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
- * ''AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
- * LIMITED TO, THE IMPLIED WARRANTIES OF NONINFRINGEMENT,
- * MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
- * IN NO EVENT SHALL THE COPYRIGHT HOLDERS OR CONTRIBUTORS BE LIABLE
- * FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
- * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
- * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
- * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
- * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
- * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
- * SUCH DAMAGES.
- *
- * $Id$
- */

diff --git a/profiles/license_groups b/profiles/license_groups
index f18d469..7f779ef 100644
--- a/profiles/license_groups
+++ b/profiles/license_groups
@@ -73,7 +73,7 @@ FREE @FREE-SOFTWARE @FREE-DOCUMENTS
 # - IF (and only if) there is an explicit inclusion requirement,
 #   USE=bindist MUST cause a copy of the license to be installed
 #   in a file location compliant with the license
-BINARY-REDISTRIBUTABLE @FREE atheros-hal bh-luxi Broadcom Dina hashcat 
intel-ucode ipw2100-fw ipw2200-fw ipw3945 MicroChip-SDCC no-source-code 
NVIDIA-r1 qlogic-fibre-channel-firmware radeon-ucode shmux SmartLabs sun-jlfgr
+BINARY-REDISTRIBUTABLE @FREE bh-luxi Broadcom Dina hashcat intel-ucode 
ipw2100-fw ipw2200-fw ipw3945 MicroChip-SDCC no-source-code NVIDIA-r1 
qlogic-fibre-channel-firmware radeon-ucode shmux SmartLabs sun-jlfgr
 
 ##
 



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

2016-06-26 Thread Maciej Mrozowski
commit: 239602bbe513500fd7a4224746541d9b96bf0372
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Sun Jun 26 22:24:44 2016 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Sun Jun 26 22:25:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=239602bb

kde-apps/krfb: restore 15.08.3

 kde-apps/krfb/Manifest|  1 +
 kde-apps/krfb/krfb-15.08.3.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/kde-apps/krfb/Manifest b/kde-apps/krfb/Manifest
index d90c27e..be176d4 100644
--- a/kde-apps/krfb/Manifest
+++ b/kde-apps/krfb/Manifest
@@ -1,3 +1,4 @@
+DIST krfb-15.08.3.tar.xz 326932 SHA256 
c16c76a6daceb6adc71352d741ed5893c5cd69cc922bac1221a922372f1e3436 SHA512 
afb373c335434e43e0a4ce69c0f3a360aab3b1845b02c38363704ececa2304f4fab115840cac538033823036dcf7d84ebd78210443951fdd4d155dd80579aeeb
 WHIRLPOOL 
a20f9d69240f2f5910de6205f7a7ddda1142761c4efcf5347d838d53cc66988dd06408f0aaeee81ce5f7cd8c31574ada54a3e7e7607298658f1367c7386bcbdc
 DIST krfb-15.12.3.tar.xz 324896 SHA256 
353c38c23685e1278bfdd0a6a6e0c33eb26fa146caea78da999c1a91a56ecda8 SHA512 
2700eb2af678f4bfd110a005389580a238278e8fcbd69947d6ebacde770d8ea5a046dcc9b282bc2362ddc3e847c30c7ee48e60bf8bd5ca06f927e79fe64082b0
 WHIRLPOOL 
286c8b22c106dcb3cc2ff815337bea73fed8665b99567bce2ef3d62b5746e22be071de7895748a0ae873fa7412e8af5e53fde54a0ee71f5ae58b08695a95a8b9
 DIST krfb-16.04.1.tar.xz 324864 SHA256 
b814681fd1142b982f5dfb4c9dba8ceb7df9888c5557bf3213e2c9e43efbad9b SHA512 
3c603b2bf3da80410fd727345e4e110a8e606048c2abccdf53644201a42006f6a40a065edc75e0eb34adc2608ebfe1b89471d41ec1bc82375346f9a2558035f6
 WHIRLPOOL 
eb701ca1301c04836beec291a21fb71cbafe1ea8001b310fa40c9b3a68e1ecc2db18baed5371b5b020cb66f92de079abbe6a727ff2abf9774a3b23d59755ac16
 DIST krfb-16.04.2.tar.xz 324864 SHA256 
bdb8cf18b0bd239562743101cfafa490c9c80691bf265e6910d33e0d20d85985 SHA512 
4cb543f662e2afa50b96f14ec5be6205b7e7b681e8e71856c650205e9de6dab2781ba8f97765c1602d7887088e86417a2d3d975e5d91436c9dda5363efb3af9d
 WHIRLPOOL 
ce77f3508650adc090997568ae7aad34cd35519468d23f0b7e5478e916acf86bb90f216b9fcd6d962cb2e7ebbd06dce9aa72536ea761fd05dcef5fd153f6a168

diff --git a/kde-apps/krfb/krfb-15.08.3.ebuild 
b/kde-apps/krfb/krfb-15.08.3.ebuild
new file mode 100644
index 000..4cea75a
--- /dev/null
+++ b/kde-apps/krfb/krfb-15.08.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+KDE_HANDBOOK="optional"
+inherit kde4-base
+
+DESCRIPTION="VNC-compatible server to share KDE desktops"
+HOMEPAGE="https://www.kde.org/applications/system/krfb/;
+KEYWORDS="amd64 x86"
+IUSE="debug telepathy ktp"
+REQUIRED_USE="ktp? ( telepathy )"
+
+DEPEND="
+   >=net-libs/libvncserver-0.9.9
+   sys-libs/zlib
+   virtual/jpeg:0
+   !aqua? (
+   x11-libs/libX11
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXtst
+   )
+   telepathy? ( >=net-libs/telepathy-qt-0.9 )
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_with telepathy TelepathyQt4)
+   $(cmake-utils_use_with ktp KTp)
+   )
+
+   kde4-base_src_configure
+}



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

2016-06-26 Thread Sergei Trofimovich
commit: a4f9b1f1c2a4c50034231c4d2b89b32b5094ba4b
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 26 22:22:30 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 26 22:22:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4f9b1f1

package.mask: mask dev-haskell/filesystem-conduit for removal

Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 7422bd8..a650a98 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Sergei Trofimovich  (26 Jun 2016)
+# Deprecated by upstream in favour of dev-haskell/conduit-extra.
+# Masked for removal.
+dev-haskell/filesystem-conduit
+
 # Michał Górny  (26 Jun 2016)
 # Used to convert ancient layman files, has some ancient hardcoded data.
 # Not really useful anymore, masked for being live since 2009.



[gentoo-commits] repo/gentoo:master commit in: net-wireless/madwifi-ng-tools/, net-wireless/madwifi-ng/, profiles/, ...

2016-06-26 Thread Richard Farina
commit: 87876c79718b701fd99d23049107c9b4076c7e28
Author: Zero_Chaos  gentoo  org>
AuthorDate: Sun Jun 26 21:06:58 2016 +
Commit: Richard Farina  gentoo  org>
CommitDate: Sun Jun 26 21:06:58 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87876c79

net-wireless/madwifi*: remove madwifi-ng and madwifi-ng-tools after years of 
being masked and deprecated

 net-wireless/madwifi-ng-tools/Manifest |   6 -
 .../madwifi-ng-tools-0.9.3.3.ebuild|  75 
 .../madwifi-ng-tools-0.9.4.4119.20100201.ebuild|  70 
 .../madwifi-ng-tools-0.9.4.4133.20100621.ebuild|  70 
 .../madwifi-ng-tools-0.9.4.4165.20110816.ebuild|  70 
 .../madwifi-ng-tools-0.9.4.4180.20120502.ebuild|  70 
 .../madwifi-ng-tools/madwifi-ng-tools-0.9.4.ebuild |  75 
 net-wireless/madwifi-ng-tools/metadata.xml |  11 --
 net-wireless/madwifi-ng/Manifest   |   6 -
 .../files/madwifi-dfs-ieee80211-skb-update.patch   |  12 --
 .../files/madwifi-ng-0.9.3-uudecode-gcda-fix.patch |  12 --
 .../files/madwifi-ng-0.9.4-2.6.27-r3811.patch  | 190 -
 .../madwifi-ng-0.9.4-request_module-build.patch|  31 
 .../files/madwifi-ng-injection-r3925.patch |  32 
 .../madwifi-ng/files/madwifi-ng-r1886.patch|  26 ---
 net-wireless/madwifi-ng/madwifi-ng-0.9.3.3.ebuild  |  85 -
 net-wireless/madwifi-ng/madwifi-ng-0.9.4-r1.ebuild |  95 ---
 .../madwifi-ng-0.9.4.4119.20100201.ebuild  |  96 ---
 .../madwifi-ng-0.9.4.4133.20100621.ebuild  |  96 ---
 .../madwifi-ng-0.9.4.4165.20110816.ebuild  |  96 ---
 .../madwifi-ng-0.9.4.4180.20120502.ebuild  |  96 ---
 net-wireless/madwifi-ng/madwifi-ng-0.9.4.ebuild|  95 ---
 net-wireless/madwifi-ng/metadata.xml   |  19 ---
 profiles/arch/arm/use.mask |   1 -
 profiles/arch/arm64/use.mask   |   1 -
 profiles/arch/nios2/use.mask   |   1 -
 profiles/arch/powerpc/ppc64/use.mask   |   4 -
 profiles/default/bsd/use.mask  |   1 -
 profiles/hardened/linux/powerpc/ppc64/use.mask |   4 -
 profiles/package.mask  |   7 -
 30 files changed, 1453 deletions(-)

diff --git a/net-wireless/madwifi-ng-tools/Manifest 
b/net-wireless/madwifi-ng-tools/Manifest
deleted file mode 100644
index cd3adef..000
--- a/net-wireless/madwifi-ng-tools/Manifest
+++ /dev/null
@@ -1,6 +0,0 @@
-DIST madwifi-0.9.3.3.tar.bz2 3489995 SHA256 
7e38cb26d5b001e9fb36f48aaefdeee10d1dc57c83e675e3bbd0f1807a3305b7 SHA512 
e3ca8a59fa58d10bd36924a30d1db5570af363887c6d322f2a67bf2a9804d8370b9dc13a4dc340849274d9d43bb801d12151e9c683cf86df2b31e9e48513ff19
 WHIRLPOOL 
dadba40c18ad464574ce27ed59fe13d1b8d3ae423d580da68945677cd903f44973513643dcf81029dabb2f2278b7b0203f925eeba1c967b036c97c0847de05fb
-DIST madwifi-0.9.4-r4119-20100201.tar.gz 3534053 SHA256 
43d3295209941cad7c75831dc83dcc0d4223987830d2a4d1089b8f5fa6ad79b6 SHA512 
0fb421db0016268d52acfc46054a6563f1ff4cdbbf1c5ab8cac1557e97287fbe0db35bce554929ec462647d427df86f10bdaf7911679f2f8a7628773db21ff18
 WHIRLPOOL 
9f07c48d8369843dc5b0c6005ca4b140b6f14ddbf89283a92181ef884e2c51a83f25c4d6582ce1629479c71d74fc7b73d0178082d3d17974b56812b65d086dd0
-DIST madwifi-0.9.4-r4133-20100621.tar.gz 3534852 SHA256 
f19f2eea7561a8a50a8731407d959eaafe64cc39fa5a894cac7a62807382d606 SHA512 
d013810a28781ce0cd694b505c5257c1f4afcc8364e9c2901d1b33a3e0a323b0de180500dd0a19424a2d4b5d3201b2a6b0faa30fa14e409bc1bb046ba2e65fd3
 WHIRLPOOL 
78ebf767f4ba4111fc5f42337a2819759bc0e129335371bafeea205a5d2c0322c2fb2b67dbfb2a7953f2832d28af81979e396ba228fd1ac72bca3807c6dc6df4
-DIST madwifi-0.9.4-r4165-20110816.tar.gz 3534958 SHA256 
4b4081f317013e568169d6d732a6158dbf392f43d3d26e52665f340e80993afc SHA512 
86df881ded673c9555263c90b75ce80ef0f338f4bd0726726b60a783d44d5706d3fc3a9178dc310cc283d7ba9fbc7030b6d37794a741cad9fca65945a941f546
 WHIRLPOOL 
c1e01e2bd78dfda076967645caaf7d0a6ea802b4fb995ad4fd167e1ca7b021e48fd75af3c08d7372343aa5d5ee211eaab18090f25f8bc013d19eab940b94d27e
-DIST madwifi-0.9.4-r4180-20120502.tar.gz 3534976 SHA256 
fe1b9f934f3b01b86170e661565f201c4e18b50e826f86e68578b58aea93d080 SHA512 
54dd572dd454997f0f0e462726f0fac9339e883c444cc586ed64a450d1ab314e2912d94f5859c5648f64b663f59caa24be7a1294c06907ca0089877768fbdf9f
 WHIRLPOOL 
18ab6450ed7c7d3b57ec66e7da49aef1822b11f3d0614851d53a834c2581326a80a27b078a05d122d29554dc12369e4be18e3043eb731be633e64293032a7b4b
-DIST madwifi-0.9.4.tar.bz2 3485142 SHA256 
2356ea8a1a00454c31b8bb9a587a474744c022eca61eae01f37ab3f9ce3186a0 SHA512 
f71aad832e1b14e5fd220a9e47874a4853852381238bfa55705b5480441407796548b6cbe82c6fd334418a0592137ea5d42df75842acda41d419fc0c0dcc157a
 WHIRLPOOL 
087df293b704c4600beaabbcb3e7c3ea6b023eddb4c998207ae342a11ff4ad661c5c3fcecb3a17edb2a0b8a1a2fd0046a135751c09ace2319fae8120bfa279ef

diff --git 

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

2016-06-26 Thread Michael Palimaka
commit: fabb3f9f1de7d866981f7be223b254f4040f7015
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Jun 26 20:09:20 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 20:36:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fabb3f9f

kde-plasma/kwin: Add back saving/loading/client matching by WM_COMMAND

Upstream dropped it in 5.6 but later found out it was still in use by
Mozilla applications et al., thus reverted in Plasma/5.6 branch but
only after 5.6.5 release.

Package-Manager: portage-2.2.28

 .../files/kwin-5.6.5-legacy-session-mgmt.patch | 140 +
 kde-plasma/kwin/kwin-5.6.5-r1.ebuild   |  99 +++
 2 files changed, 239 insertions(+)

diff --git a/kde-plasma/kwin/files/kwin-5.6.5-legacy-session-mgmt.patch 
b/kde-plasma/kwin/files/kwin-5.6.5-legacy-session-mgmt.patch
new file mode 100644
index 000..067124a
--- /dev/null
+++ b/kde-plasma/kwin/files/kwin-5.6.5-legacy-session-mgmt.patch
@@ -0,0 +1,140 @@
+commit 59740e7416bb2b3a9852212fa4b213e5ba76deb7
+Author: Andreas Hartmetz 
+Date:   Thu Jun 23 19:40:40 2016 +0200
+
+Revert "Remove saving and loading (and client matching by) WM_COMMAND."
+
+This reverts commit 2eac7634cc524bf5e425cf081a639a6b6407e380.
+
+CCBUG: 362671
+
+diff --git a/activities.cpp b/activities.cpp
+index 25eb1c1..42c5db8 100644
+--- a/activities.cpp
 b/activities.cpp
+@@ -169,7 +169,7 @@ void Activities::reallyStop(const QString )
+ const Client* c = (*it);
+ const QByteArray sessionId = c->sessionId();
+ if (sessionId.isEmpty()) {
+-continue;
++continue; //TODO support old wm_command apps too?
+ }
+ 
+ //qDebug() << sessionId;
+diff --git a/sm.cpp b/sm.cpp
+index 08810a4..ca1edea 100644
+--- a/sm.cpp
 b/sm.cpp
+@@ -109,8 +109,12 @@ void Workspace::storeSession(KConfig* config, SMSavePhase 
phase)
+ for (ClientList::Iterator it = clients.begin(); it != clients.end(); 
++it) {
+ Client* c = (*it);
+ QByteArray sessionId = c->sessionId();
++QByteArray wmCommand = c->wmCommand();
+ if (sessionId.isEmpty())
+-continue;
++// remember also applications that are not XSMP capable
++// and use the obsolete WM_COMMAND / WM_SAVE_YOURSELF
++if (wmCommand.isEmpty())
++continue;
+ count++;
+ if (c->isActive())
+ active_client = count;
+@@ -140,6 +144,7 @@ void Workspace::storeClient(KConfigGroup , int num, 
Client *c)
+ QString n = QString::number(num);
+ cg.writeEntry(QLatin1String("sessionId") + n, c->sessionId().constData());
+ cg.writeEntry(QLatin1String("windowRole") + n, 
c->windowRole().constData());
++cg.writeEntry(QLatin1String("wmCommand") + n, c->wmCommand().constData());
+ cg.writeEntry(QLatin1String("resourceName") + n, 
c->resourceName().constData());
+ cg.writeEntry(QLatin1String("resourceClass") + n, 
c->resourceClass().constData());
+ cg.writeEntry(QLatin1String("geometry") + n, 
QRect(c->calculateGravitation(true), c->clientSize()));   // FRAME
+@@ -180,8 +185,12 @@ void Workspace::storeSubSession(const QString , 
QSet sessionIds
+ for (ClientList::Iterator it = clients.begin(); it != clients.end(); 
++it) {
+ Client* c = (*it);
+ QByteArray sessionId = c->sessionId();
++QByteArray wmCommand = c->wmCommand();
+ if (sessionId.isEmpty())
+-continue;
++// remember also applications that are not XSMP capable
++// and use the obsolete WM_COMMAND / WM_SAVE_YOURSELF
++if (wmCommand.isEmpty())
++continue;
+ if (!sessionIds.contains(sessionId))
+ continue;
+ 
+@@ -221,6 +230,7 @@ void Workspace::addSessionInfo(KConfigGroup )
+ session.append(info);
+ info->sessionId = cg.readEntry(QLatin1String("sessionId") + n, 
QString()).toLatin1();
+ info->windowRole = cg.readEntry(QLatin1String("windowRole") + n, 
QString()).toLatin1();
++info->wmCommand = cg.readEntry(QLatin1String("wmCommand") + n, 
QString()).toLatin1();
+ info->resourceName = cg.readEntry(QLatin1String("resourceName") + n, 
QString()).toLatin1();
+ info->resourceClass = cg.readEntry(QLatin1String("resourceClass") + 
n, QString()).toLower().toLatin1();
+ info->geometry = cg.readEntry(QLatin1String("geometry") + n, QRect());
+@@ -269,6 +279,7 @@ SessionInfo* Workspace::takeSessionInfo(Client* c)
+ SessionInfo *realInfo = 0;
+ QByteArray sessionId = c->sessionId();
+ QByteArray windowRole = c->windowRole();
++QByteArray wmCommand = c->wmCommand();
+ QByteArray resourceName = c->resourceName();
+ QByteArray resourceClass = c->resourceClass();
+ 
+@@ -302,8 +313,10 @@ SessionInfo* Workspace::takeSessionInfo(Client* c)
+ if (info->resourceName 

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

2016-06-26 Thread Michael Palimaka
commit: efda8b45cbcf960f15659fecd823a2c2ed7e316a
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Jun 26 19:30:51 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 20:36:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efda8b45

kde-plasma/plasma-workspace: Add back legacy (gtk2) session mgmt

Upstream dropped it in 5.6 but later found out it was still in use by
Mozilla applications et al., thus reverted in Plasma/5.6 branch but
only after 5.6.5.1 release.

See also: https://bugs.kde.org/show_bug.cgi?id=362671

Package-Manager: portage-2.2.28

 ...sma-workspace-5.6.5.1-legacy-session-mgmt.patch | 558 +
 .../plasma-workspace-5.6.5.1-r2.ebuild | 168 +++
 2 files changed, 726 insertions(+)

diff --git 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.6.5.1-legacy-session-mgmt.patch
 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.6.5.1-legacy-session-mgmt.patch
new file mode 100644
index 000..94cc1df
--- /dev/null
+++ 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.6.5.1-legacy-session-mgmt.patch
@@ -0,0 +1,558 @@
+commit e4a76cd947759fd723935965ca30c00021601a45
+Author: Andreas Hartmetz 
+Date:   Thu Jun 23 19:36:18 2016 +0200
+
+Revert "Remove legacy session management support."
+
+This reverts commit 5f0ca1305db4a925dbdbf927f541497be334feff.
+
+Firefox and some GTK+ 2 applications still seem to use the old way.
+For shame.
+
+BUG: 362671
+
+--- a/ksmserver/CMakeLists.txt
 b/ksmserver/CMakeLists.txt
+@@ -15,4 +15,5 @@ set(ksmserver_KDEINIT_SRCS
+ shutdowndlg.cpp
+ switchuserdialog.cpp
++legacy.cpp
+ startup.cpp
+ shutdown.cpp
+--- /dev/null
 b/ksmserver/legacy.cpp
+@@ -0,0 +1,419 @@
++/*
++ksmserver - the KDE session management server
++
++Copyright 2000 Matthias Ettrich 
++Copyright 2005 Lubos Lunak 
++
++relatively small extensions by Oswald Buddenhagen 
++
++some code taken from the dcopserver (part of the KDE libraries), which is
++Copyright 1999 Matthias Ettrich 
++Copyright 1999 Preston Brown 
++
++Permission is hereby granted, free of charge, to any person obtaining a copy
++of this software and associated documentation files (the "Software"), to deal
++in the Software without restriction, including without limitation the rights
++to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
++copies of the Software, and to permit persons to whom the Software is
++furnished to do so, subject to the following conditions:
++
++The above copyright notice and this permission notice shall be included in
++all copies or substantial portions of the Software.
++
++THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
++IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
++FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL THE
++AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN
++AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
++CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
++
++**/
++
++#include 
++#include 
++
++#include 
++
++#include 
++
++#ifdef HAVE_SYS_TIME_H
++#include 
++#endif
++
++#include "server.h"
++
++#include 
++
++
++#include 
++#include 
++#include 
++#include 
++#include 
++
++#include 
++#include 
++#include 
++
++/*
++* Legacy session management
++*/
++
++#ifndef NO_LEGACY_SESSION_MANAGEMENT
++static WindowMap* windowMapPtr = 0;
++
++static Atom wm_save_yourself = XNone;
++static Atom wm_protocols = XNone;
++static Atom wm_client_leader = XNone;
++static Atom sm_client_id = XNone;
++
++static int winsErrorHandler(Display *, XErrorEvent *ev)
++{
++if (windowMapPtr) {
++WindowMap::Iterator it = windowMapPtr->find(ev->resourceid);
++if (it != windowMapPtr->end())
++(*it).type = SM_ERROR;
++}
++return 0;
++}
++
++void KSMServer::performLegacySessionSave()
++{
++qCDebug(KSMSERVER) << "Saving legacy session apps";
++if (state == ClosingSubSession)
++return; //FIXME implement later
++
++KSharedConfig::Ptr config = KSharedConfig::openConfig();
++config->reparseConfiguration(); // config may have changed in the 
KControl module
++KConfigGroup cg( config, "General" );
++
++int wmSaveYourselfTimeout = cg.readEntry( "legacySaveTimeoutSecs", 4 ) * 
1000;
++
++// Setup error handler
++legacyWindows.clear();
++windowMapPtr = 
++XErrorHandler oldHandler = XSetErrorHandler(winsErrorHandler);
++// Compute set of leader windows that need legacy session management
++// and determine which style (WM_COMMAND or WM_SAVE_YOURSELF)
++if( 

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

2016-06-26 Thread Ulrich Müller
commit: 977188eab8942999134d4e7736a2f4fce78ab4a3
Author: Ulrich Müller  gentoo  org>
AuthorDate: Sun Jun 26 20:34:55 2016 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Sun Jun 26 20:35:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=977188ea

dev-util/netbeans: Fix l10n_* flags in IUSE and SRC_URI.

Package-Manager: portage-2.3.0

 dev-util/netbeans/netbeans-8.0.2.ebuild | 4 ++--
 dev-util/netbeans/netbeans-8.1.ebuild   | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-util/netbeans/netbeans-8.0.2.ebuild 
b/dev-util/netbeans/netbeans-8.0.2.ebuild
index 5176a35..938d5da 100644
--- a/dev-util/netbeans/netbeans-8.0.2.ebuild
+++ b/dev-util/netbeans/netbeans-8.0.2.ebuild
@@ -20,6 +20,7 @@ SRC_URI="l10n_af? ( ${ALL_URLS} )
l10n_de? ( ${ALL_URLS} )
l10n_el? ( ${ALL_URLS} )
l10n_es? ( ${ALL_URLS} )
+   l10n_fil? ( ${ALL_URLS} )
l10n_fr? ( ${ALL_URLS} )
l10n_gl? ( ${ALL_URLS} )
l10n_hi? ( ${ALL_URLS} )
@@ -39,7 +40,6 @@ SRC_URI="l10n_af? ( ${ALL_URLS} )
l10n_sr? ( ${ALL_URLS} )
l10n_sv? ( ${ALL_URLS} )
l10n_ta? ( ${ALL_URLS} )
-   l10n_tl? ( ${ALL_URLS} )
l10n_tr? ( ${ALL_URLS} )
l10n_vi? ( ${ALL_URLS} )
l10n_zh-CN? ( ${ALL_URLS} )
@@ -72,6 +72,7 @@ IUSE_L10N="
l10n_de
l10n_el
l10n_es
+   l10n_fil
l10n_fr
l10n_gl
l10n_hi
@@ -91,7 +92,6 @@ IUSE_L10N="
l10n_sr
l10n_sv
l10n_ta
-   l10n_tl
l10n_tr
l10n_vi
l10n_zh-CN

diff --git a/dev-util/netbeans/netbeans-8.1.ebuild 
b/dev-util/netbeans/netbeans-8.1.ebuild
index 786491e..6c0f15c 100644
--- a/dev-util/netbeans/netbeans-8.1.ebuild
+++ b/dev-util/netbeans/netbeans-8.1.ebuild
@@ -20,6 +20,7 @@ SRC_URI="l10n_af? ( ${ALL_URLS} )
l10n_de? ( ${ALL_URLS} )
l10n_el? ( ${ALL_URLS} )
l10n_es? ( ${ALL_URLS} )
+   l10n_fil? ( ${ALL_URLS} )
l10n_fr? ( ${ALL_URLS} )
l10n_gl? ( ${ALL_URLS} )
l10n_hi? ( ${ALL_URLS} )
@@ -39,7 +40,6 @@ SRC_URI="l10n_af? ( ${ALL_URLS} )
l10n_sr? ( ${ALL_URLS} )
l10n_sv? ( ${ALL_URLS} )
l10n_ta? ( ${ALL_URLS} )
-   l10n_tl? ( ${ALL_URLS} )
l10n_tr? ( ${ALL_URLS} )
l10n_vi? ( ${ALL_URLS} )
l10n_zh-CN? ( ${ALL_URLS} )
@@ -72,6 +72,7 @@ IUSE_L10N="
l10n_de
l10n_el
l10n_es
+   l10n_fil
l10n_fr
l10n_gl
l10n_hi
@@ -91,7 +92,6 @@ IUSE_L10N="
l10n_sr
l10n_sv
l10n_ta
-   l10n_tl
l10n_tr
l10n_vi
l10n_zh-CN



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

2016-06-26 Thread Anthony G. Basile
commit: a313f64b6c2c1dae64e9d4a5c04f5c24b9d269d6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Jun 26 19:47:17 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jun 26 20:02:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a313f64b

dev-libs/xapian: version bump to 1.4.0

Package-Manager: portage-2.2.28

 dev-libs/xapian/Manifest|  1 +
 dev-libs/xapian/xapian-1.4.0.ebuild | 72 +
 2 files changed, 73 insertions(+)

diff --git a/dev-libs/xapian/Manifest b/dev-libs/xapian/Manifest
index d02e880..6e868ae 100644
--- a/dev-libs/xapian/Manifest
+++ b/dev-libs/xapian/Manifest
@@ -3,3 +3,4 @@ DIST xapian-core-1.2.22.tar.xz 3204096 SHA256 
269b87ca3faf79d444e8bb82ed58a96f19
 DIST xapian-core-1.2.23.tar.xz 3206452 SHA256 
9783aeae4e1a6d06e5636b270db4b458a7d0804a31da158269f57fa5dc86347d SHA512 
df3fa71150575faf982d6b90f2364962d61012dd45ed7ef4945a0623ed7056c32ea3cbc423f2016415a80779251ecb5080b6a34c5b66b823cf8d92fe6b5b3d30
 WHIRLPOOL 
a5498117b060218455946948c119e52ed0639a2c2d5f1fd60e416ab06ad2cd483814039801d1fa29e097a994927d482a2bd10ab18bca28a413198ea1adb4187b
 DIST xapian-core-1.3.6.tar.xz 2605652 SHA256 
e952795a6619366e1de7d2bebf0e636c34123170fd41316878e28d693819da82 SHA512 
a4a4c800d6b4708ba7793da7e413d91777ab30076526022ca12f2c497ab9b68dbf17b08abd4282c32f66778a4c7ad00cce37925fea36384960874a0327637ac1
 WHIRLPOOL 
2c6858f1b6dece7aacf2397beab3312681750c18559125771ef00a1768d2ae26eadcdc7aaac24f5121aeb634a36984e95b635965509f0e494d8c0d06971155d7
 DIST xapian-core-1.3.7.tar.xz 2607044 SHA256 
cfbbd8d42512690bc9867ed88a6a80723fe4193b6c4b97597f8fdf49026b94e7 SHA512 
c12714fa77afd524fea084758006a00d2ff74ca23925cff3f4313024f7e103e12e2fd525480c1f9ec707c3282ee4de85c45cd38d5cc8244bf2a60f7d6e703069
 WHIRLPOOL 
4425d1e9ac9b73b255e1abdcf7d69f5fd70f547519fa448a4876f953e330ebb2abb7ad08b16da360ca7ced50c6d60e6ea2bec127d788f44f0725ac84bb41f3f6
+DIST xapian-core-1.4.0.tar.xz 2613272 SHA256 
10584f57112aa5e9c0e8a89e251aecbf7c582097638bfee79c1fe39a8b6a6477 SHA512 
e37868e80187718995fd5b0f92a47c801b76c7bef129e01928d1de925b5f655ffe7c6907218809469ad4b89bf81c67ce9c9b5cc0646f2b8d629d6afd629a621e
 WHIRLPOOL 
8d25bfbc4f872bed8e3512c85db568ab9a53166bc82a40874d61bad4599b6a4c23bbc16897c674669413a52c329bc718c00298392f19e1c99130b931c5d0b6ef

diff --git a/dev-libs/xapian/xapian-1.4.0.ebuild 
b/dev-libs/xapian/xapian-1.4.0.ebuild
new file mode 100644
index 000..380d289
--- /dev/null
+++ b/dev-libs/xapian/xapian-1.4.0.ebuild
@@ -0,0 +1,72 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils
+
+MY_P="${PN}-core-${PV}"
+
+DESCRIPTION="Xapian Probabilistic Information Retrieval library"
+HOMEPAGE="http://www.xapian.org/;
+SRC_URI="http://oligarchy.co.uk/xapian/${PV}/${MY_P}.tar.xz;
+
+LICENSE="GPL-2"
+SLOT="0/30" # ABI version of libxapian.so
+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"
+RDEPEND="${DEPEND}"
+
+REQUIRED_USE="inmemory? ( chert )"
+
+S="${WORKDIR}/${MY_P}"
+
+src_configure() {
+   local myconf=""
+
+   ewarn
+   if use cpu_flags_x86_sse2; then
+   ewarn "Using sse2"
+   myconf="${myconf} --enable-sse=sse2"
+   else
+   if use cpu_flags_x86_sse; then
+   ewarn "Using sse"
+   myconf="${myconf} --enable-sse=sse"
+   else
+   ewarn "Disabling sse and sse2"
+   myconf="${myconf} --disable-sse"
+   fi
+   fi
+   ewarn
+
+   myconf="${myconf} $(use_enable static-libs static)"
+
+   use brass || myconf="${myconf} --disable-backend-brass"
+   use chert || myconf="${myconf} --disable-backend-chert"
+   use inmemory || myconf="${myconf} --disable-backend-inmemory"
+
+   myconf="${myconf} --enable-backend-remote --program-suffix="
+
+   econf $myconf
+}
+
+src_install() {
+   emake DESTDIR="${D}" install
+
+   # bug #573466
+   ln -sf "${D}usr/bin/xapian-config" "${D}usr/bin/xapian-config-1.3"
+
+   mv "${D}usr/share/doc/xapian-core" "${D}usr/share/doc/${PF}" || die
+   use doc || rm -rf "${D}usr/share/doc/${PF}"
+
+   dodoc AUTHORS HACKING PLATFORMS README NEWS
+
+   prune_libtool_files --all
+}
+
+src_test() {
+   emake check VALGRIND=
+}



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

2016-06-26 Thread Anthony G. Basile
commit: 221e56ec3b028f836c2791f82f7a74633ef7c12c
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Jun 26 20:00:45 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jun 26 20:02:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=221e56ec

app-text/xapian-omega: version bump to 1.4.0

Package-Manager: portage-2.2.28

 app-text/xapian-omega/Manifest  |  1 +
 app-text/xapian-omega/xapian-omega-1.4.0.ebuild | 46 +
 2 files changed, 47 insertions(+)

diff --git a/app-text/xapian-omega/Manifest b/app-text/xapian-omega/Manifest
index 1b0f06d..54d9d1d 100644
--- a/app-text/xapian-omega/Manifest
+++ b/app-text/xapian-omega/Manifest
@@ -3,3 +3,4 @@ DIST xapian-omega-1.2.22.tar.xz 437556 SHA256 
a7d4b00f6830d003490c0f727fc03584e7
 DIST xapian-omega-1.2.23.tar.xz 437912 SHA256 
55c790204fc0b1ddbd4bdae73aa55eed40671475e13252a71a53a01f80d172ef SHA512 
1ea2b090b75f7ab530bbb6af79eb26931684796f9b0a987530f44e7f7f9527929644880f7528198e0ea22f69feabd014783c0b01edaa6673b54f83091e9a5428
 WHIRLPOOL 
522833f6dc47693885238caac1da80141d909a2c7c89bc5f302e064f5ebded132329000a223f9a11b412adea25c412ff4a99c0f5de9cf25582e62dca02a3bae6
 DIST xapian-omega-1.3.6.tar.xz 486352 SHA256 
ffa5a151b827e8227d47cadacbdb18854e6d339bf6595892cc304f9a4e3d8abb SHA512 
78e607880343d056cac777d0e1b59f89a405fd190c16554322e2e289ffdde0a537238e013ded2fe7c10b6cabfed86360fe0c022c185d896822eb968945886000
 WHIRLPOOL 
b0035a987df4bfc34abc68c658c01a804327d6c1ea87e687a20675f03cb208dec421775e124b55d4a1cd624d82432ad89b3a45c5e77eaed3e8d67cd909420217
 DIST xapian-omega-1.3.7.tar.xz 490156 SHA256 
3d3064289dc891c774a6be8b6e2f0f21691b88ab57ec7a5d16141179027c7453 SHA512 
87aea7e59a612b6757d6c826b328542f5696d544906e85009063b8a7206a9cbf50457f7a03e3d2c25ebfd95d37e3c2a75ee70d2da7c3e1bd021e6c15092a1755
 WHIRLPOOL 
5da58ff0e30c0341b7f653b30be12770fea82d3f6e6041d8fd82be1ca75b3e058336854a4a651d430c71dbacfebb91b9b0eb4b95ced99ba983bddcd690acb92b
+DIST xapian-omega-1.4.0.tar.xz 490224 SHA256 
10fc0635b5009bbe726461a62867abf6761bd8cfb812c2ead9646a166a20431f SHA512 
973c456e6d6f5b0818ec6ae1fe8e2ad221ddb5f497a0e51ea552b3e634414f0110311de848276904cff9712dcde7f6468f7152e802a912477e087a17d254d65e
 WHIRLPOOL 
94d3d8bf591dd1cba33b6ab5c09159d596d422a822537890a04106feabd2604c19986f2c5a40800d656090c76e224b25a061b61f84c219b457ea19c350d9bd97

diff --git a/app-text/xapian-omega/xapian-omega-1.4.0.ebuild 
b/app-text/xapian-omega/xapian-omega-1.4.0.ebuild
new file mode 100644
index 000..faa7c77
--- /dev/null
+++ b/app-text/xapian-omega/xapian-omega-1.4.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+DESCRIPTION="An application built on Xapian, consisting of indexers and a CGI 
search frontend"
+SRC_URI="http://www.oligarchy.co.uk/xapian/${PV}/xapian-omega-${PV}.tar.xz;
+HOMEPAGE="http://www.xapian.org/;
+S="${WORKDIR}/xapian-omega-${PV}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86"
+IUSE=""
+
+DEPEND="dev-libs/xapian:0/30
+   dev-lang/perl
+   dev-libs/libpcre
+   sys-libs/zlib"
+RDEPEND="${DEPEND}"
+
+src_install () {
+   emake DESTDIR="${D}" install
+
+   # Protect /etc/omega.conf
+   echo "CONFIG_PROTECT=\"/etc/omega.conf\"" > "${T}"/20xapian-omega
+   doenvd "${T}"/20xapian-omega
+   dodoc AUTHORS ChangeLog INSTALL NEWS README TODO
+
+   #move docs to /usr/share/doc/${PF}.
+   mv "${D}/usr/share/doc/xapian-omega" "${D}/usr/share/doc/${PF}" || die
+
+   # Directory containing Xapian databases:
+   keepdir /var/lib/omega/data
+
+   # Directory containing OmegaScript templates:
+   keepdir /var/lib/omega/templates
+   mv "${S}"/templates/* "${D}"/var/lib/omega/templates || die
+
+   # Directory to write Omega logs to:
+   keepdir /var/log/omega
+
+   # Directory containing any cdb files for the $lookup OmegaScript 
command:
+   keepdir /var/lib/omega/cdb
+}



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

2016-06-26 Thread Anthony G. Basile
commit: cff14d959f5b02a3cdf7afd06552466f249e4a4b
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Jun 26 19:58:27 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jun 26 20:02:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cff14d95

dev-libs/xapian-bindings: version bump to 1.4.0

Package-Manager: portage-2.2.28

 dev-libs/xapian-bindings/Manifest  |   1 +
 .../xapian-bindings/xapian-bindings-1.4.0.ebuild   | 119 +
 2 files changed, 120 insertions(+)

diff --git a/dev-libs/xapian-bindings/Manifest 
b/dev-libs/xapian-bindings/Manifest
index 4fcb923..f2d5a89 100644
--- a/dev-libs/xapian-bindings/Manifest
+++ b/dev-libs/xapian-bindings/Manifest
@@ -3,3 +3,4 @@ DIST xapian-bindings-1.2.22.tar.xz 844040 SHA256 
b15ca7984980a1d2aedd3378648ef5f
 DIST xapian-bindings-1.2.23.tar.xz 885888 SHA256 
19b4b56c74863c51733d8c2567272ef7f004b898cf44016711ae25bc524b2215 SHA512 
4be9d103a4073a08d2481e9ddc347156d4028a1517f313861ad3664e6103e052dc1a0d07a992da3ca02599505c002d09d77c4fd886c144918aab72977e69994c
 WHIRLPOOL 
1323e51dcd8f18f573f9338d9a013bfd370870c1fd2c0b0e3ff9d1f6b3b9154a0512d7442d7c7b1b00a70757faa218e8894a0f4fe56da88bca12ba2259cd35de
 DIST xapian-bindings-1.3.6.tar.xz 1019216 SHA256 
ba33436dee5165f61f2e289cfb18b1acdc4b2a811afdf68158845680e744eda0 SHA512 
318324d9deb6a359de79eadb792c598661bde2ff9e1b241e29b18cdf1a2cf3dbeb9f5643c6bf8c7fbdbc8a2fd0baa91384398e694448312b6d8383960407f7fe
 WHIRLPOOL 
eb6844809572cad97d90be20ee27d28556342b27145e9e6c1efaea09f50a6001bad708a6370051edb9d065081a571c7552aaa36c601e1247a9aa5c5550549131
 DIST xapian-bindings-1.3.7.tar.xz 1021176 SHA256 
f014bb0281fdaa08fd9293ee187af0c2165f4fd2de91a67b76d9327b64677717 SHA512 
3dc7eac68c4f3010e5cb831b4baad7bea4d47e0a8dc492ac16f2437057da351caad008aa7bcf3f2bbdaffda7d2524e8b5a945b651dc02deadeb110073ef06ad8
 WHIRLPOOL 
f68a81a37b9c298ad6b061f597806b0823ba01ee02c0921e90988c984ac2f60ec0cb09dba8bdecb43c412517eebd72490196923db474e5362d17c47af4b4fdd2
+DIST xapian-bindings-1.4.0.tar.xz 1021244 SHA256 
3aec7a009d0bf0b95968420bf68683176c05d63140eaf1cf265d39afe8fa6253 SHA512 
16523be4f2cd576819771e387d469c91cd03b27522808eebc9275ac3281e55c5d40a5c620ad37f96c2dbc89cc2b13808579e29d737eb63584b8c209597b0f7ce
 WHIRLPOOL 
26a31b8a2ca8bd08a45e79fb5f926e917db8e65d8ee1f07c9291c573b8efa647c9ff7bc1c6c3130ae69538ffa1789a0ad60d940f00b758066e55f4835ec20433

diff --git a/dev-libs/xapian-bindings/xapian-bindings-1.4.0.ebuild 
b/dev-libs/xapian-bindings/xapian-bindings-1.4.0.ebuild
new file mode 100644
index 000..c1bfac4
--- /dev/null
+++ b/dev-libs/xapian-bindings/xapian-bindings-1.4.0.ebuild
@@ -0,0 +1,119 @@
+# 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=threads
+DISTUTILS_SINGLE_IMPL=yesplz
+DISTUTILS_OPTIONAL=yesplz
+DISTUTILS_IN_SOURCE_BUILD=yesplz
+
+USE_PHP="php5-5 php5-6"
+
+PHP_EXT_NAME="xapian"
+PHP_EXT_INI="yes"
+PHP_EXT_OPTIONAL_USE="php"
+
+#mono violates sandbox, we disable it until we figure this out
+#inherit distutils-r1 libtool java-pkg-opt-2 mono-env php-ext-source-r2 
toolchain-funcs
+inherit distutils-r1 libtool java-pkg-opt-2 php-ext-source-r2 toolchain-funcs
+
+DESCRIPTION="SWIG and JNI bindings for Xapian"
+HOMEPAGE="http://www.xapian.org/;
+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"
+#IUSE="java lua mono perl php python ruby tcl"
+IUSE="java lua perl php python ruby tcl"
+#REQUIRED_USE="|| ( java lua mono perl php python ruby tcl )"
+REQUIRED_USE="|| ( java lua perl php python ruby tcl )"
+
+COMMONDEPEND="dev-libs/xapian:0/30
+   lua? ( dev-lang/lua:= )
+   perl? ( dev-lang/perl:= )
+   python? (
+   dev-python/sphinx
+   ${PYTHON_DEPS}
+   )
+   ruby? ( dev-lang/ruby:= )
+   tcl? ( dev-lang/tcl:= )"
+#  mono? ( dev-lang/mono )
+DEPEND="${COMMONDEPEND}
+   virtual/pkgconfig
+   java? ( >=virtual/jdk-1.6 )"
+RDEPEND="${COMMONDEPEND}
+   java? ( >=virtual/jre-1.6 )"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+pkg_setup() {
+#  use mono && mono-env_pkg_setup
+   use java && java-pkg-opt-2_pkg_setup
+   use python && python-single-r1_pkg_setup
+}
+
+src_prepare() {
+   use java && java-pkg-opt-2_src_prepare
+
+   # http://trac.xapian.org/ticket/702
+   export XAPIAN_CONFIG="/usr/bin/xapian-config"
+
+   # Accept ruby 2.0 - patch configure directly to avoid autoreconf
+   epatch "${FILESDIR}"/${PN}-1.3.6-allow-ruby-2.0.patch
+}
+
+src_configure() {
+   if use java; then
+   export CXXFLAGS="${CXXFLAGS} $(java-pkg_get-jni-cflags)"
+   fi
+
+   if use perl; then
+   export PERL_ARCH="$(perl -MConfig -e 'print 
$Config{installvendorarch}')"
+   export PERL_LIB="$(perl 

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

2016-06-26 Thread Zac Medico
commit: f0e60ce4e36a0f5706ba584a3ac5d1df3df63b4b
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Jun 26 19:28:15 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jun 26 19:30:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0e60ce4

dev-util/android-tools: remove old version 0_p20130218

Package-Manager: portage-2.3.0

 dev-util/android-tools/Manifest|  3 --
 .../android-tools/android-tools-0_p20130218.ebuild | 56 --
 2 files changed, 59 deletions(-)

diff --git a/dev-util/android-tools/Manifest b/dev-util/android-tools/Manifest
index 23b4a71..a0210d8 100644
--- a/dev-util/android-tools/Manifest
+++ b/dev-util/android-tools/Manifest
@@ -3,6 +3,3 @@ DIST android-tools-5.1.1_r13-core.tar.gz 1210720 SHA256 
f62ad7eb61650bc69cafd081
 DIST android-tools-5.1.1_r13-extras.tar.gz 282690 SHA256 
35440226e2dd41e91b96f4791fd389d38e98aedd596c09bdb80b9d27bb8fdf82 SHA512 
322d45be02d3d5a5bf677e3a38a44085258ee7b9a8c0a7bc08ddb4104168170d5969699ee54e19009a2bd0d7e0ac6ad7971ccc67e2a0311c6f1ba7fb76cfce83
 WHIRLPOOL 
3b8e0cc2d00a88f9e00a6de8a88fbe6c5374e82929859045602fbd96d5f4cf5e06f257b27b0a8ba1aebde981c6d4fe090c1a75fe737ca514d93f78cb51964752
 DIST android-tools-5.1.1_r13-f2fs-tools.tar.gz 65931 SHA256 
46aed56344b6661e1e638994ce57a7010c391356396b28cb207fc77f082c60cd SHA512 
66f4be04164df8bb5138105db4e9d5b79c09cd8c28a0d30a6d1e6dead77961614172c96fa680953bf445b934f14b4dbbc21ce89a909d9f278f2eca1ca2e1e656
 WHIRLPOOL 
5aa59b453c6fa31bb76a5568553ab25376d72a35cb96b97a1e7d956b2901f8467f4c7d56b73046c559fc3714e73acace31649f0929899f4e043ccb998de12fdc
 DIST android-tools-5.1.1_r13-libselinux.tar.gz 49085 SHA256 
0950aaa63e22c3d4399142f9795adaee9c0a866b7f037f6b7306642d46327bc2 SHA512 
b1a8960b98206118a07f11e7e67429c0d4b8f89c4f65919bcd02a6ba1c7f30e5b73a9431ce8d10fc6ffa6e487b79061b84a969490bf22a49188dc5cd9dd46a2f
 WHIRLPOOL 
da4d532bf033aa8bd1f423b596b95e6768b963d65c6fb23f856a07c636882b9584354fd147b04f1393219cc2a45281e440ed6a4f8f5472bd5a39119f81ce9209
-DIST android-tools-e89e09dd2b9b42184973e3ade291186a2737bced.patch 1115 SHA256 
3bac2ec91d6d53cc7a2bd31f0670ff2e560b15d8722d3961e7b24b2f41cf5932 SHA512 
2239e883269dc2cbd9f25dde9159cff8de8525b021ea9e2a243d4553e60c28398cb8e830117cc20e7cfe1b951f2841430e9bc950916d30b0f6c9e6dbd154f6b9
 WHIRLPOOL 
1bdbb65ebbf94e8c732f4893f090f895d24173928f6cc48b53160595449efc0457130ab67e6be132f77763110fd08e7aeba6701effa27de6fe3c0bdc0d82a8d1
-DIST android-tools_4.2.2+git20130218-3ubuntu36.debian.tar.gz 152459 SHA256 
1bb63a418dc785277173ce971711a86f66d35d4ca7053cd1ff4afff8001cc7a6 SHA512 
8e03fa08433f0cc358855d116926e50f0e6346c29ab3d1a865eb5b0e3be00091d861bd3ac2f3bc236a9028b35bf40988ab8130f566c3aca8c4ccbd7066a317f9
 WHIRLPOOL 
50c152c32a6d7f505a86faf24d2645053362073608990228eaa88f25e86c54b2a4dcab51f8d52941af493ac68628cf75c2abd320ec7c80a7aa89431277578e6c
-DIST android-tools_4.2.2+git20130218.orig.tar.xz 215868 SHA256 
9bfba987e1351b12aa983787b9ae4424ab752e9e646d8e93771538dc1e5d932f SHA512 
c5bfd3c8e514809db257ba5559c865742768b7520b38aa2f53185aff5c328e5cf7fb328a6ff6450eeddd5056985f232d492eba63a87978440e2147e26d62f458
 WHIRLPOOL 
0ad784e8524adf1d23958336b73f22fe504074b85c93f17e023a10e57f4e413d8b803c619a0dd7ff495ff8910681d3023932d7a87a008f3e44bacbe6c1fd70a4

diff --git a/dev-util/android-tools/android-tools-0_p20130218.ebuild 
b/dev-util/android-tools/android-tools-0_p20130218.ebuild
deleted file mode 100644
index 91c0f05..000
--- a/dev-util/android-tools/android-tools-0_p20130218.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils toolchain-funcs
-
-MY_VERSION="${PV##*_p}"
-GIT_SHA1="e89e09dd2b9b42184973e3ade291186a2737bced"
-
-DESCRIPTION="Android platform tools (adb and fastboot)"
-HOMEPAGE="https://android.googlesource.com/platform/system/core.git/;
-SRC_URI="https://launchpad.net/ubuntu/+archive/primary/+files/android-tools_4.2.2+git${MY_VERSION}.orig.tar.xz
-   
https://launchpad.net/ubuntu/+archive/primary/+files/android-tools_4.2.2+git${MY_VERSION}-3ubuntu36.debian.tar.gz
-   
https://github.com/android/platform_system_core/commit/${GIT_SHA1}.patch -> 
${PN}-${GIT_SHA1}.patch"
-
-# The entire source code is Apache-2.0, except for fastboot which is BSD.
-LICENSE="Apache-2.0 BSD"
-SLOT="0"
-KEYWORDS="amd64 x86 ~arm-linux ~x86-linux"
-IUSE=""
-
-RDEPEND="sys-libs/zlib:=
-   dev-libs/openssl:0="
-
-DEPEND="${RDEPEND}"
-
-S=${WORKDIR}/${PN}
-
-src_prepare() {
-   pushd core >/dev/null || die
-   epatch "${DISTDIR}"/${PN}-${GIT_SHA1}.patch #500480
-   popd >/dev/null
-   epatch ../debian/patches/*.patch
-   mv ../debian/makefiles/adb.mk core/adb/Makefile || die
-   mv ../debian/makefiles/fastboot.mk core/fastboot/Makefile || die
-
-   # Avoid libselinux dependency.
-   sed -e 's: -lselinux::' -i core/fastboot/Makefile || die
-   sed -e '/#include 

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

2016-06-26 Thread Michał Górny
commit: 4a8521d39f97e06bce398d2c724c3d5b344aada2
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 26 19:04:30 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 26 19:04:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a8521d3

package.mask: Remove stale mask for live radare2 (kw-masked)

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 54e45ee..90efb1d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -528,10 +528,6 @@ dev-libs/iniparser:4
 # Not supported by any django version upstream supports
 dev-python/south
 
-# Sergei Trofimovich  (29 Jan 2015)
-# Mask live ebuild
-=dev-util/radare2-
-
 # Tony Vroon  (5 Jan 2015)
 # Asterisk 13 is an LTS release but has not seen
 # sufficient releases to be considered ready for



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

2016-06-26 Thread Michael Palimaka
commit: ba961545b12df8dd97c269e091221d6a26c47328
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 18:59:54 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 19:02:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba961545

profiles: restore media-libs/mlt USE flags on plasma

The removal of the last version of media-libs/mlt to have kde and qt4 USE flags
was delayed.

This reverts commit 8df64ab13c2aba40c30b7b947acbf89ac8977f8d.

 profiles/targets/desktop/plasma/package.use | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/targets/desktop/plasma/package.use 
b/profiles/targets/desktop/plasma/package.use
index 097c301..4b44a9c 100644
--- a/profiles/targets/desktop/plasma/package.use
+++ b/profiles/targets/desktop/plasma/package.use
@@ -48,7 +48,7 @@ media-libs/mesa egl wayland
 net-libs/libproxy -kde
 
 # Required by kde-apps/kdenlive
->=media-libs/mlt-0.9.8-r2 kdenlive melt
+>=media-libs/mlt-0.9.8-r2 kdenlive melt -kde -qt4
 
 # Allow certain KDE 4 components to be coinstalled with Plasma 5
 

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

2016-06-26 Thread Markus Meier
commit: cdc9e2f4d24e1471ffe457d871344db314c63a48
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:45:56 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:45:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cdc9e2f4

dev-libs/gmp: arm stable, bug #586540

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

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

diff --git a/dev-libs/gmp/gmp-6.1.0.ebuild b/dev-libs/gmp/gmp-6.1.0.ebuild
index e97c46f..23a6518 100644
--- a/dev-libs/gmp/gmp-6.1.0.ebuild
+++ b/dev-libs/gmp/gmp-6.1.0.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$
 
@@ -19,7 +19,7 @@ SRC_URI="ftp://ftp.gmplib.org/pub/${MY_P}/${MY_P}.tar.xz
 LICENSE="|| ( LGPL-3+ GPL-2+ )"
 # The subslot reflects the C & C++ SONAMEs.
 SLOT="0/10.4"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="+asm doc cxx pgo static-libs"
 
 DEPEND="sys-devel/m4



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

2016-06-26 Thread Markus Meier
commit: 324e03adda03401cf5bc3b857691930cfbc57790
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:45:11 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:45:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=324e03ad

net-irc/irker: add ~arm, bug #585628

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

 net-irc/irker/irker-2.16.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-irc/irker/irker-2.16.ebuild b/net-irc/irker/irker-2.16.ebuild
index 762c4cc..96f3eac 100644
--- a/net-irc/irker/irker-2.16.ebuild
+++ b/net-irc/irker/irker-2.16.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://www.catb.org/esr/${PN}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 DEPEND="app-text/docbook-xml-dtd:4.1.2



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

2016-06-26 Thread Markus Meier
commit: 709fec6cbf7d157a9f4d4355f062f8261ca0bf77
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:44:14 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:44:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=709fec6c

xfce-extra/xfce4-verve-plugin: arm stable, bug #586614

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

 xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild 
b/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild
index ba0347e..9126000 100644
--- a/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.ebuild
+++ b/xfce-extra/xfce4-verve-plugin/xfce4-verve-plugin-1.1.0.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://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
 IUSE="dbus"
 
 RDEPEND=">=xfce-base/exo-0.6:=



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/tumbler/

2016-06-26 Thread Markus Meier
commit: 865205b5e02e39e6c287e5bdc5b1bfa3a424cdd7
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:43:30 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:43:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=865205b5

xfce-extra/tumbler: arm stable, bug #586614

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

 xfce-extra/tumbler/tumbler-0.1.31-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-extra/tumbler/tumbler-0.1.31-r1.ebuild 
b/xfce-extra/tumbler/tumbler-0.1.31-r1.ebuild
index 7d3839b..aae57f3 100644
--- a/xfce-extra/tumbler/tumbler-0.1.31-r1.ebuild
+++ b/xfce-extra/tumbler/tumbler-0.1.31-r1.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://xfce/src/apps/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 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="curl debug ffmpeg gstreamer jpeg odf pdf raw"
 
 COMMON_DEPEND=">=dev-libs/dbus-glib-0.100:=



[gentoo-commits] repo/gentoo:master commit in: xfce-extra/thunar-archive-plugin/

2016-06-26 Thread Markus Meier
commit: 06aa9ec3102a4cbcd832a2f1b497f38756da
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:42:30 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:42:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06aa9ec3

xfce-extra/thunar-archive-plugin: arm stable, bug #586614

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

 .../thunar-archive-plugin/thunar-archive-plugin-0.3.1-r2.ebuild   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r2.ebuild 
b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r2.ebuild
index 989dd0d..c972470 100644
--- a/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r2.ebuild
+++ b/xfce-extra/thunar-archive-plugin/thunar-archive-plugin-0.3.1-r2.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$
 
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://xfce/src/thunar-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
 IUSE="debug"
 
 RDEPEND=">=xfce-base/libxfce4util-4.8:=



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

2016-06-26 Thread Markus Meier
commit: 854a90991dc57e4c5115d686e6e906abcb514d70
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:41:47 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:41:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=854a9099

xfce-base/xfwm4: arm stable, bug #586614

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

 xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild 
b/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
index a4c9161..6025122 100644
--- a/xfce-base/xfwm4/xfwm4-4.12.3-r1.ebuild
+++ b/xfce-base/xfwm4/xfwm4-4.12.3-r1.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://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE="debug dri startup-notification +xcomposite"
 
 RDEPEND="dev-libs/dbus-glib:=



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

2016-06-26 Thread Markus Meier
commit: 7c801f4a2548c8d854a9720052f4ecdd4c727c43
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:40:47 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:41:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c801f4a

xfce-base/xfdesktop: arm stable, bug #586614

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

 xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild 
b/xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild
index ae77116..4f49d2a 100644
--- a/xfce-base/xfdesktop/xfdesktop-4.12.3.ebuild
+++ b/xfce-base/xfdesktop/xfdesktop-4.12.3.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://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="debug libnotify +thunar"
 
 # src/xfdesktop-file-utils.c:#if GLIB_CHECK_VERSION (2, 38, 0)



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-settings/

2016-06-26 Thread Markus Meier
commit: 2517fdd3419568d51b7b34f82be2228fadc69373
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:40:04 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:40:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2517fdd3

xfce-base/xfce4-settings: arm stable, bug #586614

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

 xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild 
b/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild
index c37f353..22000fe 100644
--- a/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild
+++ b/xfce-base/xfce4-settings/xfce4-settings-4.12.0-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~ia64-linux ~x86-linux"
 IUSE="debug input_devices_libinput libcanberra libnotify upower +xklavier"
 
 RDEPEND=">=dev-libs/dbus-glib-0.100



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-session/

2016-06-26 Thread Markus Meier
commit: 926517d0dbb8eb0f993476dd3f7a9ccd02d03ffa
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:39:09 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:39:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=926517d0

xfce-base/xfce4-session: arm stable, bug #586614

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

 xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild 
b/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild
index a5bed38..99f4165 100644
--- a/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild
+++ b/xfce-base/xfce4-session/xfce4-session-4.12.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="debug nls policykit systemd upower +xscreensaver"
 
 COMMON_DEPEND=">=dev-libs/dbus-glib-0.100:=



[gentoo-commits] repo/gentoo:master commit in: xfce-base/xfce4-panel/

2016-06-26 Thread Markus Meier
commit: b974accb535753c9be35ef4f12e396427a2ef016
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:38:17 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:38:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b974accb

xfce-base/xfce4-panel: arm stable, bug #586614

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

 xfce-base/xfce4-panel/xfce4-panel-4.12.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/xfce4-panel/xfce4-panel-4.12.0-r1.ebuild 
b/xfce-base/xfce4-panel/xfce4-panel-4.12.0-r1.ebuild
index 6e10bf9..c90d506 100644
--- a/xfce-base/xfce4-panel/xfce4-panel-4.12.0-r1.ebuild
+++ b/xfce-base/xfce4-panel/xfce4-panel-4.12.0-r1.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://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="debug"
 
 RDEPEND=">=dev-libs/dbus-glib-0.100



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

2016-06-26 Thread Markus Meier
commit: 71147a5255753ef5f1d9458f64be14a221cba1d3
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:37:30 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:37:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71147a52

xfce-base/thunar: arm stable, bug #586614

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

 xfce-base/thunar/thunar-1.6.10-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/thunar/thunar-1.6.10-r1.ebuild 
b/xfce-base/thunar/thunar-1.6.10-r1.ebuild
index 4337332..d4b3177 100644
--- a/xfce-base/thunar/thunar-1.6.10-r1.ebuild
+++ b/xfce-base/thunar/thunar-1.6.10-r1.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$
 
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${MY_P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="+dbus debug exif libnotify pcre test udisks +xfce_plugins_trash"
 
 GVFS_DEPEND=">=gnome-base/gvfs-1.18.3"



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

2016-06-26 Thread Markus Meier
commit: b3fc9f107ed044dd721c4dd50e9903281108fe33
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:36:29 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:36:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3fc9f10

xfce-base/libxfce4util: arm stable, bug #586614

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

 xfce-base/libxfce4util/libxfce4util-4.12.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/libxfce4util/libxfce4util-4.12.1-r1.ebuild 
b/xfce-base/libxfce4util/libxfce4util-4.12.1-r1.ebuild
index a996e66..ef09147 100644
--- a/xfce-base/libxfce4util/libxfce4util-4.12.1-r1.ebuild
+++ b/xfce-base/libxfce4util/libxfce4util-4.12.1-r1.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://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="LGPL-2"
 SLOT="0/7"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris"
 IUSE="debug"
 
 RDEPEND=">=dev-libs/glib-2.24"



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

2016-06-26 Thread Markus Meier
commit: 0a6ec3d83a41c6956e4a563aade37367666d4086
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:35:46 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:35:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a6ec3d8

xfce-base/libxfce4ui: arm stable, bug #586614

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

 xfce-base/libxfce4ui/libxfce4ui-4.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/xfce-base/libxfce4ui/libxfce4ui-4.13.0.ebuild 
b/xfce-base/libxfce4ui/libxfce4ui-4.13.0.ebuild
index c76b724..b48113c 100644
--- a/xfce-base/libxfce4ui/libxfce4ui-4.13.0.ebuild
+++ b/xfce-base/libxfce4ui/libxfce4ui-4.13.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE="debug glade startup-notification"
 
 RDEPEND=">=dev-libs/glib-2.30:2=



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

2016-06-26 Thread Markus Meier
commit: 584223a91d09c6e0cf02f1373a76bb8fbfa185a4
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:34:59 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:34:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=584223a9

xfce-base/garcon: arm stable, bug #586614

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

 xfce-base/garcon/garcon-0.5.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/garcon/garcon-0.5.0-r2.ebuild 
b/xfce-base/garcon/garcon-0.5.0-r2.ebuild
index cfe13d3..240836b 100644
--- a/xfce-base/garcon/garcon-0.5.0-r2.ebuild
+++ b/xfce-base/garcon/garcon-0.5.0-r2.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://xfce/src/libs/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="LGPL-2 FDL-1.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x86-solaris"
 IUSE="debug"
 
 RDEPEND=">=dev-libs/glib-2.30:=



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

2016-06-26 Thread Markus Meier
commit: 8988baae6a2857f0aeb46386eae646d9b6f03319
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:34:17 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:34:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8988baae

xfce-base/exo: arm stable, bug #586614

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

 xfce-base/exo/exo-0.10.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/xfce-base/exo/exo-0.10.7.ebuild b/xfce-base/exo/exo-0.10.7.ebuild
index 533f6b6..87dc8f9 100644
--- a/xfce-base/exo/exo-0.10.7.ebuild
+++ b/xfce-base/exo/exo-0.10.7.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://xfce/src/xfce/${PN}/${PV%.*}/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux 
~x64-solaris ~x86-solaris"
 IUSE="debug"
 
 RDEPEND=">=dev-lang/perl-5.6



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

2016-06-26 Thread Markus Meier
commit: edbbe3052d3864643439f5c835e03fb8143b24a1
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:33:06 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:33:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edbbe305

dev-libs/libpcre: arm stable, bug #575546

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

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

diff --git a/dev-libs/libpcre/libpcre-8.38-r1.ebuild 
b/dev-libs/libpcre/libpcre-8.38-r1.ebuild
index ee7532a..42232e5 100644
--- a/dev-libs/libpcre/libpcre-8.38-r1.ebuild
+++ b/dev-libs/libpcre/libpcre-8.38-r1.ebuild
@@ -19,7 +19,7 @@ fi
 
 LICENSE="BSD"
 SLOT="3"
-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 +cxx +jit libedit pcre16 pcre32 +readline +recursion-limit 
static-libs unicode zlib"
 REQUIRED_USE="readline? ( !libedit )
libedit? ( !readline )"



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

2016-06-26 Thread Markus Meier
commit: 5ad2c60982a0799e96d9d8c72909d0af22014330
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:32:18 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:32:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ad2c609

dev-lang/elixir: add ~arm, bug #585230

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

 dev-lang/elixir/elixir-1.2.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/elixir/elixir-1.2.5.ebuild 
b/dev-lang/elixir/elixir-1.2.5.ebuild
index 19f6fbc..cec7e50 100644
--- a/dev-lang/elixir/elixir-1.2.5.ebuild
+++ b/dev-lang/elixir/elixir-1.2.5.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$
 
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/elixir-lang/elixir/archive/v${PV}.tar.gz -> ${P}.tar
 
 LICENSE="Apache-2.0 ErlPL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 DEPEND=">=dev-lang/erlang-18"



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

2016-06-26 Thread Markus Meier
commit: ba5cc396afb6e05dc9a4d165a68ba5b65ddbd1f5
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:31:25 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:31:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba5cc396

dev-libs/libassuan: arm stable, bug #586442

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

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

diff --git a/dev-libs/libassuan/libassuan-2.4.2.ebuild 
b/dev-libs/libassuan/libassuan-2.4.2.ebuild
index e01dd61..5089570 100644
--- a/dev-libs/libassuan/libassuan-2.4.2.ebuild
+++ b/dev-libs/libassuan/libassuan-2.4.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-3 LGPL-2.1"
 SLOT="0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND=">=dev-libs/libgpg-error-1.8"



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

2016-06-26 Thread Markus Meier
commit: 355a6447b06730134f785e7d379944f5c32fe23e
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:30:31 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:30:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=355a6447

media-libs/libv4l: arm stable, bug #586192

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

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

diff --git a/media-libs/libv4l/libv4l-1.10.1.ebuild 
b/media-libs/libv4l/libv4l-1.10.1.ebuild
index bf0cd30..cdd23e1 100644
--- a/media-libs/libv4l/libv4l-1.10.1.ebuild
+++ b/media-libs/libv4l/libv4l-1.10.1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://linuxtv.org/downloads/v4l-utils/${MY_P}.tar.bz2;
 
 LICENSE="LGPL-2.1+"
 SLOT="0/0"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="jpeg"
 
 # The libraries only link to -ljpeg, therefore multilib depend only for 
virtual/jpeg.



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

2016-06-26 Thread Markus Meier
commit: 863bf9982efbdf25d06c1ef54030479331c1418d
Author: Markus Meier  gentoo  org>
AuthorDate: Sun Jun 26 18:29:07 2016 +
Commit: Markus Meier  gentoo  org>
CommitDate: Sun Jun 26 18:29:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=863bf998

dev-libs/libgcrypt: arm stable, bug #586056

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

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

diff --git a/dev-libs/libgcrypt/libgcrypt-1.7.1.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.7.1.ebuild
index 25a19d6..38a6237 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.7.1.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.7.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1 MIT"
 SLOT="0/20" # subslot = soname major version
-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 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs"
 
 RDEPEND=">=dev-libs/libgpg-error-1.12[${MULTILIB_USEDEP}]



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

2016-06-26 Thread Anthony G. Basile
commit: 29705a3930a31a1b0cbabc0536ecba16e914e039
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Jun 26 18:25:21 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jun 26 18:25:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29705a39

profiles: remove mask on i2pd

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

diff --git a/profiles/package.mask b/profiles/package.mask
index d912769..54e45ee 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -532,10 +532,6 @@ dev-python/south
 # Mask live ebuild
 =dev-util/radare2-
 
-# Anthony G. Basile  (9 Jan 2015)
-# p.mask the - version
-=dev-misc/i2pd-
-
 # Tony Vroon  (5 Jan 2015)
 # Asterisk 13 is an LTS release but has not seen
 # sufficient releases to be considered ready for



[gentoo-commits] repo/gentoo:master commit in: sys-block/seekwatcher/

2016-06-26 Thread Sergei Trofimovich
commit: f771fb86ea3536fcf61c73dd680cb53e18378e03
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jun 26 18:10:18 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jun 26 18:17:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f771fb86

sys-block/seekwatcher: port to distutils-r1, add myself to maintainers

Package-Manager: portage-2.3.0

 sys-block/seekwatcher/metadata.xml |  4 +++
 sys-block/seekwatcher/seekwatcher-0.12.ebuild  |  4 +--
 .../seekwatcher-0.12_p20091015-r1.ebuild   | 31 ++
 .../seekwatcher/seekwatcher-0.12_p20091015.ebuild  |  4 +--
 sys-block/seekwatcher/seekwatcher-0.6.ebuild   |  4 +--
 5 files changed, 41 insertions(+), 6 deletions(-)

diff --git a/sys-block/seekwatcher/metadata.xml 
b/sys-block/seekwatcher/metadata.xml
index 79d462e..888bfeb 100644
--- a/sys-block/seekwatcher/metadata.xml
+++ b/sys-block/seekwatcher/metadata.xml
@@ -4,4 +4,8 @@
 
   robb...@gentoo.org
 
+
+  sly...@gentoo.org
+  Sergei Trofimovich
+
 

diff --git a/sys-block/seekwatcher/seekwatcher-0.12.ebuild 
b/sys-block/seekwatcher/seekwatcher-0.12.ebuild
index 8595da7..9a859c6 100644
--- a/sys-block/seekwatcher/seekwatcher-0.12.ebuild
+++ b/sys-block/seekwatcher/seekwatcher-0.12.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-DESCRIPTION="Seekwatcher generates graphs from blktrace runs to help visualize 
IO patterns and performance"
+DESCRIPTION="generates graphs from blktrace to help visualize IO patterns and 
performance"
 HOMEPAGE="http://oss.oracle.com/~mason/seekwatcher/;
 SRC_URI="http://oss.oracle.com/~mason/seekwatcher/${P}.tar.bz2;
 

diff --git a/sys-block/seekwatcher/seekwatcher-0.12_p20091015-r1.ebuild 
b/sys-block/seekwatcher/seekwatcher-0.12_p20091015-r1.ebuild
new file mode 100644
index 000..b6369fa
--- /dev/null
+++ b/sys-block/seekwatcher/seekwatcher-0.12_p20091015-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit eutils distutils-r1
+
+DESCRIPTION="generates graphs from blktrace to help visualize IO patterns and 
performance"
+HOMEPAGE="http://oss.oracle.com/~mason/seekwatcher/;
+#SRC_URI="http://oss.oracle.com/~mason/seekwatcher/${P}.tar.bz2;
+SRC_URI="https://dev.gentoo.org/~slyfox/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+DEPEND="dev-python/pyrex"
+RDEPEND="
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   >=sys-block/btrace-0.0.20070730162628
+"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+S=${WORKDIR}/${PN}-b392aeaf693b # hg snapshot
+
+PATCHES=("${FILESDIR}"/${P}-dash-fix.patch)

diff --git a/sys-block/seekwatcher/seekwatcher-0.12_p20091015.ebuild 
b/sys-block/seekwatcher/seekwatcher-0.12_p20091015.ebuild
index 9823b80..4dc1586 100644
--- a/sys-block/seekwatcher/seekwatcher-0.12_p20091015.ebuild
+++ b/sys-block/seekwatcher/seekwatcher-0.12_p20091015.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -7,7 +7,7 @@ PYTHON_DEPEND="2"
 
 inherit eutils distutils
 
-DESCRIPTION="Seekwatcher generates graphs from blktrace runs to help visualize 
IO patterns and performance"
+DESCRIPTION="generates graphs from blktrace to help visualize IO patterns and 
performance"
 HOMEPAGE="http://oss.oracle.com/~mason/seekwatcher/;
 #SRC_URI="http://oss.oracle.com/~mason/seekwatcher/${P}.tar.bz2;
 SRC_URI="https://dev.gentoo.org/~slyfox/${P}.tar.gz;

diff --git a/sys-block/seekwatcher/seekwatcher-0.6.ebuild 
b/sys-block/seekwatcher/seekwatcher-0.6.ebuild
index e00a2b7..5f196d1 100644
--- a/sys-block/seekwatcher/seekwatcher-0.6.ebuild
+++ b/sys-block/seekwatcher/seekwatcher-0.6.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-DESCRIPTION="Seekwatcher generates graphs from blktrace runs to help visualize 
IO patterns and performance"
+DESCRIPTION="generates graphs from blktrace to help visualize IO patterns and 
performance"
 HOMEPAGE="http://oss.oracle.com/~mason/seekwatcher/;
 SRC_URI="http://oss.oracle.com/~mason/seekwatcher/${P}.tar.bz2;
 



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/base32/

2016-06-26 Thread Manuel Rüger
commit: 2ae8626f8200d2c0d91186cdd6f277f36540f961
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 18:15:56 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 18:15:56 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=2ae8626f

dev-ruby/base32: Initial version

Package-Manager: portage-2.2.28

 dev-ruby/base32/Manifest|  1 +
 dev-ruby/base32/base32-0.3.2.ebuild | 27 +++
 dev-ruby/base32/metadata.xml|  8 
 3 files changed, 36 insertions(+)

diff --git a/dev-ruby/base32/Manifest b/dev-ruby/base32/Manifest
new file mode 100644
index 000..f54eca5
--- /dev/null
+++ b/dev-ruby/base32/Manifest
@@ -0,0 +1 @@
+DIST base32-0.3.2.gem 8192 SHA256 
532e9b19c5dd1fce281df67fc93a803ebd5d26426a93f6dda6612769bc46fe2c SHA512 
9d66961774b9d5923d099229f80ceacec95d40d5d6d3842fda33ff6bf4070f9dc17d758a6cbc93a6200f4e0105bc60175f70d057469e684f01910ea07fd85a2f
 WHIRLPOOL 
70c0e719272507e2dfdb5362680cfe0ad20e7f791fa8a02f14b1fa2d236a5003aa5f9b263a82eea8e43730cf6b7272890dff6b05640253b9ec994595e3af24ce

diff --git a/dev-ruby/base32/base32-0.3.2.ebuild 
b/dev-ruby/base32/base32-0.3.2.ebuild
new file mode 100644
index 000..c6e67f1
--- /dev/null
+++ b/dev-ruby/base32/base32-0.3.2.ebuild
@@ -0,0 +1,27 @@
+# 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=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="A library which provides base32 decoding and encoding"
+HOMEPAGE="https://rubygems.org/gems/base32 https://github.com/stesla/base32;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_bdepend "test? (
+   dev-ruby/minitest
+   dev-ruby/rake )"
+
+all_ruby_prepare() {
+   sed -i -e "1,10d" Rakefile || die
+}

diff --git a/dev-ruby/base32/metadata.xml b/dev-ruby/base32/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/dev-ruby/base32/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/merkaartor/

2016-06-26 Thread Amy Winston
commit: 55c19bd2c8a003d6dab8744ca12d5e6995ba815b
Author: Chris Mayo  gmail  com>
AuthorDate: Sun Jun 26 11:18:38 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Sun Jun 26 18:10:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55c19bd2

sci-geosciences/merkaartor: Only allow qrcode with Qt4

Closes: #1748

 sci-geosciences/merkaartor/merkaartor-0.18.2.ebuild | 6 --
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/sci-geosciences/merkaartor/merkaartor-0.18.2.ebuild 
b/sci-geosciences/merkaartor/merkaartor-0.18.2.ebuild
index 7e21c51..e512319 100644
--- a/sci-geosciences/merkaartor/merkaartor-0.18.2.ebuild
+++ b/sci-geosciences/merkaartor/merkaartor-0.18.2.ebuild
@@ -17,8 +17,10 @@ SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="debug exif gps libproxy qrcode qt4 qt5"
 
-REQUIRED_USE="^^ ( qt4 qt5 )"
-
+REQUIRED_USE="
+   ^^ ( qt4 qt5 )
+   qrcode? ( qt4 )
+"
 RDEPEND="
qt4? (
dev-qt/qtcore:4



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

2016-06-26 Thread Patrick Lauer
commit: d216e557b807d399871909e7f7ec3bacd8fb10b2
Author: Patrick Lauer  gentoo  org>
AuthorDate: Sun Jun 26 18:09:07 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Sun Jun 26 18:09:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d216e557

net-fs/samba: Remove unneeded useflag description from metadata.xml

Package-Manager: portage-2.3.0

 net-fs/samba/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/net-fs/samba/metadata.xml b/net-fs/samba/metadata.xml
index 73d475c..b367f4d 100644
--- a/net-fs/samba/metadata.xml
+++ b/net-fs/samba/metadata.xml
@@ -24,7 +24,6 @@
Enables support for user quotas
Enable smbclient tool
Enable special smb share modes (?) 

-   Enable Samba Traffic Analyzer version 2 

Use app-crypt/mit-krb5 
instead of
app-crypt/heimdal.
Enabling iPrint technology by Novell



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/ace-rails-ap/

2016-06-26 Thread Manuel Rüger
commit: 4a45993eaf20969f82e7a7f85ead6a23146849be
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 18:05:25 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 18:05:25 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=4a45993e

dev-ruby/ace-rails-ap: Initial version

Package-Manager: portage-2.2.28

 dev-ruby/ace-rails-ap/Manifest  |  1 +
 dev-ruby/ace-rails-ap/ace-rails-ap-4.0.2.ebuild | 25 +
 dev-ruby/ace-rails-ap/metadata.xml  |  8 
 3 files changed, 34 insertions(+)

diff --git a/dev-ruby/ace-rails-ap/Manifest b/dev-ruby/ace-rails-ap/Manifest
new file mode 100644
index 000..4648866
--- /dev/null
+++ b/dev-ruby/ace-rails-ap/Manifest
@@ -0,0 +1 @@
+DIST ace-rails-ap-4.0.2.gem 2079232 SHA256 
b16204cffd63defd57315a440a2d8b0b51baddfdb19fea010fcf9dd5aa6c3df8 SHA512 
892d8f3877669abda294cb284f07a810b5ddf08032c0cc3514dcc2db183ed242f0868d89b6874b960d91e484faa9f4149a3cbbee17950c77474e849bcaf83d7d
 WHIRLPOOL 
d5e1b2175f2fab2a7bd2c0fd6c3ff2c6a24abe06fbae0d5fb1e390c1f46d2fa6ba37f1530451a7ead8b6abef375f8b59ef6e1fb8e1591130980b2fa011cc6220

diff --git a/dev-ruby/ace-rails-ap/ace-rails-ap-4.0.2.ebuild 
b/dev-ruby/ace-rails-ap/ace-rails-ap-4.0.2.ebuild
new file mode 100644
index 000..c99cf61
--- /dev/null
+++ b/dev-ruby/ace-rails-ap/ace-rails-ap-4.0.2.ebuild
@@ -0,0 +1,25 @@
+# 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_TASK_TEST=""
+RUBY_FAKEGEM_EXTRAINSTALL="vendor"
+
+inherit ruby-fakegem
+
+DESCRIPTION="The Ajax.org Cloud9 Editor (Ace) for the Rails 3.1 asset pipeline"
+HOMEPAGE="https://rubygems.org/gems/ace-rails-ap 
https://github.com/codykrieger/ace-rails-ap;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+all_ruby_prepare() {
+   sed -i -e "/bundler/d" Rakefile || die
+}

diff --git a/dev-ruby/ace-rails-ap/metadata.xml 
b/dev-ruby/ace-rails-ap/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/dev-ruby/ace-rails-ap/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+



[gentoo-commits] repo/gentoo:master commit in: net-p2p/ktorrent/files/, net-p2p/ktorrent/

2016-06-26 Thread Michael Palimaka
commit: d2ec04368e585abd931ba9e5f18bc16b9ef67e45
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 18:05:34 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 18:07:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2ec0436

reponet-p2p/ktorrent: backport patch from upstream solving build failure

Gentoo-bug: 587048

Package-Manager: portage-2.3.0

 net-p2p/ktorrent/files/ktorrent-5.0.1-build.patch | 38 +++
 net-p2p/ktorrent/ktorrent-5.0.1.ebuild|  2 ++
 2 files changed, 40 insertions(+)

diff --git a/net-p2p/ktorrent/files/ktorrent-5.0.1-build.patch 
b/net-p2p/ktorrent/files/ktorrent-5.0.1-build.patch
new file mode 100644
index 000..58949a2
--- /dev/null
+++ b/net-p2p/ktorrent/files/ktorrent-5.0.1-build.patch
@@ -0,0 +1,38 @@
+From ac8eb6b360fbaa2588ec523bb81c380289586db6 Mon Sep 17 00:00:00 2001
+From: David Faure 
+Date: Sat, 14 May 2016 11:19:34 +0200
+Subject: [PATCH] Fix compilation, KSharedConfig was not found.
+
+---
+ ktorrent/dialogs/pastedialog.h  | 1 +
+ plugins/mediaplayer/mediaview.h | 2 +-
+ 2 files changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/ktorrent/dialogs/pastedialog.h b/ktorrent/dialogs/pastedialog.h
+index 2446848..430ea82 100644
+--- a/ktorrent/dialogs/pastedialog.h
 b/ktorrent/dialogs/pastedialog.h
+@@ -22,6 +22,7 @@
+ #define PASTEDIALOG_H
+ 
+ #include 
++#include 
+ #include "ui_pastedlgbase.h"
+ 
+ 
+diff --git a/plugins/mediaplayer/mediaview.h b/plugins/mediaplayer/mediaview.h
+index 2b9a7e6..d1959c1 100644
+--- a/plugins/mediaplayer/mediaview.h
 b/plugins/mediaplayer/mediaview.h
+@@ -25,7 +25,7 @@
+ #include 
+ #include 
+ #include 
+-#include 
++#include 
+ #include "mediafile.h"
+ 
+ 
+-- 
+2.7.3
+

diff --git a/net-p2p/ktorrent/ktorrent-5.0.1.ebuild 
b/net-p2p/ktorrent/ktorrent-5.0.1.ebuild
index 978204d..cbc24f5 100644
--- a/net-p2p/ktorrent/ktorrent-5.0.1.ebuild
+++ b/net-p2p/ktorrent/ktorrent-5.0.1.ebuild
@@ -100,6 +100,8 @@ RDEPEND="${COMMON_DEPEND}
 #  kde5_src_prepare
 # }
 
+PATCHES=( "${FILESDIR}/${P}-build.patch" )
+
 src_prepare() {
kde5_src_prepare
 



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/kaminari/

2016-06-26 Thread Manuel Rüger
commit: 3f2197e92ed9f2fba666fd7ec42af317f40dcf3f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 18:07:29 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 18:07:29 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=3f2197e9

dev-ruby/kaminari: Version bump. Remove old

Package-Manager: portage-2.2.28

 dev-ruby/kaminari/Manifest   | 2 +-
 dev-ruby/kaminari/{kaminari-0.16.3.ebuild => kaminari-0.17.0.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/kaminari/Manifest b/dev-ruby/kaminari/Manifest
index c34163f..458c097 100644
--- a/dev-ruby/kaminari/Manifest
+++ b/dev-ruby/kaminari/Manifest
@@ -1 +1 @@
-DIST kaminari-0.16.3.gem 44544 SHA256 
c75072e46983598423564906ba72e9d66bc8c52e393f63a7d89450addf1c7d93 SHA512 
ed88d69807a3e4ac4f1d04776a568639a6cc81a650b42ad5ac627a7ea4d728657c1e347d03cf149675c2ca30d229b0d8bd9196f27bf56252077c2e7325b148b2
 WHIRLPOOL 
8ba718bcf70c9ea96a134a69d5e36eb310930898ab216f93490a4289c480f0cadf555cff0ec7c2797cc2338cc4ea19ed1238b2bfbf2d909c005a0dabc793a6ba
+DIST kaminari-0.17.0.gem 44544 SHA256 
a454751345be68207bfc415fa2499f4ae9a33171055f3a1de17590a0a01c06d8 SHA512 
ddc3d01b64a575439066976dc1690c15a0493f2fdfae612e53219df297bbfdd646576fad615d22b7bf7d7419ac3106ca6defbcd1ef03dc7e9981dbced80d8865
 WHIRLPOOL 
dd3fc8e2bdb5fd9151592f436807aeae547d3692ac2556f97db92cc0c07c14fbd736c8599cc4d661101c4e73310198092a16668202b3cd1065a16b3c27690293

diff --git a/dev-ruby/kaminari/kaminari-0.16.3.ebuild 
b/dev-ruby/kaminari/kaminari-0.17.0.ebuild
similarity index 95%
rename from dev-ruby/kaminari/kaminari-0.16.3.ebuild
rename to dev-ruby/kaminari/kaminari-0.17.0.ebuild
index 02cbf2c..3fa898d 100644
--- a/dev-ruby/kaminari/kaminari-0.16.3.ebuild
+++ b/dev-ruby/kaminari/kaminari-0.17.0.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_RECIPE_TEST="rspec"
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc"
 
 RUBY_FAKEGEM_EXTRAINSTALL="app config"



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

2016-06-26 Thread Michael Palimaka
commit: 6a6cd0edebf2d837b0f3f503417f93fbb8686524
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 18:06:41 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 18:07:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a6cd0ed

net-libs/libktorrent: remove old

Package-Manager: portage-2.3.0

 net-libs/libktorrent/Manifest   |  1 -
 net-libs/libktorrent/libktorrent-2.0.ebuild | 74 -
 2 files changed, 75 deletions(-)

diff --git a/net-libs/libktorrent/Manifest b/net-libs/libktorrent/Manifest
index 579bd35..8105dd8 100644
--- a/net-libs/libktorrent/Manifest
+++ b/net-libs/libktorrent/Manifest
@@ -1,3 +1,2 @@
 DIST libktorrent-1.3.1.tar.bz2 863105 SHA256 
2fe11ccb4bf2028c3da11e52cde890f1b3a90560e548eac89a4f8e1558b09725 SHA512 
63dd4a642da4808cfe414bf4767185daf3233def5259c3f9ab899be58f263c16362eaa5e01383bf9acd78a381bc3915a84965d17f1bd10054cf94851294b622b
 WHIRLPOOL 
1ad34d8e4ad3ad1b8a810d3a2eec1bd13a978ef6be1230521789021160ff0814909052fe2b39efb212276b944d7a5560c0bc0e104eb62f5399062c0d5194348e
 DIST libktorrent-2.0.1.tar.xz 676304 SHA256 
c70d9ee11a1ac95145284e2ab9aec689df21b7462f389389b8d54f892a273f42 SHA512 
bb1723829461e9679a734fb39636016efdb49cf13b027f430f2272980d60f9bf261085df8b55d57bd59daab149a5e28ac124de65710fb3481167f9a0567bb1d7
 WHIRLPOOL 
6f989a880d42d1fcf2b704e9d4cf69025a33ecc51063fc4d958951f6b7d7ca0999baa71931f1af68a6b94bded98f0edd72f52c103b446f4828eadfdf9e604088
-DIST libktorrent-2.0.tar.xz 676408 SHA256 
478b1cad920d00c85605b686ed2ff893c8a875840370e9c261d1c7c102e92b9c SHA512 
b1075a382fbe03e76d0bdc35fac4bece9ac538271a6c738d9dc1d37f609b11f74b7921e07640cbce56ee5aa9ca3799263fcadba49c31eeac908f64c13deae4fc
 WHIRLPOOL 
86ce17cf897047a5a6fe63353586c4f5b50344d31e80729683d8e223ff0992449aa7d408b4eabf8ad7ac997d45c890cb7d25e3859b2dc22f554559e6684aa8a1

diff --git a/net-libs/libktorrent/libktorrent-2.0.ebuild 
b/net-libs/libktorrent/libktorrent-2.0.ebuild
deleted file mode 100644
index 2c8d3e9..000
--- a/net-libs/libktorrent/libktorrent-2.0.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-if [[ ${PV} != * ]]; then
-   inherit versionator
-   # upstream likes to skip that _ in beta releases
-   MY_PV="${PV/_/}"
-   
KTORRENT_VERSION=$(($(get_major_version)+3)).$(get_version_component_range 2-3 
${MY_PV})
-   MY_P="${PN}-${MY_PV}"
-
-   
SRC_URI="mirror://kde/stable/ktorrent/${KTORRENT_VERSION}/${MY_P}.tar.xz"
-   S="${WORKDIR}"/"${MY_P}"
-
-   KEYWORDS="~amd64 ~arm ~x86"
-else
-   KEYWORDS=""
-fi
-
-KDE_TEST="forceoptional"
-VIRTUALX_REQUIRED="test"
-inherit kde5
-
-DESCRIPTION="BitTorrent library based on KDE Frameworks"
-HOMEPAGE="http://ktorrent.pwsp.net/;
-
-LICENSE="GPL-2"
-IUSE=""
-
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep solid)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwidgets)
-   $(add_qt_dep qtxml)
-   app-crypt/qca:2[qt5]
-   >=dev-libs/gmp-6.0.0a:0=
-   dev-libs/libgcrypt:0=
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/boost
-   sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
-   !net-libs/libktorrent:4
-"
-
-src_prepare() {
-   kde5_src_prepare
-
-   # Gentoo workaround because gmp.h in MULTILIB_WRAPPED_HEADERS is 
breaking this
-   sed -i -e "/^find_package/ s/\"\${LibGMP_MIN_VERSION}\" //" \
-   CMakeLists.txt || die
-   sed -i -e "/^find_dependency/ s/ \"@LibGMP_MIN_VERSION@\"//" \
-   LibKTorrentConfig.cmake.in || die
-
-   # do not build non-installed example binary
-   sed -i -e "/add_subdirectory(examples)/d" CMakeLists.txt || die
-
-   if ! use test ; then
-   sed -i -e "/add_subdirectory(testlib)/d" CMakeLists.txt || die
-   sed -i -e "/add_subdirectory(tests)/d" \
-   
src/{datachecker,dht,diskio,download,magnet,mse,net,peer,util,utp,torrent}/CMakeLists.txt
 \
-   || die "Failed to remove tests"
-   fi
-}



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

2016-06-26 Thread Michael Palimaka
commit: dc1f79e09146de0b32d1237b4e0d9ce475c491aa
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 18:06:07 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 18:07:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc1f79e0

net-p2p/ktorrent: remove old

Package-Manager: portage-2.3.0

 net-p2p/ktorrent/Manifest|   1 -
 net-p2p/ktorrent/ktorrent-5.0.ebuild | 129 ---
 2 files changed, 130 deletions(-)

diff --git a/net-p2p/ktorrent/Manifest b/net-p2p/ktorrent/Manifest
index bbe6f4a..ccc07d1 100644
--- a/net-p2p/ktorrent/Manifest
+++ b/net-p2p/ktorrent/Manifest
@@ -1,3 +1,2 @@
 DIST ktorrent-4.3.1.tar.bz2 2943708 SHA256 
66094f6833347afb0c49e332f0ec15ec48db652cbe66476840846ffd5ca0e4a1 SHA512 
bf1fa144295cb00fccce3a511afe845bc7bf42d77d70205f5893686e7b1fa78c5799c46c7e4e04435ab6fdd4bc9b3b4a25bffb2c5538a25af36302c60742900e
 WHIRLPOOL 
61303c19f0160bba9bdd288415d86519594f26c5c062f394cee7924093506a9cc6236fd8eedec16c6f799f71a15cb4af15c4b7c079831dccb4e498b833c2234e
 DIST ktorrent-5.0.1.tar.xz 2152908 SHA256 
d00feeca5dcc6a76a039d67dbe91a2d5a5e1da0f5e0bbd8da2c156d9c44879e5 SHA512 
6ceced3d578e58f480ada5b71a66be244c75de726389d39b40c02c5a9445c6bb0b70573fac810abd1659c3172bff79c0c3e5cbfe1a84e0d50836b52291597bc1
 WHIRLPOOL 
11d59e1762b12e0c740337b05e9e678f71df1a5d43cffee6dcb1a3159afe1da00c118b62b84fdb80dbd6d98f3998250882406e8e61ad181b67b7043d350c8682
-DIST ktorrent-5.0.tar.xz 2153772 SHA256 
78aefd4660a57e7d512f68db08a0f01e29dc4500242e58cbe7fac4592e24afec SHA512 
29dcb5a8994d4757fa07fdc263f62d4ef425295d60e11a032a1bf6425c6378e55f0ce221b6ab9bb2f70579c8c423c405d2fa8e3ba5e7130bdfd637b3de5865e1
 WHIRLPOOL 
5f6e95ab84f83bbceba5a0d092dd1cdce5706099a07977df45101d5f16fc5ee319bb8cfd8146c8336242e9b0c7158ad235caf491999ec56ab6c260d17a915be5

diff --git a/net-p2p/ktorrent/ktorrent-5.0.ebuild 
b/net-p2p/ktorrent/ktorrent-5.0.ebuild
deleted file mode 100644
index 9278d1e..000
--- a/net-p2p/ktorrent/ktorrent-5.0.ebuild
+++ /dev/null
@@ -1,129 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-LIBKT_VERSION_MIN="${PV}"
-LIBKT_VERSION_MAX=""
-if [[ ${PV} != * ]]; then
-   inherit versionator
-   # upstream likes to skip that _ in beta releases
-   MY_PV="${PV/_/}"
-   
LIBKT_VERSION_MIN=$(($(get_major_version)-3)).$(get_version_component_range 2-3 
${PV})
-   
LIBKT_VERSION_MAX=$(($(get_major_version)-3)).$(($(get_version_component_range 
2)+1))
-   MY_P="${PN}-${MY_PV}"
-
-   SRC_URI="mirror://kde/stable/${PN}/${MY_PV}/${MY_P}.tar.xz"
-   S="${WORKDIR}"/"${MY_P}"
-
-   KEYWORDS="~amd64 ~x86"
-else
-   LIBKT_VERSION_MIN="${PV}"
-   LIBKT_VERSION_MAX=""
-   KEYWORDS=""
-fi
-
-KDE_HANDBOOK="forceoptional"
-inherit kde5
-
-DESCRIPTION="Powerful BitTorrent client based on KDE Frameworks"
-HOMEPAGE="http://ktorrent.pwsp.net/;
-
-LICENSE="GPL-2"
-IUSE="+bwscheduler +downloadorder +infowidget +logviewer
-+magnetgenerator +mediaplayer +shutdown +upnp +zeroconf"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep karchive)
-   $(add_frameworks_dep kcmutils)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kdelibs4support)
-   $(add_frameworks_dep kdewebkit)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep knotifications)
-   $(add_frameworks_dep knotifyconfig)
-   $(add_frameworks_dep kparts)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_frameworks_dep solid)
-   $(add_frameworks_dep sonnet)
-   $(add_qt_dep qtdbus)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtdeclarative)
-   $(add_qt_dep qtnetwork)
-   $(add_qt_dep qtwidgets)
-   =net-libs/libktorrent-${LIBKT_VERSION_MIN}:5
-   infowidget? ( dev-libs/geoip )
-   mediaplayer? (
-   media-libs/phonon[qt5]
-   >=media-libs/taglib-1.5
-   )
-   shutdown? ( $(add_plasma_dep plasma-workspace) )
-   zeroconf? ( $(add_frameworks_dep kdnssd) )
-"
-DEPEND="${COMMON_DEPEND}
-   dev-libs/boost:=
-   sys-devel/gettext
-"
-RDEPEND="${COMMON_DEPEND}
-   !net-p2p/ktorrent:4
-"
-# add back when ported - DEPEND
-#  kross? ( $(add_frameworks_dep kross) )
-#  rss? ( $(add_kdeapps_dep kdepimlibs) )
-# add back when ported - RDEPEND
-#  ipfilter? (
-#  app-arch/bzip2
-#  app-arch/unzip
-#  $(add_kdeapps_dep kdebase-kioslaves)
-#  )
-#  kross? ( $(add_kdebase_dep krosspython) )
-
-# src_prepare() {
-# add back when ported
-#  if ! use plasma; then
-#  sed -i \
-#   

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

2016-06-26 Thread Jason Zaman
commit: 2a7d1da144255f82f1ef122ee39f122c6c93ca31
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Jun 26 17:54:36 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Jun 26 17:54:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a7d1da1

net-misc/dropbox: stablize for amd64 and x86

Package-Manager: portage-2.2.28

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

diff --git a/net-misc/dropbox/dropbox-5.3.18.ebuild 
b/net-misc/dropbox/dropbox-5.3.18.ebuild
index a72cade..68a29d5 100644
--- a/net-misc/dropbox/dropbox-5.3.18.ebuild
+++ b/net-misc/dropbox/dropbox-5.3.18.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~x86-linux"
+KEYWORDS="amd64 x86 ~x86-linux"
 IUSE="+librsync-bundled selinux X"
 RESTRICT="mirror strip"
 



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

2016-06-26 Thread Jason Zaman
commit: 2380fa2838f92b99e92c22b61398f11a2b528b91
Author: Jason Zaman  gentoo  org>
AuthorDate: Sun Jun 26 17:56:09 2016 +
Commit: Jason Zaman  gentoo  org>
CommitDate: Sun Jun 26 17:56:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2380fa28

net-misc/dropbox: drop old

Package-Manager: portage-2.2.28

 net-misc/dropbox/Manifest   |   4 -
 net-misc/dropbox/dropbox-2.10.2.ebuild  | 109 -
 net-misc/dropbox/dropbox-3.19.34.ebuild | 137 
 3 files changed, 250 deletions(-)

diff --git a/net-misc/dropbox/Manifest b/net-misc/dropbox/Manifest
index 738eef7..71f70fa 100644
--- a/net-misc/dropbox/Manifest
+++ b/net-misc/dropbox/Manifest
@@ -1,6 +1,2 @@
-DIST dropbox-lnx.x86-2.10.2.tar.gz 26078108 SHA256 
a43e24342e5f337034cf0d378f5a532ad69ad59bf00eb8a2065c465c969e3455 SHA512 
0fb408d7a221c470fbc59c4ddb1f65d4fcb2d33c855b37474b6202a58f7be04b9cf0ed1ea18080efdd02998fe370bdef99ce1e27b8f627515ba3db859251e5ef
 WHIRLPOOL 
a33260d2a8907d676230464c9b4200b12debe2ac8aae5a7322250218481f348a2cc4217a84155900cbe9284e4070d424fbc7589e7733fab79d98e2ee324c5e02
-DIST dropbox-lnx.x86-3.19.34.tar.gz 64263283 SHA256 
5abab85a265e813ea9591281915885e4f5fab99c8ef60b3945c17cced588cdae SHA512 
5da7b8dfde0b69dadb1391cc57f13f8ddd87004ae952bc276fa70091aec14f099163413d6548d53fb9226f34602b3e1fba780f098dd7ea1ee5ea1a37e7e9ed3a
 WHIRLPOOL 
6d7a6fff3de3cac1d167019d47176b4d63dd540a5e8ba9e3c37a8220c16731ba60f08cdeb52de8c92aee47793aacfd923843047099109a7ad7176d7ac82d553f
 DIST dropbox-lnx.x86-5.3.18.tar.gz 64490559 SHA256 
b6365d2812640605120bce5773efa2d209695d787a32341c55f8f9e006b1ca98 SHA512 
157badaacdf254f6674b489aec2c2e9993a20378925a2ce69e12ffabd4191d9dc42f2e69c34eae8f0cd55b26f6ab88027a2848311231c31951d9e63c195560ef
 WHIRLPOOL 
da2d8cd829ed6a6d550761e047cd248af432e31deb602d1fe04893117f26b4861a342ee0e4af7f1bcba13feb59d09000a52c2b3d0f44c813e23c0de92c0289a1
-DIST dropbox-lnx.x86_64-2.10.2.tar.gz 26852053 SHA256 
0780001da7af0ee8b07115f59d1998708e5aa36c50ce13f73f32d7c7c0a08d11 SHA512 
0746643546bdcd2de71812a87ccf665df4a656750d899e2b67a3dfa958bf7f59fcb1c99109b6bb1424f5dfbb625d0756a7cc0c01ba09b4375ed177d05846256e
 WHIRLPOOL 
787e5882f546377173e73fcb8a4bfe205c1659e562e0ef4aea9d62123fb684cd254c3962861ea2eb54c6fab895561c29a1c507760eb906625db55fac5aa083dd
-DIST dropbox-lnx.x86_64-3.19.34.tar.gz 68198539 SHA256 
bc379c8832effad4631e1a2c011fb630cf036c873a59bb66a6e2647f5ab94706 SHA512 
4f5bfac69a696d05807f673ab6818ca8618bb46eb48be9e7aaa2e98071785826f52782985ce557e9777e1183d244e736eda5e74efb6141151adb12e81495961f
 WHIRLPOOL 
a7f1aebe7ff4cf09053cfa856d72f608ee467a391bc34ba3d22d7c7c376e0f108ca89d980ecb93fef0e4c3ee6ddf4470d03e88ff431437f4cc2c611475d7693a
 DIST dropbox-lnx.x86_64-5.3.18.tar.gz 68424062 SHA256 
25b746a370d9879665a5dce3d25af27866070adb693ce6d1faab77f761d9ede6 SHA512 
83d62d553cbee2e640e0fb272d3bf18925d001252a6afa4297e3b9a9f9581cbce3e7a1dc8294e125df31cf395f733aad742140d187880019f1fd4fd24250f592
 WHIRLPOOL 
80e92e39d054aa5c7300fad10114d70828988a59e8f870d047ab83ae543e979ed64dad2872ceab1170c371998adc02776e214eab36beec3e15f51d791f468a5b

diff --git a/net-misc/dropbox/dropbox-2.10.2.ebuild 
b/net-misc/dropbox/dropbox-2.10.2.ebuild
deleted file mode 100644
index 7d1eb0f..000
--- a/net-misc/dropbox/dropbox-2.10.2.ebuild
+++ /dev/null
@@ -1,109 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils gnome2-utils pax-utils systemd
-
-DESCRIPTION="Dropbox daemon (pretends to be GUI-less)"
-HOMEPAGE="http://dropbox.com/;
-SRC_URI="
-   x86? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86-${PV}.tar.gz )
-   amd64? ( http://dl-web.dropbox.com/u/17/dropbox-lnx.x86_64-${PV}.tar.gz 
)"
-
-LICENSE="CC-BY-ND-3.0 FTL MIT LGPL-2 openssl dropbox"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-linux"
-IUSE="+librsync-bundled X"
-RESTRICT="mirror strip"
-
-QA_PREBUILT="opt/.*"
-QA_EXECSTACK="opt/dropbox/dropbox"
-
-DEPEND="librsync-bundled? ( dev-util/patchelf )"
-
-# Be sure to have GLIBCXX_3.4.9, #393125
-# USE=X require wxGTK's dependencies. system-library cannot be used due to
-# missing symbol (CtlColorEvent). #443686
-RDEPEND="
-   X? (
-   dev-libs/glib:2
-   media-libs/libpng:1.2
-   sys-libs/zlib
-   virtual/jpeg
-   x11-libs/gtk+:2
-   x11-libs/libSM
-   x11-libs/libXinerama
-   x11-libs/libXxf86vm
-   x11-libs/pango[X]
-   x11-themes/hicolor-icon-theme
-   )
-   app-arch/bzip2
-   dev-libs/popt
-   !librsync-bundled? ( net-libs/librsync )
-   net-misc/wget
-   >=sys-devel/gcc-4.2.0
-   sys-libs/zlib
-   || (
-   sys-libs/ncurses:5/5
-   sys-libs/ncurses:0/5
-   )
-"
-
-src_unpack() {
-   unpack ${A}
-   mkdir -p "${S}"
-   mv "${WORKDIR}"/.dropbox-dist/* "${S}" || 

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

2016-06-26 Thread Michael Palimaka
commit: af3e864beb005e07fcdaa66a6c6180ab3ae3426b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:57:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:57:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af3e864b

dev-libs/libdbusmenu: reset XDG environment

Gentoo-bug: 587038

Package-Manager: portage-2.3.0

 dev-libs/libdbusmenu/libdbusmenu-12.10.2-r2.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-libs/libdbusmenu/libdbusmenu-12.10.2-r2.ebuild 
b/dev-libs/libdbusmenu/libdbusmenu-12.10.2-r2.ebuild
index 9436718..726a0d1 100644
--- a/dev-libs/libdbusmenu/libdbusmenu-12.10.2-r2.ebuild
+++ b/dev-libs/libdbusmenu/libdbusmenu-12.10.2-r2.ebuild
@@ -8,7 +8,7 @@ VALA_MIN_API_VERSION=0.16
 VALA_USE_DEPEND=vapigen
 PYTHON_COMPAT=( python2_7 )
 
-inherit eutils flag-o-matic multilib-minimal python-single-r1 vala
+inherit eutils flag-o-matic multilib-minimal python-single-r1 vala xdg-utils
 
 DESCRIPTION="Library to pass menu structure across DBus"
 HOMEPAGE="https://launchpad.net/dbusmenu;
@@ -49,6 +49,11 @@ src_prepare() {
epatch_user
 }
 
+pkg_setup() {
+   xdg_environment_reset
+   python-single-r1_pkg_setup
+}
+
 multilib_src_configure() {
append-flags -Wno-error #414323
 



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/chronic_duration/

2016-06-26 Thread Manuel Rüger
commit: 9d48937008dc51d1d4a78c30bea7b72d58e29a53
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 17:48:08 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 17:48:08 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=9d489370

dev-ruby/chronic_duration: Initial version

Package-Manager: portage-2.2.28

 dev-ruby/chronic_duration/Manifest |  1 +
 .../chronic_duration-0.10.6.ebuild | 28 ++
 dev-ruby/chronic_duration/metadata.xml |  8 +++
 3 files changed, 37 insertions(+)

diff --git a/dev-ruby/chronic_duration/Manifest 
b/dev-ruby/chronic_duration/Manifest
new file mode 100644
index 000..fa317a9
--- /dev/null
+++ b/dev-ruby/chronic_duration/Manifest
@@ -0,0 +1 @@
+DIST chronic_duration-0.10.6.gem 11264 SHA256 
fac58d4147d3183a40811400380cafcef049f2bb02421d2fd1c6e685fbe8facc SHA512 
8e0ee7d0ffe066cecaeb1ac0cb950b6a86bbc6b3967f2985136c2599bf8e1acf2dbd45ce60b99f54d71bce06ae2e3f75c06ff058afe0fe2d3dd280b4bcc2cc3a
 WHIRLPOOL 
e7176ac8731201fd602e3d51045a3553aeecaf04326d5a96d96095a77d7660c49905ec18297ceb2ff33af8658846611fa869703778988e93a5303f6af905d3a9

diff --git a/dev-ruby/chronic_duration/chronic_duration-0.10.6.ebuild 
b/dev-ruby/chronic_duration/chronic_duration-0.10.6.ebuild
new file mode 100644
index 000..26cb004
--- /dev/null
+++ b/dev-ruby/chronic_duration/chronic_duration-0.10.6.ebuild
@@ -0,0 +1,28 @@
+# 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_RECIPE_TEST="rspec"
+RUBY_FAKEGEM_TASK_DOC=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="Natural language parser for elapsed time"
+HOMEPAGE="https://rubygems.org/gems/chronic_duration 
https://github.com/hpoydar/chronic_duration;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/numerizer-0.1.1"
+
+ruby_add_bdepend ">=dev-ruby/rake-10.0.3"
+
+all_ruby_prepare() {
+   sed -i -e "/bundler/d" Rakefile spec/spec_helper.rb || die
+}

diff --git a/dev-ruby/chronic_duration/metadata.xml 
b/dev-ruby/chronic_duration/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/dev-ruby/chronic_duration/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+



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

2016-06-26 Thread Michał Górny
commit: 2077f3f0dff141c92529d6b39caa44db0c255843
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 26 17:34:40 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 26 17:34:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2077f3f0

app-misc/vit: Commit the missing Manifest

 app-misc/vit/Manifest | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/vit/Manifest b/app-misc/vit/Manifest
new file mode 100644
index 000..e7d9387
--- /dev/null
+++ b/app-misc/vit/Manifest
@@ -0,0 +1 @@
+DIST vit-1.2.tar.gz 49258 SHA256 
1591a57904ccd9b3a2a3c73ddb1266e3256ebcc98b60b7ae27b831f1a8dfda82 SHA512 
bac6924fe7b844891c86dfa17193c00eefbecc437548e6768a9a2f11c5ce1c845e987beef2f0456fbc52c222821c59fdd1303bcc289460a77f0d6dafe7e94011
 WHIRLPOOL 
6426f460cbc4e2e6fca9f2d83e1096dac04c9877354c12e93a62cb876308823fa07b46b575374d2c81b2b0f15dd0a3369b012c3f97859bd4398d988278abc733



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/numerizer/

2016-06-26 Thread Manuel Rüger
commit: 02cbce919dfad404b97f8d00588a3f4121e3415f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 17:32:23 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 17:32:23 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=02cbce91

dev-ruby/numerizer: Initial version

Package-Manager: portage-2.2.28

 dev-ruby/numerizer/Manifest   |  1 +
 dev-ruby/numerizer/metadata.xml   |  8 
 dev-ruby/numerizer/numerizer-0.2.0.ebuild | 19 +++
 3 files changed, 28 insertions(+)

diff --git a/dev-ruby/numerizer/Manifest b/dev-ruby/numerizer/Manifest
new file mode 100644
index 000..553f08d
--- /dev/null
+++ b/dev-ruby/numerizer/Manifest
@@ -0,0 +1 @@
+DIST numerizer-0.2.0.gem 8704 SHA256 
e58076d5ee5370417b7e52d9cb25836d62acd1b8d9a194c308707986c1705d7b SHA512 
f912a9cd987c64c3feea756a7219d06bec399734589cc215965fb881ff9dc07925e2848c327e562fbc504388c04997bf6af08d16168fa2fbdf999d6413146009
 WHIRLPOOL 
28628e83c198367d77bd4f8408da337c33076cbeb3cb5675403b8fc5b9a21e8254f19a8d978f0fb79ad43b0781d328213ceffa4db5e06324b46a4500311dc68d

diff --git a/dev-ruby/numerizer/metadata.xml b/dev-ruby/numerizer/metadata.xml
new file mode 100644
index 000..bfcb697
--- /dev/null
+++ b/dev-ruby/numerizer/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+

diff --git a/dev-ruby/numerizer/numerizer-0.2.0.ebuild 
b/dev-ruby/numerizer/numerizer-0.2.0.ebuild
new file mode 100644
index 000..b6de0f8
--- /dev/null
+++ b/dev-ruby/numerizer/numerizer-0.2.0.ebuild
@@ -0,0 +1,19 @@
+# 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"
+
+inherit ruby-fakegem
+
+RUBY_FAKEGEM_TASK_DOC=""
+
+DESCRIPTION="Gem to help with parsing numbers in natural language from strings 
(ex forty two)"
+HOMEPAGE="http://github.com/jduff/numerizer 
https://rubygems.org/gems/numerizer;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""



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

2016-06-26 Thread Michael Palimaka
commit: e93d7102429c4be0439628f656961106ff7c18d0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:21:54 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:26:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e93d7102

media-sound/aacgain: remove unused patch

Package-Manager: portage-2.3.0

 .../aacgain/files/aacgain-1.8+glibc-2.10.patch| 19 ---
 1 file changed, 19 deletions(-)

diff --git a/media-sound/aacgain/files/aacgain-1.8+glibc-2.10.patch 
b/media-sound/aacgain/files/aacgain-1.8+glibc-2.10.patch
deleted file mode 100644
index df48cfd..000
--- a/media-sound/aacgain/files/aacgain-1.8+glibc-2.10.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -ur aacgain-1.8.orig/mpeg4ip/include/mpeg4ip.h 
aacgain-1.8/mpeg4ip/include/mpeg4ip.h
 aacgain-1.8.orig/mpeg4ip/include/mpeg4ip.h 2008-11-08 16:39:36.0 
+0200
-+++ aacgain-1.8/mpeg4ip/include/mpeg4ip.h  2009-07-10 20:59:51.0 
+0300
-@@ -120,6 +120,7 @@
- #endif
- #include 
- 
-+/*
- #ifdef __cplusplus
- extern "C" {
- #endif
-@@ -127,6 +128,7 @@
- #ifdef __cplusplus
- }
- #endif
-+*/
- 
- #define OPEN_RDWR O_RDWR
- #define OPEN_CREAT O_CREAT 



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

2016-06-26 Thread Michael Palimaka
commit: f1f1fd5e778146b973aa7037f2b4bd8c9b50432e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:23:58 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:26:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f1fd5e

media-libs/libgpod: remove old

Package-Manager: portage-2.3.0

 media-libs/libgpod/libgpod-0.8.3.ebuild | 73 -
 1 file changed, 73 deletions(-)

diff --git a/media-libs/libgpod/libgpod-0.8.3.ebuild 
b/media-libs/libgpod/libgpod-0.8.3.ebuild
deleted file mode 100644
index 5b2a7f1..000
--- a/media-libs/libgpod/libgpod-0.8.3.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# TODO: Use python-r1 instead and support Python 3.x?
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils mono-env python-single-r1 udev
-
-DESCRIPTION="Shared library to access the contents of an iPod"
-HOMEPAGE="http://www.gtkpod.org/libgpod/;
-SRC_URI="mirror://sourceforge/gtkpod/${P}.tar.bz2"
-
-LICENSE="LGPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="+gtk python +udev ios mono static-libs"
-
-RDEPEND=">=app-pda/libplist-1.0:=
-   >=dev-db/sqlite-3
-   >=dev-libs/glib-2.16:2
-   dev-libs/libxml2
-   sys-apps/sg3_utils
-   gtk? ( x11-libs/gdk-pixbuf:2 )
-   ios? ( app-pda/libimobiledevice:= )
-   python? (
-   ${PYTHON_DEPS}
-   >=media-libs/mutagen-1.8[${PYTHON_USEDEP}]
-   >=dev-python/pygobject-2.8:2[${PYTHON_USEDEP}]
-   )
-   udev? ( virtual/udev )
-   mono? (
-   >=dev-lang/mono-1.9.1
-   >=dev-dotnet/gtk-sharp-2.12
-   )"
-DEPEND="${RDEPEND}
-   python? ( >=dev-lang/swig-1.3.24 )
-   dev-libs/libxslt
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-DOCS="AUTHORS NEWS README* TROUBLESHOOTING"
-
-pkg_setup() {
-   use mono && mono-env_pkg_setup
-   use python && python-single-r1_pkg_setup
-}
-
-src_configure() {
-   econf \
-   $(use_enable static-libs static) \
-   $(use_enable udev) \
-   $(use_enable gtk gdk-pixbuf) \
-   $(use_enable python pygobject) \
-   --without-hal \
-   $(use_with ios libimobiledevice) \
-   --with-udev-dir="$(get_udevdir)"
-   --with-html-dir=/usr/share/doc/${PF}/html \
-   $(use_with python) \
-   $(use_with mono)
-}
-
-src_install() {
-   default
-   rmdir "${ED}"/tmp
-   prune_libtool_files --all
-}



[gentoo-commits] repo/gentoo:master commit in: app-pda/gtkpod/

2016-06-26 Thread Michael Palimaka
commit: 65896ca17cc5a18b1a473116c647cd9479e9874b
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:24:46 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:26:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65896ca1

app-pda/gtkpod: remove old

Package-Manager: portage-2.3.0

 app-pda/gtkpod/Manifest|   2 -
 app-pda/gtkpod/gtkpod-2.1.4.ebuild | 116 -
 2 files changed, 118 deletions(-)

diff --git a/app-pda/gtkpod/Manifest b/app-pda/gtkpod/Manifest
index f74bac5..a2b5140 100644
--- a/app-pda/gtkpod/Manifest
+++ b/app-pda/gtkpod/Manifest
@@ -1,3 +1 @@
-DIST gst-element-check-0.10.m4.xz 420 SHA256 
805f798eb9fcd79fdd7a937e321a7a61b7a1ff54aa1191270ae48e84f062d7f9 SHA512 
07f59b8cdd65263b7f861cafcadbc22620ac66c80ae526dbfb4b305c64680dc353c18b18f347dcf8858dfd996802690b48ab3a539c42c5a75cf4d981ae61811c
 WHIRLPOOL 
13c237320eb684a665e0c386aee4824bb7b1799fd9fc2afcb9b3825cca575ccf8e29e022856b29571f3332cdea5f9304dccc787b3621a402e9215df2b3cb4de5
-DIST gtkpod-2.1.4.tar.gz 3721445 SHA256 
ba12b35f3f24a155b68f0ffdaf4d3c5c7d1b8df04843a53306e1c83fc811dfaa SHA512 
803e37729e8d0bb2e9f6a4bb00c89bdfb4a2dfeffe713808ce9a88af68dc0d017a30159a532e74dcf6b05ee50028b854d4358d84752a52d6ca4f259060501a8a
 WHIRLPOOL 
43c8b301846caee00a01d2c8e990d431c5dfbd748796c724ea035218ffe56224f69db6c3ad01e354a6f1f83a579e169aa6f7e57345ce050fde4e22f2a0b1235c
 DIST gtkpod-2.1.5.tar.gz 3780232 SHA256 
a57dc8ae9138e0cb4cee98691e7a95001130c9ea7823e6a75cc72503facd3a76 SHA512 
428b9ce75d2c7c208a847bee6f10f6ed0c9f896efbedd86ed41ecce64fdbf1b937968042ad9945aec33a714fc3031427a54f924619db99cc111945355978f24c
 WHIRLPOOL 
93d44bd1c5eea80e811473bc311e8423b76506567ee73444b56b3ff57508e41795214bb4c4e29d33b671723e2f2057469ff4b611b6bb2bdf0174775ac916ff93

diff --git a/app-pda/gtkpod/gtkpod-2.1.4.ebuild 
b/app-pda/gtkpod/gtkpod-2.1.4.ebuild
deleted file mode 100644
index b9d0295..000
--- a/app-pda/gtkpod/gtkpod-2.1.4.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools eutils gnome2-utils
-
-DESCRIPTION="A graphical user interface to the Apple productline"
-HOMEPAGE="http://gtkpod.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-   https://dev.gentoo.org/~ssuominen/gst-element-check-0.10.m4.xz;
-
-LICENSE="GPL-2 FDL-1.2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="aac clutter curl cdr flac gstreamer mp3 vorbis webkit"
-
-# watch out for possible musicbrainz:5 compability in next version?
-COMMON_DEPEND="
-   >=dev-libs/gdl-3.6:3
-   >=dev-libs/glib-2.31
-   >=dev-libs/libxml2-2.7.7
-   >=dev-util/anjuta-3.6
-   >=media-libs/libgpod-0.8.2:=
-   >=media-libs/libid3tag-0.15
-   >=x11-libs/gtk+-3.0.8:3
-   aac? ( media-libs/faad2 )
-   clutter? ( >=media-libs/clutter-gtk-1.2:1.0 )
-   curl? ( >=net-misc/curl-7.10 )
-   flac? ( media-libs/flac )
-   gstreamer? (
-   >=media-libs/gstreamer-0.10.25:0.10
-   >=media-libs/gst-plugins-base-0.10.25:0.10
-   cdr? (
-   >=app-cdr/brasero-3
-   media-libs/musicbrainz:3
-   )
-   )
-   mp3? ( media-sound/lame )
-   vorbis? (
-   media-libs/libvorbis
-   media-sound/vorbis-tools
-   )
-   webkit? ( >=net-libs/webkit-gtk-1.3:3 )"
-# to pull in at least -flac and -vorbis plugins , but others at the same time
-RDEPEND="${COMMON_DEPEND}
-   gstreamer? ( media-plugins/gst-plugins-meta:0.10 )"
-DEPEND="${COMMON_DEPEND}
-   dev-util/intltool
-   sys-devel/flex
-   sys-devel/gettext
-   virtual/os-headers
-   virtual/pkgconfig"
-REQUIRED_USE="cdr? ( gstreamer )"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-2.1.3-gold.patch
-
-   sed -i -e 's:python:python2:' scripts/sync-palm-jppy.py || die
-   # punt deprecated flags for forward compability
-   # use more widely used musicbrainz:3 instead of :4
-   # use AC_CONFIG_HEADERS for automake-1.13 compability wrt #467598
-   sed -e 's:CLEANLINESS_FLAGS=".*:CLEANLINESS_FLAGS="":' \
-   -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' \
-   -e '/PKG_CHECK_MODULES/s:libmusicbrainz4::' \
-   -i configure.ac || die
-   # /path/to/install: 
'/path/to/app-pda/gtkpod-2.1.2_beta2/image/usr/share/gtkpod/data/rhythmbox.gep’:
 File exists
-   sed -i -e '/^dist_profiles_DATA/s:=.*:=:' plugins/sjcd/data/Makefile.am 
|| die
-
-   # m4dir for gst-element-check-0.10.m4
-   AT_M4DIR=${WORKDIR} eautoreconf
-}
-
-src_configure() {
-   export GST_INSPECT=true #420279
-
-   econf \
-   --disable-static \
-   $(use_enable webkit plugin-coverweb) \
-   $(use_enable clutter plugin-clarity) \
-   

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

2016-06-26 Thread Michael Palimaka
commit: 5bbdc11e491360c6263eede7868be6a7a6c45502
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:25:28 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:26:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bbdc11e

app-text/apvlv: remove old

Package-Manager: portage-2.3.0

 app-text/apvlv/apvlv-0.1.5-r1.ebuild |  2 +-
 app-text/apvlv/apvlv-0.1.5.ebuild| 64 
 app-text/apvlv/metadata.xml  |  3 --
 3 files changed, 1 insertion(+), 68 deletions(-)

diff --git a/app-text/apvlv/apvlv-0.1.5-r1.ebuild 
b/app-text/apvlv/apvlv-0.1.5-r1.ebuild
index a65bf32..d5fb56b 100644
--- a/app-text/apvlv/apvlv-0.1.5-r1.ebuild
+++ b/app-text/apvlv/apvlv-0.1.5-r1.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$
 

diff --git a/app-text/apvlv/apvlv-0.1.5.ebuild 
b/app-text/apvlv/apvlv-0.1.5.ebuild
deleted file mode 100644
index 2af2744..000
--- a/app-text/apvlv/apvlv-0.1.5.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils cmake-utils gnome2-utils
-
-DESCRIPTION="Alf's PDF Viewer Like Vim"
-HOMEPAGE="https://naihe2010.github.com/apvlv/;
-SRC_URI="https://github.com/naihe2010/apvlv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="debug djvu html"
-
-RDEPEND="
-   >=app-text/poppler-0.18:=[cairo,xpdf-headers(+)]
-   dev-libs/glib:2
-   x11-libs/gtk+:3
-   djvu? ( app-text/djvu:= )
-   html? ( net-libs/webkit-gtk:3= )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   # preserve cflags
-   epatch "${FILESDIR}/${PN}-0.1.5-cflags.patch"
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DSYSCONFDIR=/etc/${PN}
-   -DDOCDIR=/usr/share/${PN}
-   -DMANDIR=/usr/share/man
-   $(cmake-utils_use html APVLV_WITH_HTML)
-   -DAPVLV_WITH_UMD=OFF
-   -DAPVLV_WITH_TXT=ON
-   $(cmake-utils_use djvu APVLV_WITH_DJVU)
-   $(cmake-utils_use debug APVLV_ENABLE_DEBUG)
-   )
-   cmake-utils_src_configure
-}
-
-src_install() {
-   cmake-utils_src_install
-   dodoc AUTHORS NEWS README THANKS TODO
-   newicon -s 32 icons/pdf.png ${PN}.png
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}

diff --git a/app-text/apvlv/metadata.xml b/app-text/apvlv/metadata.xml
index 5bcafe8..2985af6 100644
--- a/app-text/apvlv/metadata.xml
+++ b/app-text/apvlv/metadata.xml
@@ -2,9 +2,6 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 
   
-  
-Build binary with html format support
-  
   
 apvlv
 naihe2010/apvlv



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

2016-06-26 Thread Michael Palimaka
commit: 1143b8d33309489ded30c7ea409a47c6b01efb72
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:18:37 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:19:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1143b8d3

kde-plasma/plasma-workspace: backport patch from upstream to fix panel geometry

This resolves a regression introduced by 
plasma-workspace-5.6.5-drop-kscreen-dep.patch.

Package-Manager: portage-2.3.0

 .../files/plasma-workspace-5.6.5.1-struts.patch|  29 
 .../plasma-workspace-5.6.5.1-r1.ebuild | 167 +
 2 files changed, 196 insertions(+)

diff --git 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.6.5.1-struts.patch 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.6.5.1-struts.patch
new file mode 100644
index 000..4fc7bd2
--- /dev/null
+++ b/kde-plasma/plasma-workspace/files/plasma-workspace-5.6.5.1-struts.patch
@@ -0,0 +1,29 @@
+From b866bbe75e04584f0a54980c2c21cba2eadc123b Mon Sep 17 00:00:00 2001
+From: Marco Martin 
+Date: Mon, 13 Jun 2016 14:23:43 +0200
+Subject: [PATCH] use the whole geometry for the struts
+
+screen()->virtualSize() is the union of the sizes
+of all screens
+screen()->geometry().size() is the size of just the
+single screen
+---
+ shell/panelview.cpp | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/shell/panelview.cpp b/shell/panelview.cpp
+index fb965e8..b27c18b 100644
+--- a/shell/panelview.cpp
 b/shell/panelview.cpp
+@@ -856,7 +856,7 @@ void PanelView::updateStruts()
+ if (m_visibilityMode == NormalPanel) {
+ const QRect thisScreen = screen()->geometry();
+ // QScreen::virtualGeometry() is very unreliable (Qt 5.5)
+-const QRect wholeScreen = QRect(QPoint(0, 0), 
screen()->geometry().size());
++const QRect wholeScreen = QRect(QPoint(0, 0), 
screen()->virtualSize());
+ 
+ //Extended struts against a screen edge near to another screen are 
really harmful, so windows maximized under the panel is a lesser pain
+ //TODO: force "windows can cover" in those cases?
+-- 
+2.7.3
+

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-5.6.5.1-r1.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-5.6.5.1-r1.ebuild
new file mode 100644
index 000..e4e3f55
--- /dev/null
+++ b/kde-plasma/plasma-workspace/plasma-workspace-5.6.5.1-r1.ebuild
@@ -0,0 +1,167 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+KDE_HANDBOOK="forceoptional"
+KDE_TEST="forceoptional"
+VIRTUALX_REQUIRED="test"
+inherit kde5 multilib qmake-utils
+
+DESCRIPTION="KDE Plasma workspace"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE="+geolocation gps prison qalculate"
+
+COMMON_DEPEND="
+   $(add_frameworks_dep baloo)
+   $(add_frameworks_dep kactivities)
+   $(add_frameworks_dep kauth)
+   $(add_frameworks_dep kbookmarks)
+   $(add_frameworks_dep kcmutils)
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep kcrash)
+   $(add_frameworks_dep kdbusaddons)
+   $(add_frameworks_dep kdeclarative)
+   $(add_frameworks_dep kdelibs4support)
+   $(add_frameworks_dep kdesu)
+   $(add_frameworks_dep kglobalaccel)
+   $(add_frameworks_dep kguiaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kidletime)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kitemviews)
+   $(add_frameworks_dep kjobwidgets)
+   $(add_frameworks_dep kjs)
+   $(add_frameworks_dep kjsembed)
+   $(add_frameworks_dep knewstuff)
+   $(add_frameworks_dep knotifications)
+   $(add_frameworks_dep knotifyconfig)
+   $(add_frameworks_dep kpackage)
+   $(add_frameworks_dep krunner)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep ktexteditor)
+   $(add_frameworks_dep ktextwidgets)
+   $(add_frameworks_dep kwallet)
+   $(add_frameworks_dep kwayland)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   $(add_frameworks_dep kxmlrpcclient)
+   $(add_frameworks_dep plasma)
+   $(add_frameworks_dep solid)
+   $(add_plasma_dep kscreenlocker)
+   $(add_plasma_dep kwin)
+   $(add_plasma_dep libksysguard)
+   $(add_qt_dep qtconcurrent)
+   $(add_qt_dep qtdbus)
+   $(add_qt_dep qtdeclarative 'widgets')
+   $(add_qt_dep qtgui 'jpeg')
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtscript)
+   $(add_qt_dep qtsql)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtx11extras)
+   $(add_qt_dep qtxml)
+   dev-libs/libdbusmenu-qt[qt5]
+   media-libs/phonon[qt5]
+   sys-libs/zlib
+   

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

2016-06-26 Thread Michael Palimaka
commit: 5db1551223037ab153e5f115e646bf13216e9a9e
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:14:12 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:19:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db15512

media-video/qx11grab: remove old

Package-Manager: portage-2.3.0

 media-video/qx11grab/Manifest  |  1 -
 media-video/qx11grab/qx11grab-0.4.10-r1.ebuild | 55 --
 2 files changed, 56 deletions(-)

diff --git a/media-video/qx11grab/Manifest b/media-video/qx11grab/Manifest
index c0e2a52..39f490b 100644
--- a/media-video/qx11grab/Manifest
+++ b/media-video/qx11grab/Manifest
@@ -1,2 +1 @@
-DIST qx11grab-0.4.10.tar.xz 389404 SHA256 
055919c0461b9cf04fbde6aa672526f561831049fa5db1464ed1e5e3e219416e SHA512 
357df667e7d3fcf57169b97d6a9d00d85f89ad25ac31090c9e1a05c3b2fa384231ac45df59541813e0b691e6360150d2fcc5683e1a52d8bb7d387f31e2b8243d
 WHIRLPOOL 
5c451ad592756a9d2a2d061a9452f512522d484c1fa7e77acea8a62e94aace92d229d7298275f1987ebcf22dbcbdd8e3a049b5caedace2e82f63a226dfb22f4f
 DIST qx11grab-0.4.12.tar.xz 392304 SHA256 
0f3d7ecb2e9d6fed3fd0c48cbc527c15f46a0f1befa666d0f6941f49df3ed7ca SHA512 
6731d2bfc4fa889cf14da597408d86ddb68a33c5ed1ede3f4c49ed2746cebb71c2dd23cab17c2c03e52a60cfbbce928519a21d86fb5572fd88934e8bdf29cdb9
 WHIRLPOOL 
32663033215268f2bbe556332e95166539aaf95a740e634c6c6238aa322907dd0d4896c36eb0eea7a1b2378e54ef7a105e3d6327df06978ba8e15cdb1023e789

diff --git a/media-video/qx11grab/qx11grab-0.4.10-r1.ebuild 
b/media-video/qx11grab/qx11grab-0.4.10-r1.ebuild
deleted file mode 100644
index 4ffb496..000
--- a/media-video/qx11grab/qx11grab-0.4.10-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit cmake-utils
-
-DESCRIPTION="X11 desktop video grabber tray"
-HOMEPAGE="http://qx11grab.hjcms.de/;
-SRC_URI="http://qx11grab.hjcms.de/downloads/${PV}/${P}.tar.xz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="libav kde opengl pulseaudio"
-
-RDEPEND="
-   >=dev-qt/qtcore-4.7.4:4
-   >=dev-qt/qtdbus-4.7.4:4
-   >=dev-qt/qtgui-4.7.4:4[accessibility]
-   >=media-libs/alsa-lib-1.0.26
-   >=media-libs/fontconfig-2.4
-   >=media-libs/freetype-2.4:2
-   >=sys-apps/dbus-1.6.4
-   >=x11-libs/libX11-1.3.4
-   >=x11-libs/libXrandr-1.3
-   libav? ( >=media-video/libav-9:0=[X,encode,truetype] )
-   !libav? ( >=media-video/ffmpeg-1.1:0=[X,encode,truetype] )
-   kde? ( kde-base/kdelibs:4 )
-   opengl? ( >=dev-qt/qtopengl-4.7.4:4 )
-   pulseaudio? ( media-sound/pulseaudio )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   kde? ( dev-util/automoc )
-"
-PDEPEND="virtual/freedesktop-icon-theme"
-
-src_prepare() {
-   cmake-utils_src_prepare
-
-   # install docs into standard Gentoo location
-   sed -i -e "/DESTINATION share/ s:\${CMAKE_PROJECT_NAME}:doc/${PF}:" \
-   CMakeLists.txt || die
-}
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake-utils_use_enable kde KDE_SUPPORT)
-   $(cmake-utils_use_enable opengl)
-   $(cmake-utils_use_enable pulseaudio PULSE)
-   )
-   cmake-utils_src_configure
-}



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

2016-06-26 Thread Michael Palimaka
commit: 81ab9f84595a267f08a825eb62d599eec30a41e9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 26 17:15:14 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 17:19:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81ab9f84

dev-util/xxdiff: remove old

Package-Manager: portage-2.3.0

 dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild | 65 ---
 1 file changed, 65 deletions(-)

diff --git a/dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild 
b/dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild
deleted file mode 100644
index 0128e52..000
--- a/dev-util/xxdiff/xxdiff-4.0_beta1_p20110426.ebuild
+++ /dev/null
@@ -1,65 +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 eutils qt4-r2
-
-DESCRIPTION="A graphical file and directories comparator and merge tool"
-HOMEPAGE="http://furius.ca/xxdiff/;
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="dev-qt/qtgui:4
-   !>=sys-devel/bison-3"
-DEPEND="${RDEPEND}
-   virtual/yacc"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-gcc47.patch
-
-   pushd src >/dev/null
-   sed -i -e '/qPixmapFromMimeSource/d' *.ui || die #365019
-   qt4-r2_src_prepare
-   popd
-
-   distutils-r1_src_prepare
-}
-
-src_configure() {
-   pushd src >/dev/null
-   qt4-r2_src_configure
-   cat Makefile.extra >> Makefile
-   popd
-
-   distutils-r1_src_configure
-}
-
-src_compile() {
-   pushd src >/dev/null
-   qt4-r2_src_compile
-   popd
-
-   distutils-r1_src_compile
-}
-
-src_install() {
-   dobin bin/xxdiff
-
-   distutils-r1_src_install
-
-   dodoc CHANGES README* TODO doc/*.txt src/doc.txt
-
-   dohtml doc/*.{png,html} src/doc.html
-
-   # example tools, use these to build your own ones
-   insinto /usr/share/doc/${PF}
-   doins -r tools
-}



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

2016-06-26 Thread Michał Górny
commit: efe7d05349ed954fb949850ac70af049da7bfd08
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 26 16:51:42 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 26 17:03:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe7d053

app-crypt/efitools: Use snapshot for building, #585714

 app-crypt/efitools/Manifest  | 1 +
 app-crypt/efitools/efitools-1.7.0.ebuild | 8 +++-
 2 files changed, 4 insertions(+), 5 deletions(-)

diff --git a/app-crypt/efitools/Manifest b/app-crypt/efitools/Manifest
index 4648677..199a3d1 100644
--- a/app-crypt/efitools/Manifest
+++ b/app-crypt/efitools/Manifest
@@ -1,2 +1,3 @@
 DIST efitools-1.4.1.tar.gz 91444 SHA256 
6946e7894118012ca12503a6e55a4f8f17310d0eb02d8f1ab8947d9012ad8b51 SHA512 
0994fdd9f934575691f740631dfbcc67f15e56f873cba10657536389d61b5bb955b0de91261f0486bfa5381e27f42b5dd0b6ea55fe3643f8b0dae2f9b1916ef1
 WHIRLPOOL 
7eb973fd0239fa41d2ff82ccfda526725032c0da64d0cd5223a7d66abf42c951f4ba2d3613c024c3bceebf6e032af88527f6a35eff76f258f19e12431cbac0bd
 DIST efitools-1.4.2.tar.gz 97303 SHA256 
df7b9d7570b2fb85ee060e14b1952233d28e277f5b2f839c225f093890e5d843 SHA512 
19433b6ccc95a18649b05376c0090f4325345d1a9ccf2601e9b4818a7a888379ab1bb620022f393498e520073f06e10962f5322632219fc21da390e4e5cd4c9f
 WHIRLPOOL 
43000942f99fdf888bf2d2447eb28ca5eba9440194f5de71fd4532ad61a3735b23a08e4fdef4f89a9fd06e30537e9f6305e5f320e1c27ab60a6c4cb91762d74d
+DIST efitools-1.7.0.tar.bz2 96042 SHA256 
6221323665359ded31aefd2979853203cc08509d35bed09b05a28a9c060866ea SHA512 
1e839c5565b0a113569cf47bf98d656875f9a127b481287a553e8b1276969021e1a39a730b9ede3852e15d1ac045db7ec64767f5ac71a24567236c0938697ccb
 WHIRLPOOL 
fc1762b5a35111f5f103273615b03318a4c319147e1e66898ceb748fd767cd977d8cf4d466e2cd7289fea66a755a4b13f44d9f7498a6a2216213045439726bf7

diff --git a/app-crypt/efitools/efitools-1.7.0.ebuild 
b/app-crypt/efitools/efitools-1.7.0.ebuild
index d54950b..4075a6e 100644
--- a/app-crypt/efitools/efitools-1.7.0.ebuild
+++ b/app-crypt/efitools/efitools-1.7.0.ebuild
@@ -3,14 +3,10 @@
 # $Id$
 
 EAPI="5"
-inherit git-r3
 
 DESCRIPTION="Tools for manipulating UEFI secure boot platforms"
 HOMEPAGE="https://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git;
-SRC_URI=""
-
-EGIT_REPO_URI="git://git.kernel.org/pub/scm/linux/kernel/git/jejb/efitools.git"
-EGIT_COMMIT="v1.7.0"
+SRC_URI="https://git.kernel.org/cgit/linux/kernel/git/jejb/efitools.git/snapshot/v${PV}.tar.bz2
 -> ${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
@@ -27,3 +23,5 @@ DEPEND="${RDEPEND}
app-crypt/sbsigntool
virtual/pkgconfig
dev-perl/File-Slurp"
+
+S=${WORKDIR}/v${PV}



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

2016-06-26 Thread Michał Górny
commit: 81a0e50dc553309658a4cf769d35d0844ce45384
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jun 26 17:01:22 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 26 17:03:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a0e50d

app-misc/vit: Use snapshot for building, #585718

 app-misc/vit/vit-1.2.ebuild | 14 +-
 1 file changed, 5 insertions(+), 9 deletions(-)

diff --git a/app-misc/vit/vit-1.2.ebuild b/app-misc/vit/vit-1.2.ebuild
index 46acade..ea59cdb 100644
--- a/app-misc/vit/vit-1.2.ebuild
+++ b/app-misc/vit/vit-1.2.ebuild
@@ -4,21 +4,15 @@
 
 EAPI=5
 
-inherit eutils git-r3
+inherit eutils
 
 DESCRIPTION="Perl/Curses front-end for Taskwarrior (app-misc/task)"
 HOMEPAGE="http://tasktools.org/projects/vit.html;
-
-EGIT_REPO_URI="https://git.tasktools.org/scm/ex/vit.git;
-if [[ ${PV} = * ]]; then
-   KEYWORDS=""
-else
-   EGIT_COMMIT=v${PV}
-   KEYWORDS="~amd64 ~arm ~x86"
-fi
+SRC_URI="https://git.tasktools.org/plugins/servlet/archive/projects/EX/repos/vit?at=refs%2Ftags%2Fv1.2=tar.gz
 -> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 DEPEND="
@@ -27,6 +21,8 @@ DEPEND="
dev-perl/Curses"
 RDEPEND="${DEPEND}"
 
+S=${WORKDIR}
+
 src_prepare() {
epatch "${FILESDIR}"/${PN}-allow-nonsudo-install.patch \
"${FILESDIR}"/${PN}-fix-man-installs.patch



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

2016-06-26 Thread Michael Palimaka
commit: dba2a7b1b6bd8a7ab3349f5b79ec22f7e009cf52
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Jun 26 09:08:16 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 09:08:21 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=dba2a7b1

kde-apps/kdepim-l10n: Drop obsolete blocker

Package-Manager: portage-2.2.28

 kde-apps/kdepim-l10n/kdepim-l10n-16.04.2.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/kde-apps/kdepim-l10n/kdepim-l10n-16.04.2.ebuild 
b/kde-apps/kdepim-l10n/kdepim-l10n-16.04.2.ebuild
index 6327452..6f7fe07 100644
--- a/kde-apps/kdepim-l10n/kdepim-l10n-16.04.2.ebuild
+++ b/kde-apps/kdepim-l10n/kdepim-l10n-16.04.2.ebuild
@@ -20,7 +20,6 @@ DEPEND="
 RDEPEND="
!

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

2016-06-26 Thread Michael Palimaka
commit: 37e7d2a515ffcf4d274c14b83379796066043dcc
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Jun 26 12:40:39 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 12:45:46 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=37e7d2a5

kde-plasma/kgamma: Drop obsolete blocker, done by kde5.eclass

Package-Manager: portage-2.2.28

 kde-plasma/kgamma/kgamma-5.6.95.ebuild  | 2 --
 kde-plasma/kgamma/kgamma-5.7.49..ebuild | 2 --
 kde-plasma/kgamma/kgamma-.ebuild| 2 --
 3 files changed, 6 deletions(-)

diff --git a/kde-plasma/kgamma/kgamma-5.6.95.ebuild 
b/kde-plasma/kgamma/kgamma-5.6.95.ebuild
index 13a37f6..f73590c 100644
--- a/kde-plasma/kgamma/kgamma-5.6.95.ebuild
+++ b/kde-plasma/kgamma/kgamma-5.6.95.ebuild
@@ -25,6 +25,4 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
x11-proto/xf86vidmodeproto
-   !

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

2016-06-26 Thread Michael Palimaka
commit: 34646d3df06eec4547dedd73a8175b49987c088c
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Jun 26 09:00:48 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 09:02:40 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=34646d3d

kde5.eclass: Simplify blocked kde4-l10n logic

1) 15.08.x has left the tree
2) Prepare for a future kde4-l10n without USE=minimal
   Version block makes sure of no ancient kde4-l10n anyway

 eclass/kde5.eclass | 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 7c0ce36..9c871b9 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -173,15 +173,9 @@ case ${KDE_AUTODEPS} in
fi
 
if [[ ${CATEGORY} = kde-frameworks || ${CATEGORY} = kde-plasma 
&& ${PN} != polkit-kde-agent ]]; then
-   local blocked_version=15.08.0-r1
-
-   if [[ ${CATEGORY} = kde-plasma && 
$(get_version_component_range 2) -ge 6 ]]; then
-   blocked_version=15.12.3-r1
-   fi
-
RDEPEND+="
-   !kde-apps/kde4-l10n[-minimal(-)]
-   !

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

2016-06-26 Thread Michael Palimaka
commit: 9bdd0573d9e59e2e6ca3381a2e590ce815fbdfac
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Jun 26 09:06:23 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Jun 26 09:06:23 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=9bdd0573

kde-apps/kde-l10n: Prepare for a future kde4-l10n without USE=minimal

Version block makes sure of no ancient kde4-l10n anyway.

Package-Manager: portage-2.2.28

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

diff --git a/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild 
b/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild
index 231df32..b57d3e0 100644
--- a/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild
+++ b/kde-apps/kde-l10n/kde-l10n-16.04.2.ebuild
@@ -19,7 +19,7 @@ DEPEND="
 "
 RDEPEND="
!

[gentoo-commits] dev/mrueg:master commit in: dev-ruby/sentry-raven/

2016-06-26 Thread Manuel Rüger
commit: a4fb9e7098bfc1d0e7d441b5ecce9e9c599c8a8c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:43:07 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:43:07 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=a4fb9e70

dev-ruby/sentry-raven: Version bump. Remove old

Package-Manager: portage-2.2.28

 dev-ruby/sentry-raven/Manifest | 2 +-
 .../{sentry-raven-0.15.6.ebuild => sentry-raven-1.1.0.ebuild}  | 3 +--
 2 files changed, 2 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/sentry-raven/Manifest b/dev-ruby/sentry-raven/Manifest
index 3de9cb1..fc8c10a 100644
--- a/dev-ruby/sentry-raven/Manifest
+++ b/dev-ruby/sentry-raven/Manifest
@@ -1 +1 @@
-DIST sentry-raven-0.15.6.tar.gz 58123 SHA256 
bdf8547b80b76846999d8bababa5155126906974376864f6248cc4c96f8b4528 SHA512 
435080a92b6ef4bc3a40201fd29f5d8e3b4d5f6aec26ffde26a6be872a4a194dc519403d60fc4694f680bb5329ffd70bfc30423bcc64daabd044d99ffcb007ef
 WHIRLPOOL 
cd0928c596673cd610bebb4ce81748c58f5e0db6f79d1eb42601b004709a8cf6174dd96b60cab15f269552edcad262a716fae1985709c977b910142e6a28
+DIST sentry-raven-1.1.0.tar.gz 72736 SHA256 
c501e4eb38532031dbcef1e3faead3ffb8544cf07adfbbad070b612ce8c59117 SHA512 
2d6f8069608a25f5a0a2b1ac9d0a5585dd85a56b450271d7d6e44ae5c67f07c3cb28f1157c9febe1a00f543c105e8e12659393a3778b585c768c65fc5d5f2220
 WHIRLPOOL 
51d9ccae47482e3ad2907b76b4df15fe8a97e63f4b50a1896453b587161f8fb50f4cee8d51a50824ca7c60b61beb192c65f65fa22a90cd72bc99e66f2921e40a

diff --git a/dev-ruby/sentry-raven/sentry-raven-0.15.6.ebuild 
b/dev-ruby/sentry-raven/sentry-raven-1.1.0.ebuild
similarity index 91%
rename from dev-ruby/sentry-raven/sentry-raven-0.15.6.ebuild
rename to dev-ruby/sentry-raven/sentry-raven-1.1.0.ebuild
index 248b910..640fb7d 100644
--- a/dev-ruby/sentry-raven/sentry-raven-0.15.6.ebuild
+++ b/dev-ruby/sentry-raven/sentry-raven-1.1.0.ebuild
@@ -23,8 +23,7 @@ IUSE=""
 RUBY_S="raven-ruby-${PV}"
 
 ruby_add_rdepend ">=dev-ruby/faraday-0.7.6"
-ruby_add_bdepend "test? ( >=dev-ruby/mime-types-1.16
-   

[gentoo-commits] dev/mrueg:master commit in: x11-plugins/purple-hangouts/

2016-06-26 Thread Manuel Rüger
commit: 25cd99eb88a7e9ff5061e434d6eca1c6a6225899
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:39:25 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:39:25 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=25cd99eb

x11-plugins/purple-hangouts: Require pidgin-2.10.12

Package-Manager: portage-2.2.28

 x11-plugins/purple-hangouts/purple-hangouts-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-plugins/purple-hangouts/purple-hangouts-.ebuild 
b/x11-plugins/purple-hangouts/purple-hangouts-.ebuild
index bdd525e..cd31d98 100644
--- a/x11-plugins/purple-hangouts/purple-hangouts-.ebuild
+++ b/x11-plugins/purple-hangouts/purple-hangouts-.ebuild
@@ -19,7 +19,7 @@ RDEPEND=">=dev-libs/protobuf-c-1.1.1
dev-libs/json-glib
dev-libs/nss
sys-libs/zlib
-   net-im/pidgin"
+   >=net-im/pidgin-2.10.12"
 DEPEND="${RDEPEND}
virtual/pkgconfig"
 



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/mail_room/

2016-06-26 Thread Manuel Rüger
commit: f94fe76e7a9107516d2b04f6807283580e77b36c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:35:13 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:35:13 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=f94fe76e

dev-ruby/mail_room: Version bump. Remove old

Package-Manager: portage-2.2.28

 dev-ruby/mail_room/Manifest   | 2 +-
 dev-ruby/mail_room/{mail_room-0.6.1.ebuild => mail_room-0.8.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/mail_room/Manifest b/dev-ruby/mail_room/Manifest
index 51ab42e..584730e 100644
--- a/dev-ruby/mail_room/Manifest
+++ b/dev-ruby/mail_room/Manifest
@@ -1 +1 @@
-DIST mail_room-0.6.1.gem 20480 SHA256 
41bad356c7ed77566855181cb88729d2ca629be2766321c80325fac41f5cfe4a SHA512 
ecbc2efe24a731249684c1ba66fa7e4f74cc23725e841dc6a45c0cca75617844f53e61a23e76f2b0ffbf233973446f7fb7a3eb82169d0f1bb2969f903741e73e
 WHIRLPOOL 
45571d40e49ccf24347861bf7e84473a570cc2776f9b6d3f401912b2ae49a6115ac5102665235fda84b93168bd7caf0dc351e49bc200656a812c4589cfd97337
+DIST mail_room-0.8.0.gem 20992 SHA256 
e055f46391b1d16efd6d6d404595d37f0cfc92028b1f9d6fbf0f66f305914a02 SHA512 
c73428107934dc00132439411ed67fdde4ea6bd765c4bcd883b50b0ae13853ac9ea282e781eaf76a2d983c5b43d86f7bb7f462909cf7730adc6247a1109416e9
 WHIRLPOOL 
fba8f659355ee473c61a4735db806f4452b77a4fc247fe1a9d39310b08254518c4c361f597da6e29fcc3e7b2d783e2517d95b2a9dd0b494ec1d0e112bf24d8e2

diff --git a/dev-ruby/mail_room/mail_room-0.6.1.ebuild 
b/dev-ruby/mail_room/mail_room-0.8.0.ebuild
similarity index 100%
rename from dev-ruby/mail_room/mail_room-0.6.1.ebuild
rename to dev-ruby/mail_room/mail_room-0.8.0.ebuild



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/activerecord-session_store/

2016-06-26 Thread Manuel Rüger
commit: b3f9c3ec19bf22a9a54370e6a249be4b2fd8e928
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:37:08 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:37:08 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=b3f9c3ec

dev-ruby/activerecord-session_store: Version bump. Remove old

Package-Manager: portage-2.2.28

 dev-ruby/activerecord-session_store/Manifest | 2 +-
 ...tore-0.1.2.ebuild => activerecord-session_store-1.0.0.ebuild} | 9 +
 2 files changed, 6 insertions(+), 5 deletions(-)

diff --git a/dev-ruby/activerecord-session_store/Manifest 
b/dev-ruby/activerecord-session_store/Manifest
index e5c0156..5c3f357 100644
--- a/dev-ruby/activerecord-session_store/Manifest
+++ b/dev-ruby/activerecord-session_store/Manifest
@@ -1 +1 @@
-DIST activerecord-session_store-0.1.2.tar.gz 12623 SHA256 
7c4d003f805e89a15d309e06bc27428ee5a62d94422c62dc1977debf30ba9449 SHA512 
1aafeed755ebe98b3c31cf46e7d90c6ad26a567b6d9a41b2114fe7b4e3254eb2a2180ba7c4bd558b28861d43a0694a71ff4a5eecca8f8ca9b86134bd5e90554a
 WHIRLPOOL 
5eb69c35b92b1c20743c47d9c0b165a68f25f9ceb5561feb61bf8f3efda893b09ff26c4bf3c34091944b7ea21140f3294fdb06ac9b9266a716a90039a3ff1124
+DIST activerecord-session_store-1.0.0.tar.gz 15331 SHA256 
883f198325c8aabf74b991e0704888967820a73880eb5721153bde8ab247a4cd SHA512 
6f6e54d4ff7780df7c30af1b779892905f4d4436ca23a5c53df3dad35fc08b6f0fad2c1152c4155cca4f6f013f274d78ac375a40ba17a00524e40bd10c5c
 WHIRLPOOL 
1b633d89f200e99c4fc3e1bb8e6198042eb55bcfec03e74e931a768f8a340106f46078aa49a6fcaf98c8a969656e0c82d51b3bd0b48108559916f51ed9a533b2

diff --git 
a/dev-ruby/activerecord-session_store/activerecord-session_store-0.1.2.ebuild 
b/dev-ruby/activerecord-session_store/activerecord-session_store-1.0.0.ebuild
similarity index 84%
rename from 
dev-ruby/activerecord-session_store/activerecord-session_store-0.1.2.ebuild
rename to 
dev-ruby/activerecord-session_store/activerecord-session_store-1.0.0.ebuild
index d5e0ccb..d94569a 100644
--- 
a/dev-ruby/activerecord-session_store/activerecord-session_store-0.1.2.ebuild
+++ 
b/dev-ruby/activerecord-session_store/activerecord-session_store-1.0.0.ebuild
@@ -19,12 +19,13 @@ SLOT="0"
 KEYWORDS="~amd64"
 IUSE=""
 
-ruby_add_rdepend "=dev-ruby/actionpack-4.0.0
-   =dev-ruby/activerecord-4.0.0
-   =dev-ruby/railties-4.0.0"
+   =dev-ruby/railties-4.0.0
+   >=dev-ruby/multi_json-1.11.2"
 ruby_add_bdepend "test? ( >=dev-ruby/activerecord-4[sqlite]
dev-ruby/minitest
dev-ruby/rake



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/recaptcha/

2016-06-26 Thread Manuel Rüger
commit: 9a7d7a58e507577ee0df64771115f5b3121581c6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:30:35 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:30:35 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=9a7d7a58

dev-ruby/recaptcha: Version bump. Remove old

Package-Manager: portage-2.2.28

 dev-ruby/recaptcha/Manifest   | 2 +-
 dev-ruby/recaptcha/{recaptcha-1.1.1.ebuild => recaptcha-3.2.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/recaptcha/Manifest b/dev-ruby/recaptcha/Manifest
index e223fb9..d5907ca 100644
--- a/dev-ruby/recaptcha/Manifest
+++ b/dev-ruby/recaptcha/Manifest
@@ -1 +1 @@
-DIST recaptcha-1.1.1.tar.gz 25249 SHA256 
dbd39c077d78f8feccc344ccd834cd5fd3eef779516bcc1059ca98dd9742a24d SHA512 
006586ad3e018b677e6433d55bede49426f00ec1135bc9cbe88b31e950d498f6746a552f2cc4a72b9b8438df796aff7905d0dbe381acf35e4a01b4a1218ac17d
 WHIRLPOOL 
ad28895a60f65d94e3dc76f54fe7bf5b59dc5b146101aaecec1445c6a4f0356e2b7c82bfa64239200d96afefb65e979fe3f208dd517801f1ca4033648debb8e4
+DIST recaptcha-3.2.0.tar.gz 26355 SHA256 
2b6a2d1218379a321f6c7d0e18b360391d5186abe6071188120ed944fbcd52cd SHA512 
e37e1d99f82dc9620b60e006f446c0cbe378b79440e3e0592c63f92a800b96896e940617f596492a318faa937404b0f8081900ad570b9cbfc770275482125360
 WHIRLPOOL 
a1e23d1273b85e7167a287bc1d2c52561bf6129a161867b31d543b6485942f4aa505b14e6347b9307df1d5a862b393cf13d20f0a6dc78523921b0e0655b64e99

diff --git a/dev-ruby/recaptcha/recaptcha-1.1.1.ebuild 
b/dev-ruby/recaptcha/recaptcha-3.2.0.ebuild
similarity index 100%
rename from dev-ruby/recaptcha/recaptcha-1.1.1.ebuild
rename to dev-ruby/recaptcha/recaptcha-3.2.0.ebuild



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/font-awesome-rails/

2016-06-26 Thread Manuel Rüger
commit: 4360c9e30cfb7460f555176cf1df4912a6d3a99f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:16:23 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:16:23 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=4360c9e3

dev-ruby/font-awesome-rails: Version bump. Remove old

Package-Manager: portage-2.2.28

 dev-ruby/font-awesome-rails/Manifest| 2 +-
 ...t-awesome-rails-4.5.0.1.ebuild => font-awesome-rails-4.6.3.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/font-awesome-rails/Manifest 
b/dev-ruby/font-awesome-rails/Manifest
index 8498571..ce1c503 100644
--- a/dev-ruby/font-awesome-rails/Manifest
+++ b/dev-ruby/font-awesome-rails/Manifest
@@ -1 +1 @@
-DIST font-awesome-rails-4.5.0.1.gem 526336 SHA256 
ec746b055a3b527887acfb266299f80bdde3553e78992eeb6383b43bd4e75788 SHA512 
4dfa88db3ef6c2ad9c7e39f8f4d872716ae824a25df703aa723b5a32eebc3abcb041da6471a56fa980f8c4be43de18cae91ed0e4850c65c54879be566cdfa801
 WHIRLPOOL 
975b69a12d5ed4d880971652f79756aecd581201f48b880f26f3a79a539913d208e602b57d0c1158f83de5f544df59d0858114a38466f6ee782e40885090
+DIST font-awesome-rails-4.6.3.1.gem 573440 SHA256 
ab6deebb17292ad073e2184e777bba2c022f2e28ba637a876d801de38d92bee1 SHA512 
f3caaf0cd371989d1f9b2ca53c7726231264fb6f38bde928c29f8ca94cfcf626c0b68412be609448b0db46c9427a460155f05af1c093e6d2d247ccb7196e
 WHIRLPOOL 
24125ee017ac49ce3ae59a41b038a87d9f9a228f5682e6eaf27684dd444374e6c77a8572a0cc77ffb1893b362b50b12f8a2f6f3a98bc40108d01725804dbb3fb

diff --git a/dev-ruby/font-awesome-rails/font-awesome-rails-4.5.0.1.ebuild 
b/dev-ruby/font-awesome-rails/font-awesome-rails-4.6.3.1.ebuild
similarity index 100%
rename from dev-ruby/font-awesome-rails/font-awesome-rails-4.5.0.1.ebuild
rename to dev-ruby/font-awesome-rails/font-awesome-rails-4.6.3.1.ebuild



[gentoo-commits] dev/mrueg:master commit in: dev-ruby/state_machines-activerecord/

2016-06-26 Thread Manuel Rüger
commit: 23c0e8c35abb5e53be81cb8201f9fe8f0cfcfb96
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:32:57 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:32:57 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=23c0e8c3

dev-ruby/state_machines-activerecord: Version bump. Remove old

Package-Manager: portage-2.2.28

 dev-ruby/state_machines-activerecord/Manifest  | 2 +-
 ...iverecord-0.3.0.ebuild => state_machines-activerecord-0.4.0.ebuild} | 3 ++-
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/state_machines-activerecord/Manifest 
b/dev-ruby/state_machines-activerecord/Manifest
index 2d01264..bc750f5 100644
--- a/dev-ruby/state_machines-activerecord/Manifest
+++ b/dev-ruby/state_machines-activerecord/Manifest
@@ -1 +1 @@
-DIST state_machines-activerecord-0.3.0.gem 23552 SHA256 
7d9bd388507ae57061d56ec6d748ec1612ce3b3f56038dfcea895446eca4b781 SHA512 
e81d9a2859a0deb7db9cfbceac1e39282d0f0869da86594d7af7eed74a5a7a989a24393d814a78c8e535bdc908c38fcbbce37e44d91acbe04a1f40efd9b4a8a9
 WHIRLPOOL 
6742e9c1eed0a22e3b064bbe7ef9cab0e3ca484d48897e1edebc54c79cf05dc67ae9026ec753dd4dc491aa29561917a59dbcfa10fe4cdd894d4a5584afa0b1fc
+DIST state_machines-activerecord-0.4.0.gem 24064 SHA256 
bd370e48c5019df871e7b3459993a237918560b2c24d3bc5250c8f2874e8bc74 SHA512 
c6dff1e534a5fe53937d6f712970975e2065cd40057a8659821f2de85fff5851cb4ab62fdf8cbcd71958a5eb40011cea308991ffbef168c72c31ba70b752c50c
 WHIRLPOOL 
9fd24f3651b1ed5c049183a2e58de48d16b9aceaa91f453bf16323e09be996d7591911ad19a37abf5cb30865f064bfa0e67d7166d239d927189c81442b73d9b8

diff --git 
a/dev-ruby/state_machines-activerecord/state_machines-activerecord-0.3.0.ebuild 
b/dev-ruby/state_machines-activerecord/state_machines-activerecord-0.4.0.ebuild
similarity index 92%
rename from 
dev-ruby/state_machines-activerecord/state_machines-activerecord-0.3.0.ebuild
rename to 
dev-ruby/state_machines-activerecord/state_machines-activerecord-0.4.0.ebuild
index c201f20..0d466c0 100644
--- 
a/dev-ruby/state_machines-activerecord/state_machines-activerecord-0.3.0.ebuild
+++ 
b/dev-ruby/state_machines-activerecord/state_machines-activerecord-0.4.0.ebuild
@@ -19,7 +19,7 @@ KEYWORDS="~amd64"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/activerecord-4.1
-   =dev-ruby/state_machines-activemodel-0.3.0"
 ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.4.0
>=dev-ruby/rake-10.3
@@ -28,5 +28,6 @@ ruby_add_bdepend "test? ( >=dev-ruby/minitest-5.4.0


[gentoo-commits] dev/mrueg:master commit in: dev-ruby/gitlab_git/

2016-06-26 Thread Manuel Rüger
commit: 1e37f3838b1ac0fbfef5667c7a6274a1c64043d5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Jun 26 16:21:37 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Jun 26 16:21:37 2016 +
URL:https://gitweb.gentoo.org/dev/mrueg.git/commit/?id=1e37f383

dev-ruby/gitlab_git: Version bump, Remove old

Package-Manager: portage-2.2.28

 dev-ruby/gitlab_git/Manifest| 2 +-
 .../gitlab_git/{gitlab_git-10.1.1.ebuild => gitlab_git-10.2.3.ebuild}   | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/gitlab_git/Manifest b/dev-ruby/gitlab_git/Manifest
index 45f86c8..d8f127d 100644
--- a/dev-ruby/gitlab_git/Manifest
+++ b/dev-ruby/gitlab_git/Manifest
@@ -1 +1 @@
-DIST gitlab_git-10.1.1.tar.gz 83356 SHA256 
a6d0127e8fac9a9ae5b4bb75935a0484fda597c5002ec15ca14b2d016aabd4ec SHA512 
7c3fb8c8bb6aa40095ae75c49075a351ba3563a6f8c12a1ac5865138845811ef408af5114281196818ec15dd0239dfcb882dc041756829474379e3948c140ed9
 WHIRLPOOL 
64a2dd5c80088ace6dc62625164001ea37358de6ba73c8563d0bca64591951f8e8c5291411e545891fa4a4d54478597bda2b1bd8f91b3d66480c98b8b73c0e21
+DIST gitlab_git-10.2.3.tar.gz 83211 SHA256 
36c478a28300fd00f9cd75a7a642e69e664edba9cdea5b51799671d23945ca4e SHA512 
ca3f858cb2d4db42f8a1299bf618ccdca03c5bed57c07b401a363562a1b6a0d3131b5df31761f0901788a989f20d271f0780b7bb70ecaa955afedc01be891108
 WHIRLPOOL 
12a6165ab2f2012fa0170634de0efff5ac1c8937705f45f5c2c0c666245ff5376274f1de4b80cf025251900d6d26ae636f641e561a23ff9db29d5be727ebbc34

diff --git a/dev-ruby/gitlab_git/gitlab_git-10.1.1.ebuild 
b/dev-ruby/gitlab_git/gitlab_git-10.2.3.ebuild
similarity index 100%
rename from dev-ruby/gitlab_git/gitlab_git-10.1.1.ebuild
rename to dev-ruby/gitlab_git/gitlab_git-10.2.3.ebuild



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

2016-06-26 Thread Michał Górny
commit: c65f6083898968b5442eeb66afd4298a3b4264e2
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jun 17 07:30:26 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 26 15:34:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c65f6083

toolchain-funcs.eclass: Assume CPP="$(tc-getCC) -E" when unset, #582822

Modify the tc-getCPP and tc-getBUILD_CPP functions to use "$(tc-getCC)
-E" (i.e. the C compiler's preprocessing call) instead of falling back
to 'cpp'. This ensures that in environment with CC (and CXX) overriden
the correct compiler is used rather than the one selected by gcc-config,
which in turn fixes gcc version queries.

The alternative would be to always override CPP along with CC & CXX.
However, that is uncommon and is known to break some packages.

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

 eclass/toolchain-funcs.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index 8ecc736..1baab96 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -59,7 +59,7 @@ tc-getCC() { tc-getPROG CC gcc "$@"; }
 # @FUNCTION: tc-getCPP
 # @USAGE: [toolchain prefix]
 # @RETURN: name of the C preprocessor
-tc-getCPP() { tc-getPROG CPP cpp "$@"; }
+tc-getCPP() { tc-getPROG CPP "${CC:-gcc} -E" "$@"; }
 # @FUNCTION: tc-getCXX
 # @USAGE: [toolchain prefix]
 # @RETURN: name of the C++ compiler
@@ -132,7 +132,7 @@ tc-getBUILD_CC() { tc-getBUILD_PROG CC gcc "$@"; }
 # @FUNCTION: tc-getBUILD_CPP
 # @USAGE: [toolchain prefix]
 # @RETURN: name of the C preprocessor for building binaries to run on the 
build machine
-tc-getBUILD_CPP() { tc-getBUILD_PROG CPP cpp "$@"; }
+tc-getBUILD_CPP() { tc-getBUILD_PROG CPP "$(tc-getBUILD_CC) -E" "$@"; }
 # @FUNCTION: tc-getBUILD_CXX
 # @USAGE: [toolchain prefix]
 # @RETURN: name of the C++ compiler for building binaries to run on the build 
machine



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

2016-06-26 Thread Michał Górny
commit: 66d4ffc4ef0dfbf7cd135cd7c54d6623c130c9a4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jun 22 19:48:40 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jun 26 15:34:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66d4ffc4

toolchain-funcs.eclass: Fix _tc-getPROG with multi-parameter defaults

Fix _tc-getPROG function to account correctly for default values that
contain program name along with arguments, e.g. the default for CPP
containing "$(CC) -E".

 eclass/toolchain-funcs.eclass | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/eclass/toolchain-funcs.eclass b/eclass/toolchain-funcs.eclass
index e794559..8ecc736 100644
--- a/eclass/toolchain-funcs.eclass
+++ b/eclass/toolchain-funcs.eclass
@@ -22,7 +22,7 @@ inherit multilib
 _tc-getPROG() {
local tuple=$1
local v var vars=$2
-   local prog=$3
+   local prog=( $3 )
 
var=${vars%% *}
for v in ${vars} ; do
@@ -34,11 +34,11 @@ _tc-getPROG() {
done
 
local search=
-   [[ -n $4 ]] && search=$(type -p "$4-${prog}")
-   [[ -z ${search} && -n ${!tuple} ]] && search=$(type -p 
"${!tuple}-${prog}")
-   [[ -n ${search} ]] && prog=${search##*/}
+   [[ -n $4 ]] && search=$(type -p $4-${prog[0]})
+   [[ -z ${search} && -n ${!tuple} ]] && search=$(type -p 
${!tuple}-${prog[0]})
+   [[ -n ${search} ]] && prog[0]=${search##*/}
 
-   export ${var}=${prog}
+   export ${var}="${prog[*]}"
echo "${!var}"
 }
 tc-getBUILD_PROG() { _tc-getPROG CBUILD "BUILD_$1 $1_FOR_BUILD HOST$1" 
"${@:2}"; }



  1   2   >