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

2016-09-03 Thread Kent Fredric
commit: e0631bd3e5aa6d45efcfec8f2d2ce9199fdd9e6c
Author: Kent Fredric  gentoo  org>
AuthorDate: Sun Sep  4 04:59:42 2016 +
Commit: Kent Fredric  gentoo  org>
CommitDate: Sun Sep  4 05:01:44 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0631bd3

dev-java/boot-bin: Added at 2.6.0

This is mostly just giving users a better choice than "sudo bash curl..."

boot will still have to install its own dependencies when executed via maven
glue into ~/.m2/, but this still means they can easily get `boot` accessible
globally in "$PATH" without security paranoia, and from then on it
"mostly just works" without needing to understand boot-specific install
procedures.

Ideally this itself will be built from sources one day, but java upstream
logic fights this at every stage.

Also, "boot -u" still does "something", but it doesn't do anything useful.

Package-Manager: portage-2.3.0

 dev-java/boot-bin/Manifest  |  1 +
 dev-java/boot-bin/boot-bin-2.6.0.ebuild | 60 +
 dev-java/boot-bin/files/boot|  6 
 dev-java/boot-bin/metadata.xml  | 11 ++
 4 files changed, 78 insertions(+)

diff --git a/dev-java/boot-bin/Manifest b/dev-java/boot-bin/Manifest
new file mode 100644
index ..9d842b5
--- /dev/null
+++ b/dev-java/boot-bin/Manifest
@@ -0,0 +1 @@
+DIST boot-2.6.0.jar 8289462 SHA256 
6ad8b10ff63b5ed884fefef9b784fd05675d94486526d059ebcc2c3b8a8a7701 SHA512 
715aa320c0e44a2376020aa84c0640ae8e6fb15a4842b4267ff58e1d09682aae17f74dc568e50fa611993947bcd7b1430157a0f0b6b8bcddff1eaa3149ddc9ad
 WHIRLPOOL 
e39fa91d481ecf74747da7b81477d27110c61ad51ad5b662da9ef60c0a8727c035abacbc0cf1201d6dce2e31d76115ce2fecc2193228ae23dfe251e11858d93f

diff --git a/dev-java/boot-bin/boot-bin-2.6.0.ebuild 
b/dev-java/boot-bin/boot-bin-2.6.0.ebuild
new file mode 100644
index ..8bf39a4
--- /dev/null
+++ b/dev-java/boot-bin/boot-bin-2.6.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit java-pkg-2
+
+MY_PN="${PN%-bin}"
+MY_PNV="${MY_PN}-${PV}"
+
+DESCRIPTION="Build tooling for Clojure"
+HOMEPAGE="http://boot-clj.com/;
+SRC_URI="https://github.com/boot-clj/${MY_PN}/releases/download/${PV}/${MY_PN}.jar
 -> ${MY_PNV}.jar"
+
+LICENSE="EPL-1.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND=">=virtual/jdk-1.7:*"
+DEPEND=">=virtual/jdk-1.7:*"
+
+RESTRICT="test"
+
+src_unpack() {
+   mkdir -p "${S}" || die "Can't mkdir ${S}"
+   cd "${S}"   || die "Can't enter ${S}"
+   for file in ${A}; do
+   einfo "Copying ${file}"
+   cp "${DISTDIR}/${file}" "${S}/" || die "Can't copy ${file}"
+   done
+}
+
+src_prepare() {
+   einfo "Copying boot shell-script"
+   cp "${FILESDIR}/boot" "${S}/" || die "Can't copy boot"
+
+   java-pkg_init_paths_
+
+   sed -i "s|@@JAVA_PKG_SHAREPATH@@|${JAVA_PKG_SHAREPATH}|g"   
"${S}/boot" || die "Can't patch JAVA_PKG_SHAREPATH path in boot"
+   sed -i "s|@@JAVA_PKG_JARDEST@@|${JAVA_PKG_JARDEST}|g"   
"${S}/boot" || die "Can't patch JAVA_PKG_JARDEST path in boot"
+   sed -i "s|@@PN@@|${PN}|g"   
"${S}/boot" || die "Can't patch PN in boot"
+
+   default
+}
+
+src_compile() { :; }
+
+src_install() {
+   dobin "${S}/boot"
+   java-pkg_newjar "${S}/${MY_PNV}.jar"
+}
+
+pkg_postinst() {
+   einfo "This package will still download a whole lot of its own runtime"
+   einfo "dependencies the first time you run it."
+   einfo ""
+   einfo "This currently can't be helped and is expected behaviour for a"
+   einfo "java based development toolkit"
+}

diff --git a/dev-java/boot-bin/files/boot b/dev-java/boot-bin/files/boot
new file mode 100644
index ..acd8e40
--- /dev/null
+++ b/dev-java/boot-bin/files/boot
@@ -0,0 +1,6 @@
+source @@JAVA_PKG_SHAREPATH@@/package.env
+jarpath="@@JAVA_PKG_JARDEST@@/@@PN@@.jar"
+declare -a "options=($BOOT_JVM_OPTIONS)"
+self="${BASH_SOURCE[0]}"
+exec ${BOOT_JAVA_COMMAND:-java} "${options[@]}" -Dboot.app.path="$jarpath" 
-jar "$jarpath" "$@"
+

diff --git a/dev-java/boot-bin/metadata.xml b/dev-java/boot-bin/metadata.xml
new file mode 100644
index ..c22b260
--- /dev/null
+++ b/dev-java/boot-bin/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   ken...@gentoo.org
+   Kent Fredric
+   
+   
+   j...@gentoo.org
+   
+




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

2016-09-03 Thread Matt Thode
commit: 358ef4db0101e0c30bab9a8ae5cb7bedbba51a95
Author: Matthew Thode  gentoo  org>
AuthorDate: Sun Sep  4 02:44:41 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sun Sep  4 02:44:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=358ef4db

app-crypt/certbot: psutil IS required...

Package-Manager: portage-2.2.28

 .../{certbot-0.8.1-r1.ebuild => certbot-0.8.1-r2.ebuild}   | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/app-crypt/certbot/certbot-0.8.1-r1.ebuild 
b/app-crypt/certbot/certbot-0.8.1-r2.ebuild
similarity index 83%
rename from app-crypt/certbot/certbot-0.8.1-r1.ebuild
rename to app-crypt/certbot/certbot-0.8.1-r2.ebuild
index 3f4ec97..335b2ae 100644
--- a/app-crypt/certbot/certbot-0.8.1-r1.ebuild
+++ b/app-crypt/certbot/certbot-0.8.1-r2.ebuild
@@ -33,6 +33,7 @@ RDEPEND="
dev-python/pyrfc3339[${PYTHON_USEDEP}]
dev-python/pytz[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
+   >=dev-python/psutil-2.2.1[${PYTHON_USEDEP}]
dev-python/zope-component[${PYTHON_USEDEP}]
dev-python/zope-interface[${PYTHON_USEDEP}]
$(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:python-2' 
python2_7)
@@ -42,13 +43,12 @@ RDEPEND="
 DEPEND="
>=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
test? (
-   >=dev-python/astroid-1.3.5
-   dev-python/coverage
-   dev-python/nose
-   dev-python/pep8
-   >=dev-python/psutil-2.2.1
-   >=dev-python/pylint-1.4.2
-   dev-python/wheel
+   >=dev-python/astroid-1.3.5[${PYTHON_USEDEP}]
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/nose[${PYTHON_USEDEP}]
+   dev-python/pep8[${PYTHON_USEDEP}]
+   >=dev-python/pylint-1.4.2[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
)"
 
 python_test() {



[gentoo-commits] repo/user/ssnb:master commit in: dev-util/idea-ultimate/

2016-09-03 Thread Samuel Bernardo
commit: cf9623703da19cfdfe291378adefdf37dad82d81
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun Sep  4 00:58:11 2016 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun Sep  4 00:58:11 2016 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=cf962370

add idea-ultimate latest version

 dev-util/idea-ultimate/Manifest|  2 +
 .../idea-ultimate-2016.2.3.162.1812.17.ebuild  | 82 ++
 2 files changed, 84 insertions(+)

diff --git a/dev-util/idea-ultimate/Manifest b/dev-util/idea-ultimate/Manifest
index ea999f4..815a88e 100644
--- a/dev-util/idea-ultimate/Manifest
+++ b/dev-util/idea-ultimate/Manifest
@@ -1,6 +1,8 @@
 DIST ideaIU-2016.2.1.tar.gz 497983087 SHA256 
36c2214f74a66c11e589c2c5c1ec2a5c117d2ccb9e50ebd44a6c3a44f562 SHA512 
211bd536fd169a9e9e0c2d0165bbbf6b44085323be022f46fb539ed42c2a40a1cb8528aa422fbc6e2e09157504e33d13646159804fe5f79b04d9015e73b73461
 WHIRLPOOL 
72cee50837bf1d471d68b49ee50fd8ba4cd7d06a8c8dd2db4274a11fdc58b9712c76c64d453972c4400a43f50462a3a2684cb7159aa77d8b061af3071a21a4c9
+DIST ideaIU-2016.2.3.tar.gz 505361106 SHA256 
d30f431763231d1666a1faa96d1f79589ae0cc539a955bd0d29745b2d51c1ef9 SHA512 
3ca02a942982fcc9fd77bafda508c89f839fa698ad20f3c22dadcd53629524bb47f324bbe56ddb5ca5b0e0501f4d38d278fcf24518d1c982369f0280808f7d43
 WHIRLPOOL 
19ee5ca7ceac83936c364b037e93deaaeafa9a93fdf24cfbb1afffcb7fd208e3f0c7a37c4ad0dbe601f055d2d02f36c722a11fdac3bd6562dd075bdb9397b25e
 DIST ideaIU-2016.2.tar.gz 495029721 SHA256 
647ea2b7c1954012ca2e1e027b59ad7fa6cf24dee2dcc22c135155c60cc41182 SHA512 
d61ad48fe7751fbff3551426f290062124002f561eace16c7ddfddf6c8ee33b449b0e9c573e9536dc1d8750458b9f44cde82433168a91537bbfc5301e3aee2cd
 WHIRLPOOL 
596157ed4fd4bd007539a2664f0c317b8fba7fb8f89aaa28d8bbbc5bdda75671a9d97bd536faed0328855e99bb81970abf694271c70cb566cf8e6814662341ba
 EBUILD idea-ultimate-2016.2.1.162.1447.26.ebuild 2210 SHA256 
66790283cbee489109e00427aafaf7d7437b6046cde9dc0c40c4be2490d09453 SHA512 
ec8950de1273a25c1e2d0832af4d3f61336311fa2d95fb2f21be4304411ca8793107b1034993672fe49e66db7744fa17857ee365045b6f47fa06e73579493d39
 WHIRLPOOL 
845e8bd93b586781c5d2f17758bb5191a3d9f84452c738365bffd012a99ea29ad4fd564ff1695f0ff541cc89801c92a1eaaac67a56408688dd6d6fef6245db3b
 EBUILD idea-ultimate-2016.2.162.1121.32.ebuild 2199 SHA256 
3d97aa08ce002ee236eb63178394e2f8c0ba89c0959535c35d4f198351390376 SHA512 
a51a94d962c6dde8b0cafdf483389b2ea4e806ac96000922644454309f10365b2fa643f5394d6207fe1d51140570bad8fbbfe2ef963ca476b3f3e754d0dd8094
 WHIRLPOOL 
0bcb5baeb07ddb112a754b6dd7a38ab329db4852858d581c698c5e8169868ac5a8e260921977240908d29c82037652bd37b16cc0b0da13b422ef3c5712454883
+EBUILD idea-ultimate-2016.2.3.162.1812.17.ebuild 2210 SHA256 
66790283cbee489109e00427aafaf7d7437b6046cde9dc0c40c4be2490d09453 SHA512 
ec8950de1273a25c1e2d0832af4d3f61336311fa2d95fb2f21be4304411ca8793107b1034993672fe49e66db7744fa17857ee365045b6f47fa06e73579493d39
 WHIRLPOOL 
845e8bd93b586781c5d2f17758bb5191a3d9f84452c738365bffd012a99ea29ad4fd564ff1695f0ff541cc89801c92a1eaaac67a56408688dd6d6fef6245db3b
 MISC ChangeLog 142 SHA256 
3fb664d9c210061dd87dc6be4948fadbcc413e5a6bd09f4a262aa092b7f09648 SHA512 
f66d54089ee757d3bc997f4edba58e6b6b91d47c6fca9f33edf4bfc9e03acabfc7af723c1238c313ccf6cde747c7b91274e67c15abc92da8dd6dd5ac58006b7b
 WHIRLPOOL 
57d321122e01e8aed81d0393610296a2c29b30f81c03b8114b7ac854dfe2f5eb03841fe08e9f25c63598640ca754352ba5063f432be64d79473553ce98735aa5
 MISC metadata.xml 594 SHA256 
1261f2f20c826a09850a69f95d9f143f0eb6462177310a00624ae64b17e04209 SHA512 
2c830e91b8a9f97f8708392469121a4f5309e99cd58138a0d661394a5ca8a7c07ce47bc0cc9516aa1e6b106131b492fbbee6522be419e6ed7690d88cf2510df2
 WHIRLPOOL 
68f94bf90d0099971d88923aee992131960665d9efc689fbac28cc69fe8b0b3a28434987a8032b998d4581eb735c439e8f7554366482497c5b11fed3db3d3d80

diff --git a/dev-util/idea-ultimate/idea-ultimate-2016.2.3.162.1812.17.ebuild 
b/dev-util/idea-ultimate/idea-ultimate-2016.2.3.162.1812.17.ebuild
new file mode 100644
index 000..9f54b9e
--- /dev/null
+++ b/dev-util/idea-ultimate/idea-ultimate-2016.2.3.162.1812.17.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit eutils versionator
+
+SLOT="0"
+PV_STRING="$(get_version_component_range 4-6)"
+MY_PV="$(get_version_component_range 1-3)"
+MY_PN="idea"
+
+# distinguish settings for official stable releases and EAP-version releases
+if [[ "$(get_version_component_range 7)x" = "prex" ]]
+then
+   # upstream EAP
+   KEYWORDS=""
+   
SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IU-${PV_STRING}.tar.gz;
+else
+   # upstream stable
+   KEYWORDS="~amd64 ~x86"
+   SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IU-${MY_PV}.tar.gz;
+fi
+
+DESCRIPTION="A complete toolset for web, mobile and enterprise development"
+HOMEPAGE="https://www.jetbrains.com/idea;
+
+LICENSE="IDEA
+   || ( IDEA_Academic 

[gentoo-commits] repo/user/ssnb:master commit in: dev-util/clion/

2016-09-03 Thread Samuel Bernardo
commit: bd0255c3448192bdffc08ab2f802546a7cf4c5b3
Author: Samuel Bernardo  gmail  com>
AuthorDate: Sun Sep  4 00:33:10 2016 +
Commit: Samuel Bernardo  gmail  com>
CommitDate: Sun Sep  4 00:33:10 2016 +
URL:https://gitweb.gentoo.org/repo/user/ssnb.git/commit/?id=bd0255c3

resolve missing permissions in files

 dev-util/clion/Manifest| 2 +-
 dev-util/clion/clion-2016.2.ebuild | 3 +++
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-util/clion/Manifest b/dev-util/clion/Manifest
index 660524b..1bd1e17 100644
--- a/dev-util/clion/Manifest
+++ b/dev-util/clion/Manifest
@@ -1,4 +1,4 @@
 AUX config 27 SHA256 
b8188be7e410b9fe8ad955837ca2bf9ef09dc1b55fba3b621b9ea417d4af9c84 SHA512 
83fcceb9c13ddd698752f5f1ed3a82a6aa792a0c86dcfa56a6e498b04cc9d7b55d7ccf93e9db46e91a719788cfbf1eeead50e1ad824e09e4b64a9896dc8e37bc
 WHIRLPOOL 
64df418e286eb2a3fe60383a106143751a566d3a153f199f349578ee92585ba1f7d341aa4bd56ad52fd9d9ccd27fab17421ba07706970cb48a9fa2e5354ac9f7
 DIST clion-2016.2.tar.gz 282330694 SHA256 
647be9c5e20b76114ad20b9cb7a5458b172f6a839bdc617f81531a7d31c18a37 SHA512 
f6586e92844cde1c84af6637370ee39bf80c78cfbde3808d59945f8a88b64f90c574ab1025ef2558840c8ed1f31e9d8742034f27424ec8412f0baff19d3912d2
 WHIRLPOOL 
7f6965b13ffea9c95b6ed7b8a03b24e0115dbee746ca59e4622505a52ccd944a849f593de88735b3d27161e4a49cd507971157441fb3ad44df6e2762a5ab81c9
-EBUILD clion-2016.2.ebuild 1385 SHA256 
85e876f83ce91012dce829ba7125d2c4f41053af6f567915a03614e060a7a0c2 SHA512 
acd785e1c3ae4f02a6a1c66f4990b2512f6cfc6f19c3e8816705a14aa1b76dbfadb7dadc1a85acac83b12cc8631040b760e4094ed247433f3eb22bffceced0cd
 WHIRLPOOL 
ca32bf7a1ebfc062865ef148fef83071c62723b482631b646f53f4572f04e9ece939874124275774482d8481737803090089e62bbbc25db043d640c171340169
+EBUILD clion-2016.2.ebuild 1561 SHA256 
d75f2c121138c2263040ca3ef27a93be6110c4e2447f6e72a53f071f1a6ccd78 SHA512 
56f6476bdc9ab7893e0a64523b164b58b47e0f08b4d863f2087ab38f972ec23760d75509fab96034d9d8b6596d6f830b2057c0ac37cac42de49172a80fdea1c1
 WHIRLPOOL 
2077a9a565081f914f08f9bedf359c0c5e5af1800a8d420a6e73dc5c10f16ae50beb52be2f5acd8cc53d9e958639712a4cb61ae07c293901a48cfc3c4f90ee1e
 MISC metadata.xml 246 SHA256 
31de89a294c6ff90d5a88948104aa27a86ea35792c466f20db64ab434c682537 SHA512 
cd6648a75839e6059cf877aa79a84600be0a63de66f59efd217ad91bac55a7ed4afd5ce88c90a262b4dd044734403fb90a049b8f19a42289ec3ef1d827b66d77
 WHIRLPOOL 
7f436435371f655a72f4564d4a14b1fdb1be0a130ca0e130804b17104fe9e2c6da44a3ddef859e41ba4eccadff8dfefddbb04dade3e4200fcc557c2fd7af703e

diff --git a/dev-util/clion/clion-2016.2.ebuild 
b/dev-util/clion/clion-2016.2.ebuild
index 450b0fb..619dd18 100644
--- a/dev-util/clion/clion-2016.2.ebuild
+++ b/dev-util/clion/clion-2016.2.ebuild
@@ -43,6 +43,9 @@ src_install() {
 fperms 755 "${dir}/bin/cmake/bin/cmake"
 fperms 755 "${dir}/bin/cmake/bin/cpack"
 fperms 755 "${dir}/bin/cmake/bin/ctest"
+fperms 755 "${dir}/bin/lldb/LLDBFrontend"
+fperms 755 "${dir}/bin/lldb/bin/lldb-server"
+fperms 755 
"${dir}/bin/lldb/lib/python2.7/site-packages/lldb/lldb-argdumper"
 
 newicon "bin/${PN}.svg" "${exe}.svg"
 make_wrapper "${exe}" "/opt/${P}/bin/${PN}.sh"



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

2016-09-03 Thread Gilles Dartiguelongue
commit: 835515a46414bcb5794f90195e0863e108bd58bb
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Sep  3 23:17:22 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Sep  3 23:22:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=835515a4

dev-libs/libgweather: bump from 3.18.1 to 3.18.2

NOAA shut down their METAR provider service, switch to another provider.

Package-Manager: portage-2.3.0

 dev-libs/libgweather/Manifest  |  1 +
 dev-libs/libgweather/libgweather-3.18.2.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/dev-libs/libgweather/Manifest b/dev-libs/libgweather/Manifest
index 0b8a544..4a2ba22 100644
--- a/dev-libs/libgweather/Manifest
+++ b/dev-libs/libgweather/Manifest
@@ -1,2 +1,3 @@
 DIST libgweather-3.18.1.tar.xz 3430524 SHA256 
94b2292f8f7616e2aa81b1516befd7b27682b20acecbd5d656b6954990ca7ad0 SHA512 
1fc6fda3610bcb4efd0eae57ce8706f126301f5d8399ff765d00c9cc8a513150d07cd098bc53e372b338b7801bd003d651cea0f5832edb990197d456bc89370f
 WHIRLPOOL 
19a7ec0d72f3f4740e7c1acfa83eaf6136e6523a094c6b70e85b3bafaed553e4fa6746fea31a10db888c29dc2556559dca7600be2d78b8c98f0a6d32af88bacf
+DIST libgweather-3.18.2.tar.xz 3431224 SHA256 
f35e52fa4023369ef5e04851311b3f15c9d7103ec801d0567eb3dec5851e71e3 SHA512 
6e5ef37a50b22bb3941b703046bfcec78c6fd29aad3084c1a707a37f0418bc61c4852aa34501daaf20f6796e528a7ece948092b224d6f696b9d9e856fc384991
 WHIRLPOOL 
58f3d6a0c9acd4460a50077147ca9429a216777b402530632d922b38b9a47dd750b136be377cd3382de4638fa85bbab888a2356539f56e8f68a1787d346f459e
 DIST libgweather-3.20.1.tar.xz 3423740 SHA256 
81eb829fab6375cc9a4d448ae0f790e48f9720e91eb74678b22264cfbc8938d0 SHA512 
4b9403b289d1d99e03aceb6207854369a5b92ea25a784aed322aed2b7e1e4c3b548e256e4222ea05206effb7de403b343031278503429433591496e50a708f23
 WHIRLPOOL 
2d943a7674f240e77656f1365c29926d44942ec87fa2785eb290dbd6b6bffbe1d99c3e6e8984175b01007d5a4df93ea9b4d9acc5abc27e93bde915d6e04bff0c

diff --git a/dev-libs/libgweather/libgweather-3.18.2.ebuild 
b/dev-libs/libgweather/libgweather-3.18.2.ebuild
new file mode 100644
index ..22a7fec
--- /dev/null
+++ b/dev-libs/libgweather/libgweather-3.18.2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala
+
+DESCRIPTION="Library to access weather information from online services"
+HOMEPAGE="https://wiki.gnome.org/Projects/LibGWeather;
+
+LICENSE="GPL-2+"
+SLOT="2/3-6" # subslot = 3-(libgweather-3 soname suffix)
+IUSE="glade +introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
+
+COMMON_DEPEND="
+   >=x11-libs/gtk+-3.13.5:3[introspection?]
+   >=dev-libs/glib-2.35.1:2
+   >=net-libs/libsoup-2.34:2.4
+   >=dev-libs/libxml2-2.6.0
+   sci-geosciences/geocode-glib
+   >=sys-libs/timezone-data-2010k
+
+   glade? ( >=dev-util/glade-3.16:3.10 )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   !

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

2016-09-03 Thread Gilles Dartiguelongue
commit: 94871340c99d90dbfb7c4f2409560703e951a31c
Author: Gilles Dartiguelongue  gentoo  org>
AuthorDate: Sat Sep  3 23:20:59 2016 +
Commit: Gilles Dartiguelongue  gentoo  org>
CommitDate: Sat Sep  3 23:22:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94871340

dev-libs/libgweather: bump from 3.20.1 to 3.20.3

NOAA shut down their METAR provider service, switch to another provider.

Package-Manager: portage-2.3.0

 dev-libs/libgweather/Manifest  |  1 +
 dev-libs/libgweather/libgweather-3.20.3.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/dev-libs/libgweather/Manifest b/dev-libs/libgweather/Manifest
index 4a2ba22..9db701b 100644
--- a/dev-libs/libgweather/Manifest
+++ b/dev-libs/libgweather/Manifest
@@ -1,3 +1,4 @@
 DIST libgweather-3.18.1.tar.xz 3430524 SHA256 
94b2292f8f7616e2aa81b1516befd7b27682b20acecbd5d656b6954990ca7ad0 SHA512 
1fc6fda3610bcb4efd0eae57ce8706f126301f5d8399ff765d00c9cc8a513150d07cd098bc53e372b338b7801bd003d651cea0f5832edb990197d456bc89370f
 WHIRLPOOL 
19a7ec0d72f3f4740e7c1acfa83eaf6136e6523a094c6b70e85b3bafaed553e4fa6746fea31a10db888c29dc2556559dca7600be2d78b8c98f0a6d32af88bacf
 DIST libgweather-3.18.2.tar.xz 3431224 SHA256 
f35e52fa4023369ef5e04851311b3f15c9d7103ec801d0567eb3dec5851e71e3 SHA512 
6e5ef37a50b22bb3941b703046bfcec78c6fd29aad3084c1a707a37f0418bc61c4852aa34501daaf20f6796e528a7ece948092b224d6f696b9d9e856fc384991
 WHIRLPOOL 
58f3d6a0c9acd4460a50077147ca9429a216777b402530632d922b38b9a47dd750b136be377cd3382de4638fa85bbab888a2356539f56e8f68a1787d346f459e
 DIST libgweather-3.20.1.tar.xz 3423740 SHA256 
81eb829fab6375cc9a4d448ae0f790e48f9720e91eb74678b22264cfbc8938d0 SHA512 
4b9403b289d1d99e03aceb6207854369a5b92ea25a784aed322aed2b7e1e4c3b548e256e4222ea05206effb7de403b343031278503429433591496e50a708f23
 WHIRLPOOL 
2d943a7674f240e77656f1365c29926d44942ec87fa2785eb290dbd6b6bffbe1d99c3e6e8984175b01007d5a4df93ea9b4d9acc5abc27e93bde915d6e04bff0c
+DIST libgweather-3.20.3.tar.xz 3376700 SHA256 
fb6bc5b64ef5db3dc40a9798f072b83ebcafe7ff5af472aaee70600619b56c0b SHA512 
feaf5a3ec5766934e482224cc4ca970db49c86addaabcae623d3ac1cadc7dc4a4759cb88552af7e92124f52a7a921ceef94759509cdc3e1fe20c749531ef7ad9
 WHIRLPOOL 
5e569741a3e75929d7bdba2e3aa69fc42df9472ecc6626e5f7b95a12dad9d5d5af9a87b73417056b54192b9a0ca47076a21cc18ad5c81a6fd349edaa1b5f7537

diff --git a/dev-libs/libgweather/libgweather-3.20.3.ebuild 
b/dev-libs/libgweather/libgweather-3.20.3.ebuild
new file mode 100644
index ..31cae2a
--- /dev/null
+++ b/dev-libs/libgweather/libgweather-3.20.3.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+VALA_USE_DEPEND="vapigen"
+
+inherit gnome2 vala
+
+DESCRIPTION="Library to access weather information from online services"
+HOMEPAGE="https://wiki.gnome.org/Projects/LibGWeather;
+
+LICENSE="GPL-2+"
+SLOT="2/3-6" # subslot = 3-(libgweather-3 soname suffix)
+IUSE="glade +introspection vala"
+REQUIRED_USE="vala? ( introspection )"
+
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~ppc64 ~sh ~sparc ~x86 ~x86-fbsd 
~x86-interix ~amd64-linux ~x86-linux ~x86-solaris"
+
+COMMON_DEPEND="
+   >=x11-libs/gtk+-3.13.5:3[introspection?]
+   >=dev-libs/glib-2.35.1:2
+   >=net-libs/libsoup-2.44:2.4
+   >=dev-libs/libxml2-2.6.0
+   sci-geosciences/geocode-glib
+   >=sys-libs/timezone-data-2010k
+
+   glade? ( >=dev-util/glade-3.16:3.10 )
+   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+"
+RDEPEND="${COMMON_DEPEND}
+   !

[gentoo-commits] repo/gentoo:master commit in: sci-biology/yass/

2016-09-03 Thread David Seifert
commit: 4a567c8fd34191f0fd1752e8da2a07143b5b7d85
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  3 22:35:56 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  3 23:03:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a567c8f

sci-biology/yass: remove deprecated EAPI ebuilds

Package-Manager: portage-2.3.0

 sci-biology/yass/yass-1.14-r1.ebuild | 36 
 sci-biology/yass/yass-1.14.ebuild| 22 --
 2 files changed, 58 deletions(-)

diff --git a/sci-biology/yass/yass-1.14-r1.ebuild 
b/sci-biology/yass/yass-1.14-r1.ebuild
deleted file mode 100644
index 6476a83..
--- a/sci-biology/yass/yass-1.14-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-inherit autotools eutils
-
-DESCRIPTION="Genomic similarity search with multiple transition constrained 
spaced seeds"
-HOMEPAGE="http://bioinfo.lifl.fr/yass/;
-SRC_URI="http://bioinfo.lifl.fr/yass/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="dmalloc lowmem threads"
-KEYWORDS="~amd64 ~x86"
-
-DEPEND="dmalloc? ( dev-libs/dmalloc )"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PV}-as-needed.patch
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   $(use_enable threads) \
-   $(use_enable lowmem lowmemory) \
-   $(use_with dmalloc)
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc AUTHORS README NEWS || die
-}

diff --git a/sci-biology/yass/yass-1.14.ebuild 
b/sci-biology/yass/yass-1.14.ebuild
deleted file mode 100644
index c0d6242..
--- a/sci-biology/yass/yass-1.14.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="2"
-
-DESCRIPTION="Genomic similarity search with multiple transition constrained 
spaced seeds"
-HOMEPAGE="http://bioinfo.lifl.fr/yass/;
-SRC_URI="http://bioinfo.lifl.fr/yass/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE=""
-KEYWORDS="~amd64 ~x86"
-
-DEPEND=""
-RDEPEND=""
-
-src_install() {
-   einstall || die
-   dodoc AUTHORS README NEWS
-}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/mafft/

2016-09-03 Thread David Seifert
commit: b68b635822e44c2ef09f7bee420e93887f93e2ea
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  3 23:02:55 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  3 23:03:22 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b68b6358

sci-biology/mafft: Version bump to 7.305

* EAPI=6

Package-Manager: portage-2.3.0

 sci-biology/mafft/Manifest   |  1 +
 sci-biology/mafft/mafft-7.305.ebuild | 69 
 2 files changed, 70 insertions(+)

diff --git a/sci-biology/mafft/Manifest b/sci-biology/mafft/Manifest
index 0f4b923..a3e34ca 100644
--- a/sci-biology/mafft/Manifest
+++ b/sci-biology/mafft/Manifest
@@ -1,2 +1,3 @@
 DIST mafft-7.050-without-extensions-src.tgz 380375 SHA256 
29ddb276bfca24f5815acc41f1e640a705bb12c9d29b7c74902ebca68cece7bc SHA512 
ffddedcd03f37241b1493a62bf843eb23caa04089bd0182006aa7669f74de27204d324817e22fec1cb4ae11c4c226db5b725d03ba9f73b30a71ca3d38368d73e
 WHIRLPOOL 
d46d7d4dfe453bfb54b9e418308772fb063bffce1d6d45d92262bee45504301daff9a6e57ecde41912a6c11852bb64510fb5ba6df04c7e79dc671e7a31444d49
 DIST mafft-7.215-without-extensions-src.tgz 393239 SHA256 
22099e42274ef0078302d7cb87180880ee5fd64ef15fdcafd8c95d0018191408 SHA512 
1a44b968e2f9ac9db5d17487163a38a7138dc784e63b3aa4082ff6a16c8e168edd09948e2cf182bc7a466802d4a07bdd7ab23386e251df13520acdfb69ebdada
 WHIRLPOOL 
de43ba4107e3c1149d5ce47085bacc996393a7ef73535777439b7024eea1dce5f28c1b3c7e518f644345b7b5ea5e70fccbcaba18f16ecb9a6f5f5c31a6b5dca4
+DIST mafft-7.305-without-extensions-src.tgz 458448 SHA256 
194503ee6dc9826f5098ac0fd9283034dfee8a1be1287def437f5854dea9317e SHA512 
2aa351dd9b329024f183642cd98287239d12a00a2a65937e072560cba54925bed1fab19fafc734d9a5048ff85151560193ddb0796e0d7510d921fafc4553ebb9
 WHIRLPOOL 
85e9cda397853692f737a4e74159e67e0303076c28d94b85d4039ffe17b72c9d852a8af85941eaaa0fd73e0f1cbdbfe5b6a68e8ad5464506fbb38969f137a1b1

diff --git a/sci-biology/mafft/mafft-7.305.ebuild 
b/sci-biology/mafft/mafft-7.305.ebuild
new file mode 100644
index ..1212659
--- /dev/null
+++ b/sci-biology/mafft/mafft-7.305.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit flag-o-matic toolchain-funcs
+
+EXTENSIONS="-without-extensions"
+
+DESCRIPTION="Multiple sequence alignments using a variety of algorithms"
+HOMEPAGE="http://mafft.cbrc.jp/alignment/software/index.html;
+SRC_URI="http://mafft.cbrc.jp/alignment/software/${P}${EXTENSIONS}-src.tgz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x64-macos ~x86-macos"
+IUSE="threads"
+
+S="${WORKDIR}/${P}${EXTENSIONS}"
+
+src_prepare() {
+   default
+
+   append-cflags -Wno-unused-result
+   use threads && append-cppflags -Denablemultithread
+
+   sed \
+   -e 's/(PREFIX)\/man/(PREFIX)\/share\/man/' \
+   -e 's:$(LDFLAGS)::g' \
+   -e 's:$(CC) -o $@:$(CC) $(LDFLAGS) -o $@:g' \
+   -e 's:$(CC) -shared -o $@:$(CC) $(LDFLAGS) -shared -o $@:g' \
+   -e '/INSTALL/s: -s : :g' \
+   -i core/Makefile || die
+}
+
+src_compile() {
+   cd core || die
+   emake \
+   $(usex threads ENABLE_MULTITHREAD="-Denablemultithread" 
ENABLE_MULTITHREAD="") \
+   PREFIX="${EPREFIX}"/usr \
+   CC="$(tc-getCC)" \
+   CFLAGS="${CFLAGS}"
+}
+
+src_test() {
+   export MAFFT_BINARIES="${S}"/core
+   cd test || die
+   bash ../core/mafft sample > test.fftns2 || die "Tests failed"
+   bash ../core/mafft --maxiterate 100  sample > test.fftnsi || die "Tests 
failed"
+   bash ../core/mafft --globalpair sample > test.gins1 || die "Tests 
failed"
+   bash ../core/mafft --globalpair --maxiterate 100  sample > test.ginsi 
|| die "Tests failed"
+   bash ../core/mafft --localpair sample > test.lins1 || die "Tests failed"
+   bash ../core/mafft --localpair --maxiterate 100  sample > test.linsi || 
die "Tests failed"
+
+   diff test.fftns2 sample.fftns2 || die "Tests failed"
+   diff test.fftnsi sample.fftnsi || die "Tests failed"
+   diff test.gins1 sample.gins1 || die "Tests failed"
+   diff test.ginsi sample.ginsi || die "Tests failed"
+   diff test.lins1 sample.lins1 || die "Tests failed"
+}
+
+src_install() {
+   DOCS=( readme )
+   einstalldocs
+
+   cd core || die
+   emake PREFIX="${ED%/}/usr" install
+}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/yass/

2016-09-03 Thread David Seifert
commit: 49f9e4a0c388e395c0cbf781ea7e3a9db8cc761b
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  3 22:33:38 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  3 23:03:13 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f9e4a0

sci-biology/yass: Port to EAPI=6

Package-Manager: portage-2.3.0

 sci-biology/yass/yass-1.14-r2.ebuild | 33 +
 1 file changed, 33 insertions(+)

diff --git a/sci-biology/yass/yass-1.14-r2.ebuild 
b/sci-biology/yass/yass-1.14-r2.ebuild
new file mode 100644
index ..ff95e74
--- /dev/null
+++ b/sci-biology/yass/yass-1.14-r2.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit autotools
+
+DESCRIPTION="Genomic similarity search with multiple transition constrained 
spaced seeds"
+HOMEPAGE="http://bioinfo.lifl.fr/yass/;
+SRC_URI="http://bioinfo.lifl.fr/yass/files/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="dmalloc lowmem threads"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="dmalloc? ( dev-libs/dmalloc )"
+RDEPEND="${DEPEND}"
+
+PATCHES=( "${FILESDIR}"/${PV}-as-needed.patch )
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable threads) \
+   $(use_enable lowmem lowmemory) \
+   $(use_with dmalloc)
+}



[gentoo-commits] proj/gentoo-mate: New branch: 1.14-bump

2016-09-03 Thread NP Hardass
commit: 
Commit: NP Hardass  gentoo  org>
CommitDate: Sat Sep  3 22:10:00 2016 +

New branch: 1.14-bump




[gentoo-commits] proj/gentoo-mate:master commit in: /

2016-09-03 Thread NP Hardass
commit: f5106836db130a8f4865375c0c5e728f1f6af525
Author: NP-Hardass  gentoo  org>
AuthorDate: Thu Aug 25 01:54:21 2016 +
Commit: NP Hardass  gentoo  org>
CommitDate: Thu Aug 25 01:54:21 2016 +
URL:https://gitweb.gentoo.org/proj/gentoo-mate.git/commit/?id=f5106836

Merge branch 'split-deps'

 app-arch/engrampa/engrampa-.ebuild|  6 --
 app-editors/pluma/pluma-.ebuild   |  8 +---
 app-text/atril/atril-.ebuild  |  8 +---
 dev-libs/libmateweather/libmateweather-.ebuild|  6 --
 dev-python/python-caja/python-caja-.ebuild| 10 ++
 mate-base/caja/caja-.ebuild   | 10 ++
 mate-base/libmatekbd/libmatekbd-.ebuild   |  6 --
 mate-base/mate-applets/mate-applets-.ebuild   | 14 --
 .../mate-control-center-.ebuild   |  7 +--
 mate-base/mate-desktop/mate-desktop-.ebuild   | 14 +++---
 mate-base/mate-menus/mate-menus-.ebuild   |  6 --
 mate-base/mate-panel/mate-panel-.ebuild   |  6 --
 .../mate-session-manager-.ebuild  | 14 --
 .../mate-settings-daemon-.ebuild  |  6 --
 mate-extra/caja-dropbox/caja-dropbox-.ebuild  |  8 +---
 .../caja-extensions/caja-extensions-.ebuild   | 19 +++
 .../mate-indicator-applet-.ebuild |  6 --
 mate-extra/mate-media/mate-media-.ebuild  |  6 --
 mate-extra/mate-netbook/mate-netbook-.ebuild  |  6 --
 mate-extra/mate-polkit/mate-polkit-.ebuild|  8 +---
 .../mate-power-manager/mate-power-manager-.ebuild |  4 ++--
 .../mate-screensaver/mate-screensaver-.ebuild |  8 +---
 .../mate-sensors-applet-.ebuild   |  8 +---
 .../mate-system-monitor-.ebuild   |  8 
 .../mate-user-guide/mate-user-guide-.ebuild   |  9 +
 .../mate-user-share/mate-user-share-.ebuild   | 10 ++
 mate-extra/mate-utils/mate-utils-.ebuild  |  7 +--
 media-gfx/eom/eom-.ebuild |  6 --
 media-libs/libmatemixer/libmatemixer-.ebuild  |  9 ++---
 .../mate-notification-daemon-.ebuild  |  7 ---
 x11-misc/mozo/mozo-.ebuild|  4 +++-
 x11-terms/mate-terminal/mate-terminal-.ebuild |  8 +---
 .../mate-icon-theme/mate-icon-theme-.ebuild   |  6 --
 x11-themes/mate-themes/mate-themes-3.16..ebuild   |  7 ---
 x11-themes/mate-themes/mate-themes-3.18..ebuild   |  7 ---
 x11-themes/mate-themes/mate-themes-3.20..ebuild   |  7 ---
 x11-wm/marco/marco-.ebuild|  9 ++---
 37 files changed, 183 insertions(+), 115 deletions(-)



[gentoo-commits] repo/gentoo:master commit in: www-misc/urlwatch/files/, www-misc/urlwatch/

2016-09-03 Thread Patrice Clement
commit: d647d8a196e878cac8b409c9b95d659abee344f2
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Sep  3 22:00:03 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Sep  3 22:00:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d647d8a1

www-misc/urlwatch: Clean up old.

Package-Manager: portage-2.2.28

 www-misc/urlwatch/Manifest |  2 -
 .../urlwatch/files/urlwatch-2.2-fix-install.patch  | 42 
 www-misc/urlwatch/urlwatch-1.18.ebuild | 28 -
 www-misc/urlwatch/urlwatch-2.2.ebuild  | 46 --
 4 files changed, 118 deletions(-)

diff --git a/www-misc/urlwatch/Manifest b/www-misc/urlwatch/Manifest
index f82a79b..4b2b452 100644
--- a/www-misc/urlwatch/Manifest
+++ b/www-misc/urlwatch/Manifest
@@ -1,3 +1 @@
-DIST urlwatch-1.18.tar.gz 14987 SHA256 
6b17411b6658f3aeb5839d1b32458f020ce40ee1e62a3d40387a2622fa731824 SHA512 
ffbfb41e5b6ca71abf19132424dc1bfb3d0cfc30a644615c34539bb5b00acea5803d4c30637c58e9682820c5411227f7c579344c1e212f575431a1c650a7e520
 WHIRLPOOL 
49915ef83cc835b8ac67216eaeb61391195f28fa28b5716c7e1cc8c8dac465d9f3670beb408c80dc3fa5315683467524b02b1663fb671f26338059acfa247b23
-DIST urlwatch-2.2.tar.gz 24435 SHA256 
a3257ab795adb91514c7163610c7a916ccce9df9ab2cfdef2b72c250ab292069 SHA512 
680547d01da6830059048247be4467c68ce9977786f3ba1ec0ad470eb77608b6938c244ed9341ddfd382d65cae167338c685bff2eac91a5f15e881c2aca7bb9b
 WHIRLPOOL 
46d0dce6dc904e15561986e724882592a174c0c2480daf4eac81a4616b7b73d32033b06e70fafad3b399e557365b084e6f7518fa070420ecd22e4340b7b45f96
 DIST urlwatch-2.5.tar.gz 25322 SHA256 
6010a45dbc20d5449f214655c94977a65e1e2b8ba32f58e9045ddfdaaabf3962 SHA512 
993d2596288d014a3b84ae22c29ce89282c4320dd95b339c9892db07997059fc80a96198cb89ba04d935f68d2d051da96dc981f8e8b3657492443b060d2126a1
 WHIRLPOOL 
d8be345d19027e475825d708f9ce2c55fe4abb23e903d629aec872104a0e890f225dfe3f1c8de87541e9cbed7c62592d362e464f3014f0a7ce27000fd9a5f880

diff --git a/www-misc/urlwatch/files/urlwatch-2.2-fix-install.patch 
b/www-misc/urlwatch/files/urlwatch-2.2-fix-install.patch
deleted file mode 100644
index 66626db..
--- a/www-misc/urlwatch/files/urlwatch-2.2-fix-install.patch
+++ /dev/null
@@ -1,42 +0,0 @@
-From ebe7b90100a3d960f53fdc9409d2d89eaa61bf11 Mon Sep 17 00:00:00 2001
-From: Thomas Perl 
-Date: Tue, 28 Jun 2016 18:15:51 +0200
-Subject: [PATCH] Check current directory and use os.path.relpath (Fixes #73)
-

- setup.py | 11 ---
- 1 file changed, 8 insertions(+), 3 deletions(-)
-
-diff --git a/setup.py b/setup.py
-index 947a7c8..45405cd 100644
 a/setup.py
-+++ b/setup.py
-@@ -7,10 +7,15 @@
- 
- import os
- import re
-+import sys
- 
- PACKAGE_NAME = 'urlwatch'
- DEPENDENCIES = ['minidb', 'PyYAML', 'requests']
--HERE = os.path.dirname(__file__)
-+HERE = os.path.abspath(os.path.dirname(__file__))
-+
-+if os.path.normpath(os.getcwd()) != os.path.normpath(HERE):
-+print('You must run {} inside {} 
(cwd={})'.format(os.path.basename(__file__), HERE, os.getcwd()))
-+sys.exit(1)
- 
- # Assumptions:
- #  1. Package name equals main script file name (and only one script)
-@@ -29,9 +34,9 @@
- 
- m['scripts'] = [os.path.join(HERE, PACKAGE_NAME)]
- m['package_dir'] = {'': os.path.join(HERE, 'lib')}
--m['packages'] = ['.'.join(dirname[len(HERE)+1:].split(os.sep)[1:])
-+m['packages'] = ['.'.join(os.path.relpath(dirname, HERE).split(os.sep)[1:])
-  for dirname, _, files in os.walk(os.path.join(HERE, 'lib')) 
if '__init__.py' in files]
--m['data_files'] = [(dirname[len(HERE)+1:], 
[os.path.join(dirname[len(HERE)+1:], fn) for fn in files])
-+m['data_files'] = [(os.path.relpath(dirname, HERE), 
[os.path.join(os.path.relpath(dirname, HERE), fn) for fn in files])
-for dirname, _, files in os.walk(os.path.join(HERE, 
'share')) if files]
- m['install_requires'] = DEPENDENCIES
- 

diff --git a/www-misc/urlwatch/urlwatch-1.18.ebuild 
b/www-misc/urlwatch/urlwatch-1.18.ebuild
deleted file mode 100644
index 938f929..
--- a/www-misc/urlwatch/urlwatch-1.18.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="5"
-PYTHON_COMPAT=( python{2_7,3_3,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="A tool for monitoring webpages for updates"
-HOMEPAGE="http://thp.io/2008/urlwatch/ https://pypi.python.org/pypi/urlwatch;
-SRC_URI="http://thp.io/2008/${PN}/${P}.tar.gz;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-DEPEND="virtual/python-futures[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}
-   || ( www-client/lynx app-text/html2text )"
-
-python_prepare() {
-   if [[ ${EPYTHON} == python3.* ]]; then
-   2to3 -nw --no-diffs urlwatch lib/urlwatch/*.py \
-   share/urlwatch/examples/hooks.py.example setup.py || die
-   fi
-}

diff --git 

[gentoo-commits] repo/gentoo:master commit in: www-misc/urlwatch/

2016-09-03 Thread Patrice Clement
commit: 7d2a3b75bdb06ec513fa2c509ad77f7cee4a9fb2
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Sep  3 21:59:10 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Sep  3 22:00:21 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d2a3b75

www-misc/urlwatch: Stable for amd64. Retroactively mark stable for the 
remaining arches using the ALLARCHES policy.

Package-Manager: portage-2.2.28

 www-misc/urlwatch/urlwatch-2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-misc/urlwatch/urlwatch-2.5.ebuild 
b/www-misc/urlwatch/urlwatch-2.5.ebuild
index 7934e3f..d5396b1 100644
--- a/www-misc/urlwatch/urlwatch-2.5.ebuild
+++ b/www-misc/urlwatch/urlwatch-2.5.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://thp.io/2008/${PN}/${P}.tar.gz;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 RDEPEND="



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

2016-09-03 Thread Patrice Clement
commit: 0822801f47adeea595582b658ad74eb1ee126abc
Author: Patrice Clement  gentoo  org>
AuthorDate: Sat Sep  3 21:58:50 2016 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Sat Sep  3 22:00:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0822801f

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

Package-Manager: portage-2.2.28

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

diff --git a/dev-python/minidb/minidb-2.0.1-r1.ebuild 
b/dev-python/minidb/minidb-2.0.1-r1.ebuild
index c3097b0..3df0dce 100644
--- a/dev-python/minidb/minidb-2.0.1-r1.ebuild
+++ b/dev-python/minidb/minidb-2.0.1-r1.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="test"
 
 DEPEND="



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

2016-09-03 Thread Thomas Deutschmann
commit: f03aacc3dc9a83ef1a9e89aa73eb081f0f36badf
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Sep  3 21:34:08 2016 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Sep  3 21:35:19 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f03aacc3

www-servers/nginx: Bump ebuild of stable slot to update 3rd-party modules

Backport of commit f3c2a26e1f50d245e6f06413b99f9d610267 from mainline:

 - nginx-upload-progress-module v0.9.1  -> v0.9.2
 - headers-more-nginx-modulev0.30   -> 0.31
 - ngx-fancyindex   v0.4.0  -> v0.4.1 (bug #592464)
 - lua-nginx-module v0.10.5 -> 0.10.6
 - nginx-rtmp-modulev1.1.8  -> v1.1.9
 - echo-nginx-modulev0.59   -> 0.60

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

Package-Manager: portage-2.3.0

 www-servers/nginx/nginx-1.10.1-r3.ebuild | 768 +++
 1 file changed, 768 insertions(+)

diff --git a/www-servers/nginx/nginx-1.10.1-r3.ebuild 
b/www-servers/nginx/nginx-1.10.1-r3.ebuild
new file mode 100644
index ..fe9f071
--- /dev/null
+++ b/www-servers/nginx/nginx-1.10.1-r3.ebuild
@@ -0,0 +1,768 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+# Maintainer notes:
+# - http_rewrite-independent pcre-support makes sense for matching locations 
without an actual rewrite
+# - any http-module activates the main http-functionality and overrides 
USE=-http
+# - keep the following requirements in mind before adding external modules:
+#  * alive upstream
+#  * sane packaging
+#  * builds cleanly
+#  * does not need a patch for nginx core
+# - TODO: test the google-perftools module (included in vanilla tarball)
+
+# prevent perl-module from adding automagic perl DEPENDs
+GENTOO_DEPEND_ON_PERL="no"
+
+# devel_kit (https://github.com/simpl/ngx_devel_kit, BSD license)
+DEVEL_KIT_MODULE_PV="0.3.0"
+DEVEL_KIT_MODULE_P="ngx_devel_kit-${DEVEL_KIT_MODULE_PV}-r1"
+DEVEL_KIT_MODULE_URI="https://github.com/simpl/ngx_devel_kit/archive/v${DEVEL_KIT_MODULE_PV}.tar.gz;
+DEVEL_KIT_MODULE_WD="${WORKDIR}/ngx_devel_kit-${DEVEL_KIT_MODULE_PV}"
+
+# http_uploadprogress 
(https://github.com/masterzen/nginx-upload-progress-module, BSD-2 license)
+HTTP_UPLOAD_PROGRESS_MODULE_PV="0.9.2"
+HTTP_UPLOAD_PROGRESS_MODULE_P="ngx_http_upload_progress-${HTTP_UPLOAD_PROGRESS_MODULE_PV}-r1"
+HTTP_UPLOAD_PROGRESS_MODULE_URI="https://github.com/masterzen/nginx-upload-progress-module/archive/v${HTTP_UPLOAD_PROGRESS_MODULE_PV}.tar.gz;
+HTTP_UPLOAD_PROGRESS_MODULE_WD="${WORKDIR}/nginx-upload-progress-module-${HTTP_UPLOAD_PROGRESS_MODULE_PV}"
+
+# http_headers_more (https://github.com/agentzh/headers-more-nginx-module, BSD 
license)
+HTTP_HEADERS_MORE_MODULE_PV="0.31"
+HTTP_HEADERS_MORE_MODULE_P="ngx_http_headers_more-${HTTP_HEADERS_MORE_MODULE_PV}"
+HTTP_HEADERS_MORE_MODULE_URI="https://github.com/agentzh/headers-more-nginx-module/archive/v${HTTP_HEADERS_MORE_MODULE_PV}.tar.gz;
+HTTP_HEADERS_MORE_MODULE_WD="${WORKDIR}/headers-more-nginx-module-${HTTP_HEADERS_MORE_MODULE_PV}"
+
+# http_cache_purge (http://labs.frickle.com/nginx_ngx_cache_purge/, 
https://github.com/FRiCKLE/ngx_cache_purge, BSD-2 license)
+HTTP_CACHE_PURGE_MODULE_PV="2.3"
+HTTP_CACHE_PURGE_MODULE_P="ngx_http_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
+HTTP_CACHE_PURGE_MODULE_URI="http://labs.frickle.com/files/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}.tar.gz;
+HTTP_CACHE_PURGE_MODULE_WD="${WORKDIR}/ngx_cache_purge-${HTTP_CACHE_PURGE_MODULE_PV}"
+
+# http_slowfs_cache (http://labs.frickle.com/nginx_ngx_slowfs_cache/, BSD-2 
license)
+HTTP_SLOWFS_CACHE_MODULE_PV="1.10"
+HTTP_SLOWFS_CACHE_MODULE_P="ngx_http_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
+HTTP_SLOWFS_CACHE_MODULE_URI="http://labs.frickle.com/files/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}.tar.gz;
+HTTP_SLOWFS_CACHE_MODULE_WD="${WORKDIR}/ngx_slowfs_cache-${HTTP_SLOWFS_CACHE_MODULE_PV}"
+
+# http_fancyindex (https://github.com/aperezdc/ngx-fancyindex, BSD license)
+HTTP_FANCYINDEX_MODULE_PV="0.4.1"
+HTTP_FANCYINDEX_MODULE_P="ngx_http_fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
+HTTP_FANCYINDEX_MODULE_URI="https://github.com/aperezdc/ngx-fancyindex/archive/v${HTTP_FANCYINDEX_MODULE_PV}.tar.gz;
+HTTP_FANCYINDEX_MODULE_WD="${WORKDIR}/ngx-fancyindex-${HTTP_FANCYINDEX_MODULE_PV}"
+
+# http_lua (https://github.com/openresty/lua-nginx-module, BSD license)
+HTTP_LUA_MODULE_PV="0.10.6"
+HTTP_LUA_MODULE_P="ngx_http_lua-${HTTP_LUA_MODULE_PV}"
+HTTP_LUA_MODULE_URI="https://github.com/openresty/lua-nginx-module/archive/v${HTTP_LUA_MODULE_PV}.tar.gz;
+HTTP_LUA_MODULE_WD="${WORKDIR}/lua-nginx-module-${HTTP_LUA_MODULE_PV}"
+
+# http_auth_pam (https://github.com/stogh/ngx_http_auth_pam_module/, 
http://web.iti.upv.es/~sto/nginx/, BSD-2 license)
+HTTP_AUTH_PAM_MODULE_PV="1.5.1"
+HTTP_AUTH_PAM_MODULE_P="ngx_http_auth_pam-${HTTP_AUTH_PAM_MODULE_PV}"

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

2016-09-03 Thread Richard Farina
commit: f6355aac963d02ca469191da265710865f8abefa
Author: Zero_Chaos  gentoo  org>
AuthorDate: Sat Sep  3 21:32:18 2016 +
Commit: Richard Farina  gentoo  org>
CommitDate: Sat Sep  3 21:32:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6355aac

app-crypt/hashcat: update description per upstream

Package-Manager: portage-2.3.0

 app-crypt/hashcat/hashcat-3.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/hashcat/hashcat-3.10-r1.ebuild 
b/app-crypt/hashcat/hashcat-3.10-r1.ebuild
index 805aabf..06fd778 100644
--- a/app-crypt/hashcat/hashcat-3.10-r1.ebuild
+++ b/app-crypt/hashcat/hashcat-3.10-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils pax-utils
 
-DESCRIPTION="An advanced CPU-based password recovery utility"
+DESCRIPTION="World's fastest and most advanced password recovery utility"
 HOMEPAGE="https://github.com/hashcat/hashcat;
 SRC_URI="https://github.com/hashcat/hashcat/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 LICENSE="MIT"



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

2016-09-03 Thread Thomas Deutschmann
commit: f3c2a26e1f50d245e6f06413b99f9d610267
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Sep  3 21:10:29 2016 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Sep  3 21:10:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3c2a26e

www-servers/nginx: Revision bump to update 3rd-party modules

 - nginx-upload-progress-module v0.9.1  -> v0.9.2
 - headers-more-nginx-modulev0.30   -> 0.31
 - ngx-fancyindex   v0.4.0  -> v0.4.1 (bug #592464)
 - lua-nginx-module v0.10.5 -> 0.10.6
 - nginx-rtmp-modulev1.1.8  -> v1.1.9
 - echo-nginx-modulev0.59   -> 0.60

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

Package-Manager: portage-2.3.0

 www-servers/nginx/Manifest   |   6 +
 www-servers/nginx/nginx-1.11.3-r2.ebuild | 782 +++
 2 files changed, 788 insertions(+)

diff --git a/www-servers/nginx/Manifest b/www-servers/nginx/Manifest
index da1e09c..3f50206 100644
--- a/www-servers/nginx/Manifest
+++ b/www-servers/nginx/Manifest
@@ -8,16 +8,22 @@ DIST ngx_http_auth_pam-1.5.1.tar.gz 6863 SHA256 
77676842919134af88a7b4bfca447022
 DIST ngx_http_cache_purge-2.3.tar.gz 12248 SHA256 
279e0d8a46d3b1521fd43b3f78bc1c08b263899142a7cc5058c1c0361a92c89c SHA512 
50a31dbf2216a6fae74a186af56dec4600cf55777e76a10ac0075f609e7737135aab063a64f2590dddcd0369ebebd4a523027f3d9ebcca74f7b4355be1c5dcc0
 WHIRLPOOL 
5451ef3e33044210453995ea916acec679599c0ded5471d464db5003a07e7a06e9690812091148c2af7b50384e52b32e49136eac02e0330724ba2408d893f96c
 DIST ngx_http_dav_ext-0.0.3.tar.gz 6260 SHA256 
d428a0236c933779cb40ac8c91afb19d5c25a376dc3caab825bfd543e1ee530d SHA512 
4763b1c5e417248d80acfacf20bfc5ba3e06675ff08e37703867daef99a400980b536941e4955c259432905bd11ab998bc2e2489a50350413c7bf37e18eafb74
 WHIRLPOOL 
5adbcea768fbb179249a03fe69304505ec09a1dafac848dd5e3cde96693c6fbcf6cf6c128ca116d02b36c1be0008807d9e86fee5b411e137b18b15a60291f29b
 DIST ngx_http_echo-0.59.tar.gz 52703 SHA256 
9b319ad7836202883128d2b9c24ed818082541df57ef7f2065b7557085c603cd SHA512 
803c431da00160f62ee98e126d244fb97b2d9dca08137daabf55504f012598f8e2c689841c2e8bfced5f07ce24c46933c49b3feffc09ca0b5f07dc10e34546ee
 WHIRLPOOL 
a709ded0dd1af2b6c1c5da6f065834ab7715eb736f36018acf06c2c10389bf896dc4459acbbb479340b9da6f287143cd25fca7df503acea457cf0933ba67e9a1
+DIST ngx_http_echo-0.60.tar.gz 52771 SHA256 
1077da2229ac7d0a0215e9e6817e297c10697e095010d88f1adbd1add1ce9f4e SHA512 
c455bee73cebd0752449472452d15614b9587ddd199263d366484ede890c4d108eacbbeaef31adc9dc7732b56ef2bfc73c0fef3366366db03a8ec3fdc27a985c
 WHIRLPOOL 
8938ac18aae74a5c4806ff3611c243c9bee108ef93fef7b0da284040c2ec2d9a57cb3cad9e3719cb795bbb063176d7afe81b7288ebacf5096d26b16e5ef34da6
 DIST ngx_http_fancyindex-0.4.0.tar.gz 18419 SHA256 
152cc2cf082c23cbc7b0fc76f14af4015d3988783016dc9145edebec17c7e230 SHA512 
47fd9f405475f96958eb255f9051a9bde1ad8b515356bbaff8f8034ee34ecc17e3574c1d104496c5069c8986e047ca0de386f1b7d2f7317f15be98d69e74b624
 WHIRLPOOL 
4972eea9f6b8373b4bbcf73c66fe3dc635bc6326f264febc9a5a0fc620d44f1a3d1f98c91c1d2acb6779729a1e188c1f4a8750972266d1e463658529d37fa596
+DIST ngx_http_fancyindex-0.4.1.tar.gz 21130 SHA256 
2b00d8e0ad2a67152a9cee7b7ee67990c742d501412df912baaf1eee9bb6dc71 SHA512 
ce0043ad4a2b638c5d99244d6caaa65ad142cea78884084a9aeca5a9593c68dbe508c9e4dd85dc5722eb63ef386612bffc48d4b6fc1487df244fbcb7a73bffe1
 WHIRLPOOL 
4a885afbadf64bbd25df6580a099472ae48836d9dddfe1dee6ac6a6f97bfb0cf7120ff10dd69fceca7085fab590bec3a4b4b5be5644f2352375316885ddc3cac
 DIST ngx_http_headers_more-0.30.tar.gz 27793 SHA256 
2aad309a9313c21c7c06ee4e71a39c99d4d829e31c8b3e7d76f8c964ea8047f5 SHA512 
378f2c4b4fbf580e59c8ad3ef5fcb617e4669b7b506a0ae87e4e0bc920d34e16fe55565e48dd57e7b6c37ae8b407646ca64f5d84a2fbbe2d41d719c7643c1a82
 WHIRLPOOL 
f50bb5c2e23fb63d98904163a873edf947f65e57dc0f73489024243c1d5b04e0677015a075d315585e535e226b8dad659bada563778b8ddf4d060e918fc37ace
+DIST ngx_http_headers_more-0.31.tar.gz 27941 SHA256 
b2e8162cce2d24861b1ed5bbb30fc51d5215e3f4bb9d01f53fc344904d5911e7 SHA512 
bc6b936dff9989af9eb97864e5e9499748ea8c73b2f49a24ad00d2a90bf77d1d743e6789f7bf3948a7b44b0cc9f48a1c8a52bce9902a13c88e1f6673c6e1
 WHIRLPOOL 
79dd5ecb8eaabf6d81380888b687a962339c93d6bff14c88156782d5846d1121d33e0851ab27b44fb1b9f2035484093327fb92559e655dbdc6362faddb76b5e2
 DIST ngx_http_lua-0.10.5.tar.gz 579793 SHA256 
4f0292c37ab3d7cb980c994825040be1bda2c769cbd800e79c43eb37458347d4 SHA512 
a02b8614fdcd063b1087a3114f05402c707343ff3bceabaca1fb98531ba30edea1a525fc45e2f5a49ff155de8d6f9e1155e8870e463476da5703acfd5f8fc3fc
 WHIRLPOOL 
9c72353bc58a98fd3bae68bd9b13228d202167422a429aa4b455f7e280cb617b5c083131e4f372708e602342b24b150437ed8ebae9647a397bae8a88a13b385c
+DIST ngx_http_lua-0.10.6.tar.gz 597217 SHA256 
b98c4f648589bbf3e2c3d5fd18664e7a7ef89ac083e96c8e984fa919e7a7c073 SHA512 
202aaf39381d151d5f456e5cd61c87b65fa20ece997f7e517a3eb3912af3a153747a674ac004dbcc474728567ff58436cfb408accd5e922d805b1d697c34774c
 WHIRLPOOL 

[gentoo-commits] repo/gentoo:master commit in: sys-fs/lxcfs/files/, sys-fs/lxcfs/

2016-09-03 Thread Erik Mackdanz
commit: be683dcf660b9f522a6abc2c3366ca095046e630
Author: Erik Mackdanz  gentoo  org>
AuthorDate: Sat Sep  3 20:29:05 2016 +
Commit: Erik Mackdanz  gentoo  org>
CommitDate: Sat Sep  3 20:33:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be683dcf

sys-fs/lxcfs: Bump to 2.0.3

EAPI=6 Also, fix a merge-time failure when /var/lib/lxcfs is installed
to a live mountpoint.

Package-Manager: portage-2.3.0

 sys-fs/lxcfs/Manifest  |  1 +
 .../lxcfs/files/lxcfs-2.0.3-fusermount-path.patch  | 11 
 sys-fs/lxcfs/files/lxcfs-2.0.3.initd   | 27 
 sys-fs/lxcfs/lxcfs-2.0.3.ebuild| 71 ++
 4 files changed, 110 insertions(+)

diff --git a/sys-fs/lxcfs/Manifest b/sys-fs/lxcfs/Manifest
index 80dc109..b8b1bc2 100644
--- a/sys-fs/lxcfs/Manifest
+++ b/sys-fs/lxcfs/Manifest
@@ -3,3 +3,4 @@ DIST lxcfs-2.0.0.tar.gz 48655 SHA256 
4c03114a85aff530bf385b724b992470ffb97c6bf75
 DIST lxcfs-2.0.0_beta2.tar.gz 44421 SHA256 
4eacbbb51031ebd0776f050d7279b2076f7b4e156503f1bbe88e034f181e1d38 SHA512 
d62bccc687873c060f299a726debc4642a0900f7e7a460b5c37dcb0b5d7cb75cd5b98ee03f129ccddbe62085510e1760db73010674333536f7126d01987262f4
 WHIRLPOOL 
470c6118a5560ff5fd447a409d136453b423d0b27a2f00652316b9415f68e08d349fc0e75edb1d312f7a25709bf96621574bd200c8fc92808a9e4eb59aada971
 DIST lxcfs-2.0.1.tar.gz 49004 SHA256 
4731a4d6939e32f3503560ee953e840d16e6abbb4fc7993c92cc1179e40d4f84 SHA512 
3801a1d643b1f4478e702f615c8f9f9bc7070272ef2cca6c22d944a680f6829f0b14b7d193cc5c046f9f1a0a258bd5de68456d884a00d48f0f2639c66975cb23
 WHIRLPOOL 
cbbad76d61a05dbb4750cd8218e1946d6b8b2e798f0a4071c6e706ee6d88a0e36dd9fcc8664c9cb0e3f8bdbac9ba6c548ce0a0829a4bf79d0965f18ee207bb90
 DIST lxcfs-2.0.2.tar.gz 49185 SHA256 
f3e9c7d53f25c2e71745dbef4c1b96d301fac12cb041329f3bbe438d7d7a4eda SHA512 
358ea0d56d02a45cf93799663e067dc14fa6056f63b9047a7c7691ff0ff0ea44312be19baa0438887708de0fe85e10599e6c0178fbcbe483a6aaa56318c46fdd
 WHIRLPOOL 
590ca502c2f72016b58d7fdb43db94ee1fa6f1af5fe9bd7d3b33d0f97fbff766b5adb22356d12f53601f070acb48d7645faa25128168094c8d42db9b39fa0263
+DIST lxcfs-2.0.3.tar.gz 51078 SHA256 
742a6cc463dc66179c334ebca4c3276888ef27a564e5e47212b60c655a811a72 SHA512 
14caa2d6598529610ef6bd4c1d6f4d4598e8dc1378a3ee35ea7a1582c11150c896facc80216e67526384995891d9cc1244796860b790ecfc8bf735cc2cd80923
 WHIRLPOOL 
f2de2438e4e521db5135ca81daceccdc1d3820907de9d37842c9bafa112cc416774cb2efe27b815ce26e55617c7eb9f5d076df5423ab354747605fa90643

diff --git a/sys-fs/lxcfs/files/lxcfs-2.0.3-fusermount-path.patch 
b/sys-fs/lxcfs/files/lxcfs-2.0.3-fusermount-path.patch
new file mode 100644
index ..61d3494
--- /dev/null
+++ b/sys-fs/lxcfs/files/lxcfs-2.0.3-fusermount-path.patch
@@ -0,0 +1,11 @@
+--- /config/init/systemd/lxcfs.service.orig2016-07-11 01:18:57.688074437 
+
 /config/init/systemd/lxcfs.service 2016-07-11 01:19:48.516477185 +
+@@ -7,7 +7,7 @@
+ ExecStart=/usr/bin/lxcfs /var/lib/lxcfs/
+ KillMode=process
+ Restart=on-failure
+-ExecStopPost=-/bin/fusermount -u /var/lib/lxcfs
++ExecStopPost=-/usr/bin/fusermount -u /var/lib/lxcfs
+ Delegate=yes
+ 
+ [Install]

diff --git a/sys-fs/lxcfs/files/lxcfs-2.0.3.initd 
b/sys-fs/lxcfs/files/lxcfs-2.0.3.initd
new file mode 100644
index ..7436eee
--- /dev/null
+++ b/sys-fs/lxcfs/files/lxcfs-2.0.3.initd
@@ -0,0 +1,27 @@
+#!/sbin/openrc-run
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+DAEMON=/usr/bin/lxcfs
+PIDFILE=/run/lxcfs.pid
+
+start() {
+ebegin "Starting lxcfs"
+
+start-stop-daemon --start \
+ --pidfile ${PIDFILE} \
+ --exec ${DAEMON} \
+ --background \
+ --make-pidfile \
+ -- \
+ -f -o allow_other /var/lib/lxcfs
+
+eend $?
+}
+
+stop() {
+ebegin "Stopping lxcfs"
+start-stop-daemon --stop --quiet -R TERM/45 -p ${PIDFILE}
+eend $?
+}

diff --git a/sys-fs/lxcfs/lxcfs-2.0.3.ebuild b/sys-fs/lxcfs/lxcfs-2.0.3.ebuild
new file mode 100644
index ..39c20c4
--- /dev/null
+++ b/sys-fs/lxcfs/lxcfs-2.0.3.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit systemd vcs-snapshot versionator
+DESCRIPTION="FUSE filesystem for LXC"
+HOMEPAGE="https://linuxcontainers.org/lxcfs/introduction/;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ ${PV} == "" ]] ; then
+   EGIT_REPO_URI="https://github.com/lxc/lxcfs.git;
+   EGIT_BRANCH="master"
+   inherit git-r3
+   SRC_URI=""
+   KEYWORDS=""
+else
+   # e.g. upstream is 2.0.0.beta2, we want 2.0.0_beta2
+   UPSTREAM_PV=$(replace_version_separator 3 '.' )
+   
SRC_URI="https://github.com/lxc/lxcfs/archive/${PN}-${UPSTREAM_PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+IUSE="pam"
+
+# Omit all 

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

2016-09-03 Thread Tobias Klausmann
commit: 26cfccb5fe7ccf539f99d663443b3ddfb0a0ab70
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Sep  3 20:30:14 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Sep  3 20:30:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26cfccb5

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

Gentoo-Bug: 590178

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

diff --git a/dev-db/sqlite/sqlite-3.13.0.ebuild 
b/dev-db/sqlite/sqlite-3.13.0.ebuild
index 5a674f8..b5b83e7 100644
--- a/dev-db/sqlite/sqlite-3.13.0.ebuild
+++ b/dev-db/sqlite/sqlite-3.13.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="doc? ( 
https://sqlite.org/2016/${PN}-doc-${DOC_PV}.zip )
 
 LICENSE="public-domain"
 SLOT="3"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux 
~ia64-hpux ~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE="debug doc icu +readline secure-delete static-libs tcl test tools"
 
 RDEPEND="icu? ( dev-libs/icu:0=[${MULTILIB_USEDEP}] )



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/subversion/

2016-09-03 Thread Tobias Klausmann
commit: 5f1b21baa09e79d0bc479c5acc5e281678645b13
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Sep  3 20:30:02 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Sep  3 20:30:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f1b21ba

dev-vcs/subversion-1.9.4-r0: add alpha keyword

Gentoo-Bug: 586046

 dev-vcs/subversion/subversion-1.9.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/subversion/subversion-1.9.4.ebuild 
b/dev-vcs/subversion/subversion-1.9.4.ebuild
index 1055041..2f636b0 100644
--- a/dev-vcs/subversion/subversion-1.9.4.ebuild
+++ b/dev-vcs/subversion/subversion-1.9.4.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="Subversion GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~x86-freebsd ~hppa-hpux ~ia64-hpux 
~x86-interix ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="apache2 berkdb ctypes-python debug doc +dso extras gnome-keyring +http 
java kde nls perl python ruby sasl test vim-syntax"
 
 COMMON_DEPEND=">=dev-db/sqlite-3.7.12



[gentoo-commits] repo/gentoo:master commit in: sci-libs/xdmf2/files/, sci-libs/xdmf2/

2016-09-03 Thread David Seifert
commit: a794290b70ad9e707d613ccceee5ab215c232d4d
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  3 20:18:45 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  3 20:20:10 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a794290b

sci-libs/xdmf2: Remove heuristics to help detect HDF5_ROOT

Gentoo-bug: 591302
* EAPI=6
* Add missing RDEPEND on dev-libs/boost
* Add ${PYTHON_REQUIRED_USE} to REQUIRED_USE
* [QA] Byte-compile XdmfCore.py and Xdmf.py
* Thanks to Michael Palimaka  gentoo.org> for
  helping to identify the culprit

Package-Manager: portage-2.3.0

 ...2-1.0_p141226-cannot-find-hdf5-bug-591302.patch | 41 
 sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild | 74 ++
 2 files changed, 115 insertions(+)

diff --git 
a/sci-libs/xdmf2/files/xdmf2-1.0_p141226-cannot-find-hdf5-bug-591302.patch 
b/sci-libs/xdmf2/files/xdmf2-1.0_p141226-cannot-find-hdf5-bug-591302.patch
new file mode 100644
index ..99735a4
--- /dev/null
+++ b/sci-libs/xdmf2/files/xdmf2-1.0_p141226-cannot-find-hdf5-bug-591302.patch
@@ -0,0 +1,41 @@
+Too much automagic trying to find the correct prefix
+of HDF5. Remove all the pointless heuristics.
+See also: https://bugs.gentoo.org/show_bug.cgi?id=591302
+
+* CMake Error at 
/usr/share/cmake/Modules/FindPackageHandleStandardArgs.cmake:148 (message):
+*   Could NOT find HDF5 (missing: HDF5_LIBRARIES HDF5_INCLUDE_DIRS
+*   HDF5_HL_LIBRARIES)
+
+--- xdmf2-1.0_p141226/core/CMakeLists.txt
 xdmf2-1.0_p141226/core/CMakeLists.txt
+@@ -35,19 +35,7 @@
+   mark_as_advanced(FORCE Boost_INCLUDE_DIR)
+ endif(Boost_FOUND)
+ 
+-# Find HDF5_ROOT if not set
+-if ("$ENV{HDF5_ROOT}" STREQUAL "")
+-  find_file (HDF5_LIB libhdf5.so HINTS ENV LD_LIBRARY_PATH)
+-  if (NOT "${HDF5_LIB}" STREQUAL "")
+-get_filename_component(HDF5_LIBRARY_DIR "${HDF5_LIB}" PATH)
+-get_filename_component(HDF5_ROOT "${HDF5_LIBRARY_DIR}/../" ABSOLUTE)
+-set(ENV{HDF5_ROOT} ${HDF5_ROOT})
+-  endif (NOT "${HDF5_LIB}" STREQUAL "")
+-endif ("$ENV{HDF5_ROOT}" STREQUAL "")
+-
+-mark_as_advanced(CLEAR HDF5_C_INCLUDE_DIR)
+-mark_as_advanced(CLEAR HDF5_hdf5_LIBRARY_DEBUG)
+-mark_as_advanced(CLEAR HDF5_hdf5_LIBRARY_RELEASE)
++# Find HDF5
+ find_package(HDF5 REQUIRED)
+ if(HDF5_FOUND)
+   mark_as_advanced(FORCE HDF5_C_INCLUDE_DIR)
+@@ -73,9 +61,6 @@
+   endif(HDF5_IS_PARALLEL)
+   get_filename_component(HDF5_ROOT "${HDF5_INCLUDE_DIR}/../" REALPATH)
+   set(HDF5_BINARY_DIRS ${HDF5_ROOT}/bin ${HDF5_ROOT}/dll)
+-  if (NOT HDF5_LIBRARIES)
+-find_library (HDF5_LIBRARIES hdf5 HINTS ${HDF5_ROOT} ENV LD_LIBRARY_PATH)
+-  endif (NOT HDF5_LIBRARIES)
+   set(XDMF_LIBRARIES ${XDMF_LIBRARIES} ${HDF5_LIBRARIES})
+   set(XDMF_HDF5_BINARY_DIRS ${HDF5_BINARY_DIRS} PARENT_SCOPE)
+   set(XDMF_BINARIES ${XDMF_BINARIES} ${HDF5_BINARY_DIRS})

diff --git a/sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild 
b/sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild
new file mode 100644
index ..b1b0bbb
--- /dev/null
+++ b/sci-libs/xdmf2/xdmf2-1.0_p141226-r2.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-utils python-single-r1
+
+DESCRIPTION="eXtensible Data Model and Format"
+HOMEPAGE="http://xdmf.org/index.php/Main_Page;
+SRC_URI="https://dev.gentoo.org/~jlec/distfiles/${P}.tar.xz;
+
+SLOT="0"
+LICENSE="VTK"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc python test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+RDEPEND="
+   dev-libs/boost:=
+   sci-libs/hdf5:=
+   dev-libs/libxml2:2
+   python? ( ${PYTHON_DEPS} )
+   "
+DEPEND="${RDEPEND}
+   doc? ( app-doc/doxygen )
+   python? ( dev-lang/swig:0 )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-module.patch
+   "${FILESDIR}"/${P}-cannot-find-hdf5-bug-591302.patch
+)
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup && python_export
+}
+
+src_prepare() {
+   if use python; then
+   local _site=$(python_get_sitedir)
+   sed \
+   -e 
"/DESTINATION/s:python:${_site##${EPREFIX}/usr/$(get_libdir)/}:g" \
+   -i CMakeLists.txt || die
+   fi
+
+   sed \
+   -e "/DESTINATION/s:lib:$(get_libdir):g" \
+   -e "/INSTALL/s:lib:$(get_libdir):g" \
+   -i CMakeLists.txt core/CMakeLists.txt || die
+   cmake-utils_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=1
+   -DXDMF_BUILD_DOCUMENTATION=$(usex doc)
+   -DBUILD_TESTING=$(usex test)
+   -DXDMF_WRAP_PYTHON=$(usex python)
+#  -DXDMF_WRAP_JAVA=$(usex java)
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   dosym XdmfConfig.cmake /usr/share/cmake/Modules/${PN}Config.cmake
+
+   # need to 

[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/files/, ...

2016-09-03 Thread Mike Gilbert
commit: 65895a57facc0747d24cf77dc5f415c9ab703167
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 20:05:55 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 20:09:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65895a57

net-print/epson-inkjet-printer-escpr: remove old

Package-Manager: portage-2.3.0_p24

 net-print/epson-inkjet-printer-escpr/Manifest  |  4 --
 .../epson-inkjet-printer-escpr-1.4.4.ebuild| 32 
 .../epson-inkjet-printer-escpr-1.5.2.ebuild| 32 
 .../epson-inkjet-printer-escpr-1.6.1.ebuild| 38 ---
 .../epson-inkjet-printer-escpr-1.6.4.ebuild| 37 ---
 .../files/1.4.4-warnings.patch | 43 --
 .../files/1.5.2-warnings.patch | 32 
 .../files/1.6.1-warnings.patch | 40 
 8 files changed, 258 deletions(-)

diff --git a/net-print/epson-inkjet-printer-escpr/Manifest 
b/net-print/epson-inkjet-printer-escpr/Manifest
index b0f661f..1f8f34e 100644
--- a/net-print/epson-inkjet-printer-escpr/Manifest
+++ b/net-print/epson-inkjet-printer-escpr/Manifest
@@ -1,5 +1 @@
-DIST epson-inkjet-printer-escpr-1.4.4-1lsb3.2.tar.gz 2432872 SHA256 
bec7c51d11d96b6448bd96b5e9ac622786e3fc5024e13cae2fc248f8858db2f6 SHA512 
7a3f1f880dba9048773d051cfe54ea2ee929d82a85efb496d4df4b84b33ed2f48bb6020892615d5d22da6b5671501b82df55cea6e11b35fea392392f115a6330
 WHIRLPOOL 
856bcffc4fe45c6bb15c7ecbe1c41e315ee68bf2c3c93697ac4f314324e2b3a0a8796ba741c04e962f1ca9148dbf38d529649ffd5d7ddaaa757666ea066e32a0
-DIST epson-inkjet-printer-escpr-1.5.2-1lsb3.2.tar.gz 2852564 SHA256 
9229aa8a033e97e29b0671082d08e1c56ebbee4e5adb2f350f81181835f06be8 SHA512 
680ffa68ea84830463bea1e6ffc4e1380ed60dc45689844afa15989177a8c3a2a67becd8a7b899b6ee6c8078de9b217563af06c70b1d42aefa7469327c0601af
 WHIRLPOOL 
1abaf4954781c2734e13a79f7dfde26d27ddec45fd360fa1983d544fe49123ff92305b9b30fdd8482d0c2f5cb954d1e7472d9cd18804cd093c41f81669bf5970
-DIST epson-inkjet-printer-escpr-1.6.1-1lsb3.2.tar.gz 3044091 SHA256 
bb7dea7439c571662db9cf7a8834cb87ed69fa249a7945218403187c6097c76f SHA512 
e4e6749ffcb8dd3b35bb6ba931165695b1b983fd9b47d5981358d191870c9658fec92aff63352b854f7d1362129e2359ef96166713ed11863e3536dbb5832bb3
 WHIRLPOOL 
e958b2921541177255176f9efd512ac0b981f2faf8828dc03409c364d14dc53ec113dcd37f116b12ecf0a3d8e59e1df9b589ec88f6fabf10ba61707386990126
-DIST epson-inkjet-printer-escpr-1.6.4-1lsb3.2.tar.gz 3243924 SHA256 
76c66461a30be82b9cc37d663147a72f488fe060ef54578120602bb87a3f7754 SHA512 
cb00eb1e71d3d4c4d8855fae20ea6f7babf2e861ac703d349a6d2a61e05055902f4347c72b237b9c56ec548735d30bdd3c613102bdabec701cef320ede9c3a9e
 WHIRLPOOL 
1e2923387d9d4650987020114bd539bfc7827f81e2fa6db646eb9a36b268fd8c5edce4eb2debc2daa6962375161fc994628c04c4690cb2881d2d8ceb9f44e755
 DIST epson-inkjet-printer-escpr-1.6.5-1lsb3.2.tar.gz 3277627 SHA256 
1cd9e0506bf181e1476bd8305f1c6b8dbc4354eab9415d0d5529850856129e4c SHA512 
31c3e11f9a19de592727318d8714940c62a3ee7a443fe5b1e51e8f995e536b427d4054e47438645f333816a44accb7c880f8b6e74e9973c072a07016ee94b7da
 WHIRLPOOL 
7a8ab154d4c52d0fab4a89938127a4d76c60fa4d0edbde35a0c7b1e7cdece7ca4ba9e8a8073adb64126e02adf9c024dc922af117013f35834019a37a1277a06e

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.4.4.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.4.4.ebuild
deleted file mode 100644
index 3e76ec4..
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.4.4.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib
-
-DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)"
-HOMEPAGE="http://www.epson.com/;
-SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/03/29/49/36201e41f124a1f4f7b793533b1ade1202032276/epson-inkjet-printer-escpr-1.4.4-1lsb3.2.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND="net-print/cups"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   epatch "${FILESDIR}/1.4.4-warnings.patch"
-}
-
-src_configure() {
-   econf --disable-shared
-}
-
-src_install() {
-   default
-   rm -r "${ED%/}/usr/$(get_libdir)" || die
-}

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.5.2.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.5.2.ebuild
deleted file mode 100644
index b87f354..
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.5.2.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit eutils multilib
-
-DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)"
-HOMEPAGE="http://www.epson.com/;

[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/

2016-09-03 Thread Mike Gilbert
commit: 46762a2aca097b6c1cd4b04f140276997f3dbee1
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 20:06:52 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 20:09:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46762a2a

net-print/epson-inkjet-printer-escpr: replace HOMEPAGE

Package-Manager: portage-2.3.0_p24

 .../epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.5.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.5.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.5.ebuild
index 37d7cba..137b0fa 100644
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.5.ebuild
+++ 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.6.5.ebuild
@@ -5,9 +5,8 @@
 EAPI=6
 
 DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)"
-HOMEPAGE="http://www.epson.com/;
+HOMEPAGE="http://download.ebz.epson.net/dsc/search/01/search/?OSC=LX;
 
SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/04/54/27/b73564748bfde7b7ce625e20d4a3257d447bec79/epson-inkjet-printer-escpr-1.6.5-1lsb3.2.tar.gz;
-# http://download.ebz.epson.net/dsc/search/01/search/
 
 LICENSE="GPL-2"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: sci-chemistry/gromacs/

2016-09-03 Thread Christoph Junghans
commit: 40003409ab4ef64801ed5422f8f3c23fb0029ffd
Author: Christoph Junghans  gentoo  org>
AuthorDate: Sat Sep  3 19:21:22 2016 +
Commit: Christoph Junghans  gentoo  org>
CommitDate: Sat Sep  3 19:21:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40003409

sci-chemistry/gromacs: fix build with mkl (bug #592786)

Package-Manager: portage-2.2.28

 sci-chemistry/gromacs/gromacs-2016..ebuild | 8 +++-
 sci-chemistry/gromacs/gromacs-2016.ebuild  | 8 +++-
 2 files changed, 14 insertions(+), 2 deletions(-)

diff --git a/sci-chemistry/gromacs/gromacs-2016..ebuild 
b/sci-chemistry/gromacs/gromacs-2016..ebuild
index c4a1a0a..e5f17d7 100644
--- a/sci-chemistry/gromacs/gromacs-2016..ebuild
+++ b/sci-chemistry/gromacs/gromacs-2016..ebuild
@@ -137,12 +137,18 @@ src_configure() {
-DMKL_INCLUDE_DIR="${MKLROOT}/include"
-DMKL_LIBRARIES="$(echo 
/opt/intel/mkl/10.0.5.025/lib/*/libmkl.so);$(echo 
/opt/intel/mkl/10.0.5.025/lib/*/libiomp*.so)"
)
-   elif use mkl; then
+   elif use mkl && has_version "

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

2016-09-03 Thread Lars Wendler
commit: 51475018147d43d57e25a8a51e7432d1dfd9282a
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Sep  3 19:19:23 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Sep  3 19:19:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51475018

dev-vcs/git: Removed old.

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 dev-vcs/git/Manifest |   3 -
 dev-vcs/git/git-2.9.2.ebuild | 682 ---
 2 files changed, 685 deletions(-)

diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest
index 1535d0b..6d6a096 100644
--- a/dev-vcs/git/Manifest
+++ b/dev-vcs/git/Manifest
@@ -6,7 +6,6 @@ DIST 
git-2.7.3-00-9831e92bfa833ee9c0ce464bbc2f941ae6c2698d-lose-name-path.patch
 DIST git-2.7.3.tar.xz 3909636 SHA256 
89c467912d4740da2b40288f956251f0a1e276e28eecd28a6d776067103629b6 SHA512 
f7acbf52d12f39d323bd90a82c7135aa2aacf2661f7087c71b41dbfbec688342e0a2fc061fc0f216848a538a0dbc4fce68e24ea2a26e747f5eb92f763fa5bc72
 WHIRLPOOL 
5cc261749f91c2e0b0509d2fac1bc7426b3ddcc37e859d4f524838e1dd471071ad430886751933bae57aafc20bdcf3f9a43f4c018cc9c89610134a5203b22447
 DIST git-2.7.4.tar.xz 3909636 SHA256 
dee574defbe05ec7356a0842ddbda51315926f2fa7e39c2539f2c3dcc52e457b SHA512 
82a646140834e909bf1748a017e86f37f0711c759fe0a6ad03529beb57c79742cb7bf77c2dba29ccd84fcf3d5f18ad9c85c00f002d3b257be42e058750423da7
 WHIRLPOOL 
74532038b6ba95a5354f43ebad00a9c159c495d46e7dc1b8a2a59f5a86e149538190d9800144a719dcc00e28cfea1039cd5dbfb67fd5aac5e7d0998d3231bae3
 DIST git-2.8.4.tar.xz 3982836 SHA256 
120e9a32a1858871dea34165622ec7a63f27887b93093c8d72a18bcf89fe1657 SHA512 
92c3b4437d1160cc23612b4df62646b80a1245d4ed482c3543ba19511f754a34d0185d5dd5d16f2a42bc3097bebc47ece0670c45a1c53ca38cbfbff7d43de87b
 WHIRLPOOL 
8be86b1cba51ef549d56014c090dd5844019c2c5ccf15865dce86ed7f28f5628621450d784f23ba03f79282bc87e5a8ee0fad161a157785cf6c5716f8aa1e767
-DIST git-2.9.2.tar.xz 4019916 SHA256 
f8f546648f77f246f1302e3ec4037c81db25af1f02931597148c5bf61fac2db5 SHA512 
4a6e2ac7680b8896dc9c58a3fabad2201c800dbca26f0c117892b9d6149b02ff0335d313037f50771932cea4971913e3d9b9e79f22e075b3ed77a1a69ddc11ac
 WHIRLPOOL 
ebd538f1877a362c7bbd0eb98e3c3d9d96b81e75cdb4f587d9aa5be09d66fd61e7b2e400465f64d238fd912a2a3b4be1829a95ba21ec09115be5362347d30878
 DIST git-2.9.3.tar.xz 4025288 SHA256 
9f1473350c1792310b51af03a9cb5cce841f68202f835b20d46312a30232fa63 SHA512 
7152d075b705c92c813e977558b1a6d8d1c9e6ac01b41ee052bcd40c056f08c6fdb030ef0995822c6d22ce44b739935d89026aeae35f8b93fb569773c4b005bb
 WHIRLPOOL 
0117dad19c4a74dcc7a7963dd2ffa60f5a1e10890e4f233b1c92cce87c07e3da270a65464ed152fc20ffbea34f074342a9153f7a328cae2d850b763b3a196c3e
 DIST git-htmldocs-2.10.0.tar.xz 1064292 SHA256 
b51b7c51c9c50450b233c6461f1987424e8096f05261fc1284bc3c0a8f8da559 SHA512 
035de46a751641e5c533d506905951d162b6170c4b0a6361ead49b106c40190520539ed64e44d98236ee70b464b2bfa0239af9fc3c6c75c92b5f287c9d932308
 WHIRLPOOL 
fa2f516504ae79dbbc7fbe962877bbbf5dea8d2ab846dc5d06bd1e6f13fc8ea09d6d523f80c340e164207eaaf7d52f926330be6ac723323311a6fc638f91e53e
 DIST git-htmldocs-2.4.11.tar.xz 997132 SHA256 
2764af41b319f4d11b29832de4bd05392f2887d9a1d3c56c864fb081920eac97 SHA512 
d5d2abae9cc303fe8ebeb72ae7078d44db94610d549ca03afffcbbef8b611efda662677423d9ff97a0c7a2384bbd4c3468b01a2ecd7b68f4fdc89e62ad688eb4
 WHIRLPOOL 
66cd4fc754be7c103ca58a030d4799ba988792419a426e85a39805172e6329ec617b3561696dc74be36801cca0b17a26102a194a1a58d6c7b9ee1ab17752c4a6
@@ -15,7 +14,6 @@ DIST git-htmldocs-2.6.6.tar.xz 1021856 SHA256 
897fb0bc7e2eb67a4b582c963f337fda3a
 DIST git-htmldocs-2.7.3.tar.xz 1031848 SHA256 
f71f5e8e1a6103e83ea794f367bc419a1d14ba0f79ebacdc81b3b9430714adea SHA512 
50de5d9d3c0f6d874a6a4bc3b247a1795b1bcf154a276b546f88c3b5f5fb2eb27212d207a4bb50c04cba36d8537853afd25816addfb87c9a50e18528d93586fe
 WHIRLPOOL 
057d9bebfe51c29a0a7f689baa9873cb6a54feb1d2869c541396902b160379c9220c5de79a4cb59c6e804e5c7557c0fd141b89621b97d3b495dc6e0a77c67a9f
 DIST git-htmldocs-2.7.4.tar.xz 1032428 SHA256 
3fae21e2e68104621ea1405be73192b46bf3ef29bbc248a81b1e7e6fcf5acfad SHA512 
f05b7b8a4dd4abe23f7e51982e9c33026aa31610ac8640028aeae6b310b70b764aee9a81fa702ed0712ccf1b7ad897e06163eb5c5246c14f6cce7c5f4e462682
 WHIRLPOOL 
87fc486d182a4b72fd906105fefcc53b722c4ae6832b290cd6f759ac1eca7ebfbbe7c0e72c1d7b5ef3581d19d7576f1d0387d6e5b0a33d960d57f59ee61a7869
 DIST git-htmldocs-2.8.4.tar.xz 1042260 SHA256 
78135be591e3a68d1030a76e343d59622e5e40f6990667f4385a01d9dafe9bbd SHA512 
5da40db4421f94a969b83bfa0ea6e5ccf3fce8c2085ea2271a2eb3e1b4fc496c36ae8790207cd1814ff747b7633bb27fd53bb9c012f866ea1e7f1cc8065379dd
 WHIRLPOOL 
4f80041ad4ef8b178a6b91313680433a7e07b0ecb15354304436d70880063b2f9cdd875fcd95684a817272d05a57485e1863e9e06c3788eddf0e5f031279ea9a
-DIST git-htmldocs-2.9.2.tar.xz 1053284 SHA256 
6dddb003184f2ab68aa6b54e02e1e55c82c774fe6e74602e9dbefdf06826fb1c SHA512 

[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/files/, dev-vcs/git/

2016-09-03 Thread Lars Wendler
commit: d1a70e2b1e6972e6ad713a3bf28036daa67f30ec
Author: Lars Wendler  gentoo  org>
AuthorDate: Sat Sep  3 19:18:37 2016 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Sat Sep  3 19:18:37 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1a70e2b

dev-vcs/git: Bump to version 2.10.0

Package-Manager: portage-2.3.0
Signed-off-by: Lars Wendler  gentoo.org>

 dev-vcs/git/Manifest|   3 +
 dev-vcs/git/files/git-2.10.0-optional-cvs.patch | 456 
 dev-vcs/git/git-2.10.0.ebuild   | 682 
 3 files changed, 1141 insertions(+)

diff --git a/dev-vcs/git/Manifest b/dev-vcs/git/Manifest
index 73858de..1535d0b 100644
--- a/dev-vcs/git/Manifest
+++ b/dev-vcs/git/Manifest
@@ -1,3 +1,4 @@
+DIST git-2.10.0.tar.xz 4096264 SHA256 
c73364ac00ae85ffc6cfb12ca2700bb0edf30f63262be97be4039be594ff29e7 SHA512 
69d031f55141c2cb2cfce69ac808d1765c1502e10867e8f6e8fb2d9ac5e2fa5773f3ba4a8f4b59e313c715e757c97b3cd3f1b13da45c7bc3958bf53026f0718e
 WHIRLPOOL 
7d5aaa0cef6df32941ed05959816dd66613ec100f534dbc877d4a9000813d2c9880634922bf1b4ace3a7a0e1ad09337fc7612caa8b582f75474eb79b4d4d9127
 DIST git-2.4.11.tar.xz 3695028 SHA256 
ebca2cf93b7200d6d7b9982e3e9857f0b433a05e51338a600c799e97919118e3 SHA512 
34c60fa67e336a4c807a5f49e26083442acc52781b0adbd3f9d96b9594c0688686b30ca3a152621047489d59beb65ad99089a2f02cc589d6e3b36a79db1388fe
 WHIRLPOOL 
75e6b3090560e7aef4fcb382413a7432ecb63880a4139466a64dd06d4777441afd34c208a59dba9a01144f0c2f3a3763a267672f9f7155867b462b4c0bf09cba
 DIST git-2.5.5.tar.xz 3747448 SHA256 
82976a05dd85d44405ec9758040dd190507494fa2af322bd2c97163024ce1e82 SHA512 
edf223df92298a3d25865140b4a2c2194840b21f96c13e07ac35940d6afa759f766e4d36ad2e2428ba913c4949b4f76283475a6b7aa1cc774523c793cb5794f1
 WHIRLPOOL 
3ab15f8a0bc54d3865537bc70c9a0d6e3d8f30b9ba8c68c2dadbd77575f892f55e0e010b9ac89af03ca228f034abbccac53a619865c1e8044f61dedef8713501
 DIST git-2.6.6.tar.xz 3822260 SHA256 
8d53410d60f9c36b0f34c125076634d068c8d812f4143fa10b7130cd7acf7ec2 SHA512 
5c77f83f34296f85d1b1f1bf00a59664bced9db7ad222606471d8400772441775b82fdbfae637aa11006164c4fc9912b8218aa2f6f7812112048902ecf5f
 WHIRLPOOL 
ffc6d10b166b3d0ff1e51fe44a6809877b2d4a9679fc519b7648897621ea02616e330ae46693a2f306286b40c0b41589b20bc93e240b87d535ac5b9b84b28738
@@ -7,6 +8,7 @@ DIST git-2.7.4.tar.xz 3909636 SHA256 
dee574defbe05ec7356a0842ddbda51315926f2fa7e
 DIST git-2.8.4.tar.xz 3982836 SHA256 
120e9a32a1858871dea34165622ec7a63f27887b93093c8d72a18bcf89fe1657 SHA512 
92c3b4437d1160cc23612b4df62646b80a1245d4ed482c3543ba19511f754a34d0185d5dd5d16f2a42bc3097bebc47ece0670c45a1c53ca38cbfbff7d43de87b
 WHIRLPOOL 
8be86b1cba51ef549d56014c090dd5844019c2c5ccf15865dce86ed7f28f5628621450d784f23ba03f79282bc87e5a8ee0fad161a157785cf6c5716f8aa1e767
 DIST git-2.9.2.tar.xz 4019916 SHA256 
f8f546648f77f246f1302e3ec4037c81db25af1f02931597148c5bf61fac2db5 SHA512 
4a6e2ac7680b8896dc9c58a3fabad2201c800dbca26f0c117892b9d6149b02ff0335d313037f50771932cea4971913e3d9b9e79f22e075b3ed77a1a69ddc11ac
 WHIRLPOOL 
ebd538f1877a362c7bbd0eb98e3c3d9d96b81e75cdb4f587d9aa5be09d66fd61e7b2e400465f64d238fd912a2a3b4be1829a95ba21ec09115be5362347d30878
 DIST git-2.9.3.tar.xz 4025288 SHA256 
9f1473350c1792310b51af03a9cb5cce841f68202f835b20d46312a30232fa63 SHA512 
7152d075b705c92c813e977558b1a6d8d1c9e6ac01b41ee052bcd40c056f08c6fdb030ef0995822c6d22ce44b739935d89026aeae35f8b93fb569773c4b005bb
 WHIRLPOOL 
0117dad19c4a74dcc7a7963dd2ffa60f5a1e10890e4f233b1c92cce87c07e3da270a65464ed152fc20ffbea34f074342a9153f7a328cae2d850b763b3a196c3e
+DIST git-htmldocs-2.10.0.tar.xz 1064292 SHA256 
b51b7c51c9c50450b233c6461f1987424e8096f05261fc1284bc3c0a8f8da559 SHA512 
035de46a751641e5c533d506905951d162b6170c4b0a6361ead49b106c40190520539ed64e44d98236ee70b464b2bfa0239af9fc3c6c75c92b5f287c9d932308
 WHIRLPOOL 
fa2f516504ae79dbbc7fbe962877bbbf5dea8d2ab846dc5d06bd1e6f13fc8ea09d6d523f80c340e164207eaaf7d52f926330be6ac723323311a6fc638f91e53e
 DIST git-htmldocs-2.4.11.tar.xz 997132 SHA256 
2764af41b319f4d11b29832de4bd05392f2887d9a1d3c56c864fb081920eac97 SHA512 
d5d2abae9cc303fe8ebeb72ae7078d44db94610d549ca03afffcbbef8b611efda662677423d9ff97a0c7a2384bbd4c3468b01a2ecd7b68f4fdc89e62ad688eb4
 WHIRLPOOL 
66cd4fc754be7c103ca58a030d4799ba988792419a426e85a39805172e6329ec617b3561696dc74be36801cca0b17a26102a194a1a58d6c7b9ee1ab17752c4a6
 DIST git-htmldocs-2.5.5.tar.xz 1010216 SHA256 
15de2f234cf419496399f7ad396709544d62537488a8e5200e6e34b0f1a685e7 SHA512 
265ddf3835352f85eb2e2ee983eb8aaf37bc7b151968866bdb8b9bb6782cdb72dbd1fefe5d7f694a6825954d49bcf4c799e8bcb4e3b25e3f228f6f97f041fd9b
 WHIRLPOOL 
90da44c0bdb6f9ff428d1673289e612936ed5f26110cd13d155c8cbef8433b13bd8b15cea88f967224a699e4c3a6ac41d70b67be1b25c4d35989879626eb10ad
 DIST git-htmldocs-2.6.6.tar.xz 1021856 SHA256 
897fb0bc7e2eb67a4b582c963f337fda3a6ad2b23bca55e27f23f7d15bad7c5d SHA512 

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

2016-09-03 Thread Matt Thode
commit: dacab57e33c5cf272aa95607ebfcbc4ff927703f
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Sep  3 18:48:05 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Sep  3 18:48:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dacab57e

media-sound/spotify: because upstream likes to remove stuff

Package-Manager: portage-2.2.28

 media-sound/spotify/Manifest |   2 -
 media-sound/spotify/spotify-1.0.36-r1.ebuild | 117 ---
 media-sound/spotify/spotify-1.0.37.ebuild|   2 +-
 3 files changed, 1 insertion(+), 120 deletions(-)

diff --git a/media-sound/spotify/Manifest b/media-sound/spotify/Manifest
index d4ea77a..6a56042 100644
--- a/media-sound/spotify/Manifest
+++ b/media-sound/spotify/Manifest
@@ -1,4 +1,2 @@
-DIST spotify-client_1.0.36.120.g536a862f-20_amd64.deb 79230104 SHA256 
c041f58229451d54dac65da98d5d3d2d005cbc38366cddccad7f38d2c987240f SHA512 
a8723d49d8dc1a68b033c032873c020732a2e5d52d19527eec74959b1b5aa0e052e40ed021a7d42dcb96718f1c4385aa0ab9f572ce92b9618f347ed7d80393d7
 WHIRLPOOL 
fc475b7c8ffec19ca722d579dc48dff847a0ca1c6afd4f0c3eff319452cc47f8ec9107f9ea01e931e4a76d1ed65ef1129f4893035927aade979823e1ef91528c
-DIST spotify-client_1.0.36.120.g536a862f-2_i386.deb 87489612 SHA256 
8f8b6b1ba42fa6b610b608f92c0f81ace1b07482ac663ba4381a58bf05dc582c SHA512 
d46ccd1d93e69c46f9b581a8f112113dd968593457f5067690e53252470d0979891a7948504280d3e847388dd29c637047fccf44c6784c68b0ca0fdbdc576413
 WHIRLPOOL 
5a5e5a19d00bcb6e0a7f4ee4adbbff88bfd15400c41636fa6ff1ab1100c66403071bdacdfd0f0d70af70f0d25e6a09e4c767f709c71127f09e68ef29b3fea679
 DIST spotify-client_1.0.37.152.gc83ea995-42_amd64.deb 79521822 SHA256 
9da56b2f696159361bcf6eac0a218ef0a669802f8deb3be17dbf25cb062e0d02 SHA512 
c148a4bfdaae14b1d87fa09b6d4c9780fd87e594ae310f8fc1d696be6111214f88ddc239e368faab17d327a5c7ec2b745391d4f114bd41ad9ce6e3b731790609
 WHIRLPOOL 
f49cf8f0ead7a4c436b7491e5c8fc3991133b89e623fc323260a0905b67ef25c26cab0fb6866e8a18a5448110a7e7157c8dc796ae6548469670598f654c7eb6b
 DIST spotify-client_1.0.37.152.gc83ea995-42_i386.deb 87737188 SHA256 
a5a33f167491455df03f791b818c64e90f4a35b0d83284bb223e15bd4a45f228 SHA512 
ef18a4ad61427669c2da00dbd2487882de2cfab191c42cc385f0db230b2bae6b0f03f504c60f5dde67aecc12becb0076727729f6380a7fa88ce01d140965efd1
 WHIRLPOOL 
64449c68c60c2e46dd16f109a0e3c14f2c844bb9b43ad7cb7d7ab2a3ac603bf34d895637b881341d09f77ef60e82eae513a003b6f494e429899ace42b022bc71

diff --git a/media-sound/spotify/spotify-1.0.36-r1.ebuild 
b/media-sound/spotify/spotify-1.0.36-r1.ebuild
deleted file mode 100644
index c6b34e7..
--- a/media-sound/spotify/spotify-1.0.36-r1.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=6
-inherit eutils fdo-mime gnome2-utils pax-utils unpacker
-
-DESCRIPTION="Spotify is a social music platform"
-HOMEPAGE="https://www.spotify.com/ch-de/download/previews/;
-SRC_BASE="http://repository.spotify.com/pool/non-free/${PN:0:1}/${PN}-client/;
-SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.120.g536a862f-20_amd64.deb )
-   x86? ( ${SRC_BASE}${PN}-client_${PV}.120.g536a862f-2_i386.deb )"
-LICENSE="Spotify"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnome pax_kernel pulseaudio"
-RESTRICT="mirror strip"
-
-DEPEND=""
-# zenety needed for filepicker
-RDEPEND="
-   ${DEPEND}
-   dev-libs/nss
-   gnome-base/gconf
-   gnome-extra/zenity
-   media-libs/alsa-lib
-   media-libs/harfbuzz
-   media-libs/fontconfig
-   media-libs/mesa
-   net-misc/curl[ssl,curl_ssl_openssl]
-   net-print/cups[ssl]
-   x11-libs/gtk+:2
-   x11-libs/libXScrnSaver
-   x11-libs/libXtst
-   dev-python/pygobject:3
-   dev-python/dbus-python
-   pulseaudio? ( media-sound/pulseaudio )
-   gnome? ( gnome-extra/gnome-integration-spotify )"
-   #sys-libs/glibc
-
-S=${WORKDIR}/
-
-QA_PREBUILT="opt/spotify/spotify-client/spotify"
-
-src_prepare() {
-   # Fix desktop entry to launch spotify-dbus.py for GNOME integration
-   if use gnome ; then
-   sed -i \
-   -e 's/spotify \%U/spotify-dbus.py \%U/g' \
-   usr/share/spotify/spotify.desktop || die "sed failed"
-   fi
-   default
-}
-
-src_install() {
-   dodoc usr/share/doc/spotify-client/changelog.gz
-
-   SPOTIFY_PKG_HOME=usr/share/spotify
-   insinto /usr/share/pixmaps
-   doins ${SPOTIFY_PKG_HOME}/icons/*.png
-
-   # install in /opt/spotify
-   SPOTIFY_HOME=/opt/spotify/spotify-client
-   insinto ${SPOTIFY_HOME}
-   doins -r ${SPOTIFY_PKG_HOME}/*
-   fperms +x ${SPOTIFY_HOME}/spotify
-
-   dodir /usr/bin
-   cat <<-EOF >"${D}"/usr/bin/spotify || die
-   #! /bin/sh
-   exec ${SPOTIFY_HOME}/spotify "\$@"
-   EOF
-   fperms +x /usr/bin/spotify
-
-   local size
-   for size in 16 22 24 32 48 

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

2016-09-03 Thread Matt Thode
commit: ada2cd969b6cb40d987b025f9a7fc12a0069abcd
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Sep  3 18:47:12 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Sep  3 18:47:12 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ada2cd96

media-sound/spotify: bup

Package-Manager: portage-2.2.28

 media-sound/spotify/Manifest  |   2 +
 media-sound/spotify/spotify-1.0.37.ebuild | 117 ++
 2 files changed, 119 insertions(+)

diff --git a/media-sound/spotify/Manifest b/media-sound/spotify/Manifest
index 5107e35..d4ea77a 100644
--- a/media-sound/spotify/Manifest
+++ b/media-sound/spotify/Manifest
@@ -1,2 +1,4 @@
 DIST spotify-client_1.0.36.120.g536a862f-20_amd64.deb 79230104 SHA256 
c041f58229451d54dac65da98d5d3d2d005cbc38366cddccad7f38d2c987240f SHA512 
a8723d49d8dc1a68b033c032873c020732a2e5d52d19527eec74959b1b5aa0e052e40ed021a7d42dcb96718f1c4385aa0ab9f572ce92b9618f347ed7d80393d7
 WHIRLPOOL 
fc475b7c8ffec19ca722d579dc48dff847a0ca1c6afd4f0c3eff319452cc47f8ec9107f9ea01e931e4a76d1ed65ef1129f4893035927aade979823e1ef91528c
 DIST spotify-client_1.0.36.120.g536a862f-2_i386.deb 87489612 SHA256 
8f8b6b1ba42fa6b610b608f92c0f81ace1b07482ac663ba4381a58bf05dc582c SHA512 
d46ccd1d93e69c46f9b581a8f112113dd968593457f5067690e53252470d0979891a7948504280d3e847388dd29c637047fccf44c6784c68b0ca0fdbdc576413
 WHIRLPOOL 
5a5e5a19d00bcb6e0a7f4ee4adbbff88bfd15400c41636fa6ff1ab1100c66403071bdacdfd0f0d70af70f0d25e6a09e4c767f709c71127f09e68ef29b3fea679
+DIST spotify-client_1.0.37.152.gc83ea995-42_amd64.deb 79521822 SHA256 
9da56b2f696159361bcf6eac0a218ef0a669802f8deb3be17dbf25cb062e0d02 SHA512 
c148a4bfdaae14b1d87fa09b6d4c9780fd87e594ae310f8fc1d696be6111214f88ddc239e368faab17d327a5c7ec2b745391d4f114bd41ad9ce6e3b731790609
 WHIRLPOOL 
f49cf8f0ead7a4c436b7491e5c8fc3991133b89e623fc323260a0905b67ef25c26cab0fb6866e8a18a5448110a7e7157c8dc796ae6548469670598f654c7eb6b
+DIST spotify-client_1.0.37.152.gc83ea995-42_i386.deb 87737188 SHA256 
a5a33f167491455df03f791b818c64e90f4a35b0d83284bb223e15bd4a45f228 SHA512 
ef18a4ad61427669c2da00dbd2487882de2cfab191c42cc385f0db230b2bae6b0f03f504c60f5dde67aecc12becb0076727729f6380a7fa88ce01d140965efd1
 WHIRLPOOL 
64449c68c60c2e46dd16f109a0e3c14f2c844bb9b43ad7cb7d7ab2a3ac603bf34d895637b881341d09f77ef60e82eae513a003b6f494e429899ace42b022bc71

diff --git a/media-sound/spotify/spotify-1.0.37.ebuild 
b/media-sound/spotify/spotify-1.0.37.ebuild
new file mode 100644
index ..79731ad
--- /dev/null
+++ b/media-sound/spotify/spotify-1.0.37.ebuild
@@ -0,0 +1,117 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit eutils fdo-mime gnome2-utils pax-utils unpacker
+
+DESCRIPTION="Spotify is a social music platform"
+HOMEPAGE="https://www.spotify.com/ch-de/download/previews/;
+SRC_BASE="http://repository.spotify.com/pool/non-free/${PN:0:1}/${PN}-client/;
+SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.152.gc83ea995-42_amd64.deb )
+   x86? ( ${SRC_BASE}${PN}-client_${PV}.152.gc83ea995-42_i386.deb )"
+LICENSE="Spotify"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="gnome pax_kernel pulseaudio"
+RESTRICT="mirror strip"
+
+DEPEND=""
+# zenety needed for filepicker
+RDEPEND="
+   ${DEPEND}
+   dev-libs/nss
+   gnome-base/gconf
+   gnome-extra/zenity
+   media-libs/alsa-lib
+   media-libs/harfbuzz
+   media-libs/fontconfig
+   media-libs/mesa
+   net-misc/curl[ssl,curl_ssl_openssl]
+   net-print/cups[ssl]
+   x11-libs/gtk+:2
+   x11-libs/libXScrnSaver
+   x11-libs/libXtst
+   dev-python/pygobject:3
+   dev-python/dbus-python
+   pulseaudio? ( media-sound/pulseaudio )
+   gnome? ( gnome-extra/gnome-integration-spotify )"
+   #sys-libs/glibc
+
+S=${WORKDIR}/
+
+QA_PREBUILT="opt/spotify/spotify-client/spotify"
+
+src_prepare() {
+   # Fix desktop entry to launch spotify-dbus.py for GNOME integration
+   if use gnome ; then
+   sed -i \
+   -e 's/spotify \%U/spotify-dbus.py \%U/g' \
+   usr/share/spotify/spotify.desktop || die "sed failed"
+   fi
+   default
+}
+
+src_install() {
+   dodoc usr/share/doc/spotify-client/changelog.gz
+
+   SPOTIFY_PKG_HOME=usr/share/spotify
+   insinto /usr/share/pixmaps
+   doins ${SPOTIFY_PKG_HOME}/icons/*.png
+
+   # install in /opt/spotify
+   SPOTIFY_HOME=/opt/spotify/spotify-client
+   insinto ${SPOTIFY_HOME}
+   doins -r ${SPOTIFY_PKG_HOME}/*
+   fperms +x ${SPOTIFY_HOME}/spotify
+
+   dodir /usr/bin
+   cat <<-EOF >"${D}"/usr/bin/spotify || die
+   #! /bin/sh
+   exec ${SPOTIFY_HOME}/spotify "\$@"
+   EOF
+   fperms +x /usr/bin/spotify
+
+   local size
+   for size in 16 22 24 32 48 64 128 256 512; do
+   newicon -s ${size} 
"${S}${SPOTIFY_PKG_HOME}/icons/spotify-linux-${size}.png" \
+   

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

2016-09-03 Thread Matt Thode
commit: 8182efedd893e69a86020eeeaad3e85f4404ac2e
Author: Matthew Thode  gentoo  org>
AuthorDate: Sat Sep  3 18:39:21 2016 +
Commit: Matt Thode  gentoo  org>
CommitDate: Sat Sep  3 18:39:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8182efed

app-crypt/certbot: fixing the deps

Package-Manager: portage-2.2.28

 app-crypt/certbot/certbot-0.8.1-r1.ebuild | 56 +++
 1 file changed, 56 insertions(+)

diff --git a/app-crypt/certbot/certbot-0.8.1-r1.ebuild 
b/app-crypt/certbot/certbot-0.8.1-r1.ebuild
new file mode 100644
index ..3f4ec97
--- /dev/null
+++ b/app-crypt/certbot/certbot-0.8.1-r1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=(python2_7)
+
+if [[ ${PV} == * ]]; then
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   inherit git-r3
+   KEYWORDS=""
+else
+   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~x86"
+fi
+
+inherit distutils-r1
+
+DESCRIPTION="Let's encrypt client to automate deployment of X.509 certificates"
+HOMEPAGE="https://github.com/certbot/certbot https://letsencrypt.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="test"
+
+RDEPEND="
+   =app-crypt/acme-${PV}[${PYTHON_USEDEP}]
+   >=dev-python/configargparse-0.9.3[${PYTHON_USEDEP}]
+   dev-python/configobj[${PYTHON_USEDEP}]
+   >=dev-python/cryptography-0.7[${PYTHON_USEDEP}]
+   >=dev-python/parsedatetime-1.3[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/zope-component[${PYTHON_USEDEP}]
+   dev-python/zope-interface[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:python-2' 
python2_7)
+   dev-python/mock[${PYTHON_USEDEP}]"
+   # for when py3 support is added
+   # $(python_gen_cond_dep '>=dev-python/pythondialog-3.2.2:0' python3_*)
+DEPEND="
+   >=dev-python/setuptools-1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/astroid-1.3.5
+   dev-python/coverage
+   dev-python/nose
+   dev-python/pep8
+   >=dev-python/psutil-2.2.1
+   >=dev-python/pylint-1.4.2
+   dev-python/wheel
+   )"
+
+python_test() {
+   nosetests -w ${PN}/tests || die
+}



[gentoo-commits] repo/gentoo:master commit in: profiles/prefix/sunos/solaris/5.11/

2016-09-03 Thread Fabian Groffen
commit: 7082d7b7da3cfd3304693aaabd2c2bfc4e7711c4
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Sep  3 18:15:02 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Sep  3 18:15:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7082d7b7

profiles/prefix/sunos/solaris/5.11: add sys-libs/libuuid to @system

 profiles/prefix/sunos/solaris/5.11/packages | 12 
 1 file changed, 12 insertions(+)

diff --git a/profiles/prefix/sunos/solaris/5.11/packages 
b/profiles/prefix/sunos/solaris/5.11/packages
new file mode 100644
index ..f83f5d3
--- /dev/null
+++ b/profiles/prefix/sunos/solaris/5.11/packages
@@ -0,0 +1,12 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+# Host provided libuuid.so links against libpool.so, which in turn links
+# against libxml2.so.  In the latter it looks for SUNW@ symbols which
+# our Prefix-provided libxml2.so doesn't have and cause problems, hence
+# we need to provide libuuid.so ourselves for packages that use it.
+# It's added here, because in previous releases we relied on the
+# system-provided libuuid, but now no longer can, and ebuilds can't
+# easily make the difference.
+*sys-libs/libuuid



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

2016-09-03 Thread Mike Gilbert
commit: 36c587c83bf80fac62e3503d6cbc1c1404b71ab2
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 18:06:38 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 18:07:00 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36c587c8

sys-boot/systemd-boot: depend on app-text/docbook-xml-dtd:4.5

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

Package-Manager: portage-2.3.0_p24

 sys-boot/systemd-boot/systemd-boot-231.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-boot/systemd-boot/systemd-boot-231.ebuild 
b/sys-boot/systemd-boot/systemd-boot-231.ebuild
index 899e9da..6b33d8c 100644
--- a/sys-boot/systemd-boot/systemd-boot-231.ebuild
+++ b/sys-boot/systemd-boot/systemd-boot-231.ebuild
@@ -21,6 +21,7 @@ COMMON_DEPEND="
 "
 DEPEND="${COMMON_DEPEND}
app-text/docbook-xml-dtd:4.2
+   app-text/docbook-xml-dtd:4.5
app-text/docbook-xsl-stylesheets
dev-libs/libxslt:0
>=dev-util/intltool-0.50



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

2016-09-03 Thread Fabian Groffen
commit: 79f577edd0395b4ba1253025def6a8fab72c4fb6
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sat Sep  3 18:05:19 2016 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sat Sep  3 18:05:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79f577ed

sys-libs/libuuid: initial commit, for Prefix/Solaris

Package-Manager: portage-2.2.28

 sys-libs/libuuid/Manifest |  1 +
 sys-libs/libuuid/libuuid-1.0.3.ebuild | 33 +
 sys-libs/libuuid/metadata.xml | 15 +++
 3 files changed, 49 insertions(+)

diff --git a/sys-libs/libuuid/Manifest b/sys-libs/libuuid/Manifest
new file mode 100644
index ..f49fdeb
--- /dev/null
+++ b/sys-libs/libuuid/Manifest
@@ -0,0 +1 @@
+DIST libuuid-1.0.3.tar.gz 318256 SHA256 
46af3275291091009ad7f1b899de3d0cea0252737550e7919d17237997db5644 SHA512 
77488caccc66503f6f2ded7bdfc4d3bc2c20b24a8dc95b2051633c695e99ec27876ffbafe38269b939826e1fdb06eea328f07b796c9e0aaca12331a787175507
 WHIRLPOOL 
c89b7fd83830b93cbeaf40d2783f1e7074c6df41b9399ae184e78a9b84175b3cd5bd99079513a89c8d1046c1277d4312d8ce19c0fee9a6a09d822a380f2c4211

diff --git a/sys-libs/libuuid/libuuid-1.0.3.ebuild 
b/sys-libs/libuuid/libuuid-1.0.3.ebuild
new file mode 100644
index ..134512d
--- /dev/null
+++ b/sys-libs/libuuid/libuuid-1.0.3.ebuild
@@ -0,0 +1,33 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit libtool
+
+DESCRIPTION="Portable uuid C library"
+HOMEPAGE="http://libuuid.sourceforge.net/;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~x64-solaris ~x86-solaris"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   eapply_user
+   elibtoolize
+}
+
+src_configure() {
+   econf --disable-static
+}
+
+src_install() {
+   default
+   rm "${ED}"/usr/lib/*.la || die
+}

diff --git a/sys-libs/libuuid/metadata.xml b/sys-libs/libuuid/metadata.xml
new file mode 100644
index ..865baea
--- /dev/null
+++ b/sys-libs/libuuid/metadata.xml
@@ -0,0 +1,15 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   grob...@gentoo.org
+   Fabian Groffen
+   
+   
+   pre...@gentoo.org
+   Gentoo Prefix
+   
+   
+   Portable uuid C library
+   
+



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

2016-09-03 Thread Michał Górny
commit: 358f12b0d5b186bf7a6ac249ff8a156b86fc5097
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 15:30:48 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 17:35:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=358f12b0

dev-python/pypy-bin: Bump to 5.4.0

 dev-python/pypy-bin/Manifest  |   8 ++
 dev-python/pypy-bin/pypy-bin-5.4.0.ebuild | 204 ++
 2 files changed, 212 insertions(+)

diff --git a/dev-python/pypy-bin/Manifest b/dev-python/pypy-bin/Manifest
index 6405b93..1587b2e 100644
--- a/dev-python/pypy-bin/Manifest
+++ b/dev-python/pypy-bin/Manifest
@@ -36,7 +36,15 @@ DIST 
pypy-bin-5.3.1-x86+bzip2+jit+ncurses+shadowstack+sse2.tar.lz 10268792 SHA25
 DIST pypy-bin-5.3.1-x86+bzip2+jit+ncurses+sse2.tar.lz 11318171 SHA256 
afc1a7083ef354cd5037d4d23e44bc243881624037b5eb39084e1e65b61c2284 SHA512 
ccfb921a54ff60e0bbdd7f6b8b96f66bc41c47d93d0f9a4fb735a5901081be21db2d60c9d7f89bf8ff07d8cdeed481e9987a7b970d925a0e9579231a86b5441a
 WHIRLPOOL 
842c6210b28653b9a143678ba59dd2649e83b929463fd8e4ddfad00346ad551c8f3c6ffb864b71b60651e6744432afd7305d6a12a6ed6a0f19d73f3564d6de88
 DIST pypy-bin-5.3.1-x86+bzip2+ncurses+sse2.tar.lz 5954728 SHA256 
bc7289832ca4c9984180b6cb593de502952d76f6810ee26aff4d37e2798eacfe SHA512 
5ced6edb305fd6a38b89baf4c73756ac280934d66b2d11b9a5b1eaf425c3430f6dc3da9e43fa495f8b677fe1263cabacab73ef6ef95bf348c6dbce0defa41ac6
 WHIRLPOOL 
bd7b31b521b7835ad8673b508f5815c80c3c9c1628ba0999ec07340d8b4982a8e04583c7ae0afd73f15437069950c635c25ce42da3ae6a80065de46c6af7a0d7
 DIST pypy-bin-5.3.1-x86+bzip2+ncurses.tar.lz 5953506 SHA256 
317b29daa7fe4df693a79eed7dc330fadbfe00084cedbbc5217721b4750c4b30 SHA512 
78ee21fc0224e8104843d2652039d26ada52cd5a544056161e739458a83fe28c8cf7b4077c40070deef817a2f6d0581120e44ebc38f017a5f843badb31fa5f3c
 WHIRLPOOL 
62e3a119a7a720710ceb46e15453d6cdb65726af97b5c9f664f7748aeafd3cf0ca6a4e748040a1eb24acfec2afb20543b25c08211f42f3d354d3e01a7cfa214b
+DIST pypy-bin-5.4.0-amd64+bzip2+jit+ncurses+shadowstack.tar.lz 12931554 SHA256 
f91ebc6ec7424f6051a984259c851df5c0e9e6dd382623308819d22d0ad5afce SHA512 
4611bae9f02448615c1a96f2113342ae34e3bb753196da81bc8139f7bc6488b21c4b9beeec1d318e7190f1448f1889b413e02ce4b6d24daad85d557fcd7f2c43
 WHIRLPOOL 
925fb730ebf624c19ccdd236bef0452c8ef06cc28e183c664d2de875fca3c1323202be27a98cae459b0833bf5ad78524e5578448e0c9917911598d4a09f2f1a2
+DIST pypy-bin-5.4.0-amd64+bzip2+jit+ncurses.tar.lz 14045080 SHA256 
9838367177d5702255d73dad23a2a65ee3f6c7513e53b8b00ca3f512f68abb3e SHA512 
0cc94174f2565973c629f6d8736825b489ef2da8919cd339e6451199793ef4068d8c953881a76528f193c245f45de9481d2a3f263ff1c78f57a466995818edbe
 WHIRLPOOL 
ec0d0d481f3af9a0b91dac95ccf9b575bc2f809f5f5dd5803337968233a1de6c4dc3fb8a32d9f61e9537ce464d887220c18cd0ef367248244c0adfd9b4ad86a6
+DIST pypy-bin-5.4.0-amd64+bzip2+ncurses.tar.lz 7234735 SHA256 
1f1dd1a55242888c6e1e9bb0d2186516f7ca4e89b85b9cd1ea1f1441a247079f SHA512 
de4db731eac20a4d3006b2a443c99007954486b170fa2207a2711aba45ff6e0029eb04ed9cccaf20d3451e7479d8960fe30f5db17f2ffdf3a47186b440947d85
 WHIRLPOOL 
ceeea695484e1c4357bd46ec2c8125141924ae5020cd24f9fcbb777efca1d5525e7987f406a3bb34e6050bee9c4777b04b8bc8c465a847ad00f32aec4f2e6a6a
+DIST pypy-bin-5.4.0-x86+bzip2+jit+ncurses+shadowstack+sse2.tar.lz 10323530 
SHA256 392adca7e4af88c5c768320a29166838a0b8647e3fa1f53df747f19e42948d4a SHA512 
a6a3cd98c56dffca1e45482c3b0bc7e2f17b5503e9368d5c44e257109f45a6f5124f5bcc28490def0ab729380fc15e819be0e88e20c2170b4d2942470930837c
 WHIRLPOOL 
6eff91f2284e5a46cec006a07451ae293c426861fd7a4344750cbaf1f022f2c8ec4724c57fac83b048a9d15db9d3420176fc65c92dca58018793836fcb9f8784
+DIST pypy-bin-5.4.0-x86+bzip2+jit+ncurses+sse2.tar.lz 11451215 SHA256 
8673f3a44cd7c988bfc437d98786e32ac7ffc81bbd9cc70f1c5409b7a91d0f73 SHA512 
36f5c5ee89d9d3ce93cf5c2ff0a1cfdaf4c317ac28a96c79f7dc9670e81fd3d7afbad1474e4542e59522019729c123000fb94950dbaa6cdf37e542706e08c9b8
 WHIRLPOOL 
65ede342b4a4d61df73ab88ff63ececbd93b0a608609413a6e9ebd14aa4c4105c41aed9c5a9b0f72f789208f73d18abe3dfd6bdc48cdbe8b39e2ab614c1a9278
+DIST pypy-bin-5.4.0-x86+bzip2+ncurses+sse2.tar.lz 5990323 SHA256 
272a2aa4cd0bd4b4653fb36c72e10b3f8d383f76dd616bb218dd8d44067a9c30 SHA512 
12c5875d720b6fb1865d0080cfafd50304a01083f48c240897dc726515078216eb2302483688df102e14068f900765e504ed2176d51b46bbeca51195e0437657
 WHIRLPOOL 
5fc099af5154f0f26ad287451924b55f6ed9e5070585b2b0014cae6f6b9351072eb2dfb63401862e0daa391559e1a05b2c8e12464b58d98606c32ca15a85dbe7
+DIST pypy-bin-5.4.0-x86+bzip2+ncurses.tar.lz 6009517 SHA256 
38a03bbc64f368fa58e511038566cff8e3c01570e48aa00d686737809e41e81b SHA512 
3dbea8724dc025bfcd1592a851db1fdd742fae7638314d6ca56770802c1041cee6c95d1ca7b881e4ce64d7daea42c53fe40228512ad6d62918c6daae1ccf0dc6
 WHIRLPOOL 
567abe65875131c32c046d6538823926c8544e22518512e1eb2aa10036d3f28f5319e848c43ecdcd1f6d828a4eb8d5763260f365b847d6b1a8ee597659cdce5c
 DIST pypy2-v5.3.0-src.tar.bz2 17361429 SHA256 

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

2016-09-03 Thread Michał Górny
commit: 1cba74ccbbac94faacfe3ca83eae0b6516a5e54c
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 14:46:49 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 17:35:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1cba74cc

sys-devel/llvm: Readd WX stack fix to 3.9.0

 sys-devel/llvm/llvm-3.9.0.ebuild | 9 +
 1 file changed, 9 insertions(+)

diff --git a/sys-devel/llvm/llvm-3.9.0.ebuild b/sys-devel/llvm/llvm-3.9.0.ebuild
index ed79ebb..3752c6d 100644
--- a/sys-devel/llvm/llvm-3.9.0.ebuild
+++ b/sys-devel/llvm/llvm-3.9.0.ebuild
@@ -202,6 +202,15 @@ src_prepare() {
 
# Fix git-clang-format shebang, bug #562688
python_fix_shebang 
tools/clang/tools/clang-format/git-clang-format
+
+   pushd projects/compiler-rt >/dev/null || die
+
+   # Fix WX sections, bug #421527
+   find lib/builtins -type f -name '*.S' -exec sed \
+   -e '$a\\n#if defined(__linux__) && 
defined(__ELF__)\n.section .note.GNU-stack,"",%progbits\n#endif' \
+   -i {} + || die
+
+   popd >/dev/null || die
fi
 
if use lldb; then



[gentoo-commits] repo/gentoo:master commit in: virtual/pypy/

2016-09-03 Thread Michał Górny
commit: 620b94eb728b349abbbcd8ccbd3340ee7109e2ac
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 15:47:23 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 17:35:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=620b94eb

virtual/pypy: Bump to 5.4.0

 virtual/pypy/pypy-5.4.0.ebuild | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/virtual/pypy/pypy-5.4.0.ebuild b/virtual/pypy/pypy-5.4.0.ebuild
new file mode 100644
index ..2f5d8d2
--- /dev/null
+++ b/virtual/pypy/pypy-5.4.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+inherit versionator
+
+DESCRIPTION="A virtual for PyPy Python implementation"
+HOMEPAGE=""
+SRC_URI=""
+
+LICENSE=""
+SLOT="0/$(get_version_component_range 1-2 ${PV})"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 gdbm ncurses sqlite tk"
+
+RDEPEND="
+   || (
+   
>=dev-python/pypy-${PV}:${SLOT}[bzip2?,gdbm(-)?,ncurses?,sqlite?,tk?]
+   >=dev-python/pypy-bin-${PV}:${SLOT}[gdbm(-)?,sqlite?,tk?]
+   )"



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

2016-09-03 Thread Michał Górny
commit: 2625ed683a1b7a33fc17fe393bce764e0d8117ce
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 11:12:04 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 17:35:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2625ed68

dev-python/pypy: Bump to 5.4.0

 dev-python/pypy/Manifest  |   1 +
 dev-python/pypy/pypy-5.4.0.ebuild | 255 ++
 2 files changed, 256 insertions(+)

diff --git a/dev-python/pypy/Manifest b/dev-python/pypy/Manifest
index 8a780ec..826979a 100644
--- a/dev-python/pypy/Manifest
+++ b/dev-python/pypy/Manifest
@@ -3,5 +3,6 @@ DIST pypy-5.0.0-src.tar.bz2 17223494 SHA256 
89027b1b33553b53ff7733dc4838f0a76af2
 DIST pypy-5.1.1-src.tar.bz2 17328934 SHA256 
ca3d943d7fbd78bb957ee9e5833ada4bb8506ac99a41b7628790e286a65ed2be SHA512 
2d81b62747ac02980c275fe24fff689e93b4b352e6279c55ca570fd76b8477a55f819e81fab4c6ffdb6991f29536c606d75e238d5bbe04518357509020f23ca9
 WHIRLPOOL 
17f78c8c7df9e07af3fce15392061652284606fbd872706888094ec01d222957c8ee43d2667369377ceb1a9720692d130e4a540bcaff269b4c7d8896b14d708d
 DIST pypy2-v5.3.0-src.tar.bz2 17361429 SHA256 
4142eb8f403810bc88a4911792bb5a502e152df95806e33e69050c828cd160d5 SHA512 
6387987b93bebf8ca6d820bde6c42c1a7427a778ff01cf93766df34be792cb1a8d927b3e402f90159df75f68aa1c913a28e9d453e3b13b28489cb68670ef121d
 WHIRLPOOL 
57b9718b1ed72f13005a6d5a60b24d0fdab522ff63b3f91264433cf17f0bb4c5f36e3121d8d92744386fa5d31fbce14711689c85f87a53b68bfdbddaa19a3edd
 DIST pypy2-v5.3.1-src.tar.bz2 17361760 SHA256 
31a52bab584abf3a0f0defd1bf9a29131dab08df43885e7eeddfc7dc9b71836e SHA512 
3138dde3cb1a155e389a2be615601e22f468d2bc77dd219a35b310052fa06f68f80c3ff62fa4d0a9179eae014ace18620d0a076a0528cb155b1c33cc94d6b397
 WHIRLPOOL 
518b73ec649673fb1fc333b5d0e7669f06e9569624e2f8b55dbbf24b5f109a3b9680ed1d45c6401eb62ee8761043ec9c38a33e6d396c39c3f2fb5ba30f15e93a
+DIST pypy2-v5.4.0-src.tar.bz2 17414795 SHA256 
d9568ebe9a14d0eaefde887d78f3cba63d665e95c0d234bb583932341f55a655 SHA512 
a989393f75ff45d6a8b8b2597c0a208559b3188ffdf65205ad491332f1836a86bbb419a3dfba67f80e5ab8d075aa97f44c63316f805a51d7ce1481e81b461373
 WHIRLPOOL 
623bbaed02214cbc2092abd163e102c11405f12b73dd2ace8098e08a415bd43a0bf13809913b56c378a8a688ff6ff561dc9a90bcd479de85bb301aa67c670d26
 DIST python-gentoo-patches-2.7.10-0.tar.xz 12892 SHA256 
c9a838bd62ae50cc385da23a837acfd05f2b74e4f086c9c76eb4d3aa5366ef6d SHA512 
5f100944635e360691dc0a2b340a906646c4ae9ee558246ddffc56e8b15d389f25f1fbdc1db4cc08e7d29560d04d66b058b3904902899d58ecae8c408ebdf056
 WHIRLPOOL 
f69e9a518bb7ee50c1b262a21e70e1e2443f859ee6d2f4fa84421120dbd054a06ce8dd6cfea8512cbc64bce806322b879c25c561d5eb05e1ba6cc15035b373a9
 DIST python-gentoo-patches-2.7.11-0.tar.xz 12916 SHA256 
e14b47bb1fd64d366d7dfb8339cc2cbf4a53fc288b11dd83f575eb36a8a6408d SHA512 
f0447bb699a163afc08df39b111394377539935546ae23732d7239e78d2bff0c04bc94949f86aef0c1be83736127dbd25c2c531e49befed2d638c3cd4940ac52
 WHIRLPOOL 
305992849d9d244da1e308e739c9bf62a3ef5c74eb65c765bdc666fb5767eb16c7a609f7c442c17da17f76c3ab81e4b09fa8c21e43f89366539a6a9d656bea77

diff --git a/dev-python/pypy/pypy-5.4.0.ebuild 
b/dev-python/pypy/pypy-5.4.0.ebuild
new file mode 100644
index ..d7a4f0a
--- /dev/null
+++ b/dev-python/pypy/pypy-5.4.0.ebuild
@@ -0,0 +1,255 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 pypy )
+inherit check-reqs eutils multilib multiprocessing pax-utils python-any-r1 
toolchain-funcs versionator
+
+CPY_PATCHSET_VERSION="2.7.11-0"
+MY_P=pypy2-v${PV}
+
+DESCRIPTION="A fast, compliant alternative implementation of the Python 
language"
+HOMEPAGE="http://pypy.org/;
+SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2
+   
https://dev.gentoo.org/~djc/python-gentoo-patches-${CPY_PATCHSET_VERSION}.tar.xz;
+
+LICENSE="MIT"
+SLOT="0/$(get_version_component_range 1-2 ${PV})"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 doc gdbm +jit libressl low-memory ncurses sandbox +shadowstack 
sqlite cpu_flags_x86_sse2 test tk"
+
+RDEPEND=">=sys-libs/zlib-1.1.3:0=
+   virtual/libffi:0=
+   virtual/libintl:0=
+   dev-libs/expat:0=
+   !libressl? ( dev-libs/openssl:0=[-bindist] )
+   libressl? ( dev-libs/libressl:0= )
+   bzip2? ( app-arch/bzip2:0= )
+   gdbm? ( sys-libs/gdbm:0= )
+   ncurses? ( sys-libs/ncurses:0= )
+   sqlite? ( dev-db/sqlite:3= )
+   tk? (
+   dev-lang/tk:0=
+   dev-tcltk/tix:0=
+   )
+   !dev-python/pypy-bin:0"
+DEPEND="${RDEPEND}
+   doc? ( dev-python/sphinx )
+   ${PYTHON_DEPS}
+   test? ( dev-python/pytest )"
+
+S="${WORKDIR}/${MY_P}-src"
+
+pkg_pretend() {
+   if [[ ${MERGE_TYPE} != binary ]]; then
+   if use low-memory; then
+   if ! python_is_installed pypy; then
+   eerror "USE=low-memory requires a 

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

2016-09-03 Thread Mike Gilbert
commit: 5b3a9f2b39fa9b539ebc979f50a82e1763ab890e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 17:20:35 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 17:20:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b3a9f2b

dev-python/doit-py: depend on virtual/python-singledispatch

Package-Manager: portage-2.3.0_p24

 dev-python/doit-py/doit-py-0.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/doit-py/doit-py-0.4.0.ebuild 
b/dev-python/doit-py/doit-py-0.4.0.ebuild
index 086f6e1..95841b2 100644
--- a/dev-python/doit-py/doit-py-0.4.0.ebuild
+++ b/dev-python/doit-py/doit-py-0.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$
 
@@ -19,7 +19,7 @@ IUSE="doc test"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
-   dev-python/singledispatch[${PYTHON_USEDEP}]
+   virtual/python-singledispatch[${PYTHON_USEDEP}]
app-text/hunspell )
doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
 RDEPEND="



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

2016-09-03 Thread Mike Gilbert
commit: 95fd370f51c634352fd97900d406b1bc86b7a089
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 17:21:46 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 17:21:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95fd370f

dev-python/natsort: depend on virtual/python-pathlib

Package-Manager: portage-2.3.0_p24

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

diff --git a/dev-python/natsort/natsort-4.0.4.ebuild 
b/dev-python/natsort/natsort-4.0.4.ebuild
index e024ec7..93fff69 100644
--- a/dev-python/natsort/natsort-4.0.4.ebuild
+++ b/dev-python/natsort/natsort-4.0.4.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$
 
@@ -22,7 +22,7 @@ IUSE="test"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
test? ( dev-python/pytest[${PYTHON_USEDEP}]
dev-python/hypothesis[${PYTHON_USEDEP}]
-   dev-python/pathlib[${PYTHON_USEDEP}]
+   virtual/python-pathlib[${PYTHON_USEDEP}]
dev-python/pytest-cov[${PYTHON_USEDEP}]
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7 pypy)
)"



[gentoo-commits] repo/gentoo:master commit in: app-shells/thefuck/

2016-09-03 Thread Mike Gilbert
commit: e1b546021750dbf9e36e0c441ce8fd1480a6244a
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 17:18:54 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 17:18:54 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1b54602

app-shells/thefuck: depend on virtual/python-pathlib

Package-Manager: portage-2.3.0_p24

 app-shells/thefuck/thefuck-3.10.ebuild | 2 +-
 app-shells/thefuck/thefuck-3.11.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-shells/thefuck/thefuck-3.10.ebuild 
b/app-shells/thefuck/thefuck-3.10.ebuild
index b841c8c..ee24672 100644
--- a/app-shells/thefuck/thefuck-3.10.ebuild
+++ b/app-shells/thefuck/thefuck-3.10.ebuild
@@ -16,7 +16,7 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="test"
 
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/decorator[${PYTHON_USEDEP}]

diff --git a/app-shells/thefuck/thefuck-3.11.ebuild 
b/app-shells/thefuck/thefuck-3.11.ebuild
index b841c8c..ee24672 100644
--- a/app-shells/thefuck/thefuck-3.11.ebuild
+++ b/app-shells/thefuck/thefuck-3.11.ebuild
@@ -16,7 +16,7 @@ LICENSE="MIT"
 SLOT="0"
 IUSE="test"
 
-RDEPEND="dev-python/pathlib[${PYTHON_USEDEP}]
+RDEPEND="virtual/python-pathlib[${PYTHON_USEDEP}]
dev-python/psutil[${PYTHON_USEDEP}]
dev-python/six[${PYTHON_USEDEP}]
dev-python/decorator[${PYTHON_USEDEP}]



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

2016-09-03 Thread Mike Gilbert
commit: 38dce45292b00cbbb4101ada64bb5b1c1418c104
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 17:16:52 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 17:16:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38dce452

net-irc/znc: remove old

Package-Manager: portage-2.3.0_p24

 net-irc/znc/Manifest  |   1 -
 net-irc/znc/znc-1.2-r1.ebuild | 167 --
 net-irc/znc/znc-1.4.ebuild| 167 --
 3 files changed, 335 deletions(-)

diff --git a/net-irc/znc/Manifest b/net-irc/znc/Manifest
index dc1f820..d4ac35e 100644
--- a/net-irc/znc/Manifest
+++ b/net-irc/znc/Manifest
@@ -1,5 +1,4 @@
 DIST gtest-1.7.0.zip 1164254 SHA256 
247ca18dd83f53deb1328be17e4b1be31514cedfc1e3424f672bf11fd7e0d60d SHA512 
8859369f2dd32cbc2ac01aba029aa3ff20a321f40658b9643aff442d34c33468221866b801b28c66a28af47dbcd362d26941fc98db92b6efb7e41ea5b7be1a07
 WHIRLPOOL 
0c31a385159551859c1afe76480b3fb1b560d666db9a0afc5cbda92bcd53bf129f85a8f902c6ded0779c2b4c49aacec59ba5a4d5ce316a07bf08174f4fc64049
-DIST znc-1.2.tar.gz 1235150 SHA256 
d9a2cd2a484ff23e6fc9cbde8dd8a43efbcd8d288afca7b1268914ca0d18701d SHA512 
dff24e56127e5599d64b4c62de967d5d48d8ebf23ca8597d33bf0b3622640512db7a462bfa7c2031cd8307f402bab8efa345f6d1fc813e78eb0dcae581de3cf7
 WHIRLPOOL 
b0810eb66e63be762f74f04eb2289e3634b18d6ecbd36d55f6a6772697e0397637d59b9ea01eaf62ef1cbe5f6e65b06432a254f4ada35194aa06b65c4a2f7994
 DIST znc-1.4.tar.gz 1239648 SHA256 
86e98fd0ed182d39828c926809f8075d836ee3b70a6dd43dfbb434822f2a7b52 SHA512 
0c33b05e8232084999812cbaa467dc7d37b80cafc1001b82e89c702b4303d8db9a27b948fe653e7090404eb1c66f5492f02f3524bc39efabade4be8bdb476671
 WHIRLPOOL 
420e665fa193b3f0284a070e021c4c467e3d40a0812eedeef9b2f65a6626a050b7af8bf15a754ac571d12261705832cfa18a0f7a7817cce96d220028a86230cf
 DIST znc-1.6.1.tar.gz 1463397 SHA256 
ba49397364f48d6d32ae5242bc1166f21d972f85dd390d6bbe68a63ecbb6c140 SHA512 
92c0acca6b585df394cf8d6d295948fc1342ff7b15d081017d2e0ba521129f914fa2b019a82d801f826f1009456294e4f578e978f34677bbfe436e87e2734aba
 WHIRLPOOL 
ff4a22742d5e1e8da66325fdc8a2fd88a467674a5f13f6d353b1c3588affd86f2c33c24d48f1b61dfba14311d6f1c13b2939851316cb302ab031073baa05ec17
 DIST znc-1.6.3.tar.gz 1464200 SHA256 
631c46de76fe601a41ef7676bc974958e9a302b72b25fc92b4a603a25d89b827 SHA512 
777279b6c973310b4e78a0472bd1e355c2adf3e4fbe9ebedde3dd4706e5c0b208d4330eb2318a8d9e0d7d7146bee0a4a428cbe5a3f230c8f6aa692a477e86e2b
 WHIRLPOOL 
2a41e0ac90038a8cc8f289d4ffc0494d29eda75450f650b8870c076fb809eb9c5829720bb39eb43d38ee4ac7f9bea6000ad90fcdd8c0eea461bf04f88cc17b52

diff --git a/net-irc/znc/znc-1.2-r1.ebuild b/net-irc/znc/znc-1.2-r1.ebuild
deleted file mode 100644
index 8322a7f..
--- a/net-irc/znc/znc-1.2-r1.ebuild
+++ /dev/null
@@ -1,167 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python3_3 )
-inherit base python-single-r1 user
-
-MY_PV=${PV/_/-}
-DESCRIPTION="An advanced IRC Bouncer"
-
-if [[ ${PV} == ** ]]; then
-   inherit git-2
-   EGIT_REPO_URI=${EGIT_REPO_URI:-"git://github.com/znc/znc.git"}
-   SRC_URI=""
-   KEYWORDS=""
-else
-   SRC_URI="http://znc.in/releases/${PN}-${MY_PV}.tar.gz;
-   KEYWORDS="amd64 ~arm x86"
-fi
-
-HOMEPAGE="http://znc.in;
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE="daemon debug ipv6 perl python ssl sasl tcl"
-
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   perl? ( >=dev-lang/perl-5.10 )
-   python? ( ${PYTHON_DEPS} )
-   sasl? ( >=dev-libs/cyrus-sasl-2 )
-   ssl? ( >=dev-libs/openssl-0.9.7d:0 )
-   tcl? ( dev-lang/tcl:0= )
-"
-DEPEND="
-   virtual/pkgconfig
-   perl? ( dev-lang/swig )
-   python? (
-   >=dev-lang/swig-2.0.8
-   )
-   ${RDEPEND}
-"
-
-S=${WORKDIR}/${PN}-${MY_PV}
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.0-systemwideconfig.patch"
-   "${FILESDIR}/${P}-webadmin-correctly-handle-channel-names.patch"
-)
-
-CONFDIR="/var/lib/znc"
-
-pkg_setup() {
-   if use python; then
-   python-single-r1_pkg_setup
-   fi
-   if use daemon; then
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 /dev/null ${PN}
-   fi
-}
-
-src_prepare() {
-   if [[ ${PV} == ** ]]; then
-   ./autogen.sh
-   fi
-
-   base_src_prepare
-}
-
-src_configure() {
-   econf \
-   $(use_enable debug) \
-   $(use_enable ipv6) \
-   $(use_enable perl) \
-   $(use python && echo "--enable-python=python3") \
-   $(use_enable sasl cyrus) \
-   $(use_enable ssl openssl) \
-   $(use_enable tcl tcl)
-}
-
-src_install() {
-   emake install DESTDIR="${D}"
-   dodoc NOTICE README.md
-   if use daemon; then
-   newinitd "${FILESDIR}"/znc.initd znc
-   newconfd 

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

2016-09-03 Thread Mike Gilbert
commit: af30f1b85146cfb96f880995d6d3e2490d24ef95
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 16:55:49 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 16:55:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af30f1b8

profiles: Mask python:3.3

 profiles/base/use.mask | 4 
 profiles/package.mask  | 5 +
 2 files changed, 9 insertions(+)

diff --git a/profiles/base/use.mask b/profiles/base/use.mask
index f9e6373..cc23736 100644
--- a/profiles/base/use.mask
+++ b/profiles/base/use.mask
@@ -397,3 +397,7 @@ openrc-force
 # sys-libs/libapparmor
 apparmor
 
+# Mike Gilbert  (03 Sep 2016)
+# Python 3.3 is being removed from Gentoo.
+python_targets_python3_3
+python_single_target_python3_3

diff --git a/profiles/package.mask b/profiles/package.mask
index 61d564e..04fc29e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -31,6 +31,11 @@
 #--- END OF EXAMPLES ---
 
 # Mike Gilbert  (03 Sep 2016)
+# Python 3.3 will be removed from Gentoo in 30 days.
+# dev-lang/python:3.3 will be available in the python overlay.
+dev-lang/python:3.3
+
+# Mike Gilbert  (03 Sep 2016)
 # No reverse deps, only supports python3.3.
 # Removal in 30 days.
 dev-python/simpletal



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

2016-09-03 Thread Mike Gilbert
commit: 6f1b13e18bea33d2f702f7c2b438e12ecbab51da
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 16:57:41 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 16:57:41 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f1b13e1

profiles/base/use.mask: re-order entries to match existing format

 profiles/base/use.mask | 30 +++---
 1 file changed, 15 insertions(+), 15 deletions(-)

diff --git a/profiles/base/use.mask b/profiles/base/use.mask
index cc23736..7049587 100644
--- a/profiles/base/use.mask
+++ b/profiles/base/use.mask
@@ -2,21 +2,6 @@
 # Distributed under the terms of the GNU General Public License v2
 # $Id$
 
-# Brian Evans  (22 Aug 2016)
-# php 5.5 is end of life, masked for removal
-php_targets_php5-5
-
-# Brian Evans  (2 Dec 2015)
-# php 5.4 is end of life, masked for removal
-php_targets_php5-4
-
-# Daniel Kuehn  (13 Nov 2015)
-# Masking sssd USE-flag globally and unmasking it on the tested arches
-# to stop minor arches from blocking major arches AND prevent the dropping
-# of keywords on sudo for said minor arches, in regards to ssd and sudo bugs
-# 540540 and 525674
-sssd
-
 # cilk has been ported only to x86 systems
 cilk
 
@@ -397,6 +382,21 @@ openrc-force
 # sys-libs/libapparmor
 apparmor
 
+# Daniel Kuehn  (13 Nov 2015)
+# Masking sssd USE-flag globally and unmasking it on the tested arches
+# to stop minor arches from blocking major arches AND prevent the dropping
+# of keywords on sudo for said minor arches, in regards to ssd and sudo bugs
+# 540540 and 525674
+sssd
+
+# Brian Evans  (2 Dec 2015)
+# php 5.4 is end of life, masked for removal
+php_targets_php5-4
+
+# Brian Evans  (22 Aug 2016)
+# php 5.5 is end of life, masked for removal
+php_targets_php5-5
+
 # Mike Gilbert  (03 Sep 2016)
 # Python 3.3 is being removed from Gentoo.
 python_targets_python3_3



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

2016-09-03 Thread Mike Gilbert
commit: a3dd76f80f60c9718e3ae93020e886b7d62c8d61
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 15:52:17 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 15:52:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3dd76f8

dev-python/winpdb: remove old

Package-Manager: portage-2.3.0_p24

 dev-python/winpdb/winpdb-1.4.8.ebuild | 40 ---
 1 file changed, 40 deletions(-)

diff --git a/dev-python/winpdb/winpdb-1.4.8.ebuild 
b/dev-python/winpdb/winpdb-1.4.8.ebuild
deleted file mode 100644
index 0ca7554..
--- a/dev-python/winpdb/winpdb-1.4.8.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI="3"
-PYTHON_DEPEND="*"
-SUPPORT_PYTHON_ABIS="1"
-RESTRICT_PYTHON_ABIS="*-jython"
-
-inherit distutils
-
-DESCRIPTION="Graphical Python debugger"
-HOMEPAGE="http://winpdb.org/ https://code.google.com/p/winpdb/ 
https://pypi.python.org/pypi/winpdb;
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ia64 x86"
-IUSE="+wxwidgets"
-
-DEPEND=">=dev-python/pycrypto-2.0.1
-   wxwidgets? ( dev-python/wxpython:2.8 )"
-RDEPEND="${DEPEND}"
-
-src_install() {
-   distutils_src_install
-
-   if use wxwidgets; then
-   PYTHON_MODNAME="rpdb2.py winpdb.py"
-   else
-   PYTHON_MODNAME="rpdb2.py"
-
-   rm -f "${ED}usr/bin/winpdb"*
-
-   delete_winpdb() {
-   rm -f "${ED}$(python_get_sitedir)/winpdb.py"
-   }
-   python_execute_function -q delete_winpdb
-   fi
-}



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

2016-09-03 Thread Mike Gilbert
commit: 3483a826a0f7d85757dc3c27fcf450da9a8c1dc4
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 15:51:50 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 15:51:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3483a826

dev-python/winpdb: stabilize 1.4.8-r1

Package-Manager: portage-2.3.0_p24

 dev-python/winpdb/winpdb-1.4.8-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/winpdb/winpdb-1.4.8-r1.ebuild 
b/dev-python/winpdb/winpdb-1.4.8-r1.ebuild
index 8a8c570..203d6d6 100644
--- a/dev-python/winpdb/winpdb-1.4.8-r1.ebuild
+++ b/dev-python/winpdb/winpdb-1.4.8-r1.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$
 
@@ -14,7 +14,7 @@ SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ia64 ~x86"
+KEYWORDS="amd64 ~ia64 x86"
 IUSE="+wxwidgets"
 
 DEPEND=">=dev-python/pycrypto-2.0.1[${PYTHON_USEDEP}]



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

2016-09-03 Thread Mike Gilbert
commit: e4a7c6f70bf3cc5e4bd5d2b188c142f3e780b3c2
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 15:48:38 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 15:48:38 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a7c6f7

dev-python/singledispatch: drop useless revbump

This was a backport from the standard library.

Package-Manager: portage-2.3.0_p24

 .../singledispatch/singledispatch-3.4.0.3-r1.ebuild | 21 -
 1 file changed, 21 deletions(-)

diff --git a/dev-python/singledispatch/singledispatch-3.4.0.3-r1.ebuild 
b/dev-python/singledispatch/singledispatch-3.4.0.3-r1.ebuild
deleted file mode 100644
index ac8c1cf..
--- a/dev-python/singledispatch/singledispatch-3.4.0.3-r1.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_3 python3_4 python3_5 pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="A library to bring functools.singledispatch from Python 3.4 to 
Python 2.6-3.3"
-HOMEPAGE="http://docs.python.org/3/library/functools.html#functools.singledispatch;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="dev-python/six[${PYTHON_USEDEP}]"



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

2016-09-03 Thread Mike Gilbert
commit: 9ec42c2249ac2207471b17ab064c0c0fecd566e4
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 15:44:29 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 15:44:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec42c22

dev-python/pathlib: drop useless revbump

This added python 3.4 an 3.4 to a module that already exists in
the standard library.

Package-Manager: portage-2.3.0_p24

 dev-python/pathlib/pathlib-1.0.1-r2.ebuild | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/dev-python/pathlib/pathlib-1.0.1-r2.ebuild 
b/dev-python/pathlib/pathlib-1.0.1-r2.ebuild
deleted file mode 100644
index 9f459c6..
--- a/dev-python/pathlib/pathlib-1.0.1-r2.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-# In Python 3.4, pathlib is now part of the standard library.
-PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} pypy )
-
-inherit distutils-r1
-
-DESCRIPTION="Object-oriented filesystem paths"
-HOMEPAGE="https://pathlib.readthedocs.org/;
-SRC_URI="mirror://pypi/p/pathlib/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""



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

2016-09-03 Thread Ian Stakenvicius
commit: b02a2488018b367763e45cfcf7acab0f2e6e10bc
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Sat Sep  3 14:59:55 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Sat Sep  3 15:42:47 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b02a2488

www-client/firefox-bin: version bump to 48.0.1

Package-Manager: portage-2.2.28

 www-client/firefox-bin/Manifest| 174 ++---
 ...x-bin-48.0.ebuild => firefox-bin-48.0.1.ebuild} |   0
 2 files changed, 87 insertions(+), 87 deletions(-)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index f3e4756..ae18f1d 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -83,92 +83,92 @@ DIST firefox-45.3.0esr-vi.xpi 450778 SHA256 
696168c72df76c065ab7d8d5ec898fc28f46
 DIST firefox-45.3.0esr-xh.xpi 432918 SHA256 
2bd00cf16339926c24217901196cd4135cf6039a3a40f055ab72d6012eb114d7 SHA512 
234b47b7df1993df1df9b05237ac91fe8824c9708aa3c0ca93d424ec4468d2f022fa6816f1dea75b760acb57ccc87af95d215feb3b734cc8b2848727fe962e8e
 WHIRLPOOL 
0bf7be8dc9d6ccb947c4dd698cd26262fbbd66ed452792cd25d088c2f27c4089c9ffd96530a9700316423b52a9b426e5dcce46c9b0aebad3897450fd79320653
 DIST firefox-45.3.0esr-zh-CN.xpi 475797 SHA256 
89cb03bd98b25a8f2a3468ac509a1cd5a893a74ec62b5cd436fe0e9e2f105333 SHA512 
4c5a3d210ffda1c96d4a15fdb0de7d20ac72261b254c6fdc2fc68ced307b62b755cf96d462a3b3ce4ecbd377428aea9514ae6b7d9ae94afbfa97b2a31f1d2368
 WHIRLPOOL 
c690ff40ba372b0ad4e2de7b73897461190c39fd0f8414c65e6329c1d2f7111333b19cca638ac6873472fb760302505829b2706d88399428e30e3b5f58a3a894
 DIST firefox-45.3.0esr-zh-TW.xpi 466529 SHA256 
811561b65046f345531d95854c028ed345e99f57c919efeee887ef4fb9dee79f SHA512 
cac89f9a36e59cfe174af5d1ed2eabd419fcd80581df4af15d4045deb619ea00f1a3dfe08305268f7e97ee6e8f52ad109f84f86cd06e26bb7ac886dfe5e347b8
 WHIRLPOOL 
b0c053899dc5430416fd90a2e57889cbf14673ba83d17984f48c09aac66250c3fe8b065ac75ea94097f641ca06e76b97bf83331cf5b37ffb45c6f2d702fcfb57
-DIST firefox-48.0-ach.xpi 433537 SHA256 
c1bcde1c4d61003f016a1934b8bb69481ae066c6096290bc1d502583d36e6256 SHA512 
90e9e34474047a1e656584c2559f628bd7c4aef6e240a872fdad5ca33ce17be802d2e8210eee36e306071a7783c718b901b57a5a7935506f95bb53f9ad04f1e8
 WHIRLPOOL 
0c05d8816e16d0a3e43831547d39efc496c054da7d149c4b203b76730c7e02a1c61dfbfd569d5639d8b9318611336b65113cc60b9ca888b128eb93d4984e17e8
-DIST firefox-48.0-af.xpi 438780 SHA256 
10edc281a7e1a6b45692eb82dfbcc5cc8f77f9d870301b959f3d6c88d4384c12 SHA512 
a2bd8791355ed72178bbe85a355b7ff60d701759dab7340f11fa70c34fa74c9b2db25068f7750f1fc58f6b72d1576010ea5b9fb36a67a61386cae64602f65fdc
 WHIRLPOOL 
dd35eda5d33feca469d9ecd20ef7dc27a3793624d76224cda17d812a41bc0122a0ccc905ecdd742ea2bcb04913d00c29ae32010a7e7a95fe0c167c2658404739
-DIST firefox-48.0-an.xpi 447344 SHA256 
e134d343802a8bdb72e02407ffad784085872e4cc4d967dc898425a246a25cee SHA512 
ea572be169102adfa8d8f2a54584e365379cf6501233bd130fd7e990ad7ec5a798a570b1cc268f0bcd235457b10d2842b3060713e0b95a76231a168b8ea06ca7
 WHIRLPOOL 
1b4484bef2e8d7631cdd943a16e3c2b55413869c3e2df08a35ccedf4da2420a4df3881aa870d72cee792088bbb4ee4141cacbdccc72fc6902680e818b683dd2e
-DIST firefox-48.0-ar.xpi 473319 SHA256 
52934f57e6bb93c892007d4f4346d1687ed7bbe14d96d32d192e2864924631c9 SHA512 
1509af5808b4bbc3ddffc7c3715da846be0d96c23e5a21f87586e0a6fea82ff6b3ce2e682493b38bb5530b21f85df490683ba6402e1def8d1793bdd47ccd41b6
 WHIRLPOOL 
a85c7da2f0a7ee4f40f9a4a1ee75f78b4b38652fe677109a4948f73e81ff306eafec23b3310d3bcbe1eb3511d41ab2ff1f56ef113bc03bbf9f3996778457cd9e
-DIST firefox-48.0-as.xpi 486849 SHA256 
7bfdcf010f7b1a6a3b3f3588b981491a3d70b2aa9032b2b4a6fbf363bb1f0205 SHA512 
c72b8042a59b49a9cecf8ad410c1df94f6b302039b4f2597515c57bf1dc13ab42ca1cac95b7aa56914b5f6568c0ccbeed8021e52029d5d4cd35b6fcd27dcd12a
 WHIRLPOOL 
1f04256a94b89e95ff321bbe8ce0e8964134a308b2dab14edd196e4679c35714d320a7e9de50c083a14016337a6dbe3f12aacfdb23e86ea1a9fe9f21914f5641
-DIST firefox-48.0-ast.xpi 464173 SHA256 
c529dd8ebc29fd25281b49cc608cad3fb126366ca45c7c049d4b40f742cf2095 SHA512 
d7d5ad541d3447e3a816cd10c07ebc0535c8a65305c8fc087a24e9e398ffd3ea85b90abe476563c39530f8d3346bc44a88a63945f2e91bda304c35ca94c8f815
 WHIRLPOOL 
abb70b12c0eb7dfdd1901eb96d05aa13b67248508b6a0fb27130ff78734953572d72c7edc3deee68e8394eca474bf09b37036e798d73fc59f1312f26048a8830
-DIST firefox-48.0-az.xpi 457528 SHA256 
6ca39a5a4d37868c4789c0f4d2b1ff7cac320623c26eaa425481d38c8d959e8e SHA512 
7e36f2679b983da1ca722a40fcfe1dbf82df30f8482ae71f4bc9595e827c03ef7bbbe319e1b35228c15f6c2a1274f9b8f56de65bd60df883e1dd1d7eb37c4d3d
 WHIRLPOOL 
d8d928bcfe17e8c6647730a59943d18c18cd7e43255e83a73cf1b2505181eba6519548e56912d82313dfa6cf56819393e42879867ceecd3e222a6afc456d1d6d
-DIST firefox-48.0-be.xpi 450846 SHA256 
05683ba7249b5ea8848879279bf26bc3bd4e58f1e0d8597445d9754769250fd1 SHA512 
3ab4616df5e5a5b5c6fa4e4d057cf598ed3ba5ec404d420f47fa5e7f5f688c3dade53147ec0d4ac042354f86a997cc8f8038c51a9273510593d6eb59bdce06ef
 WHIRLPOOL 

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

2016-09-03 Thread Ian Stakenvicius
commit: 676780dc2ca8cfe3ad4b44506007bbe4b1f8e3b9
Author: Ian Stakenvicius  gentoo  org>
AuthorDate: Sat Sep  3 15:42:13 2016 +
Commit: Ian Stakenvicius  gentoo  org>
CommitDate: Sat Sep  3 15:42:49 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=676780dc

www-client/firefox: bump 48.0 to 48.0.1

Package-Manager: portage-2.2.28

 www-client/firefox/Manifest| 172 ++---
 .../{firefox-48.0.ebuild => firefox-48.0.1.ebuild} |   0
 2 files changed, 86 insertions(+), 86 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 2a68961..004a60d 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -252,90 +252,90 @@ DIST firefox-45.3.0esr-xh.xpi 432918 SHA256 
2bd00cf16339926c24217901196cd4135cf6
 DIST firefox-45.3.0esr-zh-CN.xpi 475797 SHA256 
89cb03bd98b25a8f2a3468ac509a1cd5a893a74ec62b5cd436fe0e9e2f105333 SHA512 
4c5a3d210ffda1c96d4a15fdb0de7d20ac72261b254c6fdc2fc68ced307b62b755cf96d462a3b3ce4ecbd377428aea9514ae6b7d9ae94afbfa97b2a31f1d2368
 WHIRLPOOL 
c690ff40ba372b0ad4e2de7b73897461190c39fd0f8414c65e6329c1d2f7111333b19cca638ac6873472fb760302505829b2706d88399428e30e3b5f58a3a894
 DIST firefox-45.3.0esr-zh-TW.xpi 466529 SHA256 
811561b65046f345531d95854c028ed345e99f57c919efeee887ef4fb9dee79f SHA512 
cac89f9a36e59cfe174af5d1ed2eabd419fcd80581df4af15d4045deb619ea00f1a3dfe08305268f7e97ee6e8f52ad109f84f86cd06e26bb7ac886dfe5e347b8
 WHIRLPOOL 
b0c053899dc5430416fd90a2e57889cbf14673ba83d17984f48c09aac66250c3fe8b065ac75ea94097f641ca06e76b97bf83331cf5b37ffb45c6f2d702fcfb57
 DIST firefox-45.3.0esr.source.tar.xz 185330580 SHA256 
922233c65c0aabd05371974c289495119c28d72fc7f8b06a22b58c5f70f8b8f7 SHA512 
ee618aec579625122c3e511a7ac83ac4db9718f5695b6fe6250717602178bae9bb7e5ebe8764f4d33ecf44d3db13abfed0d24c1ec71e64a1087fb6d5a579b0c0
 WHIRLPOOL 
aeb4e5888466e2ec5f142c0ff7b70e231860d144d613490064462c790810dfbd58928752621c70922834a83cea0e70beb6c4828e2c4c05e846d51d11d18f4d2c
-DIST firefox-48.0-ach.xpi 433537 SHA256 
c1bcde1c4d61003f016a1934b8bb69481ae066c6096290bc1d502583d36e6256 SHA512 
90e9e34474047a1e656584c2559f628bd7c4aef6e240a872fdad5ca33ce17be802d2e8210eee36e306071a7783c718b901b57a5a7935506f95bb53f9ad04f1e8
 WHIRLPOOL 
0c05d8816e16d0a3e43831547d39efc496c054da7d149c4b203b76730c7e02a1c61dfbfd569d5639d8b9318611336b65113cc60b9ca888b128eb93d4984e17e8
-DIST firefox-48.0-af.xpi 438780 SHA256 
10edc281a7e1a6b45692eb82dfbcc5cc8f77f9d870301b959f3d6c88d4384c12 SHA512 
a2bd8791355ed72178bbe85a355b7ff60d701759dab7340f11fa70c34fa74c9b2db25068f7750f1fc58f6b72d1576010ea5b9fb36a67a61386cae64602f65fdc
 WHIRLPOOL 
dd35eda5d33feca469d9ecd20ef7dc27a3793624d76224cda17d812a41bc0122a0ccc905ecdd742ea2bcb04913d00c29ae32010a7e7a95fe0c167c2658404739
-DIST firefox-48.0-an.xpi 447344 SHA256 
e134d343802a8bdb72e02407ffad784085872e4cc4d967dc898425a246a25cee SHA512 
ea572be169102adfa8d8f2a54584e365379cf6501233bd130fd7e990ad7ec5a798a570b1cc268f0bcd235457b10d2842b3060713e0b95a76231a168b8ea06ca7
 WHIRLPOOL 
1b4484bef2e8d7631cdd943a16e3c2b55413869c3e2df08a35ccedf4da2420a4df3881aa870d72cee792088bbb4ee4141cacbdccc72fc6902680e818b683dd2e
-DIST firefox-48.0-ar.xpi 473319 SHA256 
52934f57e6bb93c892007d4f4346d1687ed7bbe14d96d32d192e2864924631c9 SHA512 
1509af5808b4bbc3ddffc7c3715da846be0d96c23e5a21f87586e0a6fea82ff6b3ce2e682493b38bb5530b21f85df490683ba6402e1def8d1793bdd47ccd41b6
 WHIRLPOOL 
a85c7da2f0a7ee4f40f9a4a1ee75f78b4b38652fe677109a4948f73e81ff306eafec23b3310d3bcbe1eb3511d41ab2ff1f56ef113bc03bbf9f3996778457cd9e
-DIST firefox-48.0-as.xpi 486849 SHA256 
7bfdcf010f7b1a6a3b3f3588b981491a3d70b2aa9032b2b4a6fbf363bb1f0205 SHA512 
c72b8042a59b49a9cecf8ad410c1df94f6b302039b4f2597515c57bf1dc13ab42ca1cac95b7aa56914b5f6568c0ccbeed8021e52029d5d4cd35b6fcd27dcd12a
 WHIRLPOOL 
1f04256a94b89e95ff321bbe8ce0e8964134a308b2dab14edd196e4679c35714d320a7e9de50c083a14016337a6dbe3f12aacfdb23e86ea1a9fe9f21914f5641
-DIST firefox-48.0-ast.xpi 464173 SHA256 
c529dd8ebc29fd25281b49cc608cad3fb126366ca45c7c049d4b40f742cf2095 SHA512 
d7d5ad541d3447e3a816cd10c07ebc0535c8a65305c8fc087a24e9e398ffd3ea85b90abe476563c39530f8d3346bc44a88a63945f2e91bda304c35ca94c8f815
 WHIRLPOOL 
abb70b12c0eb7dfdd1901eb96d05aa13b67248508b6a0fb27130ff78734953572d72c7edc3deee68e8394eca474bf09b37036e798d73fc59f1312f26048a8830
-DIST firefox-48.0-az.xpi 457528 SHA256 
6ca39a5a4d37868c4789c0f4d2b1ff7cac320623c26eaa425481d38c8d959e8e SHA512 
7e36f2679b983da1ca722a40fcfe1dbf82df30f8482ae71f4bc9595e827c03ef7bbbe319e1b35228c15f6c2a1274f9b8f56de65bd60df883e1dd1d7eb37c4d3d
 WHIRLPOOL 
d8d928bcfe17e8c6647730a59943d18c18cd7e43255e83a73cf1b2505181eba6519548e56912d82313dfa6cf56819393e42879867ceecd3e222a6afc456d1d6d
-DIST firefox-48.0-be.xpi 450846 SHA256 
05683ba7249b5ea8848879279bf26bc3bd4e58f1e0d8597445d9754769250fd1 SHA512 
3ab4616df5e5a5b5c6fa4e4d057cf598ed3ba5ec404d420f47fa5e7f5f688c3dade53147ec0d4ac042354f86a997cc8f8038c51a9273510593d6eb59bdce06ef
 WHIRLPOOL 

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

2016-09-03 Thread Mike Gilbert
commit: 3694787d2c55818c91eb382135f456d44bd5f614
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 15:37:45 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 15:37:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3694787d

profiles: mask dev-python/simpletal

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 0e80d5e..61d564e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -30,6 +30,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Mike Gilbert  (03 Sep 2016)
+# No reverse deps, only supports python3.3.
+# Removal in 30 days.
+dev-python/simpletal
+
 # Patrick McLean  (2 Sep 2016)
 # Forward port of HPN patchset masked for testing.
 # See bug #577768 for more info on test failures with HPN



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

2016-09-03 Thread Alex Brandt
commit: 241d9e68a9c545df9d0b9618486c1db7a5ae4b66
Author: Alex Brandt  gentoo  org>
AuthorDate: Sat Sep  3 14:40:35 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sat Sep  3 14:40:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=241d9e68

dev-python/mypy: add version 0.4.4

Package-Manager: portage-2.3.0

 dev-python/mypy/Manifest  |  1 +
 dev-python/mypy/mypy-0.4.4.ebuild | 42 +++
 2 files changed, 43 insertions(+)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index 749bde7..560272d 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -1,3 +1,4 @@
 DIST mypy-0.4.1.tar.gz 682081 SHA256 
37e94e528078fff782bfbe36c0e9cbd2ff40aa436eb335c2c75d006136aee3e7 SHA512 
fafe93ba5e5989be5ebe966c9b8ca3ff899101b56407d5167ef42173374aae5f8ebf5631e573b5d45b845fe2b17488834c72e2483e68abf4992a39188ffa50a1
 WHIRLPOOL 
5b2f2d5d6fe00ccad93824476e55f673c9ecc8bc38b0aa2f3ce2f25850a9dca17b8bb91ad537801a6ecc0bc2ac0210282bcbd755e6c0a96cd9f8b647530cc093
 DIST mypy-0.4.2.tar.gz 697919 SHA256 
d39607701c226007f3bb5a7619222c6c6e7e4c4a2c565d99d44377324d2072ad SHA512 
16d2f1476bc7b40c20b66aca81b3c99477394cbcbbff5541ca26179bde0634794126c0b28506ad3019d6a1c5cd0bf48292b4de0152927123ffdfb3bbbc69ee15
 WHIRLPOOL 
45e459ac076e5bb800a3b8f62828fb326a43d69522caf493166694e4a11b65136756dde43f01e13ac4c74a0535595914364096042dad40c631f17837ca1aca0b
 DIST mypy-0.4.3.tar.gz 714118 SHA256 
d90aaf3e8c01ccdfdb5b74e9321a3f3a32dea964ce13472f406cec43c174229d SHA512 
2185eccb6fa783168879acfc316da0c879fca0b04e6a21bbd47a456014281d634711d9f3e25fa3a64a0b7819b54f0bb87f8bede7452147fd3bab8bca4859f5f0
 WHIRLPOOL 
4b1db030e1c8aed69e763141a812626129451f04ec32ed4cd4bff15461d826b9479a85a92dcc846baa16dda3056840e6c7f798e9b27317d5158e4ccc769c34c9
+DIST mypy-0.4.4.tar.gz 757353 SHA256 
665c9eecc1d43380534d2b88bfc6df2fc7c387f23772e5d82cb37ae96c580034 SHA512 
7a5cb8dae4d28cb7803b56ce17e379dd5f1f953663af6a5c2510e3183028f06a8b3722b94843a782e01e4a65b3f5ae48ff002ad85bfb85cad05abb181fc60e47
 WHIRLPOOL 
71e0b90d521e09c8df21db3bd8a37d3f738ab91823a82481397f81a30cd0f04031a73b71acefefc77405570c8080bf7ccc19669db565313b676c2384018c0863

diff --git a/dev-python/mypy/mypy-0.4.4.ebuild 
b/dev-python/mypy/mypy-0.4.4.ebuild
new file mode 100644
index ..bdebb35
--- /dev/null
+++ b/dev-python/mypy/mypy-0.4.4.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
+
+inherit distutils-r1 vcs-snapshot
+
+DESCRIPTION="Optional static typing for Python"
+HOMEPAGE="http://www.mypy-lang.org/;
+SRC_URI="https://github.com/JukkaL/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="doc test"
+
+DEPEND="
+   test? ( dev-python/flake8[${PYTHON_USEDEP}] )
+   doc? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="$(python_gen_cond_dep '!dev-python/typing[${PYTHON_USEDEP}]' 
'python3_3' 'python3_4')"
+
+python_compile_all() {
+   use doc && emake -C docs html
+}
+
+python_test() {
+   local PYTHONPATH="$(pwd)"
+
+   "${PYTHON}" runtests.py || die "tests failed under ${EPYTHON}"
+}
+
+python_install_all() {
+   use doc && local HTML_DOCS=( docs/build/html/. )
+
+   distutils-r1_python_install_all
+}



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

2016-09-03 Thread Alex Brandt
commit: 8009caa44a76b3b7ef0780bb2425ead99d0dc2c5
Author: Alex Brandt  gentoo  org>
AuthorDate: Sat Sep  3 14:44:33 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sat Sep  3 14:44:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8009caa4

dev-python/mypy: remove version 0.4.1

Package-Manager: portage-2.3.0

 dev-python/mypy/Manifest  |  1 -
 dev-python/mypy/mypy-0.4.1.ebuild | 43 ---
 2 files changed, 44 deletions(-)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index 560272d..0fd652b 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -1,4 +1,3 @@
-DIST mypy-0.4.1.tar.gz 682081 SHA256 
37e94e528078fff782bfbe36c0e9cbd2ff40aa436eb335c2c75d006136aee3e7 SHA512 
fafe93ba5e5989be5ebe966c9b8ca3ff899101b56407d5167ef42173374aae5f8ebf5631e573b5d45b845fe2b17488834c72e2483e68abf4992a39188ffa50a1
 WHIRLPOOL 
5b2f2d5d6fe00ccad93824476e55f673c9ecc8bc38b0aa2f3ce2f25850a9dca17b8bb91ad537801a6ecc0bc2ac0210282bcbd755e6c0a96cd9f8b647530cc093
 DIST mypy-0.4.2.tar.gz 697919 SHA256 
d39607701c226007f3bb5a7619222c6c6e7e4c4a2c565d99d44377324d2072ad SHA512 
16d2f1476bc7b40c20b66aca81b3c99477394cbcbbff5541ca26179bde0634794126c0b28506ad3019d6a1c5cd0bf48292b4de0152927123ffdfb3bbbc69ee15
 WHIRLPOOL 
45e459ac076e5bb800a3b8f62828fb326a43d69522caf493166694e4a11b65136756dde43f01e13ac4c74a0535595914364096042dad40c631f17837ca1aca0b
 DIST mypy-0.4.3.tar.gz 714118 SHA256 
d90aaf3e8c01ccdfdb5b74e9321a3f3a32dea964ce13472f406cec43c174229d SHA512 
2185eccb6fa783168879acfc316da0c879fca0b04e6a21bbd47a456014281d634711d9f3e25fa3a64a0b7819b54f0bb87f8bede7452147fd3bab8bca4859f5f0
 WHIRLPOOL 
4b1db030e1c8aed69e763141a812626129451f04ec32ed4cd4bff15461d826b9479a85a92dcc846baa16dda3056840e6c7f798e9b27317d5158e4ccc769c34c9
 DIST mypy-0.4.4.tar.gz 757353 SHA256 
665c9eecc1d43380534d2b88bfc6df2fc7c387f23772e5d82cb37ae96c580034 SHA512 
7a5cb8dae4d28cb7803b56ce17e379dd5f1f953663af6a5c2510e3183028f06a8b3722b94843a782e01e4a65b3f5ae48ff002ad85bfb85cad05abb181fc60e47
 WHIRLPOOL 
71e0b90d521e09c8df21db3bd8a37d3f738ab91823a82481397f81a30cd0f04031a73b71acefefc77405570c8080bf7ccc19669db565313b676c2384018c0863

diff --git a/dev-python/mypy/mypy-0.4.1.ebuild 
b/dev-python/mypy/mypy-0.4.1.ebuild
deleted file mode 100644
index 5d7d96c..
--- a/dev-python/mypy/mypy-0.4.1.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-PYTHON_COMPAT=( python3_3 python3_4 python3_5 )
-
-inherit distutils-r1 vcs-snapshot
-
-DESCRIPTION="Optional static typing for Python"
-HOMEPAGE="http://www.mypy-lang.org/;
-SRC_URI="https://github.com/JukkaL/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="doc examples test"
-
-DEPEND="
-   test? ( dev-python/flake8[${PYTHON_USEDEP}] )
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/sphinx_rtd_theme[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="$(python_gen_cond_dep '!dev-python/typing[${PYTHON_USEDEP}]' 
'python3_3' 'python3_4')"
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   local PYTHONPATH="$(pwd)"
-
-   "${PYTHON}" runtests.py || die "tests failed under ${EPYTHON}"
-}
-
-python_install_all() {
-   use doc && local HTML_DOCS=( docs/build/html/. )
-   use examples && local EXAMPLES=( samples/. )
-
-   distutils-r1_python_install_all
-}



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

2016-09-03 Thread Alex Brandt
commit: 7ae493d2f4c23792b5bda22407f4bc7897585134
Author: Alex Brandt  gentoo  org>
AuthorDate: Sat Sep  3 14:38:26 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sat Sep  3 14:38:26 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ae493d2

dev-python/botocore: remove version 1.4.43

Package-Manager: portage-2.3.0

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

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 44b5ea0..9fd19aa 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,4 +1,3 @@
-DIST botocore-1.4.43.tar.gz 2662274 SHA256 
15e825f61170379cf0977a4f76bf75be6525f6784f9bc36e42c9c52268959283 SHA512 
d65aa843efcaeb60f51b925f7f8b19ee837404a4fa4c3d36e7b7e438f3f7f1473a021f10f1b8f76ec4a8877af2967b435bd96e9384e5fa772be9ee918eaf918f
 WHIRLPOOL 
c1d2e4d12fad2365e0072d13ca59d44805c5d7dbb8d4d68c7d912cff7ffc8faf911a9553b321525e8621a9cb28cb9f99253656839e3adc0da0bbb50b60430339
 DIST botocore-1.4.46.tar.gz 2713844 SHA256 
844dbd090b4127678c25342635485c87d86bca4a4f8a7c2295d715f7c830700c SHA512 
f79c309ca2bc7fd8d7c2ae63b3968d7212c16d113a17fbb06938f6aeae13b92bc1645aae19258f60e61b10e9ec09868582b20fa5fc4f55a71047433b60de05be
 WHIRLPOOL 
0d84058c1a7dcdaddcb7c2cff4c4f2a1ebe39a8db8358bfb23a50e8dbd8cebd2f30a721573d3f10e241f29e56bf82b72327fcfa17d84f423a091a23a3acc6e40
 DIST botocore-1.4.48.tar.gz 2728910 SHA256 
167babd5eb74cf44f9f71422376be94ce4e731e5e785ea2f87bbf1978a258bc8 SHA512 
73c66b3931ce5f2978546dc91ce808ed92484b6c609fc3f46fedd3a670ba3ec36f506b709c4baa2a9f3daad1e644730f93416f575afdccf4874664a4388e136e
 WHIRLPOOL 
b45e068e81cd37efbb69baaa29bc2adebbcecdd49554b89265a5e7c5b02ee6e96005a66ddfe2357df1d8cb1afd22f7a7e2f54607b563e674736f0de8fb5a4d04
 DIST botocore-1.4.49.tar.gz 2720919 SHA256 
c7804efb622f340593ae49cc552481f2820de2088199a0010d469cf0dfb94731 SHA512 
677d79bcd3cc13aba62693294952542588e016682a0e682cbf6b4035ea202abaf0b805664ae8c6b599df2f29f180ce48631286c9a8745ae7003b1858eda84259
 WHIRLPOOL 
3e5890f8ac15ae4db3e48d5f4c049eccf4de45e0a805988f5492a6b103faa64d636ec9113f4949523dc7706ed45ab000448b63821985da946b5eadc0e1cc

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

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

2016-09-03 Thread Alex Brandt
commit: a6e0ef4d1c1d9508fd82318a85dcf791eb34b936
Author: Alex Brandt  gentoo  org>
AuthorDate: Sat Sep  3 14:35:03 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sat Sep  3 14:35:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6e0ef4d

dev-python/botocore: add version 1.4.49

Package-Manager: portage-2.3.0

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

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 5fcbfa0..44b5ea0 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,3 +1,4 @@
 DIST botocore-1.4.43.tar.gz 2662274 SHA256 
15e825f61170379cf0977a4f76bf75be6525f6784f9bc36e42c9c52268959283 SHA512 
d65aa843efcaeb60f51b925f7f8b19ee837404a4fa4c3d36e7b7e438f3f7f1473a021f10f1b8f76ec4a8877af2967b435bd96e9384e5fa772be9ee918eaf918f
 WHIRLPOOL 
c1d2e4d12fad2365e0072d13ca59d44805c5d7dbb8d4d68c7d912cff7ffc8faf911a9553b321525e8621a9cb28cb9f99253656839e3adc0da0bbb50b60430339
 DIST botocore-1.4.46.tar.gz 2713844 SHA256 
844dbd090b4127678c25342635485c87d86bca4a4f8a7c2295d715f7c830700c SHA512 
f79c309ca2bc7fd8d7c2ae63b3968d7212c16d113a17fbb06938f6aeae13b92bc1645aae19258f60e61b10e9ec09868582b20fa5fc4f55a71047433b60de05be
 WHIRLPOOL 
0d84058c1a7dcdaddcb7c2cff4c4f2a1ebe39a8db8358bfb23a50e8dbd8cebd2f30a721573d3f10e241f29e56bf82b72327fcfa17d84f423a091a23a3acc6e40
 DIST botocore-1.4.48.tar.gz 2728910 SHA256 
167babd5eb74cf44f9f71422376be94ce4e731e5e785ea2f87bbf1978a258bc8 SHA512 
73c66b3931ce5f2978546dc91ce808ed92484b6c609fc3f46fedd3a670ba3ec36f506b709c4baa2a9f3daad1e644730f93416f575afdccf4874664a4388e136e
 WHIRLPOOL 
b45e068e81cd37efbb69baaa29bc2adebbcecdd49554b89265a5e7c5b02ee6e96005a66ddfe2357df1d8cb1afd22f7a7e2f54607b563e674736f0de8fb5a4d04
+DIST botocore-1.4.49.tar.gz 2720919 SHA256 
c7804efb622f340593ae49cc552481f2820de2088199a0010d469cf0dfb94731 SHA512 
677d79bcd3cc13aba62693294952542588e016682a0e682cbf6b4035ea202abaf0b805664ae8c6b599df2f29f180ce48631286c9a8745ae7003b1858eda84259
 WHIRLPOOL 
3e5890f8ac15ae4db3e48d5f4c049eccf4de45e0a805988f5492a6b103faa64d636ec9113f4949523dc7706ed45ab000448b63821985da946b5eadc0e1cc

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

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

2016-09-03 Thread Alex Brandt
commit: 1b6547d96661dd174db60eaecc6e631b147bdfe5
Author: Alex Brandt  gentoo  org>
AuthorDate: Sat Sep  3 14:30:05 2016 +
Commit: Alex Brandt  gentoo  org>
CommitDate: Sat Sep  3 14:30:05 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b6547d9

dev-python/s3transfer: rectify metadata overwrite

xiamao pointed out that I accidentally threw this work overtop of
existing work.  He suggested I at least merge the metadata with that in
6d3d8a71c0e825a77ced7588ddd5133026e07992 and this commit does that.

If there are any other problems due to this error, I'm sorry and feel
free to perform any necessary cleanups.

Package-Manager: portage-2.3.0

 dev-python/s3transfer/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-python/s3transfer/metadata.xml 
b/dev-python/s3transfer/metadata.xml
index 3e6df16..f8698a1 100644
--- a/dev-python/s3transfer/metadata.xml
+++ b/dev-python/s3transfer/metadata.xml
@@ -8,6 +8,10 @@
alund...@gentoo.org
Alex Brandt

+   
+ klaus...@gentoo.org
+ Tobias Klausmann
+   


 



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

2016-09-03 Thread Michael Orlitzky
commit: e8abed629d8fc366a48af728f86363ec3b8b6891
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Sat Sep  3 14:00:38 2016 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Sat Sep  3 14:01:27 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8abed62

dev-perl/File-LibMagic: new package, a perl interface to libmagic.

Package-Manager: portage-2.2.28

 .../File-LibMagic/File-LibMagic-1.150.0.ebuild | 38 ++
 dev-perl/File-LibMagic/Manifest|  1 +
 dev-perl/File-LibMagic/metadata.xml| 18 ++
 3 files changed, 57 insertions(+)

diff --git a/dev-perl/File-LibMagic/File-LibMagic-1.150.0.ebuild 
b/dev-perl/File-LibMagic/File-LibMagic-1.150.0.ebuild
new file mode 100644
index ..1d59b7c
--- /dev/null
+++ b/dev-perl/File-LibMagic/File-LibMagic-1.150.0.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+DIST_AUTHOR="DROLSKY"
+DIST_VERSION="1.15"
+
+inherit perl-module
+
+DESCRIPTION="Perl wrapper for libmagic"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   sys-apps/file
+   virtual/perl-Carp
+   virtual/perl-Exporter
+   virtual/perl-XSLoader
+   virtual/perl-Scalar-List-Utils
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   virtual/perl-File-Spec
+   virtual/perl-File-Temp
+   dev-perl/Test-Fatal
+   )
+"
+
+src_prepare() {
+   default
+   # Nuke author/release tests that will be skipped anyway.
+   perl_rm_files t/author-* t/release-*
+}

diff --git a/dev-perl/File-LibMagic/Manifest b/dev-perl/File-LibMagic/Manifest
new file mode 100644
index ..fc45bdf
--- /dev/null
+++ b/dev-perl/File-LibMagic/Manifest
@@ -0,0 +1 @@
+DIST File-LibMagic-1.15.tar.gz 124847 SHA256 
2c7fb54912caf2c22d06b02d6a88edad970e0f8b017634dc30eec46e53763e84 SHA512 
bd6e2ac57bf7a4443ceab5143b9381805941600d436fe1b04364f9ab26f60a3a9d142576619135b3e4fa7449b2aa379960dbe24dd19c5fdaa379963a13490d5e
 WHIRLPOOL 
186da7c21c0f2a0389a0dba816f667d3c801fe47ee32deb46e2c8ab9d8e83a9aced4aff66c2b2936582c3cefc55b9d0a7f0761188f34f937d31ea2f53e6a45a5

diff --git a/dev-perl/File-LibMagic/metadata.xml 
b/dev-perl/File-LibMagic/metadata.xml
new file mode 100644
index ..89daaef
--- /dev/null
+++ b/dev-perl/File-LibMagic/metadata.xml
@@ -0,0 +1,18 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+m...@gentoo.org
+Michael Orlitzky
+  
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+
+  
+File-LibMagic
+File::LibMagic
+  
+



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

2016-09-03 Thread Sergei Trofimovich
commit: 5917f76438cba881d0e8dbf8ccb1670b453ca0bb
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Sat Sep  3 14:00:55 2016 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Sat Sep  3 14:01:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5917f764

dev-libs/capstone: respect gentoo toolchain overrides, bug #592778

Respect AR, CC, CFLAGS, LDFLAGS, RANLIB, $libdir.
Thanks to Mike Auty who provided an example fix.

Reported-by: Mike Auty
Bug: https://bugs.gentoo.org/592778

Package-Manager: portage-2.3.0

 ...ne-3.0.4-r1.ebuild => capstone-3.0.4-r2.ebuild} | 22 ++
 1 file changed, 22 insertions(+)

diff --git a/dev-libs/capstone/capstone-3.0.4-r1.ebuild 
b/dev-libs/capstone/capstone-3.0.4-r2.ebuild
similarity index 55%
rename from dev-libs/capstone/capstone-3.0.4-r1.ebuild
rename to dev-libs/capstone/capstone-3.0.4-r2.ebuild
index 018e9db..41855d1 100644
--- a/dev-libs/capstone/capstone-3.0.4-r1.ebuild
+++ b/dev-libs/capstone/capstone-3.0.4-r2.ebuild
@@ -4,6 +4,8 @@
 
 EAPI=6
 
+inherit toolchain-funcs
+
 DESCRIPTION="disassembly/disassembler framework + bindings"
 HOMEPAGE="http://www.capstone-engine.org/;
 SRC_URI="https://github.com/aquynh/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
@@ -14,3 +16,23 @@ KEYWORDS="~amd64 ~x86"
 
 RDEPEND=""
 DEPEND="${RDEPEND}"
+
+src_configure() {
+   {
+   cat <<-EOF
+   # Gentoo overrides:
+   #   verbose build
+   V = 1
+   #   toolchain
+   AR = $(tc-getAR)
+   CC = $(tc-getCC)
+   RANLIB = $(tc-getRANLIB)
+   #  toolchain flags
+   CFLAGS = ${CFLAGS}
+   LDFLAGS = ${LDFLAGS}
+   #  libs
+   LIBDIRARCH = $(get_libdir)
+   EOF
+   } >> config.mk || die
+
+}



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

2016-09-03 Thread Jory Pratt
commit: 1ef7aa6a12d1251b59d7bc4b7c6ef292fc6f12eb
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Sat Sep  3 13:49:08 2016 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat Sep  3 13:49:08 2016 +
URL:https://gitweb.gentoo.org/proj/mozilla.git/commit/?id=1ef7aa6a

www-client/firefox : Bump for audio and other misc fixes in 48.0 branch

 www-client/firefox/Manifest| 182 ++---
 .../{firefox-48.0.ebuild => firefox-48.0.1.ebuild} |   0
 2 files changed, 91 insertions(+), 91 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 4ac58ab..debcc54 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -85,97 +85,97 @@ DIST firefox-45.3.0esr-xh.xpi 432918 SHA256 
2bd00cf16339926c24217901196cd4135cf6
 DIST firefox-45.3.0esr-zh-CN.xpi 475797 SHA256 
89cb03bd98b25a8f2a3468ac509a1cd5a893a74ec62b5cd436fe0e9e2f105333 SHA512 
4c5a3d210ffda1c96d4a15fdb0de7d20ac72261b254c6fdc2fc68ced307b62b755cf96d462a3b3ce4ecbd377428aea9514ae6b7d9ae94afbfa97b2a31f1d2368
 WHIRLPOOL 
c690ff40ba372b0ad4e2de7b73897461190c39fd0f8414c65e6329c1d2f7111333b19cca638ac6873472fb760302505829b2706d88399428e30e3b5f58a3a894
 DIST firefox-45.3.0esr-zh-TW.xpi 466529 SHA256 
811561b65046f345531d95854c028ed345e99f57c919efeee887ef4fb9dee79f SHA512 
cac89f9a36e59cfe174af5d1ed2eabd419fcd80581df4af15d4045deb619ea00f1a3dfe08305268f7e97ee6e8f52ad109f84f86cd06e26bb7ac886dfe5e347b8
 WHIRLPOOL 
b0c053899dc5430416fd90a2e57889cbf14673ba83d17984f48c09aac66250c3fe8b065ac75ea94097f641ca06e76b97bf83331cf5b37ffb45c6f2d702fcfb57
 DIST firefox-45.3.0esr.source.tar.xz 185330580 SHA256 
922233c65c0aabd05371974c289495119c28d72fc7f8b06a22b58c5f70f8b8f7 SHA512 
ee618aec579625122c3e511a7ac83ac4db9718f5695b6fe6250717602178bae9bb7e5ebe8764f4d33ecf44d3db13abfed0d24c1ec71e64a1087fb6d5a579b0c0
 WHIRLPOOL 
aeb4e5888466e2ec5f142c0ff7b70e231860d144d613490064462c790810dfbd58928752621c70922834a83cea0e70beb6c4828e2c4c05e846d51d11d18f4d2c
-DIST firefox-48.0-ach.xpi 433537 SHA256 
c1bcde1c4d61003f016a1934b8bb69481ae066c6096290bc1d502583d36e6256 SHA512 
90e9e34474047a1e656584c2559f628bd7c4aef6e240a872fdad5ca33ce17be802d2e8210eee36e306071a7783c718b901b57a5a7935506f95bb53f9ad04f1e8
 WHIRLPOOL 
0c05d8816e16d0a3e43831547d39efc496c054da7d149c4b203b76730c7e02a1c61dfbfd569d5639d8b9318611336b65113cc60b9ca888b128eb93d4984e17e8
-DIST firefox-48.0-af.xpi 438780 SHA256 
10edc281a7e1a6b45692eb82dfbcc5cc8f77f9d870301b959f3d6c88d4384c12 SHA512 
a2bd8791355ed72178bbe85a355b7ff60d701759dab7340f11fa70c34fa74c9b2db25068f7750f1fc58f6b72d1576010ea5b9fb36a67a61386cae64602f65fdc
 WHIRLPOOL 
dd35eda5d33feca469d9ecd20ef7dc27a3793624d76224cda17d812a41bc0122a0ccc905ecdd742ea2bcb04913d00c29ae32010a7e7a95fe0c167c2658404739
-DIST firefox-48.0-an.xpi 447344 SHA256 
e134d343802a8bdb72e02407ffad784085872e4cc4d967dc898425a246a25cee SHA512 
ea572be169102adfa8d8f2a54584e365379cf6501233bd130fd7e990ad7ec5a798a570b1cc268f0bcd235457b10d2842b3060713e0b95a76231a168b8ea06ca7
 WHIRLPOOL 
1b4484bef2e8d7631cdd943a16e3c2b55413869c3e2df08a35ccedf4da2420a4df3881aa870d72cee792088bbb4ee4141cacbdccc72fc6902680e818b683dd2e
-DIST firefox-48.0-ar.xpi 473319 SHA256 
52934f57e6bb93c892007d4f4346d1687ed7bbe14d96d32d192e2864924631c9 SHA512 
1509af5808b4bbc3ddffc7c3715da846be0d96c23e5a21f87586e0a6fea82ff6b3ce2e682493b38bb5530b21f85df490683ba6402e1def8d1793bdd47ccd41b6
 WHIRLPOOL 
a85c7da2f0a7ee4f40f9a4a1ee75f78b4b38652fe677109a4948f73e81ff306eafec23b3310d3bcbe1eb3511d41ab2ff1f56ef113bc03bbf9f3996778457cd9e
-DIST firefox-48.0-as.xpi 486849 SHA256 
7bfdcf010f7b1a6a3b3f3588b981491a3d70b2aa9032b2b4a6fbf363bb1f0205 SHA512 
c72b8042a59b49a9cecf8ad410c1df94f6b302039b4f2597515c57bf1dc13ab42ca1cac95b7aa56914b5f6568c0ccbeed8021e52029d5d4cd35b6fcd27dcd12a
 WHIRLPOOL 
1f04256a94b89e95ff321bbe8ce0e8964134a308b2dab14edd196e4679c35714d320a7e9de50c083a14016337a6dbe3f12aacfdb23e86ea1a9fe9f21914f5641
-DIST firefox-48.0-ast.xpi 464173 SHA256 
c529dd8ebc29fd25281b49cc608cad3fb126366ca45c7c049d4b40f742cf2095 SHA512 
d7d5ad541d3447e3a816cd10c07ebc0535c8a65305c8fc087a24e9e398ffd3ea85b90abe476563c39530f8d3346bc44a88a63945f2e91bda304c35ca94c8f815
 WHIRLPOOL 
abb70b12c0eb7dfdd1901eb96d05aa13b67248508b6a0fb27130ff78734953572d72c7edc3deee68e8394eca474bf09b37036e798d73fc59f1312f26048a8830
-DIST firefox-48.0-az.xpi 457528 SHA256 
6ca39a5a4d37868c4789c0f4d2b1ff7cac320623c26eaa425481d38c8d959e8e SHA512 
7e36f2679b983da1ca722a40fcfe1dbf82df30f8482ae71f4bc9595e827c03ef7bbbe319e1b35228c15f6c2a1274f9b8f56de65bd60df883e1dd1d7eb37c4d3d
 WHIRLPOOL 
d8d928bcfe17e8c6647730a59943d18c18cd7e43255e83a73cf1b2505181eba6519548e56912d82313dfa6cf56819393e42879867ceecd3e222a6afc456d1d6d
-DIST firefox-48.0-be.xpi 450846 SHA256 
05683ba7249b5ea8848879279bf26bc3bd4e58f1e0d8597445d9754769250fd1 SHA512 
3ab4616df5e5a5b5c6fa4e4d057cf598ed3ba5ec404d420f47fa5e7f5f688c3dade53147ec0d4ac042354f86a997cc8f8038c51a9273510593d6eb59bdce06ef
 WHIRLPOOL 

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

2016-09-03 Thread Mike Gilbert
commit: e16472d300e27f745e0b7ecd927f4eb9a030d6d9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 13:34:30 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 13:34:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e16472d3

dev-python/h5py: drop rm -r _build || die

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

Package-Manager: portage-2.3.0_p24

 dev-python/h5py/h5py-2.6.0.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/h5py/h5py-2.6.0.ebuild 
b/dev-python/h5py/h5py-2.6.0.ebuild
index e3722c2..7c861bd 100644
--- a/dev-python/h5py/h5py-2.6.0.ebuild
+++ b/dev-python/h5py/h5py-2.6.0.ebuild
@@ -48,7 +48,6 @@ python_compile_all() {
if use doc; then
cd "${S}"/docs || die
sed '/html_theme/s:default:alabaster:g' -i conf.py || die
-   rm -r _build || die
emake html
fi
 }



[gentoo-commits] proj/sci:master commit in: dev-python/future/

2016-09-03 Thread Marius Brehler
commit: b89a6ace6505e6e32d1aaf14ad95babeccc83d39
Author: Marius Brehler  linux  sungazer  de>
AuthorDate: Sat Sep  3 13:27:10 2016 +
Commit: Marius Brehler  linux  sungazer  de>
CommitDate: Sat Sep  3 13:27:10 2016 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=b89a6ace

dev-python/future: Available in the tree

 dev-python/future/future-0.15.2.ebuild | 22 --
 dev-python/future/metadata.xml | 21 -
 2 files changed, 43 deletions(-)

diff --git a/dev-python/future/future-0.15.2.ebuild 
b/dev-python/future/future-0.15.2.ebuild
deleted file mode 100644
index 873e15a..000
--- a/dev-python/future/future-0.15.2.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit distutils-r1
-
-DESCRIPTION="Clean single-source support for Python 3 and 2"
-HOMEPAGE="http://python-future.org/;
-SRC_URI="mirror://pypi/f/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-python_test() {
-   esetup.py test
-}

diff --git a/dev-python/future/metadata.xml b/dev-python/future/metadata.xml
deleted file mode 100644
index 5bfd629..000
--- a/dev-python/future/metadata.xml
+++ /dev/null
@@ -1,21 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-horea.chr...@gmail.com
-Horea Christian
-  
-  
-s...@gentoo.org
-Gentoo Science Project
-  
-  
-   future is the missing compatibility layer between Python 2 and
-   Python 3. It allows you to use a single, clean Python
-   3.x-compatible codebase to support both Python 2 and Python 3
-   with minimal overhead.
-  
-  
-future
-  
-



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

2016-09-03 Thread Mike Gilbert
commit: 8896a5c576adcf4db17cf4413243f3a1ef2185d8
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep  3 13:26:50 2016 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sat Sep  3 13:27:42 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8896a5c5

www-client/chromium: stable channel bump

Package-Manager: portage-2.3.0_p24

 www-client/chromium/Manifest| 2 +-
 .../{chromium-53.0.2785.70.ebuild => chromium-53.0.2785.92.ebuild}  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 2d60f64..1814356 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -1,4 +1,4 @@
-DIST chromium-53.0.2785.70.tar.xz 460838212 SHA256 
edd660ea30eeb1a3fccb1c18c725c96bf464b6ea34134c8210ef9dfa8cd35179 SHA512 
7029915f983f854ceb2e43b1bc896b2954eb2ca4f704a81070a837e2435ffd0f5a4e4128456826fc70e439997febb1eb715ed33b3336734f137952632f61dd7e
 WHIRLPOOL 
d6e51313b37c6408e6f41900b984f1cc835fb247dfb0371eaca9554425df5df2ae1d56e4efd31093c2ffcd0359b457338558ee8e66cd1a67f69528f5461cd5b2
 DIST chromium-53.0.2785.89.tar.xz 460845036 SHA256 
2e3c5f7b12b5b4f150b93004a718fb85778aeddc4df05bbf92b99a19a1c63dee SHA512 
b1ae1021bcebafa2e9e639d1ed14112d1553bad739148e52ad8831c7ae8bc3c1933a7c06bab443b694cec1f6a50eec82148029408bc5032c7e0ebbf75b502d55
 WHIRLPOOL 
1dadb6d32ad5d2e7a0caac4cc4ba3146c33bc375655cecda11580acc6e12617279bcf7eaf6fc481f0b8993cbced422b9596ecad1280478e4a310ca762fd1b622
+DIST chromium-53.0.2785.92.tar.xz 460758172 SHA256 
6130483e86c0b22c02c75ec453cf0d54f1079abe2c5c151379fb2eba2411f0f0 SHA512 
134413c3d2a21efcf6f241d5343f5c9a4ff315aa425f53c7d68d54ed4baf52dc9d669269910c955fb9a8fd32cb9720b9318f735a5800a1a839beb733f0521124
 WHIRLPOOL 
53170d162304872d14533409cb794b51f453145d24193213ab967115cd40fa0e32e2ad146d69a938a7a91201d569dec56b120a16c3da15011c550d60978f9ae4
 DIST chromium-54.0.2837.0.tar.xz 479983852 SHA256 
4813772a104aefc630bd80f81c663f702659fe8a7d592839bf04a1d252e20d75 SHA512 
f052afd0b32a1de30df55792c91fbc595489eb347b775e05db7f272e5d88ffc2ff8d498d35c811f2c4e4c14b6cd57d18549dddbbf6b085f5bbe533723dfc2dde
 WHIRLPOOL 
d37ec6920ce4922ff2dfd3b4c59691d735301b6124d49f6a854b7eca6975e0588ff975d8337d293a242014d2a5a747695a0dad4216e3c53b552d4a43a6c3a3dc
 DIST chromium-54.0.2840.6.tar.xz 479511944 SHA256 
2e1fb6c1095b1d03ccb8ce29c479e288bb53c196553ca7c71ac6c751f6628be5 SHA512 
489fcba841db7f5a6af221e8d5113a24db1cf4235b4dcaaf88f0a4afdde0ce91863464d4fbedf3e433e39f71d9019599eedec7fc85b8e082a3db60bed7177821
 WHIRLPOOL 
38967a688b6c391b63e8129b3099b9fdd53bc3fe13ea21ddd162141a030a1ddd3d19142fda18153c16b4bfe8b51f58e98983cde7b82ac89b1d93e5d4bf202df3

diff --git a/www-client/chromium/chromium-53.0.2785.70.ebuild 
b/www-client/chromium/chromium-53.0.2785.92.ebuild
similarity index 99%
rename from www-client/chromium/chromium-53.0.2785.70.ebuild
rename to www-client/chromium/chromium-53.0.2785.92.ebuild
index 1fa5fbb..9290132 100644
--- a/www-client/chromium/chromium-53.0.2785.70.ebuild
+++ b/www-client/chromium/chromium-53.0.2785.92.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="cups gn gnome gnome-keyring gtk3 +hangouts kerberos neon pic 
+proprietary-codecs pulseaudio selinux +system-ffmpeg +tcmalloc widevine"
 RESTRICT="!system-ffmpeg? ( proprietary-codecs? ( bindist ) )"
 



[gentoo-commits] data/api:master commit in: files/overlays/

2016-09-03 Thread Michał Górny
commit: 488c87fa0140aa1c6afe0f25e7bf43fe69bc1426
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 13:05:18 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 13:05:18 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=488c87fa

repositories: necromancy-overlay -> necromancy, #587670

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 2271048..9775c4b 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -3071,7 +3071,7 @@ FIN
 https://bitbucket.org/angry_elf/nashedelo/rss
   
   
-necromancy-overlay
+necromancy
 This repository contains the ebuild from Necrose99 
(some are works in progress)
 https://github.com/necrose99/necromancy-overlay
 



[gentoo-commits] data/api:master commit in: files/overlays/

2016-09-03 Thread Michał Górny
commit: 8e16a90503079b71d2d8c43c863a255027071de2
Author: chrytoo  gmail  com>
AuthorDate: Fri Sep  2 18:05:04 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 12:40:35 2016 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=8e16a905

repositories: Add chrytoo overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/8

 files/overlays/repositories.xml | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 3624dfb..2271048 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -59,6 +59,20 @@ SYN
   
 FIN
 -->
+
+   
+   chrytoo
+   Personal overlay for packages that 
usually aren't in the official repository...
+   https://github.com/chrytoo/gentoo-overlay
+   
+   chry...@gmail.com
+   Miloš Đ. Omeragić
+   
+   https://github.com/chrytoo/gentoo-overlay.git
+   git://github.com/chrytoo/gentoo-overlay.git
+   g...@github.com:chrytoo/gentoo-overlay.git
+   
https://github.com/chrytoo/gentoo-overlay/commits/master.atom
+   
   
 0x4d4c
 Personal overlay with no special focus



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

2016-09-03 Thread Michał Górny
commit: f5729bf9f598b341be093fe6e94499651f18c24a
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 11:41:58 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 12:07:17 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5729bf9

net-misc/aria2: Version bump to 1.26.1 (assertion fix)

 net-misc/aria2/Manifest|   1 +
 net-misc/aria2/aria2-1.26.1.ebuild | 150 +
 2 files changed, 151 insertions(+)

diff --git a/net-misc/aria2/Manifest b/net-misc/aria2/Manifest
index 8280284..c043b5a 100644
--- a/net-misc/aria2/Manifest
+++ b/net-misc/aria2/Manifest
@@ -3,3 +3,4 @@ DIST aria2-1.23.0.tar.xz 1493704 SHA256 
585185866415bf1120e4bf0a484e7dfec2e9e7c5
 DIST aria2-1.24.0.tar.xz 1495632 SHA256 
35a496d2704ffb07e0b0dcac16c6d9b2854327967f984218517403d187f7bf37 SHA512 
3e7f3fc2cd30edb5813b0d0fe6742671000730aa8d7e41e5396ab673912b8492885273de740985517b4a16efccedb1bdffb9bfdc235aa0d5fc31d2b547ae61e7
 WHIRLPOOL 
31a22233c5aacfaf8ee93da4bc13af0138ab6bc6eec6a458cb846834d61ddf2f1082a69a1eb24ee8feaad65d426a8fd4c235ffd886dbee44fb8749ecf79c3f0e
 DIST aria2-1.25.0.tar.xz 1493880 SHA256 
ff89eb4c76cfc816a6f5abc7dfd416cc3f339e7d02c761f822fa965a18cf0d35 SHA512 
d7a58ff895a6c2adfb80ef3a21419ebb18a5539290d11df4a8023dc46289f71a80a07ce15b4f146c1640fb4065f48d38c0a065437f5a36098c99e3350c4993ab
 WHIRLPOOL 
783bafee91742d5f093a52bb3a792b55c37f920faff386ec80589f203a3e2df291efd83c8f3c9fa15bd5b982ca4b93bd25c8af227e68fe710d6d797a922aec21
 DIST aria2-1.26.0.tar.xz 1496396 SHA256 
c828f3375e9ab251239747fbbbf747e5027339080b9fdec29ac746a0b8c6088d SHA512 
f87875c0740df054f44018431cff6e215f48a2458278be740b4cd7baa5723e8ed52215ea8c7c54944324f942bfe5c0ca7a532a9eb39eca3428a2f2d58e0ca0f0
 WHIRLPOOL 
4bfe87985775c547d86ad99ae1315e45c466b5ba00ea49e4a2b851621ae332833e55f86af764f96e3b408302ad8eccdeb00313b34b95a9e90f86503569f3cf88
+DIST aria2-1.26.1.tar.xz 1494864 SHA256 
f4e64e9754af5e1c0ee1ee2a50c5fa5acbc180855909209c2ce0111e86c9a801 SHA512 
1a96451ed72a557cddd605f2362c40b0db40878f3a40ce6898c95257178a2c04d5570354ac28dd4d451ed2931eb6bc86fb9addab6b0fd60857d026aae691e683
 WHIRLPOOL 
2e551bbd1af6d14ba396b26ee650dab7b89f258ca9cf84b90e09365fef80f944933fa1c0b1cf1bc5e3154c780b9fa3b08427c4efb9e4eded6c6c5559024a002b

diff --git a/net-misc/aria2/aria2-1.26.1.ebuild 
b/net-misc/aria2/aria2-1.26.1.ebuild
new file mode 100644
index ..38d2f53
--- /dev/null
+++ b/net-misc/aria2/aria2-1.26.1.ebuild
@@ -0,0 +1,150 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI="6"
+
+inherit bash-completion-r1
+
+DESCRIPTION="A download utility with segmented downloading with BitTorrent 
support"
+HOMEPAGE="http://aria2.sourceforge.net/;
+SRC_URI="https://github.com/tatsuhiro-t/${PN}/releases/download/release-${PV}/${P}.tar.xz;
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux ~x86-linux"
+SLOT="0"
+IUSE="adns bittorrent +gnutls jemalloc libuv +libxml2 metalink +nettle nls 
sqlite scripts ssh ssl tcmalloc test xmlrpc"
+
+CDEPEND="sys-libs/zlib:0=
+   ssl? (
+   app-misc/ca-certificates
+   gnutls? ( >=net-libs/gnutls-1.2.9:0= )
+   !gnutls? ( dev-libs/openssl:0= ) )
+   adns? ( >=net-dns/c-ares-1.5.0:0= )
+   bittorrent? (
+   ssl? (
+   gnutls? (
+   nettle? ( >=dev-libs/nettle-2.4:0=[gmp] 
>=dev-libs/gmp-5:0= )
+   !nettle? ( >=dev-libs/libgcrypt-1.2.2:0= ) ) )
+   !ssl? (
+   nettle? ( >=dev-libs/nettle-2.4:0=[gmp] 
>=dev-libs/gmp-5:0= )
+   !nettle? ( >=dev-libs/libgcrypt-1.2.2:0= ) ) )
+   jemalloc? ( dev-libs/jemalloc )
+   libuv? ( dev-libs/libuv:0= )
+   metalink? (
+   libxml2? ( >=dev-libs/libxml2-2.6.26:2= )
+   !libxml2? ( dev-libs/expat:0= ) )
+   sqlite? ( dev-db/sqlite:3= )
+   ssh? ( net-libs/libssh2:= )
+   tcmalloc? ( dev-util/google-perftools )
+   xmlrpc? (
+   libxml2? ( >=dev-libs/libxml2-2.6.26:2= )
+   !libxml2? ( dev-libs/expat:0= ) )"
+
+DEPEND="${CDEPEND}
+   app-arch/xz-utils
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+   test? ( >=dev-util/cppunit-1.12.0:0 )"
+RDEPEND="${CDEPEND}
+   nls? ( virtual/libiconv virtual/libintl )
+   scripts? ( dev-lang/ruby )"
+
+REQUIRED_USE="jemalloc? ( !tcmalloc )
+   tcmalloc? ( !jemalloc )"
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+   if use scripts && use !xmlrpc && use !metalink; then
+   ewarn "Please note that you may need to enable USE=xmlrpc to 
run the aria2rpc"
+   ewarn "and aria2mon scripts against the local aria2."
+   fi
+}
+
+src_prepare() {
+   default
+   sed -i -e "s|/tmp|${T}|" test/*.cc test/*.txt || die "sed failed"
+}
+
+src_configure() {
+   

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

2016-09-03 Thread Michał Górny
commit: e2b54d1107b3c0d4d38feaab3fa37ff7879bf9af
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 11:36:12 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 12:07:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2b54d11

dev-libs/jsoncpp: Version bump to 1.7.5 (minor fixes)

 dev-libs/jsoncpp/Manifest |  1 +
 dev-libs/jsoncpp/jsoncpp-1.7.5.ebuild | 74 +++
 2 files changed, 75 insertions(+)

diff --git a/dev-libs/jsoncpp/Manifest b/dev-libs/jsoncpp/Manifest
index 4a319f0..30610e6 100644
--- a/dev-libs/jsoncpp/Manifest
+++ b/dev-libs/jsoncpp/Manifest
@@ -3,3 +3,4 @@ DIST jsoncpp-0.10.6.tar.gz 200213 SHA256 
7c285fc40ad0c113e436a1271c4e38b5017b5c7
 DIST jsoncpp-1.6.5.tar.gz 200507 SHA256 
a2b121eaff56ec88cfd034d17685821a908d0d87bc319329b04f91a6552c1ac2 SHA512 
589153d525ffde15e10f1ef6907c6b5d0f62a41c8cebdc12fe2bc4d989bcd861cdac79526de2f51872c0a17e574bf0fd8c913f0aa301c184efa1e3f2fb2b1955
 WHIRLPOOL 
a1253362a0bdd8a6d05e84fb7d7de5b79aec0cadf5a03a8c2be8a6e8062e6ae231e5b97cd99ee9607c2c546afa58dabb183167c6a74b409d32485b45c7d3e9ae
 DIST jsoncpp-1.7.2.tar.gz 205391 SHA256 
2179a7df19c1c6dc87e02c65b847efc914625a9b87df3e443d9610fc70c0f557 SHA512 
32702147229ea7a3679654325572c38f4188f258ab6ac21f9e04059d53ef2a7cd0542ec4ec3b0e7b9089acd2b7bce389f16b9ff24b2e63e0ba2a5bcd46bab766
 WHIRLPOOL 
a4c71f4c8cd6468f8326120bd106b50c563ab1b7a10df4874d96dd2c03f115645f1016c4e2e52f8056f58f7a40bd6bfc2a75e6aca896bdf98652b1052fde1fd8
 DIST jsoncpp-1.7.4.tar.gz 205752 SHA256 
10dcd0677e80727e572a1e462193e51a5fde3e023b99e144b2ee1a469835f769 SHA512 
e674f6f885e2aa7258d3d3d7a14ef148b5182fd883a527b3b9d75334e778142a833bbb295796af503573b9745f889b8bc496a0b2e11dce1b9cc7f079ac538bf7
 WHIRLPOOL 
510915e507235d2e89d0f8097336c7910af161c2f9b39eb034be429441e457db4d5d01b8e87342654a68cf5fecdfe584ff1d1ba23fabc58012d80a9bb78e4819
+DIST jsoncpp-1.7.5.tar.gz 205989 SHA256 
4338c6cab8af8dee6cdfd54e6218bd0533785f552c6162bb083f8dd28bf8fbbe SHA512 
c8217e390d4b15e046a6f14ad54257ac8ecc13b70073a15c502b451df25c6d8bbc645ee50bb12e67433bf2c9053e2a39544d465c19124c7b882b69dd80b70ab2
 WHIRLPOOL 
312522ed7d8c03a50406f6a93355fab341022ef433b553f50d6d2b9e052c645361a4cea0771f1a16189921a15d025d35f0a6a5ff251d18a9ec48faa90084bb87

diff --git a/dev-libs/jsoncpp/jsoncpp-1.7.5.ebuild 
b/dev-libs/jsoncpp/jsoncpp-1.7.5.ebuild
new file mode 100644
index ..8f24a36
--- /dev/null
+++ b/dev-libs/jsoncpp/jsoncpp-1.7.5.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+
+inherit cmake-utils python-any-r1
+
+DESCRIPTION="C++ JSON reader and writer"
+HOMEPAGE="https://github.com/open-source-parsers/jsoncpp;
+SRC_URI="https://github.com/open-source-parsers/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="|| ( public-domain MIT )"
+SLOT="0/1"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc test"
+
+DEPEND="
+   doc? (
+   app-doc/doxygen
+   ${PYTHON_DEPS}
+   )
+   test? (
+   ${PYTHON_DEPS}
+   )"
+RDEPEND=""
+
+RESTRICT="!test? ( test )"
+
+pkg_setup() {
+   if use doc || use test; then
+   python-any-r1_pkg_setup
+   fi
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DJSONCPP_WITH_TESTS=$(usex test)
+   -DJSONCPP_WITH_POST_BUILD_UNITTEST=OFF
+   -DJSONCPP_WITH_CMAKE_PACKAGE=ON
+
+   -DBUILD_SHARED_LIBS=ON
+   -DBUILD_STATIC_LIBS=OFF
+   # Follow Debian, Ubuntu, Arch convention for headers location
+   # bug #452234
+   -DINCLUDE_INSTALL_DIR="${EPREFIX}"/usr/include/jsoncpp
+   # Disable implicit ccache use
+   -DCCACHE_FOUND=OFF
+   )
+
+   cmake-utils_src_configure
+}
+
+src_compile() {
+   cmake-utils_src_compile
+
+   if use doc; then
+   "${EPYTHON}" doxybuild.py --doxygen=/usr/bin/doxygen || die
+   fi
+}
+
+src_test() {
+   emake -C "${BUILD_DIR}" jsoncpp_check
+}
+
+src_install() {
+   cmake-utils_src_install
+
+   if use doc; then
+   docinto html
+   dodoc -r dist/doxygen/jsoncpp*/.
+   fi
+}



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

2016-09-03 Thread Michał Górny
commit: 9d9eaa41e3b3a9280af117a7ce70b7f87124a509
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 11:49:10 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 12:07:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d9eaa41

xfce-extra/xfce4-weather-plugin: Version bump to 0.8.8

 xfce-extra/xfce4-weather-plugin/Manifest   |  1 +
 .../xfce4-weather-plugin-0.8.8.ebuild  | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/xfce-extra/xfce4-weather-plugin/Manifest 
b/xfce-extra/xfce4-weather-plugin/Manifest
index 438c68f..d220ed2 100644
--- a/xfce-extra/xfce4-weather-plugin/Manifest
+++ b/xfce-extra/xfce4-weather-plugin/Manifest
@@ -1 +1,2 @@
 DIST xfce4-weather-plugin-0.8.7.tar.bz2 2976092 SHA256 
071e71106868c7d90c936256d837ca834d0ca6f54daea59a9b5fc11b318e65b0 SHA512 
681b500cbeead09e61b2d30960853503e90ece6a73871b0a603d32026d7781096e5dac8fc456fb80a9a3a69c65f2ff1e297ffab520e7a7b27a31d5b7627710c8
 WHIRLPOOL 
b195c2bf4a517623f3ad869f4ef70776de0ee49a99644207869c9ab6b3bce8e81e7f8e46143b38af468f638e5d34b7ca9d2878f50dc6468007a04152360a93c2
+DIST xfce4-weather-plugin-0.8.8.tar.bz2 2979971 SHA256 
651b722714fdafde3f548f183958c34e1539cf563193d7e51f28bfb6933d6d3f SHA512 
98e35d11bc57edf926228d7da2c5fbd4320f9dce0ff4fab232b81a98f4ff979c80575c077b9ffb161c54bf81f5da400b518838be881fbea82e5b1c37cae2c01a
 WHIRLPOOL 
47118162fa35ab3b69018605190802ce17a2df9dcc4712bea267d262afe88c226bd0b58c9eb323957fe47e8531003fb6abe2f5dd4c05ea488874cc345966fa1d

diff --git a/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.8.ebuild 
b/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.8.ebuild
new file mode 100644
index ..6e298b9
--- /dev/null
+++ b/xfce-extra/xfce4-weather-plugin/xfce4-weather-plugin-0.8.8.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+inherit xfconf
+
+DESCRIPTION="A weather plug-in for the Xfce desktop environment"
+HOMEPAGE="http://goodies.xfce.org/projects/panel-plugins/xfce4-weather-plugin;
+SRC_URI="mirror://xfce/src/panel-plugins/${PN}/${PV%.*}/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86"
+IUSE="debug upower"
+
+RDEPEND=">=dev-libs/glib-2.20:=
+   dev-libs/libxml2:=
+   >=net-libs/libsoup-2.32:=
+   >=x11-libs/gtk+-2.14:2=
+   >=xfce-base/libxfce4ui-4.10:=
+   >=xfce-base/libxfce4util-4.10:=
+   >=xfce-base/xfce4-panel-4.10:=
+   upower? ( || ( >=sys-power/upower-0.9.23 sys-power/upower-pm-utils ) )"
+DEPEND="${RDEPEND}
+   dev-util/intltool
+   virtual/pkgconfig"
+
+pkg_setup() {
+   # For GEONAMES_USERNAME, read README file and ask ssuominen@!
+   XFCONF=(
+   $(use_enable upower)
+   $(xfconf_use_debug)
+   GEONAMES_USERNAME=Gentoo
+   )
+
+   DOCS=( AUTHORS ChangeLog NEWS README TODO )
+}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/biopython/

2016-09-03 Thread David Seifert
commit: 7440b9fd9976ffc4cbca598082c9e52f541040c8
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  3 11:24:35 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  3 11:24:52 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7440b9fd

sci-biology/biopython: Version bump

Package-Manager: portage-2.3.0

 sci-biology/biopython/Manifest  |  1 +
 sci-biology/biopython/biopython-1.68.ebuild | 56 +
 2 files changed, 57 insertions(+)

diff --git a/sci-biology/biopython/Manifest b/sci-biology/biopython/Manifest
index a54d05e..9e5a8d9 100644
--- a/sci-biology/biopython/Manifest
+++ b/sci-biology/biopython/Manifest
@@ -1,2 +1,3 @@
 DIST biopython-1.65.tar.gz 12641342 SHA256 
463cc81db84e9bfcdfb15629511c81ed556a6c0287e670dbfe80f03c65d2a88e SHA512 
2a9c6a89d0279374c243938d13bfdd6f2b124a08afbfb0c262e1e4827c48a141fb9941f4cdb960f76b523f0ac152095a8c6ea566d9b469ce9daf8a7e7993f7af
 WHIRLPOOL 
40757938c0eb7e30c9609ef5aa2d397fa21ad92cd20c9b6300cde1b381a0e6c21e4ebb7f4d25bf02651789437d7d86341154b907ccc0007759c17939f2e29da2
 DIST biopython-1.66.tar.gz 13724754 SHA256 
5178ea3b343b1d8710f39205386093e5369ed653aa020e1b0c4b7622a59346c1 SHA512 
6bb01f1058728f957527447df82ffbb9027e74564e81c8308b3404d033a0f12fef50da05b343bd4c4eae98508931eedc9c4bc23b2efdf36bbb49f1557fa52d71
 WHIRLPOOL 
0cfe3f4829ec72afa466b17cf6745cc334105713ebeeb06019e2df94acc1289aeb07a7bba70a50afeae00de90c48d2455a1af8cf26f916ceb4c0ab92a4a05fbd
+DIST biopython-1.68.tar.gz 14445813 SHA256 
d1dc09d1ddc8e90833f507cf09f80fa9ee1537d319058d1c44fe9c09be3d0c1f SHA512 
0ca994475654bb68ff326c8e86cbd4547cd87b42e1633dda039ad668e1298884b22e169f6b25ab514e929861334a93b7db6d057a3486cea9997ca2de95c61a69
 WHIRLPOOL 
9348354d0063efe0f9051f46e3be60540c5df21a43c094d74e64d37279736921d890cd639c904336eb21b2996e9948b8a050017b77569d2333ac80aa5b8bf156

diff --git a/sci-biology/biopython/biopython-1.68.ebuild 
b/sci-biology/biopython/biopython-1.68.ebuild
new file mode 100644
index ..265181c
--- /dev/null
+++ b/sci-biology/biopython/biopython-1.68.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{3,4,5} pypy )
+
+inherit distutils-r1 eutils
+
+DESCRIPTION="Python modules for computational molecular biology"
+HOMEPAGE="http://www.biopython.org/ https://pypi.python.org/pypi/biopython/;
+SRC_URI="http://www.biopython.org/DIST/${P}.tar.gz;
+
+LICENSE="HPND"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+IUSE=""
+
+RDEPEND="
+   dev-python/matplotlib[$(python_gen_usedep 'python*')]
+   dev-python/networkx[$(python_gen_usedep 'python*')]
+   dev-python/numpy[$(python_gen_usedep 'python*')]
+   dev-python/rdflib[$(python_gen_usedep 'python*')]
+   dev-python/pygraphviz[$(python_gen_usedep 'python2*')]
+   dev-python/reportlab[$(python_gen_usedep 'python*')]
+   media-gfx/pydot[$(python_gen_usedep 'python2*')]
+   "
+DEPEND="${RDEPEND}
+   sys-devel/flex"
+
+DOCS=( CONTRIB DEPRECATED NEWS README Doc/. )
+
+python_test() {
+   distutils_install_for_testing
+   cp -r "${S}"/{Doc,Tests} "${TEST_DIR}"/lib/ || die
+   cd "${TEST_DIR}"/lib/Tests || die
+   rm test_BioSQL_{psycopg2.py,MySQLdb.py,mysql_connector.py} || die
+   ${PYTHON} run_tests.py --offline --verbose || die
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   dodir /usr/share/${PN}
+   cp -r --preserve=mode Scripts Tests "${ED%/}"/usr/share/${PN} || die
+}
+
+pkg_postinst() {
+   elog "For database support you need to install:"
+   optfeature "MySQL" dev-python/mysql-python
+   optfeature "PostGreSQL" dev-python/psycopg
+   elog
+   elog "Some applications need extra packages:"
+   optfeature "EMBOSS (The European Molecular Biology Open Software 
Suite)" sci-biology/emboss
+}



[gentoo-commits] dev/ikelos:master commit in: dev-util/capstone/

2016-09-03 Thread Mike Auty
commit: 4a5cef7d391bcaa04b12dba9166bd3660a873e84
Author: layman  localhost>
AuthorDate: Sat Sep  3 11:21:18 2016 +
Commit: Mike Auty  gentoo  org>
CommitDate: Sat Sep  3 11:21:18 2016 +
URL:https://gitweb.gentoo.org/dev/ikelos.git/commit/?id=4a5cef7d

Remove capstone now it's in the main tree.

 dev-util/capstone/Manifest  |  2 --
 dev-util/capstone/capstone-3.0.4.ebuild | 64 -
 2 files changed, 66 deletions(-)

diff --git a/dev-util/capstone/Manifest b/dev-util/capstone/Manifest
deleted file mode 100644
index f303fb7..000
--- a/dev-util/capstone/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST capstone-3.0.4.tar.gz 2800818 SHA256 
5d6dadf5864c56f8de66c66088fa68e849d0bff6577865a4f81b6f23112b14f2 SHA512 
a5c29e7c559b5391d6a4ec9a7f766699ea6d321aa2f1fc57fdcec893107fa3ef2f5f6323629971c1129f1ca087df4f3ad03d0a8234d2eae368c8ccfec04dbf4d
 WHIRLPOOL 
24aa002e215ee2a74c06a9be40218c78258a853028c74e1cdf95a5e2ea484471cf084cc8f5cc9db1aaefc16cf80a0b37480d4af60ca9119730334cbe2a02b906
-EBUILD capstone-3.0.4.ebuild 1717 SHA256 
c6a0cdc8ccc45b1b1048d8ce0c3d02babd61ae22056b82d67e85ca5359ebc63a SHA512 
55bb1011ba9788e157beb6c168f66c0eca48d64e20a6d463811850a66e31e6c190e96b017bf527928a56ba24014e4bfd05e6e042f18d6684f24d225163f1a99e
 WHIRLPOOL 
51a4a938c5df6505e28ae1f395f6bae4eb0e7052783b93d2d82616cb76ef0d45849d2f65ec3af595560af97976fd736a9cd73950f647d4731d5a8be7e8e6fc2e

diff --git a/dev-util/capstone/capstone-3.0.4.ebuild 
b/dev-util/capstone/capstone-3.0.4.ebuild
deleted file mode 100644
index 5085a24..000
--- a/dev-util/capstone/capstone-3.0.4.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Header: blshkv$
-
-EAPI=5
-PYTHON_COMPAT=( python{2_7,3_4} )
-
-inherit eutils multilib distutils-r1
-
-#MY_PV=${PV//_/-}
-DESCRIPTION="A lightweight multi-platform, multi-architecture disassembly 
framework"
-HOMEPAGE="http://www.capstone-engine.org/;
-SRC_URI="https://github.com/aquynh/capstone/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0/3"
-KEYWORDS="~amd64 ~arm ~x86"
-IUSE="python cython"
-
-#RDEPEND="python? ( >=dev-python/capstone-python-${PV} )"
-RDEPEND=""
-DEPEND="cython? ( >=dev-python/cython-0.22 )
-!dev-python/capstone-python"
-#TODO: add java and ocaml bindings
-
-#S=${WORKDIR}/${PN}-${MY_PV}
-
-src_prepare() {
-   if use python; then
-cd "${S}/bindings/python"
-#our hack to adjust cython setup
-   if use cython; then
-cp setup_cython.py setup.py
-#this section is from Makefile
-cp capstone/__init__.py pyx/__init__.py
-   for i in arm{,_const} arm64{,_const} mips{,_const} 
ppc{,_const} x86{,_const} sparc{,_const} systemz sysz_const xcore{,_const}; do
-   cp capstone/${i}.py pyx/${i}.pyx
-   done
-fi
-   distutils-r1_src_prepare
-   fi
-   default_src_prepare
-}
-
-src_compile() {
-   if use python; then
-   cd "${S}/bindings/python"
-   distutils-r1_src_compile
-   cd "${S}"
-   fi
-   default_src_compile
-}
-
-src_install() {
-   cd "${S}/bindings/python"
-   distutils-r1_src_install
-   cd "${S}"
-   emake DESTDIR="${ED}" LIBDIRARCH=$(get_libdir) install
-#  if use !test; then
-#  dodir /usr/share/"${PN}"/
-#  cp -R "${S}"/tests "${D}/usr/share/${PN}/" || die "Install 
failed!"
-#  fi
-   dodoc README CREDITS.TXT RELEASE_NOTES ChangeLog 
docs/BHUSA2014-capstone.pdf
-}



[gentoo-commits] dev/mgorny:master commit in: dev-binpkg/pypy/

2016-09-03 Thread Michał Górny
commit: 983e6231c24804c1d8f48c311a55bcda55588d4d
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 11:12:42 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 11:12:42 2016 +
URL:https://gitweb.gentoo.org/dev/mgorny.git/commit/?id=983e6231

dev-binpkg/pypy: Bump to 5.4.0

 dev-binpkg/pypy/Manifest  |   1 +
 dev-binpkg/pypy/pypy-5.4.0.ebuild | 193 ++
 2 files changed, 194 insertions(+)

diff --git a/dev-binpkg/pypy/Manifest b/dev-binpkg/pypy/Manifest
index 9bf23b9..712061e 100644
--- a/dev-binpkg/pypy/Manifest
+++ b/dev-binpkg/pypy/Manifest
@@ -5,3 +5,4 @@ DIST pypy-5.0.0-src.tar.bz2 17223494 SHA256 
89027b1b33553b53ff7733dc4838f0a76af2
 DIST pypy-5.1.1-src.tar.bz2 17328934 SHA256 
ca3d943d7fbd78bb957ee9e5833ada4bb8506ac99a41b7628790e286a65ed2be SHA512 
2d81b62747ac02980c275fe24fff689e93b4b352e6279c55ca570fd76b8477a55f819e81fab4c6ffdb6991f29536c606d75e238d5bbe04518357509020f23ca9
 WHIRLPOOL 
17f78c8c7df9e07af3fce15392061652284606fbd872706888094ec01d222957c8ee43d2667369377ceb1a9720692d130e4a540bcaff269b4c7d8896b14d708d
 DIST pypy2-v5.3.0-src.tar.bz2 17361429 SHA256 
4142eb8f403810bc88a4911792bb5a502e152df95806e33e69050c828cd160d5 SHA512 
6387987b93bebf8ca6d820bde6c42c1a7427a778ff01cf93766df34be792cb1a8d927b3e402f90159df75f68aa1c913a28e9d453e3b13b28489cb68670ef121d
 WHIRLPOOL 
57b9718b1ed72f13005a6d5a60b24d0fdab522ff63b3f91264433cf17f0bb4c5f36e3121d8d92744386fa5d31fbce14711689c85f87a53b68bfdbddaa19a3edd
 DIST pypy2-v5.3.1-src.tar.bz2 17361760 SHA256 
31a52bab584abf3a0f0defd1bf9a29131dab08df43885e7eeddfc7dc9b71836e SHA512 
3138dde3cb1a155e389a2be615601e22f468d2bc77dd219a35b310052fa06f68f80c3ff62fa4d0a9179eae014ace18620d0a076a0528cb155b1c33cc94d6b397
 WHIRLPOOL 
518b73ec649673fb1fc333b5d0e7669f06e9569624e2f8b55dbbf24b5f109a3b9680ed1d45c6401eb62ee8761043ec9c38a33e6d396c39c3f2fb5ba30f15e93a
+DIST pypy2-v5.4.0-src.tar.bz2 17414795 SHA256 
d9568ebe9a14d0eaefde887d78f3cba63d665e95c0d234bb583932341f55a655 SHA512 
a989393f75ff45d6a8b8b2597c0a208559b3188ffdf65205ad491332f1836a86bbb419a3dfba67f80e5ab8d075aa97f44c63316f805a51d7ce1481e81b461373
 WHIRLPOOL 
623bbaed02214cbc2092abd163e102c11405f12b73dd2ace8098e08a415bd43a0bf13809913b56c378a8a688ff6ff561dc9a90bcd479de85bb301aa67c670d26

diff --git a/dev-binpkg/pypy/pypy-5.4.0.ebuild 
b/dev-binpkg/pypy/pypy-5.4.0.ebuild
new file mode 100644
index 000..63dc8fe
--- /dev/null
+++ b/dev-binpkg/pypy/pypy-5.4.0.ebuild
@@ -0,0 +1,193 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 pypy )
+inherit check-reqs eutils multilib multiprocessing pax-utils python-any-r1 
toolchain-funcs versionator
+
+MY_P=pypy2-v${PV}
+
+DESCRIPTION="A fast, compliant alternative implementation of the Python 
language"
+HOMEPAGE="http://pypy.org/;
+SRC_URI="https://bitbucket.org/pypy/pypy/downloads/${MY_P}-src.tar.bz2;
+
+LICENSE="MIT"
+SLOT="0/$(get_version_component_range 1-2 ${PV})"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="bzip2 +jit low-memory ncurses sandbox shadowstack sqlite 
cpu_flags_x86_sse2"
+
+DEPEND=">=sys-libs/zlib-1.1.3:0=
+   virtual/libffi:0=
+   virtual/libintl:0=
+   dev-libs/expat:0=
+   dev-libs/openssl:0=[-bindist]
+   bzip2? ( app-arch/bzip2:0= )
+   ncurses? ( sys-libs/ncurses:0= )
+   app-arch/lzip
+   ${PYTHON_DEPS}"
+
+S="${WORKDIR}/${MY_P}-src"
+
+pkg_pretend() {
+   if use low-memory; then
+   if ! python_is_installed pypy; then
+   eerror "USE=low-memory requires a (possibly old) 
version of dev-python/pypy"
+   eerror "or dev-python/pypy-bin being installed. Please 
install it using e.g.:"
+   eerror
+   eerror "  $ emerge -1v dev-python/pypy-bin"
+   eerror
+   eerror "before attempting to build 
dev-python/pypy[low-memory]."
+   die "dev-python/pypy-bin (or dev-python/pypy) needs to 
be installed for USE=low-memory"
+   fi
+
+   CHECKREQS_MEMORY="1750M"
+   use amd64 && CHECKREQS_MEMORY="3500M"
+   else
+   CHECKREQS_MEMORY="3G"
+   use amd64 && CHECKREQS_MEMORY="6G"
+   fi
+
+   check-reqs_pkg_pretend
+
+   [[ ${PYPY_BINPKG_STORE} ]] || die 'PYPY_BINPKG_STORE unset, wtf?!'
+}
+
+pkg_setup() {
+   pkg_pretend
+
+   if python_is_installed pypy; then
+   if [[ ! ${EPYTHON} || ${EPYTHON} == pypy ]] || use low-memory; 
then
+   einfo "Using already-installed PyPy to perform the 
translation."
+   local EPYTHON=pypy
+   else
+   einfo "Using ${EPYTHON} to perform the translation. 
Please note that upstream"
+   einfo "recommends using PyPy for that. If you wish to 
do so, please unset"
+

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

2016-09-03 Thread Michał Górny
commit: 5ac6071c931acd281eddd9bae478386df7a1bfc3
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 10:45:25 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 11:05:59 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ac6071c

sys-apps/baselayout: Do not complain about lib+lib32 when it is valid

Remove the error on 'lib' directory with SYMLINK_LIB=no multilib layout
if lib32 is a valid directory as well. This fixes the wrong assert
in the new no-lib-symlink profile while preserving the check on regular
lib+lib64 profile.

 sys-apps/baselayout/baselayout-2.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/baselayout/baselayout-2.3.ebuild 
b/sys-apps/baselayout/baselayout-2.3.ebuild
index b4e82d2..d3d1351 100644
--- a/sys-apps/baselayout/baselayout-2.3.ebuild
+++ b/sys-apps/baselayout/baselayout-2.3.ebuild
@@ -87,7 +87,7 @@ multilib_layout() {
else
mkdir -p "${prefix}lib" || die
fi
-   elif [ -d "${prefix}lib" ] ; then
+   elif [ -d "${prefix}lib" ] && ! has lib32 ${libdirs} ; 
then
# make sure the old "lib" ABI location does not 
exist; we
# only symlinked the lib dir on systems where 
we moved it
# to "lib32" ...



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

2016-09-03 Thread Michał Górny
commit: 5a5c86a41bc4e4ae8e367dd4407116f44d8d6e89
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 10:43:27 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 11:05:57 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a5c86a4

sys-apps/baselayout: Fix SYMLINK_LIB=no to create lib dir instead of sym

Fix the 'else' branch of SYMLINK_LIB=no code to create 'lib' as
a directory rather than a symlink.

 sys-apps/baselayout/baselayout-2.3.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/sys-apps/baselayout/baselayout-2.3.ebuild 
b/sys-apps/baselayout/baselayout-2.3.ebuild
index 5c4e7c1..b4e82d2 100644
--- a/sys-apps/baselayout/baselayout-2.3.ebuild
+++ b/sys-apps/baselayout/baselayout-2.3.ebuild
@@ -106,9 +106,7 @@ multilib_layout() {
else
# nothing exists, so just set it up sanely
ewarn "Initializing ${prefix}lib as a dir"
-   mkdir -p "${prefix}" || die
-   rm -f "${prefix}lib" || die
-   ln -s ${def_libdir} "${prefix}lib" || die
+   mkdir -p "${prefix}lib" || die
fi
fi
done



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

2016-09-03 Thread Michał Górny
commit: 9f670e5d23d09556e3b52916c896e2ea32508981
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jul 21 15:17:14 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 11:05:53 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f670e5d

multilib.eclass: get_exeext for mingw/cygwin exe suffix, #588330

Add a get_exeext function that can be used to obtain executable program
suffix specific to the platform, in line with get_libname and
get_modname. It is necessary to correctly reference built programs on
non-standard platforms where executables use some suffix (like .exe).

Original author: Gerhard Bräunlich

 eclass/multilib.eclass | 14 ++
 1 file changed, 14 insertions(+)

diff --git a/eclass/multilib.eclass b/eclass/multilib.eclass
index 8c95387..a80511c 100644
--- a/eclass/multilib.eclass
+++ b/eclass/multilib.eclass
@@ -225,6 +225,20 @@ number_abis() {
echo $#
 }
 
+# @FUNCTION: get_exeext
+# @DESCRIPTION:
+# Returns standard executable program suffix (null, .exe, etc.)
+# for the current platform identified by CHOST.
+#
+# Example:
+# get_exeext
+# Returns: null string (almost everywhere) || .exe (mingw*) || ...
+get_exeext() {
+   case ${CHOST} in
+   *-cygwin*|mingw*|*-mingw*)  echo ".exe";;
+   esac
+}
+
 # @FUNCTION: get_libname
 # @USAGE: [version]
 # @DESCRIPTION:



[gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm/, profiles/

2016-09-03 Thread Michał Górny
commit: db5080ddf2ea63bfd329d2c0e89fd5bd05e8f9ef
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 10:25:01 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 11:05:48 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db5080dd

sys-devel/llvm: Bump to 3.9.0 release (no changes since rc3)

 profiles/package.mask   |  7 +++
 sys-devel/llvm/Manifest | 10 +-
 sys-devel/llvm/{llvm-3.9.0_rc3.ebuild => llvm-3.9.0.ebuild} | 10 +-
 3 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 38737e6..1d1354e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -57,11 +57,10 @@ app-crypt/hashcat-gui
 ~mail-client/thunderbird-38.8.0
 
 # Michał Górny  (28 Aug 2016)
-# Last-minute RC, masked for testing. Includes dev-util/cmake
-# find_library() lib32 support backport.
-=dev-util/cmake-3.6.1-r1
+# Masked for testing, and porting revdeps. Please do not unmask before
+# media-libs/mesa release supports it.
 ~sys-devel/clang-3.9.0_rc3
-~sys-devel/llvm-3.9.0_rc3
+~sys-devel/llvm-3.9.0
 
 # Lars Wendler  (26 Aug 2016)
 # Masked while being tested and reverse deps aren't fully compatible

diff --git a/sys-devel/llvm/Manifest b/sys-devel/llvm/Manifest
index 0d46bfc..239bf72 100644
--- a/sys-devel/llvm/Manifest
+++ b/sys-devel/llvm/Manifest
@@ -4,25 +4,25 @@ DIST cfe-3.6.2.src.tar.xz 8617576 SHA256 
ae9180466a23acb426d12444d866b266ff2289b
 DIST cfe-3.7.1.src.tar.xz 9110616 SHA256 
56e2164c7c2a1772d5ed2a3e57485ff73ff06c97dff12edbeea1acc4412b0674 SHA512 
8e3285a32ad0fd4721fa77c4fb9709f31bb4e4f7cb5245357aaf57b0767b6ef18a30d902b59d1437a6febffb6c2128214f9ce5aa913bb298743221a28c4f9de5
 WHIRLPOOL 
ce300f5023bddda59ee055e4dccdca8bf459fae5d4e91c44262d2830c406b798d697d1bf3c6326ff41b969a8439f94a3c83570f1d0151a7f0223eb0d8f324f7b
 DIST cfe-3.8.0.src.tar.xz 9627228 SHA256 
04149236de03cf05232d68eb7cb9c50f03062e339b68f4f8a03b650a11536cf9 SHA512 
fef431d63f95a394d53e3857fb6a6bde7a7b27f40ef5111b4353bcb63ac26febec8a9eb84780187c49699ab099834f13f996f085d02c365676b3fa5bbcc03dcd
 WHIRLPOOL 
10fd94f75f645318ed3436454ccffd570a88cafe35e870563b5f4d89c37b9bdbe282d8793301ca53db6774cc223b2ff7ab0af99293413cac3deefcf5150fcca3
 DIST cfe-3.8.1.src.tar.xz 9605548 SHA256 
4cd3836dfb4b88b597e075341cae86d61c63ce3963e45c7fe6a8bf59bb382cdf SHA512 
72d23a410271b50f97371b13dd7a6c6c5c0a993e35df436ab716ece8521d83406aa3d4bf8fdecd8154139f39fd5e011e480d405225d8c3ff152d0a2ac4573e04
 WHIRLPOOL 
7bcc9e6fed871b7490e2a280f2ad36008150a0af3605357fbe529aea8a7acbbed41c7da273dd150f8f50869cd321f114e909236261c4dd05ed7f644c75f208c4
-DIST cfe-3.9.0rc3.src.tar.xz 10390412 SHA256 
cb06bb2403cc13bd2bc561222a9854d1aa52d96cf48b4a24d9e4b0b6832c96ec SHA512 
cc7260222bf91283879fb3f59d0924df60da5f18dd73ea054a587ef4c0628f6c49ac72289c777e018462f38592dfd1bfc72f6cc5bce1f6be09782da8e420eeaa
 WHIRLPOOL 
f93c16291c35dd5e8f6483f2ad05d116a18e9fba8c3b3ae4d0e78f510345793063796b2b4587815290d1d69a35b0109ed9dc640931e9e343e4b69af350c72277
+DIST cfe-3.9.0.src.tar.xz 10390440 SHA256 
7596a7c7d9376d0c89e60028fe1ceb4d3e535e8ea8b89e0eb094e0dcb3183d28 SHA512 
f405b5819fd19276b2de4da80a51171a3b1c5c00df810e1f284184c693e410775fe2933576f942b881664dd3b75e78f0f15b7e5a3eca7819ffbcfe528d9a578e
 WHIRLPOOL 
cb4ff4eaababa3017b4a96548b7fe1dc5f4926bd27dc6de56c3ae1fc450c8af1faf1edea2e909e40289477ebaf79860fca3a9695b22402dc9385031d7b8ad5bf
 DIST clang-tools-extra-3.5.0.src.tar.xz 216256 SHA256 
2981beb378afb5aa5c50ed017720a42a33e77e902c7086ad2d412ef4fa931f69 SHA512 
5ff2cc5d143b78fbe6645486f02e50f738a92aaf6b8e85cfc6f91e659684686b12e61fc8f00b814b4372c5ed2c2b1be5eca61ea696fbe074b815877b799534ee
 WHIRLPOOL 
10b5afc550fa6a8c33739fbf9268e934732b2892842d398152676e66ab90aed3c6e1bae02bc1b8aa0a9a917b6b450f60950317a9eda3f9e377971cbe00164b11
 DIST clang-tools-extra-3.5.2.src.tar.xz 215804 SHA256 
f21a374d74b194d8c984546266491b518859b5f12ed9abd49337b8060d3fc004 SHA512 
6a8e662d2704147296c13626fbc5885911c646c67404f12eacc67ee2995221445bf4f6122b271b9cb3a56b716f550a651024822f72358d400b9052bf50423669
 WHIRLPOOL 
088d2725a88a439a1a2c4048e0eaf540587078078bd1c9823a4804200265cab4d32606abf5e72be76da45ea4aa6e7a7201a2bdbddc78d5f9e0024b0d7b59e222
 DIST clang-tools-extra-3.6.2.src.tar.xz 248624 SHA256 
6a0ec627d398f501ddf347060f7a2ccea4802b2494f1d4fd7bda3e0442d04feb SHA512 
1b7710a7deee30cefb6a3b4edb026a96d8935a0c6f3056ccdb7a45564d10baf01a4f6722ae853ad9a3bad17e8de32a3c0ec99c5cf6144647a5e182809d403f7a
 WHIRLPOOL 
3dcc302bac84f53b673784dec092a2c59ea2985d9983e87f057b9aa7b5d3e34cf13d2b0f1f60ea44f342b8167377204a510036872a087037cf02335c19cd
 DIST clang-tools-extra-3.7.1.src.tar.xz 277476 SHA256 
4a91edaccad1ce984c7c49a4a87db186b7f7b21267b2b03bcf4bd7820715bc6b SHA512 

[gentoo-commits] repo/gentoo:master commit in: sys-libs/glibc/files/eblits/

2016-09-03 Thread Michał Górny
commit: ffc59b9e2bbe9ad89a1ab60e3a147785fe944141
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul  8 22:03:15 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 11:05:55 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffc59b9e

sys-libs/glibc: Do not reset multilib vars unless cross-compiling, #588368

Do not call multilib_env_reset unless cross-compiling, in order to
prevent the function from redefining profile-defined variables such as
LIBDIR_*.

 sys-libs/glibc/files/eblits/common.eblit | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sys-libs/glibc/files/eblits/common.eblit 
b/sys-libs/glibc/files/eblits/common.eblit
index e56f10e..370782b 100644
--- a/sys-libs/glibc/files/eblits/common.eblit
+++ b/sys-libs/glibc/files/eblits/common.eblit
@@ -318,8 +318,9 @@ setup_env() {
unset LD_RUN_PATH
unset LD_ASSUME_KERNEL
 
-   multilib_env ${CTARGET_OPT:-${CTARGET}}
if is_crosscompile || tc-is-cross-compiler ; then
+   multilib_env ${CTARGET_OPT:-${CTARGET}}
+
if ! use multilib ; then
MULTILIB_ABIS=${DEFAULT_ABI}
else



[gentoo-commits] repo/gentoo:master commit in: profiles/, sys-devel/clang/

2016-09-03 Thread Michał Górny
commit: d5bd773b037a1a0c3160d97530d8c3cd2cfda9f7
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Sep  3 10:26:56 2016 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Sep  3 11:05:50 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5bd773b

sys-devel/clang: Bump to 3.9.0

 profiles/package.mask   | 2 +-
 .../clang/{clang-3.9.0_rc3-r100.ebuild => clang-3.9.0-r100.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 1d1354e..0e80d5e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -59,7 +59,7 @@ app-crypt/hashcat-gui
 # Michał Górny  (28 Aug 2016)
 # Masked for testing, and porting revdeps. Please do not unmask before
 # media-libs/mesa release supports it.
-~sys-devel/clang-3.9.0_rc3
+~sys-devel/clang-3.9.0
 ~sys-devel/llvm-3.9.0
 
 # Lars Wendler  (26 Aug 2016)

diff --git a/sys-devel/clang/clang-3.9.0_rc3-r100.ebuild 
b/sys-devel/clang/clang-3.9.0-r100.ebuild
similarity index 100%
rename from sys-devel/clang/clang-3.9.0_rc3-r100.ebuild
rename to sys-devel/clang/clang-3.9.0-r100.ebuild



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

2016-09-03 Thread Jeroen Roovers
commit: 697dd0a12d5f721ac298131b89c4b72f2d375a5c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 11:03:24 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 11:03:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=697dd0a1

sys-apps/servicelog: Version bump.

Package-Manager: portage-2.3.0

 sys-apps/servicelog/Manifest |  1 +
 sys-apps/servicelog/servicelog-1.1.14.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/sys-apps/servicelog/Manifest b/sys-apps/servicelog/Manifest
index 8898e0c..8d323af 100644
--- a/sys-apps/servicelog/Manifest
+++ b/sys-apps/servicelog/Manifest
@@ -1,3 +1,4 @@
 DIST servicelog-1.0.1.tar.gz 159034 SHA256 
3043c24569c118a02f8c25f27098011e73a5af80ae6a75cdb18f2a63c4fa1537 SHA512 
a3e6c2c8e828de71ee81ead3435fea562501a90b3930a27087096b648a831fd351b4075f3d46359b41f88c1353dbeaf6039961ce72b1e3876734b7ad02b9f137
 WHIRLPOOL 
ff9528d393b9247456f964ce06b39601ff1e19809a17ca0eaacb9e3d93a13b390e8dec194957e280f2b0a9472fb318324b937fd819b5adc77d035e7f1152953c
 DIST servicelog-1.1.11.tar.gz 318874 SHA256 
1eb5b8bd4d56a35b770eb83c7b8773e4f8c9faa6793b9db3f22056c33184ba80 SHA512 
45adabe828a2e700b0920cc89fa4f93ac923cbf0249facbd52e23e1507d3daf12a2e4f2b093539286cebf8291266b2cbdcfea1c17f83a75c537c368885fd398c
 WHIRLPOOL 
c07ba8a5b7b23c475f55055af638e386ae9ef7628224faee15960c40c013f8a77686e461b323c4d1ddf282dffa237409c3887c6752fb31be821bdf7319c9f6af
 DIST servicelog-1.1.13.tar.gz 357637 SHA256 
195fe080ea5d465d6b1164c0d46ada83654938f0ad7bc805fe4f28d9af602ffa SHA512 
2c9b2705825a98fbae3bc1c35f8acd014e5234d316d4c00fcceeb86b9263080fe525dfe71553c935092f8787b7125a3ed39c0cf07c069c56d1e816748698aa94
 WHIRLPOOL 
35ddabc190274422bcad05f1a32d9b8df67aea3e5ee0a14a9270aae5cec5a3a5c4f87581a2c472c2f996cb0bb560b44a0e14aba19b7849c3f6a9f38f153be0bb
+DIST servicelog-1.1.14.tar.gz 361289 SHA256 
bcf6cddf07824725d8a9c46eb409bb0245aaa9a348a1d8533fff8237eca09ae5 SHA512 
d7b5e4089f258d69a7a07a46e43f1083fad701a917c150af8b68542db26348c0160dbca6c0d94aa68eb7a4b77139a763780c1af8422b785009567489a5e587cb
 WHIRLPOOL 
47f97d2678861d5f3a4b917d19367345ad061e973553cf27d48b400645871ad0d4c7840e4430504aa1a78ae0cbfc63712bb188f286f63a6c18291331495f7faa

diff --git a/sys-apps/servicelog/servicelog-1.1.14.ebuild 
b/sys-apps/servicelog/servicelog-1.1.14.ebuild
new file mode 100644
index ..cf21e89
--- /dev/null
+++ b/sys-apps/servicelog/servicelog-1.1.14.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+inherit eutils
+
+S=${WORKDIR}/${PN}-${PV}
+DESCRIPTION="Provides utilities for logging service-related events"
+SRC_URI="mirror://sourceforge/linux-diag/${P}.tar.gz"
+HOMEPAGE="http://linux-diag.sourceforge.net/servicelog/;
+
+SLOT="0"
+LICENSE="IBM"
+KEYWORDS="~ppc ~ppc64"
+IUSE=""
+
+DEPEND="sys-libs/libservicelog"
+
+RDEPEND="${DEPEND}
+   virtual/logger"
+
+src_unpack() {
+   unpack ${A}
+}
+
+src_compile() {
+   econf
+}
+src_install () {
+   emake install DESTDIR="${D}"
+   dodoc ChangeLog
+}



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

2016-09-03 Thread Jeroen Roovers
commit: d8aefbe27ccbd9ba8b35b8c23784fe1ba9053e20
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 10:55:01 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 10:55:01 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8aefbe2

sys-fs/iprutils: Version bump.

Package-Manager: portage-2.3.0

 sys-fs/iprutils/Manifest |  1 +
 sys-fs/iprutils/iprutils-2.4.13.1.ebuild | 55 
 2 files changed, 56 insertions(+)

diff --git a/sys-fs/iprutils/Manifest b/sys-fs/iprutils/Manifest
index d0b733d..29a7efd 100644
--- a/sys-fs/iprutils/Manifest
+++ b/sys-fs/iprutils/Manifest
@@ -1,5 +1,6 @@
 DIST iprutils-2.4.10.1.tar.gz 519917 SHA256 
99f28418fec505c4dfd532270569d4902a3792dcb2f08710b896f4e7bc0211e0 SHA512 
d55bf90b706ca2048431d3c8d523d481afe4c06ff755d52bc91bc5c6d8cd4952f0fe9655377d4f4e405c4119b47862579f5a1428ea265904f2c578384695720b
 WHIRLPOOL 
99ab607a532a4750158a42713ea6fde3b9c103255bc51d769c6d080193fdf25f01b56d39c90c10c5f7d3c42c38ecf5f21b07f4ebd80306afc446ac32345a25f3
 DIST iprutils-2.4.11.1.tar.gz 522111 SHA256 
6201eefd852373d051496439b78bace68f7f3dd16582e40d4a58dc8283240e6a SHA512 
37beb40cd40e871715dcf74805f6cdf3ce098050222dcee154ed03dbef64301044f5dbbe0a5323d2f4638f0b0e43429c09437d29dbafc5cfc9a63271b1db9f20
 WHIRLPOOL 
4b6b9cf4ab85687a45635720b2ea20a43d2a105898edb5b626fde71b0dc3d28ac5ecffa99231bd6e1a25784f70c9cba8ffdd2118ecdcc709c802324866eb3626
+DIST iprutils-2.4.13.1.tar.gz 523921 SHA256 
22e49f34fbd86e7c1d3505670dd1f6a46a98dd9e45ba8800caa4c18db561abb5 SHA512 
1ae4b9370ab20c49d035e05dd3571b3e20595c160a3d173ffa2c2bbd2709f67c12ef08b3498ce5e9e6e0c8bf128ebc7d851f0b3c761b6293b3d475ad060148d8
 WHIRLPOOL 
bc20ecfc43b83c2525733e6c4069963480eeb08910b35b2f002b807be33ad7e272a5c404120dea2f8d4d4859f585e5e01513f305c6ac5b1543ad44a4cb2312a4
 DIST iprutils-2.4.7.tar.gz 467671 SHA256 
bb3a729b35824428d9a7d4db0a25d5ec89ff1dfcc13dd3c62fe254dc56408dd0 SHA512 
9e6fd37cb72ce1d092b02f1cdfeb9e97962007327f92f4d9dd2a755489dab3a5d51a459d2f256d8453de74935a5cee8f25f71a820d82347ae67aa72a89043a91
 WHIRLPOOL 
190a906a91114f56b434e9efb657f9b3ba8a6b145715934f20919dc18521ee696604403134d35a5196c0d8d823c32b5f9e08aaa40bacddebeb42e5dae7ceab02
 DIST iprutils-2.4.8.tar.gz 474447 SHA256 
fbd118344b5f7e0acfdadff8093043dee70ad88b58cb3d8ea53e005a3d2b5a17 SHA512 
08086058d80b46a58d7d35676645160c7058e88e7d7e61fac36a8565b6ad3a42b0f6e1fe3238de7017ec2b53f1aa93b427bb7113c0c0b21fb148f22fc5a2b6a5
 WHIRLPOOL 
5f06cd2fab55cac77c212d3693bf3bcea41f1747d6e63c4a24d16ab781da2067163b0e21dfb83eb8cca767bc7458491a0b48b2d859c5e8ea46a59defad5347b9
 DIST iprutils-2.4.9.tar.gz 478916 SHA256 
569fc9334a7815e1c871eed06961e0216d6d8f2e9411c7d417906ee3520375dc SHA512 
0edfa74cc3559427e3b63bf39084013c9a594359c244b9c7bf0eed642a161caa73574371da1051a74caece80159f2c7c46aa296a0910b85145f99f9f1b10dcec
 WHIRLPOOL 
1f16c8f838f7bf3fe2ac7b1fe9e548bf8e81c4f797cb76273fd35636f11fa965c67540bdf59c60069795bc6a2d88bfbc357348c837f849001018e970501e7e31

diff --git a/sys-fs/iprutils/iprutils-2.4.13.1.ebuild 
b/sys-fs/iprutils/iprutils-2.4.13.1.ebuild
new file mode 100644
index ..d6a3545
--- /dev/null
+++ b/sys-fs/iprutils/iprutils-2.4.13.1.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+inherit autotools bash-completion-r1 eutils toolchain-funcs
+
+DESCRIPTION="IBM's tools for support of the ipr SCSI controller"
+SRC_URI="mirror://sourceforge/iprdd/${P}.tar.gz"
+HOMEPAGE="https://sourceforge.net/projects/iprdd/;
+
+SLOT="0"
+LICENSE="IBM"
+KEYWORDS="~ppc ~ppc64"
+IUSE="static-libs"
+
+IPRUTILS_DEPEND="
+   >=sys-libs/ncurses-5.4-r5:=
+   >=sys-apps/pciutils-2.1.11-r1
+"
+RDEPEND="
+   ${IPRUTILS_DEPEND}
+   virtual/logger
+   virtual/udev
+"
+DEPEND="
+   ${IPRUTILS_DEPEND}
+   virtual/pkgconfig
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.4.8-tinfo.patch
+   "${FILESDIR}"/${PN}-2.4.11.1-basename.patch
+   "${FILESDIR}"/${PN}-2.4.11.1-migrate_cand.patch
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_enable static-libs static)
+}
+
+src_install () {
+   emake DESTDIR="${D}" \
+   bashcompdir=$(get_bashcompdir) install
+
+   newinitd "${FILESDIR}"/iprinit-r1 iprinit
+   newinitd "${FILESDIR}"/iprupdate-r1 iprupdate
+   newinitd "${FILESDIR}"/iprdump-r1 iprdump
+
+   prune_libtool_files
+}



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

2016-09-03 Thread Jeroen Roovers
commit: c1a6f9bbbfa56f5bf678b1116d62637a94c0fe8e
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 10:56:03 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 10:56:03 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1a6f9bb

sys-fs/iprutils: Old.

Package-Manager: portage-2.3.0

 sys-fs/iprutils/Manifest |  3 --
 sys-fs/iprutils/iprutils-2.4.10.1.ebuild | 51 
 sys-fs/iprutils/iprutils-2.4.8-r1.ebuild | 51 
 sys-fs/iprutils/iprutils-2.4.9.ebuild| 51 
 4 files changed, 156 deletions(-)

diff --git a/sys-fs/iprutils/Manifest b/sys-fs/iprutils/Manifest
index 29a7efd..108654c 100644
--- a/sys-fs/iprutils/Manifest
+++ b/sys-fs/iprutils/Manifest
@@ -1,6 +1,3 @@
-DIST iprutils-2.4.10.1.tar.gz 519917 SHA256 
99f28418fec505c4dfd532270569d4902a3792dcb2f08710b896f4e7bc0211e0 SHA512 
d55bf90b706ca2048431d3c8d523d481afe4c06ff755d52bc91bc5c6d8cd4952f0fe9655377d4f4e405c4119b47862579f5a1428ea265904f2c578384695720b
 WHIRLPOOL 
99ab607a532a4750158a42713ea6fde3b9c103255bc51d769c6d080193fdf25f01b56d39c90c10c5f7d3c42c38ecf5f21b07f4ebd80306afc446ac32345a25f3
 DIST iprutils-2.4.11.1.tar.gz 522111 SHA256 
6201eefd852373d051496439b78bace68f7f3dd16582e40d4a58dc8283240e6a SHA512 
37beb40cd40e871715dcf74805f6cdf3ce098050222dcee154ed03dbef64301044f5dbbe0a5323d2f4638f0b0e43429c09437d29dbafc5cfc9a63271b1db9f20
 WHIRLPOOL 
4b6b9cf4ab85687a45635720b2ea20a43d2a105898edb5b626fde71b0dc3d28ac5ecffa99231bd6e1a25784f70c9cba8ffdd2118ecdcc709c802324866eb3626
 DIST iprutils-2.4.13.1.tar.gz 523921 SHA256 
22e49f34fbd86e7c1d3505670dd1f6a46a98dd9e45ba8800caa4c18db561abb5 SHA512 
1ae4b9370ab20c49d035e05dd3571b3e20595c160a3d173ffa2c2bbd2709f67c12ef08b3498ce5e9e6e0c8bf128ebc7d851f0b3c761b6293b3d475ad060148d8
 WHIRLPOOL 
bc20ecfc43b83c2525733e6c4069963480eeb08910b35b2f002b807be33ad7e272a5c404120dea2f8d4d4859f585e5e01513f305c6ac5b1543ad44a4cb2312a4
 DIST iprutils-2.4.7.tar.gz 467671 SHA256 
bb3a729b35824428d9a7d4db0a25d5ec89ff1dfcc13dd3c62fe254dc56408dd0 SHA512 
9e6fd37cb72ce1d092b02f1cdfeb9e97962007327f92f4d9dd2a755489dab3a5d51a459d2f256d8453de74935a5cee8f25f71a820d82347ae67aa72a89043a91
 WHIRLPOOL 
190a906a91114f56b434e9efb657f9b3ba8a6b145715934f20919dc18521ee696604403134d35a5196c0d8d823c32b5f9e08aaa40bacddebeb42e5dae7ceab02
-DIST iprutils-2.4.8.tar.gz 474447 SHA256 
fbd118344b5f7e0acfdadff8093043dee70ad88b58cb3d8ea53e005a3d2b5a17 SHA512 
08086058d80b46a58d7d35676645160c7058e88e7d7e61fac36a8565b6ad3a42b0f6e1fe3238de7017ec2b53f1aa93b427bb7113c0c0b21fb148f22fc5a2b6a5
 WHIRLPOOL 
5f06cd2fab55cac77c212d3693bf3bcea41f1747d6e63c4a24d16ab781da2067163b0e21dfb83eb8cca767bc7458491a0b48b2d859c5e8ea46a59defad5347b9
-DIST iprutils-2.4.9.tar.gz 478916 SHA256 
569fc9334a7815e1c871eed06961e0216d6d8f2e9411c7d417906ee3520375dc SHA512 
0edfa74cc3559427e3b63bf39084013c9a594359c244b9c7bf0eed642a161caa73574371da1051a74caece80159f2c7c46aa296a0910b85145f99f9f1b10dcec
 WHIRLPOOL 
1f16c8f838f7bf3fe2ac7b1fe9e548bf8e81c4f797cb76273fd35636f11fa965c67540bdf59c60069795bc6a2d88bfbc357348c837f849001018e970501e7e31

diff --git a/sys-fs/iprutils/iprutils-2.4.10.1.ebuild 
b/sys-fs/iprutils/iprutils-2.4.10.1.ebuild
deleted file mode 100644
index 2af9a83..
--- a/sys-fs/iprutils/iprutils-2.4.10.1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools bash-completion-r1 eutils toolchain-funcs
-
-DESCRIPTION="IBM's tools for support of the ipr SCSI controller"
-SRC_URI="mirror://sourceforge/iprdd/${P}.tar.gz"
-HOMEPAGE="https://sourceforge.net/projects/iprdd/;
-
-SLOT="0"
-LICENSE="IBM"
-KEYWORDS="~ppc ~ppc64"
-IUSE="static-libs"
-
-IPRUTILS_DEPEND="
-   >=sys-libs/ncurses-5.4-r5:=
-   >=sys-apps/pciutils-2.1.11-r1
-"
-RDEPEND="
-   ${IPRUTILS_DEPEND}
-   virtual/logger
-   virtual/udev
-"
-DEPEND="
-   ${IPRUTILS_DEPEND}
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-2.4.8-tinfo.patch
-
-   eautoreconf
-}
-
-src_configure() {
-   econf $(use_enable static-libs static)
-}
-
-src_install () {
-   emake DESTDIR="${D}" \
-   bashcompdir=$(get_bashcompdir) install
-
-   newinitd "${FILESDIR}"/iprinit-r1 iprinit
-   newinitd "${FILESDIR}"/iprupdate-r1 iprupdate
-   newinitd "${FILESDIR}"/iprdump-r1 iprdump
-
-   prune_libtool_files
-}

diff --git a/sys-fs/iprutils/iprutils-2.4.8-r1.ebuild 
b/sys-fs/iprutils/iprutils-2.4.8-r1.ebuild
deleted file mode 100644
index ddb6f18..
--- a/sys-fs/iprutils/iprutils-2.4.8-r1.ebuild
+++ /dev/null
@@ -1,51 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-inherit autotools bash-completion-r1 eutils toolchain-funcs
-
-DESCRIPTION="IBM's tools for 

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

2016-09-03 Thread Jeroen Roovers
commit: 2e264247a69c277d712ccdd9013bf0793ac19eeb
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 10:51:29 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 10:51:29 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e264247

net-analyzer/nmap: Version bump.

Package-Manager: portage-2.3.0

 net-analyzer/nmap/Manifest   |   1 +
 net-analyzer/nmap/nmap-7.25_beta2.ebuild | 172 +++
 2 files changed, 173 insertions(+)

diff --git a/net-analyzer/nmap/Manifest b/net-analyzer/nmap/Manifest
index 9518669..3b2033a 100644
--- a/net-analyzer/nmap/Manifest
+++ b/net-analyzer/nmap/Manifest
@@ -2,4 +2,5 @@ DIST nmap-6.47.tar.bz2 7878122 SHA256 
8fa11e9e203ce2d81a207db5ca4f110a525f6c01c1
 DIST nmap-7.01.tar.bz2 8922697 SHA256 
cf1fcd2643ba2ef52f47acb3c18e52fa12a4ae4b722804da0e54560704627705 SHA512 
8b37616c2af2134a5a3bb292f25f2bc0232e20e08405620734c07d84bbc9070a87db4d4b14e8a10c67a3684960035ed202be5dd6feddfb613c134208fc62a2a7
 WHIRLPOOL 
612ad1e98fb0e52b4a85305ab4a1ef21b225a6457d6af09747651eae82c2601edb2b817add01e46c7f4831ed30353917d699b6cc82e67f30a2494dc41fee1d31
 DIST nmap-7.12.tar.bz2 8960599 SHA256 
63df082a87c95a189865d37304357405160fc6333addcf5b84204c95e0539b04 SHA512 
91156499c6f903fb565fa2b0faa74043d078493312f9489071fafc687301017afc16c7eb26c092f1fa142e78c98a436833f56a9f015cb2a17aa6f6220b6a0b98
 WHIRLPOOL 
ed4f3b00dc5e71f841133026c9b40aa285a9e47c6fd4ee012d235c22c6193039d19256b42708b5e38fe94840d7b4535cc78a4e6681f66a2fed3eb251070d0fde
 DIST nmap-7.25BETA1.tar.bz2 8580974 SHA256 
6866457809b598f8e85c9e8c79773f1821de29cc1b6f574cc7fed4ad8c01c178 SHA512 
6d2fc83186086ea8d01003b8d79af0b45788378ef32c5e8f9b14561db5adfc407e388df044f1e3420f4f3d21115bc1623da0b6a926bd3d20816265cb10efe092
 WHIRLPOOL 
18bfca4d494c59fa6625ecb1e5ad7a7f838236c73269c9e0b2094e57d047ba1095284e26d4cbfb1a85a797af4b7f4abf02ffbc89c4664c6a5aea3912d4c3fb94
+DIST nmap-7.25BETA2.tar.bz2 8874592 SHA256 
6c66a150c9e346ccdca0aa16ef8c2a5310449444fe15cf5ec3f3a151978378d0 SHA512 
0a40267d578ac7ff461783a4b22e584a7c3fee42c321843fce24dd6cddabc068cc7acd0fc8fd85f3952ed05033792adcb28e2919ed70f5fb30826a81c4777fe0
 WHIRLPOOL 
4c165d45afe0295f5cdb68cd90e7e7d5951ffb31115b3aedc37722872b130adab088cae851c12db0d213aabecfbdcda2b1dae48c6a01bdd8e5d98148c084c98d
 DIST nmap-logo-64.png 3289 SHA256 
4c72ff1eeffeeaa1039b251d9f2d675936e65db686fe3b57a35c2183ce67a8aa SHA512 
fb102d12aaeebc8a97543ecd653a3606e86996ad679bc26d6e6e274ad05ec3e9f92521289d1a24153c521b699e8c0cfa65d8856bb49af53ee4837268bbc6b5d3
 WHIRLPOOL 
6093aadcb9880587e17d39d45fcbe57bb62777f220655e6ed5b5f900ce49cb8c5a53e24d7db0de6f8909eb0f8981f7565e6ae9b9bf9283a4b0526eab5313

diff --git a/net-analyzer/nmap/nmap-7.25_beta2.ebuild 
b/net-analyzer/nmap/nmap-7.25_beta2.ebuild
new file mode 100644
index ..1fe61b5
--- /dev/null
+++ b/net-analyzer/nmap/nmap-7.25_beta2.ebuild
@@ -0,0 +1,172 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite,xml"
+inherit autotools eutils flag-o-matic python-single-r1 toolchain-funcs
+
+MY_P=${P/_beta/BETA}
+
+DESCRIPTION="A utility for network discovery and security auditing"
+HOMEPAGE="http://nmap.org/;
+SRC_URI="
+   http://nmap.org/dist/${MY_P}.tar.bz2
+   https://dev.gentoo.org/~jer/nmap-logo-64.png
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~x86-solaris"
+
+IUSE="ipv6 libressl +nse system-lua ncat ndiff nls nmap-update nping ssl 
zenmap"
+NMAP_LINGUAS=( de fr hi hr it ja pl pt_BR ru zh )
+IUSE+=" ${NMAP_LINGUAS[@]/#/linguas_}"
+
+REQUIRED_USE="
+   system-lua? ( nse )
+   ndiff? ( ${PYTHON_REQUIRED_USE} )
+   zenmap? ( ${PYTHON_REQUIRED_USE} )
+"
+
+RDEPEND="
+   dev-libs/liblinear:=
+   dev-libs/libpcre
+   || ( >=net-libs/libpcap-1.8.0 =dev-lang/lua-5.2[deprecated] )
+   ndiff? ( ${PYTHON_DEPS} )
+   nls? ( virtual/libintl )
+   nmap-update? ( dev-libs/apr dev-vcs/subversion )
+   ssl? (
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:= )
+   )
+"
+DEPEND="
+   ${RDEPEND}
+   nls? ( sys-devel/gettext )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+   if use ndiff || use zenmap; then
+   python-single-r1_pkg_setup
+   fi
+}
+
+src_unpack() {
+   # prevent unpacking the logo
+   unpack ${MY_P}.tar.bz2
+}
+
+src_prepare() {
+   epatch \
+   "${FILESDIR}"/${PN}-5.10_beta1-string.patch \
+   "${FILESDIR}"/${PN}-5.21-python.patch \
+   "${FILESDIR}"/${PN}-6.46-uninstaller.patch \
+   "${FILESDIR}"/${PN}-6.47-no-libnl.patch \
+   "${FILESDIR}"/${PN}-6.25-liblua-ar.patch \
+   

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

2016-09-03 Thread Jeroen Roovers
commit: 385d02c88a50af0bf44c70905d3cef7336b29c7c
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 09:51:24 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 09:51:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=385d02c8

net-misc/youtube-dl: Version bump.

Package-Manager: portage-2.3.0

 net-misc/youtube-dl/Manifest |  1 +
 net-misc/youtube-dl/youtube-dl-2016.09.03.ebuild | 94 
 2 files changed, 95 insertions(+)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index 6d85762..bb54534 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1,3 +1,4 @@
 DIST youtube-dl-2016.01.01.tar.gz 1874602 SHA256 
732f37c99d71b4239d72d61dd32214b5a5a618671fb0629c8f8deb28209a172c SHA512 
fdb022bed426250e5ee1c2bcc1354dd195c0f9793ca479ca8ca4cfe2f71e07ba100b0dbcda2fb9f310308ab130587d06b16a6a86f9036f0d196b317d2e5b5e92
 WHIRLPOOL 
152e709ba15264c35a89644ea0d4793bb47c82b317e54043ccfff72e40bdf95e42d76605e801233632d3863537a945cfb9ecc2f75245171b8de31b51ce6af801
 DIST youtube-dl-2016.08.24.1.tar.gz 2337744 SHA256 
d8ca8fb4dd2b3f90f4db5be44046ce18392dcadee40d3b8e7164cf4552ec99c5 SHA512 
dca69704faabc41135f04b8fd943b6234ddae947aa40a6fea7a9a2b881b8f099451bb80afdddb8403fea7d9f785e66e7fbcc8b15fa3a160349b020672cb6973d
 WHIRLPOOL 
9c8c9ecf1393a301c2f8d4433f4c30143f7c5e28c32c205062aed1b56c7bb01abdb8e03f276034b0befdf5d510c7d7ea57310b16bc53e0e38df2a3a0c66b3456
 DIST youtube-dl-2016.08.28.tar.gz 2347325 SHA256 
520d913129ef03fb62c3f1a430db257c962da61b534caccbdd3a0b01e7a96487 SHA512 
4f19b48cd1a5b55a0f248f0e3165a08118e4f76d08acb55ac6c3200632a22511bb3f09235bb8483302a4ad7a7c86a18abc24e5278d06afcb506fc0d5474b95f5
 WHIRLPOOL 
db50b75f7e95a141a2ae8f1d3a767b21a848fb8483adf3d0452a07bffd4a0f419decd16948a7d3f69f81ce67332642a5a988141c6c93eb626409157540bd18b4
+DIST youtube-dl-2016.09.03.tar.gz 2358006 SHA256 
4b93e573325bb37d4f660d5f1964f859f5197aea1a9ac8693ec05132c87b8f8c SHA512 
52c1dc035bc30d7db5268fcdb24965541f72825aeb05356cd3778b1452482078f2f51a05c95bc13446ed571f4a0b4c12e869d5cd55970f2c06c2dc19768e
 WHIRLPOOL 
ce5f7ccc4a25360ae85eeaf1aedbc8793d8beb42ef5b967d1ab3684a44418a7e965a5d02114df49c61390ac2b43b4a891557ebd218a13b7e14fce08e72560e65

diff --git a/net-misc/youtube-dl/youtube-dl-2016.09.03.ebuild 
b/net-misc/youtube-dl/youtube-dl-2016.09.03.ebuild
new file mode 100644
index ..1e3fe70
--- /dev/null
+++ b/net-misc/youtube-dl/youtube-dl-2016.09.03.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5})
+inherit bash-completion-r1 distutils-r1 eutils
+
+DESCRIPTION="Download videos from YouTube.com (and more sites...)"
+HOMEPAGE="https://rg3.github.com/youtube-dl/;
+SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
+IUSE="offensive test"
+
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[coverage(+)] )
+"
+
+S="${WORKDIR}/${PN}"
+
+python_prepare_all() {
+   if ! use offensive; then
+   sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \
+   youtube_dl/version.py || die
+   # these have single line import statements
+   local xxx=(
+   alphaporno anysex behindkink camwithher chaturbate 
drtuber eporner
+   eroprofile extremetube fourtube foxgay goshgay hellporno
+   hentaistigma hornbunny keezmovies lovehomeporn mofosex 
motherless
+   myvidster porn91 pornhd pornotube pornovoisines pornoxo 
redtube
+   ruleporn sexu slutload spankbang spankwire sunporno 
thisav tube8
+   vporn watchindianporn xbef xnxx xtube xvideos 
xxxymovies youjizz
+   youporn
+   )
+   # these have multi-line import statements
+   local mxxx=(
+   pornhub xhamster tnaflix
+   )
+   # do single line imports
+   sed -i \
+   -e $( printf '/%s/d;' ${xxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   # do multiple line imports
+   sed -i \
+   -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/extractors.py \
+   || die
+
+   sed -i \
+   -e $( printf '/%s/d;' ${mxxx[@]} ) \
+   youtube_dl/extractor/generic.py \
+   || die
+
+   rm \
+   $( printf 'youtube_dl/extractor/%s.py ' 

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

2016-09-03 Thread Jeroen Roovers
commit: 6d9752c5111d69c76404b37dcfc9d92a092d97b3
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 09:53:32 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 09:53:32 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d9752c5

net-misc/youtube-dl: Old.

Package-Manager: portage-2.3.0

 net-misc/youtube-dl/Manifest   |  1 -
 net-misc/youtube-dl/youtube-dl-2016.08.24.1.ebuild | 94 --
 2 files changed, 95 deletions(-)

diff --git a/net-misc/youtube-dl/Manifest b/net-misc/youtube-dl/Manifest
index bb54534..5443f30 100644
--- a/net-misc/youtube-dl/Manifest
+++ b/net-misc/youtube-dl/Manifest
@@ -1,4 +1,3 @@
 DIST youtube-dl-2016.01.01.tar.gz 1874602 SHA256 
732f37c99d71b4239d72d61dd32214b5a5a618671fb0629c8f8deb28209a172c SHA512 
fdb022bed426250e5ee1c2bcc1354dd195c0f9793ca479ca8ca4cfe2f71e07ba100b0dbcda2fb9f310308ab130587d06b16a6a86f9036f0d196b317d2e5b5e92
 WHIRLPOOL 
152e709ba15264c35a89644ea0d4793bb47c82b317e54043ccfff72e40bdf95e42d76605e801233632d3863537a945cfb9ecc2f75245171b8de31b51ce6af801
-DIST youtube-dl-2016.08.24.1.tar.gz 2337744 SHA256 
d8ca8fb4dd2b3f90f4db5be44046ce18392dcadee40d3b8e7164cf4552ec99c5 SHA512 
dca69704faabc41135f04b8fd943b6234ddae947aa40a6fea7a9a2b881b8f099451bb80afdddb8403fea7d9f785e66e7fbcc8b15fa3a160349b020672cb6973d
 WHIRLPOOL 
9c8c9ecf1393a301c2f8d4433f4c30143f7c5e28c32c205062aed1b56c7bb01abdb8e03f276034b0befdf5d510c7d7ea57310b16bc53e0e38df2a3a0c66b3456
 DIST youtube-dl-2016.08.28.tar.gz 2347325 SHA256 
520d913129ef03fb62c3f1a430db257c962da61b534caccbdd3a0b01e7a96487 SHA512 
4f19b48cd1a5b55a0f248f0e3165a08118e4f76d08acb55ac6c3200632a22511bb3f09235bb8483302a4ad7a7c86a18abc24e5278d06afcb506fc0d5474b95f5
 WHIRLPOOL 
db50b75f7e95a141a2ae8f1d3a767b21a848fb8483adf3d0452a07bffd4a0f419decd16948a7d3f69f81ce67332642a5a988141c6c93eb626409157540bd18b4
 DIST youtube-dl-2016.09.03.tar.gz 2358006 SHA256 
4b93e573325bb37d4f660d5f1964f859f5197aea1a9ac8693ec05132c87b8f8c SHA512 
52c1dc035bc30d7db5268fcdb24965541f72825aeb05356cd3778b1452482078f2f51a05c95bc13446ed571f4a0b4c12e869d5cd55970f2c06c2dc19768e
 WHIRLPOOL 
ce5f7ccc4a25360ae85eeaf1aedbc8793d8beb42ef5b967d1ab3684a44418a7e965a5d02114df49c61390ac2b43b4a891557ebd218a13b7e14fce08e72560e65

diff --git a/net-misc/youtube-dl/youtube-dl-2016.08.24.1.ebuild 
b/net-misc/youtube-dl/youtube-dl-2016.08.24.1.ebuild
deleted file mode 100644
index 9d7ca82..
--- a/net-misc/youtube-dl/youtube-dl-2016.08.24.1.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-
-PYTHON_COMPAT=(python{2_7,3_3,3_4,3_5})
-inherit bash-completion-r1 distutils-r1 eutils
-
-DESCRIPTION="Download videos from YouTube.com (and more sites...)"
-HOMEPAGE="https://rg3.github.com/youtube-dl/;
-SRC_URI="http://youtube-dl.org/downloads/${PV}/${P}.tar.gz;
-
-LICENSE="public-domain"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x86-solaris"
-IUSE="offensive test"
-
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/nose[coverage(+)] )
-"
-
-S="${WORKDIR}/${PN}"
-
-python_prepare_all() {
-   if ! use offensive; then
-   sed -i -e "/__version__/s|'$|-gentoo_no_offensive_sites'|g" \
-   youtube_dl/version.py || die
-   # these have single line import statements
-   local xxx=(
-   alphaporno anysex behindkink camwithher chaturbate 
drtuber eporner
-   eroprofile extremetube fourtube foxgay goshgay hellporno
-   hentaistigma hornbunny keezmovies lovehomeporn mofosex 
motherless
-   myvidster porn91 pornhd pornotube pornovoisines pornoxo 
redtube
-   ruleporn sexu slutload spankbang spankwire sunporno 
thisav trutube
-   tube8 vporn watchindianporn xbef xnxx xtube xvideos 
xxxymovies
-   youjizz youporn
-   )
-   # these have multi-line import statements
-   local mxxx=(
-   pornhub xhamster tnaflix
-   )
-   # do single line imports
-   sed -i \
-   -e $( printf '/%s/d;' ${xxx[@]} ) \
-   youtube_dl/extractor/extractors.py \
-   || die
-
-   # do multiple line imports
-   sed -i \
-   -e $( printf '/%s/,/)/d;' ${mxxx[@]} ) \
-   youtube_dl/extractor/extractors.py \
-   || die
-
-   sed -i \
-   -e $( printf '/%s/d;' ${mxxx[@]} ) \
-   youtube_dl/extractor/generic.py \
-   || die
-
-   rm \
-   $( printf 

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

2016-09-03 Thread Jeroen Roovers
commit: 10fed0a428f12bbc27342e5708967959b0c5f890
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 09:21:07 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 09:23:30 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10fed0a4

media-libs/gd: Stable for HPPA PPC64 (bug #587662).

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

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

diff --git a/media-libs/gd/gd-2.2.3.ebuild b/media-libs/gd/gd-2.2.3.ebuild
index 167d381..529221b 100644
--- a/media-libs/gd/gd-2.2.3.ebuild
+++ b/media-libs/gd/gd-2.2.3.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/libgd/libgd/releases/download/${P}/lib${P}.tar.xz;
 
 LICENSE="gd IJG HPND BSD"
 SLOT="2/3"
-KEYWORDS="alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha ~amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~amd64-fbsd ~sparc-fbsd ~x86-fbsd ~x86-freebsd 
~x86-interix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
 IUSE="fontconfig jpeg png static-libs tiff truetype webp xpm zlib"
 
 # fontconfig has prefixed font paths, details see bug #518970



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

2016-09-03 Thread Jeroen Roovers
commit: b84a9a604fb4d204e232d26c16c82902ac778a80
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 09:22:01 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 09:23:35 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84a9a60

www-client/vivaldi: Old.

Package-Manager: portage-2.3.0

 www-client/vivaldi/Manifest |   2 -
 www-client/vivaldi/vivaldi-1.3.551.37_p1.ebuild | 106 
 2 files changed, 108 deletions(-)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index 3fb33cb..4d3fede 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -2,8 +2,6 @@ DIST vivaldi-1.2.490.35_p1-amd64.deb 45329780 SHA256 
7689a5659194a7ed076e6ec5dd5
 DIST vivaldi-1.2.490.35_p1-i386.deb 45932234 SHA256 
2608270bd3992af0349d7b3fbd6f768b922492232f8848a2f669874859eb0ff0 SHA512 
9a268b214583ba205e6cde1a086c14a87049bbeab709e732df6581ecda9e6379c3492bac88ca636c7fe6f4c86f171004d25b1a5686cc77990832da9c43918791
 WHIRLPOOL 
6c92d80e05209acd1bcff91ec5f193eece79a5789efa00db903dad6cec4f1b6f267716654b244d0e790165efb5acd04cf720a69b94ec8846c68ea6554e504990
 DIST vivaldi-1.3.551.30_p1-amd64.deb 45833878 SHA256 
89d0630c9df56cfb12a87f23430179f6d14a8c57fb029d1c8d28ab06c98b7640 SHA512 
bf2d44b06c134976d630c7cc3dcd7c9ed64bc1e559a77002fd12518e383ebfc8d2b1ec7a51dd46991a385f6a646fa91117e5a5f9e0e982627a309a3b242d44ca
 WHIRLPOOL 
c3c561ef359ca71035f7cce451e285a589f960e5b10c7f0f1423b180cd93e427c111c37e4f2e1bd5fc80942b109018a12ae773667f9bc4a48174f62a8521af19
 DIST vivaldi-1.3.551.30_p1-i386.deb 47321718 SHA256 
0a7e07833f5359e38516222767da63edeca92177cbb6d4ef4946a6ef7c7b2946 SHA512 
3cc5b378e9ced1452d8a53b21d14a351e53ef1f8fbdeb3d2b7d50f5af566adb1a88080c00cd70deaf7ef78baec58707f086f15fbe795d9b37cd35c4904837910
 WHIRLPOOL 
dee04badf0be140d043191f10a43ebcae9a1fc6261e197005b89bd568768766ed975a5a5861d54dcba01c3ebe7801f9090350eea705dfb9e803c94e22af9b4b6
-DIST vivaldi-1.3.551.37_p1-amd64.deb 46308380 SHA256 
6574a47ccb3de3fcb02f591d9bd174f1b556a429990399750cc37efce39ef702 SHA512 
88e92ad860c2fc53fad0a740dc1d828e9358f7a00ba2c6c589bc8a7d55836d4750c3897c47e78754ae8162daab76d410c85f9594f4c8426b0e23d9e8d0906f27
 WHIRLPOOL 
42a7ce4361bca52ba2406214cd8c4c423f85bd850f849cdd890cc6266fe241de9f3264ec73c329fe9d5d4773dfff0a575c764ea3c9646dbae51f87b817bdb816
-DIST vivaldi-1.3.551.37_p1-i386.deb 47780546 SHA256 
af909ee64c6fbec857397a00896fa971162ded9afab192683a24d7767478c0f5 SHA512 
96f2a5c11ae200235417e71725890018b526b5640ba6d63330916bce41d6d62a8609be23f7209d2bc3fea8c3c6ccdf42db0c0171f55fde688bf4c9d7cca7bbfa
 WHIRLPOOL 
c332bb181061b90274147f0cc27fe13dca5507bc9071045ab6c51225533665618d4a47c6a335026fc7fb15e45e46329d25ca883575f266c248d074e3e51805f5
 DIST vivaldi-1.3.582.3_p1-amd64.deb 46854236 SHA256 
841142845feaafc279bab333bc006426cfe692bf7513375dcaf7c3f2ffd5a1bc SHA512 
a0fac639c0dae4825d7e469281150a925ff9d84fd7c284aec20f4e7b36d21f221951969ec29c3f6d23b2a020454e328f9ac0fbb19e943053b0b14f0819cc3228
 WHIRLPOOL 
815aae9a60acab2e82b3c96c3d45303276f81f54e48090d293c5b5fa45a65a880dc4fe4c63a99dff03aa75592a1db3e7bcb97c1768d8ee2bc47fd9d9d33399cf
 DIST vivaldi-1.3.582.3_p1-i386.deb 48403876 SHA256 
8baa5748ceb2d95ef9f4748440e2e7c2dbadefb47419daac6b4df6ba85c8e7d0 SHA512 
c29de15a607542b93d08768dfc7041e4f93a74b0e4cf61ac1453dac39b513f833b08e3335c588d2444f71923d81571a7b2ce544e7a96192f9b350dcc738cf9ad
 WHIRLPOOL 
b0791172a3831a3db86bab36da9641ef0b465e62e099e306e5d5d11b60014eca7cc4001ddec6f3cf2916cc01ab5fd9189b43dd35cbcc632751621a95c2059407
 DIST vivaldi-1.4.589.2_p1-amd64.deb 46821126 SHA256 
455aa6289b7603ef9deffae590ec6345df9e427d86858c3804503465736f5618 SHA512 
e7de72c1adfa067b4685e1785d1512214127ea28f0d64cb19784687185b65e9f487cb9684746b4f6a605b3ded396583ac6c7f3a2a46fe38a42e4efa52d0be70c
 WHIRLPOOL 
6cd2aca68479b2829a555c222539938764b908930a5c2ee494d190ffe9ddc64c33c8a7860d56c8d7625ce9e7371474b57a00867aef36a1f3bc4e525516e4131c

diff --git a/www-client/vivaldi/vivaldi-1.3.551.37_p1.ebuild 
b/www-client/vivaldi/vivaldi-1.3.551.37_p1.ebuild
deleted file mode 100644
index 4e97be8..
--- a/www-client/vivaldi/vivaldi-1.3.551.37_p1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-# $Id$
-
-EAPI=5
-CHROMIUM_LANGS="
-   am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he 
hi
-   hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr 
sv
-   sw ta te th tr uk vi zh-CN zh-TW
-"
-inherit chromium-2 eutils multilib unpacker toolchain-funcs
-
-VIVALDI_PN="${PN}-snapshot"
-VIVALDI_HOME="opt/${VIVALDI_PN}"
-DESCRIPTION="A new browser for our friends"
-HOMEPAGE="http://vivaldi.com/;
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${VIVALDI_PN}_${PV/_p/-}_;
-SRC_URI="
-   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
-   x86? ( ${VIVALDI_BASE_URI}i386.deb -> 

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

2016-09-03 Thread Jeroen Roovers
commit: 3b19fa9cbc0f85b020dbf066799689fdcf2bc5f9
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 09:16:50 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 09:23:24 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b19fa9c

www-client/vivaldi: Version bump.

Package-Manager: portage-2.3.0

 www-client/vivaldi/Manifest|   2 +
 www-client/vivaldi/vivaldi-1.4.589.2_p1.ebuild | 106 +
 2 files changed, 108 insertions(+)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index 8f53411..3fb33cb 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -6,3 +6,5 @@ DIST vivaldi-1.3.551.37_p1-amd64.deb 46308380 SHA256 
6574a47ccb3de3fcb02f591d9bd
 DIST vivaldi-1.3.551.37_p1-i386.deb 47780546 SHA256 
af909ee64c6fbec857397a00896fa971162ded9afab192683a24d7767478c0f5 SHA512 
96f2a5c11ae200235417e71725890018b526b5640ba6d63330916bce41d6d62a8609be23f7209d2bc3fea8c3c6ccdf42db0c0171f55fde688bf4c9d7cca7bbfa
 WHIRLPOOL 
c332bb181061b90274147f0cc27fe13dca5507bc9071045ab6c51225533665618d4a47c6a335026fc7fb15e45e46329d25ca883575f266c248d074e3e51805f5
 DIST vivaldi-1.3.582.3_p1-amd64.deb 46854236 SHA256 
841142845feaafc279bab333bc006426cfe692bf7513375dcaf7c3f2ffd5a1bc SHA512 
a0fac639c0dae4825d7e469281150a925ff9d84fd7c284aec20f4e7b36d21f221951969ec29c3f6d23b2a020454e328f9ac0fbb19e943053b0b14f0819cc3228
 WHIRLPOOL 
815aae9a60acab2e82b3c96c3d45303276f81f54e48090d293c5b5fa45a65a880dc4fe4c63a99dff03aa75592a1db3e7bcb97c1768d8ee2bc47fd9d9d33399cf
 DIST vivaldi-1.3.582.3_p1-i386.deb 48403876 SHA256 
8baa5748ceb2d95ef9f4748440e2e7c2dbadefb47419daac6b4df6ba85c8e7d0 SHA512 
c29de15a607542b93d08768dfc7041e4f93a74b0e4cf61ac1453dac39b513f833b08e3335c588d2444f71923d81571a7b2ce544e7a96192f9b350dcc738cf9ad
 WHIRLPOOL 
b0791172a3831a3db86bab36da9641ef0b465e62e099e306e5d5d11b60014eca7cc4001ddec6f3cf2916cc01ab5fd9189b43dd35cbcc632751621a95c2059407
+DIST vivaldi-1.4.589.2_p1-amd64.deb 46821126 SHA256 
455aa6289b7603ef9deffae590ec6345df9e427d86858c3804503465736f5618 SHA512 
e7de72c1adfa067b4685e1785d1512214127ea28f0d64cb19784687185b65e9f487cb9684746b4f6a605b3ded396583ac6c7f3a2a46fe38a42e4efa52d0be70c
 WHIRLPOOL 
6cd2aca68479b2829a555c222539938764b908930a5c2ee494d190ffe9ddc64c33c8a7860d56c8d7625ce9e7371474b57a00867aef36a1f3bc4e525516e4131c
+DIST vivaldi-1.4.589.2_p1-i386.deb 48506836 SHA256 
3025ac9348af80327a6fa13eae735d1e349152e4d5f007513d905f40eb63aee3 SHA512 
cf5e37ca6330cedbd0318d8ae1805066c089a25d3209ab58f594ee6b1e7f79e7ae6d6445c691846337d46b7d298b4d6dd07a88d6fa2a362e3575938c360de15c
 WHIRLPOOL 
52f6c17efe0ab77001d3f5440b9daefb78e035f72e07632f24855668fc2f94b0836b2127649ae6344d3063581feb90fba625e23cbe3e12cd50a25dd6fa9a0e92

diff --git a/www-client/vivaldi/vivaldi-1.4.589.2_p1.ebuild 
b/www-client/vivaldi/vivaldi-1.4.589.2_p1.ebuild
new file mode 100644
index ..4e97be8
--- /dev/null
+++ b/www-client/vivaldi/vivaldi-1.4.589.2_p1.ebuild
@@ -0,0 +1,106 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+CHROMIUM_LANGS="
+   am ar bg bn ca cs da de el en-GB en-US es es-419 et fa fi fil fr gu he 
hi
+   hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl sr 
sv
+   sw ta te th tr uk vi zh-CN zh-TW
+"
+inherit chromium-2 eutils multilib unpacker toolchain-funcs
+
+VIVALDI_PN="${PN}-snapshot"
+VIVALDI_HOME="opt/${VIVALDI_PN}"
+DESCRIPTION="A new browser for our friends"
+HOMEPAGE="http://vivaldi.com/;
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/snapshot/${VIVALDI_PN}_${PV/_p/-}_;
+SRC_URI="
+   amd64? ( ${VIVALDI_BASE_URI}amd64.deb -> ${P}-amd64.deb )
+   x86? ( ${VIVALDI_BASE_URI}i386.deb -> ${P}-i386.deb )
+"
+
+LICENSE="Vivaldi"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~x86"
+
+RESTRICT="bindist mirror"
+
+S=${WORKDIR}
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   >=dev-libs/openssl-1.0.1:0
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/libcap
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:2
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   sed -i \
+   -e "s|${VIVALDI_PN}|${PN}|g" \
+   usr/share/applications/${VIVALDI_PN}.desktop \
+   usr/share/xfce4/helpers/${VIVALDI_PN}.desktop || die
+
+   mv usr/share/doc/${VIVALDI_PN} 

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

2016-09-03 Thread Jeroen Roovers
commit: 68987f2e76cb64297f9cbd1b62f1d55fcc8dcb1b
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Sat Sep  3 09:23:06 2016 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Sat Sep  3 09:23:40 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68987f2e

www-client/vivaldi: Stable for AMD64 x86 too.

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

 www-client/vivaldi/vivaldi-1.3.551.30_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/vivaldi/vivaldi-1.3.551.30_p1.ebuild 
b/www-client/vivaldi/vivaldi-1.3.551.30_p1.ebuild
index 1880ddd..dce0fd7 100644
--- a/www-client/vivaldi/vivaldi-1.3.551.30_p1.ebuild
+++ b/www-client/vivaldi/vivaldi-1.3.551.30_p1.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="Vivaldi"
 SLOT="0"
-KEYWORDS="-* ~amd64 ~x86"
+KEYWORDS="-* amd64 x86"
 
 RESTRICT="bindist mirror"
 



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

2016-09-03 Thread Patrick Lauer
commit: 4c741cf58c3421c92c8b4ddc0c3c341885d1e94d
Author: Patrick Lauer  gentoo  org>
AuthorDate: Sat Sep  3 09:10:23 2016 +
Commit: Patrick Lauer  gentoo  org>
CommitDate: Sat Sep  3 09:10:36 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c741cf5

dev-python/numba: Bump

Package-Manager: portage-2.3.0

 dev-python/numba/Manifest|  1 +
 dev-python/numba/numba-0.27.0.ebuild | 66 
 2 files changed, 67 insertions(+)

diff --git a/dev-python/numba/Manifest b/dev-python/numba/Manifest
index 8ee4b05..05eccfd 100644
--- a/dev-python/numba/Manifest
+++ b/dev-python/numba/Manifest
@@ -6,3 +6,4 @@ DIST numba-0.23.1.tar.gz 1284771 SHA256 
54359b8ef700a70f0d7a9b9aecb2c58867fd2347
 DIST numba-0.24.0.tar.gz 1134646 SHA256 
623fa32a9e0018dcbffb3e5ab29c87a12252e67eb1325be69abac9faaff2f8ed SHA512 
ffad0fa1a92479aa7d41cbbfdace5bb8c2be49b99cf7da3ccacbc972b910e945bb763aaf1a1704c2af28c57d9384530c7303571653ff964d7470cb48704062bc
 WHIRLPOOL 
b280105aa8ccd74e689f7d1a837bd4e7833400fdb1f469810b8c01db37ada725698534cdf95aad34a5f85d1bd8b206c83fd02be1100924889487813269721ba9
 DIST numba-0.25.0.tar.gz 1180078 SHA256 
a5e6c4d3a1b7c99b69c41d2af2894e631dff9809cc6c3c851f956920608c8602 SHA512 
c9b2f9cb93b63fc8bfc0f5964be22d6da5df80d27f1f3df690cfc293f6c51e483053dbd9bcc38938be690b66ef14eea969fdf84120e4cebc108d58b8344e67c5
 WHIRLPOOL 
ea28a872cf6ac03178058a463cdc1f44470578b673c08612e7cdca4951f6dc38c94c11743d1761bba8c4edf577f37a86b3dc208f0bfdcc600bbe517cff5c9e90
 DIST numba-0.26.0.tar.gz 1219317 SHA256 
56abeadd00e2867d1cbb360131e28d9d45f0ca3d0270cbf1be357e864d756642 SHA512 
9cb05cf5a059ac79bba5cac0fd49d7356d0733500bf23b17ad86fa14ed5f7758e97e5f6d32e34d89d48328179924668e370c0380c602f57a1ddcbbbc8dfa4403
 WHIRLPOOL 
73b609bc0bd6c000e93ef37e842846a4174aa34ad34f7ef72c0c7b524a3731b6eaa13be9ef83f581853feebfe0ee219d13cd386b064fa4ede824410f0a82eb5c
+DIST numba-0.27.0.tar.gz 1247144 SHA256 
aa75fc2ac7d958d4ac84ad55b279dd95ee5e6ffd247fdcf04800f167731184ca SHA512 
3c84fa58bc5e84683b5e593b99f8c48cfc6e9fd0f41a2a18d8a4d9deba618cec1e764a0202bb71166cbeebf27b908044be29e3b183b01f31edc8e85c962df876
 WHIRLPOOL 
178ec9ddaf5d2a9594eb808350d5e96a8b78ef643595aa6d02d581a7cfb7c86ae4902fccade874244a286957a9d9f4708c89d48d2c914a3528b9abae9db181b2

diff --git a/dev-python/numba/numba-0.27.0.ebuild 
b/dev-python/numba/numba-0.27.0.ebuild
new file mode 100644
index ..4082bbf
--- /dev/null
+++ b/dev-python/numba/numba-0.27.0.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_3,3_4,3_5} )
+
+inherit distutils-r1
+
+DESCRIPTION="NumPy aware dynamic Python compiler using LLVM"
+HOMEPAGE="http://numba.pydata.org/;
+SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc examples test"
+
+RDEPEND="
+   >=dev-python/llvmlite-0.10[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.6[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/enum34[${PYTHON_USEDEP}]' 
python{2_7,3_3})
+   virtual/python-funcsigs[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? ( virtual/python-singledispatch[${PYTHON_USEDEP}] )
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+# Delete intersphinx & entry to set sphinxjp.themecore, which is absent from 
portage, from conf.py
+PATCHES=( "${FILESDIR}"/${PN}-0.19.2-docbuild.patch )
+
+python_prepare_all() {
+   # Re-set them of doc build to one provided by sphinx
+   if has_version ">=dev-python/sphinx-1.3.1"; then
+   sed -e 's:basicstrap:classic:' -i docs/source/conf.py || die
+   else
+   sed -e 's:basicstrap:default:' -i docs/source/conf.py || die
+   fi
+   distutils-r1_python_prepare_all
+}
+
+python_compile() {
+   if ! python_is_python3; then
+   local CFLAGS="${CFLAGS} -fno-strict-aliasing"
+   export CFLAGS
+   fi
+   distutils-r1_python_compile
+}
+
+python_compile_all() {
+   use doc && emake -C docs/ html
+}
+
+python_test() {
+   cd "${BUILD_DIR}"/lib* || die
+   ${PYTHON} -c "import numba; numba.test()" || die
+}
+
+python_install_all() {
+   # doc needs obsolete sphinxjp package
+#  use doc && dodoc docs/Numba.pdf
+   use examples && local EXAMPLES=( examples/. )
+   use doc && local HTML_DOCS=( docs/_build/html/. )
+
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/bwa/files/, sci-biology/bwa/

2016-09-03 Thread David Seifert
commit: 9574df41e529782826a9e6b32bdbac1678f47875
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  3 08:55:18 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  3 08:55:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9574df41

sci-biology/bwa: Version bump to 0.7.15

Package-Manager: portage-2.3.0

 sci-biology/bwa/Manifest  |  2 +-
 sci-biology/bwa/{bwa-0.7.13.ebuild => bwa-0.7.15.ebuild}  | 11 +--
 .../{bwa-0.7.13-Makefile.patch => bwa-0.7.15-Makefile.patch}  |  0
 3 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/sci-biology/bwa/Manifest b/sci-biology/bwa/Manifest
index 3cf0fb1..5589b91 100644
--- a/sci-biology/bwa/Manifest
+++ b/sci-biology/bwa/Manifest
@@ -1,2 +1,2 @@
 DIST bwa-0.7.12.tar.bz2 184599 SHA256 
701dcad147ae470d741717a72c369b338df7f80bff4bb8eee8176c66f16d608c SHA512 
3ea093b861c1596d20b1ee0336468b66e52bc9f26e3d0bcbba0ddccc7fe9b1af2c7e1ed2a4e1366fe93fec348152becc126d5f4685dae54f05e6c582488b3abd
 WHIRLPOOL 
4b8651dedf2e09980850e7212fc2a77dc86b06f708af2077cff28cc843858b15825a203e3e02e7728418e9eb539004404f7c4b234c1f65de6a7b7dfe4dcfd1d0
-DIST bwa-0.7.13.tar.bz2 189670 SHA256 
559b3c63266e5d5351f7665268263dbb9592f3c1c4569e7a4a75a15f17f0aedc SHA512 
37966e914321d17b5a1d4e3a7786abdd9dd476e4dd7aaf924fb0e0726e3827a1414d9ffccc114a1a334943c8dde38273ce5fafdd1b429ab0f3cbf47ddbd6bedf
 WHIRLPOOL 
86b278b301aa1ff4334c0d78709a61dc034895deb6aa2bd60ee45a595198343e7d60db458c61168b8c61a6ace21db394583b6314a56df3171a151f554c07f769
+DIST bwa-0.7.15.tar.bz2 189806 SHA256 
2f56afefa49acc9bf45f12edb58e412565086cc20be098b8bf15ec07de8c0515 SHA512 
cb862342aef1042751de55df095b4dac8344d9b41f00b0cca7f748829bf7fba71d15e4c7deaaa255eca6ee6af3ba58b370944ee702150cf17c29fb50ff25fa26
 WHIRLPOOL 
5d57d37339ff6c68c47ba0147ea21e4faa9a6cbbea2e66130e69bbb19802621ad22ae26889c06000109684961ed9d872605bffd469ddf97af2f1fdca3b8bd316

diff --git a/sci-biology/bwa/bwa-0.7.13.ebuild 
b/sci-biology/bwa/bwa-0.7.15.ebuild
similarity index 82%
rename from sci-biology/bwa/bwa-0.7.13.ebuild
rename to sci-biology/bwa/bwa-0.7.15.ebuild
index 2ce3ff3..fab85aa 100644
--- a/sci-biology/bwa/bwa-0.7.13.ebuild
+++ b/sci-biology/bwa/bwa-0.7.15.ebuild
@@ -17,13 +17,12 @@ KEYWORDS="~amd64 ~x86 ~x64-macos"
 
 RDEPEND="dev-lang/perl"
 
-PATCHES=(
-   "${FILESDIR}"/${P}-Makefile.patch
-)
+DOCS=( NEWS.md README-alt.md README.md )
+PATCHES=( "${FILESDIR}"/${P}-Makefile.patch )
 
-src_prepare() {
-   default
+src_configure() {
tc-export CC AR
+   default
 }
 
 src_install() {
@@ -34,5 +33,5 @@ src_install() {
exeinto /usr/libexec/${PN}
doexe qualfa2fq.pl xa2multi.pl
 
-   dodoc NEWS.md README-alt.md README.md
+   einstalldocs
 }

diff --git a/sci-biology/bwa/files/bwa-0.7.13-Makefile.patch 
b/sci-biology/bwa/files/bwa-0.7.15-Makefile.patch
similarity index 100%
rename from sci-biology/bwa/files/bwa-0.7.13-Makefile.patch
rename to sci-biology/bwa/files/bwa-0.7.15-Makefile.patch



[gentoo-commits] repo/gentoo:master commit in: sci-biology/tophat/

2016-09-03 Thread David Seifert
commit: 1fef751f90def6048c9066f9c5cc35bcc6681a33
Author: David Seifert  gentoo  org>
AuthorDate: Sat Sep  3 08:37:31 2016 +
Commit: David Seifert  gentoo  org>
CommitDate: Sat Sep  3 08:37:51 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fef751f

sci-biology/tophat: Various QA fixes, handle python properly

* Add subslot operator := for dev-libs/boost
* DEPEND on virtual/pkgconfig
* Add missing ${PYTHON_REQUIRED_USE} and ${PYTHON_DEPS}
* Install python scripts and modules properly using
  'python_doscript' and 'python_domodule'

Package-Manager: portage-2.3.0

 .../{tophat-2.1.1.ebuild => tophat-2.1.1-r1.ebuild}| 18 ++
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/sci-biology/tophat/tophat-2.1.1.ebuild 
b/sci-biology/tophat/tophat-2.1.1-r1.ebuild
similarity index 76%
rename from sci-biology/tophat/tophat-2.1.1.ebuild
rename to sci-biology/tophat/tophat-2.1.1-r1.ebuild
index fc80ea8..a850175 100644
--- a/sci-biology/tophat/tophat-2.1.1.ebuild
+++ b/sci-biology/tophat/tophat-2.1.1-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=6
 
 PYTHON_COMPAT=( python2_7 )
 
-inherit autotools eutils flag-o-matic python-single-r1
+inherit autotools eutils flag-o-matic python-single-r1 toolchain-funcs
 
 DESCRIPTION="Python-based splice junction mapper for RNA-Seq reads using 
bowtie2"
 HOMEPAGE="https://ccb.jhu.edu/software/tophat/;
@@ -16,11 +16,14 @@ LICENSE="Artistic"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="debug"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-RDEPEND="dev-libs/boost
+RDEPEND="${PYTHON_DEPS}
+   dev-libs/boost:=
sci-biology/samtools:0.1-legacy
sci-biology/bowtie:2"
 DEPEND="${RDEPEND}
+   virtual/pkgconfig
sci-biology/seqan:1.4"
 
 PATCHES=(
@@ -46,7 +49,7 @@ src_prepare() {
 
# innocuous non-security flags, prevent log pollution
append-cflags -Wno-unused-but-set-variable -Wno-unused-variable
-   append-cppflags "$(pkg-config --cflags seqan-1.4)"
+   append-cppflags "$($(tc-getPKG_CONFIG) --cflags seqan-1.4)"
 
eautoreconf
 }
@@ -59,8 +62,15 @@ src_install() {
default
 
local i
+   # install scripts properly
for i in bed_to_juncs contig_to_chr_coords sra_to_solid tophat 
tophat-fusion-post; do
-   python_fix_shebang "${ED}"/usr/bin/${i}
+   python_doscript "${ED%/}/usr/bin/${i}"
+   done
+
+   # install python modules properly
+   for i in intervaltree sortedcontainers; do
+   python_domodule "${ED%/}/usr/bin/${i}"
+   rm -rf "${ED%/}/usr/bin/${i}" || die
done
 }
 



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

2016-09-03 Thread Tobias Klausmann
commit: 2f65c0d844a8274fd63cfe30f977507afe358cc8
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Sep  3 08:17:14 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Sep  3 08:17:14 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f65c0d8

dev-lang/php-5.6.24-r0: add alpha keyword

Gentoo-Bug: 589232

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

diff --git a/dev-lang/php/php-5.6.24.ebuild b/dev-lang/php/php-5.6.24.ebuild
index cef66b9..9830c1d 100644
--- a/dev-lang/php/php-5.6.24.ebuild
+++ b/dev-lang/php/php-5.6.24.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator libtool systemd
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {



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

2016-09-03 Thread Tobias Klausmann
commit: 312dd0d028867fbe9798b6217b24094c1f49edc7
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Sep  3 08:16:11 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Sep  3 08:16:11 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=312dd0d0

dev-lang/php-5.5.38-r0: add alpha keyword

Gentoo-Bug: 589232

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

diff --git a/dev-lang/php/php-5.5.38.ebuild b/dev-lang/php/php-5.5.38.ebuild
index 9376fac..9de5eaf 100644
--- a/dev-lang/php/php-5.5.38.ebuild
+++ b/dev-lang/php/php-5.5.38.ebuild
@@ -6,7 +6,7 @@ EAPI=5
 
 inherit eutils autotools flag-o-matic versionator depend.apache apache-module 
db-use libtool systemd
 
-KEYWORDS="~alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="alpha amd64 arm hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc x86 
~amd64-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~ia64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 
 function php_get_uri ()
 {



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

2016-09-03 Thread Tobias Klausmann
commit: fe0d40dc915b84e1cab2bc537b60c8ffab96d832
Author: Tobias Klausmann  gentoo  org>
AuthorDate: Sat Sep  3 08:16:23 2016 +
Commit: Tobias Klausmann  gentoo  org>
CommitDate: Sat Sep  3 08:16:23 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe0d40dc

dev-db/mariadb-10.0.26-r0: add alpha keyword

Gentoo-Bug: 589346

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

diff --git a/dev-db/mariadb/mariadb-10.0.26.ebuild 
b/dev-db/mariadb/mariadb-10.0.26.ebuild
index aa35e6b..f23ba12 100644
--- a/dev-db/mariadb/mariadb-10.0.26.ebuild
+++ b/dev-db/mariadb/mariadb-10.0.26.ebuild
@@ -18,7 +18,7 @@ RESTRICT="!bindist? ( bindist )"
 REQUIRED_USE="server? ( tokudb? ( jemalloc ) ) static? ( !pam )"
 
 # REMEMBER: also update eclass/mysql*.eclass before committing!
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sh ~sparc 
x86 ~sparc-fbsd ~x86-fbsd ~x86-freebsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~x64-solaris ~x86-solaris"
 
 MY_PATCH_DIR="${WORKDIR}/mysql-extras-${MY_EXTRAS_VER}"
 PATCHES=(



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

2016-09-03 Thread Hans de Graaff
commit: 9a8195c2eb0da605a956077f4ca217637847d355
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:12:16 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:12:16 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a8195c2

dev-ruby/activerecord: add rails 5.0.0.1

Package-Manager: portage-2.2.28

 dev-ruby/activerecord/Manifest|  1 +
 dev-ruby/activerecord/activerecord-5.0.0.1.ebuild | 80 +++
 2 files changed, 81 insertions(+)

diff --git a/dev-ruby/activerecord/Manifest b/dev-ruby/activerecord/Manifest
index 9a8dc63..814621c 100644
--- a/dev-ruby/activerecord/Manifest
+++ b/dev-ruby/activerecord/Manifest
@@ -4,3 +4,4 @@ DIST rails-4.1.16.tgz 3730763 SHA256 
fd17ccacee3a61c17d2cfa36db36f583ed3d05eac50
 DIST rails-4.2.6.tgz 4179056 SHA256 
68bf40c27e0ee75b26c7b48fbe357f024b8d6d322a4ecf5c3427b4d6ef959fef SHA512 
040599aa1c6a09ca569f377b1f49a4404d9516599d16d6909f93ffd2e387dfb20835a2842980cc5c119aaef411985e47f55ec8907041ff633b8f98ea101a42d0
 WHIRLPOOL 
1aef2ff5790fa94f1003fa6acdcad26b7bcb6a6a02f075e41a6ba5a5b77790420afa57ea64d3192e92de595161ba3741e7e7f8be7dbac6871ba5137a53f81efe
 DIST rails-4.2.7.1.tgz 4181681 SHA256 
bfa7854f1b35e449b78db2af83fe660f17b101a487728fcfc6fb623967fb4783 SHA512 
b926b59822ddd0837a402d798a7f2c9152d9916805153d3cad081d47e692992cdf3c7aaf8af47b061e3d78f8f23357674c5a9ed6c945b082e2d8c909281f5527
 WHIRLPOOL 
da253d85bdc93c500a220b7688597dcb86c192226f5532619d8bb081440326e4dba8cc78f3bf946f16fe67e28beae0274649533aaf966177295daff7c4bf1188
 DIST rails-4.2.7.tgz 4181136 SHA256 
31005bc5892ef4d478016f4ef66c7708d0bfc440d917dac8a5e84a461fa2a980 SHA512 
89df542cac1cf31be376fff3d919860168ce5df0dcd51035411a7f82a59a6fc27d8aecdd92dc20dee59831745ecab1ff8e404756dbc85a1ec08c3f2c1721e7dc
 WHIRLPOOL 
15653098db0702b5e76e6fc4eba0f4fa6eaf73b30a23d1bf10e08cd999452608325ebba25c87b85d790ab49cf8ba216f40ee4dc25bd072cc8be89546af378542
+DIST rails-5.0.0.1.tgz 6139334 SHA256 
3cbbe71d80c2813dde0d2bfa61aea57c8e6a1a3b2a81e6b211dbf2f2a4be2add SHA512 
8e820f26543e8ad05b01a75e4e4df1adb229b5d90cfccd1b63d77a6ab25f232d24a875cd5630648e58c6598d741a3d35b2a76fd7e99a0f06971f84ee63ada56f
 WHIRLPOOL 
9aed4fab1c8ea06185de5320ed85d6d51ed0babf6143c3d70df352adea5721c3074bb80c351b395752b2d8c60f5fcb8982b086e507836b9867d6597f2d72df4c

diff --git a/dev-ruby/activerecord/activerecord-5.0.0.1.ebuild 
b/dev-ruby/activerecord/activerecord-5.0.0.1.ebuild
new file mode 100644
index ..0ec98a5
--- /dev/null
+++ b/dev-ruby/activerecord/activerecord-5.0.0.1.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby22 ruby23"
+
+# this is not null so that the dependencies will actually be filled
+RUBY_FAKEGEM_TASK_TEST="test"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="activerecord.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Implements the ActiveRecord pattern (Fowler, PoEAA) for ORM"
+HOMEPAGE="https://github.com/rails/rails/;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64 ~arm ~amd64-linux"
+IUSE="mysql postgres sqlite"
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "~dev-ruby/activesupport-${PV}
+   ~dev-ruby/activemodel-${PV}
+   dev-ruby/arel:7.0
+   sqlite? ( >=dev-ruby/sqlite3-1.3.6 )
+   mysql? ( || ( dev-ruby/mysql2:0.4 >=dev-ruby/mysql2-0.3.18:0.3 ) )
+   postgres? ( >=dev-ruby/pg-0.18.0 )"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/bundler
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/actionmailer-${PV}
+   >=dev-ruby/sqlite3-1.3.6
+   dev-ruby/mocha:0.14
+3.4/>= 3.4/' 
../railties/railties.gemspec || die
+   sed -i -e '/bcrypt/ s/3.0.0/3.0/' ../Gemfile || die
+
+   # Add back json in the Gemfile because we dropped some dependencies
+   # earlier that implicitly required it.
+   sed -i -e '$agem "json"' ../Gemfile || die
+
+   # Avoid test depending on mysql adapter which we don't support for
+   # this Rails version to simplify our dependencies.
+   rm test/cases/connection_specification/resolver_test.rb || die
+
+   # Avoid single test using mysql dependencies.
+   rm test/cases/invalid_connection_test.rb || die
+
+   # Avoid failing test that makes bad assumptions on database state.
+   sed -i -e '/test_do_not_call_callbacks_for_delete_all/,/^  end/ s:^:#:' 
\
+   test/cases/associations/has_many_associations_test.rb
+}
+
+each_ruby_test() {
+   if use sqlite; then
+   ${RUBY} -S rake test_sqlite3 || die "sqlite3 tests failed"
+   fi
+}



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

2016-09-03 Thread Hans de Graaff
commit: e8e8d8d82a7e5ee34c63c778feae8b2c1addbe2c
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:06:18 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:06:18 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8e8d8d8

dev-ruby/activemodel: add rails 5.0.0.1

Package-Manager: portage-2.2.28

 dev-ruby/activemodel/Manifest   |  1 +
 dev-ruby/activemodel/activemodel-5.0.0.1.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/activemodel/Manifest b/dev-ruby/activemodel/Manifest
index 9a8dc63..814621c 100644
--- a/dev-ruby/activemodel/Manifest
+++ b/dev-ruby/activemodel/Manifest
@@ -4,3 +4,4 @@ DIST rails-4.1.16.tgz 3730763 SHA256 
fd17ccacee3a61c17d2cfa36db36f583ed3d05eac50
 DIST rails-4.2.6.tgz 4179056 SHA256 
68bf40c27e0ee75b26c7b48fbe357f024b8d6d322a4ecf5c3427b4d6ef959fef SHA512 
040599aa1c6a09ca569f377b1f49a4404d9516599d16d6909f93ffd2e387dfb20835a2842980cc5c119aaef411985e47f55ec8907041ff633b8f98ea101a42d0
 WHIRLPOOL 
1aef2ff5790fa94f1003fa6acdcad26b7bcb6a6a02f075e41a6ba5a5b77790420afa57ea64d3192e92de595161ba3741e7e7f8be7dbac6871ba5137a53f81efe
 DIST rails-4.2.7.1.tgz 4181681 SHA256 
bfa7854f1b35e449b78db2af83fe660f17b101a487728fcfc6fb623967fb4783 SHA512 
b926b59822ddd0837a402d798a7f2c9152d9916805153d3cad081d47e692992cdf3c7aaf8af47b061e3d78f8f23357674c5a9ed6c945b082e2d8c909281f5527
 WHIRLPOOL 
da253d85bdc93c500a220b7688597dcb86c192226f5532619d8bb081440326e4dba8cc78f3bf946f16fe67e28beae0274649533aaf966177295daff7c4bf1188
 DIST rails-4.2.7.tgz 4181136 SHA256 
31005bc5892ef4d478016f4ef66c7708d0bfc440d917dac8a5e84a461fa2a980 SHA512 
89df542cac1cf31be376fff3d919860168ce5df0dcd51035411a7f82a59a6fc27d8aecdd92dc20dee59831745ecab1ff8e404756dbc85a1ec08c3f2c1721e7dc
 WHIRLPOOL 
15653098db0702b5e76e6fc4eba0f4fa6eaf73b30a23d1bf10e08cd999452608325ebba25c87b85d790ab49cf8ba216f40ee4dc25bd072cc8be89546af378542
+DIST rails-5.0.0.1.tgz 6139334 SHA256 
3cbbe71d80c2813dde0d2bfa61aea57c8e6a1a3b2a81e6b211dbf2f2a4be2add SHA512 
8e820f26543e8ad05b01a75e4e4df1adb229b5d90cfccd1b63d77a6ab25f232d24a875cd5630648e58c6598d741a3d35b2a76fd7e99a0f06971f84ee63ada56f
 WHIRLPOOL 
9aed4fab1c8ea06185de5320ed85d6d51ed0babf6143c3d70df352adea5721c3074bb80c351b395752b2d8c60f5fcb8982b086e507836b9867d6597f2d72df4c

diff --git a/dev-ruby/activemodel/activemodel-5.0.0.1.ebuild 
b/dev-ruby/activemodel/activemodel-5.0.0.1.ebuild
new file mode 100644
index ..f4c5d2a
--- /dev/null
+++ b/dev-ruby/activemodel/activemodel-5.0.0.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="activemodel.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Toolkit for building modeling frameworks like Active Record and 
Active Resource"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64 ~arm ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}:*
+"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/railties-4.2.0
+   dev-ruby/test-unit:2
+   >=dev-ruby/mocha-0.14.0:0.14
+   >=dev-ruby/bcrypt-ruby-3.1.7
+   )"
+
+all_ruby_prepare() {
+   # Set test environment to our hand.
+   sed -i -e '/load_paths/d' test/cases/helper.rb || die "Unable to remove 
load paths"
+}



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

2016-09-03 Thread Hans de Graaff
commit: 7db21cf4f08c20271418cb95498b7c2266120a75
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:13:06 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:13:06 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7db21cf4

dev-ruby/rails: add rails 5.0.0.1

Package-Manager: portage-2.2.28

 dev-ruby/rails/Manifest |  1 +
 dev-ruby/rails/rails-5.0.0.1.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-ruby/rails/Manifest b/dev-ruby/rails/Manifest
index 3b4c64b..4ad1ffe 100644
--- a/dev-ruby/rails/Manifest
+++ b/dev-ruby/rails/Manifest
@@ -4,3 +4,4 @@ DIST rails-4.1.16.gem 1438208 SHA256 
a19899f82c0a03a08cd2629636b75b582e0a64d908b
 DIST rails-4.2.6.gem 1475584 SHA256 
a199258c0d2bae09993a6932c49df254fd66428899d1823b8c5285de02e5bc33 SHA512 
80556b380f0ce9b960afe015ddcab02d5ab8abd2a1376ca35b24665644bb86f6d01d76744cbb0cb86fdc388180922ce507506afda062b7bbd6a772de06f1c34b
 WHIRLPOOL 
65a4f4b80b70fe77f990a4c27482cf77b032a6b87bf80379e627db090aa7978070440bec16a50d1cec68b5ea83d76dfe95585bea74e7c17558b54802f6a4ca58
 DIST rails-4.2.7.1.gem 1475584 SHA256 
9414bef218365d548c5e42080e70364ad2809d6263856f591ba2e393a3096dab SHA512 
efd9ec3e712a055b92c7409b3ae184e7133065d4ce50955af58d52bcd9410e744026bdb286bf75151ac0ec16a9fac1b7cbfb9a22fd837181799b0cd247e93a90
 WHIRLPOOL 
53166853626031f24b4d7bdf98f7d858ac97360d68fe4d5534eb1e775069a7d2b782cac22ae1d4a1fec690602865b1079da79732f1c4028e4cce252bb404f9fa
 DIST rails-4.2.7.gem 1475584 SHA256 
76dbbc22ac7fc20edb2fb653a9517590537073ef57669c2da8f3d32ff1767c0c SHA512 
17a0deb902063a9dee2ec51c43370667d8a1bd7592287627726b1b24941472c6365dadcb027129935d539fb2563cc41dea8b816474215dbaaa9af7dafead3211
 WHIRLPOOL 
e30fbb5e03bfb8b0fe51e61e3286d74b32df4d3e9c29ef13d42522f33964f050b6f0553ceba05c5230b808753d36f2fb80bed8f98e229a6c22ec8036a3845532
+DIST rails-5.0.0.1.gem 6144 SHA256 
b51cf641a376e16166587cfe41f46e37bd3a510c13a8b79f0682985c1603e4d8 SHA512 
6e6860a4e0bf1386458921bbc3851d0b1a41792875b4f9c5068d1890df9e0420cc161d4399b79c1512630e719f374692102bd04d6397988b3d645be8103527f5
 WHIRLPOOL 
a2b3906b7676bbf9767d390c032c2462cbc10f5d634dd24a109625cff972994a17931a6a822c66d84f843a6ae6398701e3363dc27941ddea05c5eb74e3fe7d95

diff --git a/dev-ruby/rails/rails-5.0.0.1.ebuild 
b/dev-ruby/rails/rails-5.0.0.1.ebuild
new file mode 100644
index ..8752b5c
--- /dev/null
+++ b/dev-ruby/rails/rails-5.0.0.1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby22 ruby23"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_TASK_TEST=""
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="ruby on rails is a web-application and persistance framework"
+HOMEPAGE="http://www.rubyonrails.org;
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64 ~amd64-linux"
+
+IUSE="+asset-pipeline"
+
+ruby_add_rdepend "
+   ~dev-ruby/actioncable-${PV}
+   ~dev-ruby/actionmailer-${PV}
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/actionview-${PV}
+   ~dev-ruby/activejob-${PV}
+   ~dev-ruby/activemodel-${PV}
+   ~dev-ruby/activerecord-${PV}
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/railties-${PV}
+   >=dev-ruby/bundler-1.3 =dev-ruby/bundler-1*
+   >=dev-ruby/sprockets-rails-2.0.0:*
+   asset-pipeline? (
+   dev-ruby/jquery-rails:*
+   >=dev-ruby/sass-rails-5.0:5.0
+   >=dev-ruby/uglifier-1.3.0:*
+   >=dev-ruby/coffee-rails-4.1.0:*
+   )"
+
+# also: turbolinks, >=jbuilder-1.2:1



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

2016-09-03 Thread Hans de Graaff
commit: 788e5ac79681200b36e33854978f446f08511749
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 06:02:33 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 06:02:33 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=788e5ac7

dev-ruby/backports: add ruby23

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/backports/backports-3.6.8.ebuild 
b/dev-ruby/backports/backports-3.6.8.ebuild
index 9292ddb..3faede1 100644
--- a/dev-ruby/backports/backports-3.6.8.ebuild
+++ b/dev-ruby/backports/backports-3.6.8.ebuild
@@ -3,7 +3,7 @@
 # $Id$
 
 EAPI=5
-USE_RUBY="ruby20 ruby21 ruby22"
+USE_RUBY="ruby20 ruby21 ruby22 ruby23"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_TASK_TEST="test"
 



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

2016-09-03 Thread Hans de Graaff
commit: 7d0e476b433e51d1d3f60b30df7099f55c0c22d4
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:07:20 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:07:20 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d0e476b

dev-ruby/actioncable: add rails 5.0.0.1

Package-Manager: portage-2.2.28

 dev-ruby/actioncable/Manifest   |  1 +
 dev-ruby/actioncable/actioncable-5.0.0.1.ebuild | 42 +
 dev-ruby/actioncable/metadata.xml   | 11 +++
 3 files changed, 54 insertions(+)

diff --git a/dev-ruby/actioncable/Manifest b/dev-ruby/actioncable/Manifest
new file mode 100644
index ..e572375
--- /dev/null
+++ b/dev-ruby/actioncable/Manifest
@@ -0,0 +1 @@
+DIST rails-5.0.0.1.tgz 6139334 SHA256 
3cbbe71d80c2813dde0d2bfa61aea57c8e6a1a3b2a81e6b211dbf2f2a4be2add SHA512 
8e820f26543e8ad05b01a75e4e4df1adb229b5d90cfccd1b63d77a6ab25f232d24a875cd5630648e58c6598d741a3d35b2a76fd7e99a0f06971f84ee63ada56f
 WHIRLPOOL 
9aed4fab1c8ea06185de5320ed85d6d51ed0babf6143c3d70df352adea5721c3074bb80c351b395752b2d8c60f5fcb8982b086e507836b9867d6597f2d72df4c

diff --git a/dev-ruby/actioncable/actioncable-5.0.0.1.ebuild 
b/dev-ruby/actioncable/actioncable-5.0.0.1.ebuild
new file mode 100644
index ..abebc2d
--- /dev/null
+++ b/dev-ruby/actioncable/actioncable-5.0.0.1.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Structure many real-time application concerns into channels over 
a single WebSocket connection"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+# Tests require many new dependencies, skipping for now
+RESTRICT="test"
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}:*
+   >=dev-ruby/nio4r-1.2:0
+   >=dev-ruby/websocket-driver-0.6.1:0 =dev-ruby/websocket-driver-0.6*
+"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/railties-4.2.0
+   dev-ruby/test-unit:2
+   >=dev-ruby/mocha-0.14.0:0.14
+   )"

diff --git a/dev-ruby/actioncable/metadata.xml 
b/dev-ruby/actioncable/metadata.xml
new file mode 100644
index ..42d41e3
--- /dev/null
+++ b/dev-ruby/actioncable/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+r...@gentoo.org
+Gentoo Ruby Project
+  
+  
+rails/rails
+  
+



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

2016-09-03 Thread Hans de Graaff
commit: b74041c68bcbe167fc6af2b80b98912ec4cd3ed0
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:10:02 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:10:02 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b74041c6

dev-ruby/actionmailer: add rails 5.0.0.1

Package-Manager: portage-2.2.28

 dev-ruby/actionmailer/Manifest|  1 +
 dev-ruby/actionmailer/actionmailer-5.0.0.1.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-ruby/actionmailer/Manifest b/dev-ruby/actionmailer/Manifest
index 9a8dc63..814621c 100644
--- a/dev-ruby/actionmailer/Manifest
+++ b/dev-ruby/actionmailer/Manifest
@@ -4,3 +4,4 @@ DIST rails-4.1.16.tgz 3730763 SHA256 
fd17ccacee3a61c17d2cfa36db36f583ed3d05eac50
 DIST rails-4.2.6.tgz 4179056 SHA256 
68bf40c27e0ee75b26c7b48fbe357f024b8d6d322a4ecf5c3427b4d6ef959fef SHA512 
040599aa1c6a09ca569f377b1f49a4404d9516599d16d6909f93ffd2e387dfb20835a2842980cc5c119aaef411985e47f55ec8907041ff633b8f98ea101a42d0
 WHIRLPOOL 
1aef2ff5790fa94f1003fa6acdcad26b7bcb6a6a02f075e41a6ba5a5b77790420afa57ea64d3192e92de595161ba3741e7e7f8be7dbac6871ba5137a53f81efe
 DIST rails-4.2.7.1.tgz 4181681 SHA256 
bfa7854f1b35e449b78db2af83fe660f17b101a487728fcfc6fb623967fb4783 SHA512 
b926b59822ddd0837a402d798a7f2c9152d9916805153d3cad081d47e692992cdf3c7aaf8af47b061e3d78f8f23357674c5a9ed6c945b082e2d8c909281f5527
 WHIRLPOOL 
da253d85bdc93c500a220b7688597dcb86c192226f5532619d8bb081440326e4dba8cc78f3bf946f16fe67e28beae0274649533aaf966177295daff7c4bf1188
 DIST rails-4.2.7.tgz 4181136 SHA256 
31005bc5892ef4d478016f4ef66c7708d0bfc440d917dac8a5e84a461fa2a980 SHA512 
89df542cac1cf31be376fff3d919860168ce5df0dcd51035411a7f82a59a6fc27d8aecdd92dc20dee59831745ecab1ff8e404756dbc85a1ec08c3f2c1721e7dc
 WHIRLPOOL 
15653098db0702b5e76e6fc4eba0f4fa6eaf73b30a23d1bf10e08cd999452608325ebba25c87b85d790ab49cf8ba216f40ee4dc25bd072cc8be89546af378542
+DIST rails-5.0.0.1.tgz 6139334 SHA256 
3cbbe71d80c2813dde0d2bfa61aea57c8e6a1a3b2a81e6b211dbf2f2a4be2add SHA512 
8e820f26543e8ad05b01a75e4e4df1adb229b5d90cfccd1b63d77a6ab25f232d24a875cd5630648e58c6598d741a3d35b2a76fd7e99a0f06971f84ee63ada56f
 WHIRLPOOL 
9aed4fab1c8ea06185de5320ed85d6d51ed0babf6143c3d70df352adea5721c3074bb80c351b395752b2d8c60f5fcb8982b086e507836b9867d6597f2d72df4c

diff --git a/dev-ruby/actionmailer/actionmailer-5.0.0.1.ebuild 
b/dev-ruby/actionmailer/actionmailer-5.0.0.1.ebuild
new file mode 100644
index ..f3a3dff
--- /dev/null
+++ b/dev-ruby/actionmailer/actionmailer-5.0.0.1.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="actionmailer.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Framework for designing email-service layers"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64 ~arm ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/actionview-${PV}
+   ~dev-ruby/activejob-${PV}
+   >=dev-ruby/mail-2.5.4:* =dev-ruby/mail-2*:*
+   dev-ruby/rails-dom-testing:2"
+
+ruby_add_bdepend "test? (
+   dev-ruby/mocha:0.14
+)"
+
+all_ruby_prepare() {
+   # Set test environment to our hand.
+   rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
+   sed -i -e '/\/load_paths/d' test/abstract_unit.rb || die "Unable to 
remove load paths"
+
+   # Avoid a test failing only on attachment ordering, since this is a
+   # security release.
+   sed -i -e '/adding inline attachments while rendering mail works/askip 
"gentoo: fails on ordering"' test/base_test.rb || die
+}



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

2016-09-03 Thread Hans de Graaff
commit: 2853d7c0d6b276fd22147da24f0f33e7a6e08668
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:08:09 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:08:09 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2853d7c0

dev-ruby/actionview: add rails 5.0.0.1

Package-Manager: portage-2.2.28

 dev-ruby/actionview/Manifest  |  1 +
 dev-ruby/actionview/actionview-5.0.0.1.ebuild | 56 +++
 2 files changed, 57 insertions(+)

diff --git a/dev-ruby/actionview/Manifest b/dev-ruby/actionview/Manifest
index 955e962..6a54527 100644
--- a/dev-ruby/actionview/Manifest
+++ b/dev-ruby/actionview/Manifest
@@ -3,3 +3,4 @@ DIST rails-4.1.16.tgz 3730763 SHA256 
fd17ccacee3a61c17d2cfa36db36f583ed3d05eac50
 DIST rails-4.2.6.tgz 4179056 SHA256 
68bf40c27e0ee75b26c7b48fbe357f024b8d6d322a4ecf5c3427b4d6ef959fef SHA512 
040599aa1c6a09ca569f377b1f49a4404d9516599d16d6909f93ffd2e387dfb20835a2842980cc5c119aaef411985e47f55ec8907041ff633b8f98ea101a42d0
 WHIRLPOOL 
1aef2ff5790fa94f1003fa6acdcad26b7bcb6a6a02f075e41a6ba5a5b77790420afa57ea64d3192e92de595161ba3741e7e7f8be7dbac6871ba5137a53f81efe
 DIST rails-4.2.7.1.tgz 4181681 SHA256 
bfa7854f1b35e449b78db2af83fe660f17b101a487728fcfc6fb623967fb4783 SHA512 
b926b59822ddd0837a402d798a7f2c9152d9916805153d3cad081d47e692992cdf3c7aaf8af47b061e3d78f8f23357674c5a9ed6c945b082e2d8c909281f5527
 WHIRLPOOL 
da253d85bdc93c500a220b7688597dcb86c192226f5532619d8bb081440326e4dba8cc78f3bf946f16fe67e28beae0274649533aaf966177295daff7c4bf1188
 DIST rails-4.2.7.tgz 4181136 SHA256 
31005bc5892ef4d478016f4ef66c7708d0bfc440d917dac8a5e84a461fa2a980 SHA512 
89df542cac1cf31be376fff3d919860168ce5df0dcd51035411a7f82a59a6fc27d8aecdd92dc20dee59831745ecab1ff8e404756dbc85a1ec08c3f2c1721e7dc
 WHIRLPOOL 
15653098db0702b5e76e6fc4eba0f4fa6eaf73b30a23d1bf10e08cd999452608325ebba25c87b85d790ab49cf8ba216f40ee4dc25bd072cc8be89546af378542
+DIST rails-5.0.0.1.tgz 6139334 SHA256 
3cbbe71d80c2813dde0d2bfa61aea57c8e6a1a3b2a81e6b211dbf2f2a4be2add SHA512 
8e820f26543e8ad05b01a75e4e4df1adb229b5d90cfccd1b63d77a6ab25f232d24a875cd5630648e58c6598d741a3d35b2a76fd7e99a0f06971f84ee63ada56f
 WHIRLPOOL 
9aed4fab1c8ea06185de5320ed85d6d51ed0babf6143c3d70df352adea5721c3074bb80c351b395752b2d8c60f5fcb8982b086e507836b9867d6597f2d72df4c

diff --git a/dev-ruby/actionview/actionview-5.0.0.1.ebuild 
b/dev-ruby/actionview/actionview-5.0.0.1.ebuild
new file mode 100644
index ..fae35cb
--- /dev/null
+++ b/dev-ruby/actionview/actionview-5.0.0.1.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR="doc"
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Simple, battle-tested conventions and helpers for building web 
pages"
+HOMEPAGE="https://github.com/rails/rails/;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64 ~arm ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   >=dev-ruby/builder-3.1:* =dev-ruby/builder-3*:*
+   >=dev-ruby/erubis-2.7.0
+   >=dev-ruby/rails-html-sanitizer-1.0.2:1
+   dev-ruby/rails-dom-testing:2
+"
+
+ruby_add_bdepend "
+   test? (
+   dev-ruby/mocha:0.14
+   ~dev-ruby/actionpack-${PV}
+   ~dev-ruby/activemodel-${PV}
+   )"
+
+all_ruby_prepare() {
+   # Remove items from the common Gemfile that we don't need for this
+   # test run. This also requires handling some gemspecs.
+   sed -i -e 
"/\(system_timer\|sdoc\|w3c_validators\|pg\|execjs\|jquery-rails\|'mysql'\|journey\|rack-cache\|ruby-prof\|stackprof\|benchmark-ips\|kindlerb\|turbolinks\|coffee-rails\|debugger\|redcarpet\|bcrypt\|uglifier\|mime-types\|minitest\|sprockets\|stackprof\)/
 s:^:#:" \
+   -e '/:job/,/end/ s:^:#:' \
+   -e '/group :doc/,/^end/ s:^:#:' ../Gemfile || die
+   rm ../Gemfile.lock || die
+
+   # Avoid tests failing due to missing logger setup in activerecord,
+   # most likely related to test environment setup.
+   rm -f 
test/activerecord/render_partial_with_record_identification_test.rb || die
+}



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

2016-09-03 Thread Hans de Graaff
commit: 30ff5f356497c59fa4733288ef8499f49b1f9112
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:07:46 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:07:46 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ff5f35

dev-ruby/activejob: add rails 5.0.0.1

Package-Manager: portage-2.2.28

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

diff --git a/dev-ruby/activejob/Manifest b/dev-ruby/activejob/Manifest
index db4da0d..912d840 100644
--- a/dev-ruby/activejob/Manifest
+++ b/dev-ruby/activejob/Manifest
@@ -1,3 +1,4 @@
 DIST rails-4.2.6.tgz 4179056 SHA256 
68bf40c27e0ee75b26c7b48fbe357f024b8d6d322a4ecf5c3427b4d6ef959fef SHA512 
040599aa1c6a09ca569f377b1f49a4404d9516599d16d6909f93ffd2e387dfb20835a2842980cc5c119aaef411985e47f55ec8907041ff633b8f98ea101a42d0
 WHIRLPOOL 
1aef2ff5790fa94f1003fa6acdcad26b7bcb6a6a02f075e41a6ba5a5b77790420afa57ea64d3192e92de595161ba3741e7e7f8be7dbac6871ba5137a53f81efe
 DIST rails-4.2.7.1.tgz 4181681 SHA256 
bfa7854f1b35e449b78db2af83fe660f17b101a487728fcfc6fb623967fb4783 SHA512 
b926b59822ddd0837a402d798a7f2c9152d9916805153d3cad081d47e692992cdf3c7aaf8af47b061e3d78f8f23357674c5a9ed6c945b082e2d8c909281f5527
 WHIRLPOOL 
da253d85bdc93c500a220b7688597dcb86c192226f5532619d8bb081440326e4dba8cc78f3bf946f16fe67e28beae0274649533aaf966177295daff7c4bf1188
 DIST rails-4.2.7.tgz 4181136 SHA256 
31005bc5892ef4d478016f4ef66c7708d0bfc440d917dac8a5e84a461fa2a980 SHA512 
89df542cac1cf31be376fff3d919860168ce5df0dcd51035411a7f82a59a6fc27d8aecdd92dc20dee59831745ecab1ff8e404756dbc85a1ec08c3f2c1721e7dc
 WHIRLPOOL 
15653098db0702b5e76e6fc4eba0f4fa6eaf73b30a23d1bf10e08cd999452608325ebba25c87b85d790ab49cf8ba216f40ee4dc25bd072cc8be89546af378542
+DIST rails-5.0.0.1.tgz 6139334 SHA256 
3cbbe71d80c2813dde0d2bfa61aea57c8e6a1a3b2a81e6b211dbf2f2a4be2add SHA512 
8e820f26543e8ad05b01a75e4e4df1adb229b5d90cfccd1b63d77a6ab25f232d24a875cd5630648e58c6598d741a3d35b2a76fd7e99a0f06971f84ee63ada56f
 WHIRLPOOL 
9aed4fab1c8ea06185de5320ed85d6d51ed0babf6143c3d70df352adea5721c3074bb80c351b395752b2d8c60f5fcb8982b086e507836b9867d6597f2d72df4c

diff --git a/dev-ruby/activejob/activejob-5.0.0.1.ebuild 
b/dev-ruby/activejob/activejob-5.0.0.1.ebuild
new file mode 100644
index ..1a8f080
--- /dev/null
+++ b/dev-ruby/activejob/activejob-5.0.0.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+USE_RUBY="ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_DOCDIR=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md"
+
+RUBY_FAKEGEM_GEMSPEC="${PN}.gemspec"
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Job framework with pluggable queues"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64 ~arm ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   >=dev-ruby/globalid-0.3.6
+"
+
+ruby_add_bdepend "
+   test? (
+   >=dev-ruby/mocha-0.14.0:0.14
+   )"
+
+all_ruby_prepare() {
+   # Set test environment to our hand.
+   sed -i -e '/load_paths/d' test/helper.rb || die "Unable to remove load 
paths"
+
+   # Remove all currently unpackaged queues.
+   sed -i -e 's/delayed_job qu que queue_classic resque sidekiq sneakers 
sucker_punch backburner//' Rakefile || die
+}



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

2016-09-03 Thread Hans de Graaff
commit: 5c5f2d4a08bbd9d7a1e82d436db63b3869c96ac2
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 05:59:45 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 05:59:45 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c5f2d4a

net-p2p/gtk-gnutella: add 1.1.10

Package-Manager: portage-2.2.28

 net-p2p/gtk-gnutella/Manifest   |  1 +
 net-p2p/gtk-gnutella/gtk-gnutella-1.1.10.ebuild | 88 +
 2 files changed, 89 insertions(+)

diff --git a/net-p2p/gtk-gnutella/Manifest b/net-p2p/gtk-gnutella/Manifest
index 5f7083f..8ec4378 100644
--- a/net-p2p/gtk-gnutella/Manifest
+++ b/net-p2p/gtk-gnutella/Manifest
@@ -1,2 +1,3 @@
+DIST gtk-gnutella-1.1.10.tar.bz2 19827825 SHA256 
95e2a030124e7cc05e19e351eebc16f40f4520381b7bb306e8b940ed4e2e6409 SHA512 
33afdd8a98ff57f4fb5b91ba365921b8dbf72cc04431f95ff0d8162d37213861ea796f3b43d4fec257939d7a42822ab3e1ed80d49c9b93a1626024ee7ca7a13a
 WHIRLPOOL 
bbef0a0c2a05a8268e06a08d9c1f02136b81afb9a8b2a845242960a9abb88c6314072f793203c854d50b7493fa356cf234cadcde8bac4c2c0458955c279a5ec0
 DIST gtk-gnutella-1.1.8.tar.bz2 19690815 SHA256 
271aadb6da4a807dd98094d7f2fa42a2215e273cdc799c188e68594896586079 SHA512 
f1b0130a660d41690fb0555eae157c35c73bdd541ab7cce43acd3a0cc4fcb0fb00dc51947065c227df516062af944cc7267437c09f67bfb0dfa9b3dbf96bce2f
 WHIRLPOOL 
568651daa74fb9b71f228a25d6f8086ec26646c521f8161ae85e5524d22c42d618017252dabe77d87468a4c3280754c1279a6d2c526cd7f805177e18e8614f16
 DIST gtk-gnutella-1.1.9.tar.bz2 19766381 SHA256 
3b2e913969834a57edd93d22733646037b2a141172d5d4a240f5d6a9f56b6aff SHA512 
45ea6a5d51592879e19c61e728a60c77352e7d9b0c92ef1ac5c4fa52db122d70fdcc3f724b8da36f5dab3cea3170ba214db2552c31a156ea71e45e3a0048940c
 WHIRLPOOL 
e528c00bff42642fe3e949a3a4d1b2dfb70fbc8e408a2e90926689d30b185ec6042807841921aa013d07064a9c5fe7a3f027d67f0ccac40bf4c2588175af2192

diff --git a/net-p2p/gtk-gnutella/gtk-gnutella-1.1.10.ebuild 
b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.10.ebuild
new file mode 100644
index ..be35364
--- /dev/null
+++ b/net-p2p/gtk-gnutella/gtk-gnutella-1.1.10.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=6
+
+inherit eutils
+
+IUSE="nls dbus ssl +gtk"
+
+DESCRIPTION="A GTK+ Gnutella client"
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
+HOMEPAGE="http://gtk-gnutella.sourceforge.net/;
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~ppc ~x86 ~x86-fbsd"
+
+RDEPEND="
+   dev-libs/glib:2
+   sys-libs/zlib
+   gtk? ( >=x11-libs/gtk+-2.2.1:2 )
+   dbus? ( >=sys-apps/dbus-0.35.2 )
+   ssl? ( >=net-libs/gnutls-2.2.5 )
+   nls? ( >=sys-devel/gettext-0.11.5 )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+src_prepare() {
+   strip-linguas -i po
+
+   echo "# Gentoo-selected LINGUAS" > po/LINGUAS
+   for ling in ${LINGUAS}; do
+   echo $ling >> po/LINGUAS
+   done
+
+   default
+}
+
+src_configure() {
+   # There is no option to turn off optimization through the build.sh
+   # script.
+   sed -i -e "s/Configure -Oder/Configure -Oder -Doptimize=none/" build.sh 
|| die
+
+   # The build script does not support the equivalent --enable
+   # options so we must construct the configuration by hand.
+
+   local myconf
+
+   if ! use nls; then
+   myconf="${myconf} --disable-nls"
+   fi
+
+   if ! use dbus; then
+   myconf="${myconf} --disable-dbus"
+   fi
+
+   if ! use ssl; then
+   myconf="${myconf} --disable-gnutls"
+   fi
+
+   if use gtk; then
+   myconf="${myconf} --gtk2"
+   else
+   myconf="${myconf} --topless"
+   fi
+
+   ./build.sh \
+   --configure-only \
+   --prefix="/usr" \
+   --cc=$(tc-getCC) \
+   ${myconf}
+}
+
+src_compile() {
+   # Build system is not parallel-safe, bug 500760
+   emake -j1
+}
+
+src_install() {
+   dodir /usr/bin
+   emake INSTALL_PREFIX="${D}" install || die "Install failed"
+   dodoc AUTHORS ChangeLog README TODO
+
+   # Touch the symbols file into the future to avoid warnings from
+   # gtk-gnutella later on, since we will most likely strip the binary.
+   touch --date="next minute" "${D}/usr/lib/gtk-gnutella/gtk-gnutella.nm" 
|| die
+}



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

2016-09-03 Thread Hans de Graaff
commit: aabe530857f42f50b630aeb685fec9f880e9ed90
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sat Sep  3 07:12:43 2016 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sat Sep  3 07:12:43 2016 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aabe5308

dev-ruby/railties: add rails 5.0.0.1

Package-Manager: portage-2.2.28

 dev-ruby/railties/Manifest|  1 +
 dev-ruby/railties/railties-5.0.0.1.ebuild | 74 +++
 2 files changed, 75 insertions(+)

diff --git a/dev-ruby/railties/Manifest b/dev-ruby/railties/Manifest
index 9a8dc63..814621c 100644
--- a/dev-ruby/railties/Manifest
+++ b/dev-ruby/railties/Manifest
@@ -4,3 +4,4 @@ DIST rails-4.1.16.tgz 3730763 SHA256 
fd17ccacee3a61c17d2cfa36db36f583ed3d05eac50
 DIST rails-4.2.6.tgz 4179056 SHA256 
68bf40c27e0ee75b26c7b48fbe357f024b8d6d322a4ecf5c3427b4d6ef959fef SHA512 
040599aa1c6a09ca569f377b1f49a4404d9516599d16d6909f93ffd2e387dfb20835a2842980cc5c119aaef411985e47f55ec8907041ff633b8f98ea101a42d0
 WHIRLPOOL 
1aef2ff5790fa94f1003fa6acdcad26b7bcb6a6a02f075e41a6ba5a5b77790420afa57ea64d3192e92de595161ba3741e7e7f8be7dbac6871ba5137a53f81efe
 DIST rails-4.2.7.1.tgz 4181681 SHA256 
bfa7854f1b35e449b78db2af83fe660f17b101a487728fcfc6fb623967fb4783 SHA512 
b926b59822ddd0837a402d798a7f2c9152d9916805153d3cad081d47e692992cdf3c7aaf8af47b061e3d78f8f23357674c5a9ed6c945b082e2d8c909281f5527
 WHIRLPOOL 
da253d85bdc93c500a220b7688597dcb86c192226f5532619d8bb081440326e4dba8cc78f3bf946f16fe67e28beae0274649533aaf966177295daff7c4bf1188
 DIST rails-4.2.7.tgz 4181136 SHA256 
31005bc5892ef4d478016f4ef66c7708d0bfc440d917dac8a5e84a461fa2a980 SHA512 
89df542cac1cf31be376fff3d919860168ce5df0dcd51035411a7f82a59a6fc27d8aecdd92dc20dee59831745ecab1ff8e404756dbc85a1ec08c3f2c1721e7dc
 WHIRLPOOL 
15653098db0702b5e76e6fc4eba0f4fa6eaf73b30a23d1bf10e08cd999452608325ebba25c87b85d790ab49cf8ba216f40ee4dc25bd072cc8be89546af378542
+DIST rails-5.0.0.1.tgz 6139334 SHA256 
3cbbe71d80c2813dde0d2bfa61aea57c8e6a1a3b2a81e6b211dbf2f2a4be2add SHA512 
8e820f26543e8ad05b01a75e4e4df1adb229b5d90cfccd1b63d77a6ab25f232d24a875cd5630648e58c6598d741a3d35b2a76fd7e99a0f06971f84ee63ada56f
 WHIRLPOOL 
9aed4fab1c8ea06185de5320ed85d6d51ed0babf6143c3d70df352adea5721c3074bb80c351b395752b2d8c60f5fcb8982b086e507836b9867d6597f2d72df4c

diff --git a/dev-ruby/railties/railties-5.0.0.1.ebuild 
b/dev-ruby/railties/railties-5.0.0.1.ebuild
new file mode 100644
index ..c4f6bf8
--- /dev/null
+++ b/dev-ruby/railties/railties-5.0.0.1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2016 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+USE_RUBY="ruby22 ruby23"
+
+RUBY_FAKEGEM_TASK_TEST="test:regular"
+RUBY_FAKEGEM_TASK_DOC=""
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.rdoc"
+
+RUBY_FAKEGEM_GEMSPEC="railties.gemspec"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+inherit ruby-fakegem versionator
+
+DESCRIPTION="Tools for creating, working with, and running Rails applications"
+HOMEPAGE="https://github.com/rails/rails;
+SRC_URI="https://github.com/rails/rails/archive/v${PV}.tar.gz -> 
rails-${PV}.tgz"
+
+LICENSE="MIT"
+SLOT="$(get_version_component_range 1-2)"
+KEYWORDS="~amd64 ~arm ~amd64-linux"
+IUSE=""
+
+RUBY_S="rails-${PV}/${PN}"
+
+# The test suite has many failures, most likely due to a mismatch in
+# exact dependencies or environment specifics. Needs further
+# investigation.
+RESTRICT="test"
+
+RDEPEND+=">=app-eselect/eselect-rails-0.22"
+
+ruby_add_rdepend "
+   ~dev-ruby/activesupport-${PV}
+   ~dev-ruby/actionpack-${PV}
+   >=dev-ruby/thor-0.18.1
+   >=dev-ruby/rake-0.8.7
+   dev-ruby/method_source
+"
+
+ruby_add_bdepend "
+   test? (
+   ~dev-ruby/actionview-${PV}
+   dev-ruby/mocha:0.14
+   )"
+
+all_ruby_prepare() {
+   rm "${S}/../Gemfile" || die "Unable to remove Gemfile"
+   sed -i -e '/load_paths/d' test/abstract_unit.rb || die "Unable to 
remove load paths"
+   sed -i -e '1igem "minitest", "~>4.0"' test/abstract_unit.rb || die
+
+   # Also allow rdoc 4.x
+   sed -i -e 's/~> 3.4/>= 3.4/' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   ruby_fakegem_binwrapper rails rails-${PV}
+}
+
+pkg_postinst() {
+   elog "To select between slots of rails, use:"
+   elog "\teselect rails"
+
+   eselect rails update
+}
+
+pkg_postrm() {
+   eselect rails update
+}



  1   2   >