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

2016-12-31 Thread Sergei Trofimovich
commit: d6c548d65d4994b940b589c71fea78a474fb018f
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sun Jan  1 07:11:58 2017 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sun Jan  1 07:21:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6c548d6

net-im/openfire: bump up to 4.1.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-im/openfire/Manifest  |   1 +
 net-im/openfire/openfire-4.1.1.ebuild | 108 ++
 2 files changed, 109 insertions(+)

diff --git a/net-im/openfire/Manifest b/net-im/openfire/Manifest
index 206d89c..790a7e5 100644
--- a/net-im/openfire/Manifest
+++ b/net-im/openfire/Manifest
@@ -1 +1,2 @@
 DIST openfire_src_4_1_0.tar.gz 103449811 SHA256 
3e52b27ac9ed5af1acb7065e84a416ad075994445b554e78d7c966724612cbf2 SHA512 
3a4e26c260f6a91ece6e6d3fc7c3302b6f1735725ce2686bab8773981dad63ef653a25748852c32e4df8f6bde2882db4043d94b69eb774a5280285fd5b7cd96b
 WHIRLPOOL 
da56663dc9cdf831e04aebddff2eb2705b9cb603a0b5110fee1dc00d41252050ba326c84883fb69894ac064a339a11e22ef44c35348de0bb655f55bc8c34c72d
+DIST openfire_src_4_1_1.tar.gz 103449258 SHA256 
f7368c3b141bd1e49a3fcceadff5bcddd06c77af8fa5f85fe55b945474f15424 SHA512 
a0eb246e414cfa54060fd0749e01d579864178f23febd875817554af170a24044675f8c0c5ca5538e0524909648e5d0002bb99a30edfd1ddcfcd32254b520f4d
 WHIRLPOOL 
f666017d9744bf80ddf1f1389260d4f66ade6616b72b20d09c3c18e9801deebb6212a143bde445fc059a9d8cac086963330d1dc2a8592bcde0467177fe36c210

diff --git a/net-im/openfire/openfire-4.1.1.ebuild 
b/net-im/openfire/openfire-4.1.1.ebuild
new file mode 100644
index ..4329e95
--- /dev/null
+++ b/net-im/openfire/openfire-4.1.1.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit eutils java-pkg-2 java-ant-2 systemd
+
+MY_P=${PN}_src_${PV//./_}
+DESCRIPTION="Openfire (formerly wildfire) real time collaboration (RTC) server"
+HOMEPAGE="http://www.igniterealtime.org/projects/openfire/;
+SRC_URI="http://www.igniterealtime.org/builds/openfire/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+
+RDEPEND=">=virtual/jre-1.7"
+DEPEND="net-im/jabber-base
+   ~dev-java/ant-contrib-1.0_beta2
+   >=virtual/jdk-1.7"
+
+S=${WORKDIR}/${PN}_src
+
+pkg_setup() {
+   if [[ -f /etc/env.d/98openfire ]]; then
+   einfo "This is an upgrade"
+   ewarn "As the plugin API changed, at least these plugins need 
to be updated also:"
+   ewarn "User Search, IM Gateway, Fastpath, Monitoring"
+   ewarn "they can be downloaded via Admin Console or at"
+   ewarn "${HOMEPAGE}"
+   else
+   ewarn "If this is an upgrade stop right ( CONTROL-C ) and run 
the command:"
+   ewarn "echo 
'CONFIG_PROTECT=\"/opt/openfire/resources/security/\"' > /etc/env.d/98openfire "
+   ewarn "For more info see bug #139708"
+   sleep 11
+   fi
+   java-pkg-2_pkg_setup
+}
+
+src_compile() {
+   # Jikes doesn't support -source 1.5
+   java-pkg_filter-compiler jikes
+
+   ANT_TASKS="ant-contrib"
+   eant -f build/build.xml openfire plugins $(use_doc)
+
+   # delete nativeAuth prebuilt libs:
+   #uses outdated unmaintained libshaj, does not support amd64
+   rm -rfv target/openfire/resources/nativeAuth || die
+}
+
+src_install() {
+   dodir /opt/openfire
+
+   newinitd "${FILESDIR}"/openfire-initd openfire
+   newconfd "${FILESDIR}"/openfire-confd openfire
+   systemd_dounit "${FILESDIR}"/${PN}.service
+
+   dodir /opt/openfire/conf
+   insinto /opt/openfire/conf
+   newins target/openfire/conf/openfire.xml openfire.xml.sample
+   newins target/openfire/conf/security.xml security.xml.sample
+
+   dodir /opt/openfire/logs
+   keepdir /opt/openfire/logs
+
+   dodir /opt/openfire/lib
+   insinto /opt/openfire/lib
+   doins target/openfire/lib/*
+
+   dodir /opt/openfire/plugins
+   insinto /opt/openfire/plugins
+   doins -r target/openfire/plugins/*
+
+   dodir /opt/openfire/resources
+   insinto /opt/openfire/resources
+   doins -r target/openfire/resources/*
+
+   if use doc; then
+   dohtml -r documentation/docs/*
+   fi
+   dodoc documentation/dist/*
+
+   #Protect ssl key on upgrade
+   dodir /etc/env.d/
+   echo 'CONFIG_PROTECT="/opt/openfire/resources/security/"' > 
"${D}"/etc/env.d/98openfire
+}
+
+pkg_postinst() {
+   local src
+   local dst
+
+   # http://community.igniterealtime.org/thread/52289
+   for dst in "${ROOT}"/opt/openfire/conf/{openfire,security}.xml
+   do
+   src="${dst}".sample
+   if [[ -f "${dst}" ]]; then
+   einfo "Leaving old '${dst}'"
+   else
+   einfo "Created default '${dst}'. Please 

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

2016-12-31 Thread Hans de Graaff
commit: c8deb73fcb166392ab50d655356636e05dca4115
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan  1 06:59:41 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan  1 06:59:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8deb73f

dev-ruby/redcarpet: add 3.4.0

Package-Manager: portage-2.3.0

 dev-ruby/redcarpet/Manifest   |  1 +
 dev-ruby/redcarpet/redcarpet-3.4.0.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-ruby/redcarpet/Manifest b/dev-ruby/redcarpet/Manifest
index c3c2e9b..c48f90f 100644
--- a/dev-ruby/redcarpet/Manifest
+++ b/dev-ruby/redcarpet/Manifest
@@ -2,3 +2,4 @@ DIST redcarpet-3.2.3.tar.gz 100245 SHA256 
1de6a5b6e3d672b3f3102a6e4b9e98cc9b847d
 DIST redcarpet-3.3.2.tar.gz 102671 SHA256 
67781fd469195fae606f96be0c51658fc74f0dfd559afcaef8f7e506faef0790 SHA512 
3d9d7d77bcc7f16e5710cc1ca2a95dff969ce927538d475c37ce82138de9c3ff88a235c65c97e017e5e0258ebaa52eeed6c2d2e5e34011f7f13f0f8392e580a0
 WHIRLPOOL 
188dd0f735a7e54e9589a4096b4ea052f63180a32330e6196ddf9e9afb29376422d7dcebdb965996b3cb01c861eb1016f02c8d6435d06a23a95e947b31861bbb
 DIST redcarpet-3.3.3.tar.gz 103667 SHA256 
3014febfac7afb25edac5f10e4ccf070d5dfb1f278c8a76623eb1903052b093c SHA512 
60a69b5e41c152c2f42c69fd8c36020325131e57d8bc5d8f02dccfa8688e48a7bfbebaba38cd1cf7547864b308b676281d77e9e0ef182a2416b3a9e3a8ef7357
 WHIRLPOOL 
9ecf4d194706f05091cae1ddf08c84b92e5b4ab8e3d0836761a156972f93bdc63f585ed84b037054ec936675882940a306f3d7568284259ffe60284ffcfdeeba
 DIST redcarpet-3.3.4.tar.gz 103992 SHA256 
ccafe9bf0459ec123efb4696674d447b44c267d5a4f1bd16813611a6a523a088 SHA512 
bcd4123ea8d6e9cd28e78bd21d3e2aa90e6522e9fee3dd321a6c23d6450bde478054e2fde6b0c8a35d8b9af61d3b5ca3a9f2ebe19d89aea5091f7505bfe92d42
 WHIRLPOOL 
d63f34bc46e0a0191907883d359654f8050d267c2f07a8ff4d07a995c3aedf09274a086f20f890303250494a82bc9d45de2c8bbdea741c405c0b3a700878d1c0
+DIST redcarpet-3.4.0.tar.gz 105525 SHA256 
983624338dedb815db4ba5624f0f52c7447c6071acc9491c6faf199e287e5f30 SHA512 
25ed1fd35ebf815f396ed819baec69aae366bafab3983a53d364b1ef0d3f18cecaa523953d12cb0e5b896c30ac86e000318f33c633047bd271362474b9b8f877
 WHIRLPOOL 
52cfe191280e54b2ab85ad5b2fe5321271fdde46ec3ed006289711618441ae9b2a9570c826e2b5b5a9af8df6834f572a0814a627b2fe4440b5dc183a868f73ad

diff --git a/dev-ruby/redcarpet/redcarpet-3.4.0.ebuild 
b/dev-ruby/redcarpet/redcarpet-3.4.0.ebuild
new file mode 100644
index ..3015dac
--- /dev/null
+++ b/dev-ruby/redcarpet/redcarpet-3.4.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOCS="README.markdown CONTRIBUTING.md CHANGELOG.md doc"
+RUBY_FAKEGEM_TASK_TEST="test:unit"
+inherit multilib ruby-fakegem
+
+SRC_URI="https://github.com/vmg/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+DESCRIPTION="A Ruby wrapper for Upskirt"
+HOMEPAGE="https://github.com/vmg/redcarpet;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+IUSE=""
+
+ruby_add_bdepend "test? ( dev-ruby/nokogiri )"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/d' -e 's/=> :compile//'  Rakefile || die
+
+   # Avoid unneeded dependency on rake-compiler
+   sed -i -e '/extensiontask/I s:^:#:' Rakefile || die
+}
+
+each_ruby_prepare() {
+   sed -i -e "s#ruby#${RUBY}#" bin/redcarpet || die
+}
+
+each_ruby_configure() {
+   ${RUBY} -Cext/redcarpet extconf.rb || die
+}
+
+each_ruby_compile() {
+   emake V=1 -Cext/${PN}
+   cp ext/${PN}/*$(get_modname) lib || die
+}



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

2016-12-31 Thread Hans de Graaff
commit: f1d2f0281d901785cec2afc2677f11ca1ad795d8
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan  1 06:39:44 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan  1 06:39:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1d2f028

dev-ruby/dbf: cleanup

Package-Manager: portage-2.3.0

 dev-ruby/dbf/Manifest |  2 --
 dev-ruby/dbf/dbf-3.0.5.ebuild | 23 ---
 dev-ruby/dbf/dbf-3.0.7.ebuild | 23 ---
 3 files changed, 48 deletions(-)

diff --git a/dev-ruby/dbf/Manifest b/dev-ruby/dbf/Manifest
index 000f073..f55dc2f 100644
--- a/dev-ruby/dbf/Manifest
+++ b/dev-ruby/dbf/Manifest
@@ -1,6 +1,4 @@
 DIST dbf-2.0.13.gem 125952 SHA256 
d970c42f6f677df3b31788814845ac3135979987641447e3bc3b0065c98e6ea7 SHA512 
26b05a72b20be81993316260dfa685723ae0b2ba376a9ede11d701ddaeb94dfe13e4810b71bf292d9e1304a6d1001216793d2fe4f642d8278446b2d56226c3e0
 WHIRLPOOL 
ba3916ffe8766620f5f1f0235f9ae09df991e463454767242670aaa532559396638a5f29be35c52ce692ad2a8af540afa975d6c2c4b24842be84c40819d09ee1
 DIST dbf-2.0.8.gem 115712 SHA256 
d953117337e3d12720815304b5e584ccdd7d081b65d0a01dd2d825087e1b4f79 SHA512 
b2098359f88b5df50113af979d0d95591b1b15db22e8554bced14f4a5190ac3f490971e7f857bb832d4957f82e6f82d5cbcea0332401a54cf41b897bfb1f3b74
 WHIRLPOOL 
7afdf410cfc43009e407a14ffe5944d1639ec4318d9517314b9d41734341777ce5833033462accf3ea699d26b4fd4a3fb410875ee4b9eda197199cefd3db7836
-DIST dbf-3.0.5.gem 126976 SHA256 
4c054c124aac204d3c8698f828ba6f199ecd7a649c237a817f90c44083f76432 SHA512 
6defd871499af1012c39d6927bbff981eaed92cee56ccfd47c8bbc587f0bcb0b1a73238f281f7b7093a38849e101d77f1704abe4d136372c95858a3c6b0a9f5f
 WHIRLPOOL 
4c505038ac3acfefece72250c3e8e167181ec3f168ae9c64c993e8fd718d49de5786483faa8d2140dcdec7330aa879d44869d8c417aaeb1a60a2485f1c841726
-DIST dbf-3.0.7.gem 126976 SHA256 
9ac22f1d463cd65a27d4d713bb7f344573d4320ed2007d5a40e1e574148f4232 SHA512 
667c34ef688b8655d831b159a66a5d0bd54ff81da5e3f98b6e456170b4fc9c4e8cd60441005ff49aa20d8e5836285df872f4f682d8ff65d2d324f5e7f4056e30
 WHIRLPOOL 
c1cfc21ed916b50b63b05c5c5c7f2a82fa2ab9c372e8b7d81abf725fb3e9eb51f7a2c45993cc971da89ff48cefbd9a424fa910c3a36cdadb5b9f7abcf2cd2b0f
 DIST dbf-3.0.8.gem 126976 SHA256 
b355a9169441e56b82d2e1023ddaf5a58a5b42ee88a00154e7c784c1872caade SHA512 
df856aafe33efd9b75bcc5a9d4ad440b11feff8f1b3714d2e636092382083ddbf8d97d8ab501c6fec5d31063e6ef9b8195cbb08693768f5dfce6eaeaa6855ce2
 WHIRLPOOL 
7a1df325cfaa69d97e6dafe694b16ec92f7aa68c527c71cf1580cb2e95295abfeaeeb5c6942e79c94d6aaed4ed5f297270ef57ec22f70f0b8d47c6d087645b37
 DIST dbf-3.1.0.gem 126976 SHA256 
3b2548e6fda93a714950c7b7463d1525bf54c1e9cdbf407a6767045b518b7185 SHA512 
d09c2c10a4d16774e8c72a3cb11ddbda6f302ed359b234b9d5698571bac4e10fde73d1200083c1cc7044b632ac196f0c59a94ff60c93e4953359030d74b26e3c
 WHIRLPOOL 
c98faadefe71b3d0617cf9366dff329c92a6a1732825fb67beaf0af516a762f6dd11e2c9c49b730dbae14aeb3f8280a4fd8ec06192339a67750a042b6d4fca61

diff --git a/dev-ruby/dbf/dbf-3.0.5.ebuild b/dev-ruby/dbf/dbf-3.0.5.ebuild
deleted file mode 100644
index ed97bf7..
--- a/dev-ruby/dbf/dbf-3.0.5.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/*"
-
-inherit ruby-fakegem
-
-DESCRIPTION="a small fast library for reading dBase, xBase, Clipper and FoxPro
-database files"
-HOMEPAGE="https://github.com/infused/dbf;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""

diff --git a/dev-ruby/dbf/dbf-3.0.7.ebuild b/dev-ruby/dbf/dbf-3.0.7.ebuild
deleted file mode 100644
index 498f4a1..
--- a/dev-ruby/dbf/dbf-3.0.7.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-USE_RUBY="ruby20 ruby21 ruby22 ruby23"
-
-RUBY_FAKEGEM_RECIPE_TEST="rspec3"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/*"
-
-inherit ruby-fakegem
-
-DESCRIPTION="a small fast library for reading dBase, xBase, Clipper and FoxPro
-database files"
-HOMEPAGE="https://github.com/infused/dbf;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""



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

2016-12-31 Thread Hans de Graaff
commit: 7a242b20b78f47b42e71956f5ad0c787c8d70509
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan  1 06:39:01 2017 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan  1 06:39:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a242b20

dev-ruby/dbf: add 3.1.0

Package-Manager: portage-2.3.0

 dev-ruby/dbf/Manifest |  1 +
 dev-ruby/dbf/dbf-3.1.0.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-ruby/dbf/Manifest b/dev-ruby/dbf/Manifest
index 317b457..000f073 100644
--- a/dev-ruby/dbf/Manifest
+++ b/dev-ruby/dbf/Manifest
@@ -3,3 +3,4 @@ DIST dbf-2.0.8.gem 115712 SHA256 
d953117337e3d12720815304b5e584ccdd7d081b65d0a01
 DIST dbf-3.0.5.gem 126976 SHA256 
4c054c124aac204d3c8698f828ba6f199ecd7a649c237a817f90c44083f76432 SHA512 
6defd871499af1012c39d6927bbff981eaed92cee56ccfd47c8bbc587f0bcb0b1a73238f281f7b7093a38849e101d77f1704abe4d136372c95858a3c6b0a9f5f
 WHIRLPOOL 
4c505038ac3acfefece72250c3e8e167181ec3f168ae9c64c993e8fd718d49de5786483faa8d2140dcdec7330aa879d44869d8c417aaeb1a60a2485f1c841726
 DIST dbf-3.0.7.gem 126976 SHA256 
9ac22f1d463cd65a27d4d713bb7f344573d4320ed2007d5a40e1e574148f4232 SHA512 
667c34ef688b8655d831b159a66a5d0bd54ff81da5e3f98b6e456170b4fc9c4e8cd60441005ff49aa20d8e5836285df872f4f682d8ff65d2d324f5e7f4056e30
 WHIRLPOOL 
c1cfc21ed916b50b63b05c5c5c7f2a82fa2ab9c372e8b7d81abf725fb3e9eb51f7a2c45993cc971da89ff48cefbd9a424fa910c3a36cdadb5b9f7abcf2cd2b0f
 DIST dbf-3.0.8.gem 126976 SHA256 
b355a9169441e56b82d2e1023ddaf5a58a5b42ee88a00154e7c784c1872caade SHA512 
df856aafe33efd9b75bcc5a9d4ad440b11feff8f1b3714d2e636092382083ddbf8d97d8ab501c6fec5d31063e6ef9b8195cbb08693768f5dfce6eaeaa6855ce2
 WHIRLPOOL 
7a1df325cfaa69d97e6dafe694b16ec92f7aa68c527c71cf1580cb2e95295abfeaeeb5c6942e79c94d6aaed4ed5f297270ef57ec22f70f0b8d47c6d087645b37
+DIST dbf-3.1.0.gem 126976 SHA256 
3b2548e6fda93a714950c7b7463d1525bf54c1e9cdbf407a6767045b518b7185 SHA512 
d09c2c10a4d16774e8c72a3cb11ddbda6f302ed359b234b9d5698571bac4e10fde73d1200083c1cc7044b632ac196f0c59a94ff60c93e4953359030d74b26e3c
 WHIRLPOOL 
c98faadefe71b3d0617cf9366dff329c92a6a1732825fb67beaf0af516a762f6dd11e2c9c49b730dbae14aeb3f8280a4fd8ec06192339a67750a042b6d4fca61

diff --git a/dev-ruby/dbf/dbf-3.1.0.ebuild b/dev-ruby/dbf/dbf-3.1.0.ebuild
new file mode 100644
index ..cfeb4fe
--- /dev/null
+++ b/dev-ruby/dbf/dbf-3.1.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_RECIPE_DOC="rdoc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md docs/*"
+
+inherit ruby-fakegem
+
+DESCRIPTION="a small fast library for reading dBase, xBase, Clipper and FoxPro
+database files"
+HOMEPAGE="https://github.com/infused/dbf;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""



[gentoo-commits] proj/gentoostats:master commit in: server/static/

2016-12-31 Thread Göktürk Yüksek
commit: 1e613945d02f311ddbecf2f7781e96dff76be71e
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Sun Jan  1 00:23:53 2017 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Sun Jan  1 00:23:53 2017 +
URL:https://gitweb.gentoo.org/proj/gentoostats.git/commit/?id=1e613945

server/static/about.html: fix the repo URI

 server/static/about.html | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/server/static/about.html b/server/static/about.html
index 160911b..96588fe 100644
--- a/server/static/about.html
+++ b/server/static/about.html
@@ -10,7 +10,7 @@
 machines.
 Source code
 The source code is available at the
-http://git.overlays.gentoo.org/gitweb/?p=proj/gentoostats.git;a=summary;>
+https://gitweb.gentoo.org/proj/gentoostats.git/;>
 gentoostats repository.
 Contributing
 The gentoostats project is currently in alpha testing. Bug reports, 
feature requests are welcome.



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

2016-12-31 Thread Mike Gilbert
commit: fe35e6807cef0c151bb0abce821d269b75ac9c44
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 03:19:08 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 03:19:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe35e680

dev-python/jira: restore python3.4

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

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

diff --git a/dev-python/jira/jira-1.0.5.ebuild 
b/dev-python/jira/jira-1.0.5.ebuild
index 3c6298a..9ad51c3 100644
--- a/dev-python/jira/jira-1.0.5.ebuild
+++ b/dev-python/jira/jira-1.0.5.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4} )
 inherit distutils-r1
 
 DESCRIPTION="Python library for interacting with the JIRA REST API"



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

2016-12-31 Thread Mike Gilbert
commit: 6ad1caec1c1cdc7c730ce992cd45f7775c2081b7
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 03:19:53 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 03:19:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ad1caec

app-misc/jira-cli: restore python3.4

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild 
b/app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild
index 12942e6..411b05d 100644
--- a/app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild
+++ b/app-misc/jira-cli/jira-cli-2.1.4-r1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI=6
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4} )
 
 inherit distutils-r1
 



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

2016-12-31 Thread Mike Gilbert
commit: 203936a581c0d6de7cb83ebdd96c97e444150b3e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 03:18:03 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 03:18:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=203936a5

dev-python/tlslite: restore python3 support

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-python/tlslite/tlslite-0.4.9-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/tlslite/tlslite-0.4.9-r2.ebuild 
b/dev-python/tlslite/tlslite-0.4.9-r2.ebuild
index d877ba1..7cd598a 100644
--- a/dev-python/tlslite/tlslite-0.4.9-r2.ebuild
+++ b/dev-python/tlslite/tlslite-0.4.9-r2.ebuild
@@ -4,7 +4,7 @@
 
 EAPI=6
 
-PYTHON_COMPAT=( python2_7 )
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
 
 inherit distutils-r1 eutils
 



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

2016-12-31 Thread Mike Gilbert
commit: 033ca911e84691cfb6f34fd3fd3f07853cb3a9a5
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 03:11:59 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 03:11:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=033ca911

dev-python/tlslite: drop cryptlib dep

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

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-python/tlslite/tlslite-0.4.3-r1.ebuild | 3 +--
 dev-python/tlslite/tlslite-0.4.9-r1.ebuild | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
index a23e463..3daccc2 100644
--- a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
+++ b/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -20,7 +20,6 @@ IUSE="doc gmp"
 RESTRICT="test"
 
 DEPEND="
-   >=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
|| (
dev-python/m2crypto[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]

diff --git a/dev-python/tlslite/tlslite-0.4.9-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.9-r1.ebuild
index 2319489..8f6307a 100644
--- a/dev-python/tlslite/tlslite-0.4.9-r1.ebuild
+++ b/dev-python/tlslite/tlslite-0.4.9-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -19,7 +19,6 @@ KEYWORDS="~amd64 ~x86"
 IUSE="doc"
 
 DEPEND="
-   >=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
|| (
dev-python/m2crypto[${PYTHON_USEDEP}]
dev-python/pycrypto[${PYTHON_USEDEP}]



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

2016-12-31 Thread Mike Gilbert
commit: 7965a1b878ed1794680fa4f1f378f6fd0fec71ea
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 03:08:02 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 03:08:02 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7965a1b8

dev-python/tlslite: remove old

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-python/tlslite/Manifest |  1 -
 dev-python/tlslite/tlslite-0.4.8.ebuild | 45 -
 dev-python/tlslite/tlslite-0.4.9.ebuild | 45 -
 3 files changed, 91 deletions(-)

diff --git a/dev-python/tlslite/Manifest b/dev-python/tlslite/Manifest
index 325700d..feeb03b 100644
--- a/dev-python/tlslite/Manifest
+++ b/dev-python/tlslite/Manifest
@@ -1,3 +1,2 @@
 DIST tlslite-0.4.3.tar.gz 562090 SHA256 
6a67d8a0bec66183719c19c91f383bc145055aae4498af2e91fe9d79f813 SHA512 
d1f451ebc2f7bd4d5436f1ca8ecfdbaa403f3dbbae9f9ac3900131e5d168e3267e22fcf23d85f87457f06468997cb01a51683d028a67fde58820b15f97689a0c
 WHIRLPOOL 
555f2659f0bb5080519edd5f4325953e13109367ef21e1595816ab4f3956233bb541940f65f2cfa95c041b7f2cc080b8c4ee10719be79edfa11076a2c834fff6
-DIST tlslite-0.4.8.tar.gz 563048 SHA256 
d9b447048a322c70df800f540ab577c93ecf20de52c0a02c8621176e4733bdbb SHA512 
bdb42d005b7444667badc6febd38f5b74878c09218b418844c255920f0e6272f55f62b4ea21953953935f73e02657fce9874b44f73499267cf713ddbcd3d6a44
 WHIRLPOOL 
0804742e528e6ce9d67afed78fe42c4f0a42cdfc221bf36d37e4f4f5fce828323da10f7bec3e68b2fdcf4d13d2fa100364e83e61fbcfc5cf86d3aeb1f51d75df
 DIST tlslite-0.4.9.tar.gz 105402 SHA256 
9b9a487694c239efea8cec4454a99a56ee1ae1a5f3af0858ccf8029e2ac2d42d SHA512 
5473139b5730ef946efa139fbb9adbdc67f33f03305f4a6d3b6eaaefce950ba93bc1053362fc31b9d68ff9f6deceb9449987e29ff44035b818d7310edbea
 WHIRLPOOL 
b8fa4794d5670585c9f55673f04bfb2d2fac5457013284b810d27e4c31f0f9a9a349f1664eec338bc70adf9586910bccf3c33ef6d0b926418e1801ef23e6cd7b

diff --git a/dev-python/tlslite/tlslite-0.4.8.ebuild 
b/dev-python/tlslite/tlslite-0.4.8.ebuild
deleted file mode 100644
index 05d3358..
--- a/dev-python/tlslite/tlslite-0.4.8.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils
-
-DESCRIPTION="TLS Lite is a free python library that implements SSL 3.0 and TLS 
1.0/1.1"
-HOMEPAGE="http://trevp.net/tlslite/ https://pypi.python.org/pypi/tlslite 
https://github.com/trevp/tlslite;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-#Refrain for now setting IUSE test and deps of test given test restricted.
-IUSE="doc"
-
-DEPEND="
-   >=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
-   || (
-   dev-python/m2crypto[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   )"
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-# Tests still hang
-python_test() {
-   cd tests || die
-   "${PYTHON}" "${S}"/tests/tlstest.py client localhost:4443 . || die
-   "${PYTHON}" "${S}"/tests/tlstest.py server localhost:4442 . || die
-}
-
-python_install_all(){
-   use doc && HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-   optfeature "GMP support" dev-python/gmpy
-}

diff --git a/dev-python/tlslite/tlslite-0.4.9.ebuild 
b/dev-python/tlslite/tlslite-0.4.9.ebuild
deleted file mode 100644
index 05d3358..
--- a/dev-python/tlslite/tlslite-0.4.9.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1 eutils
-
-DESCRIPTION="TLS Lite is a free python library that implements SSL 3.0 and TLS 
1.0/1.1"
-HOMEPAGE="http://trevp.net/tlslite/ https://pypi.python.org/pypi/tlslite 
https://github.com/trevp/tlslite;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-#Refrain for now setting IUSE test and deps of test given test restricted.
-IUSE="doc"
-
-DEPEND="
-   >=dev-libs/cryptlib-3.3.3[python,${PYTHON_USEDEP}]
-   || (
-   dev-python/m2crypto[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   )"
-RDEPEND="${DEPEND}"
-
-RESTRICT="test"
-
-# Tests still hang
-python_test() {
-   cd tests || die
-   "${PYTHON}" "${S}"/tests/tlstest.py client localhost:4443 . || die
-   "${PYTHON}" "${S}"/tests/tlstest.py server localhost:4442 . || die
-}
-
-python_install_all(){
-   use doc && HTML_DOCS=( docs/. )
-   distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-   optfeature "GMP support" dev-python/gmpy
-}



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

2016-12-31 Thread Mike Gilbert
commit: 5576cb68bed713b2a71650206e5f639dd0ff7ffd
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 03:14:13 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 03:14:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5576cb68

dev-python/tlslite: revbump for RDEPEND change

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-python/tlslite/{tlslite-0.4.3-r1.ebuild => tlslite-0.4.3-r2.ebuild} | 0
 dev-python/tlslite/{tlslite-0.4.9-r1.ebuild => tlslite-0.4.9-r2.ebuild} | 0
 2 files changed, 0 insertions(+), 0 deletions(-)

diff --git a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.3-r2.ebuild
similarity index 100%
rename from dev-python/tlslite/tlslite-0.4.3-r1.ebuild
rename to dev-python/tlslite/tlslite-0.4.3-r2.ebuild

diff --git a/dev-python/tlslite/tlslite-0.4.9-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.9-r2.ebuild
similarity index 100%
rename from dev-python/tlslite/tlslite-0.4.9-r1.ebuild
rename to dev-python/tlslite/tlslite-0.4.9-r2.ebuild



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

2016-12-31 Thread Mike Gilbert
commit: 8909c5c715e1a245562c75950b886f3cc2e7013a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 03:13:15 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 03:13:15 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8909c5c7

dev-python/tlslite: drop m2crypto and pycrypto deps

README says these are purely optional.

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-python/tlslite/tlslite-0.4.3-r1.ebuild | 6 +-
 dev-python/tlslite/tlslite-0.4.9-r1.ebuild | 6 +-
 2 files changed, 2 insertions(+), 10 deletions(-)

diff --git a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
index 3daccc2..070a85e 100644
--- a/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
+++ b/dev-python/tlslite/tlslite-0.4.3-r1.ebuild
@@ -19,11 +19,7 @@ KEYWORDS="amd64 x86"
 IUSE="doc gmp"
 RESTRICT="test"
 
-DEPEND="
-   || (
-   dev-python/m2crypto[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   )"
+DEPEND=""
 RDEPEND="${DEPEND}"
 
 # Tests still hang

diff --git a/dev-python/tlslite/tlslite-0.4.9-r1.ebuild 
b/dev-python/tlslite/tlslite-0.4.9-r1.ebuild
index 8f6307a..d877ba1 100644
--- a/dev-python/tlslite/tlslite-0.4.9-r1.ebuild
+++ b/dev-python/tlslite/tlslite-0.4.9-r1.ebuild
@@ -18,11 +18,7 @@ KEYWORDS="~amd64 ~x86"
 #Refrain for now setting IUSE test and deps of test given test restricted.
 IUSE="doc"
 
-DEPEND="
-   || (
-   dev-python/m2crypto[${PYTHON_USEDEP}]
-   dev-python/pycrypto[${PYTHON_USEDEP}]
-   )"
+DEPEND=""
 RDEPEND="${DEPEND}"
 
 RESTRICT="test"



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

2016-12-31 Thread Mike Gilbert
commit: 9b78b3e063ae8623e64eb5c9bae981bd5f1edab0
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jan  1 02:58:20 2017 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jan  1 02:58:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b78b3e0

dev-python/pillow: remove old

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-python/pillow/Manifest   |   4 --
 dev-python/pillow/pillow-2.8.2.ebuild|  90 ---
 dev-python/pillow/pillow-2.9.0.ebuild|  90 ---
 dev-python/pillow/pillow-3.0.0-r1.ebuild | 101 ---
 dev-python/pillow/pillow-3.1.1.ebuild|  94 
 5 files changed, 379 deletions(-)

diff --git a/dev-python/pillow/Manifest b/dev-python/pillow/Manifest
index 6547f5c..6f06fbc 100644
--- a/dev-python/pillow/Manifest
+++ b/dev-python/pillow/Manifest
@@ -1,5 +1 @@
-DIST Pillow-2.8.2.zip 9402887 SHA256 
57a900c2f30e53ed054adad401ab69643d9ab21e3acb0a647749a168e4e24446 SHA512 
2bc1e17cb65d5e953e30ea1606dbf79059d51f60ff5c2b000869fc2d9f93f8bbf5cf41b0147fc83974c48341cc68df6964d3d8203e0d6cc6a45ede95f3e0bc2f
 WHIRLPOOL 
4b5ad1db34427a161ce1885a858df72e4aaffd61b5bf9010702803874f44391678d228f71777fca058f424c6ac6208e8c3d7421eeff88c42bb6df94d1d13d771
-DIST Pillow-2.9.0.zip 9612840 SHA256 
d1db8dfed77547076037d589b598e04f2cbc1a7835d3d3f137bf20c8994854d5 SHA512 
d06371fbe67eca66229cdec7896423f55c9335be50698168c7bf4f4635352454b2f946eae90b404c68d6b939ec1d7353916d32bc9964d5b8986b8098381d5180
 WHIRLPOOL 
c664fec07c6634cad37791375fb1cb38b0edd542d93e099703dbc520e0d54125a1f00f205bbcdb8493df4dfd05ae1c2088ba305f23e66f0cc3e309f446c44fa5
-DIST Pillow-3.0.0.zip 9947593 SHA256 
0024fce578547a3da92579a163bae09b1d9f0baf3cd8e4a893dc6c11e4e624bb SHA512 
59dd809160743d2740dfe64743dc674bb4cb6395914048d0d555ccacc7fee1c8f3a114ec39142b5495a0162a74acaadf7ad66694f97c7f221ccffe19cd656928
 WHIRLPOOL 
0fe2c9af2557278cc855ec7ddb4cfd944fbd1fc3cb2a614e84bd1dfa0c8ba243e60bda863b0b254098bcc7510d62953dbccf1fce88996011327f1059df0b69fb
-DIST Pillow-3.1.1.zip 10351808 SHA256 
e784b1a9fc54ae88a7171aef60a38c2ec0dc463f066691765d11748e014ce2a0 SHA512 
83dbb651a46ea2c5daa5c7dd32330d50d8f6ad6d11df9526bd68533fd863621f764e0f2f49896bb5df86968fc45201ac28fad770375612dcefa858096c0063d7
 WHIRLPOOL 
a78a3472280e819eb721264ecc7e4e26d574016183fd7c692074b08fed04526179a08b3d1d15a102d7a46e38359c3370e0c309bfb14bbe1096e34f04f491b2d9
 DIST Pillow-3.4.2.zip 11042238 SHA256 
85b237840ad8b30a1572bf9e3898a26c77910a56554d73ed4f58a42197c2e4c2 SHA512 
5e05206db5bc1b4177384f7e91ee79015c6e1bbdc7c31c997da054391b9b5ec7c1ebdec258a33f598986533894f3324b03d0b4b385b94e72a0517a3437553b39
 WHIRLPOOL 
f92d4320ca5fd3e004a2ace41d14f0816dbea6fcfc9b10739a59d2dd393725a47c28f5b9f643d0b3243b9003701094ee953b38118412647155e8ba13fafe0582

diff --git a/dev-python/pillow/pillow-2.8.2.ebuild 
b/dev-python/pillow/pillow-2.8.2.ebuild
deleted file mode 100644
index 2d9b249..
--- a/dev-python/pillow/pillow-2.8.2.ebuild
+++ /dev/null
@@ -1,90 +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_4 pypy )
-PYTHON_REQ_USE='tk?,threads(+)'
-
-inherit distutils-r1 eutils
-
-MY_PN=Pillow
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Python Imaging Library (fork)"
-HOMEPAGE="https://github.com/python-imaging/Pillow 
https://pypi.python.org/pypi/Pillow;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.zip"
-
-LICENSE="HPND"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="doc examples jpeg jpeg2k lcms test tiff tk truetype webp zlib"
-
-REQUIRED_USE="test? ( jpeg tiff )"
-
-RDEPEND="
-   jpeg? ( virtual/jpeg:0 )
-   jpeg2k? ( media-libs/openjpeg:2= )
-   lcms? ( media-libs/lcms:2= )
-   tiff? ( media-libs/tiff:0= )
-   truetype? ( media-libs/freetype:2= )
-   webp? ( media-libs/libwebp:0= )
-   zlib? ( sys-libs/zlib:0= )"
-DEPEND="${RDEPEND}
-   app-arch/unzip
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx-better-theme[${PYTHON_USEDEP}]
-   )
-   test? ( dev-python/nose[${PYTHON_USEDEP}] )
-   "
-RDEPEND+=" !dev-python/imaging"
-
-S="${WORKDIR}/${MY_P}"
-
-# See _render and _clean in Tests/test_imagefont.py
-DISTUTILS_IN_SOURCE_BUILD=1
-
-PATCHES=( "${FILESDIR}"/${PN}-2.8.1-ico-backport.patch )
-
-python_prepare_all() {
-   # Disable all the stuff we don't want.
-   local f
-   for f in jpeg lcms tiff tk webp zlib; do
-   if ! use ${f}; then
-   sed -i -e "s:feature.${f} =:& None #:" setup.py || die
-   fi
-   done
-   if ! use truetype; then
-   sed -i -e 's:feature.freetype =:& None #:' 

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

2016-12-31 Thread Andreas Sturmlechner
commit: c360ac94b8e634ae81b4bd1ad7feb067410476b1
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  1 02:11:12 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan  1 02:11:12 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c360ac94

sys-libs/kpmcore: Drop old

Package-Manager: portage-2.3.0

 sys-libs/kpmcore/Manifest |  1 -
 sys-libs/kpmcore/kpmcore-3.0.0.ebuild | 36 ---
 2 files changed, 37 deletions(-)

diff --git a/sys-libs/kpmcore/Manifest b/sys-libs/kpmcore/Manifest
index b8d00b0..9071432 100644
--- a/sys-libs/kpmcore/Manifest
+++ b/sys-libs/kpmcore/Manifest
@@ -1,3 +1,2 @@
 DIST kpmcore-2.2.1.tar.xz 351160 SHA256 
573c662fce7077180bafa62461e0bfd6e7ca5f8fce3cfc7561668da291ae SHA512 
5c8a9f9a939927d451c8b408ced250bf847af344d13791152fc08e08b80ac0535ecdb661d733a10478fcb7cd9c61164614f359704052d964bedde0949c95cdf7
 WHIRLPOOL 
69db6258f8564ecbf426084653411db20d429df5780021d871190a9dd00fc0bbf9f48e7ea0ec69f35336511a5606aab7439dfa0068d9269f1ceca947f95f91a2
-DIST kpmcore-3.0.0.tar.xz 401224 SHA256 
5f98cb2dc97b00af6d848f3df6e68d406d8202e7bcffe7a2092d0f47adfe799a SHA512 
dc029a90765f75db1929fb2dedac1dd5ca9dd68f6b52b10fa842789ec55a7a65aa20fe784f52f9f6aac86b17dca69244c060ba819a07ca327115ffe4fedb2927
 WHIRLPOOL 
84cb9e83b098cb4c02db7a15d2de7838903ea986f20fd64d6e766a60100f8fb18b06354a736a78b4d7ffe68378593155fa1d6d3cea4532eecddae77d0309c0e5
 DIST kpmcore-3.0.1.tar.xz 400428 SHA256 
60e1960a3436ad175229ea67b6abe10ad011edc0bba22ea90a80a55083ba9bd6 SHA512 
37d18d292aa6c0b656ee1046fb40462ba7703650333f420a2da395c202783ef827adc6021c02a21988a112a1a1cc57ec67e2c8f8239280d0ee2bef5bc84df8ef
 WHIRLPOOL 
8d9276ae40c98bac53aa4e5fdc81ec2766d27ea4f6cf85634270b3c31d8e07e3b451c4df466dda2c55cc2238d481903d8541adc197890b17fcb879567cd027ac

diff --git a/sys-libs/kpmcore/kpmcore-3.0.0.ebuild 
b/sys-libs/kpmcore/kpmcore-3.0.0.ebuild
deleted file mode 100644
index 441e22c..
--- a/sys-libs/kpmcore/kpmcore-3.0.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit kde5
-
-DESCRIPTION="Library for managing partitions"
-HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
-SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="5/4"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE=""
-
-CDEPEND="
-   $(add_frameworks_dep kcoreaddons)
-   $(add_frameworks_dep ki18n)
-   $(add_frameworks_dep kiconthemes)
-   $(add_frameworks_dep kio)
-   $(add_frameworks_dep kservice)
-   $(add_frameworks_dep kwidgetsaddons)
-   $(add_qt_dep qtgui)
-   $(add_qt_dep qtwidgets)
-   dev-libs/libatasmart
-   sys-apps/util-linux
-   >=sys-block/parted-3
-"
-DEPEND="${CDEPEND}
-   virtual/pkgconfig
-"
-RDEPEND="${CDEPEND}
-   !

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

2016-12-31 Thread Andreas Sturmlechner
commit: 23f09aefc17cf5029fd37bcacaf750d8a318975a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  1 02:10:33 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan  1 02:10:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23f09aef

sys-libs/kpmcore: 3.0.1 version bump

Package-Manager: portage-2.3.0

 sys-libs/kpmcore/Manifest |  1 +
 sys-libs/kpmcore/kpmcore-3.0.1.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/sys-libs/kpmcore/Manifest b/sys-libs/kpmcore/Manifest
index f797cb1..b8d00b0 100644
--- a/sys-libs/kpmcore/Manifest
+++ b/sys-libs/kpmcore/Manifest
@@ -1,2 +1,3 @@
 DIST kpmcore-2.2.1.tar.xz 351160 SHA256 
573c662fce7077180bafa62461e0bfd6e7ca5f8fce3cfc7561668da291ae SHA512 
5c8a9f9a939927d451c8b408ced250bf847af344d13791152fc08e08b80ac0535ecdb661d733a10478fcb7cd9c61164614f359704052d964bedde0949c95cdf7
 WHIRLPOOL 
69db6258f8564ecbf426084653411db20d429df5780021d871190a9dd00fc0bbf9f48e7ea0ec69f35336511a5606aab7439dfa0068d9269f1ceca947f95f91a2
 DIST kpmcore-3.0.0.tar.xz 401224 SHA256 
5f98cb2dc97b00af6d848f3df6e68d406d8202e7bcffe7a2092d0f47adfe799a SHA512 
dc029a90765f75db1929fb2dedac1dd5ca9dd68f6b52b10fa842789ec55a7a65aa20fe784f52f9f6aac86b17dca69244c060ba819a07ca327115ffe4fedb2927
 WHIRLPOOL 
84cb9e83b098cb4c02db7a15d2de7838903ea986f20fd64d6e766a60100f8fb18b06354a736a78b4d7ffe68378593155fa1d6d3cea4532eecddae77d0309c0e5
+DIST kpmcore-3.0.1.tar.xz 400428 SHA256 
60e1960a3436ad175229ea67b6abe10ad011edc0bba22ea90a80a55083ba9bd6 SHA512 
37d18d292aa6c0b656ee1046fb40462ba7703650333f420a2da395c202783ef827adc6021c02a21988a112a1a1cc57ec67e2c8f8239280d0ee2bef5bc84df8ef
 WHIRLPOOL 
8d9276ae40c98bac53aa4e5fdc81ec2766d27ea4f6cf85634270b3c31d8e07e3b451c4df466dda2c55cc2238d481903d8541adc197890b17fcb879567cd027ac

diff --git a/sys-libs/kpmcore/kpmcore-3.0.1.ebuild 
b/sys-libs/kpmcore/kpmcore-3.0.1.ebuild
new file mode 100644
index ..410d14d
--- /dev/null
+++ b/sys-libs/kpmcore/kpmcore-3.0.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit kde5
+
+DESCRIPTION="Library for managing partitions"
+HOMEPAGE="https://www.kde.org/applications/system/kdepartitionmanager;
+SRC_URI="mirror://kde/stable/${PN}/${PV}/src/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="5/4"
+KEYWORDS="~amd64 ~arm ~x86"
+IUSE=""
+
+CDEPEND="
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kiconthemes)
+   $(add_frameworks_dep kio)
+   $(add_frameworks_dep kservice)
+   $(add_frameworks_dep kwidgetsaddons)
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtwidgets)
+   dev-libs/libatasmart
+   sys-apps/util-linux
+   >=sys-block/parted-3
+"
+DEPEND="${CDEPEND}
+   virtual/pkgconfig
+"
+RDEPEND="${CDEPEND}
+   !

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

2016-12-31 Thread Andreas Sturmlechner
commit: 88e479b2b1aa20f232975f5908f8eea0cc59d9dc
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  1 01:42:28 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan  1 01:42:28 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=88e479b2

kde-apps/umbrello: Add missing DEPEND

Upstream commit: a3b6be66bd37f57cdb99c457d1c6bf73c1517ceb
Thanks-to: Arfrever

Package-Manager: portage-2.3.0

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

diff --git a/kde-apps/umbrello/umbrello-16.12.49..ebuild 
b/kde-apps/umbrello/umbrello-16.12.49..ebuild
index d8413ab..501aa62 100644
--- a/kde-apps/umbrello/umbrello-16.12.49..ebuild
+++ b/kde-apps/umbrello/umbrello-16.12.49..ebuild
@@ -29,6 +29,7 @@ DEPEND="
$(add_frameworks_dep ktexteditor)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)

diff --git a/kde-apps/umbrello/umbrello-.ebuild 
b/kde-apps/umbrello/umbrello-.ebuild
index d8413ab..501aa62 100644
--- a/kde-apps/umbrello/umbrello-.ebuild
+++ b/kde-apps/umbrello/umbrello-.ebuild
@@ -29,6 +29,7 @@ DEPEND="
$(add_frameworks_dep ktexteditor)
$(add_frameworks_dep ktextwidgets)
$(add_frameworks_dep kwidgetsaddons)
+   $(add_frameworks_dep kwindowsystem)
$(add_frameworks_dep kxmlgui)
$(add_qt_dep qtgui)
$(add_qt_dep qtprintsupport)



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

2016-12-31 Thread Andreas Sturmlechner
commit: 5ccedccf44ccbc5d96f882d8f82118589bf955b5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jan  1 01:53:38 2017 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jan  1 01:53:38 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=5ccedccf

kde-plasma/kwin: Raise xkbcommon DEPEND to 0.7, drop minimum GCC

Upstream commits:
d1fdb9a02fb823fe22faef0678bb69963d385d05
02b9cf739f69e6253a4fe72a16ca0e2ade9b967e

Thanks-to: Arfrever

Package-Manager: portage-2.3.0

 kde-plasma/kwin/kwin-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/kde-plasma/kwin/kwin-.ebuild b/kde-plasma/kwin/kwin-.ebuild
index 250a1d4..6dd5656 100644
--- a/kde-plasma/kwin/kwin-.ebuild
+++ b/kde-plasma/kwin/kwin-.ebuild
@@ -4,7 +4,6 @@
 
 EAPI=6
 
-KDE_GCC_MINIMAL="4.8"
 KDE_HANDBOOK="optional"
 KDE_TEST="optional"
 VIRTUALX_REQUIRED="test"
@@ -64,7 +63,7 @@ COMMON_DEPEND="
x11-libs/libXi
x11-libs/libdrm
>=x11-libs/libxcb-1.10
-   >=x11-libs/libxkbcommon-0.5.0
+   >=x11-libs/libxkbcommon-0.7.0
x11-libs/xcb-util-cursor
x11-libs/xcb-util-image
x11-libs/xcb-util-keysyms



[gentoo-commits] repo/gentoo:master commit in: sys-devel/m4/

2016-12-31 Thread Anthony G. Basile
commit: 7e94d8386947fb5c85ff2509e932fc8a20516f01
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sun Jan  1 01:50:06 2017 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sun Jan  1 01:50:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e94d838

sys-devel/m4: no need to inherit eutils

Package-Manager: portage-2.3.0

 sys-devel/m4/m4-1.4.18.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-devel/m4/m4-1.4.18.ebuild b/sys-devel/m4/m4-1.4.18.ebuild
index 8e992f6..f5005e4c 100644
--- a/sys-devel/m4/m4-1.4.18.ebuild
+++ b/sys-devel/m4/m4-1.4.18.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
 EAPI="5"
 
-inherit eutils
-
 DESCRIPTION="GNU macro processor"
 HOMEPAGE="https://www.gnu.org/software/m4/m4.html;
 SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"



[gentoo-commits] repo/gentoo:master commit in: sys-devel/m4/

2016-12-31 Thread Lars Wendler
commit: e1105fb37a4f5f686f67e0eec675fd437253a3c4
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Dec 31 23:45:36 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Dec 31 23:45:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1105fb3

sys-devel/m4: Bump to version 1.4.18

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-devel/m4/Manifest |  1 +
 sys-devel/m4/m4-1.4.18.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/sys-devel/m4/Manifest b/sys-devel/m4/Manifest
index a2caf52..6259ce1 100644
--- a/sys-devel/m4/Manifest
+++ b/sys-devel/m4/Manifest
@@ -1,2 +1,3 @@
 DIST m4-1.4.16.tar.xz 1005264 SHA256 
d5b5d51cf8f5b18f3bac39bc2f6b1e61f34d400136ae1a87d075e26a38028d5d SHA512 
1123671ab3e0b1b13a4a08035e792a93af0d7d0a5b9027982fe7b5104488a0746906068a0f4774c1f1bc2648ba1bc74d690836e90ff9391464278e4ccbc7edf0
 WHIRLPOOL 
0438098dab71f6a66c2b18aed2941ef9a2152a8061c2f9903373a1348b261354429806c2bd313f55c7aaa612fe4c2f7628a1fff3c80819565df2a3b664485c23
 DIST m4-1.4.17.tar.xz 1149088 SHA256 
f0543c3beb51fa6b3337d8025331591e0e18d8ec2886ed391f1aade43477d508 SHA512 
406e6e97c3f5c5f3c8055bac748d4fe8c2e861d97e84ab6d840a2caa7df04f523cc662d6d51f6afae7d6c219d03693c7ae0c1e669a80246a3ceb5e8342b82389
 WHIRLPOOL 
69a9f9129dd2f2fd0f5d61771cbac2208f10aa83e0d42fe4213eb10283cc68ce1a96717aece99e92890a4135eb7e201c638d4d9bc17ac10026b0989f3a64940e
+DIST m4-1.4.18.tar.xz 1207688 SHA256 
f2c1e86ca0a404ff281631bdc8377638992744b175afb806e25871a24a934e07 SHA512 
06f583efc3855cd8477d8347544f4ae5153a3e50aea74d21968afa7214784ea3ddfc02d0a2b11324120d76a19f2e804d20de11a456b5da929eb6ae469519b174
 WHIRLPOOL 
bed79746e774e17c8487e0e1c02e62d961dfcdeb3ed0852fb948b77b5baf7b7d35bcf69d6d0d01ff5e8f873fffd0dadc92ebdfcf31bf87ac302e3cfb0e6ce497

diff --git a/sys-devel/m4/m4-1.4.18.ebuild b/sys-devel/m4/m4-1.4.18.ebuild
new file mode 100644
index ..8e992f6
--- /dev/null
+++ b/sys-devel/m4/m4-1.4.18.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils
+
+DESCRIPTION="GNU macro processor"
+HOMEPAGE="https://www.gnu.org/software/m4/m4.html;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux 
~ia64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="examples"
+
+# remember: cannot dep on autoconf since it needs us
+DEPEND="app-arch/xz-utils"
+RDEPEND=""
+
+src_configure() {
+   # Disable automagic dependency over libsigsegv; see bug #278026
+   export ac_cv_libsigsegv=no
+
+   local myconf=""
+   [[ ${USERLAND} != "GNU" ]] && myconf="--program-prefix=g"
+   econf --enable-changeword ${myconf}
+}
+
+src_test() {
+   [[ -d /none ]] && die "m4 tests will fail with /none/" #244396
+   emake check
+}
+
+src_install() {
+   default
+   # autoconf-2.60 for instance, first checks gm4, then m4.  If we don't 
have
+   # gm4, it might find gm4 from outside the prefix on for instance Darwin
+   use prefix && dosym /usr/bin/m4 /usr/bin/gm4
+   if use examples ; then
+   docinto examples
+   dodoc examples/*
+   rm -f "${ED}"/usr/share/doc/${PF}/examples/Makefile*
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/mono-addins/

2016-12-31 Thread Agostino Sarubbo
commit: ae9211bdb359dd2ebc73f083b62ad5012f10ce16
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:56 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae9211bd

dev-dotnet/mono-addins: amd64 stable wrt bug #594356

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

 dev-dotnet/mono-addins/mono-addins-1.0-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-dotnet/mono-addins/mono-addins-1.0-r1.ebuild 
b/dev-dotnet/mono-addins/mono-addins-1.0-r1.ebuild
index ee43e0b..49db414 100644
--- a/dev-dotnet/mono-addins/mono-addins-1.0-r1.ebuild
+++ b/dev-dotnet/mono-addins/mono-addins-1.0-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ SRC_URI="https://github.com/mono/${PN}/archive/${P}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE="+gtk"
 
 RDEPEND=">=dev-lang/mono-3



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

2016-12-31 Thread Agostino Sarubbo
commit: a7f7a42f5ab1e02ae53bfae81e20f3c1d186c5c0
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:23 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7f7a42f

dev-python/abstract_rendering: amd64 stable wrt bug #596536

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

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

diff --git a/dev-python/abstract_rendering/abstract_rendering-0.5.1.ebuild 
b/dev-python/abstract_rendering/abstract_rendering-0.5.1.ebuild
index 809d433..8901795 100644
--- a/dev-python/abstract_rendering/abstract_rendering-0.5.1.ebuild
+++ b/dev-python/abstract_rendering/abstract_rendering-0.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="uni_indiana"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2016-12-31 Thread Agostino Sarubbo
commit: 5a725543063880a9e4b05804967ea59f2b3f0647
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:40 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a725543

app-text/asa: amd64 stable wrt bug #599770

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

 app-text/asa/asa-1.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/asa/asa-1.1-r1.ebuild b/app-text/asa/asa-1.1-r1.ebuild
index 3a009fec..2920158 100644
--- a/app-text/asa/asa-1.1-r1.ebuild
+++ b/app-text/asa/asa-1.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -12,7 +12,7 @@ 
SRC_URI="http://www.ibiblio.org/pub/Linux/devel/lang/fortran/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 IUSE=""
 
 src_prepare() {



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

2016-12-31 Thread Agostino Sarubbo
commit: 7d96443f212ca2b6526921f37b5322a434eddbc3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:34 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d96443f

media-sound/mp3splt-gtk: amd64 stable wrt bug #600980

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

 media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2-r1.ebuild 
b/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2-r1.ebuild
index 4333e45..4e2388e 100644
--- a/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2-r1.ebuild
+++ b/media-sound/mp3splt-gtk/mp3splt-gtk-0.9.2-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/mp3splt/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
 IUSE="audacious doc gstreamer nls"
 
 RDEPEND="



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

2016-12-31 Thread Agostino Sarubbo
commit: 21d19ebda4a21f29fb560e5484f9e3602cc7a371
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:45 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21d19ebd

dev-libs/gmime: amd64 stable wrt bug #594356

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

 dev-libs/gmime/gmime-2.6.20-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/gmime/gmime-2.6.20-r3.ebuild 
b/dev-libs/gmime/gmime-2.6.20-r3.ebuild
index a619841..d625c83 100644
--- a/dev-libs/gmime/gmime-2.6.20-r3.ebuild
+++ b/dev-libs/gmime/gmime-2.6.20-r3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="http://spruce.sourceforge.net/gmime/ 
https://developer.gnome.org/gmime
 
 SLOT="2.6"
 LICENSE="LGPL-2.1"
-KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x86-macos ~x86-solaris"
 IUSE="doc mono smime static-libs vala"
 
 RDEPEND="



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

2016-12-31 Thread Agostino Sarubbo
commit: 99e432956bf80a9836e130ebb0b857a2c3e6ac97
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:55 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99e43295

dev-lang/tk: amd64 stable wrt bug #586300

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

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

diff --git a/dev-lang/tk/tk-8.6.6.ebuild b/dev-lang/tk/tk-8.6.6.ebuild
index 5d4d282..073dbde 100644
--- a/dev-lang/tk/tk-8.6.6.ebuild
+++ b/dev-lang/tk/tk-8.6.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/tcl/${MY_P}-src.tar.gz"
 
 LICENSE="tcltk"
 SLOT="0/8.6"
-KEYWORDS="alpha ~amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="debug +threads truetype aqua xscreensaver"
 
 RDEPEND="



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

2016-12-31 Thread Agostino Sarubbo
commit: ce9c4f93e469a41fc088ee0aea7cc7a294a98e8c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:49 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce9c4f93

dev-lang/tcl: amd64 stable wrt bug #586300

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

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

diff --git a/dev-lang/tcl/tcl-8.6.6.ebuild b/dev-lang/tcl/tcl-8.6.6.ebuild
index a1cb986..86b6a48 100644
--- a/dev-lang/tcl/tcl-8.6.6.ebuild
+++ b/dev-lang/tcl/tcl-8.6.6.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://sourceforge/tcl/${PN}-core${PV}-src.tar.gz"
 
 LICENSE="tcltk"
 SLOT="0/8.6"
-KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-interix ~amd64-linux 
~arm-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x86-solaris"
 IUSE="debug +threads"
 
 RDEPEND=">=sys-libs/zlib-1.2.8-r1[${MULTILIB_USEDEP}]"



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

2016-12-31 Thread Agostino Sarubbo
commit: 227857e43483b3956bbd0fcb549a8a6d3d25aa5a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:08 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=227857e4

dev-cpp/lucene++: amd64 stable wrt bug #563966

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

 dev-cpp/lucene++/lucene++-3.0.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-cpp/lucene++/lucene++-3.0.7.ebuild 
b/dev-cpp/lucene++/lucene++-3.0.7.ebuild
index c814265..e423a42 100644
--- a/dev-cpp/lucene++/lucene++-3.0.7.ebuild
+++ b/dev-cpp/lucene++/lucene++-3.0.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$
 
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/luceneplusplus/LucenePlusPlus/archive/rel_${PV}.tar.
 
 LICENSE="|| ( LGPL-3 Apache-2.0 )"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc64 ~x86"
+KEYWORDS="amd64 ~hppa ~ppc64 ~x86"
 IUSE="debug"
 
 DEPEND="dev-libs/boost:="



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

2016-12-31 Thread Agostino Sarubbo
commit: f0d7bd54d5584040bdcc8321031621a30e419e56
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:28 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0d7bd54

dev-python/flexx: amd64 stable wrt bug #596536

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

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

diff --git a/dev-python/flexx/flexx-0.3.1.ebuild 
b/dev-python/flexx/flexx-0.3.1.ebuild
index 2d04243..25cd6e4 100644
--- a/dev-python/flexx/flexx-0.3.1.ebuild
+++ b/dev-python/flexx/flexx-0.3.1.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.zip"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE=""
 
 RDEPEND=""



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

2016-12-31 Thread Agostino Sarubbo
commit: 550569efae019ed14b6a5d9c1730b8190618d78d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:20:13 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=550569ef

games-board/pychess: amd64 stable wrt bug #602142

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

 games-board/pychess/pychess-0.12.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-board/pychess/pychess-0.12.4.ebuild 
b/games-board/pychess/pychess-0.12.4.ebuild
index 38be978..e518475 100644
--- a/games-board/pychess/pychess-0.12.4.ebuild
+++ b/games-board/pychess/pychess-0.12.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="http://pychess.org/download/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="gstreamer"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itcl/

2016-12-31 Thread Agostino Sarubbo
commit: 4c26058855f55dd1c56d2d84798e200de23d068d
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:20:00 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c260588

dev-tcltk/itcl: amd64 stable wrt bug #586300

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

 dev-tcltk/itcl/itcl-4.0.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-tcltk/itcl/itcl-4.0.3.ebuild b/dev-tcltk/itcl/itcl-4.0.3.ebuild
index 981462a..3a6dabf 100644
--- a/dev-tcltk/itcl/itcl-4.0.3.ebuild
+++ b/dev-tcltk/itcl/itcl-4.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -17,7 +17,7 @@ 
SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itcl%
 
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~x86-macos"
+KEYWORDS="alpha amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~x86-macos"
 IUSE=""
 
 RDEPEND=">=dev-lang/tcl-8.6:0="



[gentoo-commits] repo/gentoo:master commit in: dev-tcltk/itk/

2016-12-31 Thread Agostino Sarubbo
commit: 8702e5aecc943761dae24da75815504180722dbd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:20:05 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8702e5ae

dev-tcltk/itk: amd64 stable wrt bug #586300

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

 dev-tcltk/itk/itk-4.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tcltk/itk/itk-4.0.1.ebuild b/dev-tcltk/itk/itk-4.0.1.ebuild
index c4c1c0c..a472edd 100644
--- a/dev-tcltk/itk/itk-4.0.1.ebuild
+++ b/dev-tcltk/itk/itk-4.0.1.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="mirror://sourceforge/project/incrtcl/%5Bincr%20Tcl_Tk%5D-4-source/itk%2
 IUSE=""
 SLOT="0"
 LICENSE="BSD"
-KEYWORDS="alpha ~amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="alpha amd64 ~ia64 ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux"
 
 DEPEND="
>=dev-lang/tk-8.6:=



[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/gtk-sharp/

2016-12-31 Thread Agostino Sarubbo
commit: ca22eb748a9aadb15f35056595bf9d63db1cf50c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:40 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca22eb74

dev-dotnet/gtk-sharp: amd64 stable wrt bug #594356

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

 dev-dotnet/gtk-sharp/gtk-sharp-2.12.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-dotnet/gtk-sharp/gtk-sharp-2.12.21.ebuild 
b/dev-dotnet/gtk-sharp/gtk-sharp-2.12.21.ebuild
index c5d906e..ef7ce7f 100644
--- a/dev-dotnet/gtk-sharp/gtk-sharp-2.12.21.ebuild
+++ b/dev-dotnet/gtk-sharp/gtk-sharp-2.12.21.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$
 
@@ -10,7 +10,7 @@ SLOT="2"
 DESCRIPTION="gtk bindings for mono"
 LICENSE="GPL-2"
 HOMEPAGE="http://www.mono-project.com/GtkSharp;
-KEYWORDS="~amd64 ~x86 ~ppc"
+KEYWORDS="amd64 ~ppc ~x86"
 SRC_URI="http://download.mono-project.com/sources/gtk-sharp212/${P}.tar.gz;
 IUSE="debug"
 



[gentoo-commits] repo/gentoo:master commit in: sci-libs/atlas/

2016-12-31 Thread Agostino Sarubbo
commit: 0f3ba8a6dc38d5106103a4312652230c5eba96d7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:19 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f3ba8a6

sci-libs/atlas: amd64 stable wrt bug #595218

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

 sci-libs/atlas/atlas-3.10.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/atlas/atlas-3.10.2.ebuild 
b/sci-libs/atlas/atlas-3.10.2.ebuild
index 7e80dd9..c1120c8 100644
--- a/sci-libs/atlas/atlas-3.10.2.ebuild
+++ b/sci-libs/atlas/atlas-3.10.2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/math-atlas/${PN}${PV}.tar.bz2
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc fortran generic lapack static-libs threads"
 
 RDEPEND=""



[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/gnome-sharp/

2016-12-31 Thread Agostino Sarubbo
commit: 0bbe782693c28504a906f1594737085b8f07d6dc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:50 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bbe7826

dev-dotnet/gnome-sharp: amd64 stable wrt bug #594356

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

 dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-r1.ebuild 
b/dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-r1.ebuild
index 604e765..cd10915 100644
--- a/dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-r1.ebuild
+++ b/dev-dotnet/gnome-sharp/gnome-sharp-2.24.2-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$
 
@@ -10,7 +10,7 @@ SLOT="2"
 DESCRIPTION="gnome bindings for mono"
 HOMEPAGE="http://www.mono-project.com/GtkSharp;
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~x86 ~ppc ~x86-fbsd"
+KEYWORDS="amd64 ~ppc ~x86 ~x86-fbsd"
 SRC_URI="mirror://gnome/sources/gnome-sharp/2.24/${P}.tar.bz2"
 IUSE="debug"
 



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

2016-12-31 Thread Agostino Sarubbo
commit: 9fc936e071fbc7553b09ecdbb08676f299e42126
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:03 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc936e0

app-i18n/poedit: amd64 stable wrt bug #563966

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

 app-i18n/poedit/poedit-1.8.5.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/poedit/poedit-1.8.5.ebuild 
b/app-i18n/poedit/poedit-1.8.5.ebuild
index 131d1f4..7bfb4d8 100644
--- a/app-i18n/poedit/poedit-1.8.5.ebuild
+++ b/app-i18n/poedit/poedit-1.8.5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/vslavik/${PN}/releases/download/v${PV}-oss/${P}.tar.
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 ~x86"
 IUSE=""
 
 # db/expat req for legacytm (backwards support for pre 1.6)



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

2016-12-31 Thread Agostino Sarubbo
commit: 2ba692cc4fcb074ea762f76f2063dacf2dab7ec8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:19:18 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:25 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ba692cc

dev-python/bokeh: amd64 stable wrt bug #596536

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

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

diff --git a/dev-python/bokeh/bokeh-0.11.1.ebuild 
b/dev-python/bokeh/bokeh-0.11.1.ebuild
index 49c2464..1fcdade 100644
--- a/dev-python/bokeh/bokeh-0.11.1.ebuild
+++ b/dev-python/bokeh/bokeh-0.11.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="examples test"
 
 # A doc build requires napoleon sphinx extension which will be included in 
sphinx release 1.3



[gentoo-commits] repo/gentoo:master commit in: sci-electronics/xnec2c/

2016-12-31 Thread Agostino Sarubbo
commit: a7ff67c7e15e39c39ec0970fa77049909a27d1c5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:30 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7ff67c7

sci-electronics/xnec2c: amd64 stable wrt bug #604254

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

 sci-electronics/xnec2c/xnec2c-3.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild 
b/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild
index 8631c5d..4d52cfa 100644
--- a/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild
+++ b/sci-electronics/xnec2c/xnec2c-3.5.1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="http://www.qsl.net/5b4az/pkg/nec2/xnec2c/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="doc examples"
 
 RDEPEND="dev-libs/glib:2



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

2016-12-31 Thread Agostino Sarubbo
commit: 1a98fe5401ce788839b9adba34a663bf694fe652
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:17:54 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a98fe54

www-apps/scgi: amd64 stable wrt bug #549002

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

 www-apps/scgi/scgi-1.14.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apps/scgi/scgi-1.14.ebuild b/www-apps/scgi/scgi-1.14.ebuild
index 1fca728..46542e1 100644
--- a/www-apps/scgi/scgi-1.14.ebuild
+++ b/www-apps/scgi/scgi-1.14.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$
 
@@ -15,7 +15,7 @@ SRC_URI="http://python.ca/scgi/releases/${P}.tar.gz;
 
 LICENSE="CNRI"
 SLOT="0"
-KEYWORDS="~amd64 hppa ~ppc x86 ~amd64-linux ~x86-linux ~x86-macos"
+KEYWORDS="amd64 hppa ~ppc x86 ~amd64-linux ~x86-linux ~x86-macos"
 IUSE=""
 
 DEPEND=""



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

2016-12-31 Thread Agostino Sarubbo
commit: 78c4816d6d769c6216a7dbd80f06489fcb7cd059
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:06 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78c4816d

media-gfx/luminance-hdr: amd64 stable wrt bug #575084

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

 media-gfx/luminance-hdr/luminance-hdr-2.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/luminance-hdr/luminance-hdr-2.4.0.ebuild 
b/media-gfx/luminance-hdr/luminance-hdr-2.4.0.ebuild
index 6c1e6ef..f174d26 100644
--- a/media-gfx/luminance-hdr/luminance-hdr-2.4.0.ebuild
+++ b/media-gfx/luminance-hdr/luminance-hdr-2.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -13,7 +13,7 @@ SRC_URI="mirror://sourceforge/qtpfsgui/${MY_P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 LANGS=" cs de es fi fr hi hu id it pl ro ru sk tr zh"
 IUSE="cpu_flags_x86_sse2 fits openmp test ${LANGS// / linguas_}"
 



[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_scgi/

2016-12-31 Thread Agostino Sarubbo
commit: 621005c23bfaf4a9399a4ed9ac64ba5e7cb16cdb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:17:49 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=621005c2

www-apache/mod_scgi: amd64 stable wrt bug #549002

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

 www-apache/mod_scgi/mod_scgi-1.14-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-apache/mod_scgi/mod_scgi-1.14-r1.ebuild 
b/www-apache/mod_scgi/mod_scgi-1.14-r1.ebuild
index ee6ea15..79cc333 100644
--- a/www-apache/mod_scgi/mod_scgi-1.14-r1.ebuild
+++ b/www-apache/mod_scgi/mod_scgi-1.14-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2015 Gentoo Foundation
+# Copyright 1999-2016 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
@@ -11,7 +11,7 @@ SRC_URI="http://python.ca/scgi/releases/scgi-${PV}.tar.gz;
 
 LICENSE="CNRI"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ppc ~x86"
+KEYWORDS="amd64 ~hppa ~ppc ~x86"
 IUSE=""
 
 DEPEND="~www-apps/scgi-${PV}"



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

2016-12-31 Thread Agostino Sarubbo
commit: de294951ee3e84e79fe9aa1038635bd0ef5bafe2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:24 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de294951

sci-mathematics/xmds: amd64 stable wrt bug #595218

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

 sci-mathematics/xmds/xmds-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-mathematics/xmds/xmds-2.2.2.ebuild 
b/sci-mathematics/xmds/xmds-2.2.2.ebuild
index 8b1c036..e1b0c1f 100644
--- a/sci-mathematics/xmds/xmds-2.2.2.ebuild
+++ b/sci-mathematics/xmds/xmds-2.2.2.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="http://www.xmds.org;
 SRC_URI="mirror://sourceforge/xmds/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="doc examples mpi"
 
 DEPEND="dev-python/cheetah[${PYTHON_USEDEP}]"



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

2016-12-31 Thread Agostino Sarubbo
commit: f7f12b6cc143800601682dd478b75efbcf6855b5
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:17:42 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7f12b6c

net-analyzer/etherape: amd64 stable wrt bug #601004

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

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

diff --git a/net-analyzer/etherape/etherape-0.9.14.ebuild 
b/net-analyzer/etherape/etherape-0.9.14.ebuild
index 43c22f8..a14a98d 100644
--- a/net-analyzer/etherape/etherape-0.9.14.ebuild
+++ b/net-analyzer/etherape/etherape-0.9.14.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/etherape/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~ppc64 ~sparc ~x86"
 
 RDEPEND="
>=gnome-base/libglade-2.0



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

2016-12-31 Thread Agostino Sarubbo
commit: 40476dc9cbffc5520663f3f26645ff45551db7b8
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:12 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40476dc9

media-radio/flrig: amd64 stable wrt bug #604252

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

 media-radio/flrig/flrig-1.3.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/flrig/flrig-1.3.27.ebuild 
b/media-radio/flrig/flrig-1.3.27.ebuild
index e8fc0e2..6cf5e96 100644
--- a/media-radio/flrig/flrig-1.3.27.ebuild
+++ b/media-radio/flrig/flrig-1.3.27.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/fldigi/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="nls"
 
 RDEPEND="x11-libs/libX11



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

2016-12-31 Thread Agostino Sarubbo
commit: 689f5b4d147d97b7883d404169f5d914c4ebe3bf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 22:18:00 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 22:20:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=689f5b4d

dev-util/distro-info: amd64 stable wrt bug #604020

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

 dev-util/distro-info/distro-info-0.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/distro-info/distro-info-0.14.ebuild 
b/dev-util/distro-info/distro-info-0.14.ebuild
index fd69a70..315d6ac 100644
--- a/dev-util/distro-info/distro-info-0.14.ebuild
+++ b/dev-util/distro-info/distro-info-0.14.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="python test"
 
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2016-12-31 Thread Göktürk Yüksek
commit: bbadbf2b6798c383e9e18184e8eef2598b8b8645
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Sat Dec 31 22:17:22 2016 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Sat Dec 31 22:17:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbadbf2b

media-sound/gejengel: remove the proxied maintainer per his request

Package-Manager: portage-2.3.0

 media-sound/gejengel/metadata.xml | 10 +-
 1 file changed, 1 insertion(+), 9 deletions(-)

diff --git a/media-sound/gejengel/metadata.xml 
b/media-sound/gejengel/metadata.xml
index 23241dc..9cd7ca8 100644
--- a/media-sound/gejengel/metadata.xml
+++ b/media-sound/gejengel/metadata.xml
@@ -1,15 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-du...@gmx.de
-Dustin Polke
-Proxy maintainer, to be assigned 
bugs
-   
-   
-proxy-ma...@gentoo.org
-Proxy Maintainers
-
+   

Enable track submission on 
last.fm




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

2016-12-31 Thread Zac Medico
commit: aa57d60d9c77a46f542475dcf448c83af40e73e1
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Fri Dec 30 21:43:02 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Dec 31 21:41:35 2016 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=aa57d60d

portageq: allow disabling regex matching of maintainer emails #604164

When the email address of a maintainer contains unescaped
regex-special characters (such as '+'), the maintainer-email match may
return undesirable results.

Add a command line option '--no-regex' to use re.escape() with list
comprehension on maintainer emails when constructing the matcher
regex. This way, an exact string match can be made rather than a regex
match.

X-Gentoo-bug: 604164
X-Gentoo-bug-url: https://bugs.gentoo.org/604164

 bin/portageq | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/bin/portageq b/bin/portageq
index d645635..06c8e0e 100755
--- a/bin/portageq
+++ b/bin/portageq
@@ -1082,6 +1082,8 @@ def pquery(parser, opts, args):
maintainer_emails = []
for x in opts.maintainer_email:
maintainer_emails.extend(x.split(","))
+   if opts.no_regex: # Escape regex-special characters for an 
exact match
+   maintainer_emails = [re.escape(x) for x in 
maintainer_emails]
xml_matchers.append(MaintainerEmailMatcher(maintainer_emails))
if opts.orphaned:
xml_matchers.append(match_orphaned)
@@ -1240,6 +1242,11 @@ def add_pquery_arguments(parser):
"help": "comma-separated list of 
maintainer email regexes to search for"
},
{
+   "longopt": "--no-regex",
+   "action": "store_true",
+   "help": "Use exact matching instead of 
regex matching for --maintainer-email"
+   },
+   {
"longopt": "--orphaned",
"action": "store_true",
"help": "match only orphaned 
(maintainer-needed) packages"



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

2016-12-31 Thread Andreas Sturmlechner
commit: a1b323a6bb6a2d1a3d8e1fc4651bf81fe1f2cb0e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Dec 31 21:44:27 2016 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Dec 31 21:44:27 2016 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a1b323a6

kde-plasma/plasma-workspace: Drop backported patch

Upstream commit: e43b89e2b9f3ff9bf6299488e82a365cbfde2b2a

Package-Manager: portage-2.3.0

 .../plasma-workspace-5.8.3-systray-cpuload.patch   | 177 -
 .../plasma-workspace-5.8.49..ebuild|   1 -
 2 files changed, 178 deletions(-)

diff --git 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.8.3-systray-cpuload.patch
 
b/kde-plasma/plasma-workspace/files/plasma-workspace-5.8.3-systray-cpuload.patch
deleted file mode 100644
index fada327..000
--- 
a/kde-plasma/plasma-workspace/files/plasma-workspace-5.8.3-systray-cpuload.patch
+++ /dev/null
@@ -1,177 +0,0 @@
-From: Lindsay Roberts 
-Date: Mon, 10 Oct 2016 16:55:49 +
-Subject: Systray: Move all icon resolution to dataengine
-X-Git-Url: 
http://quickgit.kde.org/?p=plasma-workspace.git=commitdiff=749f60b89f4a166833fb64a5b593a801f63f9615

-Systray: Move all icon resolution to dataengine
-
-Summary:
-Changes triggered by investigation into a long-running high CPU usage bug with 
system tray animations. The systray itself had icon name to icon resolution 
code, which was being triggered (twice) for every icon, every time any icon in 
the systray was updated. This code was spinning up a KIconLoader on each of 
these instances, and throwing it directly away. Each one triggered a large 
quantity of memory allocations and disk scans.
-
-This patch moves the extra bit of "appName" logic from the native part of the 
system tray to the statusnotifieritem datasource, which already had a stored 
'customIconLoader' to handle icon theme paths, and removes the special lookup 
from the sytemtray applet completely. It also prefers icons provided by the 
dataengine to doing another lookup (contentious?). This removes all the extra 
CPU usage outside of the QML scene graph and graphics drivers locally.
-
-This is very much a looking for feedback item - there are things about the 
icon loading paths I almost certainly haven't appreciated yet, and perhaps 
preferring loading by icon name in the applet has a another purpose.
-
-BUG: 356479
-
-Test Plan: Have tested locally with kgpg and steam, the two apps I have that 
trigger the old code path. In neither case, however, did the appName logic 
produce a different result to the code with just the icon search path in 
statusnotifieritem.
-
-Reviewers: #plasma, davidedmundson, mart
-
-Reviewed By: #plasma, davidedmundson, mart
-
-Subscribers: davidedmundson, plasma-devel
-
-Tags: #plasma
-
-Differential Revision: https://phabricator.kde.org/D2986

-
-
 a/applets/systemtray/package/contents/ui/ConfigEntries.qml
-+++ b/applets/systemtray/package/contents/ui/ConfigEntries.qml
-@@ -75,7 +75,7 @@
- "index": i,
- "taskId": item.Id,
- "name": item.Title,
--"iconName": 
plasmoid.nativeInterface.resolveIcon(item.IconName, item.IconThemePath),
-+"iconName": item.IconName,
- "icon": item.Icon
- });
- }
-
 a/applets/systemtray/package/contents/ui/items/StatusNotifierItem.qml
-+++ b/applets/systemtray/package/contents/ui/items/StatusNotifierItem.qml
-@@ -28,7 +28,7 @@
- text: Title
- mainText: ToolTipTitle != "" ? ToolTipTitle : Title
- subText: ToolTipSubTitle
--icon: ToolTipIcon != "" ? ToolTipIcon : 
plasmoid.nativeInterface.resolveIcon(IconName != "" ? IconName : Icon, 
IconThemePath)
-+icon: ToolTipIcon != "" ? ToolTipIcon : Icon ? Icon : IconName
- textFormat: Text.AutoText
- category: Category
- 
-@@ -48,7 +48,7 @@
- 
- PlasmaCore.IconItem {
- id: iconItem
--source: plasmoid.nativeInterface.resolveIcon(IconName != "" ? 
IconName : Icon, IconThemePath)
-+source: Icon ? Icon : IconName
- width: Math.min(parent.width, parent.height)
- height: width
- active: taskIcon.containsMouse
-
 a/applets/systemtray/systemtray.cpp
-+++ b/applets/systemtray/systemtray.cpp
-@@ -37,36 +37,10 @@
- #include 
- #include 
- 
--#include 
--#include 
- #include 
- #include 
- 
- #include 
--
--/*
-- * An app may also load icons from their own directories, so we need a new 
iconloader that takes this into account
-- * This is wrapped into a subclass of iconengine so the iconloader lifespan 
matches the icon object
-- */
--class AppIconEngine : public KIconEngine
--{
--public:
--AppIconEngine(const QString , const QString , const QString 
);
--~AppIconEngine();
--private:
--KIconLoader* m_loader;
--};
--
--AppIconEngine::AppIconEngine(const QString , const QString , 
const QString ) :
--KIconEngine(variant, m_loader = 

[gentoo-commits] proj/linux-patches:4.9 commit in: /

2016-12-31 Thread Mike Pagano
commit: 0f71318b8039de01eb51beee9d11d2e4607d2356
Author: Mike Pagano  gentoo  org>
AuthorDate: Sat Dec 31 19:39:31 2016 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sat Dec 31 19:39:31 2016 +
URL:https://gitweb.gentoo.org/proj/linux-patches.git/commit/?id=0f71318b

Update gentoo kconfig patch adding CHECKPOINT_RESTORE for 
GENTOO_LINUX_INIT_SYSTEMD. See bug #598623

 4567_distro-Gentoo-Kconfig.patch | 26 ++
 1 file changed, 18 insertions(+), 8 deletions(-)

diff --git a/4567_distro-Gentoo-Kconfig.patch b/4567_distro-Gentoo-Kconfig.patch
index cf5a20c..acb0972 100644
--- a/4567_distro-Gentoo-Kconfig.patch
+++ b/4567_distro-Gentoo-Kconfig.patch
@@ -1,14 +1,15 @@
 a/Kconfig  2016-08-30 14:30:48.508361013 -0400
-+++ b/Kconfig  2016-08-30 14:31:40.718683061 -0400
-@@ -9,3 +9,5 @@ config SRCARCH
+--- a/Kconfig  2016-07-01 19:22:17.117439707 -0400
 b/Kconfig  2016-07-01 19:21:54.371440596 -0400
+@@ -8,4 +8,6 @@ config SRCARCH
+   string
option env="SRCARCH"
  
- source "arch/$SRCARCH/Kconfig"
-+
 +source "distro/Kconfig"
 /dev/null  2016-08-30 01:47:09.760073185 -0400
-+++ b/distro/Kconfig   2016-08-30 14:32:21.378933599 -0400
-@@ -0,0 +1,133 @@
++
+ source "arch/$SRCARCH/Kconfig"
+--- /dev/null  2016-11-15 00:56:18.320838834 -0500
 b/distro/Kconfig   2016-11-16 06:24:29.457357409 -0500
+@@ -0,0 +1,142 @@
 +menu "Gentoo Linux"
 +
 +config GENTOO_LINUX
@@ -32,6 +33,7 @@
 +
 +  select DEVTMPFS
 +  select TMPFS
++  select UNIX
 +
 +  select MMU
 +  select SHMEM
@@ -111,16 +113,24 @@
 +  select AUTOFS4_FS
 +  select BLK_DEV_BSG
 +  select CGROUPS
++  select CHECKPOINT_RESTORE
++  select DEVPTS_MULTIPLE_INSTANCES
++  select DMIID
 +  select EPOLL
 +  select FANOTIFY
 +  select FHANDLE
 +  select INOTIFY_USER
++  select IPV6
 +  select NET
 +  select NET_NS
 +  select PROC_FS
++  select SECCOMP
++  select SECCOMP_FILTER
 +  select SIGNALFD
 +  select SYSFS
 +  select TIMERFD
++  select TMPFS_POSIX_ACL
++  select TMPFS_XATTR
 +
 +  select ANON_INODES
 +  select BLOCK



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

2016-12-31 Thread Anthony G. Basile
commit: 7385e7538952b6261dc259a7d81de5b7958d0fe8
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Sat Dec 31 18:36:31 2016 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Sat Dec 31 18:37:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7385e753

net-libs/axtls: version bump to 2.1.2

Package-Manager: portage-2.3.0

 net-libs/axtls/Manifest   |   1 +
 net-libs/axtls/axtls-2.1.2.ebuild | 177 ++
 2 files changed, 178 insertions(+)

diff --git a/net-libs/axtls/Manifest b/net-libs/axtls/Manifest
index e92d634..825aca2 100644
--- a/net-libs/axtls/Manifest
+++ b/net-libs/axtls/Manifest
@@ -1,2 +1,3 @@
 DIST axTLS-1.5.3.tar.gz 1309853 SHA256 
367ce7918b9e7738d853d5eaaa9d4fbdb362c5b323d4c0622a72d891f6b8d8e6 SHA512 
d37fb1341259b079ed234512a96656d67e005c50d9f8e0c856fb140c9da35267624e065134e0cc8310f70e5cf5d196c7dd34f01e2a7a5cc29e77e7ca46c25281
 WHIRLPOOL 
92de1a06da740adf0238550d36a75216bace6c7fb867e82d38f2ca2362dcf0e41810191933aa788ffda080367b6beb312f1a9a240ab687a6c4f324988d36a81c
 DIST axTLS-2.1.1.tar.gz 1305982 SHA256 
6ea445bb7f3ce072242df7f687f531c9d18079681990f93cd4f65f43ef2057a1 SHA512 
55619d5e02ce466bab223ebc1036ef39c6491d11126ed70f2712a427de2c7e396086a97d3607c9cb69685ade0763e2e55f2c94f9ba746d8ce7b34b0d1996f51a
 WHIRLPOOL 
0e05ec073735f0ed334cb6d84c901c162f413a26485a79ec166ee5bbf9ed02708056093d31d5a00bd4374727a6eb08146f538ede04450145101d5eeb03409986
+DIST axTLS-2.1.2.tar.gz 1317506 SHA256 
38deea2ba07104c7d0e719e06f8bdc35990ac55e5926a26628f7ac240677fd2e SHA512 
29e915c0b8549cf93f0664525c84281dd64159dcb3703badec382d203d0209b4f97d7cb875c710610da8e50a7e28d2b94ac161d1fd5fb625d492b15869333ada
 WHIRLPOOL 
b6164acd82bb48a8020ab695642aa85b4a7782f2488cf25ec1c21618c4ec5e1ac16496057ebe21f158b29c2bd1133c40a089c1c5740e8a9f8817be585186b83b

diff --git a/net-libs/axtls/axtls-2.1.2.ebuild 
b/net-libs/axtls/axtls-2.1.2.ebuild
new file mode 100644
index ..644832b
--- /dev/null
+++ b/net-libs/axtls/axtls-2.1.2.ebuild
@@ -0,0 +1,177 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="5"
+
+inherit eutils multilib multilib-minimal savedconfig toolchain-funcs user
+
+
+# axtls CONFIG MINI-HOWTO
+#
+# Note: axtls is highly configurable and uses mconf, like the linux kernel.
+# You can configure it in a couple of ways:
+#
+# 1) USE="-savedconfig" and set/unset the remaining flags to obtain the 
features
+# you want, and possibly a lot more.
+#
+# 2) You can create your own configuration file by doing
+#
+#  FEATURES="keepwork" USE="savedconfig -*" emerge axtls
+#  cd /var/tmp/portage/net-libs/axtls*/work/axTLS
+#  make menuconfig
+#
+# Now configure axtls as you want.  Finally save your config file:
+#
+#  cp config/.config /etc/portage/savedconfig/net-libs/axtls-${PV}
+#
+# where ${PV} is the current version.  You can then run emerge again with
+# your configuration by doing
+#
+#  USE="savedconfig" emerge axtls
+#
+
+
+MY_PN=${PN/tls/TLS}
+
+DESCRIPTION="Embedded client/server TLSv1 SSL library and small HTTP(S) server"
+HOMEPAGE="http://axtls.sourceforge.net/;
+SRC_URI="mirror://sourceforge/axtls/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${PN}-code"
+
+LICENSE="BSD GPL-2"
+SLOT="0/1"
+KEYWORDS="~amd64 ~arm ~hppa ~mips ~ppc ~ppc64 ~s390 ~x86"
+
+IUSE="httpd cgi-lua cgi-php static static-libs doc"
+
+# TODO: add ipv6, and c#, java, lua, perl bindings
+# Currently these all have some issue
+DEPEND="doc? ( app-doc/doxygen )"
+RDEPEND="
+   httpd? (
+   cgi-lua? ( dev-lang/lua )
+   cgi-php? ( dev-lang/php[cgi] )
+   )"
+
+#Note1: static, cgi-* makes no sense if httpd is not given
+REQUIRED_USE="
+   static? ( httpd )
+   cgi-lua? ( httpd )
+   cgi-php? ( httpd )"
+
+AXTLS_GROUP="axtls"
+AXTLS_USER="axtls"
+
+pkg_setup() {
+   use httpd && {
+   ebegin "Creating axtls user and group"
+   enewgroup ${AXTLS_GROUP}
+   enewuser ${AXTLS_USER} -1 -1 -1 ${AXTLS_GROUP}
+   }
+}
+
+src_prepare() {
+   tc-export AR CC
+
+   epatch "${FILESDIR}/explicit-libdir-r1.patch"
+
+   #We want CONFIG_DEBUG to avoid stripping
+   #but not for debugging info
+   sed -i -e 's: -g::' config/Rules.mak || die
+   sed -i -e 's: -g::' config/makefile.conf || die
+
+   multilib_copy_sources
+}
+
+use_flag_config() {
+   cp "${FILESDIR}"/config config/.config || die
+
+   #Respect CFLAGS/LDFLAGS
+   sed -i -e 
"s:^CONFIG_EXTRA_CFLAGS_OPTIONS.*$:CONFIG_EXTRA_CFLAGS_OPTIONS=\"${CFLAGS}\":" \
+   config/.config || die
+   sed -i -e 
"s:^CONFIG_EXTRA_LDFLAGS_OPTIONS.*$:CONFIG_EXTRA_LDFLAGS_OPTIONS=\"${LDLAGS}\":"
 \
+   config/.config || die
+
+   #The 

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

2016-12-31 Thread Mart Raudsepp
commit: 7c9e6ca9a4ae0aeb783a708fe11679bc26acfef1
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sat Dec 31 18:24:45 2016 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sat Dec 31 18:24:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c9e6ca9

profiles: Unmask sys-apps/sandbox-2.10-r3

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

diff --git a/profiles/package.mask b/profiles/package.mask
index bcf2999..607166f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,10 +30,6 @@
 
 #--- END OF EXAMPLES ---
 
-# Mart Raudsepp  (30 Dec 2016)
-# Temporary testing mask for non-maintainer commit of a bugfix, #553092
-=sys-apps/sandbox-2.10-r3
-
 # David Seifert  (29 Dec 2016)
 # Ancient codebase, maintenance nightmare, dead
 # upstream, games-emulation/vbam is spiritual successor



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

2016-12-31 Thread Mikle Kolyada
commit: c52e6c54339f30709e0d6dc6feeb581ef9cf654f
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Sat Dec 31 12:43:28 2016 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Sat Dec 31 17:54:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c52e6c54

mail-client/mutt: Improve smime description

Package-Manager: portage-2.3.0

 mail-client/mutt/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/mutt/metadata.xml b/mail-client/mutt/metadata.xml
index 480b414..de2759e 100644
--- a/mail-client/mutt/metadata.xml
+++ b/mail-client/mutt/metadata.xml
@@ -13,7 +13,7 @@
 Enable support for POP3
Enable support for 
net-mail/notmuch
 Enable the sidebar feature
-Enable support for smime
+Enable support for S/MIME
 Enable support for smtp
 Enable tokyocabinet database backend for header
   caching



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

2016-12-31 Thread Joshua Kinard
commit: b3f13ea5172f487bcd2787466d1af40aef48ed36
Author: Joshua Kinard  gentoo  org>
AuthorDate: Sat Dec 31 17:33:05 2016 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Sat Dec 31 17:33:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3f13ea5

sys-kernel/mips-sources: bump to latest 4.4 LTS kernel & 4.8 kernel.

Includes numerous changes to enhance IP27 and IP30 support over the
past few kernel releases.  IP27 still has issues, but should be
usable at this point.

Signed-off-by: Joshua Kinard  gentoo.org>

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-kernel/mips-sources/Manifest   | 16 -
 ...pkg_postinst-v1.eblit => pkg_postinst-v2.eblit} |  4 +--
 .../{pkg_setup-v1.eblit => pkg_setup-v2.eblit} | 14 ++--
 ..._ip27_info-v3.eblit => show_ip27_info-v4.eblit} |  6 ++--
 ..._ip30_info-v4.eblit => show_ip30_info-v5.eblit} | 37 ++--
 ..._ip32_info-v4.eblit => show_ip32_info-v5.eblit} |  5 +--
 .../{src_unpack-v6.eblit => src_unpack-v7.eblit}   | 25 +-
 sys-kernel/mips-sources/metadata.xml   | 10 +++---
 ...ces-4.2.8.ebuild => mips-sources-4.4.39.ebuild} | 40 +-
 ...ces-4.3.3.ebuild => mips-sources-4.8.15.ebuild} | 34 ++
 10 files changed, 99 insertions(+), 92 deletions(-)

diff --git a/sys-kernel/mips-sources/Manifest b/sys-kernel/mips-sources/Manifest
index 73dfa7e..240a4d2 100644
--- a/sys-kernel/mips-sources/Manifest
+++ b/sys-kernel/mips-sources/Manifest
@@ -1,8 +1,8 @@
-DIST linux-4.2.tar.xz 85507784 SHA256 
cf20e044f17588d2a42c8f2a450b0fd84dfdbd579b489d93e9ab7d0e8b45dbeb SHA512 
a87bbce3c0c6d810a41bbba1c0dcaae80dc38dded9f8571e97fa4ee5a468d655daf52d260911412f7c7da3171a5114e89d63da14b1753b9a3eb2cc38fd89b9ee
 WHIRLPOOL 
2058e664ee287cc03119ff3dd0155b7018b9c789a13a1012f190e516172f845dcb2d977c8e6a6951e9bd720e5e8cdfa3b888cce392c9b02780520e77475870d0
-DIST linux-4.3.tar.xz 86920812 SHA256 
4a622cc84b8a3c38d39bc17195b0c064d2b46945dfde0dae18f77b120bc9f3ae SHA512 
d25812043850530fdcfdb48523523ee980747f3c2c1266149330844dae2cba0d056d4ddd9c0f129f570f5d1f6df5c20385aec5f6a2e0755edc1e2f5f93e2c6bc
 WHIRLPOOL 
e3f131443acc14d4f67bbd3f4e1c57af3d822c41c85a112564d54667a591c8619dce42327fd8166d30a2d7adfaf433c2e2134d4995c91c08f65ac0cc2190f935
-DIST mips-sources-4.2.0-patches-v4.tar.xz 156096 SHA256 
171594c765df5beeb21170d1934fd0652eb58a6b5164694e946608acd94bc6e4 SHA512 
8ca6bc5ff25576a7d4d9c79fab22520a5b4a6cc4b1dfe6fd254fb150eb6aabcfa4131c558b6fcfc490e4c6910c78042c1d94452e68b791bfd09f1b7b7b2f49d0
 WHIRLPOOL 
02842d4aca54c6c4f3eefe968317bc9da7748bb84ff5df7215ac2d775aae9e532661fe14b20fcde9ee431f12d812783ab62189b8b1424d6e68aad59e10989486
-DIST mips-sources-4.3.0-patches-v1.tar.xz 151104 SHA256 
a08b5180eda10b71e229a9cb1da577412b64bba0dee12748754cbe1dcbb5c79c SHA512 
33c216a2923b82778a36cc77bcd49b985974551c81b4102c8783119bbf72a23cfb6e6e3e7c9412fff0fd5310f289956e313ee72da6797e1d1e42111d971662d5
 WHIRLPOOL 
6c80f80718f11815e72f9a4eb3e812d0c1bfb13831ef638e5fe4f27182ddd3ea858f398289527e2c5a7f647b763f2ec7361f3159d602468fbb828d01f22d33de
-DIST mipsgit-4.2.0-20151126.diff.xz 6308 SHA256 
a6f71ddc5f22008f4e3fdd57fa457dc5b9a1bbfc4e66b064bc02c9b04e0f0916 SHA512 
58311ed6a6d3292d5f977c7514ae7357c77b96c98282ba5e9a2425b2278c9d8a90599393413cf640ec5b538707e23d06f9b46c158f8685c9ce96fcb99a9f9be2
 WHIRLPOOL 
ca5b63ec1bd817689bb564ed63ed32f0295f926c0f64c69b1342bf357e50105a9c16d0489b2d4a8d3c6aa519bb35461ec1f948adb12909297377e4aab5e01fc1
-DIST mipsgit-4.3.0-20151126.diff.xz 2184 SHA256 
a919800a221e0fdb4cffca8a24eb42b156818eec2ea666d126866c3effab9938 SHA512 
fb50654f0727e031aa7e37b39e4054cedf80d1be5f81f69d03e39c07181f35c95727a637436237f1f75afadaa8af5f5ec3090809adc14b49b5054de89b9daf23
 WHIRLPOOL 
dd61d9727600fe30834f4d6c3a8e12e5848b90580b1b24f30c769df08f72582c012fae9c3e08fcbbe846216e2cb6d36502f79c7ce9a592017609839155d5683a
-DIST patch-4.2.8.xz 267084 SHA256 
712f93e2f5e8985248852753189001b036b8366008b8c10e3421bb1d45fc20bf SHA512 
6353f1fb4e4d4229a9d45f61f666800beb04240d228499f4c4e84a9c7b32fb5a008698d906a722c996251bcf7d82426811a0a679243ff17fded88320c93ec325
 WHIRLPOOL 
5b6aa338c1b5f68acebb0783a579ef8aa57710cd992edf00f3df4feac63b7ac47426d74c2b4bf44c569df600cb10cbe01e055db6f952be435016d5c1cd9ce7da
-DIST patch-4.3.3.xz 72360 SHA256 
95cd81fcbb87953f672150d60950548edc04a88474c42de713b91811557fefa5 SHA512 
1b9cc343a589a7cdaa66284b3d7129be9869195f5b839dac0222050af42dc7a7451d4e2bf176c1a9939d6572a44a9b6f4534b0c7a79032881a9bc8f8f56c9c69
 WHIRLPOOL 
0a949df196f2b9d744af703910fc5a9a3da555648b190bd58febc14da1fdfc229f3528d38157dca3671301713857feaa747d0cf18a9477f62bd22d2ad1729472
+DIST linux-4.4.tar.xz 87295988 SHA256 
401d7c8fef594999a460d10c72c5a94e9c2e1022f16795ec51746b0d165418b2 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: media-video/handbrake/, profiles/default/linux/

2016-12-31 Thread Ian Whyman
commit: 195d9aabd2533f585e75e7468223ac4232d02fa2
Author: Ian Whyman  gentoo  org>
AuthorDate: Sat Dec 31 16:59:15 2016 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Sat Dec 31 17:00:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=195d9aab

media-video/handbrake: Bump Libav dep

It doesnt build with less than v12, which is masked, so mask the flag too.

Gentoo-Bug: 578690

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../{handbrake-0.10.5-r1.ebuild => handbrake-0.10.5-r2.ebuild}| 2 +-
 profiles/default/linux/package.use.mask   | 4 
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/media-video/handbrake/handbrake-0.10.5-r1.ebuild 
b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
similarity index 98%
rename from media-video/handbrake/handbrake-0.10.5-r1.ebuild
rename to media-video/handbrake/handbrake-0.10.5-r2.ebuild
index ec778dd..93a0cb9 100644
--- a/media-video/handbrake/handbrake-0.10.5-r1.ebuild
+++ b/media-video/handbrake/handbrake-0.10.5-r2.ebuild
@@ -42,7 +42,7 @@ RDEPEND="
media-libs/x264:=
media-sound/lame
sys-libs/zlib
-   libav? ( >=media-video/libav-10.1:0=[fdk?] )
+   libav? ( >=media-video/libav-12:0=[fdk?] )
!libav? ( >=media-video/ffmpeg-2.3:0=[fdk?] )
gstreamer? (
media-libs/gstreamer:1.0

diff --git a/profiles/default/linux/package.use.mask 
b/profiles/default/linux/package.use.mask
index 5117338..87078a5 100644
--- a/profiles/default/linux/package.use.mask
+++ b/profiles/default/linux/package.use.mask
@@ -2,6 +2,10 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# Ian Whyman  (31/12/2016)
+# Handbrake needs libav-12 which is masked.
+media-video/handbrake libav
+
 # Jason Zaman  (06 Sep 2015)
 # This is masked in base/package.use.mask as Linux only.
 sys-auth/consolekit -cgroups



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

2016-12-31 Thread Mike Gilbert
commit: 3deb5edd18bb694130e42beeba4e73d9c6163818
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec 31 16:44:47 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 31 16:45:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3deb5edd

dev-util/pkgconf: sync live ebuild

 dev-util/pkgconf/pkgconf-.ebuild | 8 +---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git a/dev-util/pkgconf/pkgconf-.ebuild 
b/dev-util/pkgconf/pkgconf-.ebuild
index 165b782..bb84aba 100644
--- a/dev-util/pkgconf/pkgconf-.ebuild
+++ b/dev-util/pkgconf/pkgconf-.ebuild
@@ -21,7 +21,10 @@ HOMEPAGE="https://github.com/pkgconf/pkgconf;
 
 LICENSE="BSD-1"
 SLOT="0"
-IUSE="+pkg-config strict"
+IUSE="+pkg-config"
+
+# tests require 'kyua'
+RESTRICT="test"
 
 DEPEND=""
 RDEPEND="${DEPEND}
@@ -47,8 +50,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-   ECONF_SOURCE=${S} \
-   econf $(use_enable strict)
+   ECONF_SOURCE=${S} econf
 }
 
 multilib_src_install() {



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

2016-12-31 Thread Mike Gilbert
commit: 311dbd754537f5f01f9179ae7045f5504ff0fbbe
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec 31 16:43:54 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 31 16:45:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=311dbd75

dev-util/pkgconf: RESTRICT="test"

 dev-util/pkgconf/pkgconf-1.1.0.ebuild | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-util/pkgconf/pkgconf-1.1.0.ebuild 
b/dev-util/pkgconf/pkgconf-1.1.0.ebuild
index d65edec..bb84aba 100644
--- a/dev-util/pkgconf/pkgconf-1.1.0.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.1.0.ebuild
@@ -23,6 +23,9 @@ LICENSE="BSD-1"
 SLOT="0"
 IUSE="+pkg-config"
 
+# tests require 'kyua'
+RESTRICT="test"
+
 DEPEND=""
 RDEPEND="${DEPEND}
pkg-config? (



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

2016-12-31 Thread Mike Gilbert
commit: 7ade477b52afbb106257ca8ca3f3317b565c154d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec 31 16:43:10 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 31 16:45:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ade477b

dev-util/pkgconf: whitespace

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

diff --git a/dev-util/pkgconf/pkgconf-1.1.0.ebuild 
b/dev-util/pkgconf/pkgconf-1.1.0.ebuild
index 29a39c3..d65edec 100644
--- a/dev-util/pkgconf/pkgconf-1.1.0.ebuild
+++ b/dev-util/pkgconf/pkgconf-1.1.0.ebuild
@@ -47,7 +47,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-ECONF_SOURCE=${S} econf
+   ECONF_SOURCE=${S} econf
 }
 
 multilib_src_install() {



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

2016-12-31 Thread James Le Cuirot
commit: caccfb429ebfd64ec51e87715ca344bedce0352f
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Dec 31 10:49:42 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Dec 31 16:37:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caccfb42

media-libs/leptonica: Remove old 1.73

Package-Manager: portage-2.3.3

 media-libs/leptonica/Manifest  |  1 -
 media-libs/leptonica/leptonica-1.73.ebuild | 62 --
 2 files changed, 63 deletions(-)

diff --git a/media-libs/leptonica/Manifest b/media-libs/leptonica/Manifest
index b6eb974..8947007 100644
--- a/media-libs/leptonica/Manifest
+++ b/media-libs/leptonica/Manifest
@@ -1,3 +1,2 @@
 DIST leptonica-1.71.tar.gz 10212309 SHA256 
cc5d736e81496eb25e195f380f553537e0410c3f7151a778b2a546e35c7eb848 SHA512 
fd02eec19a442d767ba39ce01132ef1304a977e038bdbf64ec5e763607d51adf1c06aaa687fc3ec542854e535618b6da2042f10709286c2e1d236e43d77efd51
 WHIRLPOOL 
5a3d57735e8e36785dea9a481a602b0f812c08bab5e42ebaac2e3fa2d42a0c8c697a61351ec1122a14fd9f471945c200a1c75015bd35b043fd208a1cad079733
-DIST leptonica-1.73.tar.gz 10894175 SHA256 
19e4335c674e7b78af9338d5382cc5266f34a62d4ce533d860af48eaa859afc1 SHA512 
4808474d5941a91fbf542a22fed26ddc33f9c4baf2699096acf5e894b7e4e84889d165373b7d1df391a68cda8176113cf122f15203a9e38d3059e17140efc575
 WHIRLPOOL 
b7ff93ecf5c8f66b4c85b64d6db16c18303bdcfe4a8c62735f79bd2e8f1260ad4e4c8b8f4a398cfbd001f2f5af3ff6a720eea83c25a38472b3222e4d2fd5dea9
 DIST leptonica-1.74.tar.gz 11624575 SHA256 
e170f8a3f79e7f1742aff975ad5bb0c4a124df1532e6e38d9d71aaa5111de5a2 SHA512 
6c563a8f30faf7dc0ad321aa58a012a0d03fc3fba7eb3c3e7b69be8bf2e71cc5f13420ded9cc08b232a780b78234e10bbdbe6a77ef26c5af330c6c6eac477f77
 WHIRLPOOL 
1ae8f107a7c7b5068307aea5687ee3d38169c8c18da0dd8aa1d7c1fe613adab6bc8ccb58bb54bd8ab0957659d4fdaa03fc35f3d90c25f3431aa9bbbef0fc

diff --git a/media-libs/leptonica/leptonica-1.73.ebuild 
b/media-libs/leptonica/leptonica-1.73.ebuild
deleted file mode 100644
index 6c30bf0..
--- a/media-libs/leptonica/leptonica-1.73.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit eutils multilib-minimal
-
-DESCRIPTION="C library for image processing and analysis"
-HOMEPAGE="http://www.leptonica.org/;
-SRC_URI="http://www.leptonica.org/source/${P}.tar.gz;
-LICENSE="Apache-2.0"
-SLOT="0/5"
-KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
-IUSE="gif jpeg jpeg2k png static-libs test tiff utils webp zlib"
-
-# N.B. Tests need some features enabled:
-REQUIRED_USE="test? ( jpeg png tiff )"
-
-DEPEND="gif? ( media-libs/giflib:=[${MULTILIB_USEDEP}] )
-   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
-   jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] )
-   png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}]
-  sys-libs/zlib:=[${MULTILIB_USEDEP}] )
-   tiff? ( media-libs/tiff:0=[${MULTILIB_USEDEP}] )
-   webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] )
-   zlib? ( sys-libs/zlib:=[${MULTILIB_USEDEP}] )"
-RDEPEND="${DEPEND}"
-
-ECONF_SOURCE="${S}"
-DOCS=( README version-notes )
-
-src_prepare() {
-   default
-
-   # unhtmlize docs
-   local X
-   for X in ${DOCS[@]}; do
-   awk '/<\/pre>/{s--} {if (s) print $0} //{s++}' \
-   "${X}.html" > "${X}" || die 'awk failed'
-   rm -f -- "${X}.html"
-   done
-}
-
-multilib_src_configure() {
-   econf \
-   --enable-shared \
-   $(use_with gif giflib) \
-   $(use_with jpeg) \
-   $(use_with jpeg2k libopenjpeg) \
-   $(use_with png libpng) \
-   $(use_with tiff libtiff) \
-   $(use_with webp libwebp) \
-   $(use_with zlib) \
-   $(use_enable static-libs static) \
-   $(multilib_native_use_enable utils programs)
-}
-
-src_install() {
-   multilib-minimal_src_install
-   prune_libtool_files
-}



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

2016-12-31 Thread James Le Cuirot
commit: 0ee4d70c3a0ae94b17b7366398df667ab5b04e56
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sat Dec 31 10:48:43 2016 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sat Dec 31 16:37:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ee4d70c

media-libs/leptonica: Version bump to 1.74

There is some versioning inconsistency upstream as this is referred to
as 1.74.0 in places. I have asked upstream to straighten this out.

Package-Manager: portage-2.3.3

 media-libs/leptonica/Manifest  |  1 +
 media-libs/leptonica/leptonica-1.74.ebuild | 62 ++
 2 files changed, 63 insertions(+)

diff --git a/media-libs/leptonica/Manifest b/media-libs/leptonica/Manifest
index 39555f9..b6eb974 100644
--- a/media-libs/leptonica/Manifest
+++ b/media-libs/leptonica/Manifest
@@ -1,2 +1,3 @@
 DIST leptonica-1.71.tar.gz 10212309 SHA256 
cc5d736e81496eb25e195f380f553537e0410c3f7151a778b2a546e35c7eb848 SHA512 
fd02eec19a442d767ba39ce01132ef1304a977e038bdbf64ec5e763607d51adf1c06aaa687fc3ec542854e535618b6da2042f10709286c2e1d236e43d77efd51
 WHIRLPOOL 
5a3d57735e8e36785dea9a481a602b0f812c08bab5e42ebaac2e3fa2d42a0c8c697a61351ec1122a14fd9f471945c200a1c75015bd35b043fd208a1cad079733
 DIST leptonica-1.73.tar.gz 10894175 SHA256 
19e4335c674e7b78af9338d5382cc5266f34a62d4ce533d860af48eaa859afc1 SHA512 
4808474d5941a91fbf542a22fed26ddc33f9c4baf2699096acf5e894b7e4e84889d165373b7d1df391a68cda8176113cf122f15203a9e38d3059e17140efc575
 WHIRLPOOL 
b7ff93ecf5c8f66b4c85b64d6db16c18303bdcfe4a8c62735f79bd2e8f1260ad4e4c8b8f4a398cfbd001f2f5af3ff6a720eea83c25a38472b3222e4d2fd5dea9
+DIST leptonica-1.74.tar.gz 11624575 SHA256 
e170f8a3f79e7f1742aff975ad5bb0c4a124df1532e6e38d9d71aaa5111de5a2 SHA512 
6c563a8f30faf7dc0ad321aa58a012a0d03fc3fba7eb3c3e7b69be8bf2e71cc5f13420ded9cc08b232a780b78234e10bbdbe6a77ef26c5af330c6c6eac477f77
 WHIRLPOOL 
1ae8f107a7c7b5068307aea5687ee3d38169c8c18da0dd8aa1d7c1fe613adab6bc8ccb58bb54bd8ab0957659d4fdaa03fc35f3d90c25f3431aa9bbbef0fc

diff --git a/media-libs/leptonica/leptonica-1.74.ebuild 
b/media-libs/leptonica/leptonica-1.74.ebuild
new file mode 100644
index ..260e2d9
--- /dev/null
+++ b/media-libs/leptonica/leptonica-1.74.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils multilib-minimal
+
+DESCRIPTION="C library for image processing and analysis"
+HOMEPAGE="http://www.leptonica.org/;
+SRC_URI="http://www.leptonica.org/source/${P}.tar.gz;
+LICENSE="Apache-2.0"
+SLOT="0/5"
+KEYWORDS="~alpha ~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc ~x86 ~ppc-macos"
+IUSE="gif jpeg jpeg2k png static-libs test tiff utils webp zlib"
+
+# N.B. Tests need some features enabled:
+REQUIRED_USE="test? ( jpeg png tiff zlib )"
+
+DEPEND="gif? ( media-libs/giflib:=[${MULTILIB_USEDEP}] )
+   jpeg? ( virtual/jpeg:0=[${MULTILIB_USEDEP}] )
+   jpeg2k? ( media-libs/openjpeg:2=[${MULTILIB_USEDEP}] )
+   png? ( media-libs/libpng:0=[${MULTILIB_USEDEP}]
+  sys-libs/zlib:=[${MULTILIB_USEDEP}] )
+   tiff? ( media-libs/tiff:0=[${MULTILIB_USEDEP}] )
+   webp? ( media-libs/libwebp:=[${MULTILIB_USEDEP}] )
+   zlib? ( sys-libs/zlib:=[${MULTILIB_USEDEP}] )"
+RDEPEND="${DEPEND}"
+
+ECONF_SOURCE="${S}"
+DOCS=( README version-notes )
+
+src_prepare() {
+   default
+
+   # unhtmlize docs
+   local X
+   for X in ${DOCS[@]}; do
+   awk '/<\/pre>/{s--} {if (s) print $0} //{s++}' \
+   "${X}.html" > "${X}" || die 'awk failed'
+   rm -f -- "${X}.html"
+   done
+}
+
+multilib_src_configure() {
+   econf \
+   --enable-shared \
+   $(use_with gif giflib) \
+   $(use_with jpeg) \
+   $(use_with jpeg2k libopenjpeg) \
+   $(use_with png libpng) \
+   $(use_with tiff libtiff) \
+   $(use_with webp libwebp) \
+   $(use_with zlib) \
+   $(use_enable static-libs static) \
+   $(multilib_native_use_enable utils programs)
+}
+
+src_install() {
+   multilib-minimal_src_install
+   prune_libtool_files
+}



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

2016-12-31 Thread Mike Gilbert
commit: 1d73f40aad6ab8fa9b2a7c3c0cf1a99cfdb1a3bc
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec 31 16:35:50 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 31 16:35:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d73f40a

dev-util/abi-dumper: bump to 0.99.19

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-util/abi-dumper/Manifest  |  1 +
 dev-util/abi-dumper/abi-dumper-0.99.19.ebuild | 28 +++
 2 files changed, 29 insertions(+)

diff --git a/dev-util/abi-dumper/Manifest b/dev-util/abi-dumper/Manifest
index 2e9f83e..2b7a6aa 100644
--- a/dev-util/abi-dumper/Manifest
+++ b/dev-util/abi-dumper/Manifest
@@ -1 +1,2 @@
 DIST abi-dumper-0.99.15.tar.gz 40265 SHA256 
37d79ad151ac0bfbd25c1280b31f9521b72bc874129cd9cb182dc1fb488a39e0 SHA512 
695462c8972e7f5abcf3415652ef6bb52d9770ae5fc21aceb44b0eaadc087f23d6c1cd92d6e29961141cfa863b0bad7944cee826df2aa8c83f3be7e42d098e61
 WHIRLPOOL 
387a8bac36d447207483621d332abb2cee683725f9c4766439cf1e27a44e8914f1abab6b9e6cc4839c2dd2a3ba75bdb65b8dd54ecdd9902888d47f1152a9d6ba
+DIST abi-dumper-0.99.19.tar.gz 44380 SHA256 
6bbc35795839a04523d9e7bdb07806b9a661e17d8be0e755c99e4235805d4528 SHA512 
4afbaf1b15e61d67f25849ace34074fb21f09165cef04f2a554c8d0c6930912cd890384ce3949f6aeee60cddf6b100b5bbc34f8b21f1e5d611fb31c06849040b
 WHIRLPOOL 
121fba37c6130a7b54858cfb1ecc022aea5257a43c5d3f0a5572e2df2d15d885efeb1b51736ef54c806cc8839b0bbff733bd07bef946b7aa30751de1eba9eee8

diff --git a/dev-util/abi-dumper/abi-dumper-0.99.19.ebuild 
b/dev-util/abi-dumper/abi-dumper-0.99.19.ebuild
new file mode 100644
index ..f9655f8
--- /dev/null
+++ b/dev-util/abi-dumper/abi-dumper-0.99.19.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="Dump ABI of an ELF object containing DWARF debug info"
+HOMEPAGE="https://github.com/lvc/abi-dumper;
+SRC_URI="https://github.com/lvc/abi-dumper/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dev-lang/perl"
+RDEPEND="${DEPEND}
+   dev-libs/elfutils
+   dev-util/vtable-dumper"
+
+src_compile() {
+   :
+}
+
+src_install() {
+   dodir /usr
+   perl Makefile.pl -install -prefix "${EPREFIX}/usr" -destdir "${D}" || 
die
+   einstalldocs
+}



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

2016-12-31 Thread Mike Gilbert
commit: dc76a68e202b0f2dae2423d7306fd2c7870fa55a
Author: A. Wilcox  Wilcox-Tech  com>
AuthorDate: Sat Dec 31 05:11:37 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 31 16:17:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc76a68e

dev-util/pkgconf: version bump (1.1.0)

 dev-util/pkgconf/Manifest |  1 +
 dev-util/pkgconf/pkgconf-1.1.0.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/dev-util/pkgconf/Manifest b/dev-util/pkgconf/Manifest
index 520a37e..3ee0f42 100644
--- a/dev-util/pkgconf/Manifest
+++ b/dev-util/pkgconf/Manifest
@@ -2,3 +2,4 @@ DIST pkgconf-0.9.11.tar.bz2 86489 SHA256 
3bdae1b2672133943dc0dda694ed57074f8b03c
 DIST pkgconf-0.9.12.tar.bz2 87109 SHA256 
7ec8b516e655e247f4ba976837cee808134785819ab8f538f652fe919cc6c09f SHA512 
efe13db7a46992eb44ead493fc12b3fc6a5567e0206f701b6c48d9b5eb0bc90fcc9ae7a7e08ae641bb10df869287e5b68291701d4013d6cf27bd2b1518c29192
 WHIRLPOOL 
9fa7336e111f29648f5c37310bdeb2266bead1b86ff18183cfb57c06054916d235da20a5723bd364497d20a1f4db399eaf77f38c0bfc1519f2b7b825ab4666d0
 DIST pkgconf-1.0.1.tar.gz 362653 SHA256 
45ce2f6ab032451345185b800badd77c054040879bd2e56225dafc7fbe583cf1 SHA512 
b379ed366327eb4de3a7ed732be58a3757fdcd231637f0fbc2f9b762fda08173244d05fd853d683cfa6bdad90f1d8ee663b3eae9aee024456ef46e8a021e7122
 WHIRLPOOL 
ba9a26874d14b6dfd62858da1b50397bc0aa9637bfe0824d4911f4df1e430e60a9f589242f8dc60a792b16f5201f9e0944d637e0d3a4749a211b976459152d69
 DIST pkgconf-1.0.2.tar.xz 247972 SHA256 
a7c67f8603c0d0400be17b2efac0fdc9ff46625f7e50aefe4ad31eff248115dd SHA512 
679c9033489076ba5691c3a830b8e300c6cb2dc9e7eeffa1a478c681c7f1cc49896b0b5d0d069b14804a5c9bc31115ba672b1f724cd6282ce26d54945a5a8a42
 WHIRLPOOL 
e7bcb19eba08ff271a470a1c8bba13810951c20e79b7dea5352ea20b8b519d4462892c623e8383b540f5af3b6daf302386b8b1831bfed3d7d143f33cb9e0830a
+DIST pkgconf-1.1.0.tar.xz 264428 SHA256 
5f1ef65d73a880fa5e7012102a17f7b32010e5e46139aed85851a541ba828a63 SHA512 
2d54b14b9fb830a3d30e8812f6079a95cf1e1e77fd42d1eac7a6041347094ff88b79146be93c56625c44e2dcf38af725cbbdfdda09b457b921a9a17b97a23d15
 WHIRLPOOL 
deffe0277f48f39b3824a25f255da6cdf51bdcf973d9b19f8eb166ba388c6440451d07bf37862f044a4e8be572d4ea5406ff243759fa5f22c0e6ecce8064ba31

diff --git a/dev-util/pkgconf/pkgconf-1.1.0.ebuild 
b/dev-util/pkgconf/pkgconf-1.1.0.ebuild
new file mode 100644
index ..29a39c3
--- /dev/null
+++ b/dev-util/pkgconf/pkgconf-1.1.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI=( {https,git}://github.com/pkgconf/${PN}.git )
+   inherit autotools git-r3
+else
+   SRC_URI="https://distfiles.dereferenced.org/pkgconf/${P}.tar.xz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sh
+   ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~x64-freebsd ~x86-freebsd 
~amd64-linux
+   ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc64-solaris 
~x64-solaris"
+fi
+
+inherit multilib-minimal
+
+DESCRIPTION="pkg-config compatible replacement with no dependencies other than 
ANSI C89"
+HOMEPAGE="https://github.com/pkgconf/pkgconf;
+
+LICENSE="BSD-1"
+SLOT="0"
+IUSE="+pkg-config"
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   pkg-config? (
+   !dev-util/pkgconfig
+   !dev-util/pkg-config-lite
+   !dev-util/pkgconfig-openbsd[pkg-config]
+   )"
+
+MULTILIB_CHOST_TOOLS=(
+   /usr/bin/pkgconf
+)
+
+src_prepare() {
+   default
+
+   [[ ${PV} == "" ]] && eautoreconf
+   if use pkg-config; then
+   MULTILIB_CHOST_TOOLS+=(
+   /usr/bin/pkg-config
+   )
+   fi
+}
+
+multilib_src_configure() {
+ECONF_SOURCE=${S} econf
+}
+
+multilib_src_install() {
+   default
+
+   if use pkg-config; then
+   dosym pkgconf /usr/bin/pkg-config
+   else
+   rm "${ED%/}"/usr/share/aclocal/pkg.m4 || die
+   fi
+}



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

2016-12-31 Thread Mike Gilbert
commit: 3fabe787da21d5719d93d842020e7b0db9586beb
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec 31 16:05:04 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 31 16:05:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fabe787

dev-util/vtable-dumper: bump to 1.2

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 dev-util/vtable-dumper/Manifest | 2 +-
 .../{vtable-dumper-1.1.ebuild => vtable-dumper-1.2.ebuild}  | 6 ++
 2 files changed, 7 insertions(+), 1 deletion(-)

diff --git a/dev-util/vtable-dumper/Manifest b/dev-util/vtable-dumper/Manifest
index 336e73a..0a7c4a1 100644
--- a/dev-util/vtable-dumper/Manifest
+++ b/dev-util/vtable-dumper/Manifest
@@ -1 +1 @@
-DIST vtable-dumper-1.1.tar.gz 15739 SHA256 
f0a57a7b82a0a56845cea9ab56ad449e63f5f01c6a0c9f1467efa4ef60dd4a93 SHA512 
a10edd9ba07da362624a12b0c4127f8e48f73337d06ad0ed1f50675e4c30322eaa86972187329d949a7a5ac30373124cf539b2ca51dc07384300381154c594df
 WHIRLPOOL 
add69d5e36f90f0bb0fc028be38233eea06a6e425047a5b4accfdfc5e6537d8fc7e96316e897ed2d86efff4ef33ced88ec92614ae4420bff9c677b4ac782
+DIST vtable-dumper-1.2.tar.gz 16033 SHA256 
6993781b6a00936fc5f76dc0db4c410acb46b6d6e9836ddbe2e3c525c6dd1fd2 SHA512 
b1e052b95af1fa557e2e2eb4faae79afd9b7a87c664c546d43ff92de0f118d6f5fa9e792671e546a5c05364af6149b066705f94c2c590dd103e0067004a7543f
 WHIRLPOOL 
b7396cc382b2eb3b0695d4b4187d8323dcb74b102a3a50a4aad2c3c82626573f268cd82fd8a264a74e6e2b6964f8c5183bcf82b10096b2c5f86aee118c011089

diff --git a/dev-util/vtable-dumper/vtable-dumper-1.1.ebuild 
b/dev-util/vtable-dumper/vtable-dumper-1.2.ebuild
similarity index 89%
rename from dev-util/vtable-dumper/vtable-dumper-1.1.ebuild
rename to dev-util/vtable-dumper/vtable-dumper-1.2.ebuild
index 9d5ae89..2e09266 100644
--- a/dev-util/vtable-dumper/vtable-dumper-1.1.ebuild
+++ b/dev-util/vtable-dumper/vtable-dumper-1.2.ebuild
@@ -4,6 +4,8 @@
 
 EAPI=6
 
+inherit toolchain-funcs
+
 DESCRIPTION="A tool to list content of virtual tables in a shared library"
 HOMEPAGE="https://github.com/lvc/vtable-dumper;
 SRC_URI="https://github.com/lvc/vtable-dumper/archive/${PV}.tar.gz -> 
${P}.tar.gz"
@@ -15,6 +17,10 @@ KEYWORDS="~amd64 ~x86"
 DEPEND="dev-libs/elfutils:0="
 RDEPEND="${DEPEND}"
 
+src_configure() {
+   tc-export CC
+}
+
 src_install() {
emake prefix="${ED%/}/usr" install
einstalldocs



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

2016-12-31 Thread Pacho Ramos
commit: 8837cd937bb69976f18cf9a805248bb175d68fc3
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Dec 31 15:59:27 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Dec 31 15:59:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8837cd93

sys-boot/os-prober: amd64/x86 stable, bug #600112

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-boot/os-prober/os-prober-1.71.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/os-prober/os-prober-1.71.ebuild 
b/sys-boot/os-prober/os-prober-1.71.ebuild
index 160c0c4..9defe1b 100644
--- a/sys-boot/os-prober/os-prober-1.71.ebuild
+++ b/sys-boot/os-prober/os-prober-1.71.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="mirror://debian/pool/main/${PN::1}/${PN}/${PN}_${PV}.tar.xz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 src_prepare() {



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

2016-12-31 Thread Michael Palimaka
commit: 7ff7383d358f0dbc80f3c49c98866d5a52ad62b0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Dec 31 15:55:10 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Dec 31 15:55:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ff7383d

kde-frameworks/ktexteditor: restorm ~arm keyword

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 kde-frameworks/ktexteditor/ktexteditor-5.29.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/ktexteditor/ktexteditor-5.29.0.ebuild 
b/kde-frameworks/ktexteditor/ktexteditor-5.29.0.ebuild
index 58cf33e..d17c2bc 100644
--- a/kde-frameworks/ktexteditor/ktexteditor-5.29.0.ebuild
+++ b/kde-frameworks/ktexteditor/ktexteditor-5.29.0.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 
 DESCRIPTION="Framework providing a full text editor component"
 LICENSE="LGPL-2+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE="git"
 
 RDEPEND="



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

2016-12-31 Thread Michael Palimaka
commit: a1b0ccb8ab5408b873bac1addc55d57fe35ca504
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Dec 31 15:54:44 2016 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Dec 31 15:55:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1b0ccb8

kde-frameworks/syntax-highlighting: add ~arm keyword

Tested on Raspberry Pi 2.

Gentoo-bug: 602460

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 kde-frameworks/syntax-highlighting/syntax-highlighting-5.29.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.29.0.ebuild 
b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.29.0.ebuild
index f79d6ed..50e138b 100644
--- a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.29.0.ebuild
+++ b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.29.0.ebuild
@@ -9,7 +9,7 @@ inherit kde5
 
 DESCRIPTION="Framework for syntax highlighting"
 LICENSE="LGPL-2+ LGPL-2.1+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm ~x86"
 IUSE=""
 
 RDEPEND="



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

2016-12-31 Thread Mike Gilbert
commit: 992b96266a1d799433b9295918571d2bc8809340
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Dec 31 15:47:57 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Dec 31 15:47:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=992b9626

net-misc/remmina: move stable keywords forward

Package-Manager: Portage-2.3.3_p12, Repoman-2.3.1_p5

 net-misc/remmina/remmina-1.2.0_rc16-r1.ebuild |  2 +-
 net-misc/remmina/remmina-1.2.0_rc16.ebuild| 84 ---
 2 files changed, 1 insertion(+), 85 deletions(-)

diff --git a/net-misc/remmina/remmina-1.2.0_rc16-r1.ebuild 
b/net-misc/remmina/remmina-1.2.0_rc16-r1.ebuild
index 579c65b..d600c0f 100644
--- a/net-misc/remmina/remmina-1.2.0_rc16-r1.ebuild
+++ b/net-misc/remmina/remmina-1.2.0_rc16-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${MY_PV}.tar.gz -> ${P}.tar
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="ayatana crypt freerdp gnome-keyring nls spice ssh telepathy webkit 
zeroconf"
 
 RDEPEND="

diff --git a/net-misc/remmina/remmina-1.2.0_rc16.ebuild 
b/net-misc/remmina/remmina-1.2.0_rc16.ebuild
deleted file mode 100644
index 948b35c..
--- a/net-misc/remmina/remmina-1.2.0_rc16.ebuild
+++ /dev/null
@@ -1,84 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-
-inherit cmake-utils eutils gnome2-utils
-
-MY_PV="${PV//_rc/-rcgit.}"
-
-DESCRIPTION="A GTK+ RDP, VNC, XDMCP and SSH client"
-HOMEPAGE="http://remmina.org/;
-SRC_URI="https://github.com/FreeRDP/Remmina/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="ayatana crypt freerdp gnome-keyring nls spice ssh telepathy webkit 
zeroconf"
-
-RDEPEND="
-   dev-libs/glib:2
-   net-libs/libvncserver
-   x11-libs/libxkbfile
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   virtual/freedesktop-icon-theme
-   ayatana? ( dev-libs/libappindicator:3 )
-   crypt? ( dev-libs/libgcrypt:0= )
-   freerdp? ( >=net-misc/freerdp-2 )
-   gnome-keyring? ( app-crypt/libsecret )
-   spice? ( net-misc/spice-gtk[gtk3] )
-   ssh? ( net-libs/libssh[sftp]
-   x11-libs/vte:2.91 )
-   telepathy? ( net-libs/telepathy-glib )
-   webkit? ( net-libs/webkit-gtk:4 )
-   zeroconf? ( net-dns/avahi[gtk3] )
-"
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   virtual/pkgconfig
-   nls? ( sys-devel/gettext )
-"
-
-DOCS=( README.md )
-
-S="${WORKDIR}/Remmina-${MY_PV}"
-
-src_configure() {
-   local mycmakeargs=(
-   -DWITH_APPINDICATOR=$(usex ayatana)
-   -DWITH_GCRYPT=$(usex crypt)
-   -DWITH_FREERDP=$(usex freerdp)
-   -DWITH_LIBSECRET=$(usex gnome-keyring)
-   -DWITH_GETTEXT=$(usex nls)
-   -DWITH_TRANSLATIONS=$(usex nls)
-   -DWITH_SPICE=$(usex spice)
-   -DWITH_LIBSSH=$(usex ssh)
-   -DWITH_VTE=$(usex ssh)
-   -DWITH_TELEPATHY=$(usex telepathy)
-   -DWITH_SURVEY=$(usex webkit)
-   -DWITH_AVAHI=$(usex zeroconf)
-   -DGTK_VERSION=3
-   )
-   cmake-utils_src_configure
-}
-
-pkg_preinst() {
-   gnome2_icon_savelist
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-
-   elog "To get additional features, some optional runtime dependencies"
-   elog "may be installed:"
-   elog ""
-   optfeature "encrypted VNC connections" net-libs/libvncserver[gcrypt]
-   optfeature "XDMCP support" x11-base/xorg-server[xephyr]
-}
-
-pkg_postrm() {
-   gnome2_icon_cache_update
-}



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

2016-12-31 Thread Zac Medico
commit: ba8a264fcf6ca2ce3eda03e601f906cb7f8a3f95
Author: Zac Medico  gentoo  org>
AuthorDate: Sat Dec 31 15:20:14 2016 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sat Dec 31 15:22:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba8a264f

dev-python/pytest-mock: version bump to 1.5.0

Package-Manager: portage-2.3.3

 dev-python/pytest-mock/Manifest |  1 +
 dev-python/pytest-mock/pytest-mock-1.5.0.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/dev-python/pytest-mock/Manifest b/dev-python/pytest-mock/Manifest
index 42731d1..d28aaa0 100644
--- a/dev-python/pytest-mock/Manifest
+++ b/dev-python/pytest-mock/Manifest
@@ -1 +1,2 @@
 DIST pytest-mock-1.2.zip 19461 SHA256 
f78971ed376fcb265255d1e4bb313731b3a1be92d7f3ecb19ea7fedc4a56fd0f SHA512 
9b87c72e9895a16d4829229a070ba2b8143be894dfbc804b1e882eb2cc5843d8da9db258b5a2b9f8ae6738d9d612dbf1bec16790c5f99c27d9f7554cb676f852
 WHIRLPOOL 
470832b4df4a9392b0cfcbba96b2a52379d7111af0236f5dbe4e22f4e303da248bf2f936b3b66ae0ff3a197f3c87b0419c54c115fe5c6543e255f11666d3031d
+DIST pytest-mock-1.5.0.tar.gz 17199 SHA256 
782f23f227874bac4cee878637c2af8efdd2c34c48fcbf9e79b00a0872056ffb SHA512 
5b5acb3ae3040d37768692a5289be269d8e12a6188a2dddefb136bdb99f847bedee525d59ac49886a6a27032b672e442ee256410174777675bf92fc82505f807
 WHIRLPOOL 
7c9c2617944dbf02cce356d12650d89372db252bdf79b92db304bcb1337858a38ae4b9b640210190338feccf4de0cbd64ad1a2d7ffc411c9184e1cd09dd7ec17

diff --git a/dev-python/pytest-mock/pytest-mock-1.5.0.ebuild 
b/dev-python/pytest-mock/pytest-mock-1.5.0.ebuild
new file mode 100644
index ..a73076e
--- /dev/null
+++ b/dev-python/pytest-mock/pytest-mock-1.5.0.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Header: $
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_{4,5}} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Thin-wrapper around the mock package for easier use with py.test"
+HOMEPAGE="https://github.com/pytest-dev/pytest-mock/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]
+   python_targets_python2_7? (
+   dev-python/mock[python_targets_python2_7]
+   )
+   python_targets_pypy? (
+   dev-python/mock[python_targets_pypy]
+   )"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+src_prepare() {
+   if has_version dev-python/mock; then
+   # test fails when standalone mock is installed
+   sed -e 's|^\(def \)\(test_standalone_mock(\)|\1_\2|' -i 
test_pytest_mock.py || die
+   fi
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   PYTHONPATH=${PWD}${PYTHONPATH:+:}${PYTHONPATH} \
+   py.test test_pytest_mock.py || die
+}



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

2016-12-31 Thread Andreas Hüttel
commit: 04d6a7b93965e27a84bdcd93668e4830bd2d1a13
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Dec 31 15:04:36 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Dec 31 15:08:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04d6a7b9

app-text/writerperfect: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 app-text/writerperfect/Manifest   |  1 -
 app-text/writerperfect/writerperfect-0.9.2.ebuild | 55 ---
 2 files changed, 56 deletions(-)

diff --git a/app-text/writerperfect/Manifest b/app-text/writerperfect/Manifest
index 6dcd91e..eed2902 100644
--- a/app-text/writerperfect/Manifest
+++ b/app-text/writerperfect/Manifest
@@ -1,2 +1 @@
-DIST writerperfect-0.9.2.tar.xz 274760 SHA256 
e4040ec20436d5a763632243787bbb86cffd82ddf0da6aa674827e0401c2b601 SHA512 
07679176c9c3f159c177cae65d499550f5cf86b34af26d32fb1d445176a3a8ff773c48b677cbbaa3514b81f5c5e83a358f8ba1ab0b567e182aeb05d8a4fc8bcb
 WHIRLPOOL 
5bee7d9ac16ff74e2c70093a629ae0d417e7e3cd71b7a78bbdb5f62c1d9a7ea46962ba0816742b38937d3b2907d9b7a6f888c95e4da20e7bc4f736702a844dcf
 DIST writerperfect-0.9.5.tar.xz 302176 SHA256 
aa01122659482627f9adcff91bb242c37092c7f8537bfa5dc44e1a3c89aad9e2 SHA512 
7467a798da362883101780b598e9a673c10f86f29c01ece1438ea524a0413a00928274f87895f3a8ae26f6784cdcc34e0e84039ca591dc3f75b2e25c53744ccc
 WHIRLPOOL 
9034673daad0929348f71fde157245126e73caf46db8279bfddd2b01e4ab5a72e67eb9a6dd34fa13c9f9848a693f2440d33852d51126204c5e8c1fa8dd760031

diff --git a/app-text/writerperfect/writerperfect-0.9.2.ebuild 
b/app-text/writerperfect/writerperfect-0.9.2.ebuild
deleted file mode 100644
index 4011531..
--- a/app-text/writerperfect/writerperfect-0.9.2.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-DESCRIPTION="Various formats to Open document format converter"
-HOMEPAGE="http://libwpd.sf.net;
-SRC_URI="mirror://sourceforge/libwpd/${P}.tar.xz"
-
-LICENSE="|| ( LGPL-2.1 MPL-2.0 )"
-SLOT="0"
-KEYWORDS="amd64 x86 ~x86-linux ~x86-solaris"
-IUSE="abiword +cdr debug ebook freehand gsf keynote +mspub +mwaw pagemaker 
+visio +wpd +wpg +wps"
-
-# FIXME: libepubgen
-RDEPEND="
-   =app-text/libodfgen-0.1*
-   >=dev-libs/librevenge-0.0.1
-   abiword? ( =app-text/libabw-0.1* )
-   cdr? ( =media-libs/libcdr-0.1* )
-   ebook? ( =app-text/libebook-0.1* )
-   freehand? ( =media-libs/libfreehand-0.1* )
-   gsf? ( gnome-extra/libgsf )
-   keynote? ( =app-text/libetonyek-0.1* )
-   mspub? ( =app-text/libmspub-0.1* )
-   mwaw? ( =app-text/libmwaw-0.3* )
-   pagemaker? ( media-libs/libpagemaker )
-   visio? ( =media-libs/libvisio-0.1* )
-   wpd? ( app-text/libwpd:0.10 )
-   wpg? ( =app-text/libwpg-0.3* )
-   wps? ( =app-text/libwps-0.3* )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-"
-
-src_configure() {
-   econf \
-   --disable-werror \
-   $(use_enable debug) \
-   $(use_with abiword libabw) \
-   $(use_with cdr libcdr) \
-   $(use_with ebook libe-book) \
-   $(use_with freehand libfreehand) \
-   $(use_with gsf libgsf) \
-   $(use_with keynote libetonyek) \
-   $(use_with mspub libmspub) \
-   $(use_with mwaw libmwaw) \
-   $(use_with pagemaker libpagemaker) \
-   $(use_with visio libvisio) \
-   $(use_with wpd libwpd) \
-   $(use_with wpg libwpg) \
-   $(use_with wps libwps)
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Term-ReadLine-Gnu/

2016-12-31 Thread Andreas Hüttel
commit: 85d85a87bf199158822332d1c401e6254f2360a4
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Dec 31 14:51:15 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Dec 31 15:08:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85d85a87

dev-perl/Term-ReadLine-Gnu: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/Term-ReadLine-Gnu/Manifest|  1 -
 .../Term-ReadLine-Gnu-1.200.0-r2.ebuild| 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-perl/Term-ReadLine-Gnu/Manifest 
b/dev-perl/Term-ReadLine-Gnu/Manifest
index 963aafb..1646195 100644
--- a/dev-perl/Term-ReadLine-Gnu/Manifest
+++ b/dev-perl/Term-ReadLine-Gnu/Manifest
@@ -1,2 +1 @@
-DIST Term-ReadLine-Gnu-1.20.tar.gz 69077 SHA256 
25da93084b57467cf24b85be557b07ade4af03776b8b2d5369d4d76b179edb01 SHA512 
a3db13795959672b312937cb68a989d262fbf4c934d6e8924c2992457b8c1c0890a789275808bb50191cd4eb69c87b238f8423c58d62e1164eaa12c1f5941132
 WHIRLPOOL 
ac8a405c0d6715dd19cba2dd393cc41db57f63ef84f5dc1c3e5699958ee33124d62d2fbc3de7bfdda3499447c231d0eee29ff6182b80859cfb2baeb7f1a67145
 DIST Term-ReadLine-Gnu-1.31.tar.gz 78350 SHA256 
42174b4bc9d3881502d527fc7c8bd1c0a4b266c2f0bbee012e9a604999418f3b SHA512 
7cdc970fc77588788d1c0beec2a1359cf163362b8192bef0f0f12508c6fde4cf149b9e1727c3df185d9928f74c5901f67f6b4d78f3413dc35cec6ca65ccbd0e6
 WHIRLPOOL 
7ccb117dfa8ef0f37e5152f538f253fa858dd7829748949c06c9d18b8e9297bfe6e47fc1f1c3c052c5d750eaa74f4bc56557f04f06555b1f12fa75f450ebb1fa

diff --git a/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.200.0-r2.ebuild 
b/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.200.0-r2.ebuild
deleted file mode 100644
index c6421b6..
--- a/dev-perl/Term-ReadLine-Gnu/Term-ReadLine-Gnu-1.200.0-r2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=HAYASHI
-MODULE_VERSION=1.20
-inherit perl-module
-
-DESCRIPTION="GNU Readline XS library wrapper"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc sparc x86"
-IUSE=""
-
-DEPEND=">=sys-libs/readline-6.2"
-RDEPEND="${DEPEND}"
-
-mymake=( PASTHRU_DEFINE="-Dxrealloc=_rl_realloc -Dxmalloc=_rl_malloc 
-Dxfree=_rl_free" )
-
-SRC_TEST="do parallel"



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

2016-12-31 Thread Andreas Hüttel
commit: 80427f6155d02443a06384f3d834341137158112
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Dec 31 14:52:43 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Dec 31 15:08:08 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80427f61

dev-perl/Compress-Bzip2: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 .../Compress-Bzip2/Compress-Bzip2-2.170.0.ebuild| 21 -
 dev-perl/Compress-Bzip2/Manifest|  1 -
 2 files changed, 22 deletions(-)

diff --git a/dev-perl/Compress-Bzip2/Compress-Bzip2-2.170.0.ebuild 
b/dev-perl/Compress-Bzip2/Compress-Bzip2-2.170.0.ebuild
deleted file mode 100644
index 2bfbeee..
--- a/dev-perl/Compress-Bzip2/Compress-Bzip2-2.170.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2013 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_VERSION=2.17
-MODULE_AUTHOR=RURBAN
-inherit perl-module
-
-DESCRIPTION="A Bzip2 perl module"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ia64 ~mips sparc x86 ~ppc-aix"
-IUSE=""
-
-RDEPEND="app-arch/bzip2"
-DEPEND="${RDEPEND}"
-
-SRC_TEST="do"

diff --git a/dev-perl/Compress-Bzip2/Manifest b/dev-perl/Compress-Bzip2/Manifest
index 4646682..1d38e72 100644
--- a/dev-perl/Compress-Bzip2/Manifest
+++ b/dev-perl/Compress-Bzip2/Manifest
@@ -1,3 +1,2 @@
-DIST Compress-Bzip2-2.17.tar.gz 892182 SHA256 
72207f5f588e055ab69718ccc4a51b402575793a96ea4f3897980f503b54323b SHA512 
bd1ea069755a85d62de78f15c27bf625202f9db6dc8f85d80a5ae1ece4b711587d15f19e354fc5a188938a05e6a25b2d8f2540bd9de92ec02f2afbccad979f30
 WHIRLPOOL 
04a7db544da56f4d4cb97667f9877e0216349c7893ddc70af5e07406550d91b6d0a12e2fc5399289204d63d9fa57b9901620ce924f6ef1dd821b9cbcf878fec4
 DIST Compress-Bzip2-2.22.tar.gz 893952 SHA256 
1603e284e07953415b8eaa132698db8b03f46383f883c0902926f36eecb7e895 SHA512 
a7dbf80d2b05c03485d9412009a747ae4841f8ea1d499560e17886644e368e7d9b9b5cf053a3f1e540bfc5d1cd4ea055fa10e2c10c53688b1850e57e98257f95
 WHIRLPOOL 
3bac647c17d3a7e176b83acfb2615a0a1a2bdea89ee58ed91f47ae6c96c836c0f1e3ff37ff1b56e96196c04b953bbc7fa53e6048ec2d5c95348806c26295694b
 DIST Compress-Bzip2-2.24.tar.gz 886898 SHA256 
7956ac627fb373fae6effede3d21b3157122800224491b124afdd7bb426c8c3f SHA512 
a451ea967911077dbb40a104ac527fe5ec7c626ec8d412526323463145fa119351b80f1393e5403add1ac2f01e3c44fb45623fdb13a15068fa4967f33833ee93
 WHIRLPOOL 
af4e949a7dac32c44712d753525abe6a9d0151ba67dc31668d2a4bcc74661b122cba5040d0f87231afe3bf09bdf4b28e5c7542746f771ba4ea1debbda6bffe6c



[gentoo-commits] repo/gentoo:master commit in: dev-perl/WWW-Mechanize-FormFiller/

2016-12-31 Thread Andreas Hüttel
commit: 8a06ec7d6fc82e25df33c62f857c9219619e990c
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Dec 31 14:51:55 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Dec 31 15:08:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a06ec7d

dev-perl/WWW-Mechanize-FormFiller: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/WWW-Mechanize-FormFiller/Manifest |  1 -
 .../WWW-Mechanize-FormFiller-0.100.0-r1.ebuild | 24 --
 2 files changed, 25 deletions(-)

diff --git a/dev-perl/WWW-Mechanize-FormFiller/Manifest 
b/dev-perl/WWW-Mechanize-FormFiller/Manifest
index f9f6cbd..36eb48a 100644
--- a/dev-perl/WWW-Mechanize-FormFiller/Manifest
+++ b/dev-perl/WWW-Mechanize-FormFiller/Manifest
@@ -1,2 +1 @@
-DIST WWW-Mechanize-FormFiller-0.10.tar.gz 19705 SHA256 
234d00ebbb3d18c55757e3e91dac62ff9fc3e8f48b154fe3ecf025beac963947 SHA512 
f46bc363b3793096cf4c71b58f2d489c1b4c88376135a089c6aff5f1c0cfa021932b04121a64a5dd4d683350e1f1b7ae21a465ecddb426ffbb237ba8aa65a554
 WHIRLPOOL 
73f414c9cb7101be74c5dd4987fe88a6f9fce02c15ac852ac0e2645764f8d957c87339256538529e32aa7cb5861d9d776b894662a29043f50f9f38757af1a78f
 DIST WWW-Mechanize-FormFiller-0.11.tar.gz 20157 SHA256 
517c7e612be3c4538ed9b52da611fe00d2fa8d4ea06212ecbadbfbf5b22a2d67 SHA512 
60436af00f910465f5bfe60c55200c4a4301380295cf0ac39979a73c7f8efc78559ffd828fb145970838919beb2f4a99bbf134adb1976f577569a13f1c8e3b02
 WHIRLPOOL 
f2057a906e672471215bd00c1e3beb02791b482eb9b4098b5af9d33f724e8206addd450a714ce4ab7093f232406e74eb47e245e5de33a2fb413d9c835da502b6

diff --git 
a/dev-perl/WWW-Mechanize-FormFiller/WWW-Mechanize-FormFiller-0.100.0-r1.ebuild 
b/dev-perl/WWW-Mechanize-FormFiller/WWW-Mechanize-FormFiller-0.100.0-r1.ebuild
deleted file mode 100644
index 5f9f071..
--- 
a/dev-perl/WWW-Mechanize-FormFiller/WWW-Mechanize-FormFiller-0.100.0-r1.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=CORION
-MODULE_VERSION=0.10
-inherit perl-module
-
-DESCRIPTION="Framework to automate HTML forms "
-
-SLOT="0"
-KEYWORDS="amd64 sparc x86"
-IUSE=""
-
-DEPEND="dev-perl/Data-Random
-   || (
-   ( dev-perl/libwww-perl dev-perl/HTML-Form )
-   dev-perl/libwww-perl
-   )"
-RDEPEND="${DEPEND}"
-
-SRC_TEST="do"



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

2016-12-31 Thread Andreas Hüttel
commit: 16f5090283d65316ede9a6b0d2ab111ec51870e0
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Dec 31 14:53:25 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Dec 31 15:08:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16f50902

dev-perl/Net-DBus: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/Net-DBus/Manifest |  1 -
 dev-perl/Net-DBus/Net-DBus-1.0.0-r1.ebuild | 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-perl/Net-DBus/Manifest b/dev-perl/Net-DBus/Manifest
index a4707a7..9d8437f 100644
--- a/dev-perl/Net-DBus/Manifest
+++ b/dev-perl/Net-DBus/Manifest
@@ -1,2 +1 @@
-DIST Net-DBus-1.0.0.tar.gz 100667 SHA256 
bfd0f3bc8ae228b410952829d97ed5f9c1d53587ab645b9d99241f6b51e2590f SHA512 
fa0c47360e204076168e9e62cf72f3443397e7cd83d09ab041b892ef78a017a1abc8f4d57a4114bb415c146cdded283c39dca5c262b5fda14fefbcd4fe634e51
 WHIRLPOOL 
f5e06540dd4c6ed859055b9505aa253d860d70e89175d2a8cced09cb6c9862c94e258be25cd34a4696743ca4a22f528f9c13fca6bd331686efbb9bf5b96808e1
 DIST Net-DBus-1.1.0.tar.gz 2075154 SHA256 
8391696db9e96c374b72984c0bad9c7d1c9f3b4efe68f9ddf429a77548e0e269 SHA512 
96f5983ef1e33b4abea93277e39e779821c8ee4b1f2bc7a4a3aaa3612b9513a426b9f8e04094eb8449e89324c22c264df2d34b3d3e43dace85f443a57c770cc3
 WHIRLPOOL 
83b5c45c15c70d28853794a8ff839bb4812ba8672a0e7e286f1b9ba95b1bb41e1205a15fe64955cc831ddde8c477b9d6681d9ca7d6dc2f2d21717a330ff07600

diff --git a/dev-perl/Net-DBus/Net-DBus-1.0.0-r1.ebuild 
b/dev-perl/Net-DBus/Net-DBus-1.0.0-r1.ebuild
deleted file mode 100644
index ea8ed83..
--- a/dev-perl/Net-DBus/Net-DBus-1.0.0-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=DANBERR
-MODULE_VERSION=1.0.0
-inherit perl-module
-
-DESCRIPTION="Perl extension for the DBus message system"
-
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 ia64 ppc sparc x86"
-IUSE="test"
-
-RDEPEND="
-   sys-apps/dbus
-   dev-perl/XML-Twig
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   test? (
-   virtual/perl-Test-Simple
-   )"
-
-SRC_TEST="do"
-
-src_test() {
-   perl_rm_files t/10-pod-coverage.t t/05-pod.t
-   perl-module_src_test
-}



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-CUPS/, dev-perl/Net-CUPS/files/

2016-12-31 Thread Andreas Hüttel
commit: c426d288182183de62f96eec7b7773cef410ee26
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sat Dec 31 14:47:10 2016 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Sat Dec 31 15:07:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c426d288

dev-perl/Net-CUPS: Remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-perl/Net-CUPS/Manifest |   1 -
 dev-perl/Net-CUPS/Net-CUPS-0.610.0-r2.ebuild   |  23 ---
 .../Net-CUPS/files/Net-CUPS-0.610.0-cups16.patch   | 165 -
 3 files changed, 189 deletions(-)

diff --git a/dev-perl/Net-CUPS/Manifest b/dev-perl/Net-CUPS/Manifest
index 0dbc981..03b2a94 100644
--- a/dev-perl/Net-CUPS/Manifest
+++ b/dev-perl/Net-CUPS/Manifest
@@ -1,2 +1 @@
-DIST Net-CUPS-0.61.tar.gz 83893 SHA256 
fd4a5a86038df9dfe57dcfed78b2d045e4b18d507a6fa5a8f82ecb3a732e0e35 SHA512 
6e906dfebd7a5970f393f8187808049004d6b89fc268bb89abb4dca43145ec97ea45dd3faa51a04de2843a2aedc8051bcb88ab688f4a9886acc188166e2c2cf7
 WHIRLPOOL 
df2ac30aa164ab8e6494bcd0cad59143020df8e50d670d9fd6dcfd0ec986c73363788435ae83b6bc7ac67cdf430cd6550a5926038f124e950735caa47adfae53
 DIST Net-CUPS-0.63.tar.gz 86922 SHA256 
a548a34f6258970375d3f5173e070b65a128bbf77ebb0cc6e88ebba55c15a687 SHA512 
ac407d1a0ebb686cd1f12f76516581073da90cf129a24ef57f10facf0a879ee9a13bdf0b498163c998030f9ec837fc237f440d24894e997e7e57ad2a13693b8a
 WHIRLPOOL 
e5e52e666bd4388ac57da37a4205362a6ea4bb1792b60e90bbd7c686b786fc0d0415893c6601a0916cf9bab4882b442cc588c71b2c4b586c1f314f92fc505606

diff --git a/dev-perl/Net-CUPS/Net-CUPS-0.610.0-r2.ebuild 
b/dev-perl/Net-CUPS/Net-CUPS-0.610.0-r2.ebuild
deleted file mode 100644
index 4ea3544..
--- a/dev-perl/Net-CUPS/Net-CUPS-0.610.0-r2.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-MODULE_AUTHOR=DHAGEMAN
-MODULE_VERSION=0.61
-inherit perl-module
-
-DESCRIPTION="CUPS C API Interface"
-
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-
-RDEPEND="net-print/cups"
-DEPEND="${RDEPEND}
-   test? ( virtual/perl-Test-Simple )"
-
-PATCHES=( "${FILESDIR}/${P}-cups16.patch" )
-
-SRC_TEST="do"

diff --git a/dev-perl/Net-CUPS/files/Net-CUPS-0.610.0-cups16.patch 
b/dev-perl/Net-CUPS/files/Net-CUPS-0.610.0-cups16.patch
deleted file mode 100644
index 4c5bf66..
--- a/dev-perl/Net-CUPS/files/Net-CUPS-0.610.0-cups16.patch
+++ /dev/null
@@ -1,165 +0,0 @@
-diff --git a/CUPS.xs b/CUPS.xs
-index 2da9558..109f73f 100644
 a/CUPS.xs
-+++ b/CUPS.xs
-@@ -5,9 +5,17 @@
- #include "ppport.h"
- 
- #include 
-+#if (CUPS_VERSION_MAJOR > 1) || (CUPS_VERSION_MINOR > 5)
-+#define HAVE_CUPS_1_6 1
-+#endif
-+
- /*#include */
- #include 
--#include 
-+#ifdef HAVE_CUPS_1_6
-+ #include 
-+#else
-+ #include 
-+#endif
- #include 
- #include 
- #include 
-@@ -19,6 +27,17 @@
- #include "const-c.inc"
- #include "packer.c"
- 
-+#ifndef HAVE_CUPS_1_6
-+#define ippGetGroupTag(attr)  attr->group_tag
-+#define ippGetName(attr)  attr->name
-+#define ippGetValueTag(attr)  attr->value_tag
-+#define ippGetInteger(attr, element) attr->values[element].integer
-+#define ippGetString(attr, element, language) 
attr->values[element].string.text
-+#define ippGetStatusCode(ipp)  ipp->request.status.status_code
-+#define ippFirstAttribute(ipp) ipp->current = ipp->attrs
-+#define ippNextAttribute(ipp)  ipp->current = ipp->current->next
-+#endif
-+
- static SV *password_cb = (SV*) NULL;
- 
- const char *
-@@ -200,7 +219,7 @@ NETCUPS_getPPDMakes()
-   if (response != NULL) {
-   attr = ippFindAttribute(response, "ppd-make", 
IPP_TAG_TEXT); 
-   rv = sv_newmortal();
--  sv_setpv(rv, attr->values[0].string.text);
-+  sv_setpv(rv, ippGetString(attr, 0, NULL));
-   XPUSHs(rv);
-   count++;
- 
-@@ -211,7 +230,7 @@ NETCUPS_getPPDMakes()
-   }
- 
-   rv = sv_newmortal();
--  sv_setpv(rv, attr->values[0].string.text);
-+  sv_setpv(rv, ippGetString(attr, 0, NULL));
-   XPUSHs(rv);
-   count++;
-   }   
-@@ -252,7 +271,7 @@ NETCUPS_getAllPPDs ()
-   
"ppd-make-and-model", 
-   
IPP_TAG_TEXT); 
-   rv = sv_newmortal();
--  sv_setpv(rv, attr->values[0].string.text);
-+  sv_setpv(rv, ippGetString(attr, 0, NULL));
-   XPUSHs(rv);
-   count++;
-   while (attr != NULL) {
-@@ -263,7 +282,7 @@ NETCUPS_getAllPPDs ()
-   break;
- 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/dd-rescue/

2016-12-31 Thread Lars Wendler
commit: 39516ed5700fbe4d02e6ebc97bef5c618b6e5c30
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Dec 31 15:02:14 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Dec 31 15:02:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39516ed5

sys-fs/dd-rescue: Removed old.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-fs/dd-rescue/Manifest  |  1 -
 sys-fs/dd-rescue/dd-rescue-1.28.ebuild | 45 --
 sys-fs/dd-rescue/dd-rescue-1.99.ebuild | 86 --
 3 files changed, 132 deletions(-)

diff --git a/sys-fs/dd-rescue/Manifest b/sys-fs/dd-rescue/Manifest
index 1b0af6b..0085ba1 100644
--- a/sys-fs/dd-rescue/Manifest
+++ b/sys-fs/dd-rescue/Manifest
@@ -1,4 +1,3 @@
-DIST dd_rescue-1.28.tar.gz 22093 SHA256 
4adcc368a1d4ad62577eaf8609809be1678335d54ef565a5a0fa6e1210489f03 SHA512 
64a6eb2d6efbe79ca078b8de727ce551acd3a43bc6258b633a4de9ee51933944badc370855c27f05f306d8d3e95332c4b8884f7c11af321a9ac6797f9b02a3a3
 WHIRLPOOL 
138149efa98d0ade917d10eb6e64bae5cca0e60685eb4e804773e97cd31389f645544a969fd52747aa957260f01fa89db642929a8c36106b915d13eb87715fd4
 DIST dd_rescue-1.46.tar.gz 126790 SHA256 
9e09b5583f778fe43b6c473998fe0455486d5ffeacbb72b022d6cf5ba8241aba SHA512 
efd1bf5d80d4bafa6e6971caa84205dc5df4456a29a9fa3bb56aa984d68675ae3418e8ba3a355906f491f0f2e750c38fd695e37dbd193e554cd41afec3841e28
 WHIRLPOOL 
ac965019d38539962018bcc5a6d32cbf303b4d00d5ed91d643655a820f17bfa1ca81b5123f95220663823e6622d55099a2da08aaacf60cefc37097aa3354c729
 DIST dd_rescue-1.99.5.tar.bz2 170712 SHA256 
125d327118d1beab24b5858accb2c755dc07ae5b40bb07a985d837c6e3256935 SHA512 
a240eb9d50950cefbc65d953c84a8e3782d39282aff4e7fa42364b40cee0eb0a02f61315786a1008cf7ae9c3d758700e9f3a0087b9477b3ffbfcbcef59f07d88
 WHIRLPOOL 
543a818b748086b1d1163343b02b8e83f7a03713d5394fc0702f48b515cd50b24e30898990439689cbef8270d0b410fdea2dc5b50b8c45728f9ed38c23d414c5
 DIST dd_rescue-1.99.tar.bz2 168200 SHA256 
5545f54a5e5bee2b9ac69959b1bc81aafae24939393efb8cc581e68ab1b2e47d SHA512 
f484f1a86b3bd7c098eb568e193888d98def35b1bec2f553eb3543a5ae22417dbddb562a5c809613a1493ecac3689dcc2a45e26446a3e16036a19e716e38bd11
 WHIRLPOOL 
94ca6b49636c3f8b0a0901141a3ca16945f0cb5364b97d5d0d759ee1b034f33019ee0bf4f43f7977f0176832d95cecc0aab9cb89e783eabac14290ada4c9f1e1

diff --git a/sys-fs/dd-rescue/dd-rescue-1.28.ebuild 
b/sys-fs/dd-rescue/dd-rescue-1.28.ebuild
deleted file mode 100644
index 8923192..
--- a/sys-fs/dd-rescue/dd-rescue-1.28.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2012 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=4
-
-inherit toolchain-funcs flag-o-matic
-
-MY_PN=${PN/-/_}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Similar to dd but can copy from source with errors"
-HOMEPAGE="http://www.garloff.de/kurt/linux/ddrescue/;
-SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~mips ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="static kernel_linux elibc_glibc"
-
-S=${WORKDIR}/${MY_PN}
-
-src_compile() {
-   use static && append-ldflags -static
-
-   # Passing LDFLAGS together with CFLAGS is not often a good idea, but
-   # in this case it makes it possible to avoid patching; after all it
-   # only builds the progrma whole, not with object files.
-   #
-   # The falloc target creates a dd_rescue binary that uses the
-   # fallocate() function, present in Kernel 2.6.23 and later and GLIBC
-   # 2.10 and later. If somebody can think of a better way to
-   # optionally use it, suggestions are welcome.
-   emake RPM_OPT_FLAGS="${CFLAGS} ${LDFLAGS}" CC="$(tc-getCC)" \
-   $(use kernel_linux && use elibc_glibc && echo "falloc")
-}
-
-src_install() {
-   # easier to install by hand than trying to make sense of the
-   # Makefile.
-   into /
-   dobin dd_rescue
-
-   dodoc README.dd_rescue
-}

diff --git a/sys-fs/dd-rescue/dd-rescue-1.99.ebuild 
b/sys-fs/dd-rescue/dd-rescue-1.99.ebuild
deleted file mode 100644
index 60021df..
--- a/sys-fs/dd-rescue/dd-rescue-1.99.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit toolchain-funcs flag-o-matic multilib autotools
-
-MY_PN=${PN/-/_}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Similar to dd but can copy from source with errors"
-HOMEPAGE="http://www.garloff.de/kurt/linux/ddrescue/;
-SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
-IUSE="cpu_flags_x86_avx2 lzo cpu_flags_x86_sse4_2 static xattr"
-
-RDEPEND="lzo? ( dev-libs/lzo )
-   xattr? ( sys-apps/attr )"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   epatch 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/dd-rescue/

2016-12-31 Thread Lars Wendler
commit: 45eaabb0f934e328843a8e10f30b5af527fcecb2
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Dec 31 15:00:59 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Dec 31 15:00:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45eaabb0

sys-fs/dd-rescue: Bump to version 1.99.5

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sys-fs/dd-rescue/Manifest|  1 +
 sys-fs/dd-rescue/dd-rescue-1.99.5.ebuild | 87 
 2 files changed, 88 insertions(+)

diff --git a/sys-fs/dd-rescue/Manifest b/sys-fs/dd-rescue/Manifest
index de9ebaa..1b0af6b 100644
--- a/sys-fs/dd-rescue/Manifest
+++ b/sys-fs/dd-rescue/Manifest
@@ -1,3 +1,4 @@
 DIST dd_rescue-1.28.tar.gz 22093 SHA256 
4adcc368a1d4ad62577eaf8609809be1678335d54ef565a5a0fa6e1210489f03 SHA512 
64a6eb2d6efbe79ca078b8de727ce551acd3a43bc6258b633a4de9ee51933944badc370855c27f05f306d8d3e95332c4b8884f7c11af321a9ac6797f9b02a3a3
 WHIRLPOOL 
138149efa98d0ade917d10eb6e64bae5cca0e60685eb4e804773e97cd31389f645544a969fd52747aa957260f01fa89db642929a8c36106b915d13eb87715fd4
 DIST dd_rescue-1.46.tar.gz 126790 SHA256 
9e09b5583f778fe43b6c473998fe0455486d5ffeacbb72b022d6cf5ba8241aba SHA512 
efd1bf5d80d4bafa6e6971caa84205dc5df4456a29a9fa3bb56aa984d68675ae3418e8ba3a355906f491f0f2e750c38fd695e37dbd193e554cd41afec3841e28
 WHIRLPOOL 
ac965019d38539962018bcc5a6d32cbf303b4d00d5ed91d643655a820f17bfa1ca81b5123f95220663823e6622d55099a2da08aaacf60cefc37097aa3354c729
+DIST dd_rescue-1.99.5.tar.bz2 170712 SHA256 
125d327118d1beab24b5858accb2c755dc07ae5b40bb07a985d837c6e3256935 SHA512 
a240eb9d50950cefbc65d953c84a8e3782d39282aff4e7fa42364b40cee0eb0a02f61315786a1008cf7ae9c3d758700e9f3a0087b9477b3ffbfcbcef59f07d88
 WHIRLPOOL 
543a818b748086b1d1163343b02b8e83f7a03713d5394fc0702f48b515cd50b24e30898990439689cbef8270d0b410fdea2dc5b50b8c45728f9ed38c23d414c5
 DIST dd_rescue-1.99.tar.bz2 168200 SHA256 
5545f54a5e5bee2b9ac69959b1bc81aafae24939393efb8cc581e68ab1b2e47d SHA512 
f484f1a86b3bd7c098eb568e193888d98def35b1bec2f553eb3543a5ae22417dbddb562a5c809613a1493ecac3689dcc2a45e26446a3e16036a19e716e38bd11
 WHIRLPOOL 
94ca6b49636c3f8b0a0901141a3ca16945f0cb5364b97d5d0d759ee1b034f33019ee0bf4f43f7977f0176832d95cecc0aab9cb89e783eabac14290ada4c9f1e1

diff --git a/sys-fs/dd-rescue/dd-rescue-1.99.5.ebuild 
b/sys-fs/dd-rescue/dd-rescue-1.99.5.ebuild
new file mode 100644
index ..70369f8
--- /dev/null
+++ b/sys-fs/dd-rescue/dd-rescue-1.99.5.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit toolchain-funcs flag-o-matic multilib autotools
+
+MY_PN=${PN/-/_}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Similar to dd but can copy from source with errors"
+HOMEPAGE="http://www.garloff.de/kurt/linux/ddrescue/;
+SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.bz2;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~sparc ~x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+IUSE="cpu_flags_x86_avx2 lzo cpu_flags_x86_sse4_2 static xattr"
+
+RDEPEND="lzo? ( dev-libs/lzo )
+   xattr? ( sys-apps/attr )"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   epatch "${FILESDIR}/${MY_PN}-1.99-test_fix.patch"
+   epatch "${FILESDIR}/${MY_PN}-1.99-musl.patch"
+
+   sed -i \
+   -e 's:-ldl:$(LDFLAGS) -ldl:' \
+   -e 's:-shared:$(CFLAGS) $(LDFLAGS) -shared:' \
+   Makefile
+   eautoreconf
+}
+
+src_configure() {
+   use static && append-ldflags -static
+   # OpenSSL is only used by a random helper tool we don't install.
+   ac_cv_header_attr_xattr_h=$(usex xattr) \
+   ac_cv_header_openssl_evp_h=no \
+   ac_cv_lib_lzo2_lzo1x_1_compress=$(usex lzo) \
+   econf
+}
+
+_emake() {
+   local arch
+   case ${ARCH} in
+   x86)   arch=i386;;
+   amd64) arch=x86_64;;
+   arm)   arch=arm;;
+   arm64) arch=aarch64;;
+   esac
+
+   local os=$(usex kernel_linux Linux IDK)
+
+   # The Makefile is a mess.  Override a few vars rather than patch it.
+   emake \
+   MACH="${arch}" \
+   OS="${os}" \
+   HAVE_SSE42=$(usex cpu_flags_x86_sse4_2 1 0) \
+   HAVE_AVX2=$(usex cpu_flags_x86_avx2 1 0) \
+   RPM_OPT_FLAGS="${CFLAGS} ${CPPFLAGS}" \
+   CFLAGS_OPT='$(CFLAGS)' \
+   LDFLAGS="${LDFLAGS} 
-Wl,-rpath,${EPREFIX}/usr/$(get_libdir)/${PN}" \
+   CC="$(tc-getCC)" \
+   "$@"
+}
+
+src_compile() {
+   _emake
+}
+
+src_test() {
+   _emake check
+}
+
+src_install() {
+   # easier to install by hand than trying to make sense of the Makefile.
+   dobin dd_rescue
+   dodir /usr/$(get_libdir)/${PN}
+   cp -pPR libddr_*.so "${ED}"/usr/$(get_libdir)/${PN}/ || die
+   dodoc README.dd_rescue
+   doman dd_rescue.1
+   use lzo && doman ddr_lzo.1
+}



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

2016-12-31 Thread Lars Wendler
commit: 9b89d90c0beff8179fbcdfd603aa3111ebb9
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Dec 31 14:23:17 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Dec 31 14:23:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b89d90c

media-libs/freetype: Bump to version 2.7.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/freetype/Manifest  |   3 +
 media-libs/freetype/freetype-2.7.1.ebuild | 176 ++
 2 files changed, 179 insertions(+)

diff --git a/media-libs/freetype/Manifest b/media-libs/freetype/Manifest
index 13c6872..9ee3b3c 100644
--- a/media-libs/freetype/Manifest
+++ b/media-libs/freetype/Manifest
@@ -3,12 +3,15 @@ DIST freetype-2.5.5-infinality-patches.tar.xz 24380 SHA256 
6b7bc373b068c71feca2e
 DIST freetype-2.5.5.tar.bz2 1714529 SHA256 
387bcc4b780b12484aa2ec9f7db1a55d8286eb5639f45fbc0fbba7a4e5a1afb9 SHA512 
1fc72d24da1744a6a5faf3338e49912c81ce83f30def1e80a2a15b50e7f83893a4fe24a70ef88b65ecc217bed1c15d85804c364eba221b35e25531c727fe8559
 WHIRLPOOL 
57cf0f020cda6a66cfe8e2a30e1e997c0fd7f97bdaed38da65cce0b360fcc60cfdf1ba0724c1745668ae3f80743052e135edb8356dff4c90365caa6262d59158
 DIST freetype-2.6.3.tar.bz2 1753083 SHA256 
371e707aa522acf5b15ce93f11183c725b8ed1ee8546d7b3af549863045863a2 SHA512 
e1f9018835fc88beeb4479537b59f866c52393ae18d24a1e0710a464cf948ab02b35c2c6043bc20c1db3a04871ee4eb0bb1d210550c0ea2780c8b1aea98fbf0d
 WHIRLPOOL 
e17e87fe7b821730da13b1a54073fd0314025e3e15a41b10b5ece2731c8152c4d8dbe1fb7f26593794d70f15f6dfd70582678d48a8f068cec865f821eb3847a0
 DIST freetype-2.6.5.tar.bz2 1779603 SHA256 
e20a6e1400798fd5e3d831dd821b61c35b1f9a6465d6b18a53a9df4cf441acf0 SHA512 
d60f057e12992b4dccd7d5e232bda5c344e6ed0d74362032fbbc52526bac42d600fe0aa04c6442a9502a27a88f5d5155fb42e723531127400ccfce0d1911487f
 WHIRLPOOL 
3cfbbe407ee024ff939469aa2b82b764fe89b1ba4fc7edcdd537e9ad81b3ea6a8fe807e2d5fdb80ec47de2f66cf3f28b5e45320c84a84ea446acbf6c2966cccb
+DIST freetype-2.7.1.tar.bz2 1825107 SHA256 
3a3bb2c4e15ffb433f2032f50a5b5a92558206822e22bfe8cbe339af4aa82f88 SHA512 
df39e2ef55f9090a66fecb6b5e9a5d296a043ddfd919d0ce3d7ea5132aa388bfbbeeaa6d6df6513956134b987e1c3a5eac6975c0c9631213af77457a623b49da
 WHIRLPOOL 
f1d506dae87b718131299e24c959ad0636bca9739fdd3dce1ad1e8009e7e16a11faede66d234f7071f3de86c83b275f09323804be77a2a4b3a785adba4b74ed6
 DIST freetype-2.7.tar.bz2 1789896 SHA256 
d6a451f5b754857d2aa3964fd4473f8bc5c64e879b24516d780fb26bec7f7d48 SHA512 
cd5bcde276d6d59379d9c60a90095be59b0692ec8fd2817aa44ff80ebb84840e8a72be2cfbbbcf7e13258026fa691f28c2673f03c3a3961a859900e61a62d761
 WHIRLPOOL 
74972198e66cb30465bc1ce40c3e394bae07e194f1ddbc4024e7969c52def6ffd255d88279f77a610c16bbac618c90c3a296d37a981e3048d94ed0135a2cdd5c
 DIST freetype-doc-2.5.5.tar.bz2 108133 SHA256 
68becbae3578a8101e9f3c55f10e435fb75535011d3f7a523719371e86e368e7 SHA512 
0e2455433f72766ec88275d2e53e49630457579a83ca491697bb5ce12196ee964618d1af86956651557d34e8ea1d57f75f69e0d60ef90e943509bc571370fb64
 WHIRLPOOL 
28d13ae3ce9bc3fb278df9a963cef3622672fa288fc0fd654e874054bedccd8510a3dcf7636ea2ec107b5299984742607d2a9436d5e473202856e27bf262655f
 DIST freetype-doc-2.6.3.tar.bz2 5367900 SHA256 
28b7cb0b1ff3962d386c54cdffd3891d2126292f57b4ea9ad0467f07cf68de7d SHA512 
7731d96543f73ace8afc4b5ff2148c32a8dacbf01a976a6870705f73b45dfe1429ffa94406cdfc83b163b039c4d375c0c553a7d7aaad659a87079f357e6599cc
 WHIRLPOOL 
71b01f8d5daf8e93efab5453f198d1790365fd010b5a137f4f34e93f6bc03a6a644900b92b8263973248954895c73e70cad64fe50b09bb4042627182299a5a1c
 DIST freetype-doc-2.6.5.tar.bz2 1932398 SHA256 
cb9cd73c3a713138e690a634608ec7b64ff645f9a71ac6645804b18e38be49e9 SHA512 
1d2affa07f34c6486f1738141b428256f1d44bc0d166c74e9884caeeecdf3204164542e9bbc1c0eba6ff605f41d6022068546da64aee7859b72636bcd72fff00
 WHIRLPOOL 
90499d7ffdfe079dc058974e9d89a18a35c011244ea6d6003e8f445af579430910331fad2c6c7f4cc5ff318cf8582d8b30a32f878a4b8e4e5723e1b02025a396
+DIST freetype-doc-2.7.1.tar.bz2 2127460 SHA256 
8e09cf22d1c98006fe3af160b7c3b7c847e4a3743963d6d89314d350b859dfb0 SHA512 
a0cdacf277abb967aee3a09850f10aafe7719d01fc179fc660e8f3d596203d9a0ae74785e5c7e7ad744032d2209a547607edc43c8fde9d136de00cd59ff6
 WHIRLPOOL 
f5d079472e22ba7ae1aa9c74f13279960f9c773be97def5039d5ac5473e1f1e691e4d94cf0e9183708e066faf2537b72777940996b61854e815ebe3d32ca71fd
 DIST freetype-doc-2.7.tar.bz2 1935798 SHA256 
8440b7e576ccbe840051c162419a39083627a4de0c7d15fd20220736c03aac66 SHA512 
07d5aab0c81369c8ab9d463a279b73a8189f9ab120733b31da1ad89faf01e00c9bb751af0ecee73517a6aa734f7b66a970e51767bf4e9f64eca5f35ba03a4ad8
 WHIRLPOOL 
26d3d2bef648a02856644de707f0f3b9c59bd912840a1d8b3d8c16867f51fb6d5d333bda22a0a880f4a6dae28f29483efcd863a41d6764a4a7b6bf1c657f6dea
 DIST ft2demos-2.5.5.tar.bz2 182006 SHA256 
b87c7deb5d9b1fddb8520c091a5491cc63ecac4de25139e1da38aebee82195ea SHA512 
c6e1855f2315665e39a894ecfcb65f8546de435c1dada0ea0a6665a1e3ef22331d6949cd9261dfb6b68e653631d4c2e74f8ea31b53b40e46f44ab4dae38e368b
 WHIRLPOOL 

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

2016-12-31 Thread Andreas Sturmlechner
commit: dc3090d148721cb68bf47bf89a7e5c8f0c33125e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Dec 31 13:44:58 2016 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sat Dec 31 13:52:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc3090d1

profiles: Move media-libs/mlt[vdpau] package.use.mask from base to arch

amd64 and x86 have -vdpau in use.mask so this needs to be taken there.

 profiles/arch/amd64/package.use.mask | 6 ++
 profiles/arch/x86/package.use.mask   | 6 ++
 profiles/base/package.use.mask   | 5 -
 3 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/profiles/arch/amd64/package.use.mask 
b/profiles/arch/amd64/package.use.mask
index fc76a6a..aee8f1d 100644
--- a/profiles/arch/amd64/package.use.mask
+++ b/profiles/arch/amd64/package.use.mask
@@ -18,6 +18,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Andreas Sturmlechner  (31 Dec 2016)
+# on behalf of Andreas K. Hüttel  (14 Dec 2016)
+# Fails to build with newly unmasked ffmpeg-3, so mask this useflag
+# Workaround; leaving a real fix to the maintainers... bug 580630
+media-libs/mlt vdpau
+
 # Ettore Di Giacinto  (18 Oct 2016)
 # Enable gambit and scm only on supported architectures
 >=dev-scheme/slib-3.2.5 -gambit -scm

diff --git a/profiles/arch/x86/package.use.mask 
b/profiles/arch/x86/package.use.mask
index 1e2be8e..1c18385 100644
--- a/profiles/arch/x86/package.use.mask
+++ b/profiles/arch/x86/package.use.mask
@@ -4,6 +4,12 @@
 
 # This file requires >=portage-2.1.1
 
+# Andreas Sturmlechner  (31 Dec 2016)
+# on behalf of Andreas K. Hüttel  (14 Dec 2016)
+# Fails to build with newly unmasked ffmpeg-3, so mask this useflag
+# Workaround; leaving a real fix to the maintainers... bug 580630
+media-libs/mlt vdpau
+
 # Yixun lan  (07 Dec 2016)
 # Disable zfs storage backend since sys-fs/zfs doesn't support 32bit arch
 app-emulation/libvirt zfs

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index 3cadd5a..73e5022 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -10,11 +10,6 @@
 # Requires masked media-video/libav-12. See bug #603726.
 >=media-video/mpv-0.23.0 libav
 
-# Andreas K. Hüttel  (14 Dec 2016)
-# Fails to build with newly stable ffmpeg-3, so mask this useflag
-# Workaround; leaving a real fix to the maintainers... bug 580630
-media-libs/mlt vdpau
-
 # Robin H. Johnson  (04 Dec 2016)
 # Additional HAProxy functionality waiting for related stuff to land in the
 # tree.



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

2016-12-31 Thread Jeroen Roovers
commit: f300dde8da04ab25c211127f2c401212ab6a524d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Dec 31 13:50:41 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Dec 31 13:50:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f300dde8

dev-lang/python: Stable for HPPA (bug #585946).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 dev-lang/python/python-2.7.12.ebuild | 2 +-
 dev-lang/python/python-3.4.5.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/python/python-2.7.12.ebuild 
b/dev-lang/python/python-2.7.12.ebuild
index 1a336ac..47bee3b 100644
--- a/dev-lang/python/python-2.7.12.ebuild
+++ b/dev-lang/python/python-2.7.12.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://www.python.org/ftp/python/${PV}/${MY_P}.tar.xz
 
 LICENSE="PSF-2"
 SLOT="2.7"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="-berkdb build doc elibc_uclibc examples gdbm hardened ipv6 libressl 
+ncurses +readline sqlite +ssl +threads tk +wide-unicode wininst +xml"
 
 # Do not add a dependency on dev-lang/python to this ebuild.

diff --git a/dev-lang/python/python-3.4.5.ebuild 
b/dev-lang/python/python-3.4.5.ebuild
index bbc0e3c..d95c31b 100644
--- a/dev-lang/python/python-3.4.5.ebuild
+++ b/dev-lang/python/python-3.4.5.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="http://www.python.org/ftp/python/${PV%_rc*}/${MY_P}.tar.xz
 
 LICENSE="PSF-2"
 SLOT="3.4/3.4m"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 ~s390 ~sh 
sparc x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
 IUSE="build elibc_uclibc examples gdbm hardened ipv6 libressl +ncurses 
+readline sqlite +ssl +threads tk wininst +xml"
 
 # Do not add a dependency on dev-lang/python to this ebuild.



[gentoo-commits] repo/gentoo:master commit in: net-dns/libidn2/

2016-12-31 Thread Jeroen Roovers
commit: bee2973db52bf471c510bcbde2ba9e7b308c1551
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Dec 31 13:29:01 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Dec 31 13:29:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bee2973d

net-dns/libidn2: Explicitly disable use of included libunistring.

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 net-dns/libidn2/libidn2-0.12.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/net-dns/libidn2/libidn2-0.12.ebuild 
b/net-dns/libidn2/libidn2-0.12.ebuild
index 99c9132..34c6133 100644
--- a/net-dns/libidn2/libidn2-0.12.ebuild
+++ b/net-dns/libidn2/libidn2-0.12.ebuild
@@ -51,7 +51,8 @@ src_prepare() {
 
 multilib_src_configure() {
econf \
-   $(use_enable static-libs static)
+   $(use_enable static-libs static) \
+   --without-included-libunistring
 }
 
 multilib_src_install() {



[gentoo-commits] repo/gentoo:master commit in: profiles/arch/arm/, profiles/arch/ia64/

2016-12-31 Thread Pacho Ramos
commit: c4d881a38ec5fa1e17324f56a49017cebbcdc9fb
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Dec 31 13:09:37 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Dec 31 13:09:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d881a3

profiles/arch/{arm,ia64}/package.use.stable.mask: use mask to skip gtkspell:3 
stabilization for now

 profiles/arch/arm/package.use.stable.mask  | 4 
 profiles/arch/ia64/package.use.stable.mask | 2 +-
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/profiles/arch/arm/package.use.stable.mask 
b/profiles/arch/arm/package.use.stable.mask
index f9980b5..afe9a48 100644
--- a/profiles/arch/arm/package.use.stable.mask
+++ b/profiles/arch/arm/package.use.stable.mask
@@ -3,6 +3,10 @@
 # $Id$
 
 # Pacho Ramos  (31 Dec 2016)
+# Not going to be stable for now
+dev-util/geany-plugins gtkspell
+
+# Pacho Ramos  (31 Dec 2016)
 # No stable for arm
 sys-fs/dmraid dietlibc klibc
 

diff --git a/profiles/arch/ia64/package.use.stable.mask 
b/profiles/arch/ia64/package.use.stable.mask
index 602be85..a6d39e9 100644
--- a/profiles/arch/ia64/package.use.stable.mask
+++ b/profiles/arch/ia64/package.use.stable.mask
@@ -20,7 +20,7 @@
 
 # Pacho Ramos  (02 Jul 2014)
 # Mask due Gnome3 not going to be stabilized on this arch
-dev-util/geany-plugins devhelp markdown webkit
+dev-util/geany-plugins devhelp gtkspell markdown webkit
 >=gnome-base/gnome-desktop-2.32.1-r2 license-docs
 gnome-base/gvfs google
 >=net-libs/webkit-gtk-2.4 geoloc



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/opencpn-plugin-radar/

2016-12-31 Thread Marc Schiffbauer
commit: de0d0668e925368401d0f747496a34ef1bbacaa4
Author: Marc Schiffbauer  gentoo  org>
AuthorDate: Sat Dec 31 13:02:42 2016 +
Commit: Marc Schiffbauer  gentoo  org>
CommitDate: Sat Dec 31 13:03:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de0d0668

sci-geosciences/opencpn-plugin-radar: fix download, fixes #604236

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild | 4 ++--
 sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-.ebuild | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git 
a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild 
b/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild
index a63413a..bfb48ec 100644
--- a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild
+++ b/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-0.98.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 WX_GTK_VER="3.0"
-MY_PN="radar_pi-aisradar_pi"
+MY_PN="radar_pi"
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/Verezano/${MY_PN}.git;
inherit git-r3 cmake-utils wxwidgets
@@ -16,7 +16,7 @@ else
"
inherit cmake-utils wxwidgets
KEYWORDS="~amd64 ~x86"
-   S="${WORKDIR}/${MY_PN}-${PV}"
+   S="${WORKDIR}/${MY_PN}-aisradar_pi-${PV}"
 fi
 
 DESCRIPTION="AIS Radar View Plugin for OpenCPN"

diff --git 
a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-.ebuild 
b/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-.ebuild
index a63413a..bfb48ec 100644
--- a/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-.ebuild
+++ b/sci-geosciences/opencpn-plugin-radar/opencpn-plugin-radar-.ebuild
@@ -5,7 +5,7 @@
 EAPI=5
 
 WX_GTK_VER="3.0"
-MY_PN="radar_pi-aisradar_pi"
+MY_PN="radar_pi"
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/Verezano/${MY_PN}.git;
inherit git-r3 cmake-utils wxwidgets
@@ -16,7 +16,7 @@ else
"
inherit cmake-utils wxwidgets
KEYWORDS="~amd64 ~x86"
-   S="${WORKDIR}/${MY_PN}-${PV}"
+   S="${WORKDIR}/${MY_PN}-aisradar_pi-${PV}"
 fi
 
 DESCRIPTION="AIS Radar View Plugin for OpenCPN"



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

2016-12-31 Thread Diego Elio Pettenò
commit: 2749795825ac64bb6de11b4af4828fb40453f018
Author: Diego Elio Pettenò  gentoo  org>
AuthorDate: Sat Dec 31 12:57:13 2016 +
Commit: Diego Elio Pettenò  gentoo  org>
CommitDate: Sat Dec 31 12:57:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27497958

Version bump and remove previous version; Ludovic says it's a potential 
security problem, but provided no details.

Package-Manager: portage-2.3.0

 sys-apps/pcsc-lite/Manifest | 2 +-
 sys-apps/pcsc-lite/{pcsc-lite-1.8.19.ebuild => pcsc-lite-1.8.20.ebuild} | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/pcsc-lite/Manifest b/sys-apps/pcsc-lite/Manifest
index 1e46c30..f5a5544 100644
--- a/sys-apps/pcsc-lite/Manifest
+++ b/sys-apps/pcsc-lite/Manifest
@@ -1,3 +1,3 @@
 DIST pcsc-lite-1.8.12.tar.bz2 580449 SHA256 
f2c30a2aba6805f2859ede5f2eca351ca6c495a18d5d36d74c63e7898b353c51 SHA512 
b0ed94187052e0ff73030ecf9f5165d4f8dc4a7f1eb05c6c57c0e5552ae6699c53f12cd72e09812de3c55be86a08ab060a92ad08b5db2686dfa1afbaca336d87
 WHIRLPOOL 
c6feed97170a640b6ee86e2188a124995acf73f618cfc5d4f1cf68a7f8da5955330a255b211606ebb5d50d58a4cfad859a7004fddf06c6476838458e3b7162c3
 DIST pcsc-lite-1.8.16.tar.bz2 710247 SHA256 
e7d08aa38897e86fdf632d56ac70663a3a9add3c0bf4031dc32e783f19c0688a SHA512 
815b57f53adc8e820bb702a6704b2be4e9e7d772d46d4cc73d5730d3821334245c316d078a4565bbe8450fc1657a12b02ced40175ca314bf0d462c2f2599e714
 WHIRLPOOL 
d54c5c02b2a47de535da3a3a0eca54c2dce78ca5c5ae48530c0fdbc9f77ad3a465e9eeb2a2297a7ebea565ecf93c651e3d1dd275dbc61308786717e6376cbaf9
-DIST pcsc-lite-1.8.19.tar.bz2 744283 SHA256 
b65e25ec6dd1328983b424ce1a649e2993b1c4c59fc87252689b5fa7037c4340 SHA512 
df723be60495cc4632c1c2ccf7c60d28bd9b2b56e4bceb60fe59bfd756cb2ddbded1bce8c3e021e713d353ada9438fe4f4ce138efa42d604e6bdc5d2367f827a
 WHIRLPOOL 
3c136ff871e4bbb15bc09f13a41917ea2269b5478c0f56205f6735703118c6e4ca3ab654a3bcc5fc136ccad15cb0c2f15e9cf6bb58dd6343ab6e4e44246b0ece
+DIST pcsc-lite-1.8.20.tar.bz2 745049 SHA256 
ec7d0114016c788c1c09859c84860f6cec6c4595436d23245105154b9c046bb2 SHA512 
63fea660d71605ebced5600a59ab5b6a735c4ba3697faf7658d91b8e281a7fb2a2bca6831c8f8c8c87b87a54f7fd03ae818a4c496dcbac0afce523e3b6c606b8
 WHIRLPOOL 
1c758274a884cf5625d31ed4d56938ee147ba276613c701aee1465b70842a9a73daa92b889835decaaca55707da6be798e3b183aef16a64817d969734d19250a

diff --git a/sys-apps/pcsc-lite/pcsc-lite-1.8.19.ebuild 
b/sys-apps/pcsc-lite/pcsc-lite-1.8.20.ebuild
similarity index 99%
rename from sys-apps/pcsc-lite/pcsc-lite-1.8.19.ebuild
rename to sys-apps/pcsc-lite/pcsc-lite-1.8.20.ebuild
index 0ed5039..241f22e 100644
--- a/sys-apps/pcsc-lite/pcsc-lite-1.8.19.ebuild
+++ b/sys-apps/pcsc-lite/pcsc-lite-1.8.20.ebuild
@@ -10,7 +10,7 @@ inherit eutils python-single-r1 systemd udev user 
multilib-minimal
 DESCRIPTION="PC/SC Architecture smartcard middleware library"
 HOMEPAGE="http://pcsclite.alioth.debian.org/;
 
-STUPID_NUM="4198"
+STUPID_NUM="4203"
 MY_P="${PN}-${PV/_/-}"
 
SRC_URI="http://alioth.debian.org/download.php/file/${STUPID_NUM}/${MY_P}.tar.bz2;
 S="${WORKDIR}/${MY_P}"



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

2016-12-31 Thread Alexis Ballier
commit: e908b5d797137fbbf51050b0836ec0f9faf6f027
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Dec 31 12:21:09 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Dec 31 12:21:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e908b5d7

dev-tex/latexdiff: add missing pod-latex dep, bug #604090; drop keywords on 
arches without it

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-tex/latexdiff/latexdiff-1.2.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-tex/latexdiff/latexdiff-1.2.0.ebuild 
b/dev-tex/latexdiff/latexdiff-1.2.0.ebuild
index ebc0830..b3073f2 100644
--- a/dev-tex/latexdiff/latexdiff-1.2.0.ebuild
+++ b/dev-tex/latexdiff/latexdiff-1.2.0.ebuild
@@ -10,13 +10,14 @@ 
SRC_URI="https://github.com/ftilmann/latexdiff/archive/${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh ~sparc 
~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos"
+KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~s390 ~sh ~x86 ~amd64-fbsd ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 
 IUSE="test"
 
 RDEPEND=">=dev-lang/perl-5.8
dev-perl/Algorithm-Diff"
 DEPEND="${RDEPEND}
+   dev-perl/Pod-LaTeX
test? ( app-shells/tcsh )"
 
 src_compile() {



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

2016-12-31 Thread Alexis Ballier
commit: 3d7725507f002929b45e2acc4e53ff89b7557310
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Dec 31 12:16:23 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Dec 31 12:16:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d772550

dev-tex/latexdiff: fix building when installed for the first time, bug #604088

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-tex/latexdiff/latexdiff-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/latexdiff/latexdiff-1.2.0.ebuild 
b/dev-tex/latexdiff/latexdiff-1.2.0.ebuild
index 83138be..ebc0830 100644
--- a/dev-tex/latexdiff/latexdiff-1.2.0.ebuild
+++ b/dev-tex/latexdiff/latexdiff-1.2.0.ebuild
@@ -20,7 +20,7 @@ DEPEND="${RDEPEND}
test? ( app-shells/tcsh )"
 
 src_compile() {
-   emake -j1 distribution
+   PATH="${S}/dist:${PATH}" emake -j1 distribution
 }
 
 src_test() {



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

2016-12-31 Thread Pacho Ramos
commit: 71a5ccbe46be913d002e4a25d6572de5bd5191aa
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sat Dec 31 12:07:56 2016 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sat Dec 31 12:07:56 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71a5ccbe

profiles/arch/arm/package.use.stable.mask: mask dietlibc and klibc USEs as they 
won't go to stable

 profiles/arch/arm/package.use.stable.mask | 4 
 1 file changed, 4 insertions(+)

diff --git a/profiles/arch/arm/package.use.stable.mask 
b/profiles/arch/arm/package.use.stable.mask
index 3d39b2c..f9980b5 100644
--- a/profiles/arch/arm/package.use.stable.mask
+++ b/profiles/arch/arm/package.use.stable.mask
@@ -2,6 +2,10 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
+# Pacho Ramos  (31 Dec 2016)
+# No stable for arm
+sys-fs/dmraid dietlibc klibc
+
 # Christoph Junghans  (27 Nov 2016)
 # no stable mpi on arm yet, but maybe in the future
 <=app-crypt/johntheripper-1.7.9-r6 mpi



[gentoo-commits] repo/gentoo:master commit in: sci-libs/orocos_kdl/

2016-12-31 Thread Alexis Ballier
commit: 58a5d17ed65050caf4a1f8006a72578ef17a5eac
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Dec 31 12:00:33 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Dec 31 12:01:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a5d17e

sci-libs/orocos_kdl: bump to 1.3.1, bug #604130

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 sci-libs/orocos_kdl/Manifest|  1 +
 sci-libs/orocos_kdl/orocos_kdl-1.3.1.ebuild | 69 +
 2 files changed, 70 insertions(+)

diff --git a/sci-libs/orocos_kdl/Manifest b/sci-libs/orocos_kdl/Manifest
index 1e0cce1..a695dc0 100644
--- a/sci-libs/orocos_kdl/Manifest
+++ b/sci-libs/orocos_kdl/Manifest
@@ -1 +1,2 @@
 DIST orocos_kinematics_dynamics-1.3.0.tar.gz 200229 SHA256 
7be2dd5e4f4c1ceac2cdf1f4fae3d94d4ffd9fc1af8d483c05f04e80ef84b3f9 SHA512 
09ff63f74f1eac3ee8b1090364e0d95b4ae96c9d4435ca34adacb3ded7385f948ddca9be2c1c2c2214c9342b17bbffb7da89ba9b7cd402e7fd4f2c6dbd06a930
 WHIRLPOOL 
4085fa4aba77e0c24a3c1aab4ab5f98e8b349037525e6a596ff027075ea1dcd33c4f13fa3abd61bbe6a2a3bd13b62616d7b614c030ecda8343be3ed59406bae6
+DIST orocos_kinematics_dynamics-1.3.1.tar.gz 202471 SHA256 
aff361d2b4e2c6d30ae959308a124022eeef5dc5bea2ce779900f9b36b0537bd SHA512 
93abd9dd5aef3710f784f9db8eea4738458bffa5295923993e2d77656c18f7354559412fb7eb5f1e9da7112de19aa36d3f0f68f149852f955bce960fd3b719e7
 WHIRLPOOL 
b7b4d897f4d5f170b73fe5bb48e357051ae37a244b9c44e8c2f120d71fc75c80cc1f69d30cb1463bbe10658ba0af98965f18f3055436910f24ebaab0ce1bd8e7

diff --git a/sci-libs/orocos_kdl/orocos_kdl-1.3.1.ebuild 
b/sci-libs/orocos_kdl/orocos_kdl-1.3.1.ebuild
new file mode 100644
index ..fac6891
--- /dev/null
+++ b/sci-libs/orocos_kdl/orocos_kdl-1.3.1.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/orocos/orocos_kinematics_dynamics;
+fi
+
+inherit ${SCM} cmake-utils
+
+if [ "${PV#}" != "${PV}" ] ; then
+   KEYWORDS=""
+   SRC_URI=""
+else
+   KEYWORDS="~amd64 ~arm"
+   
SRC_URI="https://github.com/orocos/orocos_kinematics_dynamics/archive/v${PV}.tar.gz
 -> orocos_kinematics_dynamics-${PV}.tar.gz"
+fi
+
+DESCRIPTION="Kinematics and Dynamics Library (KDL)"
+HOMEPAGE="http://www.orocos.org/kdl;
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE="doc test examples models"
+
+RDEPEND="dev-cpp/eigen:3"
+DEPEND="${RDEPEND}
+   test? ( dev-util/cppunit )
+   doc? ( app-doc/doxygen )"
+REQUIRED_USE="examples? ( models )"
+
+DOCS=( README )
+PATCHES=( "${FILESDIR}/gentoo.patch" )
+
+if [ "${PV#}" != "${PV}" ] ; then
+   S=${WORKDIR}/${P}/orocos_kdl
+else
+   S=${WORKDIR}/orocos_kinematics_dynamics-${PV}/orocos_kdl
+fi
+
+src_configure() {
+   local mycmakeargs=(
+   "$(cmake-utils_use_enable test TESTS)"
+   "$(cmake-utils_use_enable examples EXAMPLES)"
+   "-DBUILD_MODELS=$(usex models ON OFF)"
+   )
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+   cd "${BUILD_DIR}"
+   use doc && emake docs
+}
+
+src_test() {
+   cd "${BUILD_DIR}"
+   emake check
+}
+
+src_install() {
+   cmake-utils_src_install
+   cd "${BUILD_DIR}"
+   use doc && dohtml -r doc/api/html/*
+   use examples && dobin 
"${BUILD_DIR}/examples/"{geometry,trajectory_example,chainiksolverpos_lma_demo}
+}



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

2016-12-31 Thread Alexis Ballier
commit: 5457831dfb1497739632d125a51dfe83522197e3
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Dec 31 12:01:34 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Dec 31 12:01:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5457831d

dev-python/python_orocos_kdl: bump to 1.3.1

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/python_orocos_kdl/Manifest  |  1 +
 .../python_orocos_kdl-1.3.1.ebuild | 57 ++
 2 files changed, 58 insertions(+)

diff --git a/dev-python/python_orocos_kdl/Manifest 
b/dev-python/python_orocos_kdl/Manifest
index 1e0cce1..a695dc0 100644
--- a/dev-python/python_orocos_kdl/Manifest
+++ b/dev-python/python_orocos_kdl/Manifest
@@ -1 +1,2 @@
 DIST orocos_kinematics_dynamics-1.3.0.tar.gz 200229 SHA256 
7be2dd5e4f4c1ceac2cdf1f4fae3d94d4ffd9fc1af8d483c05f04e80ef84b3f9 SHA512 
09ff63f74f1eac3ee8b1090364e0d95b4ae96c9d4435ca34adacb3ded7385f948ddca9be2c1c2c2214c9342b17bbffb7da89ba9b7cd402e7fd4f2c6dbd06a930
 WHIRLPOOL 
4085fa4aba77e0c24a3c1aab4ab5f98e8b349037525e6a596ff027075ea1dcd33c4f13fa3abd61bbe6a2a3bd13b62616d7b614c030ecda8343be3ed59406bae6
+DIST orocos_kinematics_dynamics-1.3.1.tar.gz 202471 SHA256 
aff361d2b4e2c6d30ae959308a124022eeef5dc5bea2ce779900f9b36b0537bd SHA512 
93abd9dd5aef3710f784f9db8eea4738458bffa5295923993e2d77656c18f7354559412fb7eb5f1e9da7112de19aa36d3f0f68f149852f955bce960fd3b719e7
 WHIRLPOOL 
b7b4d897f4d5f170b73fe5bb48e357051ae37a244b9c44e8c2f120d71fc75c80cc1f69d30cb1463bbe10658ba0af98965f18f3055436910f24ebaab0ce1bd8e7

diff --git a/dev-python/python_orocos_kdl/python_orocos_kdl-1.3.1.ebuild 
b/dev-python/python_orocos_kdl/python_orocos_kdl-1.3.1.ebuild
new file mode 100644
index ..89a4b94
--- /dev/null
+++ b/dev-python/python_orocos_kdl/python_orocos_kdl-1.3.1.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_REPO_URI="https://github.com/orocos/orocos_kinematics_dynamics;
+fi
+
+inherit ${SCM} python-r1 cmake-utils
+
+if [ "${PV#}" != "${PV}" ] ; then
+   KEYWORDS=""
+   SRC_URI=""
+else
+   KEYWORDS="~amd64 ~arm"
+   
SRC_URI="https://github.com/orocos/orocos_kinematics_dynamics/archive/v${PV}.tar.gz
 -> orocos_kinematics_dynamics-${PV}.tar.gz"
+fi
+
+DESCRIPTION="Python bindings for KDL"
+HOMEPAGE="http://www.orocos.org/kdl;
+LICENSE="LGPL-2.1"
+SLOT="0"
+IUSE=""
+
+RDEPEND="
+   sci-libs/orocos_kdl
+   dev-python/sip[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+PATCHES=( "${FILESDIR}/gentoo.patch" )
+
+if [ "${PV#}" != "${PV}" ] ; then
+   S=${WORKDIR}/${P}/python_orocos_kdl
+else
+   S=${WORKDIR}/orocos_kinematics_dynamics-${PV}/python_orocos_kdl
+fi
+
+src_configure() {
+   python_foreach_impl cmake-utils_src_configure
+}
+
+src_compile() {
+   python_foreach_impl cmake-utils_src_compile
+}
+
+src_test() {
+   python_foreach_impl cmake-utils_src_test
+}
+
+src_install() {
+   python_foreach_impl cmake-utils_src_install
+}



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

2016-12-31 Thread Jeroen Roovers
commit: e7acf467e4c70bd319b1bb18db167bd632787402
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Dec 31 11:56:16 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Dec 31 11:56:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7acf467

net-misc/curl: Stable for HPPA PPC64 (bug #603574).

Package-Manager: Portage-2.3.3, Repoman-2.3.1
RepoMan-Options: --ignore-arches

 net-misc/curl/curl-7.52.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/curl/curl-7.52.1-r1.ebuild 
b/net-misc/curl/curl-7.52.1-r1.ebuild
index 3e822f6..c99e837 100644
--- a/net-misc/curl/curl-7.52.1-r1.ebuild
+++ b/net-misc/curl/curl-7.52.1-r1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="https://curl.haxx.se/download/${P}.tar.bz2;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~hppa ~mips ~ppc ~ppc64 x86 ~ppc-aix ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="amd64 ~arm hppa ~mips ~ppc ppc64 x86 ~ppc-aix ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x64-freebsd 
~x86-freebsd ~hppa-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 IUSE="adns http2 idn ipv6 kerberos ldap metalink rtmp samba ssh ssl 
static-libs test threads"
 IUSE+=" curl_ssl_axtls curl_ssl_gnutls curl_ssl_libressl curl_ssl_mbedtls 
curl_ssl_nss +curl_ssl_openssl curl_ssl_polarssl curl_ssl_winssl"



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

2016-12-31 Thread Alexis Ballier
commit: eb31b18fe8af27c440605f9496fc72c967f092dd
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Dec 31 11:47:10 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Dec 31 11:47:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb31b18f

media-sound/sonic-visualiser: remove old

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-sound/sonic-visualiser/Manifest  |   3 -
 .../files/sonic-visualiser-1.7.1-liboggz11.patch   |  37 ---
 .../files/sonic-visualiser-1.8-configure.patch |  11 ---
 .../files/sonic-visualiser-1.8-gcc46.patch |  10 --
 .../files/sonic-visualiser-1.9-gcc47.patch |  20 
 .../sonic-visualiser/sonic-visualiser-1.9.ebuild   |  92 --
 .../sonic-visualiser/sonic-visualiser-2.3.ebuild   |  97 ---
 .../sonic-visualiser/sonic-visualiser-2.4.1.ebuild | 106 -
 8 files changed, 376 deletions(-)

diff --git a/media-sound/sonic-visualiser/Manifest 
b/media-sound/sonic-visualiser/Manifest
index 6fec4d5..6bc95a9 100644
--- a/media-sound/sonic-visualiser/Manifest
+++ b/media-sound/sonic-visualiser/Manifest
@@ -1,4 +1 @@
-DIST sonic-visualiser-1.9.tar.gz 1867608 SHA256 
d899c219403d96c415809521ff71b7f326bf3c5015af496df7ae236de4712f02 SHA512 
b626b1ddf59071b280b1da9d8733759784febefb5abcb7ac8fc9bfa1bd7beb45aa8f68e854122cddd6a85b393943c87671298759945ae1f771ccc4fbd9ba2a5e
 WHIRLPOOL 
c7e66421e133ec36ad26e7f44da6f1ed2b2378be5d33bb6f3a66f822a7b81422280053d4902e844d1c91dbcb8c4cb40a5000eb30e63bc8722c1c05d3fc94008d
-DIST sonic-visualiser-2.3.tar.gz 2909195 SHA256 
0c90198d6974c8dfad7295498277f2ad8bd870b5e32d00e2aa22131bb3e006b8 SHA512 
647b8e9a5e3547f7d8546318a63e68282ccec70a6710e90b97f5ddc1425038784f1f2da251dbae5db5b380737181de8e22561b33f4b86f7a6b4af336cdbdb7d3
 WHIRLPOOL 
a7dd137f0d16bec5c462374932bd7e389f59fc19601bd2bd5e6872d4e5ce870f7414179e88bc3c13b46b42e10b06461d366146f09171a79531bece1db3303c89
-DIST sonic-visualiser-2.4.1.tar.gz 4155745 SHA256 
cb57cefddd47bdb31130dbc6d6ed53dd1084cbcecf426f4df02bbf098e82d41a SHA512 
9eb63ba8de670114d388e5faae6e8a16c732f05950324cee2c414d48cbe2e3a320b6876f4db578c01d08aa76de677ee295d5362160b03ab086eaba40c6f7f59f
 WHIRLPOOL 
601764c75110545147620fe94e089bb0b71d874e7da1f7eb15ba01a39a541d80fa73605ea8d25c48d4d1db41b1eac92ec56e52bd557c7b2f41784274cc162ccd
 DIST sonic-visualiser-2.5.tar.gz 4112133 SHA256 
5a66f20bae002876c64bc26d79dcba4f4c96c3c71ae160b5aafb40cfeacecdbe SHA512 
ec48456f5b089453ee9e8bdca5449da92b248a9278423b38a63dda4598b0496432337a152d8b296e8c5dcc2b434bc68c8d1dde225e398bf9bee1f4bbb6c8d7e6
 WHIRLPOOL 
0038c197a731e503c01d4f69b3b1aa6d347df95e84bc4ed75b7cd670bb50eeeb615e1ae9bfb357d6414fbc338fdfce6179635e8390cf835c37f7c5029767df9f

diff --git 
a/media-sound/sonic-visualiser/files/sonic-visualiser-1.7.1-liboggz11.patch 
b/media-sound/sonic-visualiser/files/sonic-visualiser-1.7.1-liboggz11.patch
deleted file mode 100644
index 6f2842c..
--- a/media-sound/sonic-visualiser/files/sonic-visualiser-1.7.1-liboggz11.patch
+++ /dev/null
@@ -1,37 +0,0 @@
-Index: sonic-visualiser-1.7.1/data/fileio/OggVorbisFileReader.cpp
-===
 sonic-visualiser-1.7.1.orig/data/fileio/OggVorbisFileReader.cpp
-+++ sonic-visualiser-1.7.1/data/fileio/OggVorbisFileReader.cpp
-@@ -138,15 +138,15 @@ OggVorbisFileReader::DecodeThread::run()
- } 
- 
- int
--OggVorbisFileReader::readPacket(OGGZ *, ogg_packet *packet, long, void *data)
-+OggVorbisFileReader::readPacket(OGGZ *, oggz_packet *packet, long, void *data)
- {
- OggVorbisFileReader *reader = (OggVorbisFileReader *)data;
- FishSound *fs = reader->m_fishSound;
- 
--fish_sound_prepare_truncation(fs, packet->granulepos, packet->e_o_s);
--fish_sound_decode(fs, packet->packet, packet->bytes);
-+fish_sound_prepare_truncation(fs, packet->op.granulepos, 
packet->op.e_o_s);
-+fish_sound_decode(fs, packet->op.packet, packet->op.bytes);
- 
--reader->m_bytesRead += packet->bytes;
-+reader->m_bytesRead += packet->op.bytes;
- 
- // The number of bytes read by this function is smaller than
- // the file size because of the packet headers
-Index: sonic-visualiser-1.7.1/data/fileio/OggVorbisFileReader.h
-===
 sonic-visualiser-1.7.1.orig/data/fileio/OggVorbisFileReader.h
-+++ sonic-visualiser-1.7.1/data/fileio/OggVorbisFileReader.h
-@@ -82,7 +82,7 @@ protected:
- bool m_cancelled;
- int m_completion;
-  
--static int readPacket(OGGZ *, ogg_packet *, long, void *);
-+static int readPacket(OGGZ *, oggz_packet *, long, void *);
- static int acceptFrames(FishSound *, float **, long, void *);
- 
- class DecodeThread : public Thread

diff --git 
a/media-sound/sonic-visualiser/files/sonic-visualiser-1.8-configure.patch 
b/media-sound/sonic-visualiser/files/sonic-visualiser-1.8-configure.patch
deleted file mode 100644
index 

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

2016-12-31 Thread Alexis Ballier
commit: 978b8a090603ea3947568205f9afc6a78dda61ef
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Dec 31 11:49:46 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Dec 31 11:49:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=978b8a09

media-libs/libass: bump to 0.13.5

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/libass/Manifest |  1 +
 media-libs/libass/libass-0.13.5.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/media-libs/libass/Manifest b/media-libs/libass/Manifest
index eab4944..b84f445 100644
--- a/media-libs/libass/Manifest
+++ b/media-libs/libass/Manifest
@@ -5,3 +5,4 @@ DIST libass-0.13.1.tar.xz 318840 SHA256 
4aa36b1876a61cab46fc9284fee84224b9e2840f
 DIST libass-0.13.2.tar.xz 348444 SHA256 
d698d0a6adca7c36c5a86b540d67b05bfd36cebc3c351ab7646497c43fe1face SHA512 
71d495c02ea478b8632c177cef8605d23377e2da2c56dd3a1fa59f9a2d01cc642d4d9dc383083ef1dee8ccf2a6e6f25a4ad9bb7dff3618e7646161731b7312c7
 WHIRLPOOL 
0c5517fc0cae9ae775300b9c03eb1f141b607b6e43413e56f2dc5de490f5cbe57fd9acc2caa9b6dc5505d7c7b2aec0ae4426fbe2e75010e0c9ffaf2f7a0f7fed
 DIST libass-0.13.3.tar.xz 351012 SHA256 
a641b653d7c9f2f3b9d6a5e5a906a004ac3e110487ad485d9dd029e944bb3f6d SHA512 
a6c9ba5579e3dbd6da21866c533e32ebdeb53dbafd5850a85b514927f3a89cec1c19da247616b76950a753ba091c49a7bf8069b9112fe4ca3411573d0a3430b3
 WHIRLPOOL 
b8116d3ffce9c3713b6b8ab5286b35e1afd704c40bab78e60d46c2ddf9910ce21c51046b3738d3901f97a234b60360929d6959b159e29fd2cf0da7995cebf7ca
 DIST libass-0.13.4.tar.xz 350840 SHA256 
d84a2fc89011b99d87fc47af91906622707c165d1860e9f774825ebbbc9c9fb6 SHA512 
a46712069684755193df423753216bb4584e561ebec2202f059d8a206616d936b74b401cc53e62040f06c42b4840033003deac39d1b4bae7655b465fcab24f9d
 WHIRLPOOL 
7727e21724c884ea71a4c03cd554ac0fa6a26bbd37c09e146b7b80ae7a757e8e3fe6075cc68879dd71ce196116daa49741e91a859867c9c44cbcca48c3c0
+DIST libass-0.13.5.tar.xz 350196 SHA256 
9387a2421b6e6a132c7d473de594b9f0367aa85af64aa103b66f0861431b1596 SHA512 
4fc0965dc930c7e74fd2938080dd10d74ee2484c2650cd623c80aed5ed0852022c7c3b5b1a17501620af22bcffd0cbdc9ddbd1697f23213e7b5f431699d1e23f
 WHIRLPOOL 
a4b3747601781b27b012fa23943663e29c699d26f2e71c5a8707f23f7a1bb64ca58af64c3af3e32989f0894f940e2bd2214b0137901e0efcb4c7dba939fbb1fb

diff --git a/media-libs/libass/libass-0.13.5.ebuild 
b/media-libs/libass/libass-0.13.5.ebuild
new file mode 100644
index ..2414f0c
--- /dev/null
+++ b/media-libs/libass/libass-0.13.5.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils multilib-minimal
+
+DESCRIPTION="Library for SSA/ASS subtitles rendering"
+HOMEPAGE="https://github.com/libass/libass;
+SRC_URI="https://github.com/libass/libass/releases/download/${PV}/${P}.tar.xz;
+
+LICENSE="ISC"
+SLOT="0/5" # subslot = libass soname version
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
+IUSE="+fontconfig +harfbuzz static-libs"
+
+RDEPEND="fontconfig? ( >=media-libs/fontconfig-2.10.92[${MULTILIB_USEDEP}] )
+   >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}]
+   >=virtual/libiconv-0-r1[${MULTILIB_USEDEP}]
+   >=dev-libs/fribidi-0.19.5-r1[${MULTILIB_USEDEP}]
+   harfbuzz? ( >=media-libs/harfbuzz-0.9.12[truetype,${MULTILIB_USEDEP}] )"
+
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+X86_CPU_OPTS="abi_x86_32 abi_x86_64"
+for i in ${X86_CPU_OPTS} ; do
+   DEPEND="${DEPEND}
+   ${i}? ( dev-lang/yasm )"
+done
+
+DOCS="Changelog"
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   $(use_enable fontconfig) \
+   $(use_enable harfbuzz) \
+   $(use_enable static-libs static) \
+   --disable-require-system-font-provider
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   prune_libtool_files
+}



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

2016-12-31 Thread Alexis Ballier
commit: 50e6e683bf937d6cea37fa6760ac6c9f69199a3f
Author: Alexis Ballier  gentoo  org>
AuthorDate: Sat Dec 31 11:54:20 2016 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Sat Dec 31 11:54:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50e6e683

media-libs/libtimidity: bump to 0.2.2

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-libs/libtimidity/Manifest |  1 +
 media-libs/libtimidity/libtimidity-0.2.2.ebuild | 29 +
 2 files changed, 30 insertions(+)

diff --git a/media-libs/libtimidity/Manifest b/media-libs/libtimidity/Manifest
index 4ebe2e0..3c41c40 100644
--- a/media-libs/libtimidity/Manifest
+++ b/media-libs/libtimidity/Manifest
@@ -1,2 +1,3 @@
 DIST libtimidity-0.1.0.tar.bz2 273410 SHA256 
52c6de6608ba640b4678041c01320290790a1f18c901ef03575fbf47807350bf SHA512 
7401e9b85c7e93c17871a9d767dfa9434808bf90d7d693522862c5f534f56dcac6c39fe24fc38b097505df349dad9f57e7ea2c6ae2deb9adce7d2ec861184ed1
 WHIRLPOOL 
380075ba9b84a14f7ad36a7f974d74d94a221f375c2d59bf3afcfa4fb616f01945f1c9c8d0a940763d558243d9213b252850b81003b00174e31a47ea0b35e4f6
 DIST libtimidity-0.2.0.tar.gz 420643 SHA256 
33acd168bcf133621bf68c0faa91ddb16b036500ce3199470729e72e29ef9a02 SHA512 
691f38c69e344d328aa0a98846d6023f22fcb81bac33a6cb4df0c2c05df9c84a1818732f7498ff9aa942c9939dab8f0a318b49769e9f934e417c3ee540af2c55
 WHIRLPOOL 
d514434a8a9f7988f6bd0ac15ca51ce5acfb7001c88fff50f189bd3a01c67a1dfcaf7b046a6559b96e7dbf210367692aa2f8338a9d38c1b4c473dad4e94775ec
+DIST libtimidity-0.2.2.tar.gz 420174 SHA256 
ab2dc5ab49b7b9f28601629cc8cdf482a1199bcc6c79d33ed0e1f1b1b51356be SHA512 
07b0a0d0467e746b0e61656b76157e1291f21a9eac1249457feec49d661a423069e2aca95e45819591d2c29f9cd9a8b5f5cb7ce6cb0e8d2c30eb28c80293e624
 WHIRLPOOL 
2a6bb29bc64673ea8cff6484060c905d54dee81b168d0f15f74b207f4ddc4b7c5da55a3a718841361973480d83d26af6235bff315e9cb5d7f15bff5510b5

diff --git a/media-libs/libtimidity/libtimidity-0.2.2.ebuild 
b/media-libs/libtimidity/libtimidity-0.2.2.ebuild
new file mode 100644
index ..3203f12
--- /dev/null
+++ b/media-libs/libtimidity/libtimidity-0.2.2.ebuild
@@ -0,0 +1,29 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit multilib-minimal
+
+DESCRIPTION="MIDI to WAVE converter library"
+HOMEPAGE="http://libtimidity.sourceforge.net;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1"
+SLOT="0/2"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="ao debug"
+
+RDEPEND="ao? ( >=media-libs/libao-1.1.0-r2[${MULTILIB_USEDEP}] )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+RESTRICT="test"
+DOCS="AUTHORS CHANGES TODO README*"
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf \
+   --disable-static \
+   $(use_enable ao) \
+   $(use_enable debug)
+}



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

2016-12-31 Thread Patrice Clement
commit: ef1485f8c895be8901b7e55fca3f24d44ef83ee7
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Dec 31 10:36:45 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Dec 31 10:38:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef1485f8

app-misc/trash-cli: version bump.

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

Package-Manager: portage-2.3.0

 app-misc/trash-cli/Manifest|  1 +
 app-misc/trash-cli/trash-cli-0.16.12.29.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/app-misc/trash-cli/Manifest b/app-misc/trash-cli/Manifest
index cca0346..c517adf 100644
--- a/app-misc/trash-cli/Manifest
+++ b/app-misc/trash-cli/Manifest
@@ -1 +1,2 @@
 DIST trash-cli-0.12.9.14.tar.gz 62090 SHA256 
e0371b28324188d4936cbeea7c74f85a28306588c1ad15b5d3af33372bd5eb11 SHA512 
3846ec4e2e491b09ad93134313a875fb3e072abe3e895956b62a3e4f350c1f10dd1ded3fea0caec3fa8a6bd39f2d0a63ac6a3a070a6204fd2f27f1e447f5ba6c
 WHIRLPOOL 
ee9bb75ca3b3b9f141777a581862b57dd12db38490761dc2cd429ec60eca972292b207063615d8a2c233dd613772fb65a7c6faaadd925410ce9f964b10a8e445
+DIST trash-cli-0.16.12.29.tar.gz 66826 SHA256 
b891b6a5d1b7242b1402cb227f52faf638c2b5ce673925e1221236b4d95bd3f6 SHA512 
a8a94205233ac600a98324b95829d1f00debaca95c85c51fa12f7a65ae6f24fda58370d8fe0095bf33327cbddae7dfb02c2587efffd2d7c206c7f7cb0a59953e
 WHIRLPOOL 
0d2d6531430c846d1b28e3b27767d9e1a75e8bc4402023d9ddd44a56b88e89ea92529a8815a3158dceceaeb08c8aca2eb5cae20402c8197c1bab27b4ebb1

diff --git a/app-misc/trash-cli/trash-cli-0.16.12.29.ebuild 
b/app-misc/trash-cli/trash-cli-0.16.12.29.ebuild
new file mode 100644
index ..389f7af
--- /dev/null
+++ b/app-misc/trash-cli/trash-cli-0.16.12.29.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Python scripts to manipulate trash cans via the command line"
+HOMEPAGE="https://github.com/andreafrancia/trash-cli;
+SRC_URI="https://github.com/andreafrancia/${PN}/tarball/${PV} -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"



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

2016-12-31 Thread Ian Whyman
commit: 92591ba64326fbbf76d6c2424a96526e83629ae3
Author: Ian Whyman  gentoo  org>
AuthorDate: Sat Dec 31 09:53:28 2016 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Sat Dec 31 09:53:28 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92591ba6

media-tv/tvnamer: Version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 media-tv/tvnamer/Manifest   |  1 +
 media-tv/tvnamer/tvnamer-2.4.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/media-tv/tvnamer/Manifest b/media-tv/tvnamer/Manifest
index f335dd9..dec98ea 100644
--- a/media-tv/tvnamer/Manifest
+++ b/media-tv/tvnamer/Manifest
@@ -1 +1,2 @@
 DIST tvnamer-2.3.tar.gz 44415 SHA256 
230b5608002f048640e270639cfb43f3301f08127af46e1243a033c8e1c62696 SHA512 
b1b0ac4e665a04215cb3d4e738197285c800c554b276e56ccd14af17fc624ffe7dab92b208f9791806045eb1ad0a59d6e76e52464e488f919e48dff2a879d96c
 WHIRLPOOL 
e04543a1921c327681fc748d85a9278270ebaa9ac211e069ed78309b3cbed64c86ee5114e0a13827418546ed9ec550c6dc1588ecd5386cf29e9cdabea0cc82cb
+DIST tvnamer-2.4.tar.gz 45272 SHA256 
5b756daf16f295b7759fe89a53705bc323e3edce1a926404f3b70b6579fd3182 SHA512 
9271dca535910abed3f5ce24de4e65f7b951d2b6f80e07854bef06d52f7cdf40be8eb76934467ebae08bf919503a434c527a37caade1a3e696fbceb4446884fd
 WHIRLPOOL 
ea8e829e5d452fcf2b334683ae1fe72e569444a4d19c95e13ca7ccc5a8ffb3adcd8a4606a4d9fc1554c1ef90ffad7da0d59095d25e5d4dd81d4dfe4631e17c36

diff --git a/media-tv/tvnamer/tvnamer-2.4.ebuild 
b/media-tv/tvnamer/tvnamer-2.4.ebuild
new file mode 100644
index ..1074af3
--- /dev/null
+++ b/media-tv/tvnamer/tvnamer-2.4.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 )
+inherit distutils-r1
+
+DESCRIPTION="Automatic TV episode file renamer, data from thetvdb.com"
+HOMEPAGE="https://github.com/dbr/tvnamer;
+SRC_URI="mirror://pypi/t/${PN}/${P}.tar.gz"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-python/tvdb_api"
+DEPEND="${DEPEND}
+   dev-python/setuptools
+"



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

2016-12-31 Thread Ian Whyman
commit: 1f787782eb37f8199419d725c21086346e7d0b6b
Author: Ian Whyman  gentoo  org>
AuthorDate: Sat Dec 31 09:38:12 2016 +
Commit: Ian Whyman  gentoo  org>
CommitDate: Sat Dec 31 09:38:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f787782

dev-python/rarfile: Version bump

Package-Manager: Portage-2.3.3, Repoman-2.3.1

 dev-python/rarfile/Manifest   |  1 +
 dev-python/rarfile/rarfile-3.0.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/dev-python/rarfile/Manifest b/dev-python/rarfile/Manifest
index b0d4a24..1f8c3a6 100644
--- a/dev-python/rarfile/Manifest
+++ b/dev-python/rarfile/Manifest
@@ -1 +1,2 @@
 DIST rarfile-2.8.tar.gz 38204 SHA256 
2a27e401daa6d8ff0df1112a274a3661ca3e4afaac626217506fb1391069ca61 SHA512 
6d249b1be9f286185d37fc5eaeae01c4b7153bf6248e66285099f7b9f920419986c27b006fd5511ffe4ae6e3b5214956ccb37ce5be5fc2673880cd7b2af0f98a
 WHIRLPOOL 
37b28beb98a78403031c6f15d429d42e716401cb7e733b2c405739d022eb54800ee4d4b9223cbcfdd5d78d91689eb24362e6cf6120654b9f22d18423e93c171c
+DIST rarfile-3.0.tar.gz 110665 SHA256 
e816409e3b36794507cbe0b678bed3e4703d7412c5f7f9201a510ed6fdc66c35 SHA512 
b0b816bf09fe455e4d8d35b447c30e7810468a6927555164a1b513d4161f3fd4e77a37439620bd935c3a12e46b1e5eda3e35d7d281899d2f9fd26b6e989aa6e4
 WHIRLPOOL 
529097a0ba1e024656e80344162a866eb639ae20df9590c4d51bdd7d289ed28bf79bccbd26b05a86e9e6f1781d10e422d16291d7bc16f81075a67401484053d4

diff --git a/dev-python/rarfile/rarfile-3.0.ebuild 
b/dev-python/rarfile/rarfile-3.0.ebuild
new file mode 100644
index ..3627f56
--- /dev/null
+++ b/dev-python/rarfile/rarfile-3.0.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5} )
+inherit distutils-r1
+
+DESCRIPTION="Module for RAR archive reading"
+HOMEPAGE="https://github.com/markokr/rarfile;
+SRC_URI="mirror://pypi/r/${PN}/${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+compressed"
+
+RDEPEND="${DEPEND}
+   compressed? ( || ( app-arch/unrar app-arch/rar ) )"



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

2016-12-31 Thread Agostino Sarubbo
commit: 32be28508395ef7e88807cb19947f9e464faf81e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 08:52:43 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 08:52:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32be2850

net-libs/xrootd: x86 stable wrt bug #601870

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

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

diff --git a/net-libs/xrootd/xrootd-4.4.0.ebuild 
b/net-libs/xrootd/xrootd-4.4.0.ebuild
index 0ba13e7..89becc8 100644
--- a/net-libs/xrootd/xrootd-4.4.0.ebuild
+++ b/net-libs/xrootd/xrootd-4.4.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://xrootd.org/download/v${PV}/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc fuse http kerberos readline ssl test"
 
 RDEPEND="



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

2016-12-31 Thread Agostino Sarubbo
commit: 54fdd0fb6938d941c1312613063a596ee6956840
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sat Dec 31 08:52:15 2016 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sat Dec 31 08:52:15 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54fdd0fb

net-libs/xrootd: amd64 stable wrt bug #601870

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

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

diff --git a/net-libs/xrootd/xrootd-4.4.0.ebuild 
b/net-libs/xrootd/xrootd-4.4.0.ebuild
index bae1b0a..0ba13e7 100644
--- a/net-libs/xrootd/xrootd-4.4.0.ebuild
+++ b/net-libs/xrootd/xrootd-4.4.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="http://xrootd.org/download/v${PV}/${P}.tar.gz;
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc fuse http kerberos readline ssl test"
 
 RDEPEND="