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

2020-08-02 Thread Andreas Sturmlechner
commit: ab525e44f7de257497bb96ea9459327f62b2d841
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Mon Aug  3 05:45:30 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Mon Aug  3 05:45:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab525e44

profiles: Add >=dev-qt/qt-creator-4.12[clang] to p.use.stable.mask

Bug: https://bugs.gentoo.org/720240
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 profiles/base/package.use.stable.mask | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/profiles/base/package.use.stable.mask 
b/profiles/base/package.use.stable.mask
index 7ce449be71c..c828aeb08cb 100644
--- a/profiles/base/package.use.stable.mask
+++ b/profiles/base/package.use.stable.mask
@@ -4,9 +4,10 @@
 # This file requires eapi 5 or later. New entries go on top.
 # Please use the same syntax as in package.use.mask
 
-# Andreas Sturmlechner  (2020-07-01)
+# Andreas Sturmlechner  (2020-08-03)
 # dev-qt/qtquicktimeline-5.15.0 not yet stable, bug 711120
-dev-qt/qt-creator qmldesigner
+# dev-libs/libclangformat-ide not stable and unclear maintainer, bug 711120
+>=dev-qt/qt-creator-4.12 clang qmldesigner
 
 # Andreas Sturmlechner  (2020-06-06)
 # dev-python/wxpython:4.0 w/ py3 is not stable, bug #714566



[gentoo-commits] repo/gentoo:master commit in: app-pda/pilot-link/, app-pda/pilot-link/files/

2020-08-02 Thread Robin H. Johnson
commit: fd1ce6c032d0628bf02c3a712c62398612ab6474
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Aug  3 05:26:30 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Aug  3 05:29:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd1ce6c0

app-pda/pilot-link: minor cleanup

- Drop python & java bindings
- handle -Werror=foo from sandbox testing
- reference new non-official upstream
- P.S. This still worked for me as of 2019; probably still works, but
  hardware limitations in testing.

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Closes: https://bugs.gentoo.org/show_bug.cgi?id=735238
Closes: https://bugs.gentoo.org/show_bug.cgi?id=714828
Signed-off-by: Robin H. Johnson  gentoo.org>

 .../files/pilot-link-0.12.5-Werror-args.patch  |  18 
 app-pda/pilot-link/pilot-link-0.12.5-r3.ebuild | 105 +
 2 files changed, 123 insertions(+)

diff --git a/app-pda/pilot-link/files/pilot-link-0.12.5-Werror-args.patch 
b/app-pda/pilot-link/files/pilot-link-0.12.5-Werror-args.patch
new file mode 100644
index 000..5e6b939d010
--- /dev/null
+++ b/app-pda/pilot-link/files/pilot-link-0.12.5-Werror-args.patch
@@ -0,0 +1,18 @@
+-Werror can have args now, but didn't when this code was originally written.
+
+Closes: https://bugs.gentoo.org/show_bug.cgi?id=714828
+Signed-off-by: Robin H. Johnson 
+
+--- pilot-link-0.12.5.orig/configure.ac2020-08-02 21:58:12.481559328 
-0700
 pilot-link-0.12.5/configure.ac 2020-08-02 22:02:49.641291824 -0700
+@@ -63,8 +63,8 @@
+ dnl Eat -Werror so configure will run properly, if the user provided it
+ enable_werror=no
+ save_CFLAGS="$CFLAGS"
+-CFLAGS=`echo $save_CFLAGS | sed -e s/-Werror//g`
+-CXXFLAGS=`echo $save_CXXFLAGS | sed -e s/-Werror//g`
++CFLAGS=`echo $save_CFLAGS | sed -r -e 's/-Werror(=[^[:space:]]+)?//g'`
++CXXFLAGS=`echo $save_CXXFLAGS | sed -r -e 's/-Werror(=[^[:space:]]+)?//g'`
+ if test "x$CFLAGS" != "x$save_CFLAGS"; then
+   dnl -Werror was set; treat it as implicit --enable-werror below
+   enable_werror="yes"

diff --git a/app-pda/pilot-link/pilot-link-0.12.5-r3.ebuild 
b/app-pda/pilot-link/pilot-link-0.12.5-r3.ebuild
new file mode 100644
index 000..f28d43f7d28
--- /dev/null
+++ b/app-pda/pilot-link/pilot-link-0.12.5-r3.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit autotools perl-module
+
+DESCRIPTION="Suite of tools for moving data between a Palm device and a 
desktop"
+# this is a new mirror; the distfile has the same content inside the tarball,
+# but the tarball itself doesn't match due to recompression and Git
+# indirection.
+HOMEPAGE="https://github.com/jichu4n/pilot-link;
+SRC_URI="mirror://gentoo/${P}.tar.bz2
+   https://dev.gentoo.org/~mgorny/dist/${P}-gentoo-patchset.tar.bz2;
+
+LICENSE="|| ( GPL-2 LGPL-2 )"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~x86 ~amd64-linux 
~x86-linux"
+IUSE="bluetooth debug perl png static-libs threads usb"
+
+COMMON_DEPEND="
+   dev-libs/popt
+   >=sys-libs/ncurses-5.7-r7:0=
+   >=sys-libs/readline-6:0=
+   virtual/libiconv
+   bluetooth? ( net-wireless/bluez )
+   perl? ( >=dev-lang/perl-5.12 )
+   png? ( media-libs/libpng:0= )
+   usb? ( virtual/libusb:0 )
+"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+RESTRICT="test" #672872
+
+src_prepare() {
+   default
+
+   eapply -p0 
"${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.3-java-install.patch
+   eapply -p0 
"${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.3-respect-javacflags.patch
+   eapply -p0 
"${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.2-werror_194921.patch
+   eapply -p1 "${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.2-threads.patch
+   eapply -p0 "${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.3-libpng14.patch
+   eapply -p1 "${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.3-png.patch
+   eapply -p0 
"${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.3-distutils.patch
+   eapply -p1 
"${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.3-libusb-compat-usb_open.patch
+   eapply -p1 "${WORKDIR}/${P}-gentoo-patchset"/${PN}-0.12.5-perl514.patch
+   eapply -p1 "${FILESDIR}"/${PN}-0.12.5-Werror-args.patch
+
+   sed -i -e 's:AM_CONFIG_HEADER:AC_CONFIG_HEADERS:' configure.ac || die 
#467600
+
+   AT_M4DIR="m4" eautoreconf
+
+}
+
+src_configure() {
+   # tcl/tk support is disabled as per upstream request.
+   # readline is not really optional, bug #626504
+   # Does not build with Java 8
+   # Does not build with Python 3, bug 735238
+   econf \
+   --includedir="${EPREFIX}"/usr/include/libpisock \
+   $(use_enable static-libs static) \
+   --enable-conduits \
+   --with-readline \
+   $(use_enable threads) \
+   $(use_enable usb libusb) \
+   $(use_enable 

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

2020-08-02 Thread Robin H. Johnson
commit: e9ba991650b12b7938bef71cb6eadb017380fb2c
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Aug  3 05:30:07 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Aug  3 05:30:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9ba9916

profiles/package.mask: latest biosdisk does not use python at all

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index de7cb784141..efd765725e4 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -49,11 +49,6 @@ net-wireless/cpyrit-cuda
 net-wireless/cpyrit-opencl
 net-wireless/pyrit
 
-# Aaron Bauman  (2020-08-02)
-# Py2 only. m-n. Bug #735466
-# Removal in 30 days
-sys-apps/biosdisk
-
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735486
 # Removal in 30 days



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

2020-08-02 Thread Robin H. Johnson
commit: a2039bcd70b868e394094f411794fa2f7a3f46d7
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Mon Aug  3 05:30:32 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Mon Aug  3 05:30:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2039bcd

sys-apps/biosdisk: cleanup old version

The latest version doesn't need python at all, the Py2 cleanup hits
false positives like this.

Closes: https://bugs.gentoo.org/show_bug.cgi?id=735466
Signed-off-by: Robin H. Johnson  gentoo.org>

 sys-apps/biosdisk/biosdisk-0_p20171116.ebuild | 43 ---
 1 file changed, 43 deletions(-)

diff --git a/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild 
b/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild
deleted file mode 100644
index 87367d63b19..000
--- a/sys-apps/biosdisk/biosdisk-0_p20171116.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="6"
-
-PYTHON_COMPAT=( python2_7 )
-
-inherit python-single-r1
-
-EGIT_COMMIT="f534dd22a795dca9c42f44b52f206bf02eadb682"
-DESCRIPTION="A script that creates floppy boot images to flash Dell BIOSes"
-HOMEPAGE="https://github.com/dell/biosdisk;
-SRC_URI="https://github.com/dell/${PN}/archive/${EGIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
-   >=app-text/dos2unix-5.0
-   sys-boot/syslinux
-   ${PYTHON_DEPS}
-"
-
-S=${WORKDIR}/${PN}-${EGIT_COMMIT}
-
-src_install() {
-   python_fix_shebang blconf
-
-   dosbin biosdisk blconf
-
-   dodoc AUTHORS README README.dosdisk TODO VERSION
-   gunzip biosdisk.8.gz || die
-   doman biosdisk.8
-
-   insinto /usr/share/biosdisk
-   doins dosdisk.img dosdisk{288,8192,20480}.img 
biosdisk-mkrpm-{fedora,redhat,generic}-template.spec
-
-   insinto /etc
-   doins biosdisk.conf
-}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-http-pipeline/

2020-08-02 Thread Hans de Graaff
commit: 00ef60dfe29ec36295c875d958b0616843663528
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:18:44 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:26:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00ef60df

dev-ruby/net-http-pipeline: add ruby27

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild 
b/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild
index 0f4ded07037..62b07e328b0 100644
--- a/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild
+++ b/dev-ruby/net-http-pipeline/net-http-pipeline-1.0.1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 
 inherit ruby-fakegem



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-http-digest_auth/

2020-08-02 Thread Hans de Graaff
commit: 13d9a43fa09d8ff1c3f23615b8da83acffdbee09
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:21:03 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:26:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13d9a43f

dev-ruby/net-http-digest_auth: add ruby27

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild 
b/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild
index 2337b056f83..b4d408878fe 100644
--- a/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild
+++ b/dev-ruby/net-http-digest_auth/net-http-digest_auth-1.4.1.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_RECIPE_DOC="rdoc"
 RUBY_FAKEGEM_DOCDIR="doc"



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

2020-08-02 Thread Hans de Graaff
commit: 2edb167c98a5c16bc318e719ed844af4f91a812d
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:16:18 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:26:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2edb167c

dev-ruby/network_interface: add ruby27

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/network_interface/network_interface-0.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/network_interface/network_interface-0.0.2.ebuild 
b/dev-ruby/network_interface/network_interface-0.0.2.ebuild
index cdf61eb691f..153cf1a9e37 100644
--- a/dev-ruby/network_interface/network_interface-0.0.2.ebuild
+++ b/dev-ruby/network_interface/network_interface-0.0.2.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
 
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_TASK_DOC=""
 



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

2020-08-02 Thread Hans de Graaff
commit: 7d0456710e7f2a2129fe656694065f5e96194927
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:24:25 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:26:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d045671

dev-ruby/nagios_analyzer: add ruby27

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild 
b/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild
index 28d52b0cceb..ef166bee292 100644
--- a/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild
+++ b/dev-ruby/nagios_analyzer/nagios_analyzer-0.0.5-r1.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec"
 



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

2020-08-02 Thread Hans de Graaff
commit: 3b214d21cc3adf84f11f2725cc037703120eb279
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:14:07 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:26:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b214d21

dev-ruby/niceogiri: add 1.1.2

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/niceogiri/niceogiri-1.1.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/niceogiri/niceogiri-1.1.2.ebuild 
b/dev-ruby/niceogiri/niceogiri-1.1.2.ebuild
index 2397c35a09d..3fa1c20d0cb 100644
--- a/dev-ruby/niceogiri/niceogiri-1.1.2.ebuild
+++ b/dev-ruby/niceogiri/niceogiri-1.1.2.ebuild
@@ -1,8 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_EXTRADOC="README.md"
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"



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

2020-08-02 Thread Hans de Graaff
commit: 362e607d366ef31dc6a60318bbf21ae13e2f34c9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:22:57 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:26:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=362e607d

dev-ruby/nenv: add ruby27

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/nenv/nenv-0.3.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/nenv/nenv-0.3.0.ebuild b/dev-ruby/nenv/nenv-0.3.0.ebuild
index 702d9660751..a077706046a 100644
--- a/dev-ruby/nenv/nenv-0.3.0.ebuild
+++ b/dev-ruby/nenv/nenv-0.3.0.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=5
 
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
 
 RUBY_FAKEGEM_RECIPE_TEST="rspec3"
 RUBY_FAKEGEM_TASK_DOC=""



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

2020-08-02 Thread Hans de Graaff
commit: 16efed132ed163572283d22b03989910451631f5
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:12:41 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:26:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16efed13

dev-ruby/nokogumbo: cleanup

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/nokogumbo/Manifest   |  1 -
 dev-ruby/nokogumbo/nokogumbo-2.0.1.ebuild | 45 ---
 2 files changed, 46 deletions(-)

diff --git a/dev-ruby/nokogumbo/Manifest b/dev-ruby/nokogumbo/Manifest
index 10561b98180..294cfe003c4 100644
--- a/dev-ruby/nokogumbo/Manifest
+++ b/dev-ruby/nokogumbo/Manifest
@@ -1,3 +1,2 @@
 DIST nokogumbo-1.5.0.gem 228352 BLAKE2B 
66740dfb9bd9edea13c6bc872e1cadf855116ee7247c7691210d3eaa81ad4c7b972fe8edd02a6f7ade6c172c870923c9af3fc24b10c5594cd0255b2fa0c2cd82
 SHA512 
a89ec7ae4d42cce5431070e790f0f10734655654f6f680c0b949fab7527b6a811953f1c3c13d633427b40980f9e9bd434a9afe1a9d1f1e504af05246d96be77e
-DIST nokogumbo-2.0.1.tar.gz 295763 BLAKE2B 
e8d864cbe637dd239c96e5e67a58d08fbd561f981d0daf68e285591e8b9a044b4512766744e6f625f6bdd973176079f328f0f7246584359c3e9caf677bb2f37f
 SHA512 
688cf6c4abdc3987c14ef6215eb5d1c88cca49af614b7ca143361465ad78ac3373bc6a876247d6d989c21a43ec55d21f680c1a8ccf1326cf33778424b556cb4e
 DIST nokogumbo-2.0.2.tar.gz 295558 BLAKE2B 
ce52794eb3359ad34234d8f5faad4aff7c197326f6449a09a2264cb1a3d920886377f805e055980224644223d31a6621300c583a04f48ce8a8abe275b2614470
 SHA512 
fd115e072d2763ff63c46dc6f6117bb841b2c2ac28df0180d44a581a2a46f0b7b90ec17ae1b629e3e7c2f8a2cade53031cc118c8a946bbfb7e9e8600efefd67c

diff --git a/dev-ruby/nokogumbo/nokogumbo-2.0.1.ebuild 
b/dev-ruby/nokogumbo/nokogumbo-2.0.1.ebuild
deleted file mode 100644
index 53a7309de9d..000
--- a/dev-ruby/nokogumbo/nokogumbo-2.0.1.ebuild
+++ /dev/null
@@ -1,45 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-USE_RUBY="ruby23 ruby24 ruby25 ruby26"
-
-RUBY_FAKEGEM_RECIPE_TEST="none"
-
-RUBY_FAKEGEM_RECIPE_DOC="rdoc"
-RUBY_FAKEGEM_EXTRADOC="README.md"
-
-inherit ruby-fakegem
-
-DESCRIPTION="A Nokogiri interface to the Gumbo HTML5 parser"
-HOMEPAGE="https://github.com/rubys/nokogumbo;
-SRC_URI="https://github.com/rubys/nokogumbo/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="2"
-KEYWORDS="~amd64 ~x86 ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE=""
-
-# Contains a bundled and patched version of dev-libs/gumbo.
-
-ruby_add_rdepend ">=dev-ruby/nokogiri-1.8.4"
-
-all_ruby_prepare() {
-   # Define rakehome in scope
-   sed -i -e "1irakehome=File.expand_path('../../')" 
ext/nokogumbo/extconf.rb || die
-}
-
-each_ruby_configure() {
-   ${RUBY} -Cext/nokogumbo extconf.rb || die
-   sed -i -e 's:-Wl,--no-undefined::' ext/nokogumbo/Makefile || die
-}
-
-each_ruby_compile() {
-   emake -Cext/nokogumbo V=1
-   cp ext/nokogumbo/nokogumbo.so lib/nokogumbo/ || die
-}
-
-each_ruby_test() {
-   ${RUBY} -Ilib:. -e 'Dir["test/test_*.rb"].each{|f| require f}' || die
-}



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

2020-08-02 Thread Sam James
commit: 36f8689f7903548f5d89827a6e7bdf70a9882cee
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 05:11:12 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 05:12:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36f8689f

media-sound/mp3gain: bump to 1.6.2 (+ CVE patch)

Bump to 1.6.2, which includes an upstreamed patch
for a previous CVE, and include openSUSE's patch
for CVE-2019-18359 (and others).

Bug: https://bugs.gentoo.org/717940
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 media-sound/mp3gain/Manifest   |   1 +
 .../files/mp3gain-1.6.2-CVE-2019-18359-plus.patch  | 183 +
 media-sound/mp3gain/mp3gain-1.6.2.ebuild   |  33 
 3 files changed, 217 insertions(+)

diff --git a/media-sound/mp3gain/Manifest b/media-sound/mp3gain/Manifest
index 796440a5be0..f6771ab442c 100644
--- a/media-sound/mp3gain/Manifest
+++ b/media-sound/mp3gain/Manifest
@@ -1 +1,2 @@
 DIST mp3gain-1_6_1-src.zip 68932 BLAKE2B 
8c1ed35123f1613e189ec7bd74ee9f6176404a1b79c660f8f1a6df461cdfd3c6bb505daa09b8cc4756e1755d0923fe473a45c3ae171fcf35df22daaa08a7717a
 SHA512 
6d26a7716a1901c80caff9d7fb03a454a452c06c6a57a7a921d5979727e112ba139690d8a287dde7a6e5a09b022d3c6f57193b4756a9c25caa177cef65f9e375
+DIST mp3gain-1_6_2-src.zip 71246 BLAKE2B 
5172c2103bb2267bf819f36180e9cd7a9d57df6f7ddc29900e9063f97c4513972053bb0c3f1f69f7ddd12ec0cf4251e93e1b6920389a8246bfdd5650176a90d2
 SHA512 
ec9de6c755120480ccb72b34a0042aea7546ef923090ab04e420d5b189523b4504e29952a3d695d3c42c74348f5c3c9123ff090bcc671e43375711e085d67480

diff --git a/media-sound/mp3gain/files/mp3gain-1.6.2-CVE-2019-18359-plus.patch 
b/media-sound/mp3gain/files/mp3gain-1.6.2-CVE-2019-18359-plus.patch
new file mode 100644
index 000..5f05fc1bf27
--- /dev/null
+++ b/media-sound/mp3gain/files/mp3gain-1.6.2-CVE-2019-18359-plus.patch
@@ -0,0 +1,183 @@
+openSUSE patch: 
https://build.opensuse.org/package/view_file/openSUSE:Factory/mp3gain/0001-fix-security-bugs.patch?expand=1
+Gentoo bug: https://bugs.gentoo.org/717940
+
+From: Jason Craig 
+Date: Mon, 30 Mar 2020 12:43:20 -0600
+Subject: [PATCH] Fix various security issues including CVE-2019-18359
+References: boo#1154971
+Upstream: dead
+
+Multiple POCs at https://github.com/zjuchenyuan/fuzzpoc were fixed.
+--- a/apetag.c
 b/apetag.c
+@@ -16,6 +16,13 @@
+ #define _stricmp strcasecmp
+ #endif /* WIN32 */
+ 
++// Min and max values for gain and peak in order to fit in allotted space in 
the APE tags. For gain that is nine chars,
++// including a + or -. For peak that is eight chars, including a - but no +. 
Both will always have six precision digits.
++#define MIN_GAIN -9.99
++#define MAX_GAIN 9.99
++#define MIN_PEAK -9.9
++#define MAX_PEAK 9.99
++
+ int ReadMP3ID3v1Tag(FILE *fi, unsigned char **tagbuff, long *tag_offset) {
+ char tmp[128];
+ 
+@@ -102,9 +109,9 @@ static int ReadMP3Lyrics3v2Tag ( FILE *fp, unsigned char 
**tagbuff, unsigned lon
+   if ( fseek (fp, *tag_offset - 128 - (long)sizeof (T) - len, SEEK_SET) ) 
return 0;
+ if ( fread  (tmp, 1, 11, fp) != 11 ) return 0;
+ if ( memcmp (tmp, "LYRICSBEGIN", 11) ) return 0;
+-
++
+ taglen = 128 + Lyrics3GetNumber6(T.Length) + sizeof(T);
+-
++
+ *tag_offset -= taglen;
+ if (*tagbuff != NULL) {
+ free(*tagbuff);
+@@ -142,7 +149,7 @@ enum {
+ 
+ unsigned long strlen_max(const char * ptr, unsigned long max) {
+   unsigned long n = 0;
+-  while (ptr[n] && n < max) n++;
++  while (n < max && ptr[n]) n++;
+   return n;
+ }
+ 
+@@ -234,6 +241,14 @@ int ReadMP3APETag ( FILE *fp,  struct MP3GainTagInfo 
*info, struct APETagStruct
+ info->albumPeak = atof(value);
+ } else if (!_stricmp(name,"MP3GAIN_UNDO")) {
+   /* value should be something like "+003,+003,W" 
*/
++  /* If the file didn't specify enough bytes for 
the value (at least 11...see above), skip the tag. */
++  if(vsize < 11)
++  {
++  free(value);
++  free(name);
++  p += isize + 1 + vsize;
++  continue;
++  }
+ info->haveUndo = !0;
+ vp = value;
+   memcpy(tmpString,vp,4);
+@@ -251,6 +266,14 @@ int ReadMP3APETag ( FILE *fp,  struct MP3GainTagInfo 
*info, struct APETagStruct
+ }
+ } else if (!_stricmp(name,"MP3GAIN_MINMAX")) {
+   /* value should be something like "001,153" */
++  /* If the file didn't specify enough bytes for 
the value (at least 7...see above), skip the tag. */
++  if(vsize < 7)
++  

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

2020-08-02 Thread Hans de Graaff
commit: ed6ea70a6bdfd3ca40d524d21d8bf1355afdba43
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:06:49 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:08:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed6ea70a

dev-ruby/tty-prompt: add 0.22.0

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/tty-prompt/Manifest |  1 +
 dev-ruby/tty-prompt/tty-prompt-0.22.0.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-ruby/tty-prompt/Manifest b/dev-ruby/tty-prompt/Manifest
index b859aaf0123..36aa20eeb36 100644
--- a/dev-ruby/tty-prompt/Manifest
+++ b/dev-ruby/tty-prompt/Manifest
@@ -1,3 +1,4 @@
 DIST tty-prompt-0.19.0.gem 71680 BLAKE2B 
67da3c428fa5ab602fa4735d06115ba5bab53f06d43109fa06810e538cafae5486767f41927fc77616e608278a0f955659734704c9536b40e87682e6f0e5718b
 SHA512 
958263a7b3b7cfbac2877d81878b324fe53bc258be36749597f959085643e50247651bf48fceff4bf1098b68cf47dae68f30173e45585bfdbf7126959387427a
 DIST tty-prompt-0.20.0.gem 72704 BLAKE2B 
c3a24544459bfd70aa1ada029211d8873665794ac0dfa19bd02c86e3104c937aefc50009763ccacc3b3eb7c91b220125279c4388a94cd4dab5bc2cb77bad701e
 SHA512 
d3e018465779d673bb80d15f2706edd762236dbee37bc9bd090138fb5dd918c63c4cda3418054391b9d15032fde399911e50c6fbed9d8063afc5896b31fb3fb1
 DIST tty-prompt-0.21.0.tar.gz 72679 BLAKE2B 
1693a2ad49d308975c0f03d9bbf01a192bc6e5c66eb04108a08a7d338c79d20ac80e8b45b0833f57b6a4f5191880160a8df0a9b9751c3af1f3d77b4952c99393
 SHA512 
e2963951523f9077a6aac20d12b88d261902c1f6ab1ab01bafd9eef94df76e37fd1448d5b5f81a3a8d2335eade4618896a64c77e80e369b3a660bc8d361cb53d
+DIST tty-prompt-0.22.0.tar.gz 551572 BLAKE2B 
b18e3acba984c6848161deff659112ee2342d4021c0fa8df1aed1f19d4530382b4c2d4e215b42820be9939a8a56c163217ac59809b3e9b1e4d68068647eb
 SHA512 
2bc87d41c9359da1bb04a53c2f3535e4845e1a55594624235434b4e6d5f870029ae72436487fa6d2a795101d1fc8263d63dd89cc5d3e59b0756b80448c23e514

diff --git a/dev-ruby/tty-prompt/tty-prompt-0.22.0.ebuild 
b/dev-ruby/tty-prompt/tty-prompt-0.22.0.ebuild
new file mode 100644
index 000..86c2dc4efca
--- /dev/null
+++ b/dev-ruby/tty-prompt/tty-prompt-0.22.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_GEMSPEC="tty-prompt.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="A beautiful and powerful interactive command line prompt"
+HOMEPAGE="https://github.com/piotrmurach/tty-prompt;
+SRC_URI="https://github.com/piotrmurach/tty-prompt/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "
+   >=dev-ruby/pastel-0.8:0
+   >=dev-ruby/tty-reader-0.8:0
+"
+
+all_ruby_prepare() {
+   echo '-rspec_helper' > .rspec || die
+   sed -i -e 's:require_relative ":require "./:' ${RUBY_FAKEGEM_GEMSPEC} 
|| die
+}



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

2020-08-02 Thread Hans de Graaff
commit: 9c068cc12b6b7942241a882a5dac582cca1e92f1
Author: Hans de Graaff  gentoo  org>
AuthorDate: Mon Aug  3 05:08:34 2020 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Mon Aug  3 05:08:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c068cc1

dev-ruby/tty-screen: add 0.8.1

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/tty-screen/Manifest|  1 +
 dev-ruby/tty-screen/tty-screen-0.8.1.ebuild | 30 +
 2 files changed, 31 insertions(+)

diff --git a/dev-ruby/tty-screen/Manifest b/dev-ruby/tty-screen/Manifest
index 64add772221..712a4b74a1d 100644
--- a/dev-ruby/tty-screen/Manifest
+++ b/dev-ruby/tty-screen/Manifest
@@ -1,3 +1,4 @@
 DIST tty-screen-0.7.0.gem 12288 BLAKE2B 
e61b5462d6c2a8dae96d6e89d8025f2d2ea8bba8328318e067d612832b479ccd34a457a74432ccbe4cf27f26e439f44d67890a492dfa6f8836d2b86512ce9198
 SHA512 
1851c0ea90af65cd1fa9a4a2b4c93d3fa2badf81507d4bb149183aa49578208ddef0065f3047cef4ffa23d3f34840af919ac4f6a2805f7ce0f01096f27101694
 DIST tty-screen-0.7.1.tar.gz 11377 BLAKE2B 
485b5610bc81524cfe525f8a837e99d13788da499dd8fa0f7c3be3f580ada63861f04652031e84817ef6ee49ce099c5fa97104b6634fc306d9ee0bbed0828ac3
 SHA512 
1ef5ce12cdd6337c47f09e5b6ae116985a80efe9f493d52c404496319f1377d4308cd829343d84f5c653b70327c033955232ca62fc8a134503a87a33a264130a
 DIST tty-screen-0.8.0.tar.gz 12956 BLAKE2B 
647a6d06eff154ab99e59a92287a4f6c041ae9e4738869de857cf9508f4a3274c4742e80b3dc3722b17a0e69e4deec1f4dd767b3281fd6c49663ad66232e6be5
 SHA512 
5a612cdd9169c029c5d521a8a33f52c0c5d21ee5e6a404577c04b150822c616c0624be96640ce8084dd596b02cb7cceb67ab2d1385321fa7fbe9cd1da4fb7022
+DIST tty-screen-0.8.1.tar.gz 13019 BLAKE2B 
9c9ccb49ae323ebc67c5bca918303586fb749813539aed32a892f3135aa392f6c77b078bab2c7bd116d9f152ee2745d72aae38a91cf4292d1f360085d88060ba
 SHA512 
b0a01c49bb0c56f23c8b384a2d4f4b5c7168863a35c3ab7160d0f34c7d63a2b10b3b9f0f54c6d56e2424a8b16e6ba74268ac81af631976876fb37eb9c347c393

diff --git a/dev-ruby/tty-screen/tty-screen-0.8.1.ebuild 
b/dev-ruby/tty-screen/tty-screen-0.8.1.ebuild
new file mode 100644
index 000..8ed94995bac
--- /dev/null
+++ b/dev-ruby/tty-screen/tty-screen-0.8.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+USE_RUBY="ruby25 ruby26 ruby27"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_BINWRAP=""
+
+RUBY_FAKEGEM_GEMSPEC="tty-screen.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Terminal screen size detection which works on Linux, OS X and 
Windows/Cygwin"
+HOMEPAGE="https://github.com/piotrmurach/tty-screen;
+SRC_URI="https://github.com/piotrmurach/tty-screen/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+all_ruby_prepare() {
+   echo '-rspec_helper' > .rspec || die
+   sed -i -e 's:require_relative ":require "./:' ${RUBY_FAKEGEM_GEMSPEC} 
|| die
+   rm -f spec/perf/size_spec.rb || die
+}



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

2020-08-02 Thread Jeroen Roovers
commit: 83424b9c6ab73fb550383c2820f3a2128ecc015d
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Aug  3 05:06:07 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Aug  3 05:06:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83424b9c

net-analyzer/cacti-spine: Version 1.2.14

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

 net-analyzer/cacti-spine/Manifest  |  1 +
 net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild | 51 ++
 2 files changed, 52 insertions(+)

diff --git a/net-analyzer/cacti-spine/Manifest 
b/net-analyzer/cacti-spine/Manifest
index 98369352a79..ce570009bfd 100644
--- a/net-analyzer/cacti-spine/Manifest
+++ b/net-analyzer/cacti-spine/Manifest
@@ -1 +1,2 @@
 DIST cacti-spine-1.2.13.tar.gz 107543 BLAKE2B 
e0de75688334d27604a76c00a09ac53587a1e57f45df925e30a1a88a5e0449df803dfad901328c65b55484bc9022bf81d53880f17d4bd4efd9214315f01f7e92
 SHA512 
86d44195847c7b3acb1f6aed2bd6a57f562645b20724560d6b4bf7962707be4eb2f5326731453937b64420b5d51b714aecbd8dbea58d95f29ef4341515df8b00
+DIST cacti-spine-1.2.14.tar.gz 107577 BLAKE2B 
5865d93ffefeeafac1d2245000467deac79f8008e81b66de310bf08e7aa31f17299a82fc107ad49c3741bc2f183bdbc9554f814bf9e3e4b1dc85e267e4f16112
 SHA512 
44dec1077b419dfc987a1d423f2df597bf2026ca7f39aaafabfc7de9e6fdc616f505b86ace43bb2ad628f220cf8d8cf136a04f00c4fd23ab73da75068f804999

diff --git a/net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild 
b/net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild
new file mode 100644
index 000..a5c1da23c06
--- /dev/null
+++ b/net-analyzer/cacti-spine/cacti-spine-1.2.14.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit autotools
+
+MY_P=${PN}-${PV/_p/-}
+
+DESCRIPTION="Spine is a fast poller for Cacti (formerly known as Cactid)"
+HOMEPAGE="https://cacti.net/spine_info.php;
+SRC_URI="https://www.cacti.net/downloads/spine/${MY_P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="libressl"
+
+CDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   net-analyzer/net-snmp:=
+   dev-db/mysql-connector-c:0=
+"
+DEPEND="
+   ${CDEPEND}
+   sys-apps/help2man
+"
+RDEPEND="
+   ${CDEPEND}
+   >net-analyzer/cacti-0.8.8
+"
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.8.8g-net-snmp.patch
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_install() {
+   dosbin spine
+
+   insinto /etc/
+   insopts -m0640 -o root
+   newins spine.conf{.dist,}
+
+   doman spine.1
+   dodoc CHANGELOG
+}



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

2020-08-02 Thread Jeroen Roovers
commit: 26d4623a274fe2245fca548a50bc0793bfcd03e5
Author: Jeroen Roovers  gentoo  org>
AuthorDate: Mon Aug  3 05:05:06 2020 +
Commit: Jeroen Roovers  gentoo  org>
CommitDate: Mon Aug  3 05:06:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26d4623a

net-analyzer/cacti: Version 1.2.14

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

 net-analyzer/cacti/Manifest|  1 +
 net-analyzer/cacti/cacti-1.2.14.ebuild | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/net-analyzer/cacti/Manifest b/net-analyzer/cacti/Manifest
index ed2962eeb58..e71b9c05535 100644
--- a/net-analyzer/cacti/Manifest
+++ b/net-analyzer/cacti/Manifest
@@ -1 +1,2 @@
 DIST cacti-1.2.13.tar.gz 25182816 BLAKE2B 
934deba81a0ac66d4f6a6efcb254204f3d26b40ee56b3b0b926334cefc99a8dcda688250218b796446e6dc9ad3b0efdbe4a0e408873921ff38977485c3fcf9af
 SHA512 
e111c90b77a43bb3ea7cd5cc90cd95a09be95413443db474c04e30d5b00ff96a69e8cb2792a3995462f4623538fc33b89029ff13c25181beff015c47e506d4b9
+DIST cacti-1.2.14.tar.gz 25182521 BLAKE2B 
555c30ebd06ac71df608a1564892ecd176cf46fa079fd3615dc59fd984bc8bedd4512d971dc3c2731848107da728724ef459d84f0308bef8b0b6ab943b8bc3cf
 SHA512 
734d8e059ea47630072269d92ad79e773268c5dd1cd9c565d23c41b2a74c8892bdc5190f7de6bb9ed281a67ade9c8ef6d723a9d4f486a4ba9aca99182d6ad056

diff --git a/net-analyzer/cacti/cacti-1.2.14.ebuild 
b/net-analyzer/cacti/cacti-1.2.14.ebuild
new file mode 100644
index 000..66775efc3b4
--- /dev/null
+++ b/net-analyzer/cacti/cacti-1.2.14.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils webapp
+
+# Support for _p* in version.
+MY_P=${P/_p*/}
+
+DESCRIPTION="Cacti is a complete frontend to rrdtool"
+HOMEPAGE="https://www.cacti.net/;
+SRC_URI="https://www.cacti.net/downloads/${MY_P}.tar.gz;
+
+LICENSE="GPL-2"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+IUSE="snmp doc"
+
+need_httpd
+
+RDEPEND="
+   dev-lang/php[cli,mysql,pdo,session,sockets,xml]
+   dev-php/adodb
+   net-analyzer/rrdtool[graph]
+   virtual/cron
+   snmp? ( >=net-analyzer/net-snmp-5.2.0 )
+"
+
+src_compile() { :; }
+
+src_install() {
+   dodoc CHANGELOG
+   dodoc -r docs
+   mv docs .. || die
+
+   webapp_src_preinst
+
+   edos2unix `find -type f -name '*.php'`
+
+   dodir ${MY_HTDOCSDIR}
+   cp -r . "${D}"${MY_HTDOCSDIR}
+
+   webapp_serverowned ${MY_HTDOCSDIR}/rra
+   webapp_serverowned ${MY_HTDOCSDIR}/log
+   webapp_configfile ${MY_HTDOCSDIR}/include/config.php
+   webapp_postinst_txt en "${FILESDIR}"/postinstall-en.txt
+
+   webapp_src_install
+}



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

2020-08-02 Thread Miroslav Šulc
commit: b8a392e21615f0a1b366c6f062c1ab44743de8dc
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Aug  3 04:58:14 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Aug  3 04:58:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8a392e2

media-libs/lilv: revbump to 0.24.6-r2 to propagate removed patch

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

 media-libs/lilv/{lilv-0.24.6-r1.ebuild => lilv-0.24.6-r2.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/media-libs/lilv/lilv-0.24.6-r1.ebuild 
b/media-libs/lilv/lilv-0.24.6-r2.ebuild
similarity index 100%
rename from media-libs/lilv/lilv-0.24.6-r1.ebuild
rename to media-libs/lilv/lilv-0.24.6-r2.ebuild



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

2020-08-02 Thread Miroslav Šulc
commit: 0c90b828ce1b43eb173e89427ad01d011548fd54
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Aug  3 05:00:11 2020 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Aug  3 05:00:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c90b828

media-sound/audacity: fixed lilv dep in 2.4.2-r1

Closes: https://bugs.gentoo.org/735256
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/audacity/audacity-2.4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/audacity/audacity-2.4.2-r1.ebuild 
b/media-sound/audacity/audacity-2.4.2-r1.ebuild
index 3cb2f876023..5c79d8c9882 100644
--- a/media-sound/audacity/audacity-2.4.2-r1.ebuild
+++ b/media-sound/audacity/audacity-2.4.2-r1.ebuild
@@ -38,7 +38,7 @@ RDEPEND="dev-libs/expat
lv2? (
dev-libs/serd
dev-libs/sord
-   media-libs/lilv
+   >=media-libs/lilv-0.24.6-r2
media-libs/lv2
media-libs/sratom
media-libs/suil



[gentoo-commits] repo/gentoo:master commit in: net-wireless/kismetmobiledashboard/

2020-08-02 Thread Rick Farina
commit: d0260f0883a50c6e58225981e90dc1af7f77c94f
Author: Rick Farina  gentoo  org>
AuthorDate: Mon Aug  3 03:53:08 2020 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Aug  3 03:53:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0260f08

net-wireless/kismetmobiledashboard: python_setup

hopefully this one works right, they all work right on my system, but
fail on others, and I really don't understand why

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Rick Farina  gentoo.org>

 .../kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild  | 1 +
 net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git 
a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild 
b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild
index 796152ce350..15febcdd7cf 100644
--- 
a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild
+++ 
b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild
@@ -31,5 +31,6 @@ src_compile() {
 }
 
 src_install() {
+   python_setup
DESTDIR="${ED}" KIS_SRC_DIR="/usr/share/kismet" emake install
 }

diff --git 
a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild 
b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild
index 796152ce350..15febcdd7cf 100644
--- a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild
+++ b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild
@@ -31,5 +31,6 @@ src_compile() {
 }
 
 src_install() {
+   python_setup
DESTDIR="${ED}" KIS_SRC_DIR="/usr/share/kismet" emake install
 }



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

2020-08-02 Thread Sam James
commit: a6e7f8d93e47dfa73617a5bed5612ab1b8f40c45
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:09:57 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:09:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6e7f8d9

dev-python/ipython_genutils: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/ipython_genutils/ipython_genutils-0.2.0-r1.ebuild 
b/dev-python/ipython_genutils/ipython_genutils-0.2.0-r1.ebuild
index 782651a251c..6a14099f89e 100644
--- a/dev-python/ipython_genutils/ipython_genutils-0.2.0-r1.ebuild
+++ b/dev-python/ipython_genutils/ipython_genutils-0.2.0-r1.ebuild
@@ -13,6 +13,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86"
 
 distutils_enable_tests nose



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

2020-08-02 Thread Sam James
commit: 3e07ec344e6bc84f45769d290a39021850ba05d7
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:08:02 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:08:02 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e07ec34

dev-python/backcall: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/backcall/backcall-0.2.0.ebuild 
b/dev-python/backcall/backcall-0.2.0.ebuild
index 4cdb8b03978..f379287d83a 100644
--- a/dev-python/backcall/backcall-0.2.0.ebuild
+++ b/dev-python/backcall/backcall-0.2.0.ebuild
@@ -12,6 +12,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
 
 distutils_enable_tests pytest



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

2020-08-02 Thread Sam James
commit: fa76223e0dbf3cef16fc95d506ef36928f22d341
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:09:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:09:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa76223e

dev-python/qtconsole: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/qtconsole/qtconsole-4.7.4.ebuild 
b/dev-python/qtconsole/qtconsole-4.7.4.ebuild
index e8699311b50..bb804024a85 100644
--- a/dev-python/qtconsole/qtconsole-4.7.4.ebuild
+++ b/dev-python/qtconsole/qtconsole-4.7.4.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="
dev-python/ipykernel[${PYTHON_USEDEP}]



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

2020-08-02 Thread Sam James
commit: 2aaf9c6263f9e3e2d3a599d8353ac3fc334f8351
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:10:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:10:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2aaf9c62

dev-python/jupyter_client: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/jupyter_client/jupyter_client-6.1.5.ebuild 
b/dev-python/jupyter_client/jupyter_client-6.1.5.ebuild
index e964f7594bf..3dd01f244c2 100644
--- a/dev-python/jupyter_client/jupyter_client-6.1.5.ebuild
+++ b/dev-python/jupyter_client/jupyter_client-6.1.5.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE="test"
 
 RDEPEND="



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

2020-08-02 Thread Sam James
commit: c225ac8853cc16662adfb72e873f0afad244487d
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:07:17 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:07:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c225ac88

dev-python/ipython: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/ipython/ipython-7.16.1.ebuild 
b/dev-python/ipython/ipython-7.16.1.ebuild
index d7601926689..8a96fc541cb 100644
--- a/dev-python/ipython/ipython-7.16.1.ebuild
+++ b/dev-python/ipython/ipython-7.16.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc examples matplotlib notebook nbconvert qt5 +smp test"
 RESTRICT="!test? ( test )"
 



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

2020-08-02 Thread Sam James
commit: 2d2fb6e9b8e3008b4cb26b7d488933acb918ce52
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:07:38 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:07:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d2fb6e9

dev-python/ipykernel: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/ipykernel/ipykernel-5.3.0.ebuild 
b/dev-python/ipykernel/ipykernel-5.3.0.ebuild
index 7648a6a775f..80bd239e6f7 100644
--- a/dev-python/ipykernel/ipykernel-5.3.0.ebuild
+++ b/dev-python/ipykernel/ipykernel-5.3.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE="test"
 
 RDEPEND="



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

2020-08-02 Thread Sam James
commit: 9e8d4c255fe23545e672b43187cd0bd9695ad0b1
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:10:13 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:10:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e8d4c25

dev-python/jupyter_core: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild 
b/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild
index 3e507dadfc8..400c9ac6d2d 100644
--- a/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild
+++ b/dev-python/jupyter_core/jupyter_core-4.6.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="dev-python/traitlets[${PYTHON_USEDEP}]"
 BDEPEND="



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

2020-08-02 Thread Sam James
commit: 3cbdb031bd7cbad8e11dc552bbc3e0e0557722b5
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:04:57 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:04:57 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cbdb031

dev-python/pytest: arm64 keyworded (bug #734780)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pytest/pytest-6.0.1.ebuild 
b/dev-python/pytest/pytest-6.0.1.ebuild
index ac33d51ea1f..74a9ebf202e 100644
--- a/dev-python/pytest/pytest-6.0.1.ebuild
+++ b/dev-python/pytest/pytest-6.0.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-08-02 Thread Sam James
commit: ab3d356859520c1b34525b0ae59bdf6047e0663e
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:09:08 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:09:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab3d3568

dev-python/ipyparallel: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild 
b/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild
index 04d9ee5c365..d89e468faf1 100644
--- a/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild
+++ b/dev-python/ipyparallel/ipyparallel-6.3.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm64 x86 ~amd64-linux ~x86-linux"
 IUSE="doc test"
 RESTRICT="!test? ( test )"
 



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

2020-08-02 Thread Sam James
commit: 2ce52be176cbdb89cc219a808c01931ed1f67cca
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:08:49 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:08:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ce52be1

dev-python/traitlets: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/traitlets/traitlets-4.3.3.ebuild 
b/dev-python/traitlets/traitlets-4.3.3.ebuild
index 2f6b12c2d50..f6a0e4b730b 100644
--- a/dev-python/traitlets/traitlets-4.3.3.ebuild
+++ b/dev-python/traitlets/traitlets-4.3.3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 x86"
 
 RDEPEND="
dev-python/decorator[${PYTHON_USEDEP}]



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

2020-08-02 Thread Sam James
commit: c02b92b90e8e3b641ee9c6e33a7bfc77dcefab4d
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:05:13 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:05:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c02b92b9

dev-python/iniconfig: arm64 keyworded (bug #734780)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/iniconfig/iniconfig-1.0.0.ebuild 
b/dev-python/iniconfig/iniconfig-1.0.0.ebuild
index 72342e75fcd..a55eb3e82f9 100644
--- a/dev-python/iniconfig/iniconfig-1.0.0.ebuild
+++ b/dev-python/iniconfig/iniconfig-1.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~sparc ~x86"
 
 BDEPEND="dev-python/setuptools_scm[${PYTHON_USEDEP}]"
 



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

2020-08-02 Thread Sam James
commit: 4e473ab1ee05e0dab9d315f61b49cf2ea1f0cabf
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:11:10 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:11:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e473ab1

dev-python/pyzmq: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/pyzmq/pyzmq-19.0.0.ebuild 
b/dev-python/pyzmq/pyzmq-19.0.0.ebuild
index 4b60d5b65a7..d7ab0d554b0 100644
--- a/dev-python/pyzmq/pyzmq-19.0.0.ebuild
+++ b/dev-python/pyzmq/pyzmq-19.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos"
 IUSE="doc +draft test"
 RESTRICT="!test? ( test )"
 



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

2020-08-02 Thread Sam James
commit: 3f91aa3932d9738a31e337568ef2f6ab94b4247e
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:08:21 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:08:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f91aa39

dev-python/nbformat: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/nbformat/nbformat-5.0.7.ebuild 
b/dev-python/nbformat/nbformat-5.0.7.ebuild
index acd0b2fa97e..4b93f0fcdab 100644
--- a/dev-python/nbformat/nbformat-5.0.7.ebuild
+++ b/dev-python/nbformat/nbformat-5.0.7.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 
 RDEPEND="
>=dev-python/jsonschema-2.4.0[${PYTHON_USEDEP}]



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

2020-08-02 Thread Sam James
commit: 995ca569178c14b47aad8860ce54852be4eef17b
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:10:44 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:10:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=995ca569

dev-python/QtPy: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/QtPy/QtPy-1.9.0-r2.ebuild 
b/dev-python/QtPy/QtPy-1.9.0-r2.ebuild
index 8b053ca3c20..73b4b1e1e65 100644
--- a/dev-python/QtPy/QtPy-1.9.0-r2.ebuild
+++ b/dev-python/QtPy/QtPy-1.9.0-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE="designer gui opengl printsupport svg testlib webengine"
 
 RDEPEND="



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

2020-08-02 Thread Sam James
commit: b3a865a3abc11ac745af25a95ff341b0be0e00fd
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 03:11:27 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 03:11:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3a865a3

dev-python/nose_warnings_filters: arm64 stable (bug #732342)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r3.ebuild 
b/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r3.ebuild
index e54eb569025..a63e32099f5 100644
--- a/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r3.ebuild
+++ b/dev-python/nose_warnings_filters/nose_warnings_filters-0.1.5-r3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc x86"
+KEYWORDS="amd64 arm64 ~ppc x86"
 
 RDEPEND="dev-python/nose[${PYTHON_USEDEP}]"
 



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

2020-08-02 Thread Zac Medico
commit: 602d2cd487bb48788e9654a7b7fd5a3be34150d9
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Aug  3 02:53:42 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Aug  3 03:07:31 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=602d2cd4

lib/_emerge/resolver/slot_collision.py: fix redefined-builtin W0622

* This fixes the referenced warning by renaming the 'id' variable to
 'name' and the 'type' variable to 'atype'
* Additional cosmetic/style changes found along the way.

Signed-off-by: Aaron Bauman  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 lib/_emerge/resolver/slot_collision.py | 74 +-
 1 file changed, 37 insertions(+), 37 deletions(-)

diff --git a/lib/_emerge/resolver/slot_collision.py 
b/lib/_emerge/resolver/slot_collision.py
index cc16287de..2b8f59953 100644
--- a/lib/_emerge/resolver/slot_collision.py
+++ b/lib/_emerge/resolver/slot_collision.py
@@ -591,14 +591,14 @@ class slot_conflict_handler:
version_violated = False
slot_violated = False
use = []
-   for (type, sub_type), 
parents in collision_reasons.items():
+   for (ctype, sub_type), 
parents in collision_reasons.items():
for x in 
parents:
if 
parent == x[0] and atom == x[1]:
-   
if type == "version":
+   
if ctype == "version":

version_violated = True
-   
elif type == "slot":
+   
elif ctype == "slot":

slot_violated = True
-   
elif type == "use":
+   
elif ctype == "use":

use.append(sub_type)

break
 
@@ -934,64 +934,64 @@ class slot_conflict_handler:
msg += "}"
msg += "]\n"
writemsg(msg, noiselevel=-1)
-   
+
required_changes = {}
-   for id, pkg in enumerate(config):
+   for idx, pkg in enumerate(config):
if not pkg.installed:
-   #We can't change the USE of installed packages.
-   for flag in all_involved_flags[id]:
+   # We can't change the USE of installed packages.
+   for flag in all_involved_flags[idx]:
if not pkg.iuse.is_valid_flag(flag):
continue
-   state = all_involved_flags[id][flag]
+   state = all_involved_flags[idx][flag]

self._force_flag_for_package(required_changes, pkg, flag, state)
 
-   #Go through all (parent, atom) pairs for the current 
slot conflict.
-   for ppkg, atom in all_conflict_atoms_by_slotatom[id]:
+   # Go through all (parent, atom) pairs for the current 
slot conflict.
+   for ppkg, atom in all_conflict_atoms_by_slotatom[idx]:
if not atom.package:
continue
use = atom.unevaluated_atom.use
if not use:
-   #No need to force something for an atom 
without USE conditionals.
-   #These atoms are already satisfied.
+   # No need to force something for an 
atom without USE conditionals.
+   # These atoms are already satisfied.
continue
-   for flag in all_involved_flags[id]:
-   state = all_involved_flags[id][flag]
+   for flag in all_involved_flags[idx]:
+  

[gentoo-commits] repo/gentoo:master commit in: x11-misc/xfractint/

2020-08-02 Thread Sam James
commit: 50a53f971b87ad19251af33650eb295f326b4b23
Author: David Denoncin  gmail  com>
AuthorDate: Sun Jul 12 07:22:45 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 02:58:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50a53f97

x11-misc/xfractint: new proxy maintainer

Package-Manager: Portage-2.3.99, Repoman-2.3.22
Signed-off-by: David Denoncin  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xfractint/metadata.xml | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/x11-misc/xfractint/metadata.xml b/x11-misc/xfractint/metadata.xml
index 6f49eba8f49..bfbd225ab16 100644
--- a/x11-misc/xfractint/metadata.xml
+++ b/x11-misc/xfractint/metadata.xml
@@ -1,5 +1,12 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
+   ddenon...@gmail.com
+   David Denoncin
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   
 



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xfractint/, x11-misc/xfractint/files/

2020-08-02 Thread Sam James
commit: 805525bbecce584afed1ab992546ac9c1c446616
Author: David Denoncin  gmail  com>
AuthorDate: Sun Aug  2 14:25:57 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 02:58:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=805525bb

x11-misc/xfractint: vbump 20.04p16, bug fixes

Closes:https://bugs.gentoo.org/706522
Closes:https://bugs.gentoo.org/732432
Closes:https://bugs.gentoo.org/715712

Package-Manager: Portage-2.3.103, Repoman-2.3.23
Signed-off-by: David Denoncin  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16675
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xfractint/Manifest|  1 +
 .../files/xfractint-20.04p16-install-phase.patch   | 24 ++
 x11-misc/xfractint/xfractint-20.04_p16.ebuild  | 37 ++
 3 files changed, 62 insertions(+)

diff --git a/x11-misc/xfractint/Manifest b/x11-misc/xfractint/Manifest
index 89b57a273ed..c3ee4387259 100644
--- a/x11-misc/xfractint/Manifest
+++ b/x11-misc/xfractint/Manifest
@@ -1 +1,2 @@
 DIST xfractint-20.04p14.tar.gz 1336285 BLAKE2B 
946c34551acf131845f1ecf17d4fe82214535627e8ea68d704efcff4b93c525d82f004bde8ae1bac11df8c82caa3bcff4778b2f8dfed1bdb494ba036e62256c5
 SHA512 
7d13c719f4f4b0680455b9b7f86644928d8145606973d208e5bf0d26b4f7b04ddbf8d2080ea35c872b21e079f1a116f3ef94e9acb36a45d43c16403c473e2acd
+DIST xfractint-20.04p16.tar.gz 1356976 BLAKE2B 
2cb05021c76d9761bf7020a2b9a0fbf7d682a620d931b7841ce75780c1a3aabb6bbbd1b2e378fba3e96b2cfdaf845ff9cdafcf3219ee756fe7d128a19b342132
 SHA512 
6696daf21c2927d87f58f7d7136c5d51bd8c60d78e901d537f1ef38f27b70c42a590b05c663363c49a8cb30d7013a969813e7bbe4a97f49b9c286497b440bdf1

diff --git a/x11-misc/xfractint/files/xfractint-20.04p16-install-phase.patch 
b/x11-misc/xfractint/files/xfractint-20.04p16-install-phase.patch
new file mode 100644
index 000..0387b63b7e4
--- /dev/null
+++ b/x11-misc/xfractint/files/xfractint-20.04p16-install-phase.patch
@@ -0,0 +1,24 @@
+Prevents recompiling in install phase and sets default
+CC if not set
+Fix by David Denoncin
+
+--- a/Makefile 2020-08-01 23:19:09.0 -
 b/Makefile 2020-08-02 14:33:52.943061996 -
+@@ -150,7 +150,7 @@
+ # For Sun Solaris 2.x w/GNU gcc, use CC = gcc
+ #CC = gcc
+ #CC = /usr/bin/gcc
+-CC ?=
++CC ?= /usr/bin/gcc
+ 
+ # For HPUX, use LIBS = -L/usr/lib/X11R4 -lX11 -lm -lcurses -ltermcap
+ # For AIX or OSF/1, add -lbsd
+@@ -345,7 +345,7 @@
+   cd $(COMDIR) ; ${MAKE} clean
+   cd $(UDIR) ; ${MAKE} clean "AS=${AS}"
+ 
+-install: xfractint fractint.hlp
++install:
+ # $(STRIP) xfractint
+   $(INSTALL) -d $(BINDIR) $(MANDIR) $(SRCDIR)/$(PDIR) $(SRCDIR)/$(FDIR) \
+   $(SRCDIR)/$(IDIR) $(SRCDIR)/$(LDIR) $(SRCDIR)/$(MDIR) 
$(SRCDIR)/$(XDIR)

diff --git a/x11-misc/xfractint/xfractint-20.04_p16.ebuild 
b/x11-misc/xfractint/xfractint-20.04_p16.ebuild
new file mode 100644
index 000..020f7b4a30a
--- /dev/null
+++ b/x11-misc/xfractint/xfractint-20.04_p16.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+MY_P=${P/_}
+
+DESCRIPTION="A fractal generator"
+HOMEPAGE="https://www.fractint.org;
+SRC_URI="https://www.fractint.org/ftp/current/linux/${MY_P}.tar.gz;
+
+LICENSE="free-noncomm HPND public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86"
+
+RDEPEND="x11-libs/libX11"
+
+DEPEND="
+   ${RDEPEND}
+   x11-libs/libXft
+"
+
+S="${WORKDIR}/${MY_P}"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-20.04p16-install-phase.patch"
+)
+
+src_compile() {
+   emake CC="$(tc-getCC)" AS="$(tc-getAS)" OPT="${CFLAGS}" 
LDFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   emake DESTDIR="${ED}/usr" install
+}



[gentoo-commits] repo/gentoo:master commit in: x11-misc/xfractint/

2020-08-02 Thread Sam James
commit: 49d02d696b8d108d2adcb63f2949e14396f9b836
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 02:58:14 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 02:58:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49d02d69

x11-misc/xfractint: add dependency to RDEPEND

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 x11-misc/xfractint/xfractint-20.04_p16.ebuild | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/x11-misc/xfractint/xfractint-20.04_p16.ebuild 
b/x11-misc/xfractint/xfractint-20.04_p16.ebuild
index 020f7b4a30a..0e98bb543fd 100644
--- a/x11-misc/xfractint/xfractint-20.04_p16.ebuild
+++ b/x11-misc/xfractint/xfractint-20.04_p16.ebuild
@@ -11,18 +11,17 @@ DESCRIPTION="A fractal generator"
 HOMEPAGE="https://www.fractint.org;
 SRC_URI="https://www.fractint.org/ftp/current/linux/${MY_P}.tar.gz;
 
+S="${WORKDIR}/${MY_P}"
+
 LICENSE="free-noncomm HPND public-domain"
 SLOT="0"
 KEYWORDS="~amd64 ~ppc ~x86"
 
-RDEPEND="x11-libs/libX11"
-
-DEPEND="
-   ${RDEPEND}
+RDEPEND="
+   x11-libs/libX11
x11-libs/libXft
 "
-
-S="${WORKDIR}/${MY_P}"
+DEPEND="${RDEPEND}"
 
 PATCHES=(
"${FILESDIR}/${PN}-20.04p16-install-phase.patch"



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

2020-08-02 Thread Zac Medico
commit: 099e575a4cc132e01534023585cf73b7ff806b95
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Aug  3 02:21:09 2020 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Aug  3 02:48:15 2020 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=099e575a

doc/api/conf.py: silence redefined-builtin for copyright

* This locally silences the W0622 warning for the override of the
  copyright which is required.

Signed-off-by: Aaron Bauman  gentoo.org>
Signed-off-by: Zac Medico  gentoo.org>

 doc/api/conf.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/api/conf.py b/doc/api/conf.py
index f318ca25d..f79adc256 100644
--- a/doc/api/conf.py
+++ b/doc/api/conf.py
@@ -25,7 +25,7 @@ import portage
 # -- Project information -
 
 project = 'portage'
-copyright = '2020, Gentoo Authors'
+copyright = '2020, Gentoo Authors' # pylint: disable=redefined-builtin
 author = 'Gentoo Authors'
 
 # The full version, including alpha/beta/rc tags



[gentoo-commits] repo/gentoo:master commit in: net-wireless/kismetmobiledashboard/

2020-08-02 Thread Rick Farina
commit: 3b8631932ab51029cb0eb79a911207fa9d721337
Author: Rick Farina  gentoo  org>
AuthorDate: Mon Aug  3 02:46:54 2020 +
Commit: Rick Farina  gentoo  org>
CommitDate: Mon Aug  3 02:47:09 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b863193

net-wireless/kismetmobiledashboard: make slightly less bad

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Rick Farina  gentoo.org>

 ...d-1.5_beta1.ebuild => kismetmobiledashboard-1.5_beta1-r1.ebuild} | 6 --
 .../kismetmobiledashboard/kismetmobiledashboard-.ebuild | 6 --
 2 files changed, 8 insertions(+), 4 deletions(-)

diff --git 
a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1.ebuild 
b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild
similarity index 88%
rename from 
net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1.ebuild
rename to 
net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild
index 5e92f7f7e0e..796152ce350 100644
--- a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1.ebuild
+++ 
b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-1.5_beta1-r1.ebuild
@@ -1,9 +1,11 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit python-single-r1
 
 DESCRIPTION="Mobile UI for kismet"
 HOMEPAGE="https://github.com/elkentaro/KismetMobileDashboard;

diff --git 
a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild 
b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild
index 5e92f7f7e0e..796152ce350 100644
--- a/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild
+++ b/net-wireless/kismetmobiledashboard/kismetmobiledashboard-.ebuild
@@ -1,9 +1,11 @@
-# Copyright 2019 Gentoo Authors
+# Copyright 2019-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-PYTHON_COMPAT=( python2_7 python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit python-single-r1
 
 DESCRIPTION="Mobile UI for kismet"
 HOMEPAGE="https://github.com/elkentaro/KismetMobileDashboard;



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

2020-08-02 Thread Georgy Yakovlev
commit: 6f9935f6a5549037e02195a04665bd614d89adb4
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Aug  3 01:44:06 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Aug  3 01:44:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f9935f6

dev-java/openjdk-bin: re-keyword on arm64

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-java/openjdk-bin/Manifest | 1 +
 dev-java/openjdk-bin/openjdk-bin-8.265_p01.ebuild | 3 ++-
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/dev-java/openjdk-bin/Manifest b/dev-java/openjdk-bin/Manifest
index 01ff9bbdd5d..4be7435a8d8 100644
--- a/dev-java/openjdk-bin/Manifest
+++ b/dev-java/openjdk-bin/Manifest
@@ -8,6 +8,7 @@ DIST OpenJDK11U-jdk_x64_linux_hotspot_11.0.7_10.tar.gz 
193346198 BLAKE2B 506fc32
 DIST OpenJDK11U-jdk_x64_linux_hotspot_11.0.8_10.tar.gz 193398310 BLAKE2B 
079f48381bf58edb7b9b75f4305df72184710c90101588fccce4edb0535b976b2f6332b66fdd8cf8b442eebbeee5a6044e0445519f9bbd8ed20b02f50e9fc203
 SHA512 
115b5627d6d1245f8393e3cd869bdb7accb42c35bc0e9030fb60701f61253ea8ce382edec75ded85ff5b0a0c8bbfbecdec81b16aef87fb6fc76c684628abf1e5
 DIST OpenJDK8U-jdk_aarch64_linux_hotspot_8u252b09.tar.gz 102238546 BLAKE2B 
ffa0aec56e4f6fe03cab88e0423e5b1ee24ccbe9eb0bd37d37449c596095d69e7fcb9044c0846a750d3d1a842c2f719d18a28510bd226a8aa9b383e4ae29993b
 SHA512 
a6ef9864cde15e96abcb94f2e72db77f473e609fd162934fc3d35225223a20e20c464e44ce0c022dbf15f6d68d25bf2187271d8643e5cff2894f1839929050ae
 DIST OpenJDK8U-jdk_aarch64_linux_hotspot_8u262b10.tar.gz 103188555 BLAKE2B 
2d1c8add4d0a3939a423dd24b2ade8a7e7240597d1d49a6194e768f8262977aa7b8c8f8a3f564c88bfe3e4bac74cbd3f2cdd17fafcbaf7b9b50ad3cade34e21b
 SHA512 
86f24cd72ac398b606006dc64fb0f5d335bb633d87c7a7f96f2efb26a9abc6486ea1f803ccb33e74efc9e8f48ef3c723516dc690479a6e67d9161d67a5b8e94c
+DIST OpenJDK8U-jdk_aarch64_linux_hotspot_8u265b01.tar.gz 103150208 BLAKE2B 
70880514e63402b740554cde3eba80106e2494d354751a620e54cde0376cebbf1ca5c2b10b0c340f59d9d1f390791c07ba39b13e72c938872e2a8b102b608f34
 SHA512 
37d9efe9c087dae9c180ee47e9f4f010e7726f4578edb5638d40ab4aea450912e3fa5e1d9254f6290779f43ffb5b0c6d1e3e9ac42c889b0c50072645deadbddb
 DIST OpenJDK8U-jdk_arm_linux_hotspot_8u252b09.tar.gz 96925784 BLAKE2B 
3e294a9a38729e453dd74d691bad4abd043fefd2a850a1d8fa142e5e5c2b908a1c7a0d9f2ebf1760ecf065cb615a59a930c84e86e86a339da01a794f1f3319ed
 SHA512 
a361cb07b43ebaf7d1aa277c15ee41493fb25ff78dcad1801436ef68a54c4a89f2361c3f57ce328c507b9f36c81a301d95d9315d32aa888163d533d7d741effd
 DIST OpenJDK8U-jdk_arm_linux_hotspot_8u262b10.tar.gz 97642302 BLAKE2B 
0bc6d676eaa4efb1ff2b9358f8ddf2b578223d390f59a2deb1269dc55d2be4e39104680c8cc5608c7d8ba1350a289cc5d5673d1df5f6b495739df0cdac563ebd
 SHA512 
7abb787dce0d5ed8c0a6f4cb0c7036e2c341b90b1a967e3c2b45d1c33bf88bb08a6cccecde1579edf811f304d5dc287816becd60ab429dda6a913f37511f4c68
 DIST OpenJDK8U-jdk_arm_linux_hotspot_8u265b01.tar.gz 97641656 BLAKE2B 
76d24e975c2ec173b6b4806d145f79d02828e12e2dd412b60a921648fba20920b3b69b03630ece8d5cefeaf408dad01573b15db7f4a7bbdd024806a7b01bd6ae
 SHA512 
8f96d73038579d2873b84d19bfbcc7f481b031a91c35d86d35e127951b6c743a6a1d5230a61ebcacddf854b73c55b18cc53112b9a2759b283254bf93fd691459

diff --git a/dev-java/openjdk-bin/openjdk-bin-8.265_p01.ebuild 
b/dev-java/openjdk-bin/openjdk-bin-8.265_p01.ebuild
index 6f3e2cb47e4..309fc4391f2 100644
--- a/dev-java/openjdk-bin/openjdk-bin-8.265_p01.ebuild
+++ b/dev-java/openjdk-bin/openjdk-bin-8.265_p01.ebuild
@@ -17,13 +17,14 @@ SLOT="$(ver_cut 1)"
 DESCRIPTION="Prebuilt Java JDK binaries provided by AdoptOpenJDK"
 HOMEPAGE="https://adoptopenjdk.net;
 SRC_URI="
+   $(abi_uri aarch64 arm64)
$(abi_uri arm)
$(abi_uri ppc64le ppc64)
$(abi_uri x64 amd64)
 "
 
 LICENSE="GPL-2-with-classpath-exception"
-KEYWORDS="~amd64 ~arm ~ppc64"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
 
 IUSE="alsa cups examples headless-awt nsplugin selinux source webstart"
 



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

2020-08-02 Thread Sam James
commit: c16c53d673bf40e5aa9f8b727a5021a5b854dec5
Author: Tom Gillespie  gmail  com>
AuthorDate: Sun Aug  2 03:57:56 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 01:40:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c16c53d6

dev-python/defusedxml: add 3_9 support

all tests passing on amd64

Signed-off-by: Tom Gillespie  gmail.com>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/defusedxml/defusedxml-0.6.0.ebuild 
b/dev-python/defusedxml/defusedxml-0.6.0.ebuild
index 76cecdcd217..a243bd6895c 100644
--- a/dev-python/defusedxml/defusedxml-0.6.0.ebuild
+++ b/dev-python/defusedxml/defusedxml-0.6.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python{3_6,3_7,3_8} pypy3 )
+PYTHON_COMPAT=( python{3_6,3_7,3_8,3_9} pypy3 )
 PYTHON_REQ_USE="xml(+)"
 
 inherit distutils-r1



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

2020-08-02 Thread Sam James
commit: fd26592dee5a77f58de6c8b692bae5527eec09d8
Author: Tom Gillespie  gmail  com>
AuthorDate: Sun Aug  2 03:21:41 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 01:40:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd26592d

dev-python/uritemplate: add 3_9 support

all tests passing on amd64

Signed-off-by: Tom Gillespie  gmail.com>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/uritemplate/uritemplate-3.0.1-r1.ebuild 
b/dev-python/uritemplate/uritemplate-3.0.1-r1.ebuild
index 8f82d9943f1..7c7dd36daee 100644
--- a/dev-python/uritemplate/uritemplate-3.0.1-r1.ebuild
+++ b/dev-python/uritemplate/uritemplate-3.0.1-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
+PYTHON_COMPAT=( python3_{6..9} pypy3 )
 
 inherit distutils-r1
 



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

2020-08-02 Thread Sam James
commit: 489d8ae78b7868176fa1a8560e1c874e85f4dc8b
Author: Tom Gillespie  gmail  com>
AuthorDate: Tue Jul 14 00:06:35 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 01:40:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=489d8ae7

dev-python/docopt: add 3_9 support

Tests for pypy3 and python3_{6..9} all passing on amd64.

Signed-off-by: Tom Gillespie  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/16963
Signed-off-by: Sam James  gentoo.org>

 dev-python/docopt/docopt-0.6.2-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/docopt/docopt-0.6.2-r3.ebuild 
b/dev-python/docopt/docopt-0.6.2-r3.ebuild
index 4184b22735b..7e5f8e0f800 100644
--- a/dev-python/docopt/docopt-0.6.2-r3.ebuild
+++ b/dev-python/docopt/docopt-0.6.2-r3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} pypy3 )
+PYTHON_COMPAT=( python3_{6..9} pypy3 )
 
 inherit distutils-r1
 



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

2020-08-02 Thread Craig Andrews
commit: eba9a601eef0fa61e94f2e3effe2145f2d167125
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Aug  3 01:17:35 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Aug  3 01:19:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eba9a601

app-misc/neofetch: 7.1.0 version bump

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

 app-misc/neofetch/Manifest| 1 +
 app-misc/neofetch/{neofetch-.ebuild => neofetch-7.1.0.ebuild} | 4 ++--
 app-misc/neofetch/neofetch-.ebuild| 4 ++--
 3 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/app-misc/neofetch/Manifest b/app-misc/neofetch/Manifest
index dd0af2831bf..9143d81562b 100644
--- a/app-misc/neofetch/Manifest
+++ b/app-misc/neofetch/Manifest
@@ -1,3 +1,4 @@
 DIST neofetch-6.0.0.tar.gz 115538 BLAKE2B 
ec1a019c873a6c48ca150f51cfc76174b8df6af629530906a638f3f19fdae0e926cb7512b14c90aa9af6b6fb4652f2f6c72128535c2b833d307ad58e66af9c5f
 SHA512 
2613bbc3bd50fb11fb511dd2d3d37f8e86891c9abab5f25e5956f4458c43abd555ff7d129a24f7e5ff4ed76f7c69235b696a77326bce11d81dd81eb414ab3a8d
 DIST neofetch-6.1.0.tar.gz 118346 BLAKE2B 
d9a08cf0b3f9164e8e42e25434d3e23e3c0ebac5e3fe3e770d7a2bde67b127078977fdb44fcc5e11703cafbe0f68332d6d7a4df8ced235d4dbd4a525afc171b1
 SHA512 
a68b5021d02d217ae5bc67f3d542afe4aebf1cc891f083e276b58847b1dff4419e036dbd7694b7c49c19c615b13eb54c22db3e69e6143c3f10f3fc1966a22a2e
 DIST neofetch-7.0.0.tar.gz 90892 BLAKE2B 
7cee56b0b3dd49cfaddec99cd10594c5792a24dac54bae99af2bd5f13ac1a1f152fee917175a6ce911fc9b6eecb0e92cec287448f78ec714634c9fbff07a2e50
 SHA512 
84dde5b34b0defc24ac472efd4354483e0438c5bbed25f1f39cec53e0a7d8f10dcace736b720f0e1dfbe55342ef3f5e866501bc62aee40a09bef90bf13b5
+DIST neofetch-7.1.0.tar.gz 95400 BLAKE2B 
32368d461835d95ba8203c560b2f6733594966cbaf809d877a46c08675284288565e3a21b14d94900dd66b778dc975339196f182732e2cd8bc1ccc9e6da6253e
 SHA512 
fe1013fb54585c15ba556054478a2c8c503120387e81bd16bfdfbb6f3a188ed4124585540abf43da9209cbbe0d7fb90d50914cd6620137d00f013cfb6954a042

diff --git a/app-misc/neofetch/neofetch-.ebuild 
b/app-misc/neofetch/neofetch-7.1.0.ebuild
similarity index 87%
copy from app-misc/neofetch/neofetch-.ebuild
copy to app-misc/neofetch/neofetch-7.1.0.ebuild
index f3ecd1b3aa6..2b82020241d 100644
--- a/app-misc/neofetch/neofetch-.ebuild
+++ b/app-misc/neofetch/neofetch-7.1.0.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 if [[ ${PV} != ** ]]; then
SRC_URI="https://github.com/dylanaraps/${PN}/archive/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~mips ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~mips ~ppc64 ~x86"
 else
inherit git-r3
EGIT_REPO_URI="https://github.com/dylanaraps/neofetch.git;

diff --git a/app-misc/neofetch/neofetch-.ebuild 
b/app-misc/neofetch/neofetch-.ebuild
index f3ecd1b3aa6..2b82020241d 100644
--- a/app-misc/neofetch/neofetch-.ebuild
+++ b/app-misc/neofetch/neofetch-.ebuild
@@ -1,11 +1,11 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 if [[ ${PV} != ** ]]; then
SRC_URI="https://github.com/dylanaraps/${PN}/archive/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~mips ~ppc64 ~x86"
+   KEYWORDS="~amd64 ~arm64 ~mips ~ppc64 ~x86"
 else
inherit git-r3
EGIT_REPO_URI="https://github.com/dylanaraps/neofetch.git;



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

2020-08-02 Thread Craig Andrews
commit: 103b9270f9a519c1637e9cdbb428acfd230e4951
Author: Craig Andrews  gentoo  org>
AuthorDate: Mon Aug  3 01:16:12 2020 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Aug  3 01:19:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=103b9270

media-plugins/kodi-pvr-mediaportal-tvserver: 6.0.1 version bump

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

 .../kodi-pvr-mediaportal-tvserver/Manifest |  1 +
 .../kodi-pvr-mediaportal-tvserver-6.0.1.ebuild | 38 ++
 2 files changed, 39 insertions(+)

diff --git a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest 
b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
index a84996e7807..47cf9edb675 100644
--- a/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
+++ b/media-plugins/kodi-pvr-mediaportal-tvserver/Manifest
@@ -1,3 +1,4 @@
 DIST kodi-pvr-mediaportal-tvserver-3.5.16.tar.gz 398113 BLAKE2B 
e944a49bd5d996d2c62325ec7c8b8dd6f69ca2918331cca198afbc11a1badafd4ad7ffd15f562016d540c5777cef285fcd090be28662988f71187899a43609f8
 SHA512 
4784b97d1826a8846156910b658a32b6b133dda04a8b2366f0dd67445fb4247132da427f63ada4284cf9889b8c5e7ca5f66785998e23b8ee5845ffdb352a83ea
 DIST kodi-pvr-mediaportal-tvserver-3.5.17.tar.gz 398338 BLAKE2B 
52ed303aa236fb77bb5f79709f322b980aa29ca4e5077efc20894b610eaf81bd0d6f2a23de72bd3bf768ca0d819d57b920573515e0b134465b4f5399db966f35
 SHA512 
916d3a2f5ef8802a49c70f62bfb94145c3aa8f140ff3674ed3fef21c4d644a85a0cfb1088f1fc893b677635263f47455c0ffbe6554ca484659a1b7c8ebd47207
 DIST kodi-pvr-mediaportal-tvserver-6.0.0.tar.gz 402033 BLAKE2B 
7ad12b7a18e759167fe06d983ad20c0dd00f10f6a23a5f87f526835b893451110152c036bdbae565d623fd8034e6bd1780446a688a6837f30027d7412f214706
 SHA512 
ac1b14bb1e75e4b802c1d6eb9f94b8c437d808ff31592b3e9ed0b9c19151acde3927c1bbabd4f890cf3aff6c71b68a859abf8b2d8942e4c9df8953c934a123aa
+DIST kodi-pvr-mediaportal-tvserver-6.0.1.tar.gz 403268 BLAKE2B 
7c063ebd18d539c5ef844d55a93363540c19776564fd7cb2db4cb861e7acd0fc4fa9be88e835bb868f293db8af630ab709ea4f5075c06a15934e39647bd76745
 SHA512 
3e77f65362f55fa8902d77fa4522b5f76e553578270121fb0727cf42a57121d3bc3076ed84183576423a942c90c995546850992a4800d5f29017e39b1c2aa961

diff --git 
a/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-6.0.1.ebuild
 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-6.0.1.ebuild
new file mode 100644
index 000..26852ce2d13
--- /dev/null
+++ 
b/media-plugins/kodi-pvr-mediaportal-tvserver/kodi-pvr-mediaportal-tvserver-6.0.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake kodi-addon
+
+DESCRIPTION="Kodi's MediaPortal TVServer client addon"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.mediaportal.tvserver;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Matrix"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.mediaportal.tvserver/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.mediaportal.tvserver-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =media-tv/kodi-19*
+   =dev-libs/libplatform-2*
+   dev-libs/tinyxml
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "



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

2020-08-02 Thread Aaron Bauman
commit: 526dcc0c6aca9393bcc816431d6b292351e73864
Author: Aaron Bauman  gentoo  org>
AuthorDate: Mon Aug  3 00:51:53 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Mon Aug  3 00:52:48 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=526dcc0c

package.mask: revert mask on app-metrics/collectd

* I did not realize this package was not m-n. Additionally, it is a
  critical package for image generation on GCP

Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 617b5cda42d..de7cb784141 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -59,12 +59,6 @@ sys-apps/biosdisk
 # Removal in 30 days
 sys-fs/ecryptfs-utils
 
-# Aaron Bauman  (2020-08-02)
-# Py2 only. m-n. Bug #735502. rdep.
-# Removal in 30 days
-app-metrics/collectd
-sys-fs/owfs
-
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735524
 # Removal in 30 days



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

2020-08-02 Thread Sam James
commit: 590971fb341fa294a785f61762520b4eedc68eaa
Author: Sam James  gentoo  org>
AuthorDate: Mon Aug  3 00:49:31 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 00:49:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=590971fb

media-libs/libmp4v2: drop useless test deps

We can't run tests because they don't exist,
however the repo has a bunch of DejaGnu skeleton
framework files, so we restrict tests.

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild 
b/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild
index 55a53112dd4..9602704da8a 100644
--- a/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild
+++ b/media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild
@@ -14,13 +14,11 @@ SRC_URI="https://mp4v2.googlecode.com/files/${MY_P}.tar.bz2;
 LICENSE="MPL-1.1"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris 
~x86-solaris"
-IUSE="static-libs test utils"
-RESTRICT="!test? ( test )"
+IUSE="static-libs utils"
+# Tests need DejaGnu but are non-existent (just an empty framework)
+RESTRICT="test"
 
-BDEPEND="
-   test? ( dev-util/dejagnu )
-   utils? ( sys-apps/help2man )
-"
+BDEPEND="utils? ( sys-apps/help2man )"
 
 DOCS=( doc/{Authors,BuildSource,Documentation,ReleaseNotes,ToolGuide}.txt 
README )
 



[gentoo-commits] repo/gentoo:master commit in: media-libs/libmp4v2/, media-libs/libmp4v2/files/

2020-08-02 Thread Sam James
commit: 1560154cd7f50715577cc36e52f8d03a15a80419
Author: John Helmert III  posteo  net>
AuthorDate: Mon Aug  3 00:49:30 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Aug  3 00:49:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1560154c

media-libs/libmp4v2: add security patches

Bug: https://bugs.gentoo.org/661582
Package-Manager: Portage-3.0.0, Repoman-2.3.23
Signed-off-by: John Helmert III  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/16811
Signed-off-by: Sam James  gentoo.org>

 .../files/libmp4v2-2.0.0-CVE-2018-14054.patch  | 35 +
 .../files/libmp4v2-2.0.0-CVE-2018-14325.patch  | 60 ++
 .../files/libmp4v2-2.0.0-CVE-2018-14379.patch  | 33 
 .../files/libmp4v2-2.0.0-CVE-2018-14403.patch  | 28 ++
 media-libs/libmp4v2/libmp4v2-2.0.0-r2.ebuild   | 54 +++
 5 files changed, 210 insertions(+)

diff --git a/media-libs/libmp4v2/files/libmp4v2-2.0.0-CVE-2018-14054.patch 
b/media-libs/libmp4v2/files/libmp4v2-2.0.0-CVE-2018-14054.patch
new file mode 100644
index 000..3ff3e731b93
--- /dev/null
+++ b/media-libs/libmp4v2/files/libmp4v2-2.0.0-CVE-2018-14054.patch
@@ -0,0 +1,35 @@
+Upstream: 
https://github.com/sergiomb2/libmp4v2/commit/3410bc66fb91f46325ab1d008b6a421dd8240949
+Gentoo Bug: https://bugs.gentoo.org/661582
+
+From 3410bc66fb91f46325ab1d008b6a421dd8240949 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= 
+Date: Sat, 2 Nov 2019 04:21:17 +
+Subject: [PATCH] Null out pointer after free to prevent double free
+
+If an exception occurs (because of a crafted MP4) before the value is 
reassigned, then a double free can occur.  By setting the pointer to NULL after 
the first free, we prevent the double free in this case.
+Addresses: https://nvd.nist.gov/vuln/detail/CVE-2018-14054
+
+copied form 
https://github.com/TechSmith/mp4v2/commit/f09cc5bd7f783fd31f10e8b3c440ccf4c743
+From: Dave O'Rourke
+Date: Wed, 20 Mar 2019 08:57:29 -0400
+---
+ src/mp4property.cpp | 6 --
+ 1 file changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/src/mp4property.cpp b/src/mp4property.cpp
+index 9a5b1e3..1b8e1d2 100644
+--- a/src/mp4property.cpp
 b/src/mp4property.cpp
+@@ -391,8 +391,10 @@ void MP4StringProperty::Read( MP4File& file, uint32_t 
index )
+ char*& value = m_values[i];
+ 
+ // Generally a default atom setting, e.g. see atom_avc1.cpp, "JVT/AVC 
Coding"; we'll leak this string if
+-// we don't free.  Note that MP4Free checks for null.
+-MP4Free(value); 
++// we don't free.  Note that this code checks for null before calling 
free and sets the pointer to null
++// after freeing it, to prevent a double free in case an exception 
occurs before the value is reassigned.
++MP4Free( value );
++value = NULL;
+ 
+ if( m_useCountedFormat ) {
+ value = file.ReadCountedString( (m_useUnicode ? 2 : 1), 
m_useExpandedCount, m_fixedLength );

diff --git a/media-libs/libmp4v2/files/libmp4v2-2.0.0-CVE-2018-14325.patch 
b/media-libs/libmp4v2/files/libmp4v2-2.0.0-CVE-2018-14325.patch
new file mode 100644
index 000..eb23926bb49
--- /dev/null
+++ b/media-libs/libmp4v2/files/libmp4v2-2.0.0-CVE-2018-14325.patch
@@ -0,0 +1,60 @@
+Upstream: 
https://github.com/sergiomb2/libmp4v2/commit/9084868fd9f86bee118001c23171e832f15009f4
+Gentoo Bug: https://bugs.gentoo.org/661582
+
+
+From 9084868fd9f86bee118001c23171e832f15009f4 Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?S=C3=A9rgio=20M=2E=20Basto?= 
+Date: Fri, 8 Nov 2019 02:01:32 +
+Subject: [PATCH] Fix v3 Integer underflow/overflow in MP4v2 2.0.0
+
+Reference: https://www.openwall.com/lists/oss-security/2018/07/16/1
+
+For the overflow, we could check the result of the integer multiplication:
+
+fix vulnerability where an atom list size is enormous
+and calculating the number of bytes needed to hold the list overflows
+https://github.com/TechSmith/mp4v2/pull/27/commits/70d823ccd8e2d7d0ed9e62fb7e8983d21e6acbeb
+
+Addresses https://nvd.nist.gov/vuln/detail/CVE-2018-14326 and 
https://nvd.nist.gov/vuln/detail/CVE-2018-14446
+
+For the underflow, we could check if `dataSize >= hdrSize` satisfies:
+Throw exception when invalid atom size would cause integer underflow
+The calculation `hdrSize - dataSize` can underflow the 64-bit unsigned int 
dataSize type, which can lead to incorrect results.  We throw an exception to 
stop the code from going any further.
+
+Addresses https://nvd.nist.gov/vuln/detail/CVE-2018-14325
+Based on 
https://github.com/TechSmith/mp4v2/commit/e475013c6ef78093055a02b0d035eda0f9f01451
+---
+ src/mp4array.h  | 2 ++
+ src/mp4atom.cpp | 6 ++
+ 2 files changed, 8 insertions(+)
+
+diff --git a/src/mp4array.h b/src/mp4array.h
+index c49d59b..69d470a 100644
+--- a/src/mp4array.h
 b/src/mp4array.h
+@@ -102,6 +102,8 @@ class MP4Array {
+ void Resize(MP4ArrayIndex newSize) { \
+  

[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-power-manager/

2020-08-02 Thread Matt Turner
commit: 3c138d61b2d48824e7626dd92a98269e065babed
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Aug  3 00:06:24 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Mon Aug  3 00:07:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c138d61

mate-extra/mate-power-manager: Disable libgnome-keyring support

Bug: https://bugs.gentoo.org/713048
Signed-off-by: Matt Turner  gentoo.org>

 .../mate-power-manager-1.24.1-r2.ebuild| 71 ++
 1 file changed, 71 insertions(+)

diff --git a/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild 
b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild
new file mode 100644
index 000..55bf4d7a986
--- /dev/null
+++ b/mate-extra/mate-power-manager/mate-power-manager-1.24.1-r2.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+fi
+
+DESCRIPTION="A session daemon for MATE that makes it easy to manage your 
laptop or desktop"
+
+LICENSE="FDL-1.1+ GPL-2+ LGPL-2+"
+SLOT="0"
+IUSE="+applet elogind policykit systemd test"
+
+REQUIRED_USE="?? ( elogind systemd )"
+
+# Interactive testsuite.
+RESTRICT="test"
+
+COMMON_DEPEND="
+   >=dev-libs/dbus-glib-0.70
+   >=dev-libs/glib-2.50:2
+   >=media-libs/libcanberra-0.10:0[gtk3]
+   >=sys-apps/dbus-1
+   >=x11-apps/xrandr-1.3
+   >=x11-libs/cairo-1
+   >=x11-libs/gdk-pixbuf-2.11:2
+   >=x11-libs/gtk+-3.22:3
+   x11-libs/libX11
+   x11-libs/libXext
+   x11-libs/libXrandr
+   >=x11-libs/libnotify-0.7:0
+   x11-libs/pango
+   applet? ( >=mate-base/mate-panel-1.17.0 )
+   >=sys-power/upower-0.99.8:="
+
+RDEPEND="${COMMON_DEPEND}
+   virtual/libintl
+   policykit? ( >=mate-extra/mate-polkit-1.6 )
+   systemd? ( sys-apps/systemd )
+   !systemd? (
+   elogind? ( sys-auth/elogind )
+   )"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xml-dtd:4.3
+   app-text/rarian
+   >=app-text/scrollkeeper-dtd-1:1.0
+   app-text/yelp-tools
+   dev-libs/libxml2
+   dev-util/glib-utils
+   >=sys-devel/gettext-0.19.8:*
+   virtual/pkgconfig
+   x11-base/xorg-proto"
+
+src_configure() {
+   mate_src_configure \
+   --without-keyring \
+   --enable-compile-warnings=minimum \
+   $(use_enable applet applets) \
+   $(use_enable test tests)
+}
+
+src_test() {
+   unset DBUS_SESSION_BUS_ADDRESS
+
+   dbus-launch Xemake check || die "Test phase failed"
+}



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

2020-08-02 Thread Aaron Bauman
commit: 5708c66527ddc0c2b83290d13e9d00ab8757f242
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 23:10:47 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 23:11:45 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5708c665

package.mask: last-rite dev-vcs/rapidsvn

Bug: https://bugs.gentoo.org/623458
Bug: https://bugs.gentoo.org/735340
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 83a267bfcbf..617b5cda42d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Py2 only. m-n. Bug #735340
+# Removal in 30 days
+dev-vcs/rapidsvn
+
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735364
 # Removal in 30 days



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

2020-08-02 Thread Sam James
commit: e4d0bdd1d9e58e817d5d86970e9ce5363db26bd5
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 23:08:01 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 23:08:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4d0bdd1

profiles/package.mask: fix mask typo

Signed-off-by: Sam James  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 91bc9ac23ee..83a267bfcbf 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -62,7 +62,7 @@ sys-fs/owfs
 
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735524
-5# Removal in 30 days
+# Removal in 30 days
 www-misc/nx_util
 
 # Aaron Bauman  (2020-08-02)



[gentoo-commits] repo/gentoo:master commit in: net-proxy/sshuttle/

2020-08-02 Thread Sam James
commit: c6a1efe9b57c767235339ec6736ca95375bb0300
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 23:07:46 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 23:08:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6a1efe9

net-proxy/sshuttle: modernise

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 net-proxy/sshuttle/sshuttle-1.0.3.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-proxy/sshuttle/sshuttle-1.0.3.ebuild 
b/net-proxy/sshuttle/sshuttle-1.0.3.ebuild
index 5ef1619ca36..6f5b0c2088b 100644
--- a/net-proxy/sshuttle/sshuttle-1.0.3.ebuild
+++ b/net-proxy/sshuttle/sshuttle-1.0.3.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+DISTUTILS_USE_SETUPTOOLS=rdepend
 PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1 linux-info
@@ -13,8 +14,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="LGPL-2.1+"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 BDEPEND="
dev-python/sphinx



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

2020-08-02 Thread Aaron Bauman
commit: b820238a1e7283cb871eb3b98f8c8bfce59f2a21
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 23:01:30 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 23:01:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b820238a

package.mask: last-rite media-gfx/cptutils

Bug: https://bugs.gentoo.org/735364
Bug: https://bugs.gentoo.org/724766
Bug: https://bugs.gentoo.org/734588
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index f04619e5070..91bc9ac23ee 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Py2 only. m-n. Bug #735364
+# Removal in 30 days
+media-gfx/cptutils
+
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #709932
 # Removal in 30 days



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

2020-08-02 Thread Aaron Bauman
commit: 66ef90a176f13bae28b4667c1f1f77d0fea72d58
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 22:57:23 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 22:58:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66ef90a1

package.mask: last-rite net-wireless/{cpyrit-cuda,cpyrit-opencl,pyrit}

Bug: https://bugs.gentoo.org/709932
Bug: https://bugs.gentoo.org/422751
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index ea7bccab6ea..f04619e5070 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,13 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Py2 only. m-n. Bug #709932
+# Removal in 30 days
+net-wireless/cpyrit-cuda
+net-wireless/cpyrit-opencl
+net-wireless/pyrit
+
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735466
 # Removal in 30 days



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

2020-08-02 Thread Sam James
commit: def5b2ce2e48bb0ea4580dabe72bb47cce7351d8
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 22:54:09 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:55:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=def5b2ce

dev-python/urlgrabber: bump to 4.0.0

Bug: https://bugs.gentoo.org/735616
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/urlgrabber/Manifest|  1 +
 dev-python/urlgrabber/urlgrabber-4.0.0.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-python/urlgrabber/Manifest b/dev-python/urlgrabber/Manifest
index 11c8d8797e8..4c833931b7a 100644
--- a/dev-python/urlgrabber/Manifest
+++ b/dev-python/urlgrabber/Manifest
@@ -1 +1,2 @@
 DIST urlgrabber-3.10.1.tar.gz 83735 BLAKE2B 
ea0b3c071f968b2632e89cf225906740685b0f1134d41cf8aaf7e6361110780f6c998b06e4d79527be7e7953c5c4a617d039477135135cc7fc13a0426f0d9ee0
 SHA512 
c44d32b17c5f8984d09ed46ae36b3e05dc69d041820cf979029bc325d8407bbd7e324f264be5886286cd99e123f51affec26638cab6e525f85e2a1c4247462d7
+DIST urlgrabber-4.0.0.tar.gz 86308 BLAKE2B 
15195336d8e19331134b3bc1de29a669b80ab62c14e613fbcbbc1b8be8cb4ee1da3df317591989c6a3e3a403f8ad9071ca866006f23fbadc6283e88d5f050290
 SHA512 
01579281b1548c71737166daa6dfb7eaafceaf4afd9703f8e5e3193c33613750cb4291e3c7939065e995a173925965a16e656c43324f3b599f9c83d9e479e8c1

diff --git a/dev-python/urlgrabber/urlgrabber-4.0.0.ebuild 
b/dev-python/urlgrabber/urlgrabber-4.0.0.ebuild
new file mode 100644
index 000..0ea65664ba8
--- /dev/null
+++ b/dev-python/urlgrabber/urlgrabber-4.0.0.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module for downloading files"
+HOMEPAGE="http://urlgrabber.baseurl.org;
+SRC_URI="http://urlgrabber.baseurl.org/download/${P}.tar.gz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~ia64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   dev-python/pycurl[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+"
+
+# Entire testsuite relies on connecting to the i'net



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

2020-08-02 Thread Aaron Bauman
commit: f76d34992f7be78c28d154d95f6ea4ef84e8d364
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 22:53:24 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 22:53:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f76d3499

package.mask: last-rite sys-apps/biosdisk

Bug: https://bugs.gentoo.org/735466
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 8773c365b46..ea7bccab6ea 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Py2 only. m-n. Bug #735466
+# Removal in 30 days
+sys-apps/biosdisk
+
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735486
 # Removal in 30 days



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

2020-08-02 Thread Aaron Bauman
commit: 7d45f1c02b7588cfc8882c44ac0663c040a511dc
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 22:49:23 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 22:51:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d45f1c0

package.mask: last-rite sys-fs/ecryptfs-utils

Bug: https://bugs.gentoo.org/735486
Bug: https://bugs.gentoo.org/564894
Bug: https://bugs.gentoo.org/704356
Bug: https://bugs.gentoo.org/715938
Bug: https://bugs.gentoo.org/697778
Bug: https://bugs.gentoo.org/715508
Signed-off-by: Aaron Bauman  gentoo.org>

 profiles/package.mask | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 5b80c645afb..8773c365b46 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Py2 only. m-n. Bug #735486
+# Removal in 30 days
+sys-fs/ecryptfs-utils
+
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735502. rdep.
 # Removal in 30 days
@@ -40,7 +45,7 @@ sys-fs/owfs
 
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735524
-# Removal in 30 days
+5# Removal in 30 days
 www-misc/nx_util
 
 # Aaron Bauman  (2020-08-02)



[gentoo-commits] repo/gentoo:master commit in: net-proxy/sshuttle/

2020-08-02 Thread Sam James
commit: c867d5836c411c0117c5a5263f736bdad1e1f0a3
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 22:49:07 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:49:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c867d583

net-proxy/sshuttle: bump to 1.0.3

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 net-proxy/sshuttle/Manifest  |  1 +
 net-proxy/sshuttle/sshuttle-1.0.3.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/net-proxy/sshuttle/Manifest b/net-proxy/sshuttle/Manifest
index 10a76828e3f..8290f7a320c 100644
--- a/net-proxy/sshuttle/Manifest
+++ b/net-proxy/sshuttle/Manifest
@@ -1 +1,2 @@
 DIST sshuttle-0.78.5.tar.gz 74663 BLAKE2B 
47e295219c1ada7bee4f0340cc169620c5b91abd1f72b933289ef2dea0c5ba088673f2d1348d444f662e9f6c2638ee6dfd3e8df1fa8344bc7c48adf1a3a96d3f
 SHA512 
562acbf0e825ad41458c5b6065592a45b8bac92cd64b20619027fe4d0bec60a22c5191c7a7ed6b216d8cf5c9e027f58a6cdca69dd3a11ec6f6d348ef2f13bb38
+DIST sshuttle-1.0.3.tar.gz 79216 BLAKE2B 
fefc93654c4991bad54de6b156916ee656f7d460d609c5333b15c601e9b2b0169c1670e911988dfa8290a5bc1885d94f9ec9656066d2b13da0b4d53d9739297a
 SHA512 
22132dba0e6b7dd835f0af1368a5e8c3a95db66e11ffec9ec3cae72cc7ed4eec13580eeceb08071bee12cae8169852772578f8e29a69583cb79c71d350f474bb

diff --git a/net-proxy/sshuttle/sshuttle-1.0.3.ebuild 
b/net-proxy/sshuttle/sshuttle-1.0.3.ebuild
new file mode 100644
index 000..5ef1619ca36
--- /dev/null
+++ b/net-proxy/sshuttle/sshuttle-1.0.3.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1 linux-info
+
+DESCRIPTION="Transparent proxy server that works as a poor man's VPN using ssh"
+HOMEPAGE="https://github.com/sshuttle/sshuttle 
https://pypi.org/project/sshuttle/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   dev-python/sphinx
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+RDEPEND="|| ( net-firewall/iptables net-firewall/nftables )"
+
+CONFIG_CHECK="~NETFILTER_XT_TARGET_HL ~IP_NF_TARGET_REDIRECT ~IP_NF_MATCH_TTL 
~NF_NAT"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't run tests via setup.py pytest
+   sed -i "/setup_requires=/s/'pytest-runner'//" setup.py || die
+
+   # don't require pytest-cov when running tests
+   sed -i "s/^addopts =/#\0/" setup.cfg || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   emake -j1 -C docs html man
+}
+
+python_install_all() {
+   HTML_DOCS=( docs/_build/html/. )
+   doman docs/_build/man/*
+   distutils-r1_python_install_all
+}



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

2020-08-02 Thread Aaron Bauman
commit: e3b64b016c7240f71bca3de6f4ba6fc14d1cfa86
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 22:43:35 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 22:43:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3b64b01

package.mask: last-rite app-metrics/collectd sys-fs/owfs

Bug: https://bugs.gentoo.org/735502
Bug: https://bugs.gentoo.org/707438
Bug: https://bugs.gentoo.org/701254
Bug: https://bugs.gentoo.org/730514
Bug: https://bugs.gentoo.org/687830
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 91248043131..5b80c645afb 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Py2 only. m-n. Bug #735502. rdep.
+# Removal in 30 days
+app-metrics/collectd
+sys-fs/owfs
+
 # Aaron Bauman  (2020-08-02)
 # Py2 only. m-n. Bug #735524
 # Removal in 30 days



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

2020-08-02 Thread Thomas Deutschmann
commit: 9fdb3acb257e7103a89e8f47fe8cb23e614efe84
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  2 10:44:56 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  2 22:40:14 2020 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=9fdb3acb

Make use of expand_file() for --linuxrc option

Bug: https://bugs.gentoo.org/483146
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gen_determineargs.sh | 13 +
 gen_initramfs.sh | 13 +
 genkernel.conf   |  3 +++
 3 files changed, 21 insertions(+), 8 deletions(-)

diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index 0a404ee..3a7882d 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -353,6 +353,7 @@ determine_real_args() {
set_config_with_override BOOL   RAMDISKMODULES
CMD_RAMDISKMODULES"yes"
set_config_with_override BOOL   ALLRAMDISKMODULES 
CMD_ALLRAMDISKMODULES "no"
set_config_with_override STRING INITRAMFS_OVERLAY 
CMD_INITRAMFS_OVERLAY
+   set_config_with_override STRING LINUXRC   
CMD_LINUXRC
set_config_with_override BOOL   MOUNTBOOT 
CMD_MOUNTBOOT "yes"
set_config_with_override BOOL   BUILD_STATIC  
CMD_STATIC"no"
set_config_with_override BOOL   SAVE_CONFIG   
CMD_SAVE_CONFIG   "yes"
@@ -1145,6 +1146,18 @@ determine_real_args() {
fi
fi
 
+   if [ -n "${LINUXRC}" ]
+   then
+   LINUXRC=$(expand_file "${CMD_LINUXRC}" 2>/dev/null)
+   if [ -z "${LINUXRC}" ]
+   then
+   gen_die "--linuxrc value '${CMD_LINUXRC}' 
failed to expand!"
+   elif [ ! -e "${LINUXRC}" ]
+   then
+   gen_die "--linuxrc file '${LINUXRC}' does not 
exist!"
+   fi
+   fi
+
need_tar=yes
fi
 

diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index 24ddcb5..3cd535c 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -1795,18 +1795,14 @@ append_auxilary() {
done
 
local mylinuxrc=
-   if [ -f "${CMD_LINUXRC}" ]
+   if [ -n "${LINUXRC}" ]
then
-   mylinuxrc="${CMD_LINUXRC}"
+   mylinuxrc="${LINUXRC}"
print_info 2 "$(get_indent 2)>> Copying user specified linuxrc 
'${mylinuxrc}' to '/init' ..."
-   cp -aL "${mylinuxrc}" "${TDIR}"/init 2>/dev/null \
-   || gen_die "Failed to copy '${mylinuxrc}' to 
'${TDIR}/init'!"
elif isTrue "${NETBOOT}"
then
mylinuxrc="${GK_SHARE}/netboot/linuxrc.x"
print_info 2 "$(get_indent 2)>> Copying netboot specific 
linuxrc '${mylinuxrc}' to '/init' ..."
-   cp -aL "${mylinuxrc}" "${TDIR}"/init 2>/dev/null \
-   || gen_die "Failed to copy '${mylinuxrc}' to 
'${TDIR}/init'!"
else
if [ -f "${GK_SHARE}/arch/${ARCH}/linuxrc" ]
then
@@ -1816,10 +1812,11 @@ append_auxilary() {
fi
 
print_info 2 "$(get_indent 2)>> Copying '${mylinuxrc}' to 
'/init' ..."
-   cp -aL "${mylinuxrc}" "${TDIR}"/init 2>/dev/null \
-   || gen_die "Failed to copy '${mylinuxrc}' to 
'${TDIR}/init'!"
fi
 
+   cp -aL "${mylinuxrc}" "${TDIR}"/init 2>/dev/null \
+   || gen_die "Failed to copy '${mylinuxrc}' to '${TDIR}/init'!"
+
# Make sure it's executable
chmod 0755 "${TDIR}"/init || gen_die "Failed to chmod of '${TDIR}/init' 
to 0755!"
 

diff --git a/genkernel.conf b/genkernel.conf
index 93cf8e7..654f185 100644
--- a/genkernel.conf
+++ b/genkernel.conf
@@ -363,6 +363,9 @@ DEFAULT_KERNEL_SOURCE="/usr/src/linux"
 #MODULES_group1="some-module"
 #MODULES_group2="" # Load no modules for this group
 
+# Override the default used linuxrc script.
+#LINUXRC="/path/to/custom/linuxrc"
+
 # Archive file created using tar containing modules after
 # the callbacks have run
 #MODULESPACKAGE="/path/to/file.tar.xz"



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

2020-08-02 Thread Thomas Deutschmann
commit: febeae936c626eb4c0a44654cda2a6351671098b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  2 22:01:21 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  2 22:42:11 2020 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=febeae93

gen_determineargs.sh: determine_real_args(): Set KERNEL_MODULES_PREFIX to 
temporary location when --no-install is set

This will ensure that we won't install anything on user's system when
--no-install was set.

While here, make use of expand_file() for --kernel-modules-prefix.

Bug: https://bugs.gentoo.org/505810
Signed-off-by: Thomas Deutschmann  gentoo.org>

 gen_determineargs.sh | 25 +
 genkernel| 15 ---
 2 files changed, 25 insertions(+), 15 deletions(-)

diff --git a/gen_determineargs.sh b/gen_determineargs.sh
index 3a7882d..4457fe4 100755
--- a/gen_determineargs.sh
+++ b/gen_determineargs.sh
@@ -1170,6 +1170,31 @@ determine_real_args() {
fi
fi
 
+   if ! isTrue "${CMD_INSTALL}"
+   then
+   if [ -n "${KERNEL_MODULES_PREFIX}" ]
+   then
+   print_warning 1 '--no-install is set; Ignoring 
--kernel-modules-prefix ...'
+   fi
+
+   # User does not want that anything will get installed
+   # so install modules into our temporary directory instead.
+   KERNEL_MODULES_PREFIX="${TEMP}/mod_prefix"
+   elif [ -n "${KERNEL_MODULES_PREFIX}" ]
+   then
+   KERNEL_MODULES_PREFIX=$(expand_file 
"${CMD_KERNEL_MODULES_PREFIX}")
+   if [ -z "${KERNEL_MODULES_PREFIX}" ]
+   then
+   gen_die "Failed to expand set --kernel-modules-prefix 
'${CMD_KERNEL_MODULES_PREFIX}'!"
+   fi
+
+   if [ ! -d "${KERNEL_MODULES_PREFIX}" ]
+   then
+   print_warning 3 "Set --kernel-modules-prefix 
'${KERNEL_MODULES_PREFIX}' does not exist; Will try to create ..."
+   mkdir -p "${KERNEL_MODULES_PREFIX}" || gen_die "Failed 
to create '${KERNEL_MODULES_PREFIX}'!"
+   fi
+   fi
+
MICROCODE=${MICROCODE,,}
case "${MICROCODE}" in
all|amd|intel) ;;

diff --git a/genkernel b/genkernel
index a155a9c..575ba2b 100755
--- a/genkernel
+++ b/genkernel
@@ -296,21 +296,6 @@ then
 
if ! isTrue "${BUILD_STATIC}"
then
-   if ! isTrue "${CMD_INSTALL}" && [ -z "${KERNEL_MODULE_PREFIX}" ]
-   then
-   # We have to set $KERNEL_MODULE_PREFIX to avoid 
installing files
-   # to /lib/modules because --no-install was set
-   KERNEL_MODULE_PREFIX="$(mktemp -d -p "${TEMP}" 
kerncache-modules_XXX 2>/dev/null)"
-   if [ -z "${KERNEL_MODULE_PREFIX}" ]
-   then
-   gen_die "Internal error: Variable 
'KERNEL_MODULE_PREFIX' is empty; mktemp() for kerncache modules failed!"
-   else
-   print_info 5 '' 1 0
-   print_info 5 "KERNEL_MODULE_PREFIX set to 
'${KERNEL_MODULE_PREFIX}' because --kerncache is used but --no-install was set 
..."
-   mkdir "${KERNEL_MODULE_PREFIX}/lib" || gen_die 
"Failed to create '${KERNEL_MODULE_PREFIX}/lib'!"
-   fi
-   fi
-
print_info 1 '' 1 0
gen_kerncache_extract_modules
fi



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

2020-08-02 Thread Thomas Deutschmann
commit: 1d4ba1fa03d91a8cef9df6eb43c48d1064264812
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sat Aug  1 22:29:13 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sat Aug  1 22:29:13 2020 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=1d4ba1fa

gen_package.sh: gen_kerncache_extract_kernel(): Create target directory if 
missing

Signed-off-by: Thomas Deutschmann  gentoo.org>

 gen_package.sh | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/gen_package.sh b/gen_package.sh
index 271f038..5182d51 100755
--- a/gen_package.sh
+++ b/gen_package.sh
@@ -204,15 +204,18 @@ gen_kerncache_extract_kernel() {
 }
 
 gen_kerncache_extract_modules() {
-   print_info 1 "Extracting kerncache kernel modules from '${KERNCACHE}' 
..."
-   if [ -n "${INSTALL_MOD_PATH}" ]
+   local modules_dir=/lib
+   [ -n "${INSTALL_MOD_PATH}" ] && modules_dir="${INSTALL_MOD_PATH}/lib"
+
+   if [ ! -d "${modules_dir}" ]
then
-   "${TAR_COMMAND}" -xf "${KERNCACHE}" --strip-components 1 -C 
"${INSTALL_MOD_PATH}"/lib \
-   || gen_die "Failed to extract kerncache modules from 
'${KERNCACHE}' to '${INSTALL_MOD_PATH}/lib'!"
-   else
-   "${TAR_COMMAND}" -xf "${KERNCACHE}" --strip-components 1 -C 
/lib \
-   || gen_die "Failed to extract kerncache modules from 
'${KERNCACHE}' to '${INSTALL_MOD_PATH}/lib'!"
+   mkdir -p "${modules_dir}" ||  gen_die "Failed to create 
'${modules_dir}'!"
fi
+
+   print_info 1 "Extracting kerncache kernel modules from '${KERNCACHE}' 
into '${modules_dir}' ..."
+
+   "${TAR_COMMAND}" -xf "${KERNCACHE}" --strip-components 1 -C 
"${modules_dir}" \
+   || gen_die "Failed to extract kerncache modules from 
'${KERNCACHE}' to '${modules_dir}'!"
 }
 
 gen_kerncache_extract_config() {



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

2020-08-02 Thread Thomas Deutschmann
commit: 2d46cd1a6950e674254306d8ba2229b5d4ff441f
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  2 22:28:50 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  2 22:42:11 2020 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=2d46cd1a

gen_initramfs.sh: append_modules(): Output used modules src directory

Signed-off-by: Thomas Deutschmann  gentoo.org>

 gen_initramfs.sh | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gen_initramfs.sh b/gen_initramfs.sh
index 3cd535c..84629a2 100755
--- a/gen_initramfs.sh
+++ b/gen_initramfs.sh
@@ -1678,8 +1678,6 @@ append_modules() {
local modules_dstdir="${TDIR}/lib/modules/${KV}"
local modules_srcdir="/lib/modules/${KV}"
 
-   print_info 2 "$(get_indent 2)modules: >> Copying modules to initramfs 
..."
-
if [ -n "${KERNEL_MODULES_PREFIX}" ]
then
modules_srcdir="${KERNEL_MODULES_PREFIX%/}${modules_srcdir}"
@@ -1695,6 +1693,8 @@ append_modules() {
 
cd "${modules_srcdir}" || gen_die "Failed to chdir to 
'${modules_srcdir}'!"
 
+   print_info 2 "$(get_indent 2)modules: >> Copying modules from 
'${modules_srcdir}' to initramfs ..."
+
local i= mymod=
local MOD_EXT="$(modules_kext)"
local n_copied_modules=0



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

2020-08-02 Thread Thomas Deutschmann
commit: 6882485e665f8b6eb388696dfc0fd983faa9d922
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  2 10:40:47 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  2 22:40:14 2020 +
URL:https://gitweb.gentoo.org/proj/genkernel.git/commit/?id=6882485e

Rename INSTALL_MOD_PATH option to KERNEL_MODULES_PREFIX

Before this change we had different names in config file
and command-line for the same thing.

With this change we have one option named KERNEL_MODULES_PREFIX and its
corresponding --kernel-modules-prefix command-line argument.

Signed-off-by: Thomas Deutschmann  gentoo.org>

 doc/genkernel.8.txt  |  6 +++---
 gen_cmdline.sh   |  9 +
 gen_compile.sh   | 16 
 gen_determineargs.sh |  2 +-
 gen_initramfs.sh |  4 ++--
 gen_moddeps.sh   |  6 +++---
 gen_package.sh   | 13 ++---
 genkernel| 15 ---
 genkernel.conf   |  3 +--
 9 files changed, 37 insertions(+), 37 deletions(-)

diff --git a/doc/genkernel.8.txt b/doc/genkernel.8.txt
index 50f1471..8c527b0 100644
--- a/doc/genkernel.8.txt
+++ b/doc/genkernel.8.txt
@@ -198,8 +198,8 @@ specified.
 *--*[*no-*]*module-rebuild*::
 Runs, or does not run "emerge --ignore-default-opts --buildpkg=n 
--usepkg=n --quiet-build=y @module-rebuild"
 to build out-of-tree modules when possible, i.e. when non-static
-kernel and modules will be build, installed, no custom
-'INSTALL_MOD_PATH' is set, '/var/lib/module-rebuild/moduledb' exists
+kernel and modules will be build, installed,
+*--kernel-modules-prefix* is not set, '/var/lib/module-rebuild/moduledb' 
exists
 and is not empty.
 
 NOTE: Command can be customized using '--module-rebuild-cmd' command-line
@@ -231,7 +231,7 @@ KERNEL LOCATIONS
 Use the special value 'default' to force usage of default kernel
 config.
 
-*--module-prefix*=::
+*--kernel-modules-prefix*=::
 Prefix to kernel module destination, modules will be installed in
 '/lib/modules'.
 

diff --git a/gen_cmdline.sh b/gen_cmdline.sh
index f502350..5cc0d87 100755
--- a/gen_cmdline.sh
+++ b/gen_cmdline.sh
@@ -80,7 +80,8 @@ longusage() {
   echo "   --kernel-localversion=<...>"
   echo "   Set kernel CONFIG_LOCALVERSION, use 
special value"
   echo "   'UNSET' to unset any set LOCALVERSION"
-  echo "   --module-prefix=   Prefix to kernel module destination, 
modules"
+  echo "   --kernel-modules-prefix="
+  echo "   Prefix to kernel module destination, 
modules"
   echo "   will be installed in 
/lib/modules"
   echo "  Low-Level Compile settings"
   echo "   --cross-compile="
@@ -680,9 +681,9 @@ parse_cmdline() {
CMD_KERNEL_LOCALVERSION="${*#*=}"
print_info 3 "CMD_KERNEL_LOCALVERSION: 
${CMD_KERNEL_LOCALVERSION}"
;;
-   --module-prefix=*)
-   CMD_INSTALL_MOD_PATH="${*#*=}"
-   print_info 3 "CMD_INSTALL_MOD_PATH: 
${CMD_INSTALL_MOD_PATH}"
+   --kernel-modules-prefix=*)
+   CMD_KERNEL_MODULES_PREFIX="${*#*=}"
+   print_info 3 "CMD_KERNEL_MODULES_PREFIX: 
${CMD_KERNEL_MODULES_PREFIX}"
;;
--cachedir=*)
CACHE_DIR="${*#*=}"

diff --git a/gen_compile.sh b/gen_compile.sh
index 0fa6912..d755150 100755
--- a/gen_compile.sh
+++ b/gen_compile.sh
@@ -20,10 +20,10 @@ compile_external_modules() {
return
fi
 
-   if [ -n "${INSTALL_MOD_PATH}" ]
+   if [ -n "${KERNEL_MODULES_PREFIX}" ]
then
# emerge would install to a different location
-   print_warning 1 "$(get_indent 1)>> INSTALL_MOD_PATH set; 
Skipping '${MODULEREBUILD_CMD}' ..."
+   print_warning 1 "$(get_indent 1)>> KERNEL_MODULES_PREFIX set; 
Skipping '${MODULEREBUILD_CMD}' ..."
return
fi
 
@@ -182,7 +182,7 @@ compile_modules() {
 
compile_generic modules kernel
 
-   [ -n "${INSTALL_MOD_PATH}" ] && local -x 
INSTALL_MOD_PATH="${INSTALL_MOD_PATH}"
+   [ -n "${KERNEL_MODULES_PREFIX}" ] && local -x 
INSTALL_MOD_PATH="${KERNEL_MODULES_PREFIX%/}"
if [ "${CMD_STRIP_TYPE}" == "all" -o "${CMD_STRIP_TYPE}" == "modules" ]
then
print_info 1 "$(get_indent 1)>> Installing ${KV} modules (and 
stripping) ..."
@@ -195,10 +195,10 @@ compile_modules() {
compile_generic "modules_install" kernel
 
print_info 1 "$(get_indent 1)>> Generating module dependency data ..."
-   if [ -n "${INSTALL_MOD_PATH}" ]
+   if [ -n "${KERNEL_MODULES_PREFIX}" ]
then
-   depmod -a -e -F "${KERNEL_OUTPUTDIR}"/System.map -b 
"${INSTALL_MOD_PATH}" ${KV} \
-   || gen_die "depmod 
(INSTALL_MOD_PATH=${INSTALL_MOD_PATH}) 

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

2020-08-02 Thread Aaron Bauman
commit: 19df9fd53451ecabeda6c7423c9e05c0e506b1f4
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 22:39:25 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 22:39:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19df9fd5

package.mask: last-rite www-misc/nx_util

Bug: https://bugs.gentoo.org/735524
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 8cb0dedc989..91248043131 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Py2 only. m-n. Bug #735524
+# Removal in 30 days
+www-misc/nx_util
+
 # Aaron Bauman  (2020-08-02)
 # Unmaintained. New release upstream. Py3.6 only.
 # Removal in 30 days. Bug #696484,#718466



[gentoo-commits] repo/gentoo:master commit in: net-nntp/sabnzbd/

2020-08-02 Thread Thomas Deutschmann
commit: 72532535791a43d25a7f40b5cd16633e79a7724b
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Sun Aug  2 22:31:48 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Sun Aug  2 22:32:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72532535

net-nntp/sabnzbd: bump to v3.0.0

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

 net-nntp/sabnzbd/Manifest |   1 +
 net-nntp/sabnzbd/sabnzbd-3.0.0.ebuild | 121 ++
 2 files changed, 122 insertions(+)

diff --git a/net-nntp/sabnzbd/Manifest b/net-nntp/sabnzbd/Manifest
index 57137ee640f..ef487847a5a 100644
--- a/net-nntp/sabnzbd/Manifest
+++ b/net-nntp/sabnzbd/Manifest
@@ -1,3 +1,4 @@
 DIST SABnzbd-2.3.9-src.tar.gz 2738773 BLAKE2B 
fbb765732c0aab6a47a4d4827d21b1b029c6d40c1c6c335692964210dc4c389e94cd1cdca45bfb3fb8c2fa9adc84f33df0fe3d23a0e4f9143a095eec042a5cf0
 SHA512 
10a39db9ad7f6d441166da97194b7a281aacd1900f7687bca72c6c2b555114bc2bbdaaba51cb9fcec57aa1b782f20609a07528484ad911ffd9f9eabb54a324fa
+DIST SABnzbd-3.0.0-src.tar.gz 2673275 BLAKE2B 
418ffd55c395c9d31e80f087c5e8c47e30bd86dbd8783afc173c9c54c6259b0d4607f5377ff3d83673f8e8ba24f46d5ad923a933a415097a7e48739f01039b45
 SHA512 
70441d76ad2e6cba33b033a85a29815fc50e9c714a275120bc7010e5e0cfb885f7b3d42f497c4ce46123c9bce2d33f778865d9a17878f6fe5811849faa6fe215
 DIST SABnzbd-3.0.0RC1-src.tar.gz 2762495 BLAKE2B 
5b623e8cc141426459f3d62c3652df41559946a0fd691163428e7b10dfda5518e9701b1a250ed0a7cda6bfda705869ee6a038184ba8f86cfea70d9ea2d09d613
 SHA512 
00205b1cb4a74455fc48b0ce0579e6849d08b1cedb28ab01f53da8f37bd75268ced201c9e0510ffdf7b51eee6e666e73bec01f537e1ecbdb7f3f6115422b3074
 DIST SABnzbd-3.0.0RC2-src.tar.gz 2673573 BLAKE2B 
be45d4dae2d51b2f9ae6e9693a0c61482892b2e9c7fdf09b727af3efaeb26d385cef469c9ab1a13b8456794de7d5c8d9e9252b551eeda190943df68eed3ccafc
 SHA512 
d556beb84a6bb9c20a29d17fab1caee092f7d00688301c22d4286cdcc76dd34d36c7d9453367aa3def3a2833f22f7b85c573558f2806877c8c2606d44824eb5c

diff --git a/net-nntp/sabnzbd/sabnzbd-3.0.0.ebuild 
b/net-nntp/sabnzbd/sabnzbd-3.0.0.ebuild
new file mode 100644
index 000..afa365fd3af
--- /dev/null
+++ b/net-nntp/sabnzbd/sabnzbd-3.0.0.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+# Require python-2 with sqlite USE flag
+PYTHON_COMPAT=( python3_{6..8} )
+PYTHON_REQ_USE="sqlite"
+
+inherit python-single-r1 systemd
+
+MY_PV="${PV/_rc/RC}"
+MY_PV="${MY_PV//_pre*}"
+
+MY_P="${PN/sab/SAB}-${MY_PV}"
+
+DESCRIPTION="Binary newsgrabber with web-interface"
+HOMEPAGE="https://sabnzbd.org/;
+SRC_URI="https://github.com/sabnzbd/sabnzbd/releases/download/${MY_PV}/${MY_P}-src.tar.gz;
+
+# Sabnzbd is GPL-2 but bundles software with the following licenses.
+LICENSE="GPL-2 BSD LGPL-2 MIT BSD-1"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="+7za +rar unzip"
+
+# Sabnzbd is installed to /usr/share/ as upstream makes it clear they should 
not
+# be in python's sitedir.  See: 
https://sabnzbd.org/wiki/advanced/unix-packaging
+
+COMMON_DEPS="
+   acct-user/sabnzbd
+   acct-group/sabnzbd
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/chardet[${PYTHON_MULTI_USEDEP}]
+   dev-python/cheetah3[${PYTHON_MULTI_USEDEP}]
+   dev-python/cherrypy[${PYTHON_MULTI_USEDEP}]
+   dev-python/configobj[${PYTHON_MULTI_USEDEP}]
+   dev-python/cryptography[${PYTHON_MULTI_USEDEP}]
+   dev-python/feedparser[${PYTHON_MULTI_USEDEP}]
+   dev-python/notify2[${PYTHON_MULTI_USEDEP}]
+   dev-python/portend[${PYTHON_MULTI_USEDEP}]
+   >=dev-python/sabyenc-3.3.1[${PYTHON_MULTI_USEDEP}]
+   ')
+"
+
+DEPEND="${COMMON_DEPS}"
+
+RDEPEND="
+   ${COMMON_DEPS}
+   >=app-arch/par2cmdline-0.4
+   net-misc/wget
+   7za? ( app-arch/p7zip )
+   rar? ( || ( app-arch/unrar app-arch/rar ) )
+   unzip? ( >=app-arch/unzip-5.5.2 )
+"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+S="${WORKDIR}/${MY_P}"
+
+pkg_setup() {
+   MY_HOMEDIR="/var/lib/${PN}"
+   python-single-r1_pkg_setup
+}
+
+src_install() {
+   local d
+
+   for d in email icons interfaces locale po sabnzbd scripts tools; do
+   insinto "/usr/share/${PN}/${d}"
+   doins -r ${d}/*
+   done
+
+   exeinto "/usr/share/${PN}"
+   doexe SABnzbd.py
+
+   python_fix_shebang "${ED}/usr/share/${PN}"
+   python_optimize "${ED}/usr/share/${PN}"
+
+   newinitd "${FILESDIR}/${PN}-r1.initd" "${PN}"
+   newconfd "${FILESDIR}/${PN}.confd" "${PN}"
+
+   diropts -o "${PN}" -g "${PN}"
+   dodir "/etc/${PN}"
+   keepdir "/var/log/${PN}"
+
+   insinto "/etc/${PN}"
+   insopts -m 0600 -o "${PN}" -g "${PN}"
+   newins "${FILESDIR}"/${PN}-r1.ini ${PN}.ini
+
+   dodoc {ABOUT,ISSUES}.txt README.mkd licenses/*
+
+   

[gentoo-commits] repo/gentoo:master commit in: games-simulation/flightgear-data/, games-simulation/flightgear/files/, ...

2020-08-02 Thread Maciej Mrozowski
commit: ecfd4818dec077ddfc863298bc209ffdd08a7766
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Sun Aug  2 21:02:34 2020 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Sun Aug  2 22:30:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ecfd4818

games-simulation/flightgear: Version bump, remove old, fixes

Signed-off-by: Maciej Mrozowski  gentoo.org>
Closes: https://bugs.gentoo.org/724694
Bug: https://bugs.gentoo.org/728996

 dev-games/simgear/Manifest |  2 +-
 ...ear-2019.1.1.ebuild => simgear-2020.1.2.ebuild} |  6 +--
 dev-games/simgear/simgear-.ebuild  |  6 +--
 games-simulation/flightgear-data/Manifest  |  2 +-
 1.1.ebuild => flightgear-data-2020.1.2.ebuild} |  2 +-
 .../flightgear-data/flightgear-data-.ebuild|  2 +-
 games-simulation/flightgear/Manifest   |  2 +-
 .../files/flightgear-2018.3.2-cmake.patch  | 24 
 .../files/flightgear-2020.1.2-cmake.patch  | 45 ++
 ...-2019.1.1.ebuild => flightgear-2020.1.2.ebuild} | 19 +
 games-simulation/flightgear/flightgear-.ebuild | 14 ---
 11 files changed, 76 insertions(+), 48 deletions(-)

diff --git a/dev-games/simgear/Manifest b/dev-games/simgear/Manifest
index 7e80f426ea0..5662c13e156 100644
--- a/dev-games/simgear/Manifest
+++ b/dev-games/simgear/Manifest
@@ -1 +1 @@
-DIST simgear-2019.1.1.tar.bz2 1370523 BLAKE2B 
2f61b2b4b7716b7f15852ff68bee6b749b7daa04caa27927a53eb6d6e4346c46c835938c95436250da767efd2e8043aacc0cb444b37dacde78acada98ffdb4e8
 SHA512 
83fe4330cf27b9298719f53f2fccde2af77bacdc6f430cc22c8bdfb475fe9b6e01578c1225af21e4e1433c7d2f2b00427454064f942359ba4c1e9896e7fe05d2
+DIST simgear-2020.1.2.tar.bz2 1393059 BLAKE2B 
62fa15d88368177e23cf52edf51e8c56252399d8f2661e518911c1093a0d7f9f11069da8d65b479f2d4b45792dcd011194e57fa99ac3991f749e8196aaff9552
 SHA512 
c2e835de471f374a6c33cfd1769b7079d178ee66075bfe87cc9eb1f06dc2648db93c31f62f0ac7a664703406817cb1e909a531812cb76c99cd8751eb7e6782e7

diff --git a/dev-games/simgear/simgear-2019.1.1.ebuild 
b/dev-games/simgear/simgear-2020.1.2.ebuild
similarity index 94%
rename from dev-games/simgear/simgear-2019.1.1.ebuild
rename to dev-games/simgear/simgear-2020.1.2.ebuild
index be0ff641626..318b7167413 100644
--- a/dev-games/simgear/simgear-2019.1.1.ebuild
+++ b/dev-games/simgear/simgear-2020.1.2.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit cmake-utils toolchain-funcs flag-o-matic
+inherit cmake toolchain-funcs flag-o-matic
 
 DESCRIPTION="Development library for simulation games"
 HOMEPAGE="http://www.simgear.org/;
@@ -68,5 +68,5 @@ src_configure() {
append-flags -msse2 -mfpmath=sse
fi
 
-   cmake-utils_src_configure
+   cmake_src_configure
 }

diff --git a/dev-games/simgear/simgear-.ebuild 
b/dev-games/simgear/simgear-.ebuild
index d5d56055482..b0146cf1b28 100644
--- a/dev-games/simgear/simgear-.ebuild
+++ b/dev-games/simgear/simgear-.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
-inherit eutils cmake-utils toolchain-funcs flag-o-matic git-r3
+inherit eutils cmake toolchain-funcs flag-o-matic git-r3
 
 DESCRIPTION="Development library for simulation games"
 HOMEPAGE="http://www.simgear.org/;
@@ -70,5 +70,5 @@ src_configure() {
append-flags -msse2 -mfpmath=sse
fi
 
-   cmake-utils_src_configure
+   cmake_src_configure
 }

diff --git a/games-simulation/flightgear-data/Manifest 
b/games-simulation/flightgear-data/Manifest
index 001e1fa1533..35816de847b 100644
--- a/games-simulation/flightgear-data/Manifest
+++ b/games-simulation/flightgear-data/Manifest
@@ -1 +1 @@
-DIST FlightGear-2019.1.1-data.tar.bz2 1748213475 BLAKE2B 
6be5021a666d8363fd97e777e0674d61875e1309a391647f6ecebcc4443d494821a737709c135dc45521ae30401479f6f74c28d7db8da992fa279ae461e16a2c
 SHA512 
e5697f587c272036d3f5cfd7dcc7464e3eae7251e41425a91c80eabccbf711a6416a4746b5bf39a2806dc3d4f6839359483a0165899eb4ec812308b2b5da060a
+DIST FlightGear-2020.1.2-data.tar.bz2 1954932485 BLAKE2B 
e3f06ed6a36d2cfc6518f4a1cac4aaf28df2b7e1fb4720488dd38f3df7dfccb1cc9b48e0f216fa79db5fc3b380dcdd1161325ba0195cc14aadbc2d79fab39031
 SHA512 
16329d230f8cfd35dbd60aad0afc66225134e5c2f98abb89ca271837f04917f6aa876fc35868783a3a3d56c4ba1d25f429436de516a8086f4b7e296a0d352e03

diff --git a/games-simulation/flightgear-data/flightgear-data-2019.1.1.ebuild 
b/games-simulation/flightgear-data/flightgear-data-2020.1.2.ebuild
similarity index 98%
rename from games-simulation/flightgear-data/flightgear-data-2019.1.1.ebuild
rename to games-simulation/flightgear-data/flightgear-data-2020.1.2.ebuild
index 30bc1d192aa..d5d9b497664 100644
--- a/games-simulation/flightgear-data/flightgear-data-2019.1.1.ebuild
+++ 

[gentoo-commits] repo/gentoo:master commit in: dev-games/openscenegraph/

2020-08-02 Thread Maciej Mrozowski
commit: 699b71b8401ae95e23e5c23e5ca57a2f408a2dd7
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Sun Aug  2 22:20:43 2020 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Sun Aug  2 22:30:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=699b71b8

dev-games/openscenegraph: Fix SLOT for all and subslot for 3.6.5

Signed-off-by: Maciej Mrozowski  gentoo.org>

 dev-games/openscenegraph/openscenegraph-3.5.5.ebuild | 2 +-
 dev-games/openscenegraph/openscenegraph-3.6.4.ebuild | 2 +-
 dev-games/openscenegraph/openscenegraph-3.6.5.ebuild | 7 ++-
 3 files changed, 4 insertions(+), 7 deletions(-)

diff --git a/dev-games/openscenegraph/openscenegraph-3.5.5.ebuild 
b/dev-games/openscenegraph/openscenegraph-3.5.5.ebuild
index 250b3589885..00182829434 100644
--- a/dev-games/openscenegraph/openscenegraph-3.5.5.ebuild
+++ b/dev-games/openscenegraph/openscenegraph-3.5.5.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
-WX_GTK_VER="3.0"
+WX_GTK_VER="3.0-gtk3"
 
 inherit cmake-utils flag-o-matic wxwidgets vcs-snapshot
 

diff --git a/dev-games/openscenegraph/openscenegraph-3.6.4.ebuild 
b/dev-games/openscenegraph/openscenegraph-3.6.4.ebuild
index c8d6dbf4fbb..694ca9a6e5e 100644
--- a/dev-games/openscenegraph/openscenegraph-3.6.4.ebuild
+++ b/dev-games/openscenegraph/openscenegraph-3.6.4.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 MY_PN="OpenSceneGraph"
 MY_P=${MY_PN}-${PV}
-WX_GTK_VER="3.0"
+WX_GTK_VER="3.0-gtk3"
 inherit cmake flag-o-matic wxwidgets
 
 DESCRIPTION="Open source high performance 3D graphics toolkit"

diff --git a/dev-games/openscenegraph/openscenegraph-3.6.5.ebuild 
b/dev-games/openscenegraph/openscenegraph-3.6.5.ebuild
index 4614315778a..6a1d992b139 100644
--- a/dev-games/openscenegraph/openscenegraph-3.6.5.ebuild
+++ b/dev-games/openscenegraph/openscenegraph-3.6.5.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 MY_PN="OpenSceneGraph"
 MY_P=${MY_PN}-${PV}
-WX_GTK_VER="3.0"
+WX_GTK_VER="3.0-gtk3"
 inherit cmake flag-o-matic wxwidgets
 
 DESCRIPTION="Open source high performance 3D graphics toolkit"
@@ -13,7 +13,7 @@ HOMEPAGE="http://www.openscenegraph.org/;
 SRC_URI="https://github.com/${PN}/${MY_PN}/archive/${MY_P}.tar.gz;
 
 LICENSE="wxWinLL-3 LGPL-2.1"
-SLOT="0/160" # NOTE: CHECK WHEN BUMPING! Subslot is SOVERSION
+SLOT="0/161" # NOTE: CHECK WHEN BUMPING! Subslot is SOVERSION
 KEYWORDS="~amd64 ~hppa ~ppc ~ppc64 ~x86"
 IUSE="asio curl dicom debug doc egl examples ffmpeg fltk fox gdal gif glut
 gstreamer jpeg las lua openexr openinventor osgapps pdf png sdl sdl2
@@ -94,9 +94,6 @@ src_configure() {
-DDYNAMIC_OPENSCENEGRAPH=ON
-DLIB_POSTFIX=${libdir/lib}
-DOPENGL_PROFILE=GL2 #GL1 GL2 GL3 GLES1 GLES3 GLES3
-   -DOSG_ENVVAR_SUPPORTED=ON
-   -DOSG_PROVIDE_READFILE=ON
-   -DOSG_USE_LOCAL_LUA_SOURCE=OFF
$(cmake_use_find_package asio Asio)
$(cmake_use_find_package curl CURL)
-DBUILD_DOCUMENTATION=$(usex doc)



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

2020-08-02 Thread Maciej Mrozowski
commit: 8dd517bffc00a11f46e10778063f3abb292ec012
Author: Maciej Mrozowski  gentoo  org>
AuthorDate: Sun Aug  2 22:23:31 2020 +
Commit: Maciej Mrozowski  gentoo  org>
CommitDate: Sun Aug  2 22:30:16 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dd517bf

package.mask: unmask dev-games/openscenegraph-3.6.5

Signed-off-by: Maciej Mrozowski  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 1daf1013e85..8cb0dedc989 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -618,10 +618,6 @@ sci-mathematics/geogebra
 # for security. unmask as needed.
 dev-java/icedtea-web
 
-# Andreas Sturmlechner  (2020-03-14)
-# Breaks at least dev-games/simgear right now, bug #709878.
-~dev-games/openscenegraph-3.6.5
-
 # Eray Aslan  (2020-03-09)
 # Mask experimental software
 =mail-mta/postfix-3.6*



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

2020-08-02 Thread Sam James
commit: 3672e87eec86bdc2a4cbf1c5fb4b30b421b737de
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 22:22:36 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:22:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3672e87e

dev-python/theano: use correct DISTUTILS_USE_SETUPTOOLS

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/theano/theano-1.0.5.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/theano/theano-1.0.5.ebuild 
b/dev-python/theano/theano-1.0.5.ebuild
index 9adbc14e397..375aa654122 100644
--- a/dev-python/theano/theano-1.0.5.ebuild
+++ b/dev-python/theano/theano-1.0.5.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7,8,9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1 eutils
 



[gentoo-commits] repo/gentoo:master commit in: sys-process/parallel/

2020-08-02 Thread Sam James
commit: 16b04dbfa6e0a9638552a7094d0e1c6c2aef9ebb
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 21:55:21 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16b04dbf

sys-process/parallel: cleanup old

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 sys-process/parallel/Manifest |  1 -
 sys-process/parallel/parallel-20200522.ebuild | 23 ---
 2 files changed, 24 deletions(-)

diff --git a/sys-process/parallel/Manifest b/sys-process/parallel/Manifest
index 260d5bda1b3..1b55cd91547 100644
--- a/sys-process/parallel/Manifest
+++ b/sys-process/parallel/Manifest
@@ -1,3 +1,2 @@
-DIST parallel-20200522.tar.bz2 2107262 BLAKE2B 
04e6b5f56f749c6b157747d86428348803ce13d4313985e1c7c29e1b8b7e3fcbb802b7a389c038a73714f79e6dc6df2e772dcab2c89dc1b2c74c1bf32357e708
 SHA512 
1f804439bab490efee88bd40597926d10bd0b6d7f5763352fa402a38a1a2aa931036e99a21983b7c2a3a4de30e3d66695e90bec6d1d6522611dcd0f9f3489dc9
 DIST parallel-20200622.tar.bz2 2101840 BLAKE2B 
6c9c7dfd5453df91830a8bcf5110f3215ad6080c2f8422fd7ff3e96ca7febf7d4498282a708324dfcccb7bd221467bed1d8d6730863293978634515e717e193a
 SHA512 
482a6411e439bda5943a9f3983e4df5b0e922e30bda8e244c978de492fdea1d94a4c46fbecc475c1bc57c6cecd54fdb7f01ee2202ea3723ed02314dd63652dae
 DIST parallel-20200722.tar.bz2 2101118 BLAKE2B 
989b0fbf6d359ddb4fc86d1509ccc9d92af36f7f622cebf660ccdf216d61c99f66464dabbb65d16773bb23216c3b6b4b296ed4abbcb708b954993eaf21b01531
 SHA512 
acffc0a08ef599275f54f710244fde45efd85d15b8b98bff6df2ad113c06334de9ffe641c61a55da51e62025f8bfe66d1318959f08c6cffe1ab2292c7cdb8cd1

diff --git a/sys-process/parallel/parallel-20200522.ebuild 
b/sys-process/parallel/parallel-20200522.ebuild
deleted file mode 100644
index 669e8c068dc..000
--- a/sys-process/parallel/parallel-20200522.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-DESCRIPTION="A shell tool for executing jobs in parallel locally or on remote 
machines"
-HOMEPAGE="https://www.gnu.org/software/parallel/ 
https://git.savannah.gnu.org/cgit/parallel.git;
-SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="dev-lang/perl:=
-   dev-perl/Devel-Size
-   virtual/perl-Data-Dumper
-   virtual/perl-File-Temp
-   virtual/perl-IO"
-DEPEND="${RDEPEND}"
-
-src_configure() {
-   econf --docdir="${EPREFIX}"/usr/share/doc/${PF}/html
-}



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

2020-08-02 Thread Sam James
commit: 5031fe5614e722dceb6bddca19a542a5200a13d3
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:53:36 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5031fe56

dev-python/python-xlib: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/python-xlib/python-xlib-0.27.ebuild 
b/dev-python/python-xlib/python-xlib-0.27.ebuild
index 4eee6b607df..d1607af092f 100644
--- a/dev-python/python-xlib/python-xlib-0.27.ebuild
+++ b/dev-python/python-xlib/python-xlib-0.27.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1 virtualx
 



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

2020-08-02 Thread Sam James
commit: a091d14732e846b9222fd8aeb1d8de7ed952c8c8
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 05:04:09 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a091d147

dev-python/python-gnupg: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/16957
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/python-gnupg/python-gnupg-0.4.6.ebuild 
b/dev-python/python-gnupg/python-gnupg-0.4.6.ebuild
index d81a0ce28b2..f1d0ccd3d12 100644
--- a/dev-python/python-gnupg/python-gnupg-0.4.6.ebuild
+++ b/dev-python/python-gnupg/python-gnupg-0.4.6.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
+PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
 
 inherit distutils-r1
 



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

2020-08-02 Thread Sam James
commit: 5a9358abdb66684b2d47343ea494ffda52366cca
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:51:11 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a9358ab

dev-python/parver: add Python 3.8, 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/parver/parver-0.3.ebuild 
b/dev-python/parver/parver-0.3.ebuild
index f800e75c764..af0d8b5a02d 100644
--- a/dev-python/parver/parver-0.3.ebuild
+++ b/dev-python/parver/parver-0.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 inherit distutils-r1
 
 DESCRIPTION="Parse and manipulate version numbers"



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

2020-08-02 Thread Sam James
commit: da8cdba461b16d6aa0ce356a4da2133c689b60eb
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:46:20 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da8cdba4

dev-python/arpeggio: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/arpeggio/arpeggio-1.9.2.ebuild 
b/dev-python/arpeggio/arpeggio-1.9.2.ebuild
index 8e5858b7a17..9cc5deeb5b0 100644
--- a/dev-python/arpeggio/arpeggio-1.9.2.ebuild
+++ b/dev-python/arpeggio/arpeggio-1.9.2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 DISTUTILS_USE_SETUPTOOLS=bdepend
 inherit distutils-r1
 



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

2020-08-02 Thread Sam James
commit: 0ceb49e2099224c87f9f5514c8f8768e07d42369
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:45:24 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0ceb49e2

dev-python/memory_profiler: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/memory_profiler/memory_profiler-0.57.ebuild 
b/dev-python/memory_profiler/memory_profiler-0.57.ebuild
index 6c1a46963ed..823832fa016 100644
--- a/dev-python/memory_profiler/memory_profiler-0.57.ebuild
+++ b/dev-python/memory_profiler/memory_profiler-0.57.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 DISTUTILS_USE_SETUPTOOLS=rdepend
 



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

2020-08-02 Thread Sam James
commit: 82980b1ec7fe79bb2dd2f900fad2a42a3ee41106
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:56:55 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=82980b1e

dev-python/python-stdnum: add Python 3.9 (+ modernise)

* Add Python 3.9
* Use distutils_enable_tests
* Cleanup dependencies (and in doing so fix typo)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/python-stdnum/python-stdnum-1.13.ebuild | 12 +++-
 1 file changed, 3 insertions(+), 9 deletions(-)

diff --git a/dev-python/python-stdnum/python-stdnum-1.13.ebuild 
b/dev-python/python-stdnum/python-stdnum-1.13.ebuild
index 0d8700d7775..6d65e2186d2 100644
--- a/dev-python/python-stdnum/python-stdnum-1.13.ebuild
+++ b/dev-python/python-stdnum/python-stdnum-1.13.ebuild
@@ -2,7 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_{6..8} )
+PYTHON_COMPAT=( python3_{6..9} )
 
 inherit distutils-r1
 
@@ -13,16 +13,10 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="LGPL-2.1"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="vies test"
-RESTRICT="!test? ( test )"
+IUSE="vies"
 
 RDEPEND="vies? ( || ( dev-python/zeep dev-python/suds ) )"
-DEPEND="${DEPEND}
-   dev-python/setuptools
-   test? ( dev-python/nose )"
 
 DOCS=( ChangeLog NEWS README )
 
-python_test() {
-   nosetests -v || die
-}
+distutils_enable_tests nose



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

2020-08-02 Thread Sam James
commit: bdc5d7e02c4525ef7f26183fea442ee3e2020ebe
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:22:47 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bdc5d7e0

dev-python/h11: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/h11/h11-0.9.0.ebuild b/dev-python/h11/h11-0.9.0.ebuild
index 42d541a4f8b..f61bd104ce9 100644
--- a/dev-python/h11/h11-0.9.0.ebuild
+++ b/dev-python/h11/h11-0.9.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1
 



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

2020-08-02 Thread Sam James
commit: 191d7b3d640b1f4c0542f9c3b187958f9cf92c61
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:59:08 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=191d7b3d

dev-python/python-redmine: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/python-redmine/python-redmine-2.3.0.ebuild 
b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
index 493cc681473..b36d8846ca8 100644
--- a/dev-python/python-redmine/python-redmine-2.3.0.ebuild
+++ b/dev-python/python-redmine/python-redmine-2.3.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6,7,8} )
+PYTHON_COMPAT=( python3_{6,7,8,9} )
 
 inherit distutils-r1
 



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

2020-08-02 Thread Sam James
commit: e1497093a247e5fd2b75e846da2e7f13ed0f71dc
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 04:25:14 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 22:04:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1497093

dev-python/wsproto: add Python 3.9

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/wsproto/wsproto-0.15.0.ebuild 
b/dev-python/wsproto/wsproto-0.15.0.ebuild
index a6e5f0570e7..e7dbbeb8b3a 100644
--- a/dev-python/wsproto/wsproto-0.15.0.ebuild
+++ b/dev-python/wsproto/wsproto-0.15.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8} )
+PYTHON_COMPAT=( python3_{7,8,9} )
 
 inherit distutils-r1
 



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

2020-08-02 Thread Mike Pagano
commit: 33d64019bea1b67053266937de85809e16bafacb
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Aug  2 21:46:23 2020 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Aug  2 21:46:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33d64019

dev-util/idea-community: Version bump

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

 dev-util/idea-community/Manifest   |   1 +
 .../idea-community-2020.2.202.6397.94.ebuild   | 142 +
 2 files changed, 143 insertions(+)

diff --git a/dev-util/idea-community/Manifest b/dev-util/idea-community/Manifest
index 83c0f1d4aec..959d5500323 100644
--- a/dev-util/idea-community/Manifest
+++ b/dev-util/idea-community/Manifest
@@ -1,6 +1,7 @@
 DIST ideaIC-1.2.201.7846.76_20200507.tar.gz 529076492 BLAKE2B 
ec93303776324fca08db6e0a0e8058cdc4aa009852cf02beeb27193ea479845319f7b9a11983d56b10b31e280f4da5bfc6f43c802d42fa3c85d43ccbaa67a965
 SHA512 
59a6e87788dd0776ed11e882ae3f0b9e18f63d899602a4c576f946a7979d895a8750af20947f6273db8fde3fccce05cbd5b6bd4c0142450935d0abaace405679
 DIST ideaIC-1.3.201.8538.31.tar.gz 529511746 BLAKE2B 
d6eb9a4bc333136475432110ab767efd763d4631379f811a8b9ce70b415d621936630b1e0db55c90f572862176db40b50c76c34d1a179927d1ec7d234b6dc137
 SHA512 
34dcb365f0c1cd7362cd4660677e25b333557f1440b6835bf42ad365fc660849daf6733f09b1fc7aac8046752532c5a3f329656649708f629a812aa8989df50e
 DIST ideaIC-1.4.201.8743.12.tar.gz 529515629 BLAKE2B 
68a14df3945d35e6b1d6780ffe9ce1a14f03289fab2770bb33960c4d6d880d5428c5fafea38ab5b22e8ab3b82abf1c92d438e77257a4f8ab3f11a3a32a9702b1
 SHA512 
6389c5aaa2c38dc3e920253318ac6989f57f72caef749cabda34551d1a6c235c831e9fe29078f3b92b6f6189ad90577b057396776d4d16b4ff46d096e283061d
+DIST ideaIC-2.202.6397.94.tar.gz 526710783 BLAKE2B 
70ea95e09d2dcd3a09b8dbd35e4a86552800015d7f97a66d7144164bd5dc3ae40cb708e0b7541a274995cf026fa90ebbaae16967f4f4328206f653dbd16f0b76
 SHA512 
39a17494c31854d4dc7525af39f234cea18fcb112c1b05eeca4a0baa19069765cdc213691b5b379a4cfc05b0469e1a532ef0427955b8e1a10041db100d83b495
 DIST jbr-11_0_2-linux-x64-b164.tar.gz 131483925 BLAKE2B 
fb9c55094aeb4a9e6b89ef41699252355895fa4bf55eaa0d3c0a637b6485b5a91a0445b5f4af1872b62cd67b639f7354e05770970d41dcfa58ffeda7ae43c5b6
 SHA512 
4f32940166cc8ad5a138866e18d4cbfcd07f4326a85c051b7a622c9dcb8ee4b6d493331ef24d0c01999134fa2a9bad901f026982c16780fdc5e6b9308821db34
 DIST jbrx-8u202-linux-i586-b1483.37.tar.gz 80726147 BLAKE2B 
e4e5a076a541fd7153e861193ff4247c02ecbc144396ed28737afa7440f7771569b8d968b7c67b3dac333a89ff0b54cc9e5e76d1651b174cc7c0c21b1deb033c
 SHA512 
53693f2ce994f4891807873ae3fe46ce60bee000b78be03c5d3df06b436328abe5b5d7e75d43e57f35f24187f49915187d034b39589e29806f55deeb14a029f2
 DIST jbrx-8u202-linux-x64-b1483.37.tar.gz 81812743 BLAKE2B 
86ddf0c8dc992a27e680caa821f54fa4d647a8bff78b9fdbef82996bfbba828a2f68f1a00ed64bd92ce24a62bfc6c0240837c396644c6e91244cb0d980b6c704
 SHA512 
cd31a3c4da7b8c65e9ae89326c2c8b260b51890258d30f64b1e8a7c6c1442bb2cb68ea2aa80387ce0c1a8f50e3533e8231f72c5935b639e3cf82bc1ffedee8e9

diff --git a/dev-util/idea-community/idea-community-2020.2.202.6397.94.ebuild 
b/dev-util/idea-community/idea-community-2020.2.202.6397.94.ebuild
new file mode 100644
index 000..bc1a221116a
--- /dev/null
+++ b/dev-util/idea-community/idea-community-2020.2.202.6397.94.ebuild
@@ -0,0 +1,142 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit eutils desktop
+
+SLOT="0"
+PV_STRING="$(ver_cut 2-6)"
+MY_PV="$(ver_cut 1-2)"
+MY_PN="idea"
+# Using the most recent Jetbrains Runtime binaries available at the time of 
writing
+# As the exact bundled versions ( jre 11 build 159.30 and jre 8 build 1483.39 
) aren't
+# available separately
+JRE11_BASE="11_0_2"
+JRE11_VER="164"
+JRE_BASE="8u202"
+JRE_VER="1483.37"
+
+# distinguish settings for official stable releases and EAP-version releases
+if [[ "$(ver_cut 7)"x = "prex" ]]
+then
+   # upstream EAP
+   KEYWORDS="~arm64"
+   
SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IC-${PV_STRING}.tar.gz;
+else
+   # upstream stable
+   KEYWORDS="~amd64 ~arm64 ~x86"
+   
SRC_URI="https://download.jetbrains.com/idea/${MY_PN}IC-${MY_PV}-no-jbr.tar.gz 
-> ${MY_PN}IC-${PV_STRING}.tar.gz
+   jbr8? ( x86? ( 
https://bintray.com/jetbrains/intellij-jdk/download_file?file_path=jbrx-${JRE_BASE}-linux-i586-b${JRE_VER}.tar.gz
 -> jbrx-${JRE_BASE}-linux-i586-b${JRE_VER}.tar.gz )
+   amd64? ( 
https://bintray.com/jetbrains/intellij-jdk/download_file?file_path=jbrx-${JRE_BASE}-linux-x64-b${JRE_VER}.tar.gz
 -> jbrx-${JRE_BASE}-linux-x64-b${JRE_VER}.tar.gz ) )
+   jbr11? ( amd64? ( 
https://bintray.com/jetbrains/intellij-jdk/download_file?file_path=jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz
 -> jbr-${JRE11_BASE}-linux-x64-b${JRE11_VER}.tar.gz ) )"
+fi
+
+DESCRIPTION="A complete toolset for web, mobile and enterprise 

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

2020-08-02 Thread Mart Raudsepp
commit: 80df8d52ceaa92892bf67301b7944c2e538409c0
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  2 21:19:57 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  2 21:27:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80df8d52

media-gfx/eog-plugins: bump to 3.26.5

Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 media-gfx/eog-plugins/Manifest  |  1 +
 media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild | 66 +
 2 files changed, 67 insertions(+)

diff --git a/media-gfx/eog-plugins/Manifest b/media-gfx/eog-plugins/Manifest
index c4607457e73..3dbdf56a4bc 100644
--- a/media-gfx/eog-plugins/Manifest
+++ b/media-gfx/eog-plugins/Manifest
@@ -1 +1,2 @@
 DIST eog-plugins-3.26.4.tar.xz 42 BLAKE2B 
104ddf58d33e5513349839312fef820af20d7a3e64a3a8cbd7d964d8250564d6cd62c58cf95fb5359ab95eac8fe2b83ed051e6f3dc8144a8884ec72c74a12622
 SHA512 
95f2cf2c6ed84b4801517a708f18e1cd673f814d849029a41491f3719512d6a3a2cb5cb11898a7f972f8b674c682245c99964ba2da19b285ed175b720d5396e8
+DIST eog-plugins-3.26.5.tar.xz 478188 BLAKE2B 
655eb9860435775862ba44bd26530edff778a3c8c574e9bf592800b4d57b4e5b0e52d36b7d71d6a6d615d47c320542105dcee9de89250901fcbfa6c255dcfddc
 SHA512 
3b7979d241c2c0b522ffb6c30a6b8c90fed9e899cda8a73fb9d9a9392f474516f8c24fc75f3f35f920c8a6cf04b8bda611a8669839588936c48467813a6227a7

diff --git a/media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild 
b/media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild
new file mode 100644
index 000..897a10d8bda
--- /dev/null
+++ b/media-gfx/eog-plugins/eog-plugins-3.26.5.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+GNOME2_LA_PUNT="yes"
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit gnome2 python-single-r1
+
+DESCRIPTION="Eye of GNOME plugins"
+HOMEPAGE="https://wiki.gnome.org/Apps/EyeOfGnome/Plugins;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="+exif map picasa +python"
+REQUIRED_USE="
+   map? ( exif )
+   python? ( ${PYTHON_REQUIRED_USE} )
+"
+
+RDEPEND="
+   >=dev-libs/glib-2.38:2
+   >=dev-libs/libpeas-0.7.4:=
+   >=media-gfx/eog-3.15.90
+   >=x11-libs/gtk+-3.14:3
+   exif? ( >=media-libs/libexif-0.6.16 )
+   map? (
+   media-libs/libchamplain:0.12[gtk]
+   >=media-libs/clutter-1.9.4:1.0
+   >=media-libs/clutter-gtk-1.1.2:1.0 )
+   picasa? ( >=dev-libs/libgdata-0.9.1:= )
+   python? (
+   ${PYTHON_DEPS}
+   >=dev-libs/glib-2.32:2[dbus]
+   dev-libs/libpeas:=[gtk,python,${PYTHON_SINGLE_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/pygobject:3[${PYTHON_MULTI_USEDEP}]
+   ')
+   gnome-base/gsettings-desktop-schemas
+   media-gfx/eog[introspection]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/pango[introspection] )
+"
+# libxml2 required for glib-compile-resources
+DEPEND="${RDEPEND}
+   dev-libs/libxml2:2
+   >=sys-devel/gettext-0.19.7
+   virtual/pkgconfig
+"
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   local plugins="fit-to-width,send-by-mail,hide-titlebar,light-theme"
+   use exif && plugins="${plugins},exif-display"
+   use map && plugins="${plugins},map"
+   use picasa && plugins="${plugins},postasa"
+   use python && 
plugins="${plugins},slideshowshuffle,pythonconsole,fullscreenbg,export-to-folder,maximize-windows"
+   gnome2_src_configure \
+   $(use_enable python) \
+   --with-plugins=${plugins}
+}



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

2020-08-02 Thread Sam James
commit: 98c573d1a0d51bcad3a0db362737445f77e00970
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 21:19:37 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 21:19:47 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98c573d1

dev-python/rq: cleanup old (+ missing patch)

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/rq/Manifest  |  1 -
 dev-python/rq/files/rq-1.5.0-no-install-tests.patch | 13 +
 dev-python/rq/rq-1.3.0.ebuild   | 19 ---
 3 files changed, 13 insertions(+), 20 deletions(-)

diff --git a/dev-python/rq/Manifest b/dev-python/rq/Manifest
index 165747160d9..0d6a8a05291 100644
--- a/dev-python/rq/Manifest
+++ b/dev-python/rq/Manifest
@@ -1,3 +1,2 @@
-DIST rq-1.3.0.tar.gz 50906 BLAKE2B 
073ef65c90b2f4cab7505148133cf9e8652f6915bcb34d96b61fca2eb3096d5eb8fb506dfa3d22f402d4ef7ff8e5456faa3bdf7ad6586cfa563b7b2c2da8cb95
 SHA512 
3c7c3b63a7068ada14c39fa21631fa35d336955c8f5b7b5fbf3d75a99b046abacc2ff28a3a58fc03d587be8bf8e22eea33d31142d3be880afc49287a004ff782
 DIST rq-1.4.3.tar.gz 52258 BLAKE2B 
fd2bb19239ac3011005b34cf041e7736794a27b2097a7ff1808a716d45ad224ad349e316f172308175174f59ff0d3d2bbe0c6778bd66cdad6755da2740898c0d
 SHA512 
177c748148a109efaeddf14b3847e7980882f385ba0e346ccfa72983d584f1c739417383c6eec83370a66f1ceeb5f955de9d5ccf87e4136074aa52e2f9144bd3
 DIST rq-1.5.0.tar.gz 569320 BLAKE2B 
5349f6e806c5348e584513bf8fe8828c44909b8f4e53fcdfe40e0c617f162859dbc89d4595993c29227a25cef5b6ddbb758c51c3e50b442ada62eaca0585490a
 SHA512 
87eb83de529afe3a1e0a9f2b1727aba97482e3e55024aede29ad6e12ed5b92ca147bef8d720a09b34939c04ac5e37642147aea5b1b7686ed4b2aaacdcf998f6d

diff --git a/dev-python/rq/files/rq-1.5.0-no-install-tests.patch 
b/dev-python/rq/files/rq-1.5.0-no-install-tests.patch
new file mode 100644
index 000..0c7aa7aacc4
--- /dev/null
+++ b/dev-python/rq/files/rq-1.5.0-no-install-tests.patch
@@ -0,0 +1,13 @@
+diff --git a/setup.py b/setup.py
+index ac40818..b67b25c 100644
+--- a/setup.py
 b/setup.py
+@@ -36,7 +36,7 @@ setup(
+ description='RQ is a simple, lightweight, library for creating background 
'
+ 'jobs, and processing them.',
+ long_description=__doc__,
+-packages=find_packages(exclude=['tests']),
++packages=find_packages(exclude=['tests*']),
+ include_package_data=True,
+ zip_safe=False,
+ platforms='any',

diff --git a/dev-python/rq/rq-1.3.0.ebuild b/dev-python/rq/rq-1.3.0.ebuild
deleted file mode 100644
index ee8ab52683f..000
--- a/dev-python/rq/rq-1.3.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_6 python3_7 )
-inherit distutils-r1
-
-DESCRIPTION="simple, lightweight library for creating and processing 
background jobs"
-HOMEPAGE="https://python-rq.org https://github.com/rq/rq;
-SRC_URI="mirror://pypi/${PN:0:1}"/${PN}/${P}.tar.gz
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
-
-DEPEND=" >=dev-python/click-5.0[${PYTHON_USEDEP}]
-   >=dev-python/redis-py-3.0.0[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"



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

2020-08-02 Thread Georgy Yakovlev
commit: 22e503b220d0cf212a342698cdc7ab9e9cd7c441
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Aug  2 21:05:39 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Aug  2 21:08:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22e503b2

dev-python/aiocontextvars: remove py3.7+ support

Bug: https://bugs.gentoo.org/735130
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild 
b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild
index fa25b811305..05e3c3c4dca 100644
--- a/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild
+++ b/dev-python/aiocontextvars/aiocontextvars-0.2.2.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..9} )
+# this is a backport, do not add extra impls
+PYTHON_COMPAT=( python3_6 )
 inherit distutils-r1
 
 DESCRIPTION="Asyncio support for PEP-567 contextvars backport"



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

2020-08-02 Thread Georgy Yakovlev
commit: 971b0552690fa0b0c6ac7059cb2f76c791f1ca17
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Aug  2 21:02:16 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Aug  2 21:08:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=971b0552

dev-python/yappi: rebvbump, fix backport dep

Bug: https://bugs.gentoo.org/735130
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-python/yappi/{yappi-1.2.5.ebuild => yappi-1.2.5-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/yappi/yappi-1.2.5.ebuild 
b/dev-python/yappi/yappi-1.2.5-r1.ebuild
similarity index 91%
rename from dev-python/yappi/yappi-1.2.5.ebuild
rename to dev-python/yappi/yappi-1.2.5-r1.ebuild
index 390429d7df2..3af35387b4f 100644
--- a/dev-python/yappi/yappi-1.2.5.ebuild
+++ b/dev-python/yappi/yappi-1.2.5-r1.ebuild
@@ -19,7 +19,7 @@ SLOT="0"
 KEYWORDS="amd64 ~arm64 x86"
 
 RDEPEND="
-   dev-python/contextvars[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep 'dev-python/contextvars[${PYTHON_USEDEP}]' 
'python3_6')
 "
 
 PATCHES=(



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

2020-08-02 Thread Georgy Yakovlev
commit: 1217df3c839c8f3f7df2ba43a06b44cad6dfcbe0
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sun Aug  2 21:04:29 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Aug  2 21:08:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1217df3c

dev-python/contextvars: remove py3.7+ support

Bug: https://bugs.gentoo.org/735130
Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-python/contextvars/contextvars-2.4.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/contextvars/contextvars-2.4.ebuild 
b/dev-python/contextvars/contextvars-2.4.ebuild
index 23482225624..d4247a17fcc 100644
--- a/dev-python/contextvars/contextvars-2.4.ebuild
+++ b/dev-python/contextvars/contextvars-2.4.ebuild
@@ -3,7 +3,8 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{6..9} )
+# this is a backport, do not add extra impls
+PYTHON_COMPAT=( python3_6 )
 inherit distutils-r1
 
 DESCRIPTION="Backport of Python 3.7 contextvars module (PEP 567) for Python 
3.6"



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

2020-08-02 Thread Mart Raudsepp
commit: fbc578ecfd9b3e784faff71232da9780d771aefd
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Sun Aug  2 21:05:21 2020 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Sun Aug  2 21:07:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbc578ec

dev-libs/libgamin: drop py2 bindings, quick EAPI-6 port

No consumers for the python bindings, so just drop them.
Quick EAPI-6 port with still using epatch, as some (potentially
conditional) patches aren't eapply-compatible.

Bug: https://bugs.gentoo.org/735290
Package-Manager: Portage-2.3.84, Repoman-2.3.20
Signed-off-by: Mart Raudsepp  gentoo.org>

 dev-libs/libgamin/libgamin-0.1.10-r6.ebuild | 97 +
 1 file changed, 97 insertions(+)

diff --git a/dev-libs/libgamin/libgamin-0.1.10-r6.ebuild 
b/dev-libs/libgamin/libgamin-0.1.10-r6.ebuild
new file mode 100644
index 000..6e6090b368c
--- /dev/null
+++ b/dev-libs/libgamin/libgamin-0.1.10-r6.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="6"
+
+GNOME_ORG_MODULE="gamin"
+GNOME_TARBALL_SUFFIX="bz2"
+
+inherit autotools epatch flag-o-matic libtool ltprune gnome.org 
multilib-minimal
+
+DESCRIPTION="Library providing the FAM File Alteration Monitor API"
+HOMEPAGE="https://www.gnome.org/~veillard/gamin/;
+SRC_URI="${SRC_URI}
+   mirror://gentoo/gamin-0.1.9-freebsd.patch.bz2
+   
https://dev.gentoo.org/~grobian/patches/libgamin-0.1.10-opensolaris.patch.bz2
+   https://pkgconfig.freedesktop.org/releases/pkg-config-0.28.tar.gz; # 
pkg.m4 for eautoreconf
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="debug kernel_linux static-libs"
+
+RESTRICT="test" # needs gam-server
+
+RDEPEND="
+   !app-admin/fam
+   !

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

2020-08-02 Thread Aaron Bauman
commit: d0cb519296b0c24d888ab328b27d68faeac354c7
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 20:53:46 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 20:53:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0cb5192

package.mask: last-rite sci-biology/HTSeq

Bug: https://bugs.gentoo.org/696484
Bug: https://bugs.gentoo.org/718466
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4ef42fa96dc..1daf1013e85 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Unmaintained. New release upstream. Py3.6 only.
+# Removal in 30 days. Bug #696484,#718466
+sci-biology/HTSeq
+
 # Aaron Bauman  (2020-08-02)
 # Dead upstream. Py3.6 only. Build issues.
 # Removal in 30 days. Bug #677900,#716384



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

2020-08-02 Thread Aaron Bauman
commit: 9be5e8f3ac444f149df46aa472a4d883f848e60f
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 20:47:35 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 20:48:58 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9be5e8f3

dev-python/anyqt: port to py3_{7,8}

Closes: https://bugs.gentoo.org/718864
Signed-off-by: Aaron Bauman  gentoo.org>

 dev-python/anyqt/anyqt-0.0.8-r1.ebuild | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/dev-python/anyqt/anyqt-0.0.8-r1.ebuild 
b/dev-python/anyqt/anyqt-0.0.8-r1.ebuild
index 109bb075285..21ff1bcf320 100644
--- a/dev-python/anyqt/anyqt-0.0.8-r1.ebuild
+++ b/dev-python/anyqt/anyqt-0.0.8-r1.ebuild
@@ -1,9 +1,11 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="6"
+EAPI=7
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{7,8} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1
 
@@ -15,8 +17,3 @@ LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE=""
-
-RDEPEND=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]
-   ${RDEPEND}"



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

2020-08-02 Thread Mike Gilbert
commit: 2756e32bf08811e791543fe9f8425641c375b90a
Author: Stephan Hartmann  googlemail  com>
AuthorDate: Sat Aug  1 09:10:12 2020 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Aug  2 20:47:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2756e32b

www-client/chromium: dev channel bump to 86.0.4214.2

Package-Manager: Portage-2.3.99, Repoman-2.3.23
Signed-off-by: Stephan Hartmann  googlemail.com>
Signed-off-by: Mike Gilbert  gentoo.org>
Closes: https://github.com/gentoo/gentoo/pull/16924

 www-client/chromium/Manifest  | 4 ++--
 .../{chromium-86.0.4209.2.ebuild => chromium-86.0.4214.2.ebuild}  | 3 +--
 2 files changed, 3 insertions(+), 4 deletions(-)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 29b9a0b5ed3..101da2418de 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -2,7 +2,7 @@ DIST chromium-84-patchset-3.tar.xz 20148 BLAKE2B 
d910570b43f63bcf4ead90ca4e4005a
 DIST chromium-84.0.4147.105.tar.xz 845167500 BLAKE2B 
53dc3658d1d206864b20b4a9e6f54d321332a765a6d5589d241103e2bd84af42f264386a928e220e332d867f4265ae617c7669337c05b106f9a42bba2cc019f8
 SHA512 
23cdd8b49c3276b16f1b4753fadf9f428720f0a95a3f567d189ba0e8a231d7bc1f62e96da6188645243eedac15ecc554b97e83c1a63aa647e7946cc1ba015a8c
 DIST chromium-85-patchset-2.tar.xz 9724 BLAKE2B 
929d6abe3a66db395a9cedc63510a6a0ed0d79057f92ade22fe26221bf46a63e88fb40d6e54e6ffa837d142ec5da22e2b428f3153db431e3389de0b230fa2aec
 SHA512 
753ce53c2c10cf1abdce334086a633dfcb4543c86a2dccbee0ad1bc8a8a0b642cdd18e2277c67088a380a9fa2ca8fd655e2fc0b3a2931de3230afa046615cd0e
 DIST chromium-85.0.4183.48.tar.xz 863832848 BLAKE2B 
88e74f085591b7d7a21a3cd5fa5e12ac381d346492f5774a8a4aecc9c6af453270acd61447009c7b7749c3e8fc4f7b4f064749aa398b18372f8265baecedaa25
 SHA512 
d2886f6acc6a5afcd03deac7ad82ca6f99f527672a2e0cafaadc467edc98306584e26796c1a9a097ce2880bbee68d05982df12a1c31c34d52b1c1506f4fbd7fa
-DIST chromium-86-patchset-1.tar.xz 6588 BLAKE2B 
7a01189d7bf55c3b48b6ef377bc364dfc59ecece9669b127af74c01678ba39ee8893e4dfc7eafb8c5550365975fcd4baca33894ef2346d980249cede6e03c0bc
 SHA512 
30a1417e7cbe1a674c240b976f1ceee00fa2140e9857e13a2767b9de652fd9e93bdac151a076d4076a0bd7ceb6fc2b391b41143668121a21820fc8c9975f0958
-DIST chromium-86.0.4209.2.tar.xz 869377072 BLAKE2B 
e6dbb88533278c9a55f45facd3cbb03a8457ece7bc981c1a426c863cf0f717b189aa288b09607d0aa1be21de7d5f178500979925f21e0fcc7dbf8418b14b5a11
 SHA512 
1bb718a8e167266b54f37f468a4312b35fc91e230bff9681a945be85ca0bbdbb63670cdb1f87ba460eca1cd7393e4f6a6337468e7ca657c7b580656c2d6a059e
+DIST chromium-86-patchset-2.tar.xz 5456 BLAKE2B 
be2c73695eaf6a752667a706575fc68fb39cc723d4ff55fd662f34ca13371ad7f6833fe367ad9b96b3b502578f32742d1c2def8a4525e4e135a89b181259104b
 SHA512 
0a2f7138244be791f044d59bcbb73c582b76cee91c1e1da41de9675c2033b5ef80a5c461b84f0461daae5268efa2bd651c16e29280a9a218012f6a34b654be5d
+DIST chromium-86.0.4214.2.tar.xz 838340928 BLAKE2B 
02e9e25b7872a6f66569c52e3655838e2c02d0f2932efe8fba3e6611f8b7e30b579cefa4a9619e6cc97ae41dd24b7a3f9109b2979ab22d93ff1476a4bf1d6c04
 SHA512 
04bc070f679814d9324340bc2515609b1447b3ba7be8a2ced037a4dcc189b4f63a2dc9d64f81ef4e48da12f444265ff6a9ad414b36201374bc2075654f6f9017
 DIST setuptools-44.1.0.zip 858569 BLAKE2B 
f59f154e121502a731e51294ccd293d60ffccadacf51e23b53bf7ceba38858948b86783238061136c827ac3373ea7ea8e6253d4bb53f3f1dd69284568ec65a68
 SHA512 
4dfb0f42d334b835758e865a26ecd1e725711fa2b9c38ddc273b8b3849fba04527bc97436d11ba1e98f1a42922aa0f0b9032e32998273c705fac6e10735eacbf
 DIST xcb-proto-1.14.tar.xz 143384 BLAKE2B 
60212b0f0ce039a64a2e6cbbc78564eeffc57cff20987b37dc780d8d97ae888a7dbfbbaadc6e0e4bedfc5d1e360f16318e3825ad8406de668d9c7c66cf7f4b5d
 SHA512 
de66d568163b6da2be9d6c59984f3afa3acd119a781378638045fd68018665ef5c9af98f024e9962ba3eb7c7a4d85c27ba70ffafceb2324ccc6940f34de16690

diff --git a/www-client/chromium/chromium-86.0.4209.2.ebuild 
b/www-client/chromium/chromium-86.0.4214.2.ebuild
similarity index 99%
rename from www-client/chromium/chromium-86.0.4209.2.ebuild
rename to www-client/chromium/chromium-86.0.4214.2.ebuild
index 15105559c1c..099687e1fd7 100644
--- a/www-client/chromium/chromium-86.0.4209.2.ebuild
+++ b/www-client/chromium/chromium-86.0.4214.2.ebuild
@@ -12,7 +12,7 @@ inherit check-reqs chromium-2 desktop flag-o-matic multilib 
ninja-utils pax-util
 
 DESCRIPTION="Open-source version of Google Chrome web browser"
 HOMEPAGE="https://chromium.org/;
-PATCHSET="1"
+PATCHSET="2"
 PATCHSET_NAME="chromium-$(ver_cut 1)-patchset-${PATCHSET}"
 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz

https://files.pythonhosted.org/packages/ed/7b/bbf89ca71e722b7f9464ebffe4b5ee20a9e5c9a555a56e2d3914bb9119a6/setuptools-44.1.0.zip
@@ -406,7 +406,6 @@ src_prepare() {
third_party/sqlite
third_party/swiftshader
third_party/swiftshader/third_party/astc-encoder
-   

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

2020-08-02 Thread Aaron Bauman
commit: 6fc95d40e9b747ea88722836249cda871da22fdd
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 20:37:14 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 20:37:14 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fc95d40

package.mask: last-rite app-mobilephone/obexftp

Bug: https://bugs.gentoo.org/677900
Bug: https://bugs.gentoo.org/716384
Bug: https://bugs.gentoo.org/722408
Bug: https://bugs.gentoo.org/723344
Signed-off-by: Aaron Bauman  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index bfb284b3a6b..4ef42fa96dc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,12 @@
 
 #--- END OF EXAMPLES ---
 
+# Aaron Bauman  (2020-08-02)
+# Dead upstream. Py3.6 only. Build issues.
+# Removal in 30 days. Bug #677900,#716384
+# #722408,723344
+app-mobilephone/obexftp
+
 # Aaron Bauman  (2020-08-02)
 # Dead upstream. Py3.6 only.
 # Removal in 30 days. Bug #722334,#713686



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

2020-08-02 Thread Aaron Bauman
commit: 9dbfb9e741cb21f8f11d35264ea3ffa6a584e502
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 20:32:59 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 20:33:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dbfb9e7

app-misc/khard: drop old py3.6 only ebuilds

Signed-off-by: Aaron Bauman  gentoo.org>

 app-misc/khard/Manifest|  2 --
 app-misc/khard/khard-0.11.4.ebuild | 41 -
 app-misc/khard/khard-0.12.2.ebuild | 42 --
 3 files changed, 85 deletions(-)

diff --git a/app-misc/khard/Manifest b/app-misc/khard/Manifest
index 702fc9c55a6..f7e76223038 100644
--- a/app-misc/khard/Manifest
+++ b/app-misc/khard/Manifest
@@ -1,3 +1 @@
-DIST khard-0.11.4.tar.gz 5060159 BLAKE2B 
2c176c8bc9651dfd05f3792a66a242eae44b64f9114098916ec8c6e91643c5d57a19f916a0f6e0c559738e1a6c59f88596a54068ba048219a7e4a4d60447a0fe
 SHA512 
f8dda3dd34e529e24276933f5f7354891b8259dfabb8818b4d3898174fb3d8b8a1f24cf81038901e521ef8aeeacec37b45b34c6e4c7eb0022b212a2f476cd9ab
-DIST khard-0.12.2.tar.gz 5064055 BLAKE2B 
5dde8d4e535e5eecdbcd679e96db51e6d96cf4ad4c8266acd7fb1c02a89c74e3af8fc3537d7b3febbc1a16578a5208ec608396d36d3f3d4c380cfcc247fb08d4
 SHA512 
476a90b111e903669a34729bf48f28a4108612f65ed7b85a495d3246461f7b82f378e13e417aba2006cf1bf853245d5466d1bb5eba539b840c9e7b6abfb20c76
 DIST khard-0.13.0.tar.gz 5083020 BLAKE2B 
6dc95335f89d5034ddc5fdfafca06b2bfc96c2dd05e966d975eea508a939cc4d64b749c3c6c2a7ce6e74ac40835b33f90442d357b871e47b8f0b2df351225c16
 SHA512 
353a51a06d6c7aa27b0f1cf35b3f7c113097ea4fa5e27bcb400f00de0cdd65ccaeadcc835b1cba541361a0395265cb967f731b23d875162f2be13381bc0979a6

diff --git a/app-misc/khard/khard-0.11.4.ebuild 
b/app-misc/khard/khard-0.11.4.ebuild
deleted file mode 100644
index f2d17514103..000
--- a/app-misc/khard/khard-0.11.4.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-inherit distutils-r1
-DESCRIPTION="Console CardDAV client"
-HOMEPAGE="https://github.com/scheibler/khard;
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="zsh-completion"
-
-if [ "${PV}" == "" ]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/scheibler/khard;
-else
-   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~x86"
-fi
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   dev-python/atomicwrites[${PYTHON_USEDEP}]
-   dev-python/configobj[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}]
-   >dev-python/vobject-0.9.3[${PYTHON_USEDEP}]
-"
-# vobject-0.9.3 breaks khard, see
-# https://github.com/scheibler/khard/issues/87
-# https://github.com/eventable/vobject/issues/39
-
-DOCS=( AUTHORS CHANGES README.md misc/khard/khard.conf.example )
-
-src_install() {
-   distutils-r1_src_install
-
-   if use zsh-completion; then
-   insinto /usr/share/zsh/site-functions
-   doins misc/zsh/_khard
-   fi
-}

diff --git a/app-misc/khard/khard-0.12.2.ebuild 
b/app-misc/khard/khard-0.12.2.ebuild
deleted file mode 100644
index c66bad5ddb8..000
--- a/app-misc/khard/khard-0.12.2.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-PYTHON_COMPAT=( python3_6 )
-inherit distutils-r1
-DESCRIPTION="Console CardDAV client"
-HOMEPAGE="https://github.com/scheibler/khard;
-LICENSE="GPL-3"
-SLOT="0"
-IUSE="zsh-completion"
-
-if [ "${PV}" == "" ]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/scheibler/khard;
-else
-   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="amd64 ~arm64"
-fi
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="
-   dev-python/atomicwrites[${PYTHON_USEDEP}]
-   dev-python/configobj[${PYTHON_USEDEP}]
-   dev-python/ruamel-yaml[${PYTHON_USEDEP}]
-   dev-python/unidecode[${PYTHON_USEDEP}]
-   >dev-python/vobject-0.9.3[${PYTHON_USEDEP}]
-"
-# vobject-0.9.3 breaks khard, see
-# https://github.com/scheibler/khard/issues/87
-# https://github.com/eventable/vobject/issues/39
-
-DOCS=( AUTHORS CHANGES README.md misc/khard/khard.conf.example )
-
-src_install() {
-   distutils-r1_src_install
-
-   if use zsh-completion; then
-   insinto /usr/share/zsh/site-functions
-   doins misc/zsh/_khard
-   fi
-}



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

2020-08-02 Thread Sam James
commit: 44ed2151d1f588badbad1f219ffb0c1f5b335f86
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 20:32:13 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 20:32:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44ed2151

dev-python/amodem: run tests

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/amodem/amodem-1.15.1.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/amodem/amodem-1.15.1.ebuild 
b/dev-python/amodem/amodem-1.15.1.ebuild
index 6936d0183c3..7e8618ff0c0 100644
--- a/dev-python/amodem/amodem-1.15.1.ebuild
+++ b/dev-python/amodem/amodem-1.15.1.ebuild
@@ -4,6 +4,7 @@
 EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} pypy3 )
+DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1
 
@@ -16,4 +17,4 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-DISTUTILS_USE_SETUPTOOLS=rdepend
+distutils_enable_tests pytest



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

2020-08-02 Thread Aaron Bauman
commit: 0667adfa7f4d72886d3ed8c9272713a43fc391cf
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 20:32:21 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 20:33:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0667adfa

app-misc/khard: port to py3{7,8}

Closes: https://bugs.gentoo.org/718232
Signed-off-by: Aaron Bauman  gentoo.org>

 app-misc/khard/khard-0.13.0.ebuild | 8 +++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/app-misc/khard/khard-0.13.0.ebuild 
b/app-misc/khard/khard-0.13.0.ebuild
index 4cb2597381a..7b7ff564f1b 100644
--- a/app-misc/khard/khard-0.13.0.ebuild
+++ b/app-misc/khard/khard-0.13.0.ebuild
@@ -2,11 +2,17 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-PYTHON_COMPAT=( python3_6 )
+
+PYTHON_COMPAT=( python3_{7,8} )
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+
 inherit distutils-r1
+
 DESCRIPTION="Console CardDAV client"
 HOMEPAGE="https://github.com/scheibler/khard;
 LICENSE="GPL-3"
+
 SLOT="0"
 IUSE="test zsh-completion"
 RESTRICT="!test? ( test )"



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

2020-08-02 Thread Aaron Bauman
commit: 529f1bfb60e92a2390761f4f6d764490af6c5d95
Author: Aaron Bauman  gentoo  org>
AuthorDate: Sun Aug  2 20:25:19 2020 +
Commit: Aaron Bauman  gentoo  org>
CommitDate: Sun Aug  2 20:27:08 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=529f1bfb

app-misc/khal: port to py3_{7,8}

Closes: https://bugs.gentoo.org/718230
Signed-off-by: Aaron Bauman  gentoo.org>

 app-misc/khal/Manifest  |  1 -
 app-misc/khal/khal-0.10.1-r1.ebuild |  4 ++--
 app-misc/khal/khal-0.9.10.ebuild| 43 -
 3 files changed, 2 insertions(+), 46 deletions(-)

diff --git a/app-misc/khal/Manifest b/app-misc/khal/Manifest
index 21514ca988a..6c5897b1b92 100644
--- a/app-misc/khal/Manifest
+++ b/app-misc/khal/Manifest
@@ -1,2 +1 @@
 DIST khal-0.10.1.tar.gz 173636 BLAKE2B 
97158bc78dfbda3a3555df3588c61f6a5e8b20d71921099a74ba997eb7ccef05ed931e930afbb09f9c125f3e0e782143dd2cdf4d0da6bd09952765b9117d6ac4
 SHA512 
5b81a60099c201fa112ab17740b73edb17b29efa1548086766d57d9d595451e7d779aad5a2ce7a2afc78050116782ff6696c4bd284021a5e12c87fe361d15e47
-DIST khal-0.9.10.tar.gz 171132 BLAKE2B 
c9356bd65197db3a492939fbeec3c51c092ce02388a61fa1c426cc16e97fe509110c2f129203882504dd4d7bbe6ddf95a01d7147abf78a0a9b6c898af89814ee
 SHA512 
7618e34e35726670721dfd12e1434d5ffe4221ffad5d751ef26dc26edab4334c847582bbd4f50cfb93f37a07397ccc467e240adaf3dcf1d9446e0ca6faff7721

diff --git a/app-misc/khal/khal-0.10.1-r1.ebuild 
b/app-misc/khal/khal-0.10.1-r1.ebuild
index 094279f9a34..6ef78da963d 100644
--- a/app-misc/khal/khal-0.10.1-r1.ebuild
+++ b/app-misc/khal/khal-0.10.1-r1.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI=7
 
-PYTHON_COMPAT=( python3_6 )
+PYTHON_COMPAT=( python3_{7,8} )
 PYTHON_REQ_USE="sqlite"
 
 inherit distutils-r1

diff --git a/app-misc/khal/khal-0.9.10.ebuild b/app-misc/khal/khal-0.9.10.ebuild
deleted file mode 100644
index ab611970184..000
--- a/app-misc/khal/khal-0.9.10.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-PYTHON_COMPAT=( python3_6 )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="A CalDAV based calendar"
-HOMEPAGE="http://lostpackets.de/khal/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-SLOT="0"
-IUSE="zsh-completion"
-
-RDEPEND=">=dev-python/click-3.2[${PYTHON_USEDEP}]
-   >=dev-python/click-log-0.2.0[${PYTHON_USEDEP}]
-   >=dev-python/icalendar-3.11.7[${PYTHON_USEDEP}]
-   dev-python/urwid[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/pytz[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/configobj[${PYTHON_USEDEP}]
-   >=dev-python/atomicwrites-0.1.7[${PYTHON_USEDEP}]
-   >=dev-python/tzlocal-1.0[${PYTHON_USEDEP}]
-   dev-python/setproctitle[${PYTHON_USEDEP}]
-   zsh-completion? ( app-shells/zsh )"
-DEPEND=">dev-python/setuptools_scm-1.12.0[${PYTHON_USEDEP}]
-   dev-python/freezegun"
-
-DOCS=( AUTHORS.txt CHANGELOG.rst CONTRIBUTING.rst README.rst khal.conf.sample )
-
-src_install() {
-   distutils-r1_src_install
-   if use zsh-completion; then
-   insinto /usr/share/zsh/site-functions
-   doins misc/__khal
-   fi
-}



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

2020-08-02 Thread Sam James
commit: 3f2fbd180f7f4880401b99acbe68328d41a4a0f1
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 20:25:50 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 20:25:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f2fbd18

dev-python/sentry-sdk: formatting

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild
index c8ddaf21a30..180866d812c 100644
--- a/dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild
+++ b/dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild
@@ -10,7 +10,6 @@ inherit distutils-r1
 DESCRIPTION="Python client for Sentry"
 HOMEPAGE="https://getsentry.com https://pypi.org/project/sentry-sdk/;
 SRC_URI="https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
 S="${WORKDIR}/sentry-python-${PV}"
 
 LICENSE="PSF-2"



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

2020-08-02 Thread Sam James
commit: 5517e066e9f017502f2e6e5585e39d08bc9073fb
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 20:22:50 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 20:22:50 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5517e066

dev-python/sentry-sdk: bump to 0.16.3

We can't yet add tests because of unpackaged dependencies:
executing, fakeredis.

In turn, they require some unpackaged dependencies too,
and this doesn't seem worth it at this point in time.

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

 dev-python/sentry-sdk/Manifest |  1 +
 dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
index c5a35dd737b..67e98ca4d7c 100644
--- a/dev-python/sentry-sdk/Manifest
+++ b/dev-python/sentry-sdk/Manifest
@@ -1 +1,2 @@
 DIST sentry-sdk-0.14.4.tar.gz 75420 BLAKE2B 
cbc5f401fae8a4a9eaa8f6fff8ca16a61cf2d339f14787610646112f67d7b0694d95a6076d2810968d28eb176d447fec6cf49af9a317bb2c30b4e6ab2d89a4f0
 SHA512 
66886df71a3d8f9f86f41bfc4078bf80f217bcb0a27fb9e93acee193b482d3045db44953f6f0b4d05e79daa91dadb56c2784b13d1308e7bc00fb40f485537dab
+DIST sentry-sdk-0.16.3.tar.gz 170145 BLAKE2B 
bf619313fb3f49800f5384f0dfec3aa34ef4bb030c5e038a485a8861a733a537ee7c834c8c200a2244335c3c61e7d564005b81d4e5c5f603d2864b2a943a5384
 SHA512 
e8589f7bd433d4aff068099e860c0cf012fc88dc63806873573a338bb91848d73e0a2af76dad0a5e023a1b25b0be85507346b77dec5c5a265942005219541699

diff --git a/dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild
new file mode 100644
index 000..c8ddaf21a30
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-0.16.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7,8,9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python client for Sentry"
+HOMEPAGE="https://getsentry.com https://pypi.org/project/sentry-sdk/;
+SRC_URI="https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+S="${WORKDIR}/sentry-python-${PV}"
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+
+RDEPEND="
+   dev-python/urllib3[${PYTHON_USEDEP}]
+   dev-python/certifi[${PYTHON_USEDEP}]
+"
+
+# No tests for now
+# Need unpackaged: executing, fakeredis



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

2020-08-02 Thread Sam James
commit: 3a7a060e4130074a19534e81c9a281f0c7c46903
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 20:22:52 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 20:22:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a7a060e

dev-python/redis-py: join as maintainer

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/redis-py/metadata.xml b/dev-python/redis-py/metadata.xml
index 6ead82e64b2..0d56d7eae1f 100644
--- a/dev-python/redis-py/metadata.xml
+++ b/dev-python/redis-py/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+  
+s...@gentoo.org
+Sam James
+  
   
 pyt...@gentoo.org
 Python



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

2020-08-02 Thread Sam James
commit: 9db147ebe0bf8e4bff853332672f0f5c7fe645c5
Author: Sam James  gentoo  org>
AuthorDate: Sun Aug  2 20:22:55 2020 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Aug  2 20:22:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9db147eb

dev-python/rq: primary maintainership

Package-Manager: Portage-3.0.1, Repoman-2.3.23
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-python/rq/metadata.xml b/dev-python/rq/metadata.xml
index 0644efac63f..87176f9df31 100644
--- a/dev-python/rq/metadata.xml
+++ b/dev-python/rq/metadata.xml
@@ -1,6 +1,10 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   
+   s...@gentoo.org
+   Sam James
+   

pyt...@gentoo.org

@@ -8,10 +12,6 @@
willi...@gentoo.org
William Hubbs

-   
-   s...@gentoo.org
-   Sam James
-   

rq/rq
rq



  1   2   3   4   >