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

2016-03-15 Thread Hans de Graaff
commit: f4343b08d7f87d346bdba8631527bbf261f6b84d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Mar 16 05:41:29 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Mar 16 05:41:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4343b08

dev-ruby/ffi: cleanup

Package-Manager: portage-2.2.26

 dev-ruby/ffi/Manifest |  2 --
 dev-ruby/ffi/ffi-1.9.8.ebuild | 71 ---
 dev-ruby/ffi/ffi-1.9.9.ebuild | 65 ---
 3 files changed, 138 deletions(-)

diff --git a/dev-ruby/ffi/Manifest b/dev-ruby/ffi/Manifest
index 136b435..b26cd92 100644
--- a/dev-ruby/ffi/Manifest
+++ b/dev-ruby/ffi/Manifest
@@ -1,4 +1,2 @@
 DIST ffi-git-1.9.10.tgz 897526 SHA256 
3a9a9f6d36fe6a99a3e93865f9680a7578a01f2f52368c6e3c4eac94d3784c70 SHA512 
6b47ec43bffdbed31607b8fdc32c26cce9af4eadf03d751cf61f5d2fdd06a281891b6f2ad5f9c9916790211331edf022e5889dae13982be1ad42d12af8186146
 WHIRLPOOL 
ec8e816752c8ed35750dafe1146c2d371824154adfe5adf5c95846fa2a393d92eaaeee6e2a8052b2eea7513fbd9fa974b40bd788f7633068a4fcba26d4846d45
 DIST ffi-git-1.9.6.tgz 895468 SHA256 
b27a59bf2eddcc17abaf7063a64e527fa892ba95cdb6320aba6fa945c769c9c7 SHA512 
4b690b70db41642be679f13b33a67e27e1a4b14ca56d6ce355ea0a300c793a63e1081fb19d4c4bd395c1bea55a1669b96e3405932fffeebd328809a410fe3e8f
 WHIRLPOOL 
7f5ad8d7766b037e24cff4721db02f05b39604c1be5e07ddad9de4a5155124d2a05ebd43209dfc2491cdc50ea08e5cda856f7502bf1c12666fa19b77516c81f7
-DIST ffi-git-1.9.8.tgz 897533 SHA256 
0f5882e60ab6937ad2ef9466545510a4a7fb7b05b571262d147190f656cc90de SHA512 
636de8df5de0854a012799f4bd877e30929bf8338f200ff94710e5d31ebc0b8721e09a2459cda0d889f389fa78242b8526f072edaf546c1b9ba7c142d4e109e5
 WHIRLPOOL 
9f950c27874c178994103508331fc4289a7ad8de02aec5af05ee0190c536ce676c532ea425f81cb69c26fb0b28ab5510322f12103af61a8898d3861f37bc69e8
-DIST ffi-git-1.9.9.tgz 897511 SHA256 
80d4d2c2ec6777f29a5de375c44009fd27963be0e6db6aa1db71463ec2de5a06 SHA512 
4dc88c1468c99c27a5a02fa6292134fd557b74fdd74cbabfe7711c2089711abf1ef60d1c21bb2c9e1865848c52ed495a7de540ce77c12de0eca303add9fd81b5
 WHIRLPOOL 
604bf78679c5f4ecf11fb8fb9fbbff5f85f29e475d0493f3d8f3b8e803dca1d1774ebd5cfee9448b6ea53137a745538f1d1b434ba8d3935a7eeb0cfde2fe6c4a

diff --git a/dev-ruby/ffi/ffi-1.9.8.ebuild b/dev-ruby/ffi/ffi-1.9.8.ebuild
deleted file mode 100644
index 358787a..000
--- a/dev-ruby/ffi/ffi-1.9.8.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# 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_RECIPE_DOC="yard"
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby extension for programmatically loading dynamic libraries"
-HOMEPAGE="https://wiki.github.com/ffi/ffi;
-
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${PN}-git-${PV}.tgz"
-
-IUSE=""
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-
-RDEPEND+=" virtual/libffi"
-DEPEND+=" virtual/libffi"
-
-ruby_add_bdepend "doc? ( dev-ruby/yard )"
-
-all_ruby_prepare() {
-   sed -i -e '/tasks/ s:^:#:' \
-   -e '/Gem::Tasks/,/end/ s:^:#:' Rakefile || die
-
-   # Fix Makefile for tests
-   sed -i -e '/CCACHE :=/ s:^:#:' \
-   -e 's/-O2//' \
-   -e 's/^CFLAGS =/CFLAGS +=/' libtest/GNUmakefile || die
-
-   # Remove bundled version of libffi.
-   rm -rf ext/ffi_c/libffi || die
-
-   # Avoid GC-related specs that are broken
-   # https://github.com/ffi/ffi/issues/427
-   sed -i -e '/should release memory properly/,/^  end/ s:^:#:' \
-   spec/ffi/managed_struct_spec.rb || die
-   sed -i -e '173,211 s:^:#:' spec/ffi/pointer_spec.rb || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/ffi_c extconf.rb || die
-}
-
-each_ruby_compile() {
-   emake -Cext/ffi_c V=1
-   cp ext/ffi_c/ffi_c.so lib/ || die
-
-   ${RUBY} -S rake -f gen/Rakefile || die "types.conf generation failed"
-}
-
-each_ruby_test() {
-   CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${RUBY} -S rspec 
spec || die
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   docinto examples
-   dodoc samples/*
-}

diff --git a/dev-ruby/ffi/ffi-1.9.9.ebuild b/dev-ruby/ffi/ffi-1.9.9.ebuild
deleted file mode 100644
index 0bdda56..000
--- a/dev-ruby/ffi/ffi-1.9.9.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# 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_RECIPE_DOC="yard"
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby extension for 

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

2016-03-15 Thread Hans de Graaff
commit: 59ca63413f3a444d8f79c7ad2589b4ad326cd80a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Mar 16 05:42:06 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Mar 16 05:42:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59ca6341

dev-ruby/ffi: drop ruby19

Package-Manager: portage-2.2.26

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

diff --git a/dev-ruby/ffi/ffi-1.9.10.ebuild b/dev-ruby/ffi/ffi-1.9.10.ebuild
index 4880a72..80566dd 100644
--- a/dev-ruby/ffi/ffi-1.9.10.ebuild
+++ b/dev-ruby/ffi/ffi-1.9.10.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 



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

2016-03-15 Thread Hans de Graaff
commit: ecfb0a345ab9d0075586988db48c942924f6256e
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Mar 16 05:40:56 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Mar 16 05:40:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecfb0a34

dev-ruby/selenium-webdriver: add 2.53.0

Package-Manager: portage-2.2.26

 dev-ruby/selenium-webdriver/Manifest   |  1 +
 .../selenium-webdriver-2.53.0.ebuild   | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-ruby/selenium-webdriver/Manifest 
b/dev-ruby/selenium-webdriver/Manifest
index 5e52de2..3932967 100644
--- a/dev-ruby/selenium-webdriver/Manifest
+++ b/dev-ruby/selenium-webdriver/Manifest
@@ -2,3 +2,4 @@ DIST selenium-webdriver-2.47.1.gem 2872832 SHA256 
0140306e064fc40eb2dc632a88fd47
 DIST selenium-webdriver-2.50.0.gem 890368 SHA256 
6dde9797faebd84bdf252fff9cf0135c70c6027545a54efaf98b626425755115 SHA512 
a1b1b51aaec744008fab7db063c8cb53e7065ac766d4e56b98e0055aee576b718ae56bf60244c0ebcd7c98932b7ff9c2c8b8a78bc6d8dfae1fe6fbb813869098
 WHIRLPOOL 
0d5fe0cdea8f36b45c3fdb1ea2b2ae786029c8dd6a8ee7cd26d336499d3a77b36c6e0bd87dc73595c6b7e2de9482b46a29be3022087722505f28423efd61af43
 DIST selenium-webdriver-2.51.0.gem 890880 SHA256 
d3db5ed851e5de386d6a5a8ff86190ab9dd886e27ede400a02ede4ece648de84 SHA512 
ed9d62c12f717872e0d15dba8fb3e92642191f049ebb08be32439421782a543849f7e7fa7712f7c5bfc15f00fe1f18df9252ff0e3bba0db9d7af7ad404ab203f
 WHIRLPOOL 
c4cdc14f69274eaf46137af170c0d972ebdf1277288448d7dc73bc057a54761f1f938c6c78beb491e2f0be64f992a02e655395c8fd6751eb81e0c27581506082
 DIST selenium-webdriver-2.52.0.gem 890880 SHA256 
1faa96cbf02cc4f0f57e0f40db26e4f4a26d1a2f6a7eecd852f2e9df11ea0820 SHA512 
0cf7029ac0d0bfc7b0e26dda494d2fa5e6ba49b591206b7fc3b8ffe42dbe836126d9d2958d690a0b4e79c6e0918dd2de87e07b21645d101caeeb645779f07b84
 WHIRLPOOL 
8fad185e712eccf1de073fdd9fed8e804892684507d9d065fa846e7c8adbc9a439548c44000c172204fad0d847be55cad9fd36c07d02585d74524837f70dc909
+DIST selenium-webdriver-2.53.0.gem 897536 SHA256 
6e79499ef8a5fd14c545a437dcb91795c83132fad9ddf65b7610889ae0fa3a87 SHA512 
0f40520d88d00ed6c4e48aab41e8c02386a82aae16053bb8d763cef5361447ff4afb74cfa756bcaf1801f53c68aaf557eaf9859751c2e66c27c70aaf406d85dc
 WHIRLPOOL 
27057f40f3a82e49f7db43a985af33cbe8e06ed2baf38d3fdea6330426607f674803fae46542e65e62e89c7e2194e9b8389e9f020dda7352d6de0e0ff4b54fb1

diff --git a/dev-ruby/selenium-webdriver/selenium-webdriver-2.53.0.ebuild 
b/dev-ruby/selenium-webdriver/selenium-webdriver-2.53.0.ebuild
new file mode 100644
index 000..6e679c4
--- /dev/null
+++ b/dev-ruby/selenium-webdriver/selenium-webdriver-2.53.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+# NOTE: this package contains precompiled code. It appears that all
+# source code can be found at https://code.google.com/p/selenium/ but the
+# repository is not organized in a way so that we can easily rebuild the
+# suited shared object. We'll just try our luck with the precompiled
+# objects for now.
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGES README.md"
+
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_QA_ALLOWED_LIBS="x_ignore_nofocus.so"
+QA_PREBUILT="*/x_ignore_nofocus.so"
+
+inherit ruby-fakegem
+
+DESCRIPTION="This gem provides Ruby bindings for WebDriver"
+HOMEPAGE="http://gemcutter.org/gems/selenium-webdriver;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/childprocess-0.5.0
+   dev-ruby/rubyzip:1"
+
+all_ruby_prepare() {
+   # Make websocket a development dependency since it is only needed
+   # for the safari driver which we don't support on Gentoo.
+   sed -i -e '/websocket/,/version_requirements/ s/runtime/development/' 
../metadata || die
+}



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

2016-03-15 Thread Hans de Graaff
commit: dc9e1e81154b9fb314e1401a8bf9f57855993649
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Mar 16 05:57:34 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Mar 16 05:57:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc9e1e81

dev-ruby/ffi: add ruby23

Drop ia64, ppc, sparc, x86 keywords due to unkeyworded dependencies, bug 562452

Package-Manager: portage-2.2.26

 dev-ruby/ffi/ffi-1.9.10-r1.ebuild | 65 +++
 1 file changed, 65 insertions(+)

diff --git a/dev-ruby/ffi/ffi-1.9.10-r1.ebuild 
b/dev-ruby/ffi/ffi-1.9.10-r1.ebuild
new file mode 100644
index 000..2534544
--- /dev/null
+++ b/dev-ruby/ffi/ffi-1.9.10-r1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="yard"
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Ruby extension for programmatically loading dynamic libraries"
+HOMEPAGE="https://wiki.github.com/ffi/ffi;
+
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${PN}-git-${PV}.tgz"
+
+IUSE=""
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND+=" virtual/libffi"
+DEPEND+=" virtual/libffi"
+
+ruby_add_bdepend "doc? ( dev-ruby/yard )"
+
+all_ruby_prepare() {
+   sed -i -e '/tasks/ s:^:#:' \
+   -e '/Gem::Tasks/,/end/ s:^:#:' Rakefile || die
+
+   # Fix Makefile for tests
+   sed -i -e '/CCACHE :=/ s:^:#:' \
+   -e 's/-O2//' \
+   -e 's/^CFLAGS =/CFLAGS +=/' libtest/GNUmakefile || die
+
+   # Remove bundled version of libffi.
+   rm -rf ext/ffi_c/libffi || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/ffi_c extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake -Cext/ffi_c V=1
+   cp ext/ffi_c/ffi_c.so lib/ || die
+
+   ${RUBY} -S rake -f gen/Rakefile || die "types.conf generation failed"
+}
+
+each_ruby_test() {
+   CC=$(tc-getCC) CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" ${RUBY} -S rspec 
spec || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   docinto examples
+   dodoc samples/*
+}



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

2016-03-15 Thread Tim Harder
commit: f3e8f9feb04261dfef1fc5a9ffd54ec0c56e8bb1
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Mar 16 04:19:35 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Mar 16 04:19:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3e8f9fe

dev-python/ijson: add py35 support

 dev-python/ijson/ijson-2.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/ijson/ijson-2.3.ebuild 
b/dev-python/ijson/ijson-2.3.ebuild
index 4526124..bd73656 100644
--- a/dev-python/ijson/ijson-2.3.ebuild
+++ b/dev-python/ijson/ijson-2.3.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
 
 inherit distutils-r1
 



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

2016-03-15 Thread Tim Harder
commit: b7535b6fe39b65c5806d4ba79be993f4e21cddcc
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Mar 16 04:16:06 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Mar 16 04:16:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7535b6f

media-libs/exiftool: version bump to 10.13

 media-libs/exiftool/Manifest  |  1 +
 media-libs/exiftool/exiftool-10.13.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/media-libs/exiftool/Manifest b/media-libs/exiftool/Manifest
index 5fb52ef..54d94eb 100644
--- a/media-libs/exiftool/Manifest
+++ b/media-libs/exiftool/Manifest
@@ -1,3 +1,4 @@
 DIST Image-ExifTool-10.10.tar.gz 4056189 SHA256 
f9fcecf8954cfd6b1f5658e1fc82801e8b98f891c88a60adbd6bc5c716471e09 SHA512 
c18963020f02f196c68d89d22126834dbde31b2e13da0b56509d1d25f9adb6248f8e4ea9ec7cba7f144a44d6c81e966e9aafd36d4e2d76d92e3b7a0c7e4fdacd
 WHIRLPOOL 
e5bd0791dfc7fa4b16d4ee770d866626a119cf68b8e2736cda1181a2fcb7a32e96ad885a706d25da0241bd9ba1c0637c23be49e5662fe813fa8fb48b4100768c
 DIST Image-ExifTool-10.11.tar.gz 4060513 SHA256 
8cf8b2ec192fdbec5e1946bcf1ed9c7c681e6d16896298bbf7adb8eb59356729 SHA512 
c61f70782fbe9f7ce55fb1e0a66aaa0310be17b483b39505ba6255964798d46a8887254a9f635abfc5edc544b3c52cf180575ba7ccf72b4ed209608f78d4e427
 WHIRLPOOL 
5cbed0ea1516760339cfd93c6f3a73eda9b4413b58a7871c604da61bd0d484f6c6772ea1efa31d6b5d5a8da2d23fe1de4a81469bcc32eb28bb5122ff8134be98
 DIST Image-ExifTool-10.12.tar.gz 4061878 SHA256 
be1d5a4f9d4992b95e2cc028d6f26f55fe19b99020589e68ff07c1a3fa32f14e SHA512 
3149af438536825af2bfa4302103b530bc66f65fb84211daba145754fbc47aba8b626e8accbd8fb82c2825901943492d8492c54ec6e517646c71529788de5b02
 WHIRLPOOL 
e78454d895f21e9e77da371b0e8209b96127baa511503a8d47649318b45af561d3ee3fc9f602f06a6d2cb66db9dde7b02d3248b57f05479d56f0758b6fe231d3
+DIST Image-ExifTool-10.13.tar.gz 4064536 SHA256 
830ad5e28bc049ec69950c2a48e5703aff2cb05956b80ed21aa65167afab56a9 SHA512 
8a2b2c0507b28e3fc0906f8b9beb72a44094d41d51257ced8d1e611aa10d63a09532f54149d047a46a8c57d8e07956fa7c0e46092238b094e540c7fa97bdd8d0
 WHIRLPOOL 
2545ea7c2a32bb499d4e70c443300253b82fab910f03f27280e2ed3b041357d4d0c66371ade2d2f2621deebbcf26673911e72ac1fe594babf498cba052287ade

diff --git a/media-libs/exiftool/exiftool-10.13.ebuild 
b/media-libs/exiftool/exiftool-10.13.ebuild
new file mode 100644
index 000..0d48581
--- /dev/null
+++ b/media-libs/exiftool/exiftool-10.13.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_PN=Image-ExifTool
+MY_P=${MY_PN}-${PV}
+inherit perl-module
+
+DESCRIPTION="Read and write meta information in image, audio and video files"
+HOMEPAGE="http://www.sno.phy.queensu.ca/~phil/exiftool/ ${HOMEPAGE}"
+SRC_URI="http://www.sno.phy.queensu.ca/~phil/exiftool/${MY_P}.tar.gz;
+
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~x64-macos"
+IUSE="doc"
+
+SRC_TEST="do"
+
+src_install() {
+   perl-module_src_install
+   use doc && dohtml -r html/
+}



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

2016-03-15 Thread Tim Harder
commit: 4a1ffe4a266966e61d560ad7cd46103a0da80a89
Author: Tim Harder  gentoo  org>
AuthorDate: Wed Mar 16 04:05:06 2016 +
Commit: Tim Harder  gentoo  org>
CommitDate: Wed Mar 16 04:09:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a1ffe4a

app-vim/gitgutter: version bump to new snapshot

 app-vim/gitgutter/Manifest  |  1 +
 app-vim/gitgutter/gitgutter-20160316.ebuild | 23 +++
 app-vim/gitgutter/gitgutter-.ebuild | 14 ++
 3 files changed, 34 insertions(+), 4 deletions(-)

diff --git a/app-vim/gitgutter/Manifest b/app-vim/gitgutter/Manifest
index 3ac8fdf..a025489 100644
--- a/app-vim/gitgutter/Manifest
+++ b/app-vim/gitgutter/Manifest
@@ -1 +1,2 @@
 DIST gitgutter-20141101.tar.bz2 31556 SHA256 
a7d65fe668e8e7a515a8637df7ed80b17f27a0f637a7882c0207f8bae035022f SHA512 
cbe21df40a05caebd85ac24fd20a55cf784ff33f73a7d27bcb8e87b6a38cd787b801fa314bf7ba9eefbc703efff527c9ebd947768c5714e774e39e67c7d35055
 WHIRLPOOL 
92d4c59d1e3925afa7f93f30ce8f87c430bf556e9553601b8eaeeaa9538900899115309602b1a5c17e8be9cff9d5b69a0ae70470438841a7090aaa35f452bbd2
+DIST gitgutter-20160316.tar.bz2 37102 SHA256 
41d3e44ae569cf208682e0e50b30bef669e195ad048196ec8fc91a9d8496637a SHA512 
f63bb92097c1c52d5a6d84d9707358d4c3c681b1e7b5f4cc19846cda0ee5938d7f0180d5f9dcf259f06d32839e64ebbc4d7b4b681fc91cc785e484fba7d4c1b7
 WHIRLPOOL 
45a7fcb9108eeab47fdd2cfcc2f9409335d5b322d7bb1db58d9b702583b384d9c9a7ac7084620de1ce2a99370e87b29063291c8aee87c6710bf2153289afc003

diff --git a/app-vim/gitgutter/gitgutter-20160316.ebuild 
b/app-vim/gitgutter/gitgutter-20160316.ebuild
new file mode 100644
index 000..6ae5ba5
--- /dev/null
+++ b/app-vim/gitgutter/gitgutter-20160316.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit vim-plugin
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="git://github.com/airblade/vim-gitgutter.git"
+   inherit git-r3
+else
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="vim plugin: shows a git diff in the sign column and 
stages/reverts hunks"
+HOMEPAGE="https://github.com/airblade/vim-gitgutter/;
+LICENSE="MIT"
+VIM_PLUGIN_HELPFILES="${PN}.txt"
+
+src_prepare() {
+   rm README* screenshot.png || die
+   rm -rf test || die
+}

diff --git a/app-vim/gitgutter/gitgutter-.ebuild 
b/app-vim/gitgutter/gitgutter-.ebuild
index eb40980..6ae5ba5 100644
--- a/app-vim/gitgutter/gitgutter-.ebuild
+++ b/app-vim/gitgutter/gitgutter-.ebuild
@@ -1,17 +1,23 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-inherit vim-plugin git-r3
+inherit vim-plugin
 
-EGIT_REPO_URI="git://github.com/airblade/vim-gitgutter.git"
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="git://github.com/airblade/vim-gitgutter.git"
+   inherit git-r3
+else
+   KEYWORDS="~amd64 ~x86"
+fi
 
-DESCRIPTION="vim plugin: shows a git diff summary in the sign column and 
stages/reverts individual hunks"
+DESCRIPTION="vim plugin: shows a git diff in the sign column and 
stages/reverts hunks"
 HOMEPAGE="https://github.com/airblade/vim-gitgutter/;
 LICENSE="MIT"
 VIM_PLUGIN_HELPFILES="${PN}.txt"
 
 src_prepare() {
rm README* screenshot.png || die
+   rm -rf test || die
 }



[gentoo-commits] repo/gentoo:master commit in: dev-games/wfmath/

2016-03-15 Thread Michael Sterrett
commit: 461d98b2096cb9dd3dacdb20f87413280fc457a9
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Mar 15 17:58:18 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Mar 16 03:57:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=461d98b2

dev-games/wfmath: clean old

Package-Manager: portage-2.2.26

 dev-games/wfmath/Manifest|  1 -
 dev-games/wfmath/wfmath-1.0.1.ebuild | 34 --
 2 files changed, 35 deletions(-)

diff --git a/dev-games/wfmath/Manifest b/dev-games/wfmath/Manifest
index e472e8a..e8f5e3e 100644
--- a/dev-games/wfmath/Manifest
+++ b/dev-games/wfmath/Manifest
@@ -1,2 +1 @@
-DIST wfmath-1.0.1.tar.bz2 389227 SHA256 
1503f0efaf9b27bf96547888062492c2412aebc32a0e407d58d50b84e3e2a506 SHA512 
4017a572f946182c7aed4ffb8dfe139f85f5bb946a42bd593579030ee9f5617a07859f62b1169322d613919b37a0ff39079aa989f960d22b6cedfb9c3e7701bc
 WHIRLPOOL 
3c3c78bed0d8d5c70cf4343b54e292bf92856b6629924f75c6c3fc769ae60d816f793c9cbe1fb3161491a90b06d52b1da58557c9ac99a9394fa61baef1946dcc
 DIST wfmath-1.0.2.tar.bz2 399987 SHA256 
7072d640597bf102c6641e9237aaec6582849ef6c1cdc3062e369f070e20d883 SHA512 
3506dbaed5db914b0be5483d5b589d95ed495b6375384e4b045844f8d76240f97b5c322ac432faf177f16da0fedd0b0e6006877a9b40e7f5d31d3324efa6de57
 WHIRLPOOL 
fe10805d66707d9b99faa31aa6f048a8ec12c20b47d96ce2f72da253a5e152e069775d65c56da059ca74689eb44d5848dbbf4dd2d1a3f6001bd2b76ac9e8f378

diff --git a/dev-games/wfmath/wfmath-1.0.1.ebuild 
b/dev-games/wfmath/wfmath-1.0.1.ebuild
deleted file mode 100644
index 77a2ab2..000
--- a/dev-games/wfmath/wfmath-1.0.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils
-
-DESCRIPTION="Worldforge math library"
-HOMEPAGE="http://www.worldforge.org/dev/eng/libraries/wfmath;
-SRC_URI="mirror://sourceforge/worldforge/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="doc static-libs"
-
-RDEPEND=""
-DEPEND="doc? ( app-doc/doxygen )
-   virtual/pkgconfig"
-
-src_configure() {
-   econf $(use_enable static-libs static)
-}
-
-src_compile() {
-   emake
-   use doc && emake -C doc docs
-}
-
-src_install() {
-   default
-   use doc && dohtml doc/html/*
-   prune_libtool_files
-}



[gentoo-commits] repo/gentoo:master commit in: games-kids/gcompris/, games-kids/gcompris/files/

2016-03-15 Thread Michael Sterrett
commit: ed0b22959c4acba6ca116ba28521b73f4266335d
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Mar 15 16:59:37 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Mar 16 03:57:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed0b2295

games-kids/gcompris: clean old

Package-Manager: portage-2.2.26

 games-kids/gcompris/Manifest   |  1 -
 .../gcompris/files/gcompris-15.02-build.patch  | 81 
 games-kids/gcompris/gcompris-15.02.ebuild  | 89 --
 3 files changed, 171 deletions(-)

diff --git a/games-kids/gcompris/Manifest b/games-kids/gcompris/Manifest
index 996381d..b549578 100644
--- a/games-kids/gcompris/Manifest
+++ b/games-kids/gcompris/Manifest
@@ -1,3 +1,2 @@
 DIST gcompris-14.12.tar.bz2 272767636 SHA256 
bf0beafb03c0f4ffe05bbfcda54b91a5e8a034b5d813cb4492d6f59a21f9cdcf SHA512 
b0948fcf303b335a231318dd57ef84d83cda7839e82542e5c4b9e794745561c24d64e7e76a96c63d1b0eb5a44377f2bf05b1d89f3bcab75dd2c32075e2ba5258
 WHIRLPOOL 
0d49a59e5fddd5e24e6e593ad53d99c7a8714b6b48dd2e3f776600366f61886c4ea15428f056cb8ae69e26024a88f3264814f80ce9e11e9d82d4f9d0adb8b056
-DIST gcompris-15.02.tar.bz2 272847496 SHA256 
c3e2f84f459d747b853b0424e366d0ce7b1f4ef00d660cdde5084712cf5c3ad4 SHA512 
468ca9a3a4cfff78e34206c40e6aebfc79ba087dd1e87f96a8b9b2ae1149550791be16ca0776f11e6768dd4acb3caaae9e763ac9d941f1f09c7a3464e829e7af
 WHIRLPOOL 
5b38bf16e061d9770e66573c81e4b3b0617d3cf2e0679919a06b628ff622d4b0e8585115b4084e51e674c57cf1f2a36472e3e66283a9ee3f78423eac998b5a24
 DIST gcompris-15.10.tar.bz2 279959562 SHA256 
6aba73e2a1db0f50d43a40ee1a4a2b9d62a96e68542971b555c9debd8f50fc38 SHA512 
1915a6934f3111e871be2777ed88c8d15a3ddb85f0c16d92333b6ebcba0cbbe526e51e84ecc576021cd807a5d69bb9570dba481ddc925da9d4dd35a0075380fc
 WHIRLPOOL 
3baeac6e632f62d8db096ed1713df0297f7460902f23f52667d551b85da3b124c39af5977935f9c7d98e037faf168f51eae33d0063e4f8852bac190f9ebf

diff --git a/games-kids/gcompris/files/gcompris-15.02-build.patch 
b/games-kids/gcompris/files/gcompris-15.02-build.patch
deleted file mode 100644
index 077d1f6..000
--- a/games-kids/gcompris/files/gcompris-15.02-build.patch
+++ /dev/null
@@ -1,81 +0,0 @@
 gcompris-13.11.orig/Makefile.am
-+++ gcompris-13.11/Makefile.am
-@@ -7,7 +7,7 @@
- # endif
- 
- 
--icondir=$(datadir)/pixmaps
-+icondir=/usr/share/pixmaps
- icon_DATA = gcompris.png gcompris-edit.png
- 
- if BUILD_MINGW32
-@@ -15,7 +15,7 @@
- Applications_in_files =
- Applications_DATA =
- else
--Applicationsdir = $(datadir)/applications/
-+Applicationsdir = /usr/share/applications/
- Applications_in_files = gcompris.desktop.in gcompris-edit.desktop.in
- Applications_DATA = gcompris.desktop gcompris-edit.desktop
- endif
 gcompris-13.11.orig/configure.ac
-+++ gcompris-13.11/configure.ac
-@@ -57,7 +57,8 @@
-   gtk+-2.0 >= $GTK_REQUIRED \
-   librsvg-2.0 >= $LIBRSVG_REQUIRED \
-   libxml-2.0 >= $LIBXML_REQUIRED \
--  gthread-2.0 )
-+  gthread-2.0 \
-+  gmodule-2.0 )
- 
- AC_SUBST(GCOMPRIS_CFLAGS)
- AC_SUBST(GCOMPRIS_LIBS)
-@@ -204,10 +205,8 @@
-   USE_DEBUG="$enableval", USE_DEBUG="no")
- if test "x$USE_DEBUG" == "xyes" ; then
- AC_DEFINE_UNQUOTED(DEBUG, 1, "Enable debug messages.")
--CFLAGS="$CFLAGS $OSX_CFLAGS -Wall -g"
--else
--CFLAGS="$CFLAGS $OSX_CFLAGS -Wall -O2"
- fi
-+CFLAGS="$CFLAGS $OSX_CFLAGS -Wall"
- 
- dnl disable activation code
- AC_ARG_ENABLE(disable-activation-code,
-@@ -336,21 +335,21 @@
-   fi
- else
-   dnl Set PACKAGE_LOCALE_DIR in config.h.
--  AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "${myprefix}/${DATADIRNAME}/locale", 
[GCompris locale directory])
-+  AC_DEFINE_UNQUOTED(PACKAGE_LOCALE_DIR, "/usr/share/locale", [GCompris 
locale directory])
- 
-   dnl Set PACKAGE_DATA_DIR
-   PACKAGE_DATA_DIR="boards"
-   AC_SUBST(PACKAGE_DATA_DIR)
--  AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${myprefix}/${DATADIRNAME}", 
[GCompris data directory])
-+  AC_DEFINE_UNQUOTED(PACKAGE_DATA_DIR, "${datadir}", [GCompris data 
directory])
- 
-   dnl Plugin Directory
-   my_libdir=`eval echo "${libdir}"`
--  AC_DEFINE_UNQUOTED(PACKAGE_CLIB_DIR, "${my_libdir}", [Gcompris plugins 
directory])
-+  AC_DEFINE_UNQUOTED(PACKAGE_CLIB_DIR, "${libdir}", [Gcompris plugins 
directory])
-   plugindir=$libdir/gcompris
-   AC_SUBST(plugindir)
- 
-   dnl Python plugin Directory
--  PYTHON_PLUGIN_DIR="${myprefix}/${DATADIRNAME}/${PACKAGE}/python"
-+  PYTHON_PLUGIN_DIR="${datadir}/${PACKAGE}/python"
-   AC_SUBST(PYTHON_PLUGIN_DIR)
- 
-   dnl System GCompris config directory
 gcompris-13.11.orig/src/gcompris/gcompris.c
-+++ gcompris-13.11/src/gcompris/gcompris.c
-@@ -1322,7 +1322,7 @@
- properties->package_plugin_dir = g_strconcat(pkg_clib_dir, "/gcompris", 
NULL);
- properties->package_python_plugin_dir = g_strconcat(pkg_data_dir, 
"/gcompris/python",
-   NULL);
--properties->system_icon_dir = g_strconcat(pkg_data_dir, "/pixmaps", NULL);
-+

[gentoo-commits] repo/gentoo:master commit in: games-action/openclonk/

2016-03-15 Thread Michael Sterrett
commit: f257eb94993c8b8453594e82e2c801d9a1b06cb6
Author: Michael Sterrett  gentoo  org>
AuthorDate: Wed Mar 16 03:57:07 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Mar 16 03:57:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f257eb94

games-action/openclonk: make sure the active compiler can deal with the fancy 
c++ code (bug #572554)

Package-Manager: portage-2.2.26

 games-action/openclonk/openclonk-7.0.ebuild | 13 +++--
 1 file changed, 11 insertions(+), 2 deletions(-)

diff --git a/games-action/openclonk/openclonk-7.0.ebuild 
b/games-action/openclonk/openclonk-7.0.ebuild
index be62f00..dd0d3d8 100644
--- a/games-action/openclonk/openclonk-7.0.ebuild
+++ b/games-action/openclonk/openclonk-7.0.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
 PYTHON_COMPAT=( python2_7 )
-inherit cmake-utils eutils gnome2-utils python-any-r1 fdo-mime games
+inherit cmake-utils eutils gnome2-utils python-any-r1 fdo-mime toolchain-funcs 
games
 
 MY_P=${PN}-release-${PV}-src
 
@@ -43,6 +43,7 @@ RDEPEND="
)
dedicated? ( sys-libs/readline:0= )"
 DEPEND="${RDEPEND}
+   || ( >=sys-devel/gcc-4.9 >=sys-devel/clang-3.3 )
virtual/pkgconfig
doc? (
${PYTHON_DEPS}
@@ -56,6 +57,14 @@ PATCHES=(
 )
 S=${WORKDIR}/${P}-src
 
+pkg_pretend() {
+   if [[ $(tc-getCXX) == *g++* && $(gcc-version) < 4.9 ]] ; then
+   die 'The active compiler needs to be gcc 4.9 (or newer) or 
clang'
+   else
+   einfo 'The active compiler should be ok'
+   fi
+}
+
 pkg_setup() {
games_pkg_setup
use doc && python-any-r1_pkg_setup



[gentoo-commits] repo/gentoo:master commit in: games-strategy/freeciv/

2016-03-15 Thread Michael Sterrett
commit: 95ed38fe29ab426962f2d781e4a7b21383628a3d
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Mar 15 16:57:59 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Mar 16 03:57:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95ed38fe

games-strategy/freeciv: clean old

Package-Manager: portage-2.2.26

 games-strategy/freeciv/Manifest |   1 -
 games-strategy/freeciv/freeciv-2.5.1.ebuild | 178 
 2 files changed, 179 deletions(-)

diff --git a/games-strategy/freeciv/Manifest b/games-strategy/freeciv/Manifest
index 4bd4ca8..c95a4d4 100644
--- a/games-strategy/freeciv/Manifest
+++ b/games-strategy/freeciv/Manifest
@@ -1,2 +1 @@
-DIST freeciv-2.5.1.tar.bz2 40686265 SHA256 
4e420a9ad91aa7966039ec3b63501725c8261a4ff734d56fe801414fae772696 SHA512 
c0f5df3df7bab9ad8e9e7ce75ea90a539ca7e6aafb0af2b57a3d30b095e30f3b093e66bd8b92524e0e19919e0f5d4b822946219bf270e6071102db56290119b8
 WHIRLPOOL 
1773d56801316afae6ab470b1b1fdf71b42bd42ff0f7ede62b28c5ef7abcd0af36887401937a028b4a9a2e19f994389ef5f63c0395545ebcb367ff2089e2fd55
 DIST freeciv-2.5.3.tar.bz2 41010519 SHA256 
480b0381c64bf1a9423f2507a75d76bda9bf45c3c3badd30b5bad105e75d805c SHA512 
a3e1ee5f585be062ec5fc7783dfe24f4cd313bea016af47b868e01561fc3958a86ed310edd41130fc5ede6ca2547ca38198c8dbb18974db7d14defd103277b4b
 WHIRLPOOL 
c75ef1419e965003aebb396fd7245fa0a859fea2574d74cc1ef8de7bb4b3b0e47f28ee8bcf0b30c3ad1116bd374336f51bb285d66ea244e4b68e44e33ad36ec4

diff --git a/games-strategy/freeciv/freeciv-2.5.1.ebuild 
b/games-strategy/freeciv/freeciv-2.5.1.ebuild
deleted file mode 100644
index b569637..000
--- a/games-strategy/freeciv/freeciv-2.5.1.ebuild
+++ /dev/null
@@ -1,178 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils gnome2-utils games
-
-DESCRIPTION="multiplayer strategy game (Civilization Clone)"
-HOMEPAGE="http://www.freeciv.org/;
-SRC_URI="mirror://sourceforge/freeciv/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc ~ppc64 x86"
-IUSE="auth aimodules dedicated +gtk ipv6 mapimg modpack mysql nls qt5 readline 
sdl +server +sound sqlite system-lua"
-
-# postgres isn't yet really supported by upstream
-RDEPEND="app-arch/bzip2
-   app-arch/xz-utils
-   net-misc/curl
-   sys-libs/zlib
-   auth? (
-   mysql? ( virtual/mysql )
-   sqlite? ( dev-db/sqlite:3 )
-   !mysql? ( ( !sqlite? ( virtual/mysql ) ) )
-   )
-   readline? ( sys-libs/readline:0 )
-   dedicated? ( aimodules? ( dev-libs/libltdl:0 ) )
-   !dedicated? (
-   media-libs/libpng:0
-   gtk? ( x11-libs/gtk+:2 )
-   mapimg? ( media-gfx/imagemagick )
-   modpack? ( x11-libs/gtk+:2 )
-   nls? ( virtual/libintl )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-   sdl? (
-   media-libs/libsdl[video]
-   media-libs/sdl-gfx
-   media-libs/sdl-image[png]
-   media-libs/sdl-ttf
-   )
-   server? ( aimodules? ( sys-devel/libtool:2 ) )
-   sound? (
-   media-libs/libsdl[sound]
-   media-libs/sdl-mixer[vorbis]
-   )
-   !sdl? ( !gtk? ( x11-libs/gtk+:2 ) )
-   )
-   system-lua? ( >=dev-lang/lua-5.2 )"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   !dedicated? (
-   x11-proto/xextproto
-   nls? ( sys-devel/gettext )
-   )"
-
-pkg_setup() {
-   if use !dedicated && use !server ; then
-   ewarn "Disabling server USE flag will make it impossible"
-   ewarn "to start local games, but you will still be able to"
-   ewarn "join multiplayer games."
-   fi
-   games_pkg_setup
-}
-
-src_prepare() {
-
-   # install the .desktop in /usr/share/applications
-   # install the icons in /usr/share/pixmaps
-   sed -i \
-   -e 's:^.*\(desktopfiledir = \).*:\1/usr/share/applications:' \
-   -e 's:^\(icon[0-9]*dir = \)$(prefix)\(.*\):\1/usr\2:' \
-   -e 's:^\(icon[0-9]*dir = \)$(datadir)\(.*\):\1/usr/share\2:' \
-   client/Makefile.in \
-   server/Makefile.in \
-   tools/Makefile.in \
-   data/icons/Makefile.in || die
-   sed -i -e 's/=SDL/=X-SDL/' bootstrap/freeciv-sdl.desktop.in || die
-}
-
-src_configure() {
-   local myclient myopts mydatabase
-
-   if use auth ; then
-   if use !mysql && use !sqlite ; then
-   einfo "No database backend chosen, defaulting"
-   einfo "to mysql!"
-   mydatabase=mysql
-   else
-

[gentoo-commits] repo/gentoo:master commit in: games-roguelike/tomenet/, games-roguelike/tomenet/files/

2016-03-15 Thread Michael Sterrett
commit: 42e839df24c6af7caa3e986227cfa1ccf7e2c065
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Mar 15 16:58:33 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Mar 16 03:57:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e839df

games-roguelike/tomenet: clean old

Package-Manager: portage-2.2.26

 games-roguelike/tomenet/Manifest   |   1 -
 .../tomenet/files/tomenet-4.6.0-makefile.patch |  75 
 games-roguelike/tomenet/tomenet-4.6.0.ebuild   | 100 -
 3 files changed, 176 deletions(-)

diff --git a/games-roguelike/tomenet/Manifest b/games-roguelike/tomenet/Manifest
index e03833d..d84cf1c 100644
--- a/games-roguelike/tomenet/Manifest
+++ b/games-roguelike/tomenet/Manifest
@@ -1,2 +1 @@
-DIST tomenet-4.6.0.tar.bz2 3039894 SHA256 
bd1cbf05fe8cb4c8af5e658ede622cf12b54aae42c640af12677e4067902673f SHA512 
73dd682158b09ede8b78ca604891eebe6534ca3e8979187ac8b938deb3b37e5fde3424122fac6fce392e0e38cc70e40ae6bb07ce7e7192a8cd43d7d8057ab9b3
 WHIRLPOOL 
8f03ed1b1bc962403d8ff7611857ce40daa5436fa540da96aa142bdf70d6c4dd134238b582e7c6be2e52b63ce1c92f33bef1d21799d1ff4f29684256404831f6
 DIST tomenet-4.6.1a.tar.bz2 2990275 SHA256 
0e27c0332f1a1e58e51c4d254dd14707e21608e32c5acf2be28a5baaa65065ab SHA512 
eb89cd2276a18947d55efcc745e0b0abc0d9ae8a8d922a4726632657f32657e762bd0530d721afcf9d4ab3eeed2da6e43a3822d1d8c2c3b630fdb4cde924ac9f
 WHIRLPOOL 
eb5ecbea231bf756c71b983b4a7fc082e7d63061d8f215731b7065eeef57e912dfbb1b217d3d031c6db11f8882c4d4c10c8d821c8ccd873f0e9e41f9148f2d30

diff --git a/games-roguelike/tomenet/files/tomenet-4.6.0-makefile.patch 
b/games-roguelike/tomenet/files/tomenet-4.6.0-makefile.patch
deleted file mode 100644
index 0dc9fb8..000
--- a/games-roguelike/tomenet/files/tomenet-4.6.0-makefile.patch
+++ /dev/null
@@ -1,75 +0,0 @@
 tomenet-4.5.9.orig/src/makefile
-+++ tomenet-4.5.9/src/makefile
-@@ -203,7 +203,7 @@
- #
- # This is my compiler of choice, it seems to work most everywhere
- #
--CC = gcc
-+CC ?= gcc
- 
- # For allowing #if..#else..#endif constructs in LUA files - C. Blue
- # Note: The flags must contain
-@@ -215,16 +215,26 @@
- # need to use the gcc invocation below instead.
- #
- # cpp variant:
--CPP = cpp
--CPPFLAGS = -C -P
-+#CPP = cpp
-+#CPPFLAGS = -C -P
- # gcc variant:
--#CPP = gcc
--#CPPFLAGS = -x c -E -Wp,-C,-P
-+CPP ?= gcc
-+CPPFLAGS = -x c -E -Wp,-C,-P
- 
- 
- # For variations with X11
- X11BASE = /usr/X11R6
- 
-+# defines
-+ifdef USE_SDL
-+CFLAGS += -DSOUND_SDL $(shell sdl-config --cflags)
-+SDL_LIBS = $(shell sdl-config --libs) -lSDL_mixer
-+endif
-+
-+ifdef USE_X
-+CFLAGS += -I${X11BASE}/include -DUSE_X11
-+LIBS += -L${X11BASE}/lib -lX11
-+endif
- 
- ##
- ## Standard version -- supports X11 (main-x11.c)
-@@ -234,8 +244,11 @@
- # "CFLAGS", if your machine places files in a weird location.
- #
- ## With SDL
--#CFLAGS = -g -pipe -Wall -DUSE_X11 -I${X11BASE}/include -D_XOPEN_SOURCE 
-D_BSD_SOURCE -DMEXP=19937 -DSOUND_SDL `sdl-config --cflags`
--#LIBS = -L${X11BASE}/lib -L/usr/pkg/lib -lX11 -lcrypt -lm `sdl-config --libs` 
-lSDL_mixer
-+
-+CFLAGS += -Wall
-+CFLAGS += -DUSE_GCU -D_XOPEN_SOURCE -D_BSD_SOURCE -DMEXP=19937
-+LIBS += -L/usr/pkg/lib $(shell ${PKG_CONFIG} --libs ncurses) -lcrypt -lm 
${SDL_LIBS}
-+
- ##
- ## Without SDL
- #CFLAGS = -g -pipe -Wall -DUSE_X11 -I${X11BASE}/include -D_XOPEN_SOURCE 
-D_BSD_SOURCE -DMEXP=19937
-@@ -257,7 +270,7 @@
- #
- ## With SDL
- CFLAGS = -g -pipe -Wall -DUSE_X11 -DUSE_GCU -I${X11BASE}/include 
-D_XOPEN_SOURCE -D_BSD_SOURCE -DMEXP=19937 -DSOUND_SDL `sdl-config --cflags` 
-D_DEFAULT_SOURCE -DACC32
--LIBS = -L${X11BASE}/lib -L/usr/pkg/lib -lX11 -lncurses -lcrypt -lm 
`sdl-config --libs` -lSDL_mixer
-+LIBS = -L${X11BASE}/lib -L/usr/pkg/lib -lX11 $(shell ${PKG_CONFIG} --libs 
ncurses) -lcrypt -lm $(shell sdl-config --libs) -lSDL_mixer
- ##
- ## Without SDL
- #CFLAGS = -g -pipe -Wall -DUSE_X11 -DUSE_GCU -I${X11BASE}/include 
-D_XOPEN_SOURCE -D_BSD_SOURCE -DMEXP=19937
-@@ -357,9 +370,6 @@
- # Compile a client with 'test client' version/tag
- tomenet.test: CFLAGS += -DTEST_CLIENT -O0
- 
--# Normal release build
--tomenet: CFLAGS += -O2
--
- 
- # Lua
- SRCS += $(LUASRCS)

diff --git a/games-roguelike/tomenet/tomenet-4.6.0.ebuild 
b/games-roguelike/tomenet/tomenet-4.6.0.ebuild
deleted file mode 100644
index 44f855e..000
--- a/games-roguelike/tomenet/tomenet-4.6.0.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils gnome2-utils toolchain-funcs games
-
-DESCRIPTION="A MMORPG based on the works of J.R.R. Tolkien"
-HOMEPAGE="http://www.tomenet.eu/;
-SRC_URI="http://www.tomenet.eu/downloads/${P}.tar.bz2;
-
-LICENSE="Moria"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="dedicated server +sound X"
-
-RDEPEND="sys-libs/ncurses:0
-   !dedicated? (
-   X? (
-   x11-libs/libX11
- 

[gentoo-commits] repo/gentoo:master commit in: games-strategy/triplea/

2016-03-15 Thread Michael Sterrett
commit: 1ec0ba0f4173a582d93a19a38a61833ff6ea1c27
Author: Michael Sterrett  gentoo  org>
AuthorDate: Tue Mar 15 16:56:46 2016 +
Commit: Michael Sterrett  gentoo  org>
CommitDate: Wed Mar 16 03:57:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec0ba0f

games-strategy/triplea: clean old

Package-Manager: portage-2.2.26

 games-strategy/triplea/Manifest   |  1 -
 games-strategy/triplea/triplea-1.8.0.5.ebuild | 92 ---
 2 files changed, 93 deletions(-)

diff --git a/games-strategy/triplea/Manifest b/games-strategy/triplea/Manifest
index a6432e5..2107f66 100644
--- a/games-strategy/triplea/Manifest
+++ b/games-strategy/triplea/Manifest
@@ -1,2 +1 @@
-DIST triplea_1_8_0_5_source_code_only.zip 377607369 SHA256 
7d43d8936650ee5ce8b215c7bb6c5ac611f3a232559c0cbb48dba910f63643f5 SHA512 
76275121e71b727d05c47612c3a27431beb3e610f1953c8aea4cef878bac4f0a4309794c805462b75fff71d875bc92395108f196f1e04544bb4ef0b8e298904c
 WHIRLPOOL 
be06d9c6c4af75ca3ab221b69c13e8e3139569f7108cb4c5de510397a888da7e21822dd1a2e1b5ee63ce5e2e36153d3651088d036089e6f1e08beb5a473f015c
 DIST triplea_1_8_0_9_source_code_only.zip 378475905 SHA256 
5f1d0811b96338e1d7200269e24f99cdfe801198922da2a951d14d3ab31c5187 SHA512 
d117bb85d0136d85c76f091cf3b2a398ad1f8755df2cea02867be36d91c6cc98e0fc713a72a93dc74ec91c7b44959afdad5b136591a25a0080f4eabf3c8bff0d
 WHIRLPOOL 
7d3bfc1eb344d77efb1cb20bb8dc33f89c93546e4c64bc04f128ad255ac5db31f0c2e0f7c47d85fb9e8bb200490046fd128e883c82d320e5c01a1712cb9b86f4

diff --git a/games-strategy/triplea/triplea-1.8.0.5.ebuild 
b/games-strategy/triplea/triplea-1.8.0.5.ebuild
deleted file mode 100644
index 1fb6372..000
--- a/games-strategy/triplea/triplea-1.8.0.5.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-inherit eutils java-pkg-2 java-ant-2 versionator games
-
-MY_PV=$(replace_all_version_separators _)
-DESCRIPTION="An open source clone of the popular Axis and Allies boardgame"
-HOMEPAGE="http://triplea.sourceforge.net/;
-SRC_URI="mirror://sourceforge/triplea/${PN}_${MY_PV}_source_code_only.zip"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-RESTRICT="test" # Needs X11 maybe use virtualx.eclass
-
-RDEPEND="dev-java/commons-httpclient:3
-   dev-java/apple-java-extensions-bin
-   dev-java/commons-logging
-   dev-java/commons-codec
-   =dev-java/junit-3.8*"
-DEPEND="${RDEPEND}
-   >=virtual/jdk-1.6
-   app-arch/unzip"
-RDEPEND="${RDEPEND}
-   >=virtual/jre-1.6"
-
-S=${WORKDIR}/${PN}_${MY_PV}
-
-pkg_setup() {
-   games_pkg_setup
-   java-pkg-2_pkg_setup
-}
-
-src_prepare() {
-   sed -i \
-   -e '/userHome.*triplea/s:"triplea":".triplea":g' \
-   src/games/strategy/engine/framework/GameRunner2.java || die
-
-   rm -r old/ lib/derby*.jar || die
-   java-pkg_jar-from apple-java-extensions-bin AppleJavaExtensions.jar \
-   lib/AppleJavaExtensions.jar
-   java-pkg_jar-from commons-httpclient-3 commons-httpclient.jar \
-   lib/commons-httpclient-3.0.1.jar
-   java-pkg_jar-from commons-logging commons-logging.jar \
-   lib/commons-logging-1.1.jar
-   java-pkg_jar-from commons-codec commons-codec.jar \
-   lib/commons-codec-1.3.jar
-   # installs the test files
-   java-pkg_jar-from --into lib junit
-
-   # lots of other jars from some other java packages...
-   # either missing from portage or none stable is ages.
-   #java-pkg_ensure-no-bundled-jars
-}
-
-src_compile() {
-   eant || die
-   echo "triplea.saveGamesInHomeDir=true" > data/triplea.properties
-   # The only target creating this is zip which does unjar etc
-   cd classes || die
-   jar cf ../bin/triplea.jar * || die
-   rm -r * || die
-}
-
-src_test() {
-   ANT_TASKS="ant-junit" eant test
-}
-
-src_install() {
-   insinto "${GAMES_DATADIR}"/${PN}
-   doins -r assets bin data dice_servers maps
-
-   java-pkg_regjar "${D}/${GAMES_DATADIR}"/${PN}/bin/*.jar
-   java-pkg_dolauncher ${PN} -into "${GAMES_PREFIX}" \
-   --java_args "-Xmx256m" --main \
-   games.strategy.engine.framework.GameRunner
-   java-pkg_dolauncher ${PN}-server -into "${GAMES_PREFIX}" \
-   --java_args "-server -Xmx64m -Dtriplea.lobby.port=3303 
-Dtriplea.lobby.console=true" \
-   --main games.strategy.engine.lobby.server.LobbyServer
-
-   newicon icons/triplea_icon.png ${PN}.png
-   newicon icons/triplea_icon.png ${PN}-server.png
-   make_desktop_entry ${PN} TripleA
-   make_desktop_entry ${PN}-server TripleA-server
-
-   dodoc changelog.txt TripleA_RuleBook.pdf
-   dohtml -r doc/* readme.html
-   prepgamesdirs
-}



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

2016-03-15 Thread Mike Gilbert
commit: 4f4e232144e57aeea3210d284beb22d55227e19d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 16 03:34:45 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 16 03:35:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f4e2321

www-client/google-chrome-unstable: automated update

Package-Manager: portage-2.2.28_p60

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

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index eb38996..dd4a684 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_50.0.2661.18-1_amd64.deb 48794416 SHA256 
f2abd0e9cb5f9e4c96308a3fae7f2e7b3a2c0347f52c229ea36c839322eb1a4e SHA512 
eb2ac87c2fc5e87b3aee75ed8688b22baf21f72f9978b12f6cec5becb1a024308e0c49addef43715e6d8fcfd9f2c831f1f21f0743115ab33e478c67e9752f6d1
 WHIRLPOOL 
f81380e2fa4fc8ba84ff62340b80fd9b1f4e569c4fbdeedc0026f6ff83c6401da57efcc8f76f62899438aa8b59c18c5ecc45a255ffd0b612cdd2c8071df3a93a
+DIST google-chrome-unstable_51.0.2679.0-1_amd64.deb 48544250 SHA256 
c82c7965643f35871d2bd7490751939df8351013d7a28d49cca8168aa97b202d SHA512 
47862be1263371046e8896c3a25cd83464b2e5bdc474fa264ca0be6c870b89a4e04c3121f9c310423d422674a70c4b14d8150f7b113572503fdcf12fe6d729bb
 WHIRLPOOL 
9f079bfff3a1e2c0b050fd7770a91a0ce7e074ec12bfc7ac51dc6fde9c7159b49a0dd6c8230db755990c6b5d076ff0a5723fd744357e31cf9acd78bca1e2b9e6

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



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

2016-03-15 Thread Mike Gilbert
commit: f5be623ba3a38930e4386622a221f655fb7131cd
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 16 03:34:35 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 16 03:35:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5be623b

www-plugins/chrome-binary-plugins: automated update

Package-Manager: portage-2.2.28_p60

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

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 40dc927..256c83f 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_50.0.2661.26-1_amd64.deb 48365394 SHA256 
a079e89cab5fcfeba2ac0660c527165f619009eba14605d4fcf2b98fc6cc63f9 SHA512 
098f813280ec29f0206caa64f43fb566ba0ef9df1536e77bc9c944d69a616b67dac74387160483cb629b81961f463c34a34d16ca62d96d16a29ee364762a4889
 WHIRLPOOL 
d4d084fa51eff6b03f7a26d9163badd107df75d8fb86ec8bc2d53daa8cb21d17f1b730240c32472edd32a4c9cee18579b4d7503548267124ee48bfe71864311e
 DIST google-chrome-stable_49.0.2623.87-1_amd64.deb 48921974 SHA256 
dc273de84f6f2dad563bcbbb2e62312cd2a61d6ed41e10398bff7fdc1883d6cc SHA512 
e599b2d2bc50300156e8723508a37cc168041a56e9c6dd018944d597ef69d97bb7b058a1ef2f9c834f331b4e52f70ac46c2581c3caa6aeb4efc0102e2326419b
 WHIRLPOOL 
63b06c469c93cd1bbbf7f3154094757ca1e8a5ad48015ad8f24c93fafd049b2d6d10559286dd483656cdd981ade5d880ad45983cb7371ab5b670f4a345902d1a
-DIST google-chrome-unstable_50.0.2661.18-1_amd64.deb 48794416 SHA256 
f2abd0e9cb5f9e4c96308a3fae7f2e7b3a2c0347f52c229ea36c839322eb1a4e SHA512 
eb2ac87c2fc5e87b3aee75ed8688b22baf21f72f9978b12f6cec5becb1a024308e0c49addef43715e6d8fcfd9f2c831f1f21f0743115ab33e478c67e9752f6d1
 WHIRLPOOL 
f81380e2fa4fc8ba84ff62340b80fd9b1f4e569c4fbdeedc0026f6ff83c6401da57efcc8f76f62899438aa8b59c18c5ecc45a255ffd0b612cdd2c8071df3a93a
+DIST google-chrome-unstable_51.0.2679.0-1_amd64.deb 48544250 SHA256 
c82c7965643f35871d2bd7490751939df8351013d7a28d49cca8168aa97b202d SHA512 
47862be1263371046e8896c3a25cd83464b2e5bdc474fa264ca0be6c870b89a4e04c3121f9c310423d422674a70c4b14d8150f7b113572503fdcf12fe6d729bb
 WHIRLPOOL 
9f079bfff3a1e2c0b050fd7770a91a0ce7e074ec12bfc7ac51dc6fde9c7159b49a0dd6c8230db755990c6b5d076ff0a5723fd744357e31cf9acd78bca1e2b9e6

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.18_alpha1.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-51.0.2679.0_alpha1.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-50.0.2661.18_alpha1.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-51.0.2679.0_alpha1.ebuild



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

2016-03-15 Thread Yixun Lan
commit: 1d819d5268c0a38f817c6ccd70904b93a484146e
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Mar 16 02:52:50 2016 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Wed Mar 16 02:53:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d819d52

app-i18n/ibus: version bump 1.5.13

Package-Manager: portage-2.2.27

 app-i18n/ibus/Manifest   |   1 +
 app-i18n/ibus/ibus-1.5.13.ebuild | 189 +++
 2 files changed, 190 insertions(+)

diff --git a/app-i18n/ibus/Manifest b/app-i18n/ibus/Manifest
index 91e92c8..53b87ac 100644
--- a/app-i18n/ibus/Manifest
+++ b/app-i18n/ibus/Manifest
@@ -1,6 +1,7 @@
 DIST ibus-1.5.10.tar.gz 2169299 SHA256 
1d01b7806602875a1f3004f32e1000a39be01f59731d6baf36446498e26f5594 SHA512 
2f7f07c20cac5f934f24c3bc99b29efe30aa5ced501ac442a9da16454cb889d946fa262b3495c1778f200c8f62a1fd8d67f47f43ae6ee214d3d392feb6e413c9
 WHIRLPOOL 
575d5bba84ed8afb608030260b5fbbd47bdfc4ff1368590e0c34b2fed1cf2878e71bdb7b6da286d0b0d5a27f7fcc9e2a02675a86bbc9417c1d060246b7a6acbd
 DIST ibus-1.5.11.tar.gz 2177026 SHA256 
49995a298a39a137e65c6ee77811b030850ff344b875f29d4ed088f623a546bc SHA512 
7745a06a4dc9502a957bdfa7faba3e6ff857ee102f34acfbc5d1c8ca5935eaf5660ebe6d837ee7bae584818c08a1769cf8a9daa012f87d43a1f10917c04615c2
 WHIRLPOOL 
ae724b6609323e22f6fdff767484ec1259a6e3e4465b1a539cdfaa9178920d23d062d4eb6627fd3b45416d7fa9170a5bf467d6cddd4b1e80ae568a31e851be24
 DIST ibus-1.5.12.tar.gz 2190284 SHA256 
e24da95995f4aca5b96359eaba709487dc5ad4c732e9b01b9bcf9fb34be2442c SHA512 
a443bf0d1b71a52c18e7d13a0c69f38c48f6924cfb1669912880b87be1bf41bcb7d8d6252aafd6799e43d41c081fd94cf334fd836a0505c93a4e5c5b68241c81
 WHIRLPOOL 
82354fc5006a0abe4cb431dda90a67dc1b775f0bac521b481eaeb7acd167ba6179cad14045c5141c57618845589094613bc489357ee8bf550f131ecfb1bf8293
+DIST ibus-1.5.13.tar.gz 2194054 SHA256 
ed73d80542dfdcca190b7958431048cd6830c2ce25c467384630b6a7e957a5f1 SHA512 
bffb3cecf984ec6e383a111b4e62506390f083476f59404e2e9b90251e6e06853d7f1dc06194456ab5064b5d375820510be1ab12ebd29b966d6a7f5b8aca07ab
 WHIRLPOOL 
bf28cc0f20942e7e253b2ae49d3112acad313c15bbaf5697f8319c13c90fa17c569b5bdd2bf8d83895361ec99f06a05317ef752d4e5fa0e1de06267e1347c463
 DIST ibus-1.5.5.tar.gz 2063794 SHA256 
02ab36af6048399fedbe8d85074b161219b89df5020932df33cf8829764f8aec SHA512 
8249d6ee4918b0e0fe030af736eed2260e1376b2fdaf0d819f289e0bd880a5e3874f1fb3d097fc74b9f359822ce16f4dae52a263aa28c2e2ce7bdf671cb2fea9
 WHIRLPOOL 
33ba90e5cdd54ecd7a03af8c5d2c1d2e8cfc88bfc53b65e5240eb4c60d6138007b754a60e8b1e79c98ce92e299d14f1a0cce445ad40b04e862adf3919401d77d
 DIST ibus-1.5.8.tar.gz 2120220 SHA256 
cfc562ae73de753dc8cb9ae30fe117286ddd94cd109002108f2eeb47e8101a29 SHA512 
428e40be7ebea57832295e76b5c4350351c6d40c5178c57c61c8d6f31e524a315184c3d533ad88592e53ae7c6cb4beed67796ad61910f99f260fc9c243b2fc98
 WHIRLPOOL 
2fc0059a75b3f4b253770303a8c9c8ae02947153eaf7b9c220e2e10657275293a556b068ba4cad0d27f315b7374ffaedb53b20cd13f8408a3729cfaaea869d78
 DIST ibus-1.5.9-upstream-patches-0.tar.xz 30380 SHA256 
9efe631008cfad1d59db01a83ae093149b2c827d480705836f0bf8a29706f1e0 SHA512 
98c323de9793938d8c0bd646071d0ea7860212e3ae826e97ed0e0a092ec715084529b3a3cee3def63958dd3d56357b2e33e4e3d3946cca90bec3409469cf14d4
 WHIRLPOOL 
0aaf7aaba36de96525f0339a16df2c435e2f2c5cc6168c9b2da25bd7003af88f6d55ca53ae692c9c611b563ddfcb48a0e19e915f8361ba51a4aac813edc45f41

diff --git a/app-i18n/ibus/ibus-1.5.13.ebuild b/app-i18n/ibus/ibus-1.5.13.ebuild
new file mode 100644
index 000..7a5d4fc
--- /dev/null
+++ b/app-i18n/ibus/ibus-1.5.13.ebuild
@@ -0,0 +1,189 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+VALA_USE_DEPEND="vapigen"
+# Vapigen is needed for the vala binding
+# Valac is needed when building from git for the engine
+UPSTREAM_VER=
+
+inherit autotools bash-completion-r1 eutils gnome2-utils multilib 
python-single-r1 readme.gentoo-r1 vala virtualx
+
+DESCRIPTION="Intelligent Input Bus for Linux / Unix OS"
+HOMEPAGE="https://github.com/ibus/ibus/wiki;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+IUSE="deprecated gconf gtk +gtk3 +introspection nls +python test vala wayland 
+X"
+REQUIRED_USE="
+   || ( gtk gtk3 X )
+   deprecated? ( python )
+   vala? ( introspection )
+   python? (
+   ${PYTHON_REQUIRED_USE}
+   || ( deprecated ( gtk3 introspection ) ) )" #342903
+
+[[ -n ${UPSTREAM_VER} ]] && \
+   
UPSTRAM_PATCHSET_URI="http://dev.gentoo.org/~dlan/distfiles/${P}-upstream-patches-${UPSTREAM_VER}.tar.xz;
+
+SRC_URI="https://github.com/ibus/ibus/releases/download/${PV}/${P}.tar.gz
+   ${UPSTRAM_PATCHSET_URI}"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.26:2
+   gnome-base/librsvg:2
+   sys-apps/dbus[X?]
+   app-text/iso-codes
+   >=gnome-base/dconf-0.13.4
+   x11-libs/libnotify
+   gconf? ( 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/fontforge/files/, media-gfx/fontforge/

2016-03-15 Thread Mike Gilbert
commit: 8faf66e996ac4780611a3ddfd794dd5417f1a6c6
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 16 02:22:47 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 16 02:22:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8faf66e9

media-gfx/fontforge: Fix undefined reference

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

Package-Manager: portage-2.2.28_p60

 .../fontforge/files/fontforge-dummy-spiro.patch| 25 ++
 media-gfx/fontforge/fontforge-20150824.ebuild  |  3 ++-
 2 files changed, 27 insertions(+), 1 deletion(-)

diff --git a/media-gfx/fontforge/files/fontforge-dummy-spiro.patch 
b/media-gfx/fontforge/files/fontforge-dummy-spiro.patch
new file mode 100644
index 000..d2e73d5
--- /dev/null
+++ b/media-gfx/fontforge/files/fontforge-dummy-spiro.patch
@@ -0,0 +1,25 @@
+From 63def02823e631cd73b763541a87d7c480be799e Mon Sep 17 00:00:00 2001
+From: Jeremy Tan 
+Date: Mon, 14 Mar 2016 12:25:45 +0800
+Subject: [PATCH] Spiros: Add dummy _SpiroCP2SplineSet when compiling without
+ Spiros.
+
+---
+ fontforge/spiro.c | 4 
+ 1 file changed, 4 insertions(+)
+
+diff --git a/fontforge/spiro.c b/fontforge/spiro.c
+index 629339a..bb2f36f 100644
+--- a/fontforge/spiro.c
 b/fontforge/spiro.c
+@@ -35,6 +35,10 @@
+ 
+ static int has_spiro = false;
+ 
++static SplineSet *_SpiroCP2SplineSet(spiro_cp *spiros) {
++  return NULL;
++}
++
+ SplineSet *SpiroCP2SplineSet(spiro_cp *spiros) {
+ return( NULL );
+ }

diff --git a/media-gfx/fontforge/fontforge-20150824.ebuild 
b/media-gfx/fontforge/fontforge-20150824.ebuild
index 629ebc3..dadd184 100644
--- a/media-gfx/fontforge/fontforge-20150824.ebuild
+++ b/media-gfx/fontforge/fontforge-20150824.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -63,6 +63,7 @@ pkg_setup() {
 }
 
 src_prepare() {
+   epatch "${FILESDIR}"/fontforge-dummy-spiro.patch
epatch_user
 }
 



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

2016-03-15 Thread Mike Gilbert
commit: ec8fb5050d1413b3e4a46d5023517d5422217883
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Mar 16 02:24:12 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Mar 16 02:24:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec8fb505

media-gfx/fontforge: Drop autotools.eclass

Package-Manager: portage-2.2.28_p60

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

diff --git a/media-gfx/fontforge/fontforge-20150824.ebuild 
b/media-gfx/fontforge/fontforge-20150824.ebuild
index dadd184..fd038d1 100644
--- a/media-gfx/fontforge/fontforge-20150824.ebuild
+++ b/media-gfx/fontforge/fontforge-20150824.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 
-inherit autotools eutils fdo-mime python-single-r1
+inherit eutils fdo-mime python-single-r1
 
 DESCRIPTION="postscript font editor and converter"
 HOMEPAGE="http://fontforge.github.io/;



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

2016-03-15 Thread Sam Jorna
commit: abe8c758ddba08a015440b5e5dfafbd1db99120f
Author: Sam Jorna  gentoo  org>
AuthorDate: Wed Mar 16 00:49:28 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Wed Mar 16 00:49:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abe8c758

x11-wm/jwm: add missing desktop file

Package-Manager: portage-2.2.28

 x11-wm/jwm/files/jwm.desktop | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/x11-wm/jwm/files/jwm.desktop b/x11-wm/jwm/files/jwm.desktop
new file mode 100644
index 000..0fd122b
--- /dev/null
+++ b/x11-wm/jwm/files/jwm.desktop
@@ -0,0 +1,7 @@
+[Desktop Entry]
+Encoding=UTF-8
+Name=jwm
+Comment=Very fast and lightweight still powerful window manager for X
+TryExec=jwm
+Exec=/etc/X11/Sessions/jwm
+Type=Application



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

2016-03-15 Thread Jason Donenfeld
commit: bd4a5b8e468ba801b5f6d5f790af73d0cbc84c52
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Mar 16 00:42:39 2016 +
Commit: Jason Donenfeld  gentoo  org>
CommitDate: Wed Mar 16 00:48:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd4a5b8e

media-sound/clementine: fix tokenizer segfault

Package-Manager: portage-2.2.28

 .../clementine/clementine-1.3_rc1-r1.ebuild| 168 +
 .../files/clementine-1.3_rc1-fix-tokenizer.patch   |  21 +++
 2 files changed, 189 insertions(+)

diff --git a/media-sound/clementine/clementine-1.3_rc1-r1.ebuild 
b/media-sound/clementine/clementine-1.3_rc1-r1.ebuild
new file mode 100644
index 000..debdf11
--- /dev/null
+++ b/media-sound/clementine/clementine-1.3_rc1-r1.ebuild
@@ -0,0 +1,168 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+EGIT_REPO_URI="https://github.com/clementine-player/Clementine.git;
+
+LANGS=" af ar be bg bn br bs ca cs cy da de el en_CA en_GB eo es et eu fa fi 
fr ga gl he he_IL hi hr hu hy ia id is it ja ka kk ko lt lv mr ms my nb nl oc 
pa pl pt pt_BR ro ru si_LK sk sl sr sr@latin sv te tr tr_TR uk uz vi zh_CN 
zh_TW"
+
+inherit cmake-utils flag-o-matic fdo-mime gnome2-utils virtualx
+[[ ${PV} == ** ]] && inherit git-2
+
+DESCRIPTION="A modern music player and library organizer based on Amarok 1.4 
and Qt4"
+HOMEPAGE="http://www.clementine-player.org 
https://github.com/clementine-player/Clementine;
+[[ ${PV} == ** ]] || \
+SRC_URI="https://github.com/clementine-player/Clementine/archive/${PV/_}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+[[ ${PV} == ** ]] || \
+KEYWORDS="~amd64 ~x86"
+IUSE="box cdda +dbus debug dropbox googledrive ipod lastfm mms moodbar mtp 
projectm skydrive test ubuntu-one +udisks wiimote"
+IUSE+="${LANGS// / linguas_}"
+
+REQUIRED_USE="
+   udisks? ( dbus )
+   wiimote? ( dbus )
+"
+
+# qca dep is temporary for bug #489850
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   >=dev-libs/glib-2.24.1-r1
+   dev-libs/libxml2
+   dev-libs/protobuf:=
+   dev-libs/qjson
+   >=dev-qt/qtcore-4.5:4
+   >=dev-qt/qtgui-4.5:4
+   >=dev-qt/qtopengl-4.5:4
+   >=dev-qt/qtsql-4.5:4[sqlite]
+   >=media-libs/chromaprint-0.6
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   media-libs/libechonest:=[qt4]
+   >=media-libs/libmygpo-qt-1.0.8
+   >=media-libs/taglib-1.8[mp4]
+   sys-libs/zlib
+   virtual/glu
+   virtual/opengl
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio )
+   dbus? ( >=dev-qt/qtdbus-4.5:4 )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   lastfm? ( >=media-libs/liblastfm-1[qt4(+)] )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   projectm? ( media-libs/glew:= )
+"
+# now only presets are used, libprojectm is internal
+# 
https://github.com/clementine-player/Clementine/tree/master/3rdparty/libprojectm/patches
+# r1966 "Compile with a static sqlite by default, since Qt 4.7 doesn't seem to 
expose the symbols we need to use FTS"
+RDEPEND="${COMMON_DEPEND}
+   dbus? ( udisks? ( sys-fs/udisks:2 ) )
+   mms? ( media-plugins/gst-plugins-libmms:1.0 )
+   mtp? ( gnome-base/gvfs )
+   projectm? ( >=media-libs/libprojectm-1.2.0 )
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-libs/boost-1.39
+   virtual/pkgconfig
+   sys-devel/gettext
+   dev-qt/qttest:4
+   dev-cpp/gmock
+   box? ( dev-cpp/sparsehash )
+   dropbox? ( dev-cpp/sparsehash )
+   googledrive? ( dev-cpp/sparsehash )
+   skydrive? ( dev-cpp/sparsehash )
+   ubuntu-one? ( dev-cpp/sparsehash )
+   test? ( gnome-base/gsettings-desktop-schemas )
+"
+DOCS="Changelog"
+
+# https://github.com/clementine-player/Clementine/issues/3935
+RESTRICT="test"
+
+MY_P="${P/_}"
+# Switch to ^ when we switch to EAPI=6.
+[[ ${PV} == ** ]] || \
+S="${WORKDIR}/C${MY_P:1}"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.3_rc1-cmake.patch
+   "${FILESDIR}"/${PN}-1.3_rc1-fix-tokenizer.patch
+)
+
+src_prepare() {
+   cmake-utils_src_prepare
+
+   # some tests fail or hang
+   sed -i \
+   -e '/add_test_file(translations_test.cpp/d' \
+   tests/CMakeLists.txt || die
+}
+
+src_configure() {
+   local langs x
+   for x in ${LANGS}; do
+   use linguas_${x} && langs+=" ${x}"
+   done
+
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   -DLINGUAS="${langs}"
+   -DBUNDLE_PROJECTM_PRESETS=OFF
+   -DUSE_SYSTEM_PROJECTM=ON
+   $(cmake-utils_use cdda ENABLE_AUDIOCD)
+   $(cmake-utils_use dbus ENABLE_DBUS)
+   $(cmake-utils_use 

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

2016-03-15 Thread Sam Jorna
commit: 630df228dcc56f094669fb7a96943aa0c792d2e8
Author: Sam Jorna  gentoo  org>
AuthorDate: Wed Mar 16 00:39:14 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Wed Mar 16 00:39:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=630df228

x11-wm/jwm: revbump to add missing desktop file

Package-Manager: portage-2.2.28

 x11-wm/jwm/{jwm-2.3.4.ebuild => jwm-2.3.4-r1.ebuild} | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/x11-wm/jwm/jwm-2.3.4.ebuild b/x11-wm/jwm/jwm-2.3.4-r1.ebuild
similarity index 95%
rename from x11-wm/jwm/jwm-2.3.4.ebuild
rename to x11-wm/jwm/jwm-2.3.4-r1.ebuild
index 975ab09..e1421c3 100644
--- a/x11-wm/jwm/jwm-2.3.4.ebuild
+++ b/x11-wm/jwm/jwm-2.3.4-r1.ebuild
@@ -52,6 +52,9 @@ src_install() {
 
make_wrapper "${PN}" "/usr/bin/${PN}" "" "" "/etc/X11/Sessions"
 
+   insinto "/usr/share/xsessions"
+   doins "${FILESDIR}"/jwm.desktop
+
dodoc README.md example.jwmrc ChangeLog
 }
 



[gentoo-commits] repo/gentoo:master commit in: media-radio/KochMorse/

2016-03-15 Thread Manuel Rüger
commit: ae3cd8e38667dd79846eb71e4b097a58a776f651
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Mar 15 23:39:37 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Mar 15 23:39:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae3cd8e3

media-radio/KochMorse: Remove old

Package-Manager: portage-2.2.28

 media-radio/KochMorse/KochMorse-0.99.6.ebuild | 26 --
 1 file changed, 26 deletions(-)

diff --git a/media-radio/KochMorse/KochMorse-0.99.6.ebuild 
b/media-radio/KochMorse/KochMorse-0.99.6.ebuild
deleted file mode 100644
index 838f49a..000
--- a/media-radio/KochMorse/KochMorse-0.99.6.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2011 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-PYTHON_DEPEND="2"
-
-inherit distutils
-
-DESCRIPTION="Morse-tutor for Linux using the Koch-method"
-HOMEPAGE="https://KochMorse.googlecode.com/;
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="dev-python/pyalsaaudio
-   dev-python/pygtk"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-   python_set_active_version 2
-   python_pkg_setup
-}



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

2016-03-15 Thread Manuel Rüger
commit: 00f523787303a531b4d9ae6e03439123afcd1f2d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Mar 15 23:40:45 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Mar 15 23:40:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00f52378

dev-ruby/stomp: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/stomp/Manifest   |  1 -
 dev-ruby/stomp/stomp-1.3.2.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-ruby/stomp/Manifest b/dev-ruby/stomp/Manifest
index 01cbbbd..3638353 100644
--- a/dev-ruby/stomp/Manifest
+++ b/dev-ruby/stomp/Manifest
@@ -1,3 +1,2 @@
-DIST stomp-1.3.2.gem 75264 SHA256 
37ed903900f7abfcad0a714c0153632c97cb65de7c247c2a34f955c07ce174b4 SHA512 
69142c2dae059f63d3cc2ac2ae5d9ccaceda84aa6b69a880325cbfc90f18774bc413a150449acc30fe66d932224731508a20e097f8c3a8c3dae7f636c41dbf94
 WHIRLPOOL 
ad914a64050eb41f07ba760489fb952e811c9f094f30847f4f43b47f600b2b55968b481d93590375eea8c43c17469a9a401dd5e9d01a2d11294b224c22095a70
 DIST stomp-1.3.4.gem 77824 SHA256 
adc77e8760236bd6d751991e0a4fc2bfd5443fc45dd5cfedb0d8c99273bc5897 SHA512 
f141593a36bf45bcfa7254379fd88b78a62630eeebd638cea9e6e125d6cf5006632c96bcbdd6c0def0cea8f5fe7af11925d372d1e1fb3f1ee802c1a1023e2f15
 WHIRLPOOL 
e1ac18aa1272e3cc59ab98c415c55e719437dbeb1fe13d07692564c636b08516d0be60570baa31973adf80c52fcc3017d7a7490daba737cac9f229811d402eab
 DIST stomp-1.3.5.gem 78848 SHA256 
5abfd406fced18f236a84a457853afb99eab60ee3a4d4cd605678128f61aa9cd SHA512 
d546f262d9a2d6a4934d66b9849f59e1d4676ffc35ad1d476477a2736e1eba3c8da9ab684204f97935ba6aaf83271a1d8fdeff8ebcdd4446ecababa366940284
 WHIRLPOOL 
773e26b27306df16b519f246a15240b71814359c0d4df0fee3aedf47da9ed154e2c4d154f279cb636501f3a086fa14ef6193776e9c645c16e780c9fd86f1aebf

diff --git a/dev-ruby/stomp/stomp-1.3.2.ebuild 
b/dev-ruby/stomp/stomp-1.3.2.ebuild
deleted file mode 100644
index d8605b9..000
--- a/dev-ruby/stomp/stomp-1.3.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20"
-
-RUBY_FAKEGEM_DOCDIR="doc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec"
-
-inherit ruby-fakegem
-
-DESCRIPTION="Ruby bindings for the stomp messaging protocol"
-HOMEPAGE="https://github.com/stompgem/stomp;
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""



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

2016-03-15 Thread Manuel Rüger
commit: 56a02ea1484119aeb8398bc870ddd6cb31442265
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Mar 15 23:41:13 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Mar 15 23:41:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56a02ea1

dev-ruby/stomp: Remove ruby19

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/stomp/stomp-1.3.4.ebuild 
b/dev-ruby/stomp/stomp-1.3.4.ebuild
index 7ebc6df..9dca53b 100644
--- a/dev-ruby/stomp/stomp-1.3.4.ebuild
+++ b/dev-ruby/stomp/stomp-1.3.4.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
 
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_DOCDIR="doc"
 RUBY_FAKEGEM_EXTRADOC="CHANGELOG.rdoc README.rdoc"



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

2016-03-15 Thread Manuel Rüger
commit: 974dedaabc59840e7f64110a166029eb52ba4be3
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Mar 15 23:39:08 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Mar 15 23:39:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=974dedaa

sys-apps/etckeeper: Remove old

Package-Manager: portage-2.2.28

 sys-apps/etckeeper/Manifest|  1 -
 sys-apps/etckeeper/etckeeper-1.11-r1.ebuild| 75 --
 .../etckeeper/files/etckeeper-1.11-gentoo.patch| 64 --
 3 files changed, 140 deletions(-)

diff --git a/sys-apps/etckeeper/Manifest b/sys-apps/etckeeper/Manifest
index 2480bef..fa9c5e3 100644
--- a/sys-apps/etckeeper/Manifest
+++ b/sys-apps/etckeeper/Manifest
@@ -1,3 +1,2 @@
-DIST etckeeper-1.11.tar.gz 48100 SHA256 
a58b84af8307623f8c59acd6b161bf781909a1dac4b82853baa3098d47decabc SHA512 
f9ae79dfee4d97195b0a40ef319d75242662b9717d0293ac9722a7728e22374b6425391e91076ab5e0e4524a16c211511a2857b867d3610ff5c6b2bc561c96a7
 WHIRLPOOL 
174b857dce5d4ecdb26a01e030c312f57aeb9d1db3eaede5ead4c7e3a08ce05695ca528d226ce1847d28eb14a7360990bb21bb777a710f3b56ab5594ffd01301
 DIST etckeeper-1.18.1.tar.gz 56366 SHA256 
80adee6e17bfc41359ffb85a401d9a510ae25956950adbfdd07a0bda36d99e9b SHA512 
5b5019d3f8c22ee0486c9102d7dbdc7e86921d432df49c15733e5ed23651c2be87b52e295208be691ef1e44a515d960fcf4f812eaca17f2806e2f5055222ca35
 WHIRLPOOL 
890b38f761f49a5a4713fa850bc18e09688ed8fb04d9b41f3727f868448fb1ba1ecf92750df777fc6011a3f88abeb8756105fbdc60ebf6fd3e693360764fb27c
 DIST etckeeper-1.18.3.tar.gz 64982 SHA256 
736302ee00c5a007901c60baab2dd67d419033ed1c62df3e98416e4ded8d4486 SHA512 
c60ba647f15fa41e38ffb8492ce98820a53a0ce20eec9590b3098fa042b43f6f2d1c21d6143342150208e0eae48fca60efdfe9f779c973397e4035031813618c
 WHIRLPOOL 
96181f1b5445b8f4bede9df180daafe97f40a3b8219ebd9b9fbab2cc643874d65c30c9e3b3899e3994130dc29004074de91b66de82114b7cd42bcdd1e99d068d

diff --git a/sys-apps/etckeeper/etckeeper-1.11-r1.ebuild 
b/sys-apps/etckeeper/etckeeper-1.11-r1.ebuild
deleted file mode 100644
index cc387fe..000
--- a/sys-apps/etckeeper/etckeeper-1.11-r1.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit eutils bash-completion-r1 prefix python-r1
-
-DESCRIPTION="A collection of tools to let /etc be stored in a repository"
-HOMEPAGE="http://kitenet.net/~joey/code/etckeeper/;
-SRC_URI="https://github.com/joeyh/etckeeper/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-KEYWORDS="amd64 ~arm x86"
-SLOT="0"
-IUSE="bazaar cron"
-REQUIRED_USE="bazaar? ( ${PYTHON_REQUIRED_USE} )"
-
-VCS_DEPEND="dev-vcs/git
-   dev-vcs/mercurial
-   dev-vcs/darcs"
-DEPEND="bazaar? ( dev-vcs/bzr )"
-RDEPEND="${DEPEND}
-   app-portage/portage-utils
-   cron? ( virtual/cron )
-   bazaar? ( ${PYTHON_DEPS} )
-   !bazaar? ( || ( ${VCS_DEPEND} ) )"
-
-src_prepare(){
-   epatch "${FILESDIR}"/${P}-gentoo.patch
-}
-
-src_compile() {
-   :
-}
-
-src_install(){
-   emake DESTDIR="${ED}" install
-
-   bzr_install() {
-   ${PYTHON} ./${PN}-bzr/__init__.py install --root="${ED}" ||
-   die "bzr support installation failed!"
-   }
-   use bazaar && python_foreach_impl bzr_install
-
-   if use prefix; then
-   doenvd "${FILESDIR}"/99${PN}
-   eprefixify "${ED%/}"/etc/env.d/99${PN}
-   fi
-
-   newbashcomp bash_completion ${PN}
-   dodoc README TODO
-   docinto examples
-   dodoc "${FILESDIR}"/bashrc
-
-   if use cron ; then
-   exeinto /etc/cron.daily
-   newexe debian/cron.daily etckeeper
-   fi
-}
-
-pkg_postinst(){
-   elog "${PN} supports the following VCS: ${VCS_DEPEND}"
-   elog "  dev-vcs/bzr"
-   elog "This ebuild just ensures at least one is installed!"
-   elog "For dev-vcs/bzr you need to enable 'bazaar' useflag."
-   elog
-   elog "You may want to adjust your /etc/portage/bashrc"
-   elog "see the example file in /usr/share/doc/${PF}/examples"
-   elog
-   elog "To initialise your etc-dir as a repository run:"
-   elog "${PN} init -d /etc"
-}

diff --git a/sys-apps/etckeeper/files/etckeeper-1.11-gentoo.patch 
b/sys-apps/etckeeper/files/etckeeper-1.11-gentoo.patch
deleted file mode 100644
index 9ac14b9..000
--- a/sys-apps/etckeeper/files/etckeeper-1.11-gentoo.patch
+++ /dev/null
@@ -1,64 +0,0 @@
-Original patch by Luke-Jr (luke-jr+gentoob...@utopios.org)
-Minor fixes by Manuel Rueger (mr...@rueg.eu)
-
-https://bugs.gentoo.org/show_bug.cgi?id=216114
-Gentoo specific additions
-
 Makefile
-+++ Makefile
-@@ -23,7 +23,6 @@
-   $(INSTALL_DATA) $(CONFFILE) $(DESTDIR)$(etcdir)/etckeeper/etckeeper.conf
-   $(INSTALL_EXE) etckeeper $(DESTDIR)$(bindir)/etckeeper
-   $(INSTALL_DATA) etckeeper.8 

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

2016-03-15 Thread Manuel Rüger
commit: f1eeccf542a86d2fd5129077bd9b78cbe2bc4a09
Author: Manuel Rüger  gentoo  org>
AuthorDate: Tue Mar 15 23:40:10 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Tue Mar 15 23:40:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1eeccf5

dev-ruby/shorturl: Remove old

Package-Manager: portage-2.2.28

 dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild | 37 --
 1 file changed, 37 deletions(-)

diff --git a/dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild 
b/dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild
deleted file mode 100644
index 21f7880..000
--- a/dev-ruby/shorturl/shorturl-1.0.0-r1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby19 ruby20"
-
-RUBY_FAKEGEM_TASK_TEST=""
-RUBY_FAKEGEM_TASK_DOC=""
-
-RUBY_FAKEGEM_EXTRADOC="ChangeLog.txt README.rdoc TODO.rdoc"
-
-inherit ruby-fakegem eutils
-
-DESCRIPTION="A very simple library to use URL shortening services such as 
TinyURL or RubyURL"
-HOMEPAGE="http://shorturl.rubyforge.org/;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86 ~x86-fbsd ~x86-macos"
-IUSE=""
-
-# All tests require network connectivity.
-RESTRICT="test"
-
-each_ruby_test() {
-   ${RUBY} -Ilib:test test/ts_all.rb || die "tests failed"
-}
-
-all_ruby_install() {
-   all_fakegem_install
-
-   pushd doc &>/dev/null
-   dohtml -r .
-   popd &>/dev/null
-}



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

2016-03-15 Thread Sam Jorna
commit: eeffd18a64671df7b3fde34445c5f23775021ac9
Author: Sam Jorna  gentoo  org>
AuthorDate: Tue Mar 15 23:26:02 2016 +
Commit: Sam Jorna  gentoo  org>
CommitDate: Tue Mar 15 23:26:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeffd18a

sci-geosciences/grass: bump to 7.0.3

Version bump to 7.0.3, make usedep on python sqlite unconditional as
per bug #572440, add missing dep.

Gentoo-bug: 574494
Gentoo-bug: 572440
Package-Manager: portage-2.2.28

 sci-geosciences/grass/Manifest   |   1 +
 sci-geosciences/grass/grass-7.0.3.ebuild | 270 +++
 2 files changed, 271 insertions(+)

diff --git a/sci-geosciences/grass/Manifest b/sci-geosciences/grass/Manifest
index 09a6c76..f620e10 100644
--- a/sci-geosciences/grass/Manifest
+++ b/sci-geosciences/grass/Manifest
@@ -1,2 +1,3 @@
 DIST grass-7.0.1.tar.gz 33733368 SHA256 
0987dd1618fde24b05785a502c7db8c09401a522a7a3ee50543068fab4eb405f SHA512 
cb1c356eb19f793530e4e313cc5e81b3be27817eea8961c6e5673b955726e7ae26c38942d6a620dc89c60b8051cdb0ed549c70fdfab8c65f5d17c901521ffaff
 WHIRLPOOL 
ed97e45873ea39df32e4ad9ed663087e0077d4bfbbbc9f1fc89729c1d411d550e3354fbc937741c465d94929b6da30311e44926db53fe0f1edb3ce7b850b2266
 DIST grass-7.0.2.tar.gz 38102415 SHA256 
2eabd84c5426c675b7f3046213bbacb0cee9d0225df15e1530b93f43ec6b190b SHA512 
5f6432263e4d52c914dfdd2bc8199f32c8f366b0ffae6a178033af7eee7b3c2632668b3d3cd70219969ecfd5ad6abefe6e65f0eaf72f27784fea3b4b9d51acfe
 WHIRLPOOL 
e1f5a90e793db74bcdf891b5f5a00c2bafa2842a6415ec433a45d6604d4943aa3d95b6e4d95265753a4ee8fc6819ec1b66ddea2d11802ac1c7a37150f7cea6d1
+DIST grass-7.0.3.tar.gz 40022685 SHA256 
6c414938d831583b97554cb49698529310defba467b11f6a85caf6ca405680df SHA512 
93d9e5c2983b41f88f5170923267eb54328124a179fc391893e88eaa9670a608b4b7d339d0043d338a98cb5ef532e19411cd46155a69e6f06a6b28696056add6
 WHIRLPOOL 
2f171e056c179fc31845dc28e5d354ab8f990c462b65ce5a4b26c89261b6757b781c86bb1ab6f29efb3bde0df29bfa432e4f13d7dc61166b761a6edfa3614246

diff --git a/sci-geosciences/grass/grass-7.0.3.ebuild 
b/sci-geosciences/grass/grass-7.0.3.ebuild
new file mode 100644
index 000..828fa14
--- /dev/null
+++ b/sci-geosciences/grass/grass-7.0.3.ebuild
@@ -0,0 +1,270 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite"  # bug 572440
+WANT_AUTOCONF="2.1"
+
+inherit eutils gnome2 fdo-mime multilib python-single-r1 versionator wxwidgets 
autotools
+
+MY_PM=${PN}$(get_version_component_range 1-2 ${PV})
+MY_PM=${MY_PM/.}
+MY_P=${P/_rc/RC}
+
+DESCRIPTION="A free GIS with raster and vector functionality, as well as 3D 
vizualization"
+HOMEPAGE="http://grass.osgeo.org/;
+SRC_URI="http://grass.osgeo.org/${MY_PM}/source/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0/7.0.3"
+KEYWORDS="~amd64 ~x86"
+IUSE="X blas cxx fftw geos lapack liblas mysql netcdf nls odbc opencl opengl 
openmp png postgres readline sqlite threads tiff truetype"
+
+RDEPEND="${PYTHON_DEPS}
+   >=app-admin/eselect-1.2
+   dev-python/numpy[${PYTHON_USEDEP}]
+   media-libs/libprojectm
+   sci-libs/proj
+   sci-libs/xdrfile
+   sci-libs/gdal
+   sys-libs/gdbm
+   sys-libs/ncurses:0=
+   sys-libs/zlib
+   fftw? ( sci-libs/fftw:3.0 )
+   geos? ( sci-libs/geos )
+   blas? ( virtual/blas
+   sci-libs/cblas-reference )
+   lapack? ( virtual/lapack )
+   liblas? ( sci-geosciences/liblas )
+   mysql? ( virtual/mysql )
+   netcdf? ( sci-libs/netcdf )
+   odbc? ( dev-db/unixODBC )
+   opencl? ( virtual/opencl )
+   opengl? ( virtual/opengl )
+   png? ( media-libs/libpng:0= )
+   postgres? ( >=dev-db/postgresql-8.4:= )
+   readline? ( sys-libs/readline:0= )
+   sqlite? ( dev-db/sqlite:3 )
+   tiff? ( media-libs/tiff:0= )
+   truetype? ( media-libs/freetype:2 )
+   X? (
+   >=dev-python/wxpython-2.8.10.1:2.8[cairo,opengl?]
+   x11-libs/cairo[X,opengl?]
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libXaw
+   x11-libs/libXext
+   x11-libs/libXmu
+   x11-libs/libXp
+   x11-libs/libXpm
+   x11-libs/libXt
+   )"
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   sys-devel/flex
+   sys-devel/gettext
+   sys-devel/bison
+   X? (
+   dev-lang/swig
+   x11-proto/xextproto
+   x11-proto/xproto
+   )"
+
+S="${WORKDIR}/${MY_P}"
+
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   opengl? ( X )"
+
+PATCHES=(
+   "${FILESDIR}/${PN}"-7.0.1-declare-inespg.patch
+)
+
+pkg_setup() {
+   if use lapack; then
+   local mylapack
+   mylapack=$(eselect lapack show) || die
+   if [[ -z "${mylapack/.*reference.*/}" ]] && \
+   [[ 

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

2016-03-15 Thread Mike Frysinger
commit: ef68396f79c2954cda4a875197817cf6d6bc76d6
Author: Mike Frysinger  gentoo  org>
AuthorDate: Tue Mar 15 23:08:24 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Mar 15 23:08:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef68396f

profiles: drop pointless/misguided USE=multislot masking

 profiles/base/package.use.mask | 8 
 1 file changed, 8 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 7a7e836..8be1906 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -293,14 +293,6 @@ dev-libs/DirectFB swfdec
 # Masked since skype isn't stable
 net-im/bitlbee skype
 
-# Sergey Popov  (01 Oct 2014)
-# Mask multislot USE flag for packages, where it breaks
-# metadata cache consistency.
-# See bugs #507808, #507810 and #507814
-sys-devel/autoconf multislot
-sys-devel/binutils multislot
-sys-devel/gcc  multislot
-
 # Michał Górny  (15 Sep 2014)
 # Unsuccessful version bump of net-libs/libzrtpcpp, seems to cause
 # undefined references few layers deeper. Need further investigation,



[gentoo-commits] repo/gentoo:master commit in: app-editors/gummi/

2016-03-15 Thread Aaron Bauman
commit: c425218c365ba4c04e8b3d9943b32f8775357b25
Author: Aaron Bauman  gentoo  org>
AuthorDate: Tue Mar 15 22:56:55 2016 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Tue Mar 15 22:57:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c425218c

app-editors/gummy: drop vulnerable versions per 562894.  Thanks to Christian 
Tietz.

Package-Manager: portage-2.2.26

 app-editors/gummi/Manifest   |  1 -
 app-editors/gummi/gummi-0.6.5.ebuild | 46 
 2 files changed, 47 deletions(-)

diff --git a/app-editors/gummi/Manifest b/app-editors/gummi/Manifest
index 33a7436..6496d34 100644
--- a/app-editors/gummi/Manifest
+++ b/app-editors/gummi/Manifest
@@ -1,2 +1 @@
-DIST gummi-0.6.5.tar.gz 520902 SHA256 
b23c2958376ea43c701a276ad19ceac5b50d9cb32a489a10897b25aa5004fffb SHA512 
9a35533273ff5f2606ba1d79c01dcdf14f2a47628eb5d19613330650ed2a2bd542461492d031e51b773e13c6ac406b564e6703919f16e5f8d7e6bb3c4428b40e
 WHIRLPOOL 
47e1ad5a15183ed0d24a88ebc3bc1af166604825da54db10461243ba4c1b8d6ca82d1afaf7306ef45a4df0f65d103b6cbc83db02cb6469fb7138545e16ae2728
 DIST gummi-0.6.6.tar.gz 792642 SHA256 
4119341d6556d82f4b8ce08ad67b6f92c1d9ad1fbad789b7faa7b2d38b7299da SHA512 
3be94927c9aafa4914ed2b6f6f5022dce5bcca315a1f947fafb8a4c8bbc5a2bc57f07f8ceaaacdd0b92a5a30483ea8b00e570faf62479280d2ad874716e4c47d
 WHIRLPOOL 
6125d930497d6f5a4f6d8604b39314b04e6e147f93a998f3fe722295f7d04f795a2e7e1f8eea21953eae7e69074dc9a9cdc6cefb29f59261c47ec000c55bc363

diff --git a/app-editors/gummi/gummi-0.6.5.ebuild 
b/app-editors/gummi/gummi-0.6.5.ebuild
deleted file mode 100644
index 20ec5c8..000
--- a/app-editors/gummi/gummi-0.6.5.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-inherit base eutils readme.gentoo
-
-DESCRIPTION="Simple LaTeX editor for GTK+"
-HOMEPAGE="http://gummi.midnightcoding.org;
-SRC_URI="http://dev.midnightcoding.org/attachments/download/301/${P}.tar.gz;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-LANGS="ar ca cs da de el es fr hu it nl pl pt pt_BR ro ru sv zh_CN zh_TW"
-
-for X in ${LANGS} ; do
-   IUSE="${IUSE} linguas_${X}"
-done
-
-RDEPEND="app-text/gtkspell:2
-   >=dev-libs/glib-2.28.6
-   dev-texlive/texlive-latex
-   dev-texlive/texlive-latexextra
-   >=x11-libs/gtk+-2.24:2
-   x11-libs/gtksourceview:2.0"
-DEPEND="${RDEPEND}
-   app-text/poppler[cairo]
-   x11-libs/gtksourceview:2.0
-   x11-libs/pango"
-
-DOCS=( AUTHORS ChangeLog README )
-
-src_prepare() {
-   strip-linguas ${LANGS}
-   DOC_CONTENTS="Gummi supports spell-checking through gtkspell. Support 
for
-   additional languages can be added by installing myspell-** 
packages
-   for your language of choice."
-}
-
-src_install() {
-   base_src_install
-   readme.gentoo_create_doc
-}



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

2016-03-15 Thread Andrey Grozin
commit: f28eecac3372b712b101ae741474a292c93bee7e
Author: Andrey Grozin  gentoo  org>
AuthorDate: Tue Mar 15 22:41:21 2016 +
Commit: Andrey Grozin  gentoo  org>
CommitDate: Tue Mar 15 22:41:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f28eecac

sci-mathematics/mathmod: initial import

Package-Manager: portage-2.2.28

 sci-mathematics/mathmod/Manifest   |  1 +
 sci-mathematics/mathmod/mathmod-4.1.ebuild | 42 ++
 sci-mathematics/mathmod/metadata.xml   | 22 
 3 files changed, 65 insertions(+)

diff --git a/sci-mathematics/mathmod/Manifest b/sci-mathematics/mathmod/Manifest
new file mode 100644
index 000..8adff3b
--- /dev/null
+++ b/sci-mathematics/mathmod/Manifest
@@ -0,0 +1 @@
+DIST mathmod-4.1.src.zip 974709 SHA256 
fff57e82fc57b90af98b345f14219c01b1709b019735739b9244173bec626ad4 SHA512 
e7a170f5b57384cca4e755a0bb3691ec3fe29e9b22027534f1e84ed656905495c70eea8c69262f31a937ca508c34177d33adc23f5a8a3c91db1eceb2aa283a6d
 WHIRLPOOL 
ee68e96744cd210e727111677c4f7b57221f4754cf60218be980b31d482c1e9a24adaed853e098ad4f2a14ce8a8e1523c07121285746d23fc39035de18650fd1

diff --git a/sci-mathematics/mathmod/mathmod-4.1.ebuild 
b/sci-mathematics/mathmod/mathmod-4.1.ebuild
new file mode 100644
index 000..74d1903
--- /dev/null
+++ b/sci-mathematics/mathmod/mathmod-4.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils gnome2-utils qmake-utils fdo-mime
+
+DESCRIPTION="Plot parametric and implicit surfaces"
+HOMEPAGE="https://www.facebook.com/pages/MathMod/529510253833102;
+SRC_URI="mirror://sourceforge/${PN}/${P}.src.zip"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-qt/qtwidgets:5 dev-qt/qtopengl:5"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}"/${PN}-branches-274-trunk
+
+src_configure() {
+   eqmake5 MathMod.pro
+}
+
+src_install() {
+   exeinto /usr/bin
+   doexe MathMod
+   newicon -s 16 icon/catenoid_mini_16x16.png catenoid.png
+   newicon -s 32 icon/catenoid_mini_32x32.png catenoid.png
+   newicon -s 64 icon/catenoid_mini_64x64.png catenoid.png
+   make_desktop_entry MathMod MathMod catenoid
+}
+
+pkg_postinst() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+}
+
+pkg_postrm() {
+   gnome2_icon_cache_update
+   fdo-mime_desktop_database_update
+}

diff --git a/sci-mathematics/mathmod/metadata.xml 
b/sci-mathematics/mathmod/metadata.xml
new file mode 100644
index 000..1a5c540
--- /dev/null
+++ b/sci-mathematics/mathmod/metadata.xml
@@ -0,0 +1,22 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+  gro...@gentoo.org
+  Andrey Grozin
+
+
+  sci-mathemat...@gentoo.org
+  Gentoo Mathematics Project
+
+
+  MathMod is a mathematical modeling software that visualize and animate
+  implicit and parametric surfaces.
+  MathMod supports: 3D and 4D plotting and animation, OBJ output file format,
+  Textue and pigmentation support, Noise and Turbulence effects support,
+  Large set of scripted examples.
+
+
+  mathmod
+
+



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

2016-03-15 Thread Sergei Trofimovich
commit: 29af3b2d676dd10f25af3d4a6a5c914d94e655ba
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 15 21:56:35 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 15 22:01:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29af3b2d

dev-haskell/cabal: bump up to 1.22.8.0

Package-Manager: portage-2.2.28

 dev-haskell/cabal/Manifest  |  1 +
 dev-haskell/cabal/cabal-1.22.8.0.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/dev-haskell/cabal/Manifest b/dev-haskell/cabal/Manifest
index b43cc99..2eacd77 100644
--- a/dev-haskell/cabal/Manifest
+++ b/dev-haskell/cabal/Manifest
@@ -6,3 +6,4 @@ DIST Cabal-1.18.1.5.tar.gz 706722 SHA256 
2a5f14599e390e4ed6fc78ad05e16792a671bd5
 DIST Cabal-1.20.0.2.tar.gz 717941 SHA256 
234d2299bcf580f727cd3fa649448ff84b304d1f270e3b6836f8e2211d11bf02 SHA512 
6dfe30ebe5859ccd934f76fc32bd4757d89e3bcb02a528bebaa0a63f22c0494eb4a941b2fed2e004671875586fed113860e82413bed99f70be565f4f343ac3d3
 WHIRLPOOL 
38ccfaded54fb86bedca33dd48742f06763b6b7dc89444dac6846102dec27fe61acefef3b1f0a3e4053751e88f79ab523e89264f070eddc999ca9810b47cce9b
 DIST Cabal-1.22.4.0.tar.gz 404549 SHA256 
b96a8db268e3501ded01bdb0d178fe334274e92c1497c3249a59ef5cfc55dca6 SHA512 
0a25889fd5fe224868210091f429489c24e01334b2ae49444dfdfaaae6e0892a8c3262e4146fefc7f95b165d637b812abd9519394de9a7d801fda9a75a945b31
 WHIRLPOOL 
996fd9ac055afec29f16c1e91e38ee00193894c3ed7e183a017a2fb04ead50dabf247e2209c17c5ca66c0016fa676cead36b8b0ee884f0353d3b85e08c3a0541
 DIST Cabal-1.22.6.0.tar.gz 405017 SHA256 
e6a58714bd33ea107b5e99c7f149b48ddd3fbfa72e6105abbab4478bcf4f2433 SHA512 
f7a4bfed3a2c10709b4e1fa6abfc612835d1874e976fa732dd0dd8af41c92dcb1ba55482fbbbffd834579cdea4625d00aa11f83fbbf5b6edfeff062b332a27bc
 WHIRLPOOL 
dc1c64e771473b42954ecd78dc58434fd3822a3612ab4279697f7abd7b5c3a8be5581473a0af6188fcdd6cf376afae6befe7894c54ed27688c4a9b190e9ea0b8
+DIST Cabal-1.22.8.0.tar.gz 405552 SHA256 
2a42a2ddecb6450f87ed3a2b37af81dcc573dfde8f0db16f695c78674a80a34e SHA512 
3666e8a66751ea8ae93109c1e33c2909c00c65ddcd77458c41303481e06ebd7230215e12c133cc2fca47ba352c61411ff72ca0994b6d45b5987156bce2fbcdf3
 WHIRLPOOL 
33b409ac997a1ef18f395a03707ee7dc7c1cfe8cf155f10d7116267e0502c733bf4a0c0b5de9a7075b364855cf3b8151af245b34cfb1f717191fb199328544f3

diff --git a/dev-haskell/cabal/cabal-1.22.8.0.ebuild 
b/dev-haskell/cabal/cabal-1.22.8.0.ebuild
new file mode 100644
index 000..2018c46
--- /dev/null
+++ b/dev-haskell/cabal/cabal-1.22.8.0.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.5.
+
+CABAL_FEATURES="lib profile test-suite"
+CABAL_FEATURES+=" bootstrap" # does not need cabal to build itself
+inherit haskell-cabal
+
+MY_PN="Cabal"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="A framework for packaging Haskell software"
+HOMEPAGE="http://www.haskell.org/cabal/;
+SRC_URI="mirror://hackage/packages/archive/${MY_PN}/${PV}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~alpha ~amd64 ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+IUSE=""
+
+RESTRICT=test
+
+RDEPEND=">=dev-lang/ghc-7.8.1:="
+DEPEND="${RDEPEND}
+   test? ( dev-haskell/extensible-exceptions
+   dev-haskell/hunit
+   >=dev-haskell/quickcheck-2.1.0.1:2 =dev-haskell/test-framework-quickcheck2-0.2.12 )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_prepare() {
+   if [[ -n ${LIVE_EBUILD} ]]; then
+   CABAL_FILE=${MY_PN}.cabal cabal_chdeps 'version: 1.17.0' 
"version: ${PV}"
+   fi
+}
+
+src_configure() {
+   cabal-is-dummy-lib && return
+
+   einfo "Bootstrapping Cabal..."
+   $(ghc-getghc) ${HCFLAGS} -i -i. -i"${WORKDIR}/${FP_P}" -cpp --make 
Setup.hs \
+   -o setup || die "compiling Setup.hs failed"
+   cabal-configure
+}
+
+src_compile() {
+   cabal-is-dummy-lib && return
+
+   cabal-build
+}



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

2016-03-15 Thread Sergei Trofimovich
commit: e65437ceb8356dc2e3b7c5a4ebf6f5142a1da078
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 15 21:59:26 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 15 22:01:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e65437ce

dev-haskell/xhtml: allow ghc-7.10.3

Package-Manager: portage-2.2.28

 dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild 
b/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild
index d32fe1e..b812fcd 100644
--- a/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild
+++ b/dev-haskell/xhtml/xhtml-3000.2.1-r1.ebuild
@@ -22,4 +22,4 @@ RDEPEND=">=dev-lang/ghc-6.10.4:="
 DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6"
 
-CABAL_CORE_LIB_GHC_PV="7.8.3 7.8.3.20141119 7.8.4 7.10.0.20141222 
7.10.0.20150123 PM:7.10.1_rc3 PM:7.10.1 PM:7.10.2_rc2 PM:7.10.2 PM:7.10.2-r1 
PM:7.10.3_rc1 PM:7.10.3 PM:8.0.1_rc1"
+CABAL_CORE_LIB_GHC_PV="7.8.3 7.8.3.20141119 7.8.4 7.10.0.20141222 
7.10.0.20150123 PM:7.10.1_rc3 PM:7.10.1 PM:7.10.2_rc2 PM:7.10.2 PM:7.10.2-r1 
PM:7.10.3_rc1 PM:7.10.3 PM:8.0.1_rc1 PM:8.0.1_rc2"



[gentoo-commits] repo/gentoo:master commit in: dev-lang/ghc/, dev-lang/ghc/files/

2016-03-15 Thread Sergei Trofimovich
commit: 39a2ed4121c53aafd5a1178bb8f1526f8f71608a
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 15 21:53:39 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 15 22:01:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39a2ed41

dev-lang/ghc: bump up to 7.10.3, added binaries for x86, amd64

Package-Manager: portage-2.2.28

 dev-lang/ghc/Manifest |   5 +
 dev-lang/ghc/files/ghc-7.10.3-hardfloat.patch |  26 +
 dev-lang/ghc/files/ghc-7.10.3-relnotes.patch  |  45 ++
 dev-lang/ghc/ghc-7.10.3.ebuild| 672 ++
 4 files changed, 748 insertions(+)

diff --git a/dev-lang/ghc/Manifest b/dev-lang/ghc/Manifest
index 2b1151c..1f076a7 100644
--- a/dev-lang/ghc/Manifest
+++ b/dev-lang/ghc/Manifest
@@ -1,5 +1,7 @@
 DIST binary-0.7.5.0.tar.gz 45764 SHA256 
4709c5aa7cc99cb4a465a68de1648968208d0c60c368e2fece476d977530ef19 SHA512 
232e7c3da1c0055f3e9f211a86e81c76bc44ab1b70cabd23c93634dbaa42eed8bd9314fbedc16b9703d3ca92b0bbf232e6c30bb1384687dad0e6e85c9abb8947
 WHIRLPOOL 
1d8dcf9d5125ff398375f4024c0e43fa168004811db7824e2739ec5c0451b38dae9ad74f757c7708427deed0044580b182e35d1c7ecffec25f7b10c70bd32075
+DIST binary-0.7.6.1.tar.gz 47086 SHA256 
8f85cafc15be660757878a665d024ce595d4422fead174e20a501c9ec8f81067 SHA512 
655daa93a52b845a85d440810452933d7bc3398ad1b51e1e955b2d19a0a32679325a0d1751ad50d252531e493528262e14dab32af4b9a515855fe7f64e0730b2
 WHIRLPOOL 
6853eb2c817e8ae792226c6c7764ce495833f965c3d503fe7e39c0502019d12f7bd46309b72dfdb276c7dbce8c004cb59fdea4936d69ede0a7c8b487acda2702
 DIST ghc-7.10.2-src.tar.bz2 12651156 SHA256 
908a01ca86238318f4e880fda400ea399d0a0008d699c912b85d0e0f746e5689 SHA512 
e3f99a9e848c12b728212da24bf9029ec8cde88cdfa7eeb4ee2ea223ad8bcaae3e7c27456d09d60a3d21efa8f907ccd2490caf5630ca5fe3ce87f04901275a66
 WHIRLPOOL 
dee757e79de8ac6bcf127212703985282ce96d050be50e78c3f249f13dc0212c9fd96899502748ceb26b9fc3a804379a456e19a9bedfef72f6890992b00492da
+DIST ghc-7.10.3-src.tar.bz2 13281867 SHA256 
3e29a56a74ed6a74d3ee2a6db9389f2462837da46ca6dce9d2965f9c152f0c15 SHA512 
97a8282d8a75399c78d85d6faab7ac253a993dc69f1840358572f1878b8fd1a527c28801e5823c8200b5690e268e4a0c00941945ada13790852c75a83b612c17
 WHIRLPOOL 
04af6ea2738a1cc9e266efbb0e1b41b70d4cd915b48ca1265fade62b1c56cd51056fd1a82fc14cebc19a0c16782609a991c1a181ebe59574f1a10b4f26ad830d
 DIST ghc-7.4.2-src.tar.bz2 25836446 SHA256 
f2ee1289a33cc70539287129841acc7eaf16112bb60c59b5a6ee91887bfd836d SHA512 
5a3d06a36702fa7e337b482c9de92ce1f84a68f18d8560bcc11f3617d6d46f93167fee27e786de6483a9ef0eab3b1ac6909a71dd53908d36156df4e465075050
 WHIRLPOOL 
61865eed2bf92728e7c4c4a0c48be44081bf728cfd824760d643e2fad838d96c19e173052d3aac073e0795b5efa3720ba5ddf13cca1ec7952b7524bbe1f204bc
 DIST ghc-7.6.3-src.tar.bz2 110763823 SHA256 
bd43823d31f6b5d0b2ca7b74151a8f98336ab0800be85f45bb591c9c26aac998 SHA512 
ac86f18b4feeb0bdc9e867261600b210caf62740d73ae657259bbe8149b8c2c4f5a73d09d74d944d4e50f85cc87503485365f0a0ae65befe8d2b6844e5e1253a
 WHIRLPOOL 
0fe1f5f2987699067494559e6a679d28f027eee8fb2a00c683161dbce5443b1faeebfb51572209b75231cee24c7f0c929cabbc82a93f70e16d05e351fdfe2eaf
 DIST ghc-7.8.3-src.tar.xz 9160092 SHA256 
b0cd96a549ba3b5e512847a4a8cd1a3174e4b2b75dadfc41c568fb812887b958 SHA512 
2cc8c2aa6f18ba565c1e2aa637045e246f1214c2a77e95c2a97dfb97203b8983e4ad3cc13178b4b51aff70c58d59a1f68f94cd813d043745cb02411bad04bb00
 WHIRLPOOL 
3a2e8eea0db7a150e4732efed488a3a5eb56da00a9a90a3379afcb4090323925a2a7485fec6676e784139f112d7c825e8d18a576c34c760af4a7f3adb22c021a
@@ -9,6 +11,8 @@ DIST ghc-bin-7.10.2-amd64.tbz2 112028560 SHA256 
536297ac402da44ec1aafb1a93796088
 DIST ghc-bin-7.10.2-r1-amd64-noncurses.tbz2 111863814 SHA256 
782a68a13343ac8d6ed97540b411f714c4e826ccc3d152724198548c9240aceb SHA512 
b154dbd7fb4fefc4283ec337b0c6ce6b6b6b3a62e9d889ca9c5dd5b5e5987f811a1c87845239ca94941afea630fc8bf1d8db94eb11a4023abd4b1d772dfb17c1
 WHIRLPOOL 
1e1f1ec82c831d115cd5f0b27f1914da94d92a9eca9af634210eb5f72b54281de6e08ea8e304bebaec8a456659b40866b9f0e24ef0e72c3f5a63d85296eb172a
 DIST ghc-bin-7.10.2-r1-x86-noncurses.tbz2 113572461 SHA256 
3ad1e2888d26b6858cd1efe0e9863bc325b97c47be19fdd2e8dd5bbc86f7266b SHA512 
573b7228b576a47ca1c3796cc2d4180a6c9dcaff58555cf52fc85a9b487920fc19487ff9ee8e0b6c33d6196ba05b9908f0d984bf3a4c0d91f52667e7389580a5
 WHIRLPOOL 
2c8cda95d04e9f345aa2f20fe8758761dd35648b788b7bf9b8f571687a8aae92456552883684d83ec2d2acaf22a002121643316df3c82349400c7de3d0300f7d
 DIST ghc-bin-7.10.2-x86.tbz2 113900477 SHA256 
eefb7a3002e3dcdd6d936b2b2826eadf3cd100352babad4c9a355b944064240a SHA512 
61dae4b9c80bfef6b1e0550c77b70f25d11f4a9fbe3b57d6c4ad451b4b584884432405d39dc32b9f85f3a5ad9d02657356ae0ebd99518848f3d330314c74b595
 WHIRLPOOL 
da0d7eb62d2ee2aeb80a3f495da2ff123e29151b7517fbcd212f83ab3722638f10019511f4f237e8e001c68dd957ed2817fb0f1a2b42c2710239343f1d801496
+DIST ghc-bin-7.10.3-amd64.tbz2 112040431 SHA256 
c3c71aff288f7de2785d1c3d54f0fd636144eb3dcb590bdda087b0775203e517 SHA512 

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

2016-03-15 Thread Sergei Trofimovich
commit: 71da707ad274150dee0b35c3c12ade01c7baeee3
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 15 21:55:37 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 15 22:01:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71da707a

dev-haskell/binary: bump up to 0.7.6.1

Package-Manager: portage-2.2.28

 dev-haskell/binary/Manifest  |  1 +
 dev-haskell/binary/binary-0.7.6.1.ebuild | 34 
 2 files changed, 35 insertions(+)

diff --git a/dev-haskell/binary/Manifest b/dev-haskell/binary/Manifest
index 9869722..2cf5850 100644
--- a/dev-haskell/binary/Manifest
+++ b/dev-haskell/binary/Manifest
@@ -2,3 +2,4 @@ DIST binary-0.5.1.1.tar.gz 34239 SHA256 
945d62a0ea0bd5b5345cce88e6c337b116485334
 DIST binary-0.7.1.0.tar.gz 43647 SHA256 
9622efca717cd4f606dc3f43e93464b6eeb0f35e12dd0207065cc6533e498b99 SHA512 
711d64c51cb6cf8811252fe3cbb0575dade897666566610f8dee51c2965d0e3dc1dc40df72713e9e6abbd0bfe494dd4feee70128d21f1ea16305bde3409557b3
 WHIRLPOOL 
f748f3baff58e236be0dfaa4855716f85b702ef08f3ab28550cd1ecd4dd018cd7f6fc72caa35b34cd6f0f4016f49c104367f7970f5f923440dff2f074cbe9b4a
 DIST binary-0.7.2.3.tar.gz 47622 SHA256 
fd7f59302cbb137068de28efe6e2c403fa45c10077641ec33fa1fb09a8a5c499 SHA512 
1babe32d1c2c0537091c96a3191285f2f61a9c85ca503c89c57c32e60d8f16ee429dd8fb645563d96714122a06ca6c9f0ab1c04077b4f0ed22d4b0b41ef2c18f
 WHIRLPOOL 
d7bfb011e830553a3284b2dfebffcf18d4d10fda194fe135d6e5aa9b5145c61e406600904b72f57149ecfee58a0ba928cc3ffa62d8eb7cba8660326bf5667755
 DIST binary-0.7.5.0.tar.gz 45764 SHA256 
4709c5aa7cc99cb4a465a68de1648968208d0c60c368e2fece476d977530ef19 SHA512 
232e7c3da1c0055f3e9f211a86e81c76bc44ab1b70cabd23c93634dbaa42eed8bd9314fbedc16b9703d3ca92b0bbf232e6c30bb1384687dad0e6e85c9abb8947
 WHIRLPOOL 
1d8dcf9d5125ff398375f4024c0e43fa168004811db7824e2739ec5c0451b38dae9ad74f757c7708427deed0044580b182e35d1c7ecffec25f7b10c70bd32075
+DIST binary-0.7.6.1.tar.gz 47086 SHA256 
8f85cafc15be660757878a665d024ce595d4422fead174e20a501c9ec8f81067 SHA512 
655daa93a52b845a85d440810452933d7bc3398ad1b51e1e955b2d19a0a32679325a0d1751ad50d252531e493528262e14dab32af4b9a515855fe7f64e0730b2
 WHIRLPOOL 
6853eb2c817e8ae792226c6c7764ce495833f965c3d503fe7e39c0502019d12f7bd46309b72dfdb276c7dbce8c004cb59fdea4936d69ede0a7c8b487acda2702

diff --git a/dev-haskell/binary/binary-0.7.6.1.ebuild 
b/dev-haskell/binary/binary-0.7.6.1.ebuild
new file mode 100644
index 000..13e56ee
--- /dev/null
+++ b/dev-haskell/binary/binary-0.7.6.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+# ebuild generated by hackport 0.4.6.
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Binary serialisation for Haskell values using lazy ByteStrings"
+HOMEPAGE="https://github.com/kolmodin/binary;
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RESTRICT=test # binary[test]->test-framework->text->xml->binary
+
+RDEPEND=">=dev-lang/ghc-7.4.1:=
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.8
+   test? ( dev-haskell/hunit
+   >=dev-haskell/quickcheck-2.8
+   >=dev-haskell/random-1.0.1.0
+   dev-haskell/test-framework
+   >=dev-haskell/test-framework-quickcheck2-0.3 )
+"
+
+CABAL_CORE_LIB_GHC_PV="PM:7.10.3_rc1 PM:7.10.3"



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

2016-03-15 Thread Sergei Trofimovich
commit: 79c00dbcf6c99babe3c2735cbcb379039ac653bb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 15 21:58:36 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 15 22:01:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79c00dbc

dev-haskell/transformers: allow ghc-7.10.3

Package-Manager: portage-2.2.28

 dev-haskell/transformers/transformers-0.4.3.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/transformers/transformers-0.4.3.0.ebuild 
b/dev-haskell/transformers/transformers-0.4.3.0.ebuild
index 5c13274..845b387 100644
--- a/dev-haskell/transformers/transformers-0.4.3.0.ebuild
+++ b/dev-haskell/transformers/transformers-0.4.3.0.ebuild
@@ -24,4 +24,4 @@ DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.6
 "
 
-CABAL_CORE_LIB_GHC_PV="PM:7.8.4-r4 7.11.2015* PM:7.10.2_rc2 PM:7.10.2 
PM:7.10.2-r1"
+CABAL_CORE_LIB_GHC_PV="PM:7.8.4-r4 7.11.2015* PM:7.10.2_rc2 PM:7.10.2 
PM:7.10.2-r1 PM:7.10.3_rc1 PM:7.10.3"



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

2016-03-15 Thread Sergei Trofimovich
commit: 4c4d5a59c1b14acd6df6df07e37362050c1728ee
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Tue Mar 15 21:57:54 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Tue Mar 15 22:01:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4d5a59

dev-haskell/haskeline: allow ghc-7.10.3

Package-Manager: portage-2.2.28

 dev-haskell/haskeline/haskeline-0.7.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-haskell/haskeline/haskeline-0.7.2.1.ebuild 
b/dev-haskell/haskeline/haskeline-0.7.2.1.ebuild
index accc546..aaf2166 100644
--- a/dev-haskell/haskeline/haskeline-0.7.2.1.ebuild
+++ b/dev-haskell/haskeline/haskeline-0.7.2.1.ebuild
@@ -27,7 +27,7 @@ DEPEND="${RDEPEND}
>=dev-haskell/cabal-1.10
 "
 
-CABAL_CORE_LIB_GHC_PV="PM:7.10.1 PM:7.10.2_rc2 PM:7.10.2 PM:7.10.2-r1"
+CABAL_CORE_LIB_GHC_PV="PM:7.10.1 PM:7.10.2_rc2 PM:7.10.2 PM:7.10.2-r1 
PM:7.10.3_rc1 PM:7.10.3"
 
 src_prepare() {
cabal_chdeps \



[gentoo-commits] proj/kde:master commit in: dev-libs/qoauth/, dev-libs/qoauth/files/

2016-03-15 Thread Johannes Huber
commit: 68b63d4edb6968b593232e8038990f5441f5f152
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Mar 15 22:00:41 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Mar 15 22:00:41 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=68b63d4e

dev-libs/qoauth: Remove

Package not maintained by us. Snapshot in tree available.

Gentoo-bug: 556180

Package-Manager: portage-2.2.28

 .../qoauth/files/qoauth-1.0.1-disable-ft.patch | 20 --
 dev-libs/qoauth/metadata.xml   |  8 ---
 dev-libs/qoauth/qoauth-.ebuild | 77 --
 3 files changed, 105 deletions(-)

diff --git a/dev-libs/qoauth/files/qoauth-1.0.1-disable-ft.patch 
b/dev-libs/qoauth/files/qoauth-1.0.1-disable-ft.patch
deleted file mode 100644
index 1fd6fd0..000
--- a/dev-libs/qoauth/files/qoauth-1.0.1-disable-ft.patch
+++ /dev/null
@@ -1,20 +0,0 @@
-diff --git a/qoauth.pro b/qoauth.pro
-index f09b3be..27d7bb3 100644
 a/qoauth.pro
-+++ b/qoauth.pro
-@@ -5,6 +5,6 @@ SUBDIRS += src tests
- CONFIG += ordered
- 
- check.target = check
--check.commands = ( cd tests/ut_interface && ./ut_interface ) && ( cd 
tests/ft_interface && ./ft_interface )
-+check.commands = ( cd tests/ut_interface && ./ut_interface )
- check.depends = sub-tests
- QMAKE_EXTRA_TARGETS += check
-diff --git a/tests/tests.pro b/tests/tests.pro
-index d582750..e010bb0 100644
 a/tests/tests.pro
-+++ b/tests/tests.pro
-@@ -1,2 +1,2 @@
- TEMPLATE = subdirs
--SUBDIRS += ut_interface ft_interface
-+SUBDIRS += ut_interface

diff --git a/dev-libs/qoauth/metadata.xml b/dev-libs/qoauth/metadata.xml
deleted file mode 100644
index 1723768..000
--- a/dev-libs/qoauth/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   q...@gentoo.org
-   Gentoo Qt Project
-   
-

diff --git a/dev-libs/qoauth/qoauth-.ebuild 
b/dev-libs/qoauth/qoauth-.ebuild
deleted file mode 100644
index 9ebd674..000
--- a/dev-libs/qoauth/qoauth-.ebuild
+++ /dev/null
@@ -1,77 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit qmake-utils
-
-DESCRIPTION="A Qt5-based library for OAuth support"
-HOMEPAGE="https://wiki.github.com/ayoy/qoauth;
-if [[ ${PV} =  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/ayoy/qoauth.git;
-else
-   
SRC_URI="http://files.ayoy.net/qoauth/release/${PV}/src/${P}-src.tar.bz2;
-   S=${WORKDIR}/${P}-src
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="5"
-KEYWORDS=""
-IUSE="debug doc static-libs test"
-
-COMMON_DEPEND="app-crypt/qca:2[debug?,qt5]"
-DEPEND="${COMMON_DEPEND}
-   doc? ( app-doc/doxygen )
-   test? ( dev-qt/qttest:5 )
-"
-RDEPEND="${COMMON_DEPEND}
-   app-crypt/qca:2[openssl]
-   !dev-libs/qoauth:0
-"
-
-DOCS=( README CHANGELOG )
-
-src_prepare() {
-   default
-
-   # disable functional tests that require network connection
-   # and rely on 3rd party external server (bug #341267)
-   epatch "${FILESDIR}/${PN}-1.0.1-disable-ft.patch"
-
-   if ! use test; then
-   sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
-   fi
-
-   sed -i -e '/^ *docs \\$/d' \
-   -e '/^ *build_all \\$/d' \
-   -e 's/^\#\(!macx\)/\1/' \
-   src/src.pro || die "sed failed"
-
-   sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed 
failed"
-}
-
-src_configure() {
-   eqmake5 qoauth.pro
-}
-
-src_compile() {
-   default
-   if use static-libs; then
-   emake -C src static
-   fi
-}
-
-src_install() {
-   INSTALL_ROOT="${D}" default
-
-   if use static-libs; then
-   dolib.a "${S}"/lib/lib${PN}.a
-   fi
-
-   if use doc; then
-   doxygen "${S}"/Doxyfile || die "failed to generate 
documentation"
-   dohtml "${S}"/doc/html/*
-   fi
-}



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

2016-03-15 Thread Johannes Huber
commit: b492b531d05766bed121f51d9ff59fe57540e09a
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Mar 15 21:57:23 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Mar 15 21:57:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b492b531

dev-libs/qoauth: Add Qt5 compat snapshot

Gentoo-bug: 556180
Acked-by: Michael Palimaka  gentoo.org>

Package-Manager: portage-2.2.28

 dev-libs/qoauth/Manifest|  1 +
 dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild | 71 +
 2 files changed, 72 insertions(+)

diff --git a/dev-libs/qoauth/Manifest b/dev-libs/qoauth/Manifest
index bdad95e..006859b 100644
--- a/dev-libs/qoauth/Manifest
+++ b/dev-libs/qoauth/Manifest
@@ -1 +1,2 @@
 DIST qoauth-1.0.1-src.tar.bz2 42298 SHA256 
b8579a77cecb07928e557c4a019db902a0f040b22f7926f147299e87ac5a54fd SHA512 
86869c82e6efd490888f3bb16cba5bb014821e35507d3d396a84f5112a2d0bd7cb1251ba5dff82a8913eeae77a0feeebfdf4a7d1e9870023fb3c106d603c3dd8
 WHIRLPOOL 
e990ad4fbaa7ce3c45eec6f3a49d9404139432e5941882cc73d85520868bdc592604c8b7058866648d27b2001b310848edd239f8c3f9fc4f0bc66c79fee7f8bd
+DIST qoauth-2.0.1_pre20160315.tar.xz 45604 SHA256 
9e5e29b4258d878e9e1f8afdbc8ae94e68040d35d4f87e209b703e090fe278b4 SHA512 
ec44c597c7b9729645ab98e2c71c805d01eab4c0684b7ea0da6b015a052b0ad6e3aa9352ef53e36a67ff99b9f75fb9b89156ca8b23c639a70cc49aab656366c3
 WHIRLPOOL 
3a082480c75aaa49a24937a0707e703dbabb1484d9cb467141bfd14f56169319018ff4b5e3026c59cab2199ca884686002790bc5927c0b2d56d170a34a3b7b5e

diff --git a/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild 
b/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild
new file mode 100644
index 000..d9ab014
--- /dev/null
+++ b/dev-libs/qoauth/qoauth-2.0.1_pre20160315.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit qmake-utils
+
+DESCRIPTION="Qt-based library for OAuth support"
+HOMEPAGE="https://wiki.github.com/ayoy/qoauth;
+SRC_URI="https://dev.gentoo.org/~johu/distfiles/${P}.tar.xz;
+
+LICENSE="LGPL-2.1"
+SLOT="5"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="debug doc static-libs test"
+
+COMMON_DEPEND="app-crypt/qca:2[debug?,qt5]"
+DEPEND="${COMMON_DEPEND}
+   doc? ( app-doc/doxygen )
+   test? ( dev-qt/qttest:5 )
+"
+RDEPEND="${COMMON_DEPEND}
+   app-crypt/qca:2[openssl]
+   !dev-libs/qoauth:0
+"
+
+DOCS=( README CHANGELOG )
+
+src_prepare() {
+   default
+
+   # disable functional tests that require network connection
+   # and rely on 3rd party external server (bug #341267)
+   epatch "${FILESDIR}/${PN}-1.0.1-disable-ft.patch"
+
+   if ! use test; then
+   sed -i -e '/SUBDIRS/s/tests//' ${PN}.pro || die "sed failed"
+   fi
+
+   sed -i -e '/^ *docs \\$/d' \
+   -e '/^ *build_all \\$/d' \
+   -e 's/^\#\(!macx\)/\1/' \
+   src/src.pro || die "sed failed"
+
+   sed -i -e "s/\(.*\)lib$/\1$(get_libdir)/" src/pcfile.sh || die "sed 
failed"
+}
+
+src_configure() {
+   eqmake5 qoauth.pro
+}
+
+src_compile() {
+   default
+   if use static-libs; then
+   emake -C src static
+   fi
+}
+
+src_install() {
+   INSTALL_ROOT="${D}" default
+
+   if use static-libs; then
+   dolib.a "${S}"/lib/lib${PN}.a
+   fi
+
+   if use doc; then
+   doxygen "${S}"/Doxyfile || die "failed to generate 
documentation"
+   dohtml "${S}"/doc/html/*
+   fi
+}



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

2016-03-15 Thread Tiziano Müller
commit: 37235adcb5836ae5dae998e98777d74c31f801a0
Author: Tiziano Müller  gentoo  org>
AuthorDate: Tue Mar 15 21:54:57 2016 +
Commit: Tiziano Müller  gentoo  org>
CommitDate: Tue Mar 15 21:55:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37235adc

dev-python/flask-restful: rev-bump for py-3.5 support and EAPI-6

Package-Manager: portage-2.2.28

 .../flask-restful/flask-restful-0.3.5-r1.ebuild| 51 ++
 1 file changed, 51 insertions(+)

diff --git a/dev-python/flask-restful/flask-restful-0.3.5-r1.ebuild 
b/dev-python/flask-restful/flask-restful-0.3.5-r1.ebuild
new file mode 100644
index 000..5b6f387
--- /dev/null
+++ b/dev-python/flask-restful/flask-restful-0.3.5-r1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="Simple framework for creating REST APIs"
+HOMEPAGE="http://flask-restful.readthedocs.org/ 
https://github.com/twilio/flask-restful/;
+SRC_URI="https://github.com/twilio/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples paging test"
+
+RDEPEND="
+   >=dev-python/aniso8601-0.82[${PYTHON_USEDEP}]
+   >=dev-python/flask-0.8[${PYTHON_USEDEP}]
+   >=dev-python/six-1.3.0[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   paging? ( >=dev-python/pycrypto-2.6[${PYTHON_USEDEP}] )
+"
+DEPEND="${RDEPEND}
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/pycrypto[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   nosetests -v || die "Tests fail with ${EPYTHON}"
+}
+
+python_compile_all() {
+   cd docs || die
+   emake man $(usex doc html "")
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+   use examples && dodoc -r examples
+   local DOCS=( AUTHORS.md CHANGES.md CONTRIBUTING.md README.md )
+
+   doman docs/_build/man/*
+   distutils-r1_python_install_all
+}



[gentoo-commits] dev/maksbotan:master commit in: /

2016-03-15 Thread Maxim Koltsov
commit: 0bd2e26362fd77b48e9463516c8497422a586e1b
Author: Maxim Koltsov  gentoo  org>
AuthorDate: Tue Mar 15 21:45:03 2016 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Tue Mar 15 21:45:03 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=0bd2e263

Merge GitHub pull request 9

See https://github.com/maksbotan/maksbotan_overlay/pull/9

 net-misc/yandex-music-download/Manifest | 2 --
 1 file changed, 2 deletions(-)



[gentoo-commits] dev/maksbotan:master commit in: net-misc/yandex-music-download/

2016-03-15 Thread Maxim Koltsov
commit: ad5710a337104a60b66bfb67271b1561cb5f93e6
Author: Pastafarianist  gmail  com>
AuthorDate: Tue Mar 15 12:29:06 2016 +
Commit: Maxim Koltsov  gentoo  org>
CommitDate: Tue Mar 15 12:29:06 2016 +
URL:https://gitweb.gentoo.org/dev/maksbotan.git/commit/?id=ad5710a3

Removed unneeded manifest

 net-misc/yandex-music-download/Manifest | 2 --
 1 file changed, 2 deletions(-)

diff --git a/net-misc/yandex-music-download/Manifest 
b/net-misc/yandex-music-download/Manifest
deleted file mode 100644
index fa23b2c..000
--- a/net-misc/yandex-music-download/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-EBUILD yandex-music-download-.ebuild 655 SHA256 
71fcea1f251e9e03e278ea8e7e31acc54e499bd31fba3fbdde6662055c42a295 SHA512 
6c80b86583b10a19883aca481fa9ceb4dc832277442d8955eadbcfcec6bf638c4d2c94196777dd12d6a17dc5a1fcc8744496ef002c4e7c5c2d01ed2f05f73a74
 WHIRLPOOL 
906e973f4fb9a2bea9b602d56e74047bb274aaf65316541925bccb7241fa984ac5359dc60501bcb4b56d1247095a6895e3fede789deed68c6a7b64d71691712a
-MISC metadata.xml 335 SHA256 
7c0c86f3efee95e0c2f8e8151ffe1d70a5cb657c80e5137780e9ad54c8db4061 SHA512 
916c2cdc1dc371d63becc0676fcf5d0a54b99987b5b2b567dbf4ee369aa4f78ba6bbb56837636a5ab9d2d0e8dadd991a12d4087430e1a82549dd6a12da7c0fde
 WHIRLPOOL 
159b6bb0985de9d001340f1fdefc608532af447979497390442bd111d32837c1e0ad1a45a31c154de3a900473a73e91ed7c403a726b118493c5f93a38eff7fb0



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

2016-03-15 Thread Sven Wegener
commit: 6bd89bfdab318e92d155efc3ab6c918600c84fae
Author: Sven Wegener  gentoo  org>
AuthorDate: Tue Mar 15 21:44:58 2016 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Tue Mar 15 21:45:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bd89bfd

net-irc/irssi: Add test restriction, bug #577404

Package-Manager: portage-2.2.26

 net-irc/irssi/irssi-0.8.18.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-irc/irssi/irssi-0.8.18.ebuild 
b/net-irc/irssi/irssi-0.8.18.ebuild
index 4dcc85d..739285a 100644
--- a/net-irc/irssi/irssi-0.8.18.ebuild
+++ b/net-irc/irssi/irssi-0.8.18.ebuild
@@ -36,6 +36,8 @@ RDEPEND="
selinux? ( sec-policy/selinux-irc )
perl? ( !net-im/silc-client )"
 
+RESTRICT="test"
+
 S=${WORKDIR}/${MY_P}
 
 src_prepare() {



[gentoo-commits] repo/gentoo:master commit in: net-wireless/wpa_supplicant/

2016-03-15 Thread Bjarke Istrup Pedersen
commit: ae7bb151a770cddcaf2ce6b03a61e85d6d442ed7
Author: Bjarke Istrup Pedersen  gentoo  org>
AuthorDate: Tue Mar 15 21:13:12 2016 +
Commit: Bjarke Istrup Pedersen  gentoo  org>
CommitDate: Tue Mar 15 21:13:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae7bb151

Removing old version, since archs has starting stabilizing the wrong version.

Package-Manager: portage-2.2.28

 .../wpa_supplicant/wpa_supplicant-2.4-r4.ebuild| 387 -
 1 file changed, 387 deletions(-)

diff --git a/net-wireless/wpa_supplicant/wpa_supplicant-2.4-r4.ebuild 
b/net-wireless/wpa_supplicant/wpa_supplicant-2.4-r4.ebuild
deleted file mode 100644
index 2837c7d..000
--- a/net-wireless/wpa_supplicant/wpa_supplicant-2.4-r4.ebuild
+++ /dev/null
@@ -1,387 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils toolchain-funcs qt4-r2 systemd multilib
-
-DESCRIPTION="IEEE 802.1X/WPA supplicant for secure wireless transfers"
-HOMEPAGE="http://hostap.epitest.fi/wpa_supplicant/;
-SRC_URI="http://hostap.epitest.fi/releases/${P}.tar.gz;
-LICENSE="|| ( GPL-2 BSD )"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~x86-fbsd"
-IUSE="ap dbus gnutls eap-sim fasteap +hs2-0 p2p ps3 qt4 readline selinux 
smartcard ssl tdls uncommon-eap-types wimax wps kernel_linux kernel_FreeBSD"
-REQUIRED_USE="fasteap? ( !gnutls !ssl ) smartcard? ( ssl )"
-
-CDEPEND="dbus? ( sys-apps/dbus )
-   kernel_linux? (
-   eap-sim? ( sys-apps/pcsc-lite )
-   dev-libs/libnl:3
-   net-wireless/crda
-   )
-   !kernel_linux? ( net-libs/libpcap )
-   qt4? (
-   dev-qt/qtcore:4
-   dev-qt/qtgui:4
-   dev-qt/qtsvg:4
-   )
-   readline? (
-   sys-libs/ncurses
-   sys-libs/readline:0
-   )
-   ssl? ( dev-libs/openssl:0 )
-   !ssl? ( gnutls? ( net-libs/gnutls ) )
-   !ssl? ( !gnutls? ( dev-libs/libtommath ) )
-"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-   selinux? ( sec-policy/selinux-networkmanager )
-"
-
-S="${WORKDIR}/${P}/${PN}"
-
-Kconfig_style_config() {
-   #param 1 is CONFIG_* item
-   #param 2 is what to set it = to, defaulting in y
-   CONFIG_PARAM="${CONFIG_HEADER:-CONFIG_}$1"
-   setting="${2:-y}"
-
-   if [ ! $setting = n ]; then
-   #first remove any leading "# " if $2 is not n
-   sed -i "/^# *$CONFIG_PARAM=/s/^# *//" .config || echo 
"Kconfig_style_config error uncommenting $CONFIG_PARAM"
-   #set item = $setting (defaulting to y)
-   sed -i "/^$CONFIG_PARAM/s/=.*/=$setting/" .config || 
echo "Kconfig_style_config error setting $CONFIG_PARAM=$setting"
-   else
-   #ensure item commented out
-   sed -i "/^$CONFIG_PARAM/s/$CONFIG_PARAM/# 
$CONFIG_PARAM/" .config || echo "Kconfig_style_config error commenting 
$CONFIG_PARAM"
-   fi
-}
-
-pkg_setup() {
-   if use gnutls && use ssl ; then
-   elog "You have both 'gnutls' and 'ssl' USE flags enabled: 
defaulting to USE=\"ssl\""
-   fi
-}
-
-src_prepare() {
-   # net/bpf.h needed for net-libs/libpcap on Gentoo/FreeBSD
-   sed -i \
-   -e "s:\(#include \):#include \n\1:" \
-   ../src/l2_packet/l2_packet_freebsd.c || die
-
-   # People seem to take the example configuration file too literally (bug 
#102361)
-   sed -i \
-   -e "s:^\(opensc_engine_path\):#\1:" \
-   -e "s:^\(pkcs11_engine_path\):#\1:" \
-   -e "s:^\(pkcs11_module_path\):#\1:" \
-   wpa_supplicant.conf || die
-
-   # Change configuration to match Gentoo locations (bug #143750)
-   sed -i \
-   -e "s:/usr/lib/opensc:/usr/$(get_libdir):" \
-   -e "s:/usr/lib/pkcs11:/usr/$(get_libdir):" \
-   wpa_supplicant.conf || die
-
-   if use dbus; then
-   epatch "${FILESDIR}/${P}-dbus-path-fix.patch"
-   fi
-
-   # systemd entries to D-Bus service files (bug #372877)
-   echo 'SystemdService=wpa_supplicant.service' \
-   | tee -a dbus/*.service >/dev/null || die
-
-   cd "${WORKDIR}/${P}"
-
-   if use wimax; then
-   # generate-libeap-peer.patch comes before
-   # fix-undefined-reference-to-random_get_bytes.patch
-   epatch "${FILESDIR}/${P}-generate-libeap-peer.patch"
-
-   # multilib-strict fix (bug #373685)
-   sed -e "s/\/usr\/lib/\/usr\/$(get_libdir)/" -i 
src/eap_peer/Makefile
-   fi
-
-   # bug (548742)
-   epatch 
"${FILESDIR}/2015-1/0001-P2P-Validate-SSID-element-length-before-copying-it-C.patch"
-   epatch 

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

2016-03-15 Thread Tobias Klausmann
commit: 768fddc7aa10f91b33e692509f08f14af4b134fc
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:54:03 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:54:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768fddc7

dev-db/postgresql-9.4.6-r0: add alpha keyword

Gentoo-Bug: 574456

Package-Manager: portage-2.2.28

 dev-db/postgresql/postgresql-9.4.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgresql/postgresql-9.4.6.ebuild 
b/dev-db/postgresql/postgresql-9.4.6.ebuild
index 8a77d20..27cf01a 100644
--- a/dev-db/postgresql/postgresql-9.4.6.ebuild
+++ b/dev-db/postgresql/postgresql-9.4.6.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python{2_7,3_4} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2016-03-15 Thread Tobias Klausmann
commit: 6fd88b48b27cc9c1c6cf591564bb366dd6997d05
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:52:59 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:52:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fd88b48

dev-db/postgresql-9.3.11-r0: add alpha keyword

Gentoo-Bug: 574456

Package-Manager: portage-2.2.28

 dev-db/postgresql/postgresql-9.3.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgresql/postgresql-9.3.11.ebuild 
b/dev-db/postgresql/postgresql-9.3.11.ebuild
index ef0898e..864bd86 100644
--- a/dev-db/postgresql/postgresql-9.3.11.ebuild
+++ b/dev-db/postgresql/postgresql-9.3.11.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python{2_7,3_4} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2016-03-15 Thread Tobias Klausmann
commit: a557447aa7c1c8dff18369a81b7d4a878ae0e67a
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:51:46 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:51:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a557447a

dev-libs/libgcrypt-1.5.4-r2: add alpha keyword

Gentoo-Bug: 574268

Package-Manager: portage-2.2.28

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

diff --git a/dev-libs/libgcrypt/libgcrypt-1.5.4-r2.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.5.4-r2.ebuild
index 14b6b6e..51789b0 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.5.4-r2.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.5.4-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1 MIT"
 SLOT="0/11" # 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 
~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 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 
 RDEPEND=">=dev-libs/libgpg-error-1.12[${MULTILIB_USEDEP}]



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

2016-03-15 Thread Tobias Klausmann
commit: d5c8edf59fad82766fb15c67ae59c19c47c50f75
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:52:03 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:52:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5c8edf5

dev-db/postgresql-9.2.15-r0: add alpha keyword

Gentoo-Bug: 574456

Package-Manager: portage-2.2.28

 dev-db/postgresql/postgresql-9.2.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgresql/postgresql-9.2.15.ebuild 
b/dev-db/postgresql/postgresql-9.2.15.ebuild
index 49e7f99..3d342e2 100644
--- a/dev-db/postgresql/postgresql-9.2.15.ebuild
+++ b/dev-db/postgresql/postgresql-9.2.15.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python{2_7,3_4} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2016-03-15 Thread Tobias Klausmann
commit: aa93b51e60add329e0958cc56f93d97b1e0e747c
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:49:02 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:49:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa93b51e

net-libs/libssh-0.7.3-r0: add alpha keyword

Gentoo-Bug: 575484

Package-Manager: portage-2.2.28

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

diff --git a/net-libs/libssh/libssh-0.7.3.ebuild 
b/net-libs/libssh/libssh-0.7.3.ebuild
index 0580997..1a4d301 100644
--- a/net-libs/libssh/libssh-0.7.3.ebuild
+++ b/net-libs/libssh/libssh-0.7.3.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.libssh.org/;
 SRC_URI="https://red.libssh.org/attachments/download/195/${MY_P}.tar.xz -> 
${P}.tar.xz"
 
 LICENSE="LGPL-2.1"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~ppc ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 SLOT="0/4" # subslot = soname major version
 IUSE="debug doc examples gcrypt gssapi libressl pcap +sftp ssh1 server 
static-libs test zlib"
 # Maintainer: check IUSE-defaults at DefineOptions.cmake



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

2016-03-15 Thread Tobias Klausmann
commit: d418e206c6548a92c0943d8d649c70747a62c288
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:47:59 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:47:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d418e206

dev-db/postgresql-9.1.20-r0: add alpha keyword

Gentoo-Bug: 574456

Package-Manager: portage-2.2.28

 dev-db/postgresql/postgresql-9.1.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgresql/postgresql-9.1.20.ebuild 
b/dev-db/postgresql/postgresql-9.1.20.ebuild
index b8227f2..46b91f4 100644
--- a/dev-db/postgresql/postgresql-9.1.20.ebuild
+++ b/dev-db/postgresql/postgresql-9.1.20.ebuild
@@ -13,7 +13,7 @@ PYTHON_COMPAT=( python{2_7,3_4} )
 inherit eutils flag-o-matic linux-info multilib pam prefix python-single-r1 \
systemd user versionator
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~ppc-macos ~x86-solaris"
 
 SLOT="$(get_version_component_range 1-2)"
 



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

2016-03-15 Thread Tobias Klausmann
commit: a4da4c8f8f697ff38c09d3e341b8c5a766edcedb
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:50:28 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:50:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4da4c8f

net-misc/openssh-7.2_p2-r0: add alpha keyword

Gentoo-Bug: 576954

Package-Manager: portage-2.2.28

 net-misc/openssh/openssh-7.2_p2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

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



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

2016-03-15 Thread Tobias Klausmann
commit: 0a425c35c157aeb9f341a2dfbcaad5c0e648ba60
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:48:50 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:48:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a425c35

net-libs/libssh2-1.7.0-r0: add alpha keyword

Gentoo-Bug: 575474

Package-Manager: portage-2.2.28

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

diff --git a/net-libs/libssh2/libssh2-1.7.0.ebuild 
b/net-libs/libssh2/libssh2-1.7.0.ebuild
index 83ca920..68120dd 100644
--- a/net-libs/libssh2/libssh2-1.7.0.ebuild
+++ b/net-libs/libssh2/libssh2-1.7.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.${PN}.org/download/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-solaris"
 IUSE="gcrypt libressl static-libs test zlib"
 
 DEPEND="



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

2016-03-15 Thread Tobias Klausmann
commit: 76511dc909f3285e25b81c43513c6c4837bec571
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:49:27 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:49:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76511dc9

dev-libs/openssl-1.0.2g-r2: add alpha keyword

Gentoo-Bug: 575548

Package-Manager: portage-2.2.28

 dev-libs/openssl/openssl-1.0.2g-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/openssl/openssl-1.0.2g-r2.ebuild 
b/dev-libs/openssl/openssl-1.0.2g-r2.ebuild
index 8da7927..44cf17f 100644
--- a/dev-libs/openssl/openssl-1.0.2g-r2.ebuild
+++ b/dev-libs/openssl/openssl-1.0.2g-r2.ebuild
@@ -15,7 +15,7 @@ LICENSE="openssl"
 # subslot set to 1.0.2g version as this is the first release without SSLv2
 # support and thus breaks nearly every openssl consumer (see bug #575548)
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~arm-linux ~x86-linux"
 IUSE="+asm bindist gmp kerberos rfc3779 sctp cpu_flags_x86_sse2 static-libs 
test +tls-heartbeat vanilla zlib"
 RESTRICT="!bindist? ( bindist )"
 



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

2016-03-15 Thread Tobias Klausmann
commit: 03676aed55cf2419d80664dc94a07a89638db0ba
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:47:28 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:47:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03676aed

media-gfx/graphite2-1.3.5-r0: add alpha keyword

Gentoo-Bug: 574276

Package-Manager: portage-2.2.28

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

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



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

2016-03-15 Thread Tobias Klausmann
commit: 8052502ad8a9f517177b6f4f55d4fac08dd9a3cb
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:48:14 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:48:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8052502a

www-client/firefox-38.6.1-r0: add alpha keyword

Gentoo-Bug: 574596

Package-Manager: portage-2.2.28

 www-client/firefox/firefox-38.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/firefox/firefox-38.6.1.ebuild 
b/www-client/firefox/firefox-38.6.1.ebuild
index a795236..f08aaaf 100644
--- a/www-client/firefox/firefox-38.6.1.ebuild
+++ b/www-client/firefox/firefox-38.6.1.ebuild
@@ -38,7 +38,7 @@ inherit check-reqs flag-o-matic toolchain-funcs eutils 
gnome2-utils mozconfig-v6
 DESCRIPTION="Firefox Web Browser"
 HOMEPAGE="http://www.mozilla.com/firefox;
 
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
 
 SLOT="0"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"



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

2016-03-15 Thread Tobias Klausmann
commit: f5846b3b340d14b36b8abbb78bf32f574467
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:47:06 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:47:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f584

dev-libs/libgcrypt-1.6.5-r0: add alpha keyword

Gentoo-Bug: 574268

Package-Manager: portage-2.2.28

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

diff --git a/dev-libs/libgcrypt/libgcrypt-1.6.5.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.6.5.ebuild
index bca4cad..772e5d5 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.6.5.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.6.5.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: net-misc/putty/

2016-03-15 Thread Tobias Klausmann
commit: 1309f983ddd3c74ef9c707e35c11a89dc9221dc1
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:49:50 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:49:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1309f983

net-misc/putty-0.67-r0: add alpha keyword

Gentoo-Bug: 576524

Package-Manager: portage-2.2.28

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

diff --git a/net-misc/putty/putty-0.67.ebuild b/net-misc/putty/putty-0.67.ebuild
index 2df26e4..1fd7ae7 100644
--- a/net-misc/putty/putty-0.67.ebuild
+++ b/net-misc/putty/putty-0.67.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="http://www.chiark.greenend.org.uk/~sgtatham/putty/;
 LICENSE="MIT"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 hppa ~ppc ppc64 ~sparc x86"
+KEYWORDS="alpha amd64 hppa ~ppc ppc64 ~sparc x86"
 IUSE="doc +gtk ipv6 kerberos"
 SRC_URI="
https://dev.gentoo.org/~jer/${PN}-icons.tar.bz2



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

2016-03-15 Thread Tobias Klausmann
commit: 80fd175be59c70da43780cbecea07f9aeccf13c8
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:48:27 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:48:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80fd175b

app-crypt/mit-krb5-1.14.1-r0: add alpha keyword

Gentoo-Bug: 574604

Package-Manager: portage-2.2.28

 app-crypt/mit-krb5/mit-krb5-1.14.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/mit-krb5/mit-krb5-1.14.1.ebuild 
b/app-crypt/mit-krb5/mit-krb5-1.14.1.ebuild
index 41856d0..23f795b 100644
--- a/app-crypt/mit-krb5/mit-krb5-1.14.1.ebuild
+++ b/app-crypt/mit-krb5/mit-krb5-1.14.1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://web.mit.edu/kerberos/dist/krb5/${P_DIR}/${MY_P}.tar.gz;
 
 LICENSE="openafs-krb5-a BSD MIT OPENLDAP BSD-2 HPND BSD-4 ISC RSA CC-BY-SA-3.0 
|| ( BSD-2 GPL-2+ )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86"
 IUSE="doc +keyutils libressl openldap +pkinit selinux +threads test xinetd"
 
 CDEPEND="



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

2016-03-15 Thread Tobias Klausmann
commit: 6cc9a376889eff84d91c66a94a99aa9d9b7872da
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:47:42 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:47:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cc9a376

dev-db/sqlite-3.11.1-r0: add alpha keyword

Gentoo-Bug: 574420

Package-Manager: portage-2.2.28

 dev-db/sqlite/sqlite-3.11.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/sqlite/sqlite-3.11.1.ebuild 
b/dev-db/sqlite/sqlite-3.11.1.ebuild
index f2c7058..c5b5a49 100644
--- a/dev-db/sqlite/sqlite-3.11.1.ebuild
+++ b/dev-db/sqlite/sqlite-3.11.1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="doc? ( 
https://sqlite.org/2016/${PN}-doc-${DOC_PV}.zip )
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~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 ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~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="debug doc icu +readline secure-delete static-libs tcl test tools"
 
 RDEPEND="icu? ( dev-libs/icu:0=[${MULTILIB_USEDEP}] )



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

2016-03-15 Thread Tobias Klausmann
commit: 2a61574fef220abb622048dd346eb6414661738b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:50:14 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:50:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a61574f

dev-libs/nss-3.22.2-r0: add alpha keyword

Gentoo-Bug: 576862

Package-Manager: portage-2.2.28

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

diff --git a/dev-libs/nss/nss-3.22.2.ebuild b/dev-libs/nss/nss-3.22.2.ebuild
index 8ae663a..611e0d9 100644
--- a/dev-libs/nss/nss-3.22.2.ebuild
+++ b/dev-libs/nss/nss-3.22.2.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/security/nss/releases/${RTM_NAME}/src/$
 
 LICENSE="|| ( MPL-2.0 GPL-2 LGPL-2.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cacert +nss-pem utils"
 CDEPEND=">=dev-db/sqlite-3.8.2[${MULTILIB_USEDEP}]
>=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: net-proxy/squid/

2016-03-15 Thread Tobias Klausmann
commit: 25ee2f7706b4260db1b12b3457a7f0e88653fc19
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:49:15 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:49:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25ee2f77

net-proxy/squid-3.5.15-r0: add alpha keyword

Gentoo-Bug: 575542

Package-Manager: portage-2.2.28

 net-proxy/squid/squid-3.5.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/squid/squid-3.5.15.ebuild 
b/net-proxy/squid/squid-3.5.15.ebuild
index 4afe1df..b53553e 100644
--- a/net-proxy/squid/squid-3.5.15.ebuild
+++ b/net-proxy/squid/squid-3.5.15.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://www.squid-cache.org/Versions/v3/3.5/${P}.tar.xz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="caps ipv6 pam ldap samba sasl kerberos nis radius ssl snmp selinux 
logrotate test \
ecap esi ssl-crtd \
mysql postgres sqlite \



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

2016-03-15 Thread Tobias Klausmann
commit: 721d69210488d6783a74bc888abecabe08a78297
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:48:39 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:48:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=721d6921

net-libs/nghttp2-1.7.1-r0: add alpha keyword

Gentoo-Bug: 574780

Package-Manager: portage-2.2.28

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

diff --git a/net-libs/nghttp2/nghttp2-1.7.1.ebuild 
b/net-libs/nghttp2/nghttp2-1.7.1.ebuild
index 75ebde5..f876fcb 100644
--- a/net-libs/nghttp2/nghttp2-1.7.1.ebuild
+++ b/net-libs/nghttp2/nghttp2-1.7.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
inherit git-2
 else

SRC_URI="https://github.com/tatsuhiro-t/nghttp2/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~s390 ~sh ~sparc x86"
+   KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 
~s390 ~sh ~sparc x86"
 fi
 
 DESCRIPTION="HTTP/2 C Library"



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

2016-03-15 Thread Tobias Klausmann
commit: 90fbc8e81f215c02cbb31213858f2d4823e4b63b
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:50:01 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:50:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90fbc8e8

dev-libs/nspr-4.12-r0: add alpha keyword

Gentoo-Bug: 576862

Package-Manager: portage-2.2.28

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

diff --git a/dev-libs/nspr/nspr-4.12.ebuild b/dev-libs/nspr/nspr-4.12.ebuild
index e82a074..9e1502b 100644
--- a/dev-libs/nspr/nspr-4.12.ebuild
+++ b/dev-libs/nspr/nspr-4.12.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://archive.mozilla.org/pub/nspr/releases/v${PV}/src/${P}.tar.gz;
 
 LICENSE="|| ( MPL-2.0 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 ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug"
 
 RDEPEND="



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

2016-03-15 Thread Tobias Klausmann
commit: b8c1f686218e1b9b5c0d7d4a7d8ac188f898710d
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Tue Mar 15 20:49:40 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Tue Mar 15 20:49:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8c1f686

net-analyzer/wireshark-2.0.2-r0: add alpha keyword

Gentoo-Bug: 575780

Package-Manager: portage-2.2.28

 net-analyzer/wireshark/wireshark-2.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/wireshark/wireshark-2.0.2.ebuild 
b/net-analyzer/wireshark/wireshark-2.0.2.ebuild
index c1d5b0d..64a9682 100644
--- a/net-analyzer/wireshark/wireshark-2.0.2.ebuild
+++ b/net-analyzer/wireshark/wireshark-2.0.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="${HOMEPAGE}download/src/all-versions/${P/_/}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0/${PV}"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
+KEYWORDS="alpha amd64 ~arm hppa ~ia64 ~ppc ppc64 ~sparc x86 ~x86-fbsd"
 IUSE="
adns androiddump +caps crypt doc doc-pdf geoip +gtk3 ipv6 kerberos lua
+netlink +pcap portaudio +qt4 qt5 selinux sbc smi tfshark



[gentoo-commits] proj/sci:master commit in: sci-biology/cutadapt/

2016-03-15 Thread Martin Mokrejs
commit: 6be3a6751679b0fbff675ab05b677d19664963a5
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Mar 15 20:38:21 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Mar 15 20:38:21 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6be3a675

sci-biology/cutadapt: version bump and remove old ones; update HOMEPAGE

Package-Manager: portage-2.2.26

 sci-biology/cutadapt/cutadapt-1.4.1.ebuild | 18 --
 sci-biology/cutadapt/cutadapt-1.5.ebuild   | 18 --
 .../{cutadapt-1.2.1.ebuild => cutadapt-1.9.1.ebuild}   |  2 +-
 sci-biology/cutadapt/cutadapt-.ebuild  |  2 +-
 4 files changed, 2 insertions(+), 38 deletions(-)

diff --git a/sci-biology/cutadapt/cutadapt-1.4.1.ebuild 
b/sci-biology/cutadapt/cutadapt-1.4.1.ebuild
deleted file mode 100644
index 46b6071..000
--- a/sci-biology/cutadapt/cutadapt-1.4.1.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Remove adapter sequences from high-throughput sequencing data"
-HOMEPAGE="https://code.google.com/p/cutadapt/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""

diff --git a/sci-biology/cutadapt/cutadapt-1.5.ebuild 
b/sci-biology/cutadapt/cutadapt-1.5.ebuild
deleted file mode 100644
index 46b6071..000
--- a/sci-biology/cutadapt/cutadapt-1.5.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Remove adapter sequences from high-throughput sequencing data"
-HOMEPAGE="https://code.google.com/p/cutadapt/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""

diff --git a/sci-biology/cutadapt/cutadapt-1.2.1.ebuild 
b/sci-biology/cutadapt/cutadapt-1.9.1.ebuild
similarity index 88%
rename from sci-biology/cutadapt/cutadapt-1.2.1.ebuild
rename to sci-biology/cutadapt/cutadapt-1.9.1.ebuild
index 46b6071..ee91f3c 100644
--- a/sci-biology/cutadapt/cutadapt-1.2.1.ebuild
+++ b/sci-biology/cutadapt/cutadapt-1.9.1.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit distutils-r1
 
 DESCRIPTION="Remove adapter sequences from high-throughput sequencing data"
-HOMEPAGE="https://code.google.com/p/cutadapt/;
+HOMEPAGE="https://github.com/marcelm/cutadapt;
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"

diff --git a/sci-biology/cutadapt/cutadapt-.ebuild 
b/sci-biology/cutadapt/cutadapt-.ebuild
index 46c2382..213ea85 100644
--- a/sci-biology/cutadapt/cutadapt-.ebuild
+++ b/sci-biology/cutadapt/cutadapt-.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python2_7 )
 inherit distutils-r1 git-r3
 
 DESCRIPTION="Remove adapter sequences from high-throughput sequencing data"
-HOMEPAGE="https://code.google.com/p/cutadapt/;
+HOMEPAGE="https://github.com/marcelm/cutadapt;
 EGIT_REPO_URI="https://github.com/marcelm/cutadapt;
 
 LICENSE="MIT"



[gentoo-commits] proj/kde:master commit in: media-sound/kwave/, media-sound/kwave/files/

2016-03-15 Thread Johannes Huber
commit: dabe8fc38b46fc8881c419e5403d037f1f70a980
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Mar 15 20:27:23 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Mar 15 20:27:23 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=dabe8fc3

media-sound/kwave: Moved to main tree

Package-Manager: portage-2.2.28

 media-sound/kwave/files/kwave-0.9.1-deps.patch| 36 -
 media-sound/kwave/files/kwave-0.9.1-qtmedia.patch | 25 --
 media-sound/kwave/kwave-0.9.1-r1.ebuild   | 92 ---
 3 files changed, 153 deletions(-)

diff --git a/media-sound/kwave/files/kwave-0.9.1-deps.patch 
b/media-sound/kwave/files/kwave-0.9.1-deps.patch
deleted file mode 100644
index 7898962..000
--- a/media-sound/kwave/files/kwave-0.9.1-deps.patch
+++ /dev/null
@@ -1,36 +0,0 @@
-commit e8d391eb7c3d2f4835705990d1ffaaa9084c31bb
-Author: Thomas Eschenbacher 
-Date:   Mon Feb 29 06:01:02 2016 +0100
-
-removed unneeded build and runtime dependencies
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index e669aff..eeaa6c4 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -211,13 +211,9 @@ FIND_PACKAGE(KF5 REQUIRED COMPONENTS
- Crash
- DBusAddons
- DocTools
--GuiAddons
- I18n
- IconThemes
--Init
- KIO
--Notifications
--Service
- TextWidgets
- XmlGui
- WidgetsAddons
-diff --git a/kwave/CMakeLists.txt b/kwave/CMakeLists.txt
-index 8b2f6a3..4c72325 100644
 a/kwave/CMakeLists.txt
-+++ b/kwave/CMakeLists.txt
-@@ -92,7 +92,6 @@ TARGET_LINK_LIBRARIES(kwave_core
- KF5::I18n
- KF5::IconThemes
- KF5::KIOFileWidgets
--KF5::Service
- KF5::XmlGui
- )
- 

diff --git a/media-sound/kwave/files/kwave-0.9.1-qtmedia.patch 
b/media-sound/kwave/files/kwave-0.9.1-qtmedia.patch
deleted file mode 100644
index 86948b4..000
--- a/media-sound/kwave/files/kwave-0.9.1-qtmedia.patch
+++ /dev/null
@@ -1,25 +0,0 @@
-commit 6fc0b2732f836e5511a5164dc3f78e79c2d3ee4d
-Author: Andreas Sturmlechner 
-Date:   Tue Mar 8 22:55:40 2016 +0100
-
-Make Qt Multimedia optional
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index eeaa6c4..c8f23f7 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -180,13 +180,13 @@ SET(CMAKE_AUTOMOC_RELAXED_MODE FALSE)
- FIND_PACKAGE(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
- Concurrent
- Core
--Multimedia
- Widgets
- )
- 
- # Qt Multimedia support
- OPTION(WITH_QT_AUDIO "enable playback via Qt Multimedia [default=on]" ON)
- IF (WITH_QT_AUDIO)
-+FIND_PACKAGE(Qt5Multimedia ${QT_MIN_VERSION} CONFIG REQUIRED)
- SET(HAVE_QT_AUDIO_SUPPORT on)
- ENDIF (WITH_QT_AUDIO)
- 

diff --git a/media-sound/kwave/kwave-0.9.1-r1.ebuild 
b/media-sound/kwave/kwave-0.9.1-r1.ebuild
deleted file mode 100644
index 51fbdb1..000
--- a/media-sound/kwave/kwave-0.9.1-r1.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-KDE_HANDBOOK="forceoptional"
-inherit kde5
-
-DESCRIPTION="A sound editor built on KDE Frameworks 5 that can edit many types 
of audio files"
-HOMEPAGE="http://kwave.sourceforge.net/;
-if [[ ${KDE_BUILD_TYPE} != live ]]; then
-   SRC_URI="mirror://sourceforge/${PN}/${P}-1.tar.bz2"
-fi
-
-LICENSE="
-   CC-BY-SA-3.0 CC0-1.0 GPL-2+ LGPL-2+
-   handbook? ( FDL-1.2 )
-   opus? ( BSD-2 )
-"
-KEYWORDS="~amd64 ~x86"
-IUSE="alsa flac mp3 +qtmedia opus oss pulseaudio vorbis"
-
-COMMON_DEPEND="
-   $(add_frameworks_dep kcompletion)
-   $(add_frameworks_dep kconfig)
-   $(add_frameworks_dep kconfigwidgets)
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep kcrash)
-   $(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep ktextwidgets)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_frameworks_dep kxmlgui)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   media-libs/audiofile:=
-   >=sci-libs/fftw-3
-   media-libs/libsamplerate
-   alsa? ( media-libs/alsa-lib )
-   flac? ( media-libs/flac )
-   mp3? (
-   media-libs/id3lib
-   media-libs/libmad
-   || ( media-sound/lame media-sound/toolame media-sound/twolame )
-   )
-   qtmedia? ( $(add_qt_dep qtmultimedia) )
-   opus? (
-   media-libs/libogg
-   media-libs/opus
-   )
-   pulseaudio? ( media-sound/pulseaudio )
-   vorbis? (
-   media-libs/libogg
-   media-libs/libvorbis
-   )
-"
-DEPEND="${COMMON_DEPEND}
-   $(add_kdeapps_dep poxml)
-   $(add_qt_dep qtconcurrent)
-   || ( media-gfx/imagemagick[png,svg] 
media-gfx/graphicsmagick[imagemagick,png,svg] )
-   sys-devel/gettext
-"

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

2016-03-15 Thread Johannes Huber
commit: a60f89f33356a74de5f7405d42b7d43d96daac2e
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Mar 15 20:26:13 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Mar 15 20:27:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a60f89f3

media-sound/kwave: Version bump 0.9.1

Import from kde overlay. Thanks to Andreas Sturmlechner
 gmail.com>.

Gentoo-bug: 575808
Reported-by: Thomas  gmx.de>

Package-Manager: portage-2.2.28

 media-sound/kwave/Manifest|  1 +
 media-sound/kwave/files/kwave-0.9.1-deps.patch| 36 +
 media-sound/kwave/files/kwave-0.9.1-qtmedia.patch | 25 ++
 media-sound/kwave/kwave-0.9.1-r1.ebuild   | 92 +++
 media-sound/kwave/metadata.xml|  1 +
 5 files changed, 155 insertions(+)

diff --git a/media-sound/kwave/Manifest b/media-sound/kwave/Manifest
index b03f6f5..483826b 100644
--- a/media-sound/kwave/Manifest
+++ b/media-sound/kwave/Manifest
@@ -1,3 +1,4 @@
 DIST kwave-0.8.10-1.tar.bz2 2955781 SHA256 
82f6cd2b256fbeb94fadd0b7920671e69a4ba2649b9bcb2bdaab8dc834b757bc SHA512 
c6421b9ccb03e198cffd745e7f77553014f9148930dfc09e59a5ff02ba5c36cd17ad2835f76033b3edd517f006bd164fd1def6fa0f7189177c62012acbfc380a
 WHIRLPOOL 
f325a160887c33589faf0316adc34740096f67de288d56506c57da74357379ab8866d3b5ee0d31537fbc6ac250f67612f18f6b2d5ea8ec4c28d73c3da5251566
 DIST kwave-0.8.12-1.tar.bz2 3692668 SHA256 
88c1fb9fd55b6a7fe230d3257268f8c91d5b6ddd6106b4a1d791bb671e6d4b0b SHA512 
1ee182054b2e35aa6e40c8c8a51589eda615a019578f41b001d470bdc1809970e5bd78772c4c87c5a482dbe72e08b5ae5992457e9aa83fbb92225408e9f3f10d
 WHIRLPOOL 
0934e743372a00b92a9fd3ec697d68ea267b41bf491dedbc72a139ed42da7b7db0bd4cfad9355b9498a06865b672cd87b2d8c94959fd45a45a7cf509a0889b2a
 DIST kwave-0.8.99-2.tar.bz2 4111307 SHA256 
94ad5d5d526714c5c496cf2f83d4e1aa34081997f574b465cd1972e5cba377f2 SHA512 
390c08a2b8e540deb15d59a97dd210c6ce051cb2faa2002f60fb9ba03460978c633050688c16ed6e12442c40eef57710aa4ac7268964a045e35a2ac5c637cbdc
 WHIRLPOOL 
66ade430c4f29934fd41576368fa8ff685c3cae5ebf14a006496641373efdb05aa1b6327522e76b04ba95b847f8bad97390830d13afe72c77b9e6e5ec41f2f5c
+DIST kwave-0.9.1-1.tar.bz2 3378570 SHA256 
5698bc0c3970b50ad47de6c8f9f2fae3921b7403eec341d7117fa732a9f2fc1f SHA512 
3da2065cd81434f3ab78d96c65e7efadbd02e7fa96da13a24847d4172043c68115cd80f9a6e7babf5929a921300774d1650476405a0108cd543f5533a9192204
 WHIRLPOOL 
78aa6e5a270eae137698b8df88bec1cf09eee02d6cbd345db83eb2cd5193ad10ede315ff0455efb89d4eac54343d594c951f795863c5c6bba9adc3e153ff5a28

diff --git a/media-sound/kwave/files/kwave-0.9.1-deps.patch 
b/media-sound/kwave/files/kwave-0.9.1-deps.patch
new file mode 100644
index 000..7898962
--- /dev/null
+++ b/media-sound/kwave/files/kwave-0.9.1-deps.patch
@@ -0,0 +1,36 @@
+commit e8d391eb7c3d2f4835705990d1ffaaa9084c31bb
+Author: Thomas Eschenbacher 
+Date:   Mon Feb 29 06:01:02 2016 +0100
+
+removed unneeded build and runtime dependencies
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index e669aff..eeaa6c4 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -211,13 +211,9 @@ FIND_PACKAGE(KF5 REQUIRED COMPONENTS
+ Crash
+ DBusAddons
+ DocTools
+-GuiAddons
+ I18n
+ IconThemes
+-Init
+ KIO
+-Notifications
+-Service
+ TextWidgets
+ XmlGui
+ WidgetsAddons
+diff --git a/kwave/CMakeLists.txt b/kwave/CMakeLists.txt
+index 8b2f6a3..4c72325 100644
+--- a/kwave/CMakeLists.txt
 b/kwave/CMakeLists.txt
+@@ -92,7 +92,6 @@ TARGET_LINK_LIBRARIES(kwave_core
+ KF5::I18n
+ KF5::IconThemes
+ KF5::KIOFileWidgets
+-KF5::Service
+ KF5::XmlGui
+ )
+ 

diff --git a/media-sound/kwave/files/kwave-0.9.1-qtmedia.patch 
b/media-sound/kwave/files/kwave-0.9.1-qtmedia.patch
new file mode 100644
index 000..86948b4
--- /dev/null
+++ b/media-sound/kwave/files/kwave-0.9.1-qtmedia.patch
@@ -0,0 +1,25 @@
+commit 6fc0b2732f836e5511a5164dc3f78e79c2d3ee4d
+Author: Andreas Sturmlechner 
+Date:   Tue Mar 8 22:55:40 2016 +0100
+
+Make Qt Multimedia optional
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index eeaa6c4..c8f23f7 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -180,13 +180,13 @@ SET(CMAKE_AUTOMOC_RELAXED_MODE FALSE)
+ FIND_PACKAGE(Qt5 ${QT_MIN_VERSION} CONFIG REQUIRED COMPONENTS
+ Concurrent
+ Core
+-Multimedia
+ Widgets
+ )
+ 
+ # Qt Multimedia support
+ OPTION(WITH_QT_AUDIO "enable playback via Qt Multimedia [default=on]" ON)
+ IF (WITH_QT_AUDIO)
++FIND_PACKAGE(Qt5Multimedia ${QT_MIN_VERSION} CONFIG REQUIRED)
+ SET(HAVE_QT_AUDIO_SUPPORT on)
+ ENDIF (WITH_QT_AUDIO)
+ 

diff --git a/media-sound/kwave/kwave-0.9.1-r1.ebuild 
b/media-sound/kwave/kwave-0.9.1-r1.ebuild
new file mode 100644
index 000..51fbdb1
--- /dev/null
+++ b/media-sound/kwave/kwave-0.9.1-r1.ebuild
@@ -0,0 +1,92 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of 

[gentoo-commits] proj/kde:master commit in: media-sound/kwave/

2016-03-15 Thread Johannes Huber
commit: 8fbd95f25c6ba9f6469bcedb7cb7ddb283d4f683
Author: Johannes Huber  gentoo  org>
AuthorDate: Tue Mar 15 19:59:48 2016 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Tue Mar 15 19:59:48 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8fbd95f2

media-sound/kwave: Sort use flag metadata

Package-Manager: portage-2.2.28

 media-sound/kwave/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/kwave/metadata.xml b/media-sound/kwave/metadata.xml
index 553c3aa..1cb1a3f 100644
--- a/media-sound/kwave/metadata.xml
+++ b/media-sound/kwave/metadata.xml
@@ -7,8 +7,8 @@

With Kwave you can edit many sorts of wav-files 
including multi-channel files. You are able to alter and play back each channel 
on its own. Kwave also includes many plugins (most are still under development) 
to transform the wave-file in several ways and presents a graphical view with a 
complete zoom- and scroll capability.

-   Enable playback via Qt5Multimedia
Enable Opus audio codec support
+   Enable playback via Qt5Multimedia


kwave



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

2016-03-15 Thread Denis Dupeyron
commit: ca161a07ae9f4f5d49a908c9cbd5d9f12794b15e
Author: Denis Dupeyron  gentoo  org>
AuthorDate: Tue Mar 15 19:58:30 2016 +
Commit: Denis Dupeyron  gentoo  org>
CommitDate: Tue Mar 15 19:58:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca161a07

dev-lang/R: bump to 3.2.4

 dev-lang/R/Manifest   |   1 +
 dev-lang/R/R-3.2.4.ebuild | 206 ++
 2 files changed, 207 insertions(+)

diff --git a/dev-lang/R/Manifest b/dev-lang/R/Manifest
index 95f848f..47cf3ef 100644
--- a/dev-lang/R/Manifest
+++ b/dev-lang/R/Manifest
@@ -1,3 +1,4 @@
 DIST R-20130129.bash_completion.bz2 4209 SHA256 
487e969b94563fec98ec58de7e6142e9361d4219088add0fca282b482a9e01b1 SHA512 
910b26e16cfebe677f438abfa5f2652e582db143d91dbf0e7d4b1ea33462c7e5c89c3a3619c63ae98bba26b11a5adb16eda9d344f8cdbe4f0feabc546993c1a5
 WHIRLPOOL 
2368efaed37fcb6e010f6a234864631f68549bd8e3f733561170cc5b28f5557e546d8561246fb265a481a47991a262fec3acf6abc1dc3929a9357405e0d3c6fc
 DIST R-3.2.2.tar.gz 29772864 SHA256 
9c9152e74134b68b0f3a1c7083764adc1cb56fd8336bec003fd0ca550cd2461d SHA512 
71ba470875262b9f00fb6970f209788df4dad30e0a28373b824b60d8bc6401afb7786e65387663c6490c7ddcd2bfd7f808a270a3e63238f3d7565d5f93607138
 WHIRLPOOL 
fea59929ada1d67dafc6ad89409d18ad173af7990384033f490a00e0f794d9919aecf7cd37089d105fe03b9cf64d079e5d148622571cec3eb924c1c5bd00081e
 DIST R-3.2.3.tar.gz 29816176 SHA256 
b93b7d878138279234160f007cb9b7f81b8a72c012a15566e9ec5395cfd9b6c1 SHA512 
9d7294af860204f4d84e25eb503111c9607beedbc42f01de073c915945a6342c3e24e25a9cc038a2e58442036bee931975d93dc327081ed02afe5ffa365170ea
 WHIRLPOOL 
31ecbaa5c4340e02551eefe17f7f2e9ae075778e7b568a2c477b9f31f1b9598380edb8cb53c713df6643d2cba62ea97c6f225490ade2fc8a9e2b4d88426c7883
+DIST R-3.2.4.tar.gz 29879523 SHA256 
bafd405fe9c2fe3bbe47a8a7730ad120f03b7df9fb0f61674fca19cf061dd350 SHA512 
a74f01a9b47437feb81520c10936a6f2bc7700900730ec87b7f1442ee90bcf1d7aac9ef3345aa046c0566f1920f114da0a616c5f355b1e8480dc01e311476cbf
 WHIRLPOOL 
0277c372baaf6c50c403c03b8fef04e80e8690efad875c26a03283a4f4d32e53610091695922a57a2f8bee4ac1a568b36f1fbf929bf61d11298b81907a3aaac6

diff --git a/dev-lang/R/R-3.2.4.ebuild b/dev-lang/R/R-3.2.4.ebuild
new file mode 100644
index 000..c8227c9
--- /dev/null
+++ b/dev-lang/R/R-3.2.4.ebuild
@@ -0,0 +1,206 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit bash-completion-r1 autotools eutils flag-o-matic fortran-2 multilib 
versionator toolchain-funcs
+
+BCP=${PN}-20130129.bash_completion
+DESCRIPTION="Language and environment for statistical computing and graphics"
+HOMEPAGE="http://www.r-project.org/;
+SRC_URI="
+   mirror://cran/src/base/R-3/${P}.tar.gz
+   https://dev.gentoo.org/~bicatali/distfiles/${BCP}.bz2;
+
+LICENSE="|| ( GPL-2 GPL-3 ) LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd ~amd64-linux 
~x86-linux ~x64-macos"
+IUSE="cairo doc icu java jpeg lapack minimal nls openmp perl png prefix 
profile readline static-libs tiff tk X"
+REQUIRED_USE="png? ( || ( cairo X ) ) jpeg? ( || ( cairo X ) ) tiff? ( || ( 
cairo X ) )"
+
+CDEPEND="
+   app-arch/bzip2:0=
+   app-arch/xz-utils:0=
+   app-text/ghostscript-gpl
+   >=dev-libs/libpcre-8.35:3=
+   virtual/blas:0
+   || ( >=sys-apps/coreutils-8.15 sys-freebsd/freebsd-bin 
app-misc/realpath )
+   cairo? ( x11-libs/cairo:0=[X] x11-libs/pango:0= )
+   icu? ( dev-libs/icu:= )
+   jpeg? ( virtual/jpeg:0 )
+   lapack? ( virtual/lapack:0 )
+   perl? ( dev-lang/perl )
+   png? ( media-libs/libpng:0= )
+   readline? ( sys-libs/readline:0= )
+   tiff? ( media-libs/tiff:0= )
+   tk? ( dev-lang/tk:0= )
+   X? ( x11-libs/libXmu:0= x11-misc/xdg-utils )"
+
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+   doc? (
+   virtual/latex-base
+   dev-texlive/texlive-fontsrecommended
+   )"
+
+RDEPEND="${CDEPEND}
+   >=sys-libs/zlib-1.2.5.1-r2:0[minizip]
+   java? ( >=virtual/jre-1.5 )"
+
+RESTRICT="minimal? ( test )"
+
+R_DIR="${EROOT%/}/usr/$(get_libdir)/${PN}"
+
+pkg_setup() {
+   if use openmp; then
+   if [[ $(tc-getCC) == *gcc ]] && ! tc-has-openmp; then
+   ewarn "OpenMP is not available in your current selected 
gcc"
+   die "need openmp capable gcc"
+   fi
+   FORTRAN_NEED_OPENMP=1
+   fi
+   fortran-2_pkg_setup
+   filter-ldflags -Wl,-Bdirect -Bdirect
+   # avoid using existing R installation
+   unset R_HOME
+   # Temporary fix for bug #419761
+   if [[ ($(tc-getCC) == *gcc) && ($(gcc-version) == 4.7) ]]; then
+   append-flags -fno-ipa-cp-clone
+   fi
+}
+
+src_prepare() {
+   epatch \
+   "${FILESDIR}"/${PN}-2.11.1-parallel.patch \
+   "${FILESDIR}"/${PN}-2.13.1-zlib_header_fix.patch \
+   

[gentoo-commits] repo/gentoo:master commit in: sys-cluster/galera/

2016-03-15 Thread Brian Evans
commit: 02c9644d06064a4c7b762a180237dcdfb047e0da
Author: Brian Evans  gentoo  org>
AuthorDate: Tue Mar 15 19:54:15 2016 +
Commit: Brian Evans  gentoo  org>
CommitDate: Tue Mar 15 19:54:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c9644d

sys-cluster/galera: Version bump to 25.3.14

Bump to EAPI 6
Force SSL as the build is broken without it

Package-Manager: portage-2.2.28

 sys-cluster/galera/Manifest  |  1 +
 sys-cluster/galera/galera-25.3.14.ebuild | 87 
 2 files changed, 88 insertions(+)

diff --git a/sys-cluster/galera/Manifest b/sys-cluster/galera/Manifest
index f4776ed..3fee0c4 100644
--- a/sys-cluster/galera/Manifest
+++ b/sys-cluster/galera/Manifest
@@ -1,3 +1,4 @@
 DIST galera-3-25.3.10.tar.gz 2990393 SHA256 
5281cef0c26e409f93184a08fe3668bc0891aeec9710ffebc66402091d005d1d SHA512 
d2fc09a9d274199650e29c7492a736a6518655458b6cad9ba960282928ec2d0f8187d35ee439c93a57ecb0f1b6a66b83474128f71ad67724cc784a887fc2172d
 WHIRLPOOL 
294feec18418f69d7f1f1d416fc9893e403555d525851e3a4c1996bd9f0bf5689588ae930f77ad8c691a0c7c30d11c62f4928519a7b3722e9976ec5ee57931e5
 DIST galera-3-25.3.12.tar.gz 2989294 SHA256 
2941cece3aa12d34bd454de8c3d2c4796a47dcfaef643e97d1b94462aa32e126 SHA512 
6c18327d786a0c549b89a8668c302e3221d1f7586b271e927ca511ac9e8ee4413315641f6a43814b49e9231cdcd4c76dcd8e975098f768ea8d9f4638b1391e62
 WHIRLPOOL 
b0067ade420c49d374baf901472841ff21ccbd73c1ef7eb7b48f7e591954f875fc5993664c54daa1e400e37cc0647f1a39515129e2d6789035de3dba0edb6d7e
 DIST galera-3-25.3.13.tar.gz 2989201 SHA256 
193db0c1ccf1c3cfbd46b23d26441fe022ffe82788ed467c6b2df02abc4b814d SHA512 
6c83dca5f6087cfbbc6aa30ac4b3f47ce08e7d958875f5c07c260ec8e9677c0e3d9e1ebb347615e0842e85f952c8b7713ee02f6148c9049ae336b29c28dc2ade
 WHIRLPOOL 
f6fcda502c3145d0430496a4de9e2368e102769a254d905fb9594b082e9bc386ab6a40edc00e084a3dfa04f800368e45d449f94a634343a8d4f61725c849f23b
+DIST galera-3-25.3.14.tar.gz 2990021 SHA256 
b090b818f27dbcf5318c0975dc888a10847931b97e94d9bd69b3cd35848e0716 SHA512 
98400d1a153cca41389a2f4cd6918c4a042f14b473a006e1bfacde19068dc8a253a2ba743c666b1762033c97e9aa352eff4804c0d20387daf284240bd2ae020b
 WHIRLPOOL 
4e67b5d746f9a374f168c5706a8599bc6d299e9fd4072adfc13b1f4c470ab79ec1c312d6f856002c400b53941f438631799dd9feea6b7d5cf5445b799b41dfef

diff --git a/sys-cluster/galera/galera-25.3.14.ebuild 
b/sys-cluster/galera/galera-25.3.14.ebuild
new file mode 100644
index 000..1adeac3
--- /dev/null
+++ b/sys-cluster/galera/galera-25.3.14.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+MY_P="${PN}-3-${PV}"
+
+inherit scons-utils toolchain-funcs user flag-o-matic
+DESCRIPTION="Synchronous multi-master replication engine that provides the 
wsrep API"
+HOMEPAGE="http://www.galeracluster.com;
+SRC_URI="http://releases.galeracluster.com/source/galera-3-${PV}.tar.gz;
+LICENSE="GPL-2 BSD"
+
+SLOT="0"
+
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+IUSE="cpu_flags_x86_sse4_2 garbd test"
+
+CDEPEND="
+   dev-libs/openssl:0=
+   >=dev-libs/boost-1.41:0=
+   "
+DEPEND="${DEPEND}
+   ${CDEPEND}
+   dev-libs/check
+   >=sys-devel/gcc-4.4
+   >=dev-cpp/asio-1.10.1[ssl]
+   "
+#Run time only
+RDEPEND="${CDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+# Respect {C,LD}FLAGS.
+PATCHES=( "${FILESDIR}/galera-3.13-strip-extra-cflags.patch" )
+
+pkg_preinst() {
+   if use garbd ; then
+   enewgroup garbd
+   enewuser garbd -1 -1 -1 garbd
+   fi
+}
+
+src_prepare() {
+   default
+
+   # Remove bundled dev-cpp/asio
+   rm -r "${S}/asio" || die
+
+   #Remove optional garbd daemon
+   if ! use garbd ; then
+   rm -r "${S}/garb" || die
+   fi
+}
+
+src_configure() {
+   tc-export CC CXX
+   # Uses hardware specific code that seems to depend on SSE4.2
+   if use cpu_flags_x86_sse4_2 ; then
+   append-cflags -msse4.2
+   else
+   append-cflags -DCRC32C_NO_HARDWARE
+   fi
+   # strict_build_flags=0 disables -Werror, -pedantic, -Weffc++,
+   # and -Wold-style-cast
+   MYSCONS=(
+   ssl=1
+   tests=$(usex test 1 0)
+   strict_build_flags=0
+   )
+}
+
+src_compile() {
+   escons --warn=no-missing-sconscript "${MYSCONS[@]}"
+}
+
+src_install() {
+   dodoc scripts/packages/README scripts/packages/README-MySQL
+   if use garbd ; then
+   dobin garb/garbd
+   newconfd "${FILESDIR}/garb.cnf" garbd
+   newinitd "${FILESDIR}/garb.sh" garbd
+   doman man/garbd.8
+   fi
+   exeinto /usr/$(get_libdir)/${PN}
+   doexe libgalera_smm.so
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/picojson/

2016-03-15 Thread Alexis Ballier
commit: fce26209082b1fd8f929892d804d439d07496d22
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Mar 15 19:24:31 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Mar 15 19:24:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce26209

dev-cpp/picojson: initial import; ebuild by me

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-cpp/picojson/Manifest  |  1 +
 dev-cpp/picojson/metadata.xml  |  8 
 dev-cpp/picojson/picojson-1.3.0.ebuild | 33 +
 3 files changed, 42 insertions(+)

diff --git a/dev-cpp/picojson/Manifest b/dev-cpp/picojson/Manifest
new file mode 100644
index 000..287843a
--- /dev/null
+++ b/dev-cpp/picojson/Manifest
@@ -0,0 +1 @@
+DIST picojson-1.3.0.tar.gz 14695 SHA256 
056805ca2691798f5545935a14bb477f2e1d827c9fb862e6e449dbea22801c7d SHA512 
76d5a6b3b9e1151198eee707faffcbbba28a2842daccf03d99a5d02ae017f9517ef3ac9da4acc74a4fc1357feaf19e14a15c34698a1d4cb65acb6d23b566b284
 WHIRLPOOL 
6712331107e5900c68db49f0eab9c18333717ea7e2fe407c684b8c0bb88616665664b995107772056179d4254fb3dde510858f623c76b8b9c3b9bd768043c19c

diff --git a/dev-cpp/picojson/metadata.xml b/dev-cpp/picojson/metadata.xml
new file mode 100644
index 000..d8d5cc7
--- /dev/null
+++ b/dev-cpp/picojson/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   aball...@gentoo.org
+   Alexis Ballier
+   
+

diff --git a/dev-cpp/picojson/picojson-1.3.0.ebuild 
b/dev-cpp/picojson/picojson-1.3.0.ebuild
new file mode 100644
index 000..ecd4abe
--- /dev/null
+++ b/dev-cpp/picojson/picojson-1.3.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit toolchain-funcs
+
+DESCRIPTION="Header-file-only, JSON parser serializer in C++"
+HOMEPAGE="https://github.com/kazuho/picojson;
+SRC_URI="https://github.com/kazuho/picojson/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_compile() {
+   :
+}
+
+src_test() {
+   tc-export CXX
+   emake test
+}
+
+src_install() {
+   emake DESTDIR="${D}" prefix="${EPREFIX}/usr" install
+   dodoc README.mkdn Changes
+}



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

2016-03-15 Thread Alexis Ballier
commit: b541b36bb6dd169f0cf0e727b6e1e4b5fd5bf1d0
Author: Alexis Ballier  gentoo  org>
AuthorDate: Tue Mar 15 19:03:45 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Tue Mar 15 19:04:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b541b36b

dev-libs/zookeeper-c: initial import; ebuild by me

Package-Manager: portage-2.2.28
Signed-off-by: Alexis Ballier  gentoo.org>

 dev-libs/zookeeper-c/Manifest |  1 +
 dev-libs/zookeeper-c/metadata.xml |  8 ++
 dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild | 37 +++
 3 files changed, 46 insertions(+)

diff --git a/dev-libs/zookeeper-c/Manifest b/dev-libs/zookeeper-c/Manifest
new file mode 100644
index 000..c999003
--- /dev/null
+++ b/dev-libs/zookeeper-c/Manifest
@@ -0,0 +1 @@
+DIST zookeeper-3.4.8.tar.gz 22261552 SHA256 
f10a0b51f45c4f64c1fe69ef713abf9eb9571bc7385a82da892e83bb6c965e90 SHA512 
a5f0eca3c66655e0116aeddd92af228402d3d68350b30f9400b3638ef09610d903b7c87a2bb49a5594b12a4d082048c259ba3da121c1c6da4752dd5f5812bfec
 WHIRLPOOL 
f4e16b4a771f3a5f57f3ab1b0554d4ac811146414c37037115a3a9c6477a43f8c8c8200eff82358164f7a3af449c570d99005516c13cbc9a9d718b649849b82c

diff --git a/dev-libs/zookeeper-c/metadata.xml 
b/dev-libs/zookeeper-c/metadata.xml
new file mode 100644
index 000..d8d5cc7
--- /dev/null
+++ b/dev-libs/zookeeper-c/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   aball...@gentoo.org
+   Alexis Ballier
+   
+

diff --git a/dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild 
b/dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild
new file mode 100644
index 000..c101141
--- /dev/null
+++ b/dev-libs/zookeeper-c/zookeeper-c-3.4.8.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="C client interface to Zookeeper server"
+HOMEPAGE="https://zookeeper.apache.org/;
+SRC_URI="mirror://apache/zookeeper/zookeeper-${PV}/zookeeper-${PV}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc static-libs test"
+
+RDEPEND=""
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen )
+   test? ( dev-util/cppunit )"
+
+S="${WORKDIR}/zookeeper-${PV}/src/c"
+
+src_configure() {
+   econf \
+   $(use_enable static-libs static) \
+   $(use_with test cppunit)
+}
+
+src_compile() {
+   emake
+   use doc && emake doxygen-doc
+}
+
+src_install() {
+   default
+   use doc && dohtml docs/html/*
+}



[gentoo-commits] proj/portage:repoman commit in: pym/repoman/

2016-03-15 Thread Brian Dolbec
commit: e9b63ed5c5e9f169c333b1d98613ec574ad946c8
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Feb  1 07:47:49 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Mar 15 18:57:08 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=e9b63ed5

repoman/actions.py: fix copyright update (bug 405017)

The Actions.perform method failed to update copyright for new and
changed files with --echangelog=n, so fix it to handle this case.

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

 pym/repoman/actions.py   | 9 +
 pym/repoman/utilities.py | 7 ---
 2 files changed, 9 insertions(+), 7 deletions(-)

diff --git a/pym/repoman/actions.py b/pym/repoman/actions.py
index c0cd5cc..643e24c 100644
--- a/pym/repoman/actions.py
+++ b/pym/repoman/actions.py
@@ -9,6 +9,7 @@ import platform
 import signal
 import sys
 import tempfile
+import time
 from itertools import chain
 
 from _emerge.UserQuery import UserQuery
@@ -22,6 +23,7 @@ from portage.output import (
 from portage.package.ebuild.digestgen import digestgen
 from portage.util import writemsg_level
 
+from repoman.copyrights import update_copyright
 from repoman.gpg import gpgsign, need_signature
 from repoman import utilities
 from repoman.modules.vcs.vcs import vcs_files_to_cps
@@ -111,6 +113,13 @@ class Actions(object):
 
commitmessage = commitmessage.rstrip()
 
+   # Update copyright for new and changed files
+   year = time.strftime('%Y', time.gmtime())
+   for fn in chain(mynew, mychanged):
+   if fn.endswith('.diff') or fn.endswith('.patch'):
+   continue
+   update_copyright(fn, year, pretend=self.options.pretend)
+
myupdates, broken_changelog_manifests = self.changelogs(
myupdates, mymanifests, myremoved, 
mychanged, myautoadd,
mynew, commitmessage)

diff --git a/pym/repoman/utilities.py b/pym/repoman/utilities.py
index 47b5aab..8a757dc 100644
--- a/pym/repoman/utilities.py
+++ b/pym/repoman/utilities.py
@@ -395,13 +395,6 @@ def UpdateChangeLog(
year = time.strftime('%Y', gmtime)
date = time.strftime('%d %b %Y', gmtime)
 
-   # check modified files and the ChangeLog for copyright updates
-   # patches and diffs (identified by .patch and .diff) are excluded
-   for fn in chain(new, changed):
-   if fn.endswith('.diff') or fn.endswith('.patch'):
-   continue
-   update_copyright(os.path.join(pkgdir, fn), year, 
pretend=pretend)
-
cl_path = os.path.join(pkgdir, 'ChangeLog')
clold_lines = []
clnew_lines = []



[gentoo-commits] proj/portage:repoman commit in: pym/repoman/modules/scan/metadata/, pym/repoman/, ...

2016-03-15 Thread Brian Dolbec
commit: 4ee48de5477bbbe299cdb43f8779a9c9a0388eac
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Mar 15 18:40:06 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Mar 15 18:40:06 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4ee48de5

repoman: Create a new boolean Fuse type

Create a Fuse type which implememts a boolean as a one time fuse.
The Fuse is initialized True, then is pop()'d to become False.
Once the Fuse is blown, it can not be reset to True.
Convert the use of the dynamic_data variable 'allvalid' to a Fuse instance.

 pym/repoman/fuse.py | 68 +
 pym/repoman/modules/scan/ebuild/ebuild.py   |  7 ++-
 pym/repoman/modules/scan/ebuild/isebuild.py | 13 +++---
 pym/repoman/modules/scan/metadata/unused.py |  2 +-
 pym/repoman/scanner.py  |  2 +
 5 files changed, 83 insertions(+), 9 deletions(-)

diff --git a/pym/repoman/fuse.py b/pym/repoman/fuse.py
new file mode 100644
index 000..ac864fd
--- /dev/null
+++ b/pym/repoman/fuse.py
@@ -0,0 +1,68 @@
+
+'''
+fuse.py
+
+A tiny one-time-fuse class that uses a boolean to mimic the property of
+an electrical fuse.  IT's good (True) until it is popped (bad, False).
+It is not resetable.
+'''
+
+
+class Fuse(object):
+   '''A One time fuse style boolean instance'''
+
+   __slots__ = ('_state')
+
+   def __init__(self):
+   self._state = True
+
+   def pop(self):
+   '''Blow's the fuse state (makes it False)'''
+   self._state = False
+
+   def __repr__(self):
+   '''x.__repr__() <==> repr(x)'''
+   return repr(self._state>0)
+
+   def __str__(self):
+   '''x.__str__() <==> str(x)'''
+   return ['False', 'True'][self._state]
+
+   def __bool__(self):
+   '''self != 0'''
+   return self._state != 0
+
+   def __nonzero__(self):
+   '''self != 0'''
+   return self._state != 0
+
+   def __abs__(self):
+   '''x.__abs__() <==> abs(x)'''
+   return [0, 1] [self._state]
+
+   def __int__(self):
+   '''int(self)'''
+   return [0, 1][self._state]
+
+   def __eq__(self, value):
+   '''Return self==value.'''
+   return self._state == value
+
+   def __ne__(self, value):
+   '''Return self!=value.'''
+   return self._state != value
+
+   def __ge__(self, value):
+   '''Return self>=value.'''
+   return self._state >= value
+
+   def __gt__(self, value):
+   return self._state > value
+
+   def __le__(self, value):
+   '''Return self<=value.'''
+   return self._state <= value
+
+   def __lt__(self, value):
+   '''Return self

[gentoo-commits] proj/portage:repoman commit in: pym/repoman/modules/scan/metadata/

2016-03-15 Thread Brian Dolbec
commit: 4c9cb5cb9e90e2a576f4d4a37bafbea9372c3ebe
Author: Brian Dolbec  gentoo  org>
AuthorDate: Tue Mar 15 18:45:45 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Tue Mar 15 18:45:45 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4c9cb5cb

repoman/modules.scan/metadata/unused.py: Add docstrings

Remove un-needed override functions

 pym/repoman/modules/scan/metadata/unused.py | 21 +
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/pym/repoman/modules/scan/metadata/unused.py 
b/pym/repoman/modules/scan/metadata/unused.py
index b3dc863..6def48f 100644
--- a/pym/repoman/modules/scan/metadata/unused.py
+++ b/pym/repoman/modules/scan/metadata/unused.py
@@ -1,11 +1,23 @@
 
 
 class UnusedCheck(object):
+   '''Checks and reports any un-used metadata.xml use flag descriptions'''
 
def __init__(self, **kwargs):
+   '''UnusedCheck init function
+
+   @param qatracker: QATracker instance
+   '''
self.qatracker = kwargs.get('qatracker')
 
def check(self, **kwargs):
+   '''Reports on any unused metadata.xml use descriptions
+
+   @param xpkg: the pacakge being checked
+   @param muselist: use flag list
+   @param used_useflags: use flag list
+   @param validity_fuse: Fuse instance
+   '''
xpkg = kwargs.get('xpkg')
muselist = kwargs.get('muselist')
used_useflags = kwargs.get('used_useflags')
@@ -20,13 +32,6 @@ class UnusedCheck(object):
return {'continue': False}
 
@property
-   def runInPkgs(self):
-   return (False, [])
-
-   @property
-   def runInEbuilds(self):
-   return (False, [])
-
-   @property
def runInFinal(self):
+   '''Final scans at the package level'''
return (True, [self.check])



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

2016-03-15 Thread Alon Bar-Lev
commit: 8873c4ca0bd4687847b9160f1f80ef2e53549c50
Author: Alon Bar-Lev  gentoo  org>
AuthorDate: Tue Mar 15 18:49:22 2016 +
Commit: Alon Bar-Lev  gentoo  org>
CommitDate: Tue Mar 15 18:49:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8873c4ca

app-laptop/laptop-mode-tools: version bump

Package-Manager: portage-2.2.26

 app-laptop/laptop-mode-tools/Manifest  |  1 +
 .../laptop-mode-tools-1.69.1.ebuild| 93 ++
 2 files changed, 94 insertions(+)

diff --git a/app-laptop/laptop-mode-tools/Manifest 
b/app-laptop/laptop-mode-tools/Manifest
index 815ea23..69be903 100644
--- a/app-laptop/laptop-mode-tools/Manifest
+++ b/app-laptop/laptop-mode-tools/Manifest
@@ -2,4 +2,5 @@ DIST laptop-mode-tools_1.66.tar.gz 75 SHA256 
0e8488d6112fa7edfa7e4b1084b16f8
 DIST laptop-mode-tools_1.67.tar.gz 111730 SHA256 
5205e5b4fa0eddcbb14e06a496a9e405cf3873eb5065e03e6a1237e29c8f3cd0 SHA512 
a0f8f5c6c2616bbdbe86f82b0dc7ad1bd4b4315fc074b7b97ad29a9dec4e63164d625da732f6b6b9a73dd039d415c06da51c83c5aa1056e7893b65691da1437f
 WHIRLPOOL 
03fd0f7bc7300d7357d6b1f27a38aed54c7b77a7f8633910d3bfa6aede862f24238bde9322398cedea0e6b9d1bcd85b988e56ff1f2aeb62d691a209aa6f2acab
 DIST laptop-mode-tools_1.68.1.tar.gz 113137 SHA256 
08d08f3d7ad76fb5f48232428584481a8e160421671533ece2648e968b519ba6 SHA512 
68e230e3215631cff31157865eac6e73c08534e5481016425a41e1c166746e0df987a21cc158edc4dac5b1469c515eb23c89a51084b4f993debd28befc82064a
 WHIRLPOOL 
b421b48627fa2c80af0024c4c8705643330ddcfce5cbcdb0b71462fea466ebbac2b5a254855dba315ca0ab5b056a23a9f5ab5e66c84b15d17e2fcdbefe816589
 DIST laptop-mode-tools_1.68.tar.gz 112695 SHA256 
a9ceca49a623fecf0d8067cd71d11610a254af7e87a3a462cb4277527a905558 SHA512 
1870c0400b32f4bb95f407db64f9e8920391c0758f37fa493545865ba0801ed6d67491c8d69bd7565d72a3437fe01524153fdd4dcf2cd69b49e7f1b0a54ff0c4
 WHIRLPOOL 
28b5e9fe7744824c4b562e8123e9403020a6096e32960f23592cc4393fce1379cc359602e83ff959187a953965e353d85c42c901c7ec6e382dd1ff67e0fb5699
+DIST laptop-mode-tools_1.69.1.tar.gz 115064 SHA256 
4dcc55b10c3fc693daeb6be8d8e190f2b191dce0686a7bea0545a8821b8e7173 SHA512 
1f027cec13800e4e0e256983769e45329423264b36112a4d79f3f09c4c01e7d411bbf8c376c67eb6d83224ffdde87e2fed4dc08176a406bc6a29ad3a392dd6d9
 WHIRLPOOL 
a0eedb7db39b204d6b0e61ef2d210d3be37a70c81dbdb11fad4d61042c5f972996a709a793c82d2b636ad37c2873c1d87cc62c5bd279de08d6ce6c49bfa3d113
 DIST laptop-mode-tools_1.69.tar.gz 115026 SHA256 
7028a646532d30d27cb8ee13a87d6b2f0045b6d8b7fbea3af77f167dd22ccca5 SHA512 
5dda4170473b62af1e49cc5d07298c7c5036b5f0fa9ad8b6f01265257a266c52f36a1e02c252544a10a87c7417393b54db98278b8a5bd6c1bd62f9f980e10831
 WHIRLPOOL 
5b9e48cb90b5da41a0d9864aa5ef2446f933e2b17841c2be9a89337a14150999330e50814642e8ddc648516d3c2c9ef64ce599e4513b8ed61046bfb121063e17

diff --git a/app-laptop/laptop-mode-tools/laptop-mode-tools-1.69.1.ebuild 
b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.69.1.ebuild
new file mode 100644
index 000..2370034
--- /dev/null
+++ b/app-laptop/laptop-mode-tools/laptop-mode-tools-1.69.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils multilib systemd udev
+
+MY_P=${PN}_${PV}
+
+DESCRIPTION="Linux kernel laptop_mode user-space utilities"
+HOMEPAGE="https://github.com/rickysarraf/laptop-mode-tools/wiki;
+SRC_URI="https://github.com/rickysarraf/${PN}/releases/download/${PV}/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="+acpi apm bluetooth scsi"
+
+RDEPEND="net-wireless/wireless-tools
+   sys-apps/iproute2
+   sys-apps/ethtool
+   sys-apps/hdparm
+   sys-apps/which
+   acpi? ( sys-power/acpid )
+   apm? ( sys-apps/apmd )
+   bluetooth? ( net-wireless/bluez:= )
+   scsi? ( sys-apps/sdparm )"
+DEPEND=""
+
+S=${WORKDIR}/${MY_P}
+
+src_prepare() {
+   # This should avoid conflict with pm-powersave wrt #327443 and #396703
+   cat <<-EOF > "${T}"/${PN}
+   HOOK_BLACKLIST="00powersave"
+   EOF
+}
+
+src_compile() { :; }
+
+src_install() {
+   DESTDIR="${D}" \
+   INIT_D="none" \
+   MAN_D="/usr/share/man" \
+   LIB_D="/usr/$(get_libdir)" \
+   UDEV_D="$(get_udevdir)" \
+   SYSTEMD_UNIT_D="$(systemd_get_unitdir)" \
+   TMPFILES_D="/usr/lib/tmpfiles.d" \
+   ACPI="$(use acpi && echo force || echo disabled)" \
+   PMU="$(false && echo force || echo disabled)" \
+   APM="$(use apm && echo force || echo disabled)" \
+   SYSTEMD=yes \
+   sh ./install.sh || die
+
+   dodoc Documentation/*.txt README.md
+   newinitd "${FILESDIR}"/laptop_mode.init-1.4 laptop_mode
+
+   # See src_prepare()
+   insinto /etc/pm/config.d
+   doins "${T}"/${PN}
+}
+
+pkg_postinst() {
+   if use acpi || use apm; then
+   if use acpi; then

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

2016-03-15 Thread Agostino Sarubbo
commit: 8600cf81508a89bb507e0798ab6e303c368b0dd8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 18:14:57 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 18:14:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8600cf81

dev-ruby/fast_xs: x86 stable wrt bug #576632

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild 
b/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild
index 2a54277..07ba387 100644
--- a/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild
+++ b/dev-ruby/fast_xs/fast_xs-0.8.0-r2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://github.com/brianmario/fast_xs;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? (



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

2016-03-15 Thread Agostino Sarubbo
commit: 08540c2855b36cc994b3949ce51558dd33bd31a0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 18:15:21 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 18:15:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08540c28

dev-perl/Finance-Quote: x86 stable wrt bug #572140

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild 
b/dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild
index 78b560e..46fa7d8 100644
--- a/dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild
+++ b/dev-perl/Finance-Quote/Finance-Quote-1.370.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Get stock and mutual fund quotes from various 
exchanges"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="alpha amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="alpha amd64 ~ppc ~ppc64 x86"
 IUSE="test"
 
 # virtual/perl-Data-Dumper currently commented out in the code



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

2016-03-15 Thread Agostino Sarubbo
commit: 821e13ba28929bc506401aa953ba7ccb04a61351
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 18:15:02 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 18:15:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821e13ba

dev-ruby/hpricot: x86 stable wrt bug #576632

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-ruby/hpricot/hpricot-0.8.6-r3.ebuild 
b/dev-ruby/hpricot/hpricot-0.8.6-r3.ebuild
index 9edce7a..7659d7d 100644
--- a/dev-ruby/hpricot/hpricot-0.8.6-r3.ebuild
+++ b/dev-ruby/hpricot/hpricot-0.8.6-r3.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://wiki.github.com/hpricot/hpricot;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "dev-ruby/rake



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Perl-Critic-Dynamic/

2016-03-15 Thread Agostino Sarubbo
commit: b7009837c9dccbc98dabe83185eb4089b160a682
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 18:15:31 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 18:15:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7009837

dev-perl/Perl-Critic-Dynamic: x86 stable wrt bug #572140

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r1.ebuild 
b/dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r1.ebuild
index 1521c68..a1aa7e7 100644
--- a/dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r1.ebuild
+++ b/dev-perl/Perl-Critic-Dynamic/Perl-Critic-Dynamic-0.50.0-r1.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Base class for dynamic Policies"
 
 SLOT="0"
-KEYWORDS="alpha amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="alpha amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND="dev-perl/Perl-Critic



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

2016-03-15 Thread Agostino Sarubbo
commit: c1ce029567e1ad69e0f30bedd9aeaf0cc127d83b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 18:15:12 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 18:15:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1ce0295

app-text/ronn: x86 stable wrt bug #576632

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-text/ronn/ronn-0.7.3-r3.ebuild 
b/app-text/ronn/ronn-0.7.3-r3.ebuild
index 9323a2a..426a4a2 100644
--- a/app-text/ronn/ronn-0.7.3-r3.ebuild
+++ b/app-text/ronn/ronn-0.7.3-r3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rtomayko/ronn/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 
 IUSE=""
 



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

2016-03-15 Thread Agostino Sarubbo
commit: b542bfa1d5238c30530244e31a04e3c34f57eb49
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 18:15:26 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 18:15:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b542bfa1

dev-perl/Mozilla-CA: x86 stable wrt bug #572140

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/Mozilla-CA/Mozilla-CA-20150826.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mozilla-CA/Mozilla-CA-20150826.ebuild 
b/dev-perl/Mozilla-CA/Mozilla-CA-20150826.ebuild
index 12a15d9..727e73a 100644
--- a/dev-perl/Mozilla-CA/Mozilla-CA-20150826.ebuild
+++ b/dev-perl/Mozilla-CA/Mozilla-CA-20150826.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Mozilla's CA cert bundle in PEM format"
 
 LICENSE="MPL-1.1"
 SLOT="0"
-KEYWORDS="alpha amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="alpha amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 RDEPEND=""



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

2016-03-15 Thread Agostino Sarubbo
commit: 30a5885b97d94e112f80622ef15062bb3c4c51c6
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 18:15:07 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 18:15:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30a5885b

dev-ruby/mustache: x86 stable wrt bug #576632

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-ruby/mustache/mustache-1.0.2.ebuild 
b/dev-ruby/mustache/mustache-1.0.2.ebuild
index 8fe63a3..81bf25e 100644
--- a/dev-ruby/mustache/mustache-1.0.2.ebuild
+++ b/dev-ruby/mustache/mustache-1.0.2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://mustache.github.com/;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd"
+KEYWORDS="~alpha amd64 ~arm hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~x86-fbsd"
 IUSE=""
 
 ruby_add_bdepend "doc? ( app-text/ronn )"



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

2016-03-15 Thread Richard Farina
commit: 7a2bf8130a94d9e76d98476371f07686743e0847
Author: Zero_Chaos  gentoo  org>
AuthorDate: Tue Mar 15 18:10:34 2016 +
Commit: Richard Farina  gentoo  org>
CommitDate: Tue Mar 15 18:11:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a2bf813

net-libs/libhackrf: fix copyright

Package-Manager: portage-2.2.27

 net-libs/libhackrf/libhackrf-2015.07.2.ebuild | 2 +-
 net-libs/libhackrf/libhackrf-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libhackrf/libhackrf-2015.07.2.ebuild 
b/net-libs/libhackrf/libhackrf-2015.07.2.ebuild
index fed57f0..7444a7d 100644
--- a/net-libs/libhackrf/libhackrf-2015.07.2.ebuild
+++ b/net-libs/libhackrf/libhackrf-2015.07.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 

diff --git a/net-libs/libhackrf/libhackrf-.ebuild 
b/net-libs/libhackrf/libhackrf-.ebuild
index fed57f0..7444a7d 100644
--- a/net-libs/libhackrf/libhackrf-.ebuild
+++ b/net-libs/libhackrf/libhackrf-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 



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

2016-03-15 Thread Richard Farina
commit: 44a001ddadecd95c2b145a48e170f56e26dd7bf9
Author: Zero_Chaos  gentoo  org>
AuthorDate: Tue Mar 15 18:08:15 2016 +
Commit: Richard Farina  gentoo  org>
CommitDate: Tue Mar 15 18:10:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44a001dd

net-libs/libhackrf: postinst message is only for use udev

Package-Manager: portage-2.2.27

 net-libs/libhackrf/libhackrf-2015.07.2.ebuild | 2 +-
 net-libs/libhackrf/libhackrf-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libhackrf/libhackrf-2015.07.2.ebuild 
b/net-libs/libhackrf/libhackrf-2015.07.2.ebuild
index cac4656..fed57f0 100644
--- a/net-libs/libhackrf/libhackrf-2015.07.2.ebuild
+++ b/net-libs/libhackrf/libhackrf-2015.07.2.ebuild
@@ -42,5 +42,5 @@ src_configure(){
 }
 
 pkg_postinst() {
-   einfo "Users in the usb group can use hackrf."
+   use udev && einfo "Users in the usb group can use hackrf."
 }

diff --git a/net-libs/libhackrf/libhackrf-.ebuild 
b/net-libs/libhackrf/libhackrf-.ebuild
index cac4656..fed57f0 100644
--- a/net-libs/libhackrf/libhackrf-.ebuild
+++ b/net-libs/libhackrf/libhackrf-.ebuild
@@ -42,5 +42,5 @@ src_configure(){
 }
 
 pkg_postinst() {
-   einfo "Users in the usb group can use hackrf."
+   use udev && einfo "Users in the usb group can use hackrf."
 }



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/asio/

2016-03-15 Thread David Seifert
commit: 5ea20bcfdd6bd1a950c02220069da01574721969
Author: David Seifert  gentoo  org>
AuthorDate: Tue Mar 15 18:07:28 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Tue Mar 15 18:07:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ea20bcf

dev-cpp/asio: bump to latest 1.10.6 stable release

Gentoo-Bug: 568332
* EAPI=6
* ebuild by Brian Evans

Package-Manager: portage-2.2.28

 dev-cpp/asio/Manifest   |  1 +
 dev-cpp/asio/asio-1.10.6.ebuild | 47 +
 2 files changed, 48 insertions(+)

diff --git a/dev-cpp/asio/Manifest b/dev-cpp/asio/Manifest
index 800fe86..1ee047d 100644
--- a/dev-cpp/asio/Manifest
+++ b/dev-cpp/asio/Manifest
@@ -1,2 +1,3 @@
+DIST asio-1.10.6.tar.bz2 1266180 SHA256 
e0d71c40a7b1f6c1334008fb279e7361b32a063e020efd21e40d9d8ff037195e SHA512 
7146e75a378de57daab88e7ba509ae01367ffa0d7c4c90481e221977a6b9f4fd80e9caac5c6b4c27bc7652e44cd210e2c6cabf5681d7c62747df14bbc25e8c23
 WHIRLPOOL 
c557736ff07ef15f2963bc64150c6f6c514f2cd0099f0c79588e79aef7148ff1f8478e5be4c6f4ed97f90792a85095c8190aba1891ccc605d53f00bea3497b32
 DIST asio-1.4.5.tar.bz2 877613 SHA256 
33fcb5bdd88ec0833b0069b5d1e4aba6a257b1f55f728274dfca5316e99901ff SHA512 
571f0bc183956c9bc6fa4150bdcdbf38e81b713e054a5d981be246b00058cef9fe7ac8f6f4d33993f183867cc57a0f75b2cbc480674277b1b491c62db89f9bf4
 WHIRLPOOL 
6f39c82c6794017868a482d59b7a887db92a08c2c02eb8bb002a0d94193936ece4d675ffbbbcfd182c4ad3f0a3580210a7e639714b172b9e313395a1818c37a8
 DIST asio-1.4.8.tar.bz2 907503 SHA256 
8d6a594c15ef10b5779d0e80adb9483be1cd36f7ada401b40aa7df85559b1fb9 SHA512 
74755767a90e87963352233ba0b1b865197262fc3fc2f2fa4446340d910de0f146454bf1b46736bb81aff4518bc64db1ee74f79966bcc1382774408468dd0540
 WHIRLPOOL 
646bec38ca0c7654fef93e2430ae61b09d08f26daeea464d2fb13487ef7ebc0345007e98909880c9428fe66bac5f0a102b95cc4b86ffaca4c6a4638bf20aa242

diff --git a/dev-cpp/asio/asio-1.10.6.ebuild b/dev-cpp/asio/asio-1.10.6.ebuild
new file mode 100644
index 000..4d80820
--- /dev/null
+++ b/dev-cpp/asio/asio-1.10.6.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Asynchronous Network Library"
+HOMEPAGE="http://asio.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+
+LICENSE="Boost-1.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc examples ssl test"
+
+RDEPEND="ssl? ( dev-libs/openssl:0= )
+   >=dev-libs/boost-1.35.0"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   if ! use test; then
+   # Don't build nor install any examples or unittests
+   # since we don't have a script to run them
+   cat > src/Makefile.in <<-EOF
+all:
+
+install:
+   EOF
+   fi
+   default
+}
+
+src_install() {
+   default
+
+   if use examples; then
+   if use test; then
+   # Get rid of the object files
+   emake clean
+   fi
+   dodoc -r src/examples
+   fi
+   if use doc; then
+   docinto /usr/share/doc/${PF}/html
+   dodoc -r doc/*
+   fi
+}



[gentoo-commits] proj/sci:master commit in: sci-biology/cd-hit/, sci-biology/cd-hit/files/

2016-03-15 Thread Martin Mokrejs
commit: bbb498fd00b7e7bc6e7299d721744a0c8d0135af
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Tue Mar 15 17:59:16 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Tue Mar 15 17:59:16 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=bbb498fd

sci-biology/cd-hit: add a local copy of the wiki manual

Package-Manager: portage-2.2.26

 sci-biology/cd-hit/cd-hit-4.6.5.ebuild |   6 +-
 .../cd-hit/files/cd-hit-auxtools-manual.txt| 212 +
 2 files changed, 215 insertions(+), 3 deletions(-)

diff --git a/sci-biology/cd-hit/cd-hit-4.6.5.ebuild 
b/sci-biology/cd-hit/cd-hit-4.6.5.ebuild
index c90dee0..7d6686a 100644
--- a/sci-biology/cd-hit/cd-hit-4.6.5.ebuild
+++ b/sci-biology/cd-hit/cd-hit-4.6.5.ebuild
@@ -12,8 +12,7 @@ RELEASE="${PN}-v${PV}-${RELDATE}"
 DESCRIPTION="Clustering Database at High Identity with Tolerance"
 HOMEPAGE="http://weizhong-lab.ucsd.edu/cd-hit
http://weizhongli-lab.org/cd-hit;
-SRC_URI="https://github.com/weizhongli/cdhit/archive/V${PV}.tar.gz -> 
${P}.tar.gz
-   
http://weizhong-lab.ucsd.edu/cd-hit/wiki/doku.php?id=cd-hit-auxtools-manual -> 
cd-hit-auxtools-manual.html"
+SRC_URI="https://github.com/weizhongli/cdhit/archive/V${PV}.tar.gz -> 
${P}.tar.gz"
 
 SLOT="0"
 KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
@@ -47,7 +46,7 @@ src_install() {
emake PREFIX="${ED}/usr/bin" install
dobin psi-cd-hit/*.pl cd-hit-auxtools/*.pl 
cd-hit-auxtools/{cd-hit-lap,read-linker,cd-hit-dup}
dodoc ChangeLog psi-cd-hit/README.psi-cd-hit
-   use doc && dodoc doc/* psi-cd-hit/qsub-template 
"${DISTDIR}"/cd-hit-auxtools-manual.html
+   use doc && dodoc doc/* psi-cd-hit/qsub-template 
"${FILESDIR}"/cd-hit-auxtools-manual.txt
 }
 
 pkg_postinst(){
@@ -58,4 +57,5 @@ pkg_postinst(){
einfo "The cd-hit-auxtools are no longer a separate package and belong 
to cd-hit since"
einfo "version 4.6.5. However, there is no manual for that in current 
cd-hit tree. Therefore"
einfo "see 
http://weizhong-lab.ucsd.edu/cd-hit/wiki/doku.php?id=cd-hit-auxtools-manual;
+   einfo "A local copy is is in 
/usr/share/doc/${PN}/cd-hit-auxtools-manual.txt"
 }

diff --git a/sci-biology/cd-hit/files/cd-hit-auxtools-manual.txt 
b/sci-biology/cd-hit/files/cd-hit-auxtools-manual.txt
new file mode 100644
index 000..6e0ca68
--- /dev/null
+++ b/sci-biology/cd-hit/files/cd-hit-auxtools-manual.txt
@@ -0,0 +1,212 @@
+http://weizhong-lab.ucsd.edu/cd-hit/wiki/doku.php?id=cd-hit-auxtools-manual
+
+CD-HIT AuxTools: Manual
+
+Last updated: 2012/03/08 00:59
+
+http://cd-hit.org
+
+http://bioinformatics.org/cd-hit/
+
+Program developed by Weizhong Li's lab at UCSD http://weizhong-lab.ucsd.edu 
l...@sdsc.edu
+Introduction
+
+CD-HIT AuxTools is a set of auxiliary programs that can be used to assist the 
analysis of the next generation sequencing data. It currently includes programs 
for removing read duplicates, finding pairs of overlapping reads or joining 
pair-end reads etc.
+cd-hit-dup
+
+cd-hit-dup is a simple tool for removing duplicates from sequencing reads, 
with optional step to detect and remove chimeric reads. A number of options are 
provided to tune how the duplicates are removed. Running the program without 
arguments should print out the list of available options, as the following:
+
+Options:
+-iInput file;
+-i2   Second input file;
+-oOutput file;
+-dDescription length (default 0, truncate at the first whitespace 
character)
+-uLength of prefix to be used in the analysis (default 0, for 
full/maximum length);
+-mMatch length (true/false, default true);
+-eMaximum number/percent of mismatches allowed;
+-fFilter out chimeric clusters (true/false, default false);
+-sMinimum length of common sequence shared between a chimeric read
+  and each of its parents (default 30, minimum 20);
+-aAbundance cutoff (default 1 without chimeric filtering, 2 with 
chimeric filtering);
+-bAbundance ratio between a parent read and a chimeric read 
(default 1);
+-pDissimilarity control for chimeric filtering (default 1);
+
+Option details
+Common options
+
+Here are the more detailed description of the options.
+
+-iInput file;
+
+Input file that must be in fasta or fastq format.
+
+-i2   Second input file;
+
+cd-hit-dup can take a pair of files as inputs, assuming they contain sequences 
of pair-end reads. ”-i” can be used to specify the file for the first end; and 
”-i2” can be used to specify the file for the second end.
+
+When two files of pair-end reads are used as inputs, each pair of reads will 
be concatenated into a single one. And the following steps of duplicate and 
chimeric detection and removing.
+
+-oOutput file;
+
+Output file which contains a list of reads without duplicates.
+
+-d 

[gentoo-commits] repo/gentoo:master commit in: profiles/updates/, eclass/, sys-devel/gcc/

2016-03-15 Thread Mike Frysinger
commit: 6fd83c0c338e901db4ba47ddb87f523482fedf33
Author: Mike Frysinger  gentoo  org>
AuthorDate: Sat Mar 12 15:53:42 2016 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Tue Mar 15 17:56:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fd83c0c

toolchain.eclass: use versioned SLOT all the time

 eclass/toolchain.eclass| 10 +-
 profiles/updates/1Q-2016   |  6 ++
 sys-devel/gcc/gcc-4.9.3.ebuild |  1 +
 sys-devel/gcc/gcc-5.3.0.ebuild |  1 +
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/eclass/toolchain.eclass b/eclass/toolchain.eclass
index 23b0fa7..7dade5c 100644
--- a/eclass/toolchain.eclass
+++ b/eclass/toolchain.eclass
@@ -159,15 +159,7 @@ fi
 
 IUSE+=" ${IUSE_DEF[*]/#/+}"
 
-# Support upgrade paths here or people get pissed
-if ! tc_version_is_at_least 4.8 || is_crosscompile || use multislot || [[ 
${GCC_PV} == *_alpha* ]] ; then
-   SLOT="${GCC_CONFIG_VER}"
-elif ! tc_version_is_at_least 5.0 ; then
-   SLOT="${GCC_BRANCH_VER}"
-else
-   # Upstream changed versioning w/gcc-5+, so SLOT matches major only. 
#555164
-   SLOT="${GCCMAJOR}"
-fi
+SLOT="${GCC_CONFIG_VER}"
 
 #>> DEPEND <<
 

diff --git a/profiles/updates/1Q-2016 b/profiles/updates/1Q-2016
index f19a385..4554242 100644
--- a/profiles/updates/1Q-2016
+++ b/profiles/updates/1Q-2016
@@ -35,3 +35,9 @@ move dev-perl/perl-tk dev-perl/Tk
 move dev-perl/mogilefs-server dev-perl/MogileFS-Server
 move dev-perl/ogg-vorbis-header dev-perl/Ogg-Vorbis-Header
 move dev-perl/p5-Palm dev-perl/Palm
+slotmove sys-devel/gcc 4.5 4.5.4
+slotmove sys-devel/gcc 4.6 4.6.4
+slotmove sys-devel/gcc 4.7 4.7.4
+slotmove sys-devel/gcc 4.8 4.8.5
+slotmove sys-devel/gcc 4.9 4.9.3
+slotmove sys-devel/gcc 5 5.3.0

diff --git a/sys-devel/gcc/gcc-4.9.3.ebuild b/sys-devel/gcc/gcc-4.9.3.ebuild
index 85dbc89..a66d2d6 100644
--- a/sys-devel/gcc/gcc-4.9.3.ebuild
+++ b/sys-devel/gcc/gcc-4.9.3.ebuild
@@ -27,6 +27,7 @@ KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc 
ppc64 s390 sh sparc x86
 RDEPEND=""
 DEPEND="${RDEPEND}
elibc_glibc? ( >=sys-libs/glibc-2.8 )
+   !multislot? ( !<${CATEGORY}/gcc-4.9 )
>=${CATEGORY}/binutils-2.20"
 
 if [[ ${CATEGORY} != cross-* ]] ; then

diff --git a/sys-devel/gcc/gcc-5.3.0.ebuild b/sys-devel/gcc/gcc-5.3.0.ebuild
index 4c895d4..5245fcc 100644
--- a/sys-devel/gcc/gcc-5.3.0.ebuild
+++ b/sys-devel/gcc/gcc-5.3.0.ebuild
@@ -27,6 +27,7 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~s390 ~s
 RDEPEND=""
 DEPEND="${RDEPEND}
elibc_glibc? ( >=sys-libs/glibc-2.8 )
+   !multislot? ( !<${CATEGORY}/gcc-4.9 )
>=${CATEGORY}/binutils-2.20"
 
 if [[ ${CATEGORY} != cross-* ]] ; then



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

2016-03-15 Thread Agostino Sarubbo
commit: df938263aaee78091629df977e4b1800da6cdd16
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:55:18 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:55:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df938263

app-misc/xmind: x86 stable wrt bug #576852

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 app-misc/xmind/xmind-3.5.3.201506180105-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/xmind/xmind-3.5.3.201506180105-r2.ebuild 
b/app-misc/xmind/xmind-3.5.3.201506180105-r2.ebuild
index b6f507f..3066e89 100644
--- a/app-misc/xmind/xmind-3.5.3.201506180105-r2.ebuild
+++ b/app-misc/xmind/xmind-3.5.3.201506180105-r2.ebuild
@@ -15,7 +15,7 @@ SRC_URI="http://dl2.xmind.net/xmind-downloads/${MY_P}.zip
https://dev.gentoo.org/~creffett/distfiles/xmind-icons.tar.xz;
 LICENSE="EPL-1.0 LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



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

2016-03-15 Thread Agostino Sarubbo
commit: 024810c8aade457c7bebf3c481a06401b7645757
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:55:30 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:55:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=024810c8

dev-perl/Canary-Stability: x86 stable wrt bug #576110

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 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 9ee8596..d571594 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 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE=""
 
 RDEPEND=""



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

2016-03-15 Thread Agostino Sarubbo
commit: 6ed4373951b6b21f43d67b5fecc40da2db66cbc4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:55:26 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:55:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ed43739

dev-perl/IO-AIO: x86 stable wrt bug #576110

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild 
b/dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild
index cbdb84d..8e11d07 100644
--- a/dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild
+++ b/dev-perl/IO-AIO/IO-AIO-4.330.0.ebuild
@@ -11,7 +11,7 @@ inherit perl-module
 DESCRIPTION="Asynchronous Input/Output"
 
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE=""
 # Tests trigger stack overflow in sandbox code, see bug 553918
 RESTRICT="test"



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

2016-03-15 Thread Agostino Sarubbo
commit: d2e588315b9448cd71b2372263023be172d49e15
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:55:12 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:55:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2e58831

net-analyzer/tcpreplay: x86 stable wrt bug #574946

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-analyzer/tcpreplay/tcpreplay-4.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/tcpreplay/tcpreplay-4.1.1.ebuild 
b/net-analyzer/tcpreplay/tcpreplay-4.1.1.ebuild
index d483b1a..b073194 100644
--- a/net-analyzer/tcpreplay/tcpreplay-4.1.1.ebuild
+++ b/net-analyzer/tcpreplay/tcpreplay-4.1.1.ebuild
@@ -11,7 +11,7 @@ LICENSE="BSD GPL-3"
 SRC_URI="https://github.com/appneta/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 SLOT="0"
-KEYWORDS="amd64 ~sparc ~x86"
+KEYWORDS="amd64 ~sparc x86"
 IUSE="debug pcapnav +tcpdump"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-utils/

2016-03-15 Thread Agostino Sarubbo
commit: 8dc0b033479ac27da0d5b5903ab87c5a7e76cf0b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:52:23 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dc0b033

mate-extra/mate-utils: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 mate-extra/mate-utils/mate-utils-1.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-utils/mate-utils-1.8.1.ebuild 
b/mate-extra/mate-utils/mate-utils-1.8.1.ebuild
index 216f24d..3a1ddf8 100644
--- a/mate-extra/mate-utils/mate-utils-1.8.1.ebuild
+++ b/mate-extra/mate-utils/mate-utils-1.8.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="X applet ipv6 test"
 



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

2016-03-15 Thread Agostino Sarubbo
commit: d584163925dd2b9a99fe5ae8899e0a9f584c0f2e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:52:29 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5841639

media-gfx/eom: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/media-gfx/eom/eom-1.8.1.ebuild b/media-gfx/eom/eom-1.8.1.ebuild
index 3efe196..b025831 100644
--- a/media-gfx/eom/eom-1.8.1.ebuild
+++ b/media-gfx/eom/eom-1.8.1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~x86"
+KEYWORDS="amd64 ~arm x86"
 
 IUSE="X dbus exif jpeg lcms python svg tiff xmp"
 



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

2016-03-15 Thread Agostino Sarubbo
commit: e6116519ed30fc515c5c86c29d8ac45d7efcea3f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:51:43 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:52:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6116519

app-text/atril: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-text/atril/atril-1.8.1.ebuild 
b/app-text/atril/atril-1.8.1.ebuild
index 84cccec..2cce21d 100644
--- a/app-text/atril/atril-1.8.1.ebuild
+++ b/app-text/atril/atril-1.8.1.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="caja dbus debug djvu dvi +introspection gnome-keyring +postscript t1lib 
tiff xps"
 



[gentoo-commits] repo/gentoo:master commit in: mate-base/mate-control-center/

2016-03-15 Thread Agostino Sarubbo
commit: e2672ea2fef645bc72c071271af4cf3b110ea6de
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:52:03 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2672ea2

mate-base/mate-control-center: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 mate-base/mate-control-center/mate-control-center-1.8.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-base/mate-control-center/mate-control-center-1.8.3.ebuild 
b/mate-base/mate-control-center/mate-control-center-1.8.3.ebuild
index afc1d10..5484b8d 100644
--- a/mate-base/mate-control-center/mate-control-center-1.8.3.ebuild
+++ b/mate-base/mate-control-center/mate-control-center-1.8.3.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="app-text/rarian:0
dev-libs/atk:0



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

2016-03-15 Thread Agostino Sarubbo
commit: 71109f6baf62196783a42ba9088173c9bd8cb3fb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:51:53 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71109f6b

mate-base/caja: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 mate-base/caja/caja-1.8.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-base/caja/caja-1.8.2-r1.ebuild 
b/mate-base/caja/caja-1.8.2-r1.ebuild
index e478c87..c99ccfb 100644
--- a/mate-base/caja/caja-1.8.2-r1.ebuild
+++ b/mate-base/caja/caja-1.8.2-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2 LGPL-2 FDL-1.1"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="+mate +introspection +unique xmp"
 



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

2016-03-15 Thread Agostino Sarubbo
commit: 63075abe7bc59cd185f66a95c2076733301d6700
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:52:49 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63075abe

x11-wm/marco: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 x11-wm/marco/marco-1.8.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/marco/marco-1.8.2.ebuild b/x11-wm/marco/marco-1.8.2.ebuild
index af1d770..e2ea6f0 100644
--- a/x11-wm/marco/marco-1.8.2.ebuild
+++ b/x11-wm/marco/marco-1.8.2.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="startup-notification test xinerama"
 
 RDEPEND="



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

2016-03-15 Thread Agostino Sarubbo
commit: f92683bd06a18102f4840cead29638ecb45c6e06
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:51:48 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f92683bd

dev-python/python-caja: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/python-caja/python-caja-1.8.1.ebuild 
b/dev-python/python-caja/python-caja-1.8.1.ebuild
index d1b55c4..02aa046 100644
--- a/dev-python/python-caja/python-caja-1.8.1.ebuild
+++ b/dev-python/python-caja/python-caja-1.8.1.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="http://www.mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="doc"
 



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-sensors-applet/

2016-03-15 Thread Agostino Sarubbo
commit: 721bd15556d54cd56e27277649bacd4bd9dfb16b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:52:54 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=721bd155

mate-extra/mate-sensors-applet: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 mate-extra/mate-sensors-applet/mate-sensors-applet-1.8.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-sensors-applet/mate-sensors-applet-1.8.0-r1.ebuild 
b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.8.0-r1.ebuild
index 2e38eef..20d1842 100644
--- a/mate-extra/mate-sensors-applet/mate-sensors-applet-1.8.0-r1.ebuild
+++ b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.8.0-r1.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 
 IUSE="+dbus hddtemp libnotify lm_sensors video_cards_fglrx video_cards_nvidia"
 



[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-screensaver/

2016-03-15 Thread Agostino Sarubbo
commit: 3278c22b484a696a0a4981a122ae4522775c5246
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Tue Mar 15 17:52:18 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Tue Mar 15 17:53:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3278c22b

mate-extra/mate-screensaver: x86 stable wrt bug #573048

Package-Manager: portage-2.2.26
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 mate-extra/mate-screensaver/mate-screensaver-1.8.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mate-extra/mate-screensaver/mate-screensaver-1.8.1-r1.ebuild 
b/mate-extra/mate-screensaver/mate-screensaver-1.8.1-r1.ebuild
index 4337fd6..e8b7b28 100644
--- a/mate-extra/mate-screensaver/mate-screensaver-1.8.1-r1.ebuild
+++ b/mate-extra/mate-screensaver/mate-screensaver-1.8.1-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="http://mate-desktop.org;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 IUSE="X consolekit kernel_linux libnotify opengl pam systemd"
 



  1   2   3   4   >