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

2018-07-13 Thread Tony Vroon
commit: 7095d95ddaee33c7a4cf37fc2399f79e9db72d57
Author: Pierre-Olivier Mercier  nemunai  re>
AuthorDate: Thu Jul 12 17:36:16 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 07:42:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7095d95d

net-dns/knot: remove old

Package-Manager: Portage-2.3.24, Repoman-2.3.6

 net-dns/knot/Manifest  |   1 -
 net-dns/knot/knot-2.6.7.ebuild | 103 -
 2 files changed, 104 deletions(-)

diff --git a/net-dns/knot/Manifest b/net-dns/knot/Manifest
index 4a84be762d9..544eb05882e 100644
--- a/net-dns/knot/Manifest
+++ b/net-dns/knot/Manifest
@@ -1,4 +1,3 @@
 DIST knot-2.5.7.tar.xz 1084656 BLAKE2B 
c2d583625a19f6a61248b3b42cdf14f5bb2bdbafdb20be6b0813744095a4016a4be2eb5e2dfaff0628238c60153480175a86706db0b88569d76156f86ba33968
 SHA512 
96e375f556309bb89cea982dda169cef70c23d03c48282110e47a44849c1102cd37d98aa7650781b399f5d932b724b8a935f0b9e55e4920465ae7b74a0d1d55a
 DIST knot-2.6.6.tar.xz 1120340 BLAKE2B 
374d9b78f2ef2143d1221fced29184a52ee3773abd7cb08b6b48910f6ffc0f7c4f07c00d17d28344c93d71a709363bdf855d20587f87da622153c44d08d85fd8
 SHA512 
bd7a36decc74041f12971045cd69b8cc9e7ecce68f8d2b4cddc9b5f23ee96e8ed290d98fe9e6c441d6727ad4395bea615cbd9ec19cc641abce19ef8da6371972
-DIST knot-2.6.7.tar.xz 1121120 BLAKE2B 
c3000a08a8d873efc5a120d0f0154bcd16be0162ce3c21d74041181183c5f6f1600eeab3546737591ccd1522c8119202dc1f7dd576b70d4c006c0619b904f54a
 SHA512 
021810b396e9aaca140c6df858c8dcb9a4be6ac8d64a413195b88d8073d39e1de0604058343bff7534d39f32de27b0e0bc2271a0e545bb9f809adfe1bfaec9a9
 DIST knot-2.6.8.tar.xz 1121740 BLAKE2B 
2da7e20630fec53952c6892ee4002afeee0c36ef5cb271346caf1760389abaacac7f11dd0b24950ff5eedca40564ccf70c25b5c8548564bdd61c78a1bd9cf93e
 SHA512 
3300985bd4fbf88b58fbb5ba06bdd3dcbe7a50885baa89f9db47811c071a93994a2b17a0dbd27d185feade056ed5d65eef712eedb26de5a4101da363a7c24967

diff --git a/net-dns/knot/knot-2.6.7.ebuild b/net-dns/knot/knot-2.6.7.ebuild
deleted file mode 100644
index 2c624d4be58..000
--- a/net-dns/knot/knot-2.6.7.ebuild
+++ /dev/null
@@ -1,103 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit systemd user
-
-DESCRIPTION="High-performance authoritative-only DNS server"
-HOMEPAGE="https://www.knot-dns.cz/";
-SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-KNOT_MODULES=(
-   "+dnsproxy"
-   "dnstap"
-   "+noudp"
-   "+onlinesign"
-   "rosedb"
-   "+rrl"
-   "+stats"
-   "+synthrecord"
-   "+whoami"
-)
-IUSE="doc caps +fastparser idn libidn2 systemd +utils ${KNOT_MODULES[@]}"
-
-RDEPEND="
-   dev-db/lmdb
-   dev-libs/libedit
-   dev-libs/userspace-rcu
-   dev-python/lmdb
-   net-libs/gnutls
-   caps? ( sys-libs/libcap-ng )
-   dnstap? (
-   dev-libs/fstrm
-   dev-libs/protobuf-c
-   )
-   idn? (
-   !libidn2? ( net-dns/libidn )
-   libidn2? ( net-dns/libidn2 )
-   )
-   systemd? ( sys-apps/systemd )
-"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( dev-python/sphinx )
-"
-
-S="${WORKDIR}/${P/_/-}"
-
-src_configure() {
-   local u
-   local my_conf=(
-   --with-storage="${EPREFIX}/var/lib/${PN}"
-   --with-rundir="${EPREFIX}/var/run/${PN}"
-   $(use_enable fastparser)
-   $(use_enable dnstap)
-   $(use_enable doc documentation)
-   $(use_enable utils utilities)
-   --enable-systemd=$(usex systemd)
-   $(use_with idn libidn)
-   )
-
-   for u in "${KNOT_MODULES[@]#+}"; do
-   my_conf+=("$(use_with ${u} module-${u})")
-   done
-
-   econf "${my_conf[@]}"
-}
-
-src_compile() {
-   default
-
-   if use doc; then
-   emake -C doc html
-   HTML_DOCS=( doc/_build/html/{*.html,*.js,_sources,_static} )
-   fi
-}
-
-src_test() {
-   emake check
-}
-
-src_install() {
-   default
-
-   rmdir "${D}var/run/${PN}" "${D}var/run/" || die
-   keepdir /var/lib/${PN}
-
-   newinitd "${FILESDIR}/knot.init" knot
-   if use systemd; then
-   systemd_newunit "${FILESDIR}/knot-1.service" knot.service
-   fi
-
-   find "${D}" -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   enewgroup knot 53
-   enewuser knot 53 -1 /var/lib/knot knot
-}



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

2018-07-13 Thread Tony Vroon
commit: becf09a92f487bce6bc6087959c08fe6d04ee5dd
Author: Pierre-Olivier Mercier  nemunai  re>
AuthorDate: Thu Jul 12 17:25:55 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 07:42:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=becf09a9

net-dns/knot: bump to 2.6.8

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

 net-dns/knot/Manifest  |   1 +
 net-dns/knot/knot-2.6.8.ebuild | 103 +
 2 files changed, 104 insertions(+)

diff --git a/net-dns/knot/Manifest b/net-dns/knot/Manifest
index d3d63dc1c22..4a84be762d9 100644
--- a/net-dns/knot/Manifest
+++ b/net-dns/knot/Manifest
@@ -1,3 +1,4 @@
 DIST knot-2.5.7.tar.xz 1084656 BLAKE2B 
c2d583625a19f6a61248b3b42cdf14f5bb2bdbafdb20be6b0813744095a4016a4be2eb5e2dfaff0628238c60153480175a86706db0b88569d76156f86ba33968
 SHA512 
96e375f556309bb89cea982dda169cef70c23d03c48282110e47a44849c1102cd37d98aa7650781b399f5d932b724b8a935f0b9e55e4920465ae7b74a0d1d55a
 DIST knot-2.6.6.tar.xz 1120340 BLAKE2B 
374d9b78f2ef2143d1221fced29184a52ee3773abd7cb08b6b48910f6ffc0f7c4f07c00d17d28344c93d71a709363bdf855d20587f87da622153c44d08d85fd8
 SHA512 
bd7a36decc74041f12971045cd69b8cc9e7ecce68f8d2b4cddc9b5f23ee96e8ed290d98fe9e6c441d6727ad4395bea615cbd9ec19cc641abce19ef8da6371972
 DIST knot-2.6.7.tar.xz 1121120 BLAKE2B 
c3000a08a8d873efc5a120d0f0154bcd16be0162ce3c21d74041181183c5f6f1600eeab3546737591ccd1522c8119202dc1f7dd576b70d4c006c0619b904f54a
 SHA512 
021810b396e9aaca140c6df858c8dcb9a4be6ac8d64a413195b88d8073d39e1de0604058343bff7534d39f32de27b0e0bc2271a0e545bb9f809adfe1bfaec9a9
+DIST knot-2.6.8.tar.xz 1121740 BLAKE2B 
2da7e20630fec53952c6892ee4002afeee0c36ef5cb271346caf1760389abaacac7f11dd0b24950ff5eedca40564ccf70c25b5c8548564bdd61c78a1bd9cf93e
 SHA512 
3300985bd4fbf88b58fbb5ba06bdd3dcbe7a50885baa89f9db47811c071a93994a2b17a0dbd27d185feade056ed5d65eef712eedb26de5a4101da363a7c24967

diff --git a/net-dns/knot/knot-2.6.8.ebuild b/net-dns/knot/knot-2.6.8.ebuild
new file mode 100644
index 000..2c624d4be58
--- /dev/null
+++ b/net-dns/knot/knot-2.6.8.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit systemd user
+
+DESCRIPTION="High-performance authoritative-only DNS server"
+HOMEPAGE="https://www.knot-dns.cz/";
+SRC_URI="https://secure.nic.cz/files/knot-dns/${P/_/-}.tar.xz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+KNOT_MODULES=(
+   "+dnsproxy"
+   "dnstap"
+   "+noudp"
+   "+onlinesign"
+   "rosedb"
+   "+rrl"
+   "+stats"
+   "+synthrecord"
+   "+whoami"
+)
+IUSE="doc caps +fastparser idn libidn2 systemd +utils ${KNOT_MODULES[@]}"
+
+RDEPEND="
+   dev-db/lmdb
+   dev-libs/libedit
+   dev-libs/userspace-rcu
+   dev-python/lmdb
+   net-libs/gnutls
+   caps? ( sys-libs/libcap-ng )
+   dnstap? (
+   dev-libs/fstrm
+   dev-libs/protobuf-c
+   )
+   idn? (
+   !libidn2? ( net-dns/libidn )
+   libidn2? ( net-dns/libidn2 )
+   )
+   systemd? ( sys-apps/systemd )
+"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig
+   doc? ( dev-python/sphinx )
+"
+
+S="${WORKDIR}/${P/_/-}"
+
+src_configure() {
+   local u
+   local my_conf=(
+   --with-storage="${EPREFIX}/var/lib/${PN}"
+   --with-rundir="${EPREFIX}/var/run/${PN}"
+   $(use_enable fastparser)
+   $(use_enable dnstap)
+   $(use_enable doc documentation)
+   $(use_enable utils utilities)
+   --enable-systemd=$(usex systemd)
+   $(use_with idn libidn)
+   )
+
+   for u in "${KNOT_MODULES[@]#+}"; do
+   my_conf+=("$(use_with ${u} module-${u})")
+   done
+
+   econf "${my_conf[@]}"
+}
+
+src_compile() {
+   default
+
+   if use doc; then
+   emake -C doc html
+   HTML_DOCS=( doc/_build/html/{*.html,*.js,_sources,_static} )
+   fi
+}
+
+src_test() {
+   emake check
+}
+
+src_install() {
+   default
+
+   rmdir "${D}var/run/${PN}" "${D}var/run/" || die
+   keepdir /var/lib/${PN}
+
+   newinitd "${FILESDIR}/knot.init" knot
+   if use systemd; then
+   systemd_newunit "${FILESDIR}/knot-1.service" knot.service
+   fi
+
+   find "${D}" -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   enewgroup knot 53
+   enewuser knot 53 -1 /var/lib/knot knot
+}



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

2018-07-13 Thread Matt Thode
commit: baaa79691d673e31a20bed1687c1f2ce13fcc637
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jul 13 07:42:40 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jul 13 07:43:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=baaa7969

app-admin/puppetserver: 5.5.3 bup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-admin/puppetserver/puppetserver-5.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppetserver/puppetserver-5.3.3.ebuild 
b/app-admin/puppetserver/puppetserver-5.3.3.ebuild
index 2b6f7873b99..20133466d29 100644
--- a/app-admin/puppetserver/puppetserver-5.3.3.ebuild
+++ b/app-admin/puppetserver/puppetserver-5.3.3.ebuild
@@ -13,7 +13,7 @@ LICENSE="Apache-2.0"
 SLOT="0"
 IUSE="puppetdb"
 # will need the same keywords as puppet
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND+="
>=virtual/jdk-1.8.0



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

2018-07-13 Thread Matt Thode
commit: 278b14e2e657cf74ce7c9b5dcb625abe0559938c
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jul 13 07:42:12 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jul 13 07:42:59 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=278b14e2

app-admin/puppet-agent: 5.5.3 bup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-admin/puppet-agent/puppet-agent-5.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppet-agent/puppet-agent-5.5.3.ebuild 
b/app-admin/puppet-agent/puppet-agent-5.5.3.ebuild
index 5570060df99..784b06891e1 100644
--- a/app-admin/puppet-agent/puppet-agent-5.5.3.ebuild
+++ b/app-admin/puppet-agent/puppet-agent-5.5.3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="puppetdb selinux"
 RESTRICT="strip"
 



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

2018-07-13 Thread Matt Thode
commit: f404928837d9149f5be6fe8ca6005ddedd524e46
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Jul 13 07:41:35 2018 +
Commit: Matt Thode  gentoo  org>
CommitDate: Fri Jul 13 07:42:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4049288

app-admin/puppet: 5.5.2 bup

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 app-admin/puppet/puppet-5.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppet/puppet-5.5.2.ebuild 
b/app-admin/puppet/puppet-5.5.2.ebuild
index 1bbef6e5348..646ad4fb535 100644
--- a/app-admin/puppet/puppet-5.5.2.ebuild
+++ b/app-admin/puppet/puppet-5.5.2.ebuild
@@ -19,7 +19,7 @@ SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz";
 
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 x86"
 IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
 RESTRICT="test"
 



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

2018-07-13 Thread Michał Górny
commit: f0685c528d2197174335be13b6892efb5865cf52
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 07:04:19 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 07:53:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0685c52

dev-python/sqlalchemy: Clean python_test up

Remove meaningless code from python_test().

 dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild | 12 +---
 1 file changed, 1 insertion(+), 11 deletions(-)

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild
index fe9d6c4401d..4a8b2a2bac4 100644
--- a/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild
+++ b/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild
@@ -50,17 +50,7 @@ python_compile() {
 }
 
 python_test() {
-   # Create copies of necessary files in BUILD_DIR.
-   # https://bitbucket.org/zzzeek/sqlalchemy/issue/3144/
-   cp -pR examples sqla_nose.py setup.cfg test "${BUILD_DIR}" || die
-   pushd "${BUILD_DIR}" > /dev/null || die
-   if [[ "${EPYTHON}" == "python3.2" ]]; then
-   2to3 --no-diffs -w test || die
-   fi
-   # Recently upstream elected to make the testsuite also pytest capable
-   # "${PYTHON}" sqla_nose.py || die "Testsuite failed under ${EPYTHON}"
-   py.test --verbose test || die "Testsuite failed under ${EPYTHON}"
-   popd > /dev/null
+   pytest -vv test || die "Testsuite failed under ${EPYTHON}"
 }
 
 python_install_all() {



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

2018-07-13 Thread Michał Górny
commit: b7150203e6733878704f1fdca71da3fc68f44074
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 06:59:09 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 07:53:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7150203

dev-python/sqlalchemy: Bump to 1.2.9

 dev-python/sqlalchemy/Manifest|  1 +
 dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild | 77 +++
 2 files changed, 78 insertions(+)

diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
index 461ef1e525b..ca87c8354c2 100644
--- a/dev-python/sqlalchemy/Manifest
+++ b/dev-python/sqlalchemy/Manifest
@@ -9,3 +9,4 @@ DIST SQLAlchemy-1.2.0.tar.gz 5451303 BLAKE2B 
273edad173583d47d6ebdb4d3efb6e8
 DIST SQLAlchemy-1.2.2.tar.gz 5460157 BLAKE2B 
60c5066a2993d9878f5d3abec1a6a9a4d0a3dc5878df71baee895e5278b95696b775e16000da0ba4c2c358b0a90e70faff0b5733a4f00255b0ec0d605cdd07c6
 SHA512 
060ce803b8b621d51aa69100c598c424c36f051bdce1e2df3f4d837815f91cb55c4e089db5375b01832ec28bf42332311009c51c1b5e7aae92aea001ee880db5
 DIST SQLAlchemy-1.2.4.tar.gz 033 BLAKE2B 
5301d365cf6462b8a61deb3f01dcf86897c0070fe80f570b91f94a02e1830088b558004d915d17589dfaea1e5fd382fdf88c44020f3b3b94974db773b5ed2db6
 SHA512 
a12d17f222cc5fc4360c439e19cae67a013af07e2c22b1f55511c4862d718578249e6bf83151eefe35957e530dbf18a565b08cded3a5e45dd21103201f4d24e8
 DIST SQLAlchemy-1.2.7.tar.gz 5571719 BLAKE2B 
995c977cd5bf22b464e5316d579a3bd5b15f2c2600230c729381f3dbecd1dd6a728ee08d5e8afa8e212bdc7e5272d8723706daed1db0ec353e3b56f5b9c614d7
 SHA512 
c592916dae177bcda7b3d7111af4269815d555273b548e35b58caaf518f7a5dc2256e5b98601cbbf0bbc95405fadd89f8e6b977e0d8104ce4e216d5c6924eda2
+DIST SQLAlchemy-1.2.9.tar.gz 5606090 BLAKE2B 
7aade70c37a6e9afb1e459c88ea0d1ef927541d3ff8c64a634f81ba871fb9d0d14841e1c7a1ed28c12cb7a4d84d6ede6bf132f54d47019967fec8acd55757c33
 SHA512 
88ef57b9e456d7047bd7b5fd9607c87a473a9917d662960b0614fbfc40891002309eda55e66e42a6a280c6d6e7e8e6921349901a19c1caaedace2d532b32af22

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild
new file mode 100644
index 000..fe9d6c4401d
--- /dev/null
+++ b/dev-python/sqlalchemy/sqlalchemy-1.2.9.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
+PYTHON_REQ_USE="sqlite?"
+
+inherit distutils-r1 eutils flag-o-matic
+
+MY_PN="SQLAlchemy"
+MY_P="${MY_PN}-${PV/_beta/b}"
+
+DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
+HOMEPAGE="http://www.sqlalchemy.org/ https://pypi.org/project/SQLAlchemy/";
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="MIT"
+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 ~x64-solaris"
+IUSE="doc examples +sqlite test"
+
+REQUIRED_USE="test? ( sqlite )"
+
+RDEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]"
+
+DEPEND="
+   ${RDEPEND}
+   test? (
+   https://bitbucket.org/zzzeek/sqlalchemy/issue/3144/
+   cp -pR examples sqla_nose.py setup.cfg test "${BUILD_DIR}" || die
+   pushd "${BUILD_DIR}" > /dev/null || die
+   if [[ "${EPYTHON}" == "python3.2" ]]; then
+   2to3 --no-diffs -w test || die
+   fi
+   # Recently upstream elected to make the testsuite also pytest capable
+   # "${PYTHON}" sqla_nose.py || die "Testsuite failed under ${EPYTHON}"
+   py.test --verbose test || die "Testsuite failed under ${EPYTHON}"
+   popd > /dev/null
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( doc/. )
+   use examples && dodoc -r examples
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   optfeature "MySQL support" dev-python/mysql-python 
dev-python/mysql-connector-python
+   optfeature "mssql support" dev-python/pymssql
+   optfeature "postgresql support" dev-python/psycopg:2
+}



[gentoo-commits] repo/gentoo:master commit in: dev-python/freezegun/files/, dev-python/freezegun/

2018-07-13 Thread Michał Górny
commit: 89f1103c2ec01ba37dcadeb0d612b59bc7f4319d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 07:51:45 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 07:53:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89f1103c

dev-python/freezegun: Backport upstream py3.7 fix

 .../freezegun/files/freezegun-0.3.10-py37.patch| 58 ++
 dev-python/freezegun/freezegun-0.3.10.ebuild   |  4 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/freezegun/files/freezegun-0.3.10-py37.patch 
b/dev-python/freezegun/files/freezegun-0.3.10-py37.patch
new file mode 100644
index 000..aa3bd536e09
--- /dev/null
+++ b/dev-python/freezegun/files/freezegun-0.3.10-py37.patch
@@ -0,0 +1,58 @@
+From 4fdad69659f15a9e62cf4f6c15c9f319276cf9b0 Mon Sep 17 00:00:00 2001
+From: Jonas Obrist 
+Date: Tue, 6 Mar 2018 12:21:38 +0900
+Subject: [PATCH] add support for Python 3.7 uuid module changes
+
+Python 3.7 removed uuid._uuid_generate_time. It now has
+uuid._load_system_functions and uuid._generate_time_safe.
+_generate_time_safe is set by calling _load_system_functions (subsequent
+calls to that function are no-op). This change detects the missing
+uuid._uuid_generate_time attribute and uses the new attribute/function
+if they're missing.
+---
+ freezegun/api.py | 14 +++---
+ 1 file changed, 11 insertions(+), 3 deletions(-)
+
+diff --git a/freezegun/api.py b/freezegun/api.py
+index eb09932..a88a392 100644
+--- a/freezegun/api.py
 b/freezegun/api.py
+@@ -27,8 +27,14 @@ _real_time_object_ids = set(id(obj) for obj in 
real_date_objects)
+ 
+ try:
+ real_uuid_generate_time = uuid._uuid_generate_time
+-except (AttributeError, ImportError):
++uuid_generate_time_attr = '_uuid_generate_time'
++except AttributeError:
++uuid._load_system_functions()
++real_uuid_generate_time = uuid._generate_time_safe
++uuid_generate_time_attr = '_generate_time_safe'
++except ImportError:
+ real_uuid_generate_time = None
++uuid_generate_time_attr = None
+ 
+ try:
+ real_uuid_create = uuid._UuidCreate
+@@ -482,7 +488,8 @@ class _freeze_time(object):
+ time.localtime = fake_localtime
+ time.gmtime = fake_gmtime
+ time.strftime = fake_strftime
+-uuid._uuid_generate_time = None
++if uuid_generate_time_attr:
++setattr(uuid, uuid_generate_time_attr, None)
+ uuid._UuidCreate = None
+ uuid._last_timestamp = None
+ 
+@@ -573,7 +580,8 @@ class _freeze_time(object):
+ time.localtime = time.localtime.previous_localtime_function
+ time.strftime = time.strftime.previous_strftime_function
+ 
+-uuid._uuid_generate_time = real_uuid_generate_time
++if uuid_generate_time_attr:
++setattr(uuid, uuid_generate_time_attr, real_uuid_generate_time)
+ uuid._UuidCreate = real_uuid_create
+ uuid._last_timestamp = None
+ 
+-- 
+2.18.0
+

diff --git a/dev-python/freezegun/freezegun-0.3.10.ebuild 
b/dev-python/freezegun/freezegun-0.3.10.ebuild
index f604d233c5f..1c2d176046c 100644
--- a/dev-python/freezegun/freezegun-0.3.10.ebuild
+++ b/dev-python/freezegun/freezegun-0.3.10.ebuild
@@ -28,6 +28,10 @@ DEPEND="${RDEPEND}
)
 "
 
+PATCHES=(
+   "${FILESDIR}"/freezegun-0.3.10-py37.patch
+)
+
 python_test() {
nosetests -v || die "Tests fail with ${EPYTHON}"
 }



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

2018-07-13 Thread Michał Górny
commit: 782a9eb346dc594a4e85da3b1e5f6e64caaad445
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 08:14:03 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 08:22:51 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782a9eb3

dev-python/Babel: Force known-working timezone for tests

Closes: https://bugs.gentoo.org/614070

 dev-python/Babel/Babel-2.5.3-r1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-python/Babel/Babel-2.5.3-r1.ebuild 
b/dev-python/Babel/Babel-2.5.3-r1.ebuild
index 00bcf909a63..eda854a842a 100644
--- a/dev-python/Babel/Babel-2.5.3-r1.ebuild
+++ b/dev-python/Babel/Babel-2.5.3-r1.ebuild
@@ -34,6 +34,8 @@ python_prepare_all() {
 }
 
 python_test() {
+   local -x TZ=UTC
+
# Create implementation-specific datadir for tests.
cp -R -l tests/messages/data "${BUILD_DIR}"/ || die
py.test -vv || die



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

2018-07-13 Thread Michał Górny
commit: b0291e1afaf423ed54ed30d325945e443186196c
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 08:13:39 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 08:22:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0291e1a

dev-python/Babel: Enable verbose tests

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

diff --git a/dev-python/Babel/Babel-2.5.3-r1.ebuild 
b/dev-python/Babel/Babel-2.5.3-r1.ebuild
index 254db65acaf..00bcf909a63 100644
--- a/dev-python/Babel/Babel-2.5.3-r1.ebuild
+++ b/dev-python/Babel/Babel-2.5.3-r1.ebuild
@@ -36,7 +36,7 @@ python_prepare_all() {
 python_test() {
# Create implementation-specific datadir for tests.
cp -R -l tests/messages/data "${BUILD_DIR}"/ || die
-   py.test || die
+   py.test -vv || die
 }
 
 python_compile_all() {



[gentoo-commits] data/glep: New branch: glep63-updates

2018-07-13 Thread Michał Górny
commit: 
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 08:34:30 2018 +

New branch: glep63-updates




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

2018-07-13 Thread Michał Górny
commit: b8af619d7ad66887252ad5dddb31282d97b9ae3d
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 08:56:38 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 09:07:08 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8af619d

dev-python/sphinxcontrib-websupport: Remove unnecessary tox dep

 .../sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild   | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild 
b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
index 63aef8bdb02..36f4308b2e8 100644
--- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
+++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
@@ -28,7 +28,6 @@ DEPEND="
test? (
${RDEPEND}
${PDEPEND}
-   dev-python/tox[${PYTHON_USEDEP}]
dev-python/pytest[${PYTHON_USEDEP}]
dev-python/mock[${PYTHON_USEDEP}]
)"



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

2018-07-13 Thread Michał Górny
commit: 7b8b12c71cf947cab1722c5eac25220e2090aa23
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 08:55:55 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 09:07:06 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b8b12c7

dev-python/sphinxcontrib-websupport: Enable verbose testing

 .../sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild 
b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
index e6e050ddf54..63aef8bdb02 100644
--- a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
+++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
@@ -39,5 +39,5 @@ python_install_all() {
 }
 
 python_test() {
-   "${EPYTHON}" -m pytest tests/ || die "Tests fail with ${EPYTHON}"
+   pytest -vv tests || die "Tests fail with ${EPYTHON}"
 }



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

2018-07-13 Thread Michał Górny
commit: 4566d37ee7fcddacc406fe67e1bce5a779552d0e
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul 13 08:55:47 2018 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul 13 09:07:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4566d37e

dev-python/sphinxcontrib-websupport: Bump to 1.1.0

 dev-python/sphinxcontrib-websupport/Manifest   |  1 +
 .../sphinxcontrib-websupport-1.1.0.ebuild  | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-python/sphinxcontrib-websupport/Manifest 
b/dev-python/sphinxcontrib-websupport/Manifest
index b58ad51090c..438d76f70b3 100644
--- a/dev-python/sphinxcontrib-websupport/Manifest
+++ b/dev-python/sphinxcontrib-websupport/Manifest
@@ -1 +1,2 @@
 DIST sphinxcontrib-websupport-1.0.1.tar.gz 590480 BLAKE2B 
1be40595094233ca2ddb1a367039320fe6655b1a6bbf251d7722b60efe0d0cfbe1cdb38455f47f4fb6810500e0e4923f5a9a74df4f79d1544261c4706a59e8fb
 SHA512 
67807b2505e063639163b020f0e62469b0c2838c303516cce9a8d90181cc7b8a10d76532adb1267556d40f95966efc20ec9f8ee1a6731056bda827a6f97f40ec
+DIST sphinxcontrib-websupport-1.1.0.tar.gz 587947 BLAKE2B 
fafaa56071245c8934e27c6d2d7752745b2a8047c8a30d52e513fff7f952086a1b9082aa15e15ef232d69ef0c0d5d117f8a8c97fcdf9cd90c89d53238d7f322e
 SHA512 
adbd7db06150a4424a881a22442c2535ed823c7adcc295ef9c3af5ae38d823349830a114e8a7af2138498d0e68b37189707c1bb5a28b45c76031bcf94210fb89

diff --git 
a/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild 
b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
new file mode 100644
index 000..e6e050ddf54
--- /dev/null
+++ b/dev-python/sphinxcontrib-websupport/sphinxcontrib-websupport-1.1.0.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 python3_{4,5,6} pypy{,3} )
+
+inherit distutils-r1
+
+DESCRIPTION="Sphinx websupport extension"
+HOMEPAGE="http://www.sphinx-doc.org";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-fbsd ~amd64-linux ~x86-linux ~x64-solaris"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/sqlalchemy-0.9[${PYTHON_USEDEP}]
+   >=dev-python/whoosh-2.0[${PYTHON_USEDEP}]
+   >=dev-python/six-1.5[${PYTHON_USEDEP}]
+   dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]"
+# avoid circular dependency with sphinx
+PDEPEND="
+   >=dev-python/sphinx-1.5.3[${PYTHON_USEDEP}]"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   ${PDEPEND}
+   dev-python/tox[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   )"
+
+python_install_all() {
+   distutils-r1_python_install_all
+   find "${ED}" -name '*.pth' -delete || die
+}
+
+python_test() {
+   "${EPYTHON}" -m pytest tests/ || die "Tests fail with ${EPYTHON}"
+}



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

2018-07-13 Thread Mart Raudsepp
commit: 9d7c42ef37a5754b885b20a7a6a277ba38790ada
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jul 13 09:13:20 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jul 13 09:13:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d7c42ef

app-text/libqxp-0.0.1: added ~arm64 keyword

Tested-by: Roy Bamford  gentoo.org>
Bug: https://bugs.gentoo.org/646506
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm64"

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

diff --git a/app-text/libqxp/libqxp-0.0.1.ebuild 
b/app-text/libqxp/libqxp-0.0.1.ebuild
index 709b8ce..bfa4a9fb225 100644
--- a/app-text/libqxp/libqxp-0.0.1.ebuild
+++ b/app-text/libqxp/libqxp-0.0.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://dev-www.libreoffice.org/src/${PN}/${P}.tar.xz";
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 IUSE="debug doc test tools"
 
 RDEPEND="



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

2018-07-13 Thread Mart Raudsepp
commit: 4df721c30f48a7b4896f5ea8633d73a8281fb3ba
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jul 13 09:11:38 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jul 13 09:11:52 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4df721c3

app-text/libepubgen-0.1.1: added ~arm64 keyword

Tested-by: Roy Bamford  gentoo.org>
Bug: https://bugs.gentoo.org/646506
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm64"

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

diff --git a/app-text/libepubgen/libepubgen-0.1.1.ebuild 
b/app-text/libepubgen/libepubgen-0.1.1.ebuild
index 2fe034fa160..80387cdb8ac 100644
--- a/app-text/libepubgen/libepubgen-0.1.1.ebuild
+++ b/app-text/libepubgen/libepubgen-0.1.1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.xz"
 
 LICENSE="MPL-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
 IUSE="debug doc test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-office/libreoffice/

2018-07-13 Thread Mart Raudsepp
commit: 308628ec2426e1818fd0e4afbf883dc869f053dc
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Fri Jul 13 09:14:18 2018 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Fri Jul 13 09:14:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=308628ec

app-office/libreoffice-6.0.5.2: added ~arm64 keyword

Tested-by: Roy Bamford  gentoo.org>
Closes: https://bugs.gentoo.org/646506
Package-Manager: Portage-2.3.40, Repoman-2.3.9
RepoMan-Options: --include-arches="arm64"

 app-office/libreoffice/libreoffice-6.0.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/libreoffice/libreoffice-6.0.5.2.ebuild 
b/app-office/libreoffice/libreoffice-6.0.5.2.ebuild
index 6c40315ba08..2ad74e6847a 100644
--- a/app-office/libreoffice/libreoffice-6.0.5.2.ebuild
+++ b/app-office/libreoffice/libreoffice-6.0.5.2.ebuild
@@ -79,7 +79,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}
 LICENSE="|| ( LGPL-3 MPL-1.1 )"
 SLOT="0"
 [[ ${MY_PV} == ** ]] || \
-KEYWORDS="~amd64 ~arm ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
 
 COMMON_DEPEND="${PYTHON_DEPS}
app-arch/unzip



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

2018-07-13 Thread Mikhail Pukhlikov
commit: f1f53c6c3d522e0e50e2710dacf359a4378b5e9a
Author: Mikhail Pukhlikov  gentoo  org>
AuthorDate: Fri Jul 13 09:14:31 2018 +
Commit: Mikhail Pukhlikov  gentoo  org>
CommitDate: Fri Jul 13 09:15:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1f53c6c

dev-lang/rust: bump to 1.27.1

 dev-lang/rust/Manifest   | 2 +-
 dev-lang/rust/{rust-1.27.0.ebuild => rust-1.27.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest
index 01a3f45e06b..4f60e535553 100644
--- a/dev-lang/rust/Manifest
+++ b/dev-lang/rust/Manifest
@@ -9,4 +9,4 @@ DIST rust-1.26.2-i686-unknown-linux-gnu.tar.xz 143090096 
BLAKE2B 7871fa4e4d0f320
 DIST rust-1.26.2-x86_64-unknown-linux-gnu.tar.xz 138609432 BLAKE2B 
54507a8ce3ab2676e6e66852b6d3f1a47ca07ad4b56383f6247149309a0f60f67fbf0a6ba27d968c24340c07d7d5074942c6eaccbc1207c5e75fd9a6f47b2481
 SHA512 
29e474b0eab4dd2ffa0b964d83f52ffce530e75c4193e307410ef6d20ef9ad2b300a4f467bdf06b3311157340e9295cb9b1efdcf08dafee66979b076c2afba7e
 DIST rustc-1.25.0-src.tar.gz 98639156 BLAKE2B 
1408d5dd0611d4830de3b6b3d00e3fad4198a47599b639d0ac0bd05aaba401f743056a942e9df04a4d192c6b12e8cfe9a9cdf8cd26e48b72104ce9b423df049e
 SHA512 
7d8886f4d5a621eb794e814deb60be681fa38cf086f87ffa14e5a3500c640b237c549a632de1331a0f1b71963de41f6d31a4df3866b7e597424002316fed81ce
 DIST rustc-1.26.2-src.tar.xz 54613640 BLAKE2B 
f361b7a0ed40ccb026750b4a70b99931f1abf52024e907b588e339902de2fbbd15501d237ac048d0537005834b0a2f49935f654a8c75d40ed95c65894f611481
 SHA512 
a598858ddce0e05d1d431be383400f44fc551eb2e368f37b01670c0b65ea5da6a7d5b2b68bb6ef806d2107cfa0d5007008442ad4d5ddb17d18d04e0ab31600b0
-DIST rustc-1.27.0-src.tar.xz 55455772 BLAKE2B 
5c1b26a3e8c6e45aaa43b3ccb5819089cf03c32807ac1adc46ec4f9ff8cf803ec444587ccb737b5d701c4ef5fa634fc4c89de3d71e6202b64ec125f986e54ffd
 SHA512 
b80af48c637741add1d2846e6e3153b0125fb22ed587036fb9d27ad3961419af64802aa91a79258277b1be20718281558989ea0283db0c482fe1512354ba79d8
+DIST rustc-1.27.1-src.tar.xz 55458892 BLAKE2B 
9c5cec24760afdcee51fb0ba8d2289b92d34de57e97e57f2e5dc129674edab4a595ab5756c789b5de15bdd5107363f12a517169cedc7c3093fa0241d200ca3ab
 SHA512 
4a8c03476ca1867a1130b825724ecb6bd629b889d704fdd6c3de4e188f73e2d1acdfae413f26e37505d76109d23d8e9ab409b31af3d67d244f8552730ada292d

diff --git a/dev-lang/rust/rust-1.27.0.ebuild b/dev-lang/rust/rust-1.27.1.ebuild
similarity index 100%
rename from dev-lang/rust/rust-1.27.0.ebuild
rename to dev-lang/rust/rust-1.27.1.ebuild



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

2018-07-13 Thread Tony Vroon
commit: 30e4408a12e751b806833233846938b91e68cf79
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Fri Jul 13 07:52:59 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:18:10 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30e4408a

www-apps/cgp: bump to version p20180620

Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9209

 www-apps/cgp/Manifest   |  1 +
 www-apps/cgp/cgp-1_p20180620.ebuild | 53 +
 2 files changed, 54 insertions(+)

diff --git a/www-apps/cgp/Manifest b/www-apps/cgp/Manifest
index 7fddb0cd05d..9d92f082155 100644
--- a/www-apps/cgp/Manifest
+++ b/www-apps/cgp/Manifest
@@ -1 +1,2 @@
 DIST cgp-1.tar.gz 139265 BLAKE2B 
bf0f18def8ac3c2117b951172d4150f0626e8dcbe22accbcc6ad156e5f9f5c21792e38fa1bf5a964d8b50cbc7ee9003e4dcdcd75730ba2b0445f4dcfeffdda6c
 SHA512 
fc5bc6d39dac896b56579cb6ca013c81493b994a7a190e0c0eec8a64f7b87c6eb2e0ad5cc969b8ea03ca4b00eee212ccee5c8785c23f5656bff3fe5490ff8f75
+DIST cgp-1_p20180620.tar.gz 139549 BLAKE2B 
2cc1a416ae1158b5788615b05bf43039049af52eb5296e7fd8136c9895e8ee0a9887e84ad37c6598a4c4387982a2860fbdb7cf9cdff39cfe5bbee598b9ace88f
 SHA512 
acd09bb699af678347dacfc08fee60a86843874543851805f245952e538777d7ccd528c156f7a21b803503c7aac134013a4eb8200d5266cf35541b0dce5839e4

diff --git a/www-apps/cgp/cgp-1_p20180620.ebuild 
b/www-apps/cgp/cgp-1_p20180620.ebuild
new file mode 100644
index 000..6051624a6a9
--- /dev/null
+++ b/www-apps/cgp/cgp-1_p20180620.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit webapp
+
+MY_PN="${PN^^}"
+MY_PV="1920ca24a067ac157a6bd8f3c017f4c6244ae245"
+
+DESCRIPTION="A graphical web-based front-end for visualizing RRD collected by 
collectd"
+HOMEPAGE="https://github.com/pommi/CGP
+   https://pommi.nethuis.nl/category/cgp/";
+SRC_URI="https://github.com/pommi/${MY_PN}/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="CC-BY-2.0 GPL-2+ GPL-3 MIT"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-lang/php[json]
+   net-analyzer/rrdtool[graph]
+   virtual/httpd-php"
+
+need_httpd_cgi
+
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+
+DOCS=( "README.md" "doc/CHANGELOG" "doc/nginx.conf" )
+
+src_install() {
+   webapp_src_preinst
+
+   einstalldocs
+
+   # Since the docs are already installed, remove them from htdocs
+   # The file doc/CHANGELOG is needed, as CGP reads from there it's version
+   rm -r .gitignore doc/LICENSE doc/nginx.conf || die
+
+   insinto "${MY_HTDOCSDIR}"
+   doins -r .
+
+   webapp_src_install
+}
+
+pkg_postinst() {
+   webapp_pkg_postinst
+
+   einfo "The command shell_exec must not be disabled"
+   einfo "through the disable_functions php.ini directive."
+   einfo "It must allow execution of the rrdtool program."
+   einfo ""
+   einfo "An configuration file for www-servers/nginx"
+   einfo "has been installed as an example."
+}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/hatari/

2018-07-13 Thread Tony Vroon
commit: 36e4ca67227d1ee5b89ba92a15e115ea7768cb2b
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Wed Jul 11 22:09:06 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:27:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36e4ca67

games-emulation/hatari: version bump to 2.1.0

Ebuild based on Alex Bennee's works.

Closes: https://bugs.gentoo.org/651146
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 games-emulation/hatari/Manifest|  1 +
 games-emulation/hatari/hatari-2.1.0.ebuild | 76 ++
 games-emulation/hatari/metadata.xml|  3 ++
 3 files changed, 80 insertions(+)

diff --git a/games-emulation/hatari/Manifest b/games-emulation/hatari/Manifest
index f6267b9ecde..8f2de08f387 100644
--- a/games-emulation/hatari/Manifest
+++ b/games-emulation/hatari/Manifest
@@ -1 +1,2 @@
 DIST hatari-1.8.0.tar.bz2 1985358 BLAKE2B 
12fc000dd04c0f0dcead0b6713837a0d4c02df5ecdab9c2d4d2d91bd4cf6f8657acf2d97649a5704b646fae4fefe0626300e297b9e8698e7b8b72854d37b7097
 SHA512 
498a6636eef78e85a4715e9df169d928ce97c0548145a95b41aa3aae28817b8e843de1d1390893863be05e4e9981c89236571ab2eb9239faad23b711542e4fa0
+DIST hatari-2.1.0.tar.bz2 4072778 BLAKE2B 
934ab28e799d0d13c26c291005513511367eb2ddbeda0f9756c19f10fa9e6bb8e10451057fa7e0b49a30e3f562eb5f327057d324b2a92e09b1115f63132dca97
 SHA512 
d1fbf6e60e2df2c43d070bee6a9c1dc93c36a8ea7f75bbf2a67790840952661cee136ebccd6b2ed523ef9b7b56391e058384f2e3f46acb609bb362cac05b9753

diff --git a/games-emulation/hatari/hatari-2.1.0.ebuild 
b/games-emulation/hatari/hatari-2.1.0.ebuild
new file mode 100644
index 000..92eba857519
--- /dev/null
+++ b/games-emulation/hatari/hatari-2.1.0.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python2_7 )
+inherit toolchain-funcs cmake-utils python-single-r1
+
+DESCRIPTION="Atari ST emulator"
+HOMEPAGE="http://hatari.tuxfamily.org/";
+SRC_URI="http://download.tuxfamily.org/hatari/${PV}/${P}.tar.bz2";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+sdl2"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   games-emulation/caps
+   sdl2? ( media-libs/libsdl2[X,sound,video] )
+   !sdl2? ( media-libs/libsdl[X,sound,video] )
+   media-libs/portaudio
+   media-libs/portmidi
+   sys-libs/readline:0=
+   media-libs/libpng:0=
+   sys-libs/zlib:0="
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+PDEPEND="dev-python/pygtk[${PYTHON_USEDEP}]
+   >=games-emulation/emutos-0.9.9.1"
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="
+You need a TOS ROM to run hatari. EmuTOS, a free TOS implementation,
+has been installed in /usr/lib*/hatari with a .img extension (there
+are several from which to choose).
+Another option is to go to http://www.atari.st/ and get a real TOS:
+http://www.atari.st/
+The first time you run hatari, you should configure it to find the
+TOS you prefer to use.  Be sure to save your settings.
+"
+
+DOCS="readme.txt doc/*.txt"
+HTML_DOCS="doc/"
+
+src_prepare() {
+   cmake-utils_src_prepare
+
+   sed -i -e '/Encoding/d' ./python-ui/hatariui.desktop || die
+   sed -i -e "s/python/${EPYTHON}/" tools/atari-hd-image.sh || die
+   sed -i -e "s#@DOCDIR@#/usr/share/doc/${PF}/html/#" 
python-ui/uihelpers.py || die
+}
+
+src_configure() {
+   mycmakeargs=(
+   "-DDOCDIR=/usr/share/doc/${PF}"
+   "-DENABLE_SDL2=$(usex sdl2)"
+   )
+   cmake-utils_src_configure
+}
+
+src_install() {
+   cmake-utils_src_install
+   python_fix_shebang "${ED%/}"/usr/share/hatari/{hatariui,hconsole}/
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+   readme.gentoo_print_elog
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}

diff --git a/games-emulation/hatari/metadata.xml 
b/games-emulation/hatari/metadata.xml
index 78274e0fa55..d4511e749d4 100644
--- a/games-emulation/hatari/metadata.xml
+++ b/games-emulation/hatari/metadata.xml
@@ -5,4 +5,7 @@
ga...@gentoo.org
Gentoo Games Project
 
+
+   Use libsdl2 instead of libsdl
+
 



[gentoo-commits] repo/gentoo:master commit in: games-emulation/emutos/

2018-07-13 Thread Tony Vroon
commit: 649606bbdac940a8b62110369897d53529a11194
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Wed Jul 11 20:54:23 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:27:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=649606bb

games-emulation/emutos: version bump to 0.9.9.1

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9190

 games-emulation/emutos/Manifest  |  2 ++
 games-emulation/emutos/emutos-0.9.9.1.ebuild | 23 +++
 2 files changed, 25 insertions(+)

diff --git a/games-emulation/emutos/Manifest b/games-emulation/emutos/Manifest
index 5b267c02169..2ce76da3418 100644
--- a/games-emulation/emutos/Manifest
+++ b/games-emulation/emutos/Manifest
@@ -1,3 +1,5 @@
 DIST emutos-256k-0.9.4.zip 1600186 BLAKE2B 
2c5243165d651a8f4f3b56d0b4bf30bbfd183e4c9d3ae2b1087c3864d540efe445cf10b68e98e862a12be9f34c388548959376a665aac91f09e05b4b39abce58
 SHA512 
ce7ce9e53c82f7861752ee454a4e3ce616bca73ce580e2b803deea22497de06e5ab49a69af6507ce98ab337312dbb879d258ba2acdf868443f406761caa69404
+DIST emutos-256k-0.9.9.1.zip 1913841 BLAKE2B 
3f6093b5df9f694c8f75c07378bbb2e6326b4cf5235fd76059d6cd49701744e16b6fcbf8a92ece7d7bc67c480578f6245bd2e5d48a3e73240b7ae57f0c9ad4d6
 SHA512 
9ede677a53414bf86b111b3703386aea2b9600abbd6a4fd632b3549faa50f7308fcc7a0eb78626d59a4f2c7d8b844dc2ad5137d2b927f070ab1482799605a56d
 DIST emutos-512k-0.9.4.zip 314877 BLAKE2B 
69388ce090c56c05861b859061a9b47998354dc240a0b482f616c5a2c9440ee897abdad96b946f922f77f60ee7d781e37538a42bfc778a6e15ab82225596d91b
 SHA512 
00c8718f364712f5d346859dc40ed83c1792521c9600520aacf199f7d6b24d5cf7a3e2533e1e343d6aa9e77ed3056f8636713bb7c3e9739254e0658c921a78a8
+DIST emutos-512k-0.9.9.1.zip 273400 BLAKE2B 
baf7001b1150aa5aa5482920733c613c8ebc2d9eeb944de6c1cae471e6889062ed935a3bfe17d209a54733dd5ca453244fde6d906b7dd7f68772633d456df594
 SHA512 
38f5084df230883634715a1bd1ec542ed63027fae5690a7857986653a918f302126a288600aefa38bd12920d40c1a535cd467b66d55a1b0471364a590ca7986a
 DIST emutos-src-0.9.3.tar.gz 935570 BLAKE2B 
bcbf216e8bfbae681a404fdaa07e7bc00e1a865e4f6430bf70741ea9a92ee16ab90eef99140c29f3cf381bac93d72e20312e7f21b2e96bc23144c73af0b9191f
 SHA512 
45e19a9f8ebbd1675059a78d1416d0571bc54c3979b36c684f2394f508f48f6f1dae10f4eb966e1757ff10698644302c788ee3e51bf42fe10d131d87508d9824

diff --git a/games-emulation/emutos/emutos-0.9.9.1.ebuild 
b/games-emulation/emutos/emutos-0.9.9.1.ebuild
new file mode 100644
index 000..10bd4656d74
--- /dev/null
+++ b/games-emulation/emutos/emutos-0.9.9.1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+DESCRIPTION="Single-user single-tasking operating system for 32 bit Atari 
computer emulators"
+HOMEPAGE="http://emutos.sourceforge.net";
+SRC_URI="mirror://sourceforge/emutos/${PN}-512k-${PV}.zip
+   mirror://sourceforge/emutos/${PN}-256k-${PV}.zip"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="app-arch/unzip"
+
+S="${WORKDIR}"
+
+src_install() {
+   insinto /usr/share/${PN}
+   doins */*.img
+   dodoc 
${PN}-512k-${PV}/{readme,doc/{announce,authors,changelog,status}}.txt
+}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/hatari/files/, games-emulation/hatari/

2018-07-13 Thread Tony Vroon
commit: 81314cd16c5799e482ba4c20d3f5f4dee3136e88
Author: Azamat H. Hackimov  gmail  com>
AuthorDate: Wed Jul 11 22:11:23 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:27:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81314cd1

games-emulation/hatari: remove old

Removed old games.eclass based version

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 games-emulation/hatari/Manifest|   1 -
 .../hatari/files/hatari-1.8.0-gentoo-docdir.patch  |  13 ---
 .../hatari/files/hatari-1.8.0-gentoo.patch | 112 -
 games-emulation/hatari/hatari-1.8.0.ebuild |  89 
 4 files changed, 215 deletions(-)

diff --git a/games-emulation/hatari/Manifest b/games-emulation/hatari/Manifest
index 8f2de08f387..e061a3037e6 100644
--- a/games-emulation/hatari/Manifest
+++ b/games-emulation/hatari/Manifest
@@ -1,2 +1 @@
-DIST hatari-1.8.0.tar.bz2 1985358 BLAKE2B 
12fc000dd04c0f0dcead0b6713837a0d4c02df5ecdab9c2d4d2d91bd4cf6f8657acf2d97649a5704b646fae4fefe0626300e297b9e8698e7b8b72854d37b7097
 SHA512 
498a6636eef78e85a4715e9df169d928ce97c0548145a95b41aa3aae28817b8e843de1d1390893863be05e4e9981c89236571ab2eb9239faad23b711542e4fa0
 DIST hatari-2.1.0.tar.bz2 4072778 BLAKE2B 
934ab28e799d0d13c26c291005513511367eb2ddbeda0f9756c19f10fa9e6bb8e10451057fa7e0b49a30e3f562eb5f327057d324b2a92e09b1115f63132dca97
 SHA512 
d1fbf6e60e2df2c43d070bee6a9c1dc93c36a8ea7f75bbf2a67790840952661cee136ebccd6b2ed523ef9b7b56391e058384f2e3f46acb609bb362cac05b9753

diff --git a/games-emulation/hatari/files/hatari-1.8.0-gentoo-docdir.patch 
b/games-emulation/hatari/files/hatari-1.8.0-gentoo-docdir.patch
deleted file mode 100644
index 715fb189143..000
--- a/games-emulation/hatari/files/hatari-1.8.0-gentoo-docdir.patch
+++ /dev/null
@@ -1,13 +0,0 @@
 hatari-1.6.1/python-ui/uihelpers.py
-+++ hatari-1.6.1/python-ui/uihelpers.py
-@@ -97,9 +97,7 @@
- # first try whether there are local Hatari docs in standard place
- # for this Hatari/UI version
- sep = os.sep
--path = self.get_binary_path("hatari")
--path = sep.join(path.split(sep)[:-2]) # remove "bin/hatari"
--path = path + sep + "share" + sep + "doc" + sep + "hatari" + sep
-+path = "@DOCDIR@"
- if os.path.exists(path + "manual.html"):
- return path
- # if not, point to latest Hatari HG version docs

diff --git a/games-emulation/hatari/files/hatari-1.8.0-gentoo.patch 
b/games-emulation/hatari/files/hatari-1.8.0-gentoo.patch
deleted file mode 100644
index 4f10d6d9e3c..000
--- a/games-emulation/hatari/files/hatari-1.8.0-gentoo.patch
+++ /dev/null
@@ -1,112 +0,0 @@
 hatari-1.4.0.orig/src/paths.c
-+++ hatari-1.4.0/src/paths.c
-@@ -109,71 +109,6 @@
-   free(pTmpName);
- }
- 
--
--/**
-- * Locate the directory where the hatari executable resides
-- */
--static char *Paths_InitExecDir(const char *argv0)
--{
--  char *psExecDir;  /* Path string where the hatari executable can be 
found */
--
--  /* Allocate memory for storing the path string of the executable */
--  psExecDir = malloc(FILENAME_MAX);
--  if (!psExecDir)
--  {
--  fprintf(stderr, "Out of memory (Paths_Init)\n");
--  exit(-1);
--  }
--
--  /* Determine the bindir...
--   * Start with empty string, then try to use OS specific functions,
--   * and finally analyze the PATH variable if it has not been found yet. 
*/
--  psExecDir[0] = '\0';
--
--#if defined(__linux__)
--  {
--  int i;
--  /* On Linux, we can analyze the symlink /proc/self/exe */
--  i = readlink("/proc/self/exe", psExecDir, FILENAME_MAX);
--  if (i > 0)
--  {
--  char *p;
--  psExecDir[i] = '\0';
--  p = strrchr(psExecDir, '/');/* Search last slash */
--  if (p)
--  *p = 0; /* Strip file name 
from path */
--  }
--  }
--//#elif defined(WIN32) || defined(__CEGCC__)
--///* On Windows we can use GetModuleFileName for getting the exe path */
--//GetModuleFileName(NULL, psExecDir, FILENAME_MAX);
--#endif
--
--  /* If we do not have the execdir yet, analyze argv[0] and the PATH: */
--  if (psExecDir[0] == 0)
--  {
--  if (strchr(argv0, PATHSEP) == 0)
--  {
--  /* No separator in argv[0], we have to explore PATH... 
*/
--  Paths_GetExecDirFromPATH(argv0, psExecDir, 
FILENAME_MAX);
--  }
--  else
--  {
--  /* There was a path separator in argv[0], so let's 
assume a
--   * relative or absolute path to the current directory 
in argv[0] */
--  char *p;
--  strncpy(psExecDir, argv0, FILENAME_MAX);
-- 

[gentoo-commits] repo/gentoo:master commit in: media-video/obs-studio/files/, media-video/obs-studio/

2018-07-13 Thread Tony Vroon
commit: 56c84c9c9473e7651089b5d1fd0e64a542f71e69
Author: Jimi Huotari  gentoo  org>
AuthorDate: Sat Mar 17 22:29:00 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:36:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56c84c9c

media-video/obs-studio: add support for scripting

Scripting support for Lua and Python 3 is enabled by automagic, if
the required libraries are found.  This commit adds USE-flags and
a patch that give the user control on whether or not to do so.

Closes: https://bugs.gentoo.org/656956
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9151
Closes: https://bugs.gentoo.org/656956

 .../obs-studio-21.1.2-use-less-automagic.patch | 167 +
 media-video/obs-studio/metadata.xml|   4 +-
 media-video/obs-studio/obs-studio-.ebuild  |  26 +++-
 3 files changed, 193 insertions(+), 4 deletions(-)

diff --git 
a/media-video/obs-studio/files/obs-studio-21.1.2-use-less-automagic.patch 
b/media-video/obs-studio/files/obs-studio-21.1.2-use-less-automagic.patch
new file mode 100644
index 000..2c28c8e080d
--- /dev/null
+++ b/media-video/obs-studio/files/obs-studio-21.1.2-use-less-automagic.patch
@@ -0,0 +1,167 @@
+From eee6541153cfb6788ee088181781793de100e54c Mon Sep 17 00:00:00 2001
+From: Jimi Huotari 
+Date: Mon, 9 Jul 2018 02:20:10 +0300
+Subject: [PATCH 1/2] deps/obs-scripting: Use less automagic for Lua/Python
+ detection
+
+This adds build-time options for disabling the Lua and/or Python
+scripting support in cases where users do not wish to build
+it, but have the required libraries installed.
+---
+ deps/obs-scripting/CMakeLists.txt | 73 +++
+ 1 file changed, 45 insertions(+), 28 deletions(-)
+
+diff --git a/deps/obs-scripting/CMakeLists.txt 
b/deps/obs-scripting/CMakeLists.txt
+index 835c1b30..46412779 100644
+--- a/deps/obs-scripting/CMakeLists.txt
 b/deps/obs-scripting/CMakeLists.txt
+@@ -1,6 +1,7 @@
+ cmake_minimum_required(VERSION 2.8)
+ 
+ if(NOT ENABLE_SCRIPTING)
++  message(STATUS "Scripting plugin disabled")
+   return()
+ endif()
+ 
+@@ -11,44 +12,60 @@ if(MSVC)
+   w32-pthreads)
+ endif()
+ 
+-find_package(Luajit QUIET)
+-find_package(PythonDeps QUIET)
+-find_package(SwigDeps QUIET 2)
++option(DISABLE_LUA "Disable Lua scripting support" OFF)
++option(DISABLE_PYTHON "Disable Python scripting support" OFF)
+ 
+ set(COMPILE_PYTHON FALSE CACHE BOOL "" FORCE)
+ set(COMPILE_LUA FALSE CACHE BOOL "" FORCE)
+ 
+-if(NOT SWIG_FOUND)
+-  message(STATUS "Scripting: SWIG not found; scripting disabled")
+-  return()
+-endif()
++if(NOT DISABLE_LUA)
++  find_package(Luajit QUIET)
+ 
+-if(NOT PYTHONLIBS_FOUND AND NOT LUAJIT_FOUND)
+-  message(STATUS "Scripting: Neither Python 3 nor Luajit was found; 
scripting plugin disabled")
+-  return()
+-endif()
+-
+-if(NOT LUAJIT_FOUND)
+-  message(STATUS "Scripting: Luajit not found; Luajit support disabled")
++  if(NOT DISABLE_LUA AND NOT LUAJIT_FOUND)
++  message(STATUS "Luajit support not found.")
++  set(LUAJIT_FOUND FALSE)
++  else()
++  message(STATUS "Scripting: Luajit supported")
++  set(COMPILE_LUA TRUE CACHE BOOL "" FORCE)
++  endif()
+ else()
+-  message(STATUS "Scripting: Luajit supported")
+-  set(COMPILE_LUA TRUE CACHE BOOL "" FORCE)
++  message(STATUS "Scripting: Luajit support disabled")
++  set(LUAJIT_FOUND FALSE)
+ endif()
+ 
+-if(NOT PYTHONLIBS_FOUND)
+-  message(STATUS "Scripting: Python 3 not found; Python support disabled")
++if(NOT DISABLE_PYTHON)
++  find_package(PythonDeps QUIET)
++
++  if(NOT DISABLE_PYTHON AND NOT PYTHONLIBS_FOUND)
++  message(STATUS "Python support not found.")
++  set(PYTHON_FOUND FALSE)
++  set(PYTHONLIBS_FOUND FALSE)
++  else()
++  message(STATUS "Scripting: Python 3 supported")
++  set(PYTHON_FOUND TRUE)
++  set(COMPILE_PYTHON TRUE CACHE BOOL "" FORCE)
++
++  get_filename_component(PYTHON_LIB "${PYTHON_LIBRARIES}" NAME)
++  string(REGEX REPLACE "\\.[^.]*$" "" PYTHON_LIB ${PYTHON_LIB})
++
++  if(WIN32)
++  string(REGEX REPLACE "_d" "" PYTHON_LIB "${PYTHON_LIB}")
++  endif()
++  endif()
++else()
++  message(STATUS "Scripting: Python 3 support disabled")
+   set(PYTHON_FOUND FALSE)
+   set(PYTHONLIBS_FOUND FALSE)
+-else()
+-  message(STATUS "Scripting: Python 3 supported")
+-  set(PYTHON_FOUND TRUE)
+-  set(COMPILE_PYTHON TRUE CACHE BOOL "" FORCE)
+-
+-  get_filename_component(PYTHON_LIB "${PYTHON_LIBRARIES}" NAME)
+-  string(REGEX REPLACE "\\.[^.]*$" "" PYTHON_LIB ${PYTHON_LIB})
+-  if(WIN32)
+-  string(REGEX REPLACE "_d" "" PYTHON_LIB "${PYTHON_LIB}")
+-  endif()
++endif()
++
++find_package(SwigDeps

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

2018-07-13 Thread Tony Vroon
commit: 4f89042e722d03c12728c5fd7f55a9a0db18eb16
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Jul  9 01:24:46 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:36:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f89042e

media-video/obs-studio: update source URIs

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 media-video/obs-studio/metadata.xml | 2 +-
 media-video/obs-studio/obs-studio-21.0.2.ebuild | 4 ++--
 media-video/obs-studio/obs-studio-.ebuild   | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-video/obs-studio/metadata.xml 
b/media-video/obs-studio/metadata.xml
index 5567b005a9c..74a7f582c04 100644
--- a/media-video/obs-studio/metadata.xml
+++ b/media-video/obs-studio/metadata.xml
@@ -21,6 +21,6 @@
   media-libs/speexdsp.
   
   
-jp9000/obs-studio
+obsproject/obs-studio
   
 

diff --git a/media-video/obs-studio/obs-studio-21.0.2.ebuild 
b/media-video/obs-studio/obs-studio-21.0.2.ebuild
index a8842b169dc..208ad000450 100644
--- a/media-video/obs-studio/obs-studio-21.0.2.ebuild
+++ b/media-video/obs-studio/obs-studio-21.0.2.ebuild
@@ -9,10 +9,10 @@ inherit cmake-utils gnome2-utils
 
 if [[ ${PV} == * ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://github.com/jp9000/obs-studio.git";
+   EGIT_REPO_URI="https://github.com/obsproject/obs-studio.git";
EGIT_SUBMODULES=()
 else
-   SRC_URI="https://github.com/jp9000/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://github.com/obsproject/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
 fi
 

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-.ebuild
index 315620af94b..ee1ed473849 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-video/obs-studio/obs-studio-.ebuild
@@ -10,10 +10,10 @@ inherit cmake-utils gnome2-utils python-any-r1
 
 if [[ ${PV} == * ]]; then
inherit git-r3
-   EGIT_REPO_URI="https://github.com/jp9000/obs-studio.git";
+   EGIT_REPO_URI="https://github.com/obsproject/obs-studio.git";
EGIT_SUBMODULES=()
 else
-   SRC_URI="https://github.com/jp9000/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   SRC_URI="https://github.com/obsproject/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
KEYWORDS="~amd64 ~x86"
 fi
 



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

2018-07-13 Thread Tony Vroon
commit: e3fd6616680a91a2882c24d830a7f191f4aa77b7
Author: Jimi Huotari  gentoo  org>
AuthorDate: Thu Jul 12 20:47:23 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:36:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3fd6616

media-video/obs-studio: support FFmpeg 4

The USE="nvenc" in '>=media-video/ffmpeg-4' has been replaced with
'video_cards_nvidia'.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 media-video/obs-studio/obs-studio-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-.ebuild
index ee1ed473849..4558c2f4e95 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-video/obs-studio/obs-studio-.ebuild
@@ -46,7 +46,7 @@ COMMON_DEPEND="
imagemagick? ( media-gfx/imagemagick:= )
jack? ( virtual/jack )
luajit? ( dev-lang/luajit:2 )
-   nvenc? ( media-video/ffmpeg:=[nvenc] )
+   nvenc? ( media-video/ffmpeg:=[nvenc(+),video_cards_nvidia(+)] )
pulseaudio? ( media-sound/pulseaudio )
python? ( ${PYTHON_DEPS} )
speexdsp? ( media-libs/speexdsp )



[gentoo-commits] repo/gentoo:master commit in: media-video/obs-studio/files/, media-video/obs-studio/

2018-07-13 Thread Tony Vroon
commit: 6b776b26f210470caae41bfdaa53606f156697b5
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Jul  9 01:19:49 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:36:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b776b26

media-video/obs-studio: fix build with Qt 5.11

Upstream commit: https://github.com/obsproject/obs-studio/commit/4fd06b98

Closes: https://bugs.gentoo.org/660350
Package-Manager: Portage-2.3.41, Repoman-2.3.9

 .../files/obs-studio-21.0.2-qt-5.11.0.patch| 28 ++
 media-video/obs-studio/obs-studio-21.0.2.ebuild|  2 ++
 2 files changed, 30 insertions(+)

diff --git a/media-video/obs-studio/files/obs-studio-21.0.2-qt-5.11.0.patch 
b/media-video/obs-studio/files/obs-studio-21.0.2-qt-5.11.0.patch
new file mode 100644
index 000..6eb7f7c3ca8
--- /dev/null
+++ b/media-video/obs-studio/files/obs-studio-21.0.2-qt-5.11.0.patch
@@ -0,0 +1,28 @@
+From 4fd06b9825465ae5eb2a9b862cdb89098f655f14 Mon Sep 17 00:00:00 2001
+From: Jimi Huotari 
+Date: Sat, 17 Mar 2018 18:16:39 +0200
+Subject: [PATCH] frontend-tools: Include 'QAction' to fix build against Qt
+ 5.11
+
+Some headers are no longer unconditionally included, leading to
+build failures.
+
+http://code.qt.io/cgit/qt/qtbase.git/commit/?id=748836dae80a7d11901f3f0630168829076d11a8
+http://code.qt.io/cgit/qt/qtbase.git/commit/?id=000c76ada5cc21479fc479be16a7507fed6490f8
+http://code.qt.io/cgit/qt/qtbase.git/commit/?id=058474884c2505a8a00d4c59b4922bfcd3597c2f
+---
+ UI/frontend-plugins/frontend-tools/scripts.cpp | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/UI/frontend-plugins/frontend-tools/scripts.cpp 
b/UI/frontend-plugins/frontend-tools/scripts.cpp
+index d923dcf610..364757e48b 100644
+--- a/UI/frontend-plugins/frontend-tools/scripts.cpp
 b/UI/frontend-plugins/frontend-tools/scripts.cpp
+@@ -12,6 +12,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ 
+ #include 
+ #include 

diff --git a/media-video/obs-studio/obs-studio-21.0.2.ebuild 
b/media-video/obs-studio/obs-studio-21.0.2.ebuild
index db4647c07d1..a8842b169dc 100644
--- a/media-video/obs-studio/obs-studio-21.0.2.ebuild
+++ b/media-video/obs-studio/obs-studio-21.0.2.ebuild
@@ -55,6 +55,8 @@ COMMON_DEPEND="
 DEPEND="${COMMON_DEPEND}"
 RDEPEND="${COMMON_DEPEND}"
 
+PATCHES="${FILESDIR}/${PN}-21.0.2-qt-5.11.0.patch"
+
 CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
 
 src_configure() {



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

2018-07-13 Thread Tony Vroon
commit: b153d458efea49ed63674d85a606e9aed8b3d8f8
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Jul  9 01:26:49 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:36:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b153d458

media-video/obs-studio: remove older versions

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 media-video/obs-studio/Manifest |   2 -
 media-video/obs-studio/obs-studio-20.1.0.ebuild | 116 
 media-video/obs-studio/obs-studio-20.1.3.ebuild | 108 --
 3 files changed, 226 deletions(-)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index e9a1f877589..c905f7fa7b3 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -1,4 +1,2 @@
-DIST obs-studio-20.1.0.tar.gz 5637636 BLAKE2B 
11f42c894af9d8b58ef71eda4c669b557b1b69d8df48d2414ae6d4eda1b8ecb70bb15814a302b87c5b49a43323f772a92ee5dc4a6a58302723b6b1ebf1e35123
 SHA512 
fd0c4b910b9a07644a9ddb72c2622d1fac67878a8bf445d7ab33385aafa23a5207f89971c428a3be01fa851141d9cbb55e86ca81201928783227fc730d12b962
-DIST obs-studio-20.1.3.tar.gz 5638299 BLAKE2B 
8956e0ae444c05bc452284a730ba4cba7be9209d82f8b63f9cd0455ed73411eadc61825773c6ca5fe20435082399c72d3aaf8671c3830454d9237cc92ca4450f
 SHA512 
9d7c6892fe8940df6c1f1686f07722ea554b5996e72b702758d670a75f1220de59295c0a7b8b6445825a86623521061f64b7672bbe7526aefc9a12bab902ed74
 DIST obs-studio-21.0.2.tar.gz 5904469 BLAKE2B 
e4e7c1f2b445f1db6b76df0c7a12dd41ffd95e7ea5669d7efc3387cc0fd15e268d864b5da3da5c07d04bc57692a88a53a67351a370621b1a6ca648405d030454
 SHA512 
a22597ac3a85d4c72b9b1ff886367b158498b6b0141acfd2bdb096a2bd9d29cdfad900dfc00f870eaf0aad66836093579f37b278fa90ccd7b49022e849c1c590
 DIST obs-studio-21.1.2.tar.gz 5959232 BLAKE2B 
12ae6f5e76093df52f44e7f45c06fe5486c8cea875438b8c78ae429fa82ccd0a6ff9d7ab15139877eca26713ab204158b7f92fb7cbefa52a3950814d28962fe7
 SHA512 
5143d3a87b3a54d2a06d236fc6f6d5945ab337004c30eda0438026f4b7607776b82771636d55fcc2c8ab34e041d8ecad99dc843b6b3f4371303d1b7dc349d938

diff --git a/media-video/obs-studio/obs-studio-20.1.0.ebuild 
b/media-video/obs-studio/obs-studio-20.1.0.ebuild
deleted file mode 100644
index 727eac66020..000
--- a/media-video/obs-studio/obs-studio-20.1.0.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit cmake-utils gnome2-utils
-
-if [[ ${PV} == "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/jp9000/obs-studio.git";
-   EGIT_SUBMODULES=()
-else
-   SRC_URI="https://github.com/jp9000/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Software for Recording and Streaming Live Video Content"
-HOMEPAGE="https://obsproject.com";
-
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="+alsa fdk imagemagick jack pulseaudio truetype v4l"
-
-COMMON_DEPEND="
-   >=dev-libs/jansson-2.5
-   dev-qt/qtcore:5
-   dev-qt/qtdeclarative:5
-   dev-qt/qtgui:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtquickcontrols:5
-   dev-qt/qtsql:5
-   dev-qt/qttest:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-video/ffmpeg:=[x264]
-   net-misc/curl
-   x11-libs/libXcomposite
-   x11-libs/libXinerama
-   x11-libs/libXrandr
-   alsa? ( media-libs/alsa-lib )
-   fdk? ( media-libs/fdk-aac:= )
-   imagemagick? ( media-gfx/imagemagick:= )
-   jack? ( virtual/jack )
-   pulseaudio? ( media-sound/pulseaudio )
-   truetype? (
-   media-libs/fontconfig
-   media-libs/freetype
-   )
-   v4l? ( media-libs/libv4l )
-"
-DEPEND="${COMMON_DEPEND}
-   imagemagick? (
-   || (
-   =media-gfx/imagemagick-7
-   >=dev-util/cmake-3.9
-   )
-   )
-   )
-"
-RDEPEND="${COMMON_DEPEND}"
-
-CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
-
-src_configure() {
-   local libdir=$(get_libdir)
-   local mycmakeargs=(
-   -DDISABLE_ALSA=$(usex !alsa)
-   -DDISABLE_FREETYPE=$(usex !truetype)
-   -DDISABLE_JACK=$(usex !jack)
-   -DDISABLE_LIBFDK=$(usex !fdk)
-   -DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
-   -DDISABLE_V4L2=$(usex !v4l)
-   -DLIBOBS_PREFER_IMAGEMAGICK=$(usex imagemagick)
-   -DOBS_MULTIARCH_SUFFIX=${libdir#lib}
-   -DOBS_VERSION_OVERRIDE=${PV}
-   -DUNIX_STRUCTURE=1
-   )
-   cmake-utils_src_configure
-}
-
-pkg_postinst() {
-   gnome2_icon_cache_update
-
-   if ! use alsa && ! use pulseaudio; then
-   elog
-   elog "For the audio capture features to be available,"
-   elog "either the 'alsa' or the 'pulseaudio' USE-flag needs to"
-   

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

2018-07-13 Thread Tony Vroon
commit: 382a92ff3fd5952e93ceb950f7ee215f7cb19e2b
Author: Jimi Huotari  gentoo  org>
AuthorDate: Wed Jul 11 00:40:09 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:36:15 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=382a92ff

media-video/obs-studio: add USE="speexdsp"

This can be used to enable/disable support for the SpeexDSP-based
Noise Suppression filter

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 media-video/obs-studio/metadata.xml   |  2 ++
 media-video/obs-studio/obs-studio-.ebuild | 12 +++-
 2 files changed, 5 insertions(+), 9 deletions(-)

diff --git a/media-video/obs-studio/metadata.xml 
b/media-video/obs-studio/metadata.xml
index 20792bdd8ba..5567b005a9c 100644
--- a/media-video/obs-studio/metadata.xml
+++ b/media-video/obs-studio/metadata.xml
@@ -17,6 +17,8 @@
 Build support for scripting via Luajit.
 Enable NVENC encoding for nVidia video cards.
 Build support for scripting via Python 3.
+Enable noise suppression filter support via
+  media-libs/speexdsp.
   
   
 jp9000/obs-studio

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-.ebuild
index b1dee2913b2..315620af94b 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-video/obs-studio/obs-studio-.ebuild
@@ -22,7 +22,7 @@ HOMEPAGE="https://obsproject.com";
 
 LICENSE="GPL-2"
 SLOT="0"
-IUSE="+alsa fdk imagemagick jack luajit nvenc pulseaudio python truetype v4l"
+IUSE="+alsa fdk imagemagick jack luajit nvenc pulseaudio python speexdsp 
truetype v4l"
 
 COMMON_DEPEND="
>=dev-libs/jansson-2.5
@@ -49,6 +49,7 @@ COMMON_DEPEND="
nvenc? ( media-video/ffmpeg:=[nvenc] )
pulseaudio? ( media-sound/pulseaudio )
python? ( ${PYTHON_DEPS} )
+   speexdsp? ( media-libs/speexdsp )
truetype? (
media-libs/fontconfig
media-libs/freetype
@@ -73,6 +74,7 @@ src_configure() {
-DDISABLE_JACK=$(usex !jack)
-DDISABLE_LIBFDK=$(usex !fdk)
-DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
+   -DDISABLE_SPEEXDSP=$(usex !speexdsp)
-DDISABLE_V4L2=$(usex !v4l)
-DLIBOBS_PREFER_IMAGEMAGICK=$(usex imagemagick)
-DOBS_MULTIARCH_SUFFIX=${libdir#lib}
@@ -112,14 +114,6 @@ pkg_postinst() {
elog "(if 'x11-misc/xdg-utils' is installed)."
elog
fi
-
-   if ! has_version "media-libs/speexdsp"; then
-   elog
-   elog "For the speexdsp-based noise suppression filter"
-   elog "to be available, the 'media-libs/speexdsp' package needs"
-   elog "to be installed."
-   elog
-   fi
 }
 
 pkg_postrm() {



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

2018-07-13 Thread Tony Vroon
commit: a17cb65c6bb1591b2faf603131cc4920dfa91d0c
Author: Jimi Huotari  gentoo  org>
AuthorDate: Mon Jul  9 01:26:05 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:36:17 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a17cb65c

media-video/obs-studio: version bump to 21.1.2

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 media-video/obs-studio/Manifest |   1 +
 media-video/obs-studio/obs-studio-21.1.2.ebuild | 125 
 2 files changed, 126 insertions(+)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index 4eac8d16cff..e9a1f877589 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -1,3 +1,4 @@
 DIST obs-studio-20.1.0.tar.gz 5637636 BLAKE2B 
11f42c894af9d8b58ef71eda4c669b557b1b69d8df48d2414ae6d4eda1b8ecb70bb15814a302b87c5b49a43323f772a92ee5dc4a6a58302723b6b1ebf1e35123
 SHA512 
fd0c4b910b9a07644a9ddb72c2622d1fac67878a8bf445d7ab33385aafa23a5207f89971c428a3be01fa851141d9cbb55e86ca81201928783227fc730d12b962
 DIST obs-studio-20.1.3.tar.gz 5638299 BLAKE2B 
8956e0ae444c05bc452284a730ba4cba7be9209d82f8b63f9cd0455ed73411eadc61825773c6ca5fe20435082399c72d3aaf8671c3830454d9237cc92ca4450f
 SHA512 
9d7c6892fe8940df6c1f1686f07722ea554b5996e72b702758d670a75f1220de59295c0a7b8b6445825a86623521061f64b7672bbe7526aefc9a12bab902ed74
 DIST obs-studio-21.0.2.tar.gz 5904469 BLAKE2B 
e4e7c1f2b445f1db6b76df0c7a12dd41ffd95e7ea5669d7efc3387cc0fd15e268d864b5da3da5c07d04bc57692a88a53a67351a370621b1a6ca648405d030454
 SHA512 
a22597ac3a85d4c72b9b1ff886367b158498b6b0141acfd2bdb096a2bd9d29cdfad900dfc00f870eaf0aad66836093579f37b278fa90ccd7b49022e849c1c590
+DIST obs-studio-21.1.2.tar.gz 5959232 BLAKE2B 
12ae6f5e76093df52f44e7f45c06fe5486c8cea875438b8c78ae429fa82ccd0a6ff9d7ab15139877eca26713ab204158b7f92fb7cbefa52a3950814d28962fe7
 SHA512 
5143d3a87b3a54d2a06d236fc6f6d5945ab337004c30eda0438026f4b7607776b82771636d55fcc2c8ab34e041d8ecad99dc843b6b3f4371303d1b7dc349d938

diff --git a/media-video/obs-studio/obs-studio-21.1.2.ebuild 
b/media-video/obs-studio/obs-studio-21.1.2.ebuild
new file mode 100644
index 000..062b0f41408
--- /dev/null
+++ b/media-video/obs-studio/obs-studio-21.1.2.ebuild
@@ -0,0 +1,125 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+CMAKE_MIN_VERSION=3.9.6
+
+inherit cmake-utils gnome2-utils python-any-r1
+
+if [[ ${PV} == * ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/obsproject/obs-studio.git";
+   EGIT_SUBMODULES=()
+else
+   SRC_URI="https://github.com/obsproject/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Software for Recording and Streaming Live Video Content"
+HOMEPAGE="https://obsproject.com";
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="+alsa fdk imagemagick jack luajit nvenc pulseaudio python speexdsp 
truetype v4l"
+
+COMMON_DEPEND="
+   >=dev-libs/jansson-2.5
+   dev-qt/qtcore:5
+   dev-qt/qtdeclarative:5
+   dev-qt/qtgui:5
+   dev-qt/qtmultimedia:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtquickcontrols:5
+   dev-qt/qtsql:5
+   dev-qt/qttest:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-video/ffmpeg:=[x264]
+   net-misc/curl
+   x11-libs/libXcomposite
+   x11-libs/libXinerama
+   x11-libs/libXrandr
+   alsa? ( media-libs/alsa-lib )
+   fdk? ( media-libs/fdk-aac:= )
+   imagemagick? ( media-gfx/imagemagick:= )
+   jack? ( virtual/jack )
+   luajit? ( dev-lang/luajit:2 )
+   nvenc? ( media-video/ffmpeg:=[nvenc(+),video_cards_nvidia(+)] )
+   pulseaudio? ( media-sound/pulseaudio )
+   python? ( ${PYTHON_DEPS} )
+   speexdsp? ( media-libs/speexdsp )
+   truetype? (
+   media-libs/fontconfig
+   media-libs/freetype
+   )
+   v4l? ( media-libs/libv4l )
+"
+DEPEND="${COMMON_DEPEND}
+   luajit? ( dev-lang/swig )
+   python? ( dev-lang/swig )
+"
+RDEPEND="${COMMON_DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-21.0.2-qt-5.11.0.patch"
+   "${FILESDIR}/${PN}-21.1.2-use-less-automagic.patch"
+)
+
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
+
+src_configure() {
+   local libdir=$(get_libdir)
+   local mycmakeargs=(
+   -DDISABLE_ALSA=$(usex !alsa)
+   -DDISABLE_FREETYPE=$(usex !truetype)
+   -DDISABLE_JACK=$(usex !jack)
+   -DDISABLE_LIBFDK=$(usex !fdk)
+   -DDISABLE_PULSEAUDIO=$(usex !pulseaudio)
+   -DDISABLE_SPEEXDSP=$(usex !speexdsp)
+   -DDISABLE_V4L2=$(usex !v4l)
+   -DLIBOBS_PREFER_IMAGEMAGICK=$(usex imagemagick)
+   -DOBS_MULTIARCH_SUFFIX=${libdir#lib}
+   -DOBS_VERSION_OVERRIDE=${PV}
+   -DUNIX_STRUCTURE=1
+   )
+
+   if use luajit || use python; then

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

2018-07-13 Thread Tony Vroon
commit: 66141117490023fcbccca52c1d5a289f638319e0
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Jul 13 08:56:18 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:37:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66141117

app-misc/lirc: remove unused patches

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

 app-misc/lirc/files/lirc-0.9.4-doc-path-fix.patch | 27 ---
 app-misc/lirc/files/lircmd.conf   |  4 
 2 files changed, 31 deletions(-)

diff --git a/app-misc/lirc/files/lirc-0.9.4-doc-path-fix.patch 
b/app-misc/lirc/files/lirc-0.9.4-doc-path-fix.patch
deleted file mode 100644
index 9a2d6c2e638..000
--- a/app-misc/lirc/files/lirc-0.9.4-doc-path-fix.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-https://sourceforge.net/p/lirc/tickets/214/
-
-diff --git a/doc/Makefile.am b/doc/Makefile.am
-index 53d0f21..f833b4b 100644
 a/doc/Makefile.am
-+++ b/doc/Makefile.am
-@@ -33,7 +33,6 @@ nodist_man_MANS += man/xmode2.1 man/irxevent.1
- manpage_html+= man-html/irxevent.html man-html/xmode2.html
- endif
- 
--docdir  = @datadir@/doc/@PACKAGE@
- dist_doc_DATA   = irxevent.keys
- 
- if HAVE_DOXYGEN
-@@ -58,10 +57,10 @@ if HAVE_PYMOD_YAML
- nodist_website_html_DATA  += table.html
- endif
- 
--vardocsdir  = $(localstatedir)/lib/lirc/plugins
-+vardocsdir  = $(docdir)/plugins
- vardocs_DATA= index.html html-source/lirc.css
- 
--varimagedir = $(localstatedir)/lib/lirc/images
-+varimagedir = $(docdir)/images
- varimage_DATA   = $(dist_image_DATA)
- 
- website_imagedir= $(docdir)/lirc.org/images

diff --git a/app-misc/lirc/files/lircmd.conf b/app-misc/lirc/files/lircmd.conf
deleted file mode 100644
index 319362a321a..000
--- a/app-misc/lirc/files/lircmd.conf
+++ /dev/null
@@ -1,4 +0,0 @@
-# Options to pass to the lircmd process
-
-LIRCMD_OPTS="--uinput"
-



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

2018-07-13 Thread Tony Vroon
commit: 2f3a4660ad47c1ba18cf18ad7e6b5c40b10622d7
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Jul 13 08:52:30 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:38:11 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f3a4660

app-crypt/gnupg: remove unused patches

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

 .../gnupg/files/gnupg-2.1.20-gpg-Fix-typo.patch| 27 ---
 ...g-Properly-account-for-ring-trust-packets.patch | 86 --
 ...r-Handle-failures-related-to-missing-IPv6.patch | 31 
 3 files changed, 144 deletions(-)

diff --git a/app-crypt/gnupg/files/gnupg-2.1.20-gpg-Fix-typo.patch 
b/app-crypt/gnupg/files/gnupg-2.1.20-gpg-Fix-typo.patch
deleted file mode 100644
index 292fc264ac8..000
--- a/app-crypt/gnupg/files/gnupg-2.1.20-gpg-Fix-typo.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 692208fd6c1547cc7dd2062a1d1c9499bc0a8be4 Mon Sep 17 00:00:00 2001
-From: Justus Winter 
-Date: Mon, 8 May 2017 13:52:39 +0200
-Subject: [PATCH] gpg: Fix typo.
-
---
-Signed-off-by: Justus Winter 

- g10/packet.h | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/g10/packet.h b/g10/packet.h
-index a10495c..d42510d 100644
 a/g10/packet.h
-+++ b/g10/packet.h
-@@ -623,7 +623,7 @@ struct parse_packet_ctx_s
-   iobuf_t inp;   /* The input stream with the packets.  */
-   struct packet_struct last_pkt; /* The last parsed packet.  */
-   int free_last_pkt; /* Indicates that LAST_PKT must be freed.  */
--  int skip_meta; /* Skip right trust packets.  */
-+  int skip_meta; /* Skip ring trust packets.  */
- };
- typedef struct parse_packet_ctx_s *parse_packet_ctx_t;
- 
--- 
-2.10.2
-

diff --git 
a/app-crypt/gnupg/files/gnupg-2.1.20-gpg-Properly-account-for-ring-trust-packets.patch
 
b/app-crypt/gnupg/files/gnupg-2.1.20-gpg-Properly-account-for-ring-trust-packets.patch
deleted file mode 100644
index 58568db47d2..000
--- 
a/app-crypt/gnupg/files/gnupg-2.1.20-gpg-Properly-account-for-ring-trust-packets.patch
+++ /dev/null
@@ -1,86 +0,0 @@
-From 22739433e98be80e46fe7d01d52a9627c1aebaae Mon Sep 17 00:00:00 2001
-From: Justus Winter 
-Date: Mon, 8 May 2017 14:24:00 +0200
-Subject: [PATCH] gpg: Properly account for ring trust packets.
-
-* g10/keyring.c (keyring_get_keyblock): Use the parser's packet count
-instead of counting ourself.
-* g10/packet.h (struct parse_packet_ctx_s): New field
-'n_parsed_packets'.
-(init_parse_packet): Initialize new field.
-* g10/parse-packet.c (parse): Count packets.
---
-
-The 'keyring' keystore depends on the number of packets for delete and
-update operations.  With the rework of the ring trust packets, the
-trust packets were no longer properly accounted for leading to keyring
-corruptions.
-
-The 'keybox' store was not affected.
-
-GnuPG-bug-id: 3123
-GnuPG-bug-id: 3135
-GnuPG-bug-id: 3144
-Fixes-commit: a8895c99a7d0750132477d80cd66caaf3a709113
-Signed-off-by: Justus Winter 

- g10/keyring.c  | 4 ++--
- g10/packet.h   | 2 ++
- g10/parse-packet.c | 3 +++
- 3 files changed, 7 insertions(+), 2 deletions(-)
-
-diff --git a/g10/keyring.c b/g10/keyring.c
-index e223f0f..50f1b82 100644
 a/g10/keyring.c
-+++ b/g10/keyring.c
-@@ -409,11 +409,11 @@ keyring_get_keyblock (KEYRING_HANDLE hd, KBNODE *ret_kb)
- pkt = xmalloc (sizeof *pkt);
- init_packet (pkt);
- init_parse_packet (&parsectx, a);
--hd->found.n_packets = 0;;
-+hd->found.n_packets = 0;
- lastnode = NULL;
- save_mode = set_packet_list_mode(0);
- while ((rc=parse_packet (&parsectx, pkt)) != -1) {
--hd->found.n_packets++;
-+hd->found.n_packets = parsectx.n_parsed_packets;
- if (gpg_err_code (rc) == GPG_ERR_UNKNOWN_PACKET) {
-   free_packet (pkt, &parsectx);
-   init_packet (pkt);
-diff --git a/g10/packet.h b/g10/packet.h
-index d42510d..cf2121c 100644
 a/g10/packet.h
-+++ b/g10/packet.h
-@@ -624,6 +624,7 @@ struct parse_packet_ctx_s
-   struct packet_struct last_pkt; /* The last parsed packet.  */
-   int free_last_pkt; /* Indicates that LAST_PKT must be freed.  */
-   int skip_meta; /* Skip ring trust packets.  */
-+  unsigned int n_parsed_packets;  /* Number of parsed packets.  */
- };
- typedef struct parse_packet_ctx_s *parse_packet_ctx_t;
- 
-@@ -633,6 +634,7 @@ typedef struct parse_packet_ctx_s *parse_packet_ctx_t;
- (a)->last_pkt.pkt.generic= NULL;\
- (a)->free_last_pkt = 0; \
- (a)->skip_meta = 0; \
-+(a)->n_parsed_packets = 0;  \
-   } while (0)
- 
- #define deinit_parse_packet(a) do { \
-diff --git a/g10/parse-packet.c b/g10/parse-packet.c
-index fa44f83..dbb7af8 100644
 a/g10/parse-packet.c
-+++ b/g10/parse-packet.c
-@@ -764,6 +764,9 @@ parse (parse_packet_ctx_t ctx, PACKET *pkt, int 
onlykeypkts, off_t * retpos,
- partial? (new_ctb ? " partial" : " indeterminate") :"",
- new_ctb? " new-ctb":"");
- 
-+  /* Count

[gentoo-commits] repo/gentoo:master commit in: dev-libs/double-conversion/files/

2018-07-13 Thread Tony Vroon
commit: d7b06538a5df6dca15a494e3905080370bab0a53
Author: Michael Mair-Keimberger  gmail  com>
AuthorDate: Fri Jul 13 08:57:38 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 09:55:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b06538

dev-libs/double-conversion: remove unused patch(es)

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

 .../files/double-conversion-2.0.1-scons.patch| 12 
 1 file changed, 12 deletions(-)

diff --git 
a/dev-libs/double-conversion/files/double-conversion-2.0.1-scons.patch 
b/dev-libs/double-conversion/files/double-conversion-2.0.1-scons.patch
deleted file mode 100644
index da7f2f9cb3a..000
--- a/dev-libs/double-conversion/files/double-conversion-2.0.1-scons.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 SConstruct.orig2014-03-31 12:40:22.186757814 -0700
-+++ SConstruct 2014-03-31 12:46:21.726024868 -0700
-@@ -18,7 +18,8 @@
- # for shared lib, requires scons 2.3.0
- env['SHLIBVERSION'] = '1.0.0'
- 
--CCFLAGS = []
-+CCFLAGS = [os.environ['CXXFLAGS']]
-+
- if int(debug):
-   CCFLAGS.append(ARGUMENTS.get('CXXFLAGS', '-g -Wall -Werror'))
- if int(optimize):



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

2018-07-13 Thread Sergey Popov
commit: 5470effb32553be2450432f4ebcee6220d0cc2f1
Author: Sergey Popov  gentoo  org>
AuthorDate: Fri Jul 13 10:08:30 2018 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Fri Jul 13 10:12:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5470effb

dev-python/pyfire: revision bump

Bump EAPI to 7, move to unified twisted dependency.
Drop old revision.

Reported-by: Brian Dolbec  gentoo.org>
Closes: https://bugs.gentoo.org/660656
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../pyfire/{pyfire-0.3.4-r1.ebuild => pyfire-0.3.4-r2.ebuild}| 9 -
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/dev-python/pyfire/pyfire-0.3.4-r1.ebuild 
b/dev-python/pyfire/pyfire-0.3.4-r2.ebuild
similarity index 69%
rename from dev-python/pyfire/pyfire-0.3.4-r1.ebuild
rename to dev-python/pyfire/pyfire-0.3.4-r2.ebuild
index 620b2235a9c..be8374a0c34 100644
--- a/dev-python/pyfire/pyfire-0.3.4-r1.ebuild
+++ b/dev-python/pyfire/pyfire-0.3.4-r2.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2013 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 PYTHON_COMPAT=( python2_7 )
 inherit distutils-r1
 
 DESCRIPTION="A python implementation of the Campfire API"
-HOMEPAGE="http://www.pyfire.org/";
+HOMEPAGE="https://github.com/mariano/pyfire";
 SRC_URI="mirror://pypi/p/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
@@ -17,6 +17,5 @@ KEYWORDS="~amd64 ~x86"
 DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
 RDEPEND="
dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/twisted-core[${PYTHON_USEDEP}]
-   dev-python/twisted-web[${PYTHON_USEDEP}]
+   dev-python/twisted[${PYTHON_USEDEP}]
 "



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

2018-07-13 Thread Sergey Popov
commit: 2b1c2b9b677120481952e711ef78d847eef57ad0
Author: Sergey Popov  gentoo  org>
AuthorDate: Fri Jul 13 10:09:55 2018 +
Commit: Sergey Popov  gentoo  org>
CommitDate: Fri Jul 13 10:12:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b1c2b9b

net-im/err: revision bump

Bump EAPI to 7, move to unified twisted dependency.
Drop old revision.

Reported-by: Brian Dolbec  gentoo.org>
Closes: https://bugs.gentoo.org/660652
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 net-im/err/{err-1.7.1-r1.ebuild => err-1.7.1-r2.ebuild} | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/net-im/err/err-1.7.1-r1.ebuild b/net-im/err/err-1.7.1-r2.ebuild
similarity index 85%
rename from net-im/err/err-1.7.1-r1.ebuild
rename to net-im/err/err-1.7.1-r2.ebuild
index ebb93789254..6ed14b926ae 100644
--- a/net-im/err/err-1.7.1-r1.ebuild
+++ b/net-im/err/err-1.7.1-r2.ebuild
@@ -1,14 +1,14 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
+EAPI=7
 
 PYTHON_COMPAT=( python2_7 )
 
 inherit distutils-r1 eutils user
 
-DESCRIPTION="Plugin based XMPP chatbot designed to be easily deployable, 
extensible and maintainable"
-HOMEPAGE="https://gbin.github.com/err/";
+DESCRIPTION="Plugin based chatbot designed to be easily deployable, extensible 
and maintainable"
+HOMEPAGE="https://errbot.io/";
 SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 KEYWORDS="~amd64 ~x86"
@@ -27,8 +27,7 @@ RDEPEND="
virtual/python-dnspython[${PYTHON_USEDEP}]
irc? (
dev-python/pyopenssl[${PYTHON_USEDEP}]
-   dev-python/twisted-core[${PYTHON_USEDEP}]
-   dev-python/twisted-words[${PYTHON_USEDEP}]
+   dev-python/twisted[${PYTHON_USEDEP}]
)
plugins? ( dev-vcs/git )"
 
@@ -68,7 +67,7 @@ python_install_all() {
newconfd "${FILESDIR}"/errd.confd errd
 
dodir /etc/${PN}
-   dodir /var/lib/${PN}
+   keepdir /var/lib/${PN}
keepdir /var/log/${PN}
fowners -R err:err /var/lib/${PN}
fowners -R err:err /var/log/${PN}



[gentoo-commits] repo/gentoo:master commit in: app-metrics/alertmanager/

2018-07-13 Thread Manuel Rüger
commit: d857a358a0fb031f71038ac7834d6a73642babf2
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 10:09:52 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 10:15:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d857a358

app-metrics/alertmanager: Version bump to 0.15.1

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 app-metrics/alertmanager/Manifest  |  1 +
 .../alertmanager/alertmanager-0.15.1.ebuild| 52 ++
 2 files changed, 53 insertions(+)

diff --git a/app-metrics/alertmanager/Manifest 
b/app-metrics/alertmanager/Manifest
index 36b563ab3f8..43906b4d938 100644
--- a/app-metrics/alertmanager/Manifest
+++ b/app-metrics/alertmanager/Manifest
@@ -1,3 +1,4 @@
 DIST alertmanager-0.14.0.tar.gz 2786623 BLAKE2B 
e9c773af81153b3062d27464c6b8d1edcafe66575b8d5a6309b162c6546d3dedf7ae5b1afcf4dafb3dfdb6bcf826aeb9119b27cfe596da365a6272ee71b30441
 SHA512 
e352d51d86b853ff679892df3c494da2c7b4afb918d807e6d63b76e959b586f43a4c773de18bdd9e6a5067d4034748bb304ebdee2f08983b00890c1ae393d0b8
 DIST alertmanager-0.15.0.tar.gz 2755787 BLAKE2B 
3c13f31c87605d7ff1e90ed8734c5415aa8ee3f9d5ba2713bd8ea8d6d56b013d70e60e3571714b4b423c82c139cb784eff146339a62e2e302c92e7e045d8b977
 SHA512 
df3b5146c333227ce463b7eed318c30e5c5192ed1728acd3e8664cab85be18b3c430d776063a4101611cdbb08be36f4a04cef9f9d8e053f4db443ea2dcab5853
 DIST alertmanager-0.15.0_rc3.tar.gz 2755833 BLAKE2B 
60f17b61ad3ba518064b2999f2fab05d53fdf55c5b787314efbad0e427166442b76017951d3ca7bf2c886328d01713eeca7a36f975dad30d9fb19c0c176e1b5e
 SHA512 
73370f18ba085e8b6701400d88983a849eb53734b14b187e56aacd89a57cf4e236332906add1f6ee8c3eaada0284b62d7a9b4174a888c694d48b8ecd120c186d
+DIST alertmanager-0.15.1.tar.gz 2756389 BLAKE2B 
8da152f3edc856ea12025e08b108b47501d95a278e621198712831cc3b105085f4b6b0073c184314b2cc4b291c6d27d6fecf35d5c423476a92ed35f63fe66ede
 SHA512 
b71c59fb1fb745e0d1aac39617cd208b778d215db9d4c72703f5d88a6f293451b63f941dab1c86a8a2257657aa1d9a243044711724e3bfcc66e64db36f473c6b

diff --git a/app-metrics/alertmanager/alertmanager-0.15.1.ebuild 
b/app-metrics/alertmanager/alertmanager-0.15.1.ebuild
new file mode 100644
index 000..0cdd5f83df8
--- /dev/null
+++ b/app-metrics/alertmanager/alertmanager-0.15.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2018 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/alertmanager"
+EGIT_COMMIT="v${PV/_rc/-rc.}"
+ALERTMANAGER_COMMIT="8397de1"
+ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Alertmanager for alerts sent by client applications such as 
Prometheus"
+HOMEPAGE="https://github.com/prometheus/alertmanager";
+SRC_URI="${ARCHIVE_URI}"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="dev-util/promu"
+
+RESTRICT="test"
+
+pkg_setup() {
+   enewgroup ${PN}
+   enewuser ${PN} -1 -1 -1 ${PN}
+}
+
+src_prepare() {
+   default
+   sed -i -e "s/{{.Revision}}/${ALERTMANAGER_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
+}
+
+src_compile() {
+   pushd src/${EGO_PN} || die
+   mkdir -p bin || die
+   GOPATH="${S}" promu build -v --prefix bin || die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin bin/*
+   dodoc {README,CHANGELOG,CONTRIBUTING}.md
+   insinto /etc/alertmanager/
+   newins doc/examples/simple.yml config.yml.example
+   popd || die
+   keepdir /var/lib/alertmanager /var/log/alertmanager
+   fowners ${PN}:${PN} /var/lib/alertmanager /var/log/alertmanager
+   newinitd "${FILESDIR}"/${PN}.initd ${PN}
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+}



[gentoo-commits] repo/gentoo:master commit in: app-metrics/alertmanager/

2018-07-13 Thread Manuel Rüger
commit: 5a6719cd0ca31c1852fbfb98fcd918cd4dca470e
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 10:10:12 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 10:15:04 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a6719cd

app-metrics/alertmanager: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 app-metrics/alertmanager/Manifest  |  1 -
 .../alertmanager/alertmanager-0.15.0_rc3.ebuild| 52 --
 2 files changed, 53 deletions(-)

diff --git a/app-metrics/alertmanager/Manifest 
b/app-metrics/alertmanager/Manifest
index 43906b4d938..12e5845cfc2 100644
--- a/app-metrics/alertmanager/Manifest
+++ b/app-metrics/alertmanager/Manifest
@@ -1,4 +1,3 @@
 DIST alertmanager-0.14.0.tar.gz 2786623 BLAKE2B 
e9c773af81153b3062d27464c6b8d1edcafe66575b8d5a6309b162c6546d3dedf7ae5b1afcf4dafb3dfdb6bcf826aeb9119b27cfe596da365a6272ee71b30441
 SHA512 
e352d51d86b853ff679892df3c494da2c7b4afb918d807e6d63b76e959b586f43a4c773de18bdd9e6a5067d4034748bb304ebdee2f08983b00890c1ae393d0b8
 DIST alertmanager-0.15.0.tar.gz 2755787 BLAKE2B 
3c13f31c87605d7ff1e90ed8734c5415aa8ee3f9d5ba2713bd8ea8d6d56b013d70e60e3571714b4b423c82c139cb784eff146339a62e2e302c92e7e045d8b977
 SHA512 
df3b5146c333227ce463b7eed318c30e5c5192ed1728acd3e8664cab85be18b3c430d776063a4101611cdbb08be36f4a04cef9f9d8e053f4db443ea2dcab5853
-DIST alertmanager-0.15.0_rc3.tar.gz 2755833 BLAKE2B 
60f17b61ad3ba518064b2999f2fab05d53fdf55c5b787314efbad0e427166442b76017951d3ca7bf2c886328d01713eeca7a36f975dad30d9fb19c0c176e1b5e
 SHA512 
73370f18ba085e8b6701400d88983a849eb53734b14b187e56aacd89a57cf4e236332906add1f6ee8c3eaada0284b62d7a9b4174a888c694d48b8ecd120c186d
 DIST alertmanager-0.15.1.tar.gz 2756389 BLAKE2B 
8da152f3edc856ea12025e08b108b47501d95a278e621198712831cc3b105085f4b6b0073c184314b2cc4b291c6d27d6fecf35d5c423476a92ed35f63fe66ede
 SHA512 
b71c59fb1fb745e0d1aac39617cd208b778d215db9d4c72703f5d88a6f293451b63f941dab1c86a8a2257657aa1d9a243044711724e3bfcc66e64db36f473c6b

diff --git a/app-metrics/alertmanager/alertmanager-0.15.0_rc3.ebuild 
b/app-metrics/alertmanager/alertmanager-0.15.0_rc3.ebuild
deleted file mode 100644
index ce37eebba0d..000
--- a/app-metrics/alertmanager/alertmanager-0.15.0_rc3.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2018 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/alertmanager"
-EGIT_COMMIT="v${PV/_rc/-rc.}"
-ALERTMANAGER_COMMIT="5e86f61"
-ARCHIVE_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-DESCRIPTION="Alertmanager for alerts sent by client applications such as 
Prometheus"
-HOMEPAGE="https://github.com/prometheus/alertmanager";
-SRC_URI="${ARCHIVE_URI}"
-LICENSE="Apache-2.0"
-SLOT="0"
-IUSE=""
-
-DEPEND="dev-util/promu"
-
-RESTRICT="test"
-
-pkg_setup() {
-   enewgroup ${PN}
-   enewuser ${PN} -1 -1 -1 ${PN}
-}
-
-src_prepare() {
-   default
-   sed -i -e "s/{{.Revision}}/${ALERTMANAGER_COMMIT}/" 
src/${EGO_PN}/.promu.yml || die
-}
-
-src_compile() {
-   pushd src/${EGO_PN} || die
-   mkdir -p bin || die
-   GOPATH="${S}" promu build -v --prefix bin || die
-   popd || die
-}
-
-src_install() {
-   pushd src/${EGO_PN} || die
-   dobin bin/*
-   dodoc {README,CHANGELOG,CONTRIBUTING}.md
-   insinto /etc/alertmanager/
-   newins doc/examples/simple.yml config.yml.example
-   popd || die
-   keepdir /var/lib/alertmanager /var/log/alertmanager
-   fowners ${PN}:${PN} /var/lib/alertmanager /var/log/alertmanager
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-}



[gentoo-commits] repo/gentoo:master commit in: app-metrics/prometheus/

2018-07-13 Thread Manuel Rüger
commit: 8c1e6f02a80373d682ccf521cdec87e299d10a0f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 10:14:06 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 10:15:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c1e6f02

app-metrics/prometheus: Version bump to 2.3.2

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 app-metrics/prometheus/Manifest|  1 +
 app-metrics/prometheus/prometheus-2.3.2.ebuild | 70 ++
 2 files changed, 71 insertions(+)

diff --git a/app-metrics/prometheus/Manifest b/app-metrics/prometheus/Manifest
index 0098660da2b..ed36134b289 100644
--- a/app-metrics/prometheus/Manifest
+++ b/app-metrics/prometheus/Manifest
@@ -1,3 +1,4 @@
 DIST prometheus-2.2.1.tar.gz 5629500 BLAKE2B 
7645267a2c5ed1c4138a5dd3929a48cb9dfa27789db38e98addbb06c37c6b482abfcf296ef1a5836bebd971d8224136c24a4ccd3093175882bb0beda1673deff
 SHA512 
a94cf867de2b3be65b0a07307f89ebfa9c0a319820a72b3b6691edcd2e2b56b5268d27fb52bdaefea0e7084906d69b818e5292a39ccd5991e04e56d594f56ea7
 DIST prometheus-2.3.0.tar.gz 6171790 BLAKE2B 
bf08aaa124925a6fa1f610117919b5d4d15f4f4a71ff1bed1edca588b7cd4a14483a7ecbf3b3aaf5bfabe968290732b9fe3da522f726b673e0b910d2be3ead3e
 SHA512 
2ab2bc2cc7c9bd9cafa16f54e24845b2e5c4b923bbc200ad9efae985b56587752892a364f08673e34278e6f8ad0b477482eec56632b281212af13a9110940aca
 DIST prometheus-2.3.1.tar.gz 6175030 BLAKE2B 
395808ce10eee18469a34caa7a358325830717cce7199f4cd3e6da346326573e65695cd444ad1c37586f9744db51808ef78f4a50fac971fa0fbc7fd7a4089994
 SHA512 
f0930a8de3885f9d870d41b41b602cd19addaa362d0473c95723b6cff32fd28870f8d47c89b9d39e13f43e189ad991d7569baa1a6ecd1ca59ba85cbb3d3cd6b1
+DIST prometheus-2.3.2.tar.gz 6175804 BLAKE2B 
98d7fe58043e5104b6eb181edd13a2aec3c347ae6d0325f08a267b02eef3bd8963603fb17c113244b47967a549ebe860f2a3f11e297ceca85b57495df7f19070
 SHA512 
35bd654f3326d36846654775e924821de9efc7b39c93d5ffc5e8f4db6feb456cf3b8833de3aa3df9d9f63481c487f2633b55b9610cef4e7a037f2a9b1ffbbd23

diff --git a/app-metrics/prometheus/prometheus-2.3.2.ebuild 
b/app-metrics/prometheus/prometheus-2.3.2.ebuild
new file mode 100644
index 000..1bb29b3310b
--- /dev/null
+++ b/app-metrics/prometheus/prometheus-2.3.2.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2018 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"
+MY_PV=${PV/_rc/-rc.}
+EGIT_COMMIT="v${MY_PV}"
+PROMETHEUS_COMMIT="71af5e2"
+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.10
+   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-3.initd prometheus
+   newconfd "${FILESDIR}"/prometheus.confd prometheus
+   keepdir /var/log/prometheus /var/lib/prometheus
+   fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
+}
+
+pkg_postinst() {
+   if has_version '

[gentoo-commits] repo/gentoo:master commit in: app-metrics/prometheus/

2018-07-13 Thread Manuel Rüger
commit: caed58620fb9cfb4d48008326b20180e4f10ee01
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 10:16:00 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 10:16:00 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=caed5862

app-metrics/prometheus: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 app-metrics/prometheus/Manifest|  1 -
 app-metrics/prometheus/prometheus-2.3.0.ebuild | 70 --
 2 files changed, 71 deletions(-)

diff --git a/app-metrics/prometheus/Manifest b/app-metrics/prometheus/Manifest
index ed36134b289..79a3f861bf0 100644
--- a/app-metrics/prometheus/Manifest
+++ b/app-metrics/prometheus/Manifest
@@ -1,4 +1,3 @@
 DIST prometheus-2.2.1.tar.gz 5629500 BLAKE2B 
7645267a2c5ed1c4138a5dd3929a48cb9dfa27789db38e98addbb06c37c6b482abfcf296ef1a5836bebd971d8224136c24a4ccd3093175882bb0beda1673deff
 SHA512 
a94cf867de2b3be65b0a07307f89ebfa9c0a319820a72b3b6691edcd2e2b56b5268d27fb52bdaefea0e7084906d69b818e5292a39ccd5991e04e56d594f56ea7
-DIST prometheus-2.3.0.tar.gz 6171790 BLAKE2B 
bf08aaa124925a6fa1f610117919b5d4d15f4f4a71ff1bed1edca588b7cd4a14483a7ecbf3b3aaf5bfabe968290732b9fe3da522f726b673e0b910d2be3ead3e
 SHA512 
2ab2bc2cc7c9bd9cafa16f54e24845b2e5c4b923bbc200ad9efae985b56587752892a364f08673e34278e6f8ad0b477482eec56632b281212af13a9110940aca
 DIST prometheus-2.3.1.tar.gz 6175030 BLAKE2B 
395808ce10eee18469a34caa7a358325830717cce7199f4cd3e6da346326573e65695cd444ad1c37586f9744db51808ef78f4a50fac971fa0fbc7fd7a4089994
 SHA512 
f0930a8de3885f9d870d41b41b602cd19addaa362d0473c95723b6cff32fd28870f8d47c89b9d39e13f43e189ad991d7569baa1a6ecd1ca59ba85cbb3d3cd6b1
 DIST prometheus-2.3.2.tar.gz 6175804 BLAKE2B 
98d7fe58043e5104b6eb181edd13a2aec3c347ae6d0325f08a267b02eef3bd8963603fb17c113244b47967a549ebe860f2a3f11e297ceca85b57495df7f19070
 SHA512 
35bd654f3326d36846654775e924821de9efc7b39c93d5ffc5e8f4db6feb456cf3b8833de3aa3df9d9f63481c487f2633b55b9610cef4e7a037f2a9b1ffbbd23

diff --git a/app-metrics/prometheus/prometheus-2.3.0.ebuild 
b/app-metrics/prometheus/prometheus-2.3.0.ebuild
deleted file mode 100644
index f437abf471a..000
--- a/app-metrics/prometheus/prometheus-2.3.0.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2018 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"
-MY_PV=${PV/_rc/-rc.}
-EGIT_COMMIT="v${MY_PV}"
-PROMETHEUS_COMMIT="290d717"
-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.10
-   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-3.initd prometheus
-   newconfd "${FILESDIR}"/prometheus.confd prometheus
-   keepdir /var/log/prometheus /var/lib/prometheus
-   fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
-}
-
-pkg_postinst() {
-   if has_version '

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

2018-07-13 Thread Michael Palimaka
commit: d8bbca1976d5e10ca33ba4a12b0338bee259ca5d
Author: Michael Palimaka  gentoo  org>
AuthorDate: Fri Jul 13 10:29:48 2018 +
Commit: Michael Palimaka  gentoo  org>
CommitDate: Fri Jul 13 10:30:14 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8bbca19

dev-qt/qtchooser: remove 0_p20151008

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-qt/qtchooser/Manifest |  1 -
 dev-qt/qtchooser/qtchooser-0_p20151008.ebuild | 74 ---
 2 files changed, 75 deletions(-)

diff --git a/dev-qt/qtchooser/Manifest b/dev-qt/qtchooser/Manifest
index 2ec7c2c97ff..74d868c8889 100644
--- a/dev-qt/qtchooser/Manifest
+++ b/dev-qt/qtchooser/Manifest
@@ -1,2 +1 @@
-DIST qtchooser-0_p20151008.tar.xz 31308 BLAKE2B 
47059c8e4059183d2be59ace4c102a68d903d4556999a64ccbfd8b08f4b9ebfa06297987593565a21a7c583b146577bc3ed44ce516537f04fe386ef1424de3c0
 SHA512 
d6fd56e839b7ce7abbd42300d76d06d67fabb5ca36a6f6a39493b7770599372c4795a90cafeea8cceff8da7ea7f6639d74f76a8241a808364a41905fa3d084c6
 DIST qtchooser-0_p20170803.tar.xz 32012 BLAKE2B 
a0363ccebfd17c2ad514afbaf7ea80456826a42b88badff3a2ff4259745721f336a1b034f4a51831832f5b2dcd042c7c010c47e0f17b77ecacc5520f0c6f8d53
 SHA512 
320d898617ad52392fe24834e99ace685dac84e3a7edb1f6e6358baadb6658a51b02ae1af465ef5e081485a002c787c6884b6e1637ffd0406767fe7555fc32a7

diff --git a/dev-qt/qtchooser/qtchooser-0_p20151008.ebuild 
b/dev-qt/qtchooser/qtchooser-0_p20151008.ebuild
deleted file mode 100644
index 3dab7213812..000
--- a/dev-qt/qtchooser/qtchooser-0_p20151008.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-inherit qmake-utils toolchain-funcs
-
-DESCRIPTION="Qt4/Qt5 version chooser"
-HOMEPAGE="https://code.qt.io/cgit/qtsdk/qtchooser.git/";
-SRC_URI="https://dev.gentoo.org/~pesa/distfiles/${P}.tar.xz";
-
-LICENSE="|| ( LGPL-2.1 GPL-3 )"
-SLOT="0"
-KEYWORDS="alpha amd64 arm ~arm64 ~hppa ia64 ~mips ppc ppc64 sparc x86 
~amd64-fbsd ~x86-fbsd"
-IUSE="test"
-
-DEPEND="test? (
-   dev-qt/qtcore:5
-   dev-qt/qttest:5
-   )"
-RDEPEND="
-   !/dev/null || die
-   eqmake5
-   popd >/dev/null || die
-
-   qtchooser_make check
-}
-
-src_install() {
-   qtchooser_make INSTALL_ROOT="${D}" install
-
-   keepdir /etc/xdg/qtchooser
-
-   # TODO: bash and zsh completion
-   # newbashcomp scripts/${PN}.bash ${PN}
-}



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

2018-07-13 Thread Tony Vroon
commit: 7a461b76c112bf52f928d75ecf7279759b7c9900
Author: Tony Vroon  gentoo  org>
AuthorDate: Fri Jul 13 10:23:09 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 10:33:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a461b76

sci-libs/dlib: Version bump to 19.9

>From donat-b on GitHub, with thanks.
Apologies for strange commit style, this is due to GitHub tooling issues.
Have had to pull the raw files out as the diff is broken. Somehow.

Closes: https://github.com/gentoo/gentoo/pull/7207
Package-Manager: Portage-2.3.40, Repoman-2.3.9

 sci-libs/dlib/Manifest |  1 +
 sci-libs/dlib/dlib-19.9.ebuild | 75 ++
 sci-libs/dlib/metadata.xml |  1 +
 3 files changed, 77 insertions(+)

diff --git a/sci-libs/dlib/Manifest b/sci-libs/dlib/Manifest
index 326d98722fb..e29ea272a5f 100644
--- a/sci-libs/dlib/Manifest
+++ b/sci-libs/dlib/Manifest
@@ -1,2 +1,3 @@
 DIST dlib-19.4.tar.gz 7226923 BLAKE2B 
2d72936fc46d559a80288e7f88a64c372fb5f8dcfc69b57abee8a27519f3084fa0cf4193261dd9758f9eb718e755d46a17655e38cb74aaa0046855f11676e157
 SHA512 
23bf80353f9b6ce07b6a3a7df05016705645c18bcf2b3ead567935008ea12c9f6dc0722d9bbacc009bd26f78eb43c1cbecf776bfed5a3445c1f2e8e208f201e2
 DIST dlib-19.7.tar.gz 7670615 BLAKE2B 
13343f3b99bf5dd7a9c032de09eff47f1675bbc978a93edfbd952196b2347e4a887a8eed805f22985477b10ecfa1df85fc568e32f1a00b17b0292a0a51db9764
 SHA512 
a3877066e04a411d96e910f4229c60a86971a9290e840aa4a5b2f0b102e9b8c37bfede259b80b71ba066d21eb0aa2565808e51d0eab6397ff5fd2bac60dcedd5
+DIST dlib-19.9.tar.gz 8892457 BLAKE2B 
d18548e09f8169bbc9d7f339599bd58b940410839b259a8d7be9cb999f82e634ad5cd0539adb45239dab821ea1029493d24ae9990ca32c75c744e2c5d9e218f6
 SHA512 
1e2123c22e1b13cc84108fa627bfa92eadc9dee63f93a9f45676bbf2b752c8728117d915ac327f5223b0cdbce87dd3bef2f4d8d5ed3f8f5a314ffa9e8962a246

diff --git a/sci-libs/dlib/dlib-19.9.ebuild b/sci-libs/dlib/dlib-19.9.ebuild
new file mode 100644
index 000..82d750cd9a8
--- /dev/null
+++ b/sci-libs/dlib/dlib-19.9.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+PYTHON_COMPAT=( python{3_4,3_5,3_6} )
+inherit python-r1 cmake-utils cuda
+
+DESCRIPTION="Numerical and networking C++ library"
+HOMEPAGE="http://dlib.net/";
+SRC_URI="https://github.com/davisking/dlib/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Boost-1.0"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="cblas debug cuda examples gif jpeg lapack mkl png python sqlite 
static-libs test X"
+
+# doc needs a bunch of deps not in portage
+
+RDEPEND="
+   cblas? ( virtual/cblas:= )
+   cuda? ( dev-libs/cudnn:= )
+   jpeg? ( virtual/jpeg:0= )
+   lapack? ( virtual/lapack:= )
+   mkl? ( sci-libs/mkl:= )
+   png? ( media-libs/libpng:0= )
+   python? ( ${PYTHON_DEPS} )
+   sqlite? ( dev-db/sqlite:3= )
+   X? ( x11-libs/libX11:= )
+"
+DEPEND="test? ( ${RDEPEND} )"
+
+src_prepare() {
+   use cuda && cuda_src_prepare
+   cmake-utils_src_prepare
+   sed -i -e '/LICENSE.txt/d' dlib/CMakeLists.txt || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DLIB_INSTALL_DIR="$(get_libdir)"
+   -DDLIB_ENABLE_ASSERTS="$(usex debug)"
+   -DDLIB_ENABLE_STACK_TRACE="$(usex debug)"
+   -DDLIB_GIF_SUPPORT="$(usex gif)"
+   -DDLIB_JPEG_SUPPORT="$(usex jpeg)"
+   -DDLIB_PNG_SUPPORT="$(usex png)"
+   -DDLIB_LINK_WITH_SQLITE3="$(usex sqlite)"
+   -DDLIB_NO_GUI_SUPPORT="$(usex X OFF ON)"
+   -DDLIB_USE_BLAS="$(usex cblas)"
+   -DDLIB_USE_CUDA="$(usex cuda)"
+   -DDLIB_USE_LAPACK="$(usex lapack)"
+   -DBOOST_LIBRARYDIR="${EPREFIX}/usr/$(get_libdir)"
+   )
+   cmake-utils_src_configure
+}
+
+src_test() {
+   mkdir "${BUILD_DIR}"/dlib/test || die
+   pushd "${BUILD_DIR}"/dlib/test > /dev/null || die
+   cmake "${S}"/dlib/test && emake
+   ./dtest --runall || die
+   popd > /dev/null || die
+}
+
+src_install() {
+   cmake-utils_src_install
+   if use python; then
+   python_foreach_impl python_domodule ${PN}
+   fi
+   dodoc docs/README.txt
+   use static-libs || rm -f "${ED}"/usr/$(get_libdir)/*.a
+   if use examples; then
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}
+   fi
+}

diff --git a/sci-libs/dlib/metadata.xml b/sci-libs/dlib/metadata.xml
index 422f29c52e5..97d198eb46b 100644
--- a/sci-libs/dlib/metadata.xml
+++ b/sci-libs/dlib/metadata.xml
@@ -15,6 +15,7 @@
 Build with CBLAS virtual/cblas
 Enable support for CUDA for Deep Neural Networks (cuDNN) 
on GPU (experimental)
 Enable support for Intel FFT 
sci-libs/mkl
+Enable support for Python API bindings
   
   
 davisking/dlib



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

2018-07-13 Thread Manuel Rüger
commit: eade93ab02c3727cf22ab698cb660a1d1688303b
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 10:34:32 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 10:34:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eade93ab

dev-python/python-afl: Version bump to 0.7.1

Package-Manager: Portage-2.3.42, Repoman-2.3.9

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

diff --git a/dev-python/python-afl/Manifest b/dev-python/python-afl/Manifest
index 9cc1353d434..730d1b9e587 100644
--- a/dev-python/python-afl/Manifest
+++ b/dev-python/python-afl/Manifest
@@ -1 +1,2 @@
 DIST python-afl-0.6.1.tar.gz 14795 BLAKE2B 
7899ffb9ee2d0afa82a4621d7c26acd3f19f4711480f4d85a60007d7739f3dcac99a787bc7dea33d2b336e117320cef69037a20c54771ead695eae1771f2b7cb
 SHA512 
25662ae96db23560ab0f7df1468f1a4737f8f68853bed75cfcfe6112a6fac110501c66941402f35686d6b96a6d124a2aeeaed79052d618583843528cb3eee3aa
+DIST python-afl-0.7.1.tar.gz 16045 BLAKE2B 
05d0aba389dcdcc11b6ec789f12f8d282b6d2fa4f1706795832468d92aa1c5e9e1c829ed7e5bfaf77bec011098cf9fe30b67c9ac2ce66c0ad5bd84a6c3037f47
 SHA512 
e0b8d65378d41d8ba654c8b6f3d03822ac18543cb91fb650f35d490c4b72be6b038d1a13341a33cbdde2102ad92a7e533e5c8ade9a9f13d32c78a774d5e7f120

diff --git a/dev-python/python-afl/python-afl-0.7.1.ebuild 
b/dev-python/python-afl/python-afl-0.7.1.ebuild
new file mode 100644
index 000..bf8b847ba19
--- /dev/null
+++ b/dev-python/python-afl/python-afl-0.7.1.ebuild
@@ -0,0 +1,24 @@
+# Copyright 1999-2018 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
+
+DESCRIPTION="Enables American fuzzy lop fork server and instrumentation for 
pure-Python code"
+HOMEPAGE="https://github.com/jwilk/python-afl 
http://jwilk.net/software/python-afl";
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+RDEPEND="app-forensics/afl"
+DEPEND=">=dev-python/cython-0.19[${PYTHON_USEDEP}]
+   test? ( dev-python/nose[${PYTHON_USEDEP}] )"
+
+python_test() {
+   PATH="${PATH}:." nosetests --verbose || die
+}



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

2018-07-13 Thread Tony Vroon
commit: 424ab08f0e139226daea9ac2834555b65544f84f
Author: Martin Mokrejs  gmail  com>
AuthorDate: Sat Apr 21 08:12:23 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 10:43:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=424ab08f

sci-matchematics/glpk: respect EPREFIX

Prepend EPREFIX in front of hardcoded include path.
All modified ebuilds emerged successfully on a Gentoo::RAP host.

Bug: https://bugs.gentoo.org/597620
Closes: https://github.com/gentoo/gentoo/pull/7238

 sci-mathematics/glpk/glpk-4.63.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sci-mathematics/glpk/glpk-4.63.ebuild 
b/sci-mathematics/glpk/glpk-4.63.ebuild
index 4721b183285..b32475f03a7 100644
--- a/sci-mathematics/glpk/glpk-4.63.ebuild
+++ b/sci-mathematics/glpk/glpk-4.63.ebuild
@@ -29,6 +29,7 @@ PATCHES=(
 )
 
 src_prepare() {
+   sed -e 
's#CPPFLAGS="-I/usr/include/mysql#CPPFLAGS="-I'"${EPREFIX}"'/usr/include/mysql#'
 -i configure.ac || die
use odbc && [[ -z $(type -P odbc_config) ]] && \
append-cppflags $($(tc-getPKG_CONFIG) --cflags libiodbc)
 



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

2018-07-13 Thread Tony Vroon
commit: 7a85d7f458cced1581f02419ccd3afd44c9d5eec
Author: Nikos Chantziaras  gmail  com>
AuthorDate: Thu Jul 12 23:50:26 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 10:49:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a85d7f4

profiles: Cancel games-engines/gargoyle last-rites as build issue is fixed

Package-Manager: Portage-2.3.42, Repoman-2.3.9

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 63f840ff274..b38fe7e62b5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -291,10 +291,6 @@ games-strategy/gorky17-demo
 # a month
 net-vpn/miredo
 
-# Pacho Ramos  (17 Jun 2018)
-# Fails to build (#642996). Removal in a month.
-games-engines/gargoyle
-
 # Pacho Ramos  (17 Jun 2018)
 # Fails to compile (#648430), crashes from time to time (#222065). Removal
 # in a month.



[gentoo-commits] repo/gentoo:master commit in: games-engines/gargoyle/

2018-07-13 Thread Tony Vroon
commit: 052aafb60214cbf224df6ae71dd16eec51f7dffc
Author: Nikos Chantziaras  gmail  com>
AuthorDate: Wed Jul  4 17:03:20 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 10:49:16 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=052aafb6

games-engines/gargoyle: fix build on recent GCC, ebuild improvements

Bumped EAPI, removed the use of games.eclass, fixed a runtime error due
to a no longer needed sed, create relative instead of absolute symlinks.
Revbump due to a file location change.

Closes: https://bugs.gentoo.org/642996
Package-Manager: Portage-2.3.42, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9052
Closes: https://bugs.gentoo.org/642996

 ...yle-2011.1.ebuild => gargoyle-2011.1-r1.ebuild} | 35 ++
 1 file changed, 15 insertions(+), 20 deletions(-)

diff --git a/games-engines/gargoyle/gargoyle-2011.1.ebuild 
b/games-engines/gargoyle/gargoyle-2011.1-r1.ebuild
similarity index 78%
rename from games-engines/gargoyle/gargoyle-2011.1.ebuild
rename to games-engines/gargoyle/gargoyle-2011.1-r1.ebuild
index 640adac5fa7..82e11b23782 100644
--- a/games-engines/gargoyle/gargoyle-2011.1.ebuild
+++ b/games-engines/gargoyle/gargoyle-2011.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2016 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 # Regarding licenses: libgarglk is licensed under the GPLv2. Bundled
@@ -8,8 +8,8 @@
 # Since we don't compile or install any of the bundled fonts, their licenses
 # don't apply. (Fonts are installed through dependencies instead.)
 
-EAPI=5
-inherit eutils flag-o-matic multiprocessing toolchain-funcs gnome2-utils games
+EAPI=6
+inherit eutils flag-o-matic gnome2-utils multilib multiprocessing 
toolchain-funcs
 
 DESCRIPTION="An Interactive Fiction (IF) player supporting all major formats"
 HOMEPAGE="http://ccxvii.net/gargoyle/";
@@ -21,7 +21,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="
-   >=media-fonts/libertine-5
+   media-fonts/libertine
media-fonts/liberation-fonts
media-libs/freetype:2
media-libs/libpng:0
@@ -52,11 +52,10 @@ src_prepare() {
# Convert garglk.ini to UNIX format.
edos2unix garglk/garglk.ini
 
-   # The font name of Linux Libertine changed in version 5.
-   sed -i -e 's/Linux Libertine O/Linux Libertine/g' garglk/garglk.ini || 
die
-
epatch "${FILESDIR}"/${P}-desktopfile.patch
append-cflags -std=gnu89 # build with gcc5 (bug #573378)
+   append-cxxflags -std=gnu++11 # code assumes C++11 semantics (bug 
#642996)
+   default
 }
 
 src_compile() {
@@ -69,7 +68,7 @@ src_compile() {
-sC++="$(tc-getCXX) ${CXXFLAGS}" \
-sCXX="$(tc-getCXX) ${CXXFLAGS}" \
-sC++FLAGS="" \
-   -sGARGLKINI="${GAMES_SYSCONFDIR}/garglk.ini" \
+   -sGARGLKINI="/etc/garglk.ini" \
-sUSESDL=yes \
-sBUNDLEFONTS=no \
-dx \
@@ -78,15 +77,15 @@ src_compile() {
 
 src_install() {
DESTDIR="${D}" \
-   _BINDIR="${GAMES_PREFIX}/libexec/${PN}" \
-   _APPDIR="${GAMES_PREFIX}/libexec/${PN}" \
-   _LIBDIR="$(games_get_libdir)" \
+   _BINDIR="/usr/libexec/${PN}" \
+   _APPDIR="/usr/libexec/${PN}" \
+   _LIBDIR="/usr/$(get_libdir)" \
EXEMODE=755 \
FILEMODE=755 \
jam install || die
 
# Install config file.
-   insinto "${GAMES_SYSCONFDIR}"
+   insinto "/etc"
newins garglk/garglk.ini garglk.ini
 
# Install application entry and icon.
@@ -97,24 +96,20 @@ src_install() {
for terp in advsys agility alan2 alan3 frotz geas git glulxe hugo jacl \
level9 magnetic nitfol scare tadsr
do
-   dosym "${GAMES_PREFIX}/libexec/${PN}/${terp}" \
-   "${GAMES_BINDIR}/${PN}-${terp}"
+   dosym "../libexec/${PN}/${terp}" \
+   "/usr/bin/${PN}-${terp}"
done
 
# Also symlink the main binary since it resides in libexec.
-   dosym "${GAMES_PREFIX}/libexec/${PN}/${PN}" \
-   "${GAMES_BINDIR}/${PN}"
-
-   prepgamesdirs
+   dosym "../libexec/${PN}/${PN}" \
+   "/usr/bin/${PN}"
 }
 
 pkg_preinst() {
-   games_pkg_preinst
gnome2_icon_savelist
 }
 
 pkg_postinst() {
-   games_pkg_postinst
gnome2_icon_cache_update
 }
 



[gentoo-commits] repo/gentoo:master commit in: mail-mta/protonmail-bridge-bin/

2018-07-13 Thread Tony Vroon
commit: 2784b9e5903ce8e272cff6543c6d2d5fdf363b66
Author: Lucian Poston  pm  me>
AuthorDate: Thu Jul 12 12:12:28 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 10:56:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2784b9e5

mail-mta/protonmail-bridge-bin: Bump 1.0.5

Fix preserve-libs issues: https://bugs.gentoo.org/660366

Closes: https://bugs.gentoo.org/660366

Package-Manager: Portage-2.3.40, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9201
Closes: https://bugs.gentoo.org/660366

 mail-mta/protonmail-bridge-bin/Manifest|   2 +-
 .../protonmail-bridge-bin-1.0.4.ebuild |  42 -
 .../protonmail-bridge-bin-1.0.5.ebuild | 188 +
 3 files changed, 189 insertions(+), 43 deletions(-)

diff --git a/mail-mta/protonmail-bridge-bin/Manifest 
b/mail-mta/protonmail-bridge-bin/Manifest
index 2209f0bab9d..1103b7d9c70 100644
--- a/mail-mta/protonmail-bridge-bin/Manifest
+++ b/mail-mta/protonmail-bridge-bin/Manifest
@@ -1 +1 @@
-DIST protonmail-bridge-1.0.4-1.x86_64.rpm 47422421 BLAKE2B 
0846ce606feec1402e606a3b1bbe5c4431f804afc07e24689c77bcc64f211fe756a6890598e79cb6f6169a41a20158f7685b8d26a10fb91926abc77a5681ae20
 SHA512 
6d366ac02dec8ae3fa2bf188eff7cdaf6155c30386c76d29771362b573b3f3abc0e26df837955cb5f56d51ed1cd1b0b603911886478b5cfc7a750b2ee0077538
+DIST protonmail-bridge-1.0.5-1.x86_64.rpm 46864229 BLAKE2B 
bfd35880dd172dd4fc2352f28f9dc9e57049a114b15fbcc2f462c286e005276ac78b14ea2eab074f5e767aa39f6d58138d06118b8f5618d38e3aa977ceb7a725
 SHA512 
11a9230dd6ba9655b172a84529ea32852fe237e5174948aa711d9afe44fb3db3d29175933aa1f4dfffaf06207e6d38b815a0cce1f9d23e116a7cf9895f64

diff --git a/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.0.4.ebuild 
b/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.0.4.ebuild
deleted file mode 100644
index b00b93b2007..000
--- a/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.0.4.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit rpm
-
-DESCRIPTION="Serves ProtonMail to IMAP/SMTP clients"
-HOMEPAGE="https://protonmail.com/bridge/";
-SRC_URI="https://protonmail.com/download/${P/-bin/}-1.x86_64.rpm";
-
-RESTRICT="bindist mirror"
-
-LICENSE="MIT protonmail-bridge-EULA"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE=""
-
-DEPEND=""
-RDEPEND="
-   app-crypt/libsecret
-   dev-libs/glib:2
-   media-sound/pulseaudio
-   virtual/opengl
-"
-
-S="${WORKDIR}"
-
-QA_PREBUILT="*"
-
-src_install() {
-   # Using doins -r would strip executable bits from all binaries
-   cp -pPR "${S}"/usr "${D}"/ || die "Failed to copy files"
-
-   dosym "Desktop-Bridge" "/usr/bin/${PN}" || die
-
-   cat <<-EOF > "${T}/50-${PN}" || die
-   SEARCH_DIRS_MASK="/usr/lib*/protonmail/bridge"
-   EOF
-   insinto /etc/revdep-rebuild
-   doins "${T}/50-${PN}"
-}

diff --git a/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.0.5.ebuild 
b/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.0.5.ebuild
new file mode 100644
index 000..7f63cb22441
--- /dev/null
+++ b/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.0.5.ebuild
@@ -0,0 +1,188 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit rpm
+
+DESCRIPTION="Serves ProtonMail to IMAP/SMTP clients"
+HOMEPAGE="https://protonmail.com/bridge/";
+SRC_URI="https://protonmail.com/download/${P/-bin/}-1.x86_64.rpm";
+
+RESTRICT="bindist mirror"
+
+LICENSE="MIT protonmail-bridge-EULA"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+   app-crypt/libsecret
+   dev-libs/glib:2
+   media-sound/pulseaudio
+   sys-apps/dbus
+   virtual/opengl
+   media-libs/fontconfig
+   media-libs/freetype
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXext
+   x11-libs/libXi
+"
+BDEPEND="dev-util/patchelf"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Bug #660366. To workaround preserving libs, set RUNPATH and rm unused 
libs
+   cd "${S}/usr/lib/protonmail/bridge" || die
+   patchelf --set-rpath '$ORIGIN/lib' Desktop-Bridge || die "patchelf 
failed"
+   patchelf --set-rpath '$ORIGIN' lib/libicui18n.so.56 || die "patchelf 
failed"
+   patchelf --set-rpath '$ORIGIN' lib/libicuuc.so.56 || die "patchelf 
failed"
+
+   rm "lib/libQt53DCore.so.5"
+   rm "lib/libQt53DExtras.so.5"
+   rm "lib/libQt53DInput.so.5"
+   rm "lib/libQt53DLogic.so.5"
+   rm "lib/libQt53DQuick.so.5"
+   rm "lib/libQt53DQuickExtras.so.5"
+   rm "lib/libQt53DQuickInput.so.5"
+   rm "lib/libQt53DQuickRender.so.5"
+   rm "lib/libQt53DRender.so.5"
+   rm "lib/libQt5Concurrent.so.5"
+   rm "lib/libQt5Gamepad.so.5"
+   rm "lib/libQt5Quic

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

2018-07-13 Thread Tony Vroon
commit: 65184af2af342314df8ac61ea7045c80e90c4e9a
Author: Conrad Kostecki  kostecki  com>
AuthorDate: Sat Jul  7 21:55:59 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 11:10:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65184af2

www-apps/phpsysinfo: bump to version 3.2.10

Closes: https://bugs.gentoo.org/613512
Closes: https://bugs.gentoo.org/615054
Closes: https://bugs.gentoo.org/636946
Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9095
Closes: https://bugs.gentoo.org/636946

 www-apps/phpsysinfo/Manifest |  1 +
 www-apps/phpsysinfo/metadata.xml | 25 +++
 www-apps/phpsysinfo/phpsysinfo-3.2.10.ebuild | 48 
 3 files changed, 74 insertions(+)

diff --git a/www-apps/phpsysinfo/Manifest b/www-apps/phpsysinfo/Manifest
index ca5c14cf1a9..e2f5795a371 100644
--- a/www-apps/phpsysinfo/Manifest
+++ b/www-apps/phpsysinfo/Manifest
@@ -1,2 +1,3 @@
+DIST phpsysinfo-3.2.10.tar.gz 1021435 BLAKE2B 
b9db266021c0392902d6de58492165a889151716484d23f99648e8322c7e76edfda17e8a7b8f415fcc42d5970a98603ea84571989c1168e10e8d87ee3a2f6927
 SHA512 
56954e64e6c267c2a60baaf91a9a218d2c81d99dc4f159e35d752328bdd38135eb4e9d91d09798b3822cdbf0d04a6169a46385c2d02a812b136fe115b7310a88
 DIST phpsysinfo-3.2.2.tar.gz 899974 BLAKE2B 
4da569d90a4ee383535a5a155c754a40f104453d504148729fcde03a4ee6839e914dc0375115d392c81225a451a35e3009218c20019abf0661ba629c98377952
 SHA512 
fe1fae67379abf0fb75d166aaab87cb91ead33c87cfbd0569b61d95b9b3172820565dff37f6d35744fbf9332adc5a5af1ec49477a56572f55f57e53edb9164b9
 DIST phpsysinfo-3.2.3.tar.gz 909045 BLAKE2B 
dc1f9d9f7cd83b60eb16f073607f5c7a5f5ad155b297d4defc9b1768c771cd12bd315af3e67f4c7a5f731ef66b8e9eb00da4083074f9cb3908ebbce9198a568c
 SHA512 
33a77d96f3f9ac4e59a078e3106af656f68ec048aa7b89409915373cb4174fff7f709a3a3984cdba2990d397fd019930ae7f24b8fe5484061f3a89dc9f023eaa

diff --git a/www-apps/phpsysinfo/metadata.xml b/www-apps/phpsysinfo/metadata.xml
index 15b8d1f6508..f8482ac659c 100644
--- a/www-apps/phpsysinfo/metadata.xml
+++ b/www-apps/phpsysinfo/metadata.xml
@@ -1,10 +1,35 @@
 
 http://www.gentoo.org/dtd/metadata.dtd";>
 
+   
+   ck+gen...@bl4ckb0x.de
+   Conrad Kostecki
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

web-a...@gentoo.org
Gentoo Webapps

+   
+   Install sys-power/apcupsd to 
display those stats.
+   Install sys-fs/dmraid to display 
those stats.
+   Install sys-libs/freeipmi to 
display those stats.
+   Install app-admin/hddtemp to 
display those stats.
+   Install sys-apps/ipmitool to 
display those stats.
+   Install sys-apps/ipmiutil to 
display those stats.
+   Install net-firewall/iptables 
to display those stats.
+   Install sys-apps/lm_sensors 
to display those stats.
+   Install sys-fs/mdadm to display 
those stats.
+   Install sys-block/megactl to 
display those stats.
+   Install sys-power/nut to display 
those stats.
+   Install sys-fs/quota to display 
those stats.
+   Install sys-apps/smartmontools to 
display those stats.
+   Install net-analyzer/net-snmp to 
display those stats.
+   Install app-misc/uptimed to 
display those stats.
+   

rk4an/phpsysinfo


diff --git a/www-apps/phpsysinfo/phpsysinfo-3.2.10.ebuild 
b/www-apps/phpsysinfo/phpsysinfo-3.2.10.ebuild
new file mode 100644
index 000..9cc1c23ec99
--- /dev/null
+++ b/www-apps/phpsysinfo/phpsysinfo-3.2.10.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit webapp
+
+DESCRIPTION="A customizable PHP script that displays information about your 
system nicely"
+HOMEPAGE="https://rk4an.github.com/phpsysinfo/";
+SRC_URI="https://github.com/rk4an/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~x86"
+IUSE="apcupsd dmraid freeipmi hddtemp ipmitool ipmiutil iptables lm_sensors 
mdadm megactl nut quota smart snmp uptime"
+RDEPEND="dev-lang/php[simplexml,xml,xsl(+),xslt(+),unicode]
+   virtual/httpd-php
+   apcupsd? ( sys-power/apcupsd )
+   dmraid? ( sys-fs/dmraid )
+   freeipmi? ( sys-libs/freeipmi )
+   hddtemp? ( app-admin/hddtemp )
+   ipmitool? ( sys-apps/ipmitool )
+   ipmiutil? ( sys-apps/ipmiutil )
+   iptables? ( net-firewall/iptables )
+   lm_sensors? ( sys-apps/lm_sensors )
+   mdadm? ( sys-fs/mdadm )
+   megactl? ( sys-block/megactl )
+   nut? ( sys-power/nut )
+   quota? ( sys-fs/quota )
+   smart? ( sys-apps/smartmontools )
+   snmp? ( net-analyzer/net-snmp )
+   uptime? ( app-misc/uptimed )"
+
+nee

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

2018-07-13 Thread Tony Vroon
commit: dd77923b4fc5e93da5aba59dd8e261384a8d2041
Author: Marty E. Plummer  startmail  com>
AuthorDate: Sun Jul  8 20:27:31 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 11:16:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd77923b

dev-libs/libpthread-stubs: port to EAPI 7

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 .../libpthread-stubs-0.4-r1.ebuild | 23 ++
 1 file changed, 23 insertions(+)

diff --git a/dev-libs/libpthread-stubs/libpthread-stubs-0.4-r1.ebuild 
b/dev-libs/libpthread-stubs/libpthread-stubs-0.4-r1.ebuild
new file mode 100644
index 000..594762ecbbf
--- /dev/null
+++ b/dev-libs/libpthread-stubs/libpthread-stubs-0.4-r1.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit multilib-minimal
+
+DESCRIPTION="Pthread functions stubs for platforms missing them"
+HOMEPAGE="https://www.x.org/wiki/";
+SRC_URI="https://xcb.freedesktop.org/dist/${P}.tar.bz2";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~ppc-aix ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux 
~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
+IUSE=""
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf
+}
+
+# there is nothing to compile for this package, all its contents are produced 
by
+# configure. the only make job that matters is make install
+multilib_src_compile() { true; }



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

2018-07-13 Thread Tony Vroon
commit: d0bf18ac90ee0cc0eccca63b96a0590a79a04a5d
Author: Marty E. Plummer  startmail  com>
AuthorDate: Sun Jul  8 00:30:43 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 11:16:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0bf18ac

dev-libs/libevdev: add live ebuild

Package-Manager: Portage-2.3.41, Repoman-2.3.9

 dev-libs/libevdev/libevdev-.ebuild | 48 ++
 1 file changed, 48 insertions(+)

diff --git a/dev-libs/libevdev/libevdev-.ebuild 
b/dev-libs/libevdev/libevdev-.ebuild
new file mode 100644
index 000..d551ca6aecf
--- /dev/null
+++ b/dev-libs/libevdev/libevdev-.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit multilib-minimal python-any-r1
+
+DESCRIPTION="Handler library for evdev events"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libevdev/";
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://anongit.freedesktop.org/git/libevdev.git";
+   inherit autotools git-r3
+else
+   SRC_URI="https://www.freedesktop.org/software/libevdev/${P}.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="doc static-libs"
+
+BDEPEND="
+   ${PYTHON_DEPS}
+   doc? ( app-doc/doxygen )
+   virtual/pkgconfig
+"
+RESTRICT="test" # Tests need to run as root.
+
+src_prepare() {
+   default
+   [[ ${PV} == * ]] && eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
+}
+
+multilib_src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+   if use doc ;then
+   local HTML_DOCS=( doc/html/. )
+   einstalldocs
+   fi
+}



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

2018-07-13 Thread Tony Vroon
commit: d6f48757fd057fcde3b6b28a98f00b3879f2d1dc
Author: Marty E. Plummer  startmail  com>
AuthorDate: Sun Jul  8 00:24:27 2018 +
Commit: Tony Vroon  gentoo  org>
CommitDate: Fri Jul 13 11:16:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6f48757

dev-libs/libevdev: port to EAPI 7

Package-Manager: Portage-2.3.41, Repoman-2.3.9
Closes: https://github.com/gentoo/gentoo/pull/9207

 dev-libs/libevdev/libevdev-1.5.9-r1.ebuild | 48 ++
 1 file changed, 48 insertions(+)

diff --git a/dev-libs/libevdev/libevdev-1.5.9-r1.ebuild 
b/dev-libs/libevdev/libevdev-1.5.9-r1.ebuild
new file mode 100644
index 000..d551ca6aecf
--- /dev/null
+++ b/dev-libs/libevdev/libevdev-1.5.9-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} )
+
+inherit multilib-minimal python-any-r1
+
+DESCRIPTION="Handler library for evdev events"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/libevdev/";
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://anongit.freedesktop.org/git/libevdev.git";
+   inherit autotools git-r3
+else
+   SRC_URI="https://www.freedesktop.org/software/libevdev/${P}.tar.xz";
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="doc static-libs"
+
+BDEPEND="
+   ${PYTHON_DEPS}
+   doc? ( app-doc/doxygen )
+   virtual/pkgconfig
+"
+RESTRICT="test" # Tests need to run as root.
+
+src_prepare() {
+   default
+   [[ ${PV} == * ]] && eautoreconf
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE="${S}" econf $(use_enable static-libs static)
+}
+
+multilib_src_install() {
+   default
+   find "${D}" -name '*.la' -delete || die
+   if use doc ;then
+   local HTML_DOCS=( doc/html/. )
+   einstalldocs
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/

2018-07-13 Thread Lars Wendler
commit: 7b5408647f55feacacb049bfef158c877d317d6e
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jul 13 11:22:50 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jul 13 11:24:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b540864

net-print/cups-filters: Bump to version 1.20.4

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 net-print/cups-filters/Manifest | 1 +
 .../{cups-filters-.ebuild => cups-filters-1.20.4.ebuild}| 2 +-
 net-print/cups-filters/cups-filters-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/net-print/cups-filters/Manifest b/net-print/cups-filters/Manifest
index 4d9c4682477..fc3874cf339 100644
--- a/net-print/cups-filters/Manifest
+++ b/net-print/cups-filters/Manifest
@@ -2,3 +2,4 @@ DIST cups-filters-1.17.9.tar.xz 1454068 BLAKE2B 
7c4b1c1a017cbaaf5d413071195ce53e
 DIST cups-filters-1.19.0.tar.xz 1465524 BLAKE2B 
044ab5906f73a9405de55df953c76f7efd09ac4f7800df538c8c3cfd1651de6ed4ea6e3de9378221fef69d983f070b6dcab68dfd2b822fe59aa7f804a8c27907
 SHA512 
4b580734f7bac78c9d48aad7d8bb9e47227134e594fba76b1c82632fd8dd3e885f3897f7efd1a4b56647b74741f452f4e36d0157591c7fd5d626001028903d30
 DIST cups-filters-1.20.2.tar.xz 1468792 BLAKE2B 
75153e659aebf3b987bddac60c850a8b21038263bdb2a2fa2d41295b36b6c35d9244e09efe19e29e19e7a6f1af5adb7be26197890d8a1e642e39b013ee28
 SHA512 
94cc2a452b8dc1ed5f03b98e0530d7489dd5a369413b0ab0e7b054fcb198e8fee283507de2ef836df8ce9fb7f217794737fa4851baba72e5b79e38ad02ee61ea
 DIST cups-filters-1.20.3.tar.xz 1469468 BLAKE2B 
4b76c751264cc87aaa4fed237ad577433ca2c5bb9f23d572466f0d81f3cd7ee4c78eb783269923603010f4edbf246353017e57ccdc75207855de9ae5f0fc5d4b
 SHA512 
402a53bf1ea12b14e6f8aa46f8f5e91b2caf9da3a8f14759568b5a45b9309f379fec542c843da5560cbcec2c4860babfee7e9c2f0c62f5fa6254025e9d867b31
+DIST cups-filters-1.20.4.tar.xz 1474700 BLAKE2B 
70948565e4a2b35d0c3bc510e7c03d77ac1ed47ab16a22bc9f60a7293fe5b5b08fdb1e95dd7a32f4c99a18676e50c48a515a954d437283ce7011ab616804e235
 SHA512 
4001cefbee945c326e3c597869763286e8665dee098b9aff76340dd249ef3e615f2a8df5c8e802e388b91dfd06ba9e8313b27908ca89ca120f899060785a6f07

diff --git a/net-print/cups-filters/cups-filters-.ebuild 
b/net-print/cups-filters/cups-filters-1.20.4.ebuild
similarity index 98%
copy from net-print/cups-filters/cups-filters-.ebuild
copy to net-print/cups-filters/cups-filters-1.20.4.ebuild
index bfed0b638e9..be4ec7dfe0f 100644
--- a/net-print/cups-filters/cups-filters-.ebuild
+++ b/net-print/cups-filters/cups-filters-1.20.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6

diff --git a/net-print/cups-filters/cups-filters-.ebuild 
b/net-print/cups-filters/cups-filters-.ebuild
index bfed0b638e9..be4ec7dfe0f 100644
--- a/net-print/cups-filters/cups-filters-.ebuild
+++ b/net-print/cups-filters/cups-filters-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2018 Gentoo Foundation
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6



[gentoo-commits] repo/gentoo:master commit in: net-print/cups-filters/

2018-07-13 Thread Lars Wendler
commit: 9d51cd6a148c06f938dd5b0db23376b1a67b2543
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jul 13 11:24:10 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jul 13 11:24:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d51cd6a

net-print/cups-filters: Removed old.

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 net-print/cups-filters/Manifest   |   1 -
 net-print/cups-filters/cups-filters-1.20.2.ebuild | 137 --
 2 files changed, 138 deletions(-)

diff --git a/net-print/cups-filters/Manifest b/net-print/cups-filters/Manifest
index fc3874cf339..78d8711607d 100644
--- a/net-print/cups-filters/Manifest
+++ b/net-print/cups-filters/Manifest
@@ -1,5 +1,4 @@
 DIST cups-filters-1.17.9.tar.xz 1454068 BLAKE2B 
7c4b1c1a017cbaaf5d413071195ce53e3088874e55fd98264018f033f0948449b70623adc2c6e136a7441cf4cbef4470811694379bc798aeff81fe3ed80e66ca
 SHA512 
811d2671c660a2129c207d5d8daaa576b027ba14ac4cf4753d0e8c1190866a684e284f1e7439b864aaab332e429befbc13c567bf6c9fc1a502fe2cd7d11e5ed4
 DIST cups-filters-1.19.0.tar.xz 1465524 BLAKE2B 
044ab5906f73a9405de55df953c76f7efd09ac4f7800df538c8c3cfd1651de6ed4ea6e3de9378221fef69d983f070b6dcab68dfd2b822fe59aa7f804a8c27907
 SHA512 
4b580734f7bac78c9d48aad7d8bb9e47227134e594fba76b1c82632fd8dd3e885f3897f7efd1a4b56647b74741f452f4e36d0157591c7fd5d626001028903d30
-DIST cups-filters-1.20.2.tar.xz 1468792 BLAKE2B 
75153e659aebf3b987bddac60c850a8b21038263bdb2a2fa2d41295b36b6c35d9244e09efe19e29e19e7a6f1af5adb7be26197890d8a1e642e39b013ee28
 SHA512 
94cc2a452b8dc1ed5f03b98e0530d7489dd5a369413b0ab0e7b054fcb198e8fee283507de2ef836df8ce9fb7f217794737fa4851baba72e5b79e38ad02ee61ea
 DIST cups-filters-1.20.3.tar.xz 1469468 BLAKE2B 
4b76c751264cc87aaa4fed237ad577433ca2c5bb9f23d572466f0d81f3cd7ee4c78eb783269923603010f4edbf246353017e57ccdc75207855de9ae5f0fc5d4b
 SHA512 
402a53bf1ea12b14e6f8aa46f8f5e91b2caf9da3a8f14759568b5a45b9309f379fec542c843da5560cbcec2c4860babfee7e9c2f0c62f5fa6254025e9d867b31
 DIST cups-filters-1.20.4.tar.xz 1474700 BLAKE2B 
70948565e4a2b35d0c3bc510e7c03d77ac1ed47ab16a22bc9f60a7293fe5b5b08fdb1e95dd7a32f4c99a18676e50c48a515a954d437283ce7011ab616804e235
 SHA512 
4001cefbee945c326e3c597869763286e8665dee098b9aff76340dd249ef3e615f2a8df5c8e802e388b91dfd06ba9e8313b27908ca89ca120f899060785a6f07

diff --git a/net-print/cups-filters/cups-filters-1.20.2.ebuild 
b/net-print/cups-filters/cups-filters-1.20.2.ebuild
deleted file mode 100644
index be4ec7dfe0f..000
--- a/net-print/cups-filters/cups-filters-1.20.2.ebuild
+++ /dev/null
@@ -1,137 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-GENTOO_DEPEND_ON_PERL=no
-
-inherit perl-module systemd flag-o-matic
-
-if [[ "${PV}" == "" ]] ; then
-   inherit bzr autotools
-   EBZR_REPO_URI="http://bzr.linuxfoundation.org/openprinting/cups-filters";
-else
-   SRC_URI="http://www.openprinting.org/download/${PN}/${P}.tar.xz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-fbsd ~m68k-mint"
-fi
-DESCRIPTION="Cups filters"
-HOMEPAGE="https://wiki.linuxfoundation.org/openprinting/cups-filters";
-
-LICENSE="MIT GPL-2"
-SLOT="0"
-IUSE="dbus +foomatic ipp_autosetup jpeg ldap pclm pdf perl png +postscript 
static-libs test tiff zeroconf"
-
-RDEPEND="
-   >=app-text/poppler-0.32:=[cxx,jpeg?,lcms,tiff?,utils]
-   >=app-text/qpdf-3.0.2:=
-   dev-libs/glib:2
-   media-libs/fontconfig
-   media-libs/freetype:2
-   media-libs/lcms:2
-   >=net-print/cups-1.7.3
-   !<=net-print/cups-1.5.
-   sys-devel/bc
-   sys-libs/zlib
-   dbus? ( sys-apps/dbus )
-   foomatic? ( !net-print/foomatic-filters )
-   jpeg? ( virtual/jpeg:0 )
-   ldap? ( net-nds/openldap )
-   pclm? ( >=app-text/qpdf-7.0_beta1 )
-   pdf? ( app-text/mupdf )
-   perl? ( dev-lang/perl:= )
-   png? ( media-libs/libpng:0= )
-   postscript? ( >=app-text/ghostscript-gpl-9.09[cups] )
-   tiff? ( media-libs/tiff:0 )
-   zeroconf? ( net-dns/avahi[dbus] )
-"
-DEPEND="${RDEPEND}
-   dev-util/gdbus-codegen
-   test? ( media-fonts/dejavu )
-"
-
-src_prepare() {
-   default
-   [[ "${PV}" == "" ]] && eautoreconf
-
-   # Bug #626800
-   append-cxxflags -std=c++11
-}
-
-src_configure() {
-   local myeconfargs=(
-   --docdir="${EPREFIX}/usr/share/doc/${PF}"
-   --enable-imagefilters
-   --localstatedir="${EPREFIX}"/var
-   --with-browseremoteprotocols=DNSSD,CUPS
-   --with-cups-rundir="${EPREFIX}"/run/cups
-   --with-fontdir="fonts/conf.avail"
-   --with-pdftops=pdftops
-   --with-rcdir=no
-   --without-php
-   $(use_enable dbus)
-   $(use_enable foomatic)
-   $(use_enable ipp_autosetup auto-setup-driverless)
-   

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

2018-07-13 Thread Lars Wendler
commit: 0df3a35d470dd82598877308ffa8195224262d8b
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jul 13 11:16:45 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jul 13 11:24:24 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df3a35d

sys-apps/pciutils: Bump to versiom 3.6.1

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 sys-apps/pciutils/Manifest  |   1 +
 sys-apps/pciutils/pciutils-3.6.1.ebuild | 120 
 2 files changed, 121 insertions(+)

diff --git a/sys-apps/pciutils/Manifest b/sys-apps/pciutils/Manifest
index cada1bdf19e..cd052f0b3fa 100644
--- a/sys-apps/pciutils/Manifest
+++ b/sys-apps/pciutils/Manifest
@@ -1,3 +1,4 @@
 DIST pciutils-3.4.1.tar.gz 404166 BLAKE2B 
75c50e7b4469fe4fc3719ee3b58f94be98f113ce4cb36be3d3fb8e57aaefef039866d31a6acc90e6136b21883239c1c7db2b497776e0db8ce05f19c6336b55e1
 SHA512 
1394647d5e9d324d68bd8bdf4709a438ae06e6a83ded40b9e0026968c032f214073bc764fbf59e15da90b2e424d90dc430db5810d7ff5fbeab0f3e5c6250ee49
 DIST pciutils-3.5.6.tar.gz 442190 BLAKE2B 
9f1237828436f0566caa13e49a154b40fcc41ddd165268011012e55a33ea401e3b78ddffecc6f0ec36efb24b6d9338a691167ac094d0d26f855e42cd055701bb
 SHA512 
dcdca7e0bce69d1bee1fa5ea480a9f38534d66da576fdc710aefd8eeb0c18bf6ec5b39e63019d29d6bae0ec2d3881f5d07a4a105ca04c320d84c17821f7297e4
 DIST pciutils-3.6.0.tar.gz 454912 BLAKE2B 
1f37307ba21085d5f49dd908781ce34dff98a1e4d818158800a1fbdc1fc689e1b868ee9c762378a8cd28ab17cbaaf1e9255da94c44029bfa2f4a8b5d9fd4b273
 SHA512 
e59cb5685f1dee2673368c90fdf1f5b7689de9fa45f249ce472258f278288da7a81644c76d1ecb7cc857f8029d3d70c367fe62190caf55328143b51017cc5c6f
+DIST pciutils-3.6.1.tar.gz 455061 BLAKE2B 
a9dcce9a79aa66101a77d9299aa7c4f2ae3ab9d7ec597790de7396d65e9c700e4e866b5702412972abbf9ffc2996ebad52782a26d9206cc8d33d96566072fb90
 SHA512 
2a9c86d826932ac6242677bdd0c5288c264b964aa14314aa7eda5379e687822656081883a2a1c5f846037db9bdba616381f84104d0b3b62cd34acf653faf3990

diff --git a/sys-apps/pciutils/pciutils-3.6.1.ebuild 
b/sys-apps/pciutils/pciutils-3.6.1.ebuild
new file mode 100644
index 000..4fa617e1c48
--- /dev/null
+++ b/sys-apps/pciutils/pciutils-3.6.1.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib toolchain-funcs multilib-minimal flag-o-matic
+
+DESCRIPTION="Various utilities dealing with the PCI bus"
+HOMEPAGE="http://mj.ucw.cz/sw/pciutils/ 
https://git.kernel.org/?p=utils/pciutils/pciutils.git";
+SRC_URI="ftp://atrey.karlin.mff.cuni.cz/pub/linux/pci/${P}.tar.gz";
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="dns +kmod static-libs +udev zlib"
+
+# Have the sub-libs in RDEPEND with [static-libs] since, logically,
+# our libpci.a depends on libz.a/etc... at runtime.
+LIB_DEPEND="
+   zlib? ( >=sys-libs/zlib-1.2.8-r1[static-libs(+),${MULTILIB_USEDEP}] )
+   udev? ( >=virtual/libudev-208[static-libs(+),${MULTILIB_USEDEP}] )
+"
+DEPEND="
+   kmod? ( sys-apps/kmod )
+   static-libs? ( ${LIB_DEPEND} )
+   !static-libs? ( ${LIB_DEPEND//static-libs(+),} )
+"
+RDEPEND="
+   ${DEPEND}
+   sys-apps/hwids
+"
+DEPEND="
+   ${DEPEND}
+   kmod? ( virtual/pkgconfig )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-3.1.9-static-pc.patch
+)
+
+MULTILIB_WRAPPED_HEADERS=( /usr/include/pci/config.h )
+
+switch_config() {
+   [[ $# -ne 2 ]] && return 1
+   local opt=$1 val=$2
+
+   sed "s@^\(${opt}=\).*\$@\1${val}@" -i Makefile || die
+   return 0
+}
+
+src_prepare() {
+   default
+
+   if use static-libs ; then
+   cp -pPR "${S}" "${S}.static" || die
+   mv "${S}.static" "${S}/static" || die
+   fi
+
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   append-lfs-flags #471102
+}
+
+pemake() {
+   emake \
+   HOST="${CHOST}" \
+   CROSS_COMPILE="${CHOST}-" \
+   CC="$(tc-getCC)" \
+   AR="$(tc-getAR)" \
+   PKG_CONFIG="$(tc-getPKG_CONFIG)" \
+   RANLIB="$(tc-getRANLIB)" \
+   DNS=$(usex dns) \
+   IDSDIR='$(SHAREDIR)/misc' \
+   MANDIR='$(SHAREDIR)/man' \
+   PREFIX="${EPREFIX}/usr" \
+   SHARED="yes" \
+   STRIP="" \
+   ZLIB=$(usex zlib) \
+   PCI_COMPRESSED_IDS=0 \
+   PCI_IDS=pci.ids \
+   LIBDIR="\${PREFIX}/$(get_libdir)" \
+   LIBKMOD=$(multilib_native_usex kmod) \
+   HWDB=$(usex udev) \
+   "$@"
+}
+
+multilib_src_compile() {
+   pemake OPT="${CFLAGS}" all
+   if use static-libs ; then
+   pemake \
+   -C "${BUILD_DIR}/static" \
+   OPT="${CFLAGS}" \
+   SHARED="n

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

2018-07-13 Thread Mikle Kolyada
commit: 81fcdc17ae9a3685fc2c2914d9683820d5ec59f9
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:12:38 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:12:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81fcdc17

dev-perl/Net-LDAP-Server: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../Net-LDAP-Server/Net-LDAP-Server-0.430.0.ebuild | 25 --
 1 file changed, 25 deletions(-)

diff --git a/dev-perl/Net-LDAP-Server/Net-LDAP-Server-0.430.0.ebuild 
b/dev-perl/Net-LDAP-Server/Net-LDAP-Server-0.430.0.ebuild
deleted file mode 100644
index 15627e0244d..000
--- a/dev-perl/Net-LDAP-Server/Net-LDAP-Server-0.430.0.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-MODULE_AUTHOR=AAR
-MODULE_VERSION=0.43
-inherit perl-module
-
-DESCRIPTION="LDAP server side protocol handling"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-PERL_RM_FILES=(
-   t/02-pod.t
-   t/03-podcoverage.t
-)
-
-# Net::LDAP -> perl-ldap
-RDEPEND="dev-perl/perl-ldap
-   dev-perl/Convert-ASN1"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker"
-
-SRC_TEST="do"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/YAML-Tiny/

2018-07-13 Thread Mikle Kolyada
commit: 174228e33a7c783b244bc67af9064fe258e6c438
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:14:02 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:14:02 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=174228e3

dev-perl/YAML-Tiny: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/YAML-Tiny/Manifest |  1 -
 dev-perl/YAML-Tiny/YAML-Tiny-1.700.0.ebuild | 35 -
 2 files changed, 36 deletions(-)

diff --git a/dev-perl/YAML-Tiny/Manifest b/dev-perl/YAML-Tiny/Manifest
index 3ba4513ac4a..bd29a9bae52 100644
--- a/dev-perl/YAML-Tiny/Manifest
+++ b/dev-perl/YAML-Tiny/Manifest
@@ -1,3 +1,2 @@
 DIST YAML-Tiny-1.69.tar.gz 71513 BLAKE2B 
e765df404b786a3cc22927ca47b1706ceb5e6d2518aaf313342987839c4ab5158b7d4bf4d553f91803b9ed5072efbd580e2e92fd1c6ae0958b851530da0f
 SHA512 
64c3428691f78d94bedf7f3b3276f7868d7280ca6d3c9a7a2e8137568d0da2fc94c766f9873f2796898386d6e7d3d1010c790fcc119f3d4d743becfa39d56a2c
-DIST YAML-Tiny-1.70.tar.gz 72663 BLAKE2B 
38fd70deed477341436693a2da78d3e89e9b9dbc72c2872904e6a806b01987a09d875b416d75b2c68fea006e6823f19351dc630ac64968d0a1924c1a7824b405
 SHA512 
a4d790f8d797170fac819640d23a3ddc62b506ac9467d8922ed2ca8f1abacf5a6ba7604e5312f6539a3c9e4aa8c41ccd91754ca32f74bf8b0d89a9d84e4b4f53
 DIST YAML-Tiny-1.73.tar.gz 73708 BLAKE2B 
42e9c5cffa2b9babb0dd1453af69866405fd7273c2b340ceb010d78d8fe28db61268b6bb5ad1840b1aa72819ae048150bf5c416bed1b2e518b28f77b2ba978be
 SHA512 
5999e220025aa8076e5e0e9e73e80c2da21660e77f6744d73e8e29962221d02d33a36e9829c44abf7d4f45abae069d8e121c8019bd1600b7e64db5e54efd9987

diff --git a/dev-perl/YAML-Tiny/YAML-Tiny-1.700.0.ebuild 
b/dev-perl/YAML-Tiny/YAML-Tiny-1.700.0.ebuild
deleted file mode 100644
index e838a72c918..000
--- a/dev-perl/YAML-Tiny/YAML-Tiny-1.700.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ETHER
-DIST_VERSION=1.70
-inherit perl-module
-
-DESCRIPTION="Read/Write YAML files with as little code as possible"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~m68k ~mips ~ppc ~s390 ~sh ~x86 ~ppc-aix ~x86-fbsd 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~m68k-mint 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test minimal"
-
-RDEPEND="
-   virtual/perl-Carp
-   virtual/perl-Exporter
-   virtual/perl-Scalar-List-Utils
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   !minimal? (
-   >=virtual/perl-CPAN-Meta-2.120.900
-   >=dev-perl/JSON-MaybeXS-1.1.0
-   )
-   >=virtual/perl-File-Spec-0.80.0
-   >=virtual/perl-File-Temp-0.190.0
-   virtual/perl-Getopt-Long
-   virtual/perl-IO
-   virtual/perl-JSON-PP
-   >=virtual/perl-Test-Simple-0.880.0
-   )
-"



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

2018-07-13 Thread Mikle Kolyada
commit: 7b906f54eecd71e07c356d92d9225ae5b6467d4c
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:15:30 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:15:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b906f54

dev-perl/YAML: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/YAML/Manifest|  2 --
 dev-perl/YAML/YAML-1.210.0.ebuild | 27 ---
 dev-perl/YAML/YAML-1.230.0.ebuild | 27 ---
 3 files changed, 56 deletions(-)

diff --git a/dev-perl/YAML/Manifest b/dev-perl/YAML/Manifest
index bb242aa3c15..3058fc30316 100644
--- a/dev-perl/YAML/Manifest
+++ b/dev-perl/YAML/Manifest
@@ -1,4 +1,2 @@
 DIST YAML-1.15.tar.gz 80702 BLAKE2B 
adb4874943a2bd1b7aab688d5a0843e78e28e2934138589ee2b3c502ea105c672c8d4e860607f562c231065f903abd0d20f79bc046316283b0bbf5323974134a
 SHA512 
c1b715c46186009e27e25857c99cbd729fc49a1854dd987dcab53e4279528f19a1b9822dd1ca95162aa2a0b6627cf15ef6a692ad22c659dbd5c251fc3f898b7b
-DIST YAML-1.21.tar.gz 82995 BLAKE2B 
91fa21da12188004ffa50da6bdcccac1efb94de2574d8a5a1b011390205e581c7cf24994c7214c84effcddb3603f4a378fc955de8199926c76269706aa2214d1
 SHA512 
1542c9a931a7c2c460cd89d66978747a6feee855993529b05638456ff4f16fa5273e539b7423e843d63ccfd29c650e2d46b9140388d44cc6c812a0e0c6be9cd3
-DIST YAML-1.23.tar.gz 83566 BLAKE2B 
317d3d0b96e0050645385d8ab7868f6b04d41a3172d901b1ded66813c61cbd2ac28542086f79e322b7c9ad3220e03e1fe49f8a5b38c45015148dfe5da742e1fc
 SHA512 
42dd2063e16b0e96a51ae9e43ed537741206529ff0df2939717eb142edf6396f69130b6b64d1d338d0c0a32dc11f68f3ffc5e0b5043c325c20e0d492626c106c
 DIST YAML-1.24.tar.gz 83296 BLAKE2B 
c15d041ee5004b5c9d13b994abb2aca1753aa8aad4f498eee82008a5476c84f844f3ab5d2d40ed2fc46c876e1ce51c8cd24b870e207a8bc4395e9b3aaecbbb6b
 SHA512 
20ba196cf9c68a38154f68b884262b9f89463af5e67c1e59944070b2493f6d9515f92a2793f456e20fe7e6372b74da8f6c16b884274793b6c3aa0ed0134c340d

diff --git a/dev-perl/YAML/YAML-1.210.0.ebuild 
b/dev-perl/YAML/YAML-1.210.0.ebuild
deleted file mode 100644
index e2a534381b7..000
--- a/dev-perl/YAML/YAML-1.210.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=INGY
-DIST_VERSION=1.21
-inherit perl-module
-
-DESCRIPTION="YAML Ain't Markup Language (tm)"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   >=virtual/perl-Test-Simple-0.880.0
-   >=dev-perl/Test-YAML-1.50.0
-   )
-"
-src_test() {
-   perl_rm_files t/author-*.t
-   perl-module_src_test
-}

diff --git a/dev-perl/YAML/YAML-1.230.0.ebuild 
b/dev-perl/YAML/YAML-1.230.0.ebuild
deleted file mode 100644
index e6921a04d4f..000
--- a/dev-perl/YAML/YAML-1.230.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=INGY
-DIST_VERSION=1.23
-inherit perl-module
-
-DESCRIPTION="YAML Ain't Markup Language (tm)"
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~ppc-aix ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   test? (
-   >=virtual/perl-Test-Simple-0.880.0
-   >=dev-perl/Test-YAML-1.50.0
-   )
-"
-src_test() {
-   perl_rm_files t/author-*.t
-   perl-module_src_test
-}



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

2018-07-13 Thread Mikle Kolyada
commit: 93cd9d84c939426f124ea540270b54c0d15883c8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:23:50 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:23:50 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93cd9d84

dev-perl/UUID: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/UUID/Manifest|  1 -
 dev-perl/UUID/UUID-0.250.0.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-perl/UUID/Manifest b/dev-perl/UUID/Manifest
index 7b37a97d0ff..92011a493cb 100644
--- a/dev-perl/UUID/Manifest
+++ b/dev-perl/UUID/Manifest
@@ -1,3 +1,2 @@
-DIST UUID-0.25.tar.gz 14383 BLAKE2B 
bfdbe9d9bb2fdfcbd2b06f4985e00a2bdfed1a1d019aa9bdfc16fadc646bc0dfba18d31f00818f8e38f6f6b674a92e45f056ade319e3032eff3179c088e6a1b1
 SHA512 
b775692fd85597fb9786a376a2f290938714e61416eb213f7329d3fbf820a94912c9de5a1900fcba85e8cde2002c626bbfbca6a91dfd9ef0011b1e2d61bad65a
 DIST UUID-0.26.tar.gz 14535 BLAKE2B 
a1159c96d2c88bdfdf66f80924b121d646449742774427431cb323ac6dd4365b5c6166d1fbfbddaa7670b4e87927569fcb9e27b7289e6301d9f4b959ea5e9a72
 SHA512 
7ec7345fedd42e38ad50531535364565cdab2b091439992833a32804c543dd846f430688eee3b72b10ecb060127463cbb5f771c7ae11719398c22cce7b49274c
 DIST UUID-0.27.tar.gz 14690 BLAKE2B 
b4f296f82172202eb3af67f8e1e18dbbf4c36e3d6931f63aeaea32003fe1c3d5ad4c6d25540c4e1475f16841654b44d39164bff5dbfd35712bfec69dc7bdc039
 SHA512 
a7b45e0bf5461318cf8e6d874630afb31c98d5a10a5aa3408a27e48bcde051517d6c8bc904a2f05d2bd5aee076f06b07ddd535371e891eb7ac2e5845c4d930c2

diff --git a/dev-perl/UUID/UUID-0.250.0.ebuild 
b/dev-perl/UUID/UUID-0.250.0.ebuild
deleted file mode 100644
index 96c8efc75c2..000
--- a/dev-perl/UUID/UUID-0.250.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-DIST_AUTHOR=JRM
-DIST_VERSION=0.25
-inherit perl-module
-
-DESCRIPTION="Perl extension for using UUID interfaces as defined in e2fsprogs"
-LICENSE="Artistic-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-# Note: UUID appears to link against a bunch of different UUID
-# implementations depending on availability and platform.
-#
-# Presently uses uuid.h/libuuid.so from util-linux which is fine for Linux
-# platforms, but may need special attention on *bsd, *osx and win*
-RDEPEND=""
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   >=dev-perl/Devel-CheckLib-1.20.0
-"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/XML-LibXSLT/

2018-07-13 Thread Mikle Kolyada
commit: 05e536b2497a365cd391cbf067fb96117945a42d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:25:29 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:25:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05e536b2

dev-perl/XML-LibXSLT: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/XML-LibXSLT/Manifest   |  1 -
 dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild | 27 -
 2 files changed, 28 deletions(-)

diff --git a/dev-perl/XML-LibXSLT/Manifest b/dev-perl/XML-LibXSLT/Manifest
index 2523ea74bbc..7a78ebcee69 100644
--- a/dev-perl/XML-LibXSLT/Manifest
+++ b/dev-perl/XML-LibXSLT/Manifest
@@ -1,3 +1,2 @@
 DIST XML-LibXSLT-1.94.tar.gz 114015 BLAKE2B 
e16cebbfc5e126dc56482845af4f21b70c62ef08eb14bc79f678fca35d418858b33d69adc411836f4d81cdb7dde8fb535b9f4855a947deab60ec1d77a4edd9d5
 SHA512 
52b3ec6ef0556d9dde8320acbea01fe36e219bc62ed2d9e0cbe2f8f402bfc3f42ca1e28a6e047e69f501982fe4ba40d23fcfbce9399388c9f28a0d8804fc5f73
-DIST XML-LibXSLT-1.95.tar.gz 114231 BLAKE2B 
792ceab8dd2e185c8c3c9a4a6981817ccb667006de588b9a8047eca8c27c63ed73e2aa5629314b723585fa2ca37f468bbacd2ff1d7596e9ca446aca56b412197
 SHA512 
06a1c9896a391be2588995f25520da05f086b3fa79109884131525a0d76a7b375e0c5a2febf8a79a888f3a9bd25b5eb39064de1baeffafcfe18f5576c9c54e19
 DIST XML-LibXSLT-1.96.tar.gz 114068 BLAKE2B 
2225e387e9e877578be51a9a6c8c3612490e79c2cec366dd2fdc64710ce67200f5ab7109742197abcdc311f9a1bf16b42a40c7e7df4d669b638de4ee49782866
 SHA512 
7b6e22889c538bbd861c6420cd56893d229676d3afc1cf30e17cae48a4714139769a99a48a99f1dff52864f4989e410303007c07941625bf6bd12a24276c35e6

diff --git a/dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild 
b/dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild
deleted file mode 100644
index 8f84f77ade2..000
--- a/dev-perl/XML-LibXSLT/XML-LibXSLT-1.950.0.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=SHLOMIF
-DIST_VERSION=1.95
-inherit perl-module
-
-DESCRIPTION="A Perl module to parse XSL Transformational sheets using gnome's 
libXSLT"
-
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
-IUSE=""
-
-RDEPEND="
-   virtual/perl-Encode
-   >=dev-perl/XML-LibXML-1.700.0
-   >=dev-libs/libxslt-1.1.32
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   virtual/pkgconfig
-"
-
-PERL_RM_FILES=( t/06entities.t )
-# test fails, reason unknown



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

2018-07-13 Thread Manuel Rüger
commit: 4183b22301d5e0b549bb74b446419882d89d487c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 12:30:07 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 12:30:07 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4183b223

www-apps/hugo: Version bump to 0.44

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 www-apps/hugo/Manifest |  12 +
 www-apps/hugo/hugo-0.44.ebuild | 101 +
 www-apps/hugo/metadata.xml |   3 ++
 3 files changed, 116 insertions(+)

diff --git a/www-apps/hugo/Manifest b/www-apps/hugo/Manifest
index c4bfe61698e..e362d71e65a 100644
--- a/www-apps/hugo/Manifest
+++ b/www-apps/hugo/Manifest
@@ -1,10 +1,15 @@
+DIST 
github.com-BurntSushi-locker-a6e239ea1c69bff1cfdb20c4b73dadf52f784b6a.tar.gz 
2112 BLAKE2B 
3b3a6de509b7e9a2f925252a28a93e4d94e68f81e10b6a39bcb8066984ceff1e2d898c0f726b85a6984a396e88b382f5b7488c79a1d8bf6ddb7bf6eaae3d889d
 SHA512 
b6eaa606660ab6fd2a952a8ef727c830db859658636ee7b214014f2b4a1ec3c671d85745f94ed118ed9d2cc9909a15d26c6be72baed5b6e13eccb5cfe20e58bd
 DIST 
github.com-BurntSushi-toml-a368813c5e648fee92e5f6c30e3944ff9d5e8895.tar.gz 
42256 BLAKE2B 
65fba0e39dbd7d9ffc5707379629ba9e8d91f186214afeb6b5f5960bd7d4b0f233247ecc1b23bff9c4ea8572f00b106ce5b833f88d975be5ffb29778fc18dcee
 SHA512 
8a54f8b1f2fb9b5882d3c1498376c15aaf00eb8d9379090c38b03a6a291215923637dae9f36db1cca700687169cb08911e515222cd72fc153a5082ff4ddb5573
 DIST 
github.com-PuerkitoBio-purell-0bcb03f4b4d0a9428594752bd2a3b9aa0a9d4bd4.tar.gz 
11651 BLAKE2B 
5303cc2264bc289d94cbe81766e12ce42e5ab59a5fedf3bb9b1fba76d0ab543af8f7c34b991837f9ed6270003b5e1eb2d94721c27dc409ad67472c8dc0315d82
 SHA512 
faf9ef8e24db59d477073fb8a06de337827f21b84a69c03cf47c6ddd8d3d67772319e261d98fe1fafbcc80c725db52541e02f8f2d598986246d02b8e381b4e6a
 DIST 
github.com-PuerkitoBio-urlesc-de5bf2ad457846296e2031421a34e2568e304e35.tar.gz 
6799 BLAKE2B 
8e27467b05093ef6af830c07a3a5a9fcfbd158c75893c6e0279538b02d70ed8ed48981ed1369aa1472903bec16c48b020a7949759dce625f6fa5cb8fe6fc4e03
 SHA512 
a7c80ad1cb51be792f92dd34fec99dd1d3f11e5762e196e8f2d126afaf7e62548f3355dcb2616a989d0e4afc4cd7f559a0bf528ca0e20b0d1013b27498308a30
+DIST 
github.com-alecthomas-assert-405dbfeb8e38effee6e723317226e93fff912d06.tar.gz 
71099 BLAKE2B 
2894bc0568c3d114aff71724dade89c604d9f0528cbe8f5c644c4a850941f146eec9a862886cb3241b75212c6f2272efc50a6923166eeb571be26c8aded40e0d
 SHA512 
182f141d83bb9b1d7d94cf3b1beb2e7c4074f9be3bd0250e3423fe64e6182f34b54b36e517397aa88440e42fe116973ed435bde6b8343df299db6ebb32591331
 DIST 
github.com-alecthomas-chroma-1b755a90bd109f170385cb3964f0abdfd3451145.tar.gz 
301047 BLAKE2B 
8d14d121cdeb160d3ed10d6b60a8d97897b0344c7c42e5a6546ef1996d32bc163ff650f0d74b9085635ac179fe14a672dff87fb4b3ae43093fd06ba660fc4faf
 SHA512 
67f0d6f741fa07e9d6c3fdc92d0235ed70927b6fa85a346c8b7ecbf9b709e2b7810aaa8f625f5d528bb20d9f7118b4af1cb52fc7f4a5d3e7d1dbf05c0430d7ef
 DIST 
github.com-alecthomas-chroma-85c342e3e3d715ad780edd0ba8728161e99cce24.tar.gz 
298009 BLAKE2B 
e2c8e9e72c06d389c43f4040d652b8de27e9480d3dec27f1b76cee14e657aa10196cf42f42bb4a19d2982198e8a566598104fa14328f06bb12916f382e8bff26
 SHA512 
38d5c391aa9ec4b8c24bd18ec7bb9bd1dab9eb968689ca91635b9964e62d1c0b74c6d102071e48e461440e3f30f201a63bc3a8eaa9e200521c77d35ef4d8c655
+DIST 
github.com-alecthomas-colour-60882d9e27213e8552dcff6328914fe4c2b44bc9.tar.gz 
3483 BLAKE2B 
e4ecc9503cc8c6053adb66f87ddaf1e9fb66fa18060c07a0e26c1fd8fa1b143d48345ea73c399571f787b8104a7522672a945d885f5e24dcf0718a995d6567f0
 SHA512 
e428ba9fdc2fcf097ec9892241cbca65631924dfe66a08ec4131e7cfba24125145600f03b753b7bc4452b06f0c7380560d9165ebeb7dddb30d35db512c825796
+DIST 
github.com-alecthomas-repr-f49988b46e025398b9f834f7c726afe001ec481f.tar.gz 4609 
BLAKE2B 
4407439779e981b39d1926437aa67a8922bad0eeed8858b0888c53ee819c8551367e8f74d6d04854ce57dc45a477060461ebb79b30be6b8f6880dbc94f5d53c2
 SHA512 
f07fda8ecd0c653dfd0024eee9e33851572ee21a6aaa196d453825bc28bb92b3c80c0dc0aad38ec4e2158e7f22d7aa1166e4ea7aead713fa834c686cb98dc02d
 DIST github.com-bep-debounce-844797fa1dd9ba969d71b62797ff19d1e49d4eac.tar.gz 
3494 BLAKE2B 
3f8103b07b4d37c060d48739c6a6cfc9b585ea3fcf1b87aa9bfee44245b8f4067763567864903b488070a3ae43a30b7ed95dcaa12517d119af0c4bc6cf73303b
 SHA512 
2636d6ef6cdb5334da0e6ca560e64e2e1880ed749b7abdbc6ac6f2eff125c7c40e4eda549273d68097789234dc7e4bba3cd5d07ea5147e9d28ee390c2fd0216d
 DIST github.com-bep-gitmap-012701e8669671499fc43e9792335a1dcbfe2afb.tar.gz 
4602 BLAKE2B 
5bd1389e89f3d7b9c423d5a3dc2c40b374acd71c5f71a1032184464184cabd67e4885afd4aafe82b0f8c4733389ea639aa5e9d3a71b86285cd6579cf3803b35b
 SHA512 
a46602ae2651d6b21442e797658553b5e4e5f6226a772152fe690aabc0670ec3aa5d65dd9fb7e6fbac98a31b0e854cb5838c998ab47114499d65351760c87ffb
+DIST github.com-bep-go-tocss-2abb118dc8688b6c7df44e12f4152c2bded9b19c.tar.gz 
5373 BLAKE2B 
63e63a26ffdeef5d27f5b39111b8b9e966982f4da720c9ff28f0b58517635319ae4fb1b349fa754a0a0ca01d8c3299d13f746a6ee920203c2837c18d064f2acd
 SHA51

[gentoo-commits] repo/gentoo:master commit in: dev-perl/Calendar-Simple/

2018-07-13 Thread Mikle Kolyada
commit: 0d1577e8f79acfc347d4bb69ac09c92873adbe31
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:32:27 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:32:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d1577e8

dev-perl/Calendar-Simple: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../Calendar-Simple-1.210.0-r1.ebuild  | 26 --
 dev-perl/Calendar-Simple/Manifest  |  1 -
 2 files changed, 27 deletions(-)

diff --git a/dev-perl/Calendar-Simple/Calendar-Simple-1.210.0-r1.ebuild 
b/dev-perl/Calendar-Simple/Calendar-Simple-1.210.0-r1.ebuild
deleted file mode 100644
index fc5c07947cd..000
--- a/dev-perl/Calendar-Simple/Calendar-Simple-1.210.0-r1.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2016 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-MODULE_AUTHOR=DAVECROSS
-MODULE_VERSION=1.21
-inherit perl-module
-
-DESCRIPTION="Perl extension to create simple calendars"
-
-SLOT="0"
-KEYWORDS="amd64 hppa ~ppc x86 ~ppc-aix"
-IUSE="test"
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   >=dev-perl/Module-Build-0.28
-   test? ( virtual/perl-Test-Simple )"
-
-SRC_TEST="do"
-
-src_test() {
-   perl_rm_files t/pod_coverage.t t/pod.t
-   perl-module_src_test
-}

diff --git a/dev-perl/Calendar-Simple/Manifest 
b/dev-perl/Calendar-Simple/Manifest
index 11d2b7329fb..397aece70e3 100644
--- a/dev-perl/Calendar-Simple/Manifest
+++ b/dev-perl/Calendar-Simple/Manifest
@@ -1,2 +1 @@
-DIST Calendar-Simple-1.21.tar.gz 7007 BLAKE2B 
e6e4f0528245dcff92b8c378418e47c719a954929f7b547a128099f13a1551be52c27e4ed5e3e9cec98b9599f87998c06965ee1c59a478d3f5e263a9745e439a
 SHA512 
29ec836e774c5d3879c309eb58fdedddb12b146b382ed3c3cf014b602dd31edc7f4eff8929bd485968fa328931a589b4bde5cd87c3456b5665480ed51466252b
 DIST Calendar-Simple-1.23.tar.gz 7989 BLAKE2B 
24c25e60021e6210e06645a51fd068c7e0887b5273c83b3fc2cf632deef2530e548d6c3282807c8564d4999ce2f133303a9bb2e6a40ae0aaa77cfb11f205bb5e
 SHA512 
3d024e3de896a20b837adfc4fbac2bcd1dce969ac426445573ae0975e189ffde906e7c25d3c6f0595a7e49d47a09cd3e9bdfb6810ca7c9e20f9e01a4ecb7ec49



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

2018-07-13 Thread Mikle Kolyada
commit: 7e72959b9381c5dfd32b57ad9e2b2391e4e961ec
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:36:55 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:36:55 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e72959b

dev-perl/autobox: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-perl/autobox/Manifest   |  1 -
 dev-perl/autobox/autobox-2.850.0.ebuild | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/dev-perl/autobox/Manifest b/dev-perl/autobox/Manifest
index d10f3c895b1..b127660d43c 100644
--- a/dev-perl/autobox/Manifest
+++ b/dev-perl/autobox/Manifest
@@ -1,2 +1 @@
-DIST autobox-2.85.tar.gz 80443 BLAKE2B 
1eff93ea1e8c80d38f597137cff128495f22744b07df4a28f510b3a8d0a3aaf20a1f550de173d8afc1a0370420b458b0eb5eef80752545a2e698d64d0659ec6b
 SHA512 
2f9c0ef556655eb19a2e50aa2ec47769ef2fd7bb15806a7f22320be9d79178811c418dbe58cf792fdc48dc3e7b80b70c1882956559373cc6eb152c0b94d52081
 DIST autobox-2.86.tar.gz 85350 BLAKE2B 
fd4ef4a26efbec7542c4aa962787b032889603c789b1e892b00fa597efa8b74db6ce546710fbf02b5a497ba16c4aeb0f377b1d7baa5f2fa74b22a71f257d34b0
 SHA512 
ab4d41cfddb10a03e6bdb47a81cbf2a41f5c2f518dd674e9af17a3127589d8b4d84d50f4293291517fb24b9c1b022dfcecafd7acf5d0d1e693528353ccc9c186

diff --git a/dev-perl/autobox/autobox-2.850.0.ebuild 
b/dev-perl/autobox/autobox-2.850.0.ebuild
deleted file mode 100644
index 6d5c941f2f5..000
--- a/dev-perl/autobox/autobox-2.850.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-DIST_AUTHOR=CHOCOLATE
-DIST_VERSION=2.85
-inherit perl-module
-
-DESCRIPTION="Call methods on native types"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   >=dev-perl/Scope-Guard-0.210.0
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/B-Hooks-EndOfScope/

2018-07-13 Thread Mikle Kolyada
commit: e4c344fc522211bbc72d449b028763380717cd8b
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 12:38:43 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 12:38:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4c344fc

dev-perl/B-Hooks-EndOfScope: Drop old

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 .../B-Hooks-EndOfScope-0.210.0.ebuild  | 30 --
 dev-perl/B-Hooks-EndOfScope/Manifest   |  1 -
 2 files changed, 31 deletions(-)

diff --git a/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.210.0.ebuild 
b/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.210.0.ebuild
deleted file mode 100644
index 47a6c4bc355..000
--- a/dev-perl/B-Hooks-EndOfScope/B-Hooks-EndOfScope-0.210.0.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=ETHER
-DIST_VERSION=0.21
-inherit perl-module
-
-DESCRIPTION="Execute code after a scope finished compilation"
-
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~ppc-aix 
~x86-fbsd ~x64-macos"
-IUSE="test"
-
-RDEPEND="
-   >=dev-perl/Module-Implementation-0.50.0
-   >=dev-perl/Sub-Exporter-Progressive-0.1.6
-   >=dev-perl/Variable-Magic-0.480.0
-"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   virtual/perl-Text-ParseWords
-   test? (
-   >=virtual/perl-CPAN-Meta-2.120.900
-   virtual/perl-File-Spec
-   virtual/perl-Module-Metadata
-   >=virtual/perl-Test-Simple-0.890.0
-   )
-"

diff --git a/dev-perl/B-Hooks-EndOfScope/Manifest 
b/dev-perl/B-Hooks-EndOfScope/Manifest
index de396dd2d23..f3ea1296649 100644
--- a/dev-perl/B-Hooks-EndOfScope/Manifest
+++ b/dev-perl/B-Hooks-EndOfScope/Manifest
@@ -1,2 +1 @@
-DIST B-Hooks-EndOfScope-0.21.tar.gz 6 BLAKE2B 
edd3c9428dbe689e1528b76a0383ec6c85ccd35059abbfdc0a6de613ca5648010e89a9f7fa34c627130ac81a6c247da6fcc7552dd6bd12ce676fed73de26ba8d
 SHA512 
6c34b5e6bd9b355703339b5ec7625e8ecc94a4d38bbc1a94fb561c8832234a80a1d5f0b389e4479fe75a85afb15d9e56092c2c1ceca0c995b39fc5ba0e4a563b
 DIST B-Hooks-EndOfScope-0.24.tar.gz 37859 BLAKE2B 
b5e4f0061949af112b9bcb89c1352e1385222c291624df330e8e60d3faf48f78a669650b074b1659f8287f14d46bdb488da0c943a0d22adb5a50dc37aebf7754
 SHA512 
5c061a81a3fed88ad868a14a1f817f7952b2f0c9512408174354e0ecf7e3caa5d646054cf75efa8b8c558e6241a8dfebf9400e8826021bdb5cbdf3a00065b147



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

2018-07-13 Thread Louis Sautier
commit: f9a004cba0471825af08a023717219e19f3066ae
Author: Louis Sautier  gentoo  org>
AuthorDate: Fri Jul 13 12:38:37 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Fri Jul 13 12:42:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9a004cb

dev-python/backports-unittest-mock: bump to 1.4

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/backports-unittest-mock/Manifest|  1 +
 .../backports-unittest-mock-1.4.ebuild | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/backports-unittest-mock/Manifest 
b/dev-python/backports-unittest-mock/Manifest
index 563d643c161..20a81ac90c0 100644
--- a/dev-python/backports-unittest-mock/Manifest
+++ b/dev-python/backports-unittest-mock/Manifest
@@ -1,2 +1,3 @@
 DIST backports.unittest_mock-1.2.1.tar.gz 4580 BLAKE2B 
c935c378bae1f39e0658f4be027bcdbc13ecad6aeae93ca46ca314378f3c0462ea95b7b36daebdafd0577269520adb51a9f4cb7e74e9ab22c1bb6891d06c2384
 SHA512 
36218fe1117d62cc1aeea576c6220be7b8dd76b800776001756d157528ff7760791c513751a221ba84790c5b60b8ce62ab2ef17f4d359dd026211dc9c5cbcd5e
 DIST backports.unittest_mock-1.3.tar.gz 4687 BLAKE2B 
a01712eaf5cb32d7da803aa9034f68508faa4d8db8d6f6eb02e20cb9f42c4e6bda3b409a0e2f676b6b7782f16d78877da6f093af6ac1f1deb100b19969570787
 SHA512 
71741db5c2e43beac8c72dbffa0efd4bbae140177f56c3b2bca3e13a3aebd8a418b5ad7654421899980f73b8dbfb3b02d85d2dfcd7b3827047fa6ba84a8dcfff
+DIST backports.unittest_mock-1.4.tar.gz 6034 BLAKE2B 
c347f1d45c610701b605cb75304f93c8fc7a8534e2c14efb4600a7c5cdbcff02e0534dbf572ac248d17dbc161dcabd8448941d8340a71734f29ff3294c8210f1
 SHA512 
ad19eba7c221fbb97ba710cbe96aa26de74ad8c70ea7b794d8dcad3dc86a55a45d36f542ad829fb8c4bcf09c772cf64532dabf337b40bf87c7b29e13236484a9

diff --git 
a/dev-python/backports-unittest-mock/backports-unittest-mock-1.4.ebuild 
b/dev-python/backports-unittest-mock/backports-unittest-mock-1.4.ebuild
new file mode 100644
index 000..63a89653734
--- /dev/null
+++ b/dev-python/backports-unittest-mock/backports-unittest-mock-1.4.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# It is the developer's intention that backports.unittest_mock will be
+# used even for Python 3: https://github.com/jaraco/jaraco.timing/pull/1
+PYTHON_COMPAT=( pypy{,3} python{2_7,3_{4,5,6}} )
+
+inherit distutils-r1
+
+MY_PN="${PN/-/.}"
+MY_PN="${MY_PN//-/_}"
+DESCRIPTION="Backport of unittest.mock"
+HOMEPAGE="https://github.com/jaraco/backports.unittest_mock";
+SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd"
+IUSE="doc test"
+
+RDEPEND="
+   dev-python/backports[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/jaraco-packaging-3.2[${PYTHON_USEDEP}]
+   >=dev-python/rst-linker-1.9[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.5.2[${PYTHON_USEDEP}]
+   )
+   test? (
+   ${RDEPEND}
+   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
+   )
+"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+python_compile_all() {
+   if use doc; then
+   cd docs || die
+   sphinx-build . _build/html || die
+   HTML_DOCS=( docs/_build/html/. )
+   fi
+}
+
+python_test() {
+   # Override pytest options to skip flake8
+   py.test -v --override-ini="addopts=--doctest-modules" \
+   || die "tests failed with ${EPYTHON}"
+}
+
+python_install() {
+   # avoid a collision with dev-python/backports
+   rm "${BUILD_DIR}"/lib/backports/__init__.py || die
+   distutils-r1_python_install --skip-build
+}



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

2018-07-13 Thread Louis Sautier
commit: ac928d11cdb1fdb669223c33b7a712515c1cdf06
Author: Louis Sautier  gentoo  org>
AuthorDate: Fri Jul 13 12:40:31 2018 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Fri Jul 13 12:42:57 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac928d11

dev-python/backports-unittest-mock: remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/backports-unittest-mock/Manifest|  1 -
 .../backports-unittest-mock-1.2.1-r1.ebuild| 55 --
 .../backports-unittest-mock-1.2.1.ebuild   | 49 ---
 3 files changed, 105 deletions(-)

diff --git a/dev-python/backports-unittest-mock/Manifest 
b/dev-python/backports-unittest-mock/Manifest
index 20a81ac90c0..f584e8e98e4 100644
--- a/dev-python/backports-unittest-mock/Manifest
+++ b/dev-python/backports-unittest-mock/Manifest
@@ -1,3 +1,2 @@
-DIST backports.unittest_mock-1.2.1.tar.gz 4580 BLAKE2B 
c935c378bae1f39e0658f4be027bcdbc13ecad6aeae93ca46ca314378f3c0462ea95b7b36daebdafd0577269520adb51a9f4cb7e74e9ab22c1bb6891d06c2384
 SHA512 
36218fe1117d62cc1aeea576c6220be7b8dd76b800776001756d157528ff7760791c513751a221ba84790c5b60b8ce62ab2ef17f4d359dd026211dc9c5cbcd5e
 DIST backports.unittest_mock-1.3.tar.gz 4687 BLAKE2B 
a01712eaf5cb32d7da803aa9034f68508faa4d8db8d6f6eb02e20cb9f42c4e6bda3b409a0e2f676b6b7782f16d78877da6f093af6ac1f1deb100b19969570787
 SHA512 
71741db5c2e43beac8c72dbffa0efd4bbae140177f56c3b2bca3e13a3aebd8a418b5ad7654421899980f73b8dbfb3b02d85d2dfcd7b3827047fa6ba84a8dcfff
 DIST backports.unittest_mock-1.4.tar.gz 6034 BLAKE2B 
c347f1d45c610701b605cb75304f93c8fc7a8534e2c14efb4600a7c5cdbcff02e0534dbf572ac248d17dbc161dcabd8448941d8340a71734f29ff3294c8210f1
 SHA512 
ad19eba7c221fbb97ba710cbe96aa26de74ad8c70ea7b794d8dcad3dc86a55a45d36f542ad829fb8c4bcf09c772cf64532dabf337b40bf87c7b29e13236484a9

diff --git 
a/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1-r1.ebuild 
b/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1-r1.ebuild
deleted file mode 100644
index 1b2fb371978..000
--- a/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# It is the developer's intention that backports.unittest_mock will be
-# used even for Python 3: https://github.com/jaraco/jaraco.timing/pull/1
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-inherit distutils-r1
-
-MY_PN="${PN/-/.}"
-MY_PN="${MY_PN//-/_}"
-DESCRIPTION="Backport of unittest.mock"
-HOMEPAGE="https://github.com/jaraco/backports.unittest_mock";
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
-IUSE="doc test"
-
-RDEPEND="dev-python/backports[${PYTHON_USEDEP}]
-   dev-python/mock[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/rst-linker[${PYTHON_USEDEP}]
-   )
-   test? (
-   ${RDEPEND}
-   >=dev-python/pytest-2.8[${PYTHON_USEDEP}]
-   )
-"
-
-S="${WORKDIR}/${MY_PN}-${PV}"
-
-python_compile_all() {
-   if use doc; then
-   cd docs || die
-   sphinx-build . _build/html || die
-   HTML_DOCS=( docs/_build/html/. )
-   fi
-}
-
-python_test() {
-   py.test -v || die "tests failed with ${EPYTHON}"
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   find "${D}" -name '*.pth' -delete || die
-}

diff --git 
a/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild 
b/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild
deleted file mode 100644
index b672aade014..000
--- a/dev-python/backports-unittest-mock/backports-unittest-mock-1.2.1.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2017 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# It is the developer's intention that backports.unittest_mock will be
-# used even for Python 3: https://github.com/jaraco/jaraco.timing/pull/1
-PYTHON_COMPAT=( python{2_7,3_4,3_5,3_6} pypy{,3} )
-
-inherit distutils-r1
-
-MY_PN="${PN/-/.}"
-MY_PN="${MY_PN//-/_}"
-DESCRIPTION="Backport of unittest.mock"
-HOMEPAGE="https://github.com/jaraco/backports.unittest_mock";
-SRC_URI="mirror://pypi/${PN:0:1}/${MY_PN}/${MY_PN}-${PV}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ~ia64 ppc ppc64 x86"
-IUSE="doc test"
-
-RDEPEND="dev-python/mock[${PYTHON_USEDEP}]"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   >=dev-python/setuptools_scm-1.15.0[${PYTHON_USEDEP}]
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/rst

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

2018-07-13 Thread Manuel Rüger
commit: 2fb90c0e6324b6cc2c6bb3464043be439a9edb31
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 12:46:12 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 12:46:12 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fb90c0e

dev-util/hadolint: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/hadolint/Manifest  |  2 --
 dev-util/hadolint/hadolint-1.5.0.ebuild | 41 
 dev-util/hadolint/hadolint-1.7.2.ebuild | 42 -
 3 files changed, 85 deletions(-)

diff --git a/dev-util/hadolint/Manifest b/dev-util/hadolint/Manifest
index b447fac9aad..66381b837d5 100644
--- a/dev-util/hadolint/Manifest
+++ b/dev-util/hadolint/Manifest
@@ -1,4 +1,2 @@
 DIST hadolint-1.10.2.tar.gz 39009 BLAKE2B 
84552ce978d6f53b6e2e769da402585777ce7ef5bd7b66cc538b4f22d73a54b0d07246c1d68b9628f9e2d17d9db2bb472e1902cf017f13344b9277b27658b652
 SHA512 
2104cb588bdb9620d6a5831ab0f38e6fbd45ab19ba6dbd38e6ced43995f2dd6509d7f9d0180d59a828bbe8de46738f7ff2f3ba9859d9ac4a04b1ba9015071fd9
-DIST hadolint-1.5.0.tar.gz 31002 BLAKE2B 
889885192f8ae12c468b90923948970d617bb5dc0156efa615e8ef750b3940b66d84215a21d0dca11ee7176f12b32c47a35a763035c9c2023bb8dc83b2b0af69
 SHA512 
19e246d82670e27751729394ba73ef03260525eedb0dbe26a605dd2c30e95386bafb85f9063a94d3a3e8b47fb05c248bdd6fda0ef9cf95285b1ec0ef54ad6d15
-DIST hadolint-1.7.2.tar.gz 34960 BLAKE2B 
db1ff9df439e3dbc0e36a47749d0013e76abadfecfb87abfce9e4e41f654a3955bdff2804c92a60e1e399b0e74601c80a7a96012de93bed48e0425afee359e39
 SHA512 
1562ca9e2b81d6840bd89b98ce706372e32e93505efd6eecef613ddcb089306653da09ef09f8876fe19c6effd1520784ae05c83bb2460975628389ef80f5df93
 DIST hadolint-1.7.4.tar.gz 35187 BLAKE2B 
e40892f739d7714f62b322d1d3bb6d5cb285e9e6f3bc9c35d21a8d0eef837f32966b6292ce3e20ff461e2775777b2bf6192676ab76d32a558a8242dfe12c697d
 SHA512 
ad92d1f6a1efee2b853613ec078396847e7ee2c525d6069d3cf1708d1af229133eff35e0dee6f0680433a2c6781839beeda02f8cebb52e360c622e6b05ac5925

diff --git a/dev-util/hadolint/hadolint-1.5.0.ebuild 
b/dev-util/hadolint/hadolint-1.5.0.ebuild
deleted file mode 100644
index c9776ba1bdc..000
--- a/dev-util/hadolint/hadolint-1.5.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# ebuild generated by hackport 0.5.4
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Dockerfile Linter JavaScript API"
-HOMEPAGE="https://github.com/hadolint/hadolint";
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-haskell/aeson:=[profile?]
-   dev-haskell/dlist:=[profile?]
-   >=dev-haskell/gitrev-1.3.1:=[profile?]
-   >=dev-haskell/language-docker-2.0.0:=[profile?]
-   <=dev-haskell/optparse-applicative-0.14.0.0:=[profile?]
-   >=dev-haskell/parsec-3.1:=[profile?]
-   >=dev-haskell/split-0.2:=[profile?]
-   dev-haskell/text:=[profile?]
-   dev-haskell/yaml:=[profile?]
-   >=dev-lang/ghc-8.0.2:=
-   >=dev-util/shellcheck-0.4.7:=[profile?]
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.24.2.0
-   test? ( dev-haskell/hspec
-   >=dev-haskell/hunit-1.2 )
-"
-
-src_prepare() {
-   default
-   sed -i -e "s/-static//" ${PN}.cabal || die
-}

diff --git a/dev-util/hadolint/hadolint-1.7.2.ebuild 
b/dev-util/hadolint/hadolint-1.7.2.ebuild
deleted file mode 100644
index 7e0e70f8762..000
--- a/dev-util/hadolint/hadolint-1.7.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# ebuild generated by hackport 0.5.5
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Dockerfile Linter JavaScript API"
-HOMEPAGE="https://github.com/hadolint/hadolint";
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-haskell/aeson:=[profile?]
-   >=dev-haskell/gitrev-1.3.1:=[profile?]
-   >=dev-haskell/language-docker-6.0.1:=[profile?] 
=dev-haskell/megaparsec-6.4:=[profile?]
-   dev-haskell/mtl:=[profile?]
-   >=dev-haskell/optparse-applicative-0.14.0:=[profile?]
-   >=dev-haskell/split-0.2:=[profile?]
-   dev-haskell/text:=[profile?]
-   dev-haskell/void:=[profile?]
-   dev-haskell/yaml:=[profile?]
-   >=dev-lang/ghc-8.0.2:=
-   >=dev-util/shellcheck-0.5.0:=[profile?]
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.24.2.0
-   test? ( dev-haskell/hspec
-   >=dev-haskell/hunit-1.2 )
-"
-
-src_prepare() {
-   default
-   sed -i -e "s/-static//" ${PN}.cabal || die
-}



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

2018-07-13 Thread Manuel Rüger
commit: 2a9e8f9f293f98a875df4aa73acffa39adcf11df
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 12:45:32 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 12:45:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a9e8f9f

dev-util/hadolint: Version bump to 1.10.2

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-util/hadolint/Manifest   |  1 +
 dev-util/hadolint/hadolint-1.10.2.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/dev-util/hadolint/Manifest b/dev-util/hadolint/Manifest
index 04ad25aec14..b447fac9aad 100644
--- a/dev-util/hadolint/Manifest
+++ b/dev-util/hadolint/Manifest
@@ -1,3 +1,4 @@
+DIST hadolint-1.10.2.tar.gz 39009 BLAKE2B 
84552ce978d6f53b6e2e769da402585777ce7ef5bd7b66cc538b4f22d73a54b0d07246c1d68b9628f9e2d17d9db2bb472e1902cf017f13344b9277b27658b652
 SHA512 
2104cb588bdb9620d6a5831ab0f38e6fbd45ab19ba6dbd38e6ced43995f2dd6509d7f9d0180d59a828bbe8de46738f7ff2f3ba9859d9ac4a04b1ba9015071fd9
 DIST hadolint-1.5.0.tar.gz 31002 BLAKE2B 
889885192f8ae12c468b90923948970d617bb5dc0156efa615e8ef750b3940b66d84215a21d0dca11ee7176f12b32c47a35a763035c9c2023bb8dc83b2b0af69
 SHA512 
19e246d82670e27751729394ba73ef03260525eedb0dbe26a605dd2c30e95386bafb85f9063a94d3a3e8b47fb05c248bdd6fda0ef9cf95285b1ec0ef54ad6d15
 DIST hadolint-1.7.2.tar.gz 34960 BLAKE2B 
db1ff9df439e3dbc0e36a47749d0013e76abadfecfb87abfce9e4e41f654a3955bdff2804c92a60e1e399b0e74601c80a7a96012de93bed48e0425afee359e39
 SHA512 
1562ca9e2b81d6840bd89b98ce706372e32e93505efd6eecef613ddcb089306653da09ef09f8876fe19c6effd1520784ae05c83bb2460975628389ef80f5df93
 DIST hadolint-1.7.4.tar.gz 35187 BLAKE2B 
e40892f739d7714f62b322d1d3bb6d5cb285e9e6f3bc9c35d21a8d0eef837f32966b6292ce3e20ff461e2775777b2bf6192676ab76d32a558a8242dfe12c697d
 SHA512 
ad92d1f6a1efee2b853613ec078396847e7ee2c525d6069d3cf1708d1af229133eff35e0dee6f0680433a2c6781839beeda02f8cebb52e360c622e6b05ac5925

diff --git a/dev-util/hadolint/hadolint-1.10.2.ebuild 
b/dev-util/hadolint/hadolint-1.10.2.ebuild
new file mode 100644
index 000..51581f0faaa
--- /dev/null
+++ b/dev-util/hadolint/hadolint-1.10.2.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+# ebuild generated by hackport 0.5.5
+
+CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
+inherit haskell-cabal
+
+DESCRIPTION="Dockerfile Linter JavaScript API"
+HOMEPAGE="https://github.com/hadolint/hadolint";
+SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-haskell/aeson:=[profile?]
+   >=dev-haskell/gitrev-1.3.1:=[profile?]
+   >=dev-haskell/language-docker-6.0.3:=[profile?] 
=dev-haskell/megaparsec-6.4:=[profile?]
+   dev-haskell/mtl:=[profile?]
+   >=dev-haskell/optparse-applicative-0.14.0:=[profile?]
+   >=dev-haskell/split-0.2:=[profile?]
+   dev-haskell/text:=[profile?]
+   dev-haskell/void:=[profile?]
+   dev-haskell/yaml:=[profile?]
+   >=dev-lang/ghc-8.0.2:=
+   >=dev-util/shellcheck-0.5.0:=[profile?]
+"
+DEPEND="${RDEPEND}
+   >=dev-haskell/cabal-1.24.2.0
+   test? ( dev-haskell/hspec
+   >=dev-haskell/hunit-1.2 )
+"
+
+src_prepare() {
+   default
+   sed -i -e "s/-static//" ${PN}.cabal || die
+}



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

2018-07-13 Thread Manuel Rüger
commit: 7b8c6a801690c92a374e8079a7830d6afee5c73c
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 12:46:39 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 12:46:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b8c6a80

dev-haskell/language-docker: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-haskell/language-docker/Manifest   |  1 -
 .../language-docker/language-docker-2.0.1.ebuild   | 39 --
 2 files changed, 40 deletions(-)

diff --git a/dev-haskell/language-docker/Manifest 
b/dev-haskell/language-docker/Manifest
index 89cced20089..d5d95ce11ac 100644
--- a/dev-haskell/language-docker/Manifest
+++ b/dev-haskell/language-docker/Manifest
@@ -1,3 +1,2 @@
-DIST language-docker-2.0.1.tar.gz 31658 BLAKE2B 
d2f4ed51db1f6367ccb53aafc25e7473d4b7b1cf1b0d4f4e0692ca5db4b2f245ade1b80b37f9989c0a50be6b76996107c1b8e06024981e68ed1c9d96fb2f209d
 SHA512 
f716f99dc23bf9e0de68e658330ee90befb3724a53ae97604c9a8369535db679dd9a5851c2961996619f4a3cf3ea462df487063a3e08afff7cd0c47538fc624a
 DIST language-docker-6.0.1.tar.gz 33814 BLAKE2B 
eea7d16895774435ed4b6dee3df48acaf032a289b70d9ac00efa057cb3d947c6de64df5b8e60cb4ae4f876e26091d40df78469dcbb2e3e9d54969aa7280c3ef7
 SHA512 
a50675309b177d2e2ba305046ba60cb0f9a071cc27c1483d9d244ab89c747be5a7ba022579cca94689e623210e2f518df0e59c05ffca3a386a18e981f4971cf8
 DIST language-docker-6.0.3.tar.gz 34438 BLAKE2B 
1d324b1519583c4feec1d9dd132c977e3fed1d6dd2d8fef7e4a9dc15dc1a294294eaa0831cb97bbb2d22d0bf178195ba0e834e262d1ed3fcd4d9b118a3b474db
 SHA512 
912f24db37cc2f2feac74fe89205e4538d4bae6426cf626cd090a7d38e451331db43f69e87c58b9f168145a4b0f5d90b203fac2c5165c834729099d6b47bc242

diff --git a/dev-haskell/language-docker/language-docker-2.0.1.ebuild 
b/dev-haskell/language-docker/language-docker-2.0.1.ebuild
deleted file mode 100644
index 24fdd9a0d18..000
--- a/dev-haskell/language-docker/language-docker-2.0.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-# ebuild generated by hackport 0.5.4
-
-CABAL_FEATURES="lib profile haddock hoogle hscolour test-suite"
-inherit haskell-cabal
-
-DESCRIPTION="Dockerfile parser, pretty-printer and embedded DSL"
-HOMEPAGE="https://github.com/hadolint/language-docker#readme";
-SRC_URI="mirror://hackage/packages/archive/${PN}/${PV}/${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="dev-haskell/aeson:=[profile?]
-   dev-haskell/free:=[profile?]
-   dev-haskell/glob:=[profile?]
-   dev-haskell/mtl:=[profile?]
-   >=dev-haskell/parsec-3.1:=[profile?]
-   dev-haskell/semigroups:=[profile?]
-   >=dev-haskell/split-0.2:=[profile?]
-   dev-haskell/text:=[profile?]
-   dev-haskell/th-lift:=[profile?]
-   dev-haskell/th-lift-instances:=[profile?]
-   dev-haskell/unordered-containers:=[profile?]
-   dev-haskell/yaml:=[profile?]
-   >=dev-lang/ghc-7.10.1:=
-"
-DEPEND="${RDEPEND}
-   >=dev-haskell/cabal-1.22.2.0
-   test? ( dev-haskell/hspec
-   >=dev-haskell/hunit-1.2
-   dev-haskell/quickcheck )
-"



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

2018-07-13 Thread Johannes Huber
commit: 48d780a14166a76fc932317f03e87c1689aa03e2
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Jul 13 12:48:01 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Jul 13 12:48:01 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=48d780a1

kde-plasma/plasma-pa: Update dep for pulseaudio-12

Bug: https://bugs.gentoo.org/658660
Package-Manager: Portage-2.3.42, Repoman-2.3.9

 kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild | 2 +-
 kde-plasma/plasma-pa/plasma-pa-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild 
b/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild
index 9a16fc22c0..e92f11e134 100644
--- a/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild
+++ b/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild
@@ -23,7 +23,7 @@ DEPEND="
dev-libs/glib:2
gnome-base/gconf:2
media-libs/libcanberra
-   media-sound/pulseaudio[gnome]
+   || ( >=media-sound/pulseaudio-12 

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

2018-07-13 Thread Manuel Rüger
commit: bcaff0dd011274c3f2fd11b7d03c0e040d38cb31
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 12:59:31 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 12:59:31 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcaff0dd

dev-python/docker-py: Remove old

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/docker-py/Manifest  |  1 -
 dev-python/docker-py/docker-py-3.4.0-r1.ebuild | 50 --
 dev-python/docker-py/docker-py-3.4.0.ebuild| 50 --
 3 files changed, 101 deletions(-)

diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index 22afebc1c76..7585d057e66 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -1,4 +1,3 @@
 DIST docker-py-2.4.2.tar.gz 180890 BLAKE2B 
57518a0c8481fde0198100354225cd8a2908af6d3ca2690d98ad80b386ca4c688c7ccd6a34634ce04fb5ab1553b6c0dfbc75d28333a10f28de7188fe2ee7ffde
 SHA512 
3367066b2acd96b85bef28aef00c91d752dc25b3055575b4f2f9c0b981eb4bca81a742bc6da5f97cf039cd9c7d818e3f80101997fe3a2e2c6f3a9c42fd3111c2
 DIST docker-py-2.7.0.tar.gz 196369 BLAKE2B 
dd181dbf32f5afda06e748cb49f15d5fc6ff4a579c64b505308ad0d96913ddc8065d165090ec2b20e1f17a4519988a5665dd7a8c7643ca53aaa4385ceecb1341
 SHA512 
15cf1d8949d71e472f7636ff975cbc4c5f3e18e2d193cb603ade1397a56d0c1ec239167b71be325af99105bc36590a0f0faa1ab010f36fe8baca7807ddfa191b
-DIST docker-py-3.4.0.tar.gz 207877 BLAKE2B 
b9a1d95f934fddc576253f9bb1d3060feaf9671d7bfa16e2c8ce2e672407dd880fa20b0e6956ff49430a20c21fdec2bf44d2a07e49ad854b374ea518a7528464
 SHA512 
90e6e64a911f7602cb71f7b6f0e0174b490254f249fcf3d4ce55a8733391881cc12776737c240263f387c4465707c50a6fa54bf44550cfa7ada808614494a1a5
 DIST docker-py-3.4.1.tar.gz 207885 BLAKE2B 
472f5dde4761b02a2b55c64762a0529dbaecc8aa9f0e24c67770f533341a5ca9c7322bfacba81f99f9305f09d4e5f7d7ccf37201f5e98c33c6f81552a807
 SHA512 
447dccb9129d549886882e6cf0a8ac56d91f7ed57b6aa1dca1942c62d70dc78b92184cbdd9ac5f3445be04cfaadf0b4fba191fb70e223e93c6d1cfbfd334a397

diff --git a/dev-python/docker-py/docker-py-3.4.0-r1.ebuild 
b/dev-python/docker-py/docker-py-3.4.0-r1.ebuild
deleted file mode 100644
index d3e8810d7e6..000
--- a/dev-python/docker-py/docker-py-3.4.0-r1.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 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} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python client for Docker"
-HOMEPAGE="https://github.com/docker/docker-py";
-SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc test"
-
-RDEPEND="
-   >=dev-python/docker-pycreds-0.3.0[${PYTHON_USEDEP}]
-   !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4' )
-   $(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 
'python2_7' )
-"
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
-   dev-python/pytest-runner[${PYTHON_USEDEP}]
-   >=dev-python/pytest-2.9.1[${PYTHON_USEDEP}]
-   )
-   doc? (
-   dev-python/recommonmark[${PYTHON_USEDEP}]
-   >=dev-python/sphinx-1.4.6[${PYTHON_USEDEP}]
-   )
-"
-
-python_compile_all() {
-   if use doc; then
-   sphinx-build docs html || die "docs failed to build"
-   HTML_DOCS=( html/. )
-   fi
-}
-
-python_test() {
-   py.test tests/unit/ || die "tests failed under ${EPYTHON}"
-}

diff --git a/dev-python/docker-py/docker-py-3.4.0.ebuild 
b/dev-python/docker-py/docker-py-3.4.0.ebuild
deleted file mode 100644
index d3e8810d7e6..000
--- a/dev-python/docker-py/docker-py-3.4.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2018 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} )
-
-inherit distutils-r1
-
-DESCRIPTION="Python client for Docker"
-HOMEPAGE="https://github.com/docker/docker-py";
-SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc test"
-
-RDEPEND="
-   >=dev-python/docker-pycreds-0.3.0[${PYTHON_USEDEP}]
-   !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
-   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 
'>=dev-python/backp

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

2018-07-13 Thread Manuel Rüger
commit: aa2691f6f879d63493aa7946e2e2403b9103ee4f
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 12:59:09 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 12:59:09 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa2691f6

dev-python/docker-py: Version bump to 3.4.1

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 dev-python/docker-py/Manifest   |  1 +
 dev-python/docker-py/docker-py-3.4.1.ebuild | 50 +
 2 files changed, 51 insertions(+)

diff --git a/dev-python/docker-py/Manifest b/dev-python/docker-py/Manifest
index 96ed1849b36..22afebc1c76 100644
--- a/dev-python/docker-py/Manifest
+++ b/dev-python/docker-py/Manifest
@@ -1,3 +1,4 @@
 DIST docker-py-2.4.2.tar.gz 180890 BLAKE2B 
57518a0c8481fde0198100354225cd8a2908af6d3ca2690d98ad80b386ca4c688c7ccd6a34634ce04fb5ab1553b6c0dfbc75d28333a10f28de7188fe2ee7ffde
 SHA512 
3367066b2acd96b85bef28aef00c91d752dc25b3055575b4f2f9c0b981eb4bca81a742bc6da5f97cf039cd9c7d818e3f80101997fe3a2e2c6f3a9c42fd3111c2
 DIST docker-py-2.7.0.tar.gz 196369 BLAKE2B 
dd181dbf32f5afda06e748cb49f15d5fc6ff4a579c64b505308ad0d96913ddc8065d165090ec2b20e1f17a4519988a5665dd7a8c7643ca53aaa4385ceecb1341
 SHA512 
15cf1d8949d71e472f7636ff975cbc4c5f3e18e2d193cb603ade1397a56d0c1ec239167b71be325af99105bc36590a0f0faa1ab010f36fe8baca7807ddfa191b
 DIST docker-py-3.4.0.tar.gz 207877 BLAKE2B 
b9a1d95f934fddc576253f9bb1d3060feaf9671d7bfa16e2c8ce2e672407dd880fa20b0e6956ff49430a20c21fdec2bf44d2a07e49ad854b374ea518a7528464
 SHA512 
90e6e64a911f7602cb71f7b6f0e0174b490254f249fcf3d4ce55a8733391881cc12776737c240263f387c4465707c50a6fa54bf44550cfa7ada808614494a1a5
+DIST docker-py-3.4.1.tar.gz 207885 BLAKE2B 
472f5dde4761b02a2b55c64762a0529dbaecc8aa9f0e24c67770f533341a5ca9c7322bfacba81f99f9305f09d4e5f7d7ccf37201f5e98c33c6f81552a807
 SHA512 
447dccb9129d549886882e6cf0a8ac56d91f7ed57b6aa1dca1942c62d70dc78b92184cbdd9ac5f3445be04cfaadf0b4fba191fb70e223e93c6d1cfbfd334a397

diff --git a/dev-python/docker-py/docker-py-3.4.1.ebuild 
b/dev-python/docker-py/docker-py-3.4.1.ebuild
new file mode 100644
index 000..d3e8810d7e6
--- /dev/null
+++ b/dev-python/docker-py/docker-py-3.4.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2018 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} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for Docker"
+HOMEPAGE="https://github.com/docker/docker-py";
+SRC_URI="https://github.com/docker/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+IUSE="doc test"
+
+RDEPEND="
+   >=dev-python/docker-pycreds-0.3.0[${PYTHON_USEDEP}]
+   !~dev-python/requests-2.18.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.14.2[${PYTHON_USEDEP}]
+   >=dev-python/six-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 
'>=dev-python/backports-ssl-match-hostname-3.5[${PYTHON_USEDEP}]' 'python2_7' 
'python3_4' )
+   $(python_gen_cond_dep '>=dev-python/ipaddress-1.0.16[${PYTHON_USEDEP}]' 
'python2_7' )
+"
+DEPEND="
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   ${RDEPEND}
+   >=dev-python/mock-1.0.1[${PYTHON_USEDEP}]
+   dev-python/pytest-runner[${PYTHON_USEDEP}]
+   >=dev-python/pytest-2.9.1[${PYTHON_USEDEP}]
+   )
+   doc? (
+   dev-python/recommonmark[${PYTHON_USEDEP}]
+   >=dev-python/sphinx-1.4.6[${PYTHON_USEDEP}]
+   )
+"
+
+python_compile_all() {
+   if use doc; then
+   sphinx-build docs html || die "docs failed to build"
+   HTML_DOCS=( html/. )
+   fi
+}
+
+python_test() {
+   py.test tests/unit/ || die "tests failed under ${EPYTHON}"
+}



[gentoo-commits] data/glep:master commit in: /

2018-07-13 Thread Ulrich Müller
commit: 8cea4f9e8c19acc0fbd77d3900f34e1bbc826f94
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul  2 18:55:29 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jul 13 13:03:29 2018 +
URL:https://gitweb.gentoo.org/data/glep.git/commit/?id=8cea4f9e

glep-0077: Initial draft of General Resolution pre-GLEP

 glep-0077.rst | 302 ++
 1 file changed, 302 insertions(+)

diff --git a/glep-0077.rst b/glep-0077.rst
new file mode 100644
index 000..551e1b3
--- /dev/null
+++ b/glep-0077.rst
@@ -0,0 +1,302 @@
+---
+GLEP: 77
+Title: Gentoo General Resolution
+Author: Michał Górny 
+Type: Standards Track
+Status: Draft
+Version: 1
+Created: 2018-06-22
+Last-Modified: 2018-06-28
+Post-History: 2018-06-28
+Content-Type: text/x-rst
+---
+
+Abstract
+
+
+This GLEP defines the procedure of a ‘general resolution’ that can
+be used by developers to enforce Council's responsibility towards their
+electorate.  The general resolution can be used to overrule a Council
+decision or disband the Council with a 2:1 majority vote of all
+developers.
+
+
+Motivation
+==
+
+The GLEP 39 metastructure defines the Council as an elected body
+of Gentoo developer representatives.  The Council decides on global
+issues and handles appeals from disciplinary actions.  While the Council
+should naturally represent their electorate, the metastructure does not
+define a precise way of exercising this responsibility.  [#GLEP39]_
+
+In the past, a few developers have expressed their dissatisfaction with
+some of the Council decisions.  However, the Council members lacked
+a good way of determining whether those opinions expressed the feelings
+of the majority of developers, or were limited to a small group.
+At the same time, disagreeing developers had no way of answering
+the same question without raising inevitable hostility between
+developers.
+
+This GLEP aims to introduce a mechanism of a ‘general resolution’ that
+can be used by developers to override Council decisions, or initiate
+a vote of no confidence against the Council.  This introduces a clear
+method of expressing and verifying disagreement with the proceedings
+of the Council at any point during its term.
+
+This mechanism is inspired by the ‘general resolution’ defined
+by the Debian Constitution [#DEBIAN-CONSTITUTION]_.  It has been
+originally suggested by Matthias Maier [#MAIER-20180403]_.
+
+
+Specification
+=
+
+Possible subjects for a general resolution
+--
+
+The general resolution provides for the following possibilities:
+
+1. Overruling (voiding) any Council decision, provided that:
+
+   a. the Council decision in question is final (i.e. a general
+  resolution can not be used to bypass the Council),
+
+   b. the decision can be made without disclosing any information that
+  is considered confidential (e.g. appeals of disciplinary actions
+  cannot be the subject of a general resolution).
+
+2. Initiating a vote of no confidence against Council members, resulting
+   in a new Council election.
+
+
+Formal procedure of a general resolution
+
+
+The general resolution mechanism is defined as follows:
+
+1. A Gentoo developer (or a group of Gentoo developers) defines
+   the subject of the general resolution --- the specific motion
+   to void, or other request as defined in the previous section.
+
+2. The requestor gathers initial support for their proposal.  In order
+   for general resolution vote to be possible, the request needs to
+   be supported by *N1* developers.  Developers second the request
+   by stating their approval along with the subject of the general
+   resolution.  This shall happen in text form with an OpenPGP-signed
+   e-mail sent to the original requestor.
+
+3. Once the signed approvals of *N1* developers are collected,
+   the requestor sends a ‘Request for a general resolution’
+   to the gentoo-project mailing list.  The request shall include
+   the subject of the resolution, all signed approvals
+   from the seconding developers, and a rationale for further
+   discussion.  The discussion is open for at least two weeks.
+
+4. The elections project shall confirm that all formal requirements
+   for a general resolution are fulfilled, and shall state a timeline
+   for voting.  The voting period shall start no sooner than two weeks
+   after the request, and shall last for two weeks.  All active Gentoo
+   developers at the time when the request is published on the mailing
+   list are eligible to vote.
+
+5. The developers vote on the motion of the general resolution.
+   In order for the motion to pass, it must result in a ratio
+   of positive to negative votes of at least 2:1.  Additionally,
+   the number of positive votes must be at least *N2*.
+
+The developer counts are initially defined as:
+
+- *N1*: 2 times the square

[gentoo-commits] data/glep:master commit in: /

2018-07-13 Thread Ulrich Müller
commit: 573c9897765362b1ee258637167434edd96de84f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Jul  4 06:48:04 2018 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jul 13 13:05:44 2018 +
URL:https://gitweb.gentoo.org/data/glep.git/commit/?id=573c9897

glep-0077: Add 'credits' section

 glep-0077.rst | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/glep-0077.rst b/glep-0077.rst
index 551e1b3..db86b4e 100644
--- a/glep-0077.rst
+++ b/glep-0077.rst
@@ -6,7 +6,7 @@ Type: Standards Track
 Status: Draft
 Version: 1
 Created: 2018-06-22
-Last-Modified: 2018-06-28
+Last-Modified: 2018-07-04
 Post-History: 2018-06-28
 Content-Type: text/x-rst
 ---
@@ -280,6 +280,16 @@ Reference Implementation
 n/a
 
 
+Credits
+===
+
+- Matthias Maier proposed the initial idea and proofread this GLEP
+  thoroughly.
+
+- Ulrich Müller provided an early review of this GLEP and discovered
+  that the original quorum proposal violated the monotonicity criterion.
+
+
 References
 ==
 



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

2018-07-13 Thread Manuel Rüger
commit: 997bdb3a20a4becf3db3934bb9fa86466977e154
Author: Manuel Rüger  gentoo  org>
AuthorDate: Fri Jul 13 13:31:27 2018 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Fri Jul 13 13:31:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=997bdb3a

sys-apps/fwupd: Drop -Werror for uefi plugin build

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 sys-apps/fwupd/fwupd-1.1.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-apps/fwupd/fwupd-1.1.0.ebuild 
b/sys-apps/fwupd/fwupd-1.1.0.ebuild
index 4bf84845fd0..431667267fa 100644
--- a/sys-apps/fwupd/fwupd-1.1.0.ebuild
+++ b/sys-apps/fwupd/fwupd-1.1.0.ebuild
@@ -78,6 +78,8 @@ src_prepare() {
default
sed -e "s/'--create'/'--absolute-name', '--create'/" \
-i data/tests/builder/meson.build || die
+   sed -e "/'-Werror',/d" \
+   -i plugins/uefi/efi/meson.build || die
vala_src_prepare
 }
 



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

2018-07-13 Thread Mikle Kolyada
commit: 296af55cf6e683dfadbfcd53fb9b992d9dc1c4e1
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:34:32 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:21 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=296af55c

dev-qt/qtwebchannel: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtwebchannel/qtwebchannel-5.9.6.ebuild 
b/dev-qt/qtwebchannel/qtwebchannel-5.9.6.ebuild
index 7f4acf242e8..ff1e54522c7 100644
--- a/dev-qt/qtwebchannel/qtwebchannel-5.9.6.ebuild
+++ b/dev-qt/qtwebchannel/qtwebchannel-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for integrating C++ and QML applications with 
HTML/JavaScript clients"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 fi
 
 IUSE="qml"



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

2018-07-13 Thread Mikle Kolyada
commit: 54a0056e5a0c2f28ff46f981fe9ad3bfc14cf7e4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:35:15 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:23 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54a0056e

dev-qt/qtsql: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-qt/qtsql/qtsql-5.9.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtsql/qtsql-5.9.6-r1.ebuild 
b/dev-qt/qtsql/qtsql-5.9.6-r1.ebuild
index 325786e35c9..e4c0d1add85 100644
--- a/dev-qt/qtsql/qtsql-5.9.6-r1.ebuild
+++ b/dev-qt/qtsql/qtsql-5.9.6-r1.ebuild
@@ -9,7 +9,7 @@ DESCRIPTION="SQL abstraction library for the Qt5 framework"
 SLOT=5/$(ver_cut 1-3) # bug 639140
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE="freetds mysql oci8 odbc postgres +sqlite"



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

2018-07-13 Thread Mikle Kolyada
commit: 24db8e60b65167a29f32b0ef9247cc2b1b52e505
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:36:23 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:28 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24db8e60

dev-qt/qtvirtualkeyboard: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.9.6.ebuild 
b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.9.6.ebuild
index 21fd992d37c..ce15ddc115d 100644
--- a/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.9.6.ebuild
+++ b/dev-qt/qtvirtualkeyboard/qtvirtualkeyboard-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Virtual keyboard plugin for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~x86 ~amd64-fbsd"
 fi
 
 # TODO: unbudle libraries for more layouts



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

2018-07-13 Thread Mikle Kolyada
commit: 863e9a3fa6faceaffd91a5faf7a24145b7977d17
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:38:07 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:35 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=863e9a3f

dev-qt/qtgraphicaleffects: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.9.6.ebuild 
b/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.9.6.ebuild
index 51a225a5a40..f9cb4a98191 100644
--- a/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.9.6.ebuild
+++ b/dev-qt/qtgraphicaleffects/qtgraphicaleffects-5.9.6.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Set of QML types for adding visual effects to user interfaces"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: 8651790c3d030dbb0505c28bda92f23cc3b64ec6
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:34:14 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:20 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8651790c

dev-qt/qtwidgets: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-qt/qtwidgets/qtwidgets-5.9.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtwidgets/qtwidgets-5.9.6-r1.ebuild 
b/dev-qt/qtwidgets/qtwidgets-5.9.6-r1.ebuild
index ac6d6e09d84..2512fb63819 100644
--- a/dev-qt/qtwidgets/qtwidgets-5.9.6-r1.ebuild
+++ b/dev-qt/qtwidgets/qtwidgets-5.9.6-r1.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Set of components for creating classic desktop-style UIs for the 
Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 # keep IUSE defaults in sync with qtgui



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

2018-07-13 Thread Mikle Kolyada
commit: c5218381d966cb1555e9734a915e0ecd95824ebd
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:33:33 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:18 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5218381

dev-qt/qtgui: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtgui/qtgui-5.9.6.ebuild b/dev-qt/qtgui/qtgui-5.9.6.ebuild
index 3ea435895cd..1b9ac1d6d99 100644
--- a/dev-qt/qtgui/qtgui-5.9.6.ebuild
+++ b/dev-qt/qtgui/qtgui-5.9.6.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="The GUI module and platform plugins for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 # TODO: linuxfb



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

2018-07-13 Thread Mikle Kolyada
commit: 5784966850bbf6066f50e8ddeb164cef44c1d6c8
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:38:21 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:37 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57849668

dev-qt/qtnetwork: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtnetwork/qtnetwork-5.9.6.ebuild 
b/dev-qt/qtnetwork/qtnetwork-5.9.6.ebuild
index f72faeecb6e..6c7ba506da6 100644
--- a/dev-qt/qtnetwork/qtnetwork-5.9.6.ebuild
+++ b/dev-qt/qtnetwork/qtnetwork-5.9.6.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Network abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE="bindist connman libproxy libressl networkmanager +ssl"



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

2018-07-13 Thread Mikle Kolyada
commit: bc80cfc4a42a209fe8b6c1289c011f47b1885194
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:37:19 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:32 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc80cfc4

dev-qt/qtdeclarative: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtdeclarative/qtdeclarative-5.9.6.ebuild 
b/dev-qt/qtdeclarative/qtdeclarative-5.9.6.ebuild
index 231b91da531..358689c3a3b 100644
--- a/dev-qt/qtdeclarative/qtdeclarative-5.9.6.ebuild
+++ b/dev-qt/qtdeclarative/qtdeclarative-5.9.6.ebuild
@@ -8,7 +8,7 @@ inherit python-any-r1 qt5-build
 DESCRIPTION="The QML and Quick modules for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE="gles2 +jit localstorage +widgets xml"



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

2018-07-13 Thread Mikle Kolyada
commit: 74ca6af03ca0b6311fa7479862ed0ec8d8a0ce21
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:37:03 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:30 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74ca6af0

dev-qt/qtdbus: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtdbus/qtdbus-5.9.6.ebuild 
b/dev-qt/qtdbus/qtdbus-5.9.6.ebuild
index b31a0a2f03d..6f34e5cf5c9 100644
--- a/dev-qt/qtdbus/qtdbus-5.9.6.ebuild
+++ b/dev-qt/qtdbus/qtdbus-5.9.6.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Qt5 module for inter-process communication over the D-Bus 
protocol"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: 172d4da5a0ebb8750a402330de991b5d3b3615d0
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:35:44 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:26 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=172d4da5

dev-qt/qtlocation: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtlocation/qtlocation-5.9.6.ebuild 
b/dev-qt/qtlocation/qtlocation-5.9.6.ebuild
index f791b5b325e..a97985c8529 100644
--- a/dev-qt/qtlocation/qtlocation-5.9.6.ebuild
+++ b/dev-qt/qtlocation/qtlocation-5.9.6.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 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~x86"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: e92e4fa6438c62402a8f5faaf7b65e5662cbcd1e
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:40:00 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:44 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e92e4fa6

dev-qt/qtwebengine: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-qt/qtwebengine/qtwebengine-5.9.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qtwebengine/qtwebengine-5.9.6-r1.ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.9.6-r1.ebuild
index 2d2d8d59074..a8c75e67834 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.9.6-r1.ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.9.6-r1.ebuild
@@ -8,7 +8,7 @@ inherit multiprocessing pax-utils python-any-r1 qt5-build
 DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML 
applications"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~x86"
 fi
 
 IUSE="alsa bindist designer geolocation pax_kernel pulseaudio +system-ffmpeg 
+system-icu widgets"



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

2018-07-13 Thread Mikle Kolyada
commit: fcf3c7636c2774751f849433145705bbd5252b40
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:35:31 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:25 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcf3c763

dev-qt/qtsensors: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtsensors/qtsensors-5.9.6.ebuild 
b/dev-qt/qtsensors/qtsensors-5.9.6.ebuild
index d0b0c5b6e6d..6a046697531 100644
--- a/dev-qt/qtsensors/qtsensors-5.9.6.ebuild
+++ b/dev-qt/qtsensors/qtsensors-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Hardware sensor access library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
 # TODO: simulator



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

2018-07-13 Thread Mikle Kolyada
commit: c3e01f4bb852513c6473ec8590285b18b239
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:36:13 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:27 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3e01f4b

dev-qt/qt-docs: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

 dev-qt/qt-docs/qt-docs-5.9.6_p201806072055.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-qt/qt-docs/qt-docs-5.9.6_p201806072055.ebuild 
b/dev-qt/qt-docs/qt-docs-5.9.6_p201806072055.ebuild
index d254f2be332..b2808a6778e 100644
--- a/dev-qt/qt-docs/qt-docs-5.9.6_p201806072055.ebuild
+++ b/dev-qt/qt-docs/qt-docs-5.9.6_p201806072055.ebuild
@@ -24,7 +24,7 @@ SRC_URI="${BASE_URI}/${PV_FULL}qt-everywhere-documentation.7z
 
 LICENSE="FDL-1.3"
 SLOT="5"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 
 IUSE="3d bluetooth charts datavis declarative graphicaleffects +html location
multimedia networkauth +qch script sensors speech virtualkeyboard 
webengine"



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

2018-07-13 Thread Mikle Kolyada
commit: 38b9b1f401cdecfc2aa2f5e274adc0b0434f05bc
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:34:59 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:22 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38b9b1f4

dev-qt/qtwebsockets: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtwebsockets/qtwebsockets-5.9.6.ebuild 
b/dev-qt/qtwebsockets/qtwebsockets-5.9.6.ebuild
index 362a0a81c42..1ae411dbcdd 100644
--- a/dev-qt/qtwebsockets/qtwebsockets-5.9.6.ebuild
+++ b/dev-qt/qtwebsockets/qtwebsockets-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Implementation of the WebSocket protocol for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
 IUSE="qml +ssl"



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

2018-07-13 Thread Mikle Kolyada
commit: bc2556dfc3b999c119661128dc0577ce21f75c05
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:34:00 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:19 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc2556df

dev-qt/qtx11extras: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtx11extras/qtx11extras-5.9.6.ebuild 
b/dev-qt/qtx11extras/qtx11extras-5.9.6.ebuild
index b029cc4254d..ace9790d5e9 100644
--- a/dev-qt/qtx11extras/qtx11extras-5.9.6.ebuild
+++ b/dev-qt/qtx11extras/qtx11extras-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Linux/X11-specific support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: 516427963f674dcd9c4425aa424c4453a230c9e4
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:39:10 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:40 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=51642796

dev-qt/qtpositioning: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtpositioning/qtpositioning-5.9.6.ebuild 
b/dev-qt/qtpositioning/qtpositioning-5.9.6.ebuild
index c698a3ca657..5b78c008bc3 100644
--- a/dev-qt/qtpositioning/qtpositioning-5.9.6.ebuild
+++ b/dev-qt/qtpositioning/qtpositioning-5.9.6.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Physical position determination library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
 IUSE="geoclue qml"



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

2018-07-13 Thread Mikle Kolyada
commit: 853f53b75b82e610a8bdc300f2cadb1610beb07d
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:36:40 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:29 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=853f53b7

dev-qt/qtimageformats: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtimageformats/qtimageformats-5.9.6.ebuild 
b/dev-qt/qtimageformats/qtimageformats-5.9.6.ebuild
index 5b10805b2ac..4793e891a74 100644
--- a/dev-qt/qtimageformats/qtimageformats-5.9.6.ebuild
+++ b/dev-qt/qtimageformats/qtimageformats-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Additional format plugins for the Qt image I/O system"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~hppa ~ppc64 ~x86"
 fi
 
 IUSE="jpeg2k mng"



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

2018-07-13 Thread Mikle Kolyada
commit: 635993c94c51d7e52af9176f14068133b1307695
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:40:21 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:45 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=635993c9

dev-qt/qtscxml: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtscxml/qtscxml-5.9.6.ebuild 
b/dev-qt/qtscxml/qtscxml-5.9.6.ebuild
index 59b06ef2102..5f9558fa4aa 100644
--- a/dev-qt/qtscxml/qtscxml-5.9.6.ebuild
+++ b/dev-qt/qtscxml/qtscxml-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="State Chart XML (SCXML) support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: 2cc241b36145ca813580994866f516776a1b3127
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:38:36 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:38 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cc241b3

dev-qt/qtopengl: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtopengl/qtopengl-5.9.6.ebuild 
b/dev-qt/qtopengl/qtopengl-5.9.6.ebuild
index 5dfd9694402..f41e1ec86bb 100644
--- a/dev-qt/qtopengl/qtopengl-5.9.6.ebuild
+++ b/dev-qt/qtopengl/qtopengl-5.9.6.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="OpenGL support library for the Qt5 framework (deprecated)"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE="gles2"



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

2018-07-13 Thread Mikle Kolyada
commit: 2ce4a2825d8b7cc9fc597c422ac4ab5830de4aad
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:40:36 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce4a282

dev-qt/qtserialport: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtserialport/qtserialport-5.9.6.ebuild 
b/dev-qt/qtserialport/qtserialport-5.9.6.ebuild
index f29b276edef..f6cd95bf26a 100644
--- a/dev-qt/qtserialport/qtserialport-5.9.6.ebuild
+++ b/dev-qt/qtserialport/qtserialport-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Serial port abstraction library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: 4b880ba6afe1bac431a2bae6da49094319933b80
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:37:43 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:34 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b880ba6

dev-qt/qtquickcontrols2: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtquickcontrols2/qtquickcontrols2-5.9.6.ebuild 
b/dev-qt/qtquickcontrols2/qtquickcontrols2-5.9.6.ebuild
index aa6bccf5156..eaa1dfc7862 100644
--- a/dev-qt/qtquickcontrols2/qtquickcontrols2-5.9.6.ebuild
+++ b/dev-qt/qtquickcontrols2/qtquickcontrols2-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Set of next generation Qt Quick controls for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~x86"
 fi
 
 IUSE="widgets"



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

2018-07-13 Thread Mikle Kolyada
commit: 00820de10e94e721ef65d69825b11bb2950f43cb
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:39:43 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:43 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00820de1

dev-qt/qtprintsupport: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtprintsupport/qtprintsupport-5.9.6.ebuild 
b/dev-qt/qtprintsupport/qtprintsupport-5.9.6.ebuild
index b53ccddd18c..50231eb4ee0 100644
--- a/dev-qt/qtprintsupport/qtprintsupport-5.9.6.ebuild
+++ b/dev-qt/qtprintsupport/qtprintsupport-5.9.6.ebuild
@@ -9,7 +9,7 @@ inherit qt5-build
 DESCRIPTION="Printing support library for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE="cups gles2"



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

2018-07-13 Thread Mikle Kolyada
commit: 9c7fa2f66ede4c7d7bf8701d1e034961d9d87c33
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:38:58 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:39 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c7fa2f6

dev-qt/qtpaths: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtpaths/qtpaths-5.9.6.ebuild 
b/dev-qt/qtpaths/qtpaths-5.9.6.ebuild
index bc5bdee2884..fdc78198ff3 100644
--- a/dev-qt/qtpaths/qtpaths-5.9.6.ebuild
+++ b/dev-qt/qtpaths/qtpaths-5.9.6.ebuild
@@ -8,7 +8,7 @@ inherit qt5-build
 DESCRIPTION="Command line client to QStandardPaths"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: 8880ef687e61a7e9878f5b14cd43b28380817b7a
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:39:24 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:41 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8880ef68

dev-qt/qttranslations: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qttranslations/qttranslations-5.9.6.ebuild 
b/dev-qt/qttranslations/qttranslations-5.9.6.ebuild
index 0229115262c..c4c153634d7 100644
--- a/dev-qt/qttranslations/qttranslations-5.9.6.ebuild
+++ b/dev-qt/qttranslations/qttranslations-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Translation files for the Qt5 framework"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
+   KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~x86 ~amd64-fbsd"
 fi
 
 IUSE=""



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

2018-07-13 Thread Mikle Kolyada
commit: 67d7ed226b1333951356424308ed1f5547abf6f2
Author: Mikle Kolyada  gentoo  org>
AuthorDate: Fri Jul 13 13:37:33 2018 +
Commit: Mikle Kolyada  gentoo  org>
CommitDate: Fri Jul 13 13:41:33 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67d7ed22

dev-qt/qtquickcontrols: amd64 stable wrt bug #655664

Package-Manager: Portage-2.3.40, Repoman-2.3.9

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

diff --git a/dev-qt/qtquickcontrols/qtquickcontrols-5.9.6.ebuild 
b/dev-qt/qtquickcontrols/qtquickcontrols-5.9.6.ebuild
index e0dc9411616..f9b2d627bdb 100644
--- a/dev-qt/qtquickcontrols/qtquickcontrols-5.9.6.ebuild
+++ b/dev-qt/qtquickcontrols/qtquickcontrols-5.9.6.ebuild
@@ -7,7 +7,7 @@ inherit qt5-build
 DESCRIPTION="Set of controls used in conjunction with Qt Quick to build 
complete interfaces"
 
 if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
 fi
 
 IUSE="+widgets"



[gentoo-commits] proj/releng:master commit in: releases/weekly/specs/x86/hardened/, releases/weekly/specs/amd64/hardened/, ...

2018-07-13 Thread Ben Kohler
commit: 5ac0fc35f19f0e4325251ae92fb72693148e4f60
Author: Ben Kohler  gentoo  org>
AuthorDate: Fri Jul 13 13:50:51 2018 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Fri Jul 13 13:52:13 2018 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=5ac0fc35

specs: some fixes to livecd/rm for sys-apps/portage tools

 releases/weekly/specs/alpha/installcd-stage2-minimal.spec | 5 -
 releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec  | 5 -
 releases/weekly/specs/amd64/hardened/admincd-stage2.spec  | 5 -
 releases/weekly/specs/amd64/installcd-stage2-minimal.spec | 5 -
 releases/weekly/specs/hppa/installcd-stage2-minimal.spec  | 5 -
 releases/weekly/specs/hppa/installcd-stage2-universal.spec| 5 -
 releases/weekly/specs/ia64/installcd-stage2-minimal.spec  | 5 -
 releases/weekly/specs/ppc/ppc64/installcd-stage2-minimal.spec | 5 -
 releases/weekly/specs/sparc/sparc64/installcd-stage2-minimal.spec | 5 -
 releases/weekly/specs/x86/hardened/admincd-stage2.spec| 5 -
 releases/weekly/specs/x86/hardened/installcd-stage2-minimal.spec  | 5 -
 releases/weekly/specs/x86/installcd-stage2-minimal.spec   | 5 -
 12 files changed, 48 insertions(+), 12 deletions(-)

diff --git a/releases/weekly/specs/alpha/installcd-stage2-minimal.spec 
b/releases/weekly/specs/alpha/installcd-stage2-minimal.spec
index 2a48ad27..939a26bb 100644
--- a/releases/weekly/specs/alpha/installcd-stage2-minimal.spec
+++ b/releases/weekly/specs/alpha/installcd-stage2-minimal.spec
@@ -239,7 +239,10 @@ livecd/rm:
/usr/bin/cpp
/usr/bin/djpeg
/usr/bin/ebuild
+   /usr/bin/egencache
/usr/bin/emerge
+   /usr/bin/emerge-webrsync
+   /usr/bin/emirrordist
/usr/bin/elftoaout
/usr/bin/f77
/usr/bin/g++*
@@ -278,8 +281,8 @@ livecd/rm:
/usr/sbin/archive-conf
/usr/sbin/dispatch-conf
/usr/sbin/emaint
-   /usr/sbin/emerge-webrsync
/usr/sbin/env-update
+   /usr/sbin/etc-update
/usr/sbin/fb*
/usr/sbin/fixpackages
/usr/sbin/quickpkg

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec 
b/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec
index 7b3a9cc3..b663394d 100644
--- a/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec
+++ b/releases/weekly/specs/amd64/hardened/admincd-stage2-selinux.spec
@@ -238,7 +238,10 @@ livecd/rm:
/usr/bin/cpp
/usr/bin/djpeg
/usr/bin/ebuild
+   /usr/bin/egencache
/usr/bin/emerge
+   /usr/bin/emerge-webrsync
+   /usr/bin/emirrordist
/usr/bin/elftoaout
/usr/bin/f77
/usr/bin/g++*
@@ -271,8 +274,8 @@ livecd/rm:
/usr/sbin/archive-conf
/usr/sbin/dispatch-conf
/usr/sbin/emaint
-   /usr/sbin/emerge-webrsync
/usr/sbin/env-update
+   /usr/sbin/etc-update
/usr/sbin/fb*
/usr/sbin/fixpackages
/usr/sbin/quickpkg

diff --git a/releases/weekly/specs/amd64/hardened/admincd-stage2.spec 
b/releases/weekly/specs/amd64/hardened/admincd-stage2.spec
index 1bb200c6..73c334d9 100644
--- a/releases/weekly/specs/amd64/hardened/admincd-stage2.spec
+++ b/releases/weekly/specs/amd64/hardened/admincd-stage2.spec
@@ -238,7 +238,10 @@ livecd/rm:
/usr/bin/cpp
/usr/bin/djpeg
/usr/bin/ebuild
+   /usr/bin/egencache
/usr/bin/emerge
+   /usr/bin/emerge-webrsync
+   /usr/bin/emirrordist
/usr/bin/elftoaout
/usr/bin/f77
/usr/bin/g++*
@@ -271,8 +274,8 @@ livecd/rm:
/usr/sbin/archive-conf
/usr/sbin/dispatch-conf
/usr/sbin/emaint
-   /usr/sbin/emerge-webrsync
/usr/sbin/env-update
+   /usr/sbin/etc-update
/usr/sbin/fb*
/usr/sbin/fixpackages
/usr/sbin/quickpkg

diff --git a/releases/weekly/specs/amd64/installcd-stage2-minimal.spec 
b/releases/weekly/specs/amd64/installcd-stage2-minimal.spec
index 00ffd750..1f94a12c 100644
--- a/releases/weekly/specs/amd64/installcd-stage2-minimal.spec
+++ b/releases/weekly/specs/amd64/installcd-stage2-minimal.spec
@@ -237,7 +237,10 @@ livecd/rm:
/usr/bin/cpp
/usr/bin/djpeg
/usr/bin/ebuild
+   /usr/bin/egencache
/usr/bin/emerge
+   /usr/bin/emerge-webrsync
+   /usr/bin/emirrordist
/usr/bin/elftoaout
/usr/bin/f77
/usr/bin/g++*
@@ -270,8 +273,8 @@ livecd/rm:
/usr/sbin/archive-conf
/usr/sbin/dispatch-conf
/usr/sbin/emaint
-   /usr/sbin/emerge-webrsync
/usr/sbin/env-update
+   /usr/sbin/etc-update
/usr/sbin/fb*
/usr/sbin/fixpackages
/usr/sbin/quickpkg

diff --git a/releases/weekly/specs/hppa/installcd-stage2-minimal.spec 
b/releases/weekly/specs/hppa/installcd-stage2-minimal.spec
index a6df8005..d7f5ab58 100644
--- a/releases/weekly/sp

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

2018-07-13 Thread Johannes Huber
commit: ec70cab0bf0d86ee7cde0a5fb7719f51f0bd5e2b
Author: Johannes Huber  gentoo  org>
AuthorDate: Fri Jul 13 13:54:59 2018 +
Commit: Johannes Huber  gentoo  org>
CommitDate: Fri Jul 13 13:54:59 2018 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=ec70cab0

kde-plasma/plasma-pa: Simplify pulseaudio dep

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild | 2 +-
 kde-plasma/plasma-pa/plasma-pa-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild 
b/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild
index e92f11e134..0bf9a5ab73 100644
--- a/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild
+++ b/kde-plasma/plasma-pa/plasma-pa-5.13.49..ebuild
@@ -23,7 +23,7 @@ DEPEND="
dev-libs/glib:2
gnome-base/gconf:2
media-libs/libcanberra
-   || ( >=media-sound/pulseaudio-12 

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

2018-07-13 Thread Lars Wendler
commit: 5ef0acd5eec99728706985569d929efac2741f78
Author: Lars Wendler  gentoo  org>
AuthorDate: Fri Jul 13 13:42:24 2018 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Fri Jul 13 14:13:46 2018 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ef0acd5

sys-libs/tdb: Bump to version 1.3.16

Package-Manager: Portage-2.3.42, Repoman-2.3.9

 sys-libs/tdb/Manifest  |  1 +
 sys-libs/tdb/tdb-1.3.16.ebuild | 60 ++
 2 files changed, 61 insertions(+)

diff --git a/sys-libs/tdb/Manifest b/sys-libs/tdb/Manifest
index ff2b22dc100..c3e97896e8f 100644
--- a/sys-libs/tdb/Manifest
+++ b/sys-libs/tdb/Manifest
@@ -1,4 +1,5 @@
 DIST tdb-1.3.13.tar.gz 498002 BLAKE2B 
bf29b535acf3838942820a7dc841f635c457999d1ab7456bc598d73c79404dea9ab397eec1725d739bdc9b4a46b6b0ad068ad36d0e7247afccb795d410b15b06
 SHA512 
d12382a2f75e56d62d151df3390b3ae41c7502d67582812ec6da30913b13feb7ee98572ab5ad5b5ed3bceb41666c3154855727cf5ce249ef583c033819c05f0f
 DIST tdb-1.3.14.tar.gz 500877 BLAKE2B 
f372c789184f1dbf0829c2e0b43c868a8a7c253b23a597b7695b07f92c1dfbd6978152e965702b0adab9e0a4b19be75ce120196e601314895a9f0be578f036d6
 SHA512 
776b736d5c61cb796e19731141a85606cbe90e09943d813e0b7bf45066656d4a92ba449d0116664f65b9d8e5729bde4526170bbb1b7b46fd7a2fac1508f3841b
 DIST tdb-1.3.15.tar.gz 502627 BLAKE2B 
44352033c421875f02491551dd8b1aa4a821a5e0070d6a32fc4f7a61535c98114325718c673fe163ad692f797aa2e9c26ca27a69a04459ba8340bbd8caacdfc5
 SHA512 
553246d5e7a7c22ea1b00962ac635d608f6d2344201862e796cad3b1a20610da1f5652ec9dbcb0187867fbd25f36247fcc34e9b4b2c3488c15d7202c9fb13bbb
+DIST tdb-1.3.16.tar.gz 504330 BLAKE2B 
686b6b3d026094a0219f2c5d76f7258cf2f96538f614fa9078ca00368ad64c4e93f2e184c98f3d6f480fec909d94105fdf527d96f3b4ea291d81bb63420d2a99
 SHA512 
7b17852986e48a32f3f8f303dd2a26503a69fcf7849f22f51483334c9abda9f189b521679e51b4ee5a80197a8f304a084dde0f56d92cfe953d3a4ede557526d2
 DIST tdb-1.3.8.tar.gz 494106 BLAKE2B 
3ac4418b642472859c37c20477ffcc255be6e435b84f59ee634fb5b80caa38aadbcc761fd2daf7c797f9d9a120dcf6e597b31306f8c67d3e890570dd94e4263f
 SHA512 
9a7040206bbaae419a296714fe14fcbd3b67c0cef2b0f33563d52336aac2fe814049f5136a148fb049a273bb36fe81e3d777df58869c93f45d6e42b4adf9970b

diff --git a/sys-libs/tdb/tdb-1.3.16.ebuild b/sys-libs/tdb/tdb-1.3.16.ebuild
new file mode 100644
index 000..aca8bf7fb4f
--- /dev/null
+++ b/sys-libs/tdb/tdb-1.3.16.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2018 Gentoo Foundation
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="threads"
+
+inherit waf-utils multilib-minimal python-single-r1
+
+DESCRIPTION="A simple database API"
+HOMEPAGE="http://tdb.samba.org/";
+SRC_URI="http://samba.org/ftp/tdb/${P}.tar.gz";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~arm-linux ~x86-linux"
+IUSE="python"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="python? ( ${PYTHON_DEPS} )"
+DEPEND="
+   ${RDEPEND}
+   ${PYTHON_DEPS}
+   app-text/docbook-xml-dtd:4.2"
+
+WAF_BINARY="${S}/buildtools/bin/waf"
+
+src_prepare() {
+   default
+   python_fix_shebang .
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   local extra_opts=()
+   if ! multilib_is_native_abi || ! use python; then
+   extra_opts+=( --disable-python )
+   fi
+
+   waf-utils_src_configure \
+   "${extra_opts[@]}"
+}
+
+multilib_src_compile() {
+   # need to avoid parallel building, this looks like the sanest way with 
waf-utils/multiprocessing eclasses
+   unset MAKEOPTS
+   waf-utils_src_compile
+}
+
+multilib_src_test() {
+   # the default src_test runs 'make test' and 'make check', letting
+   # the tests fail occasionally (reason: unknown)
+   emake check
+}
+
+multilib_src_install() {
+   waf-utils_src_install
+}



  1   2   3   >