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

2015-09-07 Thread Slawek Lis
commit: c7c422d3d93efb17ef1d2253b2013ad3b201614c
Author: SÅ‚awomir Lis  gentoo  org>
AuthorDate: Tue Sep  8 06:30:53 2015 +
Commit: Slawek Lis  gentoo  org>
CommitDate: Tue Sep  8 06:30:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7c422d3

version bump (thanks to dxli)

Pull request at: https://github.com/gentoo/gentoo/pull/46

Package-Manager: portage-2.2.20.1

 media-gfx/librecad/Manifest  |  1 +
 media-gfx/librecad/librecad-2.0.8.ebuild | 67 ++
 media-gfx/librecad/librecad-.ebuild  | 70 
 media-gfx/librecad/metadata.xml  |  3 +-
 4 files changed, 140 insertions(+), 1 deletion(-)

diff --git a/media-gfx/librecad/Manifest b/media-gfx/librecad/Manifest
index e1de478..b31d576 100644
--- a/media-gfx/librecad/Manifest
+++ b/media-gfx/librecad/Manifest
@@ -1,3 +1,4 @@
 DIST librecad-2.0.5.zip 16743868 SHA256 
00fba891ccf90328f122c081e9a55f5cf6a908932b92b4414f4ee3b186b48f87 SHA512 
afacc5dd833d8a9daba0e9a93f9578f066ada6dff3de4676d8604bbfbce6fba5615c75f498b9ee242b3a7bfcb2746b97a3fbd6b97526990b4ad39757344e3cc5
 WHIRLPOOL 
5b79ebecec469083a5b13b3e71b76fd116baf935d09c04e979efd583ec58fd17a3bef9e707b3603bba3256527a845f9be4a10271daeaec3fee09ce7fe82fca36
 DIST librecad-2.0.6.zip 17401781 SHA256 
09a58f9a4b578eb7381f299414344f82c6e320156c20b3ff1e9e1ae5f2770a30 SHA512 
0f8452674659adc943d87aa3d70763682b3e5e7c82530afee98d50dfa4977e8f2e0efcd224087eed68a51727a234d58b8740b00ed0941b6af78dc2938ed15241
 WHIRLPOOL 
6bb40ae33f28b5ad6adfc91334741d3fe50c6a7f42b0e253554bfacd8f4e7152a495b9e62b8760f28de8c69c77aed73750e094db96d2757fad7cd58ed3200897
 DIST librecad-2.0.7.zip 17457197 SHA256 
36d2fa1c60324bb743f0ddde0b9da1dc6b57a370422de714adef27a0cd32d9d2 SHA512 
afbe094dd565e2b058c5b1c28e88b76b883d1b9f20f60047e5a7771ec5d353e6a3e73abee8e4d7ac5f916ead7fb15719cf7bab034d670f7d7f54ca394d314803
 WHIRLPOOL 
5d196be5e54e4ceb7f2650015f35bf6ba77440b7a81d51f68a9a15408d399779f5c61289a5adaacbf1538735f7f0761152371291bab8bc8c8fb8109c3e1ddfc3
+DIST librecad-2.0.8.zip 23469997 SHA256 
3f3affbff85fd16746a0e551777c4f234d2b03384d04edf9483d36db1c7144a3 SHA512 
d0dd1fdcaafbb7b83a8d0791e132633e9a72648d7d8d7ffdfc02bb092348472a05917df7ea1f2096404afabc92d586b75f6cafa3bc54da535bcaf005c96ed8a7
 WHIRLPOOL 
14ae2c433345b5081c92426913744d57f2fa4a97621fb55143995365381d5fbed6c8ad6a1f3a6d215dc4791e3493259b3e09801bfb288a85de7db87f010aae49

diff --git a/media-gfx/librecad/librecad-2.0.8.ebuild 
b/media-gfx/librecad/librecad-2.0.8.ebuild
new file mode 100644
index 000..f2f3812
--- /dev/null
+++ b/media-gfx/librecad/librecad-2.0.8.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils qmake-utils
+
+DESCRIPTION="Generic 2D CAD program"
+HOMEPAGE="http://www.librecad.org/";
+SRC_URI="https://github.com/LibreCAD/LibreCAD/archive/${PV/_/}.zip -> ${P}.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+IUSE="3d debug doc tools qt4 +qt5"
+REQUIRED_USE="|| ( qt4 qt5 )"
+
+DEPEND="
+   qt4? (
+   dev-qt/qtcore:4
+   dev-qt/qtgui:4
+   dev-qt/qtsvg:4
+   dev-qt/qthelp:4
+   )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qthelp:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   )
+   dev-libs/boost
+   dev-cpp/muParser
+   media-libs/freetype"
+
+RDEPEND="${DEPEND}"
+S="${WORKDIR}/LibreCAD-${PV}"
+
+src_prepare() {
+   # currently RS_VECTOR3D causes an internal compiler error on GCC-4.8
+   use 3d || sed -i -e '/RS_VECTOR2D/ s/^#//' librecad/src/src.pro || die
+}
+
+src_configure() {
+   if use qt4
+   then
+   eqmake4 -r
+   else
+   eqmake5 -r
+   fi
+}
+
+src_install() {
+   dobin unix/librecad
+   use tools && dobin unix/ttf2lff
+   insinto /usr/share/${PN}
+   doins -r unix/resources/*
+   use doc && dohtml -r librecad/support/doc/*
+   insinto /usr/share/appdata
+   doins unix/appdata/librecad.appdata.xml
+   doicon librecad/res/main/"${PN}".png
+   make_desktop_entry ${PN} LibreCAD ${PN} Graphics
+}

diff --git a/media-gfx/librecad/librecad-.ebuild 
b/media-gfx/librecad/librecad-.ebuild
new file mode 100644
index 000..0c9ba9b
--- /dev/null
+++ b/media-gfx/librecad/librecad-.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils git-r3 qmake-utils
+
+DESCRIPTION="Generic 2D CAD program"
+HOMEPAGE="http://www.librecad.org/";
+SRC_URI=""
+EGIT_REPO_URI="https://github.com/LibreCAD/LibreCAD.git";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS=""
+IUSE="3d debug doc tools qt4 +qt5"
+

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

2015-09-07 Thread Jeroen Roovers
commit: b839cbe778ccbcd822e64ca5978e0ecdeb9aad52
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:45:14 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:46:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b839cbe7

sys-libs/libnih: Mark ~hppa (bug #559770).

Package-Manager: portage-2.2.20.1

 sys-libs/libnih/libnih-1.0.3-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libnih/libnih-1.0.3-r3.ebuild 
b/sys-libs/libnih/libnih-1.0.3-r3.ebuild
index 50bc0df..dd1ab1c 100644
--- a/sys-libs/libnih/libnih-1.0.3-r3.ebuild
+++ b/sys-libs/libnih/libnih-1.0.3-r3.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://launchpad.net/${PN}/$(get_version_component_range 1-2)/${PV}/+d
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~mips ~x86"
 IUSE="+dbus nls static-libs +threads"
 
 # The configure phase will check for valgrind headers, and the tests will use



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

2015-09-07 Thread Jeroen Roovers
commit: 055aa2c4585e9714b3b879b4f1f39e7693b52950
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:52:22 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:52:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=055aa2c4

app-admin/cgmanager: Mark ~hppa (bug #559770).

Package-Manager: portage-2.2.20.1

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

diff --git a/app-admin/cgmanager/cgmanager-0.39.ebuild 
b/app-admin/cgmanager/cgmanager-0.39.ebuild
index 2ca29ed..b574877 100644
--- a/app-admin/cgmanager/cgmanager-0.39.ebuild
+++ b/app-admin/cgmanager/cgmanager-0.39.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://linuxcontainers.org/downloads/${PN}/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 IUSE="pam selinux"
 
 RDEPEND="sys-libs/libnih[dbus]



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

2015-09-07 Thread Jeroen Roovers
commit: 4d08adf76582bb2d59aa017ea08f2625b4edf9c2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:53:26 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:53:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d08adf7

sys-auth/consolekit: Mark ~hppa (bug #559770).

Package-Manager: portage-2.2.20.1

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

diff --git a/sys-auth/consolekit/consolekit-1.0.0.ebuild 
b/sys-auth/consolekit/consolekit-1.0.0.ebuild
index b7d62f1..8bbb497 100644
--- a/sys-auth/consolekit/consolekit-1.0.0.ebuild
+++ b/sys-auth/consolekit/consolekit-1.0.0.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/${MY_PN}/${MY_PN}/releases/download/${PV}/${MY_P}.ta
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~hppa ~x86"
 IUSE="acl cgroups debug doc kernel_linux pam policykit selinux test"
 
 COMMON_DEPEND=">=dev-libs/glib-2.40:2=



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

2015-09-07 Thread Hans de Graaff
commit: 9c79ad665d3ac912585971574169fc171e0a0178
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Sep  8 05:23:22 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Sep  8 05:35:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c79ad66

dev-ruby/arel-helpers: missing test dependency

Add missing test dependency on dev-ruby/rr.

Package-Manager: portage-2.2.20.1

 dev-ruby/arel-helpers/arel-helpers-2.1.0.ebuild | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/arel-helpers/arel-helpers-2.1.0.ebuild 
b/dev-ruby/arel-helpers/arel-helpers-2.1.0.ebuild
index 1f652ea..77513ba 100644
--- a/dev-ruby/arel-helpers/arel-helpers-2.1.0.ebuild
+++ b/dev-ruby/arel-helpers/arel-helpers-2.1.0.ebuild
@@ -23,7 +23,10 @@ ruby_add_rdepend "|| ( dev-ruby/activerecord:3.2
dev-ruby/activerecord:4.1
dev-ruby/activerecord:4.2 )"
 
-ruby_add_bdepend "test? ( dev-ruby/activerecord[sqlite] )"
+ruby_add_bdepend "test? (
+   dev-ruby/rr
+   dev-ruby/activerecord[sqlite]
+)"
 
 all_ruby_prepare() {
sed -i -e '/pry-nav/ s:^:#:' spec/spec_helper.rb || die



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

2015-09-07 Thread Hans de Graaff
commit: 0b675d1102ec0bbacde10bec17e29306527402fb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Sep  8 05:33:53 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Sep  8 05:35:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b675d11

dev-ruby/jsobfu: missing test dependency

Add missing test dependency on dev-ruby/execjs.

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/jsobfu/jsobfu-0.3.0.ebuild 
b/dev-ruby/jsobfu/jsobfu-0.3.0.ebuild
index daffd6f..7f7a090 100644
--- a/dev-ruby/jsobfu/jsobfu-0.3.0.ebuild
+++ b/dev-ruby/jsobfu/jsobfu-0.3.0.ebuild
@@ -21,6 +21,8 @@ IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/rkelly-remix-0.0.6:0"
 
+ruby_add_bdepend "test? ( dev-ruby/execjs )"
+
 all_ruby_prepare() {
sed -i -e '/simplecov/ s:^:#:' \
-e '/config.\(color\|tty\|formatter\)/ s:^:#:' \



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

2015-09-07 Thread Hans de Graaff
commit: 816135edb6f54cd46a7867f92122636e926fd307
Author: Hans de Graaff  gentoo  org>
AuthorDate: Tue Sep  8 05:20:01 2015 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Tue Sep  8 05:35:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=816135ed

dev-ruby/patron: version bump

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/patron/Manifest b/dev-ruby/patron/Manifest
index 3322660..05217b3 100644
--- a/dev-ruby/patron/Manifest
+++ b/dev-ruby/patron/Manifest
@@ -1,2 +1,3 @@
 DIST patron-0.4.18.gem 35840 SHA256 
700ffba09ea854bc26fdde08998d8310ed59b0721098d4a7dc9a85845c71bd81 SHA512 
0069f42378b0dfe03e6f86003b7927b099fd15be4d4b5eeba51958774380bf7a9ddbd8a83b30942d02e95b923f9ae0a1c1abf5bcda8ca8490671208e0ae8ecb4
 WHIRLPOOL 
c709bcd65033288fc55d8d5c044c001afa8ac34d098466e017c5adc3a08314897e86f021a09f61abcc5153893152518dc1843ba7dfa79fc271067b708283b75c
 DIST patron-0.4.20.gem 42496 SHA256 
eb1782f38f280a9975fc97435920c29fd10a0c2e05b6f7a7549652ffbf92af71 SHA512 
78cb97e7d7a35fb97ed7da4c767937a543c1f979c7dd1dff0d3b055024b37aa50238163af4680ba464a28523c0f5879f0d6e372276774dfdac726a5493c202e5
 WHIRLPOOL 
a4158ac99edd2d302e59420be6d75b368e9d9d04ecd9b5051a53eb22639f3f32fa541061f28444cb716deab906c3055ddbc26c4f5289fa0c00c134517ac9ffdd
+DIST patron-0.5.0.gem 44032 SHA256 
6abf431b05f560afc8c479685bb3869797522290777a1ae8510ef5c8b3208c63 SHA512 
84c4cbb4ebeac3a9320915b35e4afefda5637f1bed96e83b8c2345dfd08ba02e07806b13a87c5067dd842ccddb67928c7f60889687676c0683d4e09373d8c2a7
 WHIRLPOOL 
df34adeb59ea45d5d84a6ad1aef3e0fbf4781720443be2ba37450ddf2e51ac3b2c969bb2798fe78bb476cde79f4ccc3d3c1f6511a20dc2deda5a750ec9d03139

diff --git a/dev-ruby/patron/patron-0.5.0.ebuild 
b/dev-ruby/patron/patron-0.5.0.ebuild
new file mode 100644
index 000..1731d1a
--- /dev/null
+++ b/dev-ruby/patron/patron-0.5.0.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Patron is a Ruby HTTP client library based on libcurl"
+HOMEPAGE="https://toland.github.com/patron/";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND+=" net-misc/curl"
+RDEPEND+=" net-misc/curl"
+
+all_ruby_prepare() {
+   # Fix Rakefile
+   sed -i -e 's:rake/rdoctask:rdoc/task:' \
+   -e 's/README.txt/README.md/' \
+   -e '/bundler/I s:^:#:' \
+   -e '/extensiontask/ s:^:#:' \
+   -e '/ExtensionTask/,/^end/ s:^:#:' \
+   Rakefile || die
+
+   # Avoid specs with failures. We were not running any specs before.
+   rm spec/session_ssl_spec.rb spec/session_spec.rb spec/response_spec.rb 
|| die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/patron extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/patron V=1
+   cp ext/patron/session_ext$(get_modname) lib/patron/ || die "Unable to 
cp shared object file"
+}



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

2015-09-07 Thread Jeroen Roovers
commit: 84f1f10cc0129a831fc49aa5d7b76469aa53ce24
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:33:04 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:33:04 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84f1f10c

x11-libs/libvdpau: Fix warning about implicit declaration of secure_getenv in 
mesa_dri2.c

Package-Manager: portage-2.2.20.1

 x11-libs/libvdpau/libvdpau-1.1.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x11-libs/libvdpau/libvdpau-1.1.1.ebuild 
b/x11-libs/libvdpau/libvdpau-1.1.1.ebuild
index b4e4e74..518bf7a 100644
--- a/x11-libs/libvdpau/libvdpau-1.1.1.ebuild
+++ b/x11-libs/libvdpau/libvdpau-1.1.1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 VIRTUALX_REQUIRED="test"
-inherit autotools-multilib virtualx
+inherit autotools-multilib flag-o-matic virtualx
 
 DESCRIPTION="VDPAU wrapper and trace libraries"
 HOMEPAGE="http://www.freedesktop.org/wiki/Software/VDPAU";
@@ -31,6 +31,7 @@ DEPEND="${RDEPEND}
dri? ( >=x11-proto/dri2proto-2.2 )"
 
 src_configure() {
+   append-cppflags -D_GNU_SOURCE
local myeconfargs=(
--docdir="${EPREFIX}"/usr/share/doc/${PF}
$(use_enable doc documentation)



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

2015-09-07 Thread Jeroen Roovers
commit: f744304c4a697d7522928e3af79fe47bd74a1a4e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:18:05 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:18:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f744304c

x11-misc/rofi: Version bump.

Package-Manager: portage-2.2.20.1

 x11-misc/rofi/Manifest   | 2 +-
 x11-misc/rofi/{rofi-0.15.5.ebuild => rofi-0.15.8.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/rofi/Manifest b/x11-misc/rofi/Manifest
index ccb3713..cfdf1ad 100644
--- a/x11-misc/rofi/Manifest
+++ b/x11-misc/rofi/Manifest
@@ -1,2 +1,2 @@
-DIST rofi-0.15.5.tar.xz 124952 SHA256 
3d7fefc986003527237ffc59a27158e4680e8c6daa6d45374e50734a19996dcf SHA512 
4925912cc575a83d3b3fbe08b767798f3e3834dc1d818894ac1537f2eb8a102219029a9c35f8085e81d9c30cfecad86e44ae4707e5149a14ba144f79e08880bc
 WHIRLPOOL 
2bceb26240ceeb0870bb2d7cc630079cc5fd53ae88ec5ce425d9371b6363f1a874e52f8d1e9373a8956f16c6779cdf9d1fb9c6ec50fc96a62d00c6d1241cd98c
 DIST rofi-0.15.7.tar.xz 125824 SHA256 
8c35d3d2a36cc61ae6b5dcc6a07a590e3d6d446944ec6e37dd5a3c3fcff64188 SHA512 
51caaaf6f2280c24b65386a3e38591b601e06f9d7ffa132023c93d86cb9ccf8ac1d1e2dec6886128ebdac6558fae3c718c21e489c4bd13575aeee2143ecdac13
 WHIRLPOOL 
a9de957c8cee9682608c35363d1142ec624fb4ce8f22c96da9dc35259afab599fd48dc1e9d528c287fecaa5e1a3c20efe51f1c9159913d7aa7878bbd98814578
+DIST rofi-0.15.8.tar.xz 129980 SHA256 
13aa2194c87f183c217069292092b38b9ab12115abb0bf312c6d48b22c3b369f SHA512 
9c43bdef60a229af371e992a0363e81d5bc09704e5579ffce38c6f0218df9e7607efe13744b700d8b3fa01f3654193afa2f95cd86383ab668573b51902030bb6
 WHIRLPOOL 
3c9863cafecd606d4f7514328bc3434e60b2bf24faa3f77478c836efa4ea3e4c7037eb4588a76ae23c29294504c9a5b983a86f59ca2c784520a66fadd3f2ce18

diff --git a/x11-misc/rofi/rofi-0.15.5.ebuild b/x11-misc/rofi/rofi-0.15.8.ebuild
similarity index 100%
rename from x11-misc/rofi/rofi-0.15.5.ebuild
rename to x11-misc/rofi/rofi-0.15.8.ebuild



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

2015-09-07 Thread Jeroen Roovers
commit: de482196e41bb1b213c24f5486e40c2aa57a18f0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:19:38 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:19:38 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de482196

x11-libs/libvdpau: Version bump.

Package-Manager: portage-2.2.20.1

 x11-libs/libvdpau/Manifest |  3 +-
 x11-libs/libvdpau/libvdpau-0.7.ebuild  | 45 --
 .../{libvdpau-0.8.ebuild => libvdpau-1.1.1.ebuild} |  2 +-
 3 files changed, 2 insertions(+), 48 deletions(-)

diff --git a/x11-libs/libvdpau/Manifest b/x11-libs/libvdpau/Manifest
index c457aa2..ba78f71 100644
--- a/x11-libs/libvdpau/Manifest
+++ b/x11-libs/libvdpau/Manifest
@@ -1,4 +1,3 @@
-DIST libvdpau-0.7.tar.gz 486636 SHA256 
24dc08467ce8c59d6cfbf0d34d2dd1f86b4ff62e90777e0a8f513c5c9de9bce0 SHA512 
c0ebb124956372a59eaa7e5c9330b6d4f32acd924aa620c4c037f3917623860887231b9b9f4c0a375a300c82a3e0b7284afbe9139d8562f6a74a85848d362286
 WHIRLPOOL 
d88a439231267386b53b4e9be8820e225f40bf8e77895f2d28fbcbd1ced19e70d23d49a55618d0bcadd44086f5df880badff47d05871c6e6fee02a5cf075ef15
-DIST libvdpau-0.8.tar.gz 487359 SHA256 
73a7d11cc1abed8bcaf1392bd361fc00fd43bd85bbeafb12a64bdd0bcb4101ed SHA512 
c7e7c74f4849f83bed170f4428c381f868f34cbb59444c4e65af4ad1eac19ea9450aa422b35af6c031c2b168a73282fe7bf96d69d5581f24d3c689aa849d1c56
 WHIRLPOOL 
f1ff7d08e326abc1750f0faca9359c366f98970f562dd56037d674d971183cf39289afe0b83192cc162fcfad92ebb3b24f1f652df59095d53b30da90e77a3347
 DIST libvdpau-0.9.tar.gz 526619 SHA256 
e32957140835a545a01a3972db1143e01174db3d9c0017e51f6a3bf8b09c0e6e SHA512 
8e69712a91e17c3388742f2a4c0a8887113fe06a81dbedf1faa7fc3985a289cd067a9134399f9747fd4b3b1499c46e7871a3b34f74f6e9c95b07ea877739e51f
 WHIRLPOOL 
b04824b5867636c25f029909fd9c82fe142bafcbe2544234c31cf34b4616417c362801b8ab817e59b741eb3b8232b0dedef1664dbd5a856cec6634328eb6defc
+DIST libvdpau-1.1.1.tar.gz 541752 SHA256 
5fe093302432ef05086ca2ee429c789b7bf843e166d482d166e56859b08bef55 SHA512 
e094494fc820c2395c9dbb4e69daa89334b9186e2ad1a6c06671c7f844568db191ce4d1d9df95c4536579864bcc8541eb6fd159c377bc73c228cdf2a0fea50fb
 WHIRLPOOL 
a17e69104ef89606592e0242af9d2397e6d1647d55e14d02f2816e997d4d84c5a68cd2f9b7388abd47025abb850a09883f83a77585e194f3bac89ac190d47d46
 DIST libvdpau-1.1.tar.gz 535945 SHA256 
aea4e783f220bf26ba2139ccd866a0ee5005fa03af5e08c41fbc939118263919 SHA512 
9ef5a643f93934b55a0e1d9d0785c96489abd64ee9ea05b3bd8f7e802ff8bb00af279ac37d3aa65b133255c520b8b32bb7356728de6131df0a2cd87c4048c43e
 WHIRLPOOL 
568227ca8e3aec60e366b04038ddce655883c39dc28015a5f6b83552714fe5661b877da6746d150cea1ce35b1cf27e9eb4e1b4103b9eaa1794523230e0485c10

diff --git a/x11-libs/libvdpau/libvdpau-0.7.ebuild 
b/x11-libs/libvdpau/libvdpau-0.7.ebuild
deleted file mode 100644
index d3660d6..000
--- a/x11-libs/libvdpau/libvdpau-0.7.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit autotools-multilib
-
-DESCRIPTION="VDPAU wrapper and trace libraries"
-HOMEPAGE="http://www.freedesktop.org/wiki/Software/VDPAU";
-SRC_URI="http://people.freedesktop.org/~aplattner/vdpau/${P}.tar.gz";
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 x86 ~amd64-fbsd ~x86-fbsd"
-IUSE="doc dri"
-
-RDEPEND=">=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
-   dri? ( >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}] )
-   !=x11-drivers/nvidia-drivers-180*
-   !=x11-drivers/nvidia-drivers-185*
-   !=x11-drivers/nvidia-drivers-190*
-   abi_x86_32? ( !app-emulation/emul-linux-x86-xlibs[-abi_x86_32(-)] )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? (
-   app-doc/doxygen
-   media-gfx/graphviz
-   virtual/latex-base
-   )
-   dri? ( >=x11-proto/dri2proto-2.2 )"
-
-src_configure() {
-   local myeconfargs=(
-   --docdir="${EPREFIX}"/usr/share/doc/${PF}
-   $(use_enable doc documentation)
-   $(use dri || echo --disable-dri2)
-   )
-
-   autotools-multilib_src_configure
-}
-
-src_install() {
-   autotools-multilib_src_install
-   prune_libtool_files --modules
-}

diff --git a/x11-libs/libvdpau/libvdpau-0.8.ebuild 
b/x11-libs/libvdpau/libvdpau-1.1.1.ebuild
similarity index 96%
rename from x11-libs/libvdpau/libvdpau-0.8.ebuild
rename to x11-libs/libvdpau/libvdpau-1.1.1.ebuild
index f0efcf6..b4e4e74 100644
--- a/x11-libs/libvdpau/libvdpau-0.8.ebuild
+++ b/x11-libs/libvdpau/libvdpau-1.1.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



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

2015-09-07 Thread Jeroen Roovers
commit: b1d93be9a1b34fc3d1561893555eac784d4e408c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:12:54 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:13:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1d93be9

dev-perl/Devel-LexAlias: Mark ~hppa.

Package-Manager: portage-2.2.20.1

 dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild 
b/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild
index d71dd50..48adff4 100644
--- a/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild
+++ b/dev-perl/Devel-LexAlias/Devel-LexAlias-0.50.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Alias lexical variables"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
 IUSE=""
 
 DEPEND=">=dev-perl/Devel-Caller-2.03"



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

2015-09-07 Thread Jeroen Roovers
commit: be939d722f718bbd3afff7233b0c06c870ce15f3
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:12:13 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:13:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be939d72

dev-perl/Devel-Caller: Mark ~hppa.

Package-Manager: portage-2.2.20.1

 dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild 
b/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild
index 3e55706..8e9ca7c 100644
--- a/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild
+++ b/dev-perl/Devel-Caller/Devel-Caller-2.60.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Meatier versions of caller"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86"
 IUSE=""
 
 DEPEND="dev-perl/PadWalker"



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

2015-09-07 Thread Jeroen Roovers
commit: 6c974e509a32c1cf5d56be9db998a5986ca2a7fb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:11:42 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:13:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c974e50

dev-perl/perltidy: Mark ~hppa.

Package-Manager: portage-2.2.20.1

 dev-perl/perltidy/perltidy-20140711.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/perltidy/perltidy-20140711.0.0.ebuild 
b/dev-perl/perltidy/perltidy-20140711.0.0.ebuild
index ec30703..47a2fab 100644
--- a/dev-perl/perltidy/perltidy-20140711.0.0.ebuild
+++ b/dev-perl/perltidy/perltidy-20140711.0.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://perltidy.sourceforge.net/ ${HOMEPAGE}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos ~sparc-solaris"
 IUSE=""
 
 SRC_TEST="do"



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

2015-09-07 Thread Jeroen Roovers
commit: 67147c6d84dfc1f0a1dfce2a420ec1be907828a2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:13:21 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:13:53 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67147c6d

dev-perl/Eval-Closure: Mark ~hppa.

Package-Manager: portage-2.2.20.1

 dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild 
b/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild
index a54d5d8..6dfc2cd 100644
--- a/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild
+++ b/dev-perl/Eval-Closure/Eval-Closure-0.130.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="safely and cleanly create closures via string eval"
 
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd ~x64-macos"
+KEYWORDS="~amd64 ~hppa ~ppc ~x86 ~x86-fbsd ~x64-macos"
 IUSE="test minimal"
 
 # Scalar::Util -> Scalar-List-Utils



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

2015-09-07 Thread Joshua Kinard
commit: d4698a522657c192becffa755f235889f5d6eda2
Author: Joshua Kinard  gentoo  org>
AuthorDate: Tue Sep  8 04:59:20 2015 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Tue Sep  8 05:00:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4698a52

Added ~mips to KEYWORDS.

Package-Manager: portage-2.2.20.1

 sys-process/numactl/numactl-2.0.10-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/numactl/numactl-2.0.10-r2.ebuild 
b/sys-process/numactl/numactl-2.0.10-r2.ebuild
index 18da72a..6ea2ae0 100644
--- a/sys-process/numactl/numactl-2.0.10-r2.ebuild
+++ b/sys-process/numactl/numactl-2.0.10-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="ftp://oss.sgi.com/www/projects/libnuma/download/${P}.tar.gz";
 LICENSE="GPL-2"
 SLOT="0"
 # ARM lacks the __NR_migrate_pages syscall.
-KEYWORDS="~amd64 -arm ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux"
+KEYWORDS="~amd64 -arm ~ia64 ~mips ~ppc ~ppc64 ~x86 ~amd64-linux"
 IUSE=""
 
 ECONF_SOURCE=${S}



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

2015-09-07 Thread Jeroen Roovers
commit: 29608686288b05af1ad4f485f969af35c5328c55
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:07:44 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:07:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29608686

dev-perl/Moose: Mark ~hppa (bug #555892).

Package-Manager: portage-2.2.20.1

 dev-perl/Moose/Moose-2.140.500.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Moose/Moose-2.140.500.ebuild 
b/dev-perl/Moose/Moose-2.140.500.ebuild
index c33f016..8c11d44 100644
--- a/dev-perl/Moose/Moose-2.140.500.ebuild
+++ b/dev-perl/Moose/Moose-2.140.500.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A postmodern object system for Perl 5"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86 ~x86-fbsd ~x64-macos"
+KEYWORDS="~amd64 ~arm ~hppa ~x86 ~x86-fbsd ~x64-macos"
 IUSE="test"
 
 CONFLICTS="



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

2015-09-07 Thread Jeroen Roovers
commit: 1c323a4912bc7c54c47da92f0269c0eef50addb7
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:04:44 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:04:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c323a49

dev-perl/Devel-OverloadInfo: Mark ~hppa (bug #555892).

Package-Manager: portage-2.2.20.1

 dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.2.0.ebuild 
b/dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.2.0.ebuild
index ab8be8d..50dd867 100644
--- a/dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.2.0.ebuild
+++ b/dev-perl/Devel-OverloadInfo/Devel-OverloadInfo-0.2.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Introspect overloaded operators"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 IUSE="test"
 
 # Scalar::Util -> Scalar-List-Utils



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Find-Rule-Perl/

2015-09-07 Thread Jeroen Roovers
commit: 695a88ccdae833d65849741948cb3baab55f4bc6
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:06:19 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:06:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=695a88cc

dev-perl/File-Find-Rule-Perl: Mark ~hppa (bug #555892).

Package-Manager: portage-2.2.20.1

 dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.130.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.130.0.ebuild 
b/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.130.0.ebuild
index 7ab4b10..322ab91 100644
--- a/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.130.0.ebuild
+++ b/dev-perl/File-Find-Rule-Perl/File-Find-Rule-Perl-1.130.0.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Common rules for searching for Perl things"
 
 LICENSE="|| ( Artistic GPL-1 GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 IUSE=""
 
 DEPEND="



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

2015-09-07 Thread Jeroen Roovers
commit: 32f460c3a1f3def2abdca3c784fb4874ca5ea0fc
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:03:11 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:03:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32f460c3

dev-perl/Module-Runtime-Conflicts: Mark ~hppa (bug #555892).

Package-Manager: portage-2.2.20.1

 dev-perl/Module-Runtime-Conflicts/Module-Runtime-Conflicts-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Module-Runtime-Conflicts/Module-Runtime-Conflicts-0.2.0.ebuild 
b/dev-perl/Module-Runtime-Conflicts/Module-Runtime-Conflicts-0.2.0.ebuild
index beb771b..9bd4486 100644
--- a/dev-perl/Module-Runtime-Conflicts/Module-Runtime-Conflicts-0.2.0.ebuild
+++ b/dev-perl/Module-Runtime-Conflicts/Module-Runtime-Conflicts-0.2.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Provide information on conflicts for Module::Runtime"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 IUSE="test"
 
 RDEPEND="



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

2015-09-07 Thread Jeroen Roovers
commit: 469adc719ce36043df6b3ca0a76fd4c37b1f8a1f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:07:10 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:07:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=469adc71

dev-perl/Test-CleanNamespaces: Mark ~hppa (bug #555892).

Package-Manager: portage-2.2.20.1

 dev-perl/Test-CleanNamespaces/Test-CleanNamespaces-0.180.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-CleanNamespaces/Test-CleanNamespaces-0.180.0.ebuild 
b/dev-perl/Test-CleanNamespaces/Test-CleanNamespaces-0.180.0.ebuild
index 0d0320a..e17a0f5 100644
--- a/dev-perl/Test-CleanNamespaces/Test-CleanNamespaces-0.180.0.ebuild
+++ b/dev-perl/Test-CleanNamespaces/Test-CleanNamespaces-0.180.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Check for uncleaned imports"
 
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~hppa ~x86"
 IUSE="test minimal"
 
 # r:Test::Builder -> Test-Simple



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

2015-09-07 Thread Jeroen Roovers
commit: c6a20301d4b592524f7d249ff8584443a39cbfb2
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 05:04:15 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 05:04:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a20301

dev-perl/Sub-Identify: Mark ~hppa (bug #555892).

Package-Manager: portage-2.2.20.1

 dev-perl/Sub-Identify/Sub-Identify-0.40.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Sub-Identify/Sub-Identify-0.40.0-r1.ebuild 
b/dev-perl/Sub-Identify/Sub-Identify-0.40.0-r1.ebuild
index 673f1bb..a91438b 100644
--- a/dev-perl/Sub-Identify/Sub-Identify-0.40.0-r1.ebuild
+++ b/dev-perl/Sub-Identify/Sub-Identify-0.40.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Retrieve names of code references"
 
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc x86 ~ppc-macos ~x64-macos ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ppc x86 ~ppc-macos ~x64-macos ~x86-solaris"
 IUSE="test"
 
 RDEPEND=""



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

2015-09-07 Thread Jeroen Roovers
commit: 0622f60594349cf1e8079cda03608fb8c6f6d036
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:57:33 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:58:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0622f605

dev-perl/Canary-Stability: Mark ~hppa ~ppc64 (bug #559822).

Package-Manager: portage-2.2.20.1

 dev-perl/Canary-Stability/Canary-Stability-2006.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Canary-Stability/Canary-Stability-2006.ebuild 
b/dev-perl/Canary-Stability/Canary-Stability-2006.ebuild
index 746dfa9..2c24bac 100644
--- a/dev-perl/Canary-Stability/Canary-Stability-2006.ebuild
+++ b/dev-perl/Canary-Stability/Canary-Stability-2006.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Canary to check perl compatibility for schmorp's modules"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86"
 IUSE=""
 
 RDEPEND=""



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

2015-09-07 Thread Jeroen Roovers
commit: 1949e715f5d850761b04ed43c0146b7ee3b05a7d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:58:13 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:58:39 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1949e715

dev-perl/Convert-UUlib: Mark ~hppa ~ppc64 (bug #559822).

Package-Manager: portage-2.2.20.1

 dev-perl/Convert-UUlib/Convert-UUlib-1.500.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Convert-UUlib/Convert-UUlib-1.500.0.ebuild 
b/dev-perl/Convert-UUlib/Convert-UUlib-1.500.0.ebuild
index 3b3f105..b58488f 100644
--- a/dev-perl/Convert-UUlib/Convert-UUlib-1.500.0.ebuild
+++ b/dev-perl/Convert-UUlib/Convert-UUlib-1.500.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="A Perl interface to the uulib library"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~x86"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc64 ~x86"
 IUSE=""
 
 PATCHES=( "${FILESDIR}/${P}-unbundle.patch" )



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

2015-09-07 Thread Jeroen Roovers
commit: acbcc3c25675abd271bd34705a1dd225e5aeec4e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:52:07 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:58:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acbcc3c2

media-sound/ncmpcpp: Version bump.

Package-Manager: portage-2.2.20.1

 media-sound/ncmpcpp/Manifest |  1 +
 media-sound/ncmpcpp/ncmpcpp-0.6.6.ebuild | 65 
 2 files changed, 66 insertions(+)

diff --git a/media-sound/ncmpcpp/Manifest b/media-sound/ncmpcpp/Manifest
index d8b915f..ef0dbcd 100644
--- a/media-sound/ncmpcpp/Manifest
+++ b/media-sound/ncmpcpp/Manifest
@@ -1,2 +1,3 @@
 DIST ncmpcpp-0.6.4.tar.bz2 429705 SHA256 
757e2e06b7e17009c24e2b46a69f008e61aa679476f93e00dc602ca087c805f1 SHA512 
c60a6c2c89a9297d73360ec8819e8ae66ca53090c5ea5d3daf235e708467ee20006b1fff344c9312ccb0941c8307f3d84bcdc9cbf500955c74b10bd6a823c19f
 WHIRLPOOL 
56bd22148f38289030a558b43008f83e9e0ccd1ff178be183ad935d08b397de51c49f2c7d84ab9504b62b0105516f460ff131d65a99af9e73519783e15c84797
 DIST ncmpcpp-0.6.5.tar.bz2 429699 SHA256 
51128f6835c592c8d4367a66b08e06a9419a86c9d5c6e91d0f1dc73af56cd1fd SHA512 
b120bd3c0697d51755e04908d29ddd4180ae662d3f02d60e967ccbefca87471eaf0dcf4ebed5d76203b7a0a6dd17a397f318a65087c1b8ec1e3fb4178964e581
 WHIRLPOOL 
c4fa51645de9f1c7a530ee06113bc0fce5954d155112de4921dec2af5da58465b646c193f8359708b51619ec5f0fc9968680ec22549f97352f9309006499c77b
+DIST ncmpcpp-0.6.6.tar.bz2 429353 SHA256 
2b7408b207c3ffd1ddd11bcb9c0a1f2434bb80db990dcf482968cf915ebc0e67 SHA512 
5f288c1e5b96b38586e6c3230b09380584e902bc5d44147433093c48e4b61efd32b3b405ee96b4341e56ab2b26590ed2320bf1ca188e46796c13be5da52acb58
 WHIRLPOOL 
f4976fac3eb65f8952104b545d9532c743a07de987ebb0c89fb2ba51f359748ec8a14dc143330fe37e7e0d6115125c834d2a05c6d640214926dae384f4315f05

diff --git a/media-sound/ncmpcpp/ncmpcpp-0.6.6.ebuild 
b/media-sound/ncmpcpp/ncmpcpp-0.6.6.ebuild
new file mode 100644
index 000..fae8b48
--- /dev/null
+++ b/media-sound/ncmpcpp/ncmpcpp-0.6.6.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils
+
+DESCRIPTION="featureful ncurses based MPD client inspired by ncmpc"
+HOMEPAGE="http://ncmpcpp.rybczak.net/";
+SRC_URI="http://ncmpcpp.rybczak.net/stable/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="clock curl outputs taglib unicode visualizer"
+
+RDEPEND="
+   >=media-libs/libmpdclient-2.1
+   curl? ( net-misc/curl )
+   dev-libs/boost:=[nls,threads]
+   sys-libs/ncurses[unicode?]
+   sys-libs/readline:*
+   taglib? ( media-libs/taglib )
+   visualizer? ( sci-libs/fftw:3.0 )
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   sed -i -e '/^docdir/d' {,doc/}Makefile{.am,.in} || die
+   sed -i -e 's|COPYING||g' Makefile{.am,.in} || die
+}
+
+src_configure() {
+   econf \
+   $(use_enable clock) \
+   $(use_enable outputs) \
+   $(use_enable unicode) \
+   $(use_enable visualizer) \
+   $(use_with curl) \
+   $(use_with taglib) \
+   $(use_with visualizer fftw) \
+   --docdir=/usr/share/doc/${PF}
+}
+
+src_install() {
+   default
+
+   dodoc doc/{bindings,config}
+}
+
+pkg_postinst() {
+   echo
+   elog "Example configuration files have been installed at"
+   elog "${ROOT}usr/share/doc/${PF}"
+   elog "${P} uses ~/.ncmpcpp/config and ~/.ncmpcpp/bindings"
+   elog "as user configuration files."
+   echo
+   if use visualizer; then
+   elog "If you want to use the visualizer, you need mpd with fifo 
enabled."
+   echo
+   fi
+}



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

2015-09-07 Thread Joshua Kinard
commit: 109de3ead9c1cad5b744e353fa4a9f366aa9d1cb
Author: Joshua Kinard  gentoo  org>
AuthorDate: Tue Sep  8 04:39:27 2015 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Tue Sep  8 04:40:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109de3ea

Update 4.1.6/4.2.0 to -r1 to address a flaw in how the 4003 set_pte() patch was 
generated, plus other minor fixes.

Package-Manager: portage-2.2.20.1

 sys-kernel/mips-sources/Manifest  | 4 ++--
 .../{mips-sources-4.1.6.ebuild => mips-sources-4.1.6-r1.ebuild}   | 2 +-
 .../{mips-sources-4.2.0.ebuild => mips-sources-4.2.0-r1.ebuild}   | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/sys-kernel/mips-sources/Manifest b/sys-kernel/mips-sources/Manifest
index 65729af..aa091de 100644
--- a/sys-kernel/mips-sources/Manifest
+++ b/sys-kernel/mips-sources/Manifest
@@ -1,7 +1,7 @@
 DIST linux-4.1.tar.xz 83017828 SHA256 
caf51f085aac1e1cea4d00dbbf3093ead07b551fc07b31b2a989c05f8ea72d9f SHA512 
168ef84a4e67619f9f53f3574e438542a5747f9b43443363cb83597fcdac9f40d201625c66e375a23226745eaada9176eb006ca023613cec089349e91751f3c0
 WHIRLPOOL 
85fcfdb67ea7f865272a85d3b4c3ec1f5a1267f4664bf073c562bb3875e9d96ad68486259d8866a9aced98c95de16840ec531d89745aec75b7315a64ebe650b8
 DIST linux-4.2.tar.xz 85507784 SHA256 
cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb SHA512 
a87bbce3c0c6d810a41bbba1c0dcaae80dc38dded9f8571e97fa4ee5a468d655daf52d260911412f7c7da3171a5114e89d63da14b1753b9a3eb2cc38fd89b9ee
 WHIRLPOOL 
2058e664ee287cc03119ff3dd0155b7018b9c789a13a1012f190e516172f845dcb2d977c8e6a6951e9bd720e5e8cdfa3b888cce392c9b02780520e77475870d0
-DIST mips-sources-4.1.0-patches-v1.tar.xz 155512 SHA256 
4093fa9a36ed3ac513d3a1d2f321362ee1552361fcbffbfe666e9907bb8fe7b0 SHA512 
6a16f2461fed92686bdbcd86ae10c4a6ebcd1c0e38f7da9727f587bf4d129d1dec1e3c45fddc3c337d6ba9e0c07ac16f42b8eab4ecaa2c02f33786b5cc8cbcea
 WHIRLPOOL 
492076e979e017887ce545d8a1633a129d86ecd85d4e0221ea8a5d6271b959d3a1f02bf4d5045df97d7432787e4302db7226bc282733d56d119b4933646e8338
-DIST mips-sources-4.2.0-patches-v1.tar.xz 154572 SHA256 
5b22bdab634ebfabef9b680e1334ed600c36d0f2bac2692f763e538562aa3546 SHA512 
2c1d749f8bc20fdc62eb8f157e3a86e25fd2cb0d20b250a913bb99c14b3c693a726a99a082f8f3524f4c4da16ec89e62e244bcfe4285641d1e285188d7a3a42a
 WHIRLPOOL 
e4508a6a093add3a18d87b1e8762199a904365bb7b2173d53a2bd1798516221c56a5a24708478bba130bc3288e595167c59b2bea88b754c6c4431ee84c8ba2c4
+DIST mips-sources-4.1.0-patches-v2.tar.xz 155172 SHA256 
ee3dc9b0f21011a4304f90347568cf39faf97344b4ec22d3becbd1d10ca368bf SHA512 
ce385fbf4c82e0d09911cd411a1ba822066d750f6306c3fdfac35bfae23a61b8685fd873a5dd62255accee098fb29dbecf64d717de29f9fcf617c5fbf9468eda
 WHIRLPOOL 
fe90dd8e9a7bbf17615ec359ebee170d0a4efb9a1480d4ed6dbf29f945d6983fad2a991f455e3c28fddf2f0bd6eb49b637666cb6bf44ccc9f19ce1419a943396
+DIST mips-sources-4.2.0-patches-v2.tar.xz 154356 SHA256 
b0cbcdc1477afe9c80d03729463dff0f9bc0d47b14a2044e11643b6d2bf3ff64 SHA512 
09d09f5df4c47f4e097df5fe85c6af6412b40d52c7f66047dea002acb28faf7de5b26025526f976fcd57798ad8e976b044e58b669cb1ca7e32e8b3b92c3e0c16
 WHIRLPOOL 
39da84458e3e5e8069937697dfc4d4ccbd67aeb6a0971b2fc64757f01860c049d1babd06e5494675453cbc954c6750f702d878e98bc607028b6455ffdeb4
 DIST mipsgit-4.1.0-20150830.diff.xz 2172 SHA256 
1dc6449311b607f21f64f8051bb1b5a318c4827b71a1fbe619fec4198500e76e SHA512 
8f2724313e4a41a0492146ca9da8b7772688d4f71be4d4f75e0dc6e33ba0c8c47ecd2f1ca7916375afb8db9abae07fb19714e51c55a10f14a6a87488666a4870
 WHIRLPOOL 
41c51c3d40ee64f1a584e2d2ef08bf04c41b951a2d1db955edb65f2f3461573f9bb6226b646a8a0dbe812e112fdbab80915915c67d9f5c08c52e9e37704c0a7d
 DIST mipsgit-4.2.0-20150830.diff.xz 6676 SHA256 
15a45b998a3dae1adfc0a1efe8681f3dd006537d5a33e6dc9b1b0160e6fe7503 SHA512 
6d16263d34cb6865647d89ac6933f37fe063d74fd55e1db6911533dc8de5a55f9731d1e5b55eea030d51244e8d59244a0e9f8bda4c283d8684b74738a8dadf0d
 WHIRLPOOL 
7baa008a100e7dab569dbe9e234bf2d11408389db0e9d2eaef9b8823b4aeb0a39f713d28a4ca74606fdcafec2ba95a0c4eaf492ae0c5a7ec570440c35e35fd0f
 DIST patch-4.1.6.xz 201836 SHA256 
64e4deb16a279e233b0c91463b131bd0f3de6aabdb49efded8314bcf5dbfe070 SHA512 
1b725c2051d7dd9129c927fdb90d8d7a2e13149a2dd1175c5efacfc516e664af3647bca83d847197f8c19ef140bf07ea856868e27bef4a1cad9607e40b527424
 WHIRLPOOL 
cc685876a4bf84903720a7a311854b4b469d29e8f09303b8e05e82501c6bb105fe149eed78f14084bbd748bfbd13ad55a22277ac1ab17c497b6c5e0db64af0d6

diff --git a/sys-kernel/mips-sources/mips-sources-4.1.6.ebuild 
b/sys-kernel/mips-sources/mips-sources-4.1.6-r1.ebuild
similarity index 98%
rename from sys-kernel/mips-sources/mips-sources-4.1.6.ebuild
rename to sys-kernel/mips-sources/mips-sources-4.1.6-r1.ebuild
index f18e0d4..64ca1f0 100644
--- a/sys-kernel/mips-sources/mips-sources-4.1.6.ebuild
+++ b/sys-kernel/mips-sources/mips-sources-4.1.6-r1.ebuild
@@ -9,7 +9,7 @@ EAPI="5"
 
 # Version Data
 GITDATE="20150830" # Date of diff between kernel.or

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

2015-09-07 Thread Rafael Martins
commit: 29ce845f0f1a0e44a07e3fd127849c6973297938
Author: Rafael G. Martins  gentoo  org>
AuthorDate: Tue Sep  8 04:28:26 2015 +
Commit: Rafael Martins  gentoo  org>
CommitDate: Tue Sep  8 04:28:26 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29ce845f

dev-vcs/blogc-git-receiver: version bump.

Package-Manager: portage-2.2.20.1

 dev-vcs/blogc-git-receiver/Manifest | 2 +-
 ...it-receiver-0.1_beta4.ebuild => blogc-git-receiver-0.1_beta5.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/blogc-git-receiver/Manifest 
b/dev-vcs/blogc-git-receiver/Manifest
index f0eebf5..3e4aba7 100644
--- a/dev-vcs/blogc-git-receiver/Manifest
+++ b/dev-vcs/blogc-git-receiver/Manifest
@@ -1 +1 @@
-DIST blogc-git-receiver-0.1-beta.4.tar.xz 68456 SHA256 
a7e17c539d66092c6200cb4e3f9253176dc354c6d913a2415577547e6570d4ef SHA512 
04ef046c2df120c803014781ef04ddea752131f2b0c17d81d1891141e62aa5962aacc1f5be005ab102229a1e0cc4a5577eea00773622f448323ce1169578b7ea
 WHIRLPOOL 
1a5032f4d0a45e9f3de897363721a927db40916b31a9712289968c8404b7d6ab3d79ffad8ce272219f361407650a59a37615b31f05945449a9e39b084908b52f
+DIST blogc-git-receiver-0.1-beta.5.tar.xz 68584 SHA256 
761bdece93d5b9eacc76c8b561cede01d2acd29e1f52b91bab649246f1fb957a SHA512 
7d319bcd011f7444f0003934c9ad8538690b00c28c48cefb039746c70690b1811e583f282a935c93c37fe07d0dccf6a7c82846ab241d6807604c17e636d1dd53
 WHIRLPOOL 
df6e60062d13c90f91c658da6bfc9e5aaeaf23b0c37947f7c1d5f67ba32ad176f64847ced20385b841445bd1f5b9b81b9eb4f50502f1465dfe7ef069cb0aa4fe

diff --git a/dev-vcs/blogc-git-receiver/blogc-git-receiver-0.1_beta4.ebuild 
b/dev-vcs/blogc-git-receiver/blogc-git-receiver-0.1_beta5.ebuild
similarity index 100%
rename from dev-vcs/blogc-git-receiver/blogc-git-receiver-0.1_beta4.ebuild
rename to dev-vcs/blogc-git-receiver/blogc-git-receiver-0.1_beta5.ebuild



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

2015-09-07 Thread Jeroen Roovers
commit: 4515d3582079e5b8ce5a4cb4056f7dd4e7586f01
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:20:08 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:20:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4515d358

dev-libs/libgpg-error: Stable for HPPA (bug #552938).

Package-Manager: portage-2.2.20.1

 dev-libs/libgpg-error/libgpg-error-1.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libgpg-error/libgpg-error-1.19.ebuild 
b/dev-libs/libgpg-error/libgpg-error-1.19.ebuild
index 774fe38..3fe734b 100644
--- a/dev-libs/libgpg-error/libgpg-error-1.19.ebuild
+++ b/dev-libs/libgpg-error/libgpg-error-1.19.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~x86-interix ~amd64-linux ~arm-linux ~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 ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="common-lisp nls static-libs"
 
 RDEPEND="nls? ( >=virtual/libintl-0-r1[${MULTILIB_USEDEP}] )



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

2015-09-07 Thread Jeroen Roovers
commit: 34670cc1b0fb9f58e40a2f823d0a49a604d75e61
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:23:45 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:23:45 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34670cc1

app-eselect/eselect-pinentry: Stable for HPPA PPC64 (bug #552614).

Package-Manager: portage-2.2.20.1

 app-eselect/eselect-pinentry/eselect-pinentry-0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-eselect/eselect-pinentry/eselect-pinentry-0.6.ebuild 
b/app-eselect/eselect-pinentry/eselect-pinentry-0.6.ebuild
index 80cc759..152b984 100644
--- a/app-eselect/eselect-pinentry/eselect-pinentry-0.6.ebuild
+++ b/app-eselect/eselect-pinentry/eselect-pinentry-0.6.ebuild
@@ -10,7 +10,7 @@ SRC_URI=""
 
 LICENSE="GPL-2"
 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 
~x86-interix ~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 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND=">=app-eselect/eselect-lib-bin-symlink-0.1.1"



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

2015-09-07 Thread Jeroen Roovers
commit: 5c471a6e861bed7c734dc1f566eabc3d6336b6af
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:21:17 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:21:17 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c471a6e

app-crypt/pinentry: Stable for HPPA PPC64 (bug #552614).

Package-Manager: portage-2.2.20.1

 app-crypt/pinentry/pinentry-0.9.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/pinentry/pinentry-0.9.5.ebuild 
b/app-crypt/pinentry/pinentry-0.9.5.ebuild
index d5fa59e..ab15d4e 100644
--- a/app-crypt/pinentry/pinentry-0.9.5.ebuild
+++ b/app-crypt/pinentry/pinentry-0.9.5.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 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 
~x86-interix ~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 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="clipboard emacs gtk ncurses qt4 caps gnome-keyring static"
 
 RDEPEND="



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

2015-09-07 Thread Jeroen Roovers
commit: df951845d7a71dffd57ef7b92a75f4b830733d6e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:23:29 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:23:29 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df951845

app-crypt/gnupg: Stable for HPPA PPC64 (bug #552614).

Package-Manager: portage-2.2.20.1

 app-crypt/gnupg/gnupg-2.0.28.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/gnupg/gnupg-2.0.28.ebuild 
b/app-crypt/gnupg/gnupg-2.0.28.ebuild
index ebf5c46..3294b5c 100644
--- a/app-crypt/gnupg/gnupg-2.0.28.ebuild
+++ b/app-crypt/gnupg/gnupg-2.0.28.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnupg/gnupg/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 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="bzip2 doc ldap nls mta readline static selinux smartcard tools usb"
 
 COMMON_DEPEND_LIBS="



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

2015-09-07 Thread Jeroen Roovers
commit: 7b70ac47956349ea675ba8c1b902e014f280e2fd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:25:28 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:25:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b70ac47

dev-libs/libgcrypt: Stable for HPPA (bug #538488).

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.ebuild
index ba22306..e08a661 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.6.3-r4.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 +threads"
 
 RDEPEND=">=dev-libs/libgpg-error-1.12[${MULTILIB_USEDEP}]



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

2015-09-07 Thread Jeroen Roovers
commit: 317fdbc457ce7f1a18e485fa07aaecefa9121abd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:22:16 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:22:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=317fdbc4

dev-libs/libassuan: Stable for HPPA PPC64 (bug #552614).

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-libs/libassuan/libassuan-2.2.1.ebuild 
b/dev-libs/libassuan/libassuan-2.2.1.ebuild
index d1e4138..dae3724 100644
--- a/dev-libs/libassuan/libassuan-2.2.1.ebuild
+++ b/dev-libs/libassuan/libassuan-2.2.1.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: net-libs/gnutls/

2015-09-07 Thread Jeroen Roovers
commit: 84ec621d2543dab60daa43d7fbfc71c54ae7c6fa
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Tue Sep  8 04:26:20 2015 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Tue Sep  8 04:26:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84ec621d

net-libs/gnutls: Stable for HPPA PPC64 (bug #559120).

Package-Manager: portage-2.2.20.1

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

diff --git a/net-libs/gnutls/gnutls-3.3.17.1.ebuild 
b/net-libs/gnutls/gnutls-3.3.17.1.ebuild
index bd5b6c1..8555249 100644
--- a/net-libs/gnutls/gnutls-3.3.17.1.ebuild
+++ b/net-libs/gnutls/gnutls-3.3.17.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://gnupg/gnutls/v$(get_version_component_range 
1-2)/${P}.tar.xz"
 # soon to be relicensed as LGPL-2.1 unless heartbeat extension enabled.
 LICENSE="GPL-3 LGPL-3"
 SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
 IUSE_LINGUAS=" en cs de fi fr it ms nl pl sv uk vi zh_CN"
 IUSE="+cxx +crywrap dane doc examples guile nls +openssl pkcs11 static-libs 
test zlib ${IUSE_LINGUAS// / linguas_}"
 # heartbeat support is not disabled until re-licensing happens fullyf



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

2015-09-07 Thread Michael Palimaka
commit: d8afe20737c42093467486328b1f800e742a4fb5
Author: Michael Palimaka  gentoo  org>
AuthorDate: Tue Sep  8 03:39:47 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Sep  8 03:39:47 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d8afe207

kde-apps/kwalletd: add missing dependency.

Package-Manager: portage-2.2.20.1

 kde-apps/kwalletd/kwalletd-15.08.49..ebuild | 1 +
 kde-apps/kwalletd/kwalletd-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/kde-apps/kwalletd/kwalletd-15.08.49..ebuild 
b/kde-apps/kwalletd/kwalletd-15.08.49..ebuild
index 2259d95..b39161b 100644
--- a/kde-apps/kwalletd/kwalletd-15.08.49..ebuild
+++ b/kde-apps/kwalletd/kwalletd-15.08.49..ebuild
@@ -12,6 +12,7 @@ KEYWORDS=""
 IUSE="debug gpg"
 
 DEPEND="
+   dev-libs/libgcrypt:0=
gpg? (
app-crypt/gpgme
|| ( $(add_kdeapps_dep gpgmepp) $(add_kdebase_dep kdepimlibs) )

diff --git a/kde-apps/kwalletd/kwalletd-.ebuild 
b/kde-apps/kwalletd/kwalletd-.ebuild
index 2259d95..b39161b 100644
--- a/kde-apps/kwalletd/kwalletd-.ebuild
+++ b/kde-apps/kwalletd/kwalletd-.ebuild
@@ -12,6 +12,7 @@ KEYWORDS=""
 IUSE="debug gpg"
 
 DEPEND="
+   dev-libs/libgcrypt:0=
gpg? (
app-crypt/gpgme
|| ( $(add_kdeapps_dep gpgmepp) $(add_kdebase_dep kdepimlibs) )



[gentoo-commits] proj/catalyst:master commit in: targets/stage1/

2015-09-07 Thread Richard Farina
commit: b25875dc87683b6790d7ad1b5e067f1f9bbd1ae5
Author: Rick Farina (Zero_Chaos)  gentoo  org>
AuthorDate: Tue Sep  8 02:59:00 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Tue Sep  8 02:59:00 2015 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=b25875dc

fix 6d795daf6d86779b17206f8a558bfcac44822a6b as caught by dol-sen

 targets/stage1/stage1-chroot.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/targets/stage1/stage1-chroot.sh b/targets/stage1/stage1-chroot.sh
index f77bd9f..fbda84b 100755
--- a/targets/stage1/stage1-chroot.sh
+++ b/targets/stage1/stage1-chroot.sh
@@ -7,7 +7,7 @@ export clst_buildpkgs="$(/tmp/build.py)"
 
 # Setup our environment
 [ -n "${clst_BINDIST}" ] && BINDIST="bindist"
-BOOTSTRAP_USE="${BOOTSTRAP_USE} ${BINDIST}"
+BOOTSTRAP_USE="$(portageq envvar BOOTSTRAP_USE) ${BINDIST}"
 
 FEATURES="${clst_myfeatures} nodoc noman noinfo -news"
 



[gentoo-commits] proj/kde:master commit in: media-plugins/kipi-plugins/

2015-09-07 Thread Michael Palimaka
commit: 902318960af00f79acaf1c0cf486988e95eddaec
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Sep  5 21:16:06 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Sep  8 02:50:20 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=90231896

media-plugins/kipi-plugins: Drop media-libs/herqq DEPEND

Package-Manager: portage-2.2.20.1

 media-plugins/kipi-plugins/kipi-plugins-.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/media-plugins/kipi-plugins/kipi-plugins-.ebuild 
b/media-plugins/kipi-plugins/kipi-plugins-.ebuild
index 435051c..ce36d7d 100644
--- a/media-plugins/kipi-plugins/kipi-plugins-.ebuild
+++ b/media-plugins/kipi-plugins/kipi-plugins-.ebuild
@@ -43,7 +43,6 @@ fi
 #  >=media-libs/qt-gstreamer-0.9.0[qt5(+)]
 #  || ( media-gfx/imagemagick 
media-gfx/graphicsmagick[imagemagick] )
 #  )
-#  FIXME? media-libs/herqq not optional since >=5.0.0
 
 COMMONDEPEND="
$(add_frameworks_dep karchive)
@@ -78,7 +77,6 @@ COMMONDEPEND="
kde-apps/libkdcraw:5=
kde-apps/libkexiv2:5=
kde-apps/libkipi:5=
-   media-libs/herqq
media-libs/libpng:0=
media-libs/tiff:0
virtual/jpeg:0



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

2015-09-07 Thread Michael Palimaka
commit: b3f4cd63856a19ec8eec209d6e328f0ea9abd67b
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Tue Sep  8 02:46:35 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Sep  8 02:47:34 2015 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b3f4cd63

kde-apps/konsole: Fix blocker

Package-Manager: portage-2.2.20.1

 kde-apps/konsole/konsole-15.08.49..ebuild | 2 +-
 kde-apps/konsole/konsole-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/konsole/konsole-15.08.49..ebuild 
b/kde-apps/konsole/konsole-15.08.49..ebuild
index e33058e..b79a479 100644
--- a/kde-apps/konsole/konsole-15.08.49..ebuild
+++ b/kde-apps/konsole/konsole-15.08.49..ebuild
@@ -49,7 +49,7 @@ DEPEND="
X? ( x11-libs/libX11 )
 "
 RDEPEND="${DEPEND}
-   !kde-apps/konsole:4[-minimal(+),handbook]
+   !kde-apps/konsole:4[-minimal(-),handbook]
 "
 
 src_configure() {

diff --git a/kde-apps/konsole/konsole-.ebuild 
b/kde-apps/konsole/konsole-.ebuild
index e33058e..b79a479 100644
--- a/kde-apps/konsole/konsole-.ebuild
+++ b/kde-apps/konsole/konsole-.ebuild
@@ -49,7 +49,7 @@ DEPEND="
X? ( x11-libs/libX11 )
 "
 RDEPEND="${DEPEND}
-   !kde-apps/konsole:4[-minimal(+),handbook]
+   !kde-apps/konsole:4[-minimal(-),handbook]
 "
 
 src_configure() {



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

2015-09-07 Thread Michael Palimaka
commit: 63616cff8613b3ef251fd62c60b2163971fc5b41
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Sep  6 16:58:38 2015 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Tue Sep  8 02:46:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63616cff

kde-apps/konsole: Fix blocker

Package-Manager: portage-2.2.20.1

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

diff --git a/kde-apps/konsole/konsole-15.08.0.ebuild 
b/kde-apps/konsole/konsole-15.08.0.ebuild
index ab75c48..5f90ede 100644
--- a/kde-apps/konsole/konsole-15.08.0.ebuild
+++ b/kde-apps/konsole/konsole-15.08.0.ebuild
@@ -49,7 +49,7 @@ DEPEND="
X? ( x11-libs/libX11 )
 "
 RDEPEND="${DEPEND}
-   !kde-apps/konsole:4[-minimal(+),handbook]
+   !kde-apps/konsole:4[-minimal(-),handbook]
 "
 
 src_configure() {



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

2015-09-07 Thread Ian Delaney
commit: 2d143ddb0ff0564220c26e0151a48ea9df779727
Author: Ian Delaney  gentoo  org>
AuthorDate: Tue Sep  8 01:35:36 2015 +
Commit: Ian Delaney  gentoo  org>
CommitDate: Tue Sep  8 01:35:36 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d143ddb

sys-apps/likwid: set SRC_URI to devspace, fixes bug #559522

Package-Manager: portage-2.2.20

 sys-apps/likwid/Manifest| 2 +-
 sys-apps/likwid/likwid-4.0.1.ebuild | 5 -
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/sys-apps/likwid/Manifest b/sys-apps/likwid/Manifest
index 448cb7b..2b503e5 100644
--- a/sys-apps/likwid/Manifest
+++ b/sys-apps/likwid/Manifest
@@ -1,2 +1,2 @@
 DIST likwid-3.1.3.tar.gz 605675 SHA256 
05078ec55dce3d4cf1c94832bd289ccbcaee7bdee9a1ea9f6681ccd3f59ece5b SHA512 
e31b4498e702d4ddf61e3c123d43f0804ef4cef149bb3732b61e3894aa9d76feb7a2654bbb0467dd30323031122ea01cf17e4f01a33f193e750cdbdfc09741d7
 WHIRLPOOL 
bccfcc68e792f09a66eab99affa81250fbe34d4759a81a4e0bd0af2535e5bb09229bee4bc165986559d14101183e5be9a933273ec9f1a7c5c8da3f97f07f9e8e
-DIST likwid-4.0.1.tar.gz 1429223 SHA256 
c04551a2264389f4a88cb2757efdcb0a8d3c3fd9851020d0827a90b68b8c36e3 SHA512 
fdc0eaf102814d53efdabb12d90f4baeec9d190f9808e3fcf5a6785136a7cf9fd0789cf64417cd52c7288a50a4284f8e44463c16410c2b0e4ef3ce3790c61b86
 WHIRLPOOL 
9a944b77ebb60d5283c2c42c44dabeb6dc8837d64a4e2d90d0878ab60c5b3b3d7e55cbfbbe7fcc075edcc83d4d980f689a8ed6b5f3a5051c6af824d624b1dbd6
+DIST likwid-4.0.1.tar.gz 1409079 SHA256 
ab384e585d99a7404075c48f78a08e892a75db12c348da6622ed0536a0a05c7f SHA512 
f164a244e56afdc4409790b75f3cb4ea49cc91f7a210590de426f429db5717eed9691263580008cf69997be56a63009224012ee48c55f05b112f96cfca81c52e
 WHIRLPOOL 
59392e6a2057fb9f9aa70b7cc0594ca7a665171b8a2302ddd9350930571596f14e5c9753d132eddb750ef8503330b4f456158fae7a99705c36e7aac80afa6bb2

diff --git a/sys-apps/likwid/likwid-4.0.1.ebuild 
b/sys-apps/likwid/likwid-4.0.1.ebuild
index 52c115c..0c25cb3 100644
--- a/sys-apps/likwid/likwid-4.0.1.ebuild
+++ b/sys-apps/likwid/likwid-4.0.1.ebuild
@@ -10,7 +10,8 @@ inherit eutils fcaps linux-info multilib fortran-2
 
 DESCRIPTION="A performance-oriented tool suite for x86 multicore environments"
 HOMEPAGE="https://github.com/rrze-likwid/likwid";
-SRC_URI="https://github.com/rrze-likwid/likwid/archive/likwid-${PV}.tar.gz";
+# Upstream have made a habit of making changes to the tagged realesed tarball
+SRC_URI="https://dev.gentoo.org/~idella4/tarballs/likwid-${PV}.tar.gz";
 
 LICENSE="GPL-3"
 SLOT="0"
@@ -24,6 +25,8 @@ DEPEND="${RDEPEND}
fortran? ( sys-devel/gcc:*[fortran] )
dev-lang/lua:0"
 
+RESTRICT="mirror"
+
 CONFIG_CHECK="~X86_MSR"
 
 FILECAPS=(



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

2015-09-07 Thread Matt Thode
commit: 6d7fdaee3ba8d986a4d26fc881bc2c88f86b2179
Author: Matthew Thode  gentoo  org>
AuthorDate: Tue Sep  8 01:29:00 2015 +
Commit: Matt Thode  gentoo  org>
CommitDate: Tue Sep  8 01:29:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d7fdaee

net-analyzer/icinga2: fixing the glaring bug

Package-Manager: portage-2.2.20.1

 net-analyzer/icinga2/icinga2-2.3.10-r1.ebuild | 133 ++
 1 file changed, 133 insertions(+)

diff --git a/net-analyzer/icinga2/icinga2-2.3.10-r1.ebuild 
b/net-analyzer/icinga2/icinga2-2.3.10-r1.ebuild
new file mode 100644
index 000..fc4c95a
--- /dev/null
+++ b/net-analyzer/icinga2/icinga2-2.3.10-r1.ebuild
@@ -0,0 +1,133 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit cmake-utils depend.apache eutils systemd toolchain-funcs user
+
+DESCRIPTION="Distributed, general purpose, network monitoring engine"
+HOMEPAGE="http://icinga.org/icinga2";
+SRC_URI="https://github.com/Icinga/icinga2/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+mysql postgres classicui minimal nano-syntax +plugins +vim-syntax"
+
+DEPEND="
+   dev-libs/openssl:0
+   >=dev-libs/boost-1.41
+   sys-devel/bison
+   >=sys-devel/flex-2.5.35
+   mysql? ( virtual/mysql )
+   postgres? ( dev-db/postgresql:= )"
+
+RDEPEND="
+   ${DEPEND}
+   plugins? ( || (
+   net-analyzer/monitoring-plugins
+   net-analyzer/nagios-plugins
+   ) )
+   classicui? ( net-analyzer/icinga[web] )"
+
+REQUIRED_USE="!minimal? ( || ( mysql postgres ) )"
+
+want_apache2
+
+pkg_setup() {
+   depend.apache_pkg_setup
+   enewgroup icinga
+   enewgroup icingacmd
+   enewgroup nagios  # for plugins
+   enewuser icinga -1 -1 /var/lib/icinga2 "icinga,icingacmd,nagios"
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DICINGA2_UNITY_BUILD=FALSE
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   -DCMAKE_INSTALL_PREFIX=/usr
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc
+   -DCMAKE_INSTALL_LOCALSTATEDIR=/var
+   -DICINGA2_SYSCONFIGFILE=/etc/conf.d/icinga2
+   -DICINGA2_USER=icinga
+   -DICINGA2_GROUP=icingacmd
+   -DICINGA2_COMMAND_USER=icinga
+   -DICINGA2_COMMAND_GROUP=icingacmd
+   -DINSTALL_SYSTEMD_SERVICE_AND_INITSCRIPT=yes
+   )
+   # default to off if minimal, allow the flags to be set otherwise
+   if use minimal; then
+   mycmakeargs+=(
+   -DICINGA2_WITH_MYSQL=OFF
+   -DICINGA2_WITH_PGSQL=OFF
+   )
+   else
+   mycmakeargs+=(
+   -DICINGA2_WITH_PGSQL=$(usex postgres ON OFF)
+   -DICINGA2_WITH_MYSQL=$(usex mysql ON OFF)
+   )
+   fi
+   cmake-utils_src_configure
+}
+
+src_install() {
+   BUILDDIR="${WORKDIR}"/icinga2-${PV}_build
+   cd $BUILDDIR
+
+   emake DESTDIR="${D}" install
+
+   einstalldocs
+
+   newinitd "${FILESDIR}"/icinga2.initd icinga2
+   newconfd "${FILESDIR}"/icinga2.confd icinga2
+
+   if use mysql ; then
+   docinto schema
+   newdoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_mysql/schema/mysql.sql mysql.sql
+   docinto schema/upgrade
+   dodoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_mysql/schema/upgrade/*
+   elif use postgres ; then
+   docinto schema
+   newdoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_pgsql/schema/pgsql.sql pgsql.sql
+   docinto schema/upgrade
+   dodoc 
"${WORKDIR}"/icinga2-${PV}/lib/db_ido_pgsql/schema/upgrade/*
+   fi
+
+   keepdir /etc/icinga2
+   keepdir /var/lib/icinga2/api/zones
+   keepdir /var/lib/icinga2/api/repository
+   keepdir /var/lib/icinga2/api/log
+   keepdir /var/spool/icinga2/perfdata
+
+   rm -r "${D}/var/run" || die "failed to remove /var/run"
+   rm -r "${D}/var/cache" || die "failed to remove /var/cache"
+
+   fowners icinga:icinga /etc/icinga2
+   fowners icinga:icinga /var/lib/icinga2
+   fowners icinga:icinga /var/spool/icinga2
+   fowners icinga:icinga /var/spool/icinga2/perfdata
+   fowners icinga:icingacmd /var/log/icinga2
+
+   fperms ug+rwX,o-rwx /etc/icinga2
+   fperms ug+rwX,o-rwx /var/lib/icinga2
+   fperms ug+rwX,o-rwx /var/spool/icinga2
+   fperms ug+rwX,o-rwx /var/log/icinga2
+
+   if use vim-syntax; then
+   insinto /usr/share/vim/vimfiles
+   doins -r "${WORKDIR}"/${P}/tools/syntax/vim/ftdetect
+   doins -r "${WORKDIR}"/${P}/tools/syntax/vim/syntax
+   fi
+
+   if use nano-syntax; then
+   insinto /usr/share/nano
+   doins "${WORKD

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

2015-09-07 Thread Manuel Rüger
commit: b2f4eab5e408c3c09f5cb795685b80fcda715fe1
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep  8 01:17:55 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep  8 01:17:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2f4eab5

dev-ruby/rspectacular: Version bump

Package-Manager: portage-2.2.20.1

 dev-ruby/rspectacular/Manifest   |  1 +
 dev-ruby/rspectacular/rspectacular-0.64.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-ruby/rspectacular/Manifest b/dev-ruby/rspectacular/Manifest
index 3130382..cffe851 100644
--- a/dev-ruby/rspectacular/Manifest
+++ b/dev-ruby/rspectacular/Manifest
@@ -1,3 +1,4 @@
 DIST rspectacular-0.61.0.gem 14336 SHA256 
fffd8099063f110244314aa87e20058899d8dca15378eb4de21f740c2c0c4f82 SHA512 
bdabc855ea9bb0cdcb222de47773be6d9ea2d9208bef416e3ab24195a16fc59b2d1af045b9c59851f87dd3ce7cc0ffe479d9ac5e07f4b5418c530dd3a8f7c922
 WHIRLPOOL 
0b3d98b3ec2991ce70d0a8d50f769f1715353fb9760ae1a7b23e7f53f7793b6bf702e640eaf95f36b9cb9647570d6c44cac634129dadd21dab6b0954728a19b6
 DIST rspectacular-0.62.1.gem 15360 SHA256 
2a5e394b96f56ad5f96dbd491666ea96d3ec542815cf3fc6b206bb14141508ca SHA512 
60579982d6551b355648237acb0eeb962bf61afe11049fd25e86dc9305612896453edb139ea73e42af0149aa80b39b04ea8698b016bbafb6e197e6a0315da0ba
 WHIRLPOOL 
7766e6e67fbdd757046640d92faaf862241e0d4e4d66146eb1797a0f134b9db423f92baa8b69d5aa35ac8b000f23e56c6ecb833506182f081ccbc19c31be25b6
 DIST rspectacular-0.63.0.gem 15360 SHA256 
2bd2ffda1727f789815fdc8bc3e6833de0b13d050eee09e1e82218fd20cdb51d SHA512 
9e41f8b94542f7f82554b6473452ce23c81f15994f0b260dc7def3ada7bbbab2e4e65be57c42db6df04bb8dd98efd4ba40cf9c866814aa6812a6485d8d7c623f
 WHIRLPOOL 
09463a228625d75949ffc909142d35d2d5e95e610e3949828426cb0acd3da981732e5e1c2dfcb7cb12dfc17302cb13cf12473aefac9c41a3f9b6fa367d2d2387
+DIST rspectacular-0.64.0.gem 15360 SHA256 
280a50e4dc11198ccd68873ddd365c460ebbd3335e96ed842f331d731bb74412 SHA512 
7fdd7d7c339d368a80dc8c1b200d627dc74a1467d540ee5fbd7652b36af15057491f89721387e9138b1c3f48fcc5938204cebb0bcc51e10bf90a8c2ff9094732
 WHIRLPOOL 
84aecdb41e62a71de39b3f9820b1a4c53a1e56f8dadb6a23b4b193d056ec7f51fe25bf53f2c4d38b622c89721cb0a49cb98da0acd38145968df16c9351b9228e

diff --git a/dev-ruby/rspectacular/rspectacular-0.64.0.ebuild 
b/dev-ruby/rspectacular/rspectacular-0.64.0.ebuild
new file mode 100644
index 000..70fe331
--- /dev/null
+++ b/dev-ruby/rspectacular/rspectacular-0.64.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_TASK_TEST=""
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem
+
+DESCRIPTION="RSpec support and matchers"
+HOMEPAGE="https://github.com/thekompanee/rspectacular";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/rspec-3.1:3 dev-ruby/fuubar:2"



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

2015-09-07 Thread Manuel Rüger
commit: 2b08814669008879ca769e621feeb03685f9f87a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep  8 01:11:46 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep  8 01:11:46 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b088146

dev-ruby/pg: Version bump

Package-Manager: portage-2.2.20.1

 dev-ruby/pg/Manifest |  1 +
 dev-ruby/pg/pg-0.18.3.ebuild | 63 
 2 files changed, 64 insertions(+)

diff --git a/dev-ruby/pg/Manifest b/dev-ruby/pg/Manifest
index fda7d2a..5c9a9ce 100644
--- a/dev-ruby/pg/Manifest
+++ b/dev-ruby/pg/Manifest
@@ -1,2 +1,3 @@
 DIST pg-0.17.1.gem 142848 SHA256 
e7933e8f7f184c28e820ed85ddfb3ad8a13933b2b2ab8656aa8f81cb0aa610a6 SHA512 
fb637256d084af3b41ba4130f866924df957a63c29d029b5bf553e545b3d4064e682b00d0604bf495a853a8800b9c8eba34718e96c651c9a697281ae4a62
 WHIRLPOOL 
81e0a99d023a49b29b8be1b11290cd0f102cec92adc63a8ed10e215dcd3ef43b8ce5e1916d0f155790e9304670bb0c96921346663798acb5fb973e47fdadfe9f
 DIST pg-0.18.2.gem 216576 SHA256 
ee4e81f2cdb397d866f15c54f057f1172c8098dc5a8d1ce2883806198d5bbdab SHA512 
14707bc4e1c5700cf30b0541c14d31681986c7574281ea878a1d17f89a8986abdd00c7c64c763b56bf675fe0b9be177c4ca9822842cee75a2b57cad49d396a4f
 WHIRLPOOL 
66f2fb4d13ee6da34112cacdd0d4be19a99345b3e17301cd154541e12cb9e799383257584e6cd7bdf60a9f6b888be3ecdefa12d1a7729b7901362ce390d4fad5
+DIST pg-0.18.3.gem 218624 SHA256 
0cbddb3e2d36b5db262abc1f12a17e1e972f2778c056729f61d6bf1e1b1ce301 SHA512 
dc4152dd7b546f3e182075ecd9086ca88c462b570d948f7879de8084e36f19fc6256ab8e5b3ac2ff267f43998a99f44c159c84af47e6637fa14b2aa16f14b139
 WHIRLPOOL 
8ca2b8613ce6725c92466d83bec37f577f7c6ecad0acc08eeb6c91325c8f936d17a5fb77b25dd659db1a3ebd21cc246016424c65d483da771e3657b2fe157ea8

diff --git a/dev-ruby/pg/pg-0.18.3.ebuild b/dev-ruby/pg/pg-0.18.3.ebuild
new file mode 100644
index 000..f78c192
--- /dev/null
+++ b/dev-ruby/pg/pg-0.18.3.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+# ruby19 test fail
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_TASK_DOC="docs"
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="ChangeLog Contributors.rdoc README.rdoc History.rdoc"
+
+inherit multilib ruby-fakegem
+
+DESCRIPTION="Ruby extension library providing an API to PostgreSQL"
+HOMEPAGE="https://bitbucket.org/ged/ruby-pg/";
+
+LICENSE="|| ( GPL-2 Ruby )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+RDEPEND+=" dev-db/postgresql"
+DEPEND+=" dev-db/postgresql
+   test? ( >=dev-db/postgresql-9.4[server,threads] )"
+
+ruby_add_bdepend "
+   doc? (
+   dev-ruby/hoe
+   || ( >=dev-ruby/yard-0.6.1 dev-ruby/rdoc ) )"
+
+all_ruby_prepare() {
+   # hack the Rakefile to make it sure that it doesn't load
+   # rake-compiler (so that we don't have to depend on it and it
+   # actually works when building with USE=doc).
+   sed -i \
+   -e '/Rakefile.cross/s:^:#:' \
+   -e '/ExtensionTask/,/^end$/ s:^:#:' \
+   Rakefile || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -C ext extconf.rb || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   emake V=1 -C ext CFLAGS="${CFLAGS} -fPIC" archflag="${LDFLAGS}"
+   cp ext/*$(get_libname) lib || die
+}
+
+each_ruby_test() {
+   if [[ "${EUID}" -ne "0" ]]; then
+   # Make the rspec call explicit, this way we don't have to depend
+   # on rake-compiler (nor rubygems) _and_ we don't have to rebuild
+   # the whole extension from scratch.
+   RSPEC_VERSION=3 ruby-ng_rspec
+   else
+   ewarn "The userpriv feature must be enabled to run tests."
+   eerror "Testsuite will not be run."
+   fi
+}



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

2015-09-07 Thread Manuel Rüger
commit: e57e178627a8333d376cd6e4678e201b971b77f6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep  8 00:32:44 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep  8 00:32:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e57e1786

dev-util/jenkins-bin: Remove old

Package-Manager: portage-2.2.20.1

 dev-util/jenkins-bin/Manifest   |  3 --
 dev-util/jenkins-bin/jenkins-bin-1.609.1.ebuild | 47 -
 dev-util/jenkins-bin/jenkins-bin-1.609.2.ebuild | 47 -
 dev-util/jenkins-bin/jenkins-bin-1.626.ebuild   | 47 -
 4 files changed, 144 deletions(-)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index aa1b793..816a885 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,6 +1,3 @@
-DIST jenkins-bin-1.609.1.war 68908995 SHA256 
7e150cc9dd3d9089d82fecbf5b1d0ffa5cc33782637338c418c324715e329bd5 SHA512 
909496a0b3757c8187cf9bad6374ea4faf57979eafcd91d9793d57bcc3bfc7e821755fbc321a104b14acc2ddbd319c30e40cc52fb0456eeea4ad2f23d9d6ae1c
 WHIRLPOOL 
951f2307d439c22b202082614b16df201b61ca0478eb2666aaba9a1140a6323eee3193dc38586c222424ea1d63431e8aee228523714837a5889f1703620ca932
-DIST jenkins-bin-1.609.2.war 68976099 SHA256 
60e775b1d5df417370a1768496fa3ccc9d17f9a093bf87f543765f9d4e401578 SHA512 
f8d58fc5d8bb094932823ec40e53ef71412c44de2a82478fbc53c9f87e724597ab5afcba79fb776e69a42dd66529f0c31e875fafc305d411533dfb33afeb1948
 WHIRLPOOL 
107f47e16f91d98119564545d4b6c078d343690da558c7080471d4f0e3633b954257c290cc85200500165e2f145e7742509a27aa82cf2c9ea279ef27af3461d6
 DIST jenkins-bin-1.609.3.war 69019876 SHA256 
d5017fc3db8ac118dcd28c33e8414bd036ed236d8011276f683a074422a4c4d0 SHA512 
94518086d10a3edc6b3f2e9969cd21a1bdc98cf1ba4bd9bc5fd972afa0ce6aa77831a825e6fd9d6888dada5775b95c0f8a52c72bde34d4c8369434c0f0fb0e59
 WHIRLPOOL 
7d4164af81cf9c6707b2482cd08eec309f5e5087eb10b42acc5c83ede38eb15818b99c8997e87272ac76fb97f5497d23ced92f65ca62cf4eda5272dd60dcee4a
-DIST jenkins-bin-1.626.war 62885591 SHA256 
e6df4d44f1110d1095b4e05c0d574f1120ac4f7bf943fba99c22edff0127c110 SHA512 
7ca6c358d520f84380db74606e433db33bf2dad777e4386ca31bb22ae327aec209308d74214a391d9b1466ab01fca4eae1c93243212deefa4a5ca1d6dc3d718d
 WHIRLPOOL 
6b5dfb86e2f62c97d695ec517457fa0d89a31e6f272cf25cf134efdb4654791707973a8944c7f0b52aaa649eaf5b9b098bdb5b0d50637919db23842fe93f9fca
 DIST jenkins-bin-1.627.war 63251728 SHA256 
9fc74aea24d806fb8810e2573793cc280bdcef8c3ac6f0e76dc242290d7773ad SHA512 
bf588377ae8910b5cc9db42bc177aaf4d714c9433b851cb8daef3e592844dd8f17ecfbc9f9e6e989d9033feacaaaf05ead3537bf61163335e25001499acfe6d1
 WHIRLPOOL 
156c9c713a24c373bd5857e68a275a5bb671844181fb62b389a2a0e787a7bd3a1489f3b4b0328bfb6c2b3c040a35068beed389c964c60dcec0ed958de54858bf
 DIST jenkins-bin-1.628.war 63208813 SHA256 
e11227ad247ad3a938219cd2653adfb266ad54618d1839e63fd0e0e54852d6c7 SHA512 
573585a085d9b2aab3eb2f2a8333deba31f6706ba1b7a8ba249c7b8eec76881908f8302cf6766d4243b380da8e093c577c9251113424c77251e73bae73bf6e20
 WHIRLPOOL 
3af13e26624a70714dd75d1d65654d05bc9f8ebba9b21688e955e1375cb38608fe1454d09ceaa138ff5b0298bf245ce9dba043add9e57909baf661cb5cb5ef59

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.609.1.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.609.1.ebuild
deleted file mode 100644
index b3839a9..000
--- a/dev-util/jenkins-bin/jenkins-bin-1.609.1.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit user systemd
-
-DESCRIPTION="Extensible continuous integration server"
-HOMEPAGE="http://jenkins-ci.org/";
-LICENSE="MIT"
-SRC_URI="http://mirrors.jenkins-ci.org/war-stable/${PV}/${PN/-bin/}.war -> 
${P}.war"
-RESTRICT="mirror"
-SLOT="lts"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="media-fonts/dejavu
-   media-libs/freetype
-   !dev-util/jenkins-bin:0
-   virtual/jre"
-
-S=${WORKDIR}
-
-JENKINS_DIR=/var/lib/jenkins
-
-pkg_setup() {
-   enewgroup jenkins
-   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
-}
-
-src_install() {
-   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
-
-   insinto /opt/jenkins
-   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
-
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
-
-   newinitd "${FILESDIR}"/${PN}.init2 jenkins
-   newconfd "${FILESDIR}"/${PN}.confd jenkins
-
-   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
-
-   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
-}

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.609.2.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.609.2.ebuild
deleted file mode 100644
index b3839a9..000
--- a/dev-util/jenkins-bin/jenkins-bin-1.609.2.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed 

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

2015-09-07 Thread Manuel Rüger
commit: 0977425865c8b392c56c96e9d9aed1f81f6915af
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep  8 00:32:12 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep  8 00:32:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09774258

dev-util/jenkins-bin: Version bump

Package-Manager: portage-2.2.20.1

 dev-util/jenkins-bin/Manifest   |  1 +
 dev-util/jenkins-bin/jenkins-bin-1.609.3.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index fbe61f8..aa1b793 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,5 +1,6 @@
 DIST jenkins-bin-1.609.1.war 68908995 SHA256 
7e150cc9dd3d9089d82fecbf5b1d0ffa5cc33782637338c418c324715e329bd5 SHA512 
909496a0b3757c8187cf9bad6374ea4faf57979eafcd91d9793d57bcc3bfc7e821755fbc321a104b14acc2ddbd319c30e40cc52fb0456eeea4ad2f23d9d6ae1c
 WHIRLPOOL 
951f2307d439c22b202082614b16df201b61ca0478eb2666aaba9a1140a6323eee3193dc38586c222424ea1d63431e8aee228523714837a5889f1703620ca932
 DIST jenkins-bin-1.609.2.war 68976099 SHA256 
60e775b1d5df417370a1768496fa3ccc9d17f9a093bf87f543765f9d4e401578 SHA512 
f8d58fc5d8bb094932823ec40e53ef71412c44de2a82478fbc53c9f87e724597ab5afcba79fb776e69a42dd66529f0c31e875fafc305d411533dfb33afeb1948
 WHIRLPOOL 
107f47e16f91d98119564545d4b6c078d343690da558c7080471d4f0e3633b954257c290cc85200500165e2f145e7742509a27aa82cf2c9ea279ef27af3461d6
+DIST jenkins-bin-1.609.3.war 69019876 SHA256 
d5017fc3db8ac118dcd28c33e8414bd036ed236d8011276f683a074422a4c4d0 SHA512 
94518086d10a3edc6b3f2e9969cd21a1bdc98cf1ba4bd9bc5fd972afa0ce6aa77831a825e6fd9d6888dada5775b95c0f8a52c72bde34d4c8369434c0f0fb0e59
 WHIRLPOOL 
7d4164af81cf9c6707b2482cd08eec309f5e5087eb10b42acc5c83ede38eb15818b99c8997e87272ac76fb97f5497d23ced92f65ca62cf4eda5272dd60dcee4a
 DIST jenkins-bin-1.626.war 62885591 SHA256 
e6df4d44f1110d1095b4e05c0d574f1120ac4f7bf943fba99c22edff0127c110 SHA512 
7ca6c358d520f84380db74606e433db33bf2dad777e4386ca31bb22ae327aec209308d74214a391d9b1466ab01fca4eae1c93243212deefa4a5ca1d6dc3d718d
 WHIRLPOOL 
6b5dfb86e2f62c97d695ec517457fa0d89a31e6f272cf25cf134efdb4654791707973a8944c7f0b52aaa649eaf5b9b098bdb5b0d50637919db23842fe93f9fca
 DIST jenkins-bin-1.627.war 63251728 SHA256 
9fc74aea24d806fb8810e2573793cc280bdcef8c3ac6f0e76dc242290d7773ad SHA512 
bf588377ae8910b5cc9db42bc177aaf4d714c9433b851cb8daef3e592844dd8f17ecfbc9f9e6e989d9033feacaaaf05ead3537bf61163335e25001499acfe6d1
 WHIRLPOOL 
156c9c713a24c373bd5857e68a275a5bb671844181fb62b389a2a0e787a7bd3a1489f3b4b0328bfb6c2b3c040a35068beed389c964c60dcec0ed958de54858bf
 DIST jenkins-bin-1.628.war 63208813 SHA256 
e11227ad247ad3a938219cd2653adfb266ad54618d1839e63fd0e0e54852d6c7 SHA512 
573585a085d9b2aab3eb2f2a8333deba31f6706ba1b7a8ba249c7b8eec76881908f8302cf6766d4243b380da8e093c577c9251113424c77251e73bae73bf6e20
 WHIRLPOOL 
3af13e26624a70714dd75d1d65654d05bc9f8ebba9b21688e955e1375cb38608fe1454d09ceaa138ff5b0298bf245ce9dba043add9e57909baf661cb5cb5ef59

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.609.3.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.609.3.ebuild
new file mode 100644
index 000..b3839a9
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-1.609.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="http://jenkins-ci.org/";
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war-stable/${PV}/${PN/-bin/}.war -> 
${P}.war"
+RESTRICT="mirror"
+SLOT="lts"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:0
+   virtual/jre"
+
+S=${WORKDIR}
+
+JENKINS_DIR=/var/lib/jenkins
+
+pkg_setup() {
+   enewgroup jenkins
+   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
+}
+
+src_install() {
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}.init2 jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}



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

2015-09-07 Thread Manuel Rüger
commit: 773ac3d608b91d4b10885dc1ee9fe27011d1b403
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep  8 00:31:01 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep  8 00:31:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=773ac3d6

dev-util/jenkins-bin: Version bump

Package-Manager: portage-2.2.20.1

 dev-util/jenkins-bin/Manifest |  1 +
 dev-util/jenkins-bin/jenkins-bin-1.628.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index af34a0e..fbe61f8 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -2,3 +2,4 @@ DIST jenkins-bin-1.609.1.war 68908995 SHA256 
7e150cc9dd3d9089d82fecbf5b1d0ffa5cc
 DIST jenkins-bin-1.609.2.war 68976099 SHA256 
60e775b1d5df417370a1768496fa3ccc9d17f9a093bf87f543765f9d4e401578 SHA512 
f8d58fc5d8bb094932823ec40e53ef71412c44de2a82478fbc53c9f87e724597ab5afcba79fb776e69a42dd66529f0c31e875fafc305d411533dfb33afeb1948
 WHIRLPOOL 
107f47e16f91d98119564545d4b6c078d343690da558c7080471d4f0e3633b954257c290cc85200500165e2f145e7742509a27aa82cf2c9ea279ef27af3461d6
 DIST jenkins-bin-1.626.war 62885591 SHA256 
e6df4d44f1110d1095b4e05c0d574f1120ac4f7bf943fba99c22edff0127c110 SHA512 
7ca6c358d520f84380db74606e433db33bf2dad777e4386ca31bb22ae327aec209308d74214a391d9b1466ab01fca4eae1c93243212deefa4a5ca1d6dc3d718d
 WHIRLPOOL 
6b5dfb86e2f62c97d695ec517457fa0d89a31e6f272cf25cf134efdb4654791707973a8944c7f0b52aaa649eaf5b9b098bdb5b0d50637919db23842fe93f9fca
 DIST jenkins-bin-1.627.war 63251728 SHA256 
9fc74aea24d806fb8810e2573793cc280bdcef8c3ac6f0e76dc242290d7773ad SHA512 
bf588377ae8910b5cc9db42bc177aaf4d714c9433b851cb8daef3e592844dd8f17ecfbc9f9e6e989d9033feacaaaf05ead3537bf61163335e25001499acfe6d1
 WHIRLPOOL 
156c9c713a24c373bd5857e68a275a5bb671844181fb62b389a2a0e787a7bd3a1489f3b4b0328bfb6c2b3c040a35068beed389c964c60dcec0ed958de54858bf
+DIST jenkins-bin-1.628.war 63208813 SHA256 
e11227ad247ad3a938219cd2653adfb266ad54618d1839e63fd0e0e54852d6c7 SHA512 
573585a085d9b2aab3eb2f2a8333deba31f6706ba1b7a8ba249c7b8eec76881908f8302cf6766d4243b380da8e093c577c9251113424c77251e73bae73bf6e20
 WHIRLPOOL 
3af13e26624a70714dd75d1d65654d05bc9f8ebba9b21688e955e1375cb38608fe1454d09ceaa138ff5b0298bf245ce9dba043add9e57909baf661cb5cb5ef59

diff --git a/dev-util/jenkins-bin/jenkins-bin-1.628.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-1.628.ebuild
new file mode 100644
index 000..37fc084
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-1.628.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit user systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="http://jenkins-ci.org/";
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
+RESTRICT="mirror"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:lts
+   >=virtual/jre-1.7.0"
+
+S=${WORKDIR}
+
+JENKINS_DIR=/var/lib/jenkins
+
+pkg_setup() {
+   enewgroup jenkins
+   enewuser jenkins -1 -1 ${JENKINS_DIR} jenkins
+}
+
+src_install() {
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r1.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}.init2 jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}.service jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}



[gentoo-commits] repo/gentoo:master commit in: kde-misc/zanshin/

2015-09-07 Thread Manuel Rüger
commit: 65c80ac55a555d4522f6aadf9258250db8d46d87
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep  8 00:28:55 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep  8 00:28:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65c80ac5

kde-misc/zanshin: Version bump

Package-Manager: portage-2.2.20.1

 kde-misc/zanshin/Manifest |  1 +
 kde-misc/zanshin/zanshin-0.2.2.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/kde-misc/zanshin/Manifest b/kde-misc/zanshin/Manifest
index 9674a5e..c1dd8cf 100644
--- a/kde-misc/zanshin/Manifest
+++ b/kde-misc/zanshin/Manifest
@@ -1 +1,2 @@
 DIST zanshin-0.2.1.tar.bz2 142281 SHA256 
dd9592750b793118dc6de46ebed8b76a9e00b0f193c2963ab880cf33b738b394 SHA512 
109620a0c1ab27360c213a440b3a3a123b466d1be6c5b745ab9d076fc768dec5f1b7cbeecfd1190c287cd35d8cf96d3ff32b380d29ddf6255f1f3c4ce2fdd7ae
 WHIRLPOOL 
440d6d84b1e3934a4861a07f965c95531590f96ee4d6603716906f908efdc6d4f0696bbc405fb228f79a1b73528cafa8be38b4dc4746c4c413d9225cac631cd2
+DIST zanshin-0.2.2.tar.bz2 142237 SHA256 
5c0250c4614a82b4282c209818d11ba31c1326bb0ad434b452a22797f045370b SHA512 
637b7e8a74a12700d35e678ac6e676070cc03e3576e6c82fb63b95f6cce3cd8b02639c3ef10a7738b47bbde62348f5cf8d7ba499fa281cd4ac22ef2951559be3
 WHIRLPOOL 
3f20f1a742a109f5c2e2955d4262802b36692d6430972ef995685d5ed59488ce301a565a451c33cf31ee529083301bd63f23efadc6790b01ffc256b1a4eec2bb

diff --git a/kde-misc/zanshin/zanshin-0.2.2.ebuild 
b/kde-misc/zanshin/zanshin-0.2.2.ebuild
new file mode 100644
index 000..dde1c6e
--- /dev/null
+++ b/kde-misc/zanshin/zanshin-0.2.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+VIRTUALX_REQUIRED="test"
+inherit kde4-base
+
+DESCRIPTION="Todo management application for KDE"
+HOMEPAGE="https://zanshin.kde.org/";
+SRC_URI="https://files.kde.org/${PN}/${P}.tar.bz2";
+
+LICENSE="|| ( GPL-2 GPL-3 )"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+IUSE="debug"
+
+RDEPEND="
+   $(add_kdebase_dep kdepim-runtime '' 4.6.0)
+   dev-libs/boost
+"
+DEPEND=${RDEPEND}
+
+RESTRICT="test"



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-opensteamworks/

2015-09-07 Thread Manuel Rüger
commit: 953fa5434fcfa2db0131364bce49a5494e5df1da
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Sep  8 00:27:51 2015 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Sep  8 00:27:51 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=953fa543

x11-plugins/pidgin-opensteamworks: Version bump

Package-Manager: portage-2.2.20.1

 x11-plugins/pidgin-opensteamworks/Manifest |  1 +
 .../pidgin-opensteamworks-1.6.1.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/x11-plugins/pidgin-opensteamworks/Manifest 
b/x11-plugins/pidgin-opensteamworks/Manifest
index 83d30e1..b3e06e8 100644
--- a/x11-plugins/pidgin-opensteamworks/Manifest
+++ b/x11-plugins/pidgin-opensteamworks/Manifest
@@ -1,3 +1,4 @@
+DIST pidgin-opensteamworks-1.6.1.tar.gz 750495 SHA256 
6a63248ed67f85185d32760246a22fea58e49af2d8a604abaa2cb3a3b5368a01 SHA512 
9f025538460dda01d769501326cf7ac597e069bdef3437eea89f392bede7e620e854a8c0b0659315a0834c8f2f60a38680f1f1bdccdb65d3b13f64f7981ee55b
 WHIRLPOOL 
30e13bbd16b560b690a38214d1fadfd4a6da7566e29035623e7b6178357baadd647c692257f251803112e61baa25aaff59281fdc70e49d9fbdf90effa023eac1
 DIST pidgin-opensteamworks-1.6.tar.gz 750167 SHA256 
57dc7a3f13a5064f4374c76e693bc8f7a4f19c589949beedb7c739946bfa3e4e SHA512 
1b536d4e5b34fbeb5dd48ffab30a03e17b94359d8d6243ab9482b1c0c1e404cb56a62d8f878b478e83c9d81d44a4d77eb6b9695a942dc817b445c9d7b751d58c
 WHIRLPOOL 
679f38ff4d954db580d8185ca5edebcf5a78515b5e5c1d4a634e7f7ed9caf684c698837836ab09e0195916b0b239fd90aad37db5416f3982d912a99ebf98bee2
 DIST pidgin-opensteamworks-icons.zip 3252 SHA256 
9af30f18b607fd16911c2e41b0fb594508583335804f25193da7846ea39f9fa9 SHA512 
823f400bb4df9c6ddb65d8a01ec182fbbadeb955bc3e9590e88773b092b0cf79e50fc6c20d9b72def7fe9f8d6e1ac7cc087fbdb3f6ed4b76c343a29f18e6ea06
 WHIRLPOOL 
6b57fd61f15755b4c8f5090d7ab94974e1d8e5bd873fdc943ae762b3db97c0b65b295f8288747c98390fb1f52af27849840b084ca0e39bd88542f694decf0ff7
 DIST steam-mobile-1.4.tar.bz2 23293 SHA256 
d7ac0396b17c7a45bdffaa4b1ccbc4b13118b64e9ea495fa5af629a8e29c8fab SHA512 
20ac50ea49c1c0724aeb839fe46ac8a9b5a52d903ebf9bb18ab665fd32cdc4d80a426a0c2714724495ee73d758da2dbb891ac618b0689239485841fe6e6c0953
 WHIRLPOOL 
9f9e6ed0c1045e2fada9ea214b2be9560fc6d5937619cda403242c30ad8b1a4536fb6c0a92c311ca2998aed245d2fee5da9b48a6c8766e5c098688552bee6da7

diff --git 
a/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.6.1.ebuild 
b/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.6.1.ebuild
new file mode 100644
index 000..6d7ea1c
--- /dev/null
+++ b/x11-plugins/pidgin-opensteamworks/pidgin-opensteamworks-1.6.1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit toolchain-funcs
+
+DESCRIPTION="Steam protocol plugin for pidgin"
+HOMEPAGE="https://github.com/eionrobb/pidgin-opensteamworks";
+SRC_URI="https://github.com/EionRobb/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE=""
+
+RDEPEND="dev-libs/glib:2
+   dev-libs/json-glib
+   dev-libs/nss
+   gnome-base/libgnome-keyring
+   net-im/pidgin"
+DEPEND="${RDEPEND}
+   app-arch/unzip
+   virtual/pkgconfig"
+
+S=${WORKDIR}
+
+pkg_setup() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   tc-export CC PKG_CONFIG
+   fi
+}
+
+src_prepare() {
+   # see 
https://code.google.com/p/pidgin-opensteamworks/issues/detail?id=31
+   cp "${FILESDIR}"/${PN}-1.3-Makefile "${S}"/${P}/steam-mobile/Makefile 
|| die
+   unzip "${S}"/${P}/steam-mobile/releases/icons.zip || die
+}
+
+src_compile() {
+   pushd ${P}/steam-mobile || die
+   default
+   popd || die
+}
+
+src_install() {
+   pushd ${P}/steam-mobile || die
+   default
+   popd || die
+   insinto /usr/share/pixmaps/pidgin/protocols
+   doins -r "${WORKDIR}"/{16,48}
+   dodoc ${P}/README.md
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea-bin/

2015-09-07 Thread James Le Cuirot
commit: 11642a0d8701cb8474f6e4b21e1e14ff5281b68b
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Sep  7 22:36:24 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep  7 22:43:40 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11642a0d

dev-java/icedtea-bin: 6 and 7 rebuilt for ppc with dynamic heap fix

It has been discovered that CACAO has been giving us memory problems
because it had a fixed default heap size of only 128MB, whereas
HotSpot uses a quarter of the physical RAM. I have patched CACAO to do
the same. See IcedTea bugs #2611 and #2612.

6.1.13.8-r1 goes straight to stable for amd64 and x86 because only the
core ppc tarball has changed.

Package-Manager: portage-2.2.20.1

 dev-java/icedtea-bin/Manifest | 4 ++--
 .../{icedtea-bin-6.1.13.8.ebuild => icedtea-bin-6.1.13.8-r1.ebuild}   | 2 +-
 .../{icedtea-bin-7.2.5.6.ebuild => icedtea-bin-7.2.5.6-r1.ebuild} | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-java/icedtea-bin/Manifest b/dev-java/icedtea-bin/Manifest
index 2a5d20b..2bbc415 100644
--- a/dev-java/icedtea-bin/Manifest
+++ b/dev-java/icedtea-bin/Manifest
@@ -2,13 +2,13 @@ DIST icedtea-bin-core-6.1.13.7-amd64.tar.xz 49242728 SHA256 
146bc914aa9d2e19d127
 DIST icedtea-bin-core-6.1.13.7-ppc.tar.xz 39570240 SHA256 
74bee77719b7285c6d91665e572cece092c1f6cee137032c50b9aec35db641d0 SHA512 
e13a31f3ee4b60d603019a519047ffea8d97f3c6ff69ed7930c38e85f9051541f5dbe2c526b61175d3bcd371703168ba74949e1c7b44b4c8a790285864466e33
 WHIRLPOOL 
15f9b33c0edda490b48524996c2f3be263a498d97d969156e41dfbc03e7b780e568db80397a1a4716899c3fa202091bbec1c3358ddd178bdb8c010481e7604a6
 DIST icedtea-bin-core-6.1.13.7-x86.tar.xz 50373836 SHA256 
3cc3e7c1fc07370bc7009d0ce7cfc2270de47165c45b8352b429aa1ccca561f2 SHA512 
eb3eff46f20ffc93b7babe90aa3b9283119cf369fca503e7bdd7905455b9ac0e2eb389cc77e2e9bb02d802dc846dff75bbd218a844b80fa475e4ff04c88e9cf2
 WHIRLPOOL 
7593fd10d4c2e95fc02c2a7c94276632b6d99a077ec095018d5003e0c694c63f3e6eb3aa1d872f32911ad5ec2a90eae5f7a40c2784ef1b460e4a24a451369fd2
 DIST icedtea-bin-core-6.1.13.8-amd64.tar.xz 49241032 SHA256 
4712f3844d1a56ac545b01cdbc76c9e315480ace3120a99b22e5d904091c8b3e SHA512 
5cfff7ff5a0d0b4eef382620e98849c318df342a23ea0bb5764b4032ca7a96a86e67991ad97ec95b35786be0e3ac7a39990104e12ea47cc50c1c7326e933feb2
 WHIRLPOOL 
2e992d99675095aad1b74492d02f3c1fb393bf9bb1d496ace2036c0a40dbe2b1605783a84131fc5c15aa06834605d1ae962e7fee45556b41176cde54f1357273
-DIST icedtea-bin-core-6.1.13.8-ppc.tar.xz 39585952 SHA256 
51a9b4c4167b900467f6b1b614f5808af2fa8ef35f7101e1ddc7f5142b3a3ad3 SHA512 
04d72e811852df169a20daad73ed56ec454b98a60dd8943286d9ff382283d6b15c6acb1e0a3bc03ccc1d14333dae3ffdf8060c2a7de30c09d6b9cfacf9d90339
 WHIRLPOOL 
406782e148b4864cb250686a311e34937324ec3442a821d6bb76a016e2a6f7f06fed4b46d9ab8ff5675c629103b2832828efb8f0017fb193cc01209869bfe4c6
+DIST icedtea-bin-core-6.1.13.8-r1-ppc.tar.xz 39586112 SHA256 
782019d78fba6562170382fcbe5fff4fca5feaffef442ceabc93e3b4ed40c035 SHA512 
81b678673bae9fb07b9aa4ccc98fb6d3132ace2f776c224510787def831ca765bfd8dbea875ae8049f564268952459a692db1125e9f37eccb6ff3684511fc648
 WHIRLPOOL 
ff9400b7d65b9b3661b679ebad6747b9d3a2de882bc1c281565a6220ca0ef45a8abb6c9b2d1db64f491d55d173dd017780514b2b685ec5d3ce7c5e25cec08c46
 DIST icedtea-bin-core-6.1.13.8-x86.tar.xz 49676360 SHA256 
495171e826414051670fade7ac7af2705b3ecc01ba2ef3e63790cd24ec4fe7b5 SHA512 
56cd90d21e30f2451f7206b84d80ed0d227f750f7e9155f2401e12ea4b9bbcdd882abbb01cade21e0bfcc05318552bd1e6102cc78aa601654179058f595ca68a
 WHIRLPOOL 
6eabeca6006f84d912686ecd5921466cc5a7f3308b192e3ad9d4cee7a54356923a0c720e8d3d083533ab7b4baea839ed8247db2d1ee43dcd989ed312ff139323
 DIST icedtea-bin-core-7.2.5.5-amd64.tar.xz 52642552 SHA256 
cfa0399d93eab61004c6d3c23c7b2b46623c0fde1c8034adc09a6fdae9ba1a26 SHA512 
427b134109bfd92a073f10467f030f2bccf7b3fdcc6ec66f63d0ab5a896dfb4cc4904a9b8f5b6833fe4ae73bffb54e97e75a363500ed897a153ea7a687c75e9a
 WHIRLPOOL 
84fa1a480633d2f2459238c11fa58ba514a8eede37f54eebd19effd5e2dcf01bcf1f320c65f150018b52eea3c630c313ba85166ea9d8d44bb61b42c42738b9ad
 DIST icedtea-bin-core-7.2.5.5-arm.tar.xz 43744840 SHA256 
5f508eebadbf51a01677f3dcac2678f5a09eb7e9fd8f224fd397961e56a95a73 SHA512 
45524bd6e6c1f8f1ac69e2c8891c647e0dd3e4afe272561f17565f4e21b7104fdb9718f12023bfba308d311d661e00122a82c81e61a7bc6a744108495d343dc8
 WHIRLPOOL 
4e386a6cd5997a1d169550b3e6fcd29ccdb1bf0f7942e3c4ed02521c13afc7531de78c313ad6d50555e8781bb2566b7a10a6393db09e576bf5579ae8615fb4c4
 DIST icedtea-bin-core-7.2.5.5-ppc.tar.xz 42616472 SHA256 
36cc4fd0bfef1c2ae0dcad7116dd2a3b6e7a5ff7fd25da1ae47560755415cf2f SHA512 
a0f80ae0701b0f51bd165143b16aa9c9ae7314d1b1ccc5c4ef96f37012598bf1d1c7ace0742573562b642354b5f263e1dd97d026bb3d2addbe94b33c208c79b2
 WHIRLPOOL 
619901211cb099eb405a46bcf1bee5828c523b29ad8013fccaf77a82d3885b9517888c2461960e344aef8cb3c8b4807c909e0f693f3207c1c2dd35f74784ddac
 DIST icedtea-bin-core-7.2.5.5-x86.tar.xz 53895468 

[gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea/files/, dev-java/icedtea/

2015-09-07 Thread James Le Cuirot
commit: 6804ed55a394fbfbb178da4caccfb832a617357e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Mon Sep  7 22:42:34 2015 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Mon Sep  7 22:43:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6804ed55

dev-java/icedtea: Patch CACAO for a dynamic maximum heap

It has been discovered that CACAO has been giving us memory problems
because it had a fixed default heap size of only 128MB, whereas
HotSpot uses a quarter of the physical RAM. I have patched CACAO to do
the same. See IcedTea bugs #2611 and #2612.

Package-Manager: portage-2.2.20.1

 .../files/6-cacao-dynmaxheap-Makefile.patch| 10 ++
 dev-java/icedtea/files/6-cacao-dynmaxheap.patch| 42 ++
 .../files/7-cacao-dynmaxheap-Makefile.patch| 10 ++
 dev-java/icedtea/files/7-cacao-dynmaxheap.patch| 42 ++
 ...-6.1.13.8.ebuild => icedtea-6.1.13.8-r1.ebuild} |  4 +++
 ...ea-7.2.5.6.ebuild => icedtea-7.2.5.6-r1.ebuild} |  4 +++
 6 files changed, 112 insertions(+)

diff --git a/dev-java/icedtea/files/6-cacao-dynmaxheap-Makefile.patch 
b/dev-java/icedtea/files/6-cacao-dynmaxheap-Makefile.patch
new file mode 100644
index 000..dc87ae8
--- /dev/null
+++ b/dev-java/icedtea/files/6-cacao-dynmaxheap-Makefile.patch
@@ -0,0 +1,10 @@
+--- Makefile.in.orig   2015-07-28 07:21:16.447388803 -0700
 Makefile.in2015-09-06 09:13:16.54800 -0700
+@@ -182,6 +182,7 @@
+ @WITH_RHINO_TRUE@ patches/rhino.patch
+ 
+ @BUILD_CACAO_TRUE@am__append_22 = \
++@BUILD_CACAO_TRUE@patches/cacao/dynmaxheap.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/launcher.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/memory.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/hotspot/original/memory.patch \

diff --git a/dev-java/icedtea/files/6-cacao-dynmaxheap.patch 
b/dev-java/icedtea/files/6-cacao-dynmaxheap.patch
new file mode 100644
index 000..33b9818
--- /dev/null
+++ b/dev-java/icedtea/files/6-cacao-dynmaxheap.patch
@@ -0,0 +1,42 @@
+# HG changeset patch
+# User James Le Cuirot 
+# Date 1441543564 -3600
+#  Sun Sep 06 13:46:04 2015 +0100
+# Node ID d0224f4490d6694e77dcb0ff7eae8e2297b822bf
+# Parent  e215e36be9fc2b7dfe43ff10ec1afe639b289aa5
+Dynamically set the maximum heap size on Linux
+
+diff -r e215e36be9fc -r d0224f4490d6 src/vm/vm.cpp
+--- cacao/cacao/src/vm/vm.cpp  Mon Feb 11 19:31:28 2013 +0100
 cacao/cacao/src/vm/vm.cpp  Sun Sep 06 13:46:04 2015 +0100
+@@ -33,6 +33,10 @@
+ #include 
+ #include 
+ 
++#if defined(__LINUX__)
++#include 
++#endif
++
+ #include "vm/types.h"
+ 
+ #include "arch.h"
+@@ -702,6 +706,19 @@
+   opt_heapstartsize = HEAP_STARTSIZE;
+   opt_stacksize = STACK_SIZE;
+ 
++#if defined(__LINUX__)
++  // Calculate 1/4 of the physical memory.
++  uint64_t qmem = sysconf(_SC_PHYS_PAGES) * sysconf(_SC_PAGESIZE) / 4;
++
++  if (qmem > INT32_MAX) {
++  // More than 2GB will overflow so cap it.
++  opt_heapmaxsize = 2047 * 1024 * 1024;
++  } else if (qmem > HEAP_MAXSIZE) {
++  // Otherwise use this if greater than default (128MB).
++  opt_heapmaxsize = (s4) qmem;
++  }
++#endif
++
+   // First of all, parse the -XX options.
+ 
+ #if defined(ENABLE_VMLOG)

diff --git a/dev-java/icedtea/files/7-cacao-dynmaxheap-Makefile.patch 
b/dev-java/icedtea/files/7-cacao-dynmaxheap-Makefile.patch
new file mode 100644
index 000..13e3053
--- /dev/null
+++ b/dev-java/icedtea/files/7-cacao-dynmaxheap-Makefile.patch
@@ -0,0 +1,10 @@
+--- Makefile.in.orig   2015-07-22 14:54:37.116940780 -0700
 Makefile.in2015-09-06 05:05:47.22000 -0700
+@@ -134,6 +134,7 @@
+ @WITH_RHINO_TRUE@ patches/rhino.patch
+ 
+ @BUILD_CACAO_TRUE@am__append_10 = \
++@BUILD_CACAO_TRUE@patches/cacao/dynmaxheap.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/launcher.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/memory.patch \
+ @BUILD_CACAO_TRUE@patches/cacao/armhf.patch \

diff --git a/dev-java/icedtea/files/7-cacao-dynmaxheap.patch 
b/dev-java/icedtea/files/7-cacao-dynmaxheap.patch
new file mode 100644
index 000..33b9818
--- /dev/null
+++ b/dev-java/icedtea/files/7-cacao-dynmaxheap.patch
@@ -0,0 +1,42 @@
+# HG changeset patch
+# User James Le Cuirot 
+# Date 1441543564 -3600
+#  Sun Sep 06 13:46:04 2015 +0100
+# Node ID d0224f4490d6694e77dcb0ff7eae8e2297b822bf
+# Parent  e215e36be9fc2b7dfe43ff10ec1afe639b289aa5
+Dynamically set the maximum heap size on Linux
+
+diff -r e215e36be9fc -r d0224f4490d6 src/vm/vm.cpp
+--- cacao/cacao/src/vm/vm.cpp  Mon Feb 11 19:31:28 2013 +0100
 cacao/cacao/src/vm/vm.cpp  Sun Sep 06 13:46:04 2015 +0100
+@@ -33,6 +33,10 @@
+ #include 
+ #include 
+ 
++#if defined(__LINUX__)
++#include 
++#endif
++
+ #include "vm/types.h"
+ 
+ #include "arch.h"
+@@ -702,6 +706,19 @@
+   opt_heapstartsize = HEAP_STARTSIZE;
+   opt_stacksize = STACK_SIZE;
+ 
++#if defined(__LINUX__)
++  // Calc

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

2015-09-07 Thread Richard Farina
commit: c3df93be4420c5bc56f07246c5090767485425ba
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 19:49:38 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:13 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3df93be

dev-ruby/regexp_parser: adding ~arm and ~x86

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/regexp_parser/regexp_parser-0.3.1.ebuild 
b/dev-ruby/regexp_parser/regexp_parser-0.3.1.ebuild
index 8e4fd83..297f9d0 100644
--- a/dev-ruby/regexp_parser/regexp_parser-0.3.1.ebuild
+++ b/dev-ruby/regexp_parser/regexp_parser-0.3.1.ebuild
@@ -17,5 +17,5 @@ HOMEPAGE="https://github.com/ammar/regexp_parser";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""



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

2015-09-07 Thread Richard Farina
commit: 0a67cf83854ba23ca4e87d025ed53843c635d98b
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 21:55:08 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:33 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a67cf83

dev-ruby/slop: adding ~arm and correcting minitest dep

/usr/lib/ruby/gems/1.9.1/gems/minitest-4.7.5/lib/minitest/unit.rb:19:in 
`const_missing': uninitialized constant MiniTest::Test (NameError)

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/slop/slop-3.6.0.ebuild b/dev-ruby/slop/slop-3.6.0.ebuild
index 9112ca4..fa4ea51 100644
--- a/dev-ruby/slop/slop-3.6.0.ebuild
+++ b/dev-ruby/slop/slop-3.6.0.ebuild
@@ -16,11 +16,11 @@ 
SRC_URI="https://github.com/injekt/${PN}/archive/v${PV}.tar.gz -> ${P}.tgz"
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
 
 IUSE=""
 
-ruby_add_bdepend "test? ( dev-ruby/minitest )"
+ruby_add_bdepend "test? ( dev-ruby/minitest:5 )"
 
 all_ruby_prepare() {
sed -i -e '/git ls-files/d' slop.gemspec || die



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

2015-09-07 Thread Richard Farina
commit: 5b0d202b20bb36e01509860bfd3ab15921832b21
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 19:51:19 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b0d202b

dev-ruby/recog: readding ~arm and ~x86

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/recog/recog-2.0.12.ebuild 
b/dev-ruby/recog/recog-2.0.12.ebuild
index 92755c4..76db60c 100644
--- a/dev-ruby/recog/recog-2.0.12.ebuild
+++ b/dev-ruby/recog/recog-2.0.12.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rapid7/${PN}";
 
 LICENSE="BSD-2"
 SLOT="2"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/nokogiri"



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

2015-09-07 Thread Richard Farina
commit: d687e27f5af9a6e1e6c5eb2a3e7a28e021e1ee40
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 19:44:41 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d687e27f

dev-ruby/pg_array_parser: adding ~arm

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/pg_array_parser/pg_array_parser-0.0.9.ebuild 
b/dev-ruby/pg_array_parser/pg_array_parser-0.0.9.ebuild
index 723e34e..c1f9691 100644
--- a/dev-ruby/pg_array_parser/pg_array_parser-0.0.9.ebuild
+++ b/dev-ruby/pg_array_parser/pg_array_parser-0.0.9.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="BSD"
 SLOT="$(get_version_component_range 1-3)"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 RESTRICT=test
 



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

2015-09-07 Thread Richard Farina
commit: 3958da838eb311bbc276c19cf7b2af17c0028059
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 21:36:59 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3958da83

app-arch/pixz: fix header

Package-Manager: portage-2.2.20.1

 app-arch/pixz/pixz-1.0.3.ebuild | 2 +-
 app-arch/pixz/pixz-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-arch/pixz/pixz-1.0.3.ebuild b/app-arch/pixz/pixz-1.0.3.ebuild
index 4a04aab..03ad203 100644
--- a/app-arch/pixz/pixz-1.0.3.ebuild
+++ b/app-arch/pixz/pixz-1.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/app-arch/pixz/pixz-.ebuild b/app-arch/pixz/pixz-.ebuild
index 4a04aab..03ad203 100644
--- a/app-arch/pixz/pixz-.ebuild
+++ b/app-arch/pixz/pixz-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2015 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



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

2015-09-07 Thread Richard Farina
commit: edd544ea35626f6db288191553a2bde8d9b92047
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 19:43:17 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:09 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edd544ea

dev-ruby/net-ssh: adding ~arm

Package-Manager: portage-2.2.20.1

 dev-ruby/net-ssh/net-ssh-2.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild 
b/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
index 61f2c52..dec8d5a 100644
--- a/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
+++ b/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz 
-> net-ssh-git-${P
 
 LICENSE="GPL-2"
 SLOT="2.6"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="test"
 
 ruby_add_rdepend "virtual/ruby-ssl"



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

2015-09-07 Thread Richard Farina
commit: f08ad0a601be212bfddc57fbdfc2713791934222
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 20:20:05 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f08ad0a6

dev-ruby/method_source: adding ~arm

Package-Manager: portage-2.2.20.1

 dev-ruby/method_source/method_source-0.8.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/method_source/method_source-0.8.2-r3.ebuild 
b/dev-ruby/method_source/method_source-0.8.2-r3.ebuild
index 21a313d..06aa636 100644
--- a/dev-ruby/method_source/method_source-0.8.2-r3.ebuild
+++ b/dev-ruby/method_source/method_source-0.8.2-r3.ebuild
@@ -17,7 +17,7 @@ IUSE=""
 SLOT="0"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
 
 ruby_add_bdepend "test? ( >=dev-ruby/bacon-1.1.0 )"
 



[gentoo-commits] repo/gentoo:master commit in: app-arch/pixz/files/, app-arch/pixz/

2015-09-07 Thread Richard Farina
commit: 03c42cb70d8d0c35c40480d931ee1d7772ceeebc
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 21:36:26 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03c42cb7

app-arch/pixz: version bump and fix 

Package-Manager: portage-2.2.20.1

 app-arch/pixz/Manifest |  2 +-
 app-arch/pixz/files/pixz-1.0.2-lm.patch| 25 
 .../pixz/{pixz-1.0.2.ebuild => pixz-1.0.3.ebuild}  | 34 --
 app-arch/pixz/pixz-.ebuild | 30 ++-
 4 files changed, 35 insertions(+), 56 deletions(-)

diff --git a/app-arch/pixz/Manifest b/app-arch/pixz/Manifest
index f5ce1c9..671dcf3 100644
--- a/app-arch/pixz/Manifest
+++ b/app-arch/pixz/Manifest
@@ -1 +1 @@
-DIST pixz-1.0.2.tgz 21425 SHA256 
af9dac41edd6bf57953471f7fcbd4793810003bf911593ba4c84f7cccb5f74af SHA512 
ea3f37b725a0f08e87a6bc0af19522e92bb5b34fad49cfbfcc04e7054f4537cb09c8f3b56abda7f6d27ce64535b158a676a9e69f92141190840bd9ba255961f3
 WHIRLPOOL 
76b8af8833b9d87718b0a1fa5f596f6aa820b176b17cbde25f7cd0cf1f6b0cdce6c4d7b7c3d82b3f7b018a60bd6ce1ae6f43263875f0eeef5c93ae889856c60e
+DIST pixz-1.0.3.tar.gz 27105 SHA256 
49f44520b411315ec4b02891eb77ba6060bdfd77ab5112e9c3e21de581c3384d SHA512 
e33e038fc760a51b5bbc52c4faca2b165a5e4546438cd1bf9b41b91d6c8aabad43be367750ac1e7a7007c6d2544ce6dd4662fa60c99c763d96d918eeed002fa7
 WHIRLPOOL 
29ba24955280051d2d7562aca0b908c1228d0345beb7a6b1e330714ac8c39f6e86a87d60581c91a578950a9dfabbc96c59f64e8afecd2100499c64d4007f5477

diff --git a/app-arch/pixz/files/pixz-1.0.2-lm.patch 
b/app-arch/pixz/files/pixz-1.0.2-lm.patch
deleted file mode 100644
index 7db039a..000
--- a/app-arch/pixz/files/pixz-1.0.2-lm.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-From 6c9d6b9020c599f850c0b719cc9c041f1667671b Mon Sep 17 00:00:00 2001
-From: Dave Vasilevsky 
-Date: Thu, 10 Jan 2013 08:28:06 -0500
-Subject: [PATCH] Fix linking bug (issue 11)
-

- Makefile | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/Makefile b/Makefile
-index fe605f2..3b27690 100644
 a/Makefile
-+++ b/Makefile
-@@ -12,7 +12,7 @@ MYCFLAGS = $(patsubst %,-I%/include,$(LIBPREFIX)) $(OPT) 
-std=gnu99 \
- MYLDFLAGS = $(patsubst %,-L%/lib,$(LIBPREFIX)) $(OPT) -Wall
- 
- THREADS = -lpthread
--LIBADD = $(THREADS) -llzma -larchive
-+LIBADD = $(THREADS) -lm -llzma -larchive
- 
- CC = gcc
- COMPILE = $(CC) $(MYCFLAGS) $(CFLAGS) -c -o
--- 
-1.8.1.2
-

diff --git a/app-arch/pixz/pixz-1.0.2.ebuild b/app-arch/pixz/pixz-1.0.3.ebuild
similarity index 65%
rename from app-arch/pixz/pixz-1.0.2.ebuild
rename to app-arch/pixz/pixz-1.0.3.ebuild
index 4d3d7d5..4a04aab 100644
--- a/app-arch/pixz/pixz-1.0.2.ebuild
+++ b/app-arch/pixz/pixz-1.0.3.ebuild
@@ -4,20 +4,10 @@
 
 EAPI=5
 
-inherit toolchain-funcs flag-o-matic eutils
+inherit toolchain-funcs flag-o-matic autotools
 
 DESCRIPTION="Parallel Indexed XZ compressor"
 HOMEPAGE="https://github.com/vasi/pixz";
-
-if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/vasi/pixz.git";
-   inherit git-2
-   KEYWORDS=""
-else
-   SRC_URI="mirror://sourceforge/${PN}/${P}.tgz"
-   KEYWORDS="~amd64 ~arm ~x86"
-fi
-
 LICENSE="BSD-2"
 SLOT="0"
 IUSE="static"
@@ -26,14 +16,26 @@ LIB_DEPEND=">=app-arch/libarchive-2.8:=[static-libs(+)]
>=app-arch/xz-utils-5[static-libs(+)]"
 RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
 DEPEND="${RDEPEND}
-   static? ( ${LIB_DEPEND} )"
+   static? ( ${LIB_DEPEND} )
+   app-text/asciidoc"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/vasi/${PN}.git";
+   inherit git-r3
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/vasi/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
 
 src_prepare() {
-   epatch "${FILESDIR}"/${P}-lm.patch
+   eautoreconf
 }
 
 src_configure() {
use static && append-ldflags -static
+   append-flags -std=gnu99
+   econf
 }
 
 src_compile() {
@@ -41,7 +43,7 @@ src_compile() {
 }
 
 src_install() {
-   dobin pixz
-   doman pixz.1
-   dodoc README TODO
+   dobin src/pixz
+   doman src/pixz.1
+   dodoc README.md TODO
 }

diff --git a/app-arch/pixz/pixz-.ebuild b/app-arch/pixz/pixz-.ebuild
index 5794109..4a04aab 100644
--- a/app-arch/pixz/pixz-.ebuild
+++ b/app-arch/pixz/pixz-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit toolchain-funcs flag-o-matic
+inherit toolchain-funcs flag-o-matic autotools
 
 DESCRIPTION="Parallel Indexed XZ compressor"
 HOMEPAGE="https://github.com/vasi/pixz";
@@ -16,32 +16,34 @@ LIB_DEPEND=">=app-arch/libarchive-2.8:=[static-libs(+)]
>=app-arch/xz-utils-5[static-libs(+)]"
 RDEPEND="!static? ( ${LIB_DEPEND//\[static-libs(+)]} )"
 DEPEND="${RDEPEND}
-   static? ( ${LIB_DEPEND} )"
+   static? ( ${LIB_DEPEND} )
+   app-text/asciidoc"
 
 i

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

2015-09-07 Thread Richard Farina
commit: bdd62602bb68775a4a52a07f20b9acbc0754a403
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 19:41:57 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:07 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdd62602

dev-ruby/rubyntlm: add ~arm

Package-Manager: portage-2.2.20.1

 dev-ruby/rubyntlm/rubyntlm-0.4.0.ebuild | 2 +-
 dev-ruby/rubyntlm/rubyntlm-0.5.2.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/rubyntlm/rubyntlm-0.4.0.ebuild 
b/dev-ruby/rubyntlm/rubyntlm-0.4.0.ebuild
index 244540d..ef78248 100644
--- a/dev-ruby/rubyntlm/rubyntlm-0.4.0.ebuild
+++ b/dev-ruby/rubyntlm/rubyntlm-0.4.0.ebuild
@@ -13,5 +13,5 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""

diff --git a/dev-ruby/rubyntlm/rubyntlm-0.5.2.ebuild 
b/dev-ruby/rubyntlm/rubyntlm-0.5.2.ebuild
index a7b98d0..73d06f2 100644
--- a/dev-ruby/rubyntlm/rubyntlm-0.5.2.ebuild
+++ b/dev-ruby/rubyntlm/rubyntlm-0.5.2.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="https://github.com/winrb/rubyntlm";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2015-09-07 Thread Richard Farina
commit: 8b767b9e9b2e6eb5b3c1ea8187b6b49458eb163e
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 20:52:05 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b767b9e

dev-ruby/open4: adding ~arm

Package-Manager: portage-2.2.20.1

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

diff --git a/dev-ruby/open4/open4-1.3.4.ebuild 
b/dev-ruby/open4/open4-1.3.4.ebuild
index 5ef01fa..b6890ac 100644
--- a/dev-ruby/open4/open4-1.3.4.ebuild
+++ b/dev-ruby/open4/open4-1.3.4.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/ahoward/open4";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
 IUSE=""
 
 ruby_add_bdepend "test? ( dev-ruby/minitest )"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/metasploit_data_models/, dev-ruby/pry/, dev-ruby/metasploit-concern/, ...

2015-09-07 Thread Richard Farina
commit: ff039267f2174c5cf5321f0a7edfcc05923a94cd
Author: Zero_Chaos  gentoo  org>
AuthorDate: Mon Sep  7 19:34:53 2015 +
Commit: Richard Farina  gentoo  org>
CommitDate: Mon Sep  7 21:56:05 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff039267

Revert "net-analyzer/metasploit (and deps): Revert "re-add ~arm keyword""

This reverts commit 8bdbfab2f6bedacee6cb37559ce5cb63aba7a285.

Not trying to be rude here, just the easiest way to readd this commit it to 
revert the revert.

 dev-ruby/arel-helpers/arel-helpers-2.0.1.ebuild | 2 +-
 dev-ruby/metasploit-concern/metasploit-concern-1.0.0.ebuild | 2 +-
 dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild   | 2 +-
 dev-ruby/metasploit-model/metasploit-model-1.0.0.ebuild | 2 +-
 dev-ruby/metasploit_data_models/metasploit_data_models-1.2.5.ebuild | 2 +-
 dev-ruby/postgres_ext/postgres_ext-2.4.1.ebuild | 2 +-
 dev-ruby/pry/pry-0.10.1.ebuild  | 2 +-
 dev-ruby/recog/recog-2.0.6.ebuild   | 2 +-
 dev-ruby/rubyzip/rubyzip-1.1.7-r1.ebuild| 2 +-
 net-analyzer/metasploit/metasploit-4.11.4_p2015090201.ebuild| 2 +-
 10 files changed, 10 insertions(+), 10 deletions(-)

diff --git a/dev-ruby/arel-helpers/arel-helpers-2.0.1.ebuild 
b/dev-ruby/arel-helpers/arel-helpers-2.0.1.ebuild
index ee220af..21b116f 100644
--- a/dev-ruby/arel-helpers/arel-helpers-2.0.1.ebuild
+++ b/dev-ruby/arel-helpers/arel-helpers-2.0.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 ruby_add_rdepend "|| ( dev-ruby/activerecord:3.2

diff --git a/dev-ruby/metasploit-concern/metasploit-concern-1.0.0.ebuild 
b/dev-ruby/metasploit-concern/metasploit-concern-1.0.0.ebuild
index fdb8a6b..cb279d9 100644
--- a/dev-ruby/metasploit-concern/metasploit-concern-1.0.0.ebuild
+++ b/dev-ruby/metasploit-concern/metasploit-concern-1.0.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="BSD"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 #IUSE="development test"
 RESTRICT=test
 IUSE=""

diff --git a/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild 
b/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild
index 7836550..58fbec0 100644
--- a/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild
+++ b/dev-ruby/metasploit-credential/metasploit-credential-1.0.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="BSD"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/metasploit-concern-1.0.0:1.0

diff --git a/dev-ruby/metasploit-model/metasploit-model-1.0.0.ebuild 
b/dev-ruby/metasploit-model/metasploit-model-1.0.0.ebuild
index 5b73362..ba8c943 100644
--- a/dev-ruby/metasploit-model/metasploit-model-1.0.0.ebuild
+++ b/dev-ruby/metasploit-model/metasploit-model-1.0.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="BSD"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 #IUSE="development test"
 RESTRICT=test
 IUSE=""

diff --git 
a/dev-ruby/metasploit_data_models/metasploit_data_models-1.2.5.ebuild 
b/dev-ruby/metasploit_data_models/metasploit_data_models-1.2.5.ebuild
index 3fff46c..ab46acd 100644
--- a/dev-ruby/metasploit_data_models/metasploit_data_models-1.2.5.ebuild
+++ b/dev-ruby/metasploit_data_models/metasploit_data_models-1.2.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="BSD"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 RESTRICT=test
 #IUSE="development test"
 IUSE=""

diff --git a/dev-ruby/postgres_ext/postgres_ext-2.4.1.ebuild 
b/dev-ruby/postgres_ext/postgres_ext-2.4.1.ebuild
index 7a87fd7..3efb76e 100644
--- a/dev-ruby/postgres_ext/postgres_ext-2.4.1.ebuild
+++ b/dev-ruby/postgres_ext/postgres_ext-2.4.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="BSD"
 SLOT="$(get_version_component_range 1-2)"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 RESTRICT=test
 

diff --git a/dev-ruby/pry/pry-0.10.1.ebuild b/dev-ruby/pry/pry-0.10.1.ebuild
index 9fe5aaa..e4d280e 100644
--- a/dev-ruby/pry/pry-0.10.1.ebuild
+++ b/dev-ruby/pry/pry-0.10.1.ebuild
@@ -21,7 +21,7 @@ IUSE=""
 SLOT="ruby19"
 
 LICENSE="MIT"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
 
 ruby_add_rdepend "
>=dev-ruby/coderay-1.1.0

diff --git a/dev-ruby/recog/recog-2.0.6.ebuild 
b/dev-ruby/recog/recog-2.0.6.ebuild
index d59a156..375e37d 100644
--- a/dev-ruby/recog/recog-2.0.6.ebuild
+++ b/dev-ruby/recog/recog-2.0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://rubygems/${P}.gem"
 
 LICENSE="BSD"
 SLOT="2"

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

2015-09-07 Thread Mikle Kolyada
commit: b56275dc005f9fe91d62508e6413be4c907cbc00
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:44:37 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:44:37 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b56275dc

sys-block/gparted: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 sys-block/gparted/gparted-0.23.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/gparted/gparted-0.23.0.ebuild 
b/sys-block/gparted/gparted-0.23.0.ebuild
index d5ddecd..352bbc5 100644
--- a/sys-block/gparted/gparted-0.23.0.ebuild
+++ b/sys-block/gparted/gparted-0.23.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-2+ FDL-1.2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~x86"
+KEYWORDS="amd64 ~arm ~ppc ~x86"
 IUSE="btrfs dmraid f2fs fat hfs jfs kde mdadm ntfs policykit reiserfs reiser4 
xfs"
 
 # FIXME: add gpart support



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

2015-09-07 Thread Mikle Kolyada
commit: e6e1689421c0ae61f640a1d9e8730bb533fcd072
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:41:43 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:41:43 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6e16894

net-misc/networkmanager-vpnc: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-misc/networkmanager-vpnc/networkmanager-vpnc-1.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/networkmanager-vpnc/networkmanager-vpnc-1.0.6.ebuild 
b/net-misc/networkmanager-vpnc/networkmanager-vpnc-1.0.6.ebuild
index a1f6ee2..71d980b 100644
--- a/net-misc/networkmanager-vpnc/networkmanager-vpnc-1.0.6.ebuild
+++ b/net-misc/networkmanager-vpnc/networkmanager-vpnc-1.0.6.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="gtk test"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: 3b8ff9ff6b71b0e22f847f686fe5b4bf2cf64ee7
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:40:55 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:40:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b8ff9ff

net-misc/networkmanager-pptp: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-misc/networkmanager-pptp/networkmanager-pptp-1.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/networkmanager-pptp/networkmanager-pptp-1.0.6.ebuild 
b/net-misc/networkmanager-pptp/networkmanager-pptp-1.0.6.ebuild
index 0c4c40b..142b77f 100644
--- a/net-misc/networkmanager-pptp/networkmanager-pptp-1.0.6.ebuild
+++ b/net-misc/networkmanager-pptp/networkmanager-pptp-1.0.6.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="gtk"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: 9fc600d2b3de706e3e88986e2f8fa07a3b5e3f21
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:37:06 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:37:06 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc600d2

net-misc/dleyna-server: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-misc/dleyna-server/dleyna-server-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/dleyna-server/dleyna-server-0.5.0.ebuild 
b/net-misc/dleyna-server/dleyna-server-0.5.0.ebuild
index 97a23ba..1490e08 100644
--- a/net-misc/dleyna-server/dleyna-server-0.5.0.ebuild
+++ b/net-misc/dleyna-server/dleyna-server-0.5.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://01.org/sites/default/files/downloads/dleyna/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: 02752c26cc4c09692b79ad3bd1a6c11a7ebc84c1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:50:57 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:50:57 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02752c26

dev-python/gst-python: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

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

diff --git a/dev-python/gst-python/gst-python-1.4.0.ebuild 
b/dev-python/gst-python/gst-python-1.4.0.ebuild
index f878a63..fca0458 100644
--- a/dev-python/gst-python/gst-python-1.4.0.ebuild
+++ b/dev-python/gst-python/gst-python-1.4.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.xz";
 
 LICENSE="LGPL-2"
 SLOT="1.0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="test"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: fda03352b7add74e025afaadd845ce68c89e6f3a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:42:12 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:42:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fda03352

net-misc/networkmanager: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

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

diff --git a/net-misc/networkmanager/networkmanager-1.0.6.ebuild 
b/net-misc/networkmanager/networkmanager-1.0.6.ebuild
index a4bc637..a86a5f8 100644
--- a/net-misc/networkmanager/networkmanager-1.0.6.ebuild
+++ b/net-misc/networkmanager/networkmanager-1.0.6.ebuild
@@ -22,7 +22,7 @@ IUSE="bluetooth connection-sharing consolekit +dhclient 
dhcpcd gnutls +introspec
 kernel_linux +nss +modemmanager ncurses +ppp resolvconf selinux systemd teamd 
test \
 vala +wext +wifi zeroconf" # wimax
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 REQUIRED_USE="
modemmanager? ( ppp )



[gentoo-commits] repo/gentoo:master commit in: media-plugins/grilo-plugins/

2015-09-07 Thread Mikle Kolyada
commit: 0b78dc50bae240cf980b73d22ee3216c75978542
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:28:55 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:28:55 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b78dc50

media-plugins/grilo-plugins: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 media-plugins/grilo-plugins/grilo-plugins-0.2.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/grilo-plugins/grilo-plugins-0.2.14.ebuild 
b/media-plugins/grilo-plugins/grilo-plugins-0.2.14.ebuild
index 6089a6b..87440e3 100644
--- a/media-plugins/grilo-plugins/grilo-plugins-0.2.14.ebuild
+++ b/media-plugins/grilo-plugins/grilo-plugins-0.2.14.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Grilo";
 
 LICENSE="LGPL-2.1+"
 SLOT="0.2"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~x86"
 IUSE="daap +dvd flickr freebox gnome-online-accounts lua pocket subtitles 
thetvdb tracker upnp-av +vimeo +youtube"
 
 # Bump gom requirement to avoid segfaults



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

2015-09-07 Thread Mikle Kolyada
commit: 233316f3d85a819eccc4adc79e4638568c5fef6e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:46:41 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:46:41 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233316f3

net-misc/networkmanager-openswan: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-misc/networkmanager-openswan/networkmanager-openswan-1.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-misc/networkmanager-openswan/networkmanager-openswan-1.0.6.ebuild 
b/net-misc/networkmanager-openswan/networkmanager-openswan-1.0.6.ebuild
index 784318f..a66b844 100644
--- a/net-misc/networkmanager-openswan/networkmanager-openswan-1.0.6.ebuild
+++ b/net-misc/networkmanager-openswan/networkmanager-openswan-1.0.6.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="gtk"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-themes/gtk-engines/

2015-09-07 Thread Mikle Kolyada
commit: bb3cfc9111afc19ea2aac6e5dd51e30ccd624628
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:45:30 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:45:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3cfc91

x11-themes/gtk-engines: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild 
b/x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild
index 24fe97e..eb5439d 100644
--- a/x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild
+++ b/x11-themes/gtk-engines/gtk-engines-2.20.2-r2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="http://www.gtk.org/";
 
 LICENSE="LGPL-2.1"
 SLOT="2"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~arm-linux 
~x86-linux ~x86-macos ~x64-solaris ~x86-solaris"
 IUSE="accessibility lua"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: b736e14ac49647d5e8c8a2f22d9b4e0268132458
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:42:44 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:42:44 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b736e14a

net-misc/rygel: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

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

diff --git a/net-misc/rygel/rygel-0.26.1.ebuild 
b/net-misc/rygel/rygel-0.26.1.ebuild
index 9ec428c..95a898d 100644
--- a/net-misc/rygel/rygel-0.26.1.ebuild
+++ b/net-misc/rygel/rygel-0.26.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Rygel";
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="X +introspection +sqlite tracker test transcode"
 
 # The deps for tracker? and transcode? are just the earliest available



[gentoo-commits] repo/gentoo:master commit in: net-libs/dleyna-connector-dbus/

2015-09-07 Thread Mikle Kolyada
commit: a975f7527ba0a419837b142ab06b18506aace204
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:28:31 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:28:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a975f752

net-libs/dleyna-connector-dbus: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-libs/dleyna-connector-dbus/dleyna-connector-dbus-0.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/dleyna-connector-dbus/dleyna-connector-dbus-0.2.0.ebuild 
b/net-libs/dleyna-connector-dbus/dleyna-connector-dbus-0.2.0.ebuild
index 26a45db..8ab59f0 100644
--- a/net-libs/dleyna-connector-dbus/dleyna-connector-dbus-0.2.0.ebuild
+++ b/net-libs/dleyna-connector-dbus/dleyna-connector-dbus-0.2.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://01.org/sites/default/files/downloads/dleyna/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="1.0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: c3cbd60b03cf5f486b3904db298140fd5cc4ec2e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:43:42 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:43:42 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3cbd60b

sci-geosciences/gnome-maps: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 sci-geosciences/gnome-maps/gnome-maps-3.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-geosciences/gnome-maps/gnome-maps-3.16.2.ebuild 
b/sci-geosciences/gnome-maps/gnome-maps-3.16.2.ebuild
index 6229e9a..e1ca162 100644
--- a/sci-geosciences/gnome-maps/gnome-maps-3.16.2.ebuild
+++ b/sci-geosciences/gnome-maps/gnome-maps-3.16.2.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Maps";
 LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
 SLOT="0"
 IUSE=""
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
>=app-misc/geoclue-0.12.99:2.0



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

2015-09-07 Thread Mikle Kolyada
commit: 620b64b1379b6caa4f9912d5d68120ebe527c747
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:38:49 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:38:49 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=620b64b1

net-misc/modemmanager: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

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

diff --git a/net-misc/modemmanager/modemmanager-1.4.10.ebuild 
b/net-misc/modemmanager/modemmanager-1.4.10.ebuild
index f444112..3de6c3d 100644
--- a/net-misc/modemmanager/modemmanager-1.4.10.ebuild
+++ b/net-misc/modemmanager/modemmanager-1.4.10.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://www.freedesktop.org/software/ModemManager/ModemManager-${PV}.tar
 
 LICENSE="GPL-2+"
 SLOT="0/1" # subslot = dbus interface version, i.e. N in 
org.freedesktop.ModemManager${N}
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
 IUSE="+introspection mbim policykit +qmi qmi-newest vala"
 REQUIRED_USE="
qmi-newest? ( qmi )



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

2015-09-07 Thread Mikle Kolyada
commit: 9200376200caef1cfe491a64845ec6fc105d3480
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:33:20 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:33:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92003762

net-libs/glib-networking: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-libs/glib-networking/glib-networking-2.44.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/glib-networking/glib-networking-2.44.0.ebuild 
b/net-libs/glib-networking/glib-networking-2.44.0.ebuild
index 5819a05..b66817d 100644
--- a/net-libs/glib-networking/glib-networking-2.44.0.ebuild
+++ b/net-libs/glib-networking/glib-networking-2.44.0.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://git.gnome.org/browse/glib-networking/";
 LICENSE="LGPL-2+"
 SLOT="0"
 IUSE="+gnome +libproxy smartcard +ssl test"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.39.1:2[${MULTILIB_USEDEP}]



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

2015-09-07 Thread Mikle Kolyada
commit: 42c740b60677a465742fa06345444d2bfaf80a63
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:31:19 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:31:19 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42c740b6

media-sound/pulseaudio: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 media-sound/pulseaudio/pulseaudio-6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/pulseaudio/pulseaudio-6.0.ebuild 
b/media-sound/pulseaudio/pulseaudio-6.0.ebuild
index 2f24d7a..81de572 100644
--- a/media-sound/pulseaudio/pulseaudio-6.0.ebuild
+++ b/media-sound/pulseaudio/pulseaudio-6.0.ebuild
@@ -17,7 +17,7 @@ LICENSE="!gdbm? ( LGPL-2.1 ) gdbm? ( GPL-2 )"
 
 SLOT="0"
 #KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-linux ~x86-linux"
 
 # +alsa-plugin as discussed in bug #519530
 IUSE="+alsa +alsa-plugin +asyncns bluetooth +caps dbus doc equalizer +gdbm 
+glib



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

2015-09-07 Thread Mikle Kolyada
commit: ab0285b203379b2beb6ecc9356f06a6e76a2ee1a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:35:16 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:35:16 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab0285b2

net-libs/libgrss: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

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

diff --git a/net-libs/libgrss/libgrss-0.7.0.ebuild 
b/net-libs/libgrss/libgrss-0.7.0.ebuild
index f611ea2..bad60c8 100644
--- a/net-libs/libgrss/libgrss-0.7.0.ebuild
+++ b/net-libs/libgrss/libgrss-0.7.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://live.gnome.org/Libgrss";
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="+introspection"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: c5a98e031ed60734890f4d48d5acf7bdb8f9e403
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:52:22 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:52:22 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5a98e03

media-sound/soundconverter: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 media-sound/soundconverter/soundconverter-2.1.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/soundconverter/soundconverter-2.1.5-r1.ebuild 
b/media-sound/soundconverter/soundconverter-2.1.5-r1.ebuild
index 6fbca50..a313c3f 100644
--- a/media-sound/soundconverter/soundconverter-2.1.5-r1.ebuild
+++ b/media-sound/soundconverter/soundconverter-2.1.5-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://launchpad.net/${PN}/trunk/${PV}/+download/${P}.tar.xz";
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 IUSE="aac flac mp3 opus vorbis"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



[gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-online-miners/

2015-09-07 Thread Mikle Kolyada
commit: 6a829789a7fd1f489e92fab7e580871debec0cea
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:37:56 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:37:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a829789

net-misc/gnome-online-miners: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild 
b/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild
index 836944a..e1c4f28 100644
--- a/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild
+++ b/net-misc/gnome-online-miners/gnome-online-miners-3.14.3-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GnomeOnlineMiners";
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="flickr"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 # libgdata[gnome] needed for goa support
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: f51e13e697eb9f3e56d130606ead4bf233984174
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:39:56 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:39:56 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f51e13e6

net-misc/networkmanager-openvpn: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.6-r1.ebuild 
b/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.6-r1.ebuild
index d7a3f60..d653cc3 100644
--- a/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.6-r1.ebuild
+++ b/net-misc/networkmanager-openvpn/networkmanager-openvpn-1.0.6-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm ~x86"
 IUSE="gtk test"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: b2e63efcb8201d530a75e5504985ec6d4ae8d667
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:36:01 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:36:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2e63efc

net-libs/libsoup-gnome: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild 
b/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild
index 0a993a7..5ff13af 100644
--- a/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild
+++ b/net-libs/libsoup-gnome/libsoup-gnome-2.50.0.ebuild
@@ -18,7 +18,7 @@ SRC_URI="${SRC_URI//-gnome}"
 LICENSE="LGPL-2+"
 SLOT="2.4"
 IUSE="debug +introspection"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x86-solaris"
 
 RDEPEND="
~net-libs/libsoup-${PV}[introspection?,${MULTILIB_USEDEP}]



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

2015-09-07 Thread Mikle Kolyada
commit: e812bcfc1277bb92a0aa8453638941fbb6077231
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:32:18 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:32:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e812bcfc

net-libs/dleyna-renderer: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-libs/dleyna-renderer/dleyna-renderer-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/dleyna-renderer/dleyna-renderer-0.5.0.ebuild 
b/net-libs/dleyna-renderer/dleyna-renderer-0.5.0.ebuild
index 8412252..d0a1844 100644
--- a/net-libs/dleyna-renderer/dleyna-renderer-0.5.0.ebuild
+++ b/net-libs/dleyna-renderer/dleyna-renderer-0.5.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://01.org/sites/default/files/downloads/dleyna/${P}.tar.gz";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 COMMON_DEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: b2a1e3ecbf646bb3bb5927f49c1d1579d3bf9b14
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:50:08 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:50:08 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2a1e3ec

dev-lang/orc: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 dev-lang/orc/orc-0.4.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/orc/orc-0.4.24.ebuild b/dev-lang/orc/orc-0.4.24.ebuild
index b468c6b..c56d33c 100644
--- a/dev-lang/orc/orc-0.4.24.ebuild
+++ b/dev-lang/orc/orc-0.4.24.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://gstreamer.freedesktop.org/src/${PN}/${P}.tar.xz";
 
 LICENSE="BSD BSD-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="examples hardened static-libs"
 
 RDEPEND=""



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

2015-09-07 Thread Mikle Kolyada
commit: aafd66168478810b66137b0cc5054850c1dc416e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:30:31 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:30:31 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aafd6616

media-sound/gnome-sound-recorder: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 media-sound/gnome-sound-recorder/gnome-sound-recorder-3.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.16.0.ebuild 
b/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.16.0.ebuild
index e064557..d7213b8 100644
--- a/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.16.0.ebuild
+++ b/media-sound/gnome-sound-recorder/gnome-sound-recorder-3.16.0.ebuild
@@ -12,7 +12,7 @@ 
HOMEPAGE="https://wiki.gnome.org/ThreePointEleven/Features/SoundRecorder";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 # For the list of plugins, see src/audioProfile.js



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

2015-09-07 Thread Mikle Kolyada
commit: ea4e2cf5506765794693d7c16011b45054f632a1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:34:30 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:34:30 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea4e2cf5

net-libs/libgfbgraph: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

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

diff --git a/net-libs/libgfbgraph/libgfbgraph-0.2.3.ebuild 
b/net-libs/libgfbgraph/libgfbgraph-0.2.3.ebuild
index 4a8ad2e..c08860f 100644
--- a/net-libs/libgfbgraph/libgfbgraph-0.2.3.ebuild
+++ b/net-libs/libgfbgraph/libgfbgraph-0.2.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://git.gnome.org/browse/libgfbgraph/";
 
 LICENSE="LGPL-2.1+"
 SLOT="0.2"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+introspection"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-libav/

2015-09-07 Thread Mikle Kolyada
commit: 145c0559a71923ffa358f64015973bcbf3206e4e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:51:47 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:51:47 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=145c0559

media-plugins/gst-plugins-libav: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 media-plugins/gst-plugins-libav/gst-plugins-libav-1.4.5-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-libav/gst-plugins-libav-1.4.5-r2.ebuild 
b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.4.5-r2.ebuild
index 2555b16..471b7ea 100644
--- a/media-plugins/gst-plugins-libav/gst-plugins-libav-1.4.5-r2.ebuild
+++ b/media-plugins/gst-plugins-libav/gst-plugins-libav-1.4.5-r2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://gstreamer.freedesktop.org/src/${MY_PN}/${MY_PN}-${PV}.tar.xz";
 
 LICENSE="GPL-2"
 SLOT="1.0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd"
 IUSE="libav +orc"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: df26b59aba75558d866ecbc45f68275ea811f68c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:45:50 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:11 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df26b59a

gnome-extra/gnome-characters: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/gnome-characters/gnome-characters-3.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-characters/gnome-characters-3.16.2.ebuild 
b/gnome-extra/gnome-characters/gnome-characters-3.16.2.ebuild
index 545eaf6..232eb40 100644
--- a/gnome-extra/gnome-characters/gnome-characters-3.16.2.ebuild
+++ b/gnome-extra/gnome-characters/gnome-characters-3.16.2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://live.gnome.org/Gucharmap";
 
 LICENSE="GPL-2 BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="${COMMON_DEPEND}



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

2015-09-07 Thread Mikle Kolyada
commit: 4783954d85c397f5bb273884aa56f990e43a459a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:02:43 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:21 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4783954d

gnome-extra/libgda: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/libgda/libgda-5.2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgda/libgda-5.2.4.ebuild 
b/gnome-extra/libgda/libgda-5.2.4.ebuild
index 1d46a0d..ab0450c 100644
--- a/gnome-extra/libgda/libgda-5.2.4.ebuild
+++ b/gnome-extra/libgda/libgda-5.2.4.ebuild
@@ -26,7 +26,7 @@ REQUIRED_USE="
 # firebird license is not GPL compatible
 
 SLOT="5/4" # subslot = libgda-5.0 soname version
-KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
 
 RDEPEND="
app-text/iso-codes



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

2015-09-07 Thread Mikle Kolyada
commit: 408db7b70fcb6875d4fd92db3b1a73f6af330496
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:58:23 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:18 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=408db7b7

gnome-extra/gnome-logs: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/gnome-logs/gnome-logs-3.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-logs/gnome-logs-3.16.2.ebuild 
b/gnome-extra/gnome-logs/gnome-logs-3.16.2.ebuild
index bceed96..e0cead8 100644
--- a/gnome-extra/gnome-logs/gnome-logs-3.16.2.ebuild
+++ b/gnome-extra/gnome-logs/gnome-logs-3.16.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Logs";
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: c5ee634209d331d02e09d4b608bbc03bc866183a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:07:26 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:28 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5ee6342

gnome-extra/zenity: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/zenity/zenity-3.16.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/zenity/zenity-3.16.3.ebuild 
b/gnome-extra/zenity/zenity-3.16.3.ebuild
index 5f20fec..9a05ac0 100644
--- a/gnome-extra/zenity/zenity-3.16.3.ebuild
+++ b/gnome-extra/zenity/zenity-3.16.3.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Zenity";
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux"
 IUSE="libnotify test +webkit"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-color-manager/

2015-09-07 Thread Mikle Kolyada
commit: b26c2c5aed9f3e5df57c8f033f71cef334a1af04
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:50:41 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:15 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b26c2c5a

gnome-extra/gnome-color-manager: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/gnome-color-manager/gnome-color-manager-3.16.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-color-manager/gnome-color-manager-3.16.0.ebuild 
b/gnome-extra/gnome-color-manager/gnome-color-manager-3.16.0.ebuild
index f42e905..41f236c 100644
--- a/gnome-extra/gnome-color-manager/gnome-color-manager-3.16.0.ebuild
+++ b/gnome-extra/gnome-color-manager/gnome-color-manager-3.16.0.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://git.gnome.org/browse/gnome-color-manager";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 IUSE="packagekit raw"
 
 # Need gtk+-3.3.8 for https://bugzilla.gnome.org/show_bug.cgi?id=673331



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

2015-09-07 Thread Mikle Kolyada
commit: 6b3ab73a96ef35cbadec5cbbd9ee665bc65da031
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:28:32 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:07:58 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b3ab73a

gnome-extra/cjs: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1

 gnome-extra/cjs/cjs-2.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/cjs/cjs-2.6.2.ebuild b/gnome-extra/cjs/cjs-2.6.2.ebuild
index 7f766c8..9cafa4a 100644
--- a/gnome-extra/cjs/cjs-2.6.2.ebuild
+++ b/gnome-extra/cjs/cjs-2.6.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/linuxmint/cjs/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="MIT || ( MPL-1.1 LGPL-2+ GPL-2+ )"
 SLOT="0"
 IUSE="+cairo examples gtk test"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="alpha ~amd64 ~x86"
 
 RDEPEND="
dev-lang/spidermonkey:24



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/evolution-ews/

2015-09-07 Thread Mikle Kolyada
commit: c4831dc1e96136e542a679e5866ec138f98c8103
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:31:58 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:01 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4831dc1

gnome-extra/evolution-ews: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1

 gnome-extra/evolution-ews/evolution-ews-3.16.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/evolution-ews/evolution-ews-3.16.5.ebuild 
b/gnome-extra/evolution-ews/evolution-ews-3.16.5.ebuild
index f511fc9..f8320ee 100644
--- a/gnome-extra/evolution-ews/evolution-ews-3.16.5.ebuild
+++ b/gnome-extra/evolution-ews/evolution-ews-3.16.5.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Evolution";
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-frippery/

2015-09-07 Thread Mikle Kolyada
commit: 29bb8f0b771d27b49f80024ebbd789a72f343ba2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:59:12 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:20 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29bb8f0b

gnome-extra/gnome-shell-frippery: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/gnome-shell-frippery/gnome-shell-frippery-0.10.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-0.10.3.ebuild 
b/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-0.10.3.ebuild
index ca87941..c2d62bf 100644
--- a/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-0.10.3.ebuild
+++ b/gnome-extra/gnome-shell-frippery/gnome-shell-frippery-0.10.3.ebuild
@@ -10,7 +10,7 @@ SRC_URI="http://frippery.org/extensions/${P}.tgz";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/yelp-xsl/

2015-09-07 Thread Mikle Kolyada
commit: 2e0b19c7d2de91e1b960dc3a618fd0226588d6f6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:06:37 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:27 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e0b19c7

gnome-extra/yelp-xsl: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/yelp-xsl/yelp-xsl-3.16.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/yelp-xsl/yelp-xsl-3.16.1.ebuild 
b/gnome-extra/yelp-xsl/yelp-xsl-3.16.1.ebuild
index 072ac1a..faf8fdf 100644
--- a/gnome-extra/yelp-xsl/yelp-xsl-3.16.1.ebuild
+++ b/gnome-extra/yelp-xsl/yelp-xsl-3.16.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://www.gnome.org/";
 LICENSE="GPL-2+ LGPL-2.1+ MIT FDL-1.1+"
 SLOT="0"
 IUSE=""
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~amd64-linux ~arm-linux ~x86-linux"
 
 RDEPEND="
>=dev-libs/libxml2-2.6.12:=



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

2015-09-07 Thread Mikle Kolyada
commit: 199584d3c604c9c675f6d5a125fb8015a5196edd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:04:27 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:24 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=199584d3

gnome-extra/nemo: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/nemo/nemo-2.6.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/nemo/nemo-2.6.7.ebuild 
b/gnome-extra/nemo/nemo-2.6.7.ebuild
index 9080cb6..cd12740 100644
--- a/gnome-extra/nemo/nemo-2.6.7.ebuild
+++ b/gnome-extra/nemo/nemo-2.6.7.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/linuxmint/nemo/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2+ LGPL-2+ FDL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="exif +introspection +nls packagekit tracker xmp"
 
 COMMON_DEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: be26ddf297df08fdb3670136a0fb85702a1ecf3a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:48:45 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:12 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be26ddf2

media-libs/gsound: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

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

diff --git a/media-libs/gsound/gsound-1.0.1.ebuild 
b/media-libs/gsound/gsound-1.0.1.ebuild
index 391f0cc..3be6412 100644
--- a/media-libs/gsound/gsound-1.0.1.ebuild
+++ b/media-libs/gsound/gsound-1.0.1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GSound";
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+introspection"
 
 # vala setup required for vapigen check



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

2015-09-07 Thread Mikle Kolyada
commit: 8def234784c5f7c1ad1a6fe2423f047a4a6e005b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:05:01 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:25 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8def2347

gnome-extra/nm-applet: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/nm-applet/nm-applet-1.0.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/nm-applet/nm-applet-1.0.6.ebuild 
b/gnome-extra/nm-applet/nm-applet-1.0.6.ebuild
index 4a4a875..1eb3f3c 100644
--- a/gnome-extra/nm-applet/nm-applet-1.0.6.ebuild
+++ b/gnome-extra/nm-applet/nm-applet-1.0.6.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager";
 LICENSE="GPL-2+"
 SLOT="0"
 IUSE="bluetooth +introspection modemmanager"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND="
app-crypt/libsecret



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

2015-09-07 Thread Mikle Kolyada
commit: a1f2192f697953a8cdb0f575b9c6cd3968f82458
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:40:54 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:02 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1f2192f

net-libs/phodav: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 net-libs/phodav/phodav-2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/phodav/phodav-2.0-r1.ebuild 
b/net-libs/phodav/phodav-2.0-r1.ebuild
index 5bd28f8..bb9a7c7 100644
--- a/net-libs/phodav/phodav-2.0-r1.ebuild
+++ b/net-libs/phodav/phodav-2.0-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://wiki.gnome.org/phodav";
 
 LICENSE="LGPL-2.1+"
 SLOT="2.0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ppc ~ppc64 ~x86"
 IUSE="spice systemd zeroconf"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: 68c0448ba3d9d74b425c5b1b8e56d7fd1f321094
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 21:03:25 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:23 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c0448b

gnome-extra/libgsf: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/libgsf/libgsf-1.14.34.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgsf/libgsf-1.14.34.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.34.ebuild
index b7d2640..18f86ee 100644
--- a/gnome-extra/libgsf/libgsf-1.14.34.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.34.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://developer.gnome.org/gsf/";
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sh ~sparc ~x86 
~x86-fbsd ~x86-freebsd ~x86-interix ~amd64-linux ~x86-linux ~ppc-macos 
~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 gtk +introspection"
 
 RDEPEND="



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

2015-09-07 Thread Mikle Kolyada
commit: c46d72ebbe4829d9b95b645aad7344b26a0b2858
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Mon Sep  7 20:45:29 2015 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Mon Sep  7 21:08:10 2015 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c46d72eb

gnome-extra/gnome-calendar: amd64 stable wrt bug #551826

Package-Manager: portage-2.2.20.1
RepoMan-Options: --ignore-arches

 gnome-extra/gnome-calendar/gnome-calendar-3.16.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-calendar/gnome-calendar-3.16.2.ebuild 
b/gnome-extra/gnome-calendar/gnome-calendar-3.16.2.ebuild
index 0777449..1b78c3e 100644
--- a/gnome-extra/gnome-calendar/gnome-calendar-3.16.2.ebuild
+++ b/gnome-extra/gnome-calendar/gnome-calendar-3.16.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Calendar";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 # >=libical-1.0.1 for https://bugzilla.gnome.org/show_bug.cgi?id=751244



  1   2   3   >