[gentoo-commits] repo/gentoo:master commit in: net-p2p/airdcpp-webclient/files/, net-p2p/airdcpp-webclient/

2017-06-23 Thread Michał Górny
commit: 6a014f15595971edd3b1cc957bb65c8122a8da02
Author: Louis Sautier  gmail  com>
AuthorDate: Sat Jun 10 11:40:20 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun 24 05:36:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a014f15

net-p2p/airdcpp-webclient: bump to 2.1.0, add Python 3.6, minor changes

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-p2p/airdcpp-webclient/Manifest |  1 +
 .../airdcpp-webclient-2.1.0.ebuild | 68 ++
 ...airdcpp-webclient-2.1.0-disable-automagic.patch | 40 +
 3 files changed, 109 insertions(+)

diff --git a/net-p2p/airdcpp-webclient/Manifest 
b/net-p2p/airdcpp-webclient/Manifest
index 80f155d9f18..e223aa66ff5 100644
--- a/net-p2p/airdcpp-webclient/Manifest
+++ b/net-p2p/airdcpp-webclient/Manifest
@@ -1,2 +1,3 @@
 DIST airdcpp-webclient-1.4.1.tar.gz 743631 SHA256 
9acb61366c91a7aaa03cae58e9aee28ccac05ffe9dff0ec947836fa81967f27f SHA512 
7b973251574cb5b49942efa868cef9f689fcf8d804be632ad17c445be98ab55ca9973c5fe9dce052d542006d47a7850af7d236953010c2c0e3158c54e448afe1
 WHIRLPOOL 
e43ccfddc50dbdd0ce8a3cd5b00fc4c844ed69051967d67cca9c9c72b073227d1d20ac510d34b07161c231c7c7d69b945d60872d8756a0ef2c91dfe4a843fe06
 DIST airdcpp-webclient-2.0.1.tar.gz 843348 SHA256 
312466c20b6c3125b6bf88b26f23618f67546722bb0372089537c5a88cc3460b SHA512 
2c31712816a59560f248f42b3ad3ffe5d2f76a64860bf515a537b79dda5a579bac17d5d8ba46d9d57554a0b93b9384696a299b2f2096e05c62ea4b97e42d06bc
 WHIRLPOOL 
e78d998d8398eb705599ed0f249242d460586288c5649b810606321334a7ea66bd2cb9f119789eec19038e1e3d9ce376a93e96bd18fe15bba10d7a80c97ee580
+DIST airdcpp-webclient-2.1.0.tar.gz 844435 SHA256 
a8d8a33e3974d23009359709da0bee85e8983e3ea1fe78f21a867078f93b81fa SHA512 
75d30183e772ad5d2e38a813f548e3322ca034b759200f289a834ae21b64f56102f57a13832a837e8a11324efe74a860e941a0f28a02d1f843aed92a328f
 WHIRLPOOL 
5a0a61bcf0ad1de1706786fc2080aeba0ae634386957876a20d1ca638d3fc8b724f5c866d59588f4958a6010fc192d474f1cfe7ff04d4403106ba631b800739b

diff --git a/net-p2p/airdcpp-webclient/airdcpp-webclient-2.1.0.ebuild 
b/net-p2p/airdcpp-webclient/airdcpp-webclient-2.1.0.ebuild
new file mode 100644
index 000..cee109040c4
--- /dev/null
+++ b/net-p2p/airdcpp-webclient/airdcpp-webclient-2.1.0.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{2_7,3_{4,5,6}} pypy{,3} )
+
+inherit cmake-utils python-any-r1 user
+
+DESCRIPTION="Cross-platform Direct Connect client"
+HOMEPAGE="https://airdcpp-web.github.io/;
+SRC_URI="https://github.com/airdcpp-web/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="GPL-2+"
+SLOT="0"
+IUSE="nat-pmp +tbb +webui"
+
+RDEPEND="
+   app-arch/bzip2
+   dev-cpp/websocketpp
+   dev-libs/boost:=
+   dev-libs/geoip
+   dev-libs/leveldb:=
+   dev-libs/openssl:0=[-bindist]
+   net-libs/miniupnpc:=
+   sys-libs/zlib
+   virtual/libiconv
+   nat-pmp? ( net-libs/libnatpmp:= )
+   tbb? ( dev-cpp/tbb:= )
+"
+DEPEND="
+   virtual/pkgconfig
+   ${PYTHON_DEPS}
+   ${RDEPEND}
+"
+PDEPEND="webui? ( www-apps/airdcpp-webui )"
+
+# https://github.com/airdcpp-web/airdcpp-webclient/pull/248
+PATCHES=( "${FILESDIR}/${P}-disable-automagic.patch" )
+
+pkg_setup() {
+   python-any-r1_pkg_setup
+   enewgroup airdcppd
+   enewuser airdcppd -1 -1 /var/lib/airdcppd airdcppd
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DINSTALL_WEB_UI=OFF
+   -DENABLE_NATPMP=$(usex nat-pmp)
+   -DENABLE_TBB=$(usex tbb)
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   newconfd "${FILESDIR}/airdcppd.confd" airdcppd
+   newinitd "${FILESDIR}/airdcppd.initd" airdcppd
+   keepdir /var/lib/airdcppd
+   fowners airdcppd:airdcppd /var/lib/airdcppd
+}
+
+pkg_postinst() {
+   if [[ -z "${REPLACING_VERSIONS}" ]]; then
+   elog "Run 'airdcppd --configure' to set up ports and 
authentication"
+   fi
+}

diff --git 
a/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.1.0-disable-automagic.patch
 
b/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.1.0-disable-automagic.patch
new file mode 100644
index 000..4e8360e6967
--- /dev/null
+++ 
b/net-p2p/airdcpp-webclient/files/airdcpp-webclient-2.1.0-disable-automagic.patch
@@ -0,0 +1,40 @@
+commit 8ca829a832db304769ac0d107471ab23d4ce3cce
+Author: Louis Sautier 
+Date:   Wed Jun 21 23:10:03 2017 +0200
+
+Add options to disable libnatpnp and tbb support
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 4d8a49c7..826fce3b 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -47,6 +47,10 @@ endif()
+ 
+ 
+ # OPTIONS
++OPTION(ENABLE_NATPMP "Enable support for the NAT-PMP protocol via libnatpmp"
++  ON)
++OPTION(ENABLE_TBB 

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

2017-06-23 Thread Michał Górny
commit: e40b174e86420b878286268dade72a25366492f1
Author: Louis Sautier  gmail  com>
AuthorDate: Sat Jun 10 11:40:48 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sat Jun 24 05:36:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e40b174e

www-apps/airdcpp-webui: bump to 2.1.0

Closes: https://github.com/gentoo/gentoo/pull/4899
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 www-apps/airdcpp-webui/Manifest   |  1 +
 www-apps/airdcpp-webui/airdcpp-webui-2.1.0.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/www-apps/airdcpp-webui/Manifest b/www-apps/airdcpp-webui/Manifest
index 5f8300d1991..b073eede3bb 100644
--- a/www-apps/airdcpp-webui/Manifest
+++ b/www-apps/airdcpp-webui/Manifest
@@ -1,2 +1,3 @@
 DIST airdcpp-webui-1.4.0.tgz 7210026 SHA256 
2951abfb1713936287770ea1547a07ec564383e51ecdc4a970ad7f12326d7d41 SHA512 
3774b9f9aecd70e843fb3f14318e036f9782ec6efe566bb2b77a1788718f7bd0f8b51ea2f53129afef0c38c5ed735d43109239d18eff72ea0868fe6c88056880
 WHIRLPOOL 
2c0ebb8f77204af1d06e78ac02340908372a34a6e6ac0f4b3d55b9f50759e29dbf006600113ec92b67af582e519581da53e4805f58c9ba859a8f2b880b7539b3
 DIST airdcpp-webui-2.0.3.tgz 7394410 SHA256 
5082ec0a2503222f9febdda0da080a591fe29ec69b57a279d6adfbbddf46f843 SHA512 
e9a47d8e49ae3f4c48c01babfdbcb7f1bf9abe519d17ac9d75ae0ce212ae1390eb7e4e762fef67c4aeba0bb38a2a044c55a2ae6b15aa2127776b23aa10157786
 WHIRLPOOL 
4559f654b9a6470bc1f56f74760ced1ca358e2a60da964eb2bdc68aea3cda01df79006b5e5ba536b7f3c83a6acae4a46bfd983df0a2d09b9515fe5a2c0654e6a
+DIST airdcpp-webui-2.1.0.tgz 7472713 SHA256 
b0efb4e9a0f41079ddd02ddd5b85013e517a62f14a02bbece75a42a00d67f429 SHA512 
003af5b331707967a8b63d4d93bdd2b259a6ebedfd47a08ebec04664390f53332001ab3d208e28781d840e25a38d48e2608fa7f969ddb85b10891b76fd2f4166
 WHIRLPOOL 
9c5771df300212dcf06ed5f2f4210830396c3a62656f09945da7ad64d6a4a06147d7bc21bb3821de2d5230d1ff1a27aab33295fcd935ba00e2249cd5a84415fd

diff --git a/www-apps/airdcpp-webui/airdcpp-webui-2.1.0.ebuild 
b/www-apps/airdcpp-webui/airdcpp-webui-2.1.0.ebuild
new file mode 100644
index 000..213a5408867
--- /dev/null
+++ b/www-apps/airdcpp-webui/airdcpp-webui-2.1.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Web interface for airdcpp-webclient"
+HOMEPAGE="https://airdcpp-web.github.io/;
+SRC_URI="https://registry.npmjs.org/${PN}/-/${P}.tgz;
+
+KEYWORDS="~amd64 ~x86"
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+RDEPEND="=net-p2p/airdcpp-webclient-${PV%.*}*"
+
+S="${WORKDIR}/package"
+
+src_install() {
+   insinto "/usr/share/airdcpp/web-resources"
+   doins -r dist/.
+}



[gentoo-commits] proj/musl:master commit in: sys-libs/libcxx/files/, sys-libs/libcxxabi/files/, sys-libs/libcxx/, ...

2017-06-23 Thread Jory Pratt
commit: 1d974185dbc38218f03d6a571e148a307f8e4f64
Author: Jory A. Pratt  gentoo  org>
AuthorDate: Sat Jun 24 03:58:53 2017 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Sat Jun 24 03:58:53 2017 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=1d974185

sys-libs/libcxx{,abi}: Fix build for max_align_t

 sys-libs/libcxx/Manifest   |   5 +
 .../0001-check-for-musl-libcs-max_align_t.patch|  26 +++
 .../libcxx/files/libcxx-3.9-cmake-link-flags.patch |  23 +++
 sys-libs/libcxx/libcxx-4.0.0.ebuild| 200 +
 sys-libs/libcxx/metadata.xml   |  21 +++
 sys-libs/libcxxabi/Manifest|   5 +
 .../0001-check-for-musl-libcs-max_align_t.patch|  26 +++
 sys-libs/libcxxabi/libcxxabi-4.0.0.ebuild  |  97 ++
 sys-libs/libcxxabi/metadata.xml|  10 ++
 9 files changed, 413 insertions(+)

diff --git a/sys-libs/libcxx/Manifest b/sys-libs/libcxx/Manifest
new file mode 100644
index 000..06387ac
--- /dev/null
+++ b/sys-libs/libcxx/Manifest
@@ -0,0 +1,5 @@
+AUX 0001-check-for-musl-libcs-max_align_t.patch 725 SHA256 
83810d4a065ba8554ac626e9281711bab4e68135b719a1891dd61f71a5efd1bd SHA512 
0e151920d5325f73a7735d20baf5d14bb96d20351e7169ccd5dd98617a6e46c0add8e24b359f00430d211f9c0a27d519cb2e4b6f51be8121de21ccf53981940f
 WHIRLPOOL 
bc7dfe9b65d02f45539f5d9e55fb55202fda2bb212d31963a61d145513b5087d1fff033fac15d78cc5a93daddbdab7c3043077b97d38ca2d7789fe513fc231ee
+AUX libcxx-3.9-cmake-link-flags.patch 1014 SHA256 
2a67d309f5aa802a8cb3d7fe76dff0a9c797e88a63f43fda758f9626afc8d4d0 SHA512 
5df85c66bf865900197effe3905976bf165b4c4d79b8d14352753f6baca93ab5dc26bf735fd9478a0c13df489b860d8b629240134b7e26be6233138ea95dbab3
 WHIRLPOOL 
b99590b6a0e1f4c0738d6bf95b4b379685a5ca5a32370938928656481234e22cf1acc788075a6af331406a70c8d8b0f8ad392454df72ef58181d07d76d56
+DIST libcxx-4.0.0.src.tar.xz 1450376 SHA256 
4f4d33c4ad69bf9e360eebe6b29b7b19486948b1a41decf89d4adec12473cf96 SHA512 
6dad794c00919955e14710def169cdcde8a1743431479e993c4a6a3c87c2fd9f5dbd6e17542e524981eed0783dce70384c356b74ef3c6d70598c6ff03454b1dd
 WHIRLPOOL 
2c5074087e306d100c96ae5b7175e1e1792f0317c7be6231692c80423ec716732c08293fe14fe6da5cd52d8709d6ce0a240009df24e717ab0eb9093ac7679af7
+EBUILD libcxx-4.0.0.ebuild 6360 SHA256 
0b91ce9074adf0efe985110457d9ed59b405c263c6dbbdf0b30a4a0de981bd23 SHA512 
0bd6c446a6073f3ebb6d41893d8fe45b527404590cfa38e352486ec612f010e2ca56ccb2fe19ffc23c98442464e48525e62717d0ad4928c45f9b0d0143180700
 WHIRLPOOL 
2ef81c93ef940240ebea9415f8b3a9024dc4b5932abd0446038a6548a528322fdf9c1240c186e42d81a79f7b46813106a6d9cb74b619cdf0747d2f95ed2e408d
+MISC metadata.xml 854 SHA256 
3ec547619ec9246a8013afa8185cc2ec300c77ea5f7794627765fa54e5b8f621 SHA512 
8ef3feab266e09442a42baced2d72667fa8b1290624c2c84bab7b173ead72669568847f6e995388fc1d7bc722381f60805d87b2a0cc2d04ae0c49e36bec3802a
 WHIRLPOOL 
3ef9e4095a710085257d418bbb2ad7f10bfe026d65f1684fb75a36418ccd3c314521cb24ec7afd552551a114edc958aa7d3cafab5e8b38975f697767c6adb355

diff --git a/sys-libs/libcxx/files/0001-check-for-musl-libcs-max_align_t.patch 
b/sys-libs/libcxx/files/0001-check-for-musl-libcs-max_align_t.patch
new file mode 100644
index 000..d1094c9
--- /dev/null
+++ b/sys-libs/libcxx/files/0001-check-for-musl-libcs-max_align_t.patch
@@ -0,0 +1,26 @@
+From 7a72799513088762bef49b55438f3c42acc50ab2 Mon Sep 17 00:00:00 2001
+From: 
+Date: Fri, 23 Jun 2017 22:27:04 -0500
+Subject: [PATCH] check-for-musl-libcs-max_align_t
+
+---
+ include/stddef.h | 3 ++-
+ 1 file changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/include/stddef.h b/include/stddef.h
+index 8841bbe..faf8552 100644
+--- a/include/stddef.h
 b/include/stddef.h
+@@ -53,7 +53,8 @@ using std::nullptr_t;
+ }
+ 
+ // Re-use the compiler's  max_align_t where possible.
+-#if !defined(__CLANG_MAX_ALIGN_T_DEFINED) && !defined(_GCC_MAX_ALIGN_T)
++#if !defined(__CLANG_MAX_ALIGN_T_DEFINED) && !defined(_GCC_MAX_ALIGN_T) && \
++!defined(__DEFINED_max_align_t)
+ typedef long double max_align_t;
+ #endif
+ 
+-- 
+2.13.1
+

diff --git a/sys-libs/libcxx/files/libcxx-3.9-cmake-link-flags.patch 
b/sys-libs/libcxx/files/libcxx-3.9-cmake-link-flags.patch
new file mode 100644
index 000..bef5bc1
--- /dev/null
+++ b/sys-libs/libcxx/files/libcxx-3.9-cmake-link-flags.patch
@@ -0,0 +1,23 @@
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index d618e83..0e76525 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -293,6 +293,18 @@ remove_flags(-DNDEBUG -UNDEBUG -D_DEBUG
+ # so they don't get transformed into -Wno and -errors respectivly.
+ remove_flags(-Wno-pedantic -pedantic-errors -pedantic)
+ 
++# FIXME: this is cribbed from HandleLLVMOptions.cmake.
++if(LIBCXX_STANDALONE_BUILD)
++  # Pass -Wl,-z,defs. This makes sure all symbols are defined. Otherwise a DSO
++  # build might work on ELF but fail on MachO/COFF.
++  if(NOT (${CMAKE_SYSTEM_NAME} MATCHES "Darwin" OR WIN32 OR CYGWIN OR
++  

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

2017-06-23 Thread Devan Franchini
commit: 751d08074a9bced1d23e34ebb50b7ebdc70d60c2
Author: Devan Franchini  gentoo  org>
AuthorDate: Sat Jun 24 03:57:31 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Sat Jun 24 03:59:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=751d0807

app-admin/webapp-config: Removes configparser blocker from 1.55

With the addition of a fix in commit dfacbd61 in webapp-config's
repo we no longer need to block on this package from installation

X-Gentoo-Bug: 622504
X-Gentoo-Bug-URL: https://bugs.gentoo.org/622504

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-admin/webapp-config/webapp-config-1.55.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-admin/webapp-config/webapp-config-1.55.ebuild 
b/app-admin/webapp-config/webapp-config-1.55.ebuild
index d1f94e21cf1..0082013b860 100644
--- a/app-admin/webapp-config/webapp-config-1.55.ebuild
+++ b/app-admin/webapp-config/webapp-config-1.55.ebuild
@@ -18,7 +18,6 @@ SLOT="0"
 IUSE="+portage"
 
 DEPEND="app-text/xmlto
-   !dev-python/configparser
sys-apps/gentoo-functions"
 RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
 



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

2017-06-23 Thread Devan Franchini
commit: 7922d766deb16875368fd03e344d49923e981754
Author: Devan Franchini  gentoo  org>
AuthorDate: Sat Jun 24 03:49:38 2017 +
Commit: Devan Franchini  gentoo  org>
CommitDate: Sat Jun 24 03:59:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7922d766

app-admin/webapp-config: Removes configparser blocker from 

This is no longer necessary as the reason for doing so was resolved
by commit dfacbd61 in webapp-config's git repo

X-Gentoo-Bug: 622504
X-Gentoo-Bug-URL: https://bugs.gentoo.org/622504

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-admin/webapp-config/webapp-config-.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-admin/webapp-config/webapp-config-.ebuild 
b/app-admin/webapp-config/webapp-config-.ebuild
index 92e931ab791..409c9b0d9b1 100644
--- a/app-admin/webapp-config/webapp-config-.ebuild
+++ b/app-admin/webapp-config/webapp-config-.ebuild
@@ -25,7 +25,6 @@ SLOT="0"
 IUSE="+portage"
 
 DEPEND="app-text/xmlto
-   !dev-python/configparser
sys-apps/gentoo-functions"
 RDEPEND="portage? ( sys-apps/portage[${PYTHON_USEDEP}] )"
 



[gentoo-commits] repo/gentoo:master commit in: kde-misc/plasma-applet-weather-widget/

2017-06-23 Thread Michael Palimaka
commit: 720d1f5fc165b73a1e79b5fc432686cefbd877ca
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 03:52:29 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 03:52:56 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=720d1f5f

kde-misc/plasma-applet-weather-widget: version bump 1.6.9

Gentoo-bug: 622194
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 kde-misc/plasma-applet-weather-widget/Manifest |  1 +
 .../plasma-applet-weather-widget-1.6.9.ebuild  | 28 ++
 2 files changed, 29 insertions(+)

diff --git a/kde-misc/plasma-applet-weather-widget/Manifest 
b/kde-misc/plasma-applet-weather-widget/Manifest
index cfb5970d24b..f81fc1078fa 100644
--- a/kde-misc/plasma-applet-weather-widget/Manifest
+++ b/kde-misc/plasma-applet-weather-widget/Manifest
@@ -1 +1,2 @@
 DIST plasma-applet-weather-widget-1.6.8.tar.gz 104894 SHA256 
6632643ea20b090556ff916d4f17094f89c715bff89084189f72c523f8d38603 SHA512 
4fcdcf40fd93e1ee0a86b8588e7546dd934ba2e1c5d4adda99464fff8d1134be687b09e5e4a7f51d36e9f1206238e35db815a77707ddb80c78b8d563a01dfbee
 WHIRLPOOL 
84371868174d708aee942995eaf09f3a04051a42ba63f1a32878cffdd7b50f57f230eaa18026886097e717ed204b6278ff2fe41b1debc9a8ac8ffcf2d8b886c9
+DIST plasma-applet-weather-widget-1.6.9.tar.gz 106942 SHA256 
9447a01adf3589006efea647daf3cc5eac74362dcd6475738164ccaac3a8ad98 SHA512 
fd8a99fc8c78b90f1553547b3733aa337acb5e39efd242426ae91847694aa1163363f5415e6fa3d83a2bcd90493c4ef24be721d6f915c9ed8b1fb6503699f5d1
 WHIRLPOOL 
5c4e1752d519be1f3b818dd8e8e888006c82bc5f17f2cddfd93720de25bc5d475c31b590740053f41d8991ca42026bf8b42fd74b51ff600b5c519a9818312542

diff --git 
a/kde-misc/plasma-applet-weather-widget/plasma-applet-weather-widget-1.6.9.ebuild
 
b/kde-misc/plasma-applet-weather-widget/plasma-applet-weather-widget-1.6.9.ebuild
new file mode 100644
index 000..88e387288f6
--- /dev/null
+++ 
b/kde-misc/plasma-applet-weather-widget/plasma-applet-weather-widget-1.6.9.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit kde5
+
+DESCRIPTION="Plasma 5 applet for weather forecasts"
+HOMEPAGE="https://store.kde.org/content/show.php/Weather+Widget?content=169572
+https://github.com/kotelnik/plasma-applet-weather-widget;
+
+if [[ ${KDE_BUILD_TYPE} = live ]] ; then
+   EGIT_REPO_URI="https://github.com/kotelnik/${PN}.git;
+else
+   SRC_URI="https://github.com/kotelnik/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+fi
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND="
+   $(add_frameworks_dep plasma)
+   $(add_qt_dep qtdeclarative 'xml')
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( README.md )



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

2017-06-23 Thread Michael Palimaka
commit: 8a65a36fd6655f65e3bd0926495964315fbe51b1
Author: Chris Mayo  gmail  com>
AuthorDate: Tue Jun 20 18:16:33 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 03:47:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a65a36f

app-text/kchmviewer: Fix icon and desktop entry not installed

Add missing eutils eclass. Also:
- Update HOMEPAGE
- Remove sed of desktop entry, trailing semi-colons now optional
- Use xdg-utils instead of fdo-mime

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/kchmviewer/kchmviewer-7.7-r1.ebuild | 53 
 1 file changed, 53 insertions(+)

diff --git a/app-text/kchmviewer/kchmviewer-7.7-r1.ebuild 
b/app-text/kchmviewer/kchmviewer-7.7-r1.ebuild
new file mode 100644
index 000..571fac8797d
--- /dev/null
+++ b/app-text/kchmviewer/kchmviewer-7.7-r1.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit eutils qmake-utils xdg-utils
+
+DESCRIPTION="Feature rich chm file viewer, based on Qt"
+HOMEPAGE="https://www.ulduzsoft.com/kchmviewer/;
+SRC_URI="mirror://sourceforge/kchmviewer/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-libs/chmlib
+   dev-libs/libzip:=
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtwebkit:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+"
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${P}-force-qtwebkit.patch"
+   "${FILESDIR}/${P}-underlinking.patch"
+)
+
+src_configure() {
+   eqmake5
+}
+
+src_install() {
+   dodoc ChangeLog DBUS-bindings FAQ README
+   doicon packages/kchmviewer.png
+   dobin bin/kchmviewer
+   domenu packages/kchmviewer.desktop
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



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

2017-06-23 Thread Michael Palimaka
commit: 464f2c85dd5141d55c3aab25d5dd0ef262738d57
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 03:21:36 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 03:21:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=464f2c85

app-text/ansifilter: version bump 2.5

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-text/ansifilter/Manifest  |  1 +
 app-text/ansifilter/ansifilter-2.5.ebuild | 57 +++
 2 files changed, 58 insertions(+)

diff --git a/app-text/ansifilter/Manifest b/app-text/ansifilter/Manifest
index 1fddd883caa..15f162212ce 100644
--- a/app-text/ansifilter/Manifest
+++ b/app-text/ansifilter/Manifest
@@ -1 +1,2 @@
 DIST ansifilter-2.4.tar.bz2 114180 SHA256 
c57cb878afa7191c7b7db3c086a344b4234df814aed632596619a4bda5941d48 SHA512 
2eaecd7dc6027c6976775d2a817b8fde0221fb1cce967bd4f6e272230b64e0bb77ed0cbddbc41533aa6087897b94903efa9633dffdd76df57ba029f6776ae6d2
 WHIRLPOOL 
df5f96802c4b988ee3c3326dc0a6ecc2ab594fe766c6e5118d1695a05adf3969d51b0a89b1bfbc0b94cb84325131dc39622334c549a47e0ffa76c0e3fca7a997
+DIST ansifilter-2.5.tar.bz2 435332 SHA256 
30d05ccfa9be98b0328ee29fe39473e55047f1d32a9a2460d3d4d1ff2475f0e2 SHA512 
2fca95a5a47e72f9348beef8b09a7fd995f0b99e0d6605cf7694f8fd1ddba40c64e5c30b9134f55319c902d45011605ba30184c0205d41573ac77c3cd98debe7
 WHIRLPOOL 
5c3c3cd8f1cef99ad0d4ea5ce7635301776cb5ce14442d74a1949894c24becb4d3727344f7b1cf2e137bc8abfc8469c23d13e0055529c04f9aafeb991e7cf7f6

diff --git a/app-text/ansifilter/ansifilter-2.5.ebuild 
b/app-text/ansifilter/ansifilter-2.5.ebuild
new file mode 100644
index 000..96216b32abe
--- /dev/null
+++ b/app-text/ansifilter/ansifilter-2.5.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit toolchain-funcs qmake-utils
+
+DESCRIPTION="Handles text files containing ANSI terminal escape codes"
+HOMEPAGE="http://www.andre-simon.de/;
+SRC_URI="http://www.andre-simon.de/zip/${P}.tar.bz2;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="qt5"
+
+RDEPEND="
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   )"
+DEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+
+   # bug 431452
+   rm src/qt-gui/moc_mydialog.cpp || die
+}
+
+src_configure() {
+   if use qt5 ; then
+   pushd src/qt-gui > /dev/null || die
+   eqmake5
+   popd > /dev/null || die
+   fi
+}
+
+src_compile() {
+   emake -f makefile CC="$(tc-getCXX)" CFLAGS="${CFLAGS} -c -std=c++11" 
LDFLAGS="${LDFLAGS}"
+
+   if use qt5 ; then
+   pushd src/qt-gui > /dev/null || die
+   emake
+   popd > /dev/null || die
+   fi
+}
+
+src_install() {
+   dobin src/${PN}
+   use qt5 && dobin src/qt-gui/${PN}-gui
+
+   gunzip man/${PN}.1.gz
+   doman man/${PN}.1
+   einstalldocs
+}



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

2017-06-23 Thread Michael Palimaka
commit: b098f0bdc3e491e2e599fd94e660c001b5e13cc9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 03:15:18 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 03:15:22 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b098f0bd

media-plugins/kipi-plugins: version bump 5.6.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-plugins/kipi-plugins/Manifest|  1 +
 .../kipi-plugins/kipi-plugins-5.6.0.ebuild | 83 ++
 2 files changed, 84 insertions(+)

diff --git a/media-plugins/kipi-plugins/Manifest 
b/media-plugins/kipi-plugins/Manifest
index 0ccca3cbdd0..085d5348886 100644
--- a/media-plugins/kipi-plugins/Manifest
+++ b/media-plugins/kipi-plugins/Manifest
@@ -1 +1,2 @@
 DIST digikam-5.5.0.tar.xz 129499600 SHA256 
df9cbf1b8dbfb9235cebc97e77c02fcb1498c5a905c7fd3b9fb42fd7accc6252 SHA512 
3c64774916d4804d932009ba3753d387ecf31e9e3d435c580497d3badb6cc3e57ab5ef1a2334a23379d0987d96dd107be4f01adbb63039f4510aa94ac6d71344
 WHIRLPOOL 
e67b444975ad37e939b2f62bba949bcafb41eee2975470daa02e4ffdd62c6c792b6656edf4811daead52fdc1bf064951fbec7b687192e5d5ee542d5d706140be
+DIST digikam-5.6.0.tar.xz 166913492 SHA256 
65bdd3f15668e314b852d523a0bf95da32450f31fcfda60da62e57d4622a663c SHA512 
015024aaff6193ca29072f7340d62982b50467d84b69bac38f60319eaf771ce2a570a514e62fefc54f194b0c27df0c36980b1eed3433023a2d8290f24cc8905d
 WHIRLPOOL 
a8af3ac8e71cc2205027b9151cba9e57a266d590e7f26bd21f691cabd9b07212043d116d4f95fb2680e3e03a6884a58dc553bb3339fc59b3e9fc927432d0272f

diff --git a/media-plugins/kipi-plugins/kipi-plugins-5.6.0.ebuild 
b/media-plugins/kipi-plugins/kipi-plugins-5.6.0.ebuild
new file mode 100644
index 000..5bcd38bc4ad
--- /dev/null
+++ b/media-plugins/kipi-plugins/kipi-plugins-5.6.0.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+KDE_TEST="true"
+inherit kde5
+
+DESCRIPTION="Plugins for the KDE Image Plugin Interface"
+HOMEPAGE="https://www.digikam.org/;
+
+LICENSE="GPL-2+"
+KEYWORDS="~amd64 ~x86"
+IUSE="flashexport mediawiki +remotestorage vkontakte"
+
+if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   MY_PV="${PV/_/-}"
+   MY_P="digikam-${MY_PV}"
+
+   if [[ ${PV} =~ beta[0-9]$ ]]; then
+   SRC_BRANCH="unstable"
+   else
+   SRC_BRANCH="stable"
+   fi
+
+   SRC_URI="mirror://kde/${SRC_BRANCH}/digikam/${MY_P}.tar.xz"
+
+   S="${WORKDIR}/${MY_P}/extra/${PN}"
+fi
+
+COMMON_DEPEND="
+   $(add_frameworks_dep kcompletion)
+   $(add_frameworks_dep kconfig)
+   $(add_frameworks_dep kconfigwidgets)
+   $(add_frameworks_dep kcoreaddons)
+   $(add_frameworks_dep ki18n)
+   $(add_frameworks_dep kwindowsystem)
+   $(add_frameworks_dep kxmlgui)
+   $(add_kdeapps_dep libkipi '' '' '5=')
+   $(add_qt_dep qtgui)
+   $(add_qt_dep qtnetwork)
+   $(add_qt_dep qtprintsupport)
+   $(add_qt_dep qtsvg)
+   $(add_qt_dep qtwidgets)
+   $(add_qt_dep qtxml)
+   $(add_qt_dep qtxmlpatterns)
+   flashexport? ( $(add_frameworks_dep karchive) )
+   mediawiki? ( net-libs/libmediawiki:5 )
+   remotestorage? ( $(add_frameworks_dep kio) )
+   vkontakte? ( net-libs/libkvkontakte:5 )
+"
+DEPEND="${COMMON_DEPEND}
+   $(add_qt_dep qtconcurrent)
+   sys-devel/gettext
+"
+RDEPEND="${COMMON_DEPEND}
+   !media-plugins/kipi-plugins:4
+"
+
+src_prepare() {
+   if [[ ${KDE_BUILD_TYPE} = release ]]; then
+   if [[ ${SRC_BRANCH} = stable ]]; then
+   # prepare the translations
+   mv "${WORKDIR}/${MY_P}/po" po || die
+   find po -name "*.po" -and -not -name "kipiplugin*.po" 
-delete || die
+   echo "find_package(Gettext REQUIRED)" >> CMakeLists.txt 
|| die
+   echo "add_subdirectory( po )" >> CMakeLists.txt || die
+   fi
+   fi
+
+   kde5_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   $(cmake-utils_use_find_package flashexport KF5Archive)
+   $(cmake-utils_use_find_package mediawiki KF5MediaWiki)
+   -DENABLE_KIO=$(usex remotestorage)
+   $(cmake-utils_use_find_package vkontakte KF5Vkontakte)
+   )
+
+   kde5_src_configure
+}



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

2017-06-23 Thread Michael Palimaka
commit: f4e491881ba416f8fd5b685732e702c1b1a89cae
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 03:06:45 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 03:06:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4e49188

profiles/hardened: remove obsolete package.use.stable.mask

Gentoo-bug: 605678

 profiles/hardened/linux/amd64/package.use.stable.mask |  6 --
 profiles/hardened/linux/x86/package.use.stable.mask   | 10 --
 2 files changed, 16 deletions(-)

diff --git a/profiles/hardened/linux/amd64/package.use.stable.mask 
b/profiles/hardened/linux/amd64/package.use.stable.mask
deleted file mode 100644
index 49936e081f8..000
--- a/profiles/hardened/linux/amd64/package.use.stable.mask
+++ /dev/null
@@ -1,6 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Tom Wijsman  (06 Feb 2014)
-# [QA] Masked jit USE flag on www-apps/cgit as dev-lang/luajit is not stable.
-www-apps/cgit jit

diff --git a/profiles/hardened/linux/x86/package.use.stable.mask 
b/profiles/hardened/linux/x86/package.use.stable.mask
deleted file mode 100644
index 94fb9171a4d..000
--- a/profiles/hardened/linux/x86/package.use.stable.mask
+++ /dev/null
@@ -1,10 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-# Tom Wijsman  (06 Feb 2014)
-# [QA] Masked jit USE flag on www-apps/cgit as dev-lang/luajit is not stable.
-www-apps/cgit jit
\ No newline at end of file



[gentoo-commits] proj/qt:master commit in: dev-qt/qtwebsockets/, dev-qt/qtwebchannel/, dev-qt/qtlocation/, ...

2017-06-23 Thread Michael Palimaka
commit: 4774ee5fd73ea1b51be010cd8615675742c8ecda
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:35:40 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:39:25 2017 +
URL:https://gitweb.gentoo.org/proj/qt.git/commit/?id=4774ee5f

dev-qt: sync ~arm64 keywords from main tree

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-qt/qthelp/qthelp-5.7..ebuild   | 2 +-
 dev-qt/qthelp/qthelp-5.9.0.ebuild  | 2 +-
 dev-qt/qthelp/qthelp-5.9..ebuild   | 2 +-
 dev-qt/qthelp/qthelp-5..ebuild | 2 +-
 dev-qt/qtlocation/qtlocation-5.7..ebuild   | 2 +-
 dev-qt/qtlocation/qtlocation-5.9.0.ebuild  | 2 +-
 dev-qt/qtlocation/qtlocation-5.9..ebuild   | 2 +-
 dev-qt/qtlocation/qtlocation-5..ebuild | 2 +-
 dev-qt/qtmultimedia/qtmultimedia-5.7..ebuild   | 2 +-
 dev-qt/qtmultimedia/qtmultimedia-5.9.0.ebuild  | 2 +-
 dev-qt/qtmultimedia/qtmultimedia-5.9..ebuild   | 2 +-
 dev-qt/qtmultimedia/qtmultimedia-5..ebuild | 2 +-
 dev-qt/qtpositioning/qtpositioning-5.7..ebuild | 2 +-
 dev-qt/qtpositioning/qtpositioning-5.9.0.ebuild| 2 +-
 dev-qt/qtpositioning/qtpositioning-5.9..ebuild | 2 +-
 dev-qt/qtpositioning/qtpositioning-5..ebuild   | 2 +-
 dev-qt/qtsensors/qtsensors-5.7..ebuild | 2 +-
 dev-qt/qtsensors/qtsensors-5.9.0.ebuild| 2 +-
 dev-qt/qtsensors/qtsensors-5.9..ebuild | 2 +-
 dev-qt/qtsensors/qtsensors-5..ebuild   | 2 +-
 dev-qt/qtserialport/qtserialport-5.7..ebuild   | 2 +-
 dev-qt/qtserialport/qtserialport-5.9.0.ebuild  | 2 +-
 dev-qt/qtserialport/qtserialport-5.9..ebuild   | 2 +-
 dev-qt/qtserialport/qtserialport-5..ebuild | 2 +-
 dev-qt/qtwebchannel/qtwebchannel-5.7..ebuild   | 2 +-
 dev-qt/qtwebchannel/qtwebchannel-5.9.0.ebuild  | 2 +-
 dev-qt/qtwebchannel/qtwebchannel-5.9..ebuild   | 2 +-
 dev-qt/qtwebchannel/qtwebchannel-5..ebuild | 2 +-
 dev-qt/qtwebsockets/qtwebsockets-5.7..ebuild   | 2 +-
 dev-qt/qtwebsockets/qtwebsockets-5.9.0.ebuild  | 2 +-
 dev-qt/qtwebsockets/qtwebsockets-5.9..ebuild   | 2 +-
 dev-qt/qtwebsockets/qtwebsockets-5..ebuild | 2 +-
 32 files changed, 32 insertions(+), 32 deletions(-)

diff --git a/dev-qt/qthelp/qthelp-5.7..ebuild 
b/dev-qt/qthelp/qthelp-5.7..ebuild
index ae741896..71c175ac 100644
--- a/dev-qt/qthelp/qthelp-5.7..ebuild
+++ b/dev-qt/qthelp/qthelp-5.7..ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating online documentation into applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
 fi
 
 IUSE=""

diff --git a/dev-qt/qthelp/qthelp-5.9.0.ebuild 
b/dev-qt/qthelp/qthelp-5.9.0.ebuild
index d9c3f9c4..05bca269 100644
--- a/dev-qt/qthelp/qthelp-5.9.0.ebuild
+++ b/dev-qt/qthelp/qthelp-5.9.0.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating online documentation into applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
 fi
 
 IUSE=""

diff --git a/dev-qt/qthelp/qthelp-5.9..ebuild 
b/dev-qt/qthelp/qthelp-5.9..ebuild
index d9c3f9c4..05bca269 100644
--- a/dev-qt/qthelp/qthelp-5.9..ebuild
+++ b/dev-qt/qthelp/qthelp-5.9..ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating online documentation into applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
 fi
 
 IUSE=""

diff --git a/dev-qt/qthelp/qthelp-5..ebuild 
b/dev-qt/qthelp/qthelp-5..ebuild
index d9c3f9c4..05bca269 100644
--- a/dev-qt/qthelp/qthelp-5..ebuild
+++ b/dev-qt/qthelp/qthelp-5..ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating online documentation into applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc64 ~x86"
 fi
 
 IUSE=""

diff --git a/dev-qt/qtlocation/qtlocation-5.7..ebuild 
b/dev-qt/qtlocation/qtlocation-5.7..ebuild
index 3b8070ce..dd57a4c7 100644
--- a/dev-qt/qtlocation/qtlocation-5.7..ebuild
+++ b/dev-qt/qtlocation/qtlocation-5.7..ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="The Location module for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 fi
 
 IUSE=""

diff --git a/dev-qt/qtlocation/qtlocation-5.9.0.ebuild 
b/dev-qt/qtlocation/qtlocation-5.9.0.ebuild
index 1dd44a45..edebcf25 100644
--- a/dev-qt/qtlocation/qtlocation-5.9.0.ebuild
+++ b/dev-qt/qtlocation/qtlocation-5.9.0.ebuild
@@ -7,7 +7,7 @@ inherit 

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

2017-06-23 Thread Michael Palimaka
commit: 7f211f960a4b79ce23572e2325c758b788bfdc45
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:28:02 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:29:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f211f96

dev-qt/qtwebkit: die if nothing is built

Gentoo-bug: 572056
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-qt/qtwebkit/qtwebkit-5.7.1.ebuild | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/dev-qt/qtwebkit/qtwebkit-5.7.1.ebuild 
b/dev-qt/qtwebkit/qtwebkit-5.7.1.ebuild
index a46c5c9563f..8b06b94b888 100644
--- a/dev-qt/qtwebkit/qtwebkit-5.7.1.ebuild
+++ b/dev-qt/qtwebkit/qtwebkit-5.7.1.ebuild
@@ -107,3 +107,13 @@ src_prepare() {
 
qt5-build_src_prepare
 }
+
+src_install() {
+   qt5-build_src_install
+
+   # bug 572056
+   if [[ ! -f ${D%/}${QT5_LIBDIR}/libQt5WebKit.so ]]; then
+   eerror "${CATEGORY}/${PF} could not build due to a broken ruby 
environment."
+   die 'Check "eselect ruby" and ensure you have a working ruby in 
your $PATH'
+   fi
+}



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

2017-06-23 Thread Michael Palimaka
commit: 6f0d04eababcfbe4d723332b492a0404fb1591f0
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:29:30 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:29:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f0d04ea

dev-qt/qtwebengine: die if nothing is built

Gentoo-bug: 601472
Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild | 5 +
 1 file changed, 5 insertions(+)

diff --git a/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild
index 0542aa911b0..743f5327132 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.7.1-r1.ebuild
@@ -113,5 +113,10 @@ src_configure() {
 src_install() {
qt5-build_src_install
 
+   # bug 601472
+   if [[ ! -f ${D%/}${QT5_LIBDIR}/libQt5WebEngine.so ]]; then
+   die "${CATEGORY}/${PF} failed to build anything. Please report 
to https://bugs.gentoo.org/;
+   fi
+
pax-mark m "${D%/}${QT5_LIBEXECDIR}"/QtWebEngineProcess
 }



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdlabelgen/

2017-06-23 Thread Michael Palimaka
commit: 98c8e8f63a5d21425e8b75a52cd7471b2f8b4588
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:15:38 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:16:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98c8e8f6

app-cdr/cdlabelgen: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-cdr/cdlabelgen/Manifest|  1 -
 app-cdr/cdlabelgen/cdlabelgen-4.1.0.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/app-cdr/cdlabelgen/Manifest b/app-cdr/cdlabelgen/Manifest
index a60a2164ecc..57e9b48b32f 100644
--- a/app-cdr/cdlabelgen/Manifest
+++ b/app-cdr/cdlabelgen/Manifest
@@ -1,2 +1 @@
-DIST cdlabelgen-4.1.0.tgz 193423 SHA256 
d3217af8eccb8e94863389d321c4901e7cf7dd5fadf263bde9cb8078870ddc3b SHA512 
12dbef9df24d6eb060fe0fca3d24cd91bf2ae0fe4f2e68d1e7a78b5980ae0111dd087ec23b6b2ff8adeff9bb49c0a41284dcb99505d6f25b96b0e718b437b1b9
 WHIRLPOOL 
26a1614cb0104dcd78ae6f75810eaa6f83eec22f6848470849e1d0e988c5d919715a42208b05ee47dfeac2ffdbe37631637ad96aef2e845aa25817864c4c3570
 DIST cdlabelgen-4.3.0.tgz 209771 SHA256 
94202a33bd6b19cc3c1cbf6a8e1779d7c72d8b3b48b96267f97d61ced4e1753f SHA512 
e9528dc1cfead1f3a90b2109346ac1e5305875e2a10dc3196a1caa94fb6e30daeff4bdac5eb43cb6710fdf36fc98349fdeaa225eaa6db3825bf9fd33cc9ab8cf
 WHIRLPOOL 
dda2e09613e192495139c455e3e2811cf5847d361c9190f3b9e2ad7503c80e3e44ab37bb382cf2836a849315495310a6080a419fca75e06d49a13f3f9029f32d

diff --git a/app-cdr/cdlabelgen/cdlabelgen-4.1.0.ebuild 
b/app-cdr/cdlabelgen/cdlabelgen-4.1.0.ebuild
deleted file mode 100644
index 03d6cb75eda..000
--- a/app-cdr/cdlabelgen/cdlabelgen-4.1.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2009 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=2
-inherit eutils
-
-DESCRIPTION="CD cover, tray card and envelope generator"
-HOMEPAGE="http://www.aczoom.com/tools/cdinsert;
-SRC_URI="http://www.aczoom.com/pub/tools/${P}.tgz;
-
-LICENSE="aczoom"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-RDEPEND="dev-lang/perl"
-DEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}"/4.0.0-create-MAN_DIR.diff
-}
-
-src_install() {
-   emake BASE_DIR="${D}"/usr install || die "emake install failed"
-   dodoc cdinsert.pl ChangeLog INSTALL.WEB
-   dohtml *.html
-}



[gentoo-commits] repo/gentoo:master commit in: net-libs/opal/, net-libs/opal/files/

2017-06-23 Thread Michael Palimaka
commit: 9defe9ca14947c28bfc587ce18281beeb858f6e9
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:13:22 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:16:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9defe9ca

net-libs/opal: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 .../opal/files/opal-3.10.11-libav9-gentoo.patch| 262 -
 .../files/opal-3.10.9-avoid_cflags_mixup.patch | 131 ---
 net-libs/opal/files/opal-3.10.9-ffmpeg.patch   | 189 ---
 net-libs/opal/metadata.xml |   1 -
 net-libs/opal/opal-3.10.11.ebuild  | 252 
 5 files changed, 835 deletions(-)

diff --git a/net-libs/opal/files/opal-3.10.11-libav9-gentoo.patch 
b/net-libs/opal/files/opal-3.10.11-libav9-gentoo.patch
deleted file mode 100644
index 6288866262d..000
--- a/net-libs/opal/files/opal-3.10.11-libav9-gentoo.patch
+++ /dev/null
@@ -1,262 +0,0 @@
 plugins/video/common/dyna.cxx
-+++ plugins/video/common/dyna.cxx
-@@ -37,6 +37,7 @@
-  * Craig Southeren (cra...@postincrement.com)
-  * Matthias Schneider (ma30002...@yahoo.de)
-  */
-+#include 
- #include "dyna.h"
- 
- bool DynaLink::Open(const char *name)
-@@ -210,14 +211,14 @@
- #endif
- 
- 
--FFMPEGLibrary::FFMPEGLibrary(CodecID codec)
-+FFMPEGLibrary::FFMPEGLibrary(AVCodecID codec)
- {
-   m_codec = codec;
--  if (m_codec==CODEC_ID_H264)
-+  if (m_codec==AV_CODEC_ID_H264)
-   snprintf( m_codecString, sizeof(m_codecString), "H264");
--  if (m_codec==CODEC_ID_H263P)
-+  if (m_codec==AV_CODEC_ID_H263P)
-   snprintf( m_codecString, sizeof(m_codecString), "H263+");
--  if (m_codec==CODEC_ID_MPEG4)
-+  if (m_codec==AV_CODEC_ID_MPEG4)
-   snprintf( m_codecString, sizeof(m_codecString), "MPEG4");
-   m_isLoadedOK = false;
- }
-@@ -348,12 +349,12 @@
-   return true;
- }
- 
--AVCodec *FFMPEGLibrary::AvcodecFindEncoder(enum CodecID id)
-+AVCodec *FFMPEGLibrary::AvcodecFindEncoder(enum AVCodecID id)
- {
-   return Favcodec_find_encoder(id);
- }
- 
--AVCodec *FFMPEGLibrary::AvcodecFindDecoder(enum CodecID id)
-+AVCodec *FFMPEGLibrary::AvcodecFindDecoder(enum AVCodecID id)
- {
-   WaitAndSignal m(processLock);
- 
 plugins/video/common/dyna.h
-+++ plugins/video/common/dyna.h
-@@ -88,13 +88,13 @@
- class FFMPEGLibrary 
- {
-   public:
--FFMPEGLibrary(CodecID codec);
-+FFMPEGLibrary(AVCodecID codec);
- ~FFMPEGLibrary();
- 
- bool Load();
- 
--AVCodec *AvcodecFindEncoder(enum CodecID id);
--AVCodec *AvcodecFindDecoder(enum CodecID id);
-+AVCodec *AvcodecFindEncoder(enum AVCodecID id);
-+AVCodec *AvcodecFindDecoder(enum AVCodecID id);
- AVCodecContext *AvcodecAllocContext(void);
- AVFrame *AvcodecAllocFrame(void);
- int AvcodecOpen(AVCodecContext *ctx, AVCodec *codec);
-@@ -117,15 +117,15 @@
- DynaLink m_libAvcodec;
- DynaLink m_libAvutil;
- 
--CodecID m_codec;
-+AVCodecID m_codec;
- char m_codecString[32];
- 
- void (*Favcodec_init)(void);
- void (*Fav_init_packet)(AVPacket *pkt);
- 
- void (*Favcodec_register_all)(void);
--AVCodec *(*Favcodec_find_encoder)(enum CodecID id);
--AVCodec *(*Favcodec_find_decoder)(enum CodecID id);
-+AVCodec *(*Favcodec_find_encoder)(enum AVCodecID id);
-+AVCodec *(*Favcodec_find_decoder)(enum AVCodecID id);
- AVCodecContext *(*Favcodec_alloc_context)(void);
- AVFrame *(*Favcodec_alloc_frame)(void);
- int (*Favcodec_open)(AVCodecContext *ctx, AVCodec *codec);
 plugins/video/H.263-1998/h263-1998.cxx
-+++ plugins/video/H.263-1998/h263-1998.cxx
-@@ -43,6 +43,12 @@
-  * $Date: 2014/04/29 09:02:06 $
-  */
- 
-+#define CODEC_FLAG_H263P_UMV  0x0200
-+#define CODEC_FLAG_H263P_SLICE_STRUCT 0x1000
-+#define CODEC_FLAG_H263P_AIV  0x0008
-+#define CODEC_FLAG_OBMC   0x0001
-+#define FF_I_TYPE  1
-+
- #ifndef PLUGIN_CODEC_DLL_EXPORTS
- #include "plugin-config.h"
- #endif
-@@ -94,7 +100,7 @@
-   { CIF16_WIDTH, CIF16_HEIGHT, PLUGINCODEC_CIF16_MPI },
- };
- 
--static FFMPEGLibrary FFMPEGLibraryInstance(CODEC_ID_H263P);
-+static FFMPEGLibrary FFMPEGLibraryInstance(AV_CODEC_ID_H263P);
- 
- 
- /
-@@ -203,7 +209,7 @@
-   PTRACE(4, m_prefix, "Encoder closed");
- }
- 
--bool H263_Base_EncoderContext::Init(CodecID codecId)
-+bool H263_Base_EncoderContext::Init(AVCodecID codecId)
- {
-   PTRACE(5, m_prefix, "Opening encoder");
- 
-@@ -616,7 +622,7 @@
- 
- bool H263_RFC2190_EncoderContext::Init()
- {
--  if (!H263_Base_EncoderContext::Init(CODEC_ID_H263))
-+  if (!H263_Base_EncoderContext::Init(AV_CODEC_ID_H263))
- return false;
- 
- #if LIBAVCODEC_RTP_MODE
-@@ -661,7 +667,7 @@
- 
- bool H263_RFC2429_EncoderContext::Init()
- {
--  return H263_Base_EncoderContext::Init(CODEC_ID_H263P);
-+  return 

[gentoo-commits] repo/gentoo:master commit in: net-p2p/amule/files/, net-p2p/amule/

2017-06-23 Thread Michael Palimaka
commit: 9e4f0cd8ae716aebec9ccb92994bb79eb65221e1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:14:31 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:16:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e4f0cd8

net-p2p/amule: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-p2p/amule/Manifest  |   1 -
 net-p2p/amule/amule-2.3.1.ebuild| 106 
 net-p2p/amule/files/amule-2.3.1-gcc47.patch |  21 --
 3 files changed, 128 deletions(-)

diff --git a/net-p2p/amule/Manifest b/net-p2p/amule/Manifest
index 2503136cb44..bca0d5c4d74 100644
--- a/net-p2p/amule/Manifest
+++ b/net-p2p/amule/Manifest
@@ -1,2 +1 @@
-DIST aMule-2.3.1.tar.bz2 4565232 SHA256 
d2eda19c34ec574fa123efb95726c7cc241b093c95d074a5161ee7330dece69d SHA512 
3310aa6e92dde0e27df032da701bc28533c703277ddeec3766fb0e945725ed340b2d3fe54016172621a47559b6c13fb2893cba0d2469a1038ab35c3ee2d5a3c3
 WHIRLPOOL 
1e1a27ebaed1c8f49093dc6a75a0b9c5fd1ad5a3390585d08b1db2b8cd00397e2d519b01720d5d2131b779f9bc0137d9a6aba603117295b185c3db716cc7dba2
 DIST aMule-2.3.2.tar.xz 3895300 SHA256 
f64720fdc8c6cfa06bdcd4ca3922d30a0ba9c897f5bec7605009c7683928 SHA512 
3064b086f8459b4372ea0c11f239a08167c7beac3dde26889f056f617b480b487bea10c2cae8fdfa1ae99c10fc9e715adc8e01e4b968389861aa47c3ec8c0016
 WHIRLPOOL 
2907069f705dcb438fb78e049d9a417d42401bff659924c7ed66451b22c6dd35baf52e8100ca81e06c24cd1418ba586e16746bcb4e27314c15fd29407b4e3298

diff --git a/net-p2p/amule/amule-2.3.1.ebuild b/net-p2p/amule/amule-2.3.1.ebuild
deleted file mode 100644
index 528912006a8..000
--- a/net-p2p/amule/amule-2.3.1.ebuild
+++ /dev/null
@@ -1,106 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils flag-o-matic wxwidgets user
-
-MY_P=${PN/m/M}-${PV}
-S="${WORKDIR}"/${MY_P}
-
-DESCRIPTION="aMule, the all-platform eMule p2p client"
-HOMEPAGE="http://www.amule.org/;
-SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="alpha amd64 ppc ppc64 ~sparc x86"
-IUSE="daemon debug geoip nls remote stats unicode upnp +X"
-
-DEPEND=">=dev-libs/crypto++-5
-   >=sys-libs/zlib-1.2.1
-   stats? ( >=media-libs/gd-2.0.26[jpeg] )
-   geoip? ( dev-libs/geoip )
-   upnp? ( >=net-libs/libupnp-1.6.6 )
-   remote? ( >=media-libs/libpng-1.2.0
-   unicode? ( >=media-libs/gd-2.0.26 ) )
-   X? ( >=x11-libs/wxGTK-2.8.12:2.8[X] )
-   !X? ( >=x11-libs/wxGTK-2.8.12:2.8 )
-   !net-p2p/imule"
-RDEPEND="${DEPEND}"
-
-pkg_setup() {
-   if use stats && ! use X; then
-   einfo "Note: You would need both the X and stats USE flags"
-   einfo "to compile aMule Statistics GUI."
-   einfo "I will now compile console versions only."
-   fi
-}
-
-pkg_preinst() {
-   if use daemon || use remote; then
-   enewgroup p2p
-   enewuser p2p -1 -1 /home/p2p p2p
-   fi
-}
-
-src_prepare() {
-   epatch "${FILESDIR}"/${PN}-2.2.6-fallocate.diff
-   # Bug 412371
-   epatch "${FILESDIR}"/${PN}-2.3.1-gcc47.patch
-}
-
-src_configure() {
-   local myconf
-
-   WX_GTK_VER="2.8"
-
-   if use X; then
-   einfo "wxGTK with X support will be used"
-   need-wxwidgets unicode
-   else
-   einfo "wxGTK without X support will be used"
-   need-wxwidgets base-unicode
-   fi
-
-   if use X ; then
-   use stats && myconf="${myconf}
-   --enable-wxcas
-   --enable-alc"
-   use remote && myconf="${myconf}
-   --enable-amule-gui"
-   else
-   myconf="
-   --disable-monolithic
-   --disable-amule-gui
-   --disable-wxcas
-   --disable-alc"
-   fi
-
-   econf \
-   --with-wx-config=${WX_CONFIG} \
-   --enable-amulecmd \
-   $(use_enable debug) \
-   $(use_enable !debug optimize) \
-   $(use_enable daemon amule-daemon) \
-   $(use_enable geoip) \
-   $(use_enable nls) \
-   $(use_enable remote webserver) \
-   $(use_enable stats cas) \
-   $(use_enable stats alcc) \
-   $(use_enable upnp) \
-   ${myconf} || die
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-
-   if use daemon; then
-   newconfd "${FILESDIR}"/amuled.confd amuled
-   newinitd "${FILESDIR}"/amuled.initd amuled
-   fi
-   if use remote; then
-   newconfd "${FILESDIR}"/amuleweb.confd amuleweb
-   newinitd "${FILESDIR}"/amuleweb.initd amuleweb
-   fi
-}

diff --git a/net-p2p/amule/files/amule-2.3.1-gcc47.patch 

[gentoo-commits] repo/gentoo:master commit in: app-cdr/gtkcdlabel/

2017-06-23 Thread Michael Palimaka
commit: df74e7b3de119277bda6a814e36ee56d1ec0420d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:16:02 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:16:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=df74e7b3

app-cdr/gtkcdlabel: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 app-cdr/gtkcdlabel/Manifest  |  1 -
 app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/app-cdr/gtkcdlabel/Manifest b/app-cdr/gtkcdlabel/Manifest
index daf7c9b7e38..4029a7123b6 100644
--- a/app-cdr/gtkcdlabel/Manifest
+++ b/app-cdr/gtkcdlabel/Manifest
@@ -1,2 +1 @@
-DIST gtkcdlabel-1.14.tar.bz2 36397 SHA256 
df3307744822cde89632da8a83bae7e8e7c3754ed4738cf559c4be14cc66c303 SHA512 
35dde20c73a38cb1dc61b42a8f54cc78d7b3db90b88cbf45f48ccf5eabe95333c5f61f4e8cd77ac1fe4f9faeb55acf944df9fb8bf363343da5bad8cc81115c6e
 WHIRLPOOL 
152b3c02e3ecf37a7d0bc1eaa4efec885c2721b05f73d3d4f4d2cc52d25d46aedce41f3be3c919256793fa25c6795c26fcde5b5e778959969d9dddecc98fcdbb
 DIST gtkcdlabel-1.15.tar.bz2 36468 SHA256 
878f59ca08c7b11bd2546faab9a9b352c4fa475acbf51376bc073831903622a7 SHA512 
3edcaa0b15a592d684a20c34282437f5f51201cd6dde915a1a02ac1ed388a2046f8e2ce7aecf4afac3e4af01191d747c34e50d689eb945072bc20f4458bf7356
 WHIRLPOOL 
b2f0856d9041b560f12be13f99ec029462a3754bee7218826d74d09956cc7ba85ec8ccb3cf2d94661e2a51eb43ea9f021a40b4b070b33b8dc52246428ebe4482

diff --git a/app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild 
b/app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild
deleted file mode 100644
index a5f0640276d..000
--- a/app-cdr/gtkcdlabel/gtkcdlabel-1.14-r1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1
-
-DESCRIPTION="A GUI for cdlabelgen that generates CD labels"
-HOMEPAGE="http://gtkcdlabel.sourceforge.net;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ~sparc x86"
-IUSE=""
-
-DEPEND="${PYTHON_DEPS}
-   >=app-cdr/cdlabelgen-4
-   dev-python/pygtk[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-REQUIRED_USE=${PYTHON_REQUIRED_USE}
-
-S=${WORKDIR}
-
-src_prepare() {
-   python_fix_shebang .
-}
-
-src_install() {
-   dobin usr/bin/${PN}.py || die "dobin failed"
-   insinto /usr/share
-   doins -r usr/share/{applications,${PN},pixmaps} || die "doins failed"
-   dodoc usr/share/doc/${PN}/{AUTHORS,README}
-}



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

2017-06-23 Thread Michael Palimaka
commit: 4a43229559306107102225b49a6a8a5bb8c06ddd
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:16:35 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:16:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a432295

net-p2p/transmission-remote-gtk: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 net-p2p/transmission-remote-gtk/Manifest   |  1 -
 .../transmission-remote-gtk-1.1.1.ebuild   | 45 --
 2 files changed, 46 deletions(-)

diff --git a/net-p2p/transmission-remote-gtk/Manifest 
b/net-p2p/transmission-remote-gtk/Manifest
index cad6f2a159a..40f5b1242fa 100644
--- a/net-p2p/transmission-remote-gtk/Manifest
+++ b/net-p2p/transmission-remote-gtk/Manifest
@@ -1,2 +1 @@
-DIST transmission-remote-gtk-1.1.1.tar.gz 684718 SHA256 
9f5ac2de623d633bcaacb6362bb6d8fb468c6dff278b867f65809c48ea1570c9 SHA512 
184601a51d71d7b967d516cee87bea47f190ad080d110b2a73c82adac03cff49169dd2682b82e0f5c017c050bd9fd54fdfba9cd0de7ca7d9fcd2e8f9abfc0c12
 WHIRLPOOL 
f245e497471b7c39eabae73deea10ccf30470938a52523fad05b1c744eab84a2d4c3e91e72d0c481789262ca38279cfca8f15fff1c7080f25107ee4038dd4a7a
 DIST transmission-remote-gtk-1.3.1.tar.xz 459260 SHA256 
1b29c573b1e205e3e7c2433dc4a48f9574278d97e033845d19bbffa1d7f75345 SHA512 
ce723d51f8f769e59fb539241996ff0204a654f52696963044f8535731cc2b8ec69cf454a15253f9ba214e0879498f3c19519b5b1b303273d667592887ee45f5
 WHIRLPOOL 
7ca78f608809ba74be1040ff73dde5a0bc68cb665fe889ca68e219e04cb17ec40bdd2994999ddc76819e3b5d5f4c9aeb256800268a2d92b56d84d904e8b7bac0

diff --git 
a/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.1.1.ebuild 
b/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.1.1.ebuild
deleted file mode 100644
index 8f638b3ba6b..000
--- a/net-p2p/transmission-remote-gtk/transmission-remote-gtk-1.1.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=4
-inherit eutils fdo-mime gnome2-utils
-
-DESCRIPTION="GTK+ client for management of the Transmission BitTorrent client, 
over HTTP RPC"
-HOMEPAGE="https://code.google.com/p/transmission-remote-gtk;
-SRC_URI="https://${PN}.googlecode.com/files/${P}.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="ayatana debug geoip libnotify libproxy"
-
-RESTRICT="test"
-
-RDEPEND=">=dev-libs/glib-2.32
-   >=dev-libs/json-glib-0.12.6
-   net-misc/curl
-   >=x11-libs/gtk+-3.4:3
-   ayatana? ( dev-libs/libappindicator:3 )
-   geoip? ( dev-libs/geoip )
-   libnotify? ( >=x11-libs/libnotify-0.7 )
-   libproxy? ( net-libs/libproxy )"
-DEPEND="${RDEPEND}
-   dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-DOCS="AUTHORS ChangeLog README"
-
-src_configure() {
-   econf \
-   $(use_enable debug) \
-   --enable-gtk3 \
-   $(use_with geoip libgeoip) \
-   $(use_with libnotify) \
-   $(use_with libproxy) \
-   $(use_with ayatana libappindicator)
-}
-
-pkg_preinst() {gnome2_icon_savelist; }
-pkg_postinst() { fdo-mime_desktop_database_update; gnome2_icon_cache_update; }
-pkg_postrm() { fdo-mime_desktop_database_update; gnome2_icon_cache_update; }



[gentoo-commits] repo/gentoo:master commit in: dev-util/bcpp/files/, dev-util/bcpp/

2017-06-23 Thread Michael Palimaka
commit: 25f72daf7cd6a280d050715ed203d9c783345b02
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:15:07 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:16:51 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25f72daf

dev-util/bcpp: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 dev-util/bcpp/Manifest |  2 --
 dev-util/bcpp/bcpp-20050725.ebuild | 39 
 dev-util/bcpp/bcpp-20090630.ebuild | 41 --
 dev-util/bcpp/bcpp-20150811.ebuild | 41 --
 .../bcpp/files/bcpp-20050725-etc-cfg-files.patch   | 22 
 5 files changed, 145 deletions(-)

diff --git a/dev-util/bcpp/Manifest b/dev-util/bcpp/Manifest
index 2db73d4cef7..ce3f8706288 100644
--- a/dev-util/bcpp/Manifest
+++ b/dev-util/bcpp/Manifest
@@ -1,3 +1 @@
-DIST bcpp-20050725.tgz 132649 SHA256 
1a4b5e8e741d6be400eb68b7c4a3eebc6dabe29948a72a7a0bccb1db075eaa2a SHA512 
0ada3aee998fa6748e7492bfe2e0d6e5417640eaa19aa3342637ee1d162c907d2af4fd2d1ab24661f36798d2d51fa017d9c113b8499b32bf4d521e130aa75323
 WHIRLPOOL 
fff51c65b60351c9a7c55d060754e3e09383b905820ab79aa2f371a894a82d8a3fa5a00b00a066380909c49487e262f99a832022b5f214d564e43b8939fcbdcb
-DIST bcpp-20090630.tgz 138757 SHA256 
27b46ab3cef53a658605f350e3982862e17b523e703f23617530a57180200a34 SHA512 
660d11c0d8a8d3ccc2a4c14ccb60164a43647fface79ffd86b8d99519e227e32a882fc213a5fef64fd3aee1c409c4bb0a871dfd6d6a09a8ad35e253baef6496b
 WHIRLPOOL 
1fa68efd9874933de2097b87aab0dd586cbc29cf7fc3d4ba6d80984ecb289f01d8093e82fbca3f8077300887a8d1b1b970ed5bcabb0a766489bdcb23704f7ac2
 DIST bcpp-20150811.tgz 145969 SHA256 
6a18d68a09c4a0e8bf62d23d13ed7c8a62c98664a655f9d648bc466240ce97c3 SHA512 
a11462574bd87cf66dc50ce23f188d335480aae5448b527694791d4b7ae5cde27c0e0c0850dc8899b2b66198c37a434985c833f95f7f2d2d88a3b7dfe4ff34a9
 WHIRLPOOL 
959677314ce1bbd361b3060f7f8f028ad89cce8d7167ecc169f6d49a854ecfadc50177be2dd2ffdac838252f67af72d2a4c341b2666208bc8cef1aadcee867db

diff --git a/dev-util/bcpp/bcpp-20050725.ebuild 
b/dev-util/bcpp/bcpp-20050725.ebuild
deleted file mode 100644
index 2dc4a6daba8..000
--- a/dev-util/bcpp/bcpp-20050725.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-inherit eutils
-
-DESCRIPTION="Indents C/C++ source code"
-HOMEPAGE="http://invisible-island.net/bcpp/;
-SRC_URI="ftp://invisible-island.net/bcpp/${P}.tgz;
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-DEPEND=""
-RDEPEND=""
-
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}/${P}-etc-cfg-files.patch"
-}
-
-src_install() {
-   make DESTDIR="${D}" install || die
-   dodoc CHANGES MANIFEST README VERSION txtdocs/hirachy.txt \
-   txtdocs/manual.txt
-
-   # install our configuration files
-   insinto /etc/bcpp
-   doins bcpp.cfg indent.cfg
-}
-
-pkg_postinst() {
-   elog "Check the documentation for more information on how to"
-   elog "Run bcpp.  Please note that in order to get help for"
-   elog "bcpp, please run bcpp -h and not the command by itself."
-   elog ""
-   elog "Configuration files are at /etc/bcpp."
-   elog "To use them, use the -c option followed by the filename."
-}

diff --git a/dev-util/bcpp/bcpp-20090630.ebuild 
b/dev-util/bcpp/bcpp-20090630.ebuild
deleted file mode 100644
index 2f411f8f2e0..000
--- a/dev-util/bcpp/bcpp-20090630.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2010 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="2"
-
-inherit eutils
-
-DESCRIPTION="Indents C/C++ source code"
-HOMEPAGE="http://invisible-island.net/bcpp/;
-SRC_URI="ftp://invisible-island.net/bcpp/${P}.tgz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos"
-IUSE=""
-
-DEPEND=""
-RDEPEND=""
-
-src_prepare() {
-   epatch "${FILESDIR}/${PN}-20050725-etc-cfg-files.patch"
-}
-
-src_install() {
-   make DESTDIR="${D}" install || die "make install failed"
-   dodoc CHANGES MANIFEST README VERSION txtdocs/hirachy.txt \
-   txtdocs/manual.txt || die "dodoc failed"
-
-   # Install our configuration files.
-   insinto /etc/bcpp
-   doins bcpp.cfg indent.cfg || die "doins failed"
-}
-
-pkg_postinst() {
-   elog "Check the documentation for more information on how to"
-   elog "Run bcpp.  Please note that in order to get help for"
-   elog "bcpp, please run bcpp -h and not the command by itself."
-   elog ""
-   elog "Configuration files are at /etc/bcpp."
-   elog "To use them, use the -c option followed by the filename."
-}

diff --git a/dev-util/bcpp/bcpp-20150811.ebuild 
b/dev-util/bcpp/bcpp-20150811.ebuild
deleted file 

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

2017-06-23 Thread Michael Palimaka
commit: f12553dc4d9f7aaa62a11fbabf7a40e0cfab4be1
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sat Jun 24 02:04:54 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 02:05:00 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f12553dc

x11-wm/i3: remove old

Package-Manager: Portage-2.3.5, Repoman-2.3.2

 x11-wm/i3/Manifest  |   5 -
 x11-wm/i3/files/i3-4.12-pango.patch | 181 
 x11-wm/i3/i3-4.10.4.ebuild  |  72 --
 x11-wm/i3/i3-4.11.ebuild|  72 --
 x11-wm/i3/i3-4.12.ebuild|  85 -
 x11-wm/i3/i3-4.8.ebuild |  72 --
 x11-wm/i3/i3-4.9.1.ebuild   |  72 --
 x11-wm/i3/metadata.xml  |   1 -
 8 files changed, 560 deletions(-)

diff --git a/x11-wm/i3/Manifest b/x11-wm/i3/Manifest
index 9d7b49af5ca..71328505cda 100644
--- a/x11-wm/i3/Manifest
+++ b/x11-wm/i3/Manifest
@@ -1,6 +1 @@
-DIST i3-4.10.4.tar.bz2 940744 SHA256 
dd4fa7a5c5b8feaf83f196fc181bfd33aff65c11d81c91b3ae9d9d3d2540655e SHA512 
e777d1ca8ebeada185dfe11443a8b731cb72b6f836a0848e24291ea5d70e4b6d6c414acd58c156be97bd90d07ba4019a713cdb406a24fda33afeae08ceb6ed18
 WHIRLPOOL 
5bfaeb74d8f1c3dc10719bcac56087d7716e0a7a6c251495db256af1d1342eea3baae4b5c4f6c8131efa89393016c0dd0a56b17ff1f7bd757185dbf4747e7441
-DIST i3-4.11.tar.bz2 972929 SHA256 
78ce1e06fbd92fd63765bbe23faa7b8f929c17f99ed623f7abf2e568169d982f SHA512 
76d45be9006973dd4093fd21ea1c83742b7977c7698e133ce8f9e7826d97d1631fbe6c3ea4a7eb3d989027f98e12738158e72ec450b0df328f912ff49a4f
 WHIRLPOOL 
f3bff5c0386ad09c5cabb25c7ccb14033f1a7ba3ee19fcc832739cbc61a31f84d3a57418264db4728fbb406c24464a8c87cbfde1e651599a3b63d87eb0af11cb
-DIST i3-4.12.tar.bz2 988084 SHA256 
e19e1ce08c2549cba83e083cc768d487202c41760d5c283f67752e791f1d78b4 SHA512 
966f62dbd82c6c70d1344cc61f14f154f3f649ce1b5a5b5168f00f50d598582ef26f5bd5496ea62e13213e45b1c7043f6209c94fcbefe2947fec63284445c1f5
 WHIRLPOOL 
7cf414de6d375029328edc8d824d2542ccae99ddf48eac9a563e81e0e86db5506f45f851d5af755ebfe8514e9afb5f8394d962fb191f4b0ab4268a81b8397395
 DIST i3-4.13.tar.bz2 1121298 SHA256 
94c13183e527a984132a3b050c8bf629626502a6e133e07b413641aec5f8cf8a SHA512 
1bb1044e8d86e78d3ccb79d49f0eb26665dcd05a348058a5e57138151d74f57d77830efc3025893170fe1b8ec612f739f75247a427410f96286b09afd2c5f14c
 WHIRLPOOL 
c0e9b205837e30d214d525af6ceb8adcc4cbbba42d9aa0eab4e7639cbd8884d827c5783590eb23a6790e8d8d87fb81884afa369e48a7ae474613392dc6f9b371
-DIST i3-4.8.tar.bz2 939690 SHA256 
502c34290f239780bb40352191f0500e8f35d2446eddb573c67c27873d6a1b6b SHA512 
fd6f92da857246119f1ae710b6c5168128fa2da5eae8308550b1b9c75879f060cac8246897333f3d67e18de36828a11dd12b4ccee9bd6cd6ad32e2b44c50b43e
 WHIRLPOOL 
6c6288cb66ffdbf225df0dfcdc4f540cd36d7c8333a9f9d9c363cb6580d6a7c1ca0deb227a8f46ac907f2afc6e4e46efc448a51f0764a167bb9639956beae4ef
-DIST i3-4.9.1.tar.bz2 939630 SHA256 
b70deff027c7d05276c9646e53faeeeccdde706370b9b337a633bed85b16dc43 SHA512 
7a8f71dd944faae426a2239b8bf12ea1cfc83a95c49fcb64ded8321ef302f3277af7d2ecd84d99cef47aba73e5a1091f94e37e9ed2af78c4722ffee507477c90
 WHIRLPOOL 
15cd2722beaeef642815edd44ff189ff0d003fefbff71c067b94a65dadb55cd15dd1a142a37499fa55cc80424dbdc74cb979c8998d740addcc492eaf025e467f

diff --git a/x11-wm/i3/files/i3-4.12-pango.patch 
b/x11-wm/i3/files/i3-4.12-pango.patch
deleted file mode 100644
index 6442796cae7..000
--- a/x11-wm/i3/files/i3-4.12-pango.patch
+++ /dev/null
@@ -1,181 +0,0 @@
-Fixes builds with without pango/cairo
-
-https://github.com/i3/i3/pull/2243
-https://bugs.gentoo.org/show_bug.cgi?id=576664
-
 a/include/libi3.h
-+++ b/include/libi3.h
-@@ -20,7 +20,7 @@
- #if PANGO_SUPPORT
- #include 
- #endif
--#ifdef CAIRO_SUPPORT
-+#if CAIRO_SUPPORT
- #include 
- #endif
- 
-@@ -518,7 +518,7 @@ typedef struct placeholder_t {
-  */
- char *format_placeholders(char *format, placeholder_t *placeholders, int num);
- 
--#ifdef CAIRO_SUPPORT
-+#if CAIRO_SUPPORT
- /* We need to flush cairo surfaces twice to avoid an assertion bug. See #1989
-  * and https://bugs.freedesktop.org/show_bug.cgi?id=92455. */
- #define CAIRO_SURFACE_FLUSH(surface)  \
-@@ -542,7 +542,7 @@ typedef struct surface_t {
- int width;
- int height;
- 
--#ifdef CAIRO_SUPPORT
-+#if CAIRO_SUPPORT
- /* A cairo surface representing the drawable. */
- cairo_surface_t *surface;
- 
 a/libi3/draw_util.c
-+++ b/libi3/draw_util.c
-@@ -11,7 +11,7 @@
- #include 
- #include 
- #include 
--#ifdef CAIRO_SUPPORT
-+#if CAIRO_SUPPORT
- #include 
- #endif
- 
-@@ -50,7 +50,7 @@ void draw_util_surface_init(xcb_connection_t *conn, 
surface_t *surface, xcb_draw
- ELOG("Could not create graphical context. Error code: %d. Please 
report this bug.\n", error->error_code);
- }
- 
--#ifdef CAIRO_SUPPORT
-+#if CAIRO_SUPPORT
- surface->surface = cairo_xcb_surface_create(conn, surface->id, 
surface->visual_type, width, height);
- surface->cr = 

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

2017-06-23 Thread Michael Palimaka
commit: 8da8dcceeaf7c0b8b7d18b4379ecfce1736035b8
Author: Michael Palimaka  gentoo  org>
AuthorDate: Sun Jun 18 12:55:25 2017 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Sat Jun 24 01:50:46 2017 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=8da8dcce

travis: sync with upstream

 .travis.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.travis.yml b/.travis.yml
index e311a56708..3b94f6cb11 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -24,7 +24,7 @@ before_script:
 - echo "portage::250:portage,travis" >> /etc/group
 - wget "https://www.gentoo.org/dtd/metadata.dtd; -O 
/usr/portage/distfiles/metadata.dtd
 - ln -s portage-portage-${PORTAGE_VER}/cnf/repos.conf 
/etc/portage/repos.conf
-- ln -s /usr/portage/profiles/base/ /etc/portage/make.profile
+- ln -s /usr/portage/profiles/default/linux/amd64/13.0 
/etc/portage/make.profile
 - SIZE=$(stat -c %s .travis.yml.upstream)
 - if ! cmp -n $SIZE -s .travis.yml .travis.yml.upstream; then echo -e 
"\e[31m !!! .travis.yml outdated! Update available 
https://github.com/mrueg/repoman-travis \e[0m" > /tmp/update ; fi
 - cd travis-overlay



[gentoo-commits] repo/gentoo:master commit in: net-nntp/nzbget/files/, net-nntp/nzbget/

2017-06-23 Thread Sven Wegener
commit: 3e279c58bee61b557823357a52b23c101902807d
Author: Louis Sautier  gmail  com>
AuthorDate: Fri Jun 23 21:32:22 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Fri Jun 23 22:29:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e279c58

net-nntp/nzbget: fix compilation of pre2021 with USE=-parcheck

Gentoo-Bug: 622532
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Closes: https://github.com/gentoo/gentoo/pull/4977

 .../nzbget-19.0_pre2021-fix-no-parcheck.patch  | 46 ++
 net-nntp/nzbget/nzbget-19.0_pre2021.ebuild |  2 +
 2 files changed, 48 insertions(+)

diff --git a/net-nntp/nzbget/files/nzbget-19.0_pre2021-fix-no-parcheck.patch 
b/net-nntp/nzbget/files/nzbget-19.0_pre2021-fix-no-parcheck.patch
new file mode 100644
index 000..e87fb7ced1a
--- /dev/null
+++ b/net-nntp/nzbget/files/nzbget-19.0_pre2021-fix-no-parcheck.patch
@@ -0,0 +1,46 @@
+From 928e0a60061d33252de0b490c80477e77dde0627 Mon Sep 17 00:00:00 2001
+From: Andrey Prygunkov 
+Date: Fri, 23 Jun 2017 23:22:49 +0200
+Subject: [PATCH] fixed #399: error when compiling without par-check
+
+---
+ daemon/queue/DirectRenamer.cpp | 5 -
+ 1 file changed, 4 insertions(+), 1 deletion(-)
+
+diff --git a/daemon/queue/DirectRenamer.cpp b/daemon/queue/DirectRenamer.cpp
+index 585ce941..2dd0f95b 100644
+--- a/daemon/queue/DirectRenamer.cpp
 b/daemon/queue/DirectRenamer.cpp
+@@ -51,6 +51,7 @@ class RenameContentAnalyzer : public ArticleContentAnalyzer
+   bool m_parFile = false;
+ };
+ 
++#ifndef DISABLE_PARCHECK
+ class DirectParRepairer : public Par2::Par2Repairer
+ {
+ public:
+@@ -161,7 +162,7 @@ void DirectParLoader::LoadParFile(const char* parFile)
+   m_parHashes.emplace_back(filename.c_str(), hash.c_str());
+   }
+ }
+-
++#endif
+ 
+ std::unique_ptr 
DirectRenamer::MakeArticleContentAnalyzer()
+ {
+@@ -219,6 +220,7 @@ void DirectRenamer::FileDownloaded(DownloadQueue* 
downloadQueue, FileInfo* fileI
+ 
+ void DirectRenamer::CheckState(DownloadQueue* downloadQueue, NzbInfo* nzbInfo)
+ {
++#ifndef DISABLE_PARCHECK
+   if (nzbInfo->GetDirectRenameStatus() > NzbInfo::tsRunning)
+   {
+   return;
+@@ -270,6 +272,7 @@ void DirectRenamer::CheckState(DownloadQueue* 
downloadQueue, NzbInfo* nzbInfo)
+   return;
+   }
+   }
++#endif
+ }
+ 
+ // Unpause smallest par-files from each par-set

diff --git a/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild 
b/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild
index c6d86f04383..6abcc452e54 100644
--- a/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild
+++ b/net-nntp/nzbget/nzbget-19.0_pre2021.ebuild
@@ -33,6 +33,8 @@ DOCS=( ChangeLog README nzbget.conf )
 
 S=${WORKDIR}/${PN}-${PV/_pre*/-testing}
 
+PATCHES=( "${FILESDIR}/${P}-fix-no-parcheck.patch" )
+
 check_compiler() {
if [[ ${MERGE_TYPE} != binary ]] && ! test-flag-CXX -std=c++14; then
eerror "${P} requires a C++14-capable compiler. Your current 
compiler"



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

2017-06-23 Thread Lars Wendler
commit: 353b2b5fda4083c452eba8cd15635f6a352b2b2a
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 23 22:14:17 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 23 22:23:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=353b2b5f

sys-apps/texinfo: Removed old.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-apps/texinfo/Manifest   |  1 -
 sys-apps/texinfo/texinfo-5.2.ebuild | 40 -
 2 files changed, 41 deletions(-)

diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
index 2e4f755cac4..26eb871ad85 100644
--- a/sys-apps/texinfo/Manifest
+++ b/sys-apps/texinfo/Manifest
@@ -1,5 +1,4 @@
 DIST texinfo-4.13.tar.lzma 1563777 SHA256 
6d28b0ceae866e3536142fc552e7a3bc9f84c8303119c25731b2478eef64c9e5 SHA512 
bded399ed5fcf97dfa72d9486df91ecfc501301d83929b09b230aee2b8ad6994b7d7b5965b04d43de729cee30575b2334cf75879ad0a61c4b781ccc16d6c12db
 WHIRLPOOL 
6ef9d5e47cae7c6a94272e35bafe0716e617691b6b549a59ef8f95244f1b9a94e9adb79db38cf8e23166a43e84725e3eb01c971c8894bc4201aa743a44170c35
-DIST texinfo-5.2.tar.xz 3812944 SHA256 
5471ef683a64588a7cfef46ef2bdd3fbcbca89d847e10832612293f105e44eda SHA512 
6f9c5142db3b155bd601149b5632807b3c20dcfa7006ce5f7e120e6fc4b2174a3f4671c18232c040ffd69ebfb5950be5c563ac5cc08b88d03eb5a9f1b0f96c04
 WHIRLPOOL 
609f0c2ac4deccf85f99cae3f681ce3892c7822988a84970171dec0f1224052861b3ac3fac97e666016bac4469b0e8446133c775a20f7201ff6dffa90fc84290
 DIST texinfo-6.1.tar.xz 4520376 SHA256 
ac68394ce21b2420ba7ed7cec65d84aacf308cc88e9bf4716fcfff88286883d2 SHA512 
ae47295f3bcfb728c3be59421cf830ecfa5fc7856a086e45da2bac89600d883aa4406a6ef62d7ee5dc2bab83a3efa1cec861a3b4b14b85bbecb53ebf3ebf7235
 WHIRLPOOL 
187f11681f041aa5f4260c6c2833cb877a4c74afda73d4f72008c61c8a089dd0393ff90257410d5e48b9501c36dd4991032db001c5c17b8224afb6f5819cd165
 DIST texinfo-6.3.tar.xz 4468048 SHA256 
246cf3ffa54985118ec2eea2b8d0c71b92114efe6282c2ae90d65029db4cf93a SHA512 
ef6c5878d9db497d7963bd9138418b30c39a5605c215bf2f4e8f1f083d93c3c99f8c459aa675f7da3b78da6189cb6bbf3cf19a2ee1d52e569de2f6ce82762bf4
 WHIRLPOOL 
45cb684cd14fdfc5da1ec54cee017e0835334481df9f4db35c18b2837509b1d15ea590d90a925edf4febae59669e9dc8e6287838368e8730f714811e70dbd417
 DIST texinfo-6.4.tar.xz 4497624 SHA256 
6ae2e61d87c6310f9af7c6f2426bd0470f251d1a6deb61fba83a3b3baff32c3a SHA512 
628e7fb64c4cb6d4ec879d5593e3660dbbbf41915c7aec68b6af209a1c496bee8a3879a69e4e047c3bee0cb476540ffd6ebdef5ec7b712edd191a82ce9ac4006
 WHIRLPOOL 
7cc7c955b4ef85ca72436668305bb9db0b0d09feb9953e4bdb812f2f1124957cfd59f16b01876f7d93e145692874f1902fb1d850e7ad8daae668ab8747a8e6fa

diff --git a/sys-apps/texinfo/texinfo-5.2.ebuild 
b/sys-apps/texinfo/texinfo-5.2.ebuild
deleted file mode 100644
index eee9ae4e585..000
--- a/sys-apps/texinfo/texinfo-5.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="4"
-
-inherit flag-o-matic
-
-DESCRIPTION="The GNU info program and utilities"
-HOMEPAGE="https://www.gnu.org/software/texinfo/;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 m68k ~mips ppc ppc64 s390 sh sparc 
x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
-IUSE="nls static"
-
-RDEPEND="!=app-text/tetex-2*
-   >=sys-libs/ncurses-5.2-r2
-   dev-lang/perl
-   dev-perl/libintl-perl
-   dev-perl/Unicode-EastAsianWidth
-   dev-perl/Text-Unidecode
-   nls? ( virtual/libintl )"
-DEPEND="${RDEPEND}
-   app-arch/xz-utils
-   nls? ( sys-devel/gettext )"
-
-src_configure() {
-   use static && append-ldflags -static
-   econf \
-   --with-external-libintl-perl \
-   --with-external-Unicode-EastAsianWidth \
-   --with-external-Text-Unidecode \
-   $(use_enable nls)
-}
-
-src_install() {
-   default
-   newdoc info/README README.info
-}



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

2017-06-23 Thread Lars Wendler
commit: 5eb7aa286a87400c70f9f76429c0f8199ef117d1
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 23 22:13:38 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 23 22:23:01 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb7aa28

sys-apps/texinfo: Bump to version 6.4

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-apps/texinfo/Manifest   |  1 +
 sys-apps/texinfo/texinfo-6.4.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/sys-apps/texinfo/Manifest b/sys-apps/texinfo/Manifest
index 63997fd5a04..2e4f755cac4 100644
--- a/sys-apps/texinfo/Manifest
+++ b/sys-apps/texinfo/Manifest
@@ -2,3 +2,4 @@ DIST texinfo-4.13.tar.lzma 1563777 SHA256 
6d28b0ceae866e3536142fc552e7a3bc9f84c8
 DIST texinfo-5.2.tar.xz 3812944 SHA256 
5471ef683a64588a7cfef46ef2bdd3fbcbca89d847e10832612293f105e44eda SHA512 
6f9c5142db3b155bd601149b5632807b3c20dcfa7006ce5f7e120e6fc4b2174a3f4671c18232c040ffd69ebfb5950be5c563ac5cc08b88d03eb5a9f1b0f96c04
 WHIRLPOOL 
609f0c2ac4deccf85f99cae3f681ce3892c7822988a84970171dec0f1224052861b3ac3fac97e666016bac4469b0e8446133c775a20f7201ff6dffa90fc84290
 DIST texinfo-6.1.tar.xz 4520376 SHA256 
ac68394ce21b2420ba7ed7cec65d84aacf308cc88e9bf4716fcfff88286883d2 SHA512 
ae47295f3bcfb728c3be59421cf830ecfa5fc7856a086e45da2bac89600d883aa4406a6ef62d7ee5dc2bab83a3efa1cec861a3b4b14b85bbecb53ebf3ebf7235
 WHIRLPOOL 
187f11681f041aa5f4260c6c2833cb877a4c74afda73d4f72008c61c8a089dd0393ff90257410d5e48b9501c36dd4991032db001c5c17b8224afb6f5819cd165
 DIST texinfo-6.3.tar.xz 4468048 SHA256 
246cf3ffa54985118ec2eea2b8d0c71b92114efe6282c2ae90d65029db4cf93a SHA512 
ef6c5878d9db497d7963bd9138418b30c39a5605c215bf2f4e8f1f083d93c3c99f8c459aa675f7da3b78da6189cb6bbf3cf19a2ee1d52e569de2f6ce82762bf4
 WHIRLPOOL 
45cb684cd14fdfc5da1ec54cee017e0835334481df9f4db35c18b2837509b1d15ea590d90a925edf4febae59669e9dc8e6287838368e8730f714811e70dbd417
+DIST texinfo-6.4.tar.xz 4497624 SHA256 
6ae2e61d87c6310f9af7c6f2426bd0470f251d1a6deb61fba83a3b3baff32c3a SHA512 
628e7fb64c4cb6d4ec879d5593e3660dbbbf41915c7aec68b6af209a1c496bee8a3879a69e4e047c3bee0cb476540ffd6ebdef5ec7b712edd191a82ce9ac4006
 WHIRLPOOL 
7cc7c955b4ef85ca72436668305bb9db0b0d09feb9953e4bdb812f2f1124957cfd59f16b01876f7d93e145692874f1902fb1d850e7ad8daae668ab8747a8e6fa

diff --git a/sys-apps/texinfo/texinfo-6.4.ebuild 
b/sys-apps/texinfo/texinfo-6.4.ebuild
new file mode 100644
index 000..596690fa851
--- /dev/null
+++ b/sys-apps/texinfo/texinfo-6.4.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# Note: if your package uses the texi2dvi utility, it must depend on the
+# virtual/texi2dvi package to pull in all the right deps.  The tool is not
+# usable out-of-the-box because it requires the large tex packages.
+
+EAPI="5"
+
+inherit flag-o-matic
+
+DESCRIPTION="The GNU info program and utilities"
+HOMEPAGE="https://www.gnu.org/software/texinfo/;
+SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~sparc-fbsd ~x86-fbsd"
+IUSE="nls static"
+
+RDEPEND="
+   !=app-text/tetex-2*
+   >=sys-libs/ncurses-5.2-r2:0=
+   dev-lang/perl:=
+   dev-perl/libintl-perl
+   dev-perl/Unicode-EastAsianWidth
+   dev-perl/Text-Unidecode
+   nls? ( virtual/libintl )"
+DEPEND="${RDEPEND}
+   app-arch/xz-utils
+   nls? ( >=sys-devel/gettext-0.19.6 )"
+
+src_configure() {
+   use static && append-ldflags -static
+   econf \
+   --with-external-libintl-perl \
+   --with-external-Unicode-EastAsianWidth \
+   --with-external-Text-Unidecode \
+   $(use_enable nls)
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/dar/

2017-06-23 Thread Lars Wendler
commit: 83c5a376d658242ecb2ea986f1f280119663c580
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 23 22:22:10 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 23 22:23:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c5a376

app-backup/dar: Bump to version 2.5.11

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-backup/dar/Manifest  |  1 +
 app-backup/dar/dar-2.5.11.ebuild | 96 
 2 files changed, 97 insertions(+)

diff --git a/app-backup/dar/Manifest b/app-backup/dar/Manifest
index e4ccc688beb..7a3582abe7d 100644
--- a/app-backup/dar/Manifest
+++ b/app-backup/dar/Manifest
@@ -1,4 +1,5 @@
 DIST dar-2.4.20.tar.gz 1804634 SHA256 
f0f66108692de8b27e76b1832d9013d9d1dbf45d2f5c222dde3c6f1b308d SHA512 
1ed2e43df05082c01f6a53aa8c1c7328cb27fc3d84115d3f4a07de943fc814b614155f673464cd1a455e3b8c21e30f95da03ed9f72883b58ae005e3696de8143
 WHIRLPOOL 
b3ce8c59efe2f9f988133613b73fe1ec14af39746e7c5fff0c83fa2146218fad3e912f586e9b677af809696105fa9d72dc35122ec3b3ca3ad63b2cdd75fce954
 DIST dar-2.4.24.tar.gz 1820097 SHA256 
cb9f0935f4aa1c10daaceef3fbcf165ca73524fd6ce50948cb91e926080825f0 SHA512 
3e5fbaaac7ab8e25776d20c11accba94c30abcbc898e7700e9faa98dee94995e742a9481740f2d286149a198ce661d876d2737fed85f1a2555073436175c5f10
 WHIRLPOOL 
659ac04d22c4781595863b22372755a357f060ab7325623d54e7d258aa3670c026a884775444c2cea232fc3a0410d6c85c06a5f56a14cc39022c72237fe6
 DIST dar-2.5.10.tar.gz 1888334 SHA256 
771c8462b9e65bf646699a14a4e156c75b5bda4301ebf6f5e03bd82c2486a4d8 SHA512 
90727f206634fc7d8ab7ca1faf588cfdb504d7474096b2965fde18a0a3cc54f603f0df3ddd1b00d331951d5d4688a1adb861eec71034e92aa1428e5ba9e665f1
 WHIRLPOOL 
cdfaf5ee6535083e49aef2992010b960650b9804426cc6a52cf0839225d54e7537b8e356acfb398210b480eebf73551875f01ae016d04221c2ac18cc65ee4f05
+DIST dar-2.5.11.tar.gz 1891928 SHA256 
ad9d4b32b7a1240d9ae74155ff0aab3848065bee65ce01a022a234c02be73989 SHA512 
36b90218a34ac7f41ce9ca0a2167cfb2fd243b23b8e84350153e8804f0faabf87291b4e4b061533bcb0ca079f087c074eeaa12a54ee8084dd386a072ac503847
 WHIRLPOOL 
4e52c72a98d56b402cb546b96c5d09233910558322dca9344242ab5829f1c39e68fca31221db4f90dc6d20c216199ebce1329fd9dc214d548a78457178ab4cf5
 DIST dar-2.5.9.tar.gz 1886232 SHA256 
6973614afa970d095719bf43d91855c450d0fa5dcf0a45b580055625500ba92e SHA512 
ee7b9180fb5f937b3fdd9a2f615dfecc66bd0c39f95e067ac55fa6c6f038e5abbe8ec8ab639e3eb51dd2cc7e4221a42fb5e783ed2039e0deabaa75e6f93abdac
 WHIRLPOOL 
f0eef9ef3b44860b5693414e5de62becec1195099697ffe424d2ee805b7d2bffa03710d1e95ef49922334ccb708b46e62f7cafa612c74abaaa667a4244212ba3

diff --git a/app-backup/dar/dar-2.5.11.ebuild b/app-backup/dar/dar-2.5.11.ebuild
new file mode 100644
index 000..bb527233dac
--- /dev/null
+++ b/app-backup/dar/dar-2.5.11.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit flag-o-matic
+
+DESCRIPTION="A full featured backup tool, aimed for disks"
+HOMEPAGE="http://dar.linux.free.fr/;
+SRC_URI="mirror://sourceforge/dar/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux"
+IUSE="dar32 dar64 doc gcrypt gpg lzo nls static static-libs xattr"
+
+RESTRICT="test" # need to be run as root
+
+RDEPEND=">=sys-libs/zlib-1.2.3:=
+   !static? (
+   app-arch/bzip2:=
+   app-arch/xz-utils:=
+   sys-libs/libcap
+   gcrypt? ( dev-libs/libgcrypt:0= )
+   gpg? ( app-crypt/gpgme )
+   lzo? ( dev-libs/lzo:= )
+   xattr? ( sys-apps/attr:= )
+   )"
+
+DEPEND="${RDEPEND}
+   static? (
+   app-arch/bzip2[static-libs]
+   app-arch/xz-utils[static-libs]
+   sys-libs/libcap[static-libs]
+   sys-libs/zlib[static-libs]
+   gcrypt? ( dev-libs/libgcrypt:0=[static-libs] )
+   gpg? (
+   app-crypt/gpgme[static-libs]
+   dev-libs/libassuan[static-libs]
+   dev-libs/libgpg-error[static-libs]
+   )
+   lzo? ( dev-libs/lzo[static-libs] )
+   xattr? ( sys-apps/attr[static-libs] )
+   )
+   nls? (
+   sys-devel/gettext
+   virtual/libintl
+   )
+   doc? ( app-doc/doxygen )"
+
+REQUIRED_USE="?? ( dar32 dar64 )
+   gpg? ( gcrypt )"
+
+#PATCHES=(
+#)
+
+src_configure() {
+   local myconf=( --disable-upx )
+
+   # Bug 103741
+   filter-flags -fomit-frame-pointer
+
+   # configure.ac is totally funked up regarding the AC_ARG_ENABLE
+   # logic.
+   # For example "--enable-dar-static" causes configure to DISABLE
+   # static builds of dar.
+   # Do _not_ use $(use_enable) until you have verified that the
+   # logic has been fixed by upstream.
+   use xattr || myconf+=( --disable-ea-support )
+   use dar32 && myconf+=( 

[gentoo-commits] repo/gentoo:master commit in: app-backup/dar/

2017-06-23 Thread Lars Wendler
commit: f6528c511284686f72b4653164b74527427b1614
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 23 22:22:38 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 23 22:23:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6528c51

app-backup/dar: Removed old.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-backup/dar/Manifest |  1 -
 app-backup/dar/dar-2.5.9.ebuild | 96 -
 2 files changed, 97 deletions(-)

diff --git a/app-backup/dar/Manifest b/app-backup/dar/Manifest
index 7a3582abe7d..f8054b2a607 100644
--- a/app-backup/dar/Manifest
+++ b/app-backup/dar/Manifest
@@ -2,4 +2,3 @@ DIST dar-2.4.20.tar.gz 1804634 SHA256 
f0f66108692de8b27e76b1832d9013d9d1dbf45d2a
 DIST dar-2.4.24.tar.gz 1820097 SHA256 
cb9f0935f4aa1c10daaceef3fbcf165ca73524fd6ce50948cb91e926080825f0 SHA512 
3e5fbaaac7ab8e25776d20c11accba94c30abcbc898e7700e9faa98dee94995e742a9481740f2d286149a198ce661d876d2737fed85f1a2555073436175c5f10
 WHIRLPOOL 
659ac04d22c4781595863b22372755a357f060ab7325623d54e7d258aa3670c026a884775444c2cea232fc3a0410d6c85c06a5f56a14cc39022c72237fe6
 DIST dar-2.5.10.tar.gz 1888334 SHA256 
771c8462b9e65bf646699a14a4e156c75b5bda4301ebf6f5e03bd82c2486a4d8 SHA512 
90727f206634fc7d8ab7ca1faf588cfdb504d7474096b2965fde18a0a3cc54f603f0df3ddd1b00d331951d5d4688a1adb861eec71034e92aa1428e5ba9e665f1
 WHIRLPOOL 
cdfaf5ee6535083e49aef2992010b960650b9804426cc6a52cf0839225d54e7537b8e356acfb398210b480eebf73551875f01ae016d04221c2ac18cc65ee4f05
 DIST dar-2.5.11.tar.gz 1891928 SHA256 
ad9d4b32b7a1240d9ae74155ff0aab3848065bee65ce01a022a234c02be73989 SHA512 
36b90218a34ac7f41ce9ca0a2167cfb2fd243b23b8e84350153e8804f0faabf87291b4e4b061533bcb0ca079f087c074eeaa12a54ee8084dd386a072ac503847
 WHIRLPOOL 
4e52c72a98d56b402cb546b96c5d09233910558322dca9344242ab5829f1c39e68fca31221db4f90dc6d20c216199ebce1329fd9dc214d548a78457178ab4cf5
-DIST dar-2.5.9.tar.gz 1886232 SHA256 
6973614afa970d095719bf43d91855c450d0fa5dcf0a45b580055625500ba92e SHA512 
ee7b9180fb5f937b3fdd9a2f615dfecc66bd0c39f95e067ac55fa6c6f038e5abbe8ec8ab639e3eb51dd2cc7e4221a42fb5e783ed2039e0deabaa75e6f93abdac
 WHIRLPOOL 
f0eef9ef3b44860b5693414e5de62becec1195099697ffe424d2ee805b7d2bffa03710d1e95ef49922334ccb708b46e62f7cafa612c74abaaa667a4244212ba3

diff --git a/app-backup/dar/dar-2.5.9.ebuild b/app-backup/dar/dar-2.5.9.ebuild
deleted file mode 100644
index bb527233dac..000
--- a/app-backup/dar/dar-2.5.9.ebuild
+++ /dev/null
@@ -1,96 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit flag-o-matic
-
-DESCRIPTION="A full featured backup tool, aimed for disks"
-HOMEPAGE="http://dar.linux.free.fr/;
-SRC_URI="mirror://sourceforge/dar/${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86 ~amd64-linux"
-IUSE="dar32 dar64 doc gcrypt gpg lzo nls static static-libs xattr"
-
-RESTRICT="test" # need to be run as root
-
-RDEPEND=">=sys-libs/zlib-1.2.3:=
-   !static? (
-   app-arch/bzip2:=
-   app-arch/xz-utils:=
-   sys-libs/libcap
-   gcrypt? ( dev-libs/libgcrypt:0= )
-   gpg? ( app-crypt/gpgme )
-   lzo? ( dev-libs/lzo:= )
-   xattr? ( sys-apps/attr:= )
-   )"
-
-DEPEND="${RDEPEND}
-   static? (
-   app-arch/bzip2[static-libs]
-   app-arch/xz-utils[static-libs]
-   sys-libs/libcap[static-libs]
-   sys-libs/zlib[static-libs]
-   gcrypt? ( dev-libs/libgcrypt:0=[static-libs] )
-   gpg? (
-   app-crypt/gpgme[static-libs]
-   dev-libs/libassuan[static-libs]
-   dev-libs/libgpg-error[static-libs]
-   )
-   lzo? ( dev-libs/lzo[static-libs] )
-   xattr? ( sys-apps/attr[static-libs] )
-   )
-   nls? (
-   sys-devel/gettext
-   virtual/libintl
-   )
-   doc? ( app-doc/doxygen )"
-
-REQUIRED_USE="?? ( dar32 dar64 )
-   gpg? ( gcrypt )"
-
-#PATCHES=(
-#)
-
-src_configure() {
-   local myconf=( --disable-upx )
-
-   # Bug 103741
-   filter-flags -fomit-frame-pointer
-
-   # configure.ac is totally funked up regarding the AC_ARG_ENABLE
-   # logic.
-   # For example "--enable-dar-static" causes configure to DISABLE
-   # static builds of dar.
-   # Do _not_ use $(use_enable) until you have verified that the
-   # logic has been fixed by upstream.
-   use xattr || myconf+=( --disable-ea-support )
-   use dar32 && myconf+=( --enable-mode=32 )
-   use dar64 && myconf+=( --enable-mode=64 )
-   use doc || myconf+=( --disable-build-html )
-   # use examples && myconf+=( --enable-examples )
-   use gcrypt || myconf+=( --disable-libgcrypt-linking )
-   use gpg || myconf+=( --disable-gpgme-linking )
-   use lzo || myconf+=( 

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

2017-06-23 Thread Robin H. Johnson
commit: b482ac279c45684d900f9c90ff01d48f083f2518
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jun 23 22:17:00 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 22:17:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b482ac27

sys-kernel/genkernel: bump, now with added debug & dropbear SSH.

Package-Manager: portage-2.3.6

 sys-kernel/genkernel/Manifest |   1 +
 sys-kernel/genkernel/genkernel-3.5.1.0.ebuild | 164 ++
 2 files changed, 165 insertions(+)

diff --git a/sys-kernel/genkernel/Manifest b/sys-kernel/genkernel/Manifest
index 51816fa8aa9..bc1dd519873 100644
--- a/sys-kernel/genkernel/Manifest
+++ b/sys-kernel/genkernel/Manifest
@@ -7,6 +7,7 @@ DIST genkernel-3.4.49.2.tar.bz2 266427 SHA256 
62ade4f83cefc2278e1dc7cf1456974b03
 DIST genkernel-3.4.52.3.tar.xz 282976 SHA256 
7873c7ff94f3a36f2c71f4915e82b92afd16f1ecd29af290c5d3e8d300857bf5 SHA512 
a68b0149b9a69f59ab3e8d772f35f12643b9500c0c684d4824ca1f3c669b0ea01989a55643cd5b413f35d6fff284cd5ede7183971e202b3788caeb399259191f
 WHIRLPOOL 
6212b7df42755784ade2741150e7093c3dea440cc89897991985fb867d46a05b56931d1a7b083f141fd71ffe96237b1cd26d53ce4e35a155f28508a8e131c03f
 DIST genkernel-3.4.52.4.tar.xz 284064 SHA256 
3a2fd217c4817f4b8a4a1bef7051c373f10fddd6983125b61050a134c4a78c2a SHA512 
2dcdf2acb19c868ea7bfd5a0f9c7c3b179ac0f9f31b74306641dd8a1e8b076f5122e60a96c006e20f634e9e540d51723ef94bf91d8e28217dbb2159ff4d896dc
 WHIRLPOOL 
92ec9850ec67e3b227dc8689a494fb31554872ad772fdfdb152fe2033fcaff9c34669b3a76806171bb3971e34e2ea63d118ab268220d18669b298574e976edda
 DIST genkernel-3.5.0.8.tar.xz 287876 SHA256 
17f5722666c1e9eaa40dde198b9a498cfd336d7b7e525ce94c25b404573ba2f4 SHA512 
92014ef2af4e52b20647fee344eecd91c943750e0095a552615367229eff875ee6fd70c6bf256d79a8c04cab6f6ade7b669f1cca435cd5a0faacdccd524ac648
 WHIRLPOOL 
ea173a208c943d41ce1449118930091a767584eade89d2b9f8288fa92405a5e83270c919e35e3a0a68e8804468bc32a2cccf4d9ecf6d9fe3850f83465413a26f
+DIST genkernel-3.5.1.0.tar.xz 292388 SHA256 
1c84e405ed839ed7f3702a0685454fa374ccdb9f38f13ea1e71b06b77f019f59 SHA512 
a4b13101b1bc6e3bc24077b2ac67e0e973f65b95a663ef84e48f5ecc293d1f3895c0c7ef30b0686dbb6fdc8a50a2a5f1a347f28aa0b536912ac194c8bc28
 WHIRLPOOL 
666b17a220f9c897230b812eea3a69e6c0d68d07d34273b1d76b4f46cc10b61d9cb286d8b4256a6b5764691e5aebeb35c5c8bcf6b9f40bc1b9fb932939147726
 DIST gnupg-1.4.11.tar.bz2 3407075 SHA256 
d18ceeac16e554a501170b9bfde611625252d0fe9448685a69c93bf149ee6ef6 SHA512 
97e7b8b0f972cc2f7cabdb0e013cbee1c33e7d48407d040cca5c2037e32abe1c2100194be7d3b569d4f05eb16b24c205a5b83f06718f0241f8d4ee174f1c37ae
 WHIRLPOOL 
6f914627e2f527f6616e1f99d2ae06942b734f839d03a45ffa45bf67516a81d58f89e6a85612cf8e5fd83be04ab0b6bc2da8f81114143dad7523e5fcea62366b
 DIST mdadm-3.1.5.tar.bz2 292709 SHA256 
1d547d0b36a88968e9fc9fb08b0e64de54a53f3d1cfa3656a9f319180f0727d3 SHA512 
6fcf426d63ede01f99ebeee9be686857a04f9b601b37f76722c091ae2999b3ff66fdba52d47323f27900553125a897fc1815fe7be850aa9cc991dd5fa91a5d5d
 WHIRLPOOL 
003595a1338b3a95ccc176b07a31f26dd5fda9460f2c4d3513b9ca09cdab1c91dab05f8914f2354047fccff42c4dcfc6131a383c84467c2838ac7b1af2f9bef8
 DIST open-iscsi-2.0-872.tar.gz 900081 SHA256 
37753697a170223ac02a292b3a23a315a3c747b490c42480e4057b676c9f8d4f SHA512 
d26c87772b0b1d13a8bd2eea9db86b3c61af83efbb788116c01ab6a914ff3de634a7b1bff56c1161b28965315543edbfc2735b6c7fbd3f7797471fde63b69cc0
 WHIRLPOOL 
4b04c8481c6c5f094ca6f7761828006a84eda7a22a6b3a4d65e7b3e4b39e73ef839ec710b491e7ca731b047fa8c74a9c03a17e85519a62dfbeb95222cfbdd935

diff --git a/sys-kernel/genkernel/genkernel-3.5.1.0.ebuild 
b/sys-kernel/genkernel/genkernel-3.5.1.0.ebuild
new file mode 100644
index 000..3a25950952f
--- /dev/null
+++ b/sys-kernel/genkernel/genkernel-3.5.1.0.ebuild
@@ -0,0 +1,164 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+# genkernel--> latest Git branch "master"
+# genkernel-VERSION -> normal genkernel release
+
+EAPI=5 # approved 2012.09.11, required by all profiles since 2014.03.12
+
+VERSION_BUSYBOX='1.26.0'
+VERSION_DMRAID='1.0.0.rc16-3'
+VERSION_MDADM='3.1.5'
+VERSION_FUSE='2.8.6'
+VERSION_ISCSI='2.0-872'
+VERSION_LVM='2.02.88'
+VERSION_UNIONFS_FUSE='0.24'
+VERSION_GPG='1.4.11'
+
+RH_HOME="ftp://sourceware.org/pub;
+DM_HOME="https://people.redhat.com/~heinzm/sw/dmraid/src;
+BB_HOME="https://busybox.net/downloads;
+
+COMMON_URI="${DM_HOME}/dmraid-${VERSION_DMRAID}.tar.bz2
+   ${DM_HOME}/old/dmraid-${VERSION_DMRAID}.tar.bz2
+   
mirror://kernel/linux/utils/raid/mdadm/mdadm-${VERSION_MDADM}.tar.bz2
+   ${RH_HOME}/lvm2/LVM2.${VERSION_LVM}.tgz
+   ${RH_HOME}/lvm2/old/LVM2.${VERSION_LVM}.tgz
+   ${BB_HOME}/busybox-${VERSION_BUSYBOX}.tar.bz2
+   
http://www.open-iscsi.org/bits/open-iscsi-${VERSION_ISCSI}.tar.gz
+   mirror://sourceforge/fuse/fuse-${VERSION_FUSE}.tar.gz
+  

[gentoo-commits] proj/genkernel: New tag: v3.5.1.0

2017-06-23 Thread Robin H. Johnson
commit: 
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 22:15:49 2017 +

New tag: v3.5.1.0




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

2017-06-23 Thread Robin H. Johnson
commit: f882701c35d8bb71ab00e4e99ecbcfc51849859f
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jun 23 22:15:07 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 22:15:07 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=f882701c

Bump version to 3.5.1.0

Signed-off-by: Robin H. Johnson  gentoo.org>

 genkernel | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/genkernel b/genkernel
index 7c0184c..5cec19c 100755
--- a/genkernel
+++ b/genkernel
@@ -2,7 +2,7 @@
 # $Id$
 
 PATH="${PATH}:/sbin:/usr/sbin"
-GK_V='3.5.1'
+GK_V='3.5.1.0'
 
 # Set the default for TMPDIR.  May be modified by genkernel.conf or the
 # --tempdir command line option.



[gentoo-commits] proj/genkernel: Tag deleted: v3.5.1

2017-06-23 Thread Robin H. Johnson
commit: 
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 22:14:45 2017 +

Tag deleted: v3.5.1




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

2017-06-23 Thread Robin H. Johnson
commit: 53f9b4f9fde23cfb1b678dab75a00d57956d18c8
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jun 23 21:58:29 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 21:58:29 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=53f9b4f9

Update release instructions

Signed-off-by: Robin H. Johnson  gentoo.org>

 HACKING | 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/HACKING b/HACKING
index d8b9f21..ed553f1 100644
--- a/HACKING
+++ b/HACKING
@@ -17,15 +17,16 @@ Testing things:
 
 Rolling a release:
 - Bump the version in the main genkernel file.
+- make dist # verify it can build.
 - git commit -s -a -m "Bump version to ${PV}"
-- make dist
 - git tag -s -a -m "Tag release v${PV}" v${PV}
+- make dist # Real tarball
 - git push ${REMOTE} master --tags
-- upload genkernel-${PV}.tar.bz2 to the hosting:
-scp genkernel-${PV}.tar.bz2 ${USER}@dev.gentoo.org:/space/distfiles-local/
+- upload genkernel-${PV}.tar.xz to the hosting:
+scp genkernel-${PV}.tar.xz ${USER}@dev.gentoo.org:/space/distfiles-local/
 - copy to portage's DISTDIR so you can bump the ebuild
   before the tarball hits distfile mirrors
-  - cp genkernel-${PV}.tar.bz2 /usr/portage/distfiles/
+  - cp genkernel-${PV}.tar.xz /usr/portage/distfiles/
 - Bump the ebuild
 - Propagate ebuild changes to the live ebuild
 diff genkernel-${OLD_PV}.ebuild genkernel-${NEW_PV}.ebuild | patch 
genkernel-.ebuild



[gentoo-commits] proj/genkernel: New tag: v3.5.1

2017-06-23 Thread Robin H. Johnson
commit: 
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 21:58:48 2017 +

New tag: v3.5.1




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

2017-06-23 Thread Robin H. Johnson
commit: ce6c65fdd112d4019d19b2b0668a69751feaf409
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jun 23 21:56:20 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 21:56:20 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ce6c65fd

Bump version to 3.5.1

Signed-off-by: Robin H. Johnson  gentoo.org>

 Makefile  | 2 +-
 genkernel | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/Makefile b/Makefile
index e2e5e50..e7f08a3 100644
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 #PACKAGE_VERSION = `/bin/fgrep GK_V= genkernel | sed 
"s/.*GK_V='\([^']\+\)'/\1/"`
-PACKAGE_VERSION = `git describe --tags`
+PACKAGE_VERSION = `git describe --tags |sed 's,^v,,g'`
 distdir = genkernel-$(PACKAGE_VERSION)
 MANPAGE = genkernel.8
 # Add off-Git/generated files here that need to be shipped with releases

diff --git a/genkernel b/genkernel
index 884d6e6..7c0184c 100755
--- a/genkernel
+++ b/genkernel
@@ -2,7 +2,7 @@
 # $Id$
 
 PATH="${PATH}:/sbin:/usr/sbin"
-GK_V='3.5.0.9'
+GK_V='3.5.1'
 
 # Set the default for TMPDIR.  May be modified by genkernel.conf or the
 # --tempdir command line option.



[gentoo-commits] repo/gentoo:master commit in: app-emulation/skopeo/, app-emulation/skopeo/files/

2017-06-23 Thread William Hubbs
commit: ea3aa51b57d560e10bc951aebb7c23f55073c695
Author: William Hubbs  gentoo  org>
AuthorDate: Fri Jun 23 21:55:44 2017 +
Commit: William Hubbs  gentoo  org>
CommitDate: Fri Jun 23 21:56:25 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3aa51b

app-emulation/skopeo: new package

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 app-emulation/skopeo/Manifest  |   1 +
 .../files/skopeo-0.1.22-make-ostree-optional.patch | 158 +
 app-emulation/skopeo/metadata.xml  |   8 ++
 app-emulation/skopeo/skopeo-0.1.22.ebuild  |  57 
 4 files changed, 224 insertions(+)

diff --git a/app-emulation/skopeo/Manifest b/app-emulation/skopeo/Manifest
new file mode 100644
index 000..cdca793499a
--- /dev/null
+++ b/app-emulation/skopeo/Manifest
@@ -0,0 +1 @@
+DIST skopeo-0.1.22.tar.gz 1921286 SHA256 
a2090f84e5318752bf506fd7aa6d8420285726c32dcbac3ab735ec5762104692 SHA512 
10ed4e577b07f672540ff86774b5c5b6b7531765fd36313b9e4e6bf974840fee98ede193014977c381b96875cb9147307ee690f4fc8dd4f97d87681d7fa2f4f2
 WHIRLPOOL 
94c88b784c8a7186ff6abd5d4a1f2c2307fb9c29c98f256a28a5d066546afc7cbb0c848aec77c8835c63f5c62628a8e983d25f4e63e3c6bfa5f4322dd9420522

diff --git 
a/app-emulation/skopeo/files/skopeo-0.1.22-make-ostree-optional.patch 
b/app-emulation/skopeo/files/skopeo-0.1.22-make-ostree-optional.patch
new file mode 100644
index 000..1e81d8bff34
--- /dev/null
+++ b/app-emulation/skopeo/files/skopeo-0.1.22-make-ostree-optional.patch
@@ -0,0 +1,158 @@
+From a49f22efd84d1cc656242319cca27cbdf8852e05 Mon Sep 17 00:00:00 2001
+From: William Hubbs 
+Date: Fri, 23 Jun 2017 12:34:25 -0500
+Subject: [PATCH] make ostree optional
+
+---
+ vendor/github.com/containers/image/README.md   | 14 ++---
+ .../transports/alltransports/alltransports.go  |  2 +-
+ .../image/transports/alltransports/ostree.go   |  8 +
+ .../image/transports/alltransports/ostree_stub.go  |  9 ++
+ .../github.com/containers/image/transports/stub.go | 36 ++
+ .../containers/image/transports/stub_test.go   | 18 +++
+ 6 files changed, 82 insertions(+), 5 deletions(-)
+ create mode 100644 
vendor/github.com/containers/image/transports/alltransports/ostree.go
+ create mode 100644 
vendor/github.com/containers/image/transports/alltransports/ostree_stub.go
+ create mode 100644 vendor/github.com/containers/image/transports/stub.go
+ create mode 100644 vendor/github.com/containers/image/transports/stub_test.go
+
+diff --git a/vendor/github.com/containers/image/README.md 
b/vendor/github.com/containers/image/README.md
+index ca8afd4..8e812bb 100644
+--- a/vendor/github.com/containers/image/README.md
 b/vendor/github.com/containers/image/README.md
+@@ -51,14 +51,20 @@ Ensure that the dependencies documented [in 
vendor.conf](https://github.com/cont
+ are also available
+ (using those exact versions or different versions of your choosing).
+ 
+-This library, by default, also depends on the GpgME C library. Either install 
it:
++This library, by default, also depends on the GpgME and libostree C 
libraries. Either install them:
+ ```sh
+-Fedora$ dnf install gpgme-devel libassuan-devel
++Fedora$ dnf install gpgme-devel libassuan-devel libostree-devel
+ macOS$ brew install gpgme
+ ```
+-or use the `containers_image_openpgp` build tag (e.g. using `go build -tags 
…`)
+-This will use a Golang-only OpenPGP implementation for signature verification 
instead of the default cgo/gpgme-based implementation;
++or use the build tags described below to avoid the dependencies (e.g. using 
`go build -tags …`)
++
++### Supported build tags
++
++- `containers_image_openpgp`: Use a Golang-only OpenPGP implementation for 
signature verification instead of the default cgo/gpgme-based implementation;
+ the primary downside is that creating new signatures with the Golang-only 
implementation is not supported.
++- `containers_image_ostree_stub`: Instead of importing `ostree:` transport in 
`github.com/containers/image/transports/alltransports`, use a stub which 
reports that the transport is not supported. This allows building the library 
without requiring the `libostree` development libraries.
++
++  (Note that explicitly importing `github.com/containers/image/ostree` will 
still depend on the `libostree` library, this build tag only affects generic 
users of …`/alltransports`.)
+ 
+ ## Contributing
+ 
+diff --git 
a/vendor/github.com/containers/image/transports/alltransports/alltransports.go 
b/vendor/github.com/containers/image/transports/alltransports/alltransports.go
+index dc70fad..dd80b7f 100644
+--- 
a/vendor/github.com/containers/image/transports/alltransports/alltransports.go
 
b/vendor/github.com/containers/image/transports/alltransports/alltransports.go
+@@ -12,7 +12,7 @@ import (
+   _ "github.com/containers/image/docker/daemon"
+   _ "github.com/containers/image/oci/layout"
+   _ 

[gentoo-commits] repo/gentoo:master commit in: net-fs/samba/

2017-06-23 Thread Matt Turner
commit: 602a5ac8c27d4cbe020fc872e25c8166ba1ff284
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Jun 23 21:51:19 2017 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Jun 23 21:55:52 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=602a5ac8

net-fs/samba: Use waf-utils_src_compile in order to get parallel builds

The 4.6 versions already do this.

Patch by Sergei Trofimovich  gentoo.org>

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

 net-fs/samba/samba-4.5.10.ebuild | 4 
 1 file changed, 4 insertions(+)

diff --git a/net-fs/samba/samba-4.5.10.ebuild b/net-fs/samba/samba-4.5.10.ebuild
index 4eb8cea8c24..dce3a54883c 100644
--- a/net-fs/samba/samba-4.5.10.ebuild
+++ b/net-fs/samba/samba-4.5.10.ebuild
@@ -211,6 +211,10 @@ multilib_src_configure() {
waf-utils_src_configure ${myconf[@]}
 }
 
+multilib_src_compile() {
+   waf-utils_src_compile
+}
+
 multilib_src_install() {
waf-utils_src_install
 



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

2017-06-23 Thread Robin H. Johnson
commit: ef68d550d6de4d71098116436b993f4dac27f529
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jun 23 21:52:30 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 21:52:30 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=ef68d550

Bump version to 3.5.0.9

Signed-off-by: Robin H. Johnson  gentoo.org>

 genkernel | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/genkernel b/genkernel
index 444c559..884d6e6 100755
--- a/genkernel
+++ b/genkernel
@@ -2,7 +2,7 @@
 # $Id$
 
 PATH="${PATH}:/sbin:/usr/sbin"
-GK_V='3.5.0.8'
+GK_V='3.5.0.9'
 
 # Set the default for TMPDIR.  May be modified by genkernel.conf or the
 # --tempdir command line option.



[gentoo-commits] proj/genkernel:master commit in: defaults/

2017-06-23 Thread Robin H. Johnson
commit: 5eaf116d571a17fdc0bd14fdb6761557bc4fa763
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Fri Jun 23 21:51:16 2017 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 21:52:20 2017 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=5eaf116d

linuxrc: show why switch_root might fail, and make related code more readable.

Signed-off-by: Robin H. Johnson  gentoo.org>

 defaults/initrd.scripts |  5 +
 defaults/linuxrc| 19 ---
 2 files changed, 21 insertions(+), 3 deletions(-)

diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
index d00e1c7..efc6421 100644
--- a/defaults/initrd.scripts
+++ b/defaults/initrd.scripts
@@ -567,6 +567,7 @@ findnfsmount() {
else
bad_msg "The DHCP Server did not send a valid 
root-path."
bad_msg "Please check your DHCP setup, or 
provide a nfsroot=<...> parameter."
+   return 1
fi
fi
 
@@ -590,6 +591,7 @@ findnfsmount() {
REAL_ROOT="/dev/nfs"
else
bad_msg "NFS Mounting failed. Is the 
path corrent ?"
+   return 1
fi
else
good_msg "Attempting to mount NFS root on 
${NFSROOT} with options ${NFSOPTIONS}"
@@ -599,12 +601,15 @@ findnfsmount() {
REAL_ROOT="/dev/nfs"
else
bad_msg "NFS Mounting failed. Is the 
path correct ?"
+   return 1
fi
# FIXME: Need to start portmap and the other 
rpc daemons in
# order to remount rw.
fi
 
fi
+   else # IP / DHCP
+   return 1
fi
 }
 

diff --git a/defaults/linuxrc b/defaults/linuxrc
index 66f7bd9..b227ed2 100644
--- a/defaults/linuxrc
+++ b/defaults/linuxrc
@@ -640,6 +640,7 @@ do
# Try to mount the device as ${NEW_ROOT}
if [ "${REAL_ROOT}" = '/dev/nfs' ]; then
findnfsmount
+   mountret=$?
else
# If $REAL_ROOT is a symlink
# Resolve it like util-linux mount does
@@ -648,15 +649,17 @@ do
if [ "${REAL_ROOTFLAGS}" = '' ]; then
good_msg "Using mount -t ${ROOTFSTYPE} -o 
${MOUNT_STATE} ${REAL_ROOT} ${NEW_ROOT}"
mount -t ${ROOTFSTYPE} -o ${MOUNT_STATE} 
${REAL_ROOT} ${NEW_ROOT}
+   mountret=$?
else
good_msg "Using mount -t ${ROOTFSTYPE} -o 
${MOUNT_STATE},${REAL_ROOTFLAGS} ${REAL_ROOT} ${NEW_ROOT}"
mount -t ${ROOTFSTYPE} -o 
${MOUNT_STATE},${REAL_ROOTFLAGS} ${REAL_ROOT} ${NEW_ROOT}
+   mountret=$?
fi
fi
 
# If mount is successful break out of the loop
# else not a good root and start over.
-   if [ "$?" = '0' ]
+   if [ "$mountret" = '0' ]
then
if [ -d ${NEW_ROOT}/dev -a -x 
"${NEW_ROOT}${REAL_INIT:-/sbin/init}" ] || [ "${REAL_ROOT}" = "/dev/nfs" ]
then
@@ -1037,12 +1040,22 @@ fi
 rundebugshell "before entering switch_root"
 
 # init_opts is set in the environment by the kernel when it parses the command 
line
-exec /sbin/switch_root -c "/dev/console" "${CHROOT}" 
"${REAL_INIT:-/sbin/init}" ${init_opts}
+init=${REAL_INIT:-/sbin/init}
+if ! mountpoint "${CHROOT}"; then
+   bad_msg "$CHROOT was not a mountpoint"
+elif [ ! -x ${CHROOT}/${init} ]; then
+   bad_msg "init=${init} does not exist in the rootfs!"
+elif [ $$ != 1 ]; then
+   bad_msg "PID was not 1! switch_root would fail"
+else
+   good_msg "Switching to real root: /sbin/switch_root -c /dev/console 
${CHROOT} ${init} ${init_opts}"
+   exec /sbin/switch_root -c "/dev/console" "${CHROOT}" "${init}" 
${init_opts}
+fi
 
 # If we get here, something bad has happened
 splash 'verbose'
 
-bad_msg "A fatal error has occured since ${REAL_INIT:-/sbin/init} did not"
+bad_msg "A fatal error has occured since ${init} did not"
 bad_msg "boot correctly. Trying to open a shell..."
 
 exec /bin/bash



[gentoo-commits] proj/genkernel: New tag: v3.5.0.9

2017-06-23 Thread Robin H. Johnson
commit: 
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Fri Jun 23 21:53:16 2017 +

New tag: v3.5.0.9




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

2017-06-23 Thread Michał Górny
commit: 30728decca2de66d5b7ac79ebfc279c405b9daf6
Author: José Pekkarinen  gmail  com>
AuthorDate: Fri Jun 23 15:19:04 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 23 20:12:32 2017 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=30728dec

repositories: Add foxiverlay

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

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

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 1ada8e6..f282932 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1758,6 +1758,19 @@ FIN
 https://github.com/foux/fouxlay/commits/master.atom
   
   
+foxiverlay
+Personal overlay for unofficial 
ebuilds
+https://github.com/PikkuJose/foxiverlay
+
+  koali...@gmail.com
+  José Pekkarinen
+
+https://github.com/PikkuJose/foxiverlay.git
+git://github.com/PikkuJose/foxiverlay.git
+g...@github.com:PikkuJose/foxiverlay.git
+https://github.com/PikkuJose/foxiverlay/commits/master.atom
+  
+  
 frabjous
 Frabjous! Yet another personal Gentoo 
overlay
 https://github.com/csmk/frabjous



[gentoo-commits] repo/gentoo:master commit in: dev-ada/gprbuild/files/, dev-ada/gprbuild/

2017-06-23 Thread Alfredo Tupone
commit: 6ee3ef271a151c6e2351ffa3ec38d49f1b30cdcf
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Jun 23 19:39:54 2017 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Jun 23 19:41:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ee3ef27

dev-ada/gprbuild: Add compiler description file

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ada/gprbuild/files/gprbuild-2017.xml | 85 
 dev-ada/gprbuild/gprbuild-2017.ebuild|  9 
 2 files changed, 94 insertions(+)

diff --git a/dev-ada/gprbuild/files/gprbuild-2017.xml 
b/dev-ada/gprbuild/files/gprbuild-2017.xml
new file mode 100644
index 000..9e1e47b512e
--- /dev/null
+++ b/dev-ada/gprbuild/files/gprbuild-2017.xml
@@ -0,0 +1,85 @@
+
+
+  
+GNAT-@VER@
+gnatls-@VER@
+
+  ${PREFIX}gnatls-@VER@ -v --version
+  
+
+Ada
+
+  ${PREFIX}gcc-@VER@ -v
+  
+
+
+   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/adalib/
+   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/ada_object_path
+   \.\./lib/gcc(-lib)?/$TARGET/$gcc_version/rts-(.*)/adalib/
+   \.\./$TARGET/lib/gnat/(.*)/adalib/
+
+
+  ${PREFIX}gcc-@VER@ -dumpmachine
+  
+
+  
+
+  
+
+  
+
+   
+   package Compiler is
+  for Driver   ("Ada") use 
"${PATH(ada)}${PREFIX(ada)}gcc-@VER@";
+  for Language_Kind("Ada") use "unit_based";
+  for Dependency_Kind  ("Ada") use "ALI_File";
+  for Leading_Required_Switches("Ada") use
+ ("-c", "-x", "ada", "-gnatA")
+  Compiler'Leading_Required_Switches ("Ada");
+  for Mapping_File_Switches("Ada") use ("-gnatem=");
+  for Mapping_Spec_Suffix  ("Ada") use "%s";
+  for Mapping_Body_Suffix  ("Ada") use "%b";
+  for Config_File_Switches ("Ada") use ("-gnatec=");
+  for Include_Path_File ("Ada") use "ADA_PRJ_INCLUDE_FILE";
+  for Multi_Unit_Switches ("Ada") use ("-gnateI");
+  for Multi_Unit_Object_Separator ("Ada") use "~";
+  for Config_Body_File_Name ("Ada") use
+   "pragma Source_File_Name_Project (%u, Body_File_Name => ""%f"");";
+  for Config_Spec_File_Name ("Ada") use
+   "pragma Source_File_Name_Project (%u, Spec_File_Name => ""%f"");";
+  for Config_Body_File_Name_Index ("Ada") use
+   "pragma Source_File_Name_Project (%u, Body_File_Name => ""%f"", 
Index => %i);";
+  for Config_Spec_File_Name_Index ("Ada") use
+   "pragma Source_File_Name_Project (%u, Spec_File_Name => ""%f"", 
Index => %i);";
+  for Config_Body_File_Name_Pattern ("Ada") use
+   "pragma Source_File_Name_Project " 
+   "  (Body_File_Name  => ""*%b""," 
+   "   Casing  => %c," 
+   "   Dot_Replacement => ""%d"");";
+  for Config_Spec_File_Name_Pattern ("Ada") use
+   "pragma Source_File_Name_Project " 
+   "  (Spec_File_Name  => ""*%s""," 
+   "   Casing  => %c," 
+   "   Dot_Replacement => ""%d"");";
+  for Config_File_Unique("Ada") use "False";
+  for PIC_Option  ("Ada") use ("-fPIC");
+  for Leading_Required_Switches ("Ada") use
+Compiler'Leading_Required_Switches ("Ada")  
("--RTS=${RUNTIME_DIR(ada)}");
+   end Compiler;
+
+   package Binder is
+  for Objects_Path_File ("Ada") use "ADA_PRJ_OBJECTS_FILE";
+  for Driver ("Ada") use
+  "${GPRCONFIG_PREFIX}libexec/gprbuild/gprbind";
+  for Switches ("Ada") use ("--gnatbind_path=gnatbind-@VER@");
+  for Required_Switches ("Ada") use
+Binder'Required_Switches ("Ada")  ("--RTS=${RUNTIME_DIR(ada)}");
+   end Binder;
+
+   for Toolchain_Version ("Ada") use "GNAT ${VERSION(ada)}";
+
+for Runtime_Dir   ("Ada") use "${RUNTIME_DIR(ada)}";
+   for Library_Encapsulated_Supported use "true";
+   
+  
+

diff --git a/dev-ada/gprbuild/gprbuild-2017.ebuild 
b/dev-ada/gprbuild/gprbuild-2017.ebuild
index 3165385d33c..0f7b634ec96 100644
--- a/dev-ada/gprbuild/gprbuild-2017.ebuild
+++ b/dev-ada/gprbuild/gprbuild-2017.ebuild
@@ -49,6 +49,13 @@ pkg_setup() {
fi
 }
 
+src_prepare() {
+   gnatbase=$(basename ${GCC})
+   GCC_PV=${gnatbase#*gcc-}
+   sed -e "s:@VER@:${GCC_PV}:g" "${FILESDIR}"/${P}.xml > gnat-${GCC_PV}.xml
+   default
+}
+
 src_configure() {
emake prefix="${D}"usr setup
 }
@@ -108,5 +115,7 @@ src_install() {
done
rm "${D}"usr/doinstall || die
fi
+   insinto /usr/share/gprconfig
+   doins gnat-${GCC_PV}.xml
einstalldocs
 }



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

2017-06-23 Thread Matt Thode
commit: befa2efebc8f7e38389eecc84082a0ec4b17c6cd
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 19:27:09 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 19:40:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=befa2efe

app-admin/puppet-agent: bup 1.10.4

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-admin/puppet-agent/Manifest   |   2 +
 app-admin/puppet-agent/puppet-agent-1.10.4.ebuild | 111 ++
 2 files changed, 113 insertions(+)

diff --git a/app-admin/puppet-agent/Manifest b/app-admin/puppet-agent/Manifest
index 902b83d08d2..a039691b664 100644
--- a/app-admin/puppet-agent/Manifest
+++ b/app-admin/puppet-agent/Manifest
@@ -2,5 +2,7 @@ DIST puppet-agent_1.10.0-1xenial_amd64.deb 16335972 SHA256 
06549935539c28cba369e
 DIST puppet-agent_1.10.0-1xenial_i386.deb 16086120 SHA256 
6f491fb46c40be4a57d95e284116f1056779cad8a20ee31be5f27f02e720f2b0 SHA512 
80f3ae5d0f43d4a9f73c578e6b07ce503d995133c45a63fc37395e9f3a3b60cd9628a071d0c00a11642afa531f732e42ec24d9823224257aeebbe2c6a0dd2177
 WHIRLPOOL 
2a41098ae48ceec4ba8d38c67fddccbea6860c4a1275236be4de002344c5f5fd765e9c51c59cf112e03ec631559680703d2d3228e0e57d306ec9078637a45946
 DIST puppet-agent_1.10.1-1xenial_amd64.deb 16276180 SHA256 
e0dc22258c2f23302ed2f1f5dd024d9e780a7d3dc49646c24afd2560eb45a9e7 SHA512 
308504915621c4ae28780e32877e672067a13f9bd6b5e2dac35bdb4ab62596099eaddd8da371cc97edb0ff15419d7f2fceda7aebd6e524198cc7d3ddfe3f15db
 WHIRLPOOL 
a40dc8a531af746c504c9fc0eabded6c8f06550d9b767a4c40e799aa75ddffc9464dca768b8544def89344ec4a9331e1f315e3d318668747b0c46b6415477a89
 DIST puppet-agent_1.10.1-1xenial_i386.deb 16205078 SHA256 
22cdd5e41c82e63ae038f4c96ed8f19218f3eda600f1f6149eca9b1e7b60a560 SHA512 
be310ae8db1bf1670b480a382866feb2fc247e69f0a4c26aac2b8f67f1b43984b581809ccfc1e0182fe71895aca8dadf20f6ff7b99506e84b787a62555e547c3
 WHIRLPOOL 
50563a4a85200e675d408e8a5618763821e7bf408f65172dadcf1b33ba3f4b9930bfaece3a21d744a8df513f9b91cce1f9ed45d770b1e9601e0d84642755e3b7
+DIST puppet-agent_1.10.4-1xenial_amd64.deb 16157840 SHA256 
4e6ec3496e9d30b06b2064f066465ae268765760c0251390292e1fe2c0b5120e SHA512 
25c1be6ebfdd2b2c9f8d10347c681af1cb7265b6d95f7e573f31c4b580bf5df046945cdf9d87841d792233b7227db0c46ae348bf6e6ff18b44f6f746794a3627
 WHIRLPOOL 
7fd01b43f627647960ee588eb20a8a8d35223e711d295f83a283d13d896bb93c251f51a20f082bdcb8830f4508ba28cdf7c0cd4d8e73e3f3c5cd15fd8ac8d071
+DIST puppet-agent_1.10.4-1xenial_i386.deb 16053584 SHA256 
ef42df8facaffb47bd926842886b988276111b67a887619873d146c0dee8f55c SHA512 
b2e519b2a24f40a8d099b2fa8690a706d9105693affad70e6f38c3b4cc3539044bc805462c45b828147349bfbdc04859e8563fca2588e3fb538de3798df8f262
 WHIRLPOOL 
51e5faed153d8aa8ee4b1acadc66f8be5e60534faad28cdf37504e91bdbd60441859cb00e2a8746c96c22cd88de3c58c8e188b2abc699758e0c3a02f01d480e8
 DIST puppet-agent_1.9.3-1xenial_amd64.deb 16045528 SHA256 
db73567754514595b729c299bea34289fbf108282dcc3ca2b2bda8946b1a9b01 SHA512 
1142bb008569ebd26e70c89705539eee89ef1d886fee9c18ee19b563ba280c96295a77b30af2c3b149e2e8fb5cd953f55300d3c3bea1d63cb4e6a4c4103a1cfb
 WHIRLPOOL 
193d8ece0997c66f0e0a0c70df6e41243fabbda7bdc944f1c9940476e7cfa01bbff80e739cd5e3b95d4027b8d13b3186823b2035251c57c69a7a2e188c4a5801
 DIST puppet-agent_1.9.3-1xenial_i386.deb 16072786 SHA256 
eb9476d55cc769608a3b5a3a971a4c005ae1042c0f3f3f5748b14aa40b6251ea SHA512 
b9bb7579fc3106b0b701ef2cdac9dc72a5e663b360e7e10816698fed85337c9aa0b77b392353d70682f2cea057d52ebf1c356474e9ec6ccd8e85302d938666af
 WHIRLPOOL 
2acdd44be0fa1665be34f10d3967185acf49388460af6291ac9cb53c7296af78630d82e6c3fce456bdfd7fbd06d1956d9c592ad17dc0f1cf2ee0aa9c008965ef

diff --git a/app-admin/puppet-agent/puppet-agent-1.10.4.ebuild 
b/app-admin/puppet-agent/puppet-agent-1.10.4.ebuild
new file mode 100644
index 000..669892ac4a9
--- /dev/null
+++ b/app-admin/puppet-agent/puppet-agent-1.10.4.ebuild
@@ -0,0 +1,111 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+inherit eutils systemd unpacker user
+
+DESCRIPTION="general puppet client utils along with mcollective hiera and 
facter"
+HOMEPAGE="https://puppetlabs.com/;
+SRC_BASE="http://apt.puppetlabs.com/pool/xenial/PC1/${PN:0:1}/${PN}/${PN}_${PV}-1xenial;
+SRC_URI="
+   amd64? ( ${SRC_BASE}_amd64.deb )
+   x86?   ( ${SRC_BASE}_i386.deb )
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="experimental puppetdb selinux"
+RESTRICT="strip"
+
+CDEPEND="!app-admin/augeas
+   !app-admin/mcollective
+   !app-admin/puppet
+   !dev-ruby/hiera
+   !dev-ruby/facter
+   !app-emulation/virt-what"
+
+DEPEND="
+   ${CDEPEND}"
+RDEPEND="${CDEPEND}
+   app-portage/eix
+   sys-apps/dmidecode
+   sys-libs/glibc
+   >=sys-libs/readline-6.0
+   =dev-ruby/puppetdb-termini-3.1.0 )"
+
+S=${WORKDIR}
+
+QA_PREBUILT="
+   /opt/puppetlabs/puppet
+   

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

2017-06-23 Thread Matt Thode
commit: caa3f3605321518d2458ee90fcb389572b844368
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 19:29:38 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 19:40:10 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caa3f360

dev-python/os-vif: 1.4.1 stable amd64 and x86

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/os-vif/Manifest|  1 -
 dev-python/os-vif/os-vif-1.4.0.ebuild | 39 ---
 dev-python/os-vif/os-vif-1.4.1.ebuild |  2 +-
 3 files changed, 1 insertion(+), 41 deletions(-)

diff --git a/dev-python/os-vif/Manifest b/dev-python/os-vif/Manifest
index 08678ca6557..f11836a49d0 100644
--- a/dev-python/os-vif/Manifest
+++ b/dev-python/os-vif/Manifest
@@ -1,3 +1,2 @@
 DIST os_vif-1.2.1.tar.gz 41006 SHA256 
57d5b306a63bcc7fde7dcab7b15929010ae03863c983368b749f97106a2ee9e5 SHA512 
9eb8e2498e5bf4d1a96567fe4bbf0f9f95682db19c0123ec509e6f8f5871a340c529a347fdd8ee29c4981917e8f35396e19770da47f9265500ce4b4567ab6694
 WHIRLPOOL 
556d51093179f6125840b78ddf653a8da548f52e2b30bd4c2e64c04c540c93365a9332daee5f1c5cd65706bbafa69fde6462ee9855028d9d75f673969e13560d
-DIST os_vif-1.4.0.tar.gz 49279 SHA256 
c11562f6d497436aff315c2121724a01fb03dc30eb475e1ad194096e1a809df3 SHA512 
829f3bf912baa4480073d1587c08c007908741fc00bacd564a675d03e12732abd453067de6594f6050fa65c196dc44de8abde683e5d4a0275bdf5d0bb9728efe
 WHIRLPOOL 
595e9486d155d1030019574ec13925e46c0cf552175bf53b34dd618f4623eabf4a78b9a935b424ddb5cb6d073fdd7daddb0d78639eeedea796bc6c2a3c26e981
 DIST os_vif-1.4.1.tar.gz 49559 SHA256 
88faa15436b17e59cbfefd425a34cc0ccef200fa8c65ea4a3645f237abf88307 SHA512 
e56e3138bdc6fa68ac7cc8efe792d198498fa6f14c5ce060f347042e46af9bd96692a93af332921693037e35f87f87e5f01053671309cb3ebd8dd3e45976dfff
 WHIRLPOOL 
ca1903d86e36e2b9ff78a3a2f9d8195bd5916f021d1d9dead8ccb2191465d7d639878db41b3a15592dc5b96eaaf0c6982594cd56fd045b1f08826d9ae3050d4e

diff --git a/dev-python/os-vif/os-vif-1.4.0.ebuild 
b/dev-python/os-vif/os-vif-1.4.0.ebuild
deleted file mode 100644
index ae6a79b6b1e..000
--- a/dev-python/os-vif/os-vif-1.4.0.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="OpenStack Cinder brick library for managing local volume attaches"
-HOMEPAGE="https://github.com/openstack/os-vif;
-SRC_URI="mirror://pypi/${PN:0:1}/os_vif/os_vif-${PV}.tar.gz"
-S="${WORKDIR}/os_vif-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-CDEPEND="
-   >=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}"
-RDEPEND="
-   ${CDEPEND}
-   >=dev-python/netaddr-0.7.13[${PYTHON_USEDEP}]
-   !~dev-python/netaddr-0.7.16[${PYTHON_USEDEP}]
-   >=dev-python/oslo-config-3.14.0[${PYTHON_USEDEP}]
-   !~dev-python/oslo-config-3.18.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-log-3.11.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-i18n-2.1.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-privsep-1.9.0[${PYTHON_USEDEP}]
-   >=dev-python/oslo-versionedobjects-1.13.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   >=dev-python/stevedore-1.17.1[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}

diff --git a/dev-python/os-vif/os-vif-1.4.1.ebuild 
b/dev-python/os-vif/os-vif-1.4.1.ebuild
index b50585d14ea..2a7cf98bd97 100644
--- a/dev-python/os-vif/os-vif-1.4.1.ebuild
+++ b/dev-python/os-vif/os-vif-1.4.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/os_vif-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE=""
 
 CDEPEND="



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

2017-06-23 Thread Matt Thode
commit: 3f8e43a48a83f2e5d7b8a9fb2b88419f61dc2235
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 18:48:29 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 19:40:04 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f8e43a4

dev-libs/leatherman: 1.0.0 bup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-libs/leatherman/Manifest|  1 +
 dev-libs/leatherman/leatherman-1.0.0.ebuild | 49 +
 2 files changed, 50 insertions(+)

diff --git a/dev-libs/leatherman/Manifest b/dev-libs/leatherman/Manifest
index 01284cce576..624acf6cd80 100644
--- a/dev-libs/leatherman/Manifest
+++ b/dev-libs/leatherman/Manifest
@@ -1,2 +1,3 @@
 DIST leatherman-0.10.1.tar.gz 423218 SHA256 
79b0eded49a02cb8f6ce6260ae39e3f1bdd2dc2c62c02f661308e04c08edb69e SHA512 
772c855f5ce1e38abe7186400d9a2c9663dcdc72bd0a822bbe171eed3d01e33a6ec2196d4f6f8f0895f309d031b1eb77ec188bd16b37e52b306fafb66d17
 WHIRLPOOL 
19ff51352c49e9fca7d45683117809cf916e15066015e40cbe2eb10e3eb4ae3e6d27595e8bae8291bd5fac874f845399b9c87a5fcc6b645dd174bf3c9b1a8229
 DIST leatherman-0.12.1.tar.gz 423884 SHA256 
656a49bdb1181932a8606b58dd19efd8cf428dd0ebbb4af619e3737f2131bdc0 SHA512 
f93b6b0f1051507469bcb8d964cd38b238a269bf277f3b540d4b0e53700012aba3eefc8dc5656a4158ad55b8570ebdb09f528fb586621972b847e10305912ce4
 WHIRLPOOL 
bb2ea8b025aa07b18c485e5d5b98cad035590cb2f13d59780b683a3c2003cfe676e160769e6293b185a8fb1c16c542e033fc10cb27ac6be705345d8c672b8e47
+DIST leatherman-1.0.0.tar.gz 423859 SHA256 
4bcb8eaf08429e9e62cc6fcbfc1f216bd2eff800f751dbacabbec7d714ed21a2 SHA512 
a4fabe53662e00b7be563b768b317d186204b66c0949d4cf0b3c9133462a95fe449758f474b04285803a786745d27c7327429dc80ff4d6d2b52b3973d3927ef0
 WHIRLPOOL 
3490566cdb495bb972fe4e906412184f4d16505fb7cd156588da68d1d08eb79014cdc65faeeb04f1646aef9d7054e84e087280c4a67607884a389ac85a2cffa2

diff --git a/dev-libs/leatherman/leatherman-1.0.0.ebuild 
b/dev-libs/leatherman/leatherman-1.0.0.ebuild
new file mode 100644
index 000..73b510ec315
--- /dev/null
+++ b/dev-libs/leatherman/leatherman-1.0.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+USE_RUBY="ruby21 ruby22"
+
+inherit cmake-utils multilib
+
+DESCRIPTION="A C++ toolkit"
+HOMEPAGE="https://github.com/puppetlabs/leatherman;
+SRC_URI="https://github.com/puppetlabs/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="debug test"
+KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="net-misc/curl"
+DEPEND=">=dev-libs/boost-1.54[nls]
+   net-misc/curl
+   >=sys-devel/gcc-4.8:*"
+
+src_prepare() {
+   sed -i 's/\-Werror\ //g' "cmake/cflags.cmake" || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_VERBOSE_MAKEFILE=ON
+   -DCMAKE_BUILD_TYPE=None
+   -DCMAKE_INSTALL_PREFIX=/usr
+   -DCMAKE_INSTALL_SYSCONFDIR=/etc
+   -DCMAKE_INSTALL_LOCALSTATEDIR=/var
+   )
+   if use debug; then
+   mycmakeargs+=(
+ -DCMAKE_BUILD_TYPE=Debug
+   )
+   fi
+   cmake-utils_src_configure
+}
+
+src_test() {
+   cmake-utils_src_test
+}
+
+src_install() {
+   cmake-utils_src_install
+}



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

2017-06-23 Thread Daniel Campbell
commit: afde8cea96633a7b9a9c95fa444b7277f04ab11b
Author: Daniel Campbell  gentoo  org>
AuthorDate: Fri Jun 23 19:38:09 2017 +
Commit: Daniel Campbell  gentoo  org>
CommitDate: Fri Jun 23 19:38:53 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afde8cea

dev-util/astyle: Respect CXX wrt bug 622068

Thanks to mgorny for finding the issue.

Gentoo-Bug: 622068
Gentoo-Bug-URL: https://bugs.gentoo.org/622068
Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/astyle/astyle-3.0.1.ebuild | 3 ++-
 dev-util/astyle/astyle-3.0.ebuild   | 3 ++-
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/dev-util/astyle/astyle-3.0.1.ebuild 
b/dev-util/astyle/astyle-3.0.1.ebuild
index e32b6189e88..91f94429fc5 100644
--- a/dev-util/astyle/astyle-3.0.1.ebuild
+++ b/dev-util/astyle/astyle-3.0.1.ebuild
@@ -38,7 +38,8 @@ src_configure() {
 }
 
 src_compile() {
-   emake -f ../build/gcc/Makefile -C src \
+   # ../build/clang/Makefile is identical except for CXX line.
+   emake CXX="$(tc-getCXX)" -f ../build/gcc/Makefile -C src \
${PN} \
shared \
$(usev java) \

diff --git a/dev-util/astyle/astyle-3.0.ebuild 
b/dev-util/astyle/astyle-3.0.ebuild
index 4392d25b3df..85544bdc8bb 100644
--- a/dev-util/astyle/astyle-3.0.ebuild
+++ b/dev-util/astyle/astyle-3.0.ebuild
@@ -38,7 +38,8 @@ src_configure() {
 }
 
 src_compile() {
-   emake -f ../build/gcc/Makefile -C src \
+   # ../build/clang/Makefile is identical except for CXX line.
+   emake CXX="$(tc-getCXX)" -f ../build/gcc/Makefile -C src \
${PN} \
shared \
$(usev java) \



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

2017-06-23 Thread Alexis Ballier
commit: 4f8498b894eb44f90ec99e97f8fc8fdd680d63c5
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 14:23:27 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f8498b8

dev-python/keyring: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/keyring/keyring-10.3.3.ebuild 
b/dev-python/keyring/keyring-10.3.3.ebuild
index 4af7c17e91f..8987c7c8a6b 100644
--- a/dev-python/keyring/keyring-10.3.3.ebuild
+++ b/dev-python/keyring/keyring-10.3.3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/k/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="PSF-2"
-KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 DEPEND="



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

2017-06-23 Thread Alexis Ballier
commit: 19a6970aab45aabd7a5a6843bf69b44940d83403
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 13:44:43 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19a6970a

dev-python/terminado: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/terminado/terminado-0.6.ebuild 
b/dev-python/terminado/terminado-0.6.ebuild
index e8e343a4503..cd3c4c796d6 100644
--- a/dev-python/terminado/terminado-0.6.ebuild
+++ b/dev-python/terminado/terminado-0.6.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 SLOT="0"
 LICENSE="BSD-2"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND="



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

2017-06-23 Thread Alexis Ballier
commit: 01122692352722016abdcf277f7bcdc1a5ddc16a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 13:26:42 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01122692

dev-libs/mathjax: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-libs/mathjax/mathjax-2.7.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/mathjax/mathjax-2.7.0.ebuild 
b/dev-libs/mathjax/mathjax-2.7.0.ebuild
index 7219eb3177b..39306114c92 100644
--- a/dev-libs/mathjax/mathjax-2.7.0.ebuild
+++ b/dev-libs/mathjax/mathjax-2.7.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/mathjax/MathJax/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples"
 
 RESTRICT="binchecks strip"



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

2017-06-23 Thread Alexis Ballier
commit: 4696fbf0ed784e541843c3a6e7a303dd391d82ce
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 13:40:30 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4696fbf0

dev-python/entrypoints: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/entrypoints/entrypoints-0.2.2.ebuild 
b/dev-python/entrypoints/entrypoints-0.2.2.ebuild
index c8f1ea0047b..2f1065d5e64 100644
--- a/dev-python/entrypoints/entrypoints-0.2.2.ebuild
+++ b/dev-python/entrypoints/entrypoints-0.2.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com//takluyver/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="doc test"
 
 DEPEND="



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

2017-06-23 Thread Alexis Ballier
commit: 56eb7df177034d42d6edba314966748eaa75c431
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 14:22:40 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56eb7df1

dev-python/nbconvert: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/nbconvert/nbconvert-4.3.0.ebuild 
b/dev-python/nbconvert/nbconvert-4.3.0.ebuild
index 93de447a4ae..15db15fac52 100644
--- a/dev-python/nbconvert/nbconvert-4.3.0.ebuild
+++ b/dev-python/nbconvert/nbconvert-4.3.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="doc test"
 
 RDEPEND="



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

2017-06-23 Thread Alexis Ballier
commit: 224ed265542c843fb714e58a963094a77247a0c6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 14:23:01 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=224ed265

dev-python/statsd: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/statsd/statsd-3.2.1.ebuild 
b/dev-python/statsd/statsd-3.2.1.ebuild
index 61b4b056c7d..5f8b41b4cc9 100644
--- a/dev-python/statsd/statsd-3.2.1.ebuild
+++ b/dev-python/statsd/statsd-3.2.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="test"
 
 RDEPEND=""



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

2017-06-23 Thread Alexis Ballier
commit: 46713fcbad7d7c4dd648b0cb48b585debb76b0e9
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 13:41:16 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46713fcb

dev-python/nbformat: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/nbformat/nbformat-4.3.0.ebuild 
b/dev-python/nbformat/nbformat-4.3.0.ebuild
index ce2bf5dea4e..703139c395c 100644
--- a/dev-python/nbformat/nbformat-4.3.0.ebuild
+++ b/dev-python/nbformat/nbformat-4.3.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="doc test"
 
 RDEPEND="



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

2017-06-23 Thread Alexis Ballier
commit: 647d54ba77e8f80a848a36dc91c31bc613b30e85
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 19:26:10 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 19:26:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=647d54ba

sys-cluster/mpich: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-cluster/mpich/mpich-3.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/mpich/mpich-3.2-r1.ebuild 
b/sys-cluster/mpich/mpich-3.2-r1.ebuild
index 7e2ba6c0bc6..7a865b38f33 100644
--- a/sys-cluster/mpich/mpich-3.2-r1.ebuild
+++ b/sys-cluster/mpich/mpich-3.2-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="http://www.mpich.org/static/downloads/${PV}/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="mpich"
-KEYWORDS="amd64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 hppa ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="+cxx doc fortran mpi-threads romio threads"
 
 COMMON_DEPEND="



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

2017-06-23 Thread Sven Wegener
commit: 6bf90d50b0b02cb659b355c67a8300c8783c7976
Author: Sven Wegener  gentoo  org>
AuthorDate: Fri Jun 23 18:33:32 2017 +
Commit: Sven Wegener  gentoo  org>
CommitDate: Fri Jun 23 18:33:50 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bf90d50

net-dns/pdns: Version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-dns/pdns/Manifest | 2 +-
 net-dns/pdns/{pdns-4.0.4_rc1.ebuild => pdns-4.0.4.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/pdns/Manifest b/net-dns/pdns/Manifest
index 4f1c9204f54..ae0d7eccd15 100644
--- a/net-dns/pdns/Manifest
+++ b/net-dns/pdns/Manifest
@@ -1,3 +1,3 @@
 DIST pdns-4.0.2.tar.bz2 1314886 SHA256 
d051e53b63f586c924f00ce8a81662f7bd285b461d125d4991538f92cf7e629d SHA512 
6720289332ee5186f4c58a00a720f3bb58480c0ae7f09915148ca8b40e2dfdc77e2f14123df903692afa464539eeef6b21e8ea3d284278897751ba807e2cdffe
 WHIRLPOOL 
6b58de4f2fc6fe830255203c281ca518a543b373171f73021cd8efd597c146b438a7ffd6ed018b637816fe07153a51f947818a0fa76dc237ba0f50903d3afbe9
 DIST pdns-4.0.3.tar.bz2 1312299 SHA256 
60fa21550b278b41f58701af31c9f2b121badf271fb9d7642f6d35bfbea8e282 SHA512 
58d33ac6cf457a916bae6abd8d2dc17f76fbcd1bd9e649948584dd669f5596b43e3e4d91841700ea1ea2cd1ac102749e503cd9075273540f33a2321e20d8bfc2
 WHIRLPOOL 
a28ab5011b3365423f13331c31e8f0fdb9aef0798155ce6fcbe328f82ebc3ca57a966b77f48c31422d374837ee4be3f7f0bc935bab463add19714eb8abd46493
-DIST pdns-4.0.4-rc1.tar.bz2 1315845 SHA256 
cdc5455fc9ffaf07213c895f3728b8801af6237a078e1d2658ed42763e29b02f SHA512 
dfbbb6bb5f56dcc14fb7baa58e251d7e91f531a73d43792129a339c0af2fb494359a1cb9563c30af89bdfb53abe9a7c93a8a973d8716ec88417a7d3555d7c3ea
 WHIRLPOOL 
4ad746603ef74aa7b2addcc85adf400f32485fe9f22c186a288e207da6bdd5cbb27e04f1d6365c733d46ace37fec9cb39a3de6790ba6d694bfa7b4bec0b4cb0c
+DIST pdns-4.0.4.tar.bz2 1320327 SHA256 
d974ab89de69477c7f581a3233bc731eacbb43d479291e472b2c531c83b6d763 SHA512 
4ef4705cd990b03976775167c7c37850d45907e198549feda5f5701172e008e3f1f74a35a9bebdb24b63dec15ff63cb2cc9dfc8f92e4e1012e0539c5a88b845b
 WHIRLPOOL 
5ac68a15155424d42fb4b84be1b34eb2e51498ae5193ae104215e4bb52a72845923f82dc6b112ce165444cdbfe3aaf01557d2f6ab42f6531dd525aee15ee1b19

diff --git a/net-dns/pdns/pdns-4.0.4_rc1.ebuild b/net-dns/pdns/pdns-4.0.4.ebuild
similarity index 100%
rename from net-dns/pdns/pdns-4.0.4_rc1.ebuild
rename to net-dns/pdns/pdns-4.0.4.ebuild



[gentoo-commits] repo/gentoo:master commit in: net-fs/minio/

2017-06-23 Thread Manuel Rüger
commit: 97ed822298b5e621f0e53ef5d9abe76d89e95cae
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 17:57:26 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 17:57:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97ed8222

net-fs/minio: Initial version

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-fs/minio/Manifest   |  1 +
 net-fs/minio/metadata.xml   |  8 ++
 net-fs/minio/minio-0_pre20170613.ebuild | 44 +
 3 files changed, 53 insertions(+)

diff --git a/net-fs/minio/Manifest b/net-fs/minio/Manifest
new file mode 100644
index 000..8f29fbb2c9a
--- /dev/null
+++ b/net-fs/minio/Manifest
@@ -0,0 +1 @@
+DIST minio-0_pre20170613.tar.gz 5037377 SHA256 
a44ee8c0933e55c1c561d4ed154564af1d45571a2cd0b00b0788b59d9475c402 SHA512 
3844ce71dc5b7736e9a1ecdc8771b863879b195f22546e74e5c29a8100c3102bced971f138f19fd7788d2cc6cf6c766f3b9727af8770ca59cc4d621e92dd22a7
 WHIRLPOOL 
cf8809d03530468e5bff26e6afc3f031d78f979dd02f254d9f50faf515e94d87de2f45a39b9dace65f28928698a12f94891c9c0ef6d51b3e18bd0de41f06ef7f

diff --git a/net-fs/minio/metadata.xml b/net-fs/minio/metadata.xml
new file mode 100644
index 000..97df2a00971
--- /dev/null
+++ b/net-fs/minio/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   mr...@gentoo.org
+   Manuel Rüger
+   
+

diff --git a/net-fs/minio/minio-0_pre20170613.ebuild 
b/net-fs/minio/minio-0_pre20170613.ebuild
new file mode 100644
index 000..18e6eb2062e
--- /dev/null
+++ b/net-fs/minio/minio-0_pre20170613.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/minio/minio"
+VERSION="2017-06-13T19-01-01Z"
+EGIT_COMMIT="b9f622824ac17d3e0577d8a9b81a707666cc8cf1"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="An Amazon S3 compatible object storage server"
+HOMEPAGE="https://github.com/minio/minio;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+src_prepare() {
+   default
+   sed -i -e "s/time.Now().UTC().Format(time.RFC3339)/\"${VERSION}\"/"\
+   -e "s/-s //"\
+   -e "/time/d"\
+   -e "s/+ commitID()/+ \"${EGIT_COMMIT}\"/"\
+   src/${EGO_PN}/buildscripts/gen-ldflags.go || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   MINIO_RELEASE="${VERSION}"
+   go run buildscripts/gen-ldflags.go
+   GOPATH="${S}" go build --ldflags "$(go run 
buildscripts/gen-ldflags.go)" -o ${PN} || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dodoc -r README.md CONTRIBUTING.md MAINTAINERS.md docs
+   dobin minio
+   popd  || die
+}



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

2017-06-23 Thread Lars Wendler
commit: 0a8cf1f9ba5793ee67d3624658832fc38c6966de
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jun 23 17:17:37 2017 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jun 23 17:17:54 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0a8cf1f9

dev-util/cmake: Bump to version 3.9.0_rc4. Removed old.

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/cmake/Manifest   | 2 +-
 dev-util/cmake/{cmake-3.9.0_rc3.ebuild => cmake-3.9.0_rc4.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index f66b474cb41..c60a96bf8c7 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -2,4 +2,4 @@ DIST cmake-3.7.2-x32.patch.xz 7204 SHA256 
d04cc6dc7ffbb8e16426e85f50e3f3c3037fb4
 DIST cmake-3.7.2.tar.gz 7361593 SHA256 
dc1246c4e6d168ea4d6e042cfba577c1acd65feea27e56f5ff37df920c30cae0 SHA512 
b2ed0192e12267de19eb178c2dedc69d06fc33dfadd47efbe0ccf6969ad72d290fa4bff02861c379a8752337d67d2485d7e1ba947cb219f2e4041a53a195e88d
 WHIRLPOOL 
1861fe2887f4483856e1964ff1492e196624d3072ad1e21910fba29d0c0d654e7d5035571648386a77cd6cbe895f8cdfbb1f4cc1ad60d14015a01a22494456f7
 DIST cmake-3.8.1.tar.gz 7503955 SHA256 
ce5d9161396e06501b00e52933783150a87c33080d4bdcef461b5b7fd24ac228 SHA512 
2164f502900a803928f2df3168fb5094de05392fd62d30c55d08de89bdd4ba7323255e724cbca260202edf1691bd5c6be63c585f75ff9d36bd0d35b816c2fde0
 WHIRLPOOL 
6ef8f4bcd5186e6efb3aa95a6f09ab686ee21adbe049d74c75e6c2a60ecf2d61328a06b14e4a15eb421bd495dfee128c30a50c299c8681640e1deff546e9309c
 DIST cmake-3.8.2.tar.gz 7504706 SHA256 
da3072794eb4c09f2d782fcee043847b99bb4cf8d4573978d9b2024214d6e92d SHA512 
49ea6f74a81dfa8ed8336c94ed50e0a483b796132c260f4bef159f9c389d99cc7b26ecfcccdd8b0a8f5b52fddd277c17c547d2a2e8848da9912c464ada1cbe3f
 WHIRLPOOL 
8768bffb365852414eda0349d71e59517c8047689303d7873a5889cb8b28c72cd636982a18b039f26daae33023f7e0ad91c3a9ab2d30c30e4b3a9b3cc525b78e
-DIST cmake-3.9.0-rc3.tar.gz 7674202 SHA256 
83706bdcbebc6fdf1cf309dda8fec2bb4259dbae8aa5e98150c72ce4f590f1d2 SHA512 
1e5137db815707e47b6301588f5de8e5405a12a89ddd5966a0776e1dd82d899f1f4c4ca889a326554ed1762f3be9238cd9eef20ec1eddfbc552fb4182d95b83f
 WHIRLPOOL 
36d86bf50ca874176fa33a5b2228420b8ee83a91000cd72c8d435fa2b8f9f57a1383942a611ca5dae92bd56150a365f739ce33683d9bf18c8077c94475cca18f
+DIST cmake-3.9.0-rc4.tar.gz 7684295 SHA256 
48a82e967b0958adc980a39bc9c231bbb43bad87484668318f7cdc90a32f7d60 SHA512 
74aa6e2d88f136dbe1b53756de7382ceb27707e3a111c3af8fec472d2542c762754f5302f60d1328f0661d48768ccf1b83db07a79794a8e6928e6eb9bb8e2689
 WHIRLPOOL 
b6980914ac20b46ec94255c7a69e5f1029ba40b53cd943b6161522186a783f536cef7b5871b9c9f60fc049db67038486469b4fe7c18dc9c92e25a53b1c861c32

diff --git a/dev-util/cmake/cmake-3.9.0_rc3.ebuild 
b/dev-util/cmake/cmake-3.9.0_rc4.ebuild
similarity index 100%
rename from dev-util/cmake/cmake-3.9.0_rc3.ebuild
rename to dev-util/cmake/cmake-3.9.0_rc4.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-ada/aws/files/, dev-ada/aws/

2017-06-23 Thread Alfredo Tupone
commit: 3b41b7bb430c538ec7d069c2bba099cd13f81de7
Author: Tupone Alfredo  gentoo  org>
AuthorDate: Fri Jun 23 17:02:43 2017 +
Commit: Alfredo Tupone  gentoo  org>
CommitDate: Fri Jun 23 17:02:43 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b41b7bb

dev-ada/aws: Use the same ada compiler for C code

Package-Manager: Portage-2.3.6, Repoman-2.3.1

 dev-ada/aws/aws-2016.ebuild | 2 +-
 dev-ada/aws/files/aws-2016-gentoo.patch | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ada/aws/aws-2016.ebuild b/dev-ada/aws/aws-2016.ebuild
index a26246e5b27..05c513a863d 100644
--- a/dev-ada/aws/aws-2016.ebuild
+++ b/dev-ada/aws/aws-2016.ebuild
@@ -31,7 +31,7 @@ src_configure() {
 }
 
 src_compile() {
-   emake PROCESSORS=$(makeopts_jobs)
+   emake GCC=${ADA} PROCESSORS=$(makeopts_jobs)
 }
 
 src_install() {

diff --git a/dev-ada/aws/files/aws-2016-gentoo.patch 
b/dev-ada/aws/files/aws-2016-gentoo.patch
index bf82f813877..b33073afa44 100644
--- a/dev-ada/aws/files/aws-2016-gentoo.patch
+++ b/dev-ada/aws/files/aws-2016-gentoo.patch
@@ -4,7 +4,7 @@
 package Compiler is
  
for Driver ("Makefile") use "";
-+  for Driver ("C") use External ("CC", "gcc");
++  for Driver ("C") use External ("GCC", "gcc");
  
case Build is
   when "Debug" =>



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

2017-06-23 Thread Andreas Hüttel
commit: 269847de0d759ab3976093960ea0f00e51e4d439
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Fri Jun 23 16:49:38 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 23 16:49:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=269847de

dev-perl/Lab-Measurement: Adapt live ebuild to Dist::Zilla

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../Lab-Measurement/Lab-Measurement-.ebuild| 120 +
 1 file changed, 98 insertions(+), 22 deletions(-)

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
index d4f90dd81fe..2cc37f7cae1 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
@@ -11,60 +11,136 @@ if [[ "${PV}" != "" ]]; then
 else
EGIT_REPO_URI="https://github.com/lab-measurement/lab-measurement.git;
EGIT_BRANCH="master"
+   EGIT_CHECKOUT_DIR="${WORKDIR}/${PN}-git"
inherit perl-module git-r3
-   S=${WORKDIR}/${P}/Measurement
 fi
 
 DESCRIPTION="Measurement control and automation with Perl"
 HOMEPAGE="http://www.labmeasurement.de/;
 
 SLOT="0"
-IUSE="test +xpression"
+IUSE="test"
+
+DZIL_PLUGINS=( Git PodWeaver )
 
 RDEPEND="
+   virtual/perl-Carp
dev-perl/Class-ISA
>=dev-perl/Class-Method-Modifiers-2.110.0
>=dev-perl/Clone-0.310.0
virtual/perl-Data-Dumper
virtual/perl-Encode
-   >=dev-perl/Exception-Class-1
+   >=dev-perl/Exception-Class-1.0.0
+   virtual/perl-File-Path
+   virtual/perl-File-Spec
+   virtual/perl-Getopt-Long
dev-perl/Hook-LexWrap
-   dev-perl/IO-Socket-Timeout
+   virtual/perl-IO
+   >=dev-perl/IO-Socket-Timeout-0.320.0
dev-perl/List-MoreUtils
+   virtual/perl-Scalar-List-Utils
+   virtual/perl-Math-Complex
+   >=virtual/perl-Module-Load-0.260.0
>=dev-perl/Moose-2.121.300
>=dev-perl/MooseX-Params-Validate-0.180.0
-   >=dev-perl/namespace-autoclean-0.200.0
-   dev-perl/PDL
+   >=dev-perl/PDL-2.7.0
+   dev-perl/PDL-Graphics-Gnuplot
>=dev-perl/Role-Tiny-1.3.4
+   virtual/perl-Socket
dev-perl/Statistics-Descriptive
-   dev-perl/Term-ANSIScreen
-   >=dev-perl/TermReadKey-2.320.0
-   dev-perl/TeX-Encode
+   virtual/perl-Storable
+   >=dev-perl/TermReadKey-2.300.0
+   virtual/perl-Thread-Semaphore
+   virtual/perl-Tie-Hash
virtual/perl-Time-HiRes
>=dev-perl/Try-Tiny-0.220.0
-   dev-perl/XML-DOM
-   dev-perl/XML-Generator
-   dev-perl/XML-Twig
-   dev-perl/YAML
-   dev-perl/aliased
>=dev-perl/YAML-LibYAML-0.410.0
+   virtual/perl-autodie
+   >=dev-perl/namespace-autoclean-0.200.0
+   virtual/perl-parent
sci-visualization/gnuplot
-   !dev-perl/Lab-Instrument
-   !dev-perl/Lab-Tools
-   xpression? (
-   dev-perl/Wx
-   )
 "
 DEPEND="
${RDEPEND}
-   dev-perl/Module-Build
+   virtual/perl-ExtUtils-MakeMaker
test? (
dev-perl/File-Slurper
+   virtual/perl-File-Temp
+   dev-perl/Test-Fatal
dev-perl/Test-File
-   dev-perl/Test-Files
-   >=dev-perl/Test-Fatal-0.12.0
+   virtual/perl-Test-Simple
+   dev-perl/Text-Diff
+   dev-perl/aliased
)
 "
+if [[ "${PV}" == "" ]]; then
+   DEPEND="${DEPEND}
+   dev-perl/Dist-Zilla"
+   for dzp in ${DZIL_PLUGINS} ; do
+   DEPEND="${DEPEND}
+   dev-perl/Dist-Zilla-Plugin-${dzp}"
+   done
+fi
+
+src_unpack() {
+   if [[ "${PV}" == "" ]]; then
+   git-r3_src_unpack
+   mkdir -p "${S}" || die "Can't make ${S}"
+   else
+   default
+   fi
+}
+
+dzil_to_distdir() {
+   local dzil_root dest has_missing modname dzil_version
+   dzil_root="$1"
+   dest="$2"
+
+   cd "${dzil_root}" || die "Can't enter git workdir '${dzil_root}'";
+
+   dzil_version="$(dzil version)" || die "Error invoking 'dzil version'"
+   einfo "Generating CPAN dist with ${dzil_version}"
+
+   has_missing=""
+
+   einfo "Checking dzil authordeps"
+   while IFS= read -d $'\n' -r modname; do
+   if [[ -z "${has_missing}" ]]; then
+   has_missing=1
+   eerror "'dzil authordeps' indicates missing build 
dependencies"
+   eerror "These will prevent building, please report a 
bug"
+   eerror "Missing:"
+   fi
+   eerror "  ${modname}"
+   done < <( dzil authordeps --missing --versions )
+
+   [[ -z "${has_missing}" ]] || die "Satisfy all missing authordeps first"
+
+   einfo "Checking dzil build deps"
+   while IFS= read -d $'\n' -r modname; do
+   if [[ -z 

[gentoo-commits] repo/gentoo:master commit in: dev-perl/PDL-Transform-Color/

2017-06-23 Thread Andreas Hüttel
commit: 346d7be79fe37638be4bf2d7b2e6ebe185c33e3f
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Fri Jun 23 16:41:03 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 23 16:48:41 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=346d7be7

dev-perl/PDL-Transform-Color: New package, needed by dev-perl/Lab-Measurement

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/PDL-Transform-Color/Manifest  |  1 +
 .../PDL-Transform-Color-1.3.0.ebuild   | 22 ++
 dev-perl/PDL-Transform-Color/metadata.xml  |  8 
 3 files changed, 31 insertions(+)

diff --git a/dev-perl/PDL-Transform-Color/Manifest 
b/dev-perl/PDL-Transform-Color/Manifest
new file mode 100644
index 000..4716d526aff
--- /dev/null
+++ b/dev-perl/PDL-Transform-Color/Manifest
@@ -0,0 +1 @@
+DIST PDL-Transform-Color-1.003.tar.gz 51299 SHA256 
249e3d30cae9ffca96e8e78966339643a735b7094f10d4e5492f7f78b266d688 SHA512 
ab1c0643013a494584a688aaadd275ff361bf2212b2af6ed7718cbe344f87c5ed887a188729ad8f1a1922f2987b25e3816cca3ba9db78a45cc01630d50213b72
 WHIRLPOOL 
4cab2c936b546665056754091d32ab0be43d7ebafff1e7e57e777293ec3d7be1c6908f5f236b7507cca0254b9bcf6b03821f53067075d06cd937d6a56a2917dc

diff --git a/dev-perl/PDL-Transform-Color/PDL-Transform-Color-1.3.0.ebuild 
b/dev-perl/PDL-Transform-Color/PDL-Transform-Color-1.3.0.ebuild
new file mode 100644
index 000..bd2922aafa5
--- /dev/null
+++ b/dev-perl/PDL-Transform-Color/PDL-Transform-Color-1.3.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_VERSION=1.003
+DIST_AUTHOR=ZOWIE
+inherit perl-module
+
+DESCRIPTION="Useful color system conversions for PDL"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   dev-perl/PDL
+   dev-perl/Safe-Isa
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"

diff --git a/dev-perl/PDL-Transform-Color/metadata.xml 
b/dev-perl/PDL-Transform-Color/metadata.xml
new file mode 100644
index 000..8ad3d950c4b
--- /dev/null
+++ b/dev-perl/PDL-Transform-Color/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+p...@gentoo.org
+Gentoo Perl Project
+
+



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

2017-06-23 Thread Andreas Hüttel
commit: 94d10540a9aa4a341b05d82b47641e5537b7d003
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Fri Jun 23 16:54:13 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 23 16:54:13 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94d10540

dev-perl/Lab-Measurement: Add 3.550 release

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 .../{Lab-Measurement-.ebuild => Lab-Measurement-3.550.0.ebuild}| 3 +--
 dev-perl/Lab-Measurement/Lab-Measurement-.ebuild   | 3 +--
 dev-perl/Lab-Measurement/Manifest  | 1 +
 3 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-3.550.0.ebuild
similarity index 98%
copy from dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
copy to dev-perl/Lab-Measurement/Lab-Measurement-3.550.0.ebuild
index 2cc37f7cae1..cc693e6fcba 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-3.550.0.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 if [[ "${PV}" != "" ]]; then
-   DIST_VERSION= # change this!!!
+   DIST_VERSION=${PV%.0}
DIST_AUTHOR="AKHUETTEL"
KEYWORDS="~amd64 ~x86"
inherit perl-module
@@ -51,7 +51,6 @@ RDEPEND="
virtual/perl-Storable
>=dev-perl/TermReadKey-2.300.0
virtual/perl-Thread-Semaphore
-   virtual/perl-Tie-Hash
virtual/perl-Time-HiRes
>=dev-perl/Try-Tiny-0.220.0
>=dev-perl/YAML-LibYAML-0.410.0

diff --git a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild 
b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
index 2cc37f7cae1..cc693e6fcba 100644
--- a/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
+++ b/dev-perl/Lab-Measurement/Lab-Measurement-.ebuild
@@ -4,7 +4,7 @@
 EAPI=6
 
 if [[ "${PV}" != "" ]]; then
-   DIST_VERSION= # change this!!!
+   DIST_VERSION=${PV%.0}
DIST_AUTHOR="AKHUETTEL"
KEYWORDS="~amd64 ~x86"
inherit perl-module
@@ -51,7 +51,6 @@ RDEPEND="
virtual/perl-Storable
>=dev-perl/TermReadKey-2.300.0
virtual/perl-Thread-Semaphore
-   virtual/perl-Tie-Hash
virtual/perl-Time-HiRes
>=dev-perl/Try-Tiny-0.220.0
>=dev-perl/YAML-LibYAML-0.410.0

diff --git a/dev-perl/Lab-Measurement/Manifest 
b/dev-perl/Lab-Measurement/Manifest
index d609b1d0a11..cd2a4940ddb 100644
--- a/dev-perl/Lab-Measurement/Manifest
+++ b/dev-perl/Lab-Measurement/Manifest
@@ -1 +1,2 @@
 DIST Lab-Measurement-3.531.tar.gz 483289 SHA256 
656cab0028f840065120ac67975e70c2f42739fa0e6788f4f07e93fd8d518d3c SHA512 
28db6db91db281aec1b57d48f94d31c7f01731ad944b891332496329f91b4b5985ab474b645fa70ed396dd5662d5086722128cf1db9d88c5a766d500694ef5c7
 WHIRLPOOL 
e1e85ef42a531e60cb04e715924e574925e78a9a45e58603e78627953d154d5df5569ab2991f48a3b9b3fa92994c432966f300a074b507f3669fe816d6204a4b
+DIST Lab-Measurement-3.550.tar.gz 510971 SHA256 
5204bcd88db31156fec717b546eb4ed6e4a43a781d36a28141c5477d3c714768 SHA512 
e3ab254909b5d6644ac0938233b643ccfa851631b54de0f409175020d4d577e61f90af2b797ad1418366b3876c917c7cc30109abc8b13f1d3b93fdcad439acaa
 WHIRLPOOL 
7c9dbee0743fa6b21c0041ea67cbb0d5e6e083c8d81bc9fd5f0bd11dd12daf79856a174145a61f11916668a59d82f1d2e8cf6c372295cbc2eafddf12d6487c68



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

2017-06-23 Thread Andreas Hüttel
commit: 0e4a6567a2d1cf4f9fde00077cf52559bbbcb058
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Fri Jun 23 16:46:18 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 23 16:48:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e4a6567

dev-perl/Alien-Gnuplot: New package, needed for dev-perl/Lab-Measurement

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/Alien-Gnuplot/Alien-Gnuplot-1.33.0.ebuild | 25 ++
 dev-perl/Alien-Gnuplot/Manifest|  1 +
 dev-perl/Alien-Gnuplot/metadata.xml|  8 +++
 3 files changed, 34 insertions(+)

diff --git a/dev-perl/Alien-Gnuplot/Alien-Gnuplot-1.33.0.ebuild 
b/dev-perl/Alien-Gnuplot/Alien-Gnuplot-1.33.0.ebuild
new file mode 100644
index 000..5d9cbcb1210
--- /dev/null
+++ b/dev-perl/Alien-Gnuplot/Alien-Gnuplot-1.33.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_VERSION=1.033
+DIST_AUTHOR=ZOWIE
+inherit perl-module
+
+DESCRIPTION="Find and verify functionality of the gnuplot executable"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   virtual/perl-File-Spec
+   virtual/perl-File-Temp
+   virtual/perl-HTTP-Tiny
+   virtual/perl-Time-HiRes
+   sci-visualization/gnuplot
+"
+DEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+"

diff --git a/dev-perl/Alien-Gnuplot/Manifest b/dev-perl/Alien-Gnuplot/Manifest
new file mode 100644
index 000..b979118c47f
--- /dev/null
+++ b/dev-perl/Alien-Gnuplot/Manifest
@@ -0,0 +1 @@
+DIST Alien-Gnuplot-1.033.tar.gz 7827 SHA256 
85d97835cee8538bfdf1d9e9a2cc9d6d7eb7daa475739a1c48b71315f7aee9db SHA512 
b846e9be8193af376dced487b99bafdd29fdf094a92f824bacaa3c642ad110918995cabc66300bd04fbf78ae779855ba94d1e634398f479961f98bb7f1cbbf46
 WHIRLPOOL 
42911f76a92c9abac662fce3a6c0533a14a22201fae818248f3811bc48c89d2edcac60f8e5a5d55708f6159e6edc76449f9f07283b944f03fc98a3daffc0a806

diff --git a/dev-perl/Alien-Gnuplot/metadata.xml 
b/dev-perl/Alien-Gnuplot/metadata.xml
new file mode 100644
index 000..8ad3d950c4b
--- /dev/null
+++ b/dev-perl/Alien-Gnuplot/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+p...@gentoo.org
+Gentoo Perl Project
+
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/PDL-Graphics-Gnuplot/

2017-06-23 Thread Andreas Hüttel
commit: 06c583613f554a0289805373bce7dd55d7f309c7
Author: Andreas K. Huettel  gentoo  org>
AuthorDate: Fri Jun 23 16:46:51 2017 +
Commit: Andreas Hüttel  gentoo  org>
CommitDate: Fri Jun 23 16:48:47 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c58361

dev-perl/PDL-Graphics-Gnuplot: New package, needed for dev-perl/Lab-Measurement

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-perl/PDL-Graphics-Gnuplot/Manifest |  1 +
 .../PDL-Graphics-Gnuplot-2.11.0.ebuild | 30 ++
 dev-perl/PDL-Graphics-Gnuplot/metadata.xml |  8 ++
 3 files changed, 39 insertions(+)

diff --git a/dev-perl/PDL-Graphics-Gnuplot/Manifest 
b/dev-perl/PDL-Graphics-Gnuplot/Manifest
new file mode 100644
index 000..98ab3c3077d
--- /dev/null
+++ b/dev-perl/PDL-Graphics-Gnuplot/Manifest
@@ -0,0 +1 @@
+DIST PDL-Graphics-Gnuplot-2.011.tar.gz 146990 SHA256 
6f93e19651f8b05cc10a9eddcbc97955188905964ad6b904b3a39fc94b1abe22 SHA512 
09bd38beaacf914241d2bddf9c159bd6db3a60ed0d15f001faec4c5da2e22cb8313b47ed71b8e6006159b4a0d74cea6ebbaf257fa9774eac7f8a5622cfade0e7
 WHIRLPOOL 
dd89dddf564b9efecd1b5a4d1ebaa54d070969cea3302fd13cb48325393ae6a5b5c60e99ea228fea4d2f8e434d78a675f603eb4ce6cb2046ef91704f774d3e31

diff --git a/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild 
b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild
new file mode 100644
index 000..b27d7b865cc
--- /dev/null
+++ b/dev-perl/PDL-Graphics-Gnuplot/PDL-Graphics-Gnuplot-2.11.0.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DIST_VERSION=2.011
+DIST_AUTHOR=ZOWIE
+inherit perl-module
+
+DESCRIPTION="Gnuplot-based plotting for PDL"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   dev-perl/Alien-Gnuplot
+   virtual/perl-IO
+   dev-perl/IPC-Run
+   virtual/perl-Scalar-List-Utils
+   dev-perl/PDL
+   dev-perl/PDL-Transform-Color
+   dev-perl/Safe-Isa
+   virtual/perl-Storable
+   virtual/perl-Time-HiRes
+"
+DEPEND="${RDEPEND}
+   >=virtual/perl-ExtUtils-MakeMaker-6.480.0
+   test? ( virtual/perl-Test-Simple )
+"

diff --git a/dev-perl/PDL-Graphics-Gnuplot/metadata.xml 
b/dev-perl/PDL-Graphics-Gnuplot/metadata.xml
new file mode 100644
index 000..8ad3d950c4b
--- /dev/null
+++ b/dev-perl/PDL-Graphics-Gnuplot/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+
+p...@gentoo.org
+Gentoo Perl Project
+
+



[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/

2017-06-23 Thread Matt Thode
commit: eaa4df2ad0d1a6328b82fd01eee327061a7115b2
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 16:33:38 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 16:34:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eaa4df2a

net-nds/openldap: added sha2 contrib support pre bug 621670 and pr \#4973

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-nds/openldap/metadata.xml   |  3 ++-
 net-nds/openldap/openldap-2.4.45.ebuild | 29 -
 2 files changed, 30 insertions(+), 2 deletions(-)

diff --git a/net-nds/openldap/metadata.xml b/net-nds/openldap/metadata.xml
index cda62a66159..4e5e2c49039 100644
--- a/net-nds/openldap/metadata.xml
+++ b/net-nds/openldap/metadata.xml
@@ -4,7 +4,7 @@
 
 ldap-b...@gentoo.org
 
-
+   
Enable experimental backend 
options
Enable support for kerberos init
Enable ODBC and SQL backend options
@@ -13,6 +13,7 @@
lanman passwords
Build libraries  userspace tools 
only. Does not install any server code.
Enable support for pbkdf2 passwords
+   Enable support for pw-sha2 password 
hashes.


cpe:/a:openldap:openldap

diff --git a/net-nds/openldap/openldap-2.4.45.ebuild 
b/net-nds/openldap/openldap-2.4.45.ebuild
index b2493271ba4..e81d3543054 100644
--- a/net-nds/openldap/openldap-2.4.45.ebuild
+++ b/net-nds/openldap/openldap-2.4.45.ebuild
@@ -24,7 +24,7 @@ IUSE_DAEMON="crypt samba slp tcpd experimental minimal"
 IUSE_BACKEND="+berkdb"
 IUSE_OVERLAY="overlays perl"
 IUSE_OPTIONAL="gnutls iodbc sasl ssl odbc debug ipv6 libressl +syslog selinux 
static-libs"
-IUSE_CONTRIB="smbkrb5passwd kerberos kinit pbkdf2"
+IUSE_CONTRIB="smbkrb5passwd kerberos kinit pbkdf2 sha2"
 IUSE_CONTRIB="${IUSE_CONTRIB} -cxx"
 IUSE="${IUSE_DAEMON} ${IUSE_BACKEND} ${IUSE_OVERLAY} ${IUSE_OPTIONAL} 
${IUSE_CONTRIB}"
 
@@ -618,6 +618,33 @@ multilib_src_compile() {
pbkdf2.lo || die "linking pw-pbkdf2 failed"
fi
 
+   if use sha2 ; then
+   cd "${S}/contrib/slapd-modules/passwd/sha2" || die
+   einfo "Compiling contrib-module: pw-sha2"
+   "${lt}" --mode=compile --tag=CC \
+   "${CC}" \
+   -I"${BUILD_DIR}"/include \
+   -I../../../../include \
+   ${CFLAGS} \
+   -o sha2.lo \
+   -c sha2.c || die "compiling pw-sha2 failed"
+   "${lt}" --mode=compile --tag=CC \
+   "${CC}" \
+   -I"${BUILD_DIR}"/include \
+   -I../../../../include \
+   ${CFLAGS} \
+   -o slapd-sha2.lo \
+   -c slapd-sha2.c || die "compiling pw-sha2 
failed"
+   einfo "Linking contrib-module: pw-sha2"
+   "${lt}" --mode=link --tag=CC \
+   "${CC}" -module \
+   ${CFLAGS} \
+   ${LDFLAGS} \
+   -rpath 
"${EPREFIX}"/usr/$(get_libdir)/openldap/openldap \
+   -o pw-sha2.la \
+   sha2.lo slapd-sha2.lo || die "linking pw-sha2 
failed"
+   fi
+
# We could build pw-radius if GNURadius would install radlib.h
cd "${S}/contrib/slapd-modules/passwd" || die
einfo "Compiling contrib-module: pw-netscape"



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

2017-06-23 Thread Patrice Clement
commit: f4794aec258635ed097502a40f52cc93f3e05be7
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jun 23 16:32:13 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 23 16:33:19 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4794aec

x11-wm/page: add missing requirement.

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

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 x11-wm/page/page-1.9.8-r1.ebuild | 49 
 1 file changed, 49 insertions(+)

diff --git a/x11-wm/page/page-1.9.8-r1.ebuild b/x11-wm/page/page-1.9.8-r1.ebuild
new file mode 100644
index 000..05d2c406a4d
--- /dev/null
+++ b/x11-wm/page/page-1.9.8-r1.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+EAPI=5
+
+DESCRIPTION="A mouse friendly tiling window manager"
+HOMEPAGE="http://www.hzog.net/index.php/Main_Page;
+SRC_URI="http://www.hzog.net/pub/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   x11-proto/xcb-proto
+   x11-libs/libxcb
+   x11-libs/xcb-util
+   x11-libs/libXfixes
+   x11-libs/libXdamage
+   x11-proto/damageproto
+   x11-proto/randrproto
+   x11-libs/libXrandr
+   x11-proto/xproto
+   x11-proto/fixesproto
+   x11-proto/compositeproto
+   x11-libs/libXcomposite
+   x11-proto/renderproto
+   x11-libs/libXrender
+   x11-libs/libXext
+   x11-proto/xextproto
+   x11-libs/cairo[X,xcb]
+   x11-libs/pango
+   dev-libs/glib:2"
+
+DEPEND="${RDEPEND}"
+
+src_install() {
+   default
+
+   # Solves file collision with dev-tcltk/tcllib, bug #574074
+   ebegin "Changing references from 'page' to 'pagewm'"
+   mv "${D}"usr/bin/page "${D}"usr/bin/pagewm || die "Could not rename 
binary!"
+   sed -i -e "s:/usr/bin/page:/usr/bin/pagewm:" 
"${D}"usr/share/applications/page.desktop || die "Could not change .desktop 
file!"
+   eend
+}
+
+pkg_postinst() {
+   elog "page can now be launched using \"pagewm\". To find out more about 
this functionality,"
+   elog "see the following bug report: https://bugs.gentoo.org/574074.;
+}



[gentoo-commits] repo/gentoo:master commit in: app-admin/consul-template/files/, app-admin/consul-template/

2017-06-23 Thread Zac Medico
commit: 0b9ae01bcdeacff536c282e32c8c9d5083216dd0
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jun 23 16:31:20 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jun 23 16:32:48 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b9ae01b

app-admin/consul-template: remove old versions

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-admin/consul-template/Manifest |  35 -
 .../consul-template/consul-template-0.12.2.ebuild  | 142 -
 .../consul-template/consul-template-0.16.0.ebuild  |  98 --
 .../consul-template/files/localhost.json.example   |   1 -
 4 files changed, 276 deletions(-)

diff --git a/app-admin/consul-template/Manifest 
b/app-admin/consul-template/Manifest
index bb8c22a262a..78453920820 100644
--- a/app-admin/consul-template/Manifest
+++ b/app-admin/consul-template/Manifest
@@ -1,36 +1 @@
-DIST aws-sdk-go-1.0.11.tar.gz 2914311 SHA256 
7750f3ed8f616fdfa5c478b1768947909907a5a10dc98e1d70f9fa3fd7da96ba SHA512 
ae966170cd906f510246c51ed9738f4ca8e3b4c2b31ed3d92f4f9c272e8a11ca411fe4a24bdbc7099c5b537f42abc784e336e05004421c138de7b8b2a5240d0a
 WHIRLPOOL 
1bae846bde5b3beec5448336378e63b0ebb9da5b5f0b7f37941a5450ec091e250c861847883759e5df1f1e20b02942fc5f77599d6763a60de15d7ceb84fb896f
-DIST consul-0.6.3.tar.gz 2224536 SHA256 
5cdc21d6f20f9b703d38e19d3d2ed1c037dcbb236b80bff6a9b9c481ded74435 SHA512 
c80b96e18c283f8d2dc7542393e9d788c8247200890b1f2ecdf292b545c01c971f1452f6b37b23b92654409a191fbd4608710b1ca31d6c426ff77b53c4840c4b
 WHIRLPOOL 
b021bb7ecc97c2a99e88a8dd17dc1958fe7b2d17848c9e629edb0627d72d5651f96ef625cda4280989463e66c4b48880690b5e4a1180117bc762062be3b0566a
-DIST consul-template-0.12.2.tar.gz 93913 SHA256 
9d8ae6ba84caa826400a3eef0e28325518a21c44332eebaaf3878dc5972f3997 SHA512 
c085d916d7e7ae933583b6f397c73117a35b2f54e634db9bbe43a3e6f6b9497177729b3b5e25f028766eb6f9f59ff411486390bc2f544806af04f9038729533e
 WHIRLPOOL 
af485e0b743eb3d34d52bdbc6dd1edcf17614e07061384f24c5bd1d5d74d5a5bc1c092553fd074269566298847af2052ffd6dbf8b8e9a524438227e7230fe2d8
-DIST consul-template-0.16.0.tar.gz 2369947 SHA256 
c20e1e54c333baa8b1e031710f71a5a533ffe079d657763567478a021344ff55 SHA512 
7f5f34ae7ccd5a9ce27f07a96bd6b226a78197d1455bbba76c5aab36d93090661eafc0ed513fce6930020095ab4cda799f71ed208a85ba83f540204f0d041994
 WHIRLPOOL 
e6b11aa093bf2c0910c2dbac98703d7aed935ebf68f3cad059ca0f4f1ccda0f59ced2851aff916003c2fea99830f418296fe067d96d039ad3306e4a3a448870f
 DIST consul-template-0.18.5.tar.gz 5285939 SHA256 
749bff38cefc1a2ced91a73f766550fb36ed793f402041bf31c624d1969e5b0b SHA512 
1709c889cd414d2b3510400e8077aec49006c31958618a38f6bce78dad2ba4aac5405410b030bf968b5cf148f4cfbe963ccf95a015cd1e58f2f6d1f09edc13de
 WHIRLPOOL 
9d9062043414d19d9038c962206d9868bef517a00e773a4205bf4c909fc0c9a8e0a2609b2cd92947159d91b7ae9adc3a96d7d3bf8865d11562d0a9e7c9940ee7
-DIST copystructure-6fc66267e9da7d155a9d3bd489e00dad02666dc6.tar.gz 4028 SHA256 
4e7271e88e101ac324f799c421b1c8c1477d1f54048d6b6b1ff3930498870272 SHA512 
3c804e126f676cb7a6c5af775b7fdf6a3b591b42315707ebb83a66a96f583eac414e01402bc489d9b218b64db7780f57bd5a4bd922aff59dca068b869f825de5
 WHIRLPOOL 
3be054304612292adef0361bbd2d94d51c4186d4a66bf949d326345da0f7f5c6f5558c0db62fb1ed1144899155f5c63ceeb9243c267b82605b024cf6898f31ba
-DIST errwrap-7554cd9344cec97297fa6649b055a8c98c2a1e55.tar.gz 8320 SHA256 
e77d6aa78ef6342b21358d689edcd043778c5623af5a9b2690ed8e3fa4ea7db0 SHA512 
da45b1696253bebe012f3d0e624a63dd11ad1a613d81cc302f2ea6f096f29a8d81015b9c00363bd2590c4cacc59de52a27e84435a7b4ad6512485cdd87df11c0
 WHIRLPOOL 
5c6013d852711e001a0eca6a3ad11f64e006be527cfc0b46db21049af97506730b48cfe1b2fac10bcfc66f61dce69023f20b06c83558e80ce337d75a127aa90d
-DIST etcd-5099bf6f7ab92181158cc2f0f0db1bb6056e9aeb.tar.gz 2171596 SHA256 
72f642f10d014dff089b7a0fe66168639d30ed0e1586cec43a88b2bd7311cc11 SHA512 
cc1d75d73c46f7c8438ddec8f0cf6829936e4ecb58efcaae958f818bbdd51b393406e6c89784d9234080766ea67d71e660aa973f409ce4319768e76f4dad
 WHIRLPOOL 
7f645f6ae41769e8bf0e4f35e4ac399df385bd1693f3c49d0f3e2859cfbf58e0cbd6f9be8c7de101e37720514828e56ae996cbf8a89e665a867ae083457bf9e8
-DIST go-cleanhttp-ce617e79981a8fff618bb643d155133a8f38db96.tar.gz 6595 SHA256 
b0a0282baa30df0e77ebd0902c5f0043f9af3460172ff61070927c270fa8139d SHA512 
bfdeea0c0aad4160729bb023c9c908ff56c7faa64a820b16e982efede0389365987343b2a227cac95edaa4c9096f2dfcb1fd3f7d55510328dfdb284cfbf7600a
 WHIRLPOOL 
1cd82ed8a82a2cb1de58a9a0177fead214e63908e880b2d57a4434c024a49d05579ea77142aa9d5ecca370adc4539bfb7db1d9d4a2cc27fc41d83a350c4fce39
-DIST go-crypto-0_pre20150808.tar.gz 876947 SHA256 
9ff25a17515c6c7ff0d13fb076ba7a1df868ce30fca105277b3f0356ce801518 SHA512 
86826102ff7242259d79a31e543a03192d6b68a06635b46ebac349111bb8451605df1ad9b249c08d75895c38fb4ebbbfc716d40c8c981485395164e87db5a519
 WHIRLPOOL 
5e1a0372d0a2f493e68c213ce866237cab316c1bf712f2c58a95c16c6864c48ea795e5a6e1346aad7459f666802170aeb0db8f781423fb1d8e252e5bced2e435
-DIST 

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

2017-06-23 Thread Matt Thode
commit: 36f98ff02a62f8ccc2446c7477b56e1d99f4507b
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 15:33:12 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 16:14:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36f98ff0

app-emulation/diskimage-builder: 2.6.1 bup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-emulation/diskimage-builder/Manifest| 2 +-
 .../{diskimage-builder-2.6.0.ebuild => diskimage-builder-2.6.1.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/diskimage-builder/Manifest 
b/app-emulation/diskimage-builder/Manifest
index 460336958df..f4f03079460 100644
--- a/app-emulation/diskimage-builder/Manifest
+++ b/app-emulation/diskimage-builder/Manifest
@@ -3,4 +3,4 @@ DIST diskimage-builder-2.3.3.tar.gz 294768 SHA256 
227943d8702a66c9ed08d59362324b
 DIST diskimage-builder-2.4.0.tar.gz 308467 SHA256 
ae9bc8b0dde17d422785d0099152997a15a4c051c484f3efff17594d8bb8d34c SHA512 
2936d88f13dcebe67133400c20fa355349c33eb1d89045c38ffa4c2942152d9ca4b7fadefa622bf1c0055f8903a68d958f3b3db21fb3472da7b6ec7fd5c01267
 WHIRLPOOL 
6cd869d5a8fd31e3aa154d76eaa2543644c254eb90b12df80ce649c331759fbc5e4c8912a7753099a32c15c6dc98db256080d02d16e1d1d82377b293a7af49f0
 DIST diskimage-builder-2.4.1.tar.gz 304969 SHA256 
9a01eabc73bde93da3fde598249cc273c6cc744e8e6b850a0f7dd7e69c076543 SHA512 
32ef8b7cae08c90691256be4b8b65c986de00306d935919c7d9ecba21722534da8bb00ab887b810bfff35e60c1e943641de576a7c4b29a6ff3d15315b55fb307
 WHIRLPOOL 
a4e9a30452e2e0785e371968d463a95a04d5e9a7316decc2a00e27038b3606ca03515535b76e721eb12b8072567c91f9a6372d780fb60ab983d81071f88974e4
 DIST diskimage-builder-2.5.0.tar.gz 312486 SHA256 
5c665dbd6b8e3f24be26e65159a560b34e2250111adb4c7569db453d4bbbdf6c SHA512 
b254b5ca9d56ace54fcdd90ec35065bb67312a203529b94d24ff6629a159e6918bae291b2bc2f8218b38caa8fe65369ebaf8c286994b060c4f62342e6a192bea
 WHIRLPOOL 
31f3f4867dcd7543c7e6006717dc13de0d0d00f23a96126ce1cfac20bd24b17803422099a5737dd7b4aea1ddf53c9b9b6d3ad702fb0ace72bcb4ddb03d33acd1
-DIST diskimage-builder-2.6.0.tar.gz 313588 SHA256 
8fbfe1f3bdbb53b80b21349cba54bd574b5e0976a752018f2833400eb9206402 SHA512 
f4572cc5b9725633a8ed6f0a4c552014010d8eff1a0f52c72c0e873b59d20df621dce828b35a26a87b17ccfc05f3673f2b225b3cddd4d20d3a82e3fb4650c06e
 WHIRLPOOL 
3e0338776b1a705c82c93192c9db71ed2764b0b1443d03ba4637f7fb3daeaecd8241bf8609326226ba63dd4d941f5b780464a7ef2ddc042a19db9838c3b9e434
+DIST diskimage-builder-2.6.1.tar.gz 312190 SHA256 
4f5a9405c3b6599afe2ed037ef3dc72727a539a8b902dd23f1905dd772ab2ad1 SHA512 
d79ec6b0cc7962b8dbd4a3f8d5193907f89c39e15a73fd5cd9cf5203792df2de7ced6b0acbe53e9d1cb7e100751f36c1bc77db2be1f25ab9472ca759f54bdc4b
 WHIRLPOOL 
234308ec76126f8b1002e47a72eec3590b39997acfd6e9ea8c0ebdddfee01ab6a9dd249a5e245d58475f067ef0635d783ee9cc82344c9061d69dce38fa4ae888

diff --git a/app-emulation/diskimage-builder/diskimage-builder-2.6.0.ebuild 
b/app-emulation/diskimage-builder/diskimage-builder-2.6.1.ebuild
similarity index 100%
rename from app-emulation/diskimage-builder/diskimage-builder-2.6.0.ebuild
rename to app-emulation/diskimage-builder/diskimage-builder-2.6.1.ebuild



[gentoo-commits] repo/gentoo:master commit in: net-nds/openldap/files/, net-nds/openldap/

2017-06-23 Thread Matt Thode
commit: 5edbe19fbef9511ab5de32a435209c6ec0b53bf4
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 16:07:38 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 16:14:33 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5edbe19f

net-nds/openldap: fix gnutls support in openldap-2.4.45 bug 622460

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 ...enldap-2.4.45-fix-lmpasswd-gnutls-symbols.patch | 109 +
 net-nds/openldap/openldap-2.4.45.ebuild|   2 +-
 2 files changed, 110 insertions(+), 1 deletion(-)

diff --git 
a/net-nds/openldap/files/openldap-2.4.45-fix-lmpasswd-gnutls-symbols.patch 
b/net-nds/openldap/files/openldap-2.4.45-fix-lmpasswd-gnutls-symbols.patch
new file mode 100644
index 000..0859d53caef
--- /dev/null
+++ b/net-nds/openldap/files/openldap-2.4.45-fix-lmpasswd-gnutls-symbols.patch
@@ -0,0 +1,109 @@
+If GnuTLS is used, the lmpasswd module for USE=samba does not compile.
+Forward-port an old Debian patch that upstream never applied.
+
+Signed-off-by: Robin H. Johnson 
+Signed-off-by: Steffen Hau 
+X-Gentoo-Bug: http://bugs.gentoo.org/show_bug.cgi?id=233633
+X-Upstream-Bug: 
http://www.openldap.org/its/index.cgi/Software%20Enhancements?id=4997
+X-Debian-Bug: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=245341
+
+--- openldap-2.4.17.orig/libraries/liblutil/passwd.c   2009-07-27 
18:59:19.635995474 -0700
 openldap-2.4.17/libraries/liblutil/passwd.c2009-07-27 
19:01:13.588069010 -0700
+@@ -51,6 +51,26 @@ typedef unsigned char des_data_block[8];
+ typedef PK11Context *des_context[1];
+ #define DES_ENCRYPT CKA_ENCRYPT
+ 
++#elif defined(HAVE_GNUTLS_GNUTLS_H) && !defined(DES_ENCRYPT)
++# include 
++static int gcrypt_init = 0;
++
++typedef const void* des_key;
++typedef unsigned char DES_cblock[8];
++typedef des_cblock des_data_block;
++typedef int DES_key_schedule; /* unused */
++typedef DES_key_schedule des_context; /* unused */
++#define des_failed(encrypted) 0
++#define des_finish(key, schedule) 
++
++#define DES_set_key_unchecked( key, key_sched ) \
++  gcry_cipher_setkey( hd, key, 8 )
++
++#define DES_ecb_encrypt( input, output, key_sched, enc ) \
++  gcry_cipher_encrypt( hd, *output, 8, *input, 8 )
++
++#define DES_set_odd_parity( key ) do {} while(0)
++
+ #endif
+ 
+ #endif /* SLAPD_LMHASH */
+@@ -651,7 +671,7 @@ static int chk_md5(
+ 
+ #ifdef SLAPD_LMHASH
+ 
+-#if defined(HAVE_OPENSSL)
++#if defined(HAVE_OPENSSL) || defined(HAVE_GNUTLS_GNUTLS_H)
+ 
+ /*
+  * abstract away setting the parity.
+@@ -841,6 +861,19 @@ static int chk_lanman(
+   des_data_block StdText = "KGS!@#$%";
+   des_data_block PasswordHash1, PasswordHash2;
+   char PasswordHash[33], storedPasswordHash[33];
++
++#if defined(HAVE_GNUTLS_GNUTLS_H) && !defined(DES_ENCRYPT)
++  gcry_cipher_hd_t hd;
++
++  if ( !gcrypt_init ) {
++gcry_check_version( GCRYPT_VERSION );
++gcrypt_init = 1;
++  }
++
++  schedule = schedule; /* unused - avoid warning */
++
++  gcry_cipher_open( , GCRY_CIPHER_DES, GCRY_CIPHER_MODE_ECB, 0 );
++#endif /* HAVE_GNUTLS_GNUTLS_H && !DES_ENCRYPT */
+   
+   for( i=0; ibv_len; i++) {
+   if(cred->bv_val[i] == '\0') {
+@@ -883,6 +916,10 @@ static int chk_lanman(
+   strncpy( storedPasswordHash, passwd->bv_val, 32 );
+   storedPasswordHash[32] = '\0';
+   ldap_pvt_str2lower( storedPasswordHash );
++
++#if defined(HAVE_GNUTLS_GNUTLS_H) && !defined(DES_ENCRYPT)
++  gcry_cipher_close( hd );
++#endif /* HAVE_GNUTLS_GNUTLS_H && !DES_ENCRYPT */
+   
+   return memcmp( PasswordHash, storedPasswordHash, 32) ? LUTIL_PASSWD_ERR 
: LUTIL_PASSWD_OK;
+ }
+@@ -1138,6 +1175,19 @@ static int hash_lanman(
+   des_data_block PasswordHash1, PasswordHash2;
+   char PasswordHash[33];
+   
++#if defined(HAVE_GNUTLS_GNUTLS_H) && !defined(DES_ENCRYPT)
++  gcry_cipher_hd_t hd;
++
++  if ( !gcrypt_init ) {
++gcry_check_version( GCRYPT_VERSION );
++gcrypt_init = 1;
++  }
++
++  schedule = schedule; /* unused - avoid warning */
++
++  gcry_cipher_open( , GCRY_CIPHER_DES, GCRY_CIPHER_MODE_ECB, 0 );
++#endif /* HAVE_GNUTLS_GNUTLS_H && !DES_ENCRYPT */
++
+   for( i=0; ibv_len; i++) {
+   if(passwd->bv_val[i] == '\0') {
+   return LUTIL_PASSWD_ERR;/* NUL character in 
password */
+@@ -1168,6 +1218,10 @@ static int hash_lanman(
+   
+   hash->bv_val = PasswordHash;
+   hash->bv_len = 32;
++
++#if defined(HAVE_GNUTLS_GNUTLS_H) && !defined(DES_ENCRYPT)
++  gcry_cipher_close( hd );
++#endif /* HAVE_GNUTLS_GNUTLS_H && !DES_ENCRYPT */
+   
+   return pw_string( scheme, hash );
+ }

diff --git a/net-nds/openldap/openldap-2.4.45.ebuild 
b/net-nds/openldap/openldap-2.4.45.ebuild
index 23c66c3db53..b2493271ba4 100644
--- a/net-nds/openldap/openldap-2.4.45.ebuild
+++ 

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

2017-06-23 Thread Matt Thode
commit: 4c53ccfd093b3586023560dfa7a6c24c0cd62953
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 15:27:00 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 16:14:20 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c53ccfd

sys-cluster/cinder: bup 10.0.3 pbr uncap

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 sys-cluster/cinder/Manifest |   1 +
 sys-cluster/cinder/cinder-10.0.3.ebuild | 193 
 2 files changed, 194 insertions(+)

diff --git a/sys-cluster/cinder/Manifest b/sys-cluster/cinder/Manifest
index 083e0408a12..3d2a239550f 100644
--- a/sys-cluster/cinder/Manifest
+++ b/sys-cluster/cinder/Manifest
@@ -1,4 +1,5 @@
 DIST cinder-10.0.2.tar.gz 4605687 SHA256 
8abeee27419679127fd0292240981bcdbcf6af1ec2604f1e37e939692d766eed SHA512 
29c7670add87c1465ed2c5a0e8c264f9fd8c0b36baa7ce2f71ca052be7b3be56cd60beea9452881cbd4285fa1dc556815ff360fe15daaca1b5ae816e24c7ec50
 WHIRLPOOL 
26427c0bb789e9a668d66048129d68f71de527443d0da1346cb887ef85bfc2f67cd8e1283e8d24531297537575af01c9f87315373810cce86f31d36251a19635
+DIST cinder-10.0.3.tar.gz 4620868 SHA256 
53e7538299e3c72c809112e85a065581b38e752ec19a0dbc0c918554eedd6789 SHA512 
e22fca956c751a70e2248cab42cca4a0671d8a52537083dc97db4ba2279678f08e894cffba3e6f7c8b32f5313bdccd2af890948c463683ac64e4cf0a3313cc3b
 WHIRLPOOL 
b904908c13ade48db737f2491c5afd864ac77fce5f249b8a66b60cde51573b3b43475d0292d6e99509f95f681a347225572944a5eb5451498e2e31fc01fa24f5
 DIST cinder-9.1.4.tar.gz 4195597 SHA256 
ee8a2ca264a41c8f4ed48094722d683cffae99cee910f19a140b0d1d0f5251a4 SHA512 
8039d5208296ea54fc869fb05dd91451ac3575eb3dd2ed97d0c63120d18b67b02b835a849cd1ec3dae349920895e13665c15a6daa53f67138823053c49ab87a9
 WHIRLPOOL 
f2fd2bbba72d2f74f1395f2b280ed3304ecec37c9bcdc7b73a104d19698dad123ffdbce58249c426245c68584eb7a10a640f38a9192933d8db30a7f45b79c48e
 DIST newton-cinder-policy.json 6412 SHA256 
3a140134201452c52a97eae9f4c45ea30a3a21cc7a30ee619ed37ab0723b6479 SHA512 
3473b5790487bd037d54e4a1a89bab9d145bc34d137d52da2b6b311d2dfee2344fec75c6c96bc518a3e0b175fbd6cde71fb546406c0ef835898e3c1c88eb6d56
 WHIRLPOOL 
f34dc729425fd82ddd9905c675fca9b765b4535dc87ec9d94acd1781c331e466f8688aace4954532e376e704cf3f1c8f4103f22e6838d4403c10311358e1ed2b
 DIST newton-cinder-volume.filters 11025 SHA256 
c36bdb9abb4d97350db9971dae1c44a713911920362a0c6c5bc3cfe2701dd4f6 SHA512 
311a636180a18bb45867d55f9d33f1eff053cc7b278b41149c58a14450ff8e6d2016d749cc3fb81d1976c4ab78f7701a908bd9c81eb6e9da31c20820a4eaff3d
 WHIRLPOOL 
7496fffec8e42eb1c3bea39563cef8d48cb607b7de1ba8a4ac9a831b6def3dcbcfdf7d485aa81f52aa9bdf7600a51ba07ff85fbf88c5c70091ad88f8c01ca37e

diff --git a/sys-cluster/cinder/cinder-10.0.3.ebuild 
b/sys-cluster/cinder/cinder-10.0.3.ebuild
new file mode 100644
index 000..0889f368316
--- /dev/null
+++ b/sys-cluster/cinder/cinder-10.0.3.ebuild
@@ -0,0 +1,193 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_4 )
+
+inherit distutils-r1 eutils linux-info user
+
+DESCRIPTION="Cinder is the OpenStack Block storage service, a spin out of 
nova-volumes"
+HOMEPAGE="https://launchpad.net/cinder;
+SRC_URI="https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/ocata/cinder.conf.sample
 -> ocata-cinder.conf.sample
+https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/ocata/policy.json 
-> ocata-cinder-policy.json
+https://dev.gentoo.org/~prometheanfire/dist/openstack/cinder/ocata/volume.filters
 -> ocata-cinder-volume.filters
+https://tarballs.openstack.org/${PN}/${P}.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="+api +scheduler +volume infiniband iscsi lvm mysql +memcached postgres 
rdma sqlite +tcp test +tgt"
+REQUIRED_USE="|| ( mysql postgres sqlite ) iscsi? ( tgt ) infiniband? ( rdma )"
+
+CDEPEND=">=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
+DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   ${CDEPEND}
+   app-admin/sudo"
+
+RDEPEND="
+   ${CDEPEND}
+   >=dev-python/Babel-2.3.4[${PYTHON_USEDEP}]
+   >=dev-python/decorator-3.4.0[${PYTHON_USEDEP}]
+   dev-python/enum34[$(python_gen_usedep 'python2_7')]
+   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
+   >=dev-python/greenlet-0.3.2[${PYTHON_USEDEP}]
+   >=dev-python/httplib2-0.7.5[${PYTHON_USEDEP}]
+   >=dev-python/iso8601-0.1.11[${PYTHON_USEDEP}]
+   virtual/python-ipaddress[${PYTHON_USEDEP}]
+   >=dev-python/keystoneauth-2.18.0[${PYTHON_USEDEP}]
+   >=dev-python/keystonemiddleware-4.12.0[${PYTHON_USEDEP}]
+   >=dev-python/lxml-2.3[${PYTHON_USEDEP}]
+   !~dev-python/lxml-3.7.0[${PYTHON_USEDEP}]
+   >=dev-python/oauth2client-1.5.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-config-3.14.0[${PYTHON_USEDEP}]
+   !~dev-python/oslo-config-3.18.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-concurrency-3.8.0[${PYTHON_USEDEP}]
+   

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

2017-06-23 Thread Matt Thode
commit: c2802293b3bdd64ff434a475204d4a819bfcf7fa
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 15:48:25 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 16:14:29 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2802293

media-sound/spotify: 1.0.57 bup (thanks to alexbakker)

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-sound/spotify/Manifest| 4 ++--
 .../spotify/{spotify-1.0.55.ebuild => spotify-1.0.57.ebuild}| 6 +++---
 2 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-sound/spotify/Manifest b/media-sound/spotify/Manifest
index ec97c8cf254..c76db9f285a 100644
--- a/media-sound/spotify/Manifest
+++ b/media-sound/spotify/Manifest
@@ -1,4 +1,4 @@
 DIST spotify-client_1.0.49.125.g72ee7853-111_amd64.deb 73404932 SHA256 
1d6d1cccfb7f996b835f21c8dbabc16ca4bd214878e06738dba7886640470050 SHA512 
f6152f71fae3827e1f9dfb07cbe30319f090db151702ca02f3566f3deeec369da0c70f9995a548e0df92d655b593de520ab387a011201317753d3def70741e24
 WHIRLPOOL 
b5111509c902068bd2559267bfd2febfab8b4464d73e54a302d23807338e796045901fe14b9c229e6a412553f7cfe84e903ddfc4c4c3e9a60609b23a7ecf2c3c
 DIST spotify-client_1.0.49.125.g72ee7853-22_i386.deb 74637938 SHA256 
96c02fdc77991feb0797089d701744c2de4584322f966a1c070b559df27f9b04 SHA512 
4a8aab47b6b0c2ac9b349c858e4728451e713c466bcff9c1eac9c6215259ad9325a51b0fc8bd2afcfa141a6ad518f97d408b5d779a126f2ac62c9e8be93f5f93
 WHIRLPOOL 
9bd02e73731cc4d2e55c43b08d1bea1d3fcfecb13ebdf8fe591aa5be6961423e3463a2fd625745561ebb7f33c902246a84f406bcc1dd3f7f47ffad6b98daa451
-DIST spotify-client_1.0.55.487.g256699aa-16_amd64.deb 91060768 SHA256 
20073ba6fdf7d960361d4cb2afa6453e7a2108bd84df8f9cdf2cdf7225a83027 SHA512 
c709a24d7980c61916faf55ed7be037dd0c9fbd5f00259004fe1e1e429056009f17c8f18c7eb07c738ce16fae31ea79f2329a703ba18709aa0ca691c08ad06d4
 WHIRLPOOL 
dcc9c90cfa398103c26aa0bfaf194132e3fa323697648d6eef088f2d9d83f513b0efcfa29e51f535405a216f190b486497cd5fedbc1f4618463c6a608e4fa96b
-DIST spotify-client_1.0.55.487.g256699aa-16_i386.deb 90692680 SHA256 
183f87b930b75d85ecb34cef2b26b0355a3a18ffa38e0e0a476bfb190972b74d SHA512 
bdb9d50a554b7c60fc8f1c261c68bdadd706523ab3ad6b4dec6fe2494c48136c9f6bea731fb9cee0519692f1de94589e2f13b272f1c5be5c152f5ed1a9b10b0d
 WHIRLPOOL 
0cd7b0dbd6c5ea6fa64c70e11821be041f4098d61740c0b508c5a1f2ccfbcfe6cc3dbb19624a97a9a2825a163ccb90dc60f80408fe3e1a76f0c5ee0fbfd1cde2
+DIST spotify-client_1.0.57.474.gca9c9538-30_amd64.deb 91837192 SHA256 
fe46f2084c45c756bee366f744d2821d79e82866b19942e30bb2a20c1e597437 SHA512 
53b6777c4f64dd0dc368ac33765ec763baa33130e273335accb29db5717bc0cf9c46a26ee59abceea1794967ca070735cdfcb53a43b7622d7d9efbc065b30de4
 WHIRLPOOL 
f920813b084d694a0ecf0582c3cb3596736a4689ca3662b03036ee179df0402a0d3224641885bc5257b0a3912b85248227a1e74acd4c55ea50c49a86b359a59c
+DIST spotify-client_1.0.57.474.gca9c9538-30_i386.deb 91527492 SHA256 
8f2f4e6c71fe923512062e1c0378424a74651f5c107c05e8daf3b7bf67fd6de1 SHA512 
d66ef257a2f05060d60a66a03607ce7c2906436578207282f941e6279dd73dd3fc00af3a245e3d45ea293c79930a0c8f1347bda63c8fd647b8e29ff07a7a82bd
 WHIRLPOOL 
4d499ca70271c386708c71959d04beeff0be42141a310a1d5acf5ba6ec77316e2818620f2b176dc997cb7efdd4aebf626e4d04f9f3d4006e9f9ae9d29d917312

diff --git a/media-sound/spotify/spotify-1.0.55.ebuild 
b/media-sound/spotify/spotify-1.0.57.ebuild
similarity index 95%
rename from media-sound/spotify/spotify-1.0.55.ebuild
rename to media-sound/spotify/spotify-1.0.57.ebuild
index 4c42ea31192..2cd3b61d556 100644
--- a/media-sound/spotify/spotify-1.0.55.ebuild
+++ b/media-sound/spotify/spotify-1.0.57.ebuild
@@ -6,10 +6,10 @@ 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/;
-BUILD_ID="487.g256699aa"
+BUILD_ID="474.gca9c9538"
 SRC_BASE="http://repository.spotify.com/pool/non-free/${PN:0:1}/${PN}-client/;
-SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.${BUILD_ID}-16_amd64.deb )
-   x86? ( ${SRC_BASE}${PN}-client_${PV}.${BUILD_ID}-16_i386.deb )"
+SRC_URI="amd64? ( ${SRC_BASE}${PN}-client_${PV}.${BUILD_ID}-30_amd64.deb )
+   x86? ( ${SRC_BASE}${PN}-client_${PV}.${BUILD_ID}-30_i386.deb )"
 LICENSE="Spotify"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"



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

2017-06-23 Thread Matt Thode
commit: b75d043441b66c582f29c99bc5e05ea0cfa67e73
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 15:21:48 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 16:14:17 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b75d0434

dev-python/pbr: bup 3.1.1 remove 3.1.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/pbr/Manifest   | 2 +-
 dev-python/pbr/{pbr-3.1.0.ebuild => pbr-3.1.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pbr/Manifest b/dev-python/pbr/Manifest
index b1c569f1cd5..a71215b4393 100644
--- a/dev-python/pbr/Manifest
+++ b/dev-python/pbr/Manifest
@@ -5,4 +5,4 @@ DIST pbr-1.9.1.tar.gz 113439 SHA256 
3997406c90894ebf3d1371811c1e099721440a901f94
 DIST pbr-2.0.0.tar.gz 98568 SHA256 
0ccd2db529afd070df815b1521f01401d43de03941170f8a800e7531faba265d SHA512 
39540f54de674d4e50d6e9239328c0ac11ae6218a1483b023ab282efb797fc143d22334f60697ba81e2309c525860525ed0ce4858d66b187d2581fab9fae6b7d
 WHIRLPOOL 
049df8e4fee3c65c04362cbbcda88047f9fa672caa1d1319bac5dfdf2452ddfd442e9e46bc832fad57831844eed1f0da4267fe3ae40b148948a9413aa5b155a2
 DIST pbr-2.1.0.tar.gz 100858 SHA256 
f71359a7e2de2f5ea1eceea7c1e3222f2560ee48e21eef6f96957bb5c2ebb94a SHA512 
a4a7b1c96545bd25f63a439608f22bc04309c518f78f0044d18f10ce7c9ceeca3da97be527f0330c65d875900a3729dea99dade95787fb2ea75c3ae387b36938
 WHIRLPOOL 
f82152ebb34ed21438853289c66ce326d39a57f6da7c28a31b9e43c26ab2a54ed9978cd398d5e7f28cdd94abcdc0017557d15af3458ec8f66b181fd5ef6de836
 DIST pbr-3.0.1.tar.gz 100518 SHA256 
d7e8917458094002b9a2e0030ba60ba4c834c456071f2d0c1ccb5265992ada91 SHA512 
30ffb8f0c0184c7613add7094ff065d709d9c83e829f7e65ea60f5d1e0fbd267c3067aed8eff0c7767110b079e118141743f4f63185f8617925566ff14a40412
 WHIRLPOOL 
eca2d4335399c2fe10ba7d5dd0ccda28d57d6c0ce8890f625765eab1e593c5b1a200a3cf433355ef898a9d2d5b9a67ce99ab88a13591a9cc363b0c6ee8b4fb40
-DIST pbr-3.1.0.tar.gz 102185 SHA256 
b8af6ec309f4f3ab419b998b22073d66da55b36414e0b729cb04a408f6d73697 SHA512 
23c69210485768e4acade72eff1c5be3168495c252d91d3c19128b73d4038e25f4e9a2516f61f0112f5f9ca327b1a4b8d3132cc272d93823129b4f563682d0b5
 WHIRLPOOL 
5608426a0e76d3507ec8b79f95eca0f15750ecb460e90fcc7ce42e7eed6b81efc1c7c9f15a486d84aecc5be1b358d4c063c1ae455b58c5405b348aa3977b3f9f
+DIST pbr-3.1.1.tar.gz 102665 SHA256 
05f61c71aaefc02d8e37c0a3eeb9815ff526ea28b3b76324769e6158d7f95be1 SHA512 
c01fb83678f8fc3acddc153dd341a17ed9d602b6770f0ff244b1c5b54c37d4ddcbd0c3d726f7d7020865819e02797c1c79a0c15e9ee2ae5c1510fce7112b2a3a
 WHIRLPOOL 
00c980b8499c2418e4e2847cbb85fccf921ffa15e1c32c3b3053a46468efd2578faf224334ce81c24177705d66c1c1a2f9d5d8de7c0a0ce4b45a017e02da

diff --git a/dev-python/pbr/pbr-3.1.0.ebuild b/dev-python/pbr/pbr-3.1.1.ebuild
similarity index 100%
rename from dev-python/pbr/pbr-3.1.0.ebuild
rename to dev-python/pbr/pbr-3.1.1.ebuild



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

2017-06-23 Thread Matt Thode
commit: 0c7f125ca930c478b91bb0c959ce6d7bfaa23572
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jun 23 15:28:27 2017 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jun 23 16:14:23 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c7f125c

dev-python/oslo-rootwrap: 5.4.1 stable amd64 and x86 and cleanup

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/oslo-rootwrap/Manifest  |  1 -
 .../oslo-rootwrap/oslo-rootwrap-5.4.0.ebuild   | 47 --
 .../oslo-rootwrap/oslo-rootwrap-5.4.1.ebuild   |  2 +-
 3 files changed, 1 insertion(+), 49 deletions(-)

diff --git a/dev-python/oslo-rootwrap/Manifest 
b/dev-python/oslo-rootwrap/Manifest
index 70b6b5da931..f254d86481e 100644
--- a/dev-python/oslo-rootwrap/Manifest
+++ b/dev-python/oslo-rootwrap/Manifest
@@ -1,2 +1 @@
-DIST oslo.rootwrap-5.4.0.tar.gz 40741 SHA256 
8b3c1c5726e0845fcd00d9f951f012bdd3405380acf125428268fba4f70f3c00 SHA512 
9848d9f18b7a4063f74d170615b99dc3ebcbcba1ff1f0a10f42b2af9284dd58a65a6b483bed20d176de00170ad60ac7b847cf5a31b950fcd7bf06ecbaecb1823
 WHIRLPOOL 
0996255270825040156767ae1b08a82aa8df87cabd9122522866ce38e99278c72242d1dfae5e0417267d1dd683b5e3d4ba0d3dcbc75e4449df2a01b267ea24b2
 DIST oslo.rootwrap-5.4.1.tar.gz 42202 SHA256 
a76cf545515c1cf6d4d9b1a01a339c1356d1eb78ff3b2190e168dafead3c7e7d SHA512 
71980ea266703c7880834cf75b69be9f7bee834a3be314f13ade1bb9903ecf6337237a32a1ed06d020c2fdd3807642af1dd676b6736052d4e57784942782d960
 WHIRLPOOL 
321a2e9774e3702015510d608e4e145d9fc69c4069865dd5215ad6e94e3692e7e56e029298e908fc007f487d54737d3cd4218dfc93d0625c6950edba45da56b2

diff --git a/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.0.ebuild 
b/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.0.ebuild
deleted file mode 100644
index 82a554a79ab..000
--- a/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.0.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python2_7 python3_4 python3_5 )
-
-inherit distutils-r1
-
-DESCRIPTION="Allows fine filtering of shell commands to run as root from 
OpenStack services"
-HOMEPAGE="https://pypi.python.org/pypi/oslo.config;
-SRC_URI="mirror://pypi/${PN:0:1}/oslo.rootwrap/oslo.rootwrap-${PV}.tar.gz"
-S="${WORKDIR}/oslo.rootwrap-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="test"
-
-CDEPEND="
-   >=dev-python/pbr-1.8[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${CDEPEND}
-   test? (
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   >=dev-python/subunit-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/testrepository-0.0.18[${PYTHON_USEDEP}]
-   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
-   >=dev-python/testtools-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.2.1[${PYTHON_USEDEP}]
-   =dev-python/oslo-sphinx-4.7.0[${PYTHON_USEDEP}]
-   >=dev-python/oslotest-1.10.0[${PYTHON_USEDEP}]
-   >=dev-python/mock-2.0.0[${PYTHON_USEDEP}]
-   >=dev-python/eventlet-0.18.4[${PYTHON_USEDEP}]
-   >=dev-python/reno-1.8.0[${PYTHON_USEDEP}]
-   dev-python/nose[${PYTHON_USEDEP}] )"
-RDEPEND=">=dev-python/six-1.9.0[${PYTHON_USEDEP}]"
-
-python_prepare_all() {
-   sed -i '/^hacking/d' test-requirements.txt || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   sed -i 's/sbin\/ip/bin\/ip/g' tests/test_rootwrap.py
-   nosetests tests/ || die "test failed under ${EPYTHON}"
-}

diff --git a/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.1.ebuild 
b/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.1.ebuild
index 42e6fb2940b..82a554a79ab 100644
--- a/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.1.ebuild
+++ b/dev-python/oslo-rootwrap/oslo-rootwrap-5.4.1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/oslo.rootwrap-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 IUSE="test"
 
 CDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-emulation/docker-machine-kvm/

2017-06-23 Thread Zac Medico
commit: ca2474fe5ed91a68ef2c2041ebbb98ceba37d9b2
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Jun 23 16:08:34 2017 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Jun 23 16:08:34 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca2474fe

app-emulation/docker-machine-kvm: remove old version

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 app-emulation/docker-machine-kvm/Manifest  |  3 -
 .../docker-machine-kvm-0.7.0.ebuild| 69 --
 2 files changed, 72 deletions(-)

diff --git a/app-emulation/docker-machine-kvm/Manifest 
b/app-emulation/docker-machine-kvm/Manifest
index 5afb9245cf3..f768cf77576 100644
--- a/app-emulation/docker-machine-kvm/Manifest
+++ b/app-emulation/docker-machine-kvm/Manifest
@@ -1,6 +1,3 @@
-DIST docker-machine-0.8.2.tar.gz 2928577 SHA256 
6ca75b2995f57505901da2f45ce422c782b73d89054cc10868100b3404ccfd05 SHA512 
3fa683f74466e30616495b8e635e28be0c7557e17940bc4f3f8598a755463b5ae75e64405281325e2028aee5a3e06744329d9bf0a7b6ade200f3d3c51ba2fe80
 WHIRLPOOL 
37d9ddd2a946ee890bb771b304be692385e0ef1f53ef8ed100f2860e7cab7b825093a2d7b4c3bfa8b78193df1ab7ec9d16817aef1985a48ae1b97b666051cf96
 DIST docker-machine-kvm-0.10.0.tar.gz 12183 SHA256 
9e3c5ddeac2cabcf0a604b7032020cfee9b16b3d1cb27697d2ec4491cc18688f SHA512 
d4725531e43814ae2b8c3826ad695cc853177d09aeae9c97aa24b5c0de8732bdef67b12f7218244cf44cdd589bb9878058e587c946e13481ba57cb418c535e9e
 WHIRLPOOL 
7ce0fb4c2c23e8c7a882359be251359af75f1e60b3646b0f1b26bccf9cc48b9ff78f0a11eb2b733bfe969136b63b8f2eed57ea7250acd0945f0ba4d368a741cf
-DIST docker-machine-kvm-0.7.0.tar.gz 6975 SHA256 
25fae12f952faa155e1141e2f0ab196ebcd22b7691848e1022d54faa806e998f SHA512 
8b58806d3afc58f28d483df8644d3d734407c931a9e6b2c055589d500de115b88693928f73fccb9f2ebe7b01cdd1b473e3e3654c9867d102f60d0fa72ff97d4e
 WHIRLPOOL 
dbd0d6048d202b548d45a3261d6c4cf129dad5beeb61108a220ba6b4939e57f04c054624c95c3121a3fc964be02ea4edbc14b9b762bbe9317cb9c8cac21ded00
 DIST github.com-docker-machine-v0.10.0.tar.gz 1605832 SHA256 
ed64698723436e68341a1ebd8486006293eac306bfa8628e924b38bfcb5b039d SHA512 
337ed74474b5e55e10ccd7c8bb3b778d06fc2c56c1646678715548ddeb41a0b7320212d498ad96cbdd08137f78013506b569c4e0aa0a2f28169264d64d814f7c
 WHIRLPOOL 
06802376ba23ec1706ad09c784e3ceb70aab439d88523c2845a69a895e9a31911737bbf889f91627caae79e31cf8039265382183f7112987f0de6aea58adf138
 DIST 
github.com-libvirt-libvirt-go-c3209e4ba8b8dda65c85ca0ac04302e55895caf7.tar.gz 
100068 SHA256 0f512d56f02fc0369037e17d7598793cb6e79321c82c53fac788f8cfec1b669d 
SHA512 
7ac5964349c90ac45f627f9c714b04c3ff07428ca2ef7edb1bd173cb7264040ddb49f9df57249a7dbc5f3500c7e1b4011b40faf4b8104f1ef56a1833cb020ab3
 WHIRLPOOL 
2a40fb3c5ad07fa4fcdf5beff98a79f6939246815ad4c845a364810b1fccd2d312e9fc39964f446da76e5d3a2e37d6d9bf4fb94204e808cedbde77f4eba1c720
-DIST libvirt-go-2.13.0.tar.gz 42994 SHA256 
e75d5fa2509f10fb2d5a88e7570397cb7de69ecd8424a2859bd73abc4495d864 SHA512 
5a5c8a2fc57c2818455fdb0ea13f98abc7d15c139ccdc692e562fddfd7152653635f1955ebad61b94202a706b94b45cb783a9e6387eef0a00c528cb2f0663fb0
 WHIRLPOOL 
8ff6553ac55805234a4496d21c0a2d7782d20c301c7f4271b92a14b538ad5bb5c27f9b98eac868815f691fed05f579f95d6638b923a7c2c2788f02169a09deb8

diff --git a/app-emulation/docker-machine-kvm/docker-machine-kvm-0.7.0.ebuild 
b/app-emulation/docker-machine-kvm/docker-machine-kvm-0.7.0.ebuild
deleted file mode 100644
index 8b62f95fd5f..000
--- a/app-emulation/docker-machine-kvm/docker-machine-kvm-0.7.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit golang-base
-
-KEYWORDS="~amd64"
-DESCRIPTION="KVM driver for docker-machine"
-EGO_PN="github.com/dhiltgen/${PN}/..."
-HOMEPAGE="http://${EGO_PN%/*};
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-COMMON_DEPEND="app-emulation/libvirt:=[qemu,virt-network]"
-DEPEND=">=dev-lang/go-1.6:=
-   ${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-
-SRC_URI="https://${EGO_PN%/*}/archive/v${PV}.tar.gz -> ${P}.tar.gz
-   https://github.com/rgbkrk/libvirt-go/archive/v2.13.0.tar.gz -> 
libvirt-go-2.13.0.tar.gz
-   https://github.com/docker/machine/archive/v0.8.2.tar.gz -> 
docker-machine-0.8.2.tar.gz"
-
-get_archive_go_package() {
-   local archive=${1} uri x
-   for x in ${SRC_URI}; do
-   if [[ ${x} == http* ]]; then
-   uri=${x}
-   elif [[ ${x} == ${archive} ]]; then
-   break
-   fi
-   done
-   uri=${uri#https://}
-   echo ${uri%/archive/*}
-}
-
-unpack_go_packages() {
-   local go_package x
-   # Unpack packages to appropriate locations for GOPATH
-   for x in ${A}; do
-   unpack ${x}
-   if [[ ${x} == *.tar.gz ]]; then
-   go_package=$(get_archive_go_package ${x})
-   mkdir -p src/${go_package%/*}
-   mv 

[gentoo-commits] proj/sci:master commit in: sci-geosciences/pydap_handlers_sql/

2017-06-23 Thread Justin Lecher
commit: 4e79255ce7d6f0b4c7bf6e6e13f42470cdd3a202
Author: Justin Lecher  gentoo  org>
AuthorDate: Fri Jun 23 15:52:39 2017 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Fri Jun 23 15:52:39 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=4e79255c

sci-geosciences/pydap_handlers_sql: Drop pacage due to dropped deps

Signed-off-by: Justin Lecher  gentoo.org>

 sci-geosciences/pydap_handlers_sql/metadata.xml| 19 --
 .../pydap_handlers_sql-0.3.0.ebuild| 43 --
 2 files changed, 62 deletions(-)

diff --git a/sci-geosciences/pydap_handlers_sql/metadata.xml 
b/sci-geosciences/pydap_handlers_sql/metadata.xml
deleted file mode 100644
index 052f208ec..0
--- a/sci-geosciences/pydap_handlers_sql/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-t...@cerazone.net
-Tim Cera
-  
-  
-sci-geoscien...@gentoo.org
-Gentoo Geosciences Project
-  
-  
-   Pydap is a pure Python library implementing the Data Access Protocol.
-   pydap_handlers_sql allows Pydap server to serve data from SQL databases.
-  
-  
-pydap.handlers.sql
-  
-

diff --git a/sci-geosciences/pydap_handlers_sql/pydap_handlers_sql-0.3.0.ebuild 
b/sci-geosciences/pydap_handlers_sql/pydap_handlers_sql-0.3.0.ebuild
deleted file mode 100644
index 878e61141..0
--- a/sci-geosciences/pydap_handlers_sql/pydap_handlers_sql-0.3.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN=${PN//_/.}
-MY_P=${P//_/.}
-
-DESCRIPTION="SQL handler for Pydap server that allows serving data from SQL 
databases"
-HOMEPAGE="http://pydap.org/handlers.html#cdms;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="pydap"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="postgres mysql"
-
-DEPEND="
-   >=dev-python/setuptools-0.6_rc3[${PYTHON_USEDEP}]
-   >=dev-python/paver-1.0.4[${PYTHON_USEDEP}]"
-RDEPEND="
-   >=sci-geosciences/pydap-3.0_rc8[${PYTHON_USEDEP}]
-   >=sci-geosciences/cdat-lite-5.2[${PYTHON_USEDEP}]
-   >=dev-python/arrayterator-1.0.1[${PYTHON_USEDEP}]
-   postgres? ( >=dev-python/psycopg-2[${PYTHON_USEDEP}] )
-   mysql? ( >=dev-python/mysql-python-1.2.3_rc1[${PYTHON_USEDEP}] )"
-
-   # When cx_oracle is available...
-   # oracle? >=dev-python/cx_oracle
-
-   # Currently adodbapi is only availble for Windows so mssql support is 
not available.
-   # If pydap used dev-python/pymssql that would be better.
-
-S="$WORKDIR/$MY_P"
-
-python_prepare_all() {
-   paver generate_setup || die
-   distutils-r1_python_prepare_all
-}



[gentoo-commits] proj/sci:master commit in: sci-geosciences/pydap_handlers_cdms/

2017-06-23 Thread Justin Lecher
commit: 616bb61e1931d0dac47814558267986756dce07c
Author: Justin Lecher  gentoo  org>
AuthorDate: Fri Jun 23 15:50:54 2017 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Fri Jun 23 15:50:54 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=616bb61e

sci-geosciences/pydap_handlers_cdms: Drop package due to masked deps

Signed-off-by: Justin Lecher  gentoo.org>

 sci-geosciences/pydap_handlers_cdms/metadata.xml   | 19 ---
 .../pydap_handlers_cdms-0.2.0.1.ebuild | 28 --
 2 files changed, 47 deletions(-)

diff --git a/sci-geosciences/pydap_handlers_cdms/metadata.xml 
b/sci-geosciences/pydap_handlers_cdms/metadata.xml
deleted file mode 100644
index 925bead0a..0
--- a/sci-geosciences/pydap_handlers_cdms/metadata.xml
+++ /dev/null
@@ -1,19 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-t...@cerazone.net
-Tim Cera
-  
-  
-sci-geoscien...@gentoo.org
-Gentoo Geosciences Project
-  
-  
-   Pydap is a pure Python library implementing the Data Access Protocol.
-   pydap_handlers_cdms allows Pydap server to serve GRADS formatted files.
-  
-  
-pydap.handlers.cdms
-  
-

diff --git 
a/sci-geosciences/pydap_handlers_cdms/pydap_handlers_cdms-0.2.0.1.ebuild 
b/sci-geosciences/pydap_handlers_cdms/pydap_handlers_cdms-0.2.0.1.ebuild
deleted file mode 100644
index d3419a82f..0
--- a/sci-geosciences/pydap_handlers_cdms/pydap_handlers_cdms-0.2.0.1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2014 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-MY_PN=${PN//_/.}
-MY_P=${P//_/.}
-
-DESCRIPTION="CDMS handler for Pydap server"
-HOMEPAGE="http://pydap.org/handlers.html#cdms;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="pydap"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=">=dev-python/setuptools-0.6_rc3[${PYTHON_USEDEP}]"
-RDEPEND="
-   >=sci-geosciences/pydap-3.0_rc10[${PYTHON_USEDEP}]
-   >=sci-geosciences/cdat-lite-6.0_alpha[${PYTHON_USEDEP}]
-   >=dev-python/arrayterator-1.0.1[${PYTHON_USEDEP}]"
-
-S="$WORKDIR/$MY_P"



[gentoo-commits] proj/sci:master commit in: www-client/casperjs/, dev-python/notebook/, dev-python/ipywidgets/

2017-06-23 Thread Justin Lecher
commit: 6404ec5be8922635577379dea461e1fd542c32de
Author: Justin Lecher  gentoo  org>
AuthorDate: Fri Jun 23 15:30:58 2017 +
Commit: Justin Lecher  gentoo  org>
CommitDate: Fri Jun 23 15:30:58 2017 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=6404ec5b

Drop www-client/casperjs due to broken revdeps

Signed-off-by: Justin Lecher  gentoo.org>

 dev-python/ipywidgets/ipywidgets-4.1.1.ebuild |  1 -
 dev-python/ipywidgets/ipywidgets-.ebuild  |  1 -
 dev-python/notebook/notebook-4.0.6.ebuild |  1 -
 dev-python/notebook/notebook-.ebuild  |  1 -
 www-client/casperjs/casperjs-1.1_beta5.ebuild | 38 ---
 www-client/casperjs/metadata.xml  | 11 
 6 files changed, 53 deletions(-)

diff --git a/dev-python/ipywidgets/ipywidgets-4.1.1.ebuild 
b/dev-python/ipywidgets/ipywidgets-4.1.1.ebuild
index bf74d76ab..5497fcc79 100644
--- a/dev-python/ipywidgets/ipywidgets-4.1.1.ebuild
+++ b/dev-python/ipywidgets/ipywidgets-4.1.1.ebuild
@@ -26,7 +26,6 @@ DEPEND="${RDEPEND}
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
dev-python/nose[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
-   www-client/casperjs
)
"
 

diff --git a/dev-python/ipywidgets/ipywidgets-.ebuild 
b/dev-python/ipywidgets/ipywidgets-.ebuild
index 38a13a13e..c32dbb3e1 100644
--- a/dev-python/ipywidgets/ipywidgets-.ebuild
+++ b/dev-python/ipywidgets/ipywidgets-.ebuild
@@ -27,7 +27,6 @@ DEPEND="${RDEPEND}
$(python_gen_cond_dep 'dev-python/mock[${PYTHON_USEDEP}]' 
python2_7)
dev-python/nose[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
-   www-client/casperjs
)
"
 

diff --git a/dev-python/notebook/notebook-4.0.6.ebuild 
b/dev-python/notebook/notebook-4.0.6.ebuild
index d01e5174f..c704eaf44 100644
--- a/dev-python/notebook/notebook-4.0.6.ebuild
+++ b/dev-python/notebook/notebook-4.0.6.ebuild
@@ -36,7 +36,6 @@ DEPEND="${RDEPEND}
>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
-   www-client/casperjs
)
doc? (
app-text/pandoc

diff --git a/dev-python/notebook/notebook-.ebuild 
b/dev-python/notebook/notebook-.ebuild
index 990fe2113..e54ee851c 100644
--- a/dev-python/notebook/notebook-.ebuild
+++ b/dev-python/notebook/notebook-.ebuild
@@ -35,7 +35,6 @@ DEPEND="${RDEPEND}
>=dev-python/nose-0.10.1[${PYTHON_USEDEP}]
dev-python/requests[${PYTHON_USEDEP}]
dev-python/coverage[${PYTHON_USEDEP}]
-   www-client/casperjs
)
doc? (
app-text/pandoc

diff --git a/www-client/casperjs/casperjs-1.1_beta5.ebuild 
b/www-client/casperjs/casperjs-1.1_beta5.ebuild
deleted file mode 100644
index 7e157d3a3..0
--- a/www-client/casperjs/casperjs-1.1_beta5.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-MY_PV=${PV/_beta/-beta}
-
-DESCRIPTION="Navigation scripting & testing utility for PhantomJS and SlimerJS"
-HOMEPAGE="http://casperjs.org/;
-SRC_URI="https://github.com/n1k0/${PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-  
-s...@gentoo.org
-Gentoo Science Project
-  
-  
-n1k0/casperjs
-  
-



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

2017-06-23 Thread Patrice Clement
commit: 60290adad4d42993cb31da23cba379895e750ece
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jun 23 15:30:59 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 23 15:30:59 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60290ada

www-apache/mod_jk: remove proxy-maintainers.

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 www-apache/mod_jk/metadata.xml | 9 -
 1 file changed, 9 deletions(-)

diff --git a/www-apache/mod_jk/metadata.xml b/www-apache/mod_jk/metadata.xml
index b697d7a30b2..7502a331d87 100644
--- a/www-apache/mod_jk/metadata.xml
+++ b/www-apache/mod_jk/metadata.xml
@@ -1,19 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   m...@weisso.com
-   Mike Weissman
-   Proxy maintainer
-   

j...@gentoo.org
Java

-   
-   proxy-ma...@gentoo.org
-   Proxy Maintainers
-   

mod_jk is a connector used to connect Tomcat JSP/Servlet 
container with web servers such as Apache, Netscape, 



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

2017-06-23 Thread Patrice Clement
commit: de1f48e9ce490960a0bed73852287f4be647e808
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jun 23 15:25:23 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 23 15:25:27 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de1f48e9

profiles/package.mask: remove www-apache/mod_jk entry.

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 535859c32c9..83bb1bf966f 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -379,12 +379,6 @@ net-irc/charybdis
 
 # Michał Górny  (05 Jun 2017)
 # (on behalf of Treecleaner project)
-# Unmaintained in Gentoo. Security vulnerability. No reverse
-# dependencies. Removal in 30 days. Bug #551216.
-www-apache/mod_jk
-
-# Michał Górny  (05 Jun 2017)
-# (on behalf of Treecleaner project)
 # Unmaintained in Gentoo. Multiple versions behind upstream.
 # Security vulnerabilities. No reverse dependencies anymore.
 # Removal in 30 days. Bug #512292.



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

2017-06-23 Thread Patrice Clement
commit: 946860c7c6beca3b3e703cc953ac616116327d81
Author: Patrice Clement  gentoo  org>
AuthorDate: Fri Jun 23 15:18:55 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 23 15:18:55 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=946860c7

dev-python/pythondialog: version bump.

Package-Manager: Portage-2.3.5, Repoman-2.3.1

 dev-python/pythondialog/Manifest  |  1 +
 dev-python/pythondialog/pythondialog-3.4.0.ebuild | 45 +++
 2 files changed, 46 insertions(+)

diff --git a/dev-python/pythondialog/Manifest b/dev-python/pythondialog/Manifest
index 0fc60b727ed..543cc7d53e2 100644
--- a/dev-python/pythondialog/Manifest
+++ b/dev-python/pythondialog/Manifest
@@ -1,3 +1,4 @@
 DIST python2-pythondialog-3.3.0.tar.gz 1906527 SHA256 
3e6f593fead98f8a526bc3e306933533236e33729f552f52896ea504f55313fa SHA512 
65ce7f9305e20b0c5e0d4588a241e0f14907ecad64f8a6bb3899a2d6e0245fdd848a8c4fb1da3465f03810a1e408fa97c46d9ec082c4ebba0c04a41293a23ea8
 WHIRLPOOL 
5fc43839b302956a42110e0d2e64bfb9f9b5ccada90cb69579afbb1211b7f117233a25f5bbb970c8b5033413c5c274e27c689e72c83a5887307fa11abc4dc6b8
+DIST python2-pythondialog-3.4.0.tar.gz 1487867 SHA256 
a96d9cea9a371b5002b5575d1ec351233112519268d382ba6f3582323b3d1335 SHA512 
f4ec3e3eeab9ee00146b4604a8f72c765fcc164a24def0f1a9cbf083123e55dbe371ce6d4790ad4c0b5ee6905a1877f9b8e90ca3443a780fa0965c9bcf4bf629
 WHIRLPOOL 
325641f3a89e976ef61a0cbdc9a178fc7376d64eb6c8933d87e8bb0b15ad810880edd6bfa9d2b5957a818044f1652800d34a498a7be66a4fa39ea665f59a13b2
 DIST python3-pythondialog-3.2.2.tar.bz2 1412368 SHA256 
bb104bd0512f9eda046b0cda53b5607d68de72b585cd8d5a1eebd549d8f2af99 SHA512 
58b84c0dd7b71ec9d1e60c4802cfc8e6cc72f79b8b6accd387553c685a92367d242746065bac6cb1c9d501ac291d9307cb2bb6b26694e9f24a3c5d6637a5bb8e
 WHIRLPOOL 
8e899f910eaaa5112403aed8adcd2e8fc9db371a5023bafdb5d2645b2ade716710b1c826d9208055fc510e851f8a43ef501db11c04827b93cb3040f4d793
 DIST python3-pythondialog-3.3.0.tar.bz2 1827891 SHA256 
e4ace5b09d712992b7327249e375e4960812779b2ca9fd48141e218ec998 SHA512 
b651593f077f6679be030182ac5f14a02d8bad86206c2733ba8b655d346809a32ea391de91e35101d400c55d9e8ecefaf6f1ba25fec036246186e13530f43a1f
 WHIRLPOOL 
267a2ee4215fd53d7faaf88a02ee544e88eafdd5b1f4c45c4ba535fe46dbed41a1ebae72b0dae00fedb30cfb1fcd245e0439077f538d128137e8c8caca6bba70

diff --git a/dev-python/pythondialog/pythondialog-3.4.0.ebuild 
b/dev-python/pythondialog/pythondialog-3.4.0.ebuild
new file mode 100644
index 000..8863d9d8b64
--- /dev/null
+++ b/dev-python/pythondialog/pythondialog-3.4.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+# $Id$
+
+EAPI=5
+
+PYTHON_COMPAT=( python{2_7,3_5} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="A Python module for making simple text/console-mode user 
interfaces"
+HOMEPAGE="http://pythondialog.sourceforge.net/ 
https://pypi.python.org/pypi/python2-pythondialog;
+SRC_URI="mirror://pypi/${PN:0:1}/python2-${PN}/python2-${P}.tar.gz"
+
+LICENSE="LGPL-2"
+SLOT="python-2"
+KEYWORDS="~alpha ~amd64 ~arm ~ia64 ~ppc ~sparc ~x86"
+IUSE="doc examples"
+
+RDEPEND="dev-util/dialog"
+DEPEND="doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+S="${WORKDIR}/python2-${P}"
+
+python_prepare() {
+   if python_is_python3; then
+   2to3 -w --no-diffs setup.py || die "could not convert to Python 
3"
+   fi
+}
+
+python_prepare_all() {
+   sed -e "/^'sphinx.ext.intersphinx',/d" -i doc/conf.py || die
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   use doc && emake -C doc html
+}
+
+python_install_all() {
+   use examples && local EXAMPLES=( examples/. )
+   use doc && local HTML_DOCS=( doc/_build/html/. )
+
+   distutils-r1_python_install_all
+}



[gentoo-commits] repo/gentoo:master commit in: www-apache/mod_jk/files/, www-apache/mod_jk/

2017-06-23 Thread Patrice Clement
commit: 2620cebb313f435d213434e210692a0744fb7475
Author: Timo Gurr  gmail  com>
AuthorDate: Tue Jun 20 13:23:59 2017 +
Commit: Patrice Clement  gentoo  org>
CommitDate: Fri Jun 23 15:22:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2620cebb

www-apache/mod_jk: version bump to 1.2.42.

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

Closes: https://github.com/gentoo/gentoo/pull/4962

 www-apache/mod_jk/Manifest |  1 +
 www-apache/mod_jk/files/88_mod_jk.conf |  5 +++
 www-apache/mod_jk/mod_jk-1.2.42.ebuild | 60 ++
 3 files changed, 66 insertions(+)

diff --git a/www-apache/mod_jk/Manifest b/www-apache/mod_jk/Manifest
index ceb4768bb50..1a3592c1ebb 100644
--- a/www-apache/mod_jk/Manifest
+++ b/www-apache/mod_jk/Manifest
@@ -1,2 +1,3 @@
 DIST tomcat-connectors-1.2.37-src.tar.gz 1528647 SHA256 
38a92623ddd28b85bbf54cf77f4c867ccbebafb71233131471623691e4e751f9 SHA512 
96d0d3baba661a14a2235424ad7bdd78b8b44db168cabd015cba328a200f3df00aa922fd6afb4cd3cff896591e7aeb65cdde16c641ccff5bdcb84518d8d0862f
 WHIRLPOOL 
4d6b7b24610309f0fa44951dca81e0638aa92646e171df95fa225d1f813841592c687d6204dd0be4fb03303ad84ccee3f2adf54b542ee365877e74caaa5581d4
 DIST tomcat-connectors-1.2.40-src.tar.gz 1526449 SHA256 
895e347c4dff74049a848603fb29958e6cf429ea0fc708d514b3a8958236705d SHA512 
502424add813e85d725dfd0658809db113510a9ed755d24257fa4ee50224971f9cd679fad4f6b4ecbcca0a6ecd1414c86b0d08023ce123374dc28538f1e53c1c
 WHIRLPOOL 
7a5810727987b4aa76134fd813c611ea813bbd99b68bb283fdebc77ee0e67f00676a410de01984f880611e8033e80fadbb8bc6b480df5d3c5ea4c456cb11fa4b
+DIST tomcat-connectors-1.2.42-src.tar.gz 3143693 SHA256 
ea119f234c716649d4e7d4abd428852185b6b23a9205655e45554b88f01f3e31 SHA512 
9a796e2a7865a99c16595deaead94e843c291ed7229f48414edf0a260b2dda05fc94671e8b863a9ccef719bbe2ca7622c06e3dae6ccf68a41f7d96e847b68791
 WHIRLPOOL 
e103c1bff37b841d629b42b0a2b23f5048666f58e102da4c42571a54323454e5a799c1c2494f8641ad8b16e267954d7eb60688f4ca13b8fe12d3d81f9897565a

diff --git a/www-apache/mod_jk/files/88_mod_jk.conf 
b/www-apache/mod_jk/files/88_mod_jk.conf
index 60d40baba4f..1c66783cca1 100644
--- a/www-apache/mod_jk/files/88_mod_jk.conf
+++ b/www-apache/mod_jk/files/88_mod_jk.conf
@@ -15,6 +15,11 @@ JkWorkersFile/etc/apache2/jk-workers.properties
 # specify the location where mod_jk is going to place its log file.
 JkLogFile  /var/log/apache2/mod_jk.log
 
+###
+### Where to put mod_jk shm file
+###
+# specify the location where mod_jk is going to place its shared memory file.
+JkShmFile  /var/log/apache2/jk-runtime-status
 
 ###
 ### Set the jk log level [debug/error/info]

diff --git a/www-apache/mod_jk/mod_jk-1.2.42.ebuild 
b/www-apache/mod_jk/mod_jk-1.2.42.ebuild
new file mode 100644
index 000..eed7662cad2
--- /dev/null
+++ b/www-apache/mod_jk/mod_jk-1.2.42.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+inherit apache-module java-pkg-opt-2 readme.gentoo-r1
+
+MY_P="tomcat-connectors-${PV#-*}-src"
+
+DESCRIPTION="JK module for connecting Tomcat and Apache using the ajp13 
protocol"
+HOMEPAGE="https://tomcat.apache.org/connectors-doc/;
+SRC_URI="mirror://apache/tomcat/tomcat-connectors/jk/${MY_P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+IUSE="java"
+
+S="${WORKDIR}/${MY_P}/native"
+
+APACHE2_MOD_FILE="${S}/apache-2.0/${PN}.so"
+APACHE2_MOD_CONF="88_${PN}"
+APACHE2_MOD_DEFINE="JK"
+
+CONF_DIR="${WORKDIR}/${MY_P}/conf"
+
+DEPEND="java? ( >=virtual/jdk-1.4 )"
+RDEPEND=""
+
+need_apache2
+
+DOC_CONTENTS="
+   Advanced Directives and Options can be found at:
+   https://tomcat.apache.org/connectors-doc/reference/workers.html
+"
+
+pkg_setup() {
+   use java && java-pkg-2_pkg_setup
+}
+
+src_configure() {
+   econf \
+   --with-apxs=${APXS}
+}
+
+src_compile() {
+   emake LIBTOOL="/bin/sh $(pwd)/libtool --silent"
+}
+
+src_install() {
+   # install the workers.properties file
+   insinto "${APACHE_CONFDIR}"
+   newins "${CONF_DIR}/workers.properties" \
+   jk-workers.properties
+   doins "${CONF_DIR}/uriworkermap.properties"
+
+   apache-module_src_install
+
+   readme.gentoo_create_doc
+}



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

2017-06-23 Thread Thomas Beierlein
commit: 7470e228b6d2227ad8fd23689aa19198f5941091
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Fri Jun 23 14:52:06 2017 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Fri Jun 23 14:52:06 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7470e228

media-radio/fldigi: Version bump

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-radio/fldigi/Manifest|  1 +
 media-radio/fldigi/fldigi-4.0.5.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/media-radio/fldigi/Manifest b/media-radio/fldigi/Manifest
index 2993d479642..9372ec33038 100644
--- a/media-radio/fldigi/Manifest
+++ b/media-radio/fldigi/Manifest
@@ -1 +1,2 @@
 DIST fldigi-4.0.4.tar.gz 3351853 SHA256 
9269bdb81c154c7cb60508749bebcbd7c5396962969e58e412d616f1224ef637 SHA512 
9629941f4e0ed43d99363e224184a2afa211294c2cf7964c3d6a4c53202cc0ca63c3b86c8a35065b84cfa3e7a61899e997a1d75fcf7821fba7900fa9585298f2
 WHIRLPOOL 
651e167164194b9c37cc0886cdb0736d53fea6d2489a2da5fd553f229522f9e1c0f8ead06f113d007036d126ca2b822f3ac75b0a0b8f429e65f37ef4a22daeec
+DIST fldigi-4.0.5.tar.gz 3611622 SHA256 
a8a047447b50bbba638791fa2cd9fa265eea2a589a8647f1ec17fb0c284b973d SHA512 
cca07e73c7c411fe4c97d862c5f740aa4e31fa46423387929eec233045c27df8b1c4f1f8fd3a7a40d6f65f2023a900827456a5fa679e71bcf5868c3ab13018b5
 WHIRLPOOL 
263d5c37c1e7af913bdccaa8bfe0311afe137fb9940a8d8e15593e1156b9c026f810286206f1df0f02bda1bbff02e5af76cd31f62d6c860895cdca4e1b46fe50

diff --git a/media-radio/fldigi/fldigi-4.0.5.ebuild 
b/media-radio/fldigi/fldigi-4.0.5.ebuild
new file mode 100644
index 000..0314be34bf3
--- /dev/null
+++ b/media-radio/fldigi/fldigi-4.0.5.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=5
+
+DESCRIPTION="Sound card based multimode software modem for Amateur Radio use"
+HOMEPAGE="http://www.w1hkj.com/Fldigi.html;
+SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="hamlib nls portaudio pulseaudio sndfile"
+
+RDEPEND="x11-libs/fltk:1[threads,xft]
+   media-libs/libsamplerate
+   media-libs/libpng:0
+   x11-misc/xdg-utils
+   dev-perl/RPC-XML
+   dev-perl/Term-ReadLine-Perl
+   hamlib? ( media-libs/hamlib )
+   portaudio? ( >=media-libs/portaudio-19_pre20071207 )
+   pulseaudio? ( media-sound/pulseaudio )
+   sndfile? ( >=media-libs/libsndfile-1.0.10 )"
+DEPEND="${RDEPEND}
+   nls? ( sys-devel/gettext )
+   virtual/pkgconfig"
+
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+src_configure() {
+   econf $(use_with sndfile) \
+   $(use_with portaudio) \
+   $(use_with hamlib) \
+   $(use_enable nls) \
+   $(use_with pulseaudio) \
+   --without-asciidoc
+}



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

2017-06-23 Thread Thomas Beierlein
commit: 04ce9e37f4cee2afef61b2662629fe749c5fe6a8
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Fri Jun 23 14:50:30 2017 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Fri Jun 23 14:50:30 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04ce9e37

Drop old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-radio/fldigi/Manifest  |  6 -
 media-radio/fldigi/fldigi-3.23.19.ebuild | 39 
 media-radio/fldigi/fldigi-3.23.20.ebuild | 38 ---
 media-radio/fldigi/fldigi-3.23.21.ebuild | 38 ---
 media-radio/fldigi/fldigi-4.0.1.ebuild   | 38 ---
 media-radio/fldigi/fldigi-4.0.2.ebuild   | 38 ---
 media-radio/fldigi/fldigi-4.0.3.ebuild   | 38 ---
 7 files changed, 235 deletions(-)

diff --git a/media-radio/fldigi/Manifest b/media-radio/fldigi/Manifest
index d7f98de651a..2993d479642 100644
--- a/media-radio/fldigi/Manifest
+++ b/media-radio/fldigi/Manifest
@@ -1,7 +1 @@
-DIST fldigi-3.23.19.tar.gz 3213970 SHA256 
099d52eee57fbe5562ac0bc351a7bfc39668623c3e0e3573995f1e345dfb0ae9 SHA512 
0761800347a12493e2025e653db9dc52ea6068ac3904f50f060f0d27c3c9a35f189e69f2ee1c3eb133ab9cd41a67dae2f033e36641568ce5c19ce07f8ec0
 WHIRLPOOL 
c1352b5e693609642645655884ad105980338d153a434a30c317da971c13bb403848fa5d105224a32eb7e4af6adea41d9c76e57aefdef8d6270b86e21e4cf346
-DIST fldigi-3.23.20.tar.gz 3215903 SHA256 
97b5489c4e428ed707aaf6c05a7b46874339031a8e9b24e50f4818c15435fce9 SHA512 
78c2d85eb8fb091f386c4680a8928635a8e81e97175755446dc30a7934a5caf96adacd8ab3722275bc7557913cb9372004c98e265dc46222ba3a54090187fc25
 WHIRLPOOL 
d3e524a25c26f9b2856486d22ce4813fe70aee14a6cd9f7e2f27c882104367cc10d1668ebe5cb3cd511f3868e7840e2c1b7c594d5c20fb7b50985768b97d51da
-DIST fldigi-3.23.21.tar.gz 3217867 SHA256 
a70914876a415eba5eec112f752330a1cecbf55aa442f5d9dd466fb75ea11a3b SHA512 
95c3ad1c5558af965ec4ef9d6756ed706785c8547a638b729c71a2bed10a2a69b70c2ea554c4b74a6cbd0912d2f0172b9604e866e026c260712d76483b98ea3c
 WHIRLPOOL 
f5e56925687b705bcbc50018a525ecb079c69abf78cb30327f87a11a5d66fbc44aaff57e09bf80c62206a163bfda54b21a00da328fd80c6b3718639f9aaa2e50
-DIST fldigi-4.0.1.tar.gz 3346237 SHA256 
ea68b7fe6de4eba8b99956a10c51c3c8d1e45cb8a6c6aa58594d8510a36d1bc5 SHA512 
4642672436e2e172db6c6a053540e1bf05097b3c32e0d7cc47c8ed13e2bc6812a479963ec2d45642319f7187fc8eb6e532cb0c369203b4b90c9471daaff859b1
 WHIRLPOOL 
9d0bec960776b8c74bd3d8595275dea30065bc8118ab81c46be93d61b0e0a0852e439839f7d898232dfa5e4b7f73b7c63475d7c027ea34c156fe077ae2be3d92
-DIST fldigi-4.0.2.tar.gz 3346691 SHA256 
5abff148ac138ee4d04567400f20d0915e749e105d029cdf53164fb1da35ae96 SHA512 
64834871279a9921e1942199655b92b91d5ba3a9ef109a9d540b49673c5f52e4676c23cb5ad405311a831204a7dfda32cb44416101b49ef8533497473215e9d3
 WHIRLPOOL 
0d7f06fdaa85893876c6824aaa7167878bfba1316fba3a2618c970094b3489558c620c8ae7456eecd4e41bea51732e56f6394c7bc88b4f551bfbbe92d685a3d0
-DIST fldigi-4.0.3.tar.gz 3345780 SHA256 
0512aaab72dbefbf068bab6c9f3ccfa2320e96ae46c01d0eb01da0a737bcb609 SHA512 
b007e6e03bda64f981003f33a61c2a6b114341c24a897f506857c46db2b7d538a83c25d10cd2d67f53d74cabfdef236d7427b129688d994f9d34245a6538c2d6
 WHIRLPOOL 
6c9c40058b06acc722e85f5a7ad878636ae49e7d6e2975c690c626e68777efa86c044309c55848fe285e4ea8077acbf142f0ad646d8efdf4de94203f0acdc76f
 DIST fldigi-4.0.4.tar.gz 3351853 SHA256 
9269bdb81c154c7cb60508749bebcbd7c5396962969e58e412d616f1224ef637 SHA512 
9629941f4e0ed43d99363e224184a2afa211294c2cf7964c3d6a4c53202cc0ca63c3b86c8a35065b84cfa3e7a61899e997a1d75fcf7821fba7900fa9585298f2
 WHIRLPOOL 
651e167164194b9c37cc0886cdb0736d53fea6d2489a2da5fd553f229522f9e1c0f8ead06f113d007036d126ca2b822f3ac75b0a0b8f429e65f37ef4a22daeec

diff --git a/media-radio/fldigi/fldigi-3.23.19.ebuild 
b/media-radio/fldigi/fldigi-3.23.19.ebuild
deleted file mode 100644
index 91be56a4496..000
--- a/media-radio/fldigi/fldigi-3.23.19.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-DESCRIPTION="Sound card based multimode software modem for Amateur Radio use"
-HOMEPAGE="http://www.w1hkj.com/Fldigi.html;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="hamlib nls portaudio pulseaudio sndfile"
-
-RDEPEND="x11-libs/fltk:1[threads,xft]
-   media-libs/libsamplerate
-   media-libs/libpng:0
-   x11-misc/xdg-utils
-   dev-perl/RPC-XML
-   dev-perl/Term-ReadLine-Perl
-   hamlib? ( media-libs/hamlib )
-   portaudio? ( >=media-libs/portaudio-19_pre20071207 )
-   pulseaudio? ( media-sound/pulseaudio )
-   sndfile? ( >=media-libs/libsndfile-1.0.10 )"
-DEPEND="${RDEPEND}
-   nls? ( sys-devel/gettext )
-   virtual/pkgconfig"
-
-DOCS=( AUTHORS ChangeLog NEWS README )
-
-src_configure() {
-   econf $(use_with 

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

2017-06-23 Thread Manuel Rüger
commit: 821fc795b1449cf92508e9e5d8d2b6f604aab532
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 13:58:10 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 13:58:49 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=821fc795

dev-util/drone-cli: Update snapshot

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/drone-cli/Manifest|  1 +
 .../drone-cli/drone-cli-0.7.0_p20170620.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-util/drone-cli/Manifest b/dev-util/drone-cli/Manifest
index 3db50f6effb..8ea9aba0b52 100644
--- a/dev-util/drone-cli/Manifest
+++ b/dev-util/drone-cli/Manifest
@@ -1 +1,2 @@
 DIST drone-cli-0.7.0_p20170603.tar.gz 1148152 SHA256 
0440900f410141d0bd8e8f682a6acd2b9fecedb6d7def413b6bcc1304b362765 SHA512 
a019295e97cd5683f97fc75d586b68df35fdf0ac8914f77a0efd2b6ec4a9727be04071556e92207cbaa07e573046a54e5a97e9aaccea5f9c1ea75b2a28d5c1df
 WHIRLPOOL 
4357675b2f6ebfc5fb6ced9f4c2d1aa64673c51a4d2de55c329f7b15f37bdfaaca9427873b5bfdbe48c64a1b2f4a5117306ea13167d3efb213d3b34a0d3dd026
+DIST drone-cli-0.7.0_p20170620.tar.gz 1148198 SHA256 
ada290d76615965f2417b70a8bd2fc43ddbbd8f8ecd0ee5d9947de48d377c80f SHA512 
2c548a7f79e9de93700d29694403289bbbf9b994441903e8d107c4c23726cd155762f0beea9e0d9081568f55bafe3fdca2d943af20023c4a81ceba9b00e69335
 WHIRLPOOL 
5132b03ebb9ee69f78669aad0d2db28f2440922585552c30a788e2986264821d1aa5064f3de2d41b56e36ef51709284b6edd511d9fe538ebfc9387440060ed07

diff --git a/dev-util/drone-cli/drone-cli-0.7.0_p20170620.ebuild 
b/dev-util/drone-cli/drone-cli-0.7.0_p20170620.ebuild
new file mode 100644
index 000..4f16bf5598e
--- /dev/null
+++ b/dev-util/drone-cli/drone-cli-0.7.0_p20170620.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+EGO_PN="github.com/drone/drone-cli"
+EGIT_COMMIT="9d8dd90e5ba860eecf39972f46c7d0219e575442"
+
+inherit golang-build golang-vcs-snapshot
+
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Command-line interface for Drone"
+HOMEPAGE="https://github.com/drone/drone-cli;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+RESTRICT="test"
+
+RDEPEND="!!

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

2017-06-23 Thread Michał Górny
commit: 0724ec6307b264be0e4747a7d9d57eaed9df6767
Author: Graeme Lawes  gmail  com>
AuthorDate: Wed Jun 21 23:49:27 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 23 13:50:39 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0724ec63

sys-cluster/teleport: add teleport v2.2.1

Closes: https://github.com/gentoo/gentoo/pull/4968

 sys-cluster/teleport/Manifest  |  1 +
 sys-cluster/teleport/teleport-2.2.1.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/sys-cluster/teleport/Manifest b/sys-cluster/teleport/Manifest
index c1a217ba386..0cd526ab748 100644
--- a/sys-cluster/teleport/Manifest
+++ b/sys-cluster/teleport/Manifest
@@ -1 +1,2 @@
 DIST teleport-2.2.0.tar.gz 7229371 SHA256 
b12bea0474a0ce5f4df10729607661b1afbecd5e95083835ccee7b54493c9452 SHA512 
bec288983371bd3807b7ce994b1533a5e869d903251f8a8ce6315768a1d3ae95d72f832037345c36c9cd4789fbc449c54b86359988b1e74d4f46f9e0db6b3239
 WHIRLPOOL 
5b128fda80b1ce4afe60e10e6d5d9e83f621f6a405e713af7d1b988562038aa927c9f7c733a927a3aa724c261d058dba1fa75526dd2eb9051b1e6fe4c984004c
+DIST teleport-2.2.1.tar.gz 7235188 SHA256 
5a5c7be4615a3ef3e6915a4330b71cd063dd3a86013b8a72a5dbbca882eb28ac SHA512 
011ffd8fdf42131455c32b8a8ed1ddee0181a8dcd3424dc9cf5ac96c53ce719d369e0bfac4392cc0dec14e78fed94732bbcb56c2db5987ee778ad29e4f7a749d
 WHIRLPOOL 
988da053d7c85acfe1103696e33eff9fbb37d4feb5af580b1fb7b8995ca7ec449786c997619f81717816298b4cdc0bf26b823ac62b3c85ce72d3bdd783d02215

diff --git a/sys-cluster/teleport/teleport-2.2.1.ebuild 
b/sys-cluster/teleport/teleport-2.2.1.ebuild
new file mode 100644
index 000..50aac8796fe
--- /dev/null
+++ b/sys-cluster/teleport/teleport-2.2.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit eutils golang-build systemd user
+
+DESCRIPTION="Modern SSH server for teams managing distributed infrastructure"
+HOMEPAGE="https://gravitational.com/teleport;
+
+EGO_PN="github.com/gravitational/${PN}/..."
+
+if [ ${PV} == "" ] ; then
+   inherit git-r3 golang-vcs
+   EGIT_REPO_URI="https://github.com/gravitational/${PN}.git;
+else
+   inherit golang-vcs-snapshot
+   SRC_URI="https://github.com/gravitational/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm"
+fi
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   app-arch/zip
+   >=dev-lang/go-1.8.3"
+RDEPEND=""
+
+src_compile() {
+   GOPATH="${S}" emake -C src/${EGO_PN%/*}
+   pushd src/${EGO_PN%/*}/web/dist >/dev/null || die
+   zip -qr "${S}/src/${EGO_PN%/*}/build/webassets.zip" . || die
+   popd >/dev/null || die
+   cat "${S}/src/${EGO_PN%/*}/build/webassets.zip" >> 
"src/${EGO_PN%/*}/build/${PN}" || die
+   zip -q -A "${S}/src/${EGO_PN%/*}/build/${PN}" || die
+}
+
+src_install() {
+   dodir /var/lib/${PN} /etc/${PN}
+   dobin src/${EGO_PN%/*}/build/{tsh,tctl,teleport}
+
+   insinto /etc/${PN}
+   doins "${FILESDIR}"/${PN}.yaml
+
+   newinitd "${FILESDIR}"/${PN}.init.d ${PN}
+   newconfd "${FILESDIR}"/${PN}.conf.d ${PN}
+
+   systemd_dounit "${FILESDIR}"/${PN}.service
+   systemd_install_serviced "${FILESDIR}"/${PN}.service.conf ${PN}.service
+}



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

2017-06-23 Thread Michał Górny
commit: eac9cee8b0e3f8b319e770328b3d02c59a9f902d
Author: Muhammad Herdiansyah  openmailbox  org>
AuthorDate: Wed Jun 21 09:08:47 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 23 13:50:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eac9cee8

app-misc/neofetch: update to 3.2.0

Closes: https://github.com/gentoo/gentoo/pull/4965

 app-misc/neofetch/Manifest  |  2 +-
 app-misc/neofetch/neofetch-3.2.0.ebuild | 22 ++
 2 files changed, 23 insertions(+), 1 deletion(-)

diff --git a/app-misc/neofetch/Manifest b/app-misc/neofetch/Manifest
index f720ea4f4f6..7251963cfcc 100644
--- a/app-misc/neofetch/Manifest
+++ b/app-misc/neofetch/Manifest
@@ -1,4 +1,4 @@
-DIST neofetch-1.9.1.tar.gz 55739 SHA256 
d7e30215994968ca861836f9bab9259624688fd50620e7d5af5c8b31da8bd32b SHA512 
e5b339549bd5eae726e66369bd9ebae7927117d7fb5af52bdfa54d5bff0793d72ed893ed631999dd492a2044fcc91ffe990ae8113b40fa3d724f5584417defc9
 WHIRLPOOL 
74f35ede4b3836d4b5485df0a80a1a9fef0d23de637558456dac69bdf7f4a1742f7f2e87e4c0faa99bec5959145ea5cc8e764cde320f1005ec1263c0c808eaac
 DIST neofetch-2.0.2.tar.gz 57385 SHA256 
25a174ed41720d7645240cce4ca24f6228097a0daae3afd42563bfcf01584bc9 SHA512 
1c31df41cf1e08f40c1a8ff5721f503d9350facf13ae0df30e229ce772b198d22b52662db82908d8d501a396142ba5fea0e7f14e9c8c323bfcbe2080826e1477
 WHIRLPOOL 
b0900b4cf672fb07a2b359a2a3ee8c6e0ae13d745bde0ea8aa435b0a886d86ee1a6b2ef7d9d41e8fec6947d02df47de234a3af250de783f1525db57888fac017
 DIST neofetch-3.0.1.tar.gz 66571 SHA256 
31447da6507c13c44eb2006901c00ed4ca08f0423d9439aaddea64edcaca2c38 SHA512 
e9353d61226dcb4f8161556ba07156ea13737d6cde05f00b39a85e4a2f54716db833e8be076c56168b7003230ef42dfa9b9223c0ab930456a664a9a2c31cf2ad
 WHIRLPOOL 
a4b241d611afc31395f4f228937e744257ded55f551d0cfc7193c8269d7174e47861489c1306f27a0d9a9e59acf340b37aa30f7919e59a2855c11732edc323c0
 DIST neofetch-3.1.0.tar.gz 68930 SHA256 
db7afe24d859b9c8230c3491640d996701816ddc9cf66f98a5071775e8b4ffe5 SHA512 
0a13acadf1841c1e714c07f9643028446a1f4df6a79e7c3189c4c11d8854813dfbb983784d62dc59a9209893ee2339ca5642fe413d1066a5cb6e9e167ae74975
 WHIRLPOOL 
0a11065f48d76c46854f65972e9d658fffcbc7e9023f61920fa756153860b5d06c05da005cdb2e61616649ecfaecd4122fcea2e4c4b899a751193838b9542aae
+DIST neofetch-3.2.0.tar.gz 71331 SHA256 
6aecd51c165a36692b4f6481b3071ab936aafc3fccffabbbfda140567f16431d SHA512 
790dd282b99437a416f25a895d5a3359be31d162447e2f59863c635c144045a6b81672e4469ca9b6eeba56fc927e787a67f0a317309bbc0f52500b0f9e072764
 WHIRLPOOL 
5494b97611f08297ec38893e38d06a6d2806a1bc00704b7334d64ba3322deb30d08d453ed85d817ff8f42a163d71580d2d6785a6f1c15443b92ebe826842b575

diff --git a/app-misc/neofetch/neofetch-3.2.0.ebuild 
b/app-misc/neofetch/neofetch-3.2.0.ebuild
new file mode 100644
index 000..74d58f58175
--- /dev/null
+++ b/app-misc/neofetch/neofetch-3.2.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Simple information system script"
+HOMEPAGE="https://github.com/dylanaraps/neofetch;
+SRC_URI="https://github.com/dylanaraps/${PN}/archive/${PV}/${P}.tar.gz;
+LICENSE="MIT-with-advertising"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="X"
+
+RDEPEND="sys-apps/pciutils
+   X? (
+   x11-apps/xprop
+   x11-apps/xwininfo
+   x11-apps/xrandr
+   www-client/w3m[imlib]
+   media-libs/imlib2
+   media-gfx/imagemagick
+   )"



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

2017-06-23 Thread Michał Górny
commit: aa35d1103eb298242d8633b0df79229752ac70f5
Author: Muhammad Herdiansyah  openmailbox  org>
AuthorDate: Wed Jun 21 05:00:18 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 23 13:50:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa35d110

app-misc/neofetch: remove old

 app-misc/neofetch/neofetch-1.9.1.ebuild | 36 -
 1 file changed, 36 deletions(-)

diff --git a/app-misc/neofetch/neofetch-1.9.1.ebuild 
b/app-misc/neofetch/neofetch-1.9.1.ebuild
deleted file mode 100644
index 4a843477e88..000
--- a/app-misc/neofetch/neofetch-1.9.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit prefix
-
-DESCRIPTION="Simple information system script"
-HOMEPAGE="https://github.com/dylanaraps/neofetch;
-SRC_URI="https://github.com/dylanaraps/${PN}/archive/${PV}/${P}.tar.gz;
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="X"
-
-DEPEND="
-   app-shells/bash:*
-   sys-apps/pciutils"
-RDEPEND="${DEPEND}
-   X? (
-   x11-apps/xprop
-   x11-apps/xwininfo
-   x11-apps/xrandr
-   www-client/w3m[imlib]
-   media-libs/imlib2
-   media-gfx/imagemagick
-   )"
-
-src_prepare() {
-   hprefixify ${PN}
-   default
-}
-
-src_install() {
-   emake DESTDIR="${ED}" install
-}



[gentoo-commits] repo/gentoo:master commit in: media-video/mpv/

2017-06-23 Thread Michał Górny
commit: bf671d0e7358aee0db0cd9c0b6feff5621603327
Author: Ilya Tumaykin  gmail  com>
AuthorDate: Mon Jun 19 20:18:27 2017 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jun 23 13:50:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf671d0e

media-video/mpv: remove vf-dlopen USE from 

Bug: https://bugs.gentoo.org/622246
Closes: https://github.com/gentoo/gentoo/pull/4961
Package-Manager: Portage-2.3.6, Repoman-2.3.2
Upstream-commit: 
https://github.com/mpv-player/mpv/commit/c680cfd18a09f9a023926db0b3a90f69e8651b37

 media-video/mpv/mpv-.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/media-video/mpv/mpv-.ebuild b/media-video/mpv/mpv-.ebuild
index 495c3b58b02..18969a319dd 100644
--- a/media-video/mpv/mpv-.ebuild
+++ b/media-video/mpv/mpv-.ebuild
@@ -30,8 +30,7 @@ SLOT="0"
 IUSE="+alsa aqua archive bluray cdda +cli coreaudio cplugins cuda doc drm dvb
dvd +egl encode gbm +iconv jack jpeg lcms +libass libav libcaca libmpv 
+lua
luajit openal +opengl oss pulseaudio raspberry-pi rubberband samba sdl
-   selinux test tools +uchardet v4l vaapi vdpau vf-dlopen wayland +X +xv
-   zsh-completion"
+   selinux test tools +uchardet v4l vaapi vdpau wayland +X +xv 
zsh-completion"
 
 REQUIRED_USE="
|| ( cli libmpv )
@@ -178,7 +177,6 @@ src_configure() {
 
$(use_enable doc pdf-build)
$(use_enable cplugins)
-   $(use_enable vf-dlopen vf-dlopen-filters)
$(use_enable zsh-completion zsh-comp)
$(use_enable test)
 



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

2017-06-23 Thread Manuel Rüger
commit: 46c47bc7a174f94c77eb725bc0f91160eddc840d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 13:08:07 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 13:08:07 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46c47bc7

dev-python/werkzeug: Version bump to 0.12.2

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/werkzeug/Manifest   |  1 +
 dev-python/werkzeug/werkzeug-0.12.2.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
index 1832dfc5dc3..00c189b629d 100644
--- a/dev-python/werkzeug/Manifest
+++ b/dev-python/werkzeug/Manifest
@@ -1,2 +1,3 @@
 DIST Werkzeug-0.11.11.tar.gz 1158304 SHA256 
e72c46bc14405cba7a26bd2ce28df734471bc9016bc8b4cb69466c2c14c2f7e5 SHA512 
b5eff55518900043840cd89238fd40873a74e762adb6d8717d5285a173725b92284ab992d753096c388a25db50bf089b91883cabc6210b6bbd7dc347ecb95027
 WHIRLPOOL 
dacc6ae967e31688a2080e8fbc45bbb8b1cc5639008376de1e4efcf57ac82ad986109298405f647dac16b97ec0a529c5e9a9dbaf88a3273c3b60516a4de213d6
 DIST Werkzeug-0.11.15.tar.gz 1156471 SHA256 
455d7798ac263266dbd38d4841f7534dd35ca9c3da4a8df303f8488f38f3bcc0 SHA512 
f66303a4a65e50e3e7661330af57172ef390ddc64268ea85a33d48dfb1e72dfc3b50a01be2088704ea3d1a45cd162eda3810841ac4dd7fb4519a82718298eaa6
 WHIRLPOOL 
d9f259d9fa732873522a7de3177b11cbf85cd0520c316c3c32227d6bfdba6b8db7683d6f188637021d278c227c41b89dd49a516db2ff0ce35fb5934fd2e1059b
+DIST Werkzeug-0.12.2.tar.gz 1169770 SHA256 
903a7b87b74635244548b30d30db4c8947fe64c5198f58899ddcd3a13c23bb26 SHA512 
9ff45aeb51a71fd5115e8cdee40a7b2fddfa0574c356686050cb1bdced5c6c18f672b601ca2637010c7f59be75c66ee558efb4ea05052c550ec7da3644b88e0a
 WHIRLPOOL 
508ecad84004b9f46e06d53923920c249e16b2c56bc778f52e42ce5aa64a7a1fa09241e819e99a849b137186be7fec41cf5b7a8d1198b18918b4c38e2167b99b

diff --git a/dev-python/werkzeug/werkzeug-0.12.2.ebuild 
b/dev-python/werkzeug/werkzeug-0.12.2.ebuild
new file mode 100644
index 000..2791a1bf160
--- /dev/null
+++ b/dev-python/werkzeug/werkzeug-0.12.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy pypy3 )
+
+inherit distutils-r1
+
+MY_PN="Werkzeug"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="Collection of various utilities for WSGI applications"
+HOMEPAGE="http://werkzeug.pocoo.org/ https://pypi.python.org/pypi/Werkzeug 
https://github.com/pallets/werkzeug;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+IUSE="test"
+
+RDEPEND="dev-python/simplejson[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-xprocess[${PYTHON_USEDEP}]
+   )"
+
+S=${WORKDIR}/${MY_P}
+
+python_test() {
+   esetup.py test
+}



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

2017-06-23 Thread Manuel Rüger
commit: 64d7cbc58742d9faf46ad63afeb4f682abe3e24d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 12:42:07 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 12:43:05 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64d7cbc5

net-analyzer/prometheus: Version bump to 1.7.1

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-analyzer/prometheus/Manifest|  1 +
 net-analyzer/prometheus/prometheus-1.7.1.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/net-analyzer/prometheus/Manifest b/net-analyzer/prometheus/Manifest
index 894bf6089c1..bad5cf02066 100644
--- a/net-analyzer/prometheus/Manifest
+++ b/net-analyzer/prometheus/Manifest
@@ -1 +1,2 @@
 DIST prometheus-1.6.3.tar.gz 5160067 SHA256 
1c2d01f3a44b53be3b672cbdb1843fbe8fc135020bbfb6c71b0a10b141a474e6 SHA512 
e7cad489120a69356ffa70597d725de9586cd64f0eb64ef3fb009ec491687d5e2d858223594d3a4e6d564196c9ea5a0eac762c0f27c9f32d50bf97d2ef79c32b
 WHIRLPOOL 
9cb600621aad1c97f1ced7259fe442b38b24a88cf4b8df7d19a22f6d2f6840464f8db01caf1129800bd7c7ccb232d875aa7b92a194f2abea1f126854306f0817
+DIST prometheus-1.7.1.tar.gz 5122747 SHA256 
209832310f5bef99faef3beaaa95263612a4d0126ca512c4a4c23a8543d3ccf5 SHA512 
98a42e95978477530082d7549c29f17b133043d7c233ba3c90b183f06a3f24ee578f8fed75cba476d3c93a22abcccfdbccc94488beb8450a02f260d24165ba26
 WHIRLPOOL 
8ab473430752336e09b4a0c38fd1117abe21196478d7f2f7e813c27f07c950cc3525d9e9ba32309711c73a1032f3cff27ddc1582d0c4b6c66fe82d5b58675550

diff --git a/net-analyzer/prometheus/prometheus-1.7.1.ebuild 
b/net-analyzer/prometheus/prometheus-1.7.1.ebuild
new file mode 100644
index 000..a480c795291
--- /dev/null
+++ b/net-analyzer/prometheus/prometheus-1.7.1.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit user golang-build golang-vcs-snapshot
+
+EGO_PN="github.com/prometheus/prometheus"
+EGIT_COMMIT="v${PV}"
+PROMETHEUS_COMMIT="3afb3ff"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Prometheus monitoring system and time series database"
+HOMEPAGE="https://github.com/prometheus/prometheus;
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND=">=dev-lang/go-1.8
+   dev-util/promu"
+
+PROMETHEUS_HOME="/var/lib/prometheus"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup prometheus
+   enewuser prometheus -1 -1 "${PROMETHEUS_HOME}" prometheus
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/{{.Revision}}/${PROMETHEUS_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   GOPATH="${S}" promu build -v || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin promtool prometheus
+   dodoc -r {documentation,{README,CHANGELOG,CONTRIBUTING}.md}
+   insinto /etc/prometheus
+   doins documentation/examples/prometheus.yml
+   insinto /usr/share/prometheus
+   doins -r console_libraries consoles
+   dosym ../../usr/share/prometheus/console_libraries 
/etc/prometheus/console_libraries
+   dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
+   popd || die
+
+   newinitd "${FILESDIR}"/prometheus.initd prometheus
+   newconfd "${FILESDIR}"/prometheus.confd prometheus
+   keepdir /var/log/prometheus /var/lib/prometheus
+   fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/atdgen/

2017-06-23 Thread Alexis Ballier
commit: 12af6772dd5fd574a4971da2fab398645c48405a
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 12:29:50 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 12:31:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12af6772

dev-ml/atdgen: bump to 1.12.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/atdgen/Manifest |  1 +
 dev-ml/atdgen/atdgen-1.12.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-ml/atdgen/Manifest b/dev-ml/atdgen/Manifest
index 9f1a828acb1..27e6b97e918 100644
--- a/dev-ml/atdgen/Manifest
+++ b/dev-ml/atdgen/Manifest
@@ -1,2 +1,3 @@
+DIST atd-1.12.0.tar.gz 145428 SHA256 
3e81d562e74374b98c0f383c1ded46beb06d8416d2065645fd68d3b8b0238ddd SHA512 
c24601b276da7837bc896bb42b2e0fa91ebfbf07759560c2490ed44bef722dcf8d586aaba1e62abff262805cab89996835611ab9fb68aa096dfc84bb55365475
 WHIRLPOOL 
c39967976d80053680004e8c912af1d37da96e97f76e7056a89fb996ff629aec367ba68cc9783932b9fb49918ed60ef209a80af975535bc0382255e80b7d79c7
 DIST atdgen-1.10.0.tar.gz 75447 SHA256 
f21834bbba8e9365e1c919554dcb6e30d7db3321d49e44987556ae073cd6a272 SHA512 
2dba16a0955b591a972bbd790a5344cf7f79c9485b5a064d3206643defe6c56413678aea389d831892ae1c72ff2fcb3a667731a236a7510fa7e9b4a60a128fb8
 WHIRLPOOL 
06c4e4215b7372a6975dbffed7b18b94a897a2dbdaa4e70a2a69065b2defde9032d4fa80934b6aae72462a69709b6cbec7892dd64e4725d3cedcbf0de89dd682
 DIST atdgen-1.10.2.tar.gz 73418 SHA256 
1b063bf7cbffc5d9a33b10d1a5ceba1da4d8d0c09f6db1a3f45780391b760f1b SHA512 
5912e339c61516f942e7c80775faf4832007a96e5841e91115d120323a07fdd3945698b39876da3c25302da25ce30ecbab79a6920dd1496b9de4e30f4a2be73a
 WHIRLPOOL 
77197558186f52262a302ff7c297f1561445f2411002daf0ec78f2cc9e9561e645e417a50d0ed37e8cfd620c42aa9831ee8e78f85128a392e104d2d9a91b72de

diff --git a/dev-ml/atdgen/atdgen-1.12.0.ebuild 
b/dev-ml/atdgen/atdgen-1.12.0.ebuild
new file mode 100644
index 000..7c98c9ed8ad
--- /dev/null
+++ b/dev-ml/atdgen/atdgen-1.12.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit findlib
+
+DESCRIPTION="Generates optimized boilerplate OCaml code for JSON and Biniou IO 
from type definitions"
+HOMEPAGE="https://github.com/mjambon/atd;
+SRC_URI="https://github.com/mjambon/atd/archive/v${PV}.tar.gz -> 
atd-${PV}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt"
+
+DEPEND="
+   dev-lang/ocaml:=[ocamlopt?]
+   dev-ml/atd:=
+   dev-ml/biniou:=
+   dev-ml/yojson:=
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+   dev-ml/jbuilder
+   dev-ml/opam
+"
+
+S="${WORKDIR}/atd-${PV}"
+
+src_compile() {
+   jbuilder build -p atdgen || die
+}
+
+oinstall() {
+   opam-installer -i \
+   --prefix="${ED}/usr" \
+   --libdir="${D}/$(ocamlc -where)" \
+   --docdir="${ED}/usr/share/doc/${PF}" \
+   ${1}.install || die
+}
+
+src_install() {
+   oinstall atdgen
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/atd/

2017-06-23 Thread Alexis Ballier
commit: 4fd0cda1b6706cf4ab4c4052df7eca5c538c8897
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 12:22:29 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 12:31:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fd0cda1

dev-ml/atd: bump to 1.12.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/atd/Manifest  |  1 +
 dev-ml/atd/atd-1.12.0.ebuild | 42 ++
 2 files changed, 43 insertions(+)

diff --git a/dev-ml/atd/Manifest b/dev-ml/atd/Manifest
index e529ea6d814..315dc2fac7b 100644
--- a/dev-ml/atd/Manifest
+++ b/dev-ml/atd/Manifest
@@ -1,2 +1,3 @@
+DIST atd-1.12.0.tar.gz 145428 SHA256 
3e81d562e74374b98c0f383c1ded46beb06d8416d2065645fd68d3b8b0238ddd SHA512 
c24601b276da7837bc896bb42b2e0fa91ebfbf07759560c2490ed44bef722dcf8d586aaba1e62abff262805cab89996835611ab9fb68aa096dfc84bb55365475
 WHIRLPOOL 
c39967976d80053680004e8c912af1d37da96e97f76e7056a89fb996ff629aec367ba68cc9783932b9fb49918ed60ef209a80af975535bc0382255e80b7d79c7
 DIST atd-1.2.0.tar.gz 41300 SHA256 
488e06e406824efab12f53845b648c1a592c2c8349d4ac1e12b94ce61e7453e9 SHA512 
a52824c9784ac0f4d6f314972fa1d92be14730de3c6bde04032004579ac27408385bd4fa7d926f9d564657eb62050fd732a032f364bada62a1dc7a8acfacb727
 WHIRLPOOL 
b0fe31df2282e5533c6c5bc769a9dfedfc60b5457ccf5e0b7fed82d1da287b72cee3bf1133891e2abe674afb70df781a94200e17bdb0011a45af3f492ae38b1e
 DIST atd-1.2.1.tar.gz 39018 SHA256 
515663f1c48c3592e360079f92eea6db82d3d989f1df19b45e8179aec0d48e34 SHA512 
5dde8dd1e6ca53ae2ff7efc873211079678a824ae7a9d4182d58e3e10ce50a9dcd705de7168a8cfb12ea3d030a0d01b2485d436e77bfa48c14df7628b47161dc
 WHIRLPOOL 
666cb45158769c98f1bd6b30e045447441cea0cfd54d803b88a3e1ae3b2fd355e351f5cfa5e86c8f96e9dbf44d56920748b639f31f7b4787f0d5f634ef7c2c57

diff --git a/dev-ml/atd/atd-1.12.0.ebuild b/dev-ml/atd/atd-1.12.0.ebuild
new file mode 100644
index 000..da91321baad
--- /dev/null
+++ b/dev-ml/atd/atd-1.12.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit findlib
+
+DESCRIPTION="Syntax for cross-language type definitions"
+HOMEPAGE="https://github.com/mjambon/atd;
+SRC_URI="https://github.com/mjambon/atd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0/${PV}"
+KEYWORDS="~amd64"
+IUSE="+ocamlopt"
+
+DEPEND="
+   dev-lang/ocaml:=[ocamlopt?]
+   dev-ml/easy-format:=[ocamlopt?]
+   dev-ml/menhir:=[ocamlopt?]
+   dev-ml/biniou:=
+   dev-ml/yojson:=
+   !dev-ml/atdgen
+"
+RDEPEND="${DEPEND}"
+DEPEND="${DEPEND}
+   dev-ml/jbuilder
+   dev-ml/opam
+"
+
+oinstall() {
+   opam-installer -i \
+   --prefix="${ED}/usr" \
+   --libdir="${D}/$(ocamlc -where)" \
+   --docdir="${ED}/usr/share/doc/${PF}" \
+   ${1}.install || die
+}
+
+src_install() {
+   oinstall atd
+   oinstall atdgen
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ml/atd/

2017-06-23 Thread Alexis Ballier
commit: a42256baa926156020349dd451442d3aebb88dc4
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 12:29:31 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 12:31:21 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a42256ba

dev-ml/atd: split atdgen again

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-ml/atd/atd-1.12.0.ebuild | 14 +-
 1 file changed, 9 insertions(+), 5 deletions(-)

diff --git a/dev-ml/atd/atd-1.12.0.ebuild b/dev-ml/atd/atd-1.12.0.ebuild
index da91321baad..5095732e9dd 100644
--- a/dev-ml/atd/atd-1.12.0.ebuild
+++ b/dev-ml/atd/atd-1.12.0.ebuild
@@ -12,22 +12,27 @@ 
SRC_URI="https://github.com/mjambon/atd/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="BSD"
 SLOT="0/${PV}"
 KEYWORDS="~amd64"
-IUSE="+ocamlopt"
+IUSE="+ocamlopt test"
 
 DEPEND="
dev-lang/ocaml:=[ocamlopt?]
dev-ml/easy-format:=[ocamlopt?]
dev-ml/menhir:=[ocamlopt?]
-   dev-ml/biniou:=
-   dev-ml/yojson:=
-   !dev-ml/atdgen
 "
 RDEPEND="${DEPEND}"
 DEPEND="${DEPEND}
dev-ml/jbuilder
dev-ml/opam
+   test? (
+   dev-ml/biniou
+   dev-ml/yojson
+   )
 "
 
+src_compile() {
+   jbuilder build -p atd || die
+}
+
 oinstall() {
opam-installer -i \
--prefix="${ED}/usr" \
@@ -38,5 +43,4 @@ oinstall() {
 
 src_install() {
oinstall atd
-   oinstall atdgen
 }



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

2017-06-23 Thread Manuel Rüger
commit: 28ae750a2fb41833de74d7dfc11f3cc2640503ab
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 12:21:03 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 12:21:03 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28ae750a

dev-python/lxml: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/lxml/Manifest |  2 -
 dev-python/lxml/lxml-3.6.0.ebuild| 69 ---
 dev-python/lxml/lxml-3.6.4-r1.ebuild | 80 
 3 files changed, 151 deletions(-)

diff --git a/dev-python/lxml/Manifest b/dev-python/lxml/Manifest
index f0eec6a639a..3e480efa7ad 100644
--- a/dev-python/lxml/Manifest
+++ b/dev-python/lxml/Manifest
@@ -1,4 +1,2 @@
-DIST lxml-3.6.0.tar.gz 3693901 SHA256 
9c74ca28a7f0c30dca8872281b3c47705e21217c8bc63912d95c9e2a7cac6bdf SHA512 
2dd25a4f51e3e71b78e82e32f3838137d8b21936c23c16f901f4180277c4d4b7f14e1f47d306022cc1d13dc2e0b7f405319632e554aa989f551f424cc423d60d
 WHIRLPOOL 
081c97bca209bc234dfb4e439da45ecde1cfd4c2da31384601c96293a5ab5def9d713bee612b4c84a5372d5b9035126ff6cbc496bd56b141f89b6a4fe916540b
-DIST lxml-3.6.4.tar.gz 3707675 SHA256 
61d5d3e00b5821e6cda099b3b4ccfea4527bf7c595e0fb3a7a760490cedd6172 SHA512 
0412b266d7a70af21f2e4e05d63c3ce63049661ef27e2bf190cbfe1e982b6980fe980a998a360796b958fa9e148ae5bb48136354d4b0bb042055340e37f61e1e
 WHIRLPOOL 
b9cd81c885a1b12c36b50f4d616214f1912baed7991a3178e9415b74277c849b2e7c82fd7f27fb984148267348f5a72088d0b175ebf2731a16b876988255
 DIST lxml-3.7.3.tar.gz 3797713 SHA256 
aa502d78a51ee7d127b4824ff96500f0181d3c7826e6ee7b800d068be79361c7 SHA512 
9bf1142e81b6e1c8a47e296774d7e448d9ed47de3672f7442cc33274b07252baa47a9346efa9d2fda7b7bb66beb95bbc81f0ae16c9f808ff568f330991dd6d13
 WHIRLPOOL 
d3881f308622ed8beb03a59bbf8256a55b92f5cf41c2c9a0c65c1e53acceea33ab93f420151330b09e8dbde3f717d5c095aa0275406355ec4a17105de46b6bae
 DIST lxml-3.8.0.tar.gz 3795205 SHA256 
736f72be15caad8116891eb6aa4a078b590d231fdc63818c40c21624ac71db96 SHA512 
08f6f352e22ed2bc199a5f34a1c6b5f7b41ec282dc0026c9f16a06466c27e39e8eb18608ba4493636170eeac4b0194f7050445e1cc9bd0a4628573c404593088
 WHIRLPOOL 
b09d7509ca55df74c5ced03ca91b72e0f373df6cb22331a452a35cfe3aa305bb9417280ae0b4835cd4abd29f7df465468799fa25c1b8d73215c74fee51e1

diff --git a/dev-python/lxml/lxml-3.6.0.ebuild 
b/dev-python/lxml/lxml-3.6.0.ebuild
deleted file mode 100644
index c6a5a0736f7..000
--- a/dev-python/lxml/lxml-3.6.0.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
-
-inherit distutils-r1 eutils flag-o-matic toolchain-funcs
-
-DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries"
-HOMEPAGE="http://lxml.de/ https://pypi.python.org/pypi/lxml/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD ElementTree GPL-2 PSF-2"
-SLOT="0"
-KEYWORDS="alpha amd64 arm arm64 hppa ia64 ~mips ppc ppc64 s390 sh sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc examples +threads test"
-
-# Note: lib{xml2,xslt} are used as C libraries, not Python modules.
-RDEPEND="
-   >=dev-libs/libxml2-2.9.2
-   >=dev-libs/libxslt-1.1.28"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/cssselect[${PYTHON_USEDEP}] )
-   "
-
-DISTUTILS_IN_SOURCE_BUILD=1
-
-PATCHES=( "${FILESDIR}"/${PN}-3.5.0-cross-compile.patch )
-
-python_prepare_all() {
-   # avoid replacing PYTHONPATH in tests.
-   sed -i '/sys\.path/d' test.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_compile() {
-   if [[ ${EPYTHON} != python3* ]]; then
-   local CFLAGS=${CFLAGS}
-   append-cflags -fno-strict-aliasing
-   fi
-   tc-export PKG_CONFIG
-   distutils-r1_python_compile
-}
-
-python_test() {
-   cp -r -l src/lxml/tests "${BUILD_DIR}"/lib/lxml/ || die
-   cp -r -l src/lxml/html/tests "${BUILD_DIR}"/lib/lxml/html/ || die
-   ln -s "${S}"/doc "${BUILD_DIR}"/ || die
-
-   "${PYTHON}" test.py -vv --all-levels -p || die "Test ${test} fails with 
${EPYTHON}"
-}
-
-python_install_all() {
-   if use doc; then
-   local DOCS=( *.txt doc/*.txt )
-   local HTML_DOCS=( doc/html/. )
-   fi
-   use examples && local EXAMPLES=( samples/. )
-
-   distutils-r1_python_install_all
-}
-
-pkg_postinst() {
-   optfeature "Support for BeautifulSoup3 as a parser backend" 
dev-python/beautifulsoup
-   optfeature "Translates CSS selectors to XPath 1.0 expressions" 
dev-python/cssselect
-}

diff --git a/dev-python/lxml/lxml-3.6.4-r1.ebuild 
b/dev-python/lxml/lxml-3.6.4-r1.ebuild
deleted file mode 100644
index 126f505a988..000
--- a/dev-python/lxml/lxml-3.6.4-r1.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# 

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

2017-06-23 Thread Manuel Rüger
commit: d05d5e7525825cfea15f3b8e5dda407eb76e39a8
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 12:19:16 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 12:19:16 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d05d5e75

dev-python/lxml: Version bump to 3.8.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/lxml/Manifest  |  1 +
 dev-python/lxml/lxml-3.8.0.ebuild | 80 +++
 2 files changed, 81 insertions(+)

diff --git a/dev-python/lxml/Manifest b/dev-python/lxml/Manifest
index 3015b1f40e2..f0eec6a639a 100644
--- a/dev-python/lxml/Manifest
+++ b/dev-python/lxml/Manifest
@@ -1,3 +1,4 @@
 DIST lxml-3.6.0.tar.gz 3693901 SHA256 
9c74ca28a7f0c30dca8872281b3c47705e21217c8bc63912d95c9e2a7cac6bdf SHA512 
2dd25a4f51e3e71b78e82e32f3838137d8b21936c23c16f901f4180277c4d4b7f14e1f47d306022cc1d13dc2e0b7f405319632e554aa989f551f424cc423d60d
 WHIRLPOOL 
081c97bca209bc234dfb4e439da45ecde1cfd4c2da31384601c96293a5ab5def9d713bee612b4c84a5372d5b9035126ff6cbc496bd56b141f89b6a4fe916540b
 DIST lxml-3.6.4.tar.gz 3707675 SHA256 
61d5d3e00b5821e6cda099b3b4ccfea4527bf7c595e0fb3a7a760490cedd6172 SHA512 
0412b266d7a70af21f2e4e05d63c3ce63049661ef27e2bf190cbfe1e982b6980fe980a998a360796b958fa9e148ae5bb48136354d4b0bb042055340e37f61e1e
 WHIRLPOOL 
b9cd81c885a1b12c36b50f4d616214f1912baed7991a3178e9415b74277c849b2e7c82fd7f27fb984148267348f5a72088d0b175ebf2731a16b876988255
 DIST lxml-3.7.3.tar.gz 3797713 SHA256 
aa502d78a51ee7d127b4824ff96500f0181d3c7826e6ee7b800d068be79361c7 SHA512 
9bf1142e81b6e1c8a47e296774d7e448d9ed47de3672f7442cc33274b07252baa47a9346efa9d2fda7b7bb66beb95bbc81f0ae16c9f808ff568f330991dd6d13
 WHIRLPOOL 
d3881f308622ed8beb03a59bbf8256a55b92f5cf41c2c9a0c65c1e53acceea33ab93f420151330b09e8dbde3f717d5c095aa0275406355ec4a17105de46b6bae
+DIST lxml-3.8.0.tar.gz 3795205 SHA256 
736f72be15caad8116891eb6aa4a078b590d231fdc63818c40c21624ac71db96 SHA512 
08f6f352e22ed2bc199a5f34a1c6b5f7b41ec282dc0026c9f16a06466c27e39e8eb18608ba4493636170eeac4b0194f7050445e1cc9bd0a4628573c404593088
 WHIRLPOOL 
b09d7509ca55df74c5ced03ca91b72e0f373df6cb22331a452a35cfe3aa305bb9417280ae0b4835cd4abd29f7df465468799fa25c1b8d73215c74fee51e1

diff --git a/dev-python/lxml/lxml-3.8.0.ebuild 
b/dev-python/lxml/lxml-3.8.0.ebuild
new file mode 100644
index 000..2ab0055cd81
--- /dev/null
+++ b/dev-python/lxml/lxml-3.8.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} )
+
+inherit distutils-r1 eutils flag-o-matic toolchain-funcs
+
+DESCRIPTION="A Pythonic binding for the libxml2 and libxslt libraries"
+HOMEPAGE="http://lxml.de/ https://pypi.python.org/pypi/lxml/ 
https://github.com/lxml/lxml;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD ElementTree GPL-2 PSF-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~x64-cygwin ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~x64-solaris ~x86-solaris"
+IUSE="doc examples +threads test"
+
+# Note: lib{xml2,xslt} are used as C libraries, not Python modules.
+RDEPEND="
+   >=dev-libs/libxml2-2.9.2
+   >=dev-libs/libxslt-1.1.28"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/cssselect[${PYTHON_USEDEP}] )
+   "
+
+DISTUTILS_IN_SOURCE_BUILD=1
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.5.0-cross-compile.patch
+
+   # This patch removes a testcase that fails because of issues
+   # in libxml2.
+   #
+   # Upstream bug: https://bugs.launchpad.net/lxml/+bug/1608479
+   "${FILESDIR}"/${PN}-3.6.4-fix-test_xmlschema.patch
+)
+
+python_prepare_all() {
+   # avoid replacing PYTHONPATH in tests.
+   sed -i '/sys\.path/d' test.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile() {
+   if [[ ${EPYTHON} != python3* ]]; then
+   local -x CFLAGS="${CFLAGS}"
+   append-cflags -fno-strict-aliasing
+   fi
+   tc-export PKG_CONFIG
+   distutils-r1_python_compile
+}
+
+python_test() {
+   cp -r -l src/lxml/tests "${BUILD_DIR}"/lib/lxml/ || die
+   cp -r -l src/lxml/html/tests "${BUILD_DIR}"/lib/lxml/html/ || die
+   ln -s "${S}"/doc "${BUILD_DIR}"/ || die
+
+   "${EPYTHON}" test.py -vv --all-levels -p || die "Test ${test} fails 
with ${EPYTHON}"
+}
+
+python_install_all() {
+   if use doc; then
+   local DOCS=( *.txt doc/*.txt )
+   local HTML_DOCS=( doc/html/. )
+   fi
+   if use examples; then
+   docinto examples
+   dodoc -r samples/.
+   fi
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   optfeature "Support for BeautifulSoup3 as a parser backend" 
dev-python/beautifulsoup
+   optfeature "Translates CSS 

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

2017-06-23 Thread Alexis Ballier
commit: a8258c6b3c9a12bf9c015bf75ade1e86c2f68e45
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 12:14:28 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 12:14:28 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8258c6b

dev-python/ipdb: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

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

diff --git a/dev-python/ipdb/ipdb-0.10.2.ebuild 
b/dev-python/ipdb/ipdb-0.10.2.ebuild
index 8192770934e..804871d1f17 100644
--- a/dev-python/ipdb/ipdb-0.10.2.ebuild
+++ b/dev-python/ipdb/ipdb-0.10.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 IUSE=""
 
 RDEPEND="dev-python/ipython[${PYTHON_USEDEP}]"



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

2017-06-23 Thread Alexis Ballier
commit: efe82d7aa1783a60df164ca80a1f36730c193570
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 11:48:08 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 11:48:08 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=efe82d7a

profiles/arch/arm64: mask video cards for old unkeyworded drivers in old 
xorg-drivers.

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

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index ccd815840d6..63264b460a7 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2017 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
+# Alexis Ballier  (23 Jun 2017)
+# No need for old drivers
+ (21 Jun 2017)
 # Appends -mfpu=neon that doesnt work on arm64
 media-libs/speexdsp cpu_flags_arm_neon



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

2017-06-23 Thread Alexis Ballier
commit: b088ce3056c2e423a2af6ab79c7eb2c2ce80d4e6
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 07:13:32 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 11:44:37 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b088ce30

x11-drivers/xf86-video-nouveau: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.15.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.15.ebuild 
b/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.15.ebuild
index 18ee0891d74..e7e76045b30 100644
--- a/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.15.ebuild
+++ b/x11-drivers/xf86-video-nouveau/xf86-video-nouveau-1.0.15.ebuild
@@ -13,7 +13,7 @@ fi
 DESCRIPTION="Accelerated Open Source driver for nVidia cards"
 HOMEPAGE="https://nouveau.freedesktop.org/;
 
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ~arm64 ppc ppc64 x86"
 IUSE=""
 
 RDEPEND=">=x11-libs/libdrm-2.4.60[video_cards_nouveau]



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

2017-06-23 Thread Alexis Ballier
commit: b36db1b67d881631be34023603b5f28d999cb931
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 11:44:12 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 11:44:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b36db1b6

net-libs/libproxy: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 net-libs/libproxy/libproxy-0.4.13-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libproxy/libproxy-0.4.13-r2.ebuild 
b/net-libs/libproxy/libproxy-0.4.13-r2.ebuild
index c6c0baf84a7..d212bc6f1b1 100644
--- a/net-libs/libproxy/libproxy-0.4.13-r2.ebuild
+++ b/net-libs/libproxy/libproxy-0.4.13-r2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/libproxy/libproxy/archive/${PV}.tar.gz -> ${P}.tar.g
 LICENSE="LGPL-2.1+"
 SLOT="0"
 
-KEYWORDS="alpha amd64 arm hppa ia64 ~mips ppc ppc64 ~sh sparc x86 ~x86-fbsd 
~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="alpha amd64 arm ~arm64 hppa ia64 ~mips ppc ppc64 ~sh sparc x86 
~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux ~x64-macos ~x86-macos 
~sparc-solaris ~x86-solaris"
 
 IUSE="gnome kde mono networkmanager perl python spidermonkey test webkit"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"



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

2017-06-23 Thread Alexis Ballier
commit: 06b7c4af7c80e50e4591eb3bccb05d90f74fae54
Author: Alexis Ballier  gentoo  org>
AuthorDate: Fri Jun 23 11:43:36 2017 +
Commit: Alexis Ballier  gentoo  org>
CommitDate: Fri Jun 23 11:44:38 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06b7c4af

media-libs/phonon: keyword ~arm64

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 media-libs/phonon/phonon-4.9.1-r1.ebuild | 2 +-
 media-libs/phonon/phonon-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/phonon/phonon-4.9.1-r1.ebuild 
b/media-libs/phonon/phonon-4.9.1-r1.ebuild
index 07a4de94181..eb361e00ce4 100644
--- a/media-libs/phonon/phonon-4.9.1-r1.ebuild
+++ b/media-libs/phonon/phonon-4.9.1-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 if [[ ${PV} != ** ]]; then
SRC_URI="mirror://kde/stable/phonon/${PV}/${P}.tar.xz"
-   KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~sparc x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 else
EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" )
inherit git-r3

diff --git a/media-libs/phonon/phonon-.ebuild 
b/media-libs/phonon/phonon-.ebuild
index e905c36b507..51643b2dff1 100644
--- a/media-libs/phonon/phonon-.ebuild
+++ b/media-libs/phonon/phonon-.ebuild
@@ -5,7 +5,7 @@ EAPI=6
 
 if [[ ${PV} != ** ]]; then
SRC_URI="mirror://kde/stable/phonon/${PV}/${P}.tar.xz"
-   KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos"
 else
EGIT_REPO_URI=( "git://anongit.kde.org/${PN}" )
inherit git-r3



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

2017-06-23 Thread Manuel Rüger
commit: 51d6e84e6e1d28ffb360803ab05a739a1a04550d
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 11:39:44 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 11:39:44 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51d6e84e

dev-python/lz4: Version bump to 0.10.0

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-python/lz4/Manifest  |  1 +
 dev-python/lz4/lz4-0.10.0.ebuild | 24 
 2 files changed, 25 insertions(+)

diff --git a/dev-python/lz4/Manifest b/dev-python/lz4/Manifest
index 4ed6da77547..f442e898dcc 100644
--- a/dev-python/lz4/Manifest
+++ b/dev-python/lz4/Manifest
@@ -1,2 +1,3 @@
+DIST lz4-0.10.0.tar.gz 91852 SHA256 
c3daab3974893b4a8641793af441cf30e9950fe048476d8649cac49cab4e2837 SHA512 
5a998eb2a541e7a6b8ff7a2d8c1fc0e6d30cddb35ec2b400f60726a6c9d996e2488c738dd841c16069a13d3eaadad3479ca173cd8c863c7e73cd5a26d77ef658
 WHIRLPOOL 
753581edf1da6db609bd879a0a34d931f07a32b8c7c8272345673246a0a1567bf2ed46918d1e37cecc24aa0c177e306a3c5c64d9987ca060495975e945c9ae05
 DIST lz4-0.8.2.tar.gz 30818 SHA256 
6bf49061d73d69c453e892ace4586b99ccffc7de558f921d18b9418235692ac7 SHA512 
e516d5c3309f214fa422b040a0aacdda079395624dd4f5548ed7af637b1594012aac75b309cef260b41c10a623410f815fc089b54ca5d80955d5f2ead12841b1
 WHIRLPOOL 
0a91c5befd9e8d1593ffdf6e102ec4dfa0ac921530e5c570748fdd1be4e0d1a4367792d9226b92215eae764da4107f4370fbf35c5e3b0793d96afc07f330434b
 DIST lz4-0.9.0.tar.gz 86939 SHA256 
93c2b83aa9c74c024062823f96515488c510fa5a4b3826579d0916049d28c205 SHA512 
744d1759e3aecdd75c1045594f05ca8d7b849c737315d5115d7e84e6a8fbe8463bde301466686245662d71f916aed691a6628b8cf5af9c1c1ad2a0352e11947d
 WHIRLPOOL 
5a9e6809e7ff270225dc789e0c56e70513220873154683d6ff81c9ad9220e64b28d8d5f4ddfab6fb167300d011a4d9bbef21ddd3cb5f779b7b3ccc12958de945

diff --git a/dev-python/lz4/lz4-0.10.0.ebuild b/dev-python/lz4/lz4-0.10.0.ebuild
new file mode 100644
index 000..3e2cd6e23b1
--- /dev/null
+++ b/dev-python/lz4/lz4-0.10.0.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2017 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy )
+
+inherit distutils-r1
+
+DESCRIPTION="LZ4 Bindings for Python"
+HOMEPAGE="https://pypi.python.org/pypi/lz4 
https://github.com/python-lz4/python-lz4;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="BSD"
+KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+IUSE="test"
+
+DEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_test() {
+   nosetests || die
+}



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

2017-06-23 Thread Manuel Rüger
commit: eb5b347df550e1222e93f4fafdcaaec59e2aa8e7
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 11:33:26 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 11:33:26 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb5b347d

dev-util/drone: Update init files

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/drone/files/drone-agent.initd | 2 +-
 dev-util/drone/files/drone.initd   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-util/drone/files/drone-agent.initd 
b/dev-util/drone/files/drone-agent.initd
index b231f518fd6..b0e387f0b60 100644
--- a/dev-util/drone/files/drone-agent.initd
+++ b/dev-util/drone/files/drone-agent.initd
@@ -7,7 +7,7 @@ pidfile=${pidfile:-"/run/drone/${SVCNAME}.pid"}
 user=${user:-drone}
 group=${group:-drone}
 
-command="/usr/bin/drone agent"
+command="/usr/bin/drone-server agent"
 command_background="true"
 start_stop_daemon_args="--user ${user} --group ${group} \
--stdout /var/log/drone/${SVCNAME}.log \

diff --git a/dev-util/drone/files/drone.initd b/dev-util/drone/files/drone.initd
index 0840db86bf9..1e98dc1ee95 100644
--- a/dev-util/drone/files/drone.initd
+++ b/dev-util/drone/files/drone.initd
@@ -7,7 +7,7 @@ pidfile=${pidfile:-"/run/${SVCNAME}/${SVCNAME}.pid"}
 user=${user:-${SVCNAME}}
 group=${group:-${SVCNAME}}
 
-command="/usr/bin/drone server"
+command="/usr/bin/drone-server server"
 command_background="true"
 start_stop_daemon_args="--user ${user} --group ${group} \
--stdout /var/log/${SVCNAME}/${SVCNAME}.log \



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

2017-06-23 Thread Manuel Rüger
commit: a300bcfae30643b24de307d9ad3fe3905d074127
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jun 23 11:32:32 2017 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jun 23 11:32:32 2017 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a300bcfa

dev-util/drone: Remove old

Package-Manager: Portage-2.3.6, Repoman-2.3.2

 dev-util/drone/Manifest |  2 --
 dev-util/drone/drone-0.6.0_p20170521.ebuild | 47 -
 2 files changed, 49 deletions(-)

diff --git a/dev-util/drone/Manifest b/dev-util/drone/Manifest
index ca63c7c2e45..f8a8ee7985c 100644
--- a/dev-util/drone/Manifest
+++ b/dev-util/drone/Manifest
@@ -1,5 +1,3 @@
-DIST drone-0.6.0_p20170521.tar.gz 4116779 SHA256 
f9bfaccbe712f72da52c91bec296c5376fb52fa5e0e495be24ff4199a2197eb4 SHA512 
31c0c76caee9ab4c0921398268b9001dac6afd6fd61f716b835efa212ade804f8309d61e27102075f28456be14c1e0076382d165fe38cb3a0b4b1c738df7b5ed
 WHIRLPOOL 
2b91326abfe3a6c8da5710b50cedf7a5e7741ba3f78daaceee8a4ed49dbb2d35bb6cfa429941546633afe2f5088b4127178cd18a3f8483cc6f5c9a15190c42e9
 DIST drone-0.7.1_p20170603.tar.gz 4131569 SHA256 
a0941ec8131f5384b1eabd160de004861ba25c0a103b85a760e727d1bd9b5fdd SHA512 
2348f70c41a86d7cb223549ca5215c07f693b3156f471e620db6569dae32b072ff63f5e7134aa644bf1826b450e8f7855aafde1eac44692724a522db2a62a5db
 WHIRLPOOL 
8d552731ae1a2e5a28e4601771b5911aef7efba522b74bcfa043f74fb96a433392eb6d5a3f849b7fb10932093e81543ca27eaa14b4638f4e0b90dab606f3f7f4
 DIST drone-0.7.2.tar.gz 4133002 SHA256 
d1a326b7b4de20c101202ef89471744298ba11510c7bc8517e0256cf817f86a0 SHA512 
ce49e9e6ba57ea0580186bf7038cc9f156bda2d974de3920a6cb953c4bd616467b3ba0fe397938f06c33adcf9df77686686dd76032f6eb6a69268b2df622b412
 WHIRLPOOL 
a3cec86c2d1d3b52022c4e1647c5d3c15899ad80bac050dd9a5b872c6e78f5838042d8e4c25c93012de07f4181ee81780e1c97c0b3c12429042f30a2011fbf8d
 DIST github.com-drone-drone-ui-2910d0ee662816a2463d31f0988b1ecccd0410b5.tar.gz 
167172 SHA256 5817bfb4fe7546a492d840f7a42a0dc6ede1eeacfc735024276bb90fb1522b5d 
SHA512 
d4c6fbeba9ae5c55533a76fdcf6c251516aa4f8c650f49add7e9392d22a131438bd829670df801495d361417ec12cce07e9d9c28aacd1ce1adc0024408cf3cca
 WHIRLPOOL 
f941daae3f12c96fd439680c5ca81ccbe3aea2b76b1e250ef009a0fe7883514909113b6c9ab923bcb05a5950dec9b57bd849bedb8767225f6eece583f4fe63de
-DIST github.com-drone-drone-ui-76eae97423a0ab2194f82150eb47062580c28df7.tar.gz 
167086 SHA256 6730a0c57ba7274a941da46641a0ec4ceba0c9a1c45283e34b94f2a7974f610c 
SHA512 
bb10a896905b9fbc560e0927c797b87afa1258a9a90691530eb9242f9b9b9342f70029705ea9c82c395c0f62c130284987783fca0d0d059753da840fd7926380
 WHIRLPOOL 
d0515b66001ad95e3d1012741153942da792dd92643962285c47ecfc3a585321261cf17d7e2c73907b6baf772514478edfecae717b86307086bf51cf64b0b035

diff --git a/dev-util/drone/drone-0.6.0_p20170521.ebuild 
b/dev-util/drone/drone-0.6.0_p20170521.ebuild
deleted file mode 100644
index f3db984e2a2..000
--- a/dev-util/drone/drone-0.6.0_p20170521.ebuild
+++ /dev/null
@@ -1,47 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-EGO_PN="github.com/drone/drone/..."
-EGIT_COMMIT="3b5efe1ba16dd963e228937ce98ea1ac29fff390"
-EGO_VENDOR=( "github.com/drone/drone-ui 
76eae97423a0ab2194f82150eb47062580c28df7" )
-
-inherit golang-build golang-vcs-snapshot user
-
-ARCHIVE_URI="https://${EGO_PN%/*}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-DESCRIPTION="A Continuous Delivery platform built on Docker, written in Go"
-HOMEPAGE="https://github.com/drone/drone;
-SRC_URI="${ARCHIVE_URI}
-   ${EGO_VENDOR_URI}"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-go/go-bindata
-   dev-go/go-bindata-assetfs:="
-
-pkg_setup() {
-   enewgroup drone
-   enewuser drone -1 -1 /var/lib/drone drone
-}
-
-src_compile() {
-   pushd src || die
-   GOPATH="${WORKDIR}/${P}:$(get_golibdir_gopath)"\
-   go install -ldflags "-extldflags '-static' -X 
github.com/drone/drone/version.VersionDev=build.${EGIT_COMMIT:0:7}" 
github.com/drone/drone/drone || die
-   popd || die
-}
-
-src_install() {
-   dobin bin/*
-   dodoc src/github.com/drone/drone/README.md
-   keepdir /var/log/drone /var/lib/drone
-   fowners -R drone:drone /var/log/drone /var/lib/drone
-   newinitd "${FILESDIR}"/drone.initd drone
-   newconfd "${FILESDIR}"/drone.confd drone
-   newinitd "${FILESDIR}"/drone-agent.initd drone-agent
-   newconfd "${FILESDIR}"/drone-agent.confd drone-agent
-}



  1   2   >