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

2016-04-24 Thread Hans de Graaff
commit: 5a58c899cfa20638364702f11c12a4e8ab4fdd7b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 25 05:23:00 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:23:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a58c899

dev-ruby/multi_json: add 1.11.3

Package-Manager: portage-2.2.26

 dev-ruby/multi_json/Manifest |  1 +
 dev-ruby/multi_json/multi_json-1.11.3.ebuild | 62 
 2 files changed, 63 insertions(+)

diff --git a/dev-ruby/multi_json/Manifest b/dev-ruby/multi_json/Manifest
index 7b69fb8..c74d8e7 100644
--- a/dev-ruby/multi_json/Manifest
+++ b/dev-ruby/multi_json/Manifest
@@ -1,2 +1,3 @@
 DIST multi_json-1.11.2.tar.gz 24748 SHA256 
656e92aa19d5e0fc08c1f30f30e328479631407d1dd893c058cac88dd0777313 SHA512 
bb4b1835cd5d4355003dfc1085cbb71913766d6e8210dab93d8aed5e6612a29f60420efd550f566c63da5358e1ce2daf04049c1d635caf07244f117cff0f3794
 WHIRLPOOL 
8216b793687c0d1ec30eaaefce5320e6124468adb3bbd905455ecf0ae66e962d662f492f91854f00077e15d9ae9b15e43a58f10d79acc6469fc668462bcce59f
+DIST multi_json-1.11.3.tar.gz 24788 SHA256 
3dc780a837b0ad85d0ffbfe876b04246ef7f544b22859262cce76a94a70ccdb3 SHA512 
9afbcf30755b189c26e83f8a416115ab7c5b64875ca3508e5b4d4eff6636eba536896b2801e314187ce3ad44414934f6605fcbae4850d979d348952df0fd5e6e
 WHIRLPOOL 
ab843c487028ffa42b1b5786f93502b0f910ce8865f02e9ab205c090251a073b0635d1b97909e7589ee314a30b3e3852615027215cc4f407b1b8c2094390f552
 DIST multi_json-1.9.3.gem 30720 SHA256 
631390d4b6c3d3753a3df0c28339c8e7840704083dfdcefb1323a22ab97b2281 SHA512 
7f06747e760a63b6421dfda480522924f12bd00ad63f95414f6624173b9b9b255b139f9dc33d2d2a8d19b232f99a005033e00e3a0b223be992f73d142a55b8b5
 WHIRLPOOL 
a96f1c1e53865e153bc83079fc70b69af6c941c4995f4215317ca53567532d1406adb174683fc8c5229fdc3563f5e8d3c2c662d77cf9d9d55367aab2df5b34f0

diff --git a/dev-ruby/multi_json/multi_json-1.11.3.ebuild 
b/dev-ruby/multi_json/multi_json-1.11.3.ebuild
new file mode 100644
index 000..4b2500f
--- /dev/null
+++ b/dev-ruby/multi_json/multi_json-1.11.3.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC="yard"
+
+RUBY_FAKEGEM_DOCDIR="rdoc"
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="multi_json.gemspec"
+
+inherit ruby-fakegem
+
+SRC_URI="https://github.com/intridea/multi_json/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+DESCRIPTION="A gem to provide swappable JSON backends"
+HOMEPAGE="https://github.com/intridea/multi_json";
+LICENSE="MIT"
+
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend "|| ( >=dev-ruby/json-1.4 >=dev-ruby/yajl-ruby-1.0 
=dev-ruby/activesupport-3* )"
+
+ruby_add_bdepend "doc? ( dev-ruby/rspec:3 dev-ruby/yard )"
+
+ruby_add_bdepend "test? ( dev-ruby/json
+   dev-ruby/yajl-ruby )"
+
+all_ruby_prepare() {
+   sed -i -e '/[Bb]undler/d' Rakefile spec/spec_helper.rb || die "Unable 
to remove bundler."
+
+   # Remove unimportant rspec options not supported by rspec 2.6.
+   rm .rspec || die
+
+   # Remove specs specific to oj since we don't package oj yet.
+   sed -i -e '/defaults to the best available gem/,/^  end/ s:^:#:' \
+   -e '/Oj does not create symbols on parse/,/^end/ s:^:#:' \
+   -e '/with Oj.default_settings/,/^end/ s:^:#:' \
+   -e '/using one-shot parser/,/^  end/ s:^:#:' \
+   spec/multi_json_spec.rb
+
+   # Avoid simplecov which only works with ruby 1.9
+   sed -i -e '/simplecov/d' -e '/SimpleCov.formatter/,/SimpleCov.start/ d' 
spec/spec_helper.rb || die
+
+   # Remove unpackaged and for our purposes unneeded coveralls
+   sed -i -e '/coveralls/d' spec/spec_helper.rb || die
+
+   # Avoid testing unpackaged adapters
+   rm spec/{gson,jr_jackson,oj}_adapter_spec.rb || die
+}
+
+each_ruby_test() {
+   for t in spec/*_spec.rb; do
+   ${RUBY} -S rspec-3 ${t} || die
+   done
+}



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

2016-04-24 Thread Hans de Graaff
commit: 155b077784c16507135b0467a8dc033a1b04b156
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Apr 25 05:33:30 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:33:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=155b0777

dev-ruby/multi_json: add ruby23

Drop ia64, ppc, sparc, x86 keywords due to 562452

Package-Manager: portage-2.2.26

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

diff --git a/dev-ruby/multi_json/multi_json-1.11.3.ebuild 
b/dev-ruby/multi_json/multi_json-1.11.3.ebuild
index 4b2500f..5b6038b 100644
--- a/dev-ruby/multi_json/multi_json-1.11.3.ebuild
+++ b/dev-ruby/multi_json/multi_json-1.11.3.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_TASK_DOC="yard"
@@ -21,7 +21,7 @@ DESCRIPTION="A gem to provide swappable JSON backends"
 HOMEPAGE="https://github.com/intridea/multi_json";
 LICENSE="MIT"
 
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc64 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 SLOT="0"
 IUSE=""
 



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

2016-04-24 Thread Hans de Graaff
commit: 7ea6dd7850c7ee17abdae9ae466f093c87169f15
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 24 06:15:16 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:11:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ea6dd78

dev-ruby/net-ssh: add ruby23

Package-Manager: portage-2.2.26

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

diff --git a/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild 
b/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
index 56f1392..887fed4 100644
--- a/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
+++ b/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_TASK_TEST=""
 



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

2016-04-24 Thread Hans de Graaff
commit: 7229bc9ecf257eb1b86f30c7f85f0ce4d64a26f0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 24 06:13:04 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:11:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7229bc9e

dev-ruby/net-ssh: drop ruby19

Package-Manager: portage-2.2.26

 dev-ruby/net-ssh/net-ssh-2.10.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild 
b/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
index dec8d5a..56f1392 100644
--- a/dev-ruby/net-ssh/net-ssh-2.10.0.ebuild
+++ b/dev-ruby/net-ssh/net-ssh-2.10.0.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_TASK_TEST=""
 



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

2016-04-24 Thread Hans de Graaff
commit: 74f148267c58c84281afa78eb0351290f44e6ff9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 24 06:12:26 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:11:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74f14826

dev-ruby/net-scp: fix 1.2.1 tests

The tests are not compatible with net-ssh 3.x so restrict them to net-ssh 2.x.

Package-Manager: portage-2.2.26

 dev-ruby/net-scp/net-scp-1.2.1.ebuild | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/dev-ruby/net-scp/net-scp-1.2.1.ebuild 
b/dev-ruby/net-scp/net-scp-1.2.1.ebuild
index 56acdb3..d760f18 100644
--- a/dev-ruby/net-scp/net-scp-1.2.1.ebuild
+++ b/dev-ruby/net-scp/net-scp-1.2.1.ebuild
@@ -20,13 +20,17 @@ KEYWORDS="~amd64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos
 IUSE=""
 
 ruby_add_bdepend "
-   doc? ( >=dev-ruby/net-ssh-2.6.5 )
+   doc? ( >=dev-ruby/net-ssh-2.6.5:2.6 )
test? (
-   >=dev-ruby/net-ssh-2.9.0
+   >=dev-ruby/net-ssh-2.9.0:2.6
dev-ruby/mocha
)"
 
-ruby_add_rdepend ">=dev-ruby/net-ssh-2.6.5"
+ruby_add_rdepend ">=dev-ruby/net-ssh-2.6.5:2.6"
+
+all_ruby_prepare() {
+   sed -i -e 's/>= 2.0.0/~> 2.0/' test/common.rb || die
+}
 
 each_ruby_test() {
${RUBY} -Ilib:test test/test_all.rb || die



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

2016-04-24 Thread Hans de Graaff
commit: 77639001c93fa0ff2a3d61758c69a748bfa813af
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 24 05:56:59 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:11:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77639001

dev-ruby/http_parser_rb: add ruby23

Package-Manager: portage-2.2.26

 dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild 
b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
index 325f5cb..49faf24 100644
--- a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
+++ b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 



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

2016-04-24 Thread Hans de Graaff
commit: 2cf4a71a2afcdea04b68390b90d99b610666ade1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 24 05:48:45 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:08:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cf4a71a

dev-ruby/http_parser_rb: mark ruby21 revision stable

Package-Manager: portage-2.2.26

 dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild 
b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
index 4ad52bb..325f5cb 100644
--- a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
+++ b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://github.com/tmm1/http_parser.rb";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 x86"
 IUSE=""
 
 each_ruby_configure() {



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

2016-04-24 Thread Hans de Graaff
commit: 3db0d8ff204370e371cad728c3722610826f55fa
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Apr 24 06:02:41 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Apr 25 05:11:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3db0d8ff

dev-ruby/sshkit: add 1.10.0

Package-Manager: portage-2.2.26

 dev-ruby/sshkit/Manifest |  1 +
 dev-ruby/sshkit/sshkit-1.10.0.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/dev-ruby/sshkit/Manifest b/dev-ruby/sshkit/Manifest
index caca8a9..e04d46b 100644
--- a/dev-ruby/sshkit/Manifest
+++ b/dev-ruby/sshkit/Manifest
@@ -1,2 +1,3 @@
+DIST sshkit-1.10.0.gem 144896 SHA256 
52be5c07361644f7ab461e14ffd2455a3ee5a7df01b03428bfa3716c830344a4 SHA512 
e89a91acd073ccfc73e15eff5c163273c80ef086bfe97e3df3af7b6ee3ce6b425b2bc4d0031526092cb709ec84a4643d3c8719b1341c5e406455dcac5f9e8c91
 WHIRLPOOL 
eb389dd4103df89d1614826cbca0d6a93bc8f8594a264a0cd5916d4097cded107cb61ac180727f9fbda384d3bc0136d466e81af64ea4bc2ce186cc96969b0fea
 DIST sshkit-1.8.1.gem 139264 SHA256 
ff272ca4d54fcdfab2874c70de3d4e26846762e091f83d2bbfaa96ecaa8c0617 SHA512 
59fcc3f24d6ca6c7acf8f753959aee993dbbcd452477f3124d5444f7e19a9885efde9d5ea5803ffc366b9f6638a4d93472cc51b343a6d7a39a708528def6e9e9
 WHIRLPOOL 
48c35a2dbd3b820dccb69b366903e803ff4eb62d250aa5a2c985d510f245529e049933501ed51d0f6e23926d7b3fd5c526c61c932dcc6f1840ec911e82469dbb
 DIST sshkit-1.9.0.gem 142336 SHA256 
7e3d840aeb81a282075c8c63276c9788b57914ab22281b8ba428a69d54ad8703 SHA512 
f4883e5f369a14253a9e5ed7929c0528030635687b50d64aecf845ccd0194816893c638c8a185c0a1c6c6ab6a01b42d4fd9209f1e87f296556ef1c8bc591e6dd
 WHIRLPOOL 
8571ef46dbd2f8c12fd26c4e7e9219f0fc62b88698602f33eae89a0eca314c874ab173298028e29e03ffd52d193812fb26ccab84c9923d4816de07c98f7ec1c2

diff --git a/dev-ruby/sshkit/sshkit-1.10.0.ebuild 
b/dev-ruby/sshkit/sshkit-1.10.0.ebuild
new file mode 100644
index 000..c8ee20d
--- /dev/null
+++ b/dev-ruby/sshkit/sshkit-1.10.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22"
+
+# There are functional tests that require vagrant boxes to be set up.
+RUBY_FAKEGEM_TASK_TEST="test:units"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md FAQ.md README.md"
+
+inherit ruby-fakegem
+
+DESCRIPTION="SSHKit makes it easy to write structured, testable SSH commands 
in Ruby"
+HOMEPAGE="https://github.com/capistrano/sshkit";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/net-ssh-2.8.0:*
+   >=dev-ruby/net-scp-1.1.2
+"
+
+ruby_add_bdepend "test? ( dev-ruby/minitest dev-ruby/mocha )"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/I s:^:#:' Rakefile test/helper.rb || die
+   sed -i -e '/\(turn\|unindent\|reporters\)/I s:^:#:' \
+   -e '1irequire "set"' test/helper.rb || die
+
+   # Fix assumption about parent directory name
+   sed -i -e '/assert_match/ s/sshkit/sshkit.*/' 
test/unit/test_deprecation_logger.rb || die
+}
+
+each_ruby_test() {
+   # Run tests directly to avoid dependencies in the Rakefile
+   ${RUBY} -Ilib:test:. -e "Dir['test/unit/**/test*.rb'].each{|f| require 
f}" || die
+}



[gentoo-commits] repo/gentoo:master commit in: www-apps/baikal/

2016-04-24 Thread Fabian Groffen
commit: 03b027956568aaa06473641eb8b0c75d94a90ef3
Author: Fabian Groffen  gentoo  org>
AuthorDate: Mon Apr 25 04:57:09 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Mon Apr 25 04:57:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03b02795

www-apps/baikal: need USE=xmlwriter on php as well for 0.4.4, thanks Frank 
Steinmetzger in bug #521848

Package-Manager: portage-2.2.26

 www-apps/baikal/baikal-0.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-apps/baikal/baikal-0.4.4.ebuild 
b/www-apps/baikal/baikal-0.4.4.ebuild
index ab0ae77..b58484c 100644
--- a/www-apps/baikal/baikal-0.4.4.ebuild
+++ b/www-apps/baikal/baikal-0.4.4.ebuild
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~arm"
 IUSE="+mysql sqlite"
 REQUIRED_USE="|| ( mysql sqlite )"
 
-RDEPEND=">=dev-lang/php-5.5[ctype,filter,pdo,session,xml,xmlreader,mysql?,sqlite?]
+RDEPEND=">=dev-lang/php-5.5[ctype,filter,pdo,session,xml,xmlreader,xmlwriter,mysql?,sqlite?]
mysql? ( virtual/mysql )
sqlite? ( dev-db/sqlite )
virtual/httpd-php"



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

2016-04-24 Thread Zac Medico
commit: 4d370b84a917b351eaaa55f0d181909f42add18d
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Apr 25 03:57:03 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Apr 25 04:04:35 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4d370b84

ProfileDependsChecks: convert ArchChecks to function

 pym/repoman/modules/scan/arches/__init__.py| 30 --
 pym/repoman/modules/scan/arches/arches.py  | 78 --
 pym/repoman/modules/scan/depend/__init__.py|  1 -
 pym/repoman/modules/scan/depend/_gen_arches.py | 57 +++
 pym/repoman/modules/scan/depend/profile.py |  5 +-
 pym/repoman/scanner.py |  2 +-
 6 files changed, 61 insertions(+), 112 deletions(-)

diff --git a/pym/repoman/modules/scan/arches/__init__.py 
b/pym/repoman/modules/scan/arches/__init__.py
deleted file mode 100644
index d66be1e..000
--- a/pym/repoman/modules/scan/arches/__init__.py
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 2015-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-doc = """Arches plug-in module for repoman.
-Performs archs checks on ebuilds."""
-__doc__ = doc[:]
-
-
-module_spec = {
-   'name': 'arches',
-   'description': doc,
-   'provides':{
-   'archs-module': {
-   'name': "arches",
-   'sourcefile': "arches",
-   'class': "ArchChecks",
-   'description': doc,
-   'functions': ['check'],
-   'func_desc': {
-   },
-   'mod_kwargs': ['options', 'repo_settings', 'profiles'
-   ],
-   'func_kwargs': {
-   'arches': ('Future', 'set'),
-   'ebuild': (None, None),
-   },
-   },
-   }
-}
-

diff --git a/pym/repoman/modules/scan/arches/arches.py 
b/pym/repoman/modules/scan/arches/arches.py
deleted file mode 100644
index b86848d..000
--- a/pym/repoman/modules/scan/arches/arches.py
+++ /dev/null
@@ -1,78 +0,0 @@
-# -*- coding:utf-8 -*-
-
-from repoman.modules.scan.scanbase import ScanBase
-
-
-class ArchChecks(ScanBase):
-   '''Perform arch keyword checks'''
-
-   def __init__(self, **kwargs):
-   '''Class init
-
-   @param options: the run time cli options
-   @param repo_settings: repository settings instance
-   @param profiles: dictionary
-   '''
-   self.options = kwargs.get('options')
-   self.repo_settings = kwargs.get('repo_settings')
-   self.profiles = kwargs.get('profiles')
-
-   def check(self, **kwargs):
-   '''Determines the arches for the ebuild following the profile 
rules
-
-   @param ebuild: Ebuild which we check (object).
-   @returns: dictionary, including arches set
-   '''
-   ebuild = kwargs.get('ebuild').get()
-   if self.options.ignore_arches:
-   arches = [[
-   self.repo_settings.repoman_settings["ARCH"], 
self.repo_settings.repoman_settings["ARCH"],
-   
self.repo_settings.repoman_settings["ACCEPT_KEYWORDS"].split()]]
-   else:
-   arches = set()
-   for keyword in ebuild.keywords:
-   if keyword[0] == "-":
-   continue
-   elif keyword[0] == "~":
-   arch = keyword[1:]
-   if arch == "*":
-   for expanded_arch in 
self.profiles:
-   if expanded_arch == 
"**":
-   continue
-   arches.add(
-   (keyword, 
expanded_arch, (
-   
expanded_arch, "~" + expanded_arch)))
-   else:
-   arches.add((keyword, arch, 
(arch, keyword)))
-   else:
-   # For ebuilds with stable keywords, 
check if the
-   # dependencies are satisfiable for 
unstable
-   # configurations, since use.stable.mask 
is not
-   # applied for unstable configurations 
(see bug
-   # 563546).
-   if keyword == "*":
- 

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

2016-04-24 Thread Brian Dolbec
commit: 1cafabf2b61ac43c0ff8694ec3d895fc68a0cac3
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Apr 23 23:54:41 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon Apr 25 03:03:12 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=1cafabf2

ArchChecks: don't mix arches between ebuilds

Fix ArchChecks to not mix arches of ebuilds together, so that
errors are only reported for those arches that the ebuild has
keywords for.

 pym/repoman/modules/scan/arches/arches.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/repoman/modules/scan/arches/arches.py 
b/pym/repoman/modules/scan/arches/arches.py
index 4df25a8..6e1c17d 100644
--- a/pym/repoman/modules/scan/arches/arches.py
+++ b/pym/repoman/modules/scan/arches/arches.py
@@ -69,7 +69,7 @@ class ArchChecks(ScanBase):
arches.add(('**', '**', ('**',)))
# update the dynamic data
dyn_arches = kwargs.get('arches')
-   #dyn_arches.clear()
+   dyn_arches.clear()
dyn_arches.update(arches)
return False
 



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

2016-04-24 Thread Brian Dolbec
commit: 4a19fdd05e2aad4c0c97202c784f9d2f49538c67
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sun Apr 24 01:34:37 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon Apr 25 03:03:04 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4a19fdd0

More new data structure change fixes

Fix arches not being cleared every ebuild.

 pym/repoman/modules/scan/arches/arches.py |  1 +
 pym/repoman/modules/scan/depend/depend.py |  1 +
 pym/repoman/modules/scan/ebuild/__init__.py   |  2 +-
 pym/repoman/modules/scan/ebuild/ebuild.py |  2 +-
 pym/repoman/modules/scan/ebuild/isebuild.py   | 11 --
 pym/repoman/modules/scan/eclasses/live.py |  5 ++-
 pym/repoman/modules/scan/keywords/__init__.py |  4 +-
 pym/repoman/modules/scan/metadata/__init__.py |  2 +-
 pym/repoman/modules/scan/metadata/unused.py   |  2 +-
 pym/repoman/modules/scan/use/use_flags.py | 13 +++---
 pym/repoman/scanner.py| 57 +--
 11 files changed, 62 insertions(+), 38 deletions(-)

diff --git a/pym/repoman/modules/scan/arches/arches.py 
b/pym/repoman/modules/scan/arches/arches.py
index 8bc7a24..4df25a8 100644
--- a/pym/repoman/modules/scan/arches/arches.py
+++ b/pym/repoman/modules/scan/arches/arches.py
@@ -69,6 +69,7 @@ class ArchChecks(ScanBase):
arches.add(('**', '**', ('**',)))
# update the dynamic data
dyn_arches = kwargs.get('arches')
+   #dyn_arches.clear()
dyn_arches.update(arches)
return False
 

diff --git a/pym/repoman/modules/scan/depend/depend.py 
b/pym/repoman/modules/scan/depend/depend.py
index a5f91d3..cd1fb33 100644
--- a/pym/repoman/modules/scan/depend/depend.py
+++ b/pym/repoman/modules/scan/depend/depend.py
@@ -145,6 +145,7 @@ class DependChecks(ScanBase):
 
# update the dynamic data
dyn_unknown = kwargs.get('unknown_pkgs')
+   dyn_unknown.clear()
dyn_unknown.update(unknown_pkgs)
self.set_result_pass([
(kwargs.get('badlicsyntax'), badlicsyntax),

diff --git a/pym/repoman/modules/scan/ebuild/__init__.py 
b/pym/repoman/modules/scan/ebuild/__init__.py
index ea21ece..efb2feb 100644
--- a/pym/repoman/modules/scan/ebuild/__init__.py
+++ b/pym/repoman/modules/scan/ebuild/__init__.py
@@ -21,7 +21,7 @@ module_spec = {
'mod_kwargs': ['portdb', 'qatracker', 'repo_settings'
],
'func_kwargs': {'checkdirlist': 'list', 'checkdir': 
None, 'xpkg': None,
-   'validity_fuse': None, 'can_force': None, 
'pkgs': 'dict',
+   'validity_future': 'Future', 'can_force': None, 
'pkgs': 'dict',
},
},
'ebuild-module': {

diff --git a/pym/repoman/modules/scan/ebuild/ebuild.py 
b/pym/repoman/modules/scan/ebuild/ebuild.py
index b015985..b02cdcd 100644
--- a/pym/repoman/modules/scan/ebuild/ebuild.py
+++ b/pym/repoman/modules/scan/ebuild/ebuild.py
@@ -86,7 +86,7 @@ class Ebuild(ScanBase):
self.qatracker.add_error(
"ebuild.notadded", self.xpkg + "/" + 
self.y_ebuild + ".ebuild")
# update the dynamic data
-   self.set_result_raise([('ebuild', self)])
+   self.set_result_raise([(kwargs.get('ebuild'), self)])
return False
 
def set_pkg_data(self, **kwargs):

diff --git a/pym/repoman/modules/scan/ebuild/isebuild.py 
b/pym/repoman/modules/scan/ebuild/isebuild.py
index 3e288a3..24680e2 100644
--- a/pym/repoman/modules/scan/ebuild/isebuild.py
+++ b/pym/repoman/modules/scan/ebuild/isebuild.py
@@ -13,6 +13,7 @@ from portage import os
 from repoman.qa_data import no_exec, allvars
 from repoman.modules.scan.scanbase import ScanBase
 
+
 class IsEbuild(ScanBase):
'''Performs basic tests to confirm it is an ebuild'''
 
@@ -88,9 +89,13 @@ class IsEbuild(ScanBase):
self.continue_ = True
self.set_result_pass([(can_force, False)])
# set our updated data
-   self.set_result_raise([
-   (kwargs.get('pkgs'), pkgs),
-   ])
+   dyn_pkgs = kwargs.get('pkgs')
+   # clear() sets it to None,
+   # we don't want to kill the pointer reference
+   # just set it back to an empty dict()
+   for key in list(dyn_pkgs):
+   dyn_pkgs.pop(key)
+   dyn_pkgs.update(pkgs)
return self.continue_
 
@property

diff --git a/pym/repoman/modules/scan/eclasses/live.py 
b/pym/repoman/modules/scan/eclasses/live.py
index e5bb7dc..85e829c 100644
--- a/pym/repoman/modules/scan/eclasses/live.py
+++ b/pym/repoman/modules/scan/eclasses/live.py
@@ -25,10 +25,11 @@ class L

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

2016-04-24 Thread Brian Dolbec
commit: 88507f5c1461d0afbe7399f3bd963f4a5e791900
Author: Brian Dolbec  gentoo  org>
AuthorDate: Mon Apr 25 01:09:54 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon Apr 25 03:03:12 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=88507f5c

portage: Create a new extended futures class which adds standard data type 
access

This new class adds standard get, set functions along with optional defaults.
It also adds the capability to ignore InvalidStateErrors when trying to set the 
reslt more 
than once.

 pym/portage/util/futures/extendedfutures.py | 73 +
 1 file changed, 73 insertions(+)

diff --git a/pym/portage/util/futures/extendedfutures.py 
b/pym/portage/util/futures/extendedfutures.py
new file mode 100644
index 000..af384c7
--- /dev/null
+++ b/pym/portage/util/futures/extendedfutures.py
@@ -0,0 +1,73 @@
+# Copyright 2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+#
+# This module provides an extended subset of the asyncio.futures.Futures
+# interface.
+
+from __future__ import unicode_literals
+
+__all__ = (
+   'CancelledError',
+   'ExtendedFuture',
+   'InvalidStateError',
+)
+
+from portage.util.futures.futures import (Future, InvalidStateError,
+   CancelledError)
+
+# Create our one time settable unset constant
+UNSET_CONST = Future()
+UNSET_CONST.set_result(object())
+
+
+class ExtendedFuture(Future):
+   '''Extended Future class adding convienince get and set operations with
+   default result capabilities for unset result().  It also adds pass
+   capability for duplicate set_result() calls.
+   '''
+
+   def __init__(self, default_result=UNSET_CONST.result()):
+   '''Class init
+
+   @param default_result: Optional data type/value to return in 
the event
+  of a result() call when result has not 
yet been
+  set.
+   '''
+   self.default_result = default_result
+   super(ExtendedFuture, self).__init__()
+   self.set = self.set_result
+
+   def set_result(self, data, ignore_InvalidState=False):
+   '''Set the Future's result to the data, optionally don't raise
+   an error for 'InvalidStateError' errors
+
+   @param ignore_exception: Boolean
+   '''
+   if ignore_InvalidState:
+   try:
+   super(ExtendedFuture, self).set_result(data)
+   except InvalidStateError:
+   pass
+   else:
+   super(ExtendedFuture, self).set_result(data)
+
+   def get(self, default=UNSET_CONST.result()):
+   '''Convienience function to wrap result() but adds an optional
+   default value to return rather than raise an InvalidStateError
+
+   @param default: Optional override for the classwide 
default_result
+   @returns: the result data or the default value, raisies an 
exception
+ if result is unset and no default is defined.
+   '''
+   if default is not UNSET_CONST.result():
+   pass
+   elif self.default_result is not UNSET_CONST.result():
+   default = self.default_result
+   if default is not UNSET_CONST.result():
+   try:
+   data = super(ExtendedFuture, self).result()
+   except InvalidStateError:
+   data = default
+   else:
+   data = super(ExtendedFuture, self).result()
+   return data



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

2016-04-24 Thread Brian Dolbec
commit: d0454110c604d328777f3391854299a449e66f89
Author: Brian Dolbec  gentoo  org>
AuthorDate: Mon Apr 25 01:15:36 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon Apr 25 03:05:50 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=d0454110

repoman: Convert all pointer type dynamic_data to the new ExtendedFuture class

 pym/repoman/main.py| 13 ++---
 pym/repoman/modules/scan/arches/__init__.py|  4 +-
 pym/repoman/modules/scan/arches/arches.py  |  5 +-
 pym/repoman/modules/scan/depend/__init__.py| 22 +--
 pym/repoman/modules/scan/depend/depend.py  | 15 +++--
 pym/repoman/modules/scan/depend/profile.py | 10 ++--
 pym/repoman/modules/scan/depend/unknown.py |  6 +-
 pym/repoman/modules/scan/directories/__init__.py   | 12 +++-
 pym/repoman/modules/scan/directories/files.py  |  2 +-
 pym/repoman/modules/scan/directories/mtime.py  |  4 +-
 pym/repoman/modules/scan/eapi/__init__.py  |  3 +-
 pym/repoman/modules/scan/eapi/eapi.py  |  2 +-
 pym/repoman/modules/scan/ebuild/__init__.py| 29 ++---
 pym/repoman/modules/scan/ebuild/ebuild.py  | 18 +++---
 pym/repoman/modules/scan/ebuild/isebuild.py| 17 ++
 pym/repoman/modules/scan/ebuild/multicheck.py  |  4 +-
 pym/repoman/modules/scan/eclasses/__init__.py  | 12 +++-
 pym/repoman/modules/scan/eclasses/live.py  | 11 ++--
 pym/repoman/modules/scan/eclasses/ruby.py  |  4 +-
 pym/repoman/modules/scan/fetch/__init__.py |  9 ++-
 pym/repoman/modules/scan/fetch/fetches.py  |  3 +-
 pym/repoman/modules/scan/keywords/__init__.py  |  9 ++-
 pym/repoman/modules/scan/keywords/keywords.py  |  6 +-
 pym/repoman/modules/scan/manifest/__init__.py  |  4 +-
 pym/repoman/modules/scan/metadata/__init__.py  | 39 +
 pym/repoman/modules/scan/metadata/description.py   |  4 +-
 .../modules/scan/metadata/ebuild_metadata.py   | 11 ++--
 pym/repoman/modules/scan/metadata/license.py   |  4 +-
 pym/repoman/modules/scan/metadata/pkgmetadata.py   | 12 ++--
 pym/repoman/modules/scan/metadata/restrict.py  |  2 +-
 pym/repoman/modules/scan/metadata/unused.py|  6 +-
 pym/repoman/modules/scan/mirrors/__init__.py   |  4 +-
 .../modules/scan/mirrors/thirdpartymirrors.py  |  5 +-
 pym/repoman/modules/scan/scanbase.py   | 36 
 pym/repoman/modules/scan/status/__init__.py|  7 ++-
 pym/repoman/modules/scan/status/vcsstatus.py   |  5 +-
 pym/repoman/modules/scan/use/__init__.py   | 10 +++-
 pym/repoman/modules/scan/use/use_flags.py  | 10 +---
 pym/repoman/scanner.py | 68 +-
 39 files changed, 255 insertions(+), 192 deletions(-)

diff --git a/pym/repoman/main.py b/pym/repoman/main.py
index 62c3c2c..2009a44 100755
--- a/pym/repoman/main.py
+++ b/pym/repoman/main.py
@@ -22,8 +22,8 @@ import portage.repository.config
 from portage.output import create_color_func, nocolor
 from portage.output import ConsoleStyleFile, StyleWriter
 from portage.util import formatter
-from portage.util.futures import (
-   Future,
+from portage.util.futures.extendedfutures import (
+   ExtendedFuture,
InvalidStateError,
 )
 
@@ -79,7 +79,7 @@ def repoman_main(argv):
# Set this to False when an extraordinary issue (generally
# something other than a QA issue) makes it impossible to
# commit (like if Manifest generation fails).
-   can_force = Future()
+   can_force = ExtendedFuture(True)
 
portdir, portdir_overlay, mydir = 
utilities.FindPortdir(repoman_settings)
if portdir is None:
@@ -174,14 +174,9 @@ def repoman_main(argv):
qa_output = qa_output.getvalue()
qa_output = qa_output.splitlines(True)
 
-   try:
-   can_force = can_force.result()
-   except InvalidStateError:
-   can_force = True
-
# output the results
actions = Actions(repo_settings, options, scanner, vcs_settings)
-   if actions.inform(can_force, result):
+   if actions.inform(can_force.get(), result):
# perform any other actions
actions.perform(qa_output)
 

diff --git a/pym/repoman/modules/scan/arches/__init__.py 
b/pym/repoman/modules/scan/arches/__init__.py
index e4a4806..d66be1e 100644
--- a/pym/repoman/modules/scan/arches/__init__.py
+++ b/pym/repoman/modules/scan/arches/__init__.py
@@ -20,7 +20,9 @@ module_spec = {
},
'mod_kwargs': ['options', 'repo_settings', 'profiles'
],
-   'func_kwargs': {'ebuild': None, 'arches': 'set',
+   'func_kwargs': {
+   'arches': ('Future', 'set'),
+   'ebuild': (None, None),
},
},

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

2016-04-24 Thread Brian Dolbec
commit: f902c8684148a635aa9c780908e60ec2ff4a1fc6
Author: Brian Dolbec  gentoo  org>
AuthorDate: Sun Apr 24 08:04:59 2016 +
Commit: Brian Dolbec  gentoo  org>
CommitDate: Mon Apr 25 03:03:12 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=f902c868

portage: Move the new util/futures.py to a futures subpkg

 pym/portage/util/futures/__init__.py  | 0
 pym/portage/util/{ => futures}/futures.py | 0
 pym/repoman/scanner.py| 2 +-
 3 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/pym/portage/util/futures/__init__.py 
b/pym/portage/util/futures/__init__.py
new file mode 100644
index 000..e69de29

diff --git a/pym/portage/util/futures.py b/pym/portage/util/futures/futures.py
similarity index 100%
rename from pym/portage/util/futures.py
rename to pym/portage/util/futures/futures.py

diff --git a/pym/repoman/scanner.py b/pym/repoman/scanner.py
index eaf023b..b3eeafd 100644
--- a/pym/repoman/scanner.py
+++ b/pym/repoman/scanner.py
@@ -9,7 +9,7 @@ import portage
 from portage import normalize_path
 from portage import os
 from portage.output import green
-from portage.util.futures import Future
+from portage.util.futures.futures import Future
 from repoman.modules.commit import repochecks
 from repoman.profile import check_profiles, dev_profile_keywords, setup_profile
 from repoman.repos import repo_metadata



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

2016-04-24 Thread Andrew John Hughes
commit: e9abb6ce586b2c16fbb95df6c48e8a3f031d437e
Author: Andrew John Hughes  member  fsf  org>
AuthorDate: Mon Apr 25 01:16:33 2016 +
Commit: Andrew John Hughes  member  fsf  org>
CommitDate: Mon Apr 25 01:16:33 2016 +
URL:https://gitweb.gentoo.org/proj/java.git/commit/?id=e9abb6ce

dev-java/icedtea: Update to 3.0.1; http://bitly.com/it30001

Package-Manager: portage-2.2.27

 dev-java/icedtea/ChangeLog |  6 ++
 dev-java/icedtea/Manifest  | 18 
 dev-java/icedtea/files/8-ccache.patch  | 11 --
 .../{icedtea-3.0.0.ebuild => icedtea-3.0.1.ebuild} | 25 ++
 4 files changed, 26 insertions(+), 34 deletions(-)

diff --git a/dev-java/icedtea/ChangeLog b/dev-java/icedtea/ChangeLog
index 079d96d..5d9bfb9 100644
--- a/dev-java/icedtea/ChangeLog
+++ b/dev-java/icedtea/ChangeLog
@@ -2,6 +2,12 @@
 # Copyright 1999-2016 Gentoo Foundation; Distributed under the GPL v2
 # $Header: $
 
+*icedtea-3.0.1 (25 Apr 2016)
+
+  25 Apr 2016; Andrew John Hughes 
+  +icedtea-3.0.1.ebuild, -files/8-ccache.patch, -icedtea-3.0.0.ebuild:
+  dev-java/icedtea: Update to 3.0.1; http://bitly.com/it30001
+
 *icedtea-7.2.6.6 (22 Apr 2016)
 
   22 Apr 2016; Andrew John Hughes 

diff --git a/dev-java/icedtea/Manifest b/dev-java/icedtea/Manifest
index 4141205..bbf3dd7 100644
--- a/dev-java/icedtea/Manifest
+++ b/dev-java/icedtea/Manifest
@@ -13,15 +13,15 @@ DIST icedtea-2.7-jaxws-76aade5c18f8.tar.bz2 2021815 SHA256 
bc65e3078623f2d85df47
 DIST icedtea-2.7-jdk-3fc5cbcd46dd.tar.bz2 32414746 SHA256 
44adca39f854ce57defd7692796c193f9bf638a1110e283cc369552ec66bbba2 SHA512 
73f21e74f10aa74a0cfb6102ae8d59e3799e11090ce92358f198cc5db923444833f1c1e28a8dc70aba091ab3ee93df24244ad90677144dda15c23f5b79e93f64
 WHIRLPOOL 
6dcddd80bd74e60a0a0546a5668994f2b0241465289777fd0863722a9f8bb06daeddb3fd6bef3b073eb3ae85c101848ca0eb646d22ff9c010f144c8f54f6a5da
 DIST icedtea-2.7-langtools-caa50dd46a14.tar.bz2 1709753 SHA256 
1a7195adfc1f05ecdf17559dd8afccbbd9b8c61e96f290a1e2ca9659856b4fa7 SHA512 
ec0d89ade1edd7e2500f4257de8a6dd8afe8e89e8d14a730963378008060dd6a087e40cc4faaf769e7b9ca6f070356d70a0523359a81ed39ac9d032c9f3c4ec2
 WHIRLPOOL 
da0e7fdb5ca5a65b19eefcb7e8c4d90337d73d2cbb85fe01c327969f85a1acd552dd97abb4d7bb9fcf87c0fafa1b0e1d6fc07e7f19507c428037e0e1dc02ed29
 DIST icedtea-2.7-openjdk-7f245987a287.tar.bz2 129791 SHA256 
72ab3fe89fab55d430af49ffaae216317e8a88b963350a7a695870f7fd744c33 SHA512 
2ab9673ff532a77d339039c83f5253790c5fdf6e17eacb2e7af4b70e51ba1d0a74cfc81cdb3f8ea62ead73015ca53ff1dafe5e309d575de3e4d1d7c18c0960ab
 WHIRLPOOL 
27093166c56cc5e89a3493e0e505b3e97b374d454e51d8fc47e65e539c55881854a7efc829749529b3bebc7e183b19c319fe4b0934cb483e8a3fc2af20c42232
-DIST icedtea-3.0-corba-37af47894175.tar.xz 936876 SHA256 
d77480d5d0c9620562a66b01fda9be4de58c2881cec680b4f2682ef09087b3cc SHA512 
21b2f069f1eaca62a46518173de3c1368963db489f436d5ad705c7cb36ecc259d342c059c4c593427e96604164f78be761e1fe4118d8517ece3630280524ad30
 WHIRLPOOL 
ac7292f0a32cfa7b58d3616b704bfd90ead49044bb51fccc1ca87900555d15f28b3d3137512fe007b40f0a130d3e6eb9d805112725914b0f0721ac8dbad8794c
-DIST icedtea-3.0-hotspot-5e587a29a6aa.tar.xz 6766584 SHA256 
76717fa6a84fde60075c19fbc261709bd9c3b849952c817c0ac6b46b757ac0d7 SHA512 
c8a2355ef81ad1dd4a2f6be0e5cdaba9d6d66a4fd5514718cc09ed391bcce269a17a34fbc89d7c6d3e7a2632f2ffcb0028a8faaf41649055a096407a24cacd0e
 WHIRLPOOL 
4e83ea5ee631ca76e7919a944f9f1a3a007ca951a99552ee087bd6d2d6e027c5ce9963ec3c593c8132a984dd9818fc42abfb0792b3628d44491488700b20ec09
-DIST icedtea-3.0-jaxp-4ed5441e40e1.tar.xz 2296120 SHA256 
4ccce5442642561cda78116a019f5c0ea690725a374ccf5695b3af00393d26e8 SHA512 
47e968f674176f74706ab268098a1635a54de7282993abc46a1c72c8d24f21216ed898bbca830623f5afd11912a744138547d6d22a82f68fa1ba15ccc7a9e375
 WHIRLPOOL 
e94f961336d1e8b176ab2486ae98852049f930af3ee31dd3f7491544244c78d6b5657334fb45b9cc863bb6c377a6b1ab5d71df1257d02bc9e79513cd41ecc2ce
-DIST icedtea-3.0-jaxws-a81c04154cc5.tar.xz 2266356 SHA256 
ef550609aaa526084256a7fdf6c326015641d6d8c80540c830c0c62302a2f076 SHA512 
53ef8dfb1fa0602bfbbb75ca1f8a80af6c09029f22e69625680ce55aa04b820bdfc042d57e5edafbf25ea4f43c32fb988bad9e19b78676cb937af9062ec28ca2
 WHIRLPOOL 
d76bae6c0b1540fe28dbbb5d516fea2c09facb29fd605df38429273e8358de6d0ca1f685098aa3c334a4ca9eeff66ff9759ba704697786a230315d236e01cca1
-DIST icedtea-3.0-jdk-3334efeacd83.tar.xz 38245460 SHA256 
fa74b8aaa389495a685f3a28151a1957ff8ff88a4d4792059c5c1fb7c12eb1cd SHA512 
92106e36d9dd522c355eec877709862b7e1ae18790a0965fa7fc74c1cd2b4aea145b630e37fa953e9cfd0feaadcba0117675bbb8e2c5705379078e16ac53a37e
 WHIRLPOOL 
86cd77313b1fc50d6ff96de3e41d2d9c53627971ba475120d1724a1a690876e3383be6633baf074e14d95f0c0c16727f4bda5465ee66423dba1c8cc6533ab800
-DIST icedtea-3.0-langtools-dd581e8047e6.tar.xz 2055716 SHA256 
e0e0e6a7cf8575506579306f76cca872b01a3f08a4880fb9b316444fb206ea86 SHA512 
da64e53d360f591af599105cb244898f5092c3613f12f013244f9180b27629efcc0d5abbf2cf304

[gentoo-commits] data/gentoo-news:master commit in: 2016-04-24-default-video-cards/

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: c19c5f5dea8c56f1d2045c630821e9aa34589bc3
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 23:13:32 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 23:13:32 2016 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=c19c5f5d

Change 2016-04-24-default-video-cards to News-Item-Format 1.0

It seems that portage complains about unknown formats rather than ignore them.

 .../2016-04-24-default-video-cards.en.txt  | 19 ---
 .../2016-04-24-default-video-cards.en.txt.asc  | 28 +++---
 2 files changed, 30 insertions(+), 17 deletions(-)

diff --git 
a/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt 
b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt
index e17cc02..8a94240 100644
--- a/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt
+++ b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt
@@ -2,9 +2,22 @@ Title: Changes in default VIDEO_CARDS
 Author: Chí-Thanh Christopher Nguyễn 
 Content-Type: text/plain
 Posted: 2016-04-24
-Revision: 1
-News-Item-Format: 2.0
-Display-If-Installed: 
x11-base/xorg-drivers[video_cards_dummy,video_cards_fbdev,video_cards_glint,video_cards_intel,video_cards_mach64,video_cards_mga,video_cards_nouveau,video_cards_nv,video_cards_r128,video_cards_radeon,video_cards_savage,video_cards_tdfx,video_cards_trident,video_cards_v4l,video_cards_vesa,video_cards_via,video_cards_vmware]
+Revision: 2
+News-Item-Format: 1.0
+Display-If-Keyword: amd64
+Display-If-Keyword: x86
+Display-If-Installed: x11-drivers/xf86-video-dummy
+Display-If-Installed: x11-drivers/xf86-video-glint
+Display-If-Installed: x11-drivers/xf86-video-mach64
+Display-If-Installed: x11-drivers/xf86-video-mga
+Display-If-Installed: x11-drivers/xf86-video-nv
+Display-If-Installed: x11-drivers/xf86-video-r128
+Display-If-Installed: x11-drivers/xf86-video-savage
+Display-If-Installed: x11-drivers/xf86-video-tdfx
+Display-If-Installed: x11-drivers/xf86-video-trident
+Display-If-Installed: x11-drivers/xf86-video-v4l
+Display-If-Installed: x11-drivers/xf86-video-via
+Display-If-Installed: x11-drivers/xf86-video-vmware
 
 In order to better reflect the graphics chipsets present on modern
 systems, the default VIDEO_CARDS setting has been changed to

diff --git 
a/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt.asc 
b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt.asc
index f7b9904..ff30974 100644
--- a/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt.asc
+++ b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt.asc
@@ -1,19 +1,19 @@
 -BEGIN PGP SIGNATURE-
 Version: GnuPG v2.0
 
-iQJ8BAABCgBmBQJXHTkXXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
+iQJ8BAABCgBmBQJXHVL1XxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
 ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ1RDFCODdDQUUxMkUwNkJCNjUyMDMxOEIy
-MzI0RTdCNTY2REYyNjExAAoJECMk57Vm3yYRTJ4QAKEVzpgW8Px+hG7iHHtIMPvc
-eWQiXl82+TLTncMe3dhiETL+X8x9KSbPV92ViirsvDDNIPbgw89JvDHTh6wKatji
-RAdMuy9D4yWe15ecGhYsxegHnkPz573qq7TtAr0vVacb96lWLeqRUfJa5/cFJGKQ
-AVgsjGGMEhhaC2qBYwecNoel2JCVJtj8bUcVfUVuZPWoE8eYEql12OqFfXWetvNE
-AsXFAR1cmlFVYLe1TVMClmHGUPjYLgdAXIJ7KO8XnfQYg0cNBF6cpjVjo9Hfr4gF
-gKqIqKY8pTghpHllB3pSzZfYs2KggL5R0otYM47sW3IaGtDqv/jQl19YWbJwqVdY
-fv2MkerV4JboUVmEbYrGdgrR3nqHXx4el/n0GUKWSpana93eGaV1TsG7TOnFdadG
-At87XPRYxo5hZeSRmzfanW+5s2WVzUrvIvGtNhbNsWvAWKk+/a1IvO8N2MXbbTN0
-Ch3YRcyLlF+K6NYHOUl+d8mw32fEkQ9wjaQ2NVBnbr0878AEH/E2w/u046fLwBEU
-AEDQwEXq5VIAYx/tnIqW9RBg0TSo6vh1JFG4sKeNdDlliCuE97i2+pDJv6Phn/sH
-zg11As8EjZf/2n+SUA1REnUeSjG34O6X1d3EaS1yH5uhAGWwpFMY1fZjjExQEgI4
-UfzHkIvptRObONFDVZzj
-=8kKx
+MzI0RTdCNTY2REYyNjExAAoJECMk57Vm3yYRoFoQAIn0QswHkr2wwycM21mhnq99
+zTfSEo6UqZdPfaBItyM1QPzRjzLd1tm4henp1ebTCL8GJhjzpA0mrhk6oHa8KWuZ
+qVkcj5hUuCuBqAjSq+XSzbwGAbvgtm76GA5mgAT6/UOTISStYmum/niKS6dGnJo1
+pgfld2eQG7hRNSeXpRXPb3NMnVv4XTz0UvRTq/2rrqrdHnIa0RtBo6l03HP+ays7
+nivcNCgFv1UUKzaK4Dfwj5Ro6txJdYKxNlsupwIpPCjZs+tAjsAYKb/JqvpE3j8d
+mSA7nUJ2ZoeDtEKID8UoF6ccWzBUBYBBMxnsmKVYMMOHIn9+NvtnkwP7kMlv329I
+4aXoBTzdxq1g+EL0S9hEP+Jw7t+9w4SEoq5n8BSHaZ+9zRTgHcQhC+vlik6fpvb7
+C6z9KHCyPOWFfeNx/O/ENnG0jtmOOI7aX8Th9TKTk21a49gf9ichf5kvUQiIP+Q3
+uCCx7helJb9dcouAS0JHhvg+r+MadOOBB5XLeEXaVHkefNiyZh3dhlC8TuqJAe8x
+XYXzA9ad/HysKQRnKxGhRAlCjQsh9GkfciUglx1Oe1XnRuzms8V7z3OjzeYuA7JA
+TbYb3yjDEH860qjbeaYpz9ZjhLxP2iD3bYXQYUzQNVQmK4JLBwj7oyaJppS1Rrw3
+IB6GjyhU7cq3hluh/rm8
+=cfJi
 -END PGP SIGNATURE-



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

2016-04-24 Thread Ryan Hill
commit: b2bd3abe2763199cf1d339bb3300084e786dee36
Author: Ryan Hill  gentoo  org>
AuthorDate: Sun Apr 24 22:55:21 2016 +
Commit: Ryan Hill  gentoo  org>
CommitDate: Sun Apr 24 22:55:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2bd3abe

kde5.eclass: Spell iuse correctly.

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

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index c880cee..3b454ef 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -392,7 +392,7 @@ kde5_src_prepare() {
fi
 
# drop translations when nls is not wanted
-   if [[ -d po ]] && ! use_if_isue nls ; then
+   if [[ -d po ]] && ! use_if_iuse nls ; then
rm -rf po || die
fi
 



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

2016-04-24 Thread NP Hardass
commit: cf3b622c59c4d5f02ba98c7867c34f506d77ee12
Author: NP-Hardass  gentoo  org>
AuthorDate: Sun Apr 24 22:10:13 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Sun Apr 24 22:10:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf3b622c

app-emulation/wine:  Fix manifest for 1.8.2

Local sources were grabbed prior to upstream release, and
were accidentally included in the manifest.

Package-Manager: portage-2.2.26

 app-emulation/wine/Manifest | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/wine/Manifest b/app-emulation/wine/Manifest
index c3a99a0..77bcd0c 100644
--- a/app-emulation/wine/Manifest
+++ b/app-emulation/wine/Manifest
@@ -43,7 +43,7 @@ DIST wine-1.7.8.tar.bz2 21463503 SHA256 
30e17f5f863a09416f3d229666566b318dbb40f6
 DIST wine-1.7.9.tar.bz2 21323337 SHA256 
79f99ecc24696915439c474c4953bb77652ab53f16b41daa4da270fe43279c5a SHA512 
29f8aa715ebe47c8a06bd5f6a80cac3fb75b2ca7aa81648cc8aed5461cfd825e4da68b6209ca672dce42b968521cfd9baadd2d85b904b55d99687a1c83d0
 WHIRLPOOL 
333fee72b2a0e9d6ab8a003712c38166bd27aaff384a2b940c089ecc846f7669c59efbeb5cdc2fc87a46d63b0d29d0335873bb7c22f05913bad430b81990241a
 DIST wine-1.8-gstreamer-1.0.patch.bz2 30908 SHA256 
00cc1e943e2dffb7d588bb5befd444655a661bc0a0e51e49651af47e9421c501 SHA512 
46901b549b1c84f7d8f8ff4485d1faf60a108cdf84feddc754739aff918e1e979b0b8a1a2604e5df6693bdfb02a3324516a187187f019bea13bc5485fc51aec9
 WHIRLPOOL 
afe4caaf7b3d7ab07a9d8f6ea32125c1838745d399eb9ef2211c669bcd445ae5020991bd729b0460a6804fe5d44a2f42c32d94b2de32cc4b338f9391dcc6f78c
 DIST wine-1.8.1.tar.bz2 22839063 SHA256 
149ad3daaf8593b36c5c061285df0ec2a25e20ea48c61323be91088c4d22ca97 SHA512 
e4cc3d00f28a616326f3069c7eeb94dc07759018b719bc37fe733b0f5e5d17f54ed2e877a964e9ea235362c49bf45bb3ec7072fba3d66648e6c7d55568e863cb
 WHIRLPOOL 
8970d900c769add34a079f84c0562fca2d7e303ee9aa15de0fe2fde059de01256951c5ffeddb7b0a126599636e83d0d4ebdb8c0df5cde218fe8858e8b2451a0a
-DIST wine-1.8.2.tar.bz2 23635449 SHA256 
031b465cb5252f9b3cc62b2b7c16545e1138aea4896170eab19b6674f4311e94 SHA512 
7861fce21aa9891d7086343591e4ea241e476e0d4c54485f7ce687bfc2b5e0fc7bc025e4b83a9f6ca3a99d50597bcb1ab5fc4983f4c59eb699cc584385c6cadf
 WHIRLPOOL 
bf2b42e8ce973af760b080998aef22881cc20a6865cdfe81d941212ea164dd1b0e91f1115ad516055b8b498bc224d767716d47e3fdaa7a0cbf52427e5e5f1c88
+DIST wine-1.8.2.tar.bz2 22857786 SHA256 
51624fadf0145e87f0c01e7ce8524ea1e8d9d360c3e8a86e78cd26a52ce55a6f SHA512 
ed4883443b29c00409143932de40c543a65acfc01ce61f223e6ed852e6869d1936e5d6c1c3942335d2fb6c9ee923f6187ba9f3207af9900911c4258c0266a321
 WHIRLPOOL 
6e658ad3def7b3784753df00534ba67f6b634691a058e20bfefcf4dc44c126e5afc1789135b9e6925e1d79afa82d1c2c39ff696b6a0318d080774d829c5e978d
 DIST wine-1.8.tar.bz2 22843418 SHA256 
f33b45c18112b2071fbf9edee0e8c575407f9e2a9855ca4ee918ed33efa7c6f4 SHA512 
34308e82e04dee714fdbd10f29cd6cf6326e5e6e9134f7076e58b09988211065b8c6584881b7e5dcbc9b3906a819ab8a72b612b060cb9aa50b5b67f03bdab089
 WHIRLPOOL 
335a48f1b34cd1038d62290e52c3189b842d4077b7cf0bcb9d003595992360dc36eac1c592d31db44598de68010f3934daa1f4bcd0a2ca74aa130a39a74f7ce3
 DIST wine-1.9.4.tar.bz2 22974777 SHA256 
75c1eab6b980870b367a73db6e57eb0dc9242c2be8546f94084577a0ed08 SHA512 
e7b35290ec8f451163a08e841c559698a6b7264b320058e38ac788bdde66042efbb88511b30fa38383844425eaf0b6f4ed4b8412feb843ed405cb510a4a9000c
 WHIRLPOOL 
875e11e9163df8c3473aa7b79deb5c6783a2068e678c4008cacf730d81c2f141490264a10f4345ceadd7aba100d3fc71bdfda7858f89d966d339cc2772cd8190
 DIST wine-1.9.5.tar.bz2 23034629 SHA256 
fb526308e7ac5e202c0f0b663d4c7a943419d9eec766af6831caf23914300f09 SHA512 
cae779353bff61c215d0969288afe6e6e5192cdf0f86f8b15073861f0a22cb6b508ceb084e9b2cb5c5c658abfec5751edf9cb48930bc97c43ecbd6953427fc07
 WHIRLPOOL 
7f0c29b13b67660d364b2bbc86982a92f73409cfca3e8a31817c39df36d9ad476a9762f135d85fbb947746367277576a97fb6a012f346c11454c43ef75ac9fa7
@@ -86,7 +86,7 @@ DIST wine-staging-1.7.53.tar.gz 9638222 SHA256 
438f41165987a57635694dba2f67cc435
 DIST wine-staging-1.7.54.tar.gz 9647030 SHA256 
b244ab05326e0a4c149beba0684afc100d44dca8e6ff606bcfee883b21b27303 SHA512 
f6e58be01ba10121d6904cb238b2d91dd79cb7d14d623c00a897e655adb88332bea125cedf3fad85e680c76aacfbab16dd5035c322278155defd3b493054aa23
 WHIRLPOOL 
4c053ad96e67f4e82c93d3cfa9b6f885c4c3fe693946dd0e2a30cef556aac55f9dcafb5c56ced0f714f8ea9448cb4e22f144ea7f3561cfdb5bbff1b049d34f07
 DIST wine-staging-1.7.55.tar.gz 9604441 SHA256 
856b630fe95250e3d2dfc80588529e42e92e37f2e974ce8d3da37b39bf5cc3c3 SHA512 
a6fbfa01b6d6efc75f79235aea86091c32ddf91ca300c73325c8347949c627f53ceb0fe085d6c212602797b0496d36c0a79f08eae4644a17774e95906332032d
 WHIRLPOOL 
ad232568c9df5d436a79a3557c82e231eed121356d8db1f5a3c0e7249b6c2760d87bb433ff30d6db53ce190b2d49401aa387b06f0c3f74925aefea7b1d73f112
 DIST wine-staging-1.8.1.tar.gz 9598557 SHA256 
12a4e54376515e2ab8ad79855ba724ba065c8de619c5da192ec528cc365f9c97 SHA512 
d24bb78aed1e50ad73e742608048a68097d40e3c6563c1bd5adc2fab6abe0838dbce2d9f700ef71

[gentoo-commits] repo/gentoo:master commit in: profiles/arch/amd64/, profiles/arch/x86/, profiles/hardened/linux/x86/

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: ec8d2bb8bbd40791cc931d5f3d987adea7362944
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 21:36:10 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 21:36:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec8d2bb8

profiles: adjust VIDEO_CARDS

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

 profiles/arch/amd64/make.defaults | 2 +-
 profiles/arch/x86/make.defaults   | 2 +-
 profiles/hardened/linux/x86/make.defaults | 5 +
 3 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/profiles/arch/amd64/make.defaults 
b/profiles/arch/amd64/make.defaults
index 2beb988..96a6803 100644
--- a/profiles/arch/amd64/make.defaults
+++ b/profiles/arch/amd64/make.defaults
@@ -45,7 +45,7 @@ ABI_X86="64"
 
 # 2006/08/18 - Donnie Berkholz 
 # Defaults for video drivers
-VIDEO_CARDS="fbdev glint intel mach64 mga nouveau nv r128 radeon savage sis 
tdfx trident vesa via vmware voodoo"
+VIDEO_CARDS="amdgpu fbdev intel nouveau radeon radeonsi vesa"
 
 # 2006/12/22 - Danny van Dyk 
 # Default for ALSA_CARDS USE_EXPAND variable.

diff --git a/profiles/arch/x86/make.defaults b/profiles/arch/x86/make.defaults
index 02ba738..e8257d4 100644
--- a/profiles/arch/x86/make.defaults
+++ b/profiles/arch/x86/make.defaults
@@ -29,7 +29,7 @@ LIBDIR_x86="lib"
 
 # 2006/08/18 - Donnie Berkholz 
 # Defaults for video drivers
-VIDEO_CARDS="fbdev glint intel mach64 mga nouveau nv r128 radeon savage sis 
tdfx trident vesa via vmware voodoo"
+VIDEO_CARDS="amdgpu fbdev intel nouveau radeon radeonsi vesa"
 
 # 2006/12/21 - Andrej Kacian 
 # Defaults for audio drivers

diff --git a/profiles/hardened/linux/x86/make.defaults 
b/profiles/hardened/linux/x86/make.defaults
index 65bc7aa..05cc320 100644
--- a/profiles/hardened/linux/x86/make.defaults
+++ b/profiles/hardened/linux/x86/make.defaults
@@ -15,10 +15,7 @@ USE="nptl"
 
 # 2006/08/18 - Donnie Berkholz 
 # Defaults for video drivers
-VIDEO_CARDS="apm ark chips cirrus cyrix dummy fbdev glint i128 i740 intel \
-   mach64 mga nsc nv r128 radeon rendition s3 s3virge savage \
-   siliconmotion sis sisusb tdfx tga trident tseng v4l vesa via vmware \
-   voodoo"
+VIDEO_CARDS="amdgpu fbdev intel nouveau radeon radeonsi vesa"
 
 # 2006/12/21 - Andrej Kacian 
 # Defaults for audio drivers



[gentoo-commits] data/gentoo-news:master commit in: 2016-04-24-default-video-cards/

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: fd51bf816dcbc6213a8715442bba9c95b9f41a9d
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 21:26:37 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 21:26:37 2016 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=fd51bf81

Add 2016-04-24-default-video-cards

 .../2016-04-24-default-video-cards.en.txt | 14 ++
 .../2016-04-24-default-video-cards.en.txt.asc | 19 +++
 2 files changed, 33 insertions(+)

diff --git 
a/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt 
b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt
new file mode 100644
index 000..e17cc02
--- /dev/null
+++ b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt
@@ -0,0 +1,14 @@
+Title: Changes in default VIDEO_CARDS
+Author: Chí-Thanh Christopher Nguyễn 
+Content-Type: text/plain
+Posted: 2016-04-24
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Installed: 
x11-base/xorg-drivers[video_cards_dummy,video_cards_fbdev,video_cards_glint,video_cards_intel,video_cards_mach64,video_cards_mga,video_cards_nouveau,video_cards_nv,video_cards_r128,video_cards_radeon,video_cards_savage,video_cards_tdfx,video_cards_trident,video_cards_v4l,video_cards_vesa,video_cards_via,video_cards_vmware]
+
+In order to better reflect the graphics chipsets present on modern
+systems, the default VIDEO_CARDS setting has been changed to
+"amdgpu fbdev intel nouveau radeon radeonsi vesa"
+
+If your graphics chipset requires a different driver, and you have not set
+VIDEO_CARDS in make.conf, it is advisable to do that now.

diff --git 
a/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt.asc 
b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt.asc
new file mode 100644
index 000..f7b9904
--- /dev/null
+++ b/2016-04-24-default-video-cards/2016-04-24-default-video-cards.en.txt.asc
@@ -0,0 +1,19 @@
+-BEGIN PGP SIGNATURE-
+Version: GnuPG v2.0
+
+iQJ8BAABCgBmBQJXHTkXXxSAAC4AKGlzc3Vlci1mcHJAbm90YXRpb25zLm9w
+ZW5wZ3AuZmlmdGhob3JzZW1hbi5uZXQ1RDFCODdDQUUxMkUwNkJCNjUyMDMxOEIy
+MzI0RTdCNTY2REYyNjExAAoJECMk57Vm3yYRTJ4QAKEVzpgW8Px+hG7iHHtIMPvc
+eWQiXl82+TLTncMe3dhiETL+X8x9KSbPV92ViirsvDDNIPbgw89JvDHTh6wKatji
+RAdMuy9D4yWe15ecGhYsxegHnkPz573qq7TtAr0vVacb96lWLeqRUfJa5/cFJGKQ
+AVgsjGGMEhhaC2qBYwecNoel2JCVJtj8bUcVfUVuZPWoE8eYEql12OqFfXWetvNE
+AsXFAR1cmlFVYLe1TVMClmHGUPjYLgdAXIJ7KO8XnfQYg0cNBF6cpjVjo9Hfr4gF
+gKqIqKY8pTghpHllB3pSzZfYs2KggL5R0otYM47sW3IaGtDqv/jQl19YWbJwqVdY
+fv2MkerV4JboUVmEbYrGdgrR3nqHXx4el/n0GUKWSpana93eGaV1TsG7TOnFdadG
+At87XPRYxo5hZeSRmzfanW+5s2WVzUrvIvGtNhbNsWvAWKk+/a1IvO8N2MXbbTN0
+Ch3YRcyLlF+K6NYHOUl+d8mw32fEkQ9wjaQ2NVBnbr0878AEH/E2w/u046fLwBEU
+AEDQwEXq5VIAYx/tnIqW9RBg0TSo6vh1JFG4sKeNdDlliCuE97i2+pDJv6Phn/sH
+zg11As8EjZf/2n+SUA1REnUeSjG34O6X1d3EaS1yH5uhAGWwpFMY1fZjjExQEgI4
+UfzHkIvptRObONFDVZzj
+=8kKx
+-END PGP SIGNATURE-



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-libinput/

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: 1db0237eeef3f51ded7202a7750da0c2fea48ec8
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 21:04:09 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 21:06:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1db0237e

x11-drivers/xf86-input-libinput: check for CONFIG_TIMERFD

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

Package-Manager: portage-2.2.26

 x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild 
b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild
index f87e480..2d48e34 100644
--- a/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild
+++ b/x11-drivers/xf86-input-libinput/xf86-input-libinput-0.18.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-inherit xorg-2
+inherit linux-info xorg-2
 
 DESCRIPTION="X.org input driver based on libinput"
 
@@ -15,3 +15,8 @@ RDEPEND=">=dev-libs/libinput-1.2.0:0="
 DEPEND="${RDEPEND}"
 
 DOCS=( "README.md" "conf/90-libinput.conf" )
+
+pkg_pretend() {
+   CONFIG_CHECK="~TIMERFD"
+   check_extra_config
+}



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

2016-04-24 Thread Davide Pesavento
commit: 0db21628d30ec104b3e02fe6c224fd8cf5c32cc1
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 20:56:37 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 20:59:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0db21628

dev-python/pyqwt: fix indentation in metadata

Package-Manager: portage-2.2.28

 dev-python/pyqwt/metadata.xml | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-python/pyqwt/metadata.xml b/dev-python/pyqwt/metadata.xml
index 73bd90d..7f74fab 100644
--- a/dev-python/pyqwt/metadata.xml
+++ b/dev-python/pyqwt/metadata.xml
@@ -6,12 +6,12 @@
Python


-  PyQwt is a set of Python bindings for the Qwt  C++ class library which
-  extends the Qt framework with widgets for scientific and engineering
-  applications. It provides a widget to plot 2-dimensional data and
-  various widgets to display and control bounded or unbounded floating
-  point values.
-
+   PyQwt is a set of Python bindings for the Qwt C++ class library 
which
+   extends the Qt framework with widgets for scientific and 
engineering
+   applications. It provides a widget to plot 2-dimensional data 
and
+   various widgets to display and control bounded or unbounded 
floating
+   point values.
+   

pyqwt




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

2016-04-24 Thread Davide Pesavento
commit: 17281448eb99563395c4e1c307287885be1dbbc0
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 20:58:43 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 20:59:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17281448

dev-python/pyqwt: fix typo in variable name

Package-Manager: portage-2.2.28

 dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild 
b/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild
index 57ee1d0..fc2b162 100644
--- a/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild
+++ b/dev-python/pyqwt/pyqwt-5.2.0-r1.ebuild
@@ -36,7 +36,7 @@ src_prepare() {
 
 src_configure() {
configuration() {
-   local myonf=()
+   local myconf=()
use debug && myconf+=( --debug )
 
cd "${BUILD_DIR}" || die



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

2016-04-24 Thread Patrice Clement
commit: c55722421d9457fcf608ae1b370ba730dff212f2
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Apr 24 20:40:06 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Apr 24 20:41:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5572242

dev-java/jump: Stable for amd64. Retroactively mark stable for the remaining 
arches using the ALLARCHES policy.

Package-Manager: portage-2.2.26

 dev-java/jump/jump-0.5-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jump/jump-0.5-r1.ebuild b/dev-java/jump/jump-0.5-r1.ebuild
index ab05dc1..9e222f7 100644
--- a/dev-java/jump/jump-0.5-r1.ebuild
+++ b/dev-java/jump/jump-0.5-r1.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Java-based extensible high-precision math 
library"
 HOMEPAGE="http://jump-math.sourceforge.net/";
 SRC_URI="mirror://sourceforge/${PN}-math/${P}.tar.gz"
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 LICENSE="BSD"
 SLOT="0"
 



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

2016-04-24 Thread Patrice Clement
commit: 79e37a14e3e6f7ca97dd1327036e201582fdde57
Author: Patrice Clement  gentoo  org>
AuthorDate: Sun Apr 24 20:40:41 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sun Apr 24 20:41:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e37a14

dev-java/jump: Clean up old.

Package-Manager: portage-2.2.26

 dev-java/jump/files/0.5-test.patch | 14 -
 dev-java/jump/jump-0.5.ebuild  | 42 --
 2 files changed, 56 deletions(-)

diff --git a/dev-java/jump/files/0.5-test.patch 
b/dev-java/jump/files/0.5-test.patch
deleted file mode 100644
index 796d0d0..000
--- a/dev-java/jump/files/0.5-test.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-diff -Naur 
jump-0.5.vanilla/src/tests/org/znerd/math/tests/NumberCentralTests.java 
jump-0.5/src/tests/org/znerd/math/tests/NumberCentralTests.java
 jump-0.5.vanilla/src/tests/org/znerd/math/tests/NumberCentralTests.java
2007-10-10 00:27:47.0 +0200
-+++ jump-0.5/src/tests/org/znerd/math/tests/NumberCentralTests.java
2007-10-10 00:28:38.0 +0200
-@@ -220,8 +220,8 @@
-   assertEquals(ONE_HALF, NumberCentral.valueOf( 0.5));
-   assertEquals(ONE,  NumberCentral.valueOf( 1.0));
-   assertEquals(TWO,  NumberCentral.valueOf( 2.0));
--  assertEquals(Double.MIN_VALUE, 
NumberCentral.valueOf(Double.MIN_VALUE).doubleValue(), 0.0);
--  assertEquals(Double.MIN_VALUE, 
NumberCentral.valueOf(Double.MAX_VALUE).doubleValue(), 0.0);
-+  assertEquals(Double.MIN_VALUE, 
NumberCentral.valueOf(Double.MIN_VALUE).doubleValue(), Double.MIN_VALUE);
-+  assertEquals(Double.MAX_VALUE, 
NumberCentral.valueOf(Double.MAX_VALUE).doubleValue(), Double.MIN_VALUE);
-}
- 
-/**

diff --git a/dev-java/jump/jump-0.5.ebuild b/dev-java/jump/jump-0.5.ebuild
deleted file mode 100644
index b189eb0..000
--- a/dev-java/jump/jump-0.5.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="doc examples source test"
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="JUMP Ultimate Math Package (JUMP) is a Java-based extensible 
high-precision math package"
-SRC_URI="mirror://sourceforge/${PN}-math/${P}.tar.gz"
-HOMEPAGE="http://jump-math.sourceforge.net/";
-KEYWORDS="amd64 x86"
-LICENSE="BSD"
-SLOT="0"
-DEPEND=">=virtual/jdk-1.4
-   test? ( dev-java/ant-junit =dev-java/junit-3* )"
-RDEPEND=">=virtual/jre-1.4"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-
-   epatch "${FILESDIR}/0.5-test.patch"
-
-   sed -i 's:${java.home}/src::' -i build.xml || die
-   java-ant_rewrite-classpath
-}
-
-EANT_BUILD_TARGET="jar"
-EANT_DOC_TARGET="apidocs"
-
-src_test() {
-   local cp="$(java-pkg_getjars junit)"
-   ANT_TASKS="ant-junit" eant do-tests -Dgentoo.classpath="${cp}"
-}
-
-src_install() {
-   java-pkg_dojar build/${PN}.jar
-
-   use doc && java-pkg_dojavadoc  build/apidocs
-   use examples && java-pkg_doexamples src/examples
-   use source && java-pkg_dosrc src/main/org
-}



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

2016-04-24 Thread Stephen Klimaszewski
commit: 9ec2d9ad1afc075145f7ff50c2b7485bf1b675f6
Author: Steev Klimaszewski  gentoo  org>
AuthorDate: Sun Apr 24 20:47:07 2016 +
Commit: Stephen Klimaszewski  gentoo  org>
CommitDate: Sun Apr 24 20:50:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec2d9ad

sys-libs/uid_wrapper: Add ~arm64 keyword to 1.2.1

Package-Manager: portage-2.2.28

 sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild 
b/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild
index 973a7d5..46c31a8 100644
--- a/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild
+++ b/sys-libs/uid_wrapper/uid_wrapper-1.2.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="ftp://ftp.samba.org/pub/cwrap/${P}.tar.gz
https://ftp.samba.org/pub/cwrap/${P}.tar.gz";
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 DEPEND=""



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

2016-04-24 Thread Stephen Klimaszewski
commit: 4a7ed872473391a485b9a4781236f3501e635ca6
Author: Steev Klimaszewski  gentoo  org>
AuthorDate: Sun Apr 24 20:48:57 2016 +
Commit: Stephen Klimaszewski  gentoo  org>
CommitDate: Sun Apr 24 20:50:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a7ed872

net-libs/socket_wrapper: Add ~arm64 keyword to 1.1.6

Package-Manager: portage-2.2.28

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

diff --git a/net-libs/socket_wrapper/socket_wrapper-1.1.6.ebuild 
b/net-libs/socket_wrapper/socket_wrapper-1.1.6.ebuild
index e073a17..495cfe3 100644
--- a/net-libs/socket_wrapper/socket_wrapper-1.1.6.ebuild
+++ b/net-libs/socket_wrapper/socket_wrapper-1.1.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://cwrap.org/socket_wrapper.html";
 SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz";
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 DEPEND=""



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

2016-04-24 Thread Stephen Klimaszewski
commit: b4b465877f820787a105d982c9f32cb97bbfb86c
Author: Steev Klimaszewski  gentoo  org>
AuthorDate: Sun Apr 24 20:44:43 2016 +
Commit: Stephen Klimaszewski  gentoo  org>
CommitDate: Sun Apr 24 20:50:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b4b46587

sys-libs/nss_wrapper: Add ~arm64 keyword to 1.1.3

Package-Manager: portage-2.2.28

 sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild 
b/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild
index 060e5d3..dae0b00 100644
--- a/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild
+++ b/sys-libs/nss_wrapper/nss_wrapper-1.1.3.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://cwrap.org/nss_wrapper.html";
 SRC_URI="https://ftp.samba.org/pub/cwrap/${P}.tar.gz";
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 arm hppa ia64 ppc ppc64 sparc x86"
+KEYWORDS="amd64 arm ~arm64 hppa ia64 ppc ppc64 sparc x86"
 IUSE="test"
 
 DEPEND=""



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

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: bd1a54f90eedfdf1ee0aac2b07ba2311bbdfda85
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 20:48:18 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 20:48:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1a54f9

www-plugins/gnash: new snapshot

Package-Manager: portage-2.2.26

 www-plugins/gnash/Manifest  |   1 +
 www-plugins/gnash/gnash-0.8.10_p20160329.ebuild | 285 
 2 files changed, 286 insertions(+)

diff --git a/www-plugins/gnash/Manifest b/www-plugins/gnash/Manifest
index 773c154..9b3b825 100644
--- a/www-plugins/gnash/Manifest
+++ b/www-plugins/gnash/Manifest
@@ -1,2 +1,3 @@
 DIST gnash-0.8.10_p20131019.tar.xz 3868156 SHA256 
93e5c82c9f5e326b8ddba3cb4c4178fb9428e92987b3b8e6ef59b201ef37782a SHA512 
79b4e86275b6b11774212315ea3b4a6192177d297d4ebe93c39d69734dbaa4c893845dc606e724e03f6409f0695794ade0f2544e30cf2d291a42d0cf3d674dcc
 WHIRLPOOL 
fb9a9b9f00c10af75c595147ce3d9bdf18f5cfde907fa69c9d0e28a278ff4fa835eba4d1e19ea72ac65e6e0f769da30f5790c652e2df723c36db6e3ef4436851
 DIST gnash-0.8.10_p20150316.tar.xz 4031684 SHA256 
0c380f7b6756ad8a4d5ca152933f9a51278e00d51b3677812c69d65a166e3a6c SHA512 
3f166de91a2f9f538ef76d21f7e9c2c240a776855cfe00c4e39fd6c0b6718f450ffecac61f38a6e534c6eb3f5b747c1d800f5bc7712ece3dcf14be1ee50384d0
 WHIRLPOOL 
6dd3886b9bcca56fbf63442f25d7af9184188702a167d3962f97fcf0496a99898033ee52843f9bc53b73236b96e4995b882de9685898820cf0f6b27dccb881c9
+DIST gnash-0.8.10_p20160329.tar.xz 4079572 SHA256 
851ccba805a90a2e21ced841ae70cf55c0ba53c95f2b8b9bc729385a5b49bbb7 SHA512 
e8956d6277dde29a22bfe5af4279b40f80dad5659961d042e0bb57505b084f3ef1b489cf6fdf06730a8f3e2f9fdb737d7b1bc015a0255a80b167b98e686aa245
 WHIRLPOOL 
58734701ff4d9a6aa9536a1fa7feb75a8357775fb11857ecaf1a678ac7eca590a00b8af76f3723e8bbdf03b1fdf01cb193d870d505b8cc5767fdaf29fff1d7ee

diff --git a/www-plugins/gnash/gnash-0.8.10_p20160329.ebuild 
b/www-plugins/gnash/gnash-0.8.10_p20160329.ebuild
new file mode 100644
index 000..c05fede
--- /dev/null
+++ b/www-plugins/gnash/gnash-0.8.10_p20160329.ebuild
@@ -0,0 +1,285 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+CMAKE_REQUIRED="never"
+KDE_REQUIRED="optional"
+AT_M4DIR="cygnal"
+# won't build with python-3, bug #392969
+PYTHON_COMPAT=( python2_7 )
+
+inherit autotools eutils kde4-base multilib nsplugins python-any-r1 
flag-o-matic
+
+DESCRIPTION="GNU Flash movie player that supports many SWF v7,8,9 features"
+HOMEPAGE="https://www.gnu.org/software/gnash/";
+
+if [[ ${PV} = * ]]; then
+   SRC_URI=""
+   EGIT_REPO_URI="git://git.savannah.gnu.org/gnash.git"
+   inherit git-2
+else
+# Release tarball is b0rked, upstream #35612
+#  SRC_URI="mirror://gnu/${PN}/${PV}/${P}.tar.bz2"
+   SRC_URI="mirror://gentoo/${P}.tar.xz"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="X +agg cairo cygnal dbus directfb doc dump egl fbcon +ffmpeg gconf gnome 
gstreamer gtk harden jemalloc kde lirc mysql +nls nsplugin opengl openvg python 
sdl +sdl-sound ssh ssl test vaapi"
+REQUIRED_USE="dump? ( agg ffmpeg )
+   fbcon? ( agg )
+   nsplugin? ( gtk )
+   openvg? ( egl )
+   python? ( gtk )
+   vaapi? ( agg ffmpeg )
+   || ( agg cairo opengl openvg )
+   || ( dump fbcon gtk kde sdl )
+   "
+
+RDEPEND=">=dev-libs/boost-1.41.0:0=
+   dev-libs/expat
+   dev-libs/libxml2
+   virtual/jpeg:0
+   media-libs/libpng:0
+   net-misc/curl
+   x11-libs/libX11
+   x11-libs/libXi
+   x11-libs/libXmu
+   x11-libs/libXt
+   media-libs/giflib
+   x11-proto/xproto
+   agg? ( x11-libs/agg )
+   cairo? ( x11-libs/cairo )
+   directfb? (
+   dev-libs/DirectFB
+   )
+   doc? (
+   >=app-text/docbook2X-0.8.8
+   app-text/docbook-sgml-utils
+   )
+   egl? (
+   media-libs/mesa[egl]
+   )
+   fbcon? (
+   x11-libs/tslib
+   )
+   ffmpeg? (
+   virtual/ffmpeg[vaapi?]
+   )
+   gconf? (
+   gnome-base/gconf
+   )
+   gstreamer? (
+   media-plugins/gst-plugins-ffmpeg:*
+   media-plugins/gst-plugins-mad:*
+   media-plugins/gst-plugins-meta:*
+   )
+   gtk? (
+   x11-libs/gtk+:2
+   python? ( dev-python/pygtk:2 )
+   )
+   jemalloc? ( dev-libs/jemalloc )
+   kde? ( $(add_kdebase_dep kdebase-startkde) )
+   opengl? (
+   virtual/glu
+   virtual/opengl
+   gtk? ( x11-libs/gtkglext )
+   )
+   openvg? (
+   media-libs/mesa[openvg]
+   )
+   sdl? ( media-libs/libsdl[X] )
+   sdl-sound? ( media-libs/libsdl )
+   media-libs/speex[ogg]
+   sys-libs/zlib
+   >=sys-devel/libtool-2.2
+  

[gentoo-commits] repo/gentoo:master commit in: www-plugins/gnash/, www-plugins/gnash/files/

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: a4bd272fba3feab333eced74d266dcc6e828f80a
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 20:30:10 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 20:30:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4bd272f

www-plugins/gnash: fix building against newer libva, address repoman warnings

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

Package-Manager: portage-2.2.26

 .../gnash/files/gnash-0.8.10-libva-1.6_.patch  | 43 ++
 .../gnash/files/gnash-0.8.10-libva-1.6_0001.patch  | 28 ++
 www-plugins/gnash/gnash-0.8.10_p20150316.ebuild| 26 -
 3 files changed, 87 insertions(+), 10 deletions(-)

diff --git a/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_.patch 
b/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_.patch
new file mode 100644
index 000..d914f4a
--- /dev/null
+++ b/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_.patch
@@ -0,0 +1,43 @@
+From e5c08131abde15f7a1e048e35d1a9ff12b2acdaa Mon Sep 17 00:00:00 2001
+From: Bastiaan Jacques 
+Date: Thu, 26 Mar 2015 15:24:21 +
+Subject: Build fix: adjust smart pointers to unique_ptr API.
+
+---
+diff --git a/libdevice/vaapi/VaapiContext.h b/libdevice/vaapi/VaapiContext.h
+index 8d9de72..c49d48a 100644
+--- a/libdevice/vaapi/VaapiContext.h
 b/libdevice/vaapi/VaapiContext.h
+@@ -84,7 +84,7 @@ public:
+ void releaseSurface(std::shared_ptr surface);
+ 
+ /// Set user data
+-void setData(std::unique_ptr user_data) { _user_data = 
user_data; }
++void setData(std::unique_ptr user_data) { _user_data = 
std::move(user_data); }
+ 
+ /// Get user data
+ VaapiContextData *getData() const { return _user_data.get(); }
+diff --git a/libdevice/vaapi/VaapiGlobalContext.cpp 
b/libdevice/vaapi/VaapiGlobalContext.cpp
+index c19ed07..5127a27 100644
+--- a/libdevice/vaapi/VaapiGlobalContext.cpp
 b/libdevice/vaapi/VaapiGlobalContext.cpp
+@@ -33,7 +33,7 @@
+ namespace gnash {
+ 
+ VaapiGlobalContext::VaapiGlobalContext(std::unique_ptr display)
+-: _display(display)
++: _display(std::move(display))
+ {
+ GNASH_REPORT_FUNCTION;
+ 
+@@ -145,7 +145,7 @@ VaapiGlobalContext *VaapiGlobalContext::get()
+ if (!dpy.get()) {
+ return NULL;
+ }
+-vaapi_global_context.reset(new VaapiGlobalContext(dpy));
++vaapi_global_context.reset(new 
VaapiGlobalContext(std::move(dpy)));
+ }
+ catch (...) {
+ vaapi_set_is_enabled(false);
+--
+cgit v0.9.0.2

diff --git a/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch 
b/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch
new file mode 100644
index 000..4c25a98
--- /dev/null
+++ b/www-plugins/gnash/files/gnash-0.8.10-libva-1.6_0001.patch
@@ -0,0 +1,28 @@
+From f5016cc9399c9ffd3c5d32c67bb28fac285559c6 Mon Sep 17 00:00:00 2001
+From: Bastiaan Jacques 
+Date: Wed, 09 Sep 2015 19:25:31 +
+Subject: Compilation fix. See Savannah #44636.
+
+Also skip useless NULL check.
+---
+diff --git a/gui/gtk/gtk_glue_agg_vaapi.cpp b/gui/gtk/gtk_glue_agg_vaapi.cpp
+index 1eda283..6209e89 100644
+--- a/gui/gtk/gtk_glue_agg_vaapi.cpp
 b/gui/gtk/gtk_glue_agg_vaapi.cpp
+@@ -301,11 +301,9 @@ 
GtkAggVaapiGlue::getVideoWindow(std::shared_ptr surface,
+ return NULL;
+ 
+ if (!context->getData()) {
+-std::unique_ptr contextData;
+-contextData.reset(new VaapiVideoWindow(parent_window, rect));
+-if (!contextData.get())
+-return NULL;
+-context->setData(contextData);
++context->setData(
++std::unique_ptr(
++new VaapiVideoWindow(parent_window, rect)));
+ }
+ return dynamic_cast(context->getData());
+ }
+--
+cgit v0.9.0.2

diff --git a/www-plugins/gnash/gnash-0.8.10_p20150316.ebuild 
b/www-plugins/gnash/gnash-0.8.10_p20150316.ebuild
index 441d7ba..0ac3743 100644
--- a/www-plugins/gnash/gnash-0.8.10_p20150316.ebuild
+++ b/www-plugins/gnash/gnash-0.8.10_p20150316.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$
 
@@ -41,8 +41,8 @@ REQUIRED_USE="dump? ( agg ffmpeg )
 RDEPEND=">=dev-libs/boost-1.41.0:0=
dev-libs/expat
dev-libs/libxml2
-   virtual/jpeg
-   media-libs/libpng
+   virtual/jpeg:0
+   media-libs/libpng:0
net-misc/curl
x11-libs/libX11
x11-libs/libXi
@@ -65,16 +65,17 @@ RDEPEND=">=dev-libs/boost-1.41.0:0=
fbcon? (
x11-libs/tslib
)
-   ffmpeg? (
-   virtual/ffmpeg[vaapi?]
-   )
+   ffmpeg? ( || (
+   !vaapi? ( media-video/libav )
+   media-video/ffmpeg[vaapi?]
+   ) )
gconf? (
gnome-base/gconf
)
gstreamer? (
-   media-plugins/gst-plug

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

2016-04-24 Thread Tomas Chvatal
commit: b451b0b9a3ab72b2afe5010fff4220342416896a
Author: Tomáš Chvátal  gentoo  org>
AuthorDate: Sun Apr 24 20:25:26 2016 +
Commit: Tomas Chvatal  gentoo  org>
CommitDate: Sun Apr 24 20:25:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b451b0b9

[dev-util/spec-cleaner] update to 0.8.1, remove old, support py3.5

 dev-util/spec-cleaner/Manifest  | 2 +-
 .../{spec-cleaner-0.7.8.ebuild => spec-cleaner-0.8.1.ebuild}| 2 +-
 dev-util/spec-cleaner/spec-cleaner-.ebuild  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/spec-cleaner/Manifest b/dev-util/spec-cleaner/Manifest
index cfdc80c..a8e5341 100644
--- a/dev-util/spec-cleaner/Manifest
+++ b/dev-util/spec-cleaner/Manifest
@@ -1 +1 @@
-DIST spec-cleaner-0.7.8.tar.gz 89125 SHA256 
d9ed8aeefac4836182a4c0a8bcaaaedaf4acad88bc601b2576f3adfad5436528 SHA512 
2937c2480b4a24343c5ea8a665f2820e37da3f2816c22e6bc82ebba66711754a59f5e68fb903258750cac3118206a9e02fc5a87051c0bcb4e8396ab658e844d3
 WHIRLPOOL 
6559460eb869c8428b17611e4005edd59abd24ec105467768191825c6cd232f776e40ce7e5762fcecf9adad6bdfbf24c1790b8fd3d992deeb07a67b44c1665ac
+DIST spec-cleaner-0.8.1.tar.gz 94428 SHA256 
e84a54299ecb2b42d035760075d15b132a969c451b9463b36186d7e473c2c254 SHA512 
00fcdd161786f6d19e55a1b16c3825f641bb1757606f8840cfe04e15cc168d5afed9f89889bb55603ac4de5794bc42ac1631a78e3eb3be19bdca760ba9211e3a
 WHIRLPOOL 
026965d449ff34943283d94f5592985cd39d6f566ae3284149887ba6f93780697ec6afa0dda70fdfaf05c3d7d14ff1a4247d0674d8ed69ae0b6f4db771c66959

diff --git a/dev-util/spec-cleaner/spec-cleaner-0.7.8.ebuild 
b/dev-util/spec-cleaner/spec-cleaner-0.8.1.ebuild
similarity index 95%
rename from dev-util/spec-cleaner/spec-cleaner-0.7.8.ebuild
rename to dev-util/spec-cleaner/spec-cleaner-0.8.1.ebuild
index 20592dc..00dca1d 100644
--- a/dev-util/spec-cleaner/spec-cleaner-0.7.8.ebuild
+++ b/dev-util/spec-cleaner/spec-cleaner-0.8.1.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 EGIT_REPO_URI="https://github.com/openSUSE/spec-cleaner.git";
 inherit distutils-r1
 [[ ${PV} ==  ]] && inherit git-r3

diff --git a/dev-util/spec-cleaner/spec-cleaner-.ebuild 
b/dev-util/spec-cleaner/spec-cleaner-.ebuild
index 20592dc..00dca1d 100644
--- a/dev-util/spec-cleaner/spec-cleaner-.ebuild
+++ b/dev-util/spec-cleaner/spec-cleaner-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=5
 
-PYTHON_COMPAT=( python{2_7,3_4} )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 EGIT_REPO_URI="https://github.com/openSUSE/spec-cleaner.git";
 inherit distutils-r1
 [[ ${PV} ==  ]] && inherit git-r3



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

2016-04-24 Thread James Le Cuirot
commit: 718bf13805e85151166b5a48e1f9182d198ea444
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Apr 24 20:17:08 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Apr 24 20:17:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=718bf138

dev-java/javacup: Remove old

Package-Manager: portage-2.2.28

 dev-java/javacup/Manifest  |  1 -
 dev-java/javacup/javacup-0.11a_beta20060608.ebuild | 54 --
 2 files changed, 55 deletions(-)

diff --git a/dev-java/javacup/Manifest b/dev-java/javacup/Manifest
index 9f46d54..30162c1 100644
--- a/dev-java/javacup/Manifest
+++ b/dev-java/javacup/Manifest
@@ -1,2 +1 @@
 DIST java-cup-src-11b-20151001.tar.gz 313405 SHA256 
959189360a8530c9e06cbf8cb99795bb4fcc25a00d774e961c98611c769b8f33 SHA512 
70bb6a0e13fe52694980040205fcf5b3e904c4a07e50c7740c55cc3bb481496c5c071377757b94f59807b936b8c4fdde5423d78cc2d12a7ada1870f71cd9f47e
 WHIRLPOOL 
cba8a784f156b21ae2a40afe02112b5bded04176bd54b3190f1d210e5603334553f170b02f91f970ade3f68d8d00715f1237dd43476712f4e24c5d0857bf6304
-DIST javacup-0.11a_beta20060608.tar.bz2 285727 SHA256 
cb3ad4951d734bd1e5a6ff835018dea26a47564f820ae0a925f9c30f2fb7e1ff SHA512 
383172f7d9cb127ad5d1d6de561eaf53b057bf7511f6f8c353fc03860daabb023e11330e0518b9c390e255a643c9c1e609b5fbdfd3c2e92dd68dc2d2354a931f
 WHIRLPOOL 
6480219de3a997eb9a942ce816f9868dc13d06b8c0553521e9cf37fe568265cf752efcd36d9b64ea424d225d4823fce0652c9b0d7e1c853e38cd9f00fb12ce30

diff --git a/dev-java/javacup/javacup-0.11a_beta20060608.ebuild 
b/dev-java/javacup/javacup-0.11a_beta20060608.ebuild
deleted file mode 100644
index 2830520..000
--- a/dev-java/javacup/javacup-0.11a_beta20060608.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-JAVA_PKG_IUSE="source doc"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="CUP Parser Generator for Java"
-
-HOMEPAGE="http://www2.cs.tum.edu/projects/cup/";
-
-# We cannot put the actual SRC_URI because it causes conflicts with Gentoo 
mirroring system
-# No better URI is available, waiting until it hits actual Gentoo mirrors
-
-#SRC_URI="https://www2.in.tum.de/WebSVN/dl.php?repname=CUP&path=/develop/&rev=0&isdir=1";
-SRC_URI="mirror://gentoo/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc64 x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="userland_BSD"
-
-DEPEND=">=virtual/jdk-1.4"
-RDEPEND=">=virtual/jre-1.4
-   >=dev-java/ant-core-1.7.0"
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   find . -name "*.class" -delete || die
-   java-ant_rewrite-classpath
-}
-
-src_compile() {
-   eant -Dgentoo.classpath="$(java-pkg_getjars ant-core)"
-   rm bin/java-cup-11.jar
-   cp dist/java-cup-11a.jar bin/java-cup-11.jar
-   eant clean
-   einfo "Recompiling with newly generated javacup"
-   eant -Dgentoo.classpath="$(java-pkg_getjars ant-core)"
-   use doc && javadoc -sourcepath src/ java_cup -d javadoc
-}
-
-src_install() {
-   java-pkg_newjar dist/java-cup-11a.jar
-   java-pkg_newjar dist/java-cup-11a-runtime.jar ${PN}-runtime.jar
-   java-pkg_register-ant-task
-
-   dodoc changelog.txt || die
-   dohtml manual.html || die
-   use source && java-pkg_dosrc java/*
-   use doc && java-pkg_dojavadoc javadoc
-}



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

2016-04-24 Thread James Le Cuirot
commit: 9fd6e0346199f9f1108000b453d93b8243abc4b2
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Apr 24 20:14:44 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Apr 24 20:17:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fd6e034

dev-java/qdox: 1.12.1-r1 stable on amd64, ppc64, x86 using ALLARCHES

Package-Manager: portage-2.2.28

 dev-java/qdox/qdox-1.12.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/qdox/qdox-1.12.1-r1.ebuild 
b/dev-java/qdox/qdox-1.12.1-r1.ebuild
index 542db4d..6ffaf3f 100644
--- a/dev-java/qdox/qdox-1.12.1-r1.ebuild
+++ b/dev-java/qdox/qdox-1.12.1-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://github.com/codehaus/qdox/archive/${P}.tar.gz";
 
 LICENSE="Apache-2.0"
 SLOT="1.12"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ppc64 x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x86-macos"
 
 S="${WORKDIR}/${PN}-${PN}-${PV}"
 



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

2016-04-24 Thread James Le Cuirot
commit: 08e561398f7a6758f2696047c2cb4c7f623127f9
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Apr 24 20:15:34 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Apr 24 20:17:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08e56139

dev-java/qdox: Remove old

Package-Manager: portage-2.2.28

 dev-java/qdox/Manifest|  1 -
 dev-java/qdox/qdox-1.12-r1.ebuild | 82 ---
 2 files changed, 83 deletions(-)

diff --git a/dev-java/qdox/Manifest b/dev-java/qdox/Manifest
index 763c940..eaaa679 100644
--- a/dev-java/qdox/Manifest
+++ b/dev-java/qdox/Manifest
@@ -1,3 +1,2 @@
-DIST qdox-1.12-20100531.205010-5-project.tar.gz 519732 SHA256 
7ec2a48498f996e35c6bfdbff1dbbb061e51ff16862c4f3c3f12235d30857cca SHA512 
b549704c941ac6333f4d96a880c4c05af6793043ad5f3d8adf6352c285507f7748905c57c91261c4171b1e6c3b11bb8e2ecad68a413a5297eebd92ac2d671809
 WHIRLPOOL 
bd560572d5d41f39918237519e7d201bfde30e27e6d4d5d55f543681d833380553df8b062ca3392f9b9b3d185e48ac689dd7492796e9211ef9b21797129d3017
 DIST qdox-1.12.1.tar.gz 519833 SHA256 
6c716c013b27d79eff31de59ab69b734d6744c32548549aaf3e6875915172565 SHA512 
17ac933854ebd0560921805ea4339c151a7fd095bf8d50d5d71e656afda77ba30efac7926cfcc7543e4a8420b12d1eb75cdd305c50d1c28ad8cd6b0f4d95f5c5
 WHIRLPOOL 
3e828d430637b18a8c91d273bb26b5ccf26f0f2556639b0af9ed3527eb28bb29de4d2dc8caaf07a0bbadef4001564db67eba63f0440d30e3b83da8f5e209bb41
 DIST qdox-1.6.3-sources.jar 63731 SHA256 
7ddb3a75c1ab415c631ae39660679630653bbbed84895e5ed4b4775ce5327846 SHA512 
0b05620809e3830c7e12c289cd4765f96d845adabc1f09497993bd9f39852784f454eb4aff1deecb325608a5773e86fbb1f5863e0f25387805472b59b46cf965
 WHIRLPOOL 
a57aecd3ccf7537af450dc54da65eb9b49b87b461b5929e36c49f5f40a5344fd84625afda47f6ea2860d65a200b34b7abc751ba377ad4404de4f9ca8a55bc36d

diff --git a/dev-java/qdox/qdox-1.12-r1.ebuild 
b/dev-java/qdox/qdox-1.12-r1.ebuild
deleted file mode 100644
index aa685c7..000
--- a/dev-java/qdox/qdox-1.12-r1.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source test"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="Parser for extracting class/interface/method definitions"
-HOMEPAGE="https://github.com/codehaus/qdox";
-SRC_URI="http://snapshots.repository.codehaus.org/com/thoughtworks/qdox/qdox/1.12-SNAPSHOT/qdox-1.12-20100531.205010-5-project.tar.gz
  "
-
-LICENSE="Apache-2.0"
-SLOT="1.12"
-KEYWORDS="amd64 ppc64 x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x86-macos"
-
-S="${WORKDIR}/${PN}-${PV}-SNAPSHOT"
-
-CDEPEND="dev-java/ant-core:0"
-
-DEPEND=">=virtual/jdk-1.4
-   app-arch/unzip:0
-   dev-java/byaccj:0
-   >=dev-java/jflex-1.4.3:0
-   dev-java/jmock:1.0
-   test? ( dev-java/junit:0 )
-   ${CDEPEND}"
-
-RDEPEND=">=virtual/jre-1.4
-   ${CDEPEND}"
-
-java_prepare() {
-   if ! use test ; then
-   rm src/java/com/thoughtworks/qdox/tools/QDoxTester.java
-   rm -rf src/java/com/thoughtworks/qdox/junit
-   rm -rf src/test
-   fi
-}
-
-src_compile() {
-   jflex src/grammar/lexer.flex --skel src/grammar/skeleton.inner -d 
src/java/com/thoughtworks/qdox/parser/impl/ || die
-   byaccj -v -Jnorun -Jnoconstruct -Jclass=Parser -Jsemantic=Value 
-Jpackage=com.thoughtworks.qdox.parser.impl src/grammar/parser.y || die
-   mv Parser.java src/java/com/thoughtworks/qdox/parser/impl/ || die
-
-   # create jar
-   mkdir -p build/classes || die
-
-   local cp="$(java-pkg_getjars --build-only ant-core,jmock-1.0)"
-
-   if use test ; then
-   cp="${cp}:$(java-pkg_getjars --build-only junit)"
-   fi
-
-   ejavac -sourcepath . -d build/classes -classpath "${cp}" \
-   $(find . -name "*.java") || die "Cannot compile sources"
-
-   mkdir dist || die
-   cd build/classes || die
-   jar -cvf "${S}"/dist/${PN}.jar com || die "Cannot create JAR"
-
-   # generate javadoc
-   if use doc ; then
-   cd "${S}"
-   mkdir javadoc || die
-   javadoc -d javadoc -sourcepath src/java -subpackages com 
-classpath "${cp}"
-   fi
-}
-
-src_test() {
-   java -cp "${S}"/dist/${PN}.jar:$(java-pkg_getjars --build-only 
ant-core,junit,jmock-1.0) \
-   com.thoughtworks.qdox.tools.QDoxTester src || die "Tests 
failed!"
-}
-
-src_install() {
-   java-pkg_dojar dist/${PN}.jar
-   java-pkg_register-ant-task
-
-   use source && java-pkg_dosrc src/java/com
-   use doc && java-pkg_dojavadoc javadoc
-}



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

2016-04-24 Thread James Le Cuirot
commit: dece2d51575fda8be851c2fcb4d88a1e0ed713e2
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Apr 24 20:11:39 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Apr 24 20:17:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dece2d51

dev-java/javacup: Mark 0.11b_p20151001 stable using ALLARCHES

Package-Manager: portage-2.2.28

 dev-java/javacup/javacup-0.11b_p20151001.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/javacup/javacup-0.11b_p20151001.ebuild 
b/dev-java/javacup/javacup-0.11b_p20151001.ebuild
index 4d82769..5b64a45 100644
--- a/dev-java/javacup/javacup-0.11b_p20151001.ebuild
+++ b/dev-java/javacup/javacup-0.11b_p20151001.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="http://www2.cs.tum.edu/projects/cup/";
 
SRC_URI="http://www2.cs.tum.edu/projects/cup/releases/java-cup-src-${MY_PV}.tar.gz";
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 ~arm ppc64 x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 DEPEND=">=virtual/jdk-1.7
>=dev-java/ant-core-1.7.0:0



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

2016-04-24 Thread James Le Cuirot
commit: c0361246500081701601f4f3f93b0f95c459cb2e
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Apr 24 20:16:17 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Apr 24 20:17:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0361246

dev-java/jflex: Remove old

Package-Manager: portage-2.2.28

 dev-java/jflex/Manifest  |  1 -
 dev-java/jflex/jflex-1.6.0-r2.ebuild | 94 
 2 files changed, 95 deletions(-)

diff --git a/dev-java/jflex/Manifest b/dev-java/jflex/Manifest
index b4c0417..42c18f3 100644
--- a/dev-java/jflex/Manifest
+++ b/dev-java/jflex/Manifest
@@ -1,2 +1 @@
-DIST jflex-1.6.0.tar.gz 3035885 SHA256 
0774da0ee2d01fc9274179de4243e0d229c01b5cf0fbb78952fb7fdc4672190c SHA512 
16ce4a89f75ce5f3da02433ff66d39ed4db567b4cf7469997dd2617b82e52d589bb17ec3a2f36b4d00a62233e48820bc2e043dcc9ae3c01f1eeca323c0166eba
 WHIRLPOOL 
4d9e7e8c3a0da66d860b895699d5b50e29f781f1cf18cab436f545b1fb007297ca9433694ce3808452c5d9340eddc978c2b32019b5a8d5d8c6cb0558543ea18e
 DIST jflex-1.6.1.tar.gz 3027791 SHA256 
9879fb4ea7b286af3c3439cf148f5739dfa722edbd978f2f798268b2e016f8c0 SHA512 
436840c90d906042205d27e1d3c56dec724bf62cc3d8c8d3445f217af0a50c9ca2bb56ed91f0cd3c37a930f7ca22f4cc50e8c28dbe905f02adf695c8e96fb07b
 WHIRLPOOL 
27e2769b1b1dc720cee71718eca024905fd9e200c53771c2db293471b0190d9a3c9d2245fbbc5ab76a1f22e1496053d35d625a34c09819b1e367f78840152666

diff --git a/dev-java/jflex/jflex-1.6.0-r2.ebuild 
b/dev-java/jflex/jflex-1.6.0-r2.ebuild
deleted file mode 100644
index 7975464e..000
--- a/dev-java/jflex/jflex-1.6.0-r2.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-
-JAVA_PKG_IUSE="doc source examples"
-
-inherit java-pkg-2 java-ant-2
-
-DESCRIPTION="JFlex is a lexical analyzer generator for Java"
-HOMEPAGE="http://www.jflex.de/";
-SRC_URI="http://${PN}.de/${P}.tar.gz";
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x86-macos"
-
-CDEPEND="dev-java/ant-core:0
-   =dev-java/javacup-0.11a_beta20060608:0
-   dev-java/junit:0"
-
-RDEPEND=">=virtual/jre-1.6
-   vim-syntax? ( || ( app-editors/vim app-editors/gvim ) )
-   ${CDEPEND}"
-
-DEPEND=">=virtual/jdk-1.6
-   ${CDEPEND}"
-
-IUSE="${JAVA_PKG_IUSE} source vim-syntax"
-
-java_prepare() {
-   # use a more convenient version number
-   sed -i s:"\(name=\"version\" value=\"\)[^\"]*\"":"\1${PV}\"":g build.xml
-   # fix bootstrapping
-   sed -i s:"\(name=\"bootstrap.version\" 
value=\"\)[^\"]*\"":"\1${PV}\"":g \
-   build.xml
-   # add javadoc capability to build.xml
-   sed -i s,"\(\)",\
-"\n  \n\n  \n\1",g \
-   build.xml
-}
-
-# TODO: Try to avoid using bundled jar (See bug #498874)
-#
-
-EANT_GENTOO_CLASSPATH_EXTRA="lib/${P}.jar"
-
-# Currently, this package uses an included JFlex.jar file to bootstrap.
-# Upstream was contacted and this bootstrap is really needed. The only way to
-# avoid it would be to use a supplied pre-compiled .scanner file.
-JAVA_ANT_REWRITE_CLASSPATH="true"
-EANT_GENTOO_CLASSPATH="
-   ant-core
-   javacup
-"
-WANT_ANT_TASKS="javacup"
-
-src_compile() {
-   java-pkg-2_src_compile
-
-   # Compile another time, using our generated jar; for sanity.
-   cp build/${P}.jar ${EANT_GENTOO_CLASSPATH_EXTRA}
-   java-pkg-2_src_compile
-}
-
-# EANT_TEST_GENTOO_CLASSPATH doesn't support EANT_GENTOO_CLASSPATH_EXTRA yet.
-RESTRICT="test"
-
-src_test() {
-   java-pkg-2_src_test
-}
-
-src_install() {
-   java-pkg_newjar build/${P}.jar ${PN}.jar
-   java-pkg_dolauncher "${PN}" --main "${PN}.Main"
-   java-pkg_register-ant-task
-
-   if use doc ; then
-   dodoc doc/manual.pdf changelog.md
-   dohtml -r doc/*
-   java-pkg_dojavadoc javadoc
-   fi
-
-   use examples && java-pkg_doexamples examples
-   use source && java-pkg_dosrc src/main
-
-   if use vim-syntax; then
-   insinto /usr/share/vim/vimfiles/syntax
-   doins "${S}/lib/${PN}.vim"
-   fi
-}



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

2016-04-24 Thread James Le Cuirot
commit: 078a10e2489d65c354d076fed2901a61362d9d48
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Apr 24 20:13:09 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Apr 24 20:17:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=078a10e2

dev-java/jflex: Mark 1.6.1 stable on amd64, ppc64, x86 using ALLARCHES

Package-Manager: portage-2.2.28

 dev-java/jflex/jflex-1.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jflex/jflex-1.6.1.ebuild 
b/dev-java/jflex/jflex-1.6.1.ebuild
index 6b50fe0..9b3cda6 100644
--- a/dev-java/jflex/jflex-1.6.1.ebuild
+++ b/dev-java/jflex/jflex-1.6.1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://www.jflex.de/";
 SRC_URI="http://${PN}.de/${P}.tar.gz";
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 ~arm ppc64 x86 ~amd64-fbsd ~ppc-macos ~x64-macos ~x86-macos"
 IUSE="examples test vim-syntax"
 
 CDEPEND="dev-java/ant-core:0"



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

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: 7b0f5202b40b4eae53ead41d333531fd30033e9c
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 20:11:04 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 20:11:04 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b0f5202

sys-boot/syslinux: bump to latest prerelase, add workaround for ld.gold issues.

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

Package-Manager: portage-2.2.26

 sys-boot/syslinux/Manifest  |  1 +
 sys-boot/syslinux/syslinux-6.03.ebuild  | 13 -
 .../{syslinux-6.03.ebuild => syslinux-6.04_pre1.ebuild} | 13 -
 3 files changed, 25 insertions(+), 2 deletions(-)

diff --git a/sys-boot/syslinux/Manifest b/sys-boot/syslinux/Manifest
index 23780b3..ab76b5e 100644
--- a/sys-boot/syslinux/Manifest
+++ b/sys-boot/syslinux/Manifest
@@ -3,3 +3,4 @@ DIST syslinux-4.07.tar.bz2 5761877 SHA256 
1240a4e4219b518bdaef78931b6e901befeff3
 DIST syslinux-5.10.tar.xz 5315660 SHA256 
4b52d7647d5584c69764c06a836e0d524e5246bf2e94f68cf86342c415508422 SHA512 
56422e14b4aa53ca1a5811da0582dbbb349aa52b9e78868bbedc24c67ef2420c4d0ac63fd68c7f0adc2c22606196276265d503b5b6f9d3d796d9ce42845bbdb5
 WHIRLPOOL 
77d73bdc1cd75a3ad9f58de8a9fa31a1c4247d579ac8c849e8d0dacc7cd1b9e02b2cf0737f1be1c2bc2e974f4ded3955857588a8a07d6cf35997c57f47d9b583
 DIST syslinux-6.02.tar.xz 6471080 SHA256 
afa31b7cbf72e1c0c1752a0636ba724ce01c0e374366e46e61db6862b4685478 SHA512 
919d165e9cba2b964cec8b015f0a4281a5f90e908f247441d6edefe289170e697b933554d12fa90e698b6d2e8b5b40fdb3b7a95d746a41c580e3a44f8859818f
 WHIRLPOOL 
98d7552f8c66be7689166e7d7a7b5499af0a974711e7ca1f01e1538250c533ceed6d80cec0ac189ff66ea243e22ff1add62c2e3392945d4b7e1586f38c1b6a1d
 DIST syslinux-6.03.tar.xz 6855224 SHA256 
26d3986d2bea109d5dc0e4f8c4822a459276cf021125e8c9f23c3cca5d8c850e SHA512 
dd2b2916962b9e93bc1e714182e3ca2a727a229b8afabe913050bcfdd43ee2af51ee3acf79121d8c20caf434583efaa7f3196871e0e07c04d82191323a50fe31
 WHIRLPOOL 
c3abf6dd84610f2265ce94ce0991e200e3f7fcf2cf2926d46c389c7235544e959ee52aef4a510258b861da2233fd38696d3164a7d0e75f0060a18cc13f23b546
+DIST syslinux-6.04-pre1.tar.xz 5283272 SHA256 
3f6d50a57f3ed47d8234fd0ab4492634eb7c9aaf7dd902f33d3ac33564fd631d SHA512 
7927dd39be8e2dcf4138a6fea33def67d19d938379d694f15b48fdd2f5924c028b7a9e7bd71d0c7c6630c203e9e2a54296628e530632ad5e6f55b1ebefe8fc98
 WHIRLPOOL 
d8d3765b974122a1265ca95470379c577108a6aba755c19c1f0373f3986d117c1cfaf1f3f2a9477d2558e66f82db3de980ab12d66c721396154dea7ee1edc28a

diff --git a/sys-boot/syslinux/syslinux-6.03.ebuild 
b/sys-boot/syslinux/syslinux-6.03.ebuild
index 25ec57b..fe34dc6 100644
--- a/sys-boot/syslinux/syslinux-6.03.ebuild
+++ b/sys-boot/syslinux/syslinux-6.03.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -72,6 +72,17 @@ src_prepare() {
x86)loaderarch="efi32" ;;
*)  ewarn "Unsupported architecture, building installers 
only." ;;
esac
+
+   # building with ld.gold causes problems, bug #563364
+   if tc-ld-is-gold; then
+   ewarn "Building syslinux with the gold linker may cause 
problems, see bug #563364"
+   if [[ -z "${I_KNOW_WHAT_I_AM_DOING}" ]]; then
+   tc-ld-disable-gold
+   ewarn "set I_KNOW_WHAT_I_AM_DOING=1 to override this."
+   else
+   ewarn "Continuing anyway as requested."
+   fi
+   fi
 }
 
 src_compile() {

diff --git a/sys-boot/syslinux/syslinux-6.03.ebuild 
b/sys-boot/syslinux/syslinux-6.04_pre1.ebuild
similarity index 88%
copy from sys-boot/syslinux/syslinux-6.03.ebuild
copy to sys-boot/syslinux/syslinux-6.04_pre1.ebuild
index 25ec57b..fe34dc6 100644
--- a/sys-boot/syslinux/syslinux-6.03.ebuild
+++ b/sys-boot/syslinux/syslinux-6.04_pre1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -72,6 +72,17 @@ src_prepare() {
x86)loaderarch="efi32" ;;
*)  ewarn "Unsupported architecture, building installers 
only." ;;
esac
+
+   # building with ld.gold causes problems, bug #563364
+   if tc-ld-is-gold; then
+   ewarn "Building syslinux with the gold linker may cause 
problems, see bug #563364"
+   if [[ -z "${I_KNOW_WHAT_I_AM_DOING}" ]]; then
+   tc-ld-disable-gold
+   ewarn "set I_KNOW_WHAT_I_AM_DOING=1 to override this."
+   else
+   ewarn "Continuing anyway as requested."
+   fi
+   fi
 }
 
 src_compile() {



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

2016-04-24 Thread Chí-Thanh Christopher Nguyễn
commit: ad8507f392eca220394dc70d3704ea4dcf85ba6f
Author: Chí-Thanh Christopher Nguyễn  gentoo  org>
AuthorDate: Sun Apr 24 20:11:51 2016 +
Commit: Chí-Thanh Christopher Nguyễn  gentoo  org>
CommitDate: Sun Apr 24 20:11:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad8507f3

sys-boot/syslinux: remove old

Package-Manager: portage-2.2.26

 sys-boot/syslinux/Manifest |  1 -
 sys-boot/syslinux/syslinux-6.02.ebuild | 93 --
 2 files changed, 94 deletions(-)

diff --git a/sys-boot/syslinux/Manifest b/sys-boot/syslinux/Manifest
index ab76b5e..14410fa 100644
--- a/sys-boot/syslinux/Manifest
+++ b/sys-boot/syslinux/Manifest
@@ -1,6 +1,5 @@
 DIST syslinux-3.86.tar.bz2 3735823 SHA256 
82a8d2a242f869cb4c34b3a074871f472762343e1879a4dca23d7ce5c4dcd06d SHA512 
6231f233e5f5ac26aa7e4bfd2704e2a4081350a3f3f21b5ec88a13cf992528c2796dbdfdf6cc2cc7a9543828650ae46de3685e5e55fac3a6ad520430220d1073
 WHIRLPOOL 
985efd16587ac3f00dc1b75563dc12e5abfeb14b42b64accdadda087f6c9a61c8f5cc149a2b9ce8dd1368d1083720340c20240a4b7d7ea3bf51ff65512d1bd3e
 DIST syslinux-4.07.tar.bz2 5761877 SHA256 
1240a4e4219b518bdaef78931b6e901befeff35e6894ac6db785115848a7a05a SHA512 
8efbd14803ec74c5ee699a754b4727e4b975c08afd4dbb39f4b7ccdb90743e4459cd4609c6f1065c7b7efaa26c9d465806254891795d363758f35a2fe5704ae5
 WHIRLPOOL 
b68966ed87055a157812f36f2881b4a86797eacef1894b70c1a063327547264daa4b4ca1ea52ccb286ab86332c2163e57004d3503215497278e073b48583a9dc
 DIST syslinux-5.10.tar.xz 5315660 SHA256 
4b52d7647d5584c69764c06a836e0d524e5246bf2e94f68cf86342c415508422 SHA512 
56422e14b4aa53ca1a5811da0582dbbb349aa52b9e78868bbedc24c67ef2420c4d0ac63fd68c7f0adc2c22606196276265d503b5b6f9d3d796d9ce42845bbdb5
 WHIRLPOOL 
77d73bdc1cd75a3ad9f58de8a9fa31a1c4247d579ac8c849e8d0dacc7cd1b9e02b2cf0737f1be1c2bc2e974f4ded3955857588a8a07d6cf35997c57f47d9b583
-DIST syslinux-6.02.tar.xz 6471080 SHA256 
afa31b7cbf72e1c0c1752a0636ba724ce01c0e374366e46e61db6862b4685478 SHA512 
919d165e9cba2b964cec8b015f0a4281a5f90e908f247441d6edefe289170e697b933554d12fa90e698b6d2e8b5b40fdb3b7a95d746a41c580e3a44f8859818f
 WHIRLPOOL 
98d7552f8c66be7689166e7d7a7b5499af0a974711e7ca1f01e1538250c533ceed6d80cec0ac189ff66ea243e22ff1add62c2e3392945d4b7e1586f38c1b6a1d
 DIST syslinux-6.03.tar.xz 6855224 SHA256 
26d3986d2bea109d5dc0e4f8c4822a459276cf021125e8c9f23c3cca5d8c850e SHA512 
dd2b2916962b9e93bc1e714182e3ca2a727a229b8afabe913050bcfdd43ee2af51ee3acf79121d8c20caf434583efaa7f3196871e0e07c04d82191323a50fe31
 WHIRLPOOL 
c3abf6dd84610f2265ce94ce0991e200e3f7fcf2cf2926d46c389c7235544e959ee52aef4a510258b861da2233fd38696d3164a7d0e75f0060a18cc13f23b546
 DIST syslinux-6.04-pre1.tar.xz 5283272 SHA256 
3f6d50a57f3ed47d8234fd0ab4492634eb7c9aaf7dd902f33d3ac33564fd631d SHA512 
7927dd39be8e2dcf4138a6fea33def67d19d938379d694f15b48fdd2f5924c028b7a9e7bd71d0c7c6630c203e9e2a54296628e530632ad5e6f55b1ebefe8fc98
 WHIRLPOOL 
d8d3765b974122a1265ca95470379c577108a6aba755c19c1f0373f3986d117c1cfaf1f3f2a9477d2558e66f82db3de980ab12d66c721396154dea7ee1edc28a

diff --git a/sys-boot/syslinux/syslinux-6.02.ebuild 
b/sys-boot/syslinux/syslinux-6.02.ebuild
deleted file mode 100644
index 2be6a6b..000
--- a/sys-boot/syslinux/syslinux-6.02.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils toolchain-funcs
-
-DESCRIPTION="SYSLINUX, PXELINUX, ISOLINUX, EXTLINUX and MEMDISK bootloaders"
-HOMEPAGE="http://www.syslinux.org/";
-SRC_URI="mirror://kernel/linux/utils/boot/syslinux/${P/_/-}.tar.xz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
-IUSE="custom-cflags"
-
-RDEPEND="sys-fs/mtools
-   dev-perl/Crypt-PasswdMD5
-   dev-perl/Digest-SHA1"
-DEPEND="${RDEPEND}
-   dev-lang/nasm
-   >=sys-boot/gnu-efi-3.0u
-   virtual/os-headers"
-
-S=${WORKDIR}/${P/_/-}
-
-# This ebuild is a departure from the old way of rebuilding everything in 
syslinux
-# This departure is necessary since hpa doesn't support the rebuilding of 
anything other
-# than the installers.
-
-# These are executables which come precompiled and are run by the boot loader
-QA_PREBUILT="usr/share/${PN}/*.c32"
-
-# removed all the unpack/patching stuff since we aren't rebuilding the core 
stuff anymore
-
-src_prepare() {
-   epatch "${FILESDIR}"/${P}-add-fno-stack-protector.patch
-   rm -f gethostip #bug 137081
-
-   # Don't prestrip or override user LDFLAGS, bug #305783
-   local SYSLINUX_MAKEFILES="extlinux/Makefile linux/Makefile 
mtools/Makefile \
-   sample/Makefile utils/Makefile"
-   sed -i ${SYSLINUX_MAKEFILES} -e '/^LDFLAGS/d' || die "sed failed"
-
-   if use custom-cflags; then
-   sed -i ${SYSLINUX_MAKEFILES} \
-   -e 's|-g -Os||g' \
-   -e 's|-Os||g' \
-   -e 's|CFLAGS[[:space:]]\+=|CFLAGS +=|g' \
-   || di

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

2016-04-24 Thread Jeroen Roovers
commit: 17f69e295370daf3bc5101f744dd8608ef8f4114
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Apr 24 19:44:54 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Apr 24 19:44:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17f69e29

net-analyzer/rrdtool: set SONAME based sub-SLOT (bug #580964 by Thomas D.).

Package-Manager: portage-2.2.28

 net-analyzer/rrdtool/{rrdtool-1.6.0.ebuild => rrdtool-1.6.0-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/rrdtool/rrdtool-1.6.0.ebuild 
b/net-analyzer/rrdtool/rrdtool-1.6.0-r1.ebuild
similarity index 99%
rename from net-analyzer/rrdtool/rrdtool-1.6.0.ebuild
rename to net-analyzer/rrdtool/rrdtool-1.6.0-r1.ebuild
index 5f8a447..8ff5f05 100644
--- a/net-analyzer/rrdtool/rrdtool-1.6.0.ebuild
+++ b/net-analyzer/rrdtool/rrdtool-1.6.0-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="http://oss.oetiker.ch/rrdtool/";
 SRC_URI="http://oss.oetiker.ch/rrdtool/pub/${P/_/-}.tar.gz";
 
 LICENSE="GPL-2"
-SLOT="0"
+SLOT="0/8.0.0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~x86-fbsd 
~amd64-linux ~ia64-linux ~x86-linux ~x86-macos ~x86-solaris"
 IUSE="dbi doc graph lua perl python rados rrdcgi ruby static-libs tcl tcpd"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2016-04-24 Thread Jeroen Roovers
commit: e9a26a543cfd3471dc9ce529c887b50c27310982
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Apr 24 19:37:13 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Apr 24 19:40:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9a26a54

net-analyzer/wireshark: Stable for PPC64 (bug #580882).

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

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

diff --git a/net-analyzer/wireshark/wireshark-2.0.3.ebuild 
b/net-analyzer/wireshark/wireshark-2.0.3.ebuild
index ba34310..3b460f4 100644
--- a/net-analyzer/wireshark/wireshark-2.0.3.ebuild
+++ b/net-analyzer/wireshark/wireshark-2.0.3.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] repo/gentoo:master commit in: net-analyzer/ntop/files/, net-analyzer/ntop/

2016-04-24 Thread Jeroen Roovers
commit: e84fb684085eec755093c510efab2900e9af9f4d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sun Apr 24 19:38:55 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sun Apr 24 19:40:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e84fb684

net-analyzer/ntop: Fix building against net-analyzer/rrdtool-1.6.0 (bug 
#581046).

Package-Manager: portage-2.2.28

 net-analyzer/ntop/files/ntop-5.0.1-librrd.patch | 31 +
 net-analyzer/ntop/ntop-5.0.1-r1.ebuild  | 17 ++
 2 files changed, 44 insertions(+), 4 deletions(-)

diff --git a/net-analyzer/ntop/files/ntop-5.0.1-librrd.patch 
b/net-analyzer/ntop/files/ntop-5.0.1-librrd.patch
new file mode 100644
index 000..db2530c
--- /dev/null
+++ b/net-analyzer/ntop/files/ntop-5.0.1-librrd.patch
@@ -0,0 +1,31 @@
+--- a/configure.in
 b/configure.in
+@@ -887,28 +887,6 @@
+fi
+ fi
+ 
+-RRD_LIB="-L${RRD_HOME}/lib -lrrd_th"
+-
+-if test -f "$RRD_HOME/lib/librrd_th.so"; then
+-   AC_MSG_RESULT(checking for rrdtool... yes)
+-else
+-  if test -f "$RRD_HOME/lib/librrd_th.dylib"; then # OSX
+- AC_MSG_RESULT(checking for rrdtool... yes)
+-  else
+- if test -f "$RRD_HOME/lib/librrd_th.a"; then
+-   AC_MSG_RESULT(checking for rrdtool... yes)
+- else
+-   AC_CHECK_LIB([rrd_th], [main])
+-   if test ".${ac_cv_lib_rrd_th_main}" != ".yes"; then
+- AC_MSG_ERROR(Unable to find RRD at $RRD_HOME: please use 
--with-rrd-home=DIR);
+-   AC_MSG_ERROR(RRD source can be downloaded from 
http://www.rrdtool.org/);
+-   else
+- RRD_LIB=
+-   fi
+- fi
+-  fi
+-fi
+-
+ RRD_INC=
+ if test -d "${RRD_HOME}/include"; then
+   RRD_INC="-I${RRD_HOME}/include"

diff --git a/net-analyzer/ntop/ntop-5.0.1-r1.ebuild 
b/net-analyzer/ntop/ntop-5.0.1-r1.ebuild
index 7893281..49b8f20 100644
--- a/net-analyzer/ntop/ntop-5.0.1-r1.ebuild
+++ b/net-analyzer/ntop/ntop-5.0.1-r1.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 PYTHON_COMPAT=( python2_7 )
 
-inherit autotools eutils user python-single-r1
+inherit autotools eutils multilib user python-single-r1
 
 DESCRIPTION="Network traffic analyzer with web interface"
 HOMEPAGE="http://www.ntop.org/products/ntop/";
@@ -50,8 +50,11 @@ pkg_setup() {
 }
 
 src_prepare() {
-   epatch "${FILESDIR}"/${P}-gentoo.patch
-   epatch "${FILESDIR}"/${P}-includes.patch
+   epatch \
+   "${FILESDIR}"/${P}-gentoo.patch \
+   "${FILESDIR}"/${P}-includes.patch \
+   "${FILESDIR}"/${P}-librrd.patch
+
cp /usr/share/aclocal/libtool.m4 libtool.m4.in
cat acinclude.m4.in libtool.m4.in acinclude.m4.ntop > acinclude.m4
eautoreconf
@@ -77,10 +80,16 @@ src_configure() {
econf
popd &>/dev/null || die
 
+   if has_version '

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

2016-04-24 Thread Anthony G. Basile
commit: fc5ab1a28e0313128d5f0488e8112dc93e52d4d7
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Apr 24 19:39:24 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Apr 24 19:39:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc5ab1a2

mail-client/mailx: remove compatibility link and elog message

Package-Manager: portage-2.2.26

 mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild | 8 
 1 file changed, 8 deletions(-)

diff --git a/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild 
b/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild
index 97001f4..639f6f6 100644
--- a/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild
+++ b/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild
@@ -56,12 +56,4 @@ src_install() {
doins misc/mail.help misc/mail.tildehelp
insinto /etc
doins misc/mail.rc
-
-   # compatibility link
-   dosym /usr/bin/mail /bin/mail
-}
-
-pkg_postinst() {
-   elog "mail command now lives in /usr/bin."
-   elog "Please adjust your scripts."
 }



[gentoo-commits] repo/gentoo:master commit in: mail-client/mailx/files/, mail-client/mailx/

2016-04-24 Thread Anthony G. Basile
commit: 6492645b5abdf58f024dcd5c2b0ff068d92f8cf2
Author: Felix Janda  posteo  de>
AuthorDate: Sun Apr 24 18:56:21 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Apr 24 19:39:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6492645b

mail-client/mailx: Fix build with musl, bug #575098

- Add patch
- Bump EAPI to 6

 .../mailx/files/mailx-8.1.2.20050715-musl.patch| 19 ++
 mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild   | 67 ++
 2 files changed, 86 insertions(+)

diff --git a/mail-client/mailx/files/mailx-8.1.2.20050715-musl.patch 
b/mail-client/mailx/files/mailx-8.1.2.20050715-musl.patch
new file mode 100644
index 000..a2e03ec
--- /dev/null
+++ b/mail-client/mailx/files/mailx-8.1.2.20050715-musl.patch
@@ -0,0 +1,19 @@
+--- a/mailx-8.1.2-0.20050715cvs.orig/EXT/vis.h
 b/mailx-8.1.2-0.20050715cvs.orig/EXT/vis.h
+@@ -70,9 +70,6 @@
+  */
+ #define   UNVIS_END   1   /* no more characters */
+ 
+-#include 
+-
+-__BEGIN_DECLS
+ char  *vis(char *, int, int, int);
+ int   strvis(char *, const char *, int);
+ int   strnvis(char *, const char *, size_t, int)
+@@ -84,6 +81,4 @@ int  unvis(char *, char, int *, int);
+ ssize_t strnunvis(char *, const char *, size_t)
+ /*__attribute__ ((__bounded__(__string__,1,3)))*/;
+ 
+-__END_DECLS
+-
+ #endif /* !_VIS_H_ */

diff --git a/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild 
b/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild
new file mode 100644
index 000..97001f4
--- /dev/null
+++ b/mail-client/mailx/mailx-8.1.2.20050715-r7.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils
+
+MX_MAJ_VER=${PV%.*}
+MX_MIN_VER=${PV##*.}
+MY_PV=${MX_MAJ_VER}-0.${MX_MIN_VER}cvs
+S=${WORKDIR}/${PN}-${MY_PV}.orig
+debian_patch=${PN}_${MY_PV}-1.diff.gz
+
+DESCRIPTION="The /bin/mail program, which is used to send mail via shell 
scripts"
+HOMEPAGE="http://www.debian.org/";
+SRC_URI="mirror://gentoo/mailx_${MY_PV}.orig.tar.gz
+   mirror://gentoo/${debian_patch}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x86-macos"
+IUSE=""
+
+DEPEND=">=net-libs/liblockfile-1.03
+   virtual/mta
+   mail-client/mailx-support"
+
+RDEPEND="${DEPEND}
+   !mail-client/nail
+   !net-mail/mailutils"
+
+src_prepare() {
+   epatch "${DISTDIR}/${debian_patch}"
+   epatch "${FILESDIR}/${P}-musl.patch"
+   epatch "${FILESDIR}/${P}-nostrip.patch"
+   sed -i -e "s: -O2: \$(EXTRAFLAGS):g" Makefile || die
+   epatch "${FILESDIR}/${P}-offsetof.patch"
+   eapply_user
+}
+
+src_compile() {
+   emake CC=$(tc-getCC) EXTRAFLAGS="${CFLAGS}"
+}
+
+src_install() {
+   dobin mail
+
+   doman mail.1
+
+   dosym mail /usr/bin/Mail
+   dosym mail /usr/bin/mailx
+   dosym mail.1 /usr/share/man/man1/Mail.1
+
+   insinto /usr/share/mailx/
+   doins misc/mail.help misc/mail.tildehelp
+   insinto /etc
+   doins misc/mail.rc
+
+   # compatibility link
+   dosym /usr/bin/mail /bin/mail
+}
+
+pkg_postinst() {
+   elog "mail command now lives in /usr/bin."
+   elog "Please adjust your scripts."
+}



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

2016-04-24 Thread Michał Górny
commit: 8a2a5bdaeee236de27ca7df64fb9ed0b3bce6a4f
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Apr 24 19:38:14 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Apr 24 19:38:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a2a5bda

app-admin/systemrescuecd-x86: Bump to 4.7.2, #581074

 app-admin/systemrescuecd-x86/Manifest  |  1 +
 .../systemrescuecd-x86-4.7.2.ebuild| 55 ++
 2 files changed, 56 insertions(+)

diff --git a/app-admin/systemrescuecd-x86/Manifest 
b/app-admin/systemrescuecd-x86/Manifest
index c303777..593b83c 100644
--- a/app-admin/systemrescuecd-x86/Manifest
+++ b/app-admin/systemrescuecd-x86/Manifest
@@ -8,3 +8,4 @@ DIST systemrescuecd-x86-4.6.0.iso 467294208 SHA256 
cdf1db091a7d963e3395f4d9b90f4
 DIST systemrescuecd-x86-4.6.1.iso 470530048 SHA256 
5812ea8198831b15db9ab37e772524a047c5750a9ee79789bcb4f77e117bf4d5 SHA512 
3ae7c4f3f2196190c8bac44da35878450ef5455240e10f5bf2063a28f0f1c59d35458c7db42a3324e8b963a9e8b250a1b54ffa85e5cb6cf27c9e94ae1fb593d3
 WHIRLPOOL 
fc389a182b2942efea89da1fc088c6d38e2c3a8df35d6012e3a3d560b3022866fed169dea2249f3d236cb1e559fe3bb44ec15c78a7740e93c843cebcaaf6dd5e
 DIST systemrescuecd-x86-4.7.0.iso 479350784 SHA256 
79de1d6f41dc195a247a15ef95f610b968a955b2892939326f58440284f481bb SHA512 
c0246dd558186d343ef6509eacb2abed82a3205e47eb00b0fa0e98cafbfd6dd8880e83bb7e98b2b019b6f1a0797abcb26c5101eed265a83c37139085dc1d
 WHIRLPOOL 
8f4cfb37dfe0ac7a788aff1d488b7c41dc34315aacbd0cf25ba2cc48824c77be748d8f5228f2b2fa92271f7d5e4e20d6207f7ae80e394111845be7d1fe133348
 DIST systemrescuecd-x86-4.7.1.iso 481220608 SHA256 
3d99953b14788c5b50d72083c7cc72d3edecb440077c71edd108fd90aef86505 SHA512 
13114a4e4616dfb8f118c07724fcca1fe9dd739a7c2dd8f5553f48dbaa744fe6d211cf6f341159b4ffda090f0101bd96f72d3e11c7c8c77a33a888d3c2859a6c
 WHIRLPOOL 
4494cbb7095d8447928400b7882b458c0be2552462fd64250dffee189f7dc60db4e5978e33eb34ed505d97c8964713241c0676e931ec3570358a87bedad853a6
+DIST systemrescuecd-x86-4.7.2.iso 482217984 SHA256 
b0ac091ec2f4658e2a150305053a2cf50c63b217465cd504559dee4447a7 SHA512 
2340facff40d8f7eaebf75bba771333d21e8951384c34b04dcc5734de3c18e0c8e50e5cc35b93ab91df48f2ba9dc51ebe97a820fdb322d9f169df7067d6a92d6
 WHIRLPOOL 
3bdbd296a5cee2dc6cd47313bc70c95b65dd4d198cc67907c3215e181b2ffc3366a3fce49561650ce70d9d732a646b039265543da065702c1e6894219d1a438a

diff --git a/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.7.2.ebuild 
b/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.7.2.ebuild
new file mode 100644
index 000..d7cc39e
--- /dev/null
+++ b/app-admin/systemrescuecd-x86/systemrescuecd-x86-4.7.2.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2015 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+DESCRIPTION="The .iso image of SystemRescueCD rescue disk, x86 (+ amd64) 
variant"
+HOMEPAGE="http://www.sysresccd.org/";
+SRC_URI="mirror://sourceforge/systemrescuecd/sysresccd-${PN#*-}/${PV}/${P}.iso"
+
+LICENSE="GPL-2"
+SLOT="${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+S=${WORKDIR}
+
+RESTRICT="mirror"
+
+src_install() {
+   insinto "/usr/share/${PN%-*}"
+   doins "${DISTDIR}/${P}.iso"
+}
+
+pkg_postinst() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # no version newer than ours? we're the newest!
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   ln -f -s -v "${P}.iso" "${f}" || die
+   fi
+}
+
+pkg_postrm() {
+   local f=${EROOT%/}/usr/share/${PN%-*}/${PN}-newest.iso
+
+   # if there is no version newer than ours installed
+   if ! has_version ">${CATEGORY}/${PF}"; then
+   # and we are truly and completely uninstalled...
+   if [[ ! ${REPLACED_BY_VERSION} ]]; then
+   # then find an older version to set the symlink to
+   local newest_version=$(best_version 
"<${CATEGORY}/${PF}")
+
+   if [[ ${newest_version} ]]; then
+   # update the symlink
+   ln -f -s -v "${newest_version%-r*}.iso" "${f}" 
|| die
+   else
+   # last version removed? clean up the symlink
+   rm -v "${f}" || die
+   # and the parent directory
+   rmdir "${f%/*}" || die
+   fi
+   fi
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtplugininfo/

2016-04-24 Thread Davide Pesavento
commit: d3dd39bc6bd833a9946385fa5ee0884ab7bdd1e2
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 19:24:53 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 19:24:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3dd39bc

dev-qt/qtplugininfo: new package

Package-Manager: portage-2.2.28

 dev-qt/qtplugininfo/Manifest  |  1 +
 dev-qt/qtplugininfo/metadata.xml  | 17 +
 dev-qt/qtplugininfo/qtplugininfo-5.6.0.ebuild | 24 
 3 files changed, 42 insertions(+)

diff --git a/dev-qt/qtplugininfo/Manifest b/dev-qt/qtplugininfo/Manifest
new file mode 100644
index 000..28138b9
--- /dev/null
+++ b/dev-qt/qtplugininfo/Manifest
@@ -0,0 +1 @@
+DIST qttools-opensource-src-5.6.0.tar.xz 9817788 SHA256 
0d244c61bbe5505cb94310e980b06ef13dd573511e80ccbdc060f71d5462219d SHA512 
d1bee83715d336bc0257b114bbfc7f97cf11f7d5ad75b45376c9b4a55224fa74b82fdc4c6db60dd0917553eef76b0286dde1d3b46e0262ef17c9a3dbbc142400
 WHIRLPOOL 
96d7fadd39575bf30c23684311aa59c7c86d6e65f49992a71151dcc330840336ad0508a602783c475b55f7f4d5a60c38ffbf380cb91f0974e1a1b352d59e4c2a

diff --git a/dev-qt/qtplugininfo/metadata.xml b/dev-qt/qtplugininfo/metadata.xml
new file mode 100644
index 000..08d85fc
--- /dev/null
+++ b/dev-qt/qtplugininfo/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   q...@gentoo.org
+   Gentoo Qt Project
+   
+   
+   https://bugreports.qt.io/
+   http://doc.qt.io/
+   
+   
+   
+   Must only be used by packages that are known to use 
private parts of the Qt API.
+   
+   
+

diff --git a/dev-qt/qtplugininfo/qtplugininfo-5.6.0.ebuild 
b/dev-qt/qtplugininfo/qtplugininfo-5.6.0.ebuild
new file mode 100644
index 000..edc1fd1
--- /dev/null
+++ b/dev-qt/qtplugininfo/qtplugininfo-5.6.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+QT5_MODULE="qttools"
+inherit qt5-build
+
+DESCRIPTION="Qt5 plugin metadata dumper"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+IUSE=""
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+"
+RDEPEND="${DEPEND}"
+
+QT5_TARGET_SUBDIRS=(
+   src/qtplugininfo
+)



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtpaths/

2016-04-24 Thread Davide Pesavento
commit: e18ec8e771e8cc63d1e4f9d1a369527bc06ba9e9
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 19:22:16 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 19:22:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e18ec8e7

dev-qt/qtpaths: use upstream description

Package-Manager: portage-2.2.28

 dev-qt/qtpaths/qtpaths-5.5.1-r1.ebuild | 4 ++--
 dev-qt/qtpaths/qtpaths-5.6.0.ebuild| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-qt/qtpaths/qtpaths-5.5.1-r1.ebuild 
b/dev-qt/qtpaths/qtpaths-5.5.1-r1.ebuild
index 7855af5..96c0e10 100644
--- a/dev-qt/qtpaths/qtpaths-5.5.1-r1.ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.5.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -6,7 +6,7 @@ EAPI=5
 QT5_MODULE="qttools"
 inherit qt5-build
 
-DESCRIPTION="Tool to query Qt path information"
+DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="amd64 arm ~hppa ~ppc64 ~x86"

diff --git a/dev-qt/qtpaths/qtpaths-5.6.0.ebuild 
b/dev-qt/qtpaths/qtpaths-5.6.0.ebuild
index f697b05..b5d7aec 100644
--- a/dev-qt/qtpaths/qtpaths-5.6.0.ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.6.0.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 QT5_MODULE="qttools"
 inherit qt5-build
 
-DESCRIPTION="Tool to query Qt path information"
+DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"



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

2016-04-24 Thread Davide Pesavento
commit: 4c5af87bb785c477e3f01bd79cef4965ba7b82ce
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 19:15:14 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 19:15:14 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=4c5af87b

dev-qt/qtplugininfo: new package

Package-Manager: portage-2.2.28

 dev-qt/qtplugininfo/Manifest   |  1 +
 dev-qt/qtplugininfo/metadata.xml   | 17 +++
 dev-qt/qtplugininfo/qtplugininfo-5.6..ebuild   | 24 ++
 dev-qt/qtplugininfo/qtplugininfo-5.7.0_beta.ebuild | 24 ++
 dev-qt/qtplugininfo/qtplugininfo-5.7..ebuild   | 24 ++
 dev-qt/qtplugininfo/qtplugininfo-5..ebuild | 24 ++
 6 files changed, 114 insertions(+)

diff --git a/dev-qt/qtplugininfo/Manifest b/dev-qt/qtplugininfo/Manifest
new file mode 100644
index 000..4ca39c3
--- /dev/null
+++ b/dev-qt/qtplugininfo/Manifest
@@ -0,0 +1 @@
+DIST qttools-opensource-src-5.7.0-beta.tar.xz 9821376 SHA256 
afc6a454a997fd000dc3fb5560e9562ffd6d3a9242bbf1445dd79c5ed4f10f2e SHA512 
55fab189746bda4195ff73f0e5d0b5e3ac83a1c3446b7d2fcb10b533005d29c0adaae3c2dd44e0a4122bacd428885a79ee376ac732522eb6c0323aa8c7e4
 WHIRLPOOL 
47873c117e2f9747c2af69ae08fb93438319561955f4e953b8f1c4874de59832d5427d6f110448787e493262c190e14169d0ab66ba15891209bad96510e7eaa5

diff --git a/dev-qt/qtplugininfo/metadata.xml b/dev-qt/qtplugininfo/metadata.xml
new file mode 100644
index 000..08d85fc
--- /dev/null
+++ b/dev-qt/qtplugininfo/metadata.xml
@@ -0,0 +1,17 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   q...@gentoo.org
+   Gentoo Qt Project
+   
+   
+   https://bugreports.qt.io/
+   http://doc.qt.io/
+   
+   
+   
+   Must only be used by packages that are known to use 
private parts of the Qt API.
+   
+   
+

diff --git a/dev-qt/qtplugininfo/qtplugininfo-5.6..ebuild 
b/dev-qt/qtplugininfo/qtplugininfo-5.6..ebuild
new file mode 100644
index 000..edc1fd1
--- /dev/null
+++ b/dev-qt/qtplugininfo/qtplugininfo-5.6..ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+QT5_MODULE="qttools"
+inherit qt5-build
+
+DESCRIPTION="Qt5 plugin metadata dumper"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+IUSE=""
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+"
+RDEPEND="${DEPEND}"
+
+QT5_TARGET_SUBDIRS=(
+   src/qtplugininfo
+)

diff --git a/dev-qt/qtplugininfo/qtplugininfo-5.7.0_beta.ebuild 
b/dev-qt/qtplugininfo/qtplugininfo-5.7.0_beta.ebuild
new file mode 100644
index 000..edc1fd1
--- /dev/null
+++ b/dev-qt/qtplugininfo/qtplugininfo-5.7.0_beta.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+QT5_MODULE="qttools"
+inherit qt5-build
+
+DESCRIPTION="Qt5 plugin metadata dumper"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+IUSE=""
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+"
+RDEPEND="${DEPEND}"
+
+QT5_TARGET_SUBDIRS=(
+   src/qtplugininfo
+)

diff --git a/dev-qt/qtplugininfo/qtplugininfo-5.7..ebuild 
b/dev-qt/qtplugininfo/qtplugininfo-5.7..ebuild
new file mode 100644
index 000..edc1fd1
--- /dev/null
+++ b/dev-qt/qtplugininfo/qtplugininfo-5.7..ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+QT5_MODULE="qttools"
+inherit qt5-build
+
+DESCRIPTION="Qt5 plugin metadata dumper"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+IUSE=""
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+"
+RDEPEND="${DEPEND}"
+
+QT5_TARGET_SUBDIRS=(
+   src/qtplugininfo
+)

diff --git a/dev-qt/qtplugininfo/qtplugininfo-5..ebuild 
b/dev-qt/qtplugininfo/qtplugininfo-5..ebuild
new file mode 100644
index 000..edc1fd1
--- /dev/null
+++ b/dev-qt/qtplugininfo/qtplugininfo-5..ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+QT5_MODULE="qttools"
+inherit qt5-build
+
+DESCRIPTION="Qt5 plugin metadata dumper"
+
+if [[ ${QT5_BUILD_TYPE} == release ]]; then
+   KEYWORDS="~amd64 ~x86"
+fi
+
+IUSE=""
+
+DEPEND="
+   ~dev-qt/qtcore-${PV}
+"
+RDEPEND="${DEPEND}"
+
+QT5_TARGET_SUBDIRS=(
+   src/qtplugininfo
+)



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

2016-04-24 Thread Davide Pesavento
commit: ae7e63f3e5195c0877718e016e47fd941438dbc7
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 19:17:46 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 19:17:46 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=ae7e63f3

dev-qt/qtpaths: use upstream description

Package-Manager: portage-2.2.28

 dev-qt/qtpaths/qtpaths-5.6..ebuild   | 2 +-
 dev-qt/qtpaths/qtpaths-5.7.0_beta.ebuild | 2 +-
 dev-qt/qtpaths/qtpaths-5.7..ebuild   | 2 +-
 dev-qt/qtpaths/qtpaths-5..ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-qt/qtpaths/qtpaths-5.6..ebuild 
b/dev-qt/qtpaths/qtpaths-5.6..ebuild
index f697b05..b5d7aec 100644
--- a/dev-qt/qtpaths/qtpaths-5.6..ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.6..ebuild
@@ -6,7 +6,7 @@ EAPI=6
 QT5_MODULE="qttools"
 inherit qt5-build
 
-DESCRIPTION="Tool to query Qt path information"
+DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"

diff --git a/dev-qt/qtpaths/qtpaths-5.7.0_beta.ebuild 
b/dev-qt/qtpaths/qtpaths-5.7.0_beta.ebuild
index f697b05..b5d7aec 100644
--- a/dev-qt/qtpaths/qtpaths-5.7.0_beta.ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.7.0_beta.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 QT5_MODULE="qttools"
 inherit qt5-build
 
-DESCRIPTION="Tool to query Qt path information"
+DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"

diff --git a/dev-qt/qtpaths/qtpaths-5.7..ebuild 
b/dev-qt/qtpaths/qtpaths-5.7..ebuild
index f697b05..b5d7aec 100644
--- a/dev-qt/qtpaths/qtpaths-5.7..ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.7..ebuild
@@ -6,7 +6,7 @@ EAPI=6
 QT5_MODULE="qttools"
 inherit qt5-build
 
-DESCRIPTION="Tool to query Qt path information"
+DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"

diff --git a/dev-qt/qtpaths/qtpaths-5..ebuild 
b/dev-qt/qtpaths/qtpaths-5..ebuild
index f697b05..b5d7aec 100644
--- a/dev-qt/qtpaths/qtpaths-5..ebuild
+++ b/dev-qt/qtpaths/qtpaths-5..ebuild
@@ -6,7 +6,7 @@ EAPI=6
 QT5_MODULE="qttools"
 inherit qt5-build
 
-DESCRIPTION="Tool to query Qt path information"
+DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"



[gentoo-commits] repo/gentoo:master commit in: app-doc/linuxfromscratch/

2016-04-24 Thread Anthony G. Basile
commit: 7db57b86bdb17328572efb218a6a78d62b30f9c4
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Apr 24 19:00:36 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Apr 24 19:04:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7db57b86

app-doc/linuxfromscratch: keyword ~arm64

Package-Manager: portage-2.2.26

 app-doc/linuxfromscratch/linuxfromscratch-7.4.ebuild | 4 ++--
 app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild | 2 +-
 app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild | 2 +-
 3 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/app-doc/linuxfromscratch/linuxfromscratch-7.4.ebuild 
b/app-doc/linuxfromscratch/linuxfromscratch-7.4.ebuild
index e73e117..7c0af7d 100644
--- a/app-doc/linuxfromscratch/linuxfromscratch-7.4.ebuild
+++ b/app-doc/linuxfromscratch/linuxfromscratch-7.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2014 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ SRC_URI="${MY_SRC}/LFS-BOOK-${PV}.tar.bz2
 
 LICENSE="CC-BY-NC-SA-2.5 MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm 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"
 IUSE="htmlsingle pdf"
 
 DEPEND=""

diff --git a/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild 
b/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild
index c3ebc77..066cdeb 100644
--- a/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild
+++ b/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild
@@ -16,7 +16,7 @@ SRC_URI="${MY_SRC}/LFS-BOOK-${PV}.tar.bz2
 
 LICENSE="CC-BY-NC-SA-2.5 MIT"
 SLOT="0"
-KEYWORDS="alpha amd64 arm 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"
 IUSE="htmlsingle pdf"
 
 DEPEND=""

diff --git a/app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild 
b/app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild
index a2b8f3d..51ce20a 100644
--- a/app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild
+++ b/app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild
@@ -16,7 +16,7 @@ SRC_URI="${MY_SRC}/LFS-BOOK-${PV}.tar.bz2
 
 LICENSE="CC-BY-NC-SA-2.5 MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~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"
 IUSE="htmlsingle pdf"
 
 DEPEND=""



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

2016-04-24 Thread Amy Winston
commit: 34ce4418faef42a515caa05c4d2e4b3a65f8914d
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Apr 24 18:56:09 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Sun Apr 24 18:56:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34ce4418

dev-python/vdirsyncer: fix dependencies bug #580902

Package-Manager: portage-2.2.26

 dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild |  5 ++---
 dev-python/vdirsyncer/vdirsyncer-0.9.3.ebuild | 13 ++---
 2 files changed, 8 insertions(+), 10 deletions(-)

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild
index 9a69fa9..44d155b 100644
--- a/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild
+++ b/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild
@@ -4,7 +4,7 @@
 
 EAPI="5"
 
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python3_{3,4} )
 
 inherit distutils-r1
 
@@ -25,7 +25,6 @@ RDEPEND=">=dev-python/click-5.0[${PYTHON_USEDEP}]
!=dev-python/requests-2.9.0[${PYTHON_USEDEP}]
=dev-python/lxml-3.4.4[${PYTHON_USEDEP}]
>=dev-python/requests-toolbelt-0.5.0[${PYTHON_USEDEP}]
-   dev-python/atomicwrites[${PYTHON_USEDEP}]
-   dev-python/keyring[${PYTHON_USEDEP}]"
+   dev-python/atomicwrites[${PYTHON_USEDEP}]"
 
 DOCS=( AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst config.example )

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.9.3.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.9.3.ebuild
index e93e382..e787260 100644
--- a/dev-python/vdirsyncer/vdirsyncer-0.9.3.ebuild
+++ b/dev-python/vdirsyncer/vdirsyncer-0.9.3.ebuild
@@ -4,12 +4,12 @@
 
 EAPI="6"
 
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
+PYTHON_COMPAT=( python3_{3,4} )
 
 inherit distutils-r1
 
 DESCRIPTION="Synchronize calendars and contacts"
-HOMEPAGE="https://github.com/untitaker/vdirsyncer";
+HOMEPAGE="https://github.com/pimutils/vdirsyncer";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
@@ -19,13 +19,12 @@ IUSE=""
 
 DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
 RDEPEND=">=dev-python/click-5.0[${PYTHON_USEDEP}]
-   dev-python/click-log[${PYTHON_USEDEP}]
-   dev-python/click-threading[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
+   >=dev-python/click-log-0.1.3[${PYTHON_USEDEP}]
+   >=dev-python/click-threading-0.1.2[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.4.1[${PYTHON_USEDEP}]
!=dev-python/requests-2.9.0[${PYTHON_USEDEP}]
=dev-python/lxml-3.4.4[${PYTHON_USEDEP}]
>=dev-python/requests-toolbelt-0.5.0[${PYTHON_USEDEP}]
-   dev-python/atomicwrites[${PYTHON_USEDEP}]
-   dev-python/keyring[${PYTHON_USEDEP}]"
+   >=dev-python/atomicwrites-0.1.7[${PYTHON_USEDEP}]"
 
 DOCS=( AUTHORS.rst CHANGELOG.rst CONTRIBUTING.rst README.rst config.example )



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

2016-04-24 Thread Amy Winston
commit: 1384d8e62f12ece7d13c98e84a615173ee9fceb1
Author: Amy Winston  gentoo  org>
AuthorDate: Sun Apr 24 18:59:28 2016 +
Commit: Amy Winston  gentoo  org>
CommitDate: Sun Apr 24 18:59:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1384d8e6

dev-python/vdirsyncer: homepage changed

Package-Manager: portage-2.2.26

 dev-python/vdirsyncer/vdirsyncer-0.7.5.ebuild | 2 +-
 dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.7.5.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.7.5.ebuild
index 9a69fa9..db05092 100644
--- a/dev-python/vdirsyncer/vdirsyncer-0.7.5.ebuild
+++ b/dev-python/vdirsyncer/vdirsyncer-0.7.5.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python{2_7,3_3,3_4} )
 inherit distutils-r1
 
 DESCRIPTION="Synchronize calendars and contacts"
-HOMEPAGE="https://github.com/untitaker/vdirsyncer";
+HOMEPAGE="https://github.com/pimutils/vdirsyncer";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"

diff --git a/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild 
b/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild
index 44d155b..3683e26 100644
--- a/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild
+++ b/dev-python/vdirsyncer/vdirsyncer-0.9.0.ebuild
@@ -9,7 +9,7 @@ PYTHON_COMPAT=( python3_{3,4} )
 inherit distutils-r1
 
 DESCRIPTION="Synchronize calendars and contacts"
-HOMEPAGE="https://github.com/untitaker/vdirsyncer";
+HOMEPAGE="https://github.com/pimutils/vdirsyncer";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-doc/linuxfromscratch/

2016-04-24 Thread Anthony G. Basile
commit: c504b93eca01653ac8bcbd64106faad3583313b2
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Apr 24 18:46:51 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Apr 24 18:46:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c504b93e

app-doc/linuxfromscratch: stabilize version 7.7 across arches

Package-Manager: portage-2.2.26

 app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild 
b/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild
index c18e083..c3ebc77 100644
--- a/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild
+++ b/app-doc/linuxfromscratch/linuxfromscratch-7.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -16,7 +16,7 @@ SRC_URI="${MY_SRC}/LFS-BOOK-${PV}.tar.bz2
 
 LICENSE="CC-BY-NC-SA-2.5 MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+KEYWORDS="alpha amd64 arm hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh sparc x86"
 IUSE="htmlsingle pdf"
 
 DEPEND=""



[gentoo-commits] repo/gentoo:master commit in: app-doc/linuxfromscratch/

2016-04-24 Thread Anthony G. Basile
commit: edface019a805bd52ec37c188fe1fa40c188a3e6
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Apr 24 18:42:56 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Apr 24 18:42:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edface01

app-doc/linuxfromscratch: version bump to 7.9, bug #581030

Package-Manager: portage-2.2.26

 app-doc/linuxfromscratch/Manifest  |  3 ++
 .../linuxfromscratch/linuxfromscratch-7.9.ebuild   | 38 ++
 2 files changed, 41 insertions(+)

diff --git a/app-doc/linuxfromscratch/Manifest 
b/app-doc/linuxfromscratch/Manifest
index 8e736d7..bab81a8 100644
--- a/app-doc/linuxfromscratch/Manifest
+++ b/app-doc/linuxfromscratch/Manifest
@@ -4,5 +4,8 @@ DIST LFS-BOOK-7.4.tar.bz2 201600 SHA256 
185ed3ea84b15825cb7ef59d202b6af48d87844e
 DIST LFS-BOOK-7.7-NOCHUNKS.html 2094733 SHA256 
a8ca1259eb59b4df2eb229161914e812ab59f4eec5f1f319de14d1410e9d3c77 SHA512 
72130c50b46eb20d8a0e0fe8d88215029d705a2836f41b044151dbac1b3ca08c2d9640fa89005f4a6e5ffdb2b894caf01d94bfdb0f35b6e7e9b818ee25ce70a9
 WHIRLPOOL 
329c2a6b55b61a4f3d317d9051ee6df3e496816601e4ef79d6d85461f3d2d68a46fc0441ea29a5df55e02536c4271819335068dccada9bcd8686e008bfbb3bed
 DIST LFS-BOOK-7.7.pdf 1739822 SHA256 
63fefce41cd8042d4e60481c881f76606e04e50f9b6afa47f56152ea33d79780 SHA512 
a6c50c98cc4d3533b0a3e32e8d19a2c48f0ed1246e1e729e553ca2f308c0a7252ff8dcd0c734517cb04c2e7f9a3ec50e94651bc789731a4384e4f55538b639c6
 WHIRLPOOL 
2af7006fd503d08e86b5d7885b0018b623f892f1900430f081c0b37096bbfe9634b774cc31bb4e852b26ac0de2e5399141af83c5fd31ca70663a7f3b8efa15b4
 DIST LFS-BOOK-7.7.tar.bz2 202946 SHA256 
6b1f896d2bbea75b5903462f98d62f6e961aa3cc98fd03d1167eb06360a8a61e SHA512 
72f245119e3bea5823c4117145e530f76d10a190ee5eec68d8d3b463e3e06d489391ba6b33cc42bc8b776373a97ce33c92ed5f7e7fdff74fe86d01d794b5fcbd
 WHIRLPOOL 
f8acb8dfa2eefaacf8d16e435f0f1f12b697fd692a6fd3d7cd0375d824c1fef459966a46314ffc7810d4f2bac9084721b0ca773dc1fbe9ce5e87d07bd0492326
+DIST LFS-BOOK-7.9-NOCHUNKS.html 2080270 SHA256 
5d97cc9341c17899383b7ce474ce0be9434cde17471a650b6f0e1a924909003a SHA512 
fb127a5c2cf10d8fd926dcb75c7744f4a1f2428e93dd715ee321b427de097df353787cf6344acac9544b6c6dca8f2444a2834fb605463f0c730680cbf9f85007
 WHIRLPOOL 
5bc97b627303efc3fe143967ecb48ba109749b6ecc2e1f262efcde0290fef570192df306fa8b61695409b9b230660d8df6ea1e6a7f4497b9070ee3e70041d426
+DIST LFS-BOOK-7.9.pdf 1736489 SHA256 
3166c6cab1a25d0b5540d6da7be98d48ffd900be313a7aed005c04cfe7a9aa13 SHA512 
3805e067cd26b90db9960fbbd4d608cc5edd341e8039496906905855f498b99ad7af78cd73a2123417173c2cf588593e0009a4154478733dae9a4ab1821c5edd
 WHIRLPOOL 
6f9203421744396ba95eacca39941255e8264b0b95f58b94e3ae58ac3991690e4633285f7de60fb9ad2450680b1427402db25350cf498b34a7cc0b5323d0eff4
+DIST LFS-BOOK-7.9.tar.bz2 215253 SHA256 
8ddfd54d56c987245fe9b55cefce43ad593599bdfe0ee01954d11142a465086a SHA512 
231f9f5896191cdca0e9df401c5ca1e29de612b94063a87725277f5a6d11678ce2d31df69ef1ab453ab7b485a33ff645ba317e62706284476a9c350f6e959b77
 WHIRLPOOL 
42be7bd5b61f32b5d524bc20145e5069b7c10271eea700250adc6a604abe081c44119c4caeae58411a6202edca801bc231ad12bf0c8f981f5ecf19aaa91c6bc4
 DIST lfs-bootscripts-20130821.tar.bz2 33885 SHA256 
6bf38eb5b6757ceae4e73e9af3393a4df9ab4cf70995b127ab927d06ea7cd35f SHA512 
c6a4262a67cf04eaa1ced205598b6ad5a9a361f78bc2eefea16af22863038ad1c01e3eddbf571e7cc44788eedfdd147b99d7579ee09063c2ccc9e8309786
 WHIRLPOOL 
a58c9d80d8440c038de2981d41b9aeb822b34e6bbef34691aaeeba3104a656eaac5a52d17b3cc0a631198690d30a813d1995e26cd4f654e22dd243b29a126569
 DIST lfs-bootscripts-20150222.tar.bz2 31584 SHA256 
264ed371e4fbae692a3bbb434ad0966f6f95d9ae7f6e3233148713093d8dbd85 SHA512 
983da1da3ee1c3456c195b887c2bfab0ff0b338ee7f6cacba9faf6f416f8d92129ee92a0bc4402f64fea8fa647a386c439a81725fe0a30a68e337c0f0aea0916
 WHIRLPOOL 
f9f5b50d929a162a26ac0caa877a82dc570dc47ad90a9280012fb9db463dd2a673d534650dfa00cfd7f037d173342c31720b2b45ba2894d3e819d2b7e23957eb

diff --git a/app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild 
b/app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild
new file mode 100644
index 000..a2b8f3d
--- /dev/null
+++ b/app-doc/linuxfromscratch/linuxfromscratch-7.9.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+MY_SRC="http://www.linuxfromscratch.org/lfs/downloads/${PV}";
+BOOTSCRIPT_PV="20150222"
+
+DESCRIPTION="LFS documents building a Linux system entirely from source"
+HOMEPAGE="http://www.linuxfromscratch.org/lfs";
+SRC_URI="${MY_SRC}/LFS-BOOK-${PV}.tar.bz2
+   ${MY_SRC}/lfs-bootscripts-${BOOTSCRIPT_PV}.tar.bz2
+   htmlsingle? ( ${MY_SRC}/LFS-BOOK-${PV}-NOCHUNKS.html )
+   pdf? ( ${MY_SRC}/LFS-BOOK-${PV}.pdf )"
+
+LICENSE="CC-BY-NC-SA-2.5 MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+IUSE="htmlsingle pdf"
+
+DEPEND=""
+RDEPEND=""
+
+S=${WO

[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-video-intel/

2016-04-24 Thread Manuel Rüger
commit: a22bfc117178ec16f572b0675b2e8ad17d4f3a3a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 18:19:48 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 18:19:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a22bfc11

x11-drivers/xf86-video-intel: Remove old

Package-Manager: portage-2.2.28

 x11-drivers/xf86-video-intel/Manifest  |  2 -
 .../xf86-video-intel-2.99.917_p20160407.ebuild | 75 --
 .../xf86-video-intel-2.99.917_p20160417.ebuild | 75 --
 3 files changed, 152 deletions(-)

diff --git a/x11-drivers/xf86-video-intel/Manifest 
b/x11-drivers/xf86-video-intel/Manifest
index 8668c2d..b381a8a 100644
--- a/x11-drivers/xf86-video-intel/Manifest
+++ b/x11-drivers/xf86-video-intel/Manifest
@@ -2,6 +2,4 @@ DIST xf86-video-intel-2.21.15.tar.bz2 1977431 SHA256 
7d5a140f82a72fd1cbc8a664d66
 DIST xf86-video-intel-2.9.1.tar.bz2 789001 SHA256 
95347c88854c2b41c07ab3bcdfadd1b8d27fb181a20520f185892877eb8d9d76 SHA512 
62a7c1852b2d0b89be93536e7852caf398fc743e11a12c5071baed5e767b29c382ff5eb9d6c3ab453fc4d94aa16245b607ef33b94198bf7c7626746772fcc290
 WHIRLPOOL 
7e61c5d1396829aa354c9fdfbe5a21723171390d86b3307a2a331061e128a9866408993410090fe5d607609d245c55843633730bc4521e9cb0ec478c8d6ede1c
 DIST xf86-video-intel-2.99.917.tar.bz2 2259040 SHA256 
00b781eea055582820a123c47b62411bdf6aabf4f03dc0568faec55faf9667c9 SHA512 
cbf4d46ad1ad5e5587c0f1f620ff534ef0645270517b60056b9f03e83d8216e2f456de46352a06c37c0c46963cc4ed20b71b815b20ec1bf680ff046e535f580f
 WHIRLPOOL 
b26f1b303a27825120e1036f15493119e8869ebae74a2663204fe1ee63cf9fc217e593c469d6c33151a73c9ea6e9df88d0e3a0bb74ece5109b51593785fd4d7d
 DIST xf86-video-intel-2.99.917_p20160403.tar.xz 936072 SHA256 
4e5a18807669f73bfc5b0c5c64e2bfa30f4618e9acdab2b4618b9ac2aa4a3b3a SHA512 
e338e9302b932a62c1dfe87d9a263786d0b8aaed16c30e00d4013eed93fc667ac9003414cba2d7cdeb8f674427965f7ba873b0fcdd852099b3a0456808c749a5
 WHIRLPOOL 
afa402b528d0b8a9d19077ad5d6a8cae54aa143e72ea047575de62f0816da1a44f933f82c20573491785e428914d868f4c7d9d7a3ea045cd9a941315d0563196
-DIST xf86-video-intel-2.99.917_p20160407.tar.xz 938784 SHA256 
80bc6dad26178f2c34ed40801137b4a8477b6195a95fab39c4e22b4f5e9d SHA512 
e2913d1529d29b6b8daea9b4c39fa50d45b247d66100704e6d5c8c2acd48817b8d8476f652f01e32983b2c34924a4dae23f20ab15ddaf18fce19609d04143699
 WHIRLPOOL 
6af1f3b8d29b2264a4f1478bf50b69ed8044682f7e5ef3f0109ebcd7054034440ae168c996344841f06a3d13f667d40ed11dfcb63d61885808c6b637002fc0eb
 DIST xf86-video-intel-2.99.917_p20160410.tar.xz 939428 SHA256 
c1459d4605fb160fe18d028d679544ab037ecfdca0a7fefff188a02b73220ebe SHA512 
78636a6251787d8f60ce8862df14adaeeff3e4813b3cd30ca4cd4e97f2facf8bf3ed8f7c399c37618fd0bd9b467d840c66cd9ba725ee04cf9c1b63fd4eacb38a
 WHIRLPOOL 
1ca3a3daff0689a0acf8763c91dba361916513a5d990b90d111724f5e5424485c5d1ff13dfe1b30d1079add9f896dc340a617e379988409f75ed33192b5f978c
-DIST xf86-video-intel-2.99.917_p20160417.tar.xz 939660 SHA256 
5ee2b1780cd5d810d09635c80f9657dec7a0c426b6709df7575888108937c8b9 SHA512 
aeedcfa4a2d37ee0be1834905198dd27905e6bcc4287656aeaa11902e6489ee62f4ecde734ac0f2654cec400c94539dcfe1d48e369e21942da43b38f2d6e22be
 WHIRLPOOL 
86cec6aa8f59be996b525c5498b2c48e53a5643a34c7d41028f55cb819a1e94b3285f42797c73f69420f53b37f7fefdb360ff300f8be8049491830d0f7f53d03

diff --git 
a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20160407.ebuild 
b/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20160407.ebuild
deleted file mode 100644
index 7ca5028..000
--- a/x11-drivers/xf86-video-intel/xf86-video-intel-2.99.917_p20160407.ebuild
+++ /dev/null
@@ -1,75 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-XORG_DRI=dri
-XORG_EAUTORECONF=yes
-inherit linux-info xorg-2
-
-DESCRIPTION="X.Org driver for Intel cards"
-
-KEYWORDS="~amd64 ~x86 ~amd64-fbsd -x86-fbsd"
-IUSE="debug +dri3 +sna +udev uxa xvmc"
-COMMIT_ID="59d371a9b215fdcd6139279435af7e1f6803309e"
-SRC_URI="https://cgit.freedesktop.org/xorg/driver/xf86-video-intel/snapshot/${COMMIT_ID}.tar.xz
 -> ${P}.tar.xz"
-
-S=${WORKDIR}/${COMMIT_ID}
-
-REQUIRED_USE="
-   || ( sna uxa )
-"
-RDEPEND="x11-libs/libXext
-   x11-libs/libXfixes
-   >=x11-libs/pixman-0.27.1
-   >=x11-libs/libdrm-2.4.29[video_cards_intel]
-   dri3? (
-   >=x11-base/xorg-server-1.18
-   )
-   sna? (
-   >=x11-base/xorg-server-1.10
-   )
-   udev? (
-   virtual/udev
-   )
-   xvmc? (
-   x11-libs/libXvMC
-   >=x11-libs/libxcb-1.5
-   x11-libs/xcb-util
-   )
-"
-DEPEND="${RDEPEND}
-   >=x11-proto/dri2proto-2.6
-   x11-proto/dri3proto
-   x11-proto/presentproto
-   x11-proto/resourceproto"
-
-src_configure() {
-   XORG_CONFIGURE_OPTIONS=(
-   $(use_enable debug)
-   $(use_enable dri)
-   $(use_en

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

2016-04-24 Thread Manuel Rüger
commit: 19f723f665087303fab4ddfb8aee13728f4442ad
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 18:16:01 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 18:16:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19f723f6

app-text/calibre: Version bump to 2.55.0

Gentoo-Bug: 574386

Package-Manager: portage-2.2.28

 app-text/calibre/Manifest  |   1 +
 app-text/calibre/calibre-2.55.0.ebuild | 249 +
 2 files changed, 250 insertions(+)

diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest
index 3e280ed..44edc12 100644
--- a/app-text/calibre/Manifest
+++ b/app-text/calibre/Manifest
@@ -1,3 +1,4 @@
 DIST calibre-1.20.0.tar.xz 32430560 SHA256 
475e09b1be4b9977240cbbe6743ab79da4b1f1afe3fe6015d212d868e8f2fac4 SHA512 
84ac25080cf4948398b79f9a1af688cca9cf9a5a9200b2aad649f5fda1cd0556be4ade0c8b09ea6ffcc95654eac05b8f8ed6ea9830174bc150e64de85e31
 WHIRLPOOL 
61b6ecde2e3f8679c1afea95dcd152a94ce03522c06dff34b406a5705f6255243f0565fbb5f9bef3ac96d7127190bd1b4363233fa24fafcd0412e061201f6fe8
 DIST calibre-2.35.0.tar.xz 37470944 SHA256 
7d883c7ed5cf7c3c2e53c4d18e3a67c15d8a0d3425df57919adb57132860518f SHA512 
a693c23e93ad1086fe70b0cc7dcf43b1a9c004f045a3c2fac42f6a4b9f231d4f1e7b55c8bae133ac48389d4e233e245deb958365e9c0283cd8668f0f5a2326a2
 WHIRLPOOL 
b07308d7bb9803a3a882aaf4143d287352aafae69383276d6ee95f7b92a8f65c50c8a5cdc6c242ae87d8faf13ad830fcea9e27364749614219bb221a3d6ac36a
 DIST calibre-2.47.0.tar.xz 38924632 SHA256 
048681cf6cb09b136017c6c99a1f1d908c6fcc3cdb2d40455cb4af8725395d0c SHA512 
932ab2bae12ce128fa497bdd95d3c5f4f67e65bced5b73882f9b812cd9290c0a89c04c89ad3e1b421119c1ca88b5bfb7870a3060c91b5c8198e5ad709dbfdc96
 WHIRLPOOL 
15f4d3e19eafc57aabb526147926a4fa3343d340fcbc528df91ade6d82a7bfa6f993baee6224508c8dbf551d9640c16db71fc30c438675d09876b633dd3f6ea8
+DIST calibre-2.55.0.tar.xz 39854472 SHA256 
a3a4f2914d491ab8c63725c11272d53bb4a91d282e6e5c6e0f245cb94b138188 SHA512 
f067c93f7b32dbb8f94e30831df1bf755c25edaeb9dd4793ec79941738e2431e5fe51219d169056b3bb1f71b4223e933cc29fdae6572f212109b44b696bd6af4
 WHIRLPOOL 
433c68117f2aec343db026851de1807ebbcef91b229cb7790a9a3de35bb9ea6e20c194097ab4b283935843d998aba61f5a036483d743e35b9cc8dffaa809c5fb

diff --git a/app-text/calibre/calibre-2.55.0.ebuild 
b/app-text/calibre/calibre-2.55.0.ebuild
new file mode 100644
index 000..71a3cf0
--- /dev/null
+++ b/app-text/calibre/calibre-2.55.0.ebuild
@@ -0,0 +1,249 @@
+# 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,ssl"
+
+inherit eutils fdo-mime bash-completion-r1 multilib toolchain-funcs 
python-single-r1
+
+DESCRIPTION="Ebook management application"
+HOMEPAGE="http://calibre-ebook.com/";
+SRC_URI="http://download.calibre-ebook.com/${PV}/${P}.tar.xz";
+
+LICENSE="
+   GPL-3+
+   GPL-3
+   GPL-2+
+   GPL-2
+   GPL-1+
+   LGPL-3+
+   LGPL-2.1+
+   LGPL-2.1
+   BSD
+   MIT
+   Old-MIT
+   Apache-2.0
+   public-domain
+   || ( Artistic GPL-1+ )
+   CC-BY-3.0
+   OFL-1.1
+   PSF-2
+   unRAR
+"
+KEYWORDS="~amd64 ~arm ~x86"
+SLOT="0"
+IUSE="+udisks"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=app-text/podofo-0.8.2:=
+   >=app-text/poppler-0.26.5[qt5]
+   >=dev-libs/chmlib-0.40:=
+   dev-libs/glib:2
+   >=dev-libs/icu-4.4:=
+   >=dev-python/apsw-3.7.17[${PYTHON_USEDEP}]
+   >=dev-python/beautifulsoup-3.0.5:python-2[${PYTHON_USEDEP}]
+   >=dev-python/cssselect-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/cssutils-0.9.9[${PYTHON_USEDEP}]
+   >=dev-python/dbus-python-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.2.1[${PYTHON_USEDEP}]
+   >=dev-python/mechanize-0.1.11[${PYTHON_USEDEP}]
+   dev-python/netifaces[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.0.1[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-1.4.1[${PYTHON_USEDEP}]
+   
>=dev-python/PyQt5-5.3.1[gui,svg,webkit,widgets,network,printsupport,${PYTHON_USEDEP}]
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   media-fonts/liberation-fonts
+   >=media-gfx/imagemagick-6.5.9[jpeg,png]
+   media-libs/fontconfig
+   >=media-libs/freetype-2:=
+   >=media-libs/libmtp-1.1.5:=
+   >=media-libs/libwmf-0.2.8
+   sys-libs/zlib
+   virtual/libusb:1=
+   virtual/python-dnspython[${PYTHON_USEDEP}]
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXrender
+   >=x11-misc/xdg-utils-1.0.2-r2
+   udisks? ( virtual/libudev )"
+RDEPEND="${COMMON_DEPEND}
+   udisks? ( || ( sys-fs/udisks:2 sys-fs/udisks:0 ) )"
+DEPEND="${COMMON_DEPEND}
+   >=dev-python/setuptools-0.6_rc5[${PYTHON_USEDEP}]
+   >=virtual/podof

[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/

2016-04-24 Thread Manuel Rüger
commit: 8af21e49d6429de0039df27c84685a352f0ce38a
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 17:18:39 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 18:16:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8af21e49

www-servers/nginx: Remove old

Package-Manager: portage-2.2.28

 www-servers/nginx/Manifest|   3 -
 www-servers/nginx/nginx-1.9.12.ebuild | 761 --
 www-servers/nginx/nginx-1.9.13.ebuild | 761 --
 3 files changed, 1525 deletions(-)

diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest
index a3279ee..e29cd6e 100644
--- a/www-servers/nginx/Manifest
+++ b/www-servers/nginx/Manifest
@@ -1,8 +1,6 @@
 DIST modsecurity-2.9.0.tar.gz 4246467 SHA256 
e2bbf789966c1f80094d88d9085a81bde082b2054f8e38e0db571ca49208f434 SHA512 
1af04f29bf23c51d03cdd3795c530f88b523a645aa02d776a6b23dcbc31decec7cd574919e5c7c7cf82684df2774062de5e465bddbbaf4c01a442c6d49401d3d
 WHIRLPOOL 
1167ba6048a3ca05dcdabf03c67ae12720cca0cec74547fc223ee92ff76b6d5131785fa77b5f16da180e56590c851c192eaf02817b798e4d6f41fa6bfb2735a6
 DIST modsecurity-2.9.1.tar.gz 4261212 SHA256 
958cc5a7a7430f93fac0fd6f8b9aa92fc1801efce0cda797d6029d44080a9b24 SHA512 
374733cbfc26e53d95b78c8f268a4e465d838163e9893fc24e33a9d272b114f1b287147bab6d0289575074cbbd94f48983e23fa59832cbcb32950046cea59269
 WHIRLPOOL 
5f41bebf032f8a269412d104b7632a06af4d4c495658c9cd1ebf69b82c10ce1bbcb34b9dd159a7b00e57348714a5e93ad3db19701dda51479accd3a9dc79a9cb
 DIST nginx-1.8.1.tar.gz 833473 SHA256 
8f4b3c630966c044ec72715754334d1fdf741caa1d5795fb4646c27d09f797b7 SHA512 
546eba1749af0034cb8b924d2432be2f0e82a75c545aa929391ef7234103c3f29376235a2ef1363b120e1825cda15aeb085a05f9ce3596c88466e112e82aa882
 WHIRLPOOL 
cd399083fb14bdb3498f1cd91a1cb59a73d37f323ce7c2a32500c9443f654cb5449137708cf149a0126aedb77abec9d1eb3dce3121f0b378d7d70e8eb18062af
-DIST nginx-1.9.12.tar.gz 899183 SHA256 
1af2eb956910ed4b11aaf525a81bc37e135907e7127948f9179f5410337da042 SHA512 
b5f4cae48c85cdc9a95006b6a321834de9d18981cb1a25670c9fc948d86b9a8906d25a1ca174626eb418b0afdb3f2e1df3cbb6f5a48bd781e39e2470a4d52520
 WHIRLPOOL 
0b6300528ae1c29e4f7647cdbe0ea6254b1bccbdcd7f0185b2bff25409aba093c089e5fa3c1a828e2cf7f55fa6d9d2f8b818f85014f37ccbf335a71cb2e93e32
-DIST nginx-1.9.13.tar.gz 907611 SHA256 
f7cd529a5879cd9cd5b62e6fc4a3a7e8d8363cb12c080ab480cc718c55736609 SHA512 
883e3d3be7a2a9abbeca54bed5b7004fc9810c1548a4de8f09ffc453ee077e75abfd0ae21bc87cd0814278a2cfefd2a5814b03faf4ec0298afbf75e530eb62f0
 WHIRLPOOL 
38d2e5006de6d9af2575d5b166051b3fa04406da89a6336b021b0a41be0f227566973fbeaaa9ae11967597c90f999dffd67129854693bc56ee840bed5fae5dd2
 DIST nginx-1.9.14.tar.gz 908191 SHA256 
2b4893076d28e6b4384bba8c4fdebfca6de6f8f68ec48a1ca94b9b855ff457d2 SHA512 
e73a10495a8b199856f4e5d6f428b46e0b1148cee26c8517e360130d9f1e85028b28f311879d31f37e1d3facccf6f215377e984ae937a44f45245fe09a3be90e
 WHIRLPOOL 
c4e1d2b8181b9c8c967de2d68314c05c28a1fe44bd35809f3672c2ff9b02d08e2f572970ab0328f85dbe9b29c6dae0c4ebb33586a8c70053e764158c055fa8d8
 DIST nginx-1.9.15.tar.gz 908984 SHA256 
cc89b277cc03f403c0b746d60aa5943cdecf59ae48278f8cb7e2df0cbdb6dac3 SHA512 
563cec7828d1e398ded83579c3c4afcd83fd809662e64a0212e25a34ce1b599135558e9fd8cee3e07ba028ee4b308e40ce9910a5071a3d8e3b7ec9f9bdef95f0
 WHIRLPOOL 
b87dd96b1fa34824fb6ca16da39d72cf6036f6276766ef420c3be8ceac8e8639ff74e842c1ffd5f8f2dd03d7c411197a05049c1673dc70862cee662b494da88f
 DIST nginx-auth-ldap-8517bb05ecc896b54429ca5e95137b0a386bd41a.tar.gz 16950 
SHA256 2f0b1a65847ea1da801a99b654f132e1c814d2fa49a43a324d8fc4ce6327935f SHA512 
65b0aec3a4b28625ef93d166f659d63b9ef7d971dea78b09987eaa02f632bf5b8f6c9afdb6ef444afa466dba7ff67180cad27e138e6818c2ba80bc804f140ca6
 WHIRLPOOL 
9ef896fa3501415e2c7022448783626af256c6c3878fcca5d6cc042a9789937147eb4c3743f92002ab8d09e4ce828532b9ae321dc284ef2560801da98153d146
@@ -19,7 +17,6 @@ DIST ngx_http_fancyindex-0.3.5.tar.gz 14837 SHA256 
e0998e83be58bc5787fa9243a76a9
 DIST ngx_http_fancyindex-0.3.6.tar.gz 17252 SHA256 
e73f1f0444f8c53601b51da8684b174c5ffd3b4ed6eb7956dd57f8b95485b68f SHA512 
ca2de16eef7d5e94104f44f180ebd98674c5799409d70d95fd6359512861efaa95d5242a9eb661363bcc5110032965f326e735a2b8fcfaaf29381023fd11a76e
 WHIRLPOOL 
68c089a11a39685e3cb934c12daf12bd4c7176da6d17a26d4ec18f5bb44c480695e622c732925255c10af4bf819aa52da0dcf457ca40bffdc8a6673a10440823
 DIST ngx_http_headers_more-0.26.tar.gz 28028 SHA256 
d6bdc51f9e778a3b23e41a51cae542c1467a1e5e55c1329a7ffc454be084fb6f SHA512 
842927de67d28f3cff596607f209d1004b6d49f1d45b861758405ed6fe6f7aab76ad63530ccdfff1c1947db1190dd65dee0a29f50026bfa7a39a9a051561cf88
 WHIRLPOOL 
0dc37c36717be40a07112388d913d20bc99d76f90604da618d5547f24d93c636c14c2cca18191ff5916b40ec0113da648cfc07e1c00b1853f2b15ce056d5f3d7
 DIST ngx_http_headers_more-0.29.tar.gz 27144 SHA256 
0a5f3003b5851373b03c542723eb5e7da44a01bf4c4c5f20b4de53f355a28d33 SHA512 
50a45922f8d2d54fca345bf47df71035362a6868b86872528f2414386c15cdcdb5466ea2

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

2016-04-24 Thread Manuel Rüger
commit: 5b6ae8ae1d7ce5a9f4000a4f833bae22dcd0b3d8
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 18:08:35 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 18:08:35 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5b6ae8ae

kde-apps/spectacle: Fix metadata

Package-Manager: portage-2.2.28

 kde-apps/spectacle/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/spectacle/metadata.xml b/kde-apps/spectacle/metadata.xml
index a81654b..dc09ce3 100644
--- a/kde-apps/spectacle/metadata.xml
+++ b/kde-apps/spectacle/metadata.xml
@@ -7,6 +7,6 @@


Enable support for the KDE Image Plugin 
Interface
-   Enable support for a share menu using 
kde-apps/purpose
+   Enable support for a share menu using 
dev-libs/purpose

 



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

2016-04-24 Thread Michael Palimaka
commit: 10074daa695ebfbeb15c89bc5450787d5c524a52
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Apr 24 17:59:43 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 18:01:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10074daa

media-libs/phonon-vlc: drop ppc64 keyword due to unsatisfied dependencies

media-libs/phonon had its ppc64 keyword dropped in 
b136d707464d2052d8442d8d8804b848a3a36060.

Package-Manager: portage-2.2.28

 media-libs/phonon-vlc/phonon-vlc-0.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/phonon-vlc/phonon-vlc-0.9.0.ebuild 
b/media-libs/phonon-vlc/phonon-vlc-0.9.0.ebuild
index 3344bda..99b4966 100644
--- a/media-libs/phonon-vlc/phonon-vlc-0.9.0.ebuild
+++ b/media-libs/phonon-vlc/phonon-vlc-0.9.0.ebuild
@@ -9,7 +9,7 @@ MY_P="${MY_PN}-${PV}"
 
 if [[ ${PV} != ** ]]; then
SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-fbsd"
 else
EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" )
inherit git-r3



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

2016-04-24 Thread Michael Palimaka
commit: db4cf8683f657660332aa0559c127661024c95d8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Apr 24 18:01:33 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 18:01:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db4cf868

media-libs/phonon-gstreamer: drop hppa and ppc64 keywords due to unsatisfied 
dependencies

media-libs/phonon had its hppa and ppc64 keywords dropped in 
b136d707464d2052d8442d8d8804b848a3a36060.

Package-Manager: portage-2.2.28

 media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0.ebuild 
b/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0.ebuild
index 6d575e7..62ed2b7 100644
--- a/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0.ebuild
+++ b/media-libs/phonon-gstreamer/phonon-gstreamer-4.9.0.ebuild
@@ -9,7 +9,7 @@ MY_P=${MY_PN}-${PV}
 
 if [[ ${PV} != ** ]]; then
SRC_URI="mirror://kde/stable/phonon/${MY_PN}/${PV}/${MY_P}.tar.xz"
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd ~x86-fbsd 
~x64-macos"
+   KEYWORDS="~amd64 ~arm ~ppc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-macos"
 else
EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" )
inherit git-r3



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

2016-04-24 Thread Davide Pesavento
commit: ea5341a838e161dab7d54e198ce7138c90fabfa6
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 17:55:32 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 17:55:32 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=ea5341a8

dev-qt/qtbluetooth: remove duplicate dependency

It's already added by qt5-build.eclass.

Package-Manager: portage-2.2.28

 dev-qt/qtbluetooth/qtbluetooth-5.6..ebuild   | 1 -
 dev-qt/qtbluetooth/qtbluetooth-5.7.0_beta.ebuild | 1 -
 dev-qt/qtbluetooth/qtbluetooth-5.7..ebuild   | 1 -
 dev-qt/qtbluetooth/qtbluetooth-5..ebuild | 1 -
 4 files changed, 4 deletions(-)

diff --git a/dev-qt/qtbluetooth/qtbluetooth-5.6..ebuild 
b/dev-qt/qtbluetooth/qtbluetooth-5.6..ebuild
index 896218d..f329a8c 100644
--- a/dev-qt/qtbluetooth/qtbluetooth-5.6..ebuild
+++ b/dev-qt/qtbluetooth/qtbluetooth-5.6..ebuild
@@ -23,7 +23,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
~dev-qt/qtnetwork-${PV}
-   virtual/pkgconfig
 "
 
 src_prepare() {

diff --git a/dev-qt/qtbluetooth/qtbluetooth-5.7.0_beta.ebuild 
b/dev-qt/qtbluetooth/qtbluetooth-5.7.0_beta.ebuild
index 896218d..f329a8c 100644
--- a/dev-qt/qtbluetooth/qtbluetooth-5.7.0_beta.ebuild
+++ b/dev-qt/qtbluetooth/qtbluetooth-5.7.0_beta.ebuild
@@ -23,7 +23,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
~dev-qt/qtnetwork-${PV}
-   virtual/pkgconfig
 "
 
 src_prepare() {

diff --git a/dev-qt/qtbluetooth/qtbluetooth-5.7..ebuild 
b/dev-qt/qtbluetooth/qtbluetooth-5.7..ebuild
index 896218d..f329a8c 100644
--- a/dev-qt/qtbluetooth/qtbluetooth-5.7..ebuild
+++ b/dev-qt/qtbluetooth/qtbluetooth-5.7..ebuild
@@ -23,7 +23,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
~dev-qt/qtnetwork-${PV}
-   virtual/pkgconfig
 "
 
 src_prepare() {

diff --git a/dev-qt/qtbluetooth/qtbluetooth-5..ebuild 
b/dev-qt/qtbluetooth/qtbluetooth-5..ebuild
index 896218d..f329a8c 100644
--- a/dev-qt/qtbluetooth/qtbluetooth-5..ebuild
+++ b/dev-qt/qtbluetooth/qtbluetooth-5..ebuild
@@ -23,7 +23,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
~dev-qt/qtnetwork-${PV}
-   virtual/pkgconfig
 "
 
 src_prepare() {



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

2016-04-24 Thread Michael Palimaka
commit: 4ef130316efae0f999cae6f0506ead06b1954ead
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Apr 23 21:38:03 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:30:43 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=4ef13031

kde-apps/konsolekalendar: Split building upstream

Package-Manager: portage-2.2.27

 .../konsolekalendar/konsolekalendar-.ebuild| 26 +++---
 1 file changed, 8 insertions(+), 18 deletions(-)

diff --git a/kde-apps/konsolekalendar/konsolekalendar-.ebuild 
b/kde-apps/konsolekalendar/konsolekalendar-.ebuild
index f93c574..e16d953 100644
--- a/kde-apps/konsolekalendar/konsolekalendar-.ebuild
+++ b/kde-apps/konsolekalendar/konsolekalendar-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
+KDE_HANDBOOK="forceoptional"
 KDE_PUNT_BOGUS_DEPS="true"
 KMNAME="kdepim"
 QT_MINIMAL="5.6.0"
@@ -33,27 +33,17 @@ RDEPEND="${DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/console"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/console"
 fi
 
-PATCHES=( "${FILESDIR}/kdepim-console.patch" )
-
 src_prepare() {
-   mv console/calendarjanitor calendarjanitor || die "Failed to move 
calendarjanitor"
-   mv console/konsolekalendar konsolekalendar || die "Failed to move 
konsolekalendar"
+   # konsolekalendar subproject does not contain doc
+   # at least until properly split upstream
+   echo "add_subdirectory(doc)" >> CMakeLists.txt || die "Failed to add 
doc dir"
+   mv ../doc/${PN} doc || die "Failed to move handbook"
 
+   cmake_comment_add_subdirectory calendarjanitor
kde5_src_prepare
 }
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON
-   )
-
-   kde5_src_configure
-}



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

2016-04-24 Thread Michael Palimaka
commit: 2c4c12ef7fdb2f292104d901fb5b92be16968716
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Apr 17 16:21:23 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:26:35 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=2c4c12ef

kde-apps/ktnef: Split building upstream

Package-Manager: portage-2.2.27

 kde-apps/ktnef/ktnef-.ebuild | 25 ++---
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/kde-apps/ktnef/ktnef-.ebuild b/kde-apps/ktnef/ktnef-.ebuild
index 42614c1..bcc00cf 100644
--- a/kde-apps/ktnef/ktnef-.ebuild
+++ b/kde-apps/ktnef/ktnef-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
+KDE_HANDBOOK="forceoptional"
 KDE_PUNT_BOGUS_DEPS="true"
 KMNAME="kdepim"
 QT_MINIMAL="5.6.0"
@@ -35,18 +35,21 @@ RDEPEND="${DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/${PN}"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
 fi
 
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON
-   )
+src_prepare() {
+   # ktnef subproject does not contain doc nor searches for DocTools
+   # at least until properly split upstream
+   echo "add_subdirectory(doc)" >> CMakeLists.txt || die "Failed to add 
doc dir"
 
-   kde5_src_configure
+   mkdir doc || die "Failed to create doc dir"
+   mv ../doc/${PN} doc || die "Failed to move handbook"
+   cat <<-EOF > doc/CMakeLists.txt
+find_package(KF5DocTools)
+add_subdirectory(${PN})
+EOF
+   kde5_src_prepare
 }



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtbluetooth/

2016-04-24 Thread Davide Pesavento
commit: 61c60bffac2515ea80406eba9d5fb9a6cb660251
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 17:52:52 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 17:53:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61c60bff

dev-qt/qtbluetooth: remove duplicate dependency

It's already added by qt5-build.eclass.

Package-Manager: portage-2.2.28

 dev-qt/qtbluetooth/qtbluetooth-5.5.1-r1.ebuild | 3 +--
 dev-qt/qtbluetooth/qtbluetooth-5.6.0.ebuild| 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/dev-qt/qtbluetooth/qtbluetooth-5.5.1-r1.ebuild 
b/dev-qt/qtbluetooth/qtbluetooth-5.5.1-r1.ebuild
index 34e81f6..2bdf6b0 100644
--- a/dev-qt/qtbluetooth/qtbluetooth-5.5.1-r1.ebuild
+++ b/dev-qt/qtbluetooth/qtbluetooth-5.5.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -23,7 +23,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
~dev-qt/qtnetwork-${PV}
-   virtual/pkgconfig
 "
 
 src_prepare() {

diff --git a/dev-qt/qtbluetooth/qtbluetooth-5.6.0.ebuild 
b/dev-qt/qtbluetooth/qtbluetooth-5.6.0.ebuild
index 896218d..f329a8c 100644
--- a/dev-qt/qtbluetooth/qtbluetooth-5.6.0.ebuild
+++ b/dev-qt/qtbluetooth/qtbluetooth-5.6.0.ebuild
@@ -23,7 +23,6 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}
~dev-qt/qtnetwork-${PV}
-   virtual/pkgconfig
 "
 
 src_prepare() {



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

2016-04-24 Thread Michael Palimaka
commit: 7c48620e5a4f556d7dd8637b8aebdb165320f958
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Apr 18 12:21:04 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:30:43 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7c48620e

kde-apps/kaddressbook: Split building upstream

Package-Manager: portage-2.2.27

 kde-apps/kaddressbook/kaddressbook-.ebuild | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/kde-apps/kaddressbook/kaddressbook-.ebuild 
b/kde-apps/kaddressbook/kaddressbook-.ebuild
index c656047..cb823c4 100644
--- a/kde-apps/kaddressbook/kaddressbook-.ebuild
+++ b/kde-apps/kaddressbook/kaddressbook-.ebuild
@@ -4,9 +4,9 @@
 
 EAPI=6
 
-KDE_HANDBOOK="false"
+KDE_HANDBOOK="forceoptional" # FIXME: Check back for doc in release
 KDE_PIM_KONTACTPLUGIN="true"
-KDE_TEST="true"
+KDE_TEST="forceoptional"
 KMNAME="kdepim"
 QT_MINIMAL="5.6.0"
 VIRTUALX_REQUIRED="test"
@@ -66,16 +66,13 @@ RDEPEND="${COMMON_DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/${PN}"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
 fi
 
 src_configure() {
local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON
$(cmake-utils_use_find_package prison KF5Prison)
)
 



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

2016-04-24 Thread Michael Palimaka
commit: f9e1e2608306800a970d46193e4f6e9985f5165f
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Apr 18 09:01:19 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:30:42 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f9e1e260

kde-apps/akregator: Split building upstream

Package-Manager: portage-2.2.27

 kde-apps/akregator/akregator-.ebuild | 20 +---
 1 file changed, 9 insertions(+), 11 deletions(-)

diff --git a/kde-apps/akregator/akregator-.ebuild 
b/kde-apps/akregator/akregator-.ebuild
index 17d6b5d..e368273 100644
--- a/kde-apps/akregator/akregator-.ebuild
+++ b/kde-apps/akregator/akregator-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="false"
+KDE_HANDBOOK="forceoptional"
 KDE_PIM_KONTACTPLUGIN="true"
 KDE_TEST="false"
 KMNAME="kdepim"
@@ -59,18 +59,16 @@ RDEPEND="${COMMON_DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/${PN}"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
 fi
 
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON
-   )
+src_prepare() {
+   # akregator subproject does not contain doc
+   # at least until properly split upstream
+   echo "add_subdirectory(doc)" >> CMakeLists.txt || die "Failed to add 
doc dir"
+   mv ../doc/${PN} doc || die "Failed to move handbook"
 
-   kde5_src_configure
+   kde5_src_prepare
 }



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

2016-04-24 Thread Michael Palimaka
commit: a6207559c902891c3884577b5561135f2799a01b
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Apr 18 08:54:56 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:26:35 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a6207559

kde-apps/blogilo: Split building upstream

Package-Manager: portage-2.2.27

 kde-apps/blogilo/blogilo-.ebuild | 15 ---
 1 file changed, 12 insertions(+), 3 deletions(-)

diff --git a/kde-apps/blogilo/blogilo-.ebuild 
b/kde-apps/blogilo/blogilo-.ebuild
index 4b36e28..c18b234 100644
--- a/kde-apps/blogilo/blogilo-.ebuild
+++ b/kde-apps/blogilo/blogilo-.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
+KDE_HANDBOOK="forceoptional"
 KDE_PUNT_BOGUS_DEPS="true"
 KMNAME="kdepim"
 QT_MINIMAL="5.6.0"
@@ -47,11 +47,20 @@ RDEPEND="${DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/${PN}"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
 fi
 
+src_prepare() {
+   # blogilo subproject does not contain doc
+   # at least until properly split upstream
+   echo "add_subdirectory(doc)" >> CMakeLists.txt || die "Failed to add 
doc dir"
+   mv ../doc/${PN} doc || die "Failed to move handbook"
+
+   kde5_src_prepare
+}
+
 src_configure() {
local mycmakeargs=(
-DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON



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

2016-04-24 Thread Michael Palimaka
commit: efc6d7c15a5db37be8afc4f678d66f63d7be1e6a
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Apr 23 22:22:39 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:30:43 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=efc6d7c1

kde5.eclass: Reshuffle kdepim split packaging handling

..into one legacy (16.04) block, keeping kontactplugin stuff for future

 eclass/kde5.eclass | 39 +++
 1 file changed, 19 insertions(+), 20 deletions(-)

diff --git a/eclass/kde5.eclass b/eclass/kde5.eclass
index 8dee37b..fb33249 100644
--- a/eclass/kde5.eclass
+++ b/eclass/kde5.eclass
@@ -533,8 +533,9 @@ kde5_src_prepare() {
fi
fi
 
-   # kdepim split packaging handling (drop other applications != {PN})
-   if [[ ${KMNAME} = "kdepim" && $(basename "${S}") != ${PN} ]] || [[ 
${PN} = "kdepim" ]] ; then
+   # legacy (16.04) kdepim split packaging handling (drop other 
applications != {PN})
+   if [[ ${KMNAME} = "kdepim" && ${PV} = "16.04*" && $(basename "${S}") != 
${PN} ]] || \
+   [[ ${PN} = "kdepim" ]] ; then
# make optional a lot of otherwise required dependencies in 
root CMakeLists.txt
sed -e "/find_package(KF5/ s/ REQUIRED//" \
-e "/find_package(Qt5 / s/ REQUIRED/ 
OPTIONAL_COMPONENTS/" \
@@ -547,15 +548,20 @@ kde5_src_prepare() {
-e "/find_package(Grantlee5/ s/ REQUIRED//" \
-i CMakeLists.txt || die "Failed to make dependencies 
optional"
 
-   # Boost: kdepim (kmail, mailfilteragent)
-   # MailTransportDBusService: kdepim (kmail)
-   # Phonon4Qt5: kdepim (kalarm, korgac)
if [[ ${PN} != "kdepim" ]] ; then
+   # Boost: kdepim (kmail, mailfilteragent)
+   # MailTransportDBusService: kdepim (kmail)
+   # Phonon4Qt5: kdepim (kalarm, korgac)
sed -e "/find_package(Boost/ s/^/#DONT/" \
-e "/set_package_properties(Boost/ s/^/#DONT/" \
-e "/find_package(MailTransportDBusService/ 
s/^/#DONT/" \
-e "/find_package(Phonon4Qt5/ s/^/#DONT/" \
-i CMakeLists.txt || die "Failed to disable 
dependencies"
+
+   # only build select handbook
+   if use_if_iuse handbook && [[ -e doc/CMakeLists.txt ]] 
; then
+   echo "add_subdirectory(${PN})" > 
doc/CMakeLists.txt
+   fi
fi
 
# remove anything else not listed here
@@ -575,23 +581,16 @@ kde5_src_prepare() {
fi
done
popd > /dev/null || die
-
-   # disable build of kontactplugin in kdepim and split kdepim 
packages
-   if ! use_if_iuse kontact ; then
-   for x in $(find ./ -name CMakeLists.txt -exec grep -l 
"add_subdirectory.*kontactplugin" "{}" ";"); do
-   einfo "Disabling kontactplugin in: ${x}"
-   pushd $(dirname "${x}") > /dev/null || die
-   cmake_comment_add_subdirectory kontactplugin
-   popd > /dev/null || die
-   done
-   fi
fi
 
-   # only build select handbook
-   if [[ ${KMNAME} = "kdepim" && $(basename "${S}") != ${PN} ]] ; then
-   if use_if_iuse handbook && [[ -e doc/CMakeLists.txt ]] ; then
-   echo "add_subdirectory(${PN})" > doc/CMakeLists.txt
-   fi
+   # disable build of kontactplugin in split kdepim packages
+   if ! use_if_iuse kontact ; then
+   for x in $(find ./ -name CMakeLists.txt -exec grep -l 
"add_subdirectory.*kontactplugin" "{}" ";"); do
+   einfo "Disabling kontactplugin in: ${x}"
+   pushd $(dirname "${x}") > /dev/null || die
+   cmake_comment_add_subdirectory kontactplugin
+   popd > /dev/null || die
+   done
fi
 }
 



[gentoo-commits] proj/kde:master commit in: kde-apps/kdepim-apps-libs/, kde-apps/blogilo/, kde-apps/kdepim/, ...

2016-04-24 Thread Michael Palimaka
commit: 708fe196d726520d63a5de530d4ba5fc5385b948
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Apr 23 20:09:59 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:30:43 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=708fe196

kde-apps: KDE PIM: Remove kdewebkit from DEPEND

 kde-apps/blogilo/blogilo-.ebuild   | 1 -
 kde-apps/kdepim-apps-libs/kdepim-apps-libs-.ebuild | 2 --
 kde-apps/kdepim/kdepim-.ebuild | 1 -
 kde-apps/messagelib/messagelib-.ebuild | 1 -
 4 files changed, 5 deletions(-)

diff --git a/kde-apps/blogilo/blogilo-.ebuild 
b/kde-apps/blogilo/blogilo-.ebuild
index c18b234..e996d59 100644
--- a/kde-apps/blogilo/blogilo-.ebuild
+++ b/kde-apps/blogilo/blogilo-.ebuild
@@ -21,7 +21,6 @@ DEPEND="
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kdewebkit)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kio)
$(add_frameworks_dep knotifications)

diff --git a/kde-apps/kdepim-apps-libs/kdepim-apps-libs-.ebuild 
b/kde-apps/kdepim-apps-libs/kdepim-apps-libs-.ebuild
index ba9539a..b7f 100644
--- a/kde-apps/kdepim-apps-libs/kdepim-apps-libs-.ebuild
+++ b/kde-apps/kdepim-apps-libs/kdepim-apps-libs-.ebuild
@@ -19,7 +19,6 @@ COMMON_DEPEND="
$(add_frameworks_dep kconfigwidgets)
$(add_frameworks_dep kcoreaddons)
$(add_frameworks_dep kdbusaddons)
-   $(add_frameworks_dep kdewebkit)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep kiconthemes)
$(add_frameworks_dep kio)
@@ -51,7 +50,6 @@ DEPEND="${COMMON_DEPEND}
 "
 RDEPEND="${COMMON_DEPEND}
!

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

2016-04-24 Thread Michael Palimaka
commit: 79b475465830d0b21bfd401f94053c2a31173537
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Apr 23 21:37:29 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:30:43 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=79b47546

kde-apps/calendarjanitor: Split building upstream

Package-Manager: portage-2.2.27

 .../calendarjanitor/calendarjanitor-.ebuild| 22 +++---
 1 file changed, 3 insertions(+), 19 deletions(-)

diff --git a/kde-apps/calendarjanitor/calendarjanitor-.ebuild 
b/kde-apps/calendarjanitor/calendarjanitor-.ebuild
index b3d9181..7188515 100644
--- a/kde-apps/calendarjanitor/calendarjanitor-.ebuild
+++ b/kde-apps/calendarjanitor/calendarjanitor-.ebuild
@@ -32,28 +32,12 @@ RDEPEND="${DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/console"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/console"
 fi
 
-PATCHES=( "${FILESDIR}/kdepim-console.patch" )
-
 src_prepare() {
-
-   mv console/calendarjanitor calendarjanitor || die "Failed to move 
calendarjanitor"
-   mv console/konsolekalendar konsolekalendar || die "Failed to move 
konsolekalendar"
-
+   cmake_comment_add_subdirectory konsolekalendar
kde5_src_prepare
 }
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON
-   )
-
-   kde5_src_configure
-}



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

2016-04-24 Thread Michael Palimaka
commit: 582cbad513ae964c4078a8f9bde18f36951a9e59
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sat Apr 16 22:30:39 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:26:34 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=582cbad5

kde-apps/akonadiconsole: Split building upstream

Package-Manager: portage-2.2.27

 kde-apps/akonadiconsole/akonadiconsole-.ebuild | 18 +++---
 1 file changed, 3 insertions(+), 15 deletions(-)

diff --git a/kde-apps/akonadiconsole/akonadiconsole-.ebuild 
b/kde-apps/akonadiconsole/akonadiconsole-.ebuild
index fc6ec8a..056c126 100644
--- a/kde-apps/akonadiconsole/akonadiconsole-.ebuild
+++ b/kde-apps/akonadiconsole/akonadiconsole-.ebuild
@@ -4,8 +4,7 @@
 
 EAPI=6
 
-KDE_HANDBOOK="false"
-KDE_PUNT_BOGUS_DEPS="true"
+KDE_HANDBOOK="forceoptional" # FIXME: Check back for doc in release
 KMNAME="kdepim"
 QT_MINIMAL="5.6.0"
 inherit kde5
@@ -49,18 +48,7 @@ RDEPEND="${DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/${PN}"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
 fi
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5X11Extras=ON
-   )
-
-   kde5_src_configure
-}



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

2016-04-24 Thread Michael Palimaka
commit: ee5e087cf6e0f07b7d5051417fe3379eb0e06564
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Mon Apr 18 09:40:23 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 17:30:43 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ee5e087c

kde-apps/knotes: Split building upstream

Package-Manager: portage-2.2.27

 kde-apps/kdepim/kdepim-.ebuild |  1 +
 kde-apps/knotes/knotes-.ebuild | 32 ++--
 2 files changed, 23 insertions(+), 10 deletions(-)

diff --git a/kde-apps/kdepim/kdepim-.ebuild 
b/kde-apps/kdepim/kdepim-.ebuild
index d9f25dc..43ced87 100644
--- a/kde-apps/kdepim/kdepim-.ebuild
+++ b/kde-apps/kdepim/kdepim-.ebuild
@@ -136,6 +136,7 @@ src_prepare() {
fi
 
sed -i \
+   -e "/akonadi_notes_agent/ s/^/#DONT/" \
-e "/akregator/ s/^/#DONT/" \
-e "/blogilo/ s/^/#DONT/" \
-e "/knotes/ s/^/#DONT/" \

diff --git a/kde-apps/knotes/knotes-.ebuild 
b/kde-apps/knotes/knotes-.ebuild
index b58a078..918b093 100644
--- a/kde-apps/knotes/knotes-.ebuild
+++ b/kde-apps/knotes/knotes-.ebuild
@@ -4,10 +4,9 @@
 
 EAPI=6
 
-KDE_HANDBOOK="true"
-KDE_PIM_KEEP_SUBDIR="noteshared"
+KDE_HANDBOOK="forceoptional"
 KDE_PIM_KONTACTPLUGIN="true"
-KDE_PUNT_BOGUS_DEPS="true"
+KDE_TEST="forceoptional"
 KMNAME="kdepim"
 QT_MINIMAL="5.6.0"
 inherit kde5
@@ -65,20 +64,33 @@ RDEPEND="${DEPEND}
 "
 
 if [[ ${KDE_BUILD_TYPE} = live ]] ; then
-   S="${WORKDIR}/${P}"
+   S="${WORKDIR}/${P}/${PN}"
 else
-   S="${WORKDIR}/${KMNAME}-${PV}"
+   S="${WORKDIR}/${KMNAME}-${PV}/${PN}"
 fi
 
+src_prepare() {
+   # knotes subproject does not contain doc
+   # at least until properly split upstream
+   echo "add_subdirectory(doc)" >> CMakeLists.txt || die "Failed to add 
doc dir"
+
+   mkdir doc || die "Failed to create doc dir"
+   mv ../doc/${PN} doc || die "Failed to move handbook"
+   mv ../doc/akonadi_notes_agent doc || die "Failed to move handbook"
+   cat <<-EOF > doc/CMakeLists.txt
+add_subdirectory(${PN})
+add_subdirectory(akonadi_notes_agent)
+EOF
+
+   kde5_src_prepare
+}
+
 src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5GAPI=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_KF5Prison=ON
-   -DCMAKE_DISABLE_FIND_PACKAGE_Qt5Designer=ON
-   )
+#  local mycmakeargs=(
 #  # FIXME: Does not build (last checked 2016-02-17)
 #  $(cmake-utils_use_find_package X Qt5X11Extras)
 #  $(cmake-utils_use_find_package X X11)
+#  )
 
kde5_src_configure
 }



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

2016-04-24 Thread Matt Thode
commit: 95a9b28a66df5ac55aee54cc2102662c69763433
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Apr 24 17:49:51 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Apr 24 17:49:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95a9b28a

dev-ruby/facter: remove ruby support

Package-Manager: portage-2.2.26

 dev-ruby/facter/facter-3.1.6.ebuild | 4 
 1 file changed, 4 deletions(-)

diff --git a/dev-ruby/facter/facter-3.1.6.ebuild 
b/dev-ruby/facter/facter-3.1.6.ebuild
index c78fa06..2475f6d 100644
--- a/dev-ruby/facter/facter-3.1.6.ebuild
+++ b/dev-ruby/facter/facter-3.1.6.ebuild
@@ -58,10 +58,6 @@ src_configure() {
cmake-utils_src_configure
 }
 
-each_ruby_install() {
-   doruby "${BUILD_DIR}"/lib/facter.rb
-}
-
 src_install() {
cmake-utils_src_install
ruby-ng_src_install



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

2016-04-24 Thread Michael Palimaka
commit: f87559adbf2d2703d92160ec74e63acf9097155f
Author: Andreas Sturmlechner  gmail  com>
AuthorDate: Sun Apr 24 12:59:12 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sun Apr 24 16:56:22 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f87559ad

kde-apps/libkcompactdisc: Fix configure with EAPI=6

Package-Manager: portage-2.2.27

 kde-apps/libkcompactdisc/libkcompactdisc-5..ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-apps/libkcompactdisc/libkcompactdisc-5..ebuild 
b/kde-apps/libkcompactdisc/libkcompactdisc-5..ebuild
index 22b025b..fc089d8 100644
--- a/kde-apps/libkcompactdisc/libkcompactdisc-5..ebuild
+++ b/kde-apps/libkcompactdisc/libkcompactdisc-5..ebuild
@@ -16,14 +16,14 @@ DEPEND="
$(add_frameworks_dep kdelibs4support)
$(add_frameworks_dep ki18n)
$(add_frameworks_dep solid)
-   media-libs/phonon[qt5]
$(add_qt_dep qtdbus)
+   media-libs/phonon[qt5]
 "
 RDEPEND="${DEPEND}"
 
 src_configure() {
local mycmakeargs=(
-   $(cmake-utils_use_find_package alsa)
+   $(cmake-utils_use_find_package alsa Alsa)
)
kde5_src_configure
 }



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

2016-04-24 Thread Manuel Rüger
commit: 1d452b0dd36f5dddc9785fd8f0ddd025bb16c41b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:14:20 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:14:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d452b0d

dev-ruby/simple_oauth: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/simple_oauth/simple_oauth-0.2.0-r1.ebuild | 4 ++--
 dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild| 4 ++--
 dev-ruby/simple_oauth/simple_oauth-0.3.1.ebuild| 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-ruby/simple_oauth/simple_oauth-0.2.0-r1.ebuild 
b/dev-ruby/simple_oauth/simple_oauth-0.2.0-r1.ebuild
index 8d4b937..4ec36f3 100644
--- a/dev-ruby/simple_oauth/simple_oauth-0.2.0-r1.ebuild
+++ b/dev-ruby/simple_oauth/simple_oauth-0.2.0-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 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"
+USE_RUBY="ruby20 ruby21"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 

diff --git a/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild 
b/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild
index 52bb554..992edf2 100644
--- a/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild
+++ b/dev-ruby/simple_oauth/simple_oauth-0.3.0.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2014 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"
+USE_RUBY="ruby20 ruby21"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 

diff --git a/dev-ruby/simple_oauth/simple_oauth-0.3.1.ebuild 
b/dev-ruby/simple_oauth/simple_oauth-0.3.1.ebuild
index e294ce9..b15cf7a 100644
--- a/dev-ruby/simple_oauth/simple_oauth-0.3.1.ebuild
+++ b/dev-ruby/simple_oauth/simple_oauth-0.3.1.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="rspec"
 



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

2016-04-24 Thread Manuel Rüger
commit: 65db2095baf3e92ed6f8901110293e0e4e1b52f5
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:13:45 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:13:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65db2095

dev-ruby/http_parser_rb: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild | 4 ++--
 dev-ruby/http_parser_rb/http_parser_rb-0.6.0.ebuild| 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild 
b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
index 1679d51..4ad52bb 100644
--- a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
+++ b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 

diff --git a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0.ebuild 
b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0.ebuild
index 115a26d..703706d 100644
--- a/dev-ruby/http_parser_rb/http_parser_rb-0.6.0.ebuild
+++ b/dev-ruby/http_parser_rb/http_parser_rb-0.6.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 



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

2016-04-24 Thread Manuel Rüger
commit: bc5bb55e5db224fa22d753dd877d4623019c7eba
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:15:17 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:15:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc5bb55e

dev-ruby/ruby-gdkpixbuf2: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild | 4 ++--
 dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3.ebuild| 4 ++--
 dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild| 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild 
b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild
index ebeb8e2..ec6aa67 100644
--- a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild
+++ b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_NAME="gdk_pixbuf2"
 

diff --git a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3.ebuild 
b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3.ebuild
index 58bb227..9a9802c 100644
--- a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.3.ebuild
+++ b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.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
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
 
 RUBY_FAKEGEM_NAME="gdk_pixbuf2"
 

diff --git a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild 
b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild
index ebeb8e2..ec6aa67 100644
--- a/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild
+++ b/dev-ruby/ruby-gdkpixbuf2/ruby-gdkpixbuf2-2.2.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_NAME="gdk_pixbuf2"
 



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

2016-04-24 Thread Manuel Rüger
commit: cb388961cfc31dc1e019deffc82d8494ddeefcf6
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:16:22 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:16:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb388961

dev-ruby/ruby-vte3: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild | 4 ++--
 dev-ruby/ruby-vte3/ruby-vte3-2.2.3.ebuild| 4 ++--
 dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild| 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild 
b/dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild
index d913d29..01a4cd8 100644
--- a/dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild
+++ b/dev-ruby/ruby-vte3/ruby-vte3-2.2.3-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 inherit ruby-ng-gnome2
 

diff --git a/dev-ruby/ruby-vte3/ruby-vte3-2.2.3.ebuild 
b/dev-ruby/ruby-vte3/ruby-vte3-2.2.3.ebuild
index 3c491fa..6e41726 100644
--- a/dev-ruby/ruby-vte3/ruby-vte3-2.2.3.ebuild
+++ b/dev-ruby/ruby-vte3/ruby-vte3-2.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
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
 
 inherit ruby-ng-gnome2
 

diff --git a/dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild 
b/dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild
index d913d29..01a4cd8 100644
--- a/dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild
+++ b/dev-ruby/ruby-vte3/ruby-vte3-2.2.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 inherit ruby-ng-gnome2
 



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

2016-04-24 Thread Manuel Rüger
commit: 1a7c64243296875d007074516d04f5c115df1763
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:11:45 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:11:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a7c6424

dev-ruby/ruby-oci8: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/ruby-oci8/ruby-oci8-2.1.7-r1.ebuild | 4 ++--
 dev-ruby/ruby-oci8/ruby-oci8-2.1.7.ebuild| 4 ++--
 dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild| 4 ++--
 dev-ruby/ruby-oci8/ruby-oci8-2.2.1.ebuild| 4 ++--
 4 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/dev-ruby/ruby-oci8/ruby-oci8-2.1.7-r1.ebuild 
b/dev-ruby/ruby-oci8/ruby-oci8-2.1.7-r1.ebuild
index e33ea5f..ef13ff5 100644
--- a/dev-ruby/ruby-oci8/ruby-oci8-2.1.7-r1.ebuild
+++ b/dev-ruby/ruby-oci8/ruby-oci8-2.1.7-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 inherit multilib ruby-fakegem
 

diff --git a/dev-ruby/ruby-oci8/ruby-oci8-2.1.7.ebuild 
b/dev-ruby/ruby-oci8/ruby-oci8-2.1.7.ebuild
index 9f1ff02..c039b35 100644
--- a/dev-ruby/ruby-oci8/ruby-oci8-2.1.7.ebuild
+++ b/dev-ruby/ruby-oci8/ruby-oci8-2.1.7.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
 
 inherit multilib ruby-fakegem
 

diff --git a/dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild 
b/dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild
index ffa3df4..3e84b0b 100644
--- a/dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild
+++ b/dev-ruby/ruby-oci8/ruby-oci8-2.1.8.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 inherit multilib ruby-fakegem
 

diff --git a/dev-ruby/ruby-oci8/ruby-oci8-2.2.1.ebuild 
b/dev-ruby/ruby-oci8/ruby-oci8-2.2.1.ebuild
index bf9bfef..fe0b915 100644
--- a/dev-ruby/ruby-oci8/ruby-oci8-2.2.1.ebuild
+++ b/dev-ruby/ruby-oci8/ruby-oci8-2.2.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 inherit multilib ruby-fakegem
 



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

2016-04-24 Thread Manuel Rüger
commit: d94b33d71cb7107f60d93a88febf4365adcfb8f3
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:10:57 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:10:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d94b33d7

dev-ruby/ruby-gtk3: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild | 4 ++--
 dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3.ebuild| 4 ++--
 dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild| 4 ++--
 3 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild 
b/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild
index 3f42215..b1acd59 100644
--- a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild
+++ b/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 inherit ruby-ng-gnome2
 

diff --git a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3.ebuild 
b/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3.ebuild
index 306eb03..f975813 100644
--- a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.3.ebuild
+++ b/dev-ruby/ruby-gtk3/ruby-gtk3-2.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
-USE_RUBY="ruby19 ruby20"
+USE_RUBY="ruby20"
 
 inherit ruby-ng-gnome2
 

diff --git a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild 
b/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild
index 8c3452d..fed2b93 100644
--- a/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild
+++ b/dev-ruby/ruby-gtk3/ruby-gtk3-2.2.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 inherit virtualx ruby-ng-gnome2
 



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

2016-04-24 Thread Manuel Rüger
commit: f80d111c2f9b6f30d987484bc99320bffaf129e2
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:12:34 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:12:34 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f80d111c

dev-ruby/ruby-opengl: Remove ruby19

Package-Manager: portage-2.2.28

 dev-ruby/ruby-opengl/ruby-opengl-0.8.0.ebuild | 4 ++--
 dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-ruby/ruby-opengl/ruby-opengl-0.8.0.ebuild 
b/dev-ruby/ruby-opengl/ruby-opengl-0.8.0.ebuild
index 9787b23..aef5ba6 100644
--- a/dev-ruby/ruby-opengl/ruby-opengl-0.8.0.ebuild
+++ b/dev-ruby/ruby-opengl/ruby-opengl-0.8.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2013 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"
+USE_RUBY="ruby20"
 
 RUBY_FAKEGEM_TASK_DOC=""
 

diff --git a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild 
b/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
index c07573f..79f79d9 100644
--- a/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
+++ b/dev-ruby/ruby-opengl/ruby-opengl-0.9.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby19 ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22"
 
 RUBY_FAKEGEM_TASK_DOC=""
 



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtcore/

2016-04-24 Thread Davide Pesavento
commit: 9b09bf3a07f8bcd685ed22eac0a78044c47a722d
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 16:07:51 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 16:08:07 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b09bf3a

dev-qt/qtcore: raise libpcre dep and ensure it's built with unicode support

Package-Manager: portage-2.2.28

 dev-qt/qtcore/qtcore-5.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtcore/qtcore-5.6.0.ebuild 
b/dev-qt/qtcore/qtcore-5.6.0.ebuild
index 8e344ed..4f64f5b 100644
--- a/dev-qt/qtcore/qtcore-5.6.0.ebuild
+++ b/dev-qt/qtcore/qtcore-5.6.0.ebuild
@@ -16,7 +16,7 @@ IUSE="icu systemd"
 
 DEPEND="
dev-libs/glib:2
-   >=dev-libs/libpcre-8.35[pcre16]
+   >=dev-libs/libpcre-8.38[pcre16,unicode]
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )



[gentoo-commits] repo/gentoo:master commit in: www-servers/nginx/

2016-04-24 Thread Manuel Rüger
commit: 73f6732e4e32cbdbad3519d7b0e5f2cd75c0be10
Author: Manuel Rüger  gentoo  org>
AuthorDate: Sun Apr 24 16:02:52 2016 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Sun Apr 24 16:02:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73f6732e

www-servers/nginx: Version bump to 1.9.15

Package-Manager: portage-2.2.28

 www-servers/nginx/Manifest|   1 +
 www-servers/nginx/nginx-1.9.15.ebuild | 761 ++
 2 files changed, 762 insertions(+)

diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest
index 67f8139..a3279ee 100644
--- a/www-servers/nginx/Manifest
+++ b/www-servers/nginx/Manifest
@@ -4,6 +4,7 @@ DIST nginx-1.8.1.tar.gz 833473 SHA256 
8f4b3c630966c044ec72715754334d1fdf741caa1d
 DIST nginx-1.9.12.tar.gz 899183 SHA256 
1af2eb956910ed4b11aaf525a81bc37e135907e7127948f9179f5410337da042 SHA512 
b5f4cae48c85cdc9a95006b6a321834de9d18981cb1a25670c9fc948d86b9a8906d25a1ca174626eb418b0afdb3f2e1df3cbb6f5a48bd781e39e2470a4d52520
 WHIRLPOOL 
0b6300528ae1c29e4f7647cdbe0ea6254b1bccbdcd7f0185b2bff25409aba093c089e5fa3c1a828e2cf7f55fa6d9d2f8b818f85014f37ccbf335a71cb2e93e32
 DIST nginx-1.9.13.tar.gz 907611 SHA256 
f7cd529a5879cd9cd5b62e6fc4a3a7e8d8363cb12c080ab480cc718c55736609 SHA512 
883e3d3be7a2a9abbeca54bed5b7004fc9810c1548a4de8f09ffc453ee077e75abfd0ae21bc87cd0814278a2cfefd2a5814b03faf4ec0298afbf75e530eb62f0
 WHIRLPOOL 
38d2e5006de6d9af2575d5b166051b3fa04406da89a6336b021b0a41be0f227566973fbeaaa9ae11967597c90f999dffd67129854693bc56ee840bed5fae5dd2
 DIST nginx-1.9.14.tar.gz 908191 SHA256 
2b4893076d28e6b4384bba8c4fdebfca6de6f8f68ec48a1ca94b9b855ff457d2 SHA512 
e73a10495a8b199856f4e5d6f428b46e0b1148cee26c8517e360130d9f1e85028b28f311879d31f37e1d3facccf6f215377e984ae937a44f45245fe09a3be90e
 WHIRLPOOL 
c4e1d2b8181b9c8c967de2d68314c05c28a1fe44bd35809f3672c2ff9b02d08e2f572970ab0328f85dbe9b29c6dae0c4ebb33586a8c70053e764158c055fa8d8
+DIST nginx-1.9.15.tar.gz 908984 SHA256 
cc89b277cc03f403c0b746d60aa5943cdecf59ae48278f8cb7e2df0cbdb6dac3 SHA512 
563cec7828d1e398ded83579c3c4afcd83fd809662e64a0212e25a34ce1b599135558e9fd8cee3e07ba028ee4b308e40ce9910a5071a3d8e3b7ec9f9bdef95f0
 WHIRLPOOL 
b87dd96b1fa34824fb6ca16da39d72cf6036f6276766ef420c3be8ceac8e8639ff74e842c1ffd5f8f2dd03d7c411197a05049c1673dc70862cee662b494da88f
 DIST nginx-auth-ldap-8517bb05ecc896b54429ca5e95137b0a386bd41a.tar.gz 16950 
SHA256 2f0b1a65847ea1da801a99b654f132e1c814d2fa49a43a324d8fc4ce6327935f SHA512 
65b0aec3a4b28625ef93d166f659d63b9ef7d971dea78b09987eaa02f632bf5b8f6c9afdb6ef444afa466dba7ff67180cad27e138e6818c2ba80bc804f140ca6
 WHIRLPOOL 
9ef896fa3501415e2c7022448783626af256c6c3878fcca5d6cc042a9789937147eb4c3743f92002ab8d09e4ce828532b9ae321dc284ef2560801da98153d146
 DIST nginx_http_sticky_module_ng-1.2.5.tar.bz2 124072 SHA256 
f975c033eb3c342f7247f6524774bbb727aaf630ed984576dbafe5de7a790c58 SHA512 
d6ae723f739efb2f0548461931b1c395801684759962beda08067111426b1c9787ceaede91b0e984c023108fd17864c53c53925506f7e8e25ec8d2fc065585f6
 WHIRLPOOL 
1013c6a51f5989c8131392b3d9704d42c99f9727a673f6205878d0b7dfd265bb6042c1d30089603c9b38e339d48302e6873e77fe380b7e8edba25b71e9e84ba6
 DIST nginx_http_sticky_module_ng-1.2.6.tar.bz2 124089 SHA256 
e47b9fd435d7a5a3200f945a9745aaa7b9446495bda76df48f211129f88d6b26 SHA512 
2632b04c94f523aa7c9726db182cba11d83e642c2db5798274e67fbef30de95d02e4e95cbfb98bc429d4244d630b5d9617405b43f728ae0117a5c134940c0ded
 WHIRLPOOL 
1b754c02f834c6b4d4930e9c46b8c5accb6c9663718fb9296c92d79bc33206e66e49e4234ca4db9a5afcd42fa23273bdf0e675aa7b38927c4e46a85318c189eb

diff --git a/www-servers/nginx/nginx-1.9.15.ebuild 
b/www-servers/nginx/nginx-1.9.15.ebuild
new file mode 100644
index 000..1196931
--- /dev/null
+++ b/www-servers/nginx/nginx-1.9.15.ebuild
@@ -0,0 +1,761 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+# Maintainer notes:
+# - http_rewrite-independent pcre-support makes sense for matching locations 
without an actual rewrite
+# - any http-module activates the main http-functionality and overrides 
USE=-http
+# - keep the following requirements in mind before adding external modules:
+#  * alive upstream
+#  * sane packaging
+#  * builds cleanly
+#  * does not need a patch for nginx core
+# - TODO: test the google-perftools module (included in vanilla tarball)
+
+# prevent perl-module from adding automagic perl DEPENDs
+GENTOO_DEPEND_ON_PERL="no"
+
+# devel_kit (https://github.com/simpl/ngx_devel_kit, BSD license)
+DEVEL_KIT_MODULE_PV="0.2.19"
+DEVEL_KIT_MODULE_P="ngx_devel_kit-${DEVEL_KIT_MODULE_PV}-r1"
+DEVEL_KIT_MODULE_URI="https://github.com/simpl/ngx_devel_kit/archive/v${DEVEL_KIT_MODULE_PV}.tar.gz";
+DEVEL_KIT_MODULE_WD="${WORKDIR}/ngx_devel_kit-${DEVEL_KIT_MODULE_PV}"
+
+# http_uploadprogress 
(https://github.com/masterzen/nginx-upload-progress-module, BSD-2 license)
+HTTP_UPLOAD_PROGRESS_MODULE_PV="0.9.1"
+HTTP_UPLOAD_PROGRESS_MODULE_P="ngx_http

[gentoo-commits] proj/qt:master commit in: eclass/, dev-qt/qtcore/

2016-04-24 Thread Davide Pesavento
commit: d1cd6fe09289146151c5c69a5a2817f2d90612f6
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 15:34:25 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 15:35:14 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=d1cd6fe0

dev-qt/qtcore: add TODO note on new dev-libs/double-conversion dep

Package-Manager: portage-2.2.28

 dev-qt/qtcore/qtcore-5.7.0_beta.ebuild | 1 +
 dev-qt/qtcore/qtcore-5.7..ebuild   | 1 +
 dev-qt/qtcore/qtcore-5..ebuild | 1 +
 eclass/qt5-build.eclass| 8 +---
 4 files changed, 8 insertions(+), 3 deletions(-)

diff --git a/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild 
b/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
index c19d231..df7d48e 100644
--- a/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
+++ b/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
@@ -14,6 +14,7 @@ fi
 
 IUSE="icu systemd"
 
+# TODO after bug 581054: dev-libs/double-conversion:=
 DEPEND="
dev-libs/glib:2
>=dev-libs/libpcre-8.35[pcre16]

diff --git a/dev-qt/qtcore/qtcore-5.7..ebuild 
b/dev-qt/qtcore/qtcore-5.7..ebuild
index c19d231..df7d48e 100644
--- a/dev-qt/qtcore/qtcore-5.7..ebuild
+++ b/dev-qt/qtcore/qtcore-5.7..ebuild
@@ -14,6 +14,7 @@ fi
 
 IUSE="icu systemd"
 
+# TODO after bug 581054: dev-libs/double-conversion:=
 DEPEND="
dev-libs/glib:2
>=dev-libs/libpcre-8.35[pcre16]

diff --git a/dev-qt/qtcore/qtcore-5..ebuild 
b/dev-qt/qtcore/qtcore-5..ebuild
index c19d231..df7d48e 100644
--- a/dev-qt/qtcore/qtcore-5..ebuild
+++ b/dev-qt/qtcore/qtcore-5..ebuild
@@ -14,6 +14,7 @@ fi
 
 IUSE="icu systemd"
 
+# TODO after bug 581054: dev-libs/double-conversion:=
 DEPEND="
dev-libs/glib:2
>=dev-libs/libpcre-8.35[pcre16]

diff --git a/eclass/qt5-build.eclass b/eclass/qt5-build.eclass
index ba3f5bf..30ef6db 100644
--- a/eclass/qt5-build.eclass
+++ b/eclass/qt5-build.eclass
@@ -84,7 +84,7 @@ case ${PV} in
QT5_BUILD_TYPE="release"
MY_P=${QT5_MODULE}-opensource-src-${PV/_/-}

SRC_URI="https://download.qt.io/development_releases/qt/${PV%.*}/${PV/_/-}/submodules/${MY_P}.tar.xz";
-   S=${WORKDIR}/${MY_P%-alpha}
+   S=${WORKDIR}/${MY_P}
;;
*)
# official stable release
@@ -557,9 +557,11 @@ qt5_base_configure() {
# use pkg-config to detect include and library paths
-pkg-config
 
-   # prefer system libraries (only common deps here)
+   # prefer system libraries (only common hard deps here)
-system-zlib
-system-pcre
+   # TODO after bug 581054
+   #$([[ ${QT5_MINOR_VERSION} -ge 7 ]] && echo 
-system-doubleconversion)
 
# disable everything to prevent automagic deps (part 1)
-no-mtdev
@@ -571,7 +573,7 @@ qt5_base_configure() {
-no-xkbcommon-x11 -no-xkbcommon-evdev
-no-xinput2 -no-xcb-xlib
 
-   # don't specify -no-gif because there is no way to override it 
later
+   # cannot use -no-gif because there is no way to override it 
later
#-no-gif
 
# always enable glib event loop support



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

2016-04-24 Thread Davide Pesavento
commit: a3e8d5f4bfe6557ef38692a29c788a12b663900e
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 15:44:18 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 15:44:18 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=a3e8d5f4

dev-qt/qtcore: use := on systemd dependency

We link against libsystemd.

Package-Manager: portage-2.2.28

 dev-qt/qtcore/qtcore-5.6..ebuild   | 2 +-
 dev-qt/qtcore/qtcore-5.7.0_beta.ebuild | 2 +-
 dev-qt/qtcore/qtcore-5.7..ebuild   | 2 +-
 dev-qt/qtcore/qtcore-5..ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-qt/qtcore/qtcore-5.6..ebuild 
b/dev-qt/qtcore/qtcore-5.6..ebuild
index c19d231..9404055 100644
--- a/dev-qt/qtcore/qtcore-5.6..ebuild
+++ b/dev-qt/qtcore/qtcore-5.6..ebuild
@@ -20,7 +20,7 @@ DEPEND="
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )
-   systemd? ( sys-apps/systemd )
+   systemd? ( sys-apps/systemd:= )
 "
 RDEPEND="${DEPEND}"
 

diff --git a/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild 
b/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
index df7d48e..1119dc0 100644
--- a/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
+++ b/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
@@ -21,7 +21,7 @@ DEPEND="
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )
-   systemd? ( sys-apps/systemd )
+   systemd? ( sys-apps/systemd:= )
 "
 RDEPEND="${DEPEND}"
 

diff --git a/dev-qt/qtcore/qtcore-5.7..ebuild 
b/dev-qt/qtcore/qtcore-5.7..ebuild
index df7d48e..1119dc0 100644
--- a/dev-qt/qtcore/qtcore-5.7..ebuild
+++ b/dev-qt/qtcore/qtcore-5.7..ebuild
@@ -21,7 +21,7 @@ DEPEND="
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )
-   systemd? ( sys-apps/systemd )
+   systemd? ( sys-apps/systemd:= )
 "
 RDEPEND="${DEPEND}"
 

diff --git a/dev-qt/qtcore/qtcore-5..ebuild 
b/dev-qt/qtcore/qtcore-5..ebuild
index df7d48e..1119dc0 100644
--- a/dev-qt/qtcore/qtcore-5..ebuild
+++ b/dev-qt/qtcore/qtcore-5..ebuild
@@ -21,7 +21,7 @@ DEPEND="
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )
-   systemd? ( sys-apps/systemd )
+   systemd? ( sys-apps/systemd:= )
 "
 RDEPEND="${DEPEND}"
 



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

2016-04-24 Thread Davide Pesavento
commit: f1c66749c739db5e7b468af1abc238a29cba8bd0
Author: Davide Pesavento  gentoo  org>
AuthorDate: Sun Apr 24 15:52:34 2016 +
Commit: Davide Pesavento  gentoo  org>
CommitDate: Sun Apr 24 15:52:34 2016 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=f1c66749

dev-qt/qtcore: raise libpcre dep and ensure it's built with unicode support

Package-Manager: portage-2.2.28

 dev-qt/qtcore/qtcore-5.6..ebuild   | 2 +-
 dev-qt/qtcore/qtcore-5.7.0_beta.ebuild | 2 +-
 dev-qt/qtcore/qtcore-5.7..ebuild   | 2 +-
 dev-qt/qtcore/qtcore-5..ebuild | 2 +-
 4 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/dev-qt/qtcore/qtcore-5.6..ebuild 
b/dev-qt/qtcore/qtcore-5.6..ebuild
index 9404055..25061d7 100644
--- a/dev-qt/qtcore/qtcore-5.6..ebuild
+++ b/dev-qt/qtcore/qtcore-5.6..ebuild
@@ -16,7 +16,7 @@ IUSE="icu systemd"
 
 DEPEND="
dev-libs/glib:2
-   >=dev-libs/libpcre-8.35[pcre16]
+   >=dev-libs/libpcre-8.38[pcre16,unicode]
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )

diff --git a/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild 
b/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
index 1119dc0..b1842b1 100644
--- a/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
+++ b/dev-qt/qtcore/qtcore-5.7.0_beta.ebuild
@@ -17,7 +17,7 @@ IUSE="icu systemd"
 # TODO after bug 581054: dev-libs/double-conversion:=
 DEPEND="
dev-libs/glib:2
-   >=dev-libs/libpcre-8.35[pcre16]
+   >=dev-libs/libpcre-8.38[pcre16,unicode]
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )

diff --git a/dev-qt/qtcore/qtcore-5.7..ebuild 
b/dev-qt/qtcore/qtcore-5.7..ebuild
index 1119dc0..b1842b1 100644
--- a/dev-qt/qtcore/qtcore-5.7..ebuild
+++ b/dev-qt/qtcore/qtcore-5.7..ebuild
@@ -17,7 +17,7 @@ IUSE="icu systemd"
 # TODO after bug 581054: dev-libs/double-conversion:=
 DEPEND="
dev-libs/glib:2
-   >=dev-libs/libpcre-8.35[pcre16]
+   >=dev-libs/libpcre-8.38[pcre16,unicode]
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )

diff --git a/dev-qt/qtcore/qtcore-5..ebuild 
b/dev-qt/qtcore/qtcore-5..ebuild
index 1119dc0..b1842b1 100644
--- a/dev-qt/qtcore/qtcore-5..ebuild
+++ b/dev-qt/qtcore/qtcore-5..ebuild
@@ -17,7 +17,7 @@ IUSE="icu systemd"
 # TODO after bug 581054: dev-libs/double-conversion:=
 DEPEND="
dev-libs/glib:2
-   >=dev-libs/libpcre-8.35[pcre16]
+   >=dev-libs/libpcre-8.38[pcre16,unicode]
>=sys-libs/zlib-1.2.5
virtual/libiconv
icu? ( dev-libs/icu:= )



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

2016-04-24 Thread Mike Gilbert
commit: 785cabb3a442da2490f2d356f1bd2c36ab7bde61
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Apr 24 15:48:31 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Apr 24 15:48:31 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=785cabb3

sys-boot/gummiboot: bump to 48

This is actually a tarball generated from commit 2bcd919c, post tag 48.

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

Package-Manager: portage-2.2.28_p71

 sys-boot/gummiboot/Manifest|  1 +
 sys-boot/gummiboot/gummiboot-48.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/sys-boot/gummiboot/Manifest b/sys-boot/gummiboot/Manifest
index eab1303..97fa2d1 100644
--- a/sys-boot/gummiboot/Manifest
+++ b/sys-boot/gummiboot/Manifest
@@ -1 +1,2 @@
 DIST gummiboot-45.tar.xz 126376 SHA256 
e3a6734c4c5acd3b42ec72dfc1214147c9f0ca74f08eeb44f969eb0d9b6d1e50 SHA512 
09472a34ef8697a605c65462dde41ef09b1528a63b3a006f73a179ebeb16ac236adf9aaf8c8d7d3c411f3e3e029eb47ad916dc13f69ad9558c4277b1fa3d0619
 WHIRLPOOL 
04418cb9fd20df1a2bf77264bb766dc8542df8c1b05038ae780fbaa5dfb83e84f02cfd1adb20e22a032e9b0ad6e4654f40e25a67e5edf6b09e918c257930b9e1
+DIST gummiboot-48.tar.xz 131284 SHA256 
e6b4b58c79cf600948d4d89a5324ced5736d7f20f7d3de74b2be8221123a9d40 SHA512 
c3b3176f1b2fc0f5c8e196c9e63cf6ff6111d009c46a6311bd96367256cf4fbc28b46e3ae9ab4452cdc3b41d92fa978052b9803274b01ec3da72562076ea7737
 WHIRLPOOL 
a9f2751a64a53b07a4d3fff17760f9ff38aed7ad4c0f60772b4b039d8b9a4ba50a9ef7006d28fc96d2653253ea9c65cb1e50391a467cb148684322e956d6fe05

diff --git a/sys-boot/gummiboot/gummiboot-48.ebuild 
b/sys-boot/gummiboot/gummiboot-48.ebuild
new file mode 100644
index 000..a4b017d
--- /dev/null
+++ b/sys-boot/gummiboot/gummiboot-48.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit linux-info
+
+DESCRIPTION="Minimalistic UEFI bootloader"
+HOMEPAGE="https://freedesktop.org/wiki/Software/gummiboot/";
+SRC_URI="https://dev.gentoo.org/~floppym/dist/${P}.tar.xz";
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+RDEPEND="sys-apps/util-linux"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   >=sys-boot/gnu-efi-3.0.2"
+
+pkg_pretend() {
+   # CONFIG_EFI_STUB  is required to boot a kernel with gummiboot
+   local CONFIG_CHECK="~EFI_STUB"
+   check_extra_config
+}



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

2016-04-24 Thread Mike Gilbert
commit: 8fa466c0ac9da67c50cb8400197c37d0a5fef33b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Apr 24 15:29:25 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Apr 24 15:30:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fa466c0

sys-boot/grub: backport sysmacros fix

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

Package-Manager: portage-2.2.28_p71

 sys-boot/grub/files/2.02_beta3-sysmacros.patch | 107 +
 sys-boot/grub/grub-2.02_beta3-r1.ebuild|   1 +
 2 files changed, 108 insertions(+)

diff --git a/sys-boot/grub/files/2.02_beta3-sysmacros.patch 
b/sys-boot/grub/files/2.02_beta3-sysmacros.patch
new file mode 100644
index 000..8610f3a
--- /dev/null
+++ b/sys-boot/grub/files/2.02_beta3-sysmacros.patch
@@ -0,0 +1,107 @@
+From 7a5b301e3adb8e054288518a325135a1883c1c6c Mon Sep 17 00:00:00 2001
+From: Mike Gilbert 
+Date: Tue, 19 Apr 2016 14:27:22 -0400
+Subject: [PATCH] build: Use AC_HEADER_MAJOR to find device macros
+
+Depending on the OS/libc, device macros are defined in different
+headers. This change ensures we include the right one.
+
+sys/types.h - BSD
+sys/mkdev.h - Sun
+sys/sysmacros.h - glibc (Linux)
+
+glibc currently pulls sys/sysmacros.h into sys/types.h, but this may
+change in a future release.
+
+https://sourceware.org/ml/libc-alpha/2015-11/msg00253.html
+---
+ configure.ac | 3 ++-
+ grub-core/osdep/devmapper/getroot.c  | 6 ++
+ grub-core/osdep/devmapper/hostdisk.c | 5 +
+ grub-core/osdep/linux/getroot.c  | 6 ++
+ grub-core/osdep/unix/getroot.c   | 4 +++-
+ 5 files changed, 22 insertions(+), 2 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 57e1713..9ddfc53 100644
+--- a/configure.ac
 b/configure.ac
+@@ -388,7 +388,8 @@ fi
+ 
+ # Check for functions and headers.
+ AC_CHECK_FUNCS(posix_memalign memalign getextmntent)
+-AC_CHECK_HEADERS(sys/param.h sys/mount.h sys/mnttab.h sys/mkdev.h limits.h)
++AC_CHECK_HEADERS(sys/param.h sys/mount.h sys/mnttab.h limits.h)
++AC_HEADER_MAJOR
+ 
+ AC_CHECK_MEMBERS([struct statfs.f_fstypename],,,[$ac_includes_default
+ #include 
+diff --git a/grub-core/osdep/devmapper/getroot.c 
b/grub-core/osdep/devmapper/getroot.c
+index 05eda50..72e5582 100644
+--- a/grub-core/osdep/devmapper/getroot.c
 b/grub-core/osdep/devmapper/getroot.c
+@@ -40,6 +40,12 @@
+ #include 
+ #endif
+ 
++#if defined(MAJOR_IN_MKDEV)
++#include 
++#elif defined(MAJOR_IN_SYSMACROS)
++#include 
++#endif
++
+ #include 
+ 
+ #include 
+diff --git a/grub-core/osdep/devmapper/hostdisk.c 
b/grub-core/osdep/devmapper/hostdisk.c
+index 19c1101..a697bcb 100644
+--- a/grub-core/osdep/devmapper/hostdisk.c
 b/grub-core/osdep/devmapper/hostdisk.c
+@@ -24,6 +24,11 @@
+ #include 
+ #include 
+ 
++#if defined(MAJOR_IN_MKDEV)
++#include 
++#elif defined(MAJOR_IN_SYSMACROS)
++#include 
++#endif
+ 
+ #ifdef HAVE_DEVICE_MAPPER
+ # include 
+diff --git a/grub-core/osdep/linux/getroot.c b/grub-core/osdep/linux/getroot.c
+index 10480b6..09e7e6e 100644
+--- a/grub-core/osdep/linux/getroot.c
 b/grub-core/osdep/linux/getroot.c
+@@ -35,6 +35,12 @@
+ #include 
+ #endif
+ 
++#if defined(MAJOR_IN_MKDEV)
++#include 
++#elif defined(MAJOR_IN_SYSMACROS)
++#include 
++#endif
++
+ #include 
+ #include  /* ioctl */
+ #include 
+diff --git a/grub-core/osdep/unix/getroot.c b/grub-core/osdep/unix/getroot.c
+index 1079a91..4bf37b0 100644
+--- a/grub-core/osdep/unix/getroot.c
 b/grub-core/osdep/unix/getroot.c
+@@ -51,8 +51,10 @@
+ #endif
+ 
+ #include 
+-#if defined(HAVE_SYS_MKDEV_H)
++#if defined(MAJOR_IN_MKDEV)
+ #include 
++#elif defined(MAJOR_IN_SYSMACROS)
++#include 
+ #endif
+ 
+ #if defined(HAVE_LIBZFS) && defined(HAVE_LIBNVPAIR)
+-- 
+2.8.1
+

diff --git a/sys-boot/grub/grub-2.02_beta3-r1.ebuild 
b/sys-boot/grub/grub-2.02_beta3-r1.ebuild
index 87d786d..43291a0 100644
--- a/sys-boot/grub/grub-2.02_beta3-r1.ebuild
+++ b/sys-boot/grub/grub-2.02_beta3-r1.ebuild
@@ -34,6 +34,7 @@ PATCHES=(
"${FILESDIR}"/gfxpayload.patch
"${FILESDIR}"/grub-2.02_beta2-KERNEL_GLOBS.patch
"${FILESDIR}"/2.02_beta3-10_linux-UUID.patch
+   "${FILESDIR}"/2.02_beta3-sysmacros.patch
 )
 
 DEJAVU=dejavu-sans-ttf-2.35



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

2016-04-24 Thread Alex Brandt
commit: dda6d7168097ee33b6c2b28392148606db54b920
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:18:20 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:18:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda6d716

dev-python/botocore: add version 1.4.11

Package-Manager: portage-2.2.28

 dev-python/botocore/Manifest   |  1 +
 dev-python/botocore/botocore-1.4.11.ebuild | 54 ++
 2 files changed, 55 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index b294007..67d42c5 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,3 +1,4 @@
 DIST botocore-1.3.22.tar.gz 2349601 SHA256 
02a6d320b09179bc5dcbafd4be732d9431bfebf5bed6d6b6508eca96b599a399 SHA512 
7b349a78c83051a29993ce00a11ecfa4734425c3ed27ce3e405140e19017b5c670d857ea489ea1f6f3ec767b3e4704547565b2ec67f5d7001a0cc30ff2a39de7
 WHIRLPOOL 
98c5e7488c6d1fe5c3e3484c770f8b346508359c5d174e5660f10ea62b054f442e3d15cc716ddd5acc42f1af0a10463c1923de138338175f1dcba9ced283c8ee
 DIST botocore-1.4.10.tar.gz 2453883 SHA256 
f0b740d07cf7b7a4ec08cafdf9db8cfd813d2d69bde1e7de0cffc50bf075aa4b SHA512 
51009ad6abc1f413e9dbeea52207c96df7d1647a6da8f0139e7557e36a3ad0fa440d32f430f5d7f690f0ec70b9c114ac1544c6fcddc8080acf5f2fa14bc5d1db
 WHIRLPOOL 
c9bc19adae6f7c4eceb33e448e717f41639fbc9126a07c6f511ccf958ace98fcbea54f02e928b4435fc3abfdd8b4da745b05227fd7397de89448e411e32b
+DIST botocore-1.4.11.tar.gz 2455881 SHA256 
96295db1444e9a458a3018205187ec424213e0a69c937062347f88b7b7e078fb SHA512 
b012c84095f86a0070846290daaca017a9af57c25c78d54e351e6cf8331a3650236c3fe92791e0f345ef91067084a00f9cea183cd4e208e6065a7e001ac793f4
 WHIRLPOOL 
aec9b6a5e7038dac6216940351d5746f98d809ecd2dad6d2e988091bf1df805c62f92aabf39684666a5c3ffd9b1e62ead6a454790cfd1c4b0c8a4a19d1fdc4c2
 DIST botocore-1.4.8.tar.gz 2445498 SHA256 
47bcd9bdcde8661f79a031da68f21bd86cc5ecf07cec5cd1de0af114911d1806 SHA512 
80d87b70eb2d70ace91e95746cb9e15f4435e12d141769764a7f82fbb03a1ce2c85266cee93499ee26f343bfcc700dfde7e6e5ec3af9b8ab0a99a8cb9997d61c
 WHIRLPOOL 
7b39ad4e451fcd4ed2b58da709474983be9305c4e4b15ca42ea1c46aa5f4874edc7472cb5b6935dec6d356b3e693658168940f82645ff95396264eec72e904ac

diff --git a/dev-python/botocore/botocore-1.4.11.ebuild 
b/dev-python/botocore/botocore-1.4.11.ebuild
new file mode 100644
index 000..f3ea5ec
--- /dev/null
+++ b/dev-python/botocore/botocore-1.4.11.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3."
+HOMEPAGE="https://github.com/boto/botocore";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+CDEPEND="
+   >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   =dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
+   

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

2016-04-24 Thread Alex Brandt
commit: e3c4513db9209f7f76afbc9657e9b2fc316c4cd5
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:20:39 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:20:39 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3c4513d

dev-python/botocore: remove version 1.4.8

Package-Manager: portage-2.2.28

 dev-python/botocore/Manifest  |  1 -
 dev-python/botocore/botocore-1.4.8.ebuild | 54 ---
 2 files changed, 55 deletions(-)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 67d42c5..41c01ff 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,4 +1,3 @@
 DIST botocore-1.3.22.tar.gz 2349601 SHA256 
02a6d320b09179bc5dcbafd4be732d9431bfebf5bed6d6b6508eca96b599a399 SHA512 
7b349a78c83051a29993ce00a11ecfa4734425c3ed27ce3e405140e19017b5c670d857ea489ea1f6f3ec767b3e4704547565b2ec67f5d7001a0cc30ff2a39de7
 WHIRLPOOL 
98c5e7488c6d1fe5c3e3484c770f8b346508359c5d174e5660f10ea62b054f442e3d15cc716ddd5acc42f1af0a10463c1923de138338175f1dcba9ced283c8ee
 DIST botocore-1.4.10.tar.gz 2453883 SHA256 
f0b740d07cf7b7a4ec08cafdf9db8cfd813d2d69bde1e7de0cffc50bf075aa4b SHA512 
51009ad6abc1f413e9dbeea52207c96df7d1647a6da8f0139e7557e36a3ad0fa440d32f430f5d7f690f0ec70b9c114ac1544c6fcddc8080acf5f2fa14bc5d1db
 WHIRLPOOL 
c9bc19adae6f7c4eceb33e448e717f41639fbc9126a07c6f511ccf958ace98fcbea54f02e928b4435fc3abfdd8b4da745b05227fd7397de89448e411e32b
 DIST botocore-1.4.11.tar.gz 2455881 SHA256 
96295db1444e9a458a3018205187ec424213e0a69c937062347f88b7b7e078fb SHA512 
b012c84095f86a0070846290daaca017a9af57c25c78d54e351e6cf8331a3650236c3fe92791e0f345ef91067084a00f9cea183cd4e208e6065a7e001ac793f4
 WHIRLPOOL 
aec9b6a5e7038dac6216940351d5746f98d809ecd2dad6d2e988091bf1df805c62f92aabf39684666a5c3ffd9b1e62ead6a454790cfd1c4b0c8a4a19d1fdc4c2
-DIST botocore-1.4.8.tar.gz 2445498 SHA256 
47bcd9bdcde8661f79a031da68f21bd86cc5ecf07cec5cd1de0af114911d1806 SHA512 
80d87b70eb2d70ace91e95746cb9e15f4435e12d141769764a7f82fbb03a1ce2c85266cee93499ee26f343bfcc700dfde7e6e5ec3af9b8ab0a99a8cb9997d61c
 WHIRLPOOL 
7b39ad4e451fcd4ed2b58da709474983be9305c4e4b15ca42ea1c46aa5f4874edc7472cb5b6935dec6d356b3e693658168940f82645ff95396264eec72e904ac

diff --git a/dev-python/botocore/botocore-1.4.8.ebuild 
b/dev-python/botocore/botocore-1.4.8.ebuild
deleted file mode 100644
index f3ea5ec..000
--- a/dev-python/botocore/botocore-1.4.8.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
-
-inherit distutils-r1
-
-DESCRIPTION="Low-level, data-driven core of boto 3."
-HOMEPAGE="https://github.com/boto/botocore";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-CDEPEND="
-   >=dev-python/docutils-0.10[${PYTHON_USEDEP}]
-   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
-   =dev-python/python-dateutil-2.1[${PYTHON_USEDEP}]
-   

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

2016-04-24 Thread Alex Brandt
commit: 5295d73d0ba6f3f24ffd0fa99fba75f653ad632c
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:16:43 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:16:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5295d73d

dev-python/stormpath: remove version 2.1.4

Package-Manager: portage-2.2.28

 dev-python/stormpath/Manifest   |  1 -
 dev-python/stormpath/stormpath-2.1.4.ebuild | 51 -
 2 files changed, 52 deletions(-)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 17b563e..4411481 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,4 +1,3 @@
-DIST stormpath-2.1.4.tar.gz 4338169 SHA256 
adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 
6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0
 WHIRLPOOL 
6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 
cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 
d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b0700297beebb894b4d5301df97a836a4204622ea83af
 WHIRLPOOL 
14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 
47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 
2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611
 WHIRLPOOL 
c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
 DIST stormpath-2.3.1.tar.gz 4346382 SHA256 
cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 
1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9
 WHIRLPOOL 
91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70

diff --git a/dev-python/stormpath/stormpath-2.1.4.ebuild 
b/dev-python/stormpath/stormpath-2.1.4.ebuild
deleted file mode 100644
index e6bdfe5..000
--- a/dev-python/stormpath/stormpath-2.1.4.ebuild
+++ /dev/null
@@ -1,51 +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 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST 
API."
-HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python";
-SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/pytest-cov[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="
-   >=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
-   >=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
-   >=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
-   >=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
-   >=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
-   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
-"
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   esetup.py test
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-
-   distutils-r1_python_install_all
-}



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

2016-04-24 Thread Alex Brandt
commit: 47b1828835e54f73ac4579909b32a71ee5e98a43
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:14:06 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:14:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47b18288

dev-python/stormpath: add version 2.3.1

Package-Manager: portage-2.2.28

 dev-python/stormpath/Manifest   |  1 +
 dev-python/stormpath/stormpath-2.3.1.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-python/stormpath/Manifest b/dev-python/stormpath/Manifest
index 2bca960..17b563e 100644
--- a/dev-python/stormpath/Manifest
+++ b/dev-python/stormpath/Manifest
@@ -1,3 +1,4 @@
 DIST stormpath-2.1.4.tar.gz 4338169 SHA256 
adbc595b243861be0268c2c71061de8ce6dc8f9a92d7398f92bf77a734315b2f SHA512 
6834f1b8db731872208c96b9acb2ff66e5d7fcbb6ae0c1f1de541ce1597a786834f2b68c43d00c5adcb1018749c53b45444dde2a81a520fed79fd9b6f0f07ab0
 WHIRLPOOL 
6f50a1f6476d4486f43da55ae48c56942ef90820db4434c3b567222cb65d56aaa5649249dfc10add807f5ccba245d99b89efa031201af61bc888b902cf66b4ea
 DIST stormpath-2.1.5.tar.gz 4339093 SHA256 
cea6810c5caa666c3a73ea0bbf14826687318aea2a82c51d93886679b786b94b SHA512 
d373d36bd6dc647fcedad99722c6ff53447b4b11090ffbbf2e72a206d27e66804d7e756d0588b80b0700297beebb894b4d5301df97a836a4204622ea83af
 WHIRLPOOL 
14a580f934afc74f7f15b4ac897474bb00ab199470d94c671b3f39c625d460aa601329a18cf23b206f12ab2b0f9f25d5903c14f507f614e38953da47bdfc7a92
 DIST stormpath-2.1.6.tar.gz 4339678 SHA256 
47649cf8edaf5ef48346f74558e62e0aaf28fb49bd7e3db99db9338739913d77 SHA512 
2cc6ecd674ca6b5fcfbb6664f863cb4c6378748eb5ca2ceb5e0db3ac46c567a4b62a1bb595044b15c0294b5abe471c9ac675b93db49e5d2e146cd8954c8c7611
 WHIRLPOOL 
c15085c2a1e5600ff93bc1e013439270c17472035a39fde52f31e21971b5508b4ff50a9a5f1472aa185282fefbfc9015a88eed0b5c641acf787abfaf9f72e06b
+DIST stormpath-2.3.1.tar.gz 4346382 SHA256 
cf7e2e0784d62a1992b7708232a4af6a444a10523cb9f9e2893530d6b4cee8d0 SHA512 
1e6308e45f41ff2094740063e8b2fc4dcb197bfa1fe617c89f95326410191670621defa7f8158b8dcc07b0e7a79a831c81cc9df22334c29d9f832691315076a9
 WHIRLPOOL 
91c17a5ed72679ba46c2311f6fec6f6fdd25209959bd8e58960289aef259ad7f8ff9335b668aeec471463b91fa8f6f6acf37a8f65870f3ab3c41d8af52a10c70

diff --git a/dev-python/stormpath/stormpath-2.3.1.ebuild 
b/dev-python/stormpath/stormpath-2.3.1.ebuild
new file mode 100644
index 000..8248d4f
--- /dev/null
+++ b/dev-python/stormpath/stormpath-2.3.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Official Stormpath SDK, used to interact with the Stormpath REST 
API."
+HOMEPAGE="https://github.com/stormpath/stormpath-sdk-python";
+SRC_URI="https://github.com/stormpath/${PN}-sdk-python/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-cov[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="
+   >=dev-python/isodate-0.5.4[${PYTHON_USEDEP}]
+   >=dev-python/oauthlib-0.6.3[${PYTHON_USEDEP}]
+   >=dev-python/pydispatcher-2.0.5[${PYTHON_USEDEP}]
+   >=dev-python/pyjwt-1.0.0[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.4.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.4.3[${PYTHON_USEDEP}]
+   >=dev-python/six-1.6.1[${PYTHON_USEDEP}]
+"
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   distutils-r1_python_install_all
+}



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

2016-04-24 Thread Alex Brandt
commit: 8ab0027f96e6102337ffd435d2955871b6fdb837
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:11:46 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:11:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ab0027f

dev-python/wrapt: remove version 1.10.6

Package-Manager: portage-2.2.28

 dev-python/wrapt/Manifest|  1 -
 dev-python/wrapt/wrapt-1.10.6.ebuild | 50 
 2 files changed, 51 deletions(-)

diff --git a/dev-python/wrapt/Manifest b/dev-python/wrapt/Manifest
index a7f2649..8a22ee1 100644
--- a/dev-python/wrapt/Manifest
+++ b/dev-python/wrapt/Manifest
@@ -1,5 +1,4 @@
 DIST wrapt-1.10.5.tar.gz 119157 SHA256 
4fd82193b23f60e1a39f3e10c81143c1e29e26cd5fc9afe1a7dc0f5e4b4a67d7 SHA512 
450b32eea67774081d23c0e020ed7eea3c8ac458925a16cd606a4f95ee5b7631bda5ff00ceb914e9ccc28a5e0a7302534b6711bb23d637c77327a8a9d228cb55
 WHIRLPOOL 
7cfa9477f525e60f16a7b1689ba43b327192837bea34e96977442b9cd143a63fafdfa7d0b3895c93052b0e6f426e76fa439b155ee4e481dd5e922c529676691c
 DIST wrapt-1.10.6-r1.tar.gz 120259 SHA256 
b540e23753d3f7017ec0d38f16daf77f9e9cf170d5040abc3d87573ba20fc4f3 SHA512 
658c780971dddf444070b9d30a8ac7c08ee0088b8f4378bcc9c22126608e52b338dc00969b08828b0318070abcf0e875bc2b7c6228a71fbbca362033088b4314
 WHIRLPOOL 
7aed77677a1448d6b3795be7fb56989be98a691a7470096adf45002ca124a99b5cab3e42b319493b4c8300684e488a07cf96d1c5a01e9fc9f181f765a0542254
-DIST wrapt-1.10.6.tar.gz 25134 SHA256 
9576869bb74a43cbb36ee39dc3584e6830b8e5c788e83edf0a397eba807734ab SHA512 
d0c326fd401bc84656d69ec5da446b459f5596873a1ec01d616bebcc3d11237949eaafcfdf5de78e43f59927a0eaeee3da3f462975fa46fa22fd6c1593509e04
 WHIRLPOOL 
2d3c56d0a6e9e9af0a59708ce70190097da2459d80bdaa8d8f884a849905b44cdfb6bedb412ccd1e74be1e975492309a398e05d4b6c61a6852d3cd125230846a
 DIST wrapt-1.10.7.tar.gz 120316 SHA256 
50ad31f01761410b192ce054aebcb61c54dbd493446440214356635874ecafca SHA512 
ca694963860e22d6fe05fdd679f25c7d2fb01a3a635f9744dd2034c7468563f299442a3a60f4385e049b15f04bc86c7c0a6d0501bf274a87cdcd786fd46efeee
 WHIRLPOOL 
659226504f1711749dae0228a9de07bebd04d2c4dd4b8696095eb7e76c6e1a7e991ea5a08188d93abe14c8a7e9b69b0d4ea04945fcf8349dd1f397870e39cab1
 DIST wrapt-1.10.8.tar.gz 120359 SHA256 
096b47f44e3197934ccc335c53d2d21bf6ed9fd941b294726e26a1fd18fd4541 SHA512 
2a37584b3c3a33a2d39d5cbe9f7e61a50131db55ffd5be7902b5ee84c347d8ff4d6094e5639d2f854fab274b2517a0e47420da9f543f11cf92973acd6d15d42e
 WHIRLPOOL 
5f27b048b9f06c03c3e3acdd9c3a64308958585deb7e314c80158910cfc1eac154540a0e4a3c838718456d5ed38751d85f49645e634a7d2734cad916547a5bc7

diff --git a/dev-python/wrapt/wrapt-1.10.6.ebuild 
b/dev-python/wrapt/wrapt-1.10.6.ebuild
deleted file mode 100644
index f1e92f5..000
--- a/dev-python/wrapt/wrapt-1.10.6.ebuild
+++ /dev/null
@@ -1,50 +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 python3_{3,4,5} pypy )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Module for decorators, wrappers and monkey patching"
-HOMEPAGE="https://github.com/GrahamDumpleton/wrapt";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE="doc test"
-
-DEPEND="
-   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND=""
-
-# https://github.com/GrahamDumpleton/wrapt/issues/58
-RESTRICT=test
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_compile() {
-   local WRAPT_EXTENSIONS=true
-
-   distutils-r1_python_compile
-}
-
-python_test() {
-   py.test -vv || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/_build/html/. )
-
-   distutils-r1_python_install_all
-}



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

2016-04-24 Thread Alex Brandt
commit: 3a58ce987fecbf79396dcf0df5aafab3c52cab6c
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:08:54 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:08:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a58ce98

dev-python/wrapt: add version 1.10.8

Package-Manager: portage-2.2.28

 dev-python/wrapt/Manifest|  1 +
 dev-python/wrapt/wrapt-1.10.8.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/dev-python/wrapt/Manifest b/dev-python/wrapt/Manifest
index 7c39964..a7f2649 100644
--- a/dev-python/wrapt/Manifest
+++ b/dev-python/wrapt/Manifest
@@ -2,3 +2,4 @@ DIST wrapt-1.10.5.tar.gz 119157 SHA256 
4fd82193b23f60e1a39f3e10c81143c1e29e26cd5
 DIST wrapt-1.10.6-r1.tar.gz 120259 SHA256 
b540e23753d3f7017ec0d38f16daf77f9e9cf170d5040abc3d87573ba20fc4f3 SHA512 
658c780971dddf444070b9d30a8ac7c08ee0088b8f4378bcc9c22126608e52b338dc00969b08828b0318070abcf0e875bc2b7c6228a71fbbca362033088b4314
 WHIRLPOOL 
7aed77677a1448d6b3795be7fb56989be98a691a7470096adf45002ca124a99b5cab3e42b319493b4c8300684e488a07cf96d1c5a01e9fc9f181f765a0542254
 DIST wrapt-1.10.6.tar.gz 25134 SHA256 
9576869bb74a43cbb36ee39dc3584e6830b8e5c788e83edf0a397eba807734ab SHA512 
d0c326fd401bc84656d69ec5da446b459f5596873a1ec01d616bebcc3d11237949eaafcfdf5de78e43f59927a0eaeee3da3f462975fa46fa22fd6c1593509e04
 WHIRLPOOL 
2d3c56d0a6e9e9af0a59708ce70190097da2459d80bdaa8d8f884a849905b44cdfb6bedb412ccd1e74be1e975492309a398e05d4b6c61a6852d3cd125230846a
 DIST wrapt-1.10.7.tar.gz 120316 SHA256 
50ad31f01761410b192ce054aebcb61c54dbd493446440214356635874ecafca SHA512 
ca694963860e22d6fe05fdd679f25c7d2fb01a3a635f9744dd2034c7468563f299442a3a60f4385e049b15f04bc86c7c0a6d0501bf274a87cdcd786fd46efeee
 WHIRLPOOL 
659226504f1711749dae0228a9de07bebd04d2c4dd4b8696095eb7e76c6e1a7e991ea5a08188d93abe14c8a7e9b69b0d4ea04945fcf8349dd1f397870e39cab1
+DIST wrapt-1.10.8.tar.gz 120359 SHA256 
096b47f44e3197934ccc335c53d2d21bf6ed9fd941b294726e26a1fd18fd4541 SHA512 
2a37584b3c3a33a2d39d5cbe9f7e61a50131db55ffd5be7902b5ee84c347d8ff4d6094e5639d2f854fab274b2517a0e47420da9f543f11cf92973acd6d15d42e
 WHIRLPOOL 
5f27b048b9f06c03c3e3acdd9c3a64308958585deb7e314c80158910cfc1eac154540a0e4a3c838718456d5ed38751d85f49645e634a7d2734cad916547a5bc7

diff --git a/dev-python/wrapt/wrapt-1.10.8.ebuild 
b/dev-python/wrapt/wrapt-1.10.8.ebuild
new file mode 100644
index 000..22a84a3
--- /dev/null
+++ b/dev-python/wrapt/wrapt-1.10.8.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 pypy )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Module for decorators, wrappers and monkey patching"
+HOMEPAGE="https://github.com/GrahamDumpleton/wrapt";
+SRC_URI="https://github.com/GrahamDumpleton/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc test"
+
+DEPEND="
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND=""
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_compile() {
+   local WRAPT_EXTENSIONS=true
+
+   distutils-r1_python_compile
+}
+
+python_test() {
+   py.test -vv || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   distutils-r1_python_install_all
+}



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

2016-04-24 Thread Alex Brandt
commit: 4344f2a8f2a5db4d0c777cda443e9dd37bcfd68d
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:05:40 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:05:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4344f2a8

dev-python/websocket-client: remove version 0.31.0

Package-Manager: portage-2.2.28

 dev-python/websocket-client/Manifest   |  1 -
 .../websocket-client-0.31.0.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/dev-python/websocket-client/Manifest 
b/dev-python/websocket-client/Manifest
index 3ff2a79..78561e2 100644
--- a/dev-python/websocket-client/Manifest
+++ b/dev-python/websocket-client/Manifest
@@ -1,5 +1,4 @@
 DIST websocket-client-0.21.0.tar.gz 190523 SHA256 
0e279c371df0bc1b3a890a31e90631e03c11ea596e00fd53524f03a5fb972d3d SHA512 
cd6ae58226890dd94e03d3d348a5ec83c1b7a5a0e8b353cf28db9b5a78131ecbc84755ba9925fe9c90a90388f03d6e9a535960a13c53536f6b4fe4effbbc736c
 WHIRLPOOL 
4732ad6e839e14f68a0a2070171f724a912f00d2d76003cb23a6253560a2aab51a34525e0cf98ebd7e045e326052b8aa4c7497d384e807f493f99a125e323dd0
-DIST websocket-client-0.31.0.tar.gz 192146 SHA256 
ddbba49fe9f185dec6a80a536831fa781e10e1d946eef20ebcccd75b943c6ea6 SHA512 
899fb3534f76f044b5f550282a05df7d58423b1108cc3134a7b1701c03c673c5e036435218a2931330e800b3060e287f7ad87133e54b0735db1c1581e219f222
 WHIRLPOOL 
d440db59c5f5290e81f614eb1d68d66843b3f06b7c4d7de45c61675143d26f8b507d89c8bd76923dac09f5a117c98ed8239a4acf9ee84a9e0955850c0afe5390
 DIST websocket-client-0.32.0.tar.gz 192180 SHA256 
cb3ab95617ed2098d24723e3ad04ed06c4fde661400b96daa1859af965bfe040 SHA512 
648b5ea6bbf5b402004d0dcaa3d5242580efb7803a6cbadc20448fcdedb0097508d747c6ba67d4df9e289f3917ad6e09698b0fbf1330e073e14d369cfdb98bd3
 WHIRLPOOL 
b24791a7c3eb2994f60c5743eb858dd0b02a0c3ea36a70b1c4a0434276a19a4a73893fcf1aac6cc05ea489469cdc6a9d4d4cd1be4e906817046b711e5c3d083e
 DIST websocket-client-0.34.0.tar.gz 193141 SHA256 
682a6241ca953499f06ca506f69aa3ea26f0ed2a41fe7982732cb8449ae92ddf SHA512 
db0d87d842884a326ceee1fb089012bb49476077977e3a3a7972f52acc9770431f14d6dcab8b15942230c65c9020336785bed3bf360b0ddc3dc40348fafb18d6
 WHIRLPOOL 
e2851eab4c53c73f229692a9981229a20b9f4e66969cd6edcbed3bd557dde0b70365e543222308ee6f226e991404de23a3be7cc0d668dd18c0ebc75d8cebc6fc
 DIST websocket-client-0.35.0.tar.gz 193509 SHA256 
5ac3ead091be17b680a0dda926aef1a697a2b6cf1e9ac0fbe4bffb14914c2116 SHA512 
d2bfb27f1908882621db21badc9f665ed7b0c0164f47c29014fc87ae7aa52b81160c11b26dd8abd97ced5a3429a917034b1a94dfd8ecfa91637dec9d2857475a
 WHIRLPOOL 
2d55f1dc51d94cab0724f2c48b2aed1862e00c60c5f54b369d41725bbc6ecfe45aee98f7a16338ff76950b11fc19ef477d0c1d5a98dbd0bba468720ce0e5849f

diff --git a/dev-python/websocket-client/websocket-client-0.31.0.ebuild 
b/dev-python/websocket-client/websocket-client-0.31.0.ebuild
deleted file mode 100644
index de7e120..000
--- a/dev-python/websocket-client/websocket-client-0.31.0.ebuild
+++ /dev/null
@@ -1,36 +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 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-MY_PN=${PN//-/_}
-
-DESCRIPTION="WebSocket client for python. hybi13 is supported"
-HOMEPAGE="https://github.com/liris/websocket-client";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   dev-python/six[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' 'python2*' )
-"
-
-python_test() {
-   esetup.py test
-}
-
-python_install_all() {
-   use examples && local EXAMPLES=( examples/. )
-
-   distutils-r1_python_install_all
-}



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

2016-04-24 Thread Alex Brandt
commit: fb38b143d0872d1455498944e01e3dfead6d7858
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:02:27 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:02:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb38b143

dev-python/websocket-client: add version 0.37.0

Package-Manager: portage-2.2.28

 dev-python/websocket-client/Manifest   |  1 +
 .../websocket-client-0.37.0.ebuild | 36 ++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/websocket-client/Manifest 
b/dev-python/websocket-client/Manifest
index b4a4584..3ff2a79 100644
--- a/dev-python/websocket-client/Manifest
+++ b/dev-python/websocket-client/Manifest
@@ -3,3 +3,4 @@ DIST websocket-client-0.31.0.tar.gz 192146 SHA256 
ddbba49fe9f185dec6a80a536831fa
 DIST websocket-client-0.32.0.tar.gz 192180 SHA256 
cb3ab95617ed2098d24723e3ad04ed06c4fde661400b96daa1859af965bfe040 SHA512 
648b5ea6bbf5b402004d0dcaa3d5242580efb7803a6cbadc20448fcdedb0097508d747c6ba67d4df9e289f3917ad6e09698b0fbf1330e073e14d369cfdb98bd3
 WHIRLPOOL 
b24791a7c3eb2994f60c5743eb858dd0b02a0c3ea36a70b1c4a0434276a19a4a73893fcf1aac6cc05ea489469cdc6a9d4d4cd1be4e906817046b711e5c3d083e
 DIST websocket-client-0.34.0.tar.gz 193141 SHA256 
682a6241ca953499f06ca506f69aa3ea26f0ed2a41fe7982732cb8449ae92ddf SHA512 
db0d87d842884a326ceee1fb089012bb49476077977e3a3a7972f52acc9770431f14d6dcab8b15942230c65c9020336785bed3bf360b0ddc3dc40348fafb18d6
 WHIRLPOOL 
e2851eab4c53c73f229692a9981229a20b9f4e66969cd6edcbed3bd557dde0b70365e543222308ee6f226e991404de23a3be7cc0d668dd18c0ebc75d8cebc6fc
 DIST websocket-client-0.35.0.tar.gz 193509 SHA256 
5ac3ead091be17b680a0dda926aef1a697a2b6cf1e9ac0fbe4bffb14914c2116 SHA512 
d2bfb27f1908882621db21badc9f665ed7b0c0164f47c29014fc87ae7aa52b81160c11b26dd8abd97ced5a3429a917034b1a94dfd8ecfa91637dec9d2857475a
 WHIRLPOOL 
2d55f1dc51d94cab0724f2c48b2aed1862e00c60c5f54b369d41725bbc6ecfe45aee98f7a16338ff76950b11fc19ef477d0c1d5a98dbd0bba468720ce0e5849f
+DIST websocket-client-0.37.0.tar.gz 194246 SHA256 
678b246d816b94018af5297e72915160e2feb042e0cde1a9397f502ac3a52f41 SHA512 
b72f18c91d9a51a1943fc798601bcd9eac8b1ce807a2abb72b7cf897da30de808160645d9c7f3eaf2430e739cd0c6c01046c452f43c61af63afe7d31d801f9f7
 WHIRLPOOL 
71b370849f92ef2bb022a05de308cfba1273bd34a564363ce5167f1f21c422879dcaa1f896efaf2c9b17d33867311cb2bf7ac619acf7142a8c8eaedf443f84fe

diff --git a/dev-python/websocket-client/websocket-client-0.37.0.ebuild 
b/dev-python/websocket-client/websocket-client-0.37.0.ebuild
new file mode 100644
index 000..0078df1
--- /dev/null
+++ b/dev-python/websocket-client/websocket-client-0.37.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 )
+
+inherit distutils-r1 vcs-snapshot
+
+MY_PN=${PN//-/_}
+
+DESCRIPTION="WebSocket client for python with hybi13 support"
+HOMEPAGE="https://github.com/liris/websocket-client";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples"
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' 'python2*' )
+"
+
+python_test() {
+   esetup.py test
+}
+
+python_install_all() {
+   use examples && local EXAMPLES=( examples/. )
+
+   distutils-r1_python_install_all
+}



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

2016-04-24 Thread Alex Brandt
commit: e3cc80673cef0655d903426c8d8248dfc0e40fb0
Author: Alex Brandt  gentoo  org>
AuthorDate: Sun Apr 24 15:06:11 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sun Apr 24 15:06:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3cc8067

dev-python/websocket-client: remove version 0.32.0

Package-Manager: portage-2.2.28

 dev-python/websocket-client/Manifest   |  1 -
 .../websocket-client-0.32.0.ebuild | 36 --
 2 files changed, 37 deletions(-)

diff --git a/dev-python/websocket-client/Manifest 
b/dev-python/websocket-client/Manifest
index 78561e2..c9c35cd2 100644
--- a/dev-python/websocket-client/Manifest
+++ b/dev-python/websocket-client/Manifest
@@ -1,5 +1,4 @@
 DIST websocket-client-0.21.0.tar.gz 190523 SHA256 
0e279c371df0bc1b3a890a31e90631e03c11ea596e00fd53524f03a5fb972d3d SHA512 
cd6ae58226890dd94e03d3d348a5ec83c1b7a5a0e8b353cf28db9b5a78131ecbc84755ba9925fe9c90a90388f03d6e9a535960a13c53536f6b4fe4effbbc736c
 WHIRLPOOL 
4732ad6e839e14f68a0a2070171f724a912f00d2d76003cb23a6253560a2aab51a34525e0cf98ebd7e045e326052b8aa4c7497d384e807f493f99a125e323dd0
-DIST websocket-client-0.32.0.tar.gz 192180 SHA256 
cb3ab95617ed2098d24723e3ad04ed06c4fde661400b96daa1859af965bfe040 SHA512 
648b5ea6bbf5b402004d0dcaa3d5242580efb7803a6cbadc20448fcdedb0097508d747c6ba67d4df9e289f3917ad6e09698b0fbf1330e073e14d369cfdb98bd3
 WHIRLPOOL 
b24791a7c3eb2994f60c5743eb858dd0b02a0c3ea36a70b1c4a0434276a19a4a73893fcf1aac6cc05ea489469cdc6a9d4d4cd1be4e906817046b711e5c3d083e
 DIST websocket-client-0.34.0.tar.gz 193141 SHA256 
682a6241ca953499f06ca506f69aa3ea26f0ed2a41fe7982732cb8449ae92ddf SHA512 
db0d87d842884a326ceee1fb089012bb49476077977e3a3a7972f52acc9770431f14d6dcab8b15942230c65c9020336785bed3bf360b0ddc3dc40348fafb18d6
 WHIRLPOOL 
e2851eab4c53c73f229692a9981229a20b9f4e66969cd6edcbed3bd557dde0b70365e543222308ee6f226e991404de23a3be7cc0d668dd18c0ebc75d8cebc6fc
 DIST websocket-client-0.35.0.tar.gz 193509 SHA256 
5ac3ead091be17b680a0dda926aef1a697a2b6cf1e9ac0fbe4bffb14914c2116 SHA512 
d2bfb27f1908882621db21badc9f665ed7b0c0164f47c29014fc87ae7aa52b81160c11b26dd8abd97ced5a3429a917034b1a94dfd8ecfa91637dec9d2857475a
 WHIRLPOOL 
2d55f1dc51d94cab0724f2c48b2aed1862e00c60c5f54b369d41725bbc6ecfe45aee98f7a16338ff76950b11fc19ef477d0c1d5a98dbd0bba468720ce0e5849f
 DIST websocket-client-0.37.0.tar.gz 194246 SHA256 
678b246d816b94018af5297e72915160e2feb042e0cde1a9397f502ac3a52f41 SHA512 
b72f18c91d9a51a1943fc798601bcd9eac8b1ce807a2abb72b7cf897da30de808160645d9c7f3eaf2430e739cd0c6c01046c452f43c61af63afe7d31d801f9f7
 WHIRLPOOL 
71b370849f92ef2bb022a05de308cfba1273bd34a564363ce5167f1f21c422879dcaa1f896efaf2c9b17d33867311cb2bf7ac619acf7142a8c8eaedf443f84fe

diff --git a/dev-python/websocket-client/websocket-client-0.32.0.ebuild 
b/dev-python/websocket-client/websocket-client-0.32.0.ebuild
deleted file mode 100644
index de7e120..000
--- a/dev-python/websocket-client/websocket-client-0.32.0.ebuild
+++ /dev/null
@@ -1,36 +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 python3_3 python3_4 )
-
-inherit distutils-r1 vcs-snapshot
-
-MY_PN=${PN//-/_}
-
-DESCRIPTION="WebSocket client for python. hybi13 is supported"
-HOMEPAGE="https://github.com/liris/websocket-client";
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="examples"
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   dev-python/six[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'dev-python/backports-ssl-match-hostname[${PYTHON_USEDEP}]' 'python2*' )
-"
-
-python_test() {
-   esetup.py test
-}
-
-python_install_all() {
-   use examples && local EXAMPLES=( examples/. )
-
-   distutils-r1_python_install_all
-}



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

2016-04-24 Thread Martin Mokrejs
commit: e035d84de52892630a985838e23f7afcfd8b386a
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Sun Apr 24 14:08:40 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Sun Apr 24 14:08:40 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=e035d84d

sci-biology/stringtie: shorten DESCRIPTION line

Package-Manager: portage-2.2.28

 sci-biology/stringtie/stringtie-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-biology/stringtie/stringtie-1.2.2.ebuild 
b/sci-biology/stringtie/stringtie-1.2.2.ebuild
index f948342..135ddec 100644
--- a/sci-biology/stringtie/stringtie-1.2.2.ebuild
+++ b/sci-biology/stringtie/stringtie-1.2.2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-DESCRIPTION="Transcriptome assembler and RNA-Seq analysis using BAM files 
(like cufflinks)"
+DESCRIPTION="Transcriptome assembler and RNA-Seq analysis on BAM files aka 
cufflinks"
 HOMEPAGE="https://ccb.jhu.edu/software/stringtie
https://github.com/gpertea/stringtie";
 SRC_URI="http://ccb.jhu.edu/software/stringtie/dl/${P}.tar.gz";



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

2016-04-24 Thread Martin Mokrejs
commit: 64dcae2a7b0f8bdbf5a737b2a440c95376e99ba6
Author: Martin Mokrejš  fold  natur  cuni  cz>
AuthorDate: Sun Apr 24 13:50:09 2016 +
Commit: Martin Mokrejs  fold  natur  cuni  cz>
CommitDate: Sun Apr 24 13:50:09 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=64dcae2a

sci-biology/stringtie: new package

Package-Manager: portage-2.2.28

 sci-biology/stringtie/metadata.xml   | 12 
 sci-biology/stringtie/stringtie-1.2.2.ebuild | 28 
 2 files changed, 40 insertions(+)

diff --git a/sci-biology/stringtie/metadata.xml 
b/sci-biology/stringtie/metadata.xml
new file mode 100644
index 000..f68a1b6
--- /dev/null
+++ b/sci-biology/stringtie/metadata.xml
@@ -0,0 +1,12 @@
+
+http://www.gentoo.org/dtd/metadata.dtd";>
+
+  
+mmokr...@fold.natur.cuni.cz
+Martin Mokrejs
+  
+  
+sci-biol...@gentoo.org
+Gentoo Biology Project
+  
+

diff --git a/sci-biology/stringtie/stringtie-1.2.2.ebuild 
b/sci-biology/stringtie/stringtie-1.2.2.ebuild
new file mode 100644
index 000..f948342
--- /dev/null
+++ b/sci-biology/stringtie/stringtie-1.2.2.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DESCRIPTION="Transcriptome assembler and RNA-Seq analysis using BAM files 
(like cufflinks)"
+HOMEPAGE="https://ccb.jhu.edu/software/stringtie
+   https://github.com/gpertea/stringtie";
+SRC_URI="http://ccb.jhu.edu/software/stringtie/dl/${P}.tar.gz";
+
+LICENSE="Artistic-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+# contains bundled gclib
+DEPEND="sci-biology/samtools:0.1-legacy" # bundled samtools-0.1.18
+RDEPEND="${DEPEND}"
+
+src_compile(){
+   emake release
+}
+
+src_install(){
+   dobin stringtie
+   dodoc README
+}



  1   2   >