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

2019-10-17 Thread Zac Medico
commit: dd5b2cef22827af1f16a3121401549fc5cccf60b
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 05:15:46 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 05:30:04 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd5b2cef

app-emulation/libpod: Bump to version 1.6.2

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/libpod/Manifest|   1 +
 app-emulation/libpod/libpod-1.6.2.ebuild | 142 +++
 2 files changed, 143 insertions(+)

diff --git a/app-emulation/libpod/Manifest b/app-emulation/libpod/Manifest
index d81a0348f34..24023149209 100644
--- a/app-emulation/libpod/Manifest
+++ b/app-emulation/libpod/Manifest
@@ -1 +1,2 @@
 DIST libpod-1.5.1.tar.gz 8010274 BLAKE2B 
4928b45a6d86fe14ff7359c856da664d14fc578dcff095c984eb0fa3b4aed42576cf610f19a9015064f406109d79cd6df60eb0b2990e5058de1e4f9f7d9ae7ee
 SHA512 
d9d422c4189adb840cfe3dd8b7e8278412f0ea17e4ccd2cdf4f4b134a87b1add61bbdca1c8d9db3db846c272e2ab3f624bf9e4aac005b78d0c7e161af898dc02
+DIST libpod-1.6.2.tar.gz 8270781 BLAKE2B 
5d86533ddc821f731292e126102a31d651956c275a22c5c4ab3c57b9351832a1d85d75be877343c60af47716f9d1776315b3bf41fb17037d02fee10cf88efba3
 SHA512 
68192dda019623e3f3af9f82f946be8efbaf3e2c54acf23f62af67ac1ca093dd4dba11d2a7c1c950b99060393ed7e945752c1eaa9eada0dfc30f3dcaac8e1c04

diff --git a/app-emulation/libpod/libpod-1.6.2.ebuild 
b/app-emulation/libpod/libpod-1.6.2.ebuild
new file mode 100644
index 000..9c1a41555c1
--- /dev/null
+++ b/app-emulation/libpod/libpod-1.6.2.ebuild
@@ -0,0 +1,142 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+EGIT_COMMIT="f3ffda1e08f19e9a6a88484136b5eed76533f21a"
+EGO_PN="github.com/containers/${PN}"
+
+inherit bash-completion-r1 flag-o-matic golang-vcs-snapshot
+
+DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
+HOMEPAGE="https://github.com/containers/libpod/;
+SRC_URI="https://github.com/containers/libpod/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+
+KEYWORDS="~amd64"
+IUSE="apparmor btrfs ostree +rootless selinux"
+REQUIRED_USE="!selinux? ( !ostree )"
+RESTRICT="test"
+
+COMMON_DEPEND="
+   app-crypt/gpgme:=
+   >=app-emulation/conmon-2.0.0
+   >=app-emulation/runc-1.0.0_rc6
+   dev-libs/libassuan:=
+   dev-libs/libgpg-error:=
+   sys-fs/lvm2
+   sys-libs/libseccomp:=
+
+   apparmor? ( sys-libs/libapparmor )
+   btrfs? ( sys-fs/btrfs-progs )
+   ostree? (
+   dev-libs/glib:=
+   dev-util/ostree:=
+   )
+   rootless? ( app-emulation/slirp4netns )
+   selinux? ( sys-libs/libselinux:= )
+"
+DEPEND="
+   ${COMMON_DEPEND}
+   dev-go/go-md2man"
+RDEPEND="${COMMON_DEPEND}"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+
+   # Disable installation of python modules here, since those are
+   # installed by separate ebuilds.
+   sed -e '/^GIT_.*/d' \
+   -e 's/$(GO) build/$(GO) build -v -work -x/' \
+   -e 's/^\(install:.*\) install\.python$/\1/' \
+   -i Makefile || die
+}
+
+src_compile() {
+   # Filter unsupported linker flags
+   filter-flags '-Wl,*'
+
+   [[ -f hack/apparmor_tag.sh ]] || die
+   if use apparmor; then
+   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
+   fi
+
+   [[ -f hack/btrfs_installed_tag.sh ]] || die
+   if use btrfs; then
+   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
+   hack/btrfs_installed_tag.sh || die
+   fi
+
+   [[ -f hack/ostree_tag.sh ]] || die
+   if use ostree; then
+   echo -e "#!/bin/sh\necho ostree" > hack/ostree_tag.sh || die
+   else
+   echo -e "#!/bin/sh\necho containers_image_ostree_stub" > 
hack/ostree_tag.sh || die
+   fi
+
+   [[ -f hack/selinux_tag.sh ]] || die
+   if use selinux; then
+   echo -e "#!/bin/sh\necho selinux" > hack/selinux_tag.sh || die
+   else
+   echo -e "#!/bin/sh\ntrue" > hack/selinux_tag.sh || die
+   fi
+
+   env -u GOCACHE -u XDG_CACHE_HOME GOPATH="${WORKDIR}/${P}" 
GOBIN="${WORKDIR}/${P}/bin" \
+   emake all \
+   GIT_BRANCH=master \
+   GIT_BRANCH_CLEAN=master \
+   COMMIT_NO="${EGIT_COMMIT}" \
+   GIT_COMMIT="${EGIT_COMMIT}"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+
+   insinto /etc/containers
+   newins test/registries.conf registries.conf.example
+   newins 

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

2019-10-17 Thread Joonas Niilola
commit: 27000e4616074765f75846d75c8bb71f56ae36a1
Author: Joshua Downer  gmail  com>
AuthorDate: Thu Oct 10 17:34:05 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 05:25:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27000e46

dev-python/munkres: remove older version

Signed-off-by: Joshua Downer  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13271
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/munkres/Manifest  |  1 -
 dev-python/munkres/munkres-1.0.5.4-r2.ebuild | 26 --
 2 files changed, 27 deletions(-)

diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest
index 176a084c91b..96b7a1321e2 100644
--- a/dev-python/munkres/Manifest
+++ b/dev-python/munkres/Manifest
@@ -1,4 +1,3 @@
 DIST munkres-1.0.12.tar.gz 12126 BLAKE2B 
23fbfa95f36ecb386cd04a375b046c3749e5cbee727d72c4d25e250fc86de80720bda897400f03d8e079ff7bd6589845836f7656eaa4f18192eb64a7258946d3
 SHA512 
9049fd350b739c9095b6e1da8fe0041210d4723ab8c0c6a7fc9943392bebf9eb224c6f420c8158a47607277e13fba2f3c7803ee222d58e8e3720d5647f44e596
-DIST munkres-1.0.5.4.tar.gz 43050 BLAKE2B 
e36f870e7932c73133db9233d2305d4ae045fb5e19ef4b99978348574ac8b9c7c161730a70e8f7aec8685ff060f5f616d7148d48c0bc635abda9ec5c8e68efa4
 SHA512 
a2b1577b75f3099cae57750543c985ab60097d5fa70481d3c6d8394dd55d0d8f99aacf5db625be7fa12772e976cf34d4b51c7841c3a24ee9df8214a68aa66aed
 DIST munkres-1.0.8.tar.gz 9277 BLAKE2B 
9680a5b8bd20a4207ac295ce535899c4ab123d9e26ae44d652c55601ac62f345a683cb133cc50b276dc1330a11a918bdd26c0f7832d908e05d47dc795592b38a
 SHA512 
e0afda8b91e51d177b9e2dc66ccacce849649d1a7d0e756884ac030acf4080076aa428182c5e9366613ee16db338ba7dcd3c38977de0888781b1885f08cb8236
 DIST munkres-1.1.2.tar.gz 11186 BLAKE2B 
2ba5ab7ce85fdc06598829123ed334209f37c0fa4f82e863c78220db82e9b8b4c51c7369042bdac6e9b33b4d580145bdd37b5743f0b3f511141782588803cb0e
 SHA512 
4a8b698f53812303f5020b4fc357f859a63d97370fe311d16ae959addd9cacee65667e430cd0d00496e423c1f0c7a3c8d4219ba49600a982de323fadd2c03bec

diff --git a/dev-python/munkres/munkres-1.0.5.4-r2.ebuild 
b/dev-python/munkres/munkres-1.0.5.4-r2.ebuild
deleted file mode 100644
index c7d6bc0d8b5..000
--- a/dev-python/munkres/munkres-1.0.5.4-r2.ebuild
+++ /dev/null
@@ -1,26 +0,0 @@
-# Copyright 1999-2015 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=5
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit distutils-r1
-
-DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem"
-HOMEPAGE="https://pypi.org/project/munkres/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="test doc"
-
-python_test() {
-   "${PYTHON}" "${PN}.py" || die
-}
-
-src_install() {
-   distutils-r1_src_install
-   use doc && dohtml -r html/
-}



[gentoo-commits] repo/gentoo:master commit in: net-mail/mu/

2019-10-17 Thread Joonas Niilola
commit: 35b54264dd1e1241d0ba39df318ac5493dd8b434
Author: Matt Smith  offtopica  uk>
AuthorDate: Sun Oct 13 17:07:38 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 05:25:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35b54264

net-mail/mu: bump to 1.3.5

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Suggested-by: Arthur Evstifeev  ap4y.me>
Signed-off-by: Matt Smith  offtopica.uk>
Signed-off-by: Joonas Niilola  gentoo.org>

 net-mail/mu/Manifest|  1 +
 net-mail/mu/mu-1.3.5.ebuild | 86 +
 2 files changed, 87 insertions(+)

diff --git a/net-mail/mu/Manifest b/net-mail/mu/Manifest
index 8ad2c794d41..80c511a1a96 100644
--- a/net-mail/mu/Manifest
+++ b/net-mail/mu/Manifest
@@ -1,3 +1,4 @@
 DIST mu-0.9.18.tar.gz 2250319 BLAKE2B 
7eb83a797eccff706ac6b264a7d56feae80e40f370e190e0a94f2524dd73a8bfdb35599909f90d0a2b87fc513bbcf2b00fa307a3e4d0b6718ebdc7f7fcdc6df0
 SHA512 
47104d18547de0871782abc4e1c6dbf1f9b2489410e5716043861bf8d973d33d2138de7d7ac568b300ca86ae9f1a0fda0fa9555ad9a5938771336ef958183546
 DIST mu-1.0.tar.gz 2273670 BLAKE2B 
a771b00159142fa4a671d07cf9de6f0f941c432ddee31f19606c260ba3dfef857a36a333f5ede4ca30be88d7b7eae28e996e15a8deebd96971b341f0f72bfbbb
 SHA512 
49b0b86f22e9a6ace1fc3fd6e7a8a523aa9edf092b953d59f59a1ef7311c8c546a261a1a186e3285cea788be20c816c70ac08d1514f700ff97258a2012ad394d
 DIST mu-1.3.3.tar.gz 2304029 BLAKE2B 
e2bbf3f7aa22ba2e1fd64b0e35df3e857dd3ec7874d08d36350a5d80abb36c667dee3cb43adf481dfbabd2a7944e84207d1913cb2525e637878a86fa70b213af
 SHA512 
ab7844aef1ee6526a8b4ac1b98f6dc323fa01be6ac999f7b8a57b1c2aee6eec60a5643589c0477e8fede2f5140a8aa9050f00e52a30aaa1cd6b1cdbd66e441bf
+DIST mu-1.3.5.tar.gz 2305222 BLAKE2B 
ff6025cf053d7c2880855ec32953a2881ce8bc7d468082f13e45e7684dd41bd7906cbc9a619fd27bd4860bb953e4a547c3d22ea9a7fb4c645825c755ee33b5f9
 SHA512 
5d7eccec296affbe6e2e31d2204672f8ecac43f1a0c93673f983378fcf7ad8a050662097ec58603251eed31b499054d6c453a2a4e2c70dfdd896c430559b95c0

diff --git a/net-mail/mu/mu-1.3.5.ebuild b/net-mail/mu/mu-1.3.5.ebuild
new file mode 100644
index 000..96b9d511592
--- /dev/null
+++ b/net-mail/mu/mu-1.3.5.ebuild
@@ -0,0 +1,86 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools elisp-common
+
+DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and 
indexing"
+HOMEPAGE="http://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu;
+SRC_URI="https://github.com/djcb/mu/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="emacs guile"
+
+# net-mail/mailutils also installes /usr/bin/mu.  Block it until somebody
+# really wants both installed at the same time.
+DEPEND="
+   dev-libs/gmime:3.0
+   >=dev-libs/xapian-1.4
+   dev-libs/glib:2
+   emacs? ( >=virtual/emacs-24.4 )
+   guile? ( >=dev-scheme/guile-2.0 )
+   !net-mail/mailutils"
+RDEPEND="${DEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+SITEFILE="70mu-gentoo.el"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   # Note: Author recommends that packages do not build the webkit toy
+   # Todo: Add gtk USE-flag
+
+   econf --disable-gtk \
+   --disable-webkit \
+   $(use_enable emacs mu4e) \
+   $(use_enable guile)
+}
+
+src_install () {
+   dobin mu/mu
+   dodoc AUTHORS HACKING NEWS NEWS.org TODO README README.org ChangeLog
+   if use emacs; then
+   elisp-install ${PN} mu4e/*.el mu4e/*.elc
+   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
+   doinfo mu4e/mu4e.info
+   fi
+
+   doman man/mu-add.1 man/mu-bookmarks.5 man/mu-cfind.1 man/mu-easy.1 \
+ man/mu-extract.1 man/mu-find.1 man/mu-help.1 man/mu-index.1 \
+ man/mu-mkdir.1 man/mu-query.7 man/mu-remove.1 \
+ man/mu-script.1 man/mu-server.1 man/mu-verify.1 \
+ man/mu-view.1 man/mu.1
+
+   if use guile; then
+ doinfo guile/mu-guile.info
+   fi
+}
+
+src_test () {
+   # Note: Fails with parallel make
+   emake -j1 check
+}
+
+pkg_postinst() {
+   if use emacs; then
+   einfo "To use mu4e you need to configure it in your .emacs file"
+   einfo "See the manual for more information:"
+   einfo "http://www.djcbsoftware.nl/code/mu/mu4e/;
+   fi
+
+   elog "If you upgrade from an older major version,"
+   elog "then you need to rebuild your mail index."
+
+   use emacs && elisp-site-regen
+}
+
+pkg_postrm() {
+   use emacs && elisp-site-regen
+}



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

2019-10-17 Thread Joonas Niilola
commit: 8a5ef1976264fa06c9f14c3a72304a678b1be182
Author: Hasan ÇALIŞIR  psauxit  com>
AuthorDate: Mon Oct 14 17:38:01 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 05:25:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a5ef197

dev-db/mysqltuner: bump to 1.7.17

Version bump to 1.7.17.
Drop password.patch.

Closes: https://bugs.gentoo.org/696562
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Hasan ÇALIŞIR  psauxit.com>
Closes: https://github.com/gentoo/gentoo/pull/13301
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-db/mysqltuner/Manifest |  1 +
 dev-db/mysqltuner/mysqltuner-1.7.17.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-db/mysqltuner/Manifest b/dev-db/mysqltuner/Manifest
index b25d9096e33..dbfa8381d38 100644
--- a/dev-db/mysqltuner/Manifest
+++ b/dev-db/mysqltuner/Manifest
@@ -1,3 +1,4 @@
 DIST mysqltuner-1.6.18.tar.gz 169074 BLAKE2B 
e138e29db2f0b1abf88b2d8268732fd9f05043abf320d8d97493d6abb3880e5664eaea39392406297e3125789ffc172f6347922ba14a00af16beb3f6f8080802
 SHA512 
8067b7ac4a4fe7398ee2cdc463a30042f46972f97680b49912dca46fd1d835989aa4115568dbe5473ff28c4d956bf0ad70537318db788dd56bc93ad220e6bcb6
 DIST mysqltuner-1.7.13.tar.gz 26721104 BLAKE2B 
76a51c5e3ff897feed6bb6348fb5b09ab3fce0eae403880a3be96203522c9006980dbf6966e8c7e7784168c71e149cc57941ffbadba049b68b30993ed4d519d1
 SHA512 
88842bef1968f3150be49a5e82cdd0349bf0975f6ff0d8188117240ed2161ae1e44722077ff661ce31b55d0d4fc90fa4bb1972d96405113d82255718cebe0d53
 DIST mysqltuner-1.7.15.tar.gz 212839 BLAKE2B 
cd90091063e6ae7737cb79f6936d14577352c5b6c016e0efcf82cfcabcbc1acf9f646258bebc835ede368d5ea5594e269d165cb01ab8c980e5fdc68f3c605747
 SHA512 
b1ea9c91df3fb68d7ae9e54014b4d9095122f10750f7807e0c72d9859db9a60bc8698d337f4dda6e1bd89ce4ff97fa4299f5dbf650f6fa03012c309e761f
+DIST mysqltuner-1.7.17.tar.gz 213429 BLAKE2B 
166ed3d657a529ce7c8e92648bcbf6da91f23a45222a8df0c6b79a7a23ffa7a1d066f2d3e2f651eb0aecc4032b75b7976cc8ea5e789ee2e7c990549b422fe30d
 SHA512 
ded34cc9532eb407ba72b5669caab874c948031606b99e414b397bbd2a150801203f7af66a01b3d39a35cec570abbac09af9e2a5f594d1c36d9b3141b7bb12d5

diff --git a/dev-db/mysqltuner/mysqltuner-1.7.17.ebuild 
b/dev-db/mysqltuner/mysqltuner-1.7.17.ebuild
new file mode 100644
index 000..f9caa472df4
--- /dev/null
+++ b/dev-db/mysqltuner/mysqltuner-1.7.17.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN=MySQLTuner-perl
+
+DESCRIPTION="MySQLTuner is a high-performance MySQL tuning script"
+HOMEPAGE="https://github.com/major/MySQLTuner-perl;
+SRC_URI="https://github.com/major/${MY_PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-lang/perl
+   virtual/mysql
+   virtual/perl-Getopt-Long"
+
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+DOCS=( USAGE.md CONTRIBUTING.md INTERNALS.md basic_passwords.txt 
vulnerabilities.csv )
+
+src_install() {
+   einstalldocs
+
+   newbin "${PN}.pl" "${PN}"
+
+   # Passwords and vulnerabilities are meant to be fed
+   # to the script uncompressed.
+   docompress -x "/usr/share/doc/${PF}/basic_passwords.txt" 
"/usr/share/doc/${PF}/vulnerabilities.csv"
+}



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

2019-10-17 Thread Joonas Niilola
commit: 58acfcc47de4857c165c1437d72db01d5dd069e6
Author: Joshua Downer  gmail  com>
AuthorDate: Thu Oct 10 17:34:40 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 05:25:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58acfcc4

dev-python/munkres: version bump 1.1.2

Closes: https://bugs.gentoo.org/696654
Signed-off-by: Joshua Downer  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-python/munkres/Manifest |  1 +
 dev-python/munkres/munkres-1.1.2.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-python/munkres/Manifest b/dev-python/munkres/Manifest
index 06f82d0713d..176a084c91b 100644
--- a/dev-python/munkres/Manifest
+++ b/dev-python/munkres/Manifest
@@ -1,3 +1,4 @@
 DIST munkres-1.0.12.tar.gz 12126 BLAKE2B 
23fbfa95f36ecb386cd04a375b046c3749e5cbee727d72c4d25e250fc86de80720bda897400f03d8e079ff7bd6589845836f7656eaa4f18192eb64a7258946d3
 SHA512 
9049fd350b739c9095b6e1da8fe0041210d4723ab8c0c6a7fc9943392bebf9eb224c6f420c8158a47607277e13fba2f3c7803ee222d58e8e3720d5647f44e596
 DIST munkres-1.0.5.4.tar.gz 43050 BLAKE2B 
e36f870e7932c73133db9233d2305d4ae045fb5e19ef4b99978348574ac8b9c7c161730a70e8f7aec8685ff060f5f616d7148d48c0bc635abda9ec5c8e68efa4
 SHA512 
a2b1577b75f3099cae57750543c985ab60097d5fa70481d3c6d8394dd55d0d8f99aacf5db625be7fa12772e976cf34d4b51c7841c3a24ee9df8214a68aa66aed
 DIST munkres-1.0.8.tar.gz 9277 BLAKE2B 
9680a5b8bd20a4207ac295ce535899c4ab123d9e26ae44d652c55601ac62f345a683cb133cc50b276dc1330a11a918bdd26c0f7832d908e05d47dc795592b38a
 SHA512 
e0afda8b91e51d177b9e2dc66ccacce849649d1a7d0e756884ac030acf4080076aa428182c5e9366613ee16db338ba7dcd3c38977de0888781b1885f08cb8236
+DIST munkres-1.1.2.tar.gz 11186 BLAKE2B 
2ba5ab7ce85fdc06598829123ed334209f37c0fa4f82e863c78220db82e9b8b4c51c7369042bdac6e9b33b4d580145bdd37b5743f0b3f511141782588803cb0e
 SHA512 
4a8b698f53812303f5020b4fc357f859a63d97370fe311d16ae959addd9cacee65667e430cd0d00496e423c1f0c7a3c8d4219ba49600a982de323fadd2c03bec

diff --git a/dev-python/munkres/munkres-1.1.2.ebuild 
b/dev-python/munkres/munkres-1.1.2.ebuild
new file mode 100644
index 000..4c71cf67310
--- /dev/null
+++ b/dev-python/munkres/munkres-1.1.2.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python{3_5,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Module implementing munkres algorithm for the Assignment Problem"
+HOMEPAGE="https://pypi.org/project/munkres/;
+SRC_URI="https://github.com/bmc/munkres/archive/release-${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+S="${WORKDIR}/${PN}-release-${PV}"
+
+python_test() {
+   "${EPYTHON}" ${PN}.py || die
+}



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

2019-10-17 Thread Joonas Niilola
commit: 0ccfd04651a72a7e9cf32076b671ab1df8932705
Author: Christian Strahl  gmail  com>
AuthorDate: Sun Oct 13 12:46:47 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 05:25:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ccfd046

dev-util/clion: version bump to 2019.2.4

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Christian Strahl  gmail.com>
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/clion/Manifest  |  1 +
 dev-util/clion/clion-2019.2.4.ebuild | 80 
 2 files changed, 81 insertions(+)

diff --git a/dev-util/clion/Manifest b/dev-util/clion/Manifest
index 884263a7b6c..877bc690892 100644
--- a/dev-util/clion/Manifest
+++ b/dev-util/clion/Manifest
@@ -1 +1,2 @@
 DIST clion-2019.2.3.tar.gz 495323742 BLAKE2B 
b4747a4805ec7d8776e3c52c4f94a2d12c1156eff9c0a65e5e275bed269f472d3e8d410e2ef41b2e1504408cf7dfe3f2b8ccee06c5cdba4c8664ad5e7a1873fd
 SHA512 
34599a92b9522cbc6bee6505a26d24b9d4ac727100b2b30414199ac3ec03f73d81c5811f66b35ad51e846eb6fcf66651c522207bb5f471adbf5c5e25d5e7d7d5
+DIST clion-2019.2.4.tar.gz 495317026 BLAKE2B 
24e2dfbd9253b1b2bf70f8259ee09c6439d5623c12c78a7af60a9bdf00cdb48c7d2967150b5dca98c588b91573f2928288dbb57416b6fe397e3f7ea4b4d7bc23
 SHA512 
fbac7c3f6ea8b7f38031ad9a46dfd918683d66c317cca954d5f0f3b729040e23ac2ac1ea611bd6eff4c41ea3f03816ec95c4786475ab6f49dcf9b3d612d6c067

diff --git a/dev-util/clion/clion-2019.2.4.ebuild 
b/dev-util/clion/clion-2019.2.4.ebuild
new file mode 100644
index 000..fbe93d313de
--- /dev/null
+++ b/dev-util/clion/clion-2019.2.4.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop eutils
+
+DESCRIPTION="A complete toolset for C and C++ development"
+HOMEPAGE="https://www.jetbrains.com/clion;
+SRC_URI="https://download.jetbrains.com/cpp/CLion-${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="|| ( IDEA IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )
+   Apache-1.1 Apache-2.0 BSD BSD-2 CC0-1.0 CDDL-1.1 CPL-0.5 CPL-1.0
+   EPL-1.0 EPL-2.0 GPL-2 GPL-2-with-classpath-exception GPL-3 ISC JDOM
+   LGPL-2.1+ LGPL-3 MIT MPL-1.0 MPL-1.1 OFL public-domain PSF-2 UoI-NCSA 
ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="bindist mirror splitdebug"
+IUSE="custom-jdk"
+
+# RDEPENDS may cause false positives in repoman.
+# clion requires cmake and gdb at runtime to build and debug C/C++ projects
+RDEPEND="
+   dev-util/cmake
+   sys-devel/gdb
+   !custom-jdk? ( virtual/jdk )"
+
+QA_PREBUILT="opt/${P}/*"
+
+src_prepare() {
+   default
+
+   local remove_me=(
+   bin/gdb/linux
+   bin/lldb/linux
+   bin/cmake
+   license/CMake*
+   lib/pty4j-native/linux/ppc64le
+   )
+
+   use amd64 || remove_me+=( bin/fsnotifier64 
lib/pty4j-native/linux/x86_64)
+   use arm || remove_me+=( bin/fsnotifier-arm )
+   use x86 || remove_me+=( bin/fsnotifier lib/pty4j-native/linux/x86)
+
+   use custom-jdk || remove_me+=( jbr )
+
+   rm -rv "${remove_me[@]}" || die
+}
+
+src_install() {
+   local dir="/opt/${P}"
+
+   insinto "${dir}"
+   doins -r *
+   fperms 755 "${dir}"/bin/{clion.sh,clang/linux/clang{d,-tidy}}
+
+   if use amd64; then
+   fperms 755 "${dir}"/bin/fsnotifier64
+   fi
+   if use arm; then
+   fperms 755 "${dir}"/bin/fsnotifier-arm
+   fi
+   if use x86; then
+   fperms 755 "${dir}"/bin/fsnotifier
+   fi
+
+   if use custom-jdk; then
+   if [[ -d jbr ]]; then
+   fperms 755 
"${dir}"/jbr/bin/{jaotc,java,javac,jdb,jjs,jrunscript,keytool,pack200,rmid,rmiregistry,serialver,unpack200}
+   fi
+   fi
+
+   make_wrapper "${PN}" "${dir}/bin/${PN}.sh"
+   newicon "bin/${PN}.svg" "${PN}.svg"
+   make_desktop_entry "${PN}" "clion" "${PN}" "Development;IDE;"
+
+   # recommended by: 
https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
+   dodir /usr/lib/sysctl.d/
+   echo "fs.inotify.max_user_watches = 524288" > 
"${D}/usr/lib/sysctl.d/30-clion-inotify-watches.conf" || die
+}



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

2019-10-17 Thread Joonas Niilola
commit: 20ac4a108e041307a12f1d501804224fe77aa2ea
Author: Christian Strahl  gmail  com>
AuthorDate: Sun Oct 13 12:55:02 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 05:25:38 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20ac4a10

dev-util/clion: remove old versions

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Christian Strahl  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/13274
Signed-off-by: Joonas Niilola  gentoo.org>

 dev-util/clion/Manifest  |  1 -
 dev-util/clion/clion-2019.2.3.ebuild | 80 
 2 files changed, 81 deletions(-)

diff --git a/dev-util/clion/Manifest b/dev-util/clion/Manifest
index 877bc690892..2bf848621f9 100644
--- a/dev-util/clion/Manifest
+++ b/dev-util/clion/Manifest
@@ -1,2 +1 @@
-DIST clion-2019.2.3.tar.gz 495323742 BLAKE2B 
b4747a4805ec7d8776e3c52c4f94a2d12c1156eff9c0a65e5e275bed269f472d3e8d410e2ef41b2e1504408cf7dfe3f2b8ccee06c5cdba4c8664ad5e7a1873fd
 SHA512 
34599a92b9522cbc6bee6505a26d24b9d4ac727100b2b30414199ac3ec03f73d81c5811f66b35ad51e846eb6fcf66651c522207bb5f471adbf5c5e25d5e7d7d5
 DIST clion-2019.2.4.tar.gz 495317026 BLAKE2B 
24e2dfbd9253b1b2bf70f8259ee09c6439d5623c12c78a7af60a9bdf00cdb48c7d2967150b5dca98c588b91573f2928288dbb57416b6fe397e3f7ea4b4d7bc23
 SHA512 
fbac7c3f6ea8b7f38031ad9a46dfd918683d66c317cca954d5f0f3b729040e23ac2ac1ea611bd6eff4c41ea3f03816ec95c4786475ab6f49dcf9b3d612d6c067

diff --git a/dev-util/clion/clion-2019.2.3.ebuild 
b/dev-util/clion/clion-2019.2.3.ebuild
deleted file mode 100644
index fbe93d313de..000
--- a/dev-util/clion/clion-2019.2.3.ebuild
+++ /dev/null
@@ -1,80 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop eutils
-
-DESCRIPTION="A complete toolset for C and C++ development"
-HOMEPAGE="https://www.jetbrains.com/clion;
-SRC_URI="https://download.jetbrains.com/cpp/CLion-${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="|| ( IDEA IDEA_Academic IDEA_Classroom IDEA_OpenSource IDEA_Personal )
-   Apache-1.1 Apache-2.0 BSD BSD-2 CC0-1.0 CDDL-1.1 CPL-0.5 CPL-1.0
-   EPL-1.0 EPL-2.0 GPL-2 GPL-2-with-classpath-exception GPL-3 ISC JDOM
-   LGPL-2.1+ LGPL-3 MIT MPL-1.0 MPL-1.1 OFL public-domain PSF-2 UoI-NCSA 
ZLIB"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="bindist mirror splitdebug"
-IUSE="custom-jdk"
-
-# RDEPENDS may cause false positives in repoman.
-# clion requires cmake and gdb at runtime to build and debug C/C++ projects
-RDEPEND="
-   dev-util/cmake
-   sys-devel/gdb
-   !custom-jdk? ( virtual/jdk )"
-
-QA_PREBUILT="opt/${P}/*"
-
-src_prepare() {
-   default
-
-   local remove_me=(
-   bin/gdb/linux
-   bin/lldb/linux
-   bin/cmake
-   license/CMake*
-   lib/pty4j-native/linux/ppc64le
-   )
-
-   use amd64 || remove_me+=( bin/fsnotifier64 
lib/pty4j-native/linux/x86_64)
-   use arm || remove_me+=( bin/fsnotifier-arm )
-   use x86 || remove_me+=( bin/fsnotifier lib/pty4j-native/linux/x86)
-
-   use custom-jdk || remove_me+=( jbr )
-
-   rm -rv "${remove_me[@]}" || die
-}
-
-src_install() {
-   local dir="/opt/${P}"
-
-   insinto "${dir}"
-   doins -r *
-   fperms 755 "${dir}"/bin/{clion.sh,clang/linux/clang{d,-tidy}}
-
-   if use amd64; then
-   fperms 755 "${dir}"/bin/fsnotifier64
-   fi
-   if use arm; then
-   fperms 755 "${dir}"/bin/fsnotifier-arm
-   fi
-   if use x86; then
-   fperms 755 "${dir}"/bin/fsnotifier
-   fi
-
-   if use custom-jdk; then
-   if [[ -d jbr ]]; then
-   fperms 755 
"${dir}"/jbr/bin/{jaotc,java,javac,jdb,jjs,jrunscript,keytool,pack200,rmid,rmiregistry,serialver,unpack200}
-   fi
-   fi
-
-   make_wrapper "${PN}" "${dir}/bin/${PN}.sh"
-   newicon "bin/${PN}.svg" "${PN}.svg"
-   make_desktop_entry "${PN}" "clion" "${PN}" "Development;IDE;"
-
-   # recommended by: 
https://confluence.jetbrains.com/display/IDEADEV/Inotify+Watches+Limit
-   dodir /usr/lib/sysctl.d/
-   echo "fs.inotify.max_user_watches = 524288" > 
"${D}/usr/lib/sysctl.d/30-clion-inotify-watches.conf" || die
-}



[gentoo-commits] repo/gentoo:master commit in: net-mail/mu/

2019-10-17 Thread Joonas Niilola
commit: 503c17703776681741a1a6c01d392feec7d2edd9
Author: Matt Smith  offtopica  uk>
AuthorDate: Sun Oct 13 17:09:06 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 05:25:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=503c1770

net-mail/mu: drop 1.3.3

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Matt Smith  offtopica.uk>
Closes: https://github.com/gentoo/gentoo/pull/13246
Signed-off-by: Joonas Niilola  gentoo.org>

 net-mail/mu/Manifest|  1 -
 net-mail/mu/mu-1.3.3.ebuild | 86 -
 2 files changed, 87 deletions(-)

diff --git a/net-mail/mu/Manifest b/net-mail/mu/Manifest
index 80c511a1a96..81283ede139 100644
--- a/net-mail/mu/Manifest
+++ b/net-mail/mu/Manifest
@@ -1,4 +1,3 @@
 DIST mu-0.9.18.tar.gz 2250319 BLAKE2B 
7eb83a797eccff706ac6b264a7d56feae80e40f370e190e0a94f2524dd73a8bfdb35599909f90d0a2b87fc513bbcf2b00fa307a3e4d0b6718ebdc7f7fcdc6df0
 SHA512 
47104d18547de0871782abc4e1c6dbf1f9b2489410e5716043861bf8d973d33d2138de7d7ac568b300ca86ae9f1a0fda0fa9555ad9a5938771336ef958183546
 DIST mu-1.0.tar.gz 2273670 BLAKE2B 
a771b00159142fa4a671d07cf9de6f0f941c432ddee31f19606c260ba3dfef857a36a333f5ede4ca30be88d7b7eae28e996e15a8deebd96971b341f0f72bfbbb
 SHA512 
49b0b86f22e9a6ace1fc3fd6e7a8a523aa9edf092b953d59f59a1ef7311c8c546a261a1a186e3285cea788be20c816c70ac08d1514f700ff97258a2012ad394d
-DIST mu-1.3.3.tar.gz 2304029 BLAKE2B 
e2bbf3f7aa22ba2e1fd64b0e35df3e857dd3ec7874d08d36350a5d80abb36c667dee3cb43adf481dfbabd2a7944e84207d1913cb2525e637878a86fa70b213af
 SHA512 
ab7844aef1ee6526a8b4ac1b98f6dc323fa01be6ac999f7b8a57b1c2aee6eec60a5643589c0477e8fede2f5140a8aa9050f00e52a30aaa1cd6b1cdbd66e441bf
 DIST mu-1.3.5.tar.gz 2305222 BLAKE2B 
ff6025cf053d7c2880855ec32953a2881ce8bc7d468082f13e45e7684dd41bd7906cbc9a619fd27bd4860bb953e4a547c3d22ea9a7fb4c645825c755ee33b5f9
 SHA512 
5d7eccec296affbe6e2e31d2204672f8ecac43f1a0c93673f983378fcf7ad8a050662097ec58603251eed31b499054d6c453a2a4e2c70dfdd896c430559b95c0

diff --git a/net-mail/mu/mu-1.3.3.ebuild b/net-mail/mu/mu-1.3.3.ebuild
deleted file mode 100644
index 96b9d511592..000
--- a/net-mail/mu/mu-1.3.3.ebuild
+++ /dev/null
@@ -1,86 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools elisp-common
-
-DESCRIPTION="Set of tools to deal with Maildirs, in particular, searching and 
indexing"
-HOMEPAGE="http://www.djcbsoftware.nl/code/mu/ https://github.com/djcb/mu;
-SRC_URI="https://github.com/djcb/mu/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="emacs guile"
-
-# net-mail/mailutils also installes /usr/bin/mu.  Block it until somebody
-# really wants both installed at the same time.
-DEPEND="
-   dev-libs/gmime:3.0
-   >=dev-libs/xapian-1.4
-   dev-libs/glib:2
-   emacs? ( >=virtual/emacs-24.4 )
-   guile? ( >=dev-scheme/guile-2.0 )
-   !net-mail/mailutils"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-SITEFILE="70mu-gentoo.el"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   # Note: Author recommends that packages do not build the webkit toy
-   # Todo: Add gtk USE-flag
-
-   econf --disable-gtk \
-   --disable-webkit \
-   $(use_enable emacs mu4e) \
-   $(use_enable guile)
-}
-
-src_install () {
-   dobin mu/mu
-   dodoc AUTHORS HACKING NEWS NEWS.org TODO README README.org ChangeLog
-   if use emacs; then
-   elisp-install ${PN} mu4e/*.el mu4e/*.elc
-   elisp-site-file-install "${FILESDIR}/${SITEFILE}"
-   doinfo mu4e/mu4e.info
-   fi
-
-   doman man/mu-add.1 man/mu-bookmarks.5 man/mu-cfind.1 man/mu-easy.1 \
- man/mu-extract.1 man/mu-find.1 man/mu-help.1 man/mu-index.1 \
- man/mu-mkdir.1 man/mu-query.7 man/mu-remove.1 \
- man/mu-script.1 man/mu-server.1 man/mu-verify.1 \
- man/mu-view.1 man/mu.1
-
-   if use guile; then
- doinfo guile/mu-guile.info
-   fi
-}
-
-src_test () {
-   # Note: Fails with parallel make
-   emake -j1 check
-}
-
-pkg_postinst() {
-   if use emacs; then
-   einfo "To use mu4e you need to configure it in your .emacs file"
-   einfo "See the manual for more information:"
-   einfo "http://www.djcbsoftware.nl/code/mu/mu4e/;
-   fi
-
-   elog "If you upgrade from an older major version,"
-   elog "then you need to rebuild your mail index."
-
-   use emacs && elisp-site-regen
-}
-
-pkg_postrm() {
-   use emacs && elisp-site-regen
-}



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

2019-10-17 Thread Zac Medico
commit: ec8011d459d4d4aeb09c92f623699ba358177a6f
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 04:58:49 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 04:58:49 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec8011d4

app-emulation/buildah: Fix 1.11.3 GIT_COMMIT

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/buildah/buildah-1.11.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/buildah/buildah-1.11.3.ebuild 
b/app-emulation/buildah/buildah-1.11.3.ebuild
index 6a58e5f4b30..42661d17b64 100644
--- a/app-emulation/buildah/buildah-1.11.3.ebuild
+++ b/app-emulation/buildah/buildah-1.11.3.ebuild
@@ -12,7 +12,7 @@ SLOT="0"
 IUSE="ostree selinux"
 EGO_PN="${HOMEPAGE#*//}"
 EGIT_COMMIT="v${PV}"
-GIT_COMMIT="0bafbfe"
+GIT_COMMIT="bdd78ad"
 SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
 RDEPEND="app-crypt/gpgme:=
app-emulation/skopeo



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

2019-10-17 Thread Zac Medico
commit: 1671df03467cc6249de10f043ccddfacb3d93a9d
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 04:43:42 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 04:43:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1671df03

app-emulation/buildah: Bump to version 1.11.3

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-emulation/buildah/Manifest  |  1 +
 app-emulation/buildah/buildah-1.11.3.ebuild | 57 +
 2 files changed, 58 insertions(+)

diff --git a/app-emulation/buildah/Manifest b/app-emulation/buildah/Manifest
index 1e2514b010a..cc53b820d9a 100644
--- a/app-emulation/buildah/Manifest
+++ b/app-emulation/buildah/Manifest
@@ -1 +1,2 @@
 DIST buildah-1.11.2.tar.gz 10128075 BLAKE2B 
ad8f4253b62cd7709bf5ae530d002190c1850da6bbfa7dff2281de0592422eccc67a4ba6e52f7a82d6c1b320b986237a84d0ffaaf9b3b1b93822a54621365250
 SHA512 
f491d96d5bb4d0aa03981fb58d24f36c2e3928179c8fb79e85f323ce9a65ae6da05b816d86ae43f94a83a1b2445b315f93ca28b531436d9b4e5861e4adef2aac
+DIST buildah-1.11.3.tar.gz 10429884 BLAKE2B 
2d433a128d115c6b2f3a9d246d41406993905dee357237796cea3295036d026ca93f8c98ca992cfebfa574ab0d5e7b974fd356a146b7cde58986166bc18a5645
 SHA512 
07fff3f8c044ad01a663bf5470b19f75568ce741b3bb45f656200099ba559622597111ede3e20331dc06139f2e58d962d92bf0fdd00284ca6ed05b5b66500975

diff --git a/app-emulation/buildah/buildah-1.11.3.ebuild 
b/app-emulation/buildah/buildah-1.11.3.ebuild
new file mode 100644
index 000..6a58e5f4b30
--- /dev/null
+++ b/app-emulation/buildah/buildah-1.11.3.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit bash-completion-r1 golang-vcs-snapshot
+
+KEYWORDS="~amd64"
+DESCRIPTION="A tool that facilitates building OCI images"
+HOMEPAGE="https://github.com/containers/buildah;
+LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
+SLOT="0"
+IUSE="ostree selinux"
+EGO_PN="${HOMEPAGE#*//}"
+EGIT_COMMIT="v${PV}"
+GIT_COMMIT="0bafbfe"
+SRC_URI="https://${EGO_PN}/archive/${EGIT_COMMIT}.tar.gz -> ${P}.tar.gz"
+RDEPEND="app-crypt/gpgme:=
+   app-emulation/skopeo
+   dev-libs/libgpg-error:=
+   dev-libs/libassuan:=
+   sys-fs/lvm2:=
+   sys-libs/libseccomp:=
+   selinux? ( sys-libs/libselinux:= )"
+DEPEND="${RDEPEND}"
+RESTRICT="test"
+REQUIRED_USE="!selinux? ( !ostree )"
+S="${WORKDIR}/${P}/src/${EGO_PN}"
+
+src_prepare() {
+   default
+   sed -e 's|^\(GIT_COMMIT ?= \).*|\1'${GIT_COMMIT}'|' -i Makefile || die
+
+   [[ -f ostree_tag.sh ]] || die
+   use ostree || { echo -e "#!/bin/sh\necho containers_image_ostree_stub" 
> \
+   ostree_tag.sh || die; }
+
+   [[ -f selinux_tag.sh ]] || die
+   use selinux || { echo -e "#!/bin/sh\ntrue" > \
+   selinux_tag.sh || die; }
+}
+
+src_compile() {
+   export -n GOCACHE XDG_CACHE_HOME
+   GOPATH="${WORKDIR}/${P}" emake all
+}
+
+src_install() {
+   dodoc CHANGELOG.md CONTRIBUTING.md README.md install.md 
troubleshooting.md
+   doman docs/*.1
+   dodoc -r docs/tutorials
+   dobin ${PN} imgtype
+   dobashcomp contrib/completions/bash/buildah
+}
+
+src_test() {
+   GOPATH="${WORKDIR}/${P}" emake test-unit
+}



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

2019-10-17 Thread Zac Medico
commit: 4b75dd06be8e6a26032999d9e06ee50301f378dd
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 04:39:07 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 04:39:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b75dd06

sys-apps/yarn: Bump to version 1.19.1

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/yarn/Manifest   |  1 +
 sys-apps/yarn/yarn-1.19.1.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/sys-apps/yarn/Manifest b/sys-apps/yarn/Manifest
index dae8824ee59..032560775f1 100644
--- a/sys-apps/yarn/Manifest
+++ b/sys-apps/yarn/Manifest
@@ -5,4 +5,5 @@ DIST yarn-v1.15.2.tar.gz 1169927 BLAKE2B 
1ebf899b1f34dd3b6fea4fa001b1edda62dd4c8
 DIST yarn-v1.16.0.tar.gz 1172930 BLAKE2B 
1dbb754ae0af3b9666bb03057f587854407b3587fc4304e8282c759d5ea0cbee12eed58e526808893d3cf8e29c4ec69b13a28a6f6908bcdb8c9126d1a408
 SHA512 
71f7a6c8696758a035ce8a5452079b4cf7fc0b85a43c867e4c99a4970704009e2eea858fb49780cebb1a99a18687ff9bd5759ef16e75cb3008982e0059b591d6
 DIST yarn-v1.17.3.tar.gz 1240577 BLAKE2B 
a5b0fdd014928181da63a322bdc030e4aefd4033d27f49a37225aa2cb3199339dd06e9f74aaa442bfb4692b0470fda40102a41b52a1369c8b84282bae5bc46a6
 SHA512 
0a003ca3b9d165a42f99e17f581c76142edff56ff45f9f53d8868b62a80ca3aeb7ef07e9e66304b0cdd85e826d294b299e998324a97f8061619ea4beb0e37b84
 DIST yarn-v1.19.0.tar.gz 1242633 BLAKE2B 
55aacab6e44c0a44f39ef9e116444043784272ab3d328f44e818cc45a94203f6e73a6d66f51dbdec46a0694890817dde3148be0fc3c931de79c0e2164f5e755f
 SHA512 
40b88ca23f991e8da44f5ef1d6dedeaceea0cd1fbdc526b9cfb2e67a2d6a60cd528f7ef088816febb910707fa792c86c3b47f4dc89970a57e410a5209ec32b79
+DIST yarn-v1.19.1.tar.gz 1243585 BLAKE2B 
01d19b9e2dabf40988b8dac9b3b48a43e7f15d0e4a3f75aad40afb8c811d6387bc476dbb7c6c841af33fe6010b98eaa4969b32cd590f9092b7552e8e9a152960
 SHA512 
8019df6cbf6b618d391add1c8c986cfec8aa4171d89596a54e32b79d79f640edb4c5b90814fa1bf8b947e3830be3b19c478554f7fd9d61c93505614cd096afc7
 DIST yarn-v1.9.4.tar.gz 937393 BLAKE2B 
188e270b2a8b5b357b85101eda2552d675e3f41d30bc7b45266f34831cbcfc00feefe452c420f3aaefad7423c2af342d5fdb859ec6420faf689b680b5acda00f
 SHA512 
1e3a908cf47a2fe46d7ce8db549b91cd0b3372c7c43c6b0029f1060b044a0a65e5bc3323f4ed6baf20bbbcb49ba358a6bb8f2691a591e4d3e8a01bc31372cb5b

diff --git a/sys-apps/yarn/yarn-1.19.1.ebuild b/sys-apps/yarn/yarn-1.19.1.ebuild
new file mode 100644
index 000..6366d148523
--- /dev/null
+++ b/sys-apps/yarn/yarn-1.19.1.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_P="${PN}-v${PV}"
+
+DESCRIPTION="Fast, reliable, and secure node dependency management"
+HOMEPAGE="https://yarnpkg.com;
+SRC_URI="https://github.com/yarnpkg/yarn/releases/download/v${PV}/${MY_P}.tar.gz;
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="!dev-util/cmdtest
+   net-libs/nodejs"
+DEPEND="${RDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+   sed -i 's/"installationMethod": "tar"/"installationMethod": 
"portage"/g' "${S}/package.json" || die
+}
+
+src_install() {
+   local install_dir="/usr/$(get_libdir)/node_modules/yarn" path shebang
+   insinto "${install_dir}"
+   doins -r .
+   dosym "../$(get_libdir)/node_modules/yarn/bin/yarn.js" "/usr/bin/yarn"
+
+   while read -r -d '' path; do
+   read -r shebang < "${ED}${path}" || die
+   [[ "${shebang}" == \#\!* ]] || continue
+   fperms +x "${path}"
+   done < <(find "${ED}" -type f -printf '/%P\0' || die)
+}



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

2019-10-17 Thread Zac Medico
commit: 50ffdc20817f73a7fe5c4ec9998b298e07df06ec
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 04:31:51 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 04:32:42 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ffdc20

app-text/calibre: Bump to version 4.2.0

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 app-text/calibre/Manifest |   1 +
 app-text/calibre/calibre-4.2.0.ebuild | 271 ++
 2 files changed, 272 insertions(+)

diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest
index cdc02b5864f..718285fb3a1 100644
--- a/app-text/calibre/Manifest
+++ b/app-text/calibre/Manifest
@@ -1,3 +1,4 @@
 DIST calibre-3.47.1.tar.xz 38710008 BLAKE2B 
60915345dd756d085386af61128e92569304be64aadbc21b69973e93adf3fb5cc88f7250153c238ecf423546f408bfc094b5bce329a54e7f080f831c4a8c23c1
 SHA512 
010796b3ac3fc6adcdf26dbc7966946be0f48b2684e1317da11d77fa55151d1f6ad2b86adf3c8eced5559823567e6672bfdfd953c17e6cc978894544131fb6bd
 DIST calibre-3.48.0.tar.xz 38777408 BLAKE2B 
9a7fae20487ae93120cfdc06a312a42d54d68935fdd2bc18dc41be5f8d359c79eae24e0409ba8e7f4df85e2f073f80ce6bab56cba0638cead6693600fa93cb41
 SHA512 
6cee28fb560e2e00b8ac2f32756f094146c6fe744cfc343d68f1fb54b3f8b0ca16129a5b35018af54a103790faa2eb03ac186c01003f21c874d2ed5218441220
 DIST calibre-4.1.0.tar.xz 36231016 BLAKE2B 
85987b8b8b37deb40f9ebb7d918e15e9a763cca00cf26eab841d0035309bd066f675d50d1ca94cb65e512d1964bac4241b3006aa38cac14ec0cb5e2d6416d2a8
 SHA512 
9a4766ccec830e553b5165f9a3ba6b4d0dbadee8b6a6547fef1dc3ca51adc886d9c3d751af23f4ff3a30a0fe03606c70ab57245ea38bfb486c111fd0e82e
+DIST calibre-4.2.0.tar.xz 36319240 BLAKE2B 
a37baae9c77ae2535782c5ee2095a33874c394b7f6415f4aac2752330c6cac3972723e75b90d38955a67a5df90de4318b740ca357b7149f610245f1895482437
 SHA512 
653dec2ba7a7ca122425619dc148765aea5cd60ede7fab23c1b10b0a7ba70f055bc6167732d4e21f161f37b313a7f2f9dde81240e1226a11a24b1195c9e38866

diff --git a/app-text/calibre/calibre-4.2.0.ebuild 
b/app-text/calibre/calibre-4.2.0.ebuild
new file mode 100644
index 000..a435558ef33
--- /dev/null
+++ b/app-text/calibre/calibre-4.2.0.ebuild
@@ -0,0 +1,271 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 )
+PYTHON_REQ_USE="sqlite,ssl"
+
+inherit bash-completion-r1 desktop toolchain-funcs python-single-r1 xdg-utils
+
+DESCRIPTION="Ebook management application"
+HOMEPAGE="https://calibre-ebook.com/;
+SRC_URI="https://download.calibre-ebook.com/${PV}/${P}.tar.xz;
+
+LICENSE="
+   GPL-3+
+   GPL-3
+   GPL-2+
+   GPL-2
+   GPL-1+
+   LGPL-3+
+   LGPL-2.1+
+   LGPL-2.1
+   BSD
+   MIT
+   Old-MIT
+   Apache-2.0
+   public-domain
+   || ( Artistic GPL-1+ )
+   CC-BY-3.0
+   OFL-1.1
+   PSF-2
+"
+KEYWORDS="~amd64 ~arm ~x86"
+SLOT="0"
+IUSE="ios +udisks"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+COMMON_DEPEND="${PYTHON_DEPS}
+   >=app-text/hunspell-1.7:=
+   >=app-text/podofo-0.9.6_pre20171027:=
+   >=app-text/poppler-0.26.5[qt5]
+   >=dev-libs/chmlib-0.40:=
+   dev-libs/glib:2=
+   >=dev-libs/icu-57.1:=
+   dev-libs/libinput:=
+   >=dev-python/apsw-3.25.2_p1[${PYTHON_USEDEP}]
+   >=dev-python/beautifulsoup-3.0.5:python-2[${PYTHON_USEDEP}]
+   >=dev-python/chardet-3.0.3[${PYTHON_USEDEP}]
+   >=dev-python/cssselect-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/css-parser-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/dbus-python-1.2.4[${PYTHON_USEDEP}]
+   >=dev-libs/dbus-glib-0.106
+   >=sys-apps/dbus-1.10.8
+   dev-python/dnspython[${PYTHON_USEDEP}]
+   >=dev-python/feedparser-5.2.1[${PYTHON_USEDEP}]
+   >=dev-python/html5-parser-0.4.3[${PYTHON_USEDEP}]
+   >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}]
+   >=dev-python/markdown-3.0.1[${PYTHON_USEDEP}]
+   >=dev-python/mechanize-0.3.5[${PYTHON_USEDEP}]
+   >=dev-python/msgpack-0.5.6[${PYTHON_USEDEP}]
+   >=dev-python/netifaces-0.10.5[${PYTHON_USEDEP}]
+   >=dev-python/pillow-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/psutil-4.3.0[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.3.1[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.5.3[${PYTHON_USEDEP}]
+   
>=dev-python/PyQt5-5.12[gui,svg,widgets,network,printsupport,${PYTHON_USEDEP}]
+   >=dev-python/PyQtWebEngine-5.12[${PYTHON_USEDEP}]
+   dev-python/regex[${PYTHON_USEDEP}]
+   dev-qt/qtcore:5=
+   dev-qt/qtdbus:5=
+   dev-qt/qtgui:5=
+   >=dev-qt/qtwebengine-5.12
+   dev-qt/qtwidgets:5=
+   dev-util/desktop-file-utils
+   dev-util/gtk-update-icon-cache
+   media-fonts/liberation-fonts
+   media-libs/fontconfig:=
+   >=media-libs/freetype-2:=
+   >=media-libs/libmtp-1.1.11:=
+   >=media-libs/libwmf-0.2.8
+   >=media-gfx/optipng-0.7.6
+   

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

2019-10-17 Thread Matthew Thode
commit: 1f54c73a2b6f35bd0a5650245df24a5559c18bf6
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 04:15:39 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 04:20:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f54c73a

app-admin/puppetserver: 6.7.1 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-admin/puppetserver/Manifest | 2 +-
 .../{puppetserver-6.7.0.ebuild => puppetserver-6.7.1.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppetserver/Manifest b/app-admin/puppetserver/Manifest
index f2e098f3ad7..57ed6811be8 100644
--- a/app-admin/puppetserver/Manifest
+++ b/app-admin/puppetserver/Manifest
@@ -1,3 +1,3 @@
 DIST puppetserver-6.5.0.tar.gz 76080713 BLAKE2B 
0562128001a24eae6cec071a366e16ab3ce5b0babbe50330ecddd13ab3dbfd35d6cb23634770e4bd7904cd231752ce923d4af8dc42d783cc137f300efcb05fb2
 SHA512 
d871f3817c370ddd08e8d791deb1a30aa50ab0d801192ebfb5ef225d8dce21885175fe4e9911287437b687b2bcbf5a098d8b9511b24bd05fdf4854575a686cfe
 DIST puppetserver-6.6.0.tar.gz 59095750 BLAKE2B 
adbc08a68a1382106c43d27604c2cef52bd1d9875c5f555320d97d31dcf9d248c88baa2d6dfd37a855010fda76ad4d273a7bd5eca77bb216aabf6a120e41cee0
 SHA512 
2b43092752e246027a437398d6d23a4085caa2956a1453cec2e62f1001fca1c98bddca0a9d90c178ce9c89a06c26edcaee49416c1b8a4941e2bc4b6b5bb1fe0e
-DIST puppetserver-6.7.0.tar.gz 59097892 BLAKE2B 
99f57d54e7cf2a071edb266f1487b80dad86a92d27fc6143c8581f08d430aceb66845f92c44e153748529611048f96b91817a80249c7707d6f861eae455bb133
 SHA512 
bc7e9e57f072a3b29b75a383d9c60414ef4db30f725faa69da3b258b860005f7f50fa4bb5a454bc90a5277d8c636231e2d0a5cbe23addf0dbf46be3f3ec28278
+DIST puppetserver-6.7.1.tar.gz 59202711 BLAKE2B 
9f88617811d05dc09ee568b40ff332f88e44998916df6d2c88a268fe443d35b62e4d94816acc49a87dd355925bb13e99f8694596831423013b96119a4e1a0727
 SHA512 
80af1266d122f131f8d5385acbcf712d3042e7665eb739491d1d3d06adec8c0d78009aaec86161ed4fdb180bf529a48b2964c784ec728d40319f63c6d2f8f0df

diff --git a/app-admin/puppetserver/puppetserver-6.7.0.ebuild 
b/app-admin/puppetserver/puppetserver-6.7.1.ebuild
similarity index 100%
rename from app-admin/puppetserver/puppetserver-6.7.0.ebuild
rename to app-admin/puppetserver/puppetserver-6.7.1.ebuild



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

2019-10-17 Thread Joonas Niilola
commit: f09943cd343074bc5eba3a3d279e2ee20fc25656
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Oct 18 04:19:52 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 04:20:53 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f09943cd

package.mask: remove qmail-notify mask

Signed-off-by: Joonas Niilola  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 0c5ed9c91b4..2593e543789 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -228,7 +228,6 @@ net-irc/miau
 net-mail/hotwayd
 net-mail/popick
 net-mail/poppassd_ceti
-net-mail/qmail-notify
 net-mail/spamcup
 net-mail/vacation
 net-mail/yosucker



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

2019-10-17 Thread Matthew Thode
commit: 9ddc97dbebce8980a98303c0319e79857b5fc22a
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 04:08:45 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 04:20:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddc97db

www-apps/icingaweb2: 2.7.2 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 www-apps/icingaweb2/Manifest|  1 +
 www-apps/icingaweb2/icingaweb2-2.7.2.ebuild | 79 +
 2 files changed, 80 insertions(+)

diff --git a/www-apps/icingaweb2/Manifest b/www-apps/icingaweb2/Manifest
index f7e414987a9..69c58e6175a 100644
--- a/www-apps/icingaweb2/Manifest
+++ b/www-apps/icingaweb2/Manifest
@@ -1,2 +1,3 @@
 DIST icingaweb2-2.6.3.tar.gz 8174959 BLAKE2B 
6301a0a509031828b8db886e4ab060596f2239de4e65fe714d98a8f8f73305a1116b534f5c2747ab78446ff39b34fa96fe4eae758942aab2de4946c7cf1cdbcb
 SHA512 
f1d14c7ed87cd677a1c4ac03fd6a54514e7e4693000215e0e1628b0480c738848858546e54866eda3a55b4e7c35b5837ad01dc08b5b76502e24d5a727e271710
 DIST icingaweb2-2.7.1.tar.gz 8389123 BLAKE2B 
f5e469c1fde2b7bc2c22f898a5fb5370ca3788571501f070ed56b32afe8a155aafe70a06bbe09b77cd996725c3e176363aaf0fa885bc843102c56ddfa14da11d
 SHA512 
0300e483e83699a79750dcfd4467a151fcfa95a1eb8735e8d0d8e5d59595ad252b630add3cb462fa4c115b2891f9ab904739ee36d5eb7fcdfb489c9d7658f1b6
+DIST icingaweb2-2.7.2.tar.gz 8389920 BLAKE2B 
6acdc87b782bc0b745d5abd6734328763523e97296c3da34a16b62141c400c6082a6a8c45be360ad9792b36ea613579137fdcd41f3ad95a9728f8637a2d61789
 SHA512 
b14419b1194ce091e106990b0249c84fcde906ec8bd9d42683ea5d6c2e5f5083e593d61744421f87efdcd8218f55ce60bf5bc18ba92368ba176a2cf348aa7423

diff --git a/www-apps/icingaweb2/icingaweb2-2.7.2.ebuild 
b/www-apps/icingaweb2/icingaweb2-2.7.2.ebuild
new file mode 100644
index 000..45655f2ebdb
--- /dev/null
+++ b/www-apps/icingaweb2/icingaweb2-2.7.2.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+inherit depend.apache eutils multilib user
+
+DESCRIPTION="Icinga Web 2 - Frontend for icinga2"
+HOMEPAGE="http://www.icinga.org/;
+
+if [[ ${PV} == * ]];then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/Icinga/icingaweb2.git;
+   EGIT_BRANCH="master"
+else
+   SRC_URI="https://codeload.github.com/Icinga/${PN}/tar.gz/v${PV} -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="apache2 apache2-server fpm ldap mysql nginx pdf postgres"
+REQUIRED_USE="( ^^ ( apache2-server nginx ) ) apache2? ( apache2-server )"
+
+DEPEND=">=net-analyzer/icinga2-2.1.1
+   dev-php/pecl-imagick
+   pdf? ( media-gfx/imagemagick[png] )
+   apache2-server? ( >=www-servers/apache-2.4.0 )
+   nginx? ( >=www-servers/nginx-1.7.0:* )
+   || (
+   
dev-lang/php:5.6[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:7.1[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:7.2[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   
dev-lang/php:7.3[apache2?,cli,fpm?,gd,json,intl,ldap?,mysql?,nls,pdo,postgres?,sockets,ssl,xslt,xml]
+   )"
+RDEPEND="${DEPEND}"
+
+want_apache2
+
+pkg_setup() {
+   depend.apache_pkg_setup
+
+   enewgroup icingaweb2
+   enewgroup icingacmd
+   use nginx && usermod -a -G icingacmd,icingaweb2 nginx
+   use apache2 && usermod -a -G icingacmd,icingaweb2 apache
+}
+
+pkg_config() {
+   if [[ -d /etc/icingaweb2 ]] ; then
+   einfo "Updating existing installation ..."
+   else
+   einfo "Running first time setup ..."
+   einfo "Creating configuration directory ..."
+   /usr/share/${PN}/bin/icingacli setup config directory
+   einfo "Creating authentication token for web setup ..."
+   /usr/share/${PN}/bin/icingacli setup token create
+   if use apache2 ; then
+   einfo "The following might be useful for your Apache2 
configuration:"
+   /usr/share/${PN}/bin/icingacli setup config webserver 
apache --document-root /usr/share/${PN}/public
+   fi
+   if use nginx ; then
+   einfo "The following might be useful for your NGinx 
configuration:"
+   /usr/share/${PN}/bin/icingacli setup config webserver 
nginx --document-root /usr/share/${PN}/public
+   fi
+   fi
+   einfo "All done."
+}
+
+src_install() {
+   insinto "/usr/share/${PN}"
+   doins -r "${S}"/*
+   fperms -R a+rX "/usr/share/${PN}/public/"
+   fperms u+x,g+x "/usr/share/${PN}/bin/icingacli"
+}
+
+pkg_postinst() {
+   einfo 

[gentoo-commits] repo/gentoo:master commit in: net-mail/qmail-notify/

2019-10-17 Thread Joonas Niilola
commit: b9b3771618fd12fec4e9034cbf600a5f7c962511
Author: Petr Vaněk  atlas  cz>
AuthorDate: Mon Oct  7 11:47:13 2019 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Oct 18 04:20:52 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b37716

net-mail/qmail-notify: revbump with EAPI 7

Bug: https://bugs.gentoo.org/696252
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Petr Vaněk  atlas.cz>
Closes: https://github.com/gentoo/gentoo/pull/13247
Signed-off-by: Joonas Niilola  gentoo.org>

 net-mail/qmail-notify/metadata.xml|  9 -
 net-mail/qmail-notify/qmail-notify-0.93-r2.ebuild | 46 +++
 2 files changed, 54 insertions(+), 1 deletion(-)

diff --git a/net-mail/qmail-notify/metadata.xml 
b/net-mail/qmail-notify/metadata.xml
index 6f49eba8f49..7c3db330c14 100644
--- a/net-mail/qmail-notify/metadata.xml
+++ b/net-mail/qmail-notify/metadata.xml
@@ -1,5 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
+   arka...@atlas.cz
+   Petr Vaněk
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
 

diff --git a/net-mail/qmail-notify/qmail-notify-0.93-r2.ebuild 
b/net-mail/qmail-notify/qmail-notify-0.93-r2.ebuild
new file mode 100644
index 000..98b35abcccd
--- /dev/null
+++ b/net-mail/qmail-notify/qmail-notify-0.93-r2.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Delayed delivery notification for qmail"
+SRC_URI="http://untroubled.org/qmail-notify/archive/${P}.tar.gz;
+HOMEPAGE="http://untroubled.org/qmail-notify/;
+
+SLOT="0"
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~hppa ~ppc ~sparc ~x86"
+IUSE=""
+
+DEPEND=""
+RDEPEND="${DEPEND}
+   virtual/cron
+   virtual/qmail
+"
+
+src_prepare() {
+   eapply_user
+
+   echo "$(tc-getCC) ${CFLAGS}" > conf-cc || die 'Patching conf-cc failed.'
+   echo "$(tc-getCC) ${LDFLAGS}" > conf-ld || die 'Patching conf-ld 
failed.'
+   sed -e "#'ar #'$(tc-getAR) #" -e "s#'ranlib #'$(tc-getRANLIB) #" -i 
Makefile || die 'Patching Makefile failed.'
+}
+
+src_install () {
+   exeinto /usr/sbin
+   doexe qmail-notify
+
+   exeinto /etc/cron.hourly
+   doexe "${FILESDIR}"/qmail-notify.cron
+
+   dodoc README ANNOUNCEMENT cron.hourly NEWS
+}
+
+pkg_postinst() {
+   elog
+   elog "Edit qmail-notify.cron in /etc/cron.hourly"
+   elog "to activate qmail-notify!"
+   elog
+}



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

2019-10-17 Thread Matthew Thode
commit: be8a4eab408d91c011174879dd8cd7c4a27b578e
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 04:13:22 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 04:20:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be8a4eab

app-admin/puppet: 6.10.1 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-admin/puppet/Manifest   | 2 +-
 app-admin/puppet/{puppet-6.10.0.ebuild => puppet-6.10.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppet/Manifest b/app-admin/puppet/Manifest
index 7f5e07ca1dc..a5f1d14813f 100644
--- a/app-admin/puppet/Manifest
+++ b/app-admin/puppet/Manifest
@@ -2,7 +2,7 @@ DIST puppet-4.10.12.tar.gz 3022218 BLAKE2B 
03757857868b1544078ae5e40d6e438631c78
 DIST puppet-5.5.14.tar.gz 3075736 BLAKE2B 
bfea82d40f9671cdefab0b10c9481e4fbad397dd0a4aa26f5d0fa9ffa94477a5cc59b3724ab9ae3ee2e7e9230881676582c328c804ce9138dc484b9bd92e0ec3
 SHA512 
861100c02e0b8a5bb232d266bcd5e54b0e32cf26954ea37f276690aa3159ffdb28195ab8691df61ee0098300d226ea1d369dbdff8aae69101c2bbe6068ede8b1
 DIST puppet-5.5.16.tar.gz 3084466 BLAKE2B 
f3e2f12331b4794b90a81a4f80e626fcd3d5252b7cbdacc1d6243faa557540d3a68e5e23b7b5c3e4f4286774e9a9198e59fb15d7d7c41d7193754ed5c80dd624
 SHA512 
7d9e533e352a22e347ac6467094c4bdbde893c2503f47b4a2d175fd6e759e6662991efdd1a0a83d9495d22f28da4ae7a30cc771c5d90b8252c4618bd8837833a
 DIST puppet-5.5.17.tar.gz 3090402 BLAKE2B 
7722ec4196ee766c29eddd7dc73539a4a5a0e4cc781a84af25210488328b5ae01178ca64e8eef14152cbeca06dc8fe145b5e39ce6a120d7689fc32cbbbe16f9f
 SHA512 
95c6cd836a9f732ccfe2d8b83096e79c32428c43390c0826663f896ca1388e1fe3b55d93a5a7548831e95de85247db717866c36786d591e207341c734d70168b
-DIST puppet-6.10.0.tar.gz 2803541 BLAKE2B 
da122259341da54db8e9a6c3261934df5020164304bc493674d5164c0a11da1270746b41edb67c1d7c1f96b2553071c87ab2086f78b8184a1fab4dc3dbcc70fc
 SHA512 
ff58d5898f34baa14363dc5c4f16eaa75b709b09cdb711662f3a74351d0abce85f3aa990057f296e208db8e559ecfa5ba9206ad5737aa64675e60c3e595747f5
+DIST puppet-6.10.1.tar.gz 2809383 BLAKE2B 
1589dcfa7d73b81ab7fbc3fca4b2fe956f5d240d11583c484262d5243e4713bb4aa9cd5c655e9566468050ab2e5c0ec0cc720e3ff9088add0744e02147b4e3bb
 SHA512 
211c9837eb4a77a54bf09811a1a84709eef06f17e0c5c9c598d01bce2e183e69974709ad4dfb8f5fecd7433c1ff52757aa699c623155d1a0742f2e07eaf2ec56
 DIST puppet-6.7.2.tar.gz 2907345 BLAKE2B 
bbb0f789ae64b5039e5b1bd2ce985e89ba693d33352baee7a1d11df7f314663aa3606a73d42d6b20042f81ee405a72cd17b9cf8f3c3cb257869e982f84cfd552
 SHA512 
6ebcaff30bda27fc17870b991287d620d455db8cf9a41c59833efc2a7541d368a7278689eb0494d0f6328cd334764f21ffe8700a567696e05398a5c16b7d
 DIST puppet-6.8.0.tar.gz 2906582 BLAKE2B 
2dd2f9eb203aa951e0ea9639efa20aac3edb063b4bd68dd0b05a07fc2a399c4b59b3b87a1cb573096c5042920080623b9afb9c4d863b6249664edcc291cd1787
 SHA512 
c8446529e706dab7fd156b5bbca638f1722b07a638f626df2002a4ad218ec5e448f533395a6eed613b31ebbacea56539e903c040998d4110c8a362f2ead7f43b
 DIST puppet-6.9.0.tar.gz 2911311 BLAKE2B 
1d58d0e976430031732de4f63c3ec100088f1d93894cf52caff252befeabe1ea3cf51939063143bd7c9011bb56f2a6420ba38ae230edea19ac8f1f135ed6f56f
 SHA512 
4d1bc1a398c1e75bf8e832d477a0fff4fa3613510f8d59d73594e6fc2f2bbbedf050b1e7729b71bb1428c230f42fcf7b98f7a7683fc3c52cb36a596e20e6540b

diff --git a/app-admin/puppet/puppet-6.10.0.ebuild 
b/app-admin/puppet/puppet-6.10.1.ebuild
similarity index 100%
rename from app-admin/puppet/puppet-6.10.0.ebuild
rename to app-admin/puppet/puppet-6.10.1.ebuild



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

2019-10-17 Thread Matthew Thode
commit: 9c7e04e83dee32e0dffcbd40c0978e0021c4f1f4
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 04:18:50 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 04:20:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c7e04e8

dev-ruby/puppetdb-termini: 6.7.1 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 dev-ruby/puppetdb-termini/Manifest  | 2 +-
 .../{puppetdb-termini-6.7.0.ebuild => puppetdb-termini-6.7.1.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/puppetdb-termini/Manifest 
b/dev-ruby/puppetdb-termini/Manifest
index d978a90922b..077838f90ec 100644
--- a/dev-ruby/puppetdb-termini/Manifest
+++ b/dev-ruby/puppetdb-termini/Manifest
@@ -1,4 +1,4 @@
 DIST puppetdb-termini_6.4.0-1stretch_all.deb 20680 BLAKE2B 
ccd129eb8510794c165b6fa88ed391006e583e58fb43fe1be72e1b976d75f30aee0775552f6460840b805e1e4ceb03a6c77dba70afeed75dc2ea3ebcfd4bee77
 SHA512 
948b5ccd1ddc1f0d52174a073cd13af9e1ba0f713c5326c4d3cbfae7daeeb16cb05efdfb7ac572f9d79e34842fca0a95e054ee49239d593bf4429223c18bb58c
 DIST puppetdb-termini_6.5.0-1stretch_all.deb 20870 BLAKE2B 
41cf79f2b7ce218fdfbce2588d8e206a3751ffb07a133bc5ddef3f5662c51eb9d12cda3017921edd4aafc064ff35713daaea9542dac687b3f399f2706657131f
 SHA512 
956952bbc81cbcabd8ef3e37b9ebc7c489c90da7b75ff2c9a3e36cd312ee3f7eb3350cbf21a8b44f1d6722ddd3168f5795ba7258147f340a111b9dc29796cd84
 DIST puppetdb-termini_6.6.0-1stretch_all.deb 21210 BLAKE2B 
366c5d0d97e3e1f63e61bc6a8d7d05b621c226cff872c4f780b4b08aac8db9ebcbbe5e5c81f9a79f11e1fc9cedb8c42d86e69055fb5af2195f07c59347699eda
 SHA512 
b410322239933539b685c65c1f85ecca28269adaf94d4521b4ee6d0780701889c6aaec4c01fdcdce1338277544d249c597ac9c697bdacdeb943c53fd6538d348
-DIST puppetdb-termini_6.7.0-1stretch_all.deb 21206 BLAKE2B 
243f54ba393fb5982a8483b2d7ef2645055531ce79afdb5b00291cdb6560a43bcae3cfd101a398924e1fee1cc9a9d6063e3ceed5b8fab40684f9346c6072a06b
 SHA512 
046c83f49d7ca4cfdb5185d1878584863f8562c7500148689250a6a081655263b327bc8bb27bbc0dad508a087fd3c509784413483ff52e743a1022ee36b67f39
+DIST puppetdb-termini_6.7.1-1stretch_all.deb 21284 BLAKE2B 
f56f9bfa97f711be08250cc525714af55b9defe2f12b17b2a5f3ec931d9f2f461f009bd0c3534eee848b45d3454752392479ae179695d27f42bc7e4747903dba
 SHA512 
b03a3ebcc068ab7274abd7096821231dcafc1ce7064b6692f5834f28f3046905c855336c5aff4db1b031a2d06c616a75fa48860f45800bfc167c9045364bbcd4

diff --git a/dev-ruby/puppetdb-termini/puppetdb-termini-6.7.0.ebuild 
b/dev-ruby/puppetdb-termini/puppetdb-termini-6.7.1.ebuild
similarity index 100%
rename from dev-ruby/puppetdb-termini/puppetdb-termini-6.7.0.ebuild
rename to dev-ruby/puppetdb-termini/puppetdb-termini-6.7.1.ebuild



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

2019-10-17 Thread Matthew Thode
commit: 1b2c9cd971a42c69648c8d375dce17c7957707fc
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 04:16:50 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 04:20:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b2c9cd9

app-admin/puppetdb: 6.7.1 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-admin/puppetdb/Manifest | 2 +-
 app-admin/puppetdb/{puppetdb-6.7.0.ebuild => puppetdb-6.7.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/puppetdb/Manifest b/app-admin/puppetdb/Manifest
index 8c3ac419d05..0181fa046d7 100644
--- a/app-admin/puppetdb/Manifest
+++ b/app-admin/puppetdb/Manifest
@@ -1,4 +1,4 @@
 DIST puppetdb-6.4.0.tar.gz 41720668 BLAKE2B 
a4637750c553eed8ee5bdd46212a7455fe1d59015aa78fe01f6fa9ee2b4a98ec50a2a8b551f65d4bc6965b2a969f559c53f5a6324a8e48983a1d027948387ce7
 SHA512 
c49afce1661ed284280e89ed9dbc2406a657e5f2cdbc501acf50900d431b58a341f1541789ea4ffe9109e8d30faf47eb85573a589426c40ad50597a7d81b5552
 DIST puppetdb-6.5.0.tar.gz 41768030 BLAKE2B 
2a52239dabb5c026f4d00ee2942e3128ce50f1de23aa5ff5d53f2020237b54867b48727e774ecc27f5f18bd1617b43fcf30fbd3b03a730ca60d5bab7296e3f9c
 SHA512 
8aee40101a17e22ef5b9b7b965ffe8d8a9b8dfaa787721b3e6a5e7363b98e0c52dc0583216a058540618a6a980cf80f138fa6b358a9daac518abd50981910cf5
 DIST puppetdb-6.6.0.tar.gz 43366185 BLAKE2B 
224c13ff2583a7c8124f03845eca4756be6446e7470565c44d3fe1fcb756d5564ae2ded69d0bef1dda939efe082756c0e44afd3c6b0fc4268a744946860b5a02
 SHA512 
5076f52af51b7a3b43a0deb9cf1f10d77da98a5e531983d3661cda522c8d46f70882457934be6f70e77587b930077c0a4d2eaf7ed41eff9c6bcf4bc5ecbf2205
-DIST puppetdb-6.7.0.tar.gz 43437454 BLAKE2B 
ac1d656fe727c6c784ebcc6be4f84d3c2aa6fc48a154316e20d89d851456a2af826cb6840937875b78764299c882a631401c1cf2289888c76381a0bd966b859c
 SHA512 
ccfd97651a7b1e1c242159c2f3c793370f8db1a37b115c47ca2754236cf7b67e39bd1bfc0244496e8dbbda47b5c847862be259d40574a41387ed809e62b11a47
+DIST puppetdb-6.7.1.tar.gz 43563417 BLAKE2B 
902397b2bedb64f4ccb2d6932d6dbfb7d67c479640fb8429aecf3de558ce31ab0017175f183ee3e66268d802fc9901f5473271b6598414a7b57182bc1788f1e3
 SHA512 
58c6f3db268885e603bb1219f89c2aeb237c042fe7eccc95ce5622cfc739f971d9d37e0cc37cae335552d0d9845fccfd9425381faf6ec3534b20991bd9f7db0e

diff --git a/app-admin/puppetdb/puppetdb-6.7.0.ebuild 
b/app-admin/puppetdb/puppetdb-6.7.1.ebuild
similarity index 100%
rename from app-admin/puppetdb/puppetdb-6.7.0.ebuild
rename to app-admin/puppetdb/puppetdb-6.7.1.ebuild



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

2019-10-17 Thread Matthew Thode
commit: dfd4339c712417274b45f93bf7a30cd857b1f6bd
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Oct 18 04:14:02 2019 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Oct 18 04:20:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfd4339c

app-admin/puppet-agent: 6.10.1 bump

Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Matthew Thode  gentoo.org>

 app-admin/puppet-agent/Manifest   | 4 ++--
 .../{puppet-agent-6.10.0.ebuild => puppet-agent-6.10.1.ebuild}| 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/puppet-agent/Manifest b/app-admin/puppet-agent/Manifest
index 323a1541442..1b24e24c233 100644
--- a/app-admin/puppet-agent/Manifest
+++ b/app-admin/puppet-agent/Manifest
@@ -1,5 +1,5 @@
-DIST puppet-agent_6.10.0-1stretch_amd64.deb 19699044 BLAKE2B 
06345d1178cd9fe15f7ae5a56676764517de6587f238a35212845b89a8ac17664cf88821dcfd7fc51de6809104e1e6e6ee22512b7b007ddcd866d898bbc1b461
 SHA512 
d3bfeb31d769efec58584e582e62b880d399905abf742f394d2a1fc022647ffca14f9ea208a27dbf57cd6ab530737524ca57f021a27dc1a96d105a5dbe1ceded
-DIST puppet-agent_6.10.0-1stretch_i386.deb 20013932 BLAKE2B 
f19775e2557cbb69ab1f539def040ef7109ee271a44aee1f6ce5dc685b86b78dc0c69fbaee7f29fd054079311169e47bd26f71e154fbe623fdc29489eab67ae5
 SHA512 
5d0d782c92d392c35a1283e9dd3d4230a657151424838ae3f5f87a6f76c822457e7ad26b7399a2f6e3152e91b23df88767dd18b936dab06939475285dac82e39
+DIST puppet-agent_6.10.1-1stretch_amd64.deb 19712026 BLAKE2B 
82f5d9d18a3171b230d0e6027b9b8409b51096e12c5fd88844643320a0f5f654bc79880b35565571a6367a2d95f7a8f90ac811c2df1f1ec6c1866508c7e112e0
 SHA512 
8b289f8690fb67d353bc004a281e3e32a118048523bb6c743fa8ff46f2583c155ddffc22a7898662b598128f5ef75d77fd9a99b43c4afb72a23a2bfa3959f0c6
+DIST puppet-agent_6.10.1-1stretch_i386.deb 20055310 BLAKE2B 
31bb9bd40f5098b666d911545b565654d84a422625536eff954256851089d211ea2660dbdab7b73df370efc0bbc41875617df3012ee734ec586af87967e8bc02
 SHA512 
33348839a245bcda4c76feae214d72bb36c1959c1b6f5f9c2db084ad1bb0018393ab6bd94e16ed987a23b2f253baf31f1df0453ead1cc6860941954ff31930c2
 DIST puppet-agent_6.7.2-1stretch_amd64.deb 19184682 BLAKE2B 
6078c1b21f0e737881d949cfaf052571b40df450e53724696e2738141da30e59da7abf03ce00285ab77fd4ac52291ab6e42da373420807499f37b75c872fa83e
 SHA512 
1c464448b1478397af7b806f8bfcaee0378af9d4b6bfa5a73e8245064329b1b49136107c5fcbaea0ef6cd4e1daf840d1ba331e798b2cd255ead54969520315c9
 DIST puppet-agent_6.7.2-1stretch_i386.deb 19452604 BLAKE2B 
1915e7b7085db6cb87980a98a7cb85881331719e2af98b07f8461514a0296b3cf5181eb88f78893055a0fa09fc2ffce0e81e866db27abcecf9d8f745e329311c
 SHA512 
8d89735601c9764e207eef77f5d42e836ee9d7c0c0f2856e0f293919cce52e7a42fc28fca42bd0e0bed760063aae527007ef7ce25503ce05fcfd495a44243ee3
 DIST puppet-agent_6.8.0-1stretch_amd64.deb 19184708 BLAKE2B 
ac961857784eaaa55604285cf305dac437007628ea5baa3c3ae9a8a345fcb8cf2b20820bd80cc2c96afb77cb03c4d2779b17b1183c9bc9461b56860d2179f448
 SHA512 
707146f71b21df4b89244df7b786f481136cfe7b0cabf20aa0d4784aca547ba85c75d13309b77c853b9e034b8271f350b30bc5358010d90b7573e3fdb63c31b6

diff --git a/app-admin/puppet-agent/puppet-agent-6.10.0.ebuild 
b/app-admin/puppet-agent/puppet-agent-6.10.1.ebuild
similarity index 100%
rename from app-admin/puppet-agent/puppet-agent-6.10.0.ebuild
rename to app-admin/puppet-agent/puppet-agent-6.10.1.ebuild



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

2019-10-17 Thread Zac Medico
commit: 6e441cb24d4c4c35fec539158904dd7093e4874d
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 04:13:57 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 04:16:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e441cb2

sys-apps/portage: Revbump to 2.3.77-r1 for bug 697906

Closes: https://bugs.gentoo.org/697906
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/portage/{portage-2.3.77.ebuild => portage-2.3.77-r1.ebuild} | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys-apps/portage/portage-2.3.77.ebuild 
b/sys-apps/portage/portage-2.3.77-r1.ebuild
similarity index 97%
rename from sys-apps/portage/portage-2.3.77.ebuild
rename to sys-apps/portage/portage-2.3.77-r1.ebuild
index 8e7b92e07cc..055343f47ab 100644
--- a/sys-apps/portage/portage-2.3.77.ebuild
+++ b/sys-apps/portage/portage-2.3.77-r1.ebuild
@@ -103,6 +103,9 @@ pkg_setup() {
 python_prepare_all() {
distutils-r1_python_prepare_all
 
+   # Apply 4e9f04a1e11e84a8c513ee334cf2bc1c013d8c11 for bug 697906.
+   sed -e 's|\(self\.config\.layouts\)\[1:\]|\1|' -i 
lib/portage/_emirrordist/DeletionTask.py || die
+
if use gentoo-dev; then
einfo "Disabling --dynamic-deps by default for gentoo-dev..."
sed -e 's:\("--dynamic-deps", \)\("y"\):\1"n":' \



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

2019-10-17 Thread Zac Medico
commit: be825fc0930945bfe18a52c89765957fe5ac1f08
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 03:46:26 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 03:46:58 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=be825fc0

asyncio.start_unix_server: suppress DeprecationWarning for loop argument

See: https://bugs.python.org/issue36373
Signed-off-by: Zac Medico  gentoo.org>

 bin/socks5-server.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/bin/socks5-server.py b/bin/socks5-server.py
index f5d995f0d..d1649ad4a 100644
--- a/bin/socks5-server.py
+++ b/bin/socks5-server.py
@@ -228,7 +228,7 @@ if __name__ == '__main__':
loop = asyncio.get_event_loop()
s = Socks5Server()
server = loop.run_until_complete(
-   asyncio.start_unix_server(s.handle_proxy_conn, sys.argv[1], 
loop=loop))
+   asyncio.start_unix_server(s.handle_proxy_conn, sys.argv[1]))
 
ret = 0
try:



[gentoo-commits] proj/portage:master commit in: lib/portage/util/futures/_asyncio/

2019-10-17 Thread Zac Medico
commit: 67e0bba35f1b7afd5ee5ca648154838741875d6a
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Oct 18 03:35:46 2019 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Oct 18 03:37:40 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=67e0bba3

asyncio.create_subprocess_exec: suppress DeprecationWarning for loop argument

See: https://bugs.python.org/issue36373
Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/util/futures/_asyncio/__init__.py | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/lib/portage/util/futures/_asyncio/__init__.py 
b/lib/portage/util/futures/_asyncio/__init__.py
index bd9f2e47c..7635dbb5e 100644
--- a/lib/portage/util/futures/_asyncio/__init__.py
+++ b/lib/portage/util/futures/_asyncio/__init__.py
@@ -140,8 +140,9 @@ def create_subprocess_exec(*args, **kwargs):
loop = _wrap_loop(kwargs.pop('loop', None))
kwargs.setdefault('close_fds', _close_fds_default)
if _asyncio_enabled and isinstance(loop, _AsyncioEventLoop):
-   # Use the real asyncio loop and create_subprocess_exec.
-   return _real_asyncio.create_subprocess_exec(*args, 
loop=loop._loop, **kwargs)
+   # Use the real asyncio create_subprocess_exec (loop argument
+   # is deprecated since since Python 3.8).
+   return _real_asyncio.create_subprocess_exec(*args, **kwargs)
 
result = loop.create_future()
 



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-vuplus/

2019-10-17 Thread Craig Andrews
commit: 100cf8c7fa8766bd1bad148891925689f50d324b
Author: Craig Andrews  gentoo  org>
AuthorDate: Fri Oct 18 03:39:43 2019 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Fri Oct 18 03:40:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=100cf8c7

media-plugins/kodi-pvr-vuplus: 3.28.8 version bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Craig Andrews  gentoo.org>

 media-plugins/kodi-pvr-vuplus/Manifest |  1 +
 .../kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.8.ebuild  | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/media-plugins/kodi-pvr-vuplus/Manifest 
b/media-plugins/kodi-pvr-vuplus/Manifest
index 5c803df984d..0a6cdc8e070 100644
--- a/media-plugins/kodi-pvr-vuplus/Manifest
+++ b/media-plugins/kodi-pvr-vuplus/Manifest
@@ -5,3 +5,4 @@ DIST kodi-pvr-vuplus-3.28.4.tar.gz 196505 BLAKE2B 
4f901b662f3ac02b3be6e80cc774d0
 DIST kodi-pvr-vuplus-3.28.5.tar.gz 191633 BLAKE2B 
77fe326028fbc04b98a20d0fa43296610c98d6b499e0b68dbee0df08ffd33ba0b1a3d7726e682a3d8a8b1614f1564a026053fdf6b01eb6f3084fe4a504c739d4
 SHA512 
cf6b70a7e721e357f218b55901c2a5837721ae1ca19b2ad9027d10501fce1d6f481ca2735d41dc5daccf00c9889a5a8e925379e58da04708be9ba6a583612fc1
 DIST kodi-pvr-vuplus-3.28.6.tar.gz 191715 BLAKE2B 
cfcb0c47fc0960d2383ab11f1e6a5b653388a2a3675e512d9887aa2ad69370e0a46bdcf25f7fb44651e82ea696b5c33d6bf1e829b85aebee6117f05062ca814a
 SHA512 
332cb9034b90fb9728fad3662441b26d5fe419820ea6403ce3c4e8249217f9011363ce0dc0bcc658c4373dd3b526f251ecf0da20ae1a5560c013c39b3b243272
 DIST kodi-pvr-vuplus-3.28.7.tar.gz 191502 BLAKE2B 
9f24e8ff3e15b7acfe7c395ca048bdde6f9406b382fabe047f8959407a3be0ad46d7f0755fbd19ddcd45e3220d1c7a502c415604671c63b86393272f177d7c86
 SHA512 
e8b5de5d23691c44b85167b2817b8fba450063b780b26969b9465bf41875a6debff2945d47e84be4adf7b76dc6d0f16a5995a77164ed7ee34bdb7db2466421bd
+DIST kodi-pvr-vuplus-3.28.8.tar.gz 191564 BLAKE2B 
101fcad2195127674ac04a24191b13b39c448e8a10277ffb8de92b9d9bb9c571957eb14b8af273f228972061c677f21afbf1fb73da6e405d0596bfc15f98e517
 SHA512 
53e3d0fcebb8227e0d436011eddb326a3ab80a3a913c3841423cf835cab4d2e7f155d61547d1ec4e6913715a986bee6883b7443e6a3a1a56dd750a08f4b317d8

diff --git a/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.8.ebuild 
b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.8.ebuild
new file mode 100644
index 000..801998d4dad
--- /dev/null
+++ b/media-plugins/kodi-pvr-vuplus/kodi-pvr-vuplus-3.28.8.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake-utils kodi-addon
+
+DESCRIPTION="Kodi's VuPlus client addon"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.vuplus;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.vuplus.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Leia"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.vuplus/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.vuplus-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =media-tv/kodi-18*
+   =media-libs/kodi-platform-18*
+   dev-libs/tinyxml
+   dev-cpp/nlohmann_json
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "
+
+src_prepare(){
+   [ -d depends ] && rm -rf depends || die
+   cmake-utils_src_prepare
+}



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

2019-10-17 Thread Aaron Bauman
commit: 64576055f138e3133ba0505236c295a1bd309dc5
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Oct 18 01:56:32 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Oct 18 01:56:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=64576055

app-admin/sudo: arm64 stable (bug #697462)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.77, Repoman-2.3.17

 app-admin/sudo/sudo-1.8.28_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/sudo/sudo-1.8.28_p1.ebuild 
b/app-admin/sudo/sudo-1.8.28_p1.ebuild
index 4431e4ad36e..71645fd6481 100644
--- a/app-admin/sudo/sudo-1.8.28_p1.ebuild
+++ b/app-admin/sudo/sudo-1.8.28_p1.ebuild
@@ -22,7 +22,7 @@ else
SRC_URI="https://www.sudo.ws/sudo/dist/${uri_prefix}${MY_P}.tar.gz
ftp://ftp.sudo.ws/pub/sudo/${uri_prefix}${MY_P}.tar.gz;
if [[ ${PV} != *_beta* ]] && [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc 
ppc64 s390 ~sh sparc x86 ~sparc-solaris"
+   KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~m68k ~mips ppc 
ppc64 s390 ~sh sparc x86 ~sparc-solaris"
fi
 fi
 



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

2019-10-17 Thread Aaron Bauman
commit: adb3fc9a5209c9da21232608e6dc8ba0fb8ddd0a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Oct 18 01:36:51 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Oct 18 01:36:51 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb3fc9a

sys-devel/gcc: arm64 stable (bug #694998)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.77, Repoman-2.3.17

 sys-devel/gcc/gcc-7.4.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-7.4.0-r2.ebuild 
b/sys-devel/gcc/gcc-7.4.0-r2.ebuild
index 2b9bad9bf8f..877220de3de 100644
--- a/sys-devel/gcc/gcc-7.4.0-r2.ebuild
+++ b/sys-devel/gcc/gcc-7.4.0-r2.ebuild
@@ -7,7 +7,7 @@ PATCH_VER="1.3"
 
 inherit toolchain
 
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-macos"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86 ~ppc-macos"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



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

2019-10-17 Thread Aaron Bauman
commit: c42767bd1f92f90e8999636429cb654bafb1eb5a
Author: Aaron Bauman  gentoo  org>
AuthorDate: Fri Oct 18 01:31:05 2019 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Fri Oct 18 01:31:05 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c42767bd

sys-devel/gcc: arm64 stable (bug #694996)

Signed-off-by: Aaron Bauman  gentoo.org>
Package-Manager: Portage-2.3.77, Repoman-2.3.17

 sys-devel/gcc/gcc-6.5.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-6.5.0-r1.ebuild 
b/sys-devel/gcc/gcc-6.5.0-r1.ebuild
index cc1642e3acc..e99481eff09 100644
--- a/sys-devel/gcc/gcc-6.5.0-r1.ebuild
+++ b/sys-devel/gcc/gcc-6.5.0-r1.ebuild
@@ -7,7 +7,7 @@ PATCH_VER="2"
 
 inherit toolchain
 
-KEYWORDS="alpha amd64 ~arm ~arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86"
+KEYWORDS="alpha amd64 ~arm arm64 hppa ia64 ~m68k ~mips ppc ppc64 s390 ~sh 
sparc x86"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



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

2019-10-17 Thread Aaron W. Swenson
commit: 4221a67c627dd26d13b316f4a32d0ec6355d0869
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Oct 17 22:38:42 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Fri Oct 18 00:24:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4221a67c

dev-python/flask-sqlalchemy: Bump to 2.4.1

Also bump EAPI to 7.

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-python/flask-sqlalchemy/Manifest   |  1 +
 .../flask-sqlalchemy/flask-sqlalchemy-2.4.1.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/flask-sqlalchemy/Manifest 
b/dev-python/flask-sqlalchemy/Manifest
index f1bae36c334..f754ec41c2c 100644
--- a/dev-python/flask-sqlalchemy/Manifest
+++ b/dev-python/flask-sqlalchemy/Manifest
@@ -1,2 +1,3 @@
 DIST Flask-SQLAlchemy-2.1.tar.gz 95967 BLAKE2B 
1e316fb4b72f43f9342dcdc5e6c54b317fab2a9b83c315dd6323721506cc01589af7833409a0bebe82a87b924ace457d89d9de8b0d80b78d044ae73e076e89fb
 SHA512 
023f3dd011a57768e921928dd3df791a54c64bb8a0cc1bb545dbb8e16dda263b730da74a0d400e5a057819830dd4cd014a642098a081c956a7ea8a2d37ec112a
 DIST Flask-SQLAlchemy-2.3.2.tar.gz 105530 BLAKE2B 
2355c82b1ffb68429af4c16869e1a171aaf8b89f1dbdd48759dfe1e0a7021f17bdb301a45b837bd0d2de85ebd6ba81d4cd5a3d8659293f38f5893a260598b82f
 SHA512 
e0c12e5cc5ddb3685f04c928185e4526fb6a94dedb5c53e2b5ece2e0f1cae6ea4c00b3f9d6863c1b6252357ccf2b5a4c1fca0185d2d741bdbc0ab62e2901d2ff
+DIST Flask-SQLAlchemy-2.4.1.tar.gz 128863 BLAKE2B 
5ce87601a5dbeb8505144c0970eecd0bf553ad3feccd74e7de567a4fe0702575c6f7935d4812410ced17b7b98e6b8e6fcb67a589681cd82464fa4cf0dc09ba74
 SHA512 
a55e6fe563583e240bb594c157424fba1a8462f953fa0bb14701954bcb52d1e7bf71eec38f4037c1752ceab90e798642274de58e0f950d83e234f4c702e0b6ee

diff --git a/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.4.1.ebuild 
b/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.4.1.ebuild
new file mode 100644
index 000..815d015a2f3
--- /dev/null
+++ b/dev-python/flask-sqlalchemy/flask-sqlalchemy-2.4.1.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} pypy )
+
+inherit distutils-r1
+
+MY_PN="Flask-SQLAlchemy"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="SQLAlchemy support for Flask applications"
+HOMEPAGE="https://pypi.org/project/Flask-SQLAlchemy/;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc test"
+
+RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
+   >=dev-python/flask-0.10[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-0.8.0[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )"
+
+# Req'd for tests in py3
+DISTUTILS_IN_SOURCE_BUILD=1
+
+S="${WORKDIR}/${MY_P}"
+
+python_compile_all() {
+   use doc && esetup.py build_sphinx
+}
+
+python_test() {
+   pytest
+}
+
+python_install_all() {
+   use doc && HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
+   distutils-r1_python_install_all
+}



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

2019-10-17 Thread Aaron W. Swenson
commit: cfe15cd336903e2f877dcf53767c8b57287d8e82
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Oct 17 22:35:12 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Fri Oct 18 00:24:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfe15cd3

dev-python/flask-migrate: Bump to 2.5.2 and EAPI 7

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-python/flask-migrate/Manifest  |  1 +
 .../flask-migrate/flask-migrate-2.5.2.ebuild   | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/flask-migrate/Manifest 
b/dev-python/flask-migrate/Manifest
index a69e1757feb..d1d386bacf5 100644
--- a/dev-python/flask-migrate/Manifest
+++ b/dev-python/flask-migrate/Manifest
@@ -1 +1,2 @@
 DIST Flask-Migrate-2.1.1.tar.gz 15034 BLAKE2B 
b9cbf7bd15bd9dc8bba27e0c79800ec283b58e4fa9980a01f028e73225af1392b6271be0cd94a79de2cfc69fae1ea75e4ea1166b2a12cb7b398a6775f0f31583
 SHA512 
b5bf6b1b15dfa969e645640d14077fd4755f0db9279a75045fbc3ac685ff32ec19b3207b3d937e341e3546ba5c5c34e509c3964cc63d0e864f200c706b73d851
+DIST Flask-Migrate-2.5.2.tar.gz 12127 BLAKE2B 
4c30cd5a3e59c890b0b3e397845cfd1424cdbdec1340793f406fb2e77cc3dc1c7eda777498d75e2250d09a310f28aea1b6ff5248df1ea151ff62bd7c7acabe72
 SHA512 
9c20fef77c1e0cd2a3ff14bdac48117e3d1610fe9417c928e111fa9c5761a63e67154dedbe83247bbea0f62796203bac61f4193478431607e26bdb253ee0892b

diff --git a/dev-python/flask-migrate/flask-migrate-2.5.2.ebuild 
b/dev-python/flask-migrate/flask-migrate-2.5.2.ebuild
new file mode 100644
index 000..8cd9e3848fd
--- /dev/null
+++ b/dev-python/flask-migrate/flask-migrate-2.5.2.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python2_7 python3_{5,6} )
+
+inherit distutils-r1
+
+MY_PN="Flask-Migrate"
+MY_P="${MY_PN}-${PV}"
+
+DESCRIPTION="SQLAlchemy database migrations for Flask applications using 
Alembic"
+HOMEPAGE="https://pypi.org/project/Flask-Migrate/;
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/alembic-0.7[${PYTHON_USEDEP}]
+   >=dev-python/flask-0.9[${PYTHON_USEDEP}]
+   >=dev-python/flask-sqlalchemy-1.0[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( >=dev-python/flask-script-0.6[${PYTHON_USEDEP}] )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+python_test() {
+   esetup.py test || die "Testing failed with ${EPYTHON}"
+}



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

2019-10-17 Thread Aaron W. Swenson
commit: 1218f5c7042155d1c4d5e062a8fd925a812d0e3e
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Fri Oct 18 00:23:55 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Fri Oct 18 00:24:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1218f5c7

dev-db/pgadmin4: Bump to 4.13

Now require ssl on dev-qt/qtnetwork, and minimal deactivated dev-libs/libsodium.

Bug: https://bugs.gentoo.org/689708
Bug: https://bugs.gentoo.org/689678
Closes: https://bugs.gentoo.org/695970
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-db/pgadmin4/Manifest |   1 +
 dev-db/pgadmin4/pgadmin4-4.13.ebuild | 109 +++
 2 files changed, 110 insertions(+)

diff --git a/dev-db/pgadmin4/Manifest b/dev-db/pgadmin4/Manifest
index 58070e21f70..dec6dfb5c26 100644
--- a/dev-db/pgadmin4/Manifest
+++ b/dev-db/pgadmin4/Manifest
@@ -1,3 +1,4 @@
 DIST pgadmin4-4.10.tar.gz 22809776 BLAKE2B 
70a9857de31721b1cd5816b9e15abf325516f94ad5248f3ce5387cca5081ba96d7fca6c487265960ffac8d63c2fd09c3dea44d24a1cc9f8dbb170bd76d5de545
 SHA512 
b7f91d85fdc39766a294d9b66e8539f709b99f971726551d013345595161ff017e03505f05a41352575892be9d9622e86f4ccdbac76bcea435e2fb88a690b565
+DIST pgadmin4-4.13.tar.gz 25077107 BLAKE2B 
afbf0b6fba2f4cbbc1f47ac6c7867b7f131e5698de265a9dda53b79968f237ac591c5ff4da94dde0b74479cac1158ec825f42b14fc01aee13982043822c04443
 SHA512 
7eca41047e41f7bdce2dfe992260e8c2ab40f985dd232eb240ea9c0024f551f011653717aa0d5e4ccdccd4ef4936102cde1f97a32852d8382dcc222fadce7707
 DIST pgadmin4-4.5.tar.gz 22420769 BLAKE2B 
ae16e34c4cfce0ae78f06321ea1fc34aac0e081df4c0d5906fc4da0c82abb67e374477b8f9a9266d003579eb8887541e4224465ce6eccd86589129e1b3efff24
 SHA512 
835434612ac2a7ff89fab4c4bed89644e43506491ce12d2b74ffdbc25b33f2ac9ae566c95e886d4b4f8bca6499c40be5f0d776b18bfdcebd44d7ffe3b89deb5f
 DIST pgadmin4-4.8.tar.gz 22780924 BLAKE2B 
7b64ef8ac3782e9c8207d5938f3638d67ddf5c86ca520afbfb296a824b39411362ca6e9d8b03920e35cca38d1303efe81750e5bfc849cfb363f370da3d25ac44
 SHA512 
68b35c1091435fbeb39e67c7f93038fcba95cd5ae7098434b5d3afee10595f875ef9fd997934f2bbd93c914bcd5c3c71bd43f032f788e55c5795f5ad63b57cd7

diff --git a/dev-db/pgadmin4/pgadmin4-4.13.ebuild 
b/dev-db/pgadmin4/pgadmin4-4.13.ebuild
new file mode 100644
index 000..52a65026ff9
--- /dev/null
+++ b/dev-db/pgadmin4/pgadmin4-4.13.ebuild
@@ -0,0 +1,109 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{5,6} )
+PYTHON_REQ_USE="sqlite"
+
+inherit python-single-r1 qmake-utils
+
+DESCRIPTION="GUI administration and development platform for PostgreSQL"
+HOMEPAGE="https://www.pgadmin.org/;
+SRC_URI="https://ftp.postgresql.org/pub/pgadmin/${PN}/v${PV}/source/${P}.tar.gz;
+
+LICENSE="POSTGRESQL"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="doc"
+
+RESTRICT="test"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+# libsodium dep added because of 689678
+COMMON_DEPEND="${PYTHON_DEPS}
+   dev-libs/libsodium[-minimal]
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtwidgets:5
+"
+
+DEPEND="${COMMON_DEPEND}
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+"
+
+RDEPEND="${COMMON_DEPEND}
+   >=app-text/htmlmin-0.1.12[${PYTHON_USEDEP}]
+   >=dev-python/blinker-1.4[${PYTHON_USEDEP}]
+   >=dev-python/flask-1.0.2[${PYTHON_USEDEP}]
+   >=dev-python/flask-gravatar-0.5.0[${PYTHON_USEDEP}]
+   >=dev-python/flask-htmlmin-1.5.0[${PYTHON_USEDEP}]
+   >=dev-python/flask-login-0.4.1[${PYTHON_USEDEP}]
+   >=dev-python/flask-mail-0.9.1[${PYTHON_USEDEP}]
+   >=dev-python/flask-migrate-2.4.0[${PYTHON_USEDEP}]
+   >=dev-python/flask-paranoid-0.2.0[${PYTHON_USEDEP}]
+   >=dev-python/flask-principal-0.4.0[${PYTHON_USEDEP}]
+   >=dev-python/flask-security-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/flask-sqlalchemy-2.3.2[${PYTHON_USEDEP}]
+   >=dev-python/flask-wtf-0.14.2[${PYTHON_USEDEP}]
+   >=dev-python/passlib-1.7.1[${PYTHON_USEDEP}]
+   >=dev-python/psutil-5.5.1[${PYTHON_USEDEP}]
+   >=dev-python/psycopg-2.8[${PYTHON_USEDEP}]
+   >=dev-python/python-dateutil-2.8.0[${PYTHON_USEDEP}]
+   >=dev-python/python-sqlparse-0.2.4[${PYTHON_USEDEP}]
+   >=dev-python/pytz-2018.9[${PYTHON_USEDEP}]
+   >=dev-python/simplejson-3.16.0[${PYTHON_USEDEP}]
+   >=dev-python/six-1.12.0[${PYTHON_USEDEP}]
+   >=dev-python/speaklater-1.3[${PYTHON_USEDEP}]
+   >=dev-python/sqlalchemy-1.2.18[${PYTHON_USEDEP}]
+   >=dev-python/sshtunnel-0.1.4[${PYTHON_USEDEP}]
+   >=dev-python/wtforms-2.2.1[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}"/${P}/runtime
+
+src_prepare() {
+   cd "${WORKDIR}"/${P} || die
+   default
+}
+
+src_configure() {
+   eqmake5
+}
+
+src_compile() {
+   default
+   if use doc; then
+   cd "${WORKDIR}"/${P} || die
+   emake docs
+   fi
+}
+
+src_install() {
+   dobin pgAdmin4
+
+   

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

2019-10-17 Thread Aaron W. Swenson
commit: c8afda6f588fa537f32474d37033f5716fbaa0dd
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Oct 17 23:51:02 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Fri Oct 18 00:24:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8afda6f

dev-python/flask-htmlmin: Bump to 1.5.0 and EAPI 7

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-python/flask-htmlmin/Manifest  |  1 +
 .../flask-htmlmin/flask-htmlmin-1.5.0.ebuild   | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/flask-htmlmin/Manifest 
b/dev-python/flask-htmlmin/Manifest
index c447f2f731c..d9d2fc97b25 100644
--- a/dev-python/flask-htmlmin/Manifest
+++ b/dev-python/flask-htmlmin/Manifest
@@ -1,2 +1,3 @@
 DIST Flask-HTMLmin-1.2.1.tar.gz 2921 BLAKE2B 
61601aceb58545972469ca3482e7e44464d3e3f1fd0b4a40d8f1c5e1c340c5b5292d59effc3a7a4881f1a012e90d961dcc0ec3b069f1c83d4b4cc76c99d3a301
 SHA512 
255dac2da4db1cdacb3cccf8dcd06507c249d97c6e92e7c413d3598fbfa247f657c294eb5f1ff1f50ed73ed656ca2a1015ab712f4ea880a209f13c1d8950d83e
 DIST Flask-HTMLmin-1.3.2.tar.gz 2991 BLAKE2B 
2f7dd1bff1c67e7b69c3d0eb5517ddd1fa0a2c9f5b87e9017eed207c4536743cb73cd6962f7f6d82cf1e061ca5a4401154464bb59f834071aa33853f0be27a3f
 SHA512 
cb8730506a445fd1709ecfb03b7bec37df2d610f4c0f42aeeea0fff2ba1e76b9d16a341afb8684792a4ee6e3852d5eabdf7b81b229533b35c28a5362f58a7f52
+DIST Flask-HTMLmin-1.5.0.tar.gz 3609 BLAKE2B 
0e3eca5978d98be413d9e52caaa25ee7949fc3476e9d046417f1a2328e4460c60728c1b9e3e892b3549effb64e6a5b472832e9fddbb1a7e9780ac2a49f75a12c
 SHA512 
73c551237c67d5a0162f0ac07b5b9a79ef06f082d6df985155dda283f2276b7272ee6f2b4c47fa755af30ae69c7aadc9f3cf595c7f8be4fe41aa06bebc15a66e

diff --git a/dev-python/flask-htmlmin/flask-htmlmin-1.5.0.ebuild 
b/dev-python/flask-htmlmin/flask-htmlmin-1.5.0.ebuild
new file mode 100644
index 000..5a6912a2469
--- /dev/null
+++ b/dev-python/flask-htmlmin/flask-htmlmin-1.5.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+
+MY_PN="Flask-HTMLmin"
+MY_P=${MY_PN}-${PV}
+
+inherit distutils-r1
+
+DESCRIPTION="Minimize your flask rendered html"
+HOMEPAGE="https://github.com/hamidfzm/Flask-HTMLmin;
+SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
+
+LICENSE="BSD"
+
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="
+   app-text/htmlmin
+   dev-python/flask
+"
+
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+"
+
+S="${WORKDIR}/${MY_P}"
+
+# Needs some kind of magic to actually test.
+RESTRICT="test"



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

2019-10-17 Thread Mike Pagano
commit: 706767be8f3aceaf0173d84fc7fbcc12b42edf17
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 17 23:47:32 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 23:47:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=706767be

sys-kernel/gentoo-sources: Linux patch 5.3.7 and additional patch

Add FILE_LOCKING to GENTOO_LINUX config

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.3.7.ebuild | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 12b3fcf559e..fa2b2d5f550 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -139,6 +139,9 @@ DIST genpatches-5.3-6.extras.tar.xz 1728 BLAKE2B 
7770f452dccaf681dfe995fa139c256
 DIST genpatches-5.3-8.base.tar.xz 225528 BLAKE2B 
7e27a1e15306bf117e2efe4dc2c9f88abd1be274c883d6d51c9b7b74bab8d7c19f6eca86882d6d41ff94c61717b9c0370113408cfe7a1e4ab8056745177a4713
 SHA512 
e19dfd54cc83a4a02408efa7b92dab0bc98c997925e02fffa83bf1cda1e14f600dc361507d62ace013e1c2ac62f6ab6773ea402f723558aa995350a9546ff89a
 DIST genpatches-5.3-8.experimental.tar.xz 6144 BLAKE2B 
f2ce5a10d2a3972984eab541e13177717bc7585c59e75a2d387aa59fea3612a3bad00c0983d326bb370b3e1069b3bfab1e962c80fd6089b16ad776fcb911432b
 SHA512 
bb8f4324c3b63efd8a0c7ffb189fd28c60c27b3224fb5e8af6ac8fd0b106de8cd3321cf2b4b4da50947311d5823620aa2234c92c59a05331d0c3a71cfcdb0f65
 DIST genpatches-5.3-8.extras.tar.xz 1728 BLAKE2B 
f189263c727078a3a0a767af509b844b15bd05362825b8e2dda85947dcfb11469e961999c90a340daea7782aef0622dd3bbdf1fb92d3244ec769f01db350f1fa
 SHA512 
1bf4c988f0352195c0f3861dd2c9fce786428c362d1a3238059f1b17867e2c4408839ae4af33b2a3254a725cb20b37223a81c8765c5e303c82599b2be0d2e64f
+DIST genpatches-5.3-9.base.tar.xz 261720 BLAKE2B 
5d9bc29b415b412f71ef003cb6d1ac192d480821db5d5802c7dd4c9f4c37a950f6a9e0573eb23bb8f34c413b0a1aa2e95eb2f6d571888f7906bf8a9bfcb8ca91
 SHA512 
0f79df0315315609aaa8577237ff5db8fceebc2b55d2ff343d8ef9309414557cbbc5f7611fad5a1080ef9b3b8158ea92e6a771918fb0cbf7d659e6348d5fb53c
+DIST genpatches-5.3-9.experimental.tar.xz 6140 BLAKE2B 
6d318053a09f8e6955bcce341c3cdb3b9f66f98d7879aa7b1f67ff3126dc1240c3902a8f7b0c57d47f175abf5b96134b0fcbec60627fac35a64db4f575885ed3
 SHA512 
2c5a848fbfb7b79ebba7a59fc91021e4f6a3b0f80a7ebe106e502c0702bdf421db4f9f7ed4e7c6f8f63e461fda8a3360bf3836cff5abcb35dbc1485df954a717
+DIST genpatches-5.3-9.extras.tar.xz 1736 BLAKE2B 
77d2b1d0f779a5f171ee6c970b9b49b9c9d390339706eb0bba919a65991da2e941f46909d6c6c078491dc2bf7c2ea4ece30e93399b0907654430757b36861576
 SHA512 
b8fc96e43ad84fc8ed1d4f4a0dea65fd016c7ff62ab2b1146d229afeca70b2c9a50651145ae8a9df9bbe284a6e3f6ec7ea4290844f3690c1e49d7ffe0ee2fd93
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
 DIST linux-4.19.tar.xz 103117552 BLAKE2B 
1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0
 SHA512 
ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4
 DIST linux-4.4.tar.xz 87295988 BLAKE2B 
f260f1858994f5d481fd078c86e51bddbc958f7c5d1586f60dced772e1b1107ecf3aae0558c3e6f39c36f7d3aa1e6cd1e5c64ec9d6f2218f47b98413da6466fb
 SHA512 
13c8459933a8b80608e226a1398e3d1848352ace84bcfb7e6a4a33cb230bbe1ab719d4b58e067283df91ce5311be6d2d595fc8c19e2ae6ecc652499415614b3e

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.3.7.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.3.7.ebuild
new file mode 100644
index 000..793a6b7c703
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.3.7.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="9"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-10-17 Thread Mike Pagano
commit: bd2daedbe68bd4d0f505460bd4e3cb8761ba3b49
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 17 23:44:24 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 23:44:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd2daedb

sys-kernel/gentoo-sources: Linux patch 4.19.80

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.19.80.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index a68b375c045..12b3fcf559e 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -52,6 +52,9 @@ DIST genpatches-4.19-77.extras.tar.xz 17492 BLAKE2B 
9a52c664406a5fa75acefbde45bf
 DIST genpatches-4.19-78.base.tar.xz 2066280 BLAKE2B 
f3572fd75b46b3c00c51d91555b8b49157fd571c40ce6f98c8fd801e5405611ec8e2ee02674fc70ba9af102614a9a4322d8cbe055d1f0a0fe08c291914f2501a
 SHA512 
d28805765693b38cde4ac08aca5af1566506890c7e1509d0bd7e509e7ed2176c80618536053a58f9cb7d8aa63bd1876427fd66fa2cc675b99b109cd7332bbf18
 DIST genpatches-4.19-78.experimental.tar.xz 6432 BLAKE2B 
647393d87b7de6c796bf9338cde65f24be6ee5460fd022afb9e547271371b573a6c80e334557f45797cc611c8aba6c1424a4b77edd4933405f327b8ee43b3ebc
 SHA512 
426d91a4cb0ec84044aff537c34ebf316dd0d181025d205515a978b6ee6c663fc53e1103da12093a94906ba401b63ad7b135b986a193f0155827ab24decdbdf6
 DIST genpatches-4.19-78.extras.tar.xz 17492 BLAKE2B 
fff8e54efa173f52fe79653e985c2e909b97c96f8b9ff553f485956ffbb38d07c9530c527cf145e4f9638521c6436e611fe7aa96e9fb006db052a05f26fce1d6
 SHA512 
9baea1b71776f335e2265cd8b61f971d9dfd7dad13ff30610495325ec5177355e9f09314f67acbe2a73c0d6be371693b6ec0d69371fd184bb317223697ed2053
+DIST genpatches-4.19-79.base.tar.xz 2093376 BLAKE2B 
3bc70ded7461e4a475e04caf8242c04364c8b3ac3dbdfb291be70c63d85fad71d5a076c6af2cf8b8f6a3ece99956156eb4c9d9b4fcd4f1f8ffef9d351463133a
 SHA512 
77585a40f03052969c432e89a0ef83c6213c409efb7edecbb90355178c4fb5eae18ba394dfa34b4cec96b0367460ca9c82a16588e68399675ed8ed0196425a87
+DIST genpatches-4.19-79.experimental.tar.xz 6432 BLAKE2B 
ae5dfbacf194e977ccf28ded2a9cdf9312413c3408d6b4f09e70b4ae8a57a21686a566187bec79474f52bbfdf1bcd01191c306699a7971cc5be987e5d878b499
 SHA512 
f0aac734899cc1fb8142fe2e22801b00def4dd66131b3193022847f0f55c774b1f85c77cb627fcee4f915a3a3047e85de7553cc5dd690a3b3913cf3b464cff6d
+DIST genpatches-4.19-79.extras.tar.xz 17496 BLAKE2B 
6011b09e47ee5662a85f73544fc58905a15fd7bd721dd12626677c6047d2f68f1188b334d62f409a6f0371022a38663b50667fab476e4592319a703335a4d47d
 SHA512 
1d1681ac92a9a63ee6d50516cbe528bfbf79157bf70333d56d04eaee1c5a7c9a59d791ca650e9f2d3baea9373a6c75327c0d20ad2bd49b9ec2fed2afb891a413
 DIST genpatches-4.4-190.base.tar.xz 2999876 BLAKE2B 
9b1574fbe235af236cfedaca29483861fb49554d31190b8ddc2345ddf9efa0d7949629dca51d3c7d3cc0c8739a87e6d97787728d8d6e8109818ce128fb176768
 SHA512 
6edb909e94ea4c1417b059e07702038c1c041e4840897444ac31f84a9e9fb20d3ad47a1ff55a71220cc4a35a025644dd08b7d2c8bbb57e233e2e1ad37992d237
 DIST genpatches-4.4-190.experimental.tar.xz 83292 BLAKE2B 
e758fe04e48703b973cdfdd5b8c80ccbdea3a15c3c26546af609dcaf668527db2ac806995bcb8363700d77888d893cf18216a439ca3e0b8a520a0c49fc16ca79
 SHA512 
d892cdefb89f19e309962c1a9b3f36acc70cf374686b46c40a3aa7be6eb7cef6ba2caf4bb2f202ce71bed3cb9bb9c5c6dc50898f0778d627b57574e0127942fd
 DIST genpatches-4.4-190.extras.tar.xz 16472 BLAKE2B 
84b99eeac57df3abe085e4260ef145ec49f5b5c46489a3a5e31e32e58aff535ec8b6db28179e2c73472d05a7e53f7b15e0fb095289433c4830f55e4943f79120
 SHA512 
07bf26f7c9b06e195845f573ba4c7416a92d65c476d11ccd3a12c9323b4c0bde33a23878ec4e93a22863639aac96831b4ff0e1d1734d858c8fc8d48d0925dcdb

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.80.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.80.ebuild
new file mode 100644
index 000..2f12b6bb346
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.80.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="79"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-10-17 Thread Mike Pagano
commit: 9d4bbf1452de94831e3ce56d56f7798808a7c4b8
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 17 23:42:03 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 23:42:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d4bbf14

sys-kernel/gentoo-sources: Linux patch 4.14.150

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.14.150.ebuild  | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index eec4eef92d8..a68b375c045 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -22,6 +22,9 @@ DIST genpatches-4.14-157.extras.tar.xz 17500 BLAKE2B 
5e4dfd4e925d3d9eb737ef2f93c
 DIST genpatches-4.14-158.base.tar.xz 3296784 BLAKE2B 
6c643f8518a1f720a874f2c1f81ad60b8eb29396fd05606ca5c089ef609080a0f9ca3f6c2e002526d0727894d6dfd1946675b8825963ec9bb141930a2603c069
 SHA512 
ae8edcbf238f0966afc73e9740b8b467c46813452821622b36418eb951aa23a6dec9ecbb7e85a314a690a5917e4db68ae072ce935c145fe8f71b67924389318d
 DIST genpatches-4.14-158.experimental.tar.xz 5932 BLAKE2B 
0816a80002dcaa792983151fd91d55ea1325f31559a7ee1428c605641cdbb06027c8cc19a0e4d3aa63166fdc55bb841f1d72422a1c1489c5a92e53b13caafe27
 SHA512 
6c3c8d1270508ddbedad27050f0e64c5c739a89686e8d9317a372229e65d89ab20637718a0c5943ee18bf60ae806e170654dadf965a55a07fa45a7b4ee7e192f
 DIST genpatches-4.14-158.extras.tar.xz 17508 BLAKE2B 
fc0baf4b3d8318a54115747323861b1d5e0d1383d8444efa97805747a51582320b95b588a7230afd6b4777b8444e63af3e307140a0cf1fe9364dfa723394fe13
 SHA512 
82c7257c79a5155fc7f5145b9a27f5ad008272ecd48ef01b6f316839fe088bafac0011226c0874a58893dd2691ebbd7a5da776e0847df4e1018464e14ea6810f
+DIST genpatches-4.14-159.base.tar.xz 3316136 BLAKE2B 
62be6e64af822c053ca6ab1cf863cb2527c5efd8de1f3ab70eff10e15a6bbd0206cc5facf8e60679f5011c8da252cddc64ed1ef781328156e9f8656f4f5bd6f9
 SHA512 
8ef97604b40db0cae3ccbe9d1e70658bcae3edde15425bf2d6de61220168546ec5767cd3d3c98e7e4084256cb6bb8c87ad9a725d85daf2b513d16ee462c62c75
+DIST genpatches-4.14-159.experimental.tar.xz 5936 BLAKE2B 
34cc049461977b7a2b9934a816e2c053dc8840df7ff878a8caaf247e0fc5233b85145d3685aa7d7ed2bf2429727864656283617aae8100c53c4bfeff5eb2c0ef
 SHA512 
160cf4005694abf8738d8bbd10ba4d34244fd474265abf68478889eadcbefeeb7a361bc8ea0a81fbb2ace76f4ca16759b57bb17d187e491451e8c742e8b56cbe
+DIST genpatches-4.14-159.extras.tar.xz 17504 BLAKE2B 
0a7236dcc4699768a2b1265dec72a363e1181daea4e426becccd3d41d979e603973c4f5d6780bf2962800b3a3ca8a1aa74ead9a96e1f7d71a66e46845dfc6618
 SHA512 
ee592a5bba71fd0726c90e32c35f1c8e3bc8240163530be94dfc1bca33036d3f5f708ed19e0b0d9752b6aa6e2d668cb955d7cc3b273f873d80b8295323470bd5
 DIST genpatches-4.19-66.base.tar.xz 1772628 BLAKE2B 
f5a67d4f2b2d58b5c6be6510b59140345987fa163462fbd7116cba7bff3bfa218b2873e0faedb77dc07d68afcbdb7ce0530bd668e704d28e77c4e989ad245c09
 SHA512 
08a71d75dcdf8086ac76d599549355599da65776254b2d51bf6f9c9067525800a782231357cdbf761205d50bdf8b43ff08cbcf9fadb5737e37f24a9e1a412ccf
 DIST genpatches-4.19-66.experimental.tar.xz 5808 BLAKE2B 
6346226bbd13fae3e282bf4e370ece861bb2e6a565cabee7dbd3f160091ba9be8ffec92937b54c05f34864c0dbcd478e0f58b9efbaf7e16858fa2be5c2bde50e
 SHA512 
79585d991a5ffe5b6aeb8bde1e63a18355d343aecd8a7e3d4a1323a9d9d03da4940c84e754a6907aa54aab7af61515f147480936a5c47d475fd30cc317d41c75
 DIST genpatches-4.19-66.extras.tar.xz 17484 BLAKE2B 
d58678ad2e9848d564766e70dda0e1096a747da439e0b67cef2ca881f0757771c0f59a89e1a997796f9bf641b49de5194a339abb5f68825b3908ee6159a9cc7a
 SHA512 
6cd474822db97440ff07dccebe755accc15800087c88fd609c5c02b420d77a63845c0e5376c8733ecada1ded5ca3a33537674072c84b5cf10e31d0b5c5968ad5

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.14.150.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.14.150.ebuild
new file mode 100644
index 000..c23de65858c
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.14.150.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="159"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-10-17 Thread Mike Pagano
commit: de18b2f825ff51d320e932298ca46028c587739a
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 17 23:40:05 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 23:40:13 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de18b2f8

sys-kernel/gentoo-sources: Linux patch 4.19.197

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.9.197.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index b1569d80c10..eec4eef92d8 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -88,6 +88,9 @@ DIST genpatches-4.9-200.extras.tar.xz 17368 BLAKE2B 
a2053c4c28396865c9bb969845cf
 DIST genpatches-4.9-201.base.tar.xz 3403832 BLAKE2B 
1df4a7a336fe463d09f8eb24f8c59cdec50ac2194db539481eb76cfbc7608e43d3eec37d7961103796c7f38a5790f8aae8619de93e8bd169095d73525036f534
 SHA512 
1d2459e9aed9c7fe83d45ef26275458a60b18fa0e3502e9e01b5ce81b194a6c2808fbda21ed60a8421d07f6524f686c88715c3738c00c7360d682495f790e7af
 DIST genpatches-4.9-201.experimental.tar.xz 106388 BLAKE2B 
e814e7a7628518da4acdf9c9d8219ac21f5b7cc7e17925d65bb7a8f83408b911c5581ad8b0e51a827e08548cd94f33492e1bf0b03e8cafc01e2add1a7487e13b
 SHA512 
11681beeeba718c9722ec0767809c34548882ba223923c7bdc5d58443871f3e1325b28d7fc67d5e2624327e607fbf906b42d0497dfb85e73f6841cbeb936d9f0
 DIST genpatches-4.9-201.extras.tar.xz 17364 BLAKE2B 
496b2c7762b5027f9b1da29dbcfa0a9321219e6053d79886810ddafc58f7871f7b733bd8e5c640dd0cd5b0918884bbc25219e552cb250592002765ed04976252
 SHA512 
29fa5298e0c08c5ddc683a7ccb061f5bd4bdfbb477847a5a62cb267ecd4c6e832706ea33db1e9bf77550f8a3688d0ba72799f471d44f351d57a30f509d7fde9a
+DIST genpatches-4.9-202.base.tar.xz 3427740 BLAKE2B 
10ceb4cfaf54b362553041ecb461fc88f497f7d3e53559c195f30b69d11d50dc6538728d676778359992ce0a469d12aeec5ef0471178310c8827b57577e0daec
 SHA512 
e34f18cc1d9250a400be73e981bdc131e82faa60d059c491f478314a8695a4910ea04f30d0a07392e8fa5238ef97798223358a5ffe32e0e5a461567dcee7aebb
+DIST genpatches-4.9-202.experimental.tar.xz 106412 BLAKE2B 
82431e9db58e41d20941d047f3bac690f6091b4a101ec1cd406d305879b582c7045615d3af73281728ccc6a846729c137dbd3806ee1c0fc5e22a07fad203843a
 SHA512 
262d7ca6c2bd7ef03c91ac7b5afe35fd6889ce6282c4649c3a44a22a6465f5d52f0fd81a80540e371e15e48d096714086183a51f0a0a620b90a8f08691db7876
+DIST genpatches-4.9-202.extras.tar.xz 17376 BLAKE2B 
35cd33f5d329dec94d05db9ba6a60916975b84a732c2e35f349f5a27457734e3061f099641d28894e47418b6a18dbf2fb9472fc55e1719a628747baad049677f
 SHA512 
c8c4b9caed845fbe28636f901ff5ddc73c730eac4ebf8b7f7354f45266a3defa967147243fa1ce8cdf2775b7f8f5912bf252f1801328e7b37a4e15c8d8bdc1c5
 DIST genpatches-5.2-13.base.tar.xz 491768 BLAKE2B 
4fab32935e7ec534662f33ddd8cf01a55e92ed19f11b50ab3d7e7e421e579828401a4535c0cf706778c01a87e53bb874e840935177b73723ec2efad6d0ce3210
 SHA512 
260d4e09527975573c31aeb7d0338f0909d5c052100ab755aa3094c4a8c2e2a1eb0cbcba6c42cb183d7601883ced95c4431064aa6670169adca6e81358eb9e84
 DIST genpatches-5.2-13.experimental.tar.xz 6144 BLAKE2B 
207dbeb745a047832e34908497cf919dbcad48e9a546ae60e07119617a9425f54f5380b3f090dc49a4686d9a5407908c8db3fa4b9cdc2d1dd1db7b839997d89b
 SHA512 
27e7bebd2f6159ec7424076f4bae0e9cebc8d630caf680ccd0dff31e4f45b5542dc9e8f44649d6289eff59ff68192614d8d12ea6ac3e002f5c8a420b60641917
 DIST genpatches-5.2-13.extras.tar.xz 1724 BLAKE2B 
ca8e21259048f32db03073094e8caa6477fa238bf97f6dfa4c151cd0347267d813313205778f242395a2fd608f9a41154ec81b474f5a95d86f625f27d1d30256
 SHA512 
db9ffacfed65ef2b439a82cec274541435b47cdfc2639c4dfeae9cd96028c4a9bc806266301e5389a41eee247c1d7505e07414cce4009076549c5a2e2cad872e

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.9.197.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.9.197.ebuild
new file mode 100644
index 000..0e9fd53105c
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.9.197.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="202"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-10-17 Thread Mike Pagano
commit: 502d3aacd7c9febe8d81d194ff432527328a1d71
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Oct 17 23:35:52 2019 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 23:35:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=502d3aac

sys-kernel/gentoo-sources: Linux patch 4.4.197

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.4.197.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 5ea888f3616..b1569d80c10 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -67,6 +67,9 @@ DIST genpatches-4.4-196.extras.tar.xz 16472 BLAKE2B 
b0df99fac16d1400664c18d8cb05
 DIST genpatches-4.4-197.base.tar.xz 3076668 BLAKE2B 
b86c33261b9db9c5d23c49258a674be2d725e2ca7d6a61981c2397592d45ea85af1591348f4388debcc6bce8585506f07273559ba149c79332752e2464fe399d
 SHA512 
69ab7c3a44c743317818ab90a5d4a1f7f60d65d06cf648ed927cea72b6e7069440b2c31113fea00d0be61e92bb246d4edd4f3cadddbd62e620a4caacbd76223f
 DIST genpatches-4.4-197.experimental.tar.xz 83288 BLAKE2B 
86c88f7a5d10bf1c0cb15d07d14d59ecfc9b0e9ee916295ba8ca8d0f8a92e64550e68d8791db1f36b52d37eb9952262608daf68ec81b86f73ae6b03efb1276f2
 SHA512 
f90acb873e2437c2ec57a01d04edd41903d4fce45204e231b398cc966c813a8433afabcfb2b46fd84a66fc103216219ead8bb7121187274ce47f5f1749a0d844
 DIST genpatches-4.4-197.extras.tar.xz 16484 BLAKE2B 
585a631d984baa5e4d3a6b1048581422ec3df6312af795aff5c9ecc72ef2829c2a8404c865ee950ba837ae99db4bcf51ae8fc81b9b03ad49b657d65e8725
 SHA512 
dec5138108293ca2775117ad6df20749517aff1a109a2d19538e403836301cab1a4dd50e13f5f586ed22d4518fc96e5ef2f719d8cf9ded7725b4711367e8ba7c
+DIST genpatches-4.4-198.base.tar.xz 3098172 BLAKE2B 
c1a6d56061b42b4108cbbd0a635f7daf5ddc12264d3fe540358a335baec97ca8d637574c92a40db0276ea216d5c79cdc70969740743b21ce108903858cdad6d4
 SHA512 
9ae2afc2d4b1e341c11629e1d2d5f634790006d720ac5e3174396958478b1d4e709b6431d8bea772337a5f74d677189dd4ad619b15b3afaeab9e5afeda178c81
+DIST genpatches-4.4-198.experimental.tar.xz 83272 BLAKE2B 
44bdd419b6e6450e7f842698198fc052e7c6d54d5dc2870458901301b5a7434e7da1ca977fe098254b4717553da25d1d4f63426778a24cddee38168bed199dd9
 SHA512 
9f9eca5bb0e2a46b5739e483736bc83a2773d0955d8c605a93fa67936cc2b211a595d3c99e17ad37c684f8975d9370c74e9193cb0813a772dca0f1d1e6bf3f5b
+DIST genpatches-4.4-198.extras.tar.xz 16472 BLAKE2B 
33e5532a85a9f6ec671dee26295bf55cdc5fbc38c10539efe6e70c73b6b5826263ceadda4714f5bdbd4c883c7e88babf2423a6f8699a3e3b102d69574615adf1
 SHA512 
54d42b68fdcc9e71f1be4bf77a29575c6b277d7f04bca8e5cec602ce19fb000b0d98412b0de95d3f34835caaf9507170a94e8ff5456ccea99f44bdf0a6fcb69c
 DIST genpatches-4.9-194.base.tar.xz 3303424 BLAKE2B 
c31452cd3e7548812bd941aa75082b36dd28f742cd923759857078e7835b0a2672d679b5a228b1093400844ddfb51ed88c527d203572dd4d4321a361e6e385c2
 SHA512 
60b1cea0799c5d429635d778e0daf082fdfa66dfa46d1702094d0945f7a23bea68a25b1895309e62595a906d590e6e938928369bf08b4a4ff198a8af4885c22c
 DIST genpatches-4.9-194.experimental.tar.xz 106460 BLAKE2B 
74c1fa350137bb9d36d6f1cf4fbbc450512306c3d16799a3e9ed101c9beedca7a6f04873fc8e3ba80aef3ce0de495331fca6dd328eabe2dee1b15338725fb9f4
 SHA512 
b8d832fa5dcabd4d0cd62619432c7984cf4fa3c7fda8860984236bfe9d1f96954fc78f54f50832d828705e83246d1d2b0e74c2a71c1c61f36f08a7ad2843339a
 DIST genpatches-4.9-194.extras.tar.xz 17364 BLAKE2B 
5c91b812e38b4648829ac87c10d435060ba3cd7c5ad50d1a41c658c5f6019802a3937e6160e08fea56579550687cb8c5c37fc1a86128d12ae375398556834635
 SHA512 
b4fce359d505282d02339564f0908696ac866033730f593f4991df1c223551716bf44cfb89ea1310f300248676fde4c633ccd453ee73d5b4ae6bfb5635283b18

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.4.197.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.4.197.ebuild
new file mode 100644
index 000..628e65dd675
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.4.197.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+ETYPE="sources"
+K_WANT_GENPATCHES="base extras experimental"
+K_GENPATCHES_VER="198"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sh 
~sparc ~x86"
+HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
+IUSE="experimental"
+
+DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
+SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
+
+pkg_postinst() {
+   kernel-2_pkg_postinst
+   einfo "For more info on this patchset, and how to report problems, see:"
+   einfo "${HOMEPAGE}"
+}
+
+pkg_postrm() {
+   kernel-2_pkg_postrm
+}



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

2019-10-17 Thread Sergei Trofimovich
commit: f3872a506edc7da0d987bcf0a90d4709945328a7
Author: Sergei Trofimovich  gentoo  org>
AuthorDate: Thu Oct 17 23:19:20 2019 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Thu Oct 17 23:22:21 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3872a50

sys-libs/glibc: restore strip quirk for 'libpthread.so.0'

This change effectively reverts commit e14229b10b513a
("sys-libs/glibc: drop prepallstrip, bug #587296")

gdb still relies on libpthread being unstripped.
See https://bugs.gentoo.org/697910 for details and reproducer.

Also see ebuild note that explains indirect mechanics
of how glibc relies on gdb's ability to traverse local symbols.

In EAPI=7 ebuilds (glibc-) we do selective stripping.

Reported-by: Minux
Closes: https://bugs.gentoo.org/697910
Bug: https://bugs.gentoo.org/587296
Bug: https://bugs.gentoo.org/46186
Signed-off-by: Sergei Trofimovich  gentoo.org>
Package-Manager: Portage-2.3.76, Repoman-2.3.17
Signed-off-by: Sergei Trofimovich  gentoo.org>

 sys-libs/glibc/glibc-2.19-r2.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.24-r4.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.25-r11.ebuild | 25 ++---
 sys-libs/glibc/glibc-2.26-r7.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.27-r6.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.28-r6.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.29-r2.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.29-r4.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.29-r5.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.30-r1.ebuild  | 25 ++---
 sys-libs/glibc/glibc-2.30.ebuild | 25 ++---
 sys-libs/glibc/glibc-.ebuild | 31 ---
 12 files changed, 270 insertions(+), 36 deletions(-)

diff --git a/sys-libs/glibc/glibc-2.19-r2.ebuild 
b/sys-libs/glibc/glibc-2.19-r2.ebuild
index 20b236f9037..de97f115887 100644
--- a/sys-libs/glibc/glibc-2.19-r2.ebuild
+++ b/sys-libs/glibc/glibc-2.19-r2.ebuild
@@ -56,12 +56,31 @@ export CTARGET=${CTARGET:-${CHOST}}
 if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
-   # portage's attempt to strip breaks non-native bianries
-   # at least on arm: bug #697428
-   RESTRICT=strip
fi
 fi
 
+# Note [Disable automatic stripping]
+# Disabling automatic stripping for a few reasons:
+# - portage's attempt to strip breaks non-native binaries at least on
+#   arm: bug #697428
+# - portage's attempt to strip libpthread.so.0 breaks gdb thread
+#   enumeration: bug #697910. This is quite subtle:
+#   * gdb uses glibc's libthread_db-1.0.so to enumerate threads.
+#   * libthread_db-1.0.so needs access to libpthread.so.0 local symbols
+# via 'ps_pglobal_lookup' symbol defined in gdb.
+#   * 'ps_pglobal_lookup' uses '.symtab' section table to resolve all
+# known symbols in 'libpthread.so.0'. Specifically 'nptl_version'
+# (unexported) is used to sanity check compatibility before enabling
+# debugging.
+# Also see 
https://sourceware.org/gdb/wiki/FAQ#GDB_does_not_see_any_threads_besides_the_one_in_which_crash_occurred.3B_or_SIGTRAP_kills_my_program_when_I_set_a_breakpoint
+#   * normal 'strip' command trims '.symtab'
+#   Thus our main goal here is to prevent 'libpthread.so.0' from
+#   losing it's '.symtab' entries.
+# As Gentoo's strip does not allow us to pass less aggressive stripping
+# options and does not check the machine target we disable stripping
+# entirely.
+RESTRICT=strip
+
 # We need a new-enough binutils/gcc to match upstream baseline.
 # Also we need to make sure our binutils/gcc supports TLS.
 COMMON_DEPEND="

diff --git a/sys-libs/glibc/glibc-2.24-r4.ebuild 
b/sys-libs/glibc/glibc-2.24-r4.ebuild
index 4c862498855..6e4b70cd46d 100644
--- a/sys-libs/glibc/glibc-2.24-r4.ebuild
+++ b/sys-libs/glibc/glibc-2.24-r4.ebuild
@@ -49,12 +49,31 @@ export CTARGET=${CTARGET:-${CHOST}}
 if [[ ${CTARGET} == ${CHOST} ]] ; then
if [[ ${CATEGORY} == cross-* ]] ; then
export CTARGET=${CATEGORY#cross-}
-   # portage's attempt to strip breaks non-native bianries
-   # at least on arm: bug #697428
-   RESTRICT=strip
fi
 fi
 
+# Note [Disable automatic stripping]
+# Disabling automatic stripping for a few reasons:
+# - portage's attempt to strip breaks non-native binaries at least on
+#   arm: bug #697428
+# - portage's attempt to strip libpthread.so.0 breaks gdb thread
+#   enumeration: bug #697910. This is quite subtle:
+#   * gdb uses glibc's libthread_db-1.0.so to enumerate threads.
+#   * libthread_db-1.0.so needs access to libpthread.so.0 local symbols
+# via 'ps_pglobal_lookup' symbol defined in gdb.
+#   * 'ps_pglobal_lookup' uses '.symtab' section table to resolve all

[gentoo-commits] proj/linux-patches: New tag: 5.3-9

2019-10-17 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 23:15:48 2019 +

New tag: 5.3-9




[gentoo-commits] proj/linux-patches: New tag: 4.19-79

2019-10-17 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 23:13:55 2019 +

New tag: 4.19-79




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

2019-10-17 Thread Matt Turner
commit: 5db4bdf551f3fbd881c4c8cf83e7b502c86bc303
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Oct 17 22:52:28 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Oct 17 22:55:02 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5db4bdf5

profiles: Remove x11-base/xorg-proto mask

Signed-off-by: Matt Turner  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index e27e0545f54..0c5ed9c91b4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,12 +33,6 @@
 # clamav-milter completely broken, #697688
 ~app-antivirus/clamav-0.102.0
 
-# Matt Turner  (2019-10-17)
-# Masked for testing
-=x11-base/xorg-proto-2019.2
-=x11-libs/libX11-1.6.9
-=x11-libs/libXvMC-1.0.12
-
 # Michał Górny  (2019-10-17)
 # Homepage gone.  EAPI 0.  Used to be used with old versions
 # of www-apps/gallery that were removed back in 2016.



[gentoo-commits] proj/linux-patches: New tag: 4.14-159

2019-10-17 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 22:47:15 2019 +

New tag: 4.14-159




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

2019-10-17 Thread David Seifert
commit: b90f98082f6425ae316dbef5398ef4f6abcc2bbf
Author: David Seifert  gentoo  org>
AuthorDate: Thu Oct 17 22:37:54 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Oct 17 22:37:54 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b90f9808

media-sound/vlorb: Port to EAPI 7

Bug: https://bugs.gentoo.org/697272
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 media-sound/vlorb/vlorb-1.2.ebuild | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/media-sound/vlorb/vlorb-1.2.ebuild 
b/media-sound/vlorb/vlorb-1.2.ebuild
index 6480dc21acc..07b2dfeedb0 100644
--- a/media-sound/vlorb/vlorb-1.2.ebuild
+++ b/media-sound/vlorb/vlorb-1.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
-DESCRIPTION="a high quality Audio CD to audio file encoder"
+DESCRIPTION="A high quality Audio CD to audio file encoder"
 HOMEPAGE="http://jk.yazzy.org/projects/vlorb/;
 SRC_URI="http://jk.yazzy.org/projects/vlorb/releases/${P}.tar.gz;
 
@@ -12,14 +12,17 @@ SLOT="0"
 KEYWORDS="amd64 ppc sparc x86"
 IUSE="ogg"
 
-DEPEND=">=media-sound/cdparanoia-3.9.8
-   >=dev-perl/CDDB-1.12
-   ogg? ( >=media-sound/vorbis-tools-1.0.1 )"
+RDEPEND="
+   dev-lang/perl
+   dev-perl/CDDB
+   media-sound/cdparanoia
+   ogg? ( media-sound/vorbis-tools )"
 
 src_compile() { :; }
 
 src_install() {
-   dodoc ChangeLog README
dobin vlorb
+
+   einstalldocs
doman vlorb.1
 }



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

2019-10-17 Thread David Seifert
commit: 27557e1444ff3696e88780eafbc9df8b3cc557b7
Author: David Seifert  gentoo  org>
AuthorDate: Thu Oct 17 22:37:44 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Oct 17 22:37:44 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27557e14

media-sound/setmixer: Port to EAPI 7

Bug: https://bugs.gentoo.org/697272
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 media-sound/setmixer/setmixer-19941227_p1.ebuild | 28 +---
 1 file changed, 15 insertions(+), 13 deletions(-)

diff --git a/media-sound/setmixer/setmixer-19941227_p1.ebuild 
b/media-sound/setmixer/setmixer-19941227_p1.ebuild
index 1ae45173a46..5a6817684f7 100644
--- a/media-sound/setmixer/setmixer-19941227_p1.ebuild
+++ b/media-sound/setmixer/setmixer-19941227_p1.ebuild
@@ -1,40 +1,42 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
-inherit eutils toolchain-funcs
+inherit toolchain-funcs
 
 MY_PV="27DEC94ds1"
 DEB_REV="1"
 
 DESCRIPTION="A commandline mixer"
-HOMEPAGE="http://packages.debian.org/unstable/sound/setmixer;
-SRC_URI="mirror://debian/pool/main/s/${PN}/${PN}_${MY_PV}.orig.tar.gz
+HOMEPAGE="https://packages.debian.org/unstable/sound/setmixer;
+SRC_URI="
+   mirror://debian/pool/main/s/${PN}/${PN}_${MY_PV}.orig.tar.gz
mirror://debian/pool/main/s/${PN}/${PN}_${MY_PV}-${DEB_REV}.diff.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~ppc sparc x86"
-IUSE=""
 
-S=${WORKDIR}/${PN}-${MY_PV}.orig
+S="${WORKDIR}/${PN}-${MY_PV}.orig"
 
-src_unpack() {
-   unpack ${A}
-   epatch "${DISTDIR}"/${PN}_${MY_PV}-${DEB_REV}.diff.gz
-}
+PATCHES=( "${WORKDIR}"/${PN}_${MY_PV}-${DEB_REV}.diff )
 
 src_compile() {
-   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" \
-   LDFLAGS="${LDFLAGS}" setmixer || die "emake failed."
+   emake \
+   CC="$(tc-getCC)" \
+   CFLAGS="${CFLAGS}" \
+   LDFLAGS="${LDFLAGS}" setmixer
 }
 
 src_install() {
dobin setmixer
+
dodoc README setmixer.lsm
doman setmixer.1
+
insinto /etc
doins debian/setmixer.conf
+
newinitd "${FILESDIR}"/setmixer.rc setmixer
 }



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

2019-10-17 Thread David Seifert
commit: 8dd7261a5b9654454d3230dfcb3fb209aaf0d61d
Author: David Seifert  gentoo  org>
AuthorDate: Thu Oct 17 22:37:47 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Oct 17 22:37:47 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dd7261a

media-sound/shorten: Port to EAPI 7

Bug: https://bugs.gentoo.org/697272
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 media-sound/shorten/shorten-3.6.1.ebuild | 17 +++--
 1 file changed, 3 insertions(+), 14 deletions(-)

diff --git a/media-sound/shorten/shorten-3.6.1.ebuild 
b/media-sound/shorten/shorten-3.6.1.ebuild
index 633278326a9..c0a5213789a 100644
--- a/media-sound/shorten/shorten-3.6.1.ebuild
+++ b/media-sound/shorten/shorten-3.6.1.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
-
-inherit eutils
+EAPI=7
 
 DESCRIPTION="fast, low complexity waveform coder (i.e. audio compressor)"
 HOMEPAGE="http://shnutils.freeshell.org/shorten/;
@@ -13,13 +11,4 @@ LICENSE="shorten"
 SLOT="0"
 KEYWORDS="alpha amd64 ~ppc sparc x86"
 
-src_unpack() {
-   unpack ${A}
-   cd "${S}"
-   epatch "${FILESDIR}/${PN}-tests.patch"
-}
-
-src_install() {
-   emake DESTDIR="${D}" install || die
-   dodoc AUTHORS ChangeLog NEWS README
-}
+PATCHES=( "${FILESDIR}"/${PN}-tests.patch )



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

2019-10-17 Thread David Seifert
commit: 70ab6c0a3a480238817cc50dd86124ec142c99c2
Author: David Seifert  gentoo  org>
AuthorDate: Thu Oct 17 22:37:40 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Oct 17 22:37:40 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70ab6c0a

media-sound/saydate: Port to EAPI 7

Bug: https://bugs.gentoo.org/697272
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 media-sound/saydate/saydate-0.3.0.ebuild | 40 ++--
 1 file changed, 22 insertions(+), 18 deletions(-)

diff --git a/media-sound/saydate/saydate-0.3.0.ebuild 
b/media-sound/saydate/saydate-0.3.0.ebuild
index 7b6489dbdcd..95205e4dd16 100644
--- a/media-sound/saydate/saydate-0.3.0.ebuild
+++ b/media-sound/saydate/saydate-0.3.0.ebuild
@@ -1,35 +1,39 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
+EAPI=7
 
-S=${WORKDIR}/${PN}
 DESCRIPTION="A Linux shell program that talks the date and system uptime"
 HOMEPAGE="http://unihedron.com/projects/saydate/saydate.php;
 SRC_URI="http://unihedron.com/projects/saydate/${P}.tar.gz;
+
 LICENSE="GPL-2"
 SLOT="0"
-
 KEYWORDS="amd64 ~ppc ppc64 sparc x86"
 
-DEPEND="=sys-apps/sed-4*"
-IUSE=""
+S=${WORKDIR}/${PN}
+
+src_prepare() {
+   default
 
-# Don't leave this empty or it tries to install directly
-# on livefs
-src_compile() { :; }
+   sed -i 's:/dev/audio:/dev/dsp:' saydate au2raw DESIGN || die
+
+   # don't install pre-compressed files
+   gunzip man/{saydate,au2raw}.1.gz || die
+}
+
+src_compile() {
+   # Don't leave this empty or it tries
+   # to install directly on livefs
+   :
+}
 
-src_install () {
-   insinto /usr/share/man/man1
-   doins "${S}"/man/saydate.1.gz "${S}"/man/au2raw.1.gz
+src_install() {
+   dobin saydate au2raw
 
-   dodir /usr/share/saydate
insinto /usr/share/saydate
-   doins "${S}"/data/*.raw
+   doins data/*.raw
 
-   sed -i "s:/dev/audio:/dev/dsp:" "${S}"/saydate
-   sed -i "s:/dev/audio:/dev/dsp:" "${S}"/au2raw
-   sed -i "s:/dev/audio:/dev/dsp:" "${S}"/DESIGN
+   doman man/{saydate,au2raw}.1
dodoc README TODO HISTORY DESIGN
-   dobin saydate au2raw || die "dobin failed"
 }



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

2019-10-17 Thread David Seifert
commit: 25493ad2dd5460b80513b80d81b251d76d69bcc5
Author: David Seifert  gentoo  org>
AuthorDate: Thu Oct 17 22:37:57 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Oct 17 22:37:57 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25493ad2

media-sound/wmsound-data: Port to EAPI 7

Closes: https://bugs.gentoo.org/697272
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 media-sound/wmsound-data/wmsound-data-1.0.0.ebuild | 24 +-
 1 file changed, 10 insertions(+), 14 deletions(-)

diff --git a/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild 
b/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild
index a3caefa71ad..0cec6efcb2b 100644
--- a/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild
+++ b/media-sound/wmsound-data/wmsound-data-1.0.0.ebuild
@@ -1,23 +1,21 @@
 # Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
-
-IUSE=""
+EAPI=7
 
 DESCRIPTION="A bunch of sounds for WindowMaker Sound Server"
-SRC_URI="http://largo.windowmaker.org/files/worms2sounds.tar.gz
-   http://largo.windowmaker.org/files/wmsdefault.tar.gz;
 HOMEPAGE="http://largo.windowmaker.org/;
+SRC_URI="
+   http://largo.windowmaker.org/files/worms2sounds.tar.gz
+   http://largo.windowmaker.org/files/wmsdefault.tar.gz;
 
-DEPEND=">=x11-wm/windowmaker-0.80.2-r2"
-
-SLOT="0"
 LICENSE="GPL-2"
+SLOT="0"
 KEYWORDS="amd64 ~ppc sparc x86"
 
-S1=${WORKDIR}/Sounds
-S2=${WORKDIR}/SoundSets
+RDEPEND=">=x11-wm/windowmaker-0.80.2-r2"
+
+S="${WORKDIR}"
 
 src_install() {
insinto /usr/share/WindowMaker/Defaults
@@ -32,11 +30,9 @@ src_install() {
insinto /usr/share/WindowMaker/SoundSets/Default
doins "${FILESDIR}"/wmsound-soundset
 
-   cd "${S1}"
insinto /usr/share/WindowMaker/Sounds
-   doins *.wav
+   doins Sounds/*.wav
 
-   cd "${S2}"
insinto /usr/share/WindowMaker/SoundSets
-   doins Worms2
+   doins SoundSets/Worms2
 }



[gentoo-commits] repo/gentoo:master commit in: media-sound/timidity-eawpatches/files/, media-sound/timidity-eawpatches/

2019-10-17 Thread David Seifert
commit: f86d2a47c95c5f7a50ee1ebc0f8d92d9a0a89c8e
Author: David Seifert  gentoo  org>
AuthorDate: Thu Oct 17 22:37:50 2019 +
Commit: David Seifert  gentoo  org>
CommitDate: Thu Oct 17 22:37:50 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f86d2a47

media-sound/timidity-eawpatches: Port to EAPI 7

Bug: https://bugs.gentoo.org/697272
Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: David Seifert  gentoo.org>

 .../files/timidity-eawpatches-12-fix-dir.patch |  9 +
 .../timidity-eawpatches-12-r5.ebuild   | 39 --
 2 files changed, 23 insertions(+), 25 deletions(-)

diff --git 
a/media-sound/timidity-eawpatches/files/timidity-eawpatches-12-fix-dir.patch 
b/media-sound/timidity-eawpatches/files/timidity-eawpatches-12-fix-dir.patch
new file mode 100644
index 000..a41b0eac3d0
--- /dev/null
+++ b/media-sound/timidity-eawpatches/files/timidity-eawpatches-12-fix-dir.patch
@@ -0,0 +1,9 @@
+--- a/linuxconfig/timidity.cfg
 b/linuxconfig/timidity.cfg
+@@ -1,5 +1,5 @@
+ #on my debian: /usr/local/share/timidity/timidity.cfg
+-dir /home/user/eawpats/
++dir /usr/share/timidity/eawpatches
+ source gravis.cfg
+ source gsdrums.cfg
+ source gssfx.cfg

diff --git a/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild 
b/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild
index 942dcdb38ee..3c9b2827791 100644
--- a/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild
+++ b/media-sound/timidity-eawpatches/timidity-eawpatches-12-r5.ebuild
@@ -1,9 +1,7 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=0
-
-S=${WORKDIR}/eawpats
+EAPI=7
 
 DESCRIPTION="Eric Welsh's GUS patches for TiMidity"
 HOMEPAGE="http://www.stardate.bc.ca/eawpatches/html/default.htm;
@@ -12,41 +10,32 @@ 
SRC_URI="http://5hdumat.samizdat.net/music/eawpats${PV}_full.tar.gz;
 LICENSE="free-noncomm"
 SLOT="0"
 KEYWORDS="amd64 arm ~arm64 hppa ppc ppc64 sparc x86"
-IUSE=""
+RESTRICT="binchecks strip"
 
 # These can be used for libmodplug too, so don't depend on timidity++
 DEPEND="app-eselect/eselect-timidity"
 RDEPEND=""
 
-RESTRICT="binchecks strip"
+S="${WORKDIR}/eawpats"
 
-src_unpack() {
-   unpack ${A}
-   sed -i -e "s:dir /home/user/eawpats/:dir 
/usr/share/timidity/eawpatches:" "${S}/linuxconfig/timidity.cfg"
-}
+PATCHES=( "${FILESDIR}"/${P}-fix-dir.patch )
 
 src_install() {
-   local instdir=/usr/share/timidity
+   # Install documentation, including subdirs
+   local f
+   while IFS="" read -d $'\0' -r f; do
+   dodoc "${f}"
+   rm "${f}" || die
+   done < <(find . -type f -name '*.txt' -print0)
 
# Set our installation directory
-   insinto ${instdir}/eawpatches
+   insinto /usr/share/timidity/eawpatches
 
# Install base timidity configuration for timidity-update
doins linuxconfig/timidity.cfg
-   rm -rf linuxconfig/ winconfig/
-
-   # Install base eawpatches
-   doins *.cfg *.pat
-   rm *.cfg *.pat
+   rm -rf linuxconfig/ winconfig/ patref24.hlp ultrasnd.ini || die
 
-   # Install patches from subdirectories
-   for d in `find . -type f -name \*.pat | sed 's,/[^/]*$,,' | sort -u`; do
-   insinto ${instdir}/eawpatches/${d}
-   doins ${d}/*.pat
-   done
-
-   # Install documentation, including subdirs
-   dodoc $(find . -name \*.txt)
+   doins -r .
 }
 
 pkg_postinst() {



[gentoo-commits] proj/linux-patches: New tag: 4.9-202

2019-10-17 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 22:36:40 2019 +

New tag: 4.9-202




[gentoo-commits] proj/linux-patches: New tag: 4.4-198

2019-10-17 Thread Mike Pagano
commit: 
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Oct 17 22:31:35 2019 +

New tag: 4.4-198




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

2019-10-17 Thread Aaron W. Swenson
commit: c10b4898dd8abacc49c747501e8b9929601723ad
Author: Aaron W. Swenson  gentoo  org>
AuthorDate: Thu Oct 17 22:29:25 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Thu Oct 17 22:30:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c10b4898

dev-python/python-dateutil: Patch fix, remove fbsd

Update patch so tests pass again.

Remove *-fbsd keywords again.

Bug: https://bugs.gentoo.org/679792
Closes: https://bugs.gentoo.org/695810
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Aaron W. Swenson  gentoo.org>

 ...o-Get-timezone-data-from-system-tzdata-r1.patch | 104 +
 .../python-dateutil/python-dateutil-2.8.0.ebuild   |   4 +-
 2 files changed, 106 insertions(+), 2 deletions(-)

diff --git 
a/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
 
b/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
new file mode 100644
index 000..a937e6600a2
--- /dev/null
+++ 
b/dev-python/python-dateutil/files/0001-zoneinfo-Get-timezone-data-from-system-tzdata-r1.patch
@@ -0,0 +1,104 @@
+From f48e70ae846c161dfbfe6ddb36e4bcad4427ac8c Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Micha=C5=82=20G=C3=B3rny?= 
+Date: Tue, 3 Apr 2018 22:03:32 +0200
+Subject: [PATCH] zoneinfo: Get timezone data from system tzdata
+
+---
+ dateutil/test/test_imports.py |  3 +--
+ dateutil/zoneinfo/__init__.py | 25 ++---
+ 2 files changed, 15 insertions(+), 13 deletions(-)
+
+diff --git a/dateutil/test/test_imports.py b/dateutil/test/test_imports.py
+index 2a19b62..97d07e4 100644
+--- a/dateutil/test/test_imports.py
 b/dateutil/test/test_imports.py
+@@ -158,9 +158,8 @@ class ImportZoneInfoTest(unittest.TestCase):
+ def testZoneinfoStar(self):
+ from dateutil.zoneinfo import gettz
+ from dateutil.zoneinfo import gettz_db_metadata
+-from dateutil.zoneinfo import rebuild
+ 
+-zi_all = (gettz, gettz_db_metadata, rebuild)
++zi_all = (gettz, gettz_db_metadata)
+ 
+ for var in zi_all:
+ self.assertIsNot(var, None)
+diff --git a/dateutil/zoneinfo/__init__.py b/dateutil/zoneinfo/__init__.py
+index 34f11ad..e9870ca 100644
+--- a/dateutil/zoneinfo/__init__.py
 b/dateutil/zoneinfo/__init__.py
+@@ -1,6 +1,7 @@
+ # -*- coding: utf-8 -*-
+ import warnings
+ import json
++import os
+ 
+ from tarfile import TarFile
+ from pkgutil import get_data
+@@ -10,7 +11,7 @@ from dateutil.tz import tzfile as _tzfile
+ 
+ __all__ = ["get_zonefile_instance", "gettz", "gettz_db_metadata"]
+ 
+-ZONEFILENAME = "dateutil-zoneinfo.tar.gz"
++ZONEDIRECTORY = "/usr/share/zoneinfo"
+ METADATA_FN = 'METADATA'
+ 
+ 
+@@ -19,12 +20,14 @@ class tzfile(_tzfile):
+ return (gettz, (self._filename,))
+ 
+ 
+-def getzoneinfofile_stream():
+-try:
+-return BytesIO(get_data(__name__, ZONEFILENAME))
+-except IOError as e:  # TODO  switch to FileNotFoundError?
+-warnings.warn("I/O error({0}): {1}".format(e.errno, e.strerror))
+-return None
++def iter_zones(topdir):
++for dirpath, dirnames, filenames in os.walk(topdir):
++for f in filenames:
++if f.endswith('.list') or f.endswith('.tab'):
++continue
++fpath = os.path.join(dirpath, f)
++relpath = os.path.relpath(fpath, topdir)
++yield (relpath, tzfile(fpath, filename=relpath))
+ 
+ 
+ class ZoneInfoFile(object):
+@@ -48,7 +51,7 @@ class ZoneInfoFile(object):
+ # no metadata in tar file
+ self.metadata = None
+ else:
+-self.zones = {}
++self.zones = dict(iter_zones(ZONEDIRECTORY))
+ self.metadata = None
+ 
+ def get(self, name, default=None):
+@@ -99,7 +102,7 @@ def get_zonefile_instance(new_instance=False):
+ zif = getattr(get_zonefile_instance, '_cached_instance', None)
+ 
+ if zif is None:
+-zif = ZoneInfoFile(getzoneinfofile_stream())
++zif = ZoneInfoFile()
+ 
+ get_zonefile_instance._cached_instance = zif
+ 
+@@ -140,7 +143,7 @@ def gettz(name):
+   DeprecationWarning)
+ 
+ if len(_CLASS_ZONE_INSTANCE) == 0:
+-_CLASS_ZONE_INSTANCE.append(ZoneInfoFile(getzoneinfofile_stream()))
++_CLASS_ZONE_INSTANCE.append(ZoneInfoFile())
+ return _CLASS_ZONE_INSTANCE[0].zones.get(name)
+ 
+ 
+@@ -163,5 +166,5 @@ def gettz_db_metadata():
+   DeprecationWarning)
+ 
+ if len(_CLASS_ZONE_INSTANCE) == 0:
+-_CLASS_ZONE_INSTANCE.append(ZoneInfoFile(getzoneinfofile_stream()))
++_CLASS_ZONE_INSTANCE.append(ZoneInfoFile())
+ return _CLASS_ZONE_INSTANCE[0].metadata
+-- 
+2.17.0
+

diff --git a/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild
index 172252195d8..52b8a8decb7 100644
--- 

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

2019-10-17 Thread Aaron W. Swenson
commit: 7033cf03516f31603586777683c5d6a65448cd3d
Author: David Heidelberg  ixit  cz>
AuthorDate: Wed Aug 14 15:29:09 2019 +
Commit: Aaron W. Swenson  gentoo  org>
CommitDate: Thu Oct 17 22:15:09 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7033cf03

dev-python/python-dateutil: bump 2.8.0

also bump EAPI to 7

Signed-off-by: David Heidelberg  ixit.cz>
Closes: https://github.com/gentoo/gentoo/pull/12705
Signed-off-by: Aaron W. Swenson  gentoo.org>

 dev-python/python-dateutil/Manifest|  1 +
 .../python-dateutil/python-dateutil-2.8.0.ebuild   | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/dev-python/python-dateutil/Manifest 
b/dev-python/python-dateutil/Manifest
index d4b7691de6b..46398b25f55 100644
--- a/dev-python/python-dateutil/Manifest
+++ b/dev-python/python-dateutil/Manifest
@@ -4,3 +4,4 @@ DIST python-dateutil-2.7.2.tar.gz 298000 BLAKE2B 
4091108b125eb080809c74cdb53daa2
 DIST python-dateutil-2.7.3.tar.gz 302871 BLAKE2B 
8b6cff6f977d52b64665f33d10513a638addada91a00192eb1f522aa9b239d5fb051bff3cfb837871ea61d7ab69994cfe5b42bb3b00851b5f15368c26db06fd7
 SHA512 
6b9973fa7db69d931bc6e772201c67bb7bbfa693ba35484d34960bd7e6227f2a2343df814a9fdbbff253e750299c48e7cdb2a609bf4522595df8a7fc595784fd
 DIST python-dateutil-2.7.4.tar.gz 302229 BLAKE2B 
e2a43d8587f895a9a72ca5ab5c18a5c471497c8f8e89459450219e9f5ecb55223f36f219d77df8da4c04d55fb5feb3a17f9a5c2318c077dac4307da7c0bd9645
 SHA512 
3b02b397e3138dc755f34a2f7a50464f96a73b7be1f335ce7da3fa99e6d59f34a0643dfb1c933d4ef4fbaab88364fab6e760e4b1e7040b8cbbfebdd75e7e9a4f
 DIST python-dateutil-2.7.5.tar.gz 316043 BLAKE2B 
29511f7e484c369084d696f45a07e01e096e7b1114f982026f8df71d569eea30d657956d3e53725ad57564c1e445414c2ed543e3e6d2dd89902d7838cbb9e6fe
 SHA512 
762752191d584a3995b55bbcfadc829261a263e0e6515a52db2fc32157bf0b3f96f787107c49bbd77cab9ce7e3f692ab3e8f392260fc18e6456b74eb190b44d3
+DIST python-dateutil-2.8.0.tar.gz 327134 BLAKE2B 
6525eee57aeaef3c588413210df7c1ad3627a380c6e44af78e9acc9abea523b29e8d9afec495f8d1e585d25d32ab82e6e28bf93dca148893d2e6a533e1f4ce47
 SHA512 
ec7da86203572582f883a4686acf8a732a2de4f396d809057eb51b2c60dbca5623a7fa90c2c0618c281a2282c60841739bd837731a51cc876f4ff369297f2f81

diff --git a/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild 
b/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild
new file mode 100644
index 000..172252195d8
--- /dev/null
+++ b/dev-python/python-dateutil/python-dateutil-2.8.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} pypy pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Extensions to the standard Python datetime module"
+HOMEPAGE="
+   https://dateutil.readthedocs.org/
+   https://pypi.org/project/python-dateutil
+   https://github.com/dateutil/dateutil/
+"
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-fbsd ~x86-fbsd ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos"
+IUSE="test"
+
+RDEPEND="
+   >=dev-python/six-1.5[${PYTHON_USEDEP}]
+   sys-libs/timezone-data
+"
+DEPEND="${RDEPEND}
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   )
+"
+
+python_prepare_all() {
+   local PATCHES=(
+   
"${FILESDIR}"/0001-zoneinfo-Get-timezone-data-from-system-tzdata.patch
+   )
+
+   # don't install zoneinfo tarball
+   sed -i '/package_data=/d' setup.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   py.test -v || die "Tests failed under ${EPYTHON}"
+}



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

2019-10-17 Thread Jeroen Roovers
commit: 242d0c17f956705c0dabda0859f28dbc886ff4a8
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 17 22:05:43 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 17 22:05:59 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=242d0c17

www-client/opera: Old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera/Manifest  |   1 -
 www-client/opera/opera-64.0.3417.54.ebuild | 111 -
 2 files changed, 112 deletions(-)

diff --git a/www-client/opera/Manifest b/www-client/opera/Manifest
index ceede36fd84..0faf26fe52a 100644
--- a/www-client/opera/Manifest
+++ b/www-client/opera/Manifest
@@ -1,2 +1 @@
-DIST opera-stable_64.0.3417.54_amd64.deb 65791314 BLAKE2B 
394b38a3ce7002124c5ca2bf1612f2ed019e1b275bbc04926603646029091954b217ac45cf0a9ca4b5ff98780fe3666ae18aed9cb9adea7531bf95c1cfb9338e
 SHA512 
49f32c44b7877ccb0c3d306fe00a03d20f70d884df0bcd00a8468700d0420793aca50462427aad2bd948e3db1c91f20b97e49ee5e462f929e67d40b8000468f0
 DIST opera-stable_64.0.3417.61_amd64.deb 66139492 BLAKE2B 
bdb6c8d622418a11bea98149c502145b9d39425f044d81885cc03fee395ed6dfe756c4817cf68d84bd97fdc7f79eb99ff47a2fa8395036519961a1e4cb526517
 SHA512 
443862bbf74769d7242350e974bba298ab2a39d05a169dbf9e5dbf8f9e75da2b57fa5595d29499010b3a05ffd111f6753a598ae5c05c1a374935c484b969eb24

diff --git a/www-client/opera/opera-64.0.3417.54.ebuild 
b/www-client/opera/opera-64.0.3417.54.ebuild
deleted file mode 100644
index b28807261d0..000
--- a/www-client/opera/opera-64.0.3417.54.ebuild
+++ /dev/null
@@ -1,111 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB en-US es-419 es fil fi fr-CA fr hi hr hu 
id
-   it ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk 
vi
-   zh-CN zh-TW
-
-"
-inherit chromium-2 multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   https://download1.operacdn.com/pub/
-   https://download2.operacdn.com/pub/
-   https://download3.operacdn.com/pub/
-   https://download4.operacdn.com/pub/
-"
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
-"
-done
-KEYWORDS="amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   default
-
-   OPERA_HOME="usr/$(get_libdir)/${PN}"
-
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   esac
-
-   rm usr/bin/${PN} || die
-
-   rm usr/share/doc/${PN}-stable/copyright || die
-   mv usr/share/doc/${PN}-stable usr/share/doc/${PF} || die
-   gunzip usr/share/doc/${PF}/changelog.gz || die
-
-   pushd "${OPERA_HOME}"/localization > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   rm "${OPERA_HOME}"/${PN}_autoupdate || die
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /"${OPERA_HOME}"/opera_sandbox
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}



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

2019-10-17 Thread Jeroen Roovers
commit: 36a59dd8fb6c5fcd31261038cf44b235c637e561
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 17 22:04:28 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 17 22:05:58 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36a59dd8

www-client/opera: Stable

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera/opera-64.0.3417.61.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/opera/opera-64.0.3417.61.ebuild 
b/www-client/opera/opera-64.0.3417.61.ebuild
index eec568e74cf..b28807261d0 100644
--- a/www-client/opera/opera-64.0.3417.61.ebuild
+++ b/www-client/opera/opera-64.0.3417.61.ebuild
@@ -25,7 +25,7 @@ SRC_URI+="
"${uri}${PN}/desktop/${PV}/linux/${PN}-stable_${PV}_amd64.deb"
 "
 done
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 RDEPEND="
dev-libs/expat



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

2019-10-17 Thread Jeroen Roovers
commit: 345e6cdfa565d362878b0b566bf0ed9a2aa890fd
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 17 22:01:07 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 17 22:03:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=345e6cdf

www-client/opera-beta: Version 65.0.3467.7

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera-beta/Manifest |   1 +
 .../opera-beta/opera-beta-65.0.3467.7.ebuild   | 115 +
 2 files changed, 116 insertions(+)

diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest
index 2f82f83e203..a216546351e 100644
--- a/www-client/opera-beta/Manifest
+++ b/www-client/opera-beta/Manifest
@@ -1 +1,2 @@
 DIST opera-beta_64.0.3417.41_amd64.deb 67148350 BLAKE2B 
00d34c066e4804533ecabb886c7a030ef5dc176eb48c2183b246561652d0489760f272e3de5f033404e0d54606bc1d704028682262f1d4b61131ae78809c2da2
 SHA512 
9c4e722fb79365244746a1627520e1dcbf9c9e285bbb4216960060afeab7e502be908f94250241f3c8fd5fe4977508bbd024f1dbc8a0b39db404c36b1722
+DIST opera-beta_65.0.3467.7_amd64.deb 67026974 BLAKE2B 
4065cb2fb8d7ce16b2de66b39a38c8a8e8ac1eb3a2e82e642c902833c456580dc5d8cc45271d1633942c8513460f49a1ca9377c61b8fd0e21ef8ab8b77c17edc
 SHA512 
c30f294ce576b4faba82b64f4fee99b3ea9d318e99034d41110d34f15a7db919b781054b70e5cca66f5102a9ff57ecf9c58c86e1c96f4f4fcdc2f6915061c85c

diff --git a/www-client/opera-beta/opera-beta-65.0.3467.7.ebuild 
b/www-client/opera-beta/opera-beta-65.0.3467.7.ebuild
new file mode 100644
index 000..59a8587ec4b
--- /dev/null
+++ b/www-client/opera-beta/opera-beta-65.0.3467.7.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
+   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
+   zh-CN zh-TW
+"
+inherit chromium-2 multilib unpacker xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
+"
+SRC_URI="amd64? ("
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
+"
+done
+SRC_URI+=")"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+pkg_setup() {
+   OPERA_HOME="usr/$(get_libdir)/${PN}"
+}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+src_prepare() {
+   default
+
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   x86)
+   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
+   ;;
+   esac
+
+   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
+   gunzip usr/share/doc/${PF}/changelog.gz || die
+
+   rm usr/bin/${PN} || die
+
+   pushd "${OPERA_HOME}/localization" > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+   sed -i \
+   -e 's|^TargetEnvironment|X-&|g' \
+   usr/share/applications/${PN}.desktop || die
+}
+
+src_install() {
+   mv * "${D}" || die
+   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
+   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}



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

2019-10-17 Thread Jeroen Roovers
commit: 0d8c2664a9ccdd51275f86bbc317029d90c9e5a0
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 17 22:02:03 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 17 22:03:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d8c2664

www-client/opera-developer: Version 66.0.3475.0

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera-developer/Manifest|   1 +
 .../opera-developer-66.0.3475.0.ebuild | 115 +
 2 files changed, 116 insertions(+)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index 0c4157e08d1..e921a5ea0a9 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,2 +1,3 @@
 DIST opera-developer_65.0.3459.0_amd64.deb 67423020 BLAKE2B 
154a04fc3c9787009db245601ab10a739bfaf7dcc548c8cc659ee61585defac3f6a297fb0082087e0a5df2488375b6a50f751723941039b6e6fa0ad788c43413
 SHA512 
b5f32aceb4d2f295a831afc47b60574899b473ce37bca9f85aeb0e76d893d15a6fa141514c269db556d472ae98fa0f0ef11491467a5e64123e51f66d5d18c2e7
 DIST opera-developer_65.0.3466.0_amd64.deb 66719048 BLAKE2B 
8c0b6d47055c08ca306400c8ed7d0eeb2d74f0137bbf82f2afc51171eff1f432d7d109649460d6b98a8126d538886b3e79e2901d7cd14ec5e551521ff057e402
 SHA512 
41b756d079d0f2ffc3004388bbb39fd212a6cd2f18b19bc75308c5422732476716b5cb266147abee6d232257fe175e7996e0ec366b4d4bb266f56e36e513b8e8
+DIST opera-developer_66.0.3475.0_amd64.deb 67711192 BLAKE2B 
32ffb9f5d5c31492b9f6f1ff148a9870fac1fed1b4f7659648e7c1bd7710df875f534efe2a363caba7032b96282e7de9111b144b4e60ddaf7bcd2ba9ec4d50f5
 SHA512 
8c269749c59564b1d0a7bb6efeb79fc4cf25bbaede64028b7098740df98c498dc8b9876fee45d9dea20b7125cbd94acd17e34e458bc403de81855b84af46953e

diff --git a/www-client/opera-developer/opera-developer-66.0.3475.0.ebuild 
b/www-client/opera-developer/opera-developer-66.0.3475.0.ebuild
new file mode 100644
index 000..132f88d2236
--- /dev/null
+++ b/www-client/opera-developer/opera-developer-66.0.3475.0.ebuild
@@ -0,0 +1,115 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+CHROMIUM_LANGS="
+   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
+   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
+   zh-CN zh-TW
+"
+inherit chromium-2 multilib unpacker xdg-utils
+
+DESCRIPTION="A fast and secure web browser"
+HOMEPAGE="https://www.opera.com/;
+LICENSE="OPERA-2014"
+SLOT="0"
+SRC_URI_BASE="
+   https://download1.operacdn.com/pub/
+   https://download2.operacdn.com/pub/
+   https://download3.operacdn.com/pub/
+   https://download4.operacdn.com/pub/
+"
+SRC_URI="amd64? ("
+for uri in ${SRC_URI_BASE}; do
+SRC_URI+="
+   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
+"
+done
+SRC_URI+=")"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   gnome-base/gconf:2
+   media-libs/alsa-lib
+   media-libs/fontconfig
+   media-libs/freetype
+   net-misc/curl
+   net-print/cups
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libXScrnSaver
+   x11-libs/libXcomposite
+   x11-libs/libXcursor
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXi
+   x11-libs/libXrandr
+   x11-libs/libXrender
+   x11-libs/libXtst
+   x11-libs/libnotify
+   x11-libs/pango[X]
+"
+
+QA_PREBUILT="*"
+S=${WORKDIR}
+
+src_unpack() {
+   unpack_deb ${A}
+}
+
+pkg_setup() {
+   OPERA_HOME="usr/$(get_libdir)/${PN}"
+}
+
+src_prepare() {
+   default
+
+   case ${ARCH} in
+   amd64)
+   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
+   rm -r usr/lib || die
+   ;;
+   x86)
+   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
+   ;;
+   esac
+
+   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
+   gunzip usr/share/doc/${PF}/changelog.gz || die
+
+   rm usr/bin/${PN} || die
+
+   pushd "${OPERA_HOME}/localization" > /dev/null || die
+   chromium_remove_language_paks
+   popd > /dev/null || die
+
+   sed -i \
+   -e 's|^TargetEnvironment|X-&|g' \
+   usr/share/applications/${PN}.desktop || die
+}
+
+src_install() {
+   mv * "${D}" || die
+   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
+   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+   

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

2019-10-17 Thread Jeroen Roovers
commit: 2a75d7cc99c01da6f642eb5401e181a099181db1
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 17 22:03:01 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 17 22:03:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a75d7cc

www-client/opera-developer: Old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera-developer/Manifest|   2 -
 .../opera-developer-65.0.3459.0.ebuild | 115 -
 .../opera-developer-65.0.3466.0.ebuild | 115 -
 3 files changed, 232 deletions(-)

diff --git a/www-client/opera-developer/Manifest 
b/www-client/opera-developer/Manifest
index e921a5ea0a9..6f393630d51 100644
--- a/www-client/opera-developer/Manifest
+++ b/www-client/opera-developer/Manifest
@@ -1,3 +1 @@
-DIST opera-developer_65.0.3459.0_amd64.deb 67423020 BLAKE2B 
154a04fc3c9787009db245601ab10a739bfaf7dcc548c8cc659ee61585defac3f6a297fb0082087e0a5df2488375b6a50f751723941039b6e6fa0ad788c43413
 SHA512 
b5f32aceb4d2f295a831afc47b60574899b473ce37bca9f85aeb0e76d893d15a6fa141514c269db556d472ae98fa0f0ef11491467a5e64123e51f66d5d18c2e7
-DIST opera-developer_65.0.3466.0_amd64.deb 66719048 BLAKE2B 
8c0b6d47055c08ca306400c8ed7d0eeb2d74f0137bbf82f2afc51171eff1f432d7d109649460d6b98a8126d538886b3e79e2901d7cd14ec5e551521ff057e402
 SHA512 
41b756d079d0f2ffc3004388bbb39fd212a6cd2f18b19bc75308c5422732476716b5cb266147abee6d232257fe175e7996e0ec366b4d4bb266f56e36e513b8e8
 DIST opera-developer_66.0.3475.0_amd64.deb 67711192 BLAKE2B 
32ffb9f5d5c31492b9f6f1ff148a9870fac1fed1b4f7659648e7c1bd7710df875f534efe2a363caba7032b96282e7de9111b144b4e60ddaf7bcd2ba9ec4d50f5
 SHA512 
8c269749c59564b1d0a7bb6efeb79fc4cf25bbaede64028b7098740df98c498dc8b9876fee45d9dea20b7125cbd94acd17e34e458bc403de81855b84af46953e

diff --git a/www-client/opera-developer/opera-developer-65.0.3459.0.ebuild 
b/www-client/opera-developer/opera-developer-65.0.3459.0.ebuild
deleted file mode 100644
index 132f88d2236..000
--- a/www-client/opera-developer/opera-developer-65.0.3459.0.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
-   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
-   zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   https://download1.operacdn.com/pub/
-   https://download2.operacdn.com/pub/
-   https://download3.operacdn.com/pub/
-   https://download4.operacdn.com/pub/
-"
-SRC_URI="amd64? ("
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
-"
-done
-SRC_URI+=")"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-pkg_setup() {
-   OPERA_HOME="usr/$(get_libdir)/${PN}"
-}
-
-src_prepare() {
-   default
-
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   x86)
-   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
-   ;;
-   esac
-
-   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
-   gunzip usr/share/doc/${PF}/changelog.gz || die
-
-   rm usr/bin/${PN} || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postinst() {
-   

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

2019-10-17 Thread Jeroen Roovers
commit: 7b63a1066276174d6d05f1205a3166c89ceed43f
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Thu Oct 17 22:01:34 2019 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Thu Oct 17 22:03:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b63a106

www-client/opera-beta: Old

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Jeroen Roovers  gentoo.org>

 www-client/opera-beta/Manifest |   1 -
 .../opera-beta/opera-beta-64.0.3417.41.ebuild  | 115 -
 2 files changed, 116 deletions(-)

diff --git a/www-client/opera-beta/Manifest b/www-client/opera-beta/Manifest
index a216546351e..6a3ebb2faf1 100644
--- a/www-client/opera-beta/Manifest
+++ b/www-client/opera-beta/Manifest
@@ -1,2 +1 @@
-DIST opera-beta_64.0.3417.41_amd64.deb 67148350 BLAKE2B 
00d34c066e4804533ecabb886c7a030ef5dc176eb48c2183b246561652d0489760f272e3de5f033404e0d54606bc1d704028682262f1d4b61131ae78809c2da2
 SHA512 
9c4e722fb79365244746a1627520e1dcbf9c9e285bbb4216960060afeab7e502be908f94250241f3c8fd5fe4977508bbd024f1dbc8a0b39db404c36b1722
 DIST opera-beta_65.0.3467.7_amd64.deb 67026974 BLAKE2B 
4065cb2fb8d7ce16b2de66b39a38c8a8e8ac1eb3a2e82e642c902833c456580dc5d8cc45271d1633942c8513460f49a1ca9377c61b8fd0e21ef8ab8b77c17edc
 SHA512 
c30f294ce576b4faba82b64f4fee99b3ea9d318e99034d41110d34f15a7db919b781054b70e5cca66f5102a9ff57ecf9c58c86e1c96f4f4fcdc2f6915061c85c

diff --git a/www-client/opera-beta/opera-beta-64.0.3417.41.ebuild 
b/www-client/opera-beta/opera-beta-64.0.3417.41.ebuild
deleted file mode 100644
index 59a8587ec4b..000
--- a/www-client/opera-beta/opera-beta-64.0.3417.41.ebuild
+++ /dev/null
@@ -1,115 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-CHROMIUM_LANGS="
-   be bg bn ca cs da de el en-GB es es-419 fi fil fr fr-CA hi hr hu id it
-   ja ko lt lv ms nb nl pl pt-BR pt-PT ro ru sk sr sv sw ta te th tr uk vi
-   zh-CN zh-TW
-"
-inherit chromium-2 multilib unpacker xdg-utils
-
-DESCRIPTION="A fast and secure web browser"
-HOMEPAGE="https://www.opera.com/;
-LICENSE="OPERA-2014"
-SLOT="0"
-SRC_URI_BASE="
-   https://download1.operacdn.com/pub/
-   https://download2.operacdn.com/pub/
-   https://download3.operacdn.com/pub/
-   https://download4.operacdn.com/pub/
-"
-SRC_URI="amd64? ("
-for uri in ${SRC_URI_BASE}; do
-SRC_URI+="
-   "${uri}${PN}/${PV}/linux/${PN}_${PV}_amd64.deb"
-"
-done
-SRC_URI+=")"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf:2
-   media-libs/alsa-lib
-   media-libs/fontconfig
-   media-libs/freetype
-   net-misc/curl
-   net-print/cups
-   sys-apps/dbus
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/libXScrnSaver
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXtst
-   x11-libs/libnotify
-   x11-libs/pango[X]
-"
-
-QA_PREBUILT="*"
-S=${WORKDIR}
-
-pkg_setup() {
-   OPERA_HOME="usr/$(get_libdir)/${PN}"
-}
-
-src_unpack() {
-   unpack_deb ${A}
-}
-
-src_prepare() {
-   default
-
-   case ${ARCH} in
-   amd64)
-   mv usr/lib/x86_64-linux-gnu usr/$(get_libdir) || die
-   rm -r usr/lib || die
-   ;;
-   x86)
-   mv usr/lib/i386-linux-gnu/${PN} usr/$(get_libdir)/ || 
die
-   ;;
-   esac
-
-   mv usr/share/doc/${PN} usr/share/doc/${PF} || die
-   gunzip usr/share/doc/${PF}/changelog.gz || die
-
-   rm usr/bin/${PN} || die
-
-   pushd "${OPERA_HOME}/localization" > /dev/null || die
-   chromium_remove_language_paks
-   popd > /dev/null || die
-
-   sed -i \
-   -e 's|^TargetEnvironment|X-&|g' \
-   usr/share/applications/${PN}.desktop || die
-}
-
-src_install() {
-   mv * "${D}" || die
-   dosym ../$(get_libdir)/${PN}/${PN} /usr/bin/${PN}
-   fperms 4711 /usr/$(get_libdir)/${PN}/opera_sandbox
-}
-
-pkg_postrm() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   xdg_icon_cache_update
-   xdg_mimeinfo_database_update
-}



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

2019-10-17 Thread Manuel Rüger
commit: bf7530a0e40ac8a62f41857e0a88cab12698d896
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 17 20:10:14 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 17 20:10:14 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf7530a0

app-metrics/prometheus: Version bump to 2.13.1

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Manuel Rüger  gentoo.org>

 app-metrics/prometheus/Manifest |  1 +
 app-metrics/prometheus/prometheus-2.13.1.ebuild | 68 +
 2 files changed, 69 insertions(+)

diff --git a/app-metrics/prometheus/Manifest b/app-metrics/prometheus/Manifest
index 063a2162530..e5dcd86240c 100644
--- a/app-metrics/prometheus/Manifest
+++ b/app-metrics/prometheus/Manifest
@@ -1,4 +1,5 @@
 DIST prometheus-2.11.2.tar.gz 12132678 BLAKE2B 
0b6b9a93b7329c124f901d0acc6130132aa187142f0416e087c12f20b0cd35f8564a27d0df8c0bc811284b9811f446344adf700d6611afac3c5c1131c208b341
 SHA512 
cecdaf4522885bdf62492667d92475a97c54b04c1e93f48b6078def319fe33f5e28aafbab61e3609413615d6f853e817564fc372e5d1df0d867fe9fa333f6de9
 DIST prometheus-2.12.0.tar.gz 15221347 BLAKE2B 
6061562e6bafe8e2373ad676e7acd2b5d5ff8e195cf4c1abd709347992c16970b64b225e9f58f33a801ff521abc78422281d97d8c5307a80a64fb8c8a8d8d5fe
 SHA512 
3d3b5ce3afd13714a8fa96964784fa40feb650459f657cbc695c6a7e866f89c488132b408d78ea101804532768c51c3913607bf001f27d3f05c3df9efe3cab82
 DIST prometheus-2.13.0.tar.gz 15193225 BLAKE2B 
4b7b5cffb916bea382e741969de5e2a97cca89055e5096d1042fc03d2c63efb95719e394c1abeeed2351afed797065d20773693987384811654bdc32b57e2c96
 SHA512 
1c9ae1cbbe4e96d00c804a6a891c0b93a36c633499433a7b5f88a80cba98874bb01d2a10bd9e3b42a2a4d07580e4d16e34f50d5e07636cf6d7d7c52c967dafc3
+DIST prometheus-2.13.1.tar.gz 15249891 BLAKE2B 
35cd3c81bdb4f3a783c2ab1f1318946db5b25c94496fe351739a59259a726bf54d418d6b29efeff44c8007353ed63368819ce89ffe6a4f380b7ae216da3c4d63
 SHA512 
aed3b44db97cd2a67add64d13e950246b25c2b459f6b1081a6c548862c4e85c055254a0dfb94b08ac85f83dbbe30afceb1c54a8ad6f7ff1367aeb6af6d270e8a
 DIST prometheus-2.9.2.tar.gz 11477683 BLAKE2B 
f0c18c57ff0fe292710174a91080a84ecf0375b4335aacaf4a8e32c842a9346b9fd4ef8a19a597511c57eb8af7f90cca57d0cc51b9de4558c3f22953d165
 SHA512 
4cce1827580e49b1659ad492de946a81694c1dab90e079f3f0e56c1991254cf4ecac7f052aac75bf58a0b95d3cf4daa8c15b3e8305a3c089570da40c44a8ccc0

diff --git a/app-metrics/prometheus/prometheus-2.13.1.ebuild 
b/app-metrics/prometheus/prometheus-2.13.1.ebuild
new file mode 100644
index 000..ee39a79d382
--- /dev/null
+++ b/app-metrics/prometheus/prometheus-2.13.1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2019 Gentoo Authors
+# 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=v${PV/_rc/-rc.}
+PROMETHEUS_COMMIT="6f92ce5"
+KEYWORDS="~amd64"
+
+DESCRIPTION="Prometheus monitoring system and time series database"
+HOMEPAGE="https://github.com/prometheus/prometheus;
+SRC_URI="https://${EGO_PN}/archive/${MY_PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   >=dev-lang/go-1.12
+   >=dev-util/promu-0.3.0"
+
+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
+   GO111MODULE=on GOPATH="${S}" GOCACHE="${T}/go-cache" promu build -v || 
die
+   popd || die
+}
+
+src_install() {
+   pushd src/${EGO_PN} || die
+   dobin promtool prometheus
+   dodoc -r {documentation,{README,CHANGELOG,CONTRIBUTING}.md}
+   insinto /etc/prometheus
+   doins documentation/examples/prometheus.yml
+   insinto /usr/share/prometheus
+   doins -r console_libraries consoles
+   dosym ../../usr/share/prometheus/console_libraries 
/etc/prometheus/console_libraries
+   dosym ../../usr/share/prometheus/consoles /etc/prometheus/consoles
+   popd || die
+
+   newinitd "${FILESDIR}"/prometheus.initd prometheus
+   newconfd "${FILESDIR}"/prometheus.confd prometheus
+   keepdir /var/log/prometheus /var/lib/prometheus
+   fowners prometheus:prometheus /var/log/prometheus /var/lib/prometheus
+}
+
+pkg_postinst() {
+   if has_version '

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

2019-10-17 Thread William Hubbs
commit: 865fa3560643c845c8f9b82fbdeafadb5d95b3f5
Author: William Hubbs  sony  com>
AuthorDate: Thu Oct 17 19:38:04 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Oct 17 19:40:22 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=865fa356

dev-lang/go: 1.12.11 and 1.13.2 bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 dev-lang/go/Manifest  |   2 +
 dev-lang/go/go-1.12.11.ebuild | 246 ++
 dev-lang/go/go-1.13.2.ebuild  | 246 ++
 3 files changed, 494 insertions(+)

diff --git a/dev-lang/go/Manifest b/dev-lang/go/Manifest
index ab7bad20491..ee44edfd9a3 100644
--- a/dev-lang/go/Manifest
+++ b/dev-lang/go/Manifest
@@ -10,6 +10,8 @@ DIST go-linux-ppc64le-bootstrap-1.8.tbz 52211575 BLAKE2B 
7a28ec5a381369c4e9415c8
 DIST go-linux-s390x-bootstrap-1.8.tbz 57124869 BLAKE2B 
920a176b8f4fc3a816e724324bbb30a383d599e31a0d2093d24797dbcd0e799a662a3589dbb87d2f5dd16df07c4cf8f1e444e87b540ec732746bb025dc9271f8
 SHA512 
d429cae870d66217ab2e07c74209d3031d97baa4f899b4d70ae6283a1a5b1434b037904c4cfca0b2bc798d5ba0b358c3739e000eccbc74809baf564c5686df5a
 DIST go-solaris-amd64-bootstrap-1.8.tbz 54926326 BLAKE2B 
0a45312f090d81ebf46fe5950cb65c059e2801394231e715e94145d1f918eb59b10472b2385e57ebd5cfb9eca0ad7290fb118436486b665520bb540970f971ab
 SHA512 
52b849e5b9a940e10de7ba3df0ebdf6e1c5d631de9581d936c9edf8f38e6bb3314acbc2b2d5202b0528fde2a359d52bc0c6f39acf9b1b614725e4b4a947ed10d
 DIST go1.12.10.src.tar.gz 21980044 BLAKE2B 
95ebf0a6f04d055e5e9d6f8e2a13835aaf33c4f7113772f7a70af218f4e929a047fc12b0ef9e93a9156877f61361219da16bb2830799247b8200a7648c562abc
 SHA512 
9d40cf8d71daffe43f5872597b316cd1150ae640d852ff0f0be3126cc7bb40b9a0290bb02d7fabdf808f40ab3f67a56d2eaeba3b32299fa9b0a3df03899f6ac2
+DIST go1.12.11.src.tar.gz 21979795 BLAKE2B 
421cda167948f1818b95395630d1a0dbfb29b996ffee31992199ce3acd54b5399bf28c5f3490e049bd57ad802aa276aff569c706b7b166198a7e217885eaec4f
 SHA512 
ece666235394a56bc82918166cf14805164397f9609dff89abd5137fca8a0e20e0b48097f49b6aba17bed24f2fadbc685984d687c0cd67e88df31c394f791444
 DIST go1.12.9.src.tar.gz 21979950 BLAKE2B 
dca7e3afcabd513c4b8193e93c0a1ed1a2326dccfce9b909d97b3731fffbe7e26712ab164645e06a316baa949b1e0b14a2fea8d23e6f90fd5b72afa0d15b432b
 SHA512 
57041e7fb767f528aa9fc2592d205d3a7c120c73f92dc8d91f17f816e12aa6152c8421b333081800a5f50b1bb656f203a25faf8ed92c69a6ec164ce0a5619c13
 DIST go1.13.1.src.tar.gz 21622361 BLAKE2B 
08a836d3bd57befed8cd07c4d6faaf9d926629b06e5fe97d1fe364df8b2368310b31b04019fbd0803caf7f52c8927122ba1638c3c26b6fb38c9236ff96eb06d7
 SHA512 
696fc735271bd76ae59c5015c8efa52121243257f4ffcc1460fd79cf9a5e167db0b30d04137ec71a8789742673c2288bd62d55b546c2d2b2a05e8b3669af8616
+DIST go1.13.2.src.tar.gz 21622878 BLAKE2B 
b65a495f94bbc1711734a8e171097abea28bfba138fc0ac09998b1fbb2c61e58feea94a3ce79dc2b9f4685df5a5e8fc1d93ea2ecdcb1134149d181d554ec1dc8
 SHA512 
2741ccbb13abf69cbb575145c65fc9f3c422692009d6bf6e991f6d6e3ddfed94374b242deb5fffbe4a22f64c3734cc7dba0b1438c24ae295eecef2b515504892
 DIST go1.13.src.tar.gz 21621948 BLAKE2B 
dff6024287c0805ec735cb40aef4ffd872bdc17df6e0d531be3d16806292edde2a63299fe7b9b3c97a79f6f864ab0f95962a0cd2e1a0ba0216b3f4bc59bf4bcf
 SHA512 
c6346b1ab256cb743dd98625d8b16cdcc1365b186e039e99747d6c18041045daa065f6bdce17cca0a9800be2dbb34e90adf5518d5295693f80435c02fe5b2cd8

diff --git a/dev-lang/go/go-1.12.11.ebuild b/dev-lang/go/go-1.12.11.ebuild
new file mode 100644
index 000..5e3547cfead
--- /dev/null
+++ b/dev-lang/go/go-1.12.11.ebuild
@@ -0,0 +1,246 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+export CBUILD=${CBUILD:-${CHOST}}
+export CTARGET=${CTARGET:-${CHOST}}
+
+MY_PV=${PV/_/}
+
+inherit toolchain-funcs
+
+BOOTSTRAP_VERSION="bootstrap-1.8"
+BOOTSTRAP_DIST="https://dev.gentoo.org/~williamh/dist;
+BOOTSTRAP_URI="
+   ${BOOTSTRAP_DIST}/go-linux-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-arm-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-arm64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-ppc64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-ppc64le-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-s390x-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-linux-386-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-freebsd-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-freebsd-386-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-darwin-amd64-${BOOTSTRAP_VERSION}.tbz
+   ${BOOTSTRAP_DIST}/go-solaris-amd64-${BOOTSTRAP_VERSION}.tbz
+"
+
+case ${PV}  in
+**)
+   EGIT_REPO_URI="https://github.com/golang/go.git;
+   inherit git-r3
+   ;;
+*)
+   SRC_URI="https://storage.googleapis.com/golang/go${MY_PV}.src.tar.gz "
+   S="${WORKDIR}"/go
+   case ${PV} in
+   

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

2019-10-17 Thread William Hubbs
commit: 6ef59ad375319c7151df5d248bf48846aa1a898c
Author: William Hubbs  sony  com>
AuthorDate: Thu Oct 17 19:17:47 2019 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Oct 17 19:21:10 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ef59ad3

app-misc/go-jira: 1.0.22 bump

Copyright: Sony Interactive Entertainment Inc.
Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: William Hubbs  gentoo.org>

 app-misc/go-jira/Manifest  | 30 +
 app-misc/go-jira/go-jira-1.0.22.ebuild | 59 ++
 2 files changed, 89 insertions(+)

diff --git a/app-misc/go-jira/Manifest b/app-misc/go-jira/Manifest
index 07b4e3ade41..d886f9710d8 100644
--- a/app-misc/go-jira/Manifest
+++ b/app-misc/go-jira/Manifest
@@ -1,2 +1,32 @@
+DIST github.com-AlecAivazis-survey-v1.6.1.tar.gz 976163 BLAKE2B 
331ca2a097feb8bed063eb09976ce5ccf71c5d1c74f6f844d83786f9e476c1f630f95f1e87974578c6002b46d4221ab15fc4e9de529e1647660445a933ff1d64
 SHA512 
7b2dd3cc0f9acbea141756c5c4da791559578a6317905cf12ce894524e9bbdb9bccb6903d27e8142ae327be0db5cc27e599064907a7a246f87634cf45be57afa
+DIST github.com-alecthomas-kingpin-v2.2.6.tar.gz 44383 BLAKE2B 
91841e6353af639c9d1ad4ecb0fec797ba1d497c223c0d457e1999dc7560a84e1d75f209f5a18386874a499939c5c7d6a450ed61ebf265b6706077131fda486c
 SHA512 
09c6bb5782639efc7068ed7606fe22c463b2397dc95a89c27ba567a58da10660bfea60d7836b63dcedf7db702f79fe7247575c33a503990f5ba6ca92e29b06b3
+DIST github.com-alecthomas-template-a0175ee3bccc.tar.gz 55291 BLAKE2B 
fbd48545b6a5809d210629ca3aeb03c366051601d5b2f7718f79a96ec18fa09f18922c1a3ffcbac3abcd9b8955871b5bb4c71c23a1839cf7f17d8372bc3478fe
 SHA512 
5ca546170725c3bdd4d9b27ca3976d6dc6376be8db685e6e26cfaef4a51560f78702b7babbe5ed0b2d934d0c32867bc69b11ae757071dc143a4453e6e7ffabdf
+DIST github.com-alecthomas-units-2efee857e7cf.tar.gz 3442 BLAKE2B 
bb3a4acac34764b249cbec5f21fd260ab6dea6810183d12e13943657037903b874a209686b6913e8529a578cec4fb364adad475577c28456bf92add7f5ac9498
 SHA512 
855f15eeb83bdc16981694f522aa1e200a3857ed11ae87fca9b0cc70734eac76f5082bc3ed92f843b818da14b58dc921dbb1aed4ea35de056c087a64b7e25fe4
+DIST github.com-cheekybits-genny-v1.0.0.tar.gz 15585 BLAKE2B 
0b5d4e398b75ba2e413cd41d455bce346aadf8b31b9233b6287608b88264e0f698863bb151d44d75488caae011ce4e68fb574b301fcca77be53b32865b7db4ea
 SHA512 
a045ce3dbe5c54e1e04705b87d2e3a18bebd71382a68156f975e28c6426aa82861e68e6ff162d3765704d5538a0493693cb973781e35b9d1b9ef8c4541ec1e19
+DIST github.com-coryb-figtree-58176d03ef0d.tar.gz 206696 BLAKE2B 
7e2f4194dbb8a6837f57f0c9f4f44c086c98371882455b2d953f3a889d068fefae17a9751d7d03285fd3ef9b88551b6db5ae5f0918b2246b19e5d09dfeaed4da
 SHA512 
35c2f42d97e1fc507b1672b568928e5a9bc60f02b4062f84bae8c4949219824f93e5c7b3a78eb9bdd2e145175ec82758a345cf285e96704a7dab70bc809c231f
+DIST github.com-coryb-kingpeon-9a669f143f2e.tar.gz 106411 BLAKE2B 
a01965e9d8c62c151819a3e5935474e642cdcc5c9b9d62df8c18306a9062443de25728fc4939e61fc05b3a28a9089ca5ca23181d3f55c382dd43fec066a31cc2
 SHA512 
a190961873ca55e27f774ca83c73c3ee5e5d105bf94011935ef1c0b97b4dc35dd40cdace58e9e208327b4633f241eb9366ad06df3237d954745767d584f76640
+DIST github.com-coryb-oreo-3e1b88fc08f1.tar.gz 49152 BLAKE2B 
a08e314cc5f8f6a11fddaf36bde7bb55da447d542e35e5c2a766ee5df71df1c79b37a5ccae3375713707788004817ba0a22a9d574dc33f4be76d288c6d46147e
 SHA512 
dd2d755ea6e6e67e7940588471ca42a0efacf78727a81a8d5c121d1fbc8c4f2a72da2a117c5b2f6327e30cd99cd1cd366587c703d6ee7c4b13fceee51f6e5a8b
+DIST github.com-coryb-yaml-0e40e46f7153.tar.gz 61502 BLAKE2B 
5d18515f3e32f75f61a5b3542b9628a995628d5f05aa42206e5cad11d0d862be0b4f9c01f38f021d27001d69f0d4c12c546485bf8af3c498e06ee84125466611
 SHA512 
6c2689271b4463847577ba02af863c7cac16195660f43988c567eb110084a791023ed65ecd4f433697e82e20d661d2a30e34d7aa98cbcad1206cd9428ade77bf
+DIST github.com-davecgh-go-spew-v1.1.0.tar.gz 42337 BLAKE2B 
691ee430beca602ea686aa065b23af5e00356e866cbca2b014bf0c8f4cc965a2318e6a39232772098e250d61d5bd6707afb769fdf4223c81a8249cad267d1971
 SHA512 
20c9f0550a2d5030265dde8ad3ed009ce5c6490d010f184ad3f656b8fe5eb6e5c6abc9594408240aa731c0977afd9739d293490e6164cc0ce156652611b05b39
+DIST github.com-fatih-camelcase-v1.0.0.tar.gz 2989 BLAKE2B 
4970cb544427bdc2ddb7a65342a601042dd116965d3de8124141e64cfddeffc2abe1e427dd4429c59ce6e34991d60c19112cf47e218d85bb3f64fe6fe86f5be6
 SHA512 
13377a896fc6ef8f5851c80262a081c070b108880f14f61b5be85cd5577427982960cae03bf10903b5f9df761703d6b6b786dd0a6152723d5eaa4919756eb0a0
+DIST github.com-golang-crypto-c126467f60eb.tar.gz 1624243 BLAKE2B 
02b478df31069205c405d0ab11570cb2009a3be1bc8255e79a82c8ddf8a9d9d15bf842139b07f6a166f63fd622db9639b2619b3bc3cdc40eacb40ce703bdc8d9
 SHA512 
9afd41f015c7e71f6fd934db0e9641d41371c16ca849a7c5de560c25cb5f3f4f156c92d36d8a599dae237450a7adeed2251c49c2083c5e9a7589130db069fbf8
+DIST github.com-golang-net-01c190206fbd.tar.gz 926192 BLAKE2B 

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

2019-10-17 Thread Thomas Deutschmann
commit: c11a26b40aaecab5dd7f5f497ebec1711ee36df5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Oct 17 18:47:36 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Oct 17 18:50:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c11a26b4

package.mask: Mask ~app-antivirus/clamav-0.102.0

Link: https://lists.clamav.net/pipermail/clamav-users/2019-October/008626.html
Bug: https://bugs.gentoo.org/697688
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 8c2a4aa2904..e27e0545f54 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,10 @@
 
 #--- END OF EXAMPLES ---
 
+# Thomas Deutschmann  (2019-10-17)
+# clamav-milter completely broken, #697688
+~app-antivirus/clamav-0.102.0
+
 # Matt Turner  (2019-10-17)
 # Masked for testing
 =x11-base/xorg-proto-2019.2



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

2019-10-17 Thread Andreas Sturmlechner
commit: 53df993740be8035530b041668103ec575ae5bc0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 17 18:14:39 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 17 18:39:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53df9937

app-office/libreoffice-l10n: 6.2.8.2 version bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/libreoffice-l10n/Manifest   | 168 +
 .../libreoffice-l10n-6.2.8.2.ebuild|  91 +++
 2 files changed, 259 insertions(+)

diff --git a/app-office/libreoffice-l10n/Manifest 
b/app-office/libreoffice-l10n/Manifest
index b0acf4215aa..19d791b493a 100644
--- a/app-office/libreoffice-l10n/Manifest
+++ b/app-office/libreoffice-l10n/Manifest
@@ -334,6 +334,174 @@ DIST LibreOffice_6.2.7.1_Linux_x86_rpm_langpack_xh.tar.gz 
290886 BLAKE2B 7eb9c1a
 DIST LibreOffice_6.2.7.1_Linux_x86_rpm_langpack_zh-CN.tar.gz 807441 BLAKE2B 
1a8bc051e5e47ad3c1ccdf958c13c1b29566d2a19c62ac02a841d567abb4974bb8fcc46c4f75d7cca35a0fe59ee9027519d57c7bb777ea44638ed3494abfe22d
 SHA512 
86cee3f10481b35f241857c0fe7297d7b8b597fc6cf78e09665cc3bda811b27218916d216fb1ddd7fc78cad4d2ea631c696b881451453f1951a6f22a922bdbc9
 DIST LibreOffice_6.2.7.1_Linux_x86_rpm_langpack_zh-TW.tar.gz 808189 BLAKE2B 
5ecf1cd1ac540567a750b5d1dc7ae48e6ffb37be721350865b5b1d528325ee2c631cc25b8f8276bdf134acd462c7ba173f07f21d75e74f1e3e18cbec7bdbe3f3
 SHA512 
8140dd81896d186ef6b287aced8650d46aad1bd49198fde6cf562c6fc2abc4bf40df2a84e6c4e107efb71a4b25cbe44fe71ae6c8f063bf26dd094b47ab189a9c
 DIST LibreOffice_6.2.7.1_Linux_x86_rpm_langpack_zu.tar.gz 320647 BLAKE2B 
3496cdc5b9b02f2a6ce76ff0c6584438f9b9c06e1fa5bf0fa03e3b444f4145e95e9a78985f1badd40b8de2a6f49cf3bdfe64ca16ab7eaed8ec91985d
 SHA512 
9032be91709bb839f01af8faee2629885c82d1c7152da083913af05df24a8f3b0eecb0404987ae44607e651a755e2be4079586a5d0b2de7ded9af71867e3b272
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_am.tar.gz 2494426 BLAKE2B 
fc89ff22d56871c8bdf347f8cf3ef839b33c3c700ac02ae53d3b727123d7d6adf13a57454a551fbd7a9ab8650acbdf95f1033ecf81b6d39ccfca804dfeaf3606
 SHA512 
4d2122c6c80a4ea742a8731a98eefd4191b000edc2a5d0ac0af353c7487aefa4a37fd65d1d03daa1f2952b3ae83778e9d88f2a55e48bc26ba997aef25ca04ed8
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_ast.tar.gz 2388900 BLAKE2B 
802936f84418a50a9abb51085ba2f3dd8f458eb40a9bf0480312d89bbc7770e1444b425e1513243a37d940a02556d8addb8e638b092344ee6db21ff0a3df795c
 SHA512 
bca9c25d52c7563182be78e51e9126e94862d49ebfd0c77bf3c20c4d54127ed9a8443222a9a8b867442818767393b49e786460f8937921717e9160c1ec2b30c8
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_bg.tar.gz 2567538 BLAKE2B 
8613c1cb30ab258a4598a17f29cc1b99809bbd6f7024e19ebcef79ee8247c324cdf6737c5c4b347f2d462bff1aa7b26960aecdfd63a49fa584d2379fc06a9ecf
 SHA512 
4f9ae6ef4f143d23b3e55be216711f045cb73ed0c2c942ca0120a6d13abc575069d1fb484ad8f1746b7fdfa3ad6933d5bda4aa5c8cf1cf5d3cf000a134099cd7
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_bn-IN.tar.gz 2578914 BLAKE2B 
4c83f0da2b858828ae4e3cfcae5234db7ce6077b5f41ea4d8086b84773c1d08e540bddd4959a13bdc9789e972dd05aea2a357624e8406000e29e3e230fda5a87
 SHA512 
1ac3adcc5fecebcd70e3a1c05bc19944418f6f0c477e1b9493b1d48c54edf243c2ece921e6c44473281187b51b5083f8a2b6bc05b2e6e7bb025487df370cac7a
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_bn.tar.gz 2561182 BLAKE2B 
cd0d32149830e9fbf2b9fc41d645b78601e6687ce5b61aa115b78806bba80552219b2497eccf267d804bd68c3c04dc3b1d56aa1dda834ffb6fd500d0218fce3f
 SHA512 
457cde86812bf67a72d5074848152d2cdc079eb6a6abef000449632011d69a56b54990bd744e6d0f17dcbeffce32d1ceaebbfe41414dd248d9e0e4f92adaffdb
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_bo.tar.gz 2576710 BLAKE2B 
dd886462751b3ca3f4a8db667c9533d6ec8cbf07dc010fcc60c408a37b2301758b995757e85320e9630a3b2c74e28d9c23d912c061588f2f5df797874362b9c3
 SHA512 
6cf68025973e9f8b97fed26dbda87e23cde6122859421846def0f5a3b9bb3a5ae3ac29c40bbf1f0109f0c58ca61584b249af171bd4fb3d6bf916b684f84c5de7
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_bs.tar.gz 2302244 BLAKE2B 
3495accdefcbea1f9bfa69f67cbd08d886d6024bdd7cb242bc0a1676e6068a7ff6dcedf643f9448a03e915655f856730309ee527995c12e40e9feb6170fa03fc
 SHA512 
fa585dfc3469b0187ac85671a63aaac422edd9c822b2372c780bbc0a809c0ec6efd5c9a3fb8b096c61a0a9ed90b715b2707fc89109902e9a12a68107cc39
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_ca-valencia.tar.gz 2380577 
BLAKE2B 
e7293a58f0e2be91a4412c743a227cf961adee0b0e5ecc71f92c8a4b0daeb26d03ec6293e39b78a6debcda75db7fd1766df789ce493247e30e5bd20c544558e1
 SHA512 
7c618745391b32acf7ac62d9de212a98d18a310116e41cf74047ff8a60c3d23e0b1b49f1d9c0438789ebcbb470dcd14479b9a5d73f75816009a34914a3bdca55
+DIST LibreOffice_6.2.8.2_Linux_x86_rpm_helppack_ca.tar.gz 2366256 BLAKE2B 
6cf4e79f799a9219c36b5406d10bbb0d33e7808d35c66121a67dc3e81816b3dd432fcfc132a15f10e7c91a865aca7e9e25544dc6c9a630829ef20960abfa1b78
 SHA512 

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

2019-10-17 Thread Andreas Sturmlechner
commit: ea1be4f3bbbafaf0916f7c2832dc5de94849042a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 17 17:59:40 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 17 18:39:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea1be4f3

app-office/libreoffice: 6.2.8.2 version bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 app-office/libreoffice/Manifest   |   2 +
 app-office/libreoffice/libreoffice-6.2.8.2.ebuild | 552 ++
 2 files changed, 554 insertions(+)

diff --git a/app-office/libreoffice/Manifest b/app-office/libreoffice/Manifest
index a29ae0ebbb8..fb1e34f891c 100644
--- a/app-office/libreoffice/Manifest
+++ b/app-office/libreoffice/Manifest
@@ -5,8 +5,10 @@ DIST 798b2ffdc8bcfe7bca2cf92b62caf685-rhino1_5R5.zip 1521926 
BLAKE2B d2769842c18
 DIST a7983f859eafb2677d7ff386a023bc40-xsltml_2.1.2.zip 23150 BLAKE2B 
51db6bd90585b13857ecb494c805c9fb6874e1e65d7aee73d23e1716670836a14b376bcca810f96fd55b0ed653b2660a268030f246c822cbb04f867ef763a3b3
 SHA512 
2d3835f7ac356805025cafedcad97faa48d0f5da386e6ac7b7451030059df8e2fdb0861ade07a576ebf9fb5b88a973585ab0437944b06aac9289d6898ba8586a
 DIST libreoffice-6.2.5.2.tar.xz 215008848 BLAKE2B 
5dd1ef185820944816e01c8ed6a7873a5a8fe6f7f4b41fad279729970d85ff868f51ed573e8b3d0a554ffd1f8e295b6ff2e493e7f7250f8cb1c7c2a40115abf4
 SHA512 
b46b6731c415ab354ad7d876cb8905cb9eae2ca71639abf049ea7f5930601c957cc0eb04a2cd06949073ba5e94778ecdb449692ed8bbfbd95b05f6e7980d8d10
 DIST libreoffice-6.2.7.1.tar.xz 215022744 BLAKE2B 
717acc3c310d3d973464b422176ccb4aae1481f2537c419e3afd031a2c2967a7b20b4cc5b60499befcae279441176a275f339e65534c4eb9d7395c6e050ba6e3
 SHA512 
9ed37c7957bb214a3de0b3dadea9debd5056d641052a669904d543a7065f1f5c721e09ddda800dfb478ff0474f71a275c7208077cb7b6566786d3b637f42860b
+DIST libreoffice-6.2.8.2.tar.xz 215070800 BLAKE2B 
d6bc1e94de1df4dd20dafaeac9702435f305fe15117e8aee02233c6d2e74423bb475aeaf79ff6dcd30e22d69a5d6f0648218819b08003524a2c7b1db340281c4
 SHA512 
cf1dd708f10ea4b9a3134851cad45fe91c1d535e2b2068f7e65f1cb1bf4076c5c41ec253f628c5b912590e91ccfe16f5c8bcf39bc92df2ec7c8aef84210349bd
 DIST libreoffice-6.3.2.2.tar.xz 224752776 BLAKE2B 
397d125714ae591d174ea185a488ecb652946de76d015c4ffb85e1c27ed34f87b5808ac41309b52fba117aab67097a0c378284721f0e5f3eb8e3284c799ed8dd
 SHA512 
f0576f5a5b2c91ee6c003cbf9772580c564e05f66c3b34ddee4b723095aaa3a55070df3d70d7e6b8be68e23a7e204c1237496d7e798f9494282cadba0eacf930
 DIST libreoffice-branding-gentoo-0.8.tar.xz 151568 BLAKE2B 
f03c7ddeb53c5ca3fd23401679601fcf2c4037ba17be4eb7b784c7ce7ebb71a24b8ab4aac8b7da8c6b1f14dd23bc1294ba85ff4f70ad271fb4ee3c5372e10883
 SHA512 
785031a699b1d1895ce4b50ffc3ddf645f3a0ef9acdf37facfd18cf75db9484cb8f53a50abb63d6006ead76a80b6ff5aa99661063245ebb84bd64013d713de7f
 DIST libreoffice-help-6.2.5.2.tar.xz 13023680 BLAKE2B 
f1f3a03104c1270e59f2b9130a29e1fbc99a9bf76b2bf4cedef8dc61487c9a2036f143501ad7fcd0c056c8b72446305b7a4ca9a719b11200ade5feca35e5e7ea
 SHA512 
14f964161bd827a5846ec667ae1dac80d1485450e172da44010103e31f3872df62595e8b1b1d45c720caac9256d2adaf8f5a0bb80d059d35f1c560b533eb764c
 DIST libreoffice-help-6.2.7.1.tar.xz 13024328 BLAKE2B 
fcdb01a52abb90773baa96b0c25fc04bf928e13b940a5cadd7eb455a3004f83d339252346d7c615fbe511cee7e093560c99bf6ff6bd2e5e832d57d4d1053ebc6
 SHA512 
b4599bf6854efa800483cf16132c9809ea439d29ea63c7621a0f04ce19609a7a1966d86862342f911cde22a3bd19fe5b96ad9bdb34d5255eb716352a8ce9bbaa
+DIST libreoffice-help-6.2.8.2.tar.xz 13024032 BLAKE2B 
524ba3ff77670afebf8be4724b5e54f9b157582cfcac8640e2184b8ae24c8e5e01b924415949f1756c18e2d54b8eab7efb78c979321e50b6d52b741ddd49
 SHA512 
c1f5b1b3c50da0a47a9724c9fc3544a15b7df72e66c5c2008afeae7732e2b29f0e57e64ce9a216c3237acdb4345715525f32be290f3196ba6e28685fa6c0925c
 DIST libreoffice-help-6.3.2.2.tar.xz 13192064 BLAKE2B 
83c742faa698370e1561133d4c7351619639b343068691d830433ff5dfa4af20ba7f89428b67275f7f19c947dd84e4c03aa330e4ddd684dbd19acee14e842ba9
 SHA512 
34f34abbd21e37ea6f8ed860af27bbd641cb98331f235b84c5b5cc4e3fa01d9f43a32469f5df4f4cf4dde0e804ba12e73fdd6d357413d5d7641c32396abf09f1

diff --git a/app-office/libreoffice/libreoffice-6.2.8.2.ebuild 
b/app-office/libreoffice/libreoffice-6.2.8.2.ebuild
new file mode 100644
index 000..8a89bd5092b
--- /dev/null
+++ b/app-office/libreoffice/libreoffice-6.2.8.2.ebuild
@@ -0,0 +1,552 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python2_7 python3_{5,6,7} )
+PYTHON_REQ_USE="threads(+),xml"
+
+MY_PV="${PV/_alpha/.alpha}"
+MY_PV="${MY_PV/_beta/.beta}"
+# experimental ; release ; old
+# Usually the tarballs are moved a lot so this should make everyone happy.
+DEV_URI="
+   https://dev-builds.libreoffice.org/pre-releases/src
+   https://download.documentfoundation.org/libreoffice/src/${MY_PV:0:5}/
+   

[gentoo-commits] proj/mysql-extras:master commit in: /

2019-10-17 Thread Brian Evans
commit: 5bda8618c55ed07f5652107d7b76ddc88454ee06
Author: Brian Evans  gentoo  org>
AuthorDate: Thu Oct 17 18:34:23 2019 +
Commit: Brian Evans  gentoo  org>
CommitDate: Thu Oct 17 18:34:23 2019 +
URL:https://gitweb.gentoo.org/proj/mysql-extras.git/commit/?id=5bda8618

Fix 8.0.18 libressl patch

Signed-off-by: Brian Evans  gentoo.org>

 20018_all_mysql-8.0.18-fix-libressl-support.patch | 31 +--
 1 file changed, 23 insertions(+), 8 deletions(-)

diff --git a/20018_all_mysql-8.0.18-fix-libressl-support.patch 
b/20018_all_mysql-8.0.18-fix-libressl-support.patch
index f6dc74f..e7e1a79 100644
--- a/20018_all_mysql-8.0.18-fix-libressl-support.patch
+++ b/20018_all_mysql-8.0.18-fix-libressl-support.patch
@@ -250,9 +250,24 @@ diff -aurN a/vio/viossl.cc b/vio/viossl.cc
DBUG_PRINT("info", ("  %d: %s\n", c->id, c->name));
  #else  /* OPENSSL_VERSION_NUMBER < 0x1010L */
DBUG_PRINT("info",
+diff -aurN a/include/violite.h b/include/violite.h
+--- a/include/violite.h2019-09-20 04:30:51.0 -0400
 b/include/violite.h2019-10-17 14:31:39.045842844 -0400
+@@ -269,9 +269,11 @@
+ 
+ long process_tls_version(const char *tls_version);
+ 
++#ifndef LIBRESSL_VERSION_NUMBER
+ int set_fips_mode(const uint fips_mode, char *err_string);
+ 
+ uint get_fips_mode();
++#endif
+ 
+ struct st_VioSSLFd *new_VioSSLAcceptorFd(
+ const char *key_file, const char *cert_file, const char *ca_file,
 diff -aurN a/vio/viosslfactories.cc b/vio/viosslfactories.cc
 a/vio/viosslfactories.cc   2019-09-20 04:30:51.0 -0400
-+++ b/vio/viosslfactories.cc   2019-10-15 12:34:15.145676646 -0400
+--- a/vio/viosslfactories.cc   2019-10-17 14:27:32.672896538 -0400
 b/vio/viosslfactories.cc   2019-10-17 14:27:47.776954552 -0400
 @@ -420,6 +420,7 @@
}
  }
@@ -261,11 +276,11 @@ diff -aurN a/vio/viosslfactories.cc 
b/vio/viosslfactories.cc
  /**
Set fips mode in openssl library,
When we set fips mode ON/STRICT, it will perform following operations:
-@@ -466,6 +467,7 @@
- EXIT:
-   return rc;
- }
+@@ -473,6 +474,7 @@
+   @returns openssl current fips mode
+ */
+ uint get_fips_mode() { return FIPS_mode(); }
 +#endif
  
- /**
-   Get fips mode from openssl library,
+ long process_tls_version(const char *tls_version) {
+   const char *separator = ",";



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

2019-10-17 Thread Andreas Sturmlechner
commit: dfecabc52658fad3081bd8aed56ca0c3a9e94350
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 17 18:08:17 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 17 18:08:17 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=dfecabc5

kde-frameworks/kapidox: Drop python2_7

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/kde-frameworks/kapidox/kapidox-.ebuild 
b/kde-frameworks/kapidox/kapidox-.ebuild
index 70b4eca0c2..c70efde902 100644
--- a/kde-frameworks/kapidox/kapidox-.ebuild
+++ b/kde-frameworks/kapidox/kapidox-.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 DISTUTILS_SINGLE_IMPL="true"
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 inherit cmake-utils kde.org distutils-r1
 
 DESCRIPTION="Framework for building KDE API documentation in a standard format 
and style"



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

2019-10-17 Thread Andreas Sturmlechner
commit: 7d9c29a77a58af2395a02a0f12838759d7afc112
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 17 18:06:27 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 17 18:06:27 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=7d9c29a7

kde-frameworks/kfilemetadata: Drop python2_7

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild 
b/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild
index 716d0d2fb7..248aa0e8ae 100644
--- a/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild
+++ b/kde-frameworks/kfilemetadata/kfilemetadata-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_{6,7}} )
+PYTHON_COMPAT=( python3_{6,7} )
 inherit kde5 python-any-r1
 
 DESCRIPTION="Library for extracting file metadata"



[gentoo-commits] proj/kde:master commit in: kde-frameworks/extra-cmake-modules/

2019-10-17 Thread Andreas Sturmlechner
commit: a4e11e5e2a0785e33999cc03ffd2bc8b037eff6f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 17 18:07:08 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 17 18:07:08 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=a4e11e5e

kde-frameworks/extra-cmake-modules: Drop python2_7

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/extra-cmake-modules/extra-cmake-modules-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-.ebuild 
b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-.ebuild
index 5cfdab0f5d..14fce598df 100644
--- a/kde-frameworks/extra-cmake-modules/extra-cmake-modules-.ebuild
+++ b/kde-frameworks/extra-cmake-modules/extra-cmake-modules-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_{6,7}} )
+PYTHON_COMPAT=( python3_{6,7} )
 inherit cmake-utils kde.org python-any-r1
 
 DESCRIPTION="Extra modules and scripts for CMake"



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

2019-10-17 Thread Andreas Sturmlechner
commit: d5efe856c5fbcc90c9627b8ef11cc79674992c33
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 17 18:07:44 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 17 18:07:44 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d5efe856

kde-frameworks/ki18n: Drop python2_7

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/kde-frameworks/ki18n/ki18n-.ebuild 
b/kde-frameworks/ki18n/ki18n-.ebuild
index 5e1905d848..cc4534f988 100644
--- a/kde-frameworks/ki18n/ki18n-.ebuild
+++ b/kde-frameworks/ki18n/ki18n-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{2_7,3_{6,7}} )
+PYTHON_COMPAT=( python3_{6,7} )
 inherit kde5 python-single-r1
 
 DESCRIPTION="Framework based on Gettext for internationalizing user interface 
text"



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

2019-10-17 Thread Andreas Sturmlechner
commit: e62108f998dc9e368f4e78849714b1f25782aab8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Thu Oct 17 18:09:19 2019 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Thu Oct 17 18:09:19 2019 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e62108f9

dev-python/parse_cmake: Drop python2_7

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Andreas Sturmlechner  gentoo.org>

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

diff --git a/dev-python/parse_cmake/parse_cmake-0.4.1-r1.ebuild 
b/dev-python/parse_cmake/parse_cmake-0.4.1-r1.ebuild
index cc2187f798..7fae7b3fb9 100644
--- a/dev-python/parse_cmake/parse_cmake-0.4.1-r1.ebuild
+++ b/dev-python/parse_cmake/parse_cmake-0.4.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7} )
 inherit distutils-r1
 
 DESCRIPTION="Parser for CMakeLists.txt files"



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

2019-10-17 Thread Michał Górny
commit: 4e9f04a1e11e84a8c513ee334cf2bc1c013d8c11
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 17 12:05:30 2019 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 17 18:08:58 2019 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=4e9f04a1

emirrordist: Delete potential symlinks for all layouts

Unlink for all distfile layouts rather than for all but primary.  This
wrongly assumed that the primary layout will always be removed
as a result of earlier code.  However, the rename() call correctly
assumes that the primary layout may be an old symlink, and operates
on realpath().  Therefore, the real file from a secondary layout may
be renamed, leaving dangling symlink.

Bug: https://bugs.gentoo.org/697906
Reviewed-by: Zac Medico  gentoo.org>
Signed-off-by: Michał Górny  gentoo.org>

 lib/portage/_emirrordist/DeletionTask.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/portage/_emirrordist/DeletionTask.py 
b/lib/portage/_emirrordist/DeletionTask.py
index db5ac5ffb..a4bb29419 100644
--- a/lib/portage/_emirrordist/DeletionTask.py
+++ b/lib/portage/_emirrordist/DeletionTask.py
@@ -102,7 +102,7 @@ class DeletionTask(CompositeTask):
 
def _delete_links(self):
success = True
-   for layout in self.config.layouts[1:]:
+   for layout in self.config.layouts:
distfile_path = os.path.join(
self.config.options.distfiles,
layout.get_path(self.distfile))



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

2019-10-17 Thread Bernard Cafarelli
commit: 2942cf2265fdc3ff187eaad18afb7d19d0a469fa
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Thu Oct 17 17:48:16 2019 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Thu Oct 17 17:48:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2942cf22

media-video/orion: 1.6.6 bump

This actually requires both qtquickcontrols 1 and 2
Backport some master changes to work with mpv and chromium

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-video/orion/Manifest |   1 +
 .../orion/files/orion-1.6.6-fix_login.patch|  32 +
 .../orion/files/orion-1.6.6-mpv_backwards.patch| 147 +
 .../orion/files/orion-1.6.6-mpv_compilation.patch  |  39 ++
 media-video/orion/orion-1.6.6.ebuild   |  60 +
 5 files changed, 279 insertions(+)

diff --git a/media-video/orion/Manifest b/media-video/orion/Manifest
index bd0019233ae..1552d86e0cb 100644
--- a/media-video/orion/Manifest
+++ b/media-video/orion/Manifest
@@ -1,2 +1,3 @@
 DIST orion-1.6.1.tar.gz 614216 BLAKE2B 
8fc0909c1dd433e72d4ed41046d38a861ec48cbe6e93e1a9cc48f31cb3ef381e1b5b998c501d20756883431464eef798859b9ba4d086b89575281dbc17afca69
 SHA512 
3db0b59a89d2364f2d0586c3f318fc793f73a17d767adb0f44b89830e397be6f24c2ab662b7c84e7d857bc42b952fdf7fa280090313f5e39e37205eb8fb6dc9e
 DIST orion-1.6.5.tar.gz 624005 BLAKE2B 
ca2c40a299ab3f1abc7f383f2a5f39ebbe1e6ce6737efc3da0acd8cbbc04753dab865f417bd8e39d7e42dd7db8de703dd3b251296b8820a9027ca3ad2cd5de1d
 SHA512 
6add27b81bf2520354e1a8854c2be4caf81d1c7c161003cb86bb4911852965cff938381c0ea481c64dc91c36d45f5af44cfb6e9a6d1c379f8b3b3011bbe47c6f
+DIST orion-1.6.6.tar.gz 629917 BLAKE2B 
303af947533aeb26561fb3fc57d4ffbbd6d168e1e51ffe196a0de82fca3406599cfb84c1ae361c9b7b84c9c01b47bb6147b98f62cc5b1dec3d08d0588cbc7327
 SHA512 
88c7efe1796d1135f18bd53c83a25747df1bbf35163b27c625711ab5027e988425e3ba13ff6e3349d30cdc99d24cae0642d1d058e401a24b240d73c6b47a2aaf

diff --git a/media-video/orion/files/orion-1.6.6-fix_login.patch 
b/media-video/orion/files/orion-1.6.6-fix_login.patch
new file mode 100644
index 000..c6aced452ca
--- /dev/null
+++ b/media-video/orion/files/orion-1.6.6-fix_login.patch
@@ -0,0 +1,32 @@
+From 69c58ba5af5f83903be70629b02f348fc3ad8757 Mon Sep 17 00:00:00 2001
+From: Andrew Tonner 
+Date: Tue, 26 Mar 2019 14:58:40 -0700
+Subject: [PATCH] Fix HTTP request socket output
+
+---
+ src/network/httpserver.cpp | 5 +
+ 1 file changed, 1 insertion(+), 4 deletions(-)
+
+diff --git a/src/network/httpserver.cpp b/src/network/httpserver.cpp
+index 235e073..b0368eb 100644
+--- a/src/network/httpserver.cpp
 b/src/network/httpserver.cpp
+@@ -89,7 +89,6 @@ void HttpServer::onRead() {
+ 
+ // Respond with 200
+ QByteArray block;
+-QDataStream out(, QIODevice::WriteOnly);
+ 
+ // http payload message body
+ QByteArray content;
+@@ -111,9 +110,7 @@ void HttpServer::onRead() {
+ response += "Content-Length: " + QString::number(content.length()) + "\n";
+ response += "\n" + content;
+ 
+-out << response.toUtf8();
+-
+-socket->write(block);
++socket->write(response.toUtf8());
+ socket->waitForBytesWritten();
+ socket->disconnectFromHost();
+ 

diff --git a/media-video/orion/files/orion-1.6.6-mpv_backwards.patch 
b/media-video/orion/files/orion-1.6.6-mpv_backwards.patch
new file mode 100644
index 000..4cd302cb3d1
--- /dev/null
+++ b/media-video/orion/files/orion-1.6.6-mpv_backwards.patch
@@ -0,0 +1,147 @@
+From 755fae82a31105808ec978855803f52affa01f87 Mon Sep 17 00:00:00 2001
+From: mrgreywater 
+Date: Fri, 19 Oct 2018 22:21:07 +0200
+Subject: [PATCH] opengl-cb backward compatibility
+
+---
+ src/player/mpvobject.cpp | 43 ++--
+ src/player/mpvobject.h   | 15 +-
+ 2 files changed, 51 insertions(+), 7 deletions(-)
+
+diff --git a/src/player/mpvobject.cpp b/src/player/mpvobject.cpp
+index 2955063..31cdf73 100644
+--- a/src/player/mpvobject.cpp
 b/src/player/mpvobject.cpp
+@@ -48,16 +48,25 @@ class MpvRenderer : public 
QQuickFramebufferObject::Renderer
+ MpvRenderer(MpvObject *new_obj)
+ : obj{new_obj}
+ {
+-
++#ifdef USE_OPENGL_CB
++int r = mpv_opengl_cb_init_gl(obj->mpv_gl, nullptr, 
_proc_address_mpv, nullptr);
++if (r < 0)
++throw std::runtime_error("could not initialize OpenGL");
++#endif
+ }
+ 
+ virtual ~MpvRenderer()
+-{}
++{
++#ifdef USE_OPENGL_CB
++mpv_opengl_cb_uninit_gl(obj->mpv_gl);
++#endif
++}
+ 
+ // This function is called when a new FBO is needed.
+ // This happens on the initial frame.
+ QOpenGLFramebufferObject * createFramebufferObject(const QSize )
+ {
++#ifndef USE_OPENGL_CB
+ // init mpv_gl:
+ if (!obj->mpv_gl)
+ {
+@@ -72,15 +81,17 @@ class MpvRenderer : public 
QQuickFramebufferObject::Renderer
+ throw 

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

2019-10-17 Thread Thomas Deutschmann
commit: 18f09d189219004cb75b37fb4b35457816dc38cb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Oct 17 16:51:34 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Oct 17 16:51:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18f09d18

dev-python/botocore: bump to v1.12.251

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-python/botocore/Manifest |  1 +
 dev-python/botocore/botocore-1.12.251.ebuild | 58 
 2 files changed, 59 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 3602b3d53c2..036ac091254 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -2,5 +2,6 @@ DIST botocore-1.12.122.tar.gz 5492931 BLAKE2B 
05371245cd0de404713f920d0651f9bbdc
 DIST botocore-1.12.205.tar.gz 5794632 BLAKE2B 
dfa0813ee1cd4d6d699fc27f2777da95b1719779bbb84f3d7d61da5c85b76c79286acfe304c598bade8d5320088070d1d69d99689f32f6efb05f04ffa66492ac
 SHA512 
53d3770d8b771f3bbedbc0d6046cebec0b3961550c38ec29be4dd2b8c5f4da0150e70417f2070131746ab5c0df40ebce4ef6a1a2d6de0ce8d03e9928dbeeb594
 DIST botocore-1.12.210.tar.gz 5859196 BLAKE2B 
4ce448ea4bbf5bc21b84395188a7236a0d9f18c87c98fa3269185a2d947dd84f78cfa43b1806f51783f6009e1cbfba2d8833b5e3e6633eb3c4185dfd5ffaab77
 SHA512 
85e0679597935ed13ddd85997156a424df5b32bed1c96c65f89cc9eafd653015f87f261a042574bd8773dc46c76fb38da4bbddb031f20226fdab708c2438b1ce
 DIST botocore-1.12.223.tar.gz 5892788 BLAKE2B 
32a25636c7e3882e567daefeb0945863dd1b3c096d0c8459bec1814a371b455347ca7dbf21d8fffa5f3edb75fade36bd1dd25d86c23e2a01a3b465f769f53dde
 SHA512 
1dde1fa483f9227f1048bf3e28bbb67687016d61a61781808dfdfb36b6024d680581423b5240d513c9d96e24fa94a762feb1aa44ef92bbb916974dbcf7c3127a
+DIST botocore-1.12.251.tar.gz 5936418 BLAKE2B 
a665d8a4c22bde4e5968b845e6df072a3ed2ce53561e007f2eaae144a91a77a32566c3c7f7a0158136b3e6d67aacffd5b77eed5fab51fe60fdfa29eb93e918ce
 SHA512 
b29930367c602d40a7ce2386070dbaf83f34ea9321c7da40bf76ad7dae0587258fa2b3a058d17932d3e5fa22248c3ea5c838716fec5dce8da49e851b5c4f88d9
 DIST botocore-1.12.4.tar.gz 4800384 BLAKE2B 
121019d3c33872fdd874ddba36ecc8612a6354068ce7b759cbe7f35a9787e84c34d3a71ef3fdd2d721d3c3973a7600e4398cb7cd2a3ba698464c15137845bdf3
 SHA512 
8d196984f5623df403a8a23a9b7e7061e59c0ca56103f89d749d6ad7d92168ccae267f85312f2949cee322776d7948f1ecfda3d9d2783e8ba92fde7a178e8cac
 DIST botocore-1.12.81.tar.gz 5383717 BLAKE2B 
0bafd6038cf4a5d1fa4f0597024b09eca48ab95d071cccd09b1910ccf839719114166fab7d78bd2b30dec4b4993a0751d9504260636174df5f76f02495e79960
 SHA512 
d3be22af53a8c6dd55be3fa0b84a55cdce22d30d6e6f04b0bb69539b8107c86de6b5494079e3af40f9b5285ef10c21e69c85295e5cd7c6dc5ab5be91718a2ea9

diff --git a/dev-python/botocore/botocore-1.12.251.ebuild 
b/dev-python/botocore/botocore-1.12.251.ebuild
new file mode 100644
index 000..a5470f90316
--- /dev/null
+++ b/dev-python/botocore/botocore-1.12.251.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3."
+HOMEPAGE="https://github.com/boto/botocore;
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="doc test"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   

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

2019-10-17 Thread Thomas Deutschmann
commit: c09698abe62980e682d299a6319f2c27e2167856
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Thu Oct 17 16:52:12 2019 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Thu Oct 17 16:52:12 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c09698ab

dev-python/awscli: bump to v1.16.261

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-python/awscli/Manifest   |  1 +
 dev-python/awscli/awscli-1.16.261.ebuild | 56 
 2 files changed, 57 insertions(+)

diff --git a/dev-python/awscli/Manifest b/dev-python/awscli/Manifest
index f3d8bd93625..994e53a1134 100644
--- a/dev-python/awscli/Manifest
+++ b/dev-python/awscli/Manifest
@@ -5,3 +5,4 @@ DIST awscli-1.16.190.tar.gz 1283492 BLAKE2B 
9030c7d1c992b15d816cb611a132ab6cc50e
 DIST awscli-1.16.215.tar.gz 1344712 BLAKE2B 
408c30ec166d1614a6b877b0d88ce3c41668fe4c0e147c4a4df5652b5c9cd19735da8af857dba5534f84dc35dba1d35aaf2409ff68bfa4464e4abcdd711d26ff
 SHA512 
16168fa034498df09587854e4c628b6b4e5ed589a7c023c2a48fb740715f14a2aba53bafa6dba7d6a16a50292f0bb19027bd5704901a009d95795c05cf71f5b5
 DIST awscli-1.16.220.tar.gz 1363235 BLAKE2B 
9db063972092dee9d03cbd6567544df2c8c0fdcc57f447667b402903bd39c46ca61c3ee06e7c00bd37a99bdbc14847a86415ed2eb7621a5f57606c03ac602ee3
 SHA512 
b1c2d1e8ac41e92735b6b48f112b59ea869c210991511a51725b38223865c57bb64687ad6f1ef03ab620a133bc6afd1e530ea5f2912824097638c46926b7e3cd
 DIST awscli-1.16.233.tar.gz 1395357 BLAKE2B 
4ebd3e51439891464864a2c8a089da96d3f33a77fe78810b073f746fa6015608f8650eb51c1b148c2cae6030f736ea2e6c01f3f21b2fe73bdc0878fd0215fea5
 SHA512 
356433221e352437d4f4997dd3a66a8cb866388ca480ef9ef405d8eb1d5d034d6a018c6b303446c07ff5b52778035e6b0df5922ca2fbfbb19628de3f04c9a34e
+DIST awscli-1.16.261.tar.gz 1503153 BLAKE2B 
c507c37905e06d976b246f4636462d79184c62a8ee55cbda82d835cdc7294419e7cadd6c2209a9f0b6768cedb6ee6dd201d3baa7edc0a0a545bd7d5ca7913d45
 SHA512 
3245d4bdab98d8385a370385b4f0f3038007740c3c6c3a2e30d64e7e4e83230b0d016bc55072fbff10c6e4e533633bf02dc3fcd9b7ed45c248b1136ea62b9c3b

diff --git a/dev-python/awscli/awscli-1.16.261.ebuild 
b/dev-python/awscli/awscli-1.16.261.ebuild
new file mode 100644
index 000..4ca105e9180
--- /dev/null
+++ b/dev-python/awscli/awscli-1.16.261.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+PYTHON_COMPAT=( python{2_7,3_5,3_6,3_7} )
+
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="https://pypi.org/project/awscli/;
+#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+
+# requires network access
+RESTRICT="test"
+
+RDEPEND="
+   >=dev-python/botocore-1.12.251[${PYTHON_USEDEP}]
+   =dev-python/s3transfer-0.2.0[${PYTHON_USEDEP}]
+   

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

2019-10-17 Thread Matt Turner
commit: 6848506792b3d55d210750c14c79c1543117826e
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Oct 17 16:38:33 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Oct 17 16:38:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68485067

profiles: Mask x11-base/xorg-proto-2019.2 for testing

Signed-off-by: Matt Turner  gentoo.org>

 profiles/package.mask | 14 ++
 1 file changed, 6 insertions(+), 8 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 8c03c106308..8c2a4aa2904 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -29,6 +29,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Matt Turner  (2019-10-17)
+# Masked for testing
+=x11-base/xorg-proto-2019.2
+=x11-libs/libX11-1.6.9
+=x11-libs/libXvMC-1.0.12
+
 # Michał Górny  (2019-10-17)
 # Homepage gone.  EAPI 0.  Used to be used with old versions
 # of www-apps/gallery that were removed back in 2016.
@@ -161,10 +167,6 @@ net-misc/ipsc
 # Removal in 30 days.  Bug #696294.
 mail-mta/qmail-ldap
 
-# Matt Turner  (2019-10-09)
-# Needs unreleased xorgproto. Bug #697098.
-=x11-libs/libX11-1.6.9
-
 # Michał Górny  (2019-10-07)
 # Unmaintained.  A few versions behind upstream.  Forces an old version
 # of dev-java/ant-contrib.
@@ -412,10 +414,6 @@ games-server/ut2004-ded
 # Removal in 30 days.
 virtual/python-pmw
 
-# Ulrich Müller  (2019-09-26)
-# Blocks its own dependency. Bug #695606.
-=x11-libs/libXvMC-1.0.12
-
 # Joonas Niilola  (2019-09-24)
 # Upstream decided to deprecate this service, and app. Removal in 
 # ~30 days. Bug #695562



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-proto/

2019-10-17 Thread Matt Turner
commit: 122b9f6163689416877188f67b2e1978ab399aad
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Oct 17 16:36:16 2019 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Oct 17 16:36:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=122b9f61

x11-base/xorg-proto: Version bump to 2019.2

Signed-off-by: Matt Turner  gentoo.org>

 x11-base/xorg-proto/Manifest |  1 +
 x11-base/xorg-proto/xorg-proto-2019.2.ebuild | 68 
 2 files changed, 69 insertions(+)

diff --git a/x11-base/xorg-proto/Manifest b/x11-base/xorg-proto/Manifest
index 67b15ff27a8..1c351abd7cb 100644
--- a/x11-base/xorg-proto/Manifest
+++ b/x11-base/xorg-proto/Manifest
@@ -1 +1,2 @@
 DIST xorgproto-2019.1.tar.gz 1119813 BLAKE2B 
eed29e0e236cc448b2ff220a844c68f69b0d1d2d7cfb4e82219731bbedadfc9352cf894ce8ba3c2a9f7dd1689a46be0a9ed4b0d061c661b752b0e81ef1057f27
 SHA512 
7d3a5b24cf5c5ff78c63f61b7e4e2fe6f8b6ca64c345422a1943688af8dccd621cf22833035ee632d37ebb96bf4864d1c18a8015373d69e734299cccb481615a
+DIST xorgproto-2019.2.tar.gz 1080686 BLAKE2B 
4e0218ef02a8df5220431ae36ac1bc8feaa2bfdefe784f9b7393fe1d27db5b39ba90a38a3570bd78279964c5842ea65df3724b2407535a43fd867922156d92e9
 SHA512 
3385e7eb8ae1384aa01945c7f5a300884a1deb8d564ab62bd5bcaa3703d3dbf9bbc19797ac17d19e15417bf8456f706f993e90ece2d34cc94046ac302c062cbe

diff --git a/x11-base/xorg-proto/xorg-proto-2019.2.ebuild 
b/x11-base/xorg-proto/xorg-proto-2019.2.ebuild
new file mode 100644
index 000..0d8a1c69b15
--- /dev/null
+++ b/x11-base/xorg-proto/xorg-proto-2019.2.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MY_PN="${PN/xorg-/xorg}"
+MY_P="${MY_PN}-${PV}"
+
+EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/${MY_PN}.git;
+
+if [[ ${PV} = * ]]; then
+   GIT_ECLASS="git-r3"
+fi
+
+inherit ${GIT_ECLASS} meson
+
+DESCRIPTION="X.Org combined protocol headers"
+HOMEPAGE="https://gitlab.freedesktop.org/xorg/proto/xorgproto;
+if [[ ${PV} = * ]]; then
+   SRC_URI=""
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris"
+   
SRC_URI="https://xorg.freedesktop.org/archive/individual/proto/${MY_P}.tar.gz;
+   S="${WORKDIR}/${MY_P}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+   !

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

2019-10-17 Thread Göktürk Yüksek
commit: 67d01a772460f6f8afc447de20bb6d10448f30ab
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Oct 17 14:50:33 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Oct 17 15:04:28 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67d01a77

sys-fs/fuse-common: keyword for riscv

Package-Manager: Portage-2.3.76, Repoman-2.3.17
RepoMan-Options: --include-arches="riscv"
Signed-off-by: Göktürk Yüksek  gentoo.org>

 sys-fs/fuse-common/fuse-common-3.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/fuse-common/fuse-common-3.4.1.ebuild 
b/sys-fs/fuse-common/fuse-common-3.4.1.ebuild
index 1bee8df8257..93ecce7e5f6 100644
--- a/sys-fs/fuse-common/fuse-common-3.4.1.ebuild
+++ b/sys-fs/fuse-common/fuse-common-3.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/libfuse/libfuse/releases/download/fuse-${PV}/fuse-${
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86"
 
 DEPEND="virtual/pkgconfig"
 RDEPEND="!

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

2019-10-17 Thread Göktürk Yüksek
commit: ad783bfcfab481eb96cdf9cdf74bdd679dcf3f50
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Oct 17 15:02:57 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Oct 17 15:04:39 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad783bfc

net-fs/sshfs: keyword for riscv

Package-Manager: Portage-2.3.76, Repoman-2.3.17
RepoMan-Options: --include-arches="riscv"
Signed-off-by: Göktürk Yüksek  gentoo.org>

 net-fs/sshfs/sshfs-2.10-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-fs/sshfs/sshfs-2.10-r1.ebuild 
b/net-fs/sshfs/sshfs-2.10-r1.ebuild
index c83fec38cea..0fbab59c88f 100644
--- a/net-fs/sshfs/sshfs-2.10-r1.ebuild
+++ b/net-fs/sshfs/sshfs-2.10-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2018 Gentoo Authors
+# Copyright 1999-2019 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -8,7 +8,7 @@ HOMEPAGE="https://github.com/libfuse/sshfs;
 SRC_URI="https://github.com/libfuse/${PN}/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 arm ~arm64 hppa ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm ~arm64 hppa ~ppc ~ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 SLOT="0"
 
 CDEPEND=">=sys-fs/fuse-2.6.0_pre3:0



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

2019-10-17 Thread Göktürk Yüksek
commit: c86a02a01e82c49c3a4d5668698db39102990a7e
Author: Göktürk Yüksek  gentoo  org>
AuthorDate: Thu Oct 17 15:00:16 2019 +
Commit: Göktürk Yüksek  gentoo  org>
CommitDate: Thu Oct 17 15:04:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c86a02a0

sys-fs/fuse: keyword for riscv

Package-Manager: Portage-2.3.76, Repoman-2.3.17
RepoMan-Options: --include-arches="riscv"
Signed-off-by: Göktürk Yüksek  gentoo.org>

 sys-fs/fuse/fuse-2.9.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/fuse/fuse-2.9.9-r1.ebuild b/sys-fs/fuse/fuse-2.9.9-r1.ebuild
index 49c872088c7..5ad8a0105f2 100644
--- a/sys-fs/fuse/fuse-2.9.9-r1.ebuild
+++ b/sys-fs/fuse/fuse-2.9.9-r1.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/libfuse/libfuse/releases/download/${P}/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sh ~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="examples kernel_linux kernel_FreeBSD static-libs"
 
 PDEPEND="kernel_FreeBSD? ( sys-fs/fuse4bsd )"



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

2019-10-17 Thread Manuel Rüger
commit: 439734b5a7539502c83240d31899f295bcb43723
Author: Manuel Rüger  gentoo  org>
AuthorDate: Thu Oct 17 14:35:15 2019 +
Commit: Manuel Rüger  gentoo  org>
CommitDate: Thu Oct 17 14:36:07 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=439734b5

app-admin/docker-bench: Update snapshot

Package-Manager: Portage-2.3.76, Repoman-2.3.16
Signed-off-by: Manuel Rüger  gentoo.org>

 app-admin/docker-bench/Manifest| 21 
 .../docker-bench/docker-bench-0_p20190822.ebuild   | 58 ++
 2 files changed, 79 insertions(+)

diff --git a/app-admin/docker-bench/Manifest b/app-admin/docker-bench/Manifest
index 85dbf634906..9754ab346e2 100644
--- a/app-admin/docker-bench/Manifest
+++ b/app-admin/docker-bench/Manifest
@@ -1,18 +1,39 @@
 DIST docker-bench-0_p20171206.tar.gz 17541 BLAKE2B 
ce6e68cab7e36a596c9b366ad6c7a6ff9ec735248f99dbb5b046bd9628f62ff392bb3c576c2a159d3403401e6d6cd4093632e47102c763f1c967bbdff2e4ee08
 SHA512 
fb9fbc1ccc54965c546bbba17865b803214824ef53e02d088e72a9bf3ae7c6ee7429e15507593b2ec8d33c52aab375878d9ea86b51a2518948bc0dfe969bec13
+DIST docker-bench-0_p20190822.tar.gz 49441 BLAKE2B 
ea4d9056f0825c8adc0b87837fdb2087577ab68fbd53189310fd983f2a4155329789c30cd228b043d08e265457a90f0692210eddc87cbe63479f1c2ecf698401
 SHA512 
6157d9a473f10fc9e593c1cd87b153f1f34e8317bc31787085cca5a5be92efa1b00b386afa73f62a23ef45b39da70fe8345b61fd3955f5cdef82a085df854b27
+DIST github.com-aquasecurity-bench-common-81f08528fa03.tar.gz 18981 BLAKE2B 
6579a12622870e537a16f467bcfed71ed1c791641e1948caee10a69f8ff7fc28a3f73e48beb8d3b1d274428e498720f528237d07b28fe1319164ab1339852d0e
 SHA512 
b01f88ddb7c119dc9d7e4f7f3e2d9c80b4046dcd65c6d5f2640d28c235c04fbe03b348032584350485f6323920f692cd96ff73e4140faaeb26d7d5b6eb24671f
 DIST 
github.com-aquasecurity-bench-common-fc47834ad19bafbba64ded876d82bee4dba50c40.tar.gz
 11587 BLAKE2B 
832d7216340c71ce8ec201a0abb8f22dc73916a8bcc0d3657a7d12958f48142e6d729ce1f6403ed4a7b0b11a7cb53d45901f0a6e20f095d931c075e414373647
 SHA512 
20fb3a105af33096ed5e4a6b52e9793d9031ca5c2d2f37811e4be90abbc6cc3d7aa94e1d210ada703b61398f6bcf771ed20a9b9b9ad171fe88f66e78125bbc4f
 DIST github.com-fatih-color-5df930a27be2502f99b292b7cc09ebad4d0891f4.tar.gz 
588446 BLAKE2B 
0e3acbea72d4e6d14964c53a13eac4ddb4299f86045bc4751498c1e80ee997f3392b3236f1f7fa872ceef73edf0c4e87154d5cc1605d5637ae090979596f1906
 SHA512 
9c7a1f5d67e0c8da788624a24ec42a9a1504f497840590e50b8fe9204dde5511be00a94645c2e9326dba23a8514adffdc242192abb270021c37e231636bafc71
+DIST github.com-fatih-color-v1.7.0.tar.gz 816449 BLAKE2B 
f006f51cbd1a0288380b339d7d2b493e447aa1e6bd783f11de5670d4db6ff8c1463cbe957a04127c1f24186a9362be8c40ecdf4394cbbc0e2c6c2cb598c012ac
 SHA512 
ee5668ce828ad3e5461c54d971aee4b10a578f697717010d60fdda641948430816e74580563dfea6a4c66a9840175ff5b63c2ca9cf1af213cfac5be7b8ddac36
 DIST 
github.com-fsnotify-fsnotify-c2828203cd70a50dcccfb2761f8b1f8ceef9a8e9.tar.gz 
31164 BLAKE2B 
8ed43520ed7df3f52585b41358e2c89c55cd9bcea78affbf76d11cb2d3660e2de63d2debd91cd4da7c1a1fde3afac1086e616ab632460389cd4f10cc633a3e81
 SHA512 
809a90dcfbf565d335514257b577150a367e16ef871e2f44584a13fe3bc3ac87cbd789f7c7882a76cf7a7c546740c6552ec7382b4a6d18c4f0e845bcc3a7b0c8
+DIST github.com-fsnotify-fsnotify-v1.4.7.tar.gz 31139 BLAKE2B 
f2d0aaabfad525fb640beba78991a858ad23203a557a69fc15d2f017b2a693c64c244de435682b1cd9d59e89a97e4ba60c7f95fa99a6145a9dea73b0f334936e
 SHA512 
840943043c49c837641f04b976f2ba610fc03bd31030ca6442744d51fa9241da1905730ea11466e249a5bd37437f1e2a433a012a64ce872a1562c941bd5bfcbf
 DIST github.com-go-yaml-yaml-d670f9405373e636a5a2765eea47fac0c9bc91a4.tar.gz 
64859 BLAKE2B 
211e51960673e78e9c802357dffb550c6d59692203040b2f3d0bc9ab15f8bf5ee479918a782931238e230f36f4c77228a44632883486370f0fb9266d8b2c7c14
 SHA512 
daa9d622d4b717ce54af884e1f5548d7ead93486d322f808bc6cf291011a5c418d33b464fd66161bef8c18da759aa1c6182b36fb2210c5f026110776e2195ac5
+DIST github.com-go-yaml-yaml-v2.2.2.tar.gz 70656 BLAKE2B 
750d1135eb73dd1eaa08f86294227973fc465ea6212233596253e5385e2081f4576123b7fbd96bfbdcdec4d1171d78c04835d7fbaa4b4e69dabdc3da10bba1de
 SHA512 
210b36f9cc4205f91041e0da08b8eae6afbb9f44fc036bf578223da52a74ee21fa60caa569efbb5b8262e2b885ff13efa68705cbefdf93a1d05b2378d95620e8
+DIST github.com-golang-glog-23def4e6c14b.tar.gz 19688 BLAKE2B 
f9ff73060c3b10603472c3ea4f50b4afa6abb5a4e9e7ac43d2a6c2e62541d43ef9f0ef7a8759d9b3281d72e5f90c516ee174c91de9a640a5bdf6877700450d44
 SHA512 
e9e70cf2a2d74ca813d0cadc23d213a1112ca4d1167abb63d8e0929585fca90c3a5bab1f49db20095c48bf1fe03b4424353c33728d09a201334eb65770888dc5
 DIST github.com-golang-glog-23def4e6c14b4da8ac2ed8007337bc5eb5007998.tar.gz 
19688 BLAKE2B 
f9ff73060c3b10603472c3ea4f50b4afa6abb5a4e9e7ac43d2a6c2e62541d43ef9f0ef7a8759d9b3281d72e5f90c516ee174c91de9a640a5bdf6877700450d44
 SHA512 
e9e70cf2a2d74ca813d0cadc23d213a1112ca4d1167abb63d8e0929585fca90c3a5bab1f49db20095c48bf1fe03b4424353c33728d09a201334eb65770888dc5
 DIST 

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

2019-10-17 Thread Miroslav Šulc
commit: 330d4fcd43f54167f11caad185dd9a080a0f779a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 14:00:42 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330d4fcd

dev-java/ant-testutil-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-testutil/Manifest   |  2 ++
 dev-java/ant-testutil/ant-testutil-1.10.7.ebuild | 37 
 2 files changed, 39 insertions(+)

diff --git a/dev-java/ant-testutil/Manifest b/dev-java/ant-testutil/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-testutil/Manifest
+++ b/dev-java/ant-testutil/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-testutil/ant-testutil-1.10.7.ebuild 
b/dev-java/ant-testutil/ant-testutil-1.10.7.ebuild
new file mode 100644
index 000..5f83841637f
--- /dev/null
+++ b/dev-java/ant-testutil/ant-testutil-1.10.7.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+
+inherit ant-tasks
+
+DESCRIPTION="Apache Ant's optional test utility classes"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+CDEPEND="dev-java/ant-core:0"
+
+DEPEND="${CDEPEND}
+   >=virtual/jdk-1.8
+   >=dev-java/junit-4.11:4
+   ~dev-java/ant-swing-${PV}
+   ~dev-java/ant-junit4-${PV}
+   ~dev-java/ant-junitlauncher-${PV}"
+
+RDEPEND="${CDEPEND}
+   >=virtual/jre-1.8"
+
+# The build system builds much more than it actually packages, so there are 
many
+# build-only deps, but since those are quite common, it wasn't worth to patch 
it.
+
+src_unpack() {
+   ant-tasks_src_unpack base
+   java-pkg_jar-from --build-only 
junit-4,ant-junit4,ant-junitlauncher,ant-swing
+   java-pkg_jar-from --build-only ant-core ant-launcher.jar
+}
+
+src_compile() {
+   eant test-jar
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-apache-xalan2/

2019-10-17 Thread Miroslav Šulc
commit: e6cc1bfc75da41a65c2163db79c9f29e32564eab
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:12:19 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6cc1bfc

dev-java/ant-apache-xalan2-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-apache-xalan2/Manifest|  2 ++
 .../ant-apache-xalan2-1.10.7.ebuild| 22 ++
 2 files changed, 24 insertions(+)

diff --git a/dev-java/ant-apache-xalan2/Manifest 
b/dev-java/ant-apache-xalan2/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-apache-xalan2/Manifest
+++ b/dev-java/ant-apache-xalan2/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-apache-xalan2/ant-apache-xalan2-1.10.7.ebuild 
b/dev-java/ant-apache-xalan2/ant-apache-xalan2-1.10.7.ebuild
new file mode 100644
index 000..6a729b172d2
--- /dev/null
+++ b/dev-java/ant-apache-xalan2/ant-apache-xalan2-1.10.7.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="xalan"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND="dev-java/xalan:0
+   dev-java/xalan-serializer:0"
+
+RDEPEND="${DEPEND}"
+
+src_unpack() {
+   ant-tasks_src_unpack all
+   java-pkg_jar-from xalan-serializer
+}



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

2019-10-17 Thread Miroslav Šulc
commit: ee1188f75735a155b9caaa044277125d87258d36
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:19:02 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee1188f7

dev-java/junit4-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-junit4/Manifest |  2 ++
 dev-java/ant-junit4/ant-junit4-1.10.7.ebuild | 37 
 2 files changed, 39 insertions(+)

diff --git a/dev-java/ant-junit4/Manifest b/dev-java/ant-junit4/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-junit4/Manifest
+++ b/dev-java/ant-junit4/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-junit4/ant-junit4-1.10.7.ebuild 
b/dev-java/ant-junit4/ant-junit4-1.10.7.ebuild
new file mode 100644
index 000..7dc05511508
--- /dev/null
+++ b/dev-java/ant-junit4/ant-junit4-1.10.7.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="junit-4"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+DEPEND="dev-java/junit:4
+   ~dev-java/ant-junit-${PV}"
+
+RDEPEND="${DEPEND}"
+
+JAVA_ANT_REWRITE_CLASSPATH="true"
+EANT_GENTOO_CLASSPATH="junit-4,ant-junit"
+
+src_prepare() {
+   default
+
+   java-pkg_jar-from --build-only --into "${S}/lib" ant-junit
+}
+
+src_install() {
+   # No registration as ant-task, would be loaded together with ant-junit.
+   java-pkg_dojar build/lib/ant-junit4.jar
+
+   # As we dont't want to depend on and-junit in package.env, because it 
depends
+   # on junit:0. Instead, we "steal" its jar and record it to our 
package.env as
+   # if it belongs to this package's classpath.
+   java-pkg_getjar --build-only ant-junit ant-junit.jar
+   java-pkg_regjar $(java-pkg_getjar --build-only ant-junit ant-junit.jar)
+}



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

2019-10-17 Thread Miroslav Šulc
commit: 5d500a146820f3f1b1d14411e4b6f1939da29449
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:06:41 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d500a14

dev-java/ant-antlr-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-antlr/Manifest|  2 ++
 dev-java/ant-antlr/ant-antlr-1.10.7.ebuild | 20 
 2 files changed, 22 insertions(+)

diff --git a/dev-java/ant-antlr/Manifest b/dev-java/ant-antlr/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-antlr/Manifest
+++ b/dev-java/ant-antlr/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-antlr/ant-antlr-1.10.7.ebuild 
b/dev-java/ant-antlr/ant-antlr-1.10.7.ebuild
new file mode 100644
index 000..ef05cb23ca4
--- /dev/null
+++ b/dev-java/ant-antlr/ant-antlr-1.10.7.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME=""
+
+inherit ant-tasks
+
+DESCRIPTION="Apache Ant's optional tasks for Antlr"
+KEYWORDS="~amd64 ~arm ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+RDEPEND=">=dev-java/antlr-2.7.7-r7:0"
+
+src_install() {
+   ant-tasks_src_install
+   java-pkg_register-dependency antlr
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-apache-bsf/

2019-10-17 Thread Miroslav Šulc
commit: 1f4a8498ace0c159c44325478545e514b1b489be
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:08:16 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f4a8498

dev-java/ant-apache-bsf-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-apache-bsf/Manifest   |  2 ++
 .../ant-apache-bsf/ant-apache-bsf-1.10.7.ebuild| 23 ++
 2 files changed, 25 insertions(+)

diff --git a/dev-java/ant-apache-bsf/Manifest b/dev-java/ant-apache-bsf/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-apache-bsf/Manifest
+++ b/dev-java/ant-apache-bsf/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-apache-bsf/ant-apache-bsf-1.10.7.ebuild 
b/dev-java/ant-apache-bsf/ant-apache-bsf-1.10.7.ebuild
new file mode 100644
index 000..ad08876584f
--- /dev/null
+++ b/dev-java/ant-apache-bsf/ant-apache-bsf-1.10.7.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="bsf-2.3"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="python javascript tcl"
+
+DEPEND=">=dev-java/bsf-2.4.0-r1:2.3[python?,javascript?,tcl?]"
+RDEPEND="${DEPEND}"
+
+pkg_postinst() {
+   if [[ -z "${REPLACING_VERSIONS}" ]]; then
+   elog "Also, >=dev-java/bsf-2.4.0-r1 adds optional support for 
groovy,"
+   elog "ruby and beanshell. See its postinst elog messages for 
instructions."
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-apache-oro/

2019-10-17 Thread Miroslav Šulc
commit: 9ddc269911c796ee5b852d60da9bdbed0c6f242a
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:09:46 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddc2699

dev-java/ant-apache-oro-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-apache-oro/Manifest |  2 ++
 dev-java/ant-apache-oro/ant-apache-oro-1.10.7.ebuild | 15 +++
 2 files changed, 17 insertions(+)

diff --git a/dev-java/ant-apache-oro/Manifest b/dev-java/ant-apache-oro/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-apache-oro/Manifest
+++ b/dev-java/ant-apache-oro/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-apache-oro/ant-apache-oro-1.10.7.ebuild 
b/dev-java/ant-apache-oro/ant-apache-oro-1.10.7.ebuild
new file mode 100644
index 000..627c57a055f
--- /dev/null
+++ b/dev-java/ant-apache-oro/ant-apache-oro-1.10.7.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="jakarta-oro-2.0"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/jakarta-oro-2.0.8-r2:2.0"
+RDEPEND="${DEPEND}"



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

2019-10-17 Thread Miroslav Šulc
commit: 74db0dd5f56c4c3e3c354dee2052838dbba4ada3
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:15:06 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74db0dd5

dev-java/ant-javamail-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-javamail/Manifest   |  2 ++
 dev-java/ant-javamail/ant-javamail-1.10.7.ebuild | 18 ++
 2 files changed, 20 insertions(+)

diff --git a/dev-java/ant-javamail/Manifest b/dev-java/ant-javamail/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-javamail/Manifest
+++ b/dev-java/ant-javamail/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-javamail/ant-javamail-1.10.7.ebuild 
b/dev-java/ant-javamail/ant-javamail-1.10.7.ebuild
new file mode 100644
index 000..c0640d2c94a
--- /dev/null
+++ b/dev-java/ant-javamail/ant-javamail-1.10.7.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME=( "gnu-jaf-1" "oracle-javamail" )
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# needs some classes from javax.activation.* which are not in jdk 11
+DEPEND="virtual/jdk:1.8
+   dev-java/gnu-jaf:1
+   dev-java/oracle-javamail:0"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-apache-regexp/

2019-10-17 Thread Miroslav Šulc
commit: 9ec63e88ce69e62832bf6f65232b4eec5f25561b
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:10:38 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec63e88

dev-java/ant-apache-regexp-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-apache-regexp/Manifest   |  2 ++
 .../ant-apache-regexp/ant-apache-regexp-1.10.7.ebuild | 15 +++
 2 files changed, 17 insertions(+)

diff --git a/dev-java/ant-apache-regexp/Manifest 
b/dev-java/ant-apache-regexp/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-apache-regexp/Manifest
+++ b/dev-java/ant-apache-regexp/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-apache-regexp/ant-apache-regexp-1.10.7.ebuild 
b/dev-java/ant-apache-regexp/ant-apache-regexp-1.10.7.ebuild
new file mode 100644
index 000..71f2fdd93dc
--- /dev/null
+++ b/dev-java/ant-apache-regexp/ant-apache-regexp-1.10.7.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="jakarta-regexp-1.4"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/jakarta-regexp-1.4-r1:1.4"
+RDEPEND="${DEPEND}"



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

2019-10-17 Thread Miroslav Šulc
commit: ad88521d754cf02532ff7ccf4f74fe1a8e1f661e
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:14:25 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:33 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad88521d

dev-java/ant-jai-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-jai/Manifest  |  2 ++
 dev-java/ant-jai/ant-jai-1.10.7.ebuild | 16 
 2 files changed, 18 insertions(+)

diff --git a/dev-java/ant-jai/Manifest b/dev-java/ant-jai/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-jai/Manifest
+++ b/dev-java/ant-jai/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-jai/ant-jai-1.10.7.ebuild 
b/dev-java/ant-jai/ant-jai-1.10.7.ebuild
new file mode 100644
index 000..d7c138ca85f
--- /dev/null
+++ b/dev-java/ant-jai/ant-jai-1.10.7.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="sun-jai-bin"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+# Unmigrated, has textrels and there's also some source one now too.
+DEPEND=">=dev-java/sun-jai-bin-1.1.2.01-r1"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-apache-bcel/

2019-10-17 Thread Miroslav Šulc
commit: ec883265d3581e1945352f487a1a1beac7c41a77
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:07:32 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec883265

dev-java/ant-apache-bcel-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-apache-bcel/Manifest  |  2 ++
 dev-java/ant-apache-bcel/ant-apache-bcel-1.10.7.ebuild | 15 +++
 2 files changed, 17 insertions(+)

diff --git a/dev-java/ant-apache-bcel/Manifest 
b/dev-java/ant-apache-bcel/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-apache-bcel/Manifest
+++ b/dev-java/ant-apache-bcel/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-apache-bcel/ant-apache-bcel-1.10.7.ebuild 
b/dev-java/ant-apache-bcel/ant-apache-bcel-1.10.7.ebuild
new file mode 100644
index 000..a323d9ea93a
--- /dev/null
+++ b/dev-java/ant-apache-bcel/ant-apache-bcel-1.10.7.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="bcel"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/bcel-5.1-r3:0"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-apache-resolver/

2019-10-17 Thread Miroslav Šulc
commit: 86aef450c98584c893402345b31161aefc4108fa
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:11:37 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:31 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86aef450

dev-java/ant-apache-resolver-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-apache-resolver/Manifest |  2 ++
 .../ant-apache-resolver/ant-apache-resolver-1.10.7.ebuild | 15 +++
 2 files changed, 17 insertions(+)

diff --git a/dev-java/ant-apache-resolver/Manifest 
b/dev-java/ant-apache-resolver/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-apache-resolver/Manifest
+++ b/dev-java/ant-apache-resolver/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-apache-resolver/ant-apache-resolver-1.10.7.ebuild 
b/dev-java/ant-apache-resolver/ant-apache-resolver-1.10.7.ebuild
new file mode 100644
index 000..d12dc64eb71
--- /dev/null
+++ b/dev-java/ant-apache-resolver/ant-apache-resolver-1.10.7.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="xml-commons-resolver"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/xml-commons-resolver-1.2:0"
+RDEPEND="${DEPEND}"



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

2019-10-17 Thread Miroslav Šulc
commit: 45e525301bdf27cb1ab9e007b07fb9f8faf75306
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:02:59 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:29 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45e52530

dev-java/ant-core-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-core/Manifest   |   2 +
 dev-java/ant-core/ant-core-1.10.7.ebuild | 123 +++
 2 files changed, 125 insertions(+)

diff --git a/dev-java/ant-core/Manifest b/dev-java/ant-core/Manifest
index 20081eaa123..c3eadc79a6f 100644
--- a/dev-java/ant-core/Manifest
+++ b/dev-java/ant-core/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-r1-gentoo.tar.bz2 6400 BLAKE2B 
349a45ee678217ee31ae2f6e982ceec2d31138dcb58e614f496125d7d9bc01a0fa3630be069fbf0d131f4006cb7912597c31392bc82ab7f9b0a1189bbe9a763e
 SHA512 
adf544c151f46df8a7fb7f7d33450f9a2390f568dd4c7b1c0e8850b1a155ea0ddc1f834d869d657806570d59af2d194cb443ddfc653627967246f3b38e264b12
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-r1-gentoo.tar.bz2 7208 BLAKE2B 
6f041a69f5f8e38e95b26030cf4d730ed22b071ad1d6e87ab1fb2707e2b40c7e23e1c8f7759d6904ad2b25793a7d9b2ead1c2649b6b029296cd9d05bec4ea296
 SHA512 
5b105ea00fbc7d6f63c0016b288f5e46a81b89cc46015e2ffcb2a4d41f915331ac8f8183752fea547396f204748132f6ce7aa7b3e6f6181c4983b4eb7ee84d54
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-core/ant-core-1.10.7.ebuild 
b/dev-java/ant-core/ant-core-1.10.7.ebuild
new file mode 100644
index 000..004db50c84b
--- /dev/null
+++ b/dev-java/ant-core/ant-core-1.10.7.ebuild
@@ -0,0 +1,123 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Don't depend on itself.
+JAVA_ANT_DISABLE_ANT_CORE_DEP="true"
+
+# Rewriting build.xml files for the testcases has no use at the moment.
+JAVA_PKG_BSFIX_ALL="no"
+JAVA_PKG_IUSE="doc source"
+
+inherit eutils java-pkg-2 java-ant-2 prefix
+
+MY_P="apache-ant-${PV}"
+
+DESCRIPTION="Java-based build tool similar to 'make' that uses XML 
configuration files"
+HOMEPAGE="https://ant.apache.org/;
+SRC_URI="https://archive.apache.org/dist/ant/source/${MY_P}-src.tar.bz2
+   https://dev.gentoo.org/~fordfrog/distfiles/ant-${PV}-gentoo.tar.bz2;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~ppc-aix ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+
+CDEPEND=">=virtual/jdk-1.8:*
+   !dev-java/ant-tasks
+   !dev-java/ant-optional"
+DEPEND="${CDEPEND}"
+RDEPEND="${CDEPEND}"
+
+S="${WORKDIR}/${MY_P}"
+
+RESTRICT="test"
+
+PATCHES=( "${WORKDIR}/${PV}-build.patch" "${WORKDIR}/${PV}-launch.patch" )
+
+src_prepare() {
+   default
+
+   eprefixify "${S}/src/script/ant"
+
+   # Fixes bug 556008.
+   java-ant_xml-rewrite -f build.xml \
+   -c -e javadoc \
+   -a failonerror \
+   -v "false"
+
+   # See bug #196080 for more details.
+   java-ant_bsfix_one build.xml
+   java-pkg-2_src_prepare
+
+   # Remove JDK9+ stuff
+   einfo "Removing JDK9+ classes (Jmod and Link)"
+   rm 
"${S}"/src/main/org/apache/tools/ant/taskdefs/modules/{Jmod,Link}.java
+}
+
+src_compile() {
+   export ANT_HOME=""
+   # Avoid error message that package ant-core was not found
+   export ANT_TASKS="none"
+
+   local bsyscp
+
+   # This ensures that when building ant with bootstrapped ant,
+   # only the source is used for resolving references, and not
+   # the classes in bootstrapped ant but jikes in kaffe has issues with 
this...
+   if ! java-pkg_current-vm-matches 

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

2019-10-17 Thread Miroslav Šulc
commit: 70c03bc58ec44b6d368d155c0e3033947984750d
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:16:27 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70c03bc5

dev-java/ant-jmf-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-jmf/Manifest  |  2 ++
 dev-java/ant-jmf/ant-jmf-1.10.7.ebuild | 16 
 2 files changed, 18 insertions(+)

diff --git a/dev-java/ant-jmf/Manifest b/dev-java/ant-jmf/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-jmf/Manifest
+++ b/dev-java/ant-jmf/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-jmf/ant-jmf-1.10.7.ebuild 
b/dev-java/ant-jmf/ant-jmf-1.10.7.ebuild
new file mode 100644
index 000..419a4e56e71
--- /dev/null
+++ b/dev-java/ant-jmf/ant-jmf-1.10.7.ebuild
@@ -0,0 +1,16 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+# Seems we don't need to depend on jmf-bin, the classes ant imports are in J2SE
+# API since version 1.3.
+ANT_TASK_DEPNAME=""
+
+inherit ant-tasks
+
+DESCRIPTION="Apache Ant's optional tasks for the Java Media Framework (JMF)"
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~x86-solaris"



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-commons-net/

2019-10-17 Thread Miroslav Šulc
commit: ae2ad33347dc8781f318f125069c57979bfc21f4
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:13:47 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae2ad333

dev-java/ant-commons-net-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-commons-net/Manifest  |  2 ++
 dev-java/ant-commons-net/ant-commons-net-1.10.7.ebuild | 14 ++
 2 files changed, 16 insertions(+)

diff --git a/dev-java/ant-commons-net/Manifest 
b/dev-java/ant-commons-net/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-commons-net/Manifest
+++ b/dev-java/ant-commons-net/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-commons-net/ant-commons-net-1.10.7.ebuild 
b/dev-java/ant-commons-net/ant-commons-net-1.10.7.ebuild
new file mode 100644
index 000..b3428da3ce8
--- /dev/null
+++ b/dev-java/ant-commons-net/ant-commons-net-1.10.7.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/commons-net-1.4.1-r1:0"
+RDEPEND="${DEPEND}"



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

2019-10-17 Thread Miroslav Šulc
commit: f843723bb4e07360a5843840e6488faddc8152dd
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 14:01:22 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f843723b

dev-java/ant-xz-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-xz/Manifest |  2 ++
 dev-java/ant-xz/ant-xz-1.10.7.ebuild | 17 +
 2 files changed, 19 insertions(+)

diff --git a/dev-java/ant-xz/Manifest b/dev-java/ant-xz/Manifest
index 78e37c6ce31..ac5e57e3829 100644
--- a/dev-java/ant-xz/Manifest
+++ b/dev-java/ant-xz/Manifest
@@ -1,2 +1,4 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d

diff --git a/dev-java/ant-xz/ant-xz-1.10.7.ebuild 
b/dev-java/ant-xz/ant-xz-1.10.7.ebuild
new file mode 100644
index 000..9829522c18e
--- /dev/null
+++ b/dev-java/ant-xz/ant-xz-1.10.7.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="xz-java"
+
+inherit ant-tasks
+
+DESCRIPTION="Apache Ant's optional tasks for XZ compression"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND="dev-java/xz-java"
+RDEPEND="${DEPEND}"



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

2019-10-17 Thread Miroslav Šulc
commit: bcf40556adcda54f4f1c48b8eab38d691b77badd
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 14:02:12 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:36 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bcf40556

dev-java/ant-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant/ant-1.10.7.ebuild | 49 ++
 1 file changed, 49 insertions(+)

diff --git a/dev-java/ant/ant-1.10.7.ebuild b/dev-java/ant/ant-1.10.7.ebuild
new file mode 100644
index 000..f19c021ed02
--- /dev/null
+++ b/dev-java/ant/ant-1.10.7.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Java-based build tool similar to 'make' that uses XML 
configuration files"
+HOMEPAGE="https://ant.apache.org/;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+IUSE="X +antlr +bcel +bsf +commonslogging +commonsnet jai +javamail +jdepend 
jmf
+   +jsch +junit +junit4 +junitlauncher +log4j +oro +regexp +resolver swing 
testutil xz"
+
+DEPEND="~dev-java/ant-core-${PV}"
+
+RDEPEND="${DEPEND}
+   ~dev-java/ant-core-${PV}
+   ~dev-java/ant-junit-${PV}
+   !dev-java/ant-optional
+   !dev-java/ant-tasks
+   ~dev-java/ant-apache-xalan2-${PV}
+   antlr? ( ~dev-java/ant-antlr-${PV} )
+   bcel? ( ~dev-java/ant-apache-bcel-${PV} )
+   bsf? ( ~dev-java/ant-apache-bsf-${PV} )
+   commonslogging? ( ~dev-java/ant-commons-logging-${PV} )
+   commonsnet? ( ~dev-java/ant-commons-net-${PV} )
+   jai? ( ~dev-java/ant-jai-${PV} )
+   javamail? ( ~dev-java/ant-javamail-${PV} )
+   jdepend? ( ~dev-java/ant-jdepend-${PV} )
+   jmf? ( ~dev-java/ant-jmf-${PV} )
+   jsch? ( ~dev-java/ant-jsch-${PV} )
+   junit? ( ~dev-java/ant-junit-${PV} )
+   junit4? ( ~dev-java/ant-junit4-${PV} )
+   junitlauncher? ( ~dev-java/ant-junitlauncher-${PV} )
+   log4j? ( ~dev-java/ant-apache-log4j-${PV} )
+   oro? ( ~dev-java/ant-apache-oro-${PV} )
+   regexp? ( ~dev-java/ant-apache-regexp-${PV} )
+   resolver? ( ~dev-java/ant-apache-resolver-${PV} )
+   swing? ( ~dev-java/ant-swing-${PV} )
+   testutil? ( ~dev-java/ant-testutil-${PV} )
+   X? ( ~dev-java/ant-swing-${PV} )
+   xz? ( ~dev-java/ant-xz-${PV} )
+"
+
+S="${WORKDIR}"
+
+src_compile() { :; }



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-apache-log4j/

2019-10-17 Thread Miroslav Šulc
commit: 7f1f669ed15ca47f810dc2fa49b0c6c74bf9f215
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:09:00 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:30 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f1f669e

dev-java/ant-apache-log4j-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-apache-log4j/Manifest   |  2 ++
 dev-java/ant-apache-log4j/ant-apache-log4j-1.10.7.ebuild | 15 +++
 2 files changed, 17 insertions(+)

diff --git a/dev-java/ant-apache-log4j/Manifest 
b/dev-java/ant-apache-log4j/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-apache-log4j/Manifest
+++ b/dev-java/ant-apache-log4j/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-apache-log4j/ant-apache-log4j-1.10.7.ebuild 
b/dev-java/ant-apache-log4j/ant-apache-log4j-1.10.7.ebuild
new file mode 100644
index 000..661919e8793
--- /dev/null
+++ b/dev-java/ant-apache-log4j/ant-apache-log4j-1.10.7.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME="log4j"
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/log4j-1.2.13-r2:0"
+RDEPEND="${DEPEND}"



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

2019-10-17 Thread Miroslav Šulc
commit: 5c7dc307bb75d7815362e080df6e89eff2431574
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:17:08 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:34 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c7dc307

dev-java/ant-jsch-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-jsch/Manifest   |  2 ++
 dev-java/ant-jsch/ant-jsch-1.10.7.ebuild | 14 ++
 2 files changed, 16 insertions(+)

diff --git a/dev-java/ant-jsch/Manifest b/dev-java/ant-jsch/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-jsch/Manifest
+++ b/dev-java/ant-jsch/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-jsch/ant-jsch-1.10.7.ebuild 
b/dev-java/ant-jsch/ant-jsch-1.10.7.ebuild
new file mode 100644
index 000..3d78c1a06cf
--- /dev/null
+++ b/dev-java/ant-jsch/ant-jsch-1.10.7.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/jsch-0.1.37:0"
+RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-java/ant-commons-logging/

2019-10-17 Thread Miroslav Šulc
commit: e88ac93d6b6d740afe639b2f781eafe670916420
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:13:02 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:32 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e88ac93d

dev-java/ant-commons-logging-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-commons-logging/Manifest  |  2 ++
 .../ant-commons-logging/ant-commons-logging-1.10.7.ebuild  | 14 ++
 2 files changed, 16 insertions(+)

diff --git a/dev-java/ant-commons-logging/Manifest 
b/dev-java/ant-commons-logging/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-commons-logging/Manifest
+++ b/dev-java/ant-commons-logging/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-commons-logging/ant-commons-logging-1.10.7.ebuild 
b/dev-java/ant-commons-logging/ant-commons-logging-1.10.7.ebuild
new file mode 100644
index 000..04a8d93f057
--- /dev/null
+++ b/dev-java/ant-commons-logging/ant-commons-logging-1.10.7.ebuild
@@ -0,0 +1,14 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+DEPEND=">=dev-java/commons-logging-1.0.4-r2:0"
+RDEPEND="${DEPEND}"



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

2019-10-17 Thread Miroslav Šulc
commit: be4c51cafc1e08fec01e5e0fcee3b14801968f08
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:59:56 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be4c51ca

dev-java/ant-swing-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-swing/Manifest|  2 ++
 dev-java/ant-swing/ant-swing-1.10.7.ebuild | 15 +++
 2 files changed, 17 insertions(+)

diff --git a/dev-java/ant-swing/Manifest b/dev-java/ant-swing/Manifest
index be47ba9c281..350cc29955d 100644
--- a/dev-java/ant-swing/Manifest
+++ b/dev-java/ant-swing/Manifest
@@ -1,4 +1,6 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST ant-1.9.13-gentoo.tar.bz2 7189 BLAKE2B 
65bc50bb401cd9ad48763acfa1208e1d52a87bf4df3591dfcdb0f2ded2e7e70c9a42199b0160c7bc233dff83f6889b2ce5fd5aa09a76973f7ea03e963bc9e73e
 SHA512 
0c04116399fa4e83e3283c6d2a69b562aeac0eacda44eb6ce0210e2b0846f48c72975dcfc17315e072226adeb6c1438cd7f83189d4e2974a8a90ec7c6534c898
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d
 DIST apache-ant-1.9.13-src.tar.bz2 3954912 BLAKE2B 
1ec249bb33f54fde80ba8a17248755e7412eb3415b14a03f0558bcc220c3eb47dc88128d435e59f10118f74c31eab8eea83f5d5db09640e1a5aaf08bac1490c1
 SHA512 
27cd4566df35a09873f32f897ea47c55ad3940f48440b52ce9838e5fcd9e8ca55b27151a25597f21c430cd2921e3b2b6b105962d0d40294a1eb06ed689b05810

diff --git a/dev-java/ant-swing/ant-swing-1.10.7.ebuild 
b/dev-java/ant-swing/ant-swing-1.10.7.ebuild
new file mode 100644
index 000..5bcebdf1c83
--- /dev/null
+++ b/dev-java/ant-swing/ant-swing-1.10.7.ebuild
@@ -0,0 +1,15 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+# No extra dependencies are needed.
+ANT_TASK_DEPNAME=""
+
+inherit ant-tasks
+
+DESCRIPTION="Apache Ant's optional tasks for Swing"
+
+KEYWORDS="~amd64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"



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

2019-10-17 Thread Miroslav Šulc
commit: 611e12a118cd702e6e10dff242714415db303374
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Oct 17 13:59:09 2019 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Oct 17 14:02:35 2019 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=611e12a1

dev-java/ant-junitlauncher-1.10.7: bump

Package-Manager: Portage-2.3.77, Repoman-2.3.17
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/ant-junitlauncher/Manifest|  2 ++
 dev-java/ant-junitlauncher/ant-junitlauncher-1.10.7.ebuild | 12 
 2 files changed, 14 insertions(+)

diff --git a/dev-java/ant-junitlauncher/Manifest 
b/dev-java/ant-junitlauncher/Manifest
index 78e37c6ce31..ac5e57e3829 100644
--- a/dev-java/ant-junitlauncher/Manifest
+++ b/dev-java/ant-junitlauncher/Manifest
@@ -1,2 +1,4 @@
 DIST ant-1.10.5-gentoo.tar.bz2 6381 BLAKE2B 
a03f5f57d3fdb43b5b08404e4e84fe82d1b8e9dff00ad25b78e3b9af55110e221b01f90424d193c729ed1025fe1690d0fb3507c2ab663961ea05e287ea2ff00a
 SHA512 
c296a867328d0d5c471f0cb98efc9f5e5fbd16148e608373c6dd76a17f5e8b4785175615ea992b42c9864c6e0b975f9dc8dccd27703c958a72cb7e7c2ca78d4d
+DIST ant-1.10.7-gentoo.tar.bz2 6686 BLAKE2B 
77e5850b68ab079f26722b5b2ff1afb29a35197afb79f80ae2f775855e2d8f3a478324b1175e9a73695b4e6a6798bf4458dc84d2f763a1d72c331505d31303ea
 SHA512 
f5c5a2ea99a780413a71799d56e783f3ac861169bd7f29c3a85d039f61240abb91ed223eeb111c67a6a1328a6cf2203d7cbf93ad762e49bc11f9a948e7f2091c
 DIST apache-ant-1.10.5-src.tar.bz2 4465063 BLAKE2B 
3cab99ae4a4800a42af3595ca6955877e3ab90c2df7086636b0f1ae0e3a45912f0c815164378616b758d76afe0a2f23cc0af6094d2f84fe17f29c3abe2e6f9aa
 SHA512 
082dad03db4fb09b36560bd5e1fbd53f456eecad06d95140569661b6509861bb9b87b87843ef2f30a5de18c549dd993209aa17b47ac77d450f573309a272950e
+DIST apache-ant-1.10.7-src.tar.bz2 4530166 BLAKE2B 
6998fffbda6a0adbe3434ef0013b3e669ec8f15a09d9a5917509733f3232a538e9be83758b9eacccd673522812a8d482e1fd526d5493634d9c08759f47bfc7a7
 SHA512 
5849e81aa037b9ba7f4e67057a0cde50301d183fc244673c7f11e34997b11d21c33306c07ab820bf60d454afa8ad5b159c3442427c8cb5403896f29ed179b10d

diff --git a/dev-java/ant-junitlauncher/ant-junitlauncher-1.10.7.ebuild 
b/dev-java/ant-junitlauncher/ant-junitlauncher-1.10.7.ebuild
new file mode 100644
index 000..2738d9499c3
--- /dev/null
+++ b/dev-java/ant-junitlauncher/ant-junitlauncher-1.10.7.ebuild
@@ -0,0 +1,12 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+ANT_TASK_JDKVER=1.8
+ANT_TASK_JREVER=1.8
+ANT_TASK_DEPNAME=""
+
+inherit ant-tasks
+
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"



  1   2   3   >