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

2020-10-21 Thread Michał Górny
commit: 88143a2b28c2dbf6ea1ca49c35fd2a3cb33e6148
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 22 05:36:46 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 22 05:36:46 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88143a2b

dev-python/botocore: Bump to 1.19.2

Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index f5bcc4c2af3..db47d943954 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,3 +3,4 @@ DIST botocore-1.18.1.tar.gz 6839699 BLAKE2B 
188c5a05345fc7c4d4c05b3a8d9b675b5c21
 DIST botocore-1.18.10.tar.gz 6899351 BLAKE2B 
4de11277fd8df8436818cd50d946e7e53191fb698a3d7bab034112445e8d66aec74dc17ed6c93bce636f29f3e455d2b08cdc56bec3a3e794d9e12e7fd5e0ccee
 SHA512 
4a9ceaf2a0380c804b066d4c13703d4cae598c87c1f7f14b3e967a79cf829ad2e5aac39e5182db3bfff93c3289ab60571774710eee7e4ba544e20b37feb7fcc3
 DIST botocore-1.18.18.tar.gz 6942407 BLAKE2B 
e58183d5aa79a210d82c1dc21806c9c86f993498055c52742e4c1ef2f697ae1faf120b9edf8efeb229dad3f3230f0847b534ac071a1e4d32136eacc3c18c7c84
 SHA512 
a92a20c86390905f22c10e3ba649008b7c9ccab147b6b3aecc89f26dc891aaf38a974fd8ba1f792a38ac89a98dba64a949741445abf7db133f60189d1e8da31e
 DIST botocore-1.19.1.tar.gz 6944577 BLAKE2B 
ade1c8c3318971f25220d2c5bf82879d9a1cf30ed49066d4d13bf04351dc2fa7a910fcba6dba248d33bcf3e244c8b99c7df66cc3edc6f65b38b8ff2412a68e34
 SHA512 
e0fd4e8c4fca53c7e034e840ffd9f362c3a41a898188980a382d528334204d13a9dcd597b4a1eb8ce792ffb31e31213167b8e6e952353c339612755b88c1c635
+DIST botocore-1.19.2.tar.gz 6949309 BLAKE2B 
0d13155e32bc44578df8b372ccdceddc13d5012696245f441e0b935c0a58c8f78e38c9aabe03e242159cbc45d8034fe1bfaffc545ce5d2d95aa2a765c778e36a
 SHA512 
88486e813e476b789b7c0b9fa74bc95ac2a67818439f2ff2564fe30c988ec0fb9be8a2f9c2ebce9418d1eeda4c88c94d6d3ec37cec185d48a388577fc2458c88

diff --git a/dev-python/botocore/botocore-1.19.2.ebuild 
b/dev-python/botocore/botocore-1.19.2.ebuild
new file mode 100644
index 000..ca40b64d111
--- /dev/null
+++ b/dev-python/botocore/botocore-1.19.2.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="https://github.com/boto/botocore;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/jmespath[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch"
+)
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+   # very unstable
+   sed -i -e 's:test_stress_test_token_bucket:_&:' \
+   tests/functional/retries/test_bucket.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # note: suites need to be run separately as one of the unit tests
+   # seems to be leaking mocks and breaking a few functional tests
+   nosetests -v tests/unit ||
+   die "unit tests failed under ${EPYTHON}"
+   nosetests -v tests/functional ||
+   die "functional tests failed under ${EPYTHON}"
+}



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

2020-10-21 Thread Michał Górny
commit: 67226953d07042126dbdc9d7cb161e395498c423
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 22 05:37:39 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 22 05:37:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67226953

dev-python/pytrie: Bump to 0.4.0

Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/dev-python/pytrie/Manifest b/dev-python/pytrie/Manifest
index 59d298f575e..8d6ecfaf5fd 100644
--- a/dev-python/pytrie/Manifest
+++ b/dev-python/pytrie/Manifest
@@ -1 +1,2 @@
 DIST pytrie-0.3.1.tar.gz 94678 BLAKE2B 
12631652ea33d2f1575f86bc8c42982543f8fa146debc9cb86e1139ff089f0657e04e50bad97b9bc344f4a270d102ee98e03fd389eb2c56ba3baac32b2288670
 SHA512 
72cb453d01545658b27b6c0b798736404f95013bfe34586c51c8823cc923ac4b3a8e874a938b26e3045784ce98ce2d8e51ab70dc435ff50075ffaf9d6c51
+DIST pytrie-0.4.0.tar.gz 95139 BLAKE2B 
de57b4c36429c3e2d9ec7cb89e6515fd0a131e890bbfec17797a9a03b932ca2370cf283c67b4a99bb742b275c6f005789af410b875e857d30e6ba9e959403899
 SHA512 
c951568774c1e35d2b2bd5a52e5368da5ef2ffc83476d60882aa842debcd53c5eb0ed19f497a09f78c6a736ffba57702eda3aa0f3afa74dd0d1e770c17885c74

diff --git a/dev-python/pytrie/pytrie-0.4.0.ebuild 
b/dev-python/pytrie/pytrie-0.4.0.ebuild
new file mode 100644
index 000..f9c007f91c0
--- /dev/null
+++ b/dev-python/pytrie/pytrie-0.4.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_{6..9} )
+
+inherit distutils-r1
+
+MY_PN="PyTrie"
+MY_P="${MY_PN}-${PV}"
+DESCRIPTION="A pure Python implementation of the trie data structure"
+HOMEPAGE="https://github.com/gsakkis/pytrie/ https://pypi.org/project/PyTrie/;
+SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="dev-python/sortedcontainers[${PYTHON_USEDEP}]"
+
+distutils_enable_tests setup.py



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

2020-10-21 Thread Michał Górny
commit: c3c8c839bb085e87e324cab30b51ff0b2f710017
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 22 05:38:36 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 22 05:38:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3c8c839

dev-python/kiwisolver: Bump to 1.3.0

Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/dev-python/kiwisolver/Manifest b/dev-python/kiwisolver/Manifest
index 57b68f1925c..d7004669eba 100644
--- a/dev-python/kiwisolver/Manifest
+++ b/dev-python/kiwisolver/Manifest
@@ -1 +1,2 @@
 DIST kiwisolver-1.2.0.tar.gz 54244 BLAKE2B 
42590c2cbb78b3c2ed568373616e772326bf5a0e133396d9e9cf6468132ec88b45d40f68f51baff7bc22ca261567ebab81cf2585009657bd2a59df4e97c33f1f
 SHA512 
05541ff46cc64b9958d714452138dc7bb343e6cc9308408a3f8cf25242e9640af37f8bfd22a7038e8ca70a895f57bdb983346259bce22b1630ac10b974d00a0e
+DIST kiwisolver-1.3.0.tar.gz 86440 BLAKE2B 
931a230909a7778aac3bc93fb24538c7b9e0a3cf1dea33fcf374fd6576d56b80a50597d14c6431f659326222c8810416897fcc9ce2725ca5341891f65aedc5b2
 SHA512 
64bb475f86e6f409318c5030cd2874bf060c26bf6c1ea62bfb96c1ae27f7326fcd6fc575cbdad7351808d18ae9b9f6664eb312019d432cd6a4c0b8af4fa317b6

diff --git a/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild 
b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
new file mode 100644
index 000..2d2ec37813a
--- /dev/null
+++ b/dev-python/kiwisolver/kiwisolver-1.3.0.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="An efficient C++ implementation of the Cassowary constraint 
solving algorithm"
+HOMEPAGE="https://github.com/nucleic/kiwi;
+SRC_URI="https://github.com/nucleic/kiwi/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}"/kiwi-${PV}
+
+LICENSE="Clear-BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   >=dev-python/cppy-1.1.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2020-10-21 Thread Michał Górny
commit: 219d2b55081f65056b52fe246feb2a2ea07b997a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct 22 05:36:56 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct 22 05:36:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=219d2b55

dev-python/boto3: Bump to 1.16.2

Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 2d2a7c9ae61..f0656fd2bde 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,3 +3,4 @@ DIST boto3-1.15.1.tar.gz 335146 BLAKE2B 
d2d008dcb2059b120f142aaf588264122d1e84b4
 DIST boto3-1.15.10.tar.gz 336021 BLAKE2B 
71a8bcfd115c0066931e616d1d3678d51ba09460b3c36bf83d838cb0708a7f06afab8b94757a52c055cee51bfbaf1044b086621da16fd6e367cf728aec9080af
 SHA512 
79c12baf5aebb8f2e7048d9713cbb73f2fd100ba8aaabc740757c1bab30e5626fde57b1553ed365dc65b0094513b5a6f305607ce48d62ecd8d5df183ee3db412
 DIST boto3-1.15.18.tar.gz 336927 BLAKE2B 
0ddc7fbd0fffcbeafeee7b9aa0f699087369f315551e243175793c82d95c97dbbe8997d5fc280e9fed18612d1058d858a7b34b0b1b4ac7905774009beb62c0a6
 SHA512 
2dc88c27bafe7ff2f2b00be94c37e7cabc94f09ca0ccb898a5d29cd8087bb1945d226ed5d87e955250775038fc039740e68d93662b465e99a16cfebfd2fa2944
 DIST boto3-1.16.1.tar.gz 337145 BLAKE2B 
553b20514d268be967b80cab9694085d8cd3456277d459cf0f92943274eac8cf8fc23b4ed9dc92a9c04f02e3f1f1fd483f7c9e0cfa22e989098ca5fa762d
 SHA512 
6f8d1848fb89e841054cba6c295b7ccce7fab37ba5312a0b5f87588c8cf9d61124b3988c4565a4b055976ffafdb8ed7fc9268a21ac3160e80ffdf739c8e1609a
+DIST boto3-1.16.2.tar.gz 337212 BLAKE2B 
ebde42cf6b6fec3f00df6cf7e9f8769a2a8295aba0960708d4fb97b0cea4ed68ca5ea698b42485c94dacf0dfbca2fefe12ed878d027eeccee53fdf844afab48e
 SHA512 
305dbbbf5beba3503ae3c4f6ad02ecd7cd55057d19c5c8081dbbb00a620e4a4a1dc55df111e5078ed8172d706f9f868675cd110024d0a8303fba7bf1195cd9cc

diff --git a/dev-python/boto3/boto3-1.16.2.ebuild 
b/dev-python/boto3/boto3-1.16.2.ebuild
new file mode 100644
index 000..ccc99e1c241
--- /dev/null
+++ b/dev-python/boto3/boto3-1.16.2.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+DISTUTILS_USE_SETUPTOOLS=bdepend
+inherit distutils-r1
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="https://github.com/boto/boto3;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3;
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # prevent an infinite loop
+   rm tests/functional/docs/test_smoke.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests -v tests/unit/ tests/functional/ || die "test failed under 
${EPYTHON}"
+}



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

2020-10-21 Thread Georgy Yakovlev
commit: 1d030cd76f1cbd99c6d7bebe3810c1cc4929906f
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 04:21:23 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 05:17:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d030cd7

sys-apps/ipmitool: rename useflag systemd -> openbmc

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

 sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild | 6 +++---
 sys-apps/ipmitool/metadata.xml| 1 +
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild 
b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild
index fba11c4b0ca..6f8b02be14a 100644
--- a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild
+++ b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild
@@ -26,7 +26,7 @@ SRC_URI+="
#http://http.debian.net/debian/pool/main/i/${PN}/${DEBIAN_PF}.tar.xz
# 
https://launchpad.net/ubuntu/+archive/primary/+files/${DEBIAN_PF}.tar.xz
 #IUSE="freeipmi openipmi status"
-IUSE="libressl openipmi static systemd"
+IUSE="libressl openbmc openipmi static"
 SLOT="0"
 KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
 LICENSE="BSD"
@@ -34,7 +34,7 @@ LICENSE="BSD"
 RDEPEND="
!libressl? ( dev-libs/openssl:0= )
libressl? ( dev-libs/libressl:0= )
-   systemd? ( sys-apps/systemd:0= )
+   openbmc? ( sys-apps/systemd:0= )
sys-libs/readline:0="
 DEPEND="${RDEPEND}
openipmi? ( sys-libs/openipmi )
@@ -110,7 +110,7 @@ src_configure() {
--enable-ipmishell \
--enable-intf-lan \
--enable-intf-usb \
-   $(use_enable systemd intf-dbus) \
+   $(use_enable openbmc intf-dbus) \
--enable-intf-lanplus \
--enable-intf-open \
--enable-intf-serial \

diff --git a/sys-apps/ipmitool/metadata.xml b/sys-apps/ipmitool/metadata.xml
index 741f1b487be..619cebe5e32 100644
--- a/sys-apps/ipmitool/metadata.xml
+++ b/sys-apps/ipmitool/metadata.xml
@@ -6,6 +6,7 @@
 Gentoo Sysadmin Project
   
   
+Enable OpenBMC D-Bus interface
 Use the system OpenIPMI implementation.
 
   



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

2020-10-21 Thread Georgy Yakovlev
commit: 58a88db708519a076812fb47ee687164393529d9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 04:20:29 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 05:17:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58a88db7

features/selinux/package.use.mask: mask ipmitool[openbmc]

Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/profiles/features/selinux/package.use.mask 
b/profiles/features/selinux/package.use.mask
index e208d953700..a22be1217f0 100644
--- a/profiles/features/selinux/package.use.mask
+++ b/profiles/features/selinux/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Georgy Yakovlev  (2020-10-21)
+# requires systemd, as OpenBMC uses sd-dbus for communication
+sys-apps/ipmitool openbmc
+
 # Jeroen Roovers  (2019-02-23)
 # sdjournal links against sys-apps/systemd's libraries
 net-analyzer/wireshark sdjournal



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

2020-10-21 Thread Georgy Yakovlev
commit: 08a2adc9a1052c746daaf3a248b7a607ca11e722
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 05:16:19 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 05:17:10 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08a2adc9

profiles/features/prefix: mask ipmitool[openbmc]

Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/profiles/features/prefix/package.use.mask 
b/profiles/features/prefix/package.use.mask
index 07d83215aa7..407c79e2f15 100644
--- a/profiles/features/prefix/package.use.mask
+++ b/profiles/features/prefix/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2020 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Georgy Yakovlev  (2020-10-21)
+# depends on systemd
+sys-apps/ipmitool openbmc
+
 # Benda Xu  (2019-08-20)
 # avoid gnome-extra/gnome-user-share, which depends on systemd.
 gnome-base/gnome-extra-apps share



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Test-Memory-Cycle/

2020-10-21 Thread Joshua Kinard
commit: 8c8da183f5f3143b72ed57f229f8387c0c86f3a1
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 05:03:44 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 05:03:44 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c8da183

dev-perl/Test-Memory-Cycle: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Test-Memory-Cycle/Test-Memory-Cycle-1.60.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-Memory-Cycle/Test-Memory-Cycle-1.60.0.ebuild 
b/dev-perl/Test-Memory-Cycle/Test-Memory-Cycle-1.60.0.ebuild
index 8ef556cb5a7..b4c644e6a6b 100644
--- a/dev-perl/Test-Memory-Cycle/Test-Memory-Cycle-1.60.0.ebuild
+++ b/dev-perl/Test-Memory-Cycle/Test-Memory-Cycle-1.60.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Check for memory leaks and circular memory references"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc 
x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Random/

2020-10-21 Thread Joshua Kinard
commit: bd382a4d786fd30d123f3e7f75650ced07a41603
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:52:21 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:52:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd382a4d

dev-perl/Crypt-OpenSSL-Random: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Crypt-OpenSSL-Random/Crypt-OpenSSL-Random-0.150.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-OpenSSL-Random/Crypt-OpenSSL-Random-0.150.0.ebuild 
b/dev-perl/Crypt-OpenSSL-Random/Crypt-OpenSSL-Random-0.150.0.ebuild
index 7555135e7e9..0ece4ab782d 100644
--- a/dev-perl/Crypt-OpenSSL-Random/Crypt-OpenSSL-Random-0.150.0.ebuild
+++ b/dev-perl/Crypt-OpenSSL-Random/Crypt-OpenSSL-Random-0.150.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="OpenSSL/LibreSSL pseudo-random number generator access"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="libressl"
 
 RDEPEND="



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

2020-10-21 Thread Joshua Kinard
commit: 95faeb8cc8d5169534501d4c6946075ee7bbfc62
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:45:42 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:45:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=95faeb8c

dev-perl/Archive-Extract: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Archive-Extract/Archive-Extract-0.860.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Archive-Extract/Archive-Extract-0.860.0.ebuild 
b/dev-perl/Archive-Extract/Archive-Extract-0.860.0.ebuild
index 799e52247a2..f06b6ba5dd0 100644
--- a/dev-perl/Archive-Extract/Archive-Extract-0.860.0.ebuild
+++ b/dev-perl/Archive-Extract/Archive-Extract-0.860.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Generic archive extracting mechanism"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-Guess/

2020-10-21 Thread Joshua Kinard
commit: 013db4cd04782990a70d7065e23f14eea0f1ddde
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:49:30 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:49:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=013db4cd

dev-perl/Crypt-OpenSSL-Guess: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild 
b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild
index 4afd912134e..3c2e6dc5289 100644
--- a/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild
+++ b/dev-perl/Crypt-OpenSSL-Guess/Crypt-OpenSSL-Guess-0.110.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Guess OpenSSL include path"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="libressl test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: cd692ceda4bfc981eb9e7f73e092ee596ba9aba2
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:59:49 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:59:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd692ced

dev-perl/Shell-Guess: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Shell-Guess/Shell-Guess-0.90.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Shell-Guess/Shell-Guess-0.90.0.ebuild 
b/dev-perl/Shell-Guess/Shell-Guess-0.90.0.ebuild
index 703f0d0e03e..aae4183a101 100644
--- a/dev-perl/Shell-Guess/Shell-Guess-0.90.0.ebuild
+++ b/dev-perl/Shell-Guess/Shell-Guess-0.90.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Make an educated guess about the shell in use"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: 1578529dd67b7e17c08945e80ceb310553d6245f
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 05:00:56 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 05:00:56 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1578529d

dev-perl/Test-File: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Test-File/Test-File-1.443.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-File/Test-File-1.443.0.ebuild 
b/dev-perl/Test-File/Test-File-1.443.0.ebuild
index 1da9361af2f..f9a62e4aaa1 100644
--- a/dev-perl/Test-File/Test-File-1.443.0.ebuild
+++ b/dev-perl/Test-File/Test-File-1.443.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Test file attributes"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Crypt-OpenSSL-RSA/

2020-10-21 Thread Joshua Kinard
commit: 4061ff0cef31808645043a90d71fc2edd18f3a1f
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:50:49 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:50:49 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4061ff0c

dev-perl/Crypt-OpenSSL-RSA: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.310.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.310.0.ebuild 
b/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.310.0.ebuild
index 339b4251e48..873bc69a318 100644
--- a/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.310.0.ebuild
+++ b/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.310.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="RSA encoding and decoding using the OpenSSL libraries"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="libressl test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Shell-Config-Generate/

2020-10-21 Thread Joshua Kinard
commit: 4ef917d8a027469b1e70c5eb249600c3a2fb51f3
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:59:04 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:59:04 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ef917d8

dev-perl/Shell-Config-Generate: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Shell-Config-Generate/Shell-Config-Generate-0.330.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Shell-Config-Generate/Shell-Config-Generate-0.330.0.ebuild 
b/dev-perl/Shell-Config-Generate/Shell-Config-Generate-0.330.0.ebuild
index c3dba3f5bc7..a8d65f53a2e 100644
--- a/dev-perl/Shell-Config-Generate/Shell-Config-Generate-0.330.0.ebuild
+++ b/dev-perl/Shell-Config-Generate/Shell-Config-Generate-0.330.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Portably generate config for any shell"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: d52e1355ed23fedb8622012bf55e16c9440525c4
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 05:04:31 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 05:04:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d52e1355

dev-perl/Test-utf8: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild 
b/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild
index 34bffb2203e..5ea37d8d1b9 100644
--- a/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild
+++ b/dev-perl/Test-utf8/Test-utf8-1.10.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Handy utf8 tests"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE=""
 
 RDEPEND="



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

2020-10-21 Thread Joshua Kinard
commit: 3c24f7e16520693c74c59ffa74e91ba4034636f4
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:47:03 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:47:03 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c24f7e1

dev-perl/B-COW: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/B-COW/B-COW-0.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/B-COW/B-COW-0.4.0-r1.ebuild 
b/dev-perl/B-COW/B-COW-0.4.0-r1.ebuild
index a940c99b8d6..dbe3cd5593b 100644
--- a/dev-perl/B-COW/B-COW-0.4.0-r1.ebuild
+++ b/dev-perl/B-COW/B-COW-0.4.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="additional B helpers to check COW status"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: c2470ae687f4b70e5602b0ee70bc9c6d9a830e2c
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:44:18 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:44:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2470ae6

dev-perl/Alien-Base-ModuleBuild: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild | 2 +-
 dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.150.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild 
b/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild
index f6655953d88..06221aeebc0 100644
--- a/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild
+++ b/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.140.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="A Module::Build subclass for building Alien:: modules and their 
libraries"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 

diff --git 
a/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.150.0.ebuild 
b/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.150.0.ebuild
index a0602d48808..2885370d0a6 100644
--- a/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.150.0.ebuild
+++ b/dev-perl/Alien-Base-ModuleBuild/Alien-Base-ModuleBuild-1.150.0.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="A Module::Build subclass for building Alien:: modules and their 
libraries"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: 1346bfac01308be23ef49e2eaa4babe87f3a7516
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:48:26 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:48:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1346bfac

dev-perl/Clone: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Clone/Clone-0.450.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Clone/Clone-0.450.0.ebuild 
b/dev-perl/Clone/Clone-0.450.0.ebuild
index ddf0ea87d83..d71a9f8c122 100644
--- a/dev-perl/Clone/Clone-0.450.0.ebuild
+++ b/dev-perl/Clone/Clone-0.450.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Recursively copy Perl datatypes"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: 160e1417b5dd090d01928bf2562ea3c484bea41c
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:56:15 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:56:15 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=160e1417

dev-perl/File-Copy-Recursive: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild 
b/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild
index 4c679efe0e3..f5ec38e4586 100644
--- a/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild
+++ b/dev-perl/File-Copy-Recursive/File-Copy-Recursive-0.450.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="uses File::Copy to recursively copy dirs"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DateTime-Format-Builder/

2020-10-21 Thread Joshua Kinard
commit: 671a6246780fb3f3b09f393401aa3c2e51f6e967
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:53:36 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:53:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=671a6246

dev-perl/DateTime-Format-Builder: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/DateTime-Format-Builder/DateTime-Format-Builder-0.830.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/DateTime-Format-Builder/DateTime-Format-Builder-0.830.0.ebuild 
b/dev-perl/DateTime-Format-Builder/DateTime-Format-Builder-0.830.0.ebuild
index 50a2d700ad9..b2372b64307 100644
--- a/dev-perl/DateTime-Format-Builder/DateTime-Format-Builder-0.830.0.ebuild
+++ b/dev-perl/DateTime-Format-Builder/DateTime-Format-Builder-0.830.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Create DateTime parser classes and objects"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~ppc-aix ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~ppc-aix ~x86-solaris"
 IUSE="minimal test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: c2362b25221c2311786b43f94139ae956d239215
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:55:07 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:55:07 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2362b25

dev-perl/Devel-Cycle: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Devel-Cycle/Devel-Cycle-1.120.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Devel-Cycle/Devel-Cycle-1.120.0-r1.ebuild 
b/dev-perl/Devel-Cycle/Devel-Cycle-1.120.0-r1.ebuild
index 5720f3fb9df..a057e42c5d7 100644
--- a/dev-perl/Devel-Cycle/Devel-Cycle-1.120.0-r1.ebuild
+++ b/dev-perl/Devel-Cycle/Devel-Cycle-1.120.0-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Find memory cycles in objects"
 
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~ppc-aix ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~m68k-mint ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Joshua Kinard
commit: 5a113f036046748b649e6e6797c60e7cd691838b
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 04:58:13 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 04:58:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a113f03

dev-perl/Alien-Build: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

 dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild | 2 +-
 dev-perl/Alien-Build/Alien-Build-2.320.0.ebuild | 2 +-
 dev-perl/Alien-Build/Alien-Build-2.330.0.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild 
b/dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild
index 4c17120855e..8abba72db04 100644
--- a/dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild
+++ b/dev-perl/Alien-Build/Alien-Build-2.290.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="Build external dependencies for use in CPAN"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="minimal test zip"
 RESTRICT="!test? ( test )"
 

diff --git a/dev-perl/Alien-Build/Alien-Build-2.320.0.ebuild 
b/dev-perl/Alien-Build/Alien-Build-2.320.0.ebuild
index 7680876a3d7..0b61349b490 100644
--- a/dev-perl/Alien-Build/Alien-Build-2.320.0.ebuild
+++ b/dev-perl/Alien-Build/Alien-Build-2.320.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="Build external dependencies for use in CPAN"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="minimal test zip"
 RESTRICT="!test? ( test )"
 

diff --git a/dev-perl/Alien-Build/Alien-Build-2.330.0.ebuild 
b/dev-perl/Alien-Build/Alien-Build-2.330.0.ebuild
index 3120b732589..e205b5421ce 100644
--- a/dev-perl/Alien-Build/Alien-Build-2.330.0.ebuild
+++ b/dev-perl/Alien-Build/Alien-Build-2.330.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 
 DESCRIPTION="Build external dependencies for use in CPAN"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
 IUSE="minimal test zip"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Georgy Yakovlev
commit: 0210ad4e5ee58533a7d381e82356b0ffe6812352
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 04:05:09 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 04:06:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0210ad4e

sys-apps/ipmitool: QA fix enable_with: command not found

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

 ...tool-1.8.18_p20201004.ebuild => ipmitool-1.8.18_p20201004-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004.ebuild 
b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild
similarity index 99%
rename from sys-apps/ipmitool/ipmitool-1.8.18_p20201004.ebuild
rename to sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild
index df692871cc0..fba11c4b0ca 100644
--- a/sys-apps/ipmitool/ipmitool-1.8.18_p20201004.ebuild
+++ b/sys-apps/ipmitool/ipmitool-1.8.18_p20201004-r1.ebuild
@@ -110,7 +110,7 @@ src_configure() {
--enable-ipmishell \
--enable-intf-lan \
--enable-intf-usb \
-   $(enable_with systemd intf-dbus) \
+   $(use_enable systemd intf-dbus) \
--enable-intf-lanplus \
--enable-intf-open \
--enable-intf-serial \



[gentoo-commits] proj/sci:master commit in: sci-libs/aocl-sparse/

2020-10-21 Thread Aisha Tammy
commit: ba19b42d0cdb37e99fe3007c0021996a7fc8cf2b
Author: Aisha Tammy  aisha  cc>
AuthorDate: Wed Oct 21 23:07:03 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Wed Oct 21 23:07:03 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=ba19b42d

sci-libs/aocl-sparse: enable test

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 sci-libs/aocl-sparse/aocl-sparse-2.2.ebuild  | 15 +++
 sci-libs/aocl-sparse/aocl-sparse-.ebuild | 15 +++
 2 files changed, 30 insertions(+)

diff --git a/sci-libs/aocl-sparse/aocl-sparse-2.2.ebuild 
b/sci-libs/aocl-sparse/aocl-sparse-2.2.ebuild
index 531029af4..ad755cf03 100644
--- a/sci-libs/aocl-sparse/aocl-sparse-2.2.ebuild
+++ b/sci-libs/aocl-sparse/aocl-sparse-2.2.ebuild
@@ -34,3 +34,18 @@ src_prepare() {
-i tests/test.sh || die
cmake_src_prepare
 }
+
+src_compile() {
+   cmake_src_compile
+
+   cd tests
+   emake -f - <

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

2020-10-21 Thread Georgy Yakovlev
commit: b2e06351c5b8d5833fe4839cddbb459ab9c071e7
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 02:40:43 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 02:41:12 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2e06351

sys-fs/zfs: stabilze 0.8.5

it's a bugfix release, no point of waiting for 30 days. 2 weeks is ok.
Closes: https://bugs.gentoo.org/716488
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs/zfs-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs/zfs-0.8.5.ebuild b/sys-fs/zfs/zfs-0.8.5.ebuild
index 5839302a8db..d2da09c68b6 100644
--- a/sys-fs/zfs/zfs-0.8.5.ebuild
+++ b/sys-fs/zfs/zfs-0.8.5.ebuild
@@ -16,7 +16,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/openzfs/zfs.git;
 else

SRC_URI="https://github.com/openzfs/${PN}/releases/download/${P}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   KEYWORDS="amd64 arm64 ppc64"
 fi
 
 LICENSE="BSD-2 CDDL MIT"



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

2020-10-21 Thread Georgy Yakovlev
commit: 069e49ed1297f839898aa4133d71d2d34dec8ae9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 02:39:33 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 02:39:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=069e49ed

sys-fs/zfs-kmod: stabilize 0.8.5

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

 sys-fs/zfs-kmod/zfs-kmod-0.8.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/zfs-kmod/zfs-kmod-0.8.5.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-0.8.5.ebuild
index 97395188fd4..c5b1b6d6625 100644
--- a/sys-fs/zfs-kmod/zfs-kmod-0.8.5.ebuild
+++ b/sys-fs/zfs-kmod/zfs-kmod-0.8.5.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://github.com/openzfs/zfs.git;
 else

SRC_URI="https://github.com/openzfs/zfs/releases/download/zfs-${PV}/zfs-${PV}.tar.gz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   KEYWORDS="amd64 arm64 ppc64"
S="${WORKDIR}/zfs-${PV}"
ZFS_KERNEL_COMPAT="5.9"
 fi



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

2020-10-21 Thread Georgy Yakovlev
commit: 8a1b9925dfb4582e848350df14ed12016df00b3a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 02:30:10 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 02:35:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a1b9925

sys-fs/zfs: bump to 2.0.0_rc4

Bug: https://bugs.gentoo.org/750689
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs/Manifest |   1 +
 sys-fs/zfs/zfs-2.0.0_rc4.ebuild | 229 
 2 files changed, 230 insertions(+)

diff --git a/sys-fs/zfs/Manifest b/sys-fs/zfs/Manifest
index 238f7e1e23d..6e725fd662a 100644
--- a/sys-fs/zfs/Manifest
+++ b/sys-fs/zfs/Manifest
@@ -1,3 +1,4 @@
 DIST zfs-0.8.4.tar.gz 9285838 BLAKE2B 
776bcd6dfab8825c07d315085e288b29bf543d6957325d5d566b7b78c04505dde9bd25eb6684cb4a1b6a657de8a4e1290d04d2b9079d26d6b834a70f1ec3b569
 SHA512 
9086dc6a6262dd93ca6ec43f1b4c2e5c804deba708c8a7460b8531aa4802b0bf8cac0917a1a00e6af2e96d4a21cd68b85e226bf571bd94041d0325c457106eb1
 DIST zfs-0.8.5.tar.gz 9196381 BLAKE2B 
8376f360369c4657ff1fc040fb2bba780bbd5d6a98d149d2fa4ba39478588e213dbf6db218c7bd970839f015a69ae00ac951b90afc1c26b34aadf666b2976cab
 SHA512 
3e6e70b76f7cc5b018adb78ce7c3009f88faf5b3da0a03170b03577cd84a2937b6056621c41fc819fd08bf59b28053caf8fec375cf375816a6786bb5646ed773
 DIST zfs-2.0.0-rc3.tar.gz 12860212 BLAKE2B 
bd29ceb17938180ffda9a26cfee97f4b9b42752cd7a3bf5d72705d94967d219889cc84a71d4c0f59aaf718d596011ecdbf07000788aa39a424087eb7cf62a944
 SHA512 
c09bebb1d1b19079b51305eea1b3d1a428a46bf1301afc9dfa20871ac670d94dc9f7f9127384b2db501fd909f22a16fad0c1b7383eb9ce31a7c0e696e66a097f
+DIST zfs-2.0.0-rc4.tar.gz 12861762 BLAKE2B 
638eb426955de38efbbb390cb02642298dd73caa5d9c9e28d8aea89bb40967c251bbbe66fbd38e08c922fb1c6fa935c959572abf237ea57ee7d9a5982693e275
 SHA512 
3972b92c7c0e92416fcde1fa01e7d1c20046de2e21d83a6694d0dc8753f13009b38f0f656202364da85b798886feffd06292b5fd5d23b0b3afc4f81fd86a540b

diff --git a/sys-fs/zfs/zfs-2.0.0_rc4.ebuild b/sys-fs/zfs/zfs-2.0.0_rc4.ebuild
new file mode 100644
index 000..a82918b501f
--- /dev/null
+++ b/sys-fs/zfs/zfs-2.0.0_rc4.ebuild
@@ -0,0 +1,229 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_OPTIONAL=1
+PYTHON_COMPAT=( python3_{6,7,8,9} )
+
+inherit autotools bash-completion-r1 distutils-r1 flag-o-matic linux-info pam 
systemd toolchain-funcs udev usr-ldscript
+
+DESCRIPTION="Userland utilities for ZFS Linux kernel module"
+HOMEPAGE="https://github.com/openzfs/zfs;
+
+if [[ ${PV} == "" ]] ; then
+   inherit git-r3 linux-mod
+   EGIT_REPO_URI="https://github.com/openzfs/zfs.git;
+else
+   MY_P="${P/_rc/-rc}"
+   
SRC_URI="https://github.com/openzfs/${PN}/releases/download/${MY_P}/${MY_P}.tar.gz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   S="${WORKDIR}/${P%_rc?}"
+fi
+
+LICENSE="BSD-2 CDDL MIT"
+SLOT="0"
+IUSE="custom-cflags debug kernel-builtin libressl minimal nls pam python 
+rootfs test-suite static-libs"
+
+DEPEND="
+   net-libs/libtirpc[static-libs?]
+   sys-apps/util-linux[static-libs?]
+   sys-libs/zlib[static-libs(+)?]
+   virtual/awk
+   virtual/libudev[static-libs(-)?]
+   libressl? ( dev-libs/libressl:0=[static-libs?] )
+   !libressl? ( dev-libs/openssl:0=[static-libs?] )
+   !minimal? ( ${PYTHON_DEPS} )
+   pam? ( sys-libs/pam )
+   python? (
+   virtual/python-cffi[${PYTHON_USEDEP}]
+   )
+"
+
+BDEPEND="virtual/awk
+   virtual/pkgconfig
+   nls? ( sys-devel/gettext )
+   python? (
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   )
+"
+
+RDEPEND="${DEPEND}
+   !kernel-builtin? ( ~sys-fs/zfs-kmod-${PV} )
+   !prefix? ( virtual/udev )
+   sys-fs/udev-init-scripts
+   rootfs? (
+   app-arch/cpio
+   app-misc/pax-utils
+   !"
+   eerror "Block devices --->"
+   eerror "[X] Loopback device 
support"
+   fi
+   fi
+   fi
+   fi
+}
+
+src_prepare() {
+   default
+
+   if [[ ${PV} == "" ]]; then
+   eautoreconf
+   else
+   # Set revision number
+   sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" META || die 
"Could not set Gentoo release"
+   fi
+
+   if use python; then
+   pushd contrib/pyzfs >/dev/null || die
+   distutils-r1_src_prepare
+   popd >/dev/null || die
+   fi
+
+   # prevent errors showing up on zfs-mount stop, #647688
+   # openrc will unmount all filesystems anyway.
+   sed -i "/^ZFS_UNMOUNT=/ s/yes/no/" "etc/default/zfs.in" || die
+}
+
+src_configure() {
+   use custom-cflags || strip-flags
+   use minimal || python_setup
+
+   local 

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

2020-10-21 Thread Georgy Yakovlev
commit: deb9e6f71eb7d1b6372cbcfc12400f3ed1816cb5
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Oct 22 02:28:42 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Oct 22 02:35:01 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=deb9e6f7

sys-fs/zfs-kmod: bump to 2.0.0_rc4

Closes: https://bugs.gentoo.org/750689
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Georgy Yakovlev  gentoo.org>

 sys-fs/zfs-kmod/Manifest  |   1 +
 sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc4.ebuild | 175 ++
 2 files changed, 176 insertions(+)

diff --git a/sys-fs/zfs-kmod/Manifest b/sys-fs/zfs-kmod/Manifest
index 238f7e1e23d..6e725fd662a 100644
--- a/sys-fs/zfs-kmod/Manifest
+++ b/sys-fs/zfs-kmod/Manifest
@@ -1,3 +1,4 @@
 DIST zfs-0.8.4.tar.gz 9285838 BLAKE2B 
776bcd6dfab8825c07d315085e288b29bf543d6957325d5d566b7b78c04505dde9bd25eb6684cb4a1b6a657de8a4e1290d04d2b9079d26d6b834a70f1ec3b569
 SHA512 
9086dc6a6262dd93ca6ec43f1b4c2e5c804deba708c8a7460b8531aa4802b0bf8cac0917a1a00e6af2e96d4a21cd68b85e226bf571bd94041d0325c457106eb1
 DIST zfs-0.8.5.tar.gz 9196381 BLAKE2B 
8376f360369c4657ff1fc040fb2bba780bbd5d6a98d149d2fa4ba39478588e213dbf6db218c7bd970839f015a69ae00ac951b90afc1c26b34aadf666b2976cab
 SHA512 
3e6e70b76f7cc5b018adb78ce7c3009f88faf5b3da0a03170b03577cd84a2937b6056621c41fc819fd08bf59b28053caf8fec375cf375816a6786bb5646ed773
 DIST zfs-2.0.0-rc3.tar.gz 12860212 BLAKE2B 
bd29ceb17938180ffda9a26cfee97f4b9b42752cd7a3bf5d72705d94967d219889cc84a71d4c0f59aaf718d596011ecdbf07000788aa39a424087eb7cf62a944
 SHA512 
c09bebb1d1b19079b51305eea1b3d1a428a46bf1301afc9dfa20871ac670d94dc9f7f9127384b2db501fd909f22a16fad0c1b7383eb9ce31a7c0e696e66a097f
+DIST zfs-2.0.0-rc4.tar.gz 12861762 BLAKE2B 
638eb426955de38efbbb390cb02642298dd73caa5d9c9e28d8aea89bb40967c251bbbe66fbd38e08c922fb1c6fa935c959572abf237ea57ee7d9a5982693e275
 SHA512 
3972b92c7c0e92416fcde1fa01e7d1c20046de2e21d83a6694d0dc8753f13009b38f0f656202364da85b798886feffd06292b5fd5d23b0b3afc4f81fd86a540b

diff --git a/sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc4.ebuild 
b/sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc4.ebuild
new file mode 100644
index 000..715dde62754
--- /dev/null
+++ b/sys-fs/zfs-kmod/zfs-kmod-2.0.0_rc4.ebuild
@@ -0,0 +1,175 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools flag-o-matic linux-mod toolchain-funcs
+
+DESCRIPTION="Linux ZFS kernel module for sys-fs/zfs"
+HOMEPAGE="https://github.com/openzfs/zfs;
+
+if [[ ${PV} == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/openzfs/zfs.git;
+else
+   MY_PV="${PV/_rc/-rc}"
+   
SRC_URI="https://github.com/openzfs/zfs/releases/download/zfs-${MY_PV}/zfs-${MY_PV}.tar.gz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   S="${WORKDIR}/zfs-${PV%_rc?}"
+   ZFS_KERNEL_COMPAT="5.9"
+fi
+
+LICENSE="CDDL debug? ( GPL-2+ )"
+SLOT="0"
+IUSE="custom-cflags debug +rootfs"
+
+DEPEND=""
+
+RDEPEND="${DEPEND}
+   !sys-kernel/spl
+"
+
+BDEPEND="
+   dev-lang/perl
+   virtual/awk
+"
+
+RESTRICT="debug? ( strip ) test"
+
+DOCS=( AUTHORS COPYRIGHT META README.md )
+
+pkg_setup() {
+   CONFIG_CHECK="
+   !DEBUG_LOCK_ALLOC
+   EFI_PARTITION
+   MODULES
+   !PAX_KERNEXEC_PLUGIN_METHOD_OR
+   !TRIM_UNUSED_KSYMS
+   ZLIB_DEFLATE
+   ZLIB_INFLATE
+   "
+
+   use debug && CONFIG_CHECK="${CONFIG_CHECK}
+   FRAME_POINTER
+   DEBUG_INFO
+   !DEBUG_INFO_REDUCED
+   "
+
+   use rootfs && \
+   CONFIG_CHECK="${CONFIG_CHECK}
+   BLK_DEV_INITRD
+   DEVTMPFS
+   "
+
+   kernel_is -lt 5 && CONFIG_CHECK="${CONFIG_CHECK} IOSCHED_NOOP"
+
+   if [[ ${PV} != "" ]]; then
+   local kv_major_max kv_minor_max zcompat
+   zcompat="${ZFS_KERNEL_COMPAT_OVERRIDE:-${ZFS_KERNEL_COMPAT}}"
+   kv_major_max="${zcompat%%.*}"
+   zcompat="${zcompat#*.}"
+   kv_minor_max="${zcompat%%.*}"
+   kernel_is -le "${kv_major_max}" "${kv_minor_max}" || die \
+   "Linux ${kv_major_max}.${kv_minor_max} is the latest 
supported version"
+
+   fi
+
+   kernel_is -ge 3 10 || die "Linux 3.10 or newer required"
+
+   linux-mod_pkg_setup
+}
+
+src_prepare() {
+   default
+
+   if [[ ${PV} == "" ]]; then
+   eautoreconf
+   else
+   # Set module revision number
+   sed -i "s/\(Release:\)\(.*\)1/\1\2${PR}-gentoo/" META || die 
"Could not set Gentoo release"
+   fi
+}
+
+src_configure() {
+   set_arch_to_kernel
+
+   use custom-cflags || strip-flags
+
+   filter-ldflags -Wl,*
+
+   local myconf=(
+   CROSS_COMPILE="${CHOST}-"
+   HOSTCC="$(tc-getBUILD_CC)"
+   

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

2020-10-21 Thread Joshua Kinard
commit: ea3c4874317324bfea07a1d0c16fc5642239d064
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 02:09:17 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 02:09:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea3c4874

dev-python/flake8: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

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

diff --git a/dev-python/flake8/flake8-3.8.3-r1.ebuild 
b/dev-python/flake8/flake8-3.8.3-r1.ebuild
index 8076bf0ff4b..838f055ce2e 100644
--- a/dev-python/flake8/flake8-3.8.3-r1.ebuild
+++ b/dev-python/flake8/flake8-3.8.3-r1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
 
 # requires.txt inc. mccabe however that creates a circular dep
 RDEPEND="



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

2020-10-21 Thread Joshua Kinard
commit: 8aa6239f6d32d780f541b059cf538444a7c0d58d
Author: Joshua Kinard  gentoo  org>
AuthorDate: Thu Oct 22 02:12:30 2020 +
Commit: Joshua Kinard  gentoo  org>
CommitDate: Thu Oct 22 02:12:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8aa6239f

dev-python/entrypoints: Added ~mips to KEYWORDS

Signed-off-by: Joshua Kinard  gentoo.org>
Package-Manager: Portage-3.0.8, Repoman-3.0.2

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

diff --git a/dev-python/entrypoints/entrypoints-0.3-r2.ebuild 
b/dev-python/entrypoints/entrypoints-0.3-r2.ebuild
index ce698e59226..c664d0636e5 100644
--- a/dev-python/entrypoints/entrypoints-0.3-r2.ebuild
+++ b/dev-python/entrypoints/entrypoints-0.3-r2.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2020-10-21 Thread Aisha Tammy
commit: 278ea78681e753d7f372ae2ded55da98fc941f40
Author: Aisha Tammy  aisha  cc>
AuthorDate: Wed Oct 21 21:40:54 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Wed Oct 21 21:41:04 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=278ea786

dev-python/bokeh: version bump to 2.2.3

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 dev-python/bokeh/bokeh-2.2.3.ebuild | 85 +
 dev-python/bokeh/packs  | 21 -
 2 files changed, 85 insertions(+), 21 deletions(-)

diff --git a/dev-python/bokeh/bokeh-2.2.3.ebuild 
b/dev-python/bokeh/bokeh-2.2.3.ebuild
new file mode 100644
index 0..206e6962e
--- /dev/null
+++ b/dev-python/bokeh/bokeh-2.2.3.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# upstream hasn't tested python 3.8 fully
+PYTHON_COMPAT=( python3_{6..8} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+DISTUTILS_IN_SOURCE_BUILD=1
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Statistical and interactive HTML plots for Python"
+HOMEPAGE="https://bokeh.org/
+   https://github.com/bokeh/bokeh
+"
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# upstream authoritative dependencies
+# https://github.com/bokeh/bokeh/blob/master/conda.recipe/meta.yaml
+RDEPEND="
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pyparsing[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+   >=www-servers/tornado-5[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/beautifulsoup:4[${PYTHON_USEDEP}]
+   dev-python/flaky[${PYTHON_USEDEP}]
+   dev-python/ipython_genutils[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/networkx[${PYTHON_USEDEP}]
+   dev-python/nbconvert[${PYTHON_USEDEP}]
+   dev-python/nbformat[${PYTHON_USEDEP}]
+   dev-python/pydot[${PYTHON_USEDEP}]
+   dev-python/pytz[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   dev-python/selenium[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.2.1-conftest_py.patch
+)
+
+python_test() {
+   # disable tests having network calls
+   local SKIP_TESTS=" \
+   not (test___init__ and TestWarnings and test_filters) and \
+   not (test_json__subcommands and test_no_script) and \
+   not (test_standalone and Test_autoload_static) and \
+   not test_nodejs_compile_javascript and \
+   not test_nodejs_compile_less and \
+   not test_inline_extension and \
+   not (test_model and test_select) and \
+   not test_tornado__server and \
+   not test_client_server and \
+   not test_webdriver and \
+   not test_export and \
+   not test_server and \
+   not test_bundle and \
+   not test_ext \
+   "
+   pytest -m "not sampledata" tests/unit -k \
+  "${SKIP_TESTS}" -vv || die "unittests fail with ${EPYTHON}"
+}
+
+pkg_postinst() {
+   optfeature "integration with amazon S3" dev-python/boto
+   optfeature "pypi integration to publish packages" dev-python/twine
+   optfeature "js library usage" net-libs/nodejs
+}

diff --git a/dev-python/bokeh/packs b/dev-python/bokeh/packs
deleted file mode 100644
index c6ffec3a0..0
--- a/dev-python/bokeh/packs
+++ /dev/null
@@ -1,21 +0,0 @@
-dev-python/beautifulsoup
-dev-python/boto
-dev-python/colorama
-dev-python/flaky
-dev-python/ipython
-dev-python/pandas
-dev-python/pytest
-dev-python/pytest-asyncio
-dev-python/pytest-html
-dev-python/pytest-xdist
-dev-python/mypy
-dev-python/mock
-dev-python/networkx
-dev-python/nbconvert
-dev-python/nbformat
-dev-python/pytest-rerunfailures
-dev-python/pytest-xdist
-dev-python/selenium
-dev-ruby/selenium-webdriver
-net-libs/nodejs
-dev-python/scipy



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

2020-10-21 Thread Georgy Yakovlev
commit: bc8bf1e7cf2300531f6522848854e0b242f8aeb9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Oct 21 23:57:20 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Oct 21 23:57:43 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc8bf1e7

sys-cluster/minikube: bump to 1.14.0

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

 sys-cluster/minikube/Manifest   |4 +
 sys-cluster/minikube/minikube-1.14.0.ebuild | 1774 +++
 2 files changed, 1778 insertions(+)

diff --git a/sys-cluster/minikube/Manifest b/sys-cluster/minikube/Manifest
index dd2932ffe68..ec1c2b2faf0 100644
--- a/sys-cluster/minikube/Manifest
+++ b/sys-cluster/minikube/Manifest
@@ -527,6 +527,8 @@ DIST 
github.com%2Fgoogle%2Fgo-containerregistry%2F@v%2Fv0.0.0-20200131185320-aec
 DIST github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.mod 35 
BLAKE2B 
87a5884f51a766419a5bfaca4d6b317f2e86680e7347d29dba287e4c2004db6b8a8afcb2b2b8145cc3f9a502b768105eab89ba0f3e99db44427fd3eab9d3ac8c
 SHA512 
6d285a58dc91fb57f990b76b3c2634247bee990ec1bb3e0f11b19fe1edb3b9b1998030def12b20a6f05c574965ddcefda6883121f5aae70c695e031e72425178
 DIST github.com%2Fgoogle%2Fgo-github%2F@v%2Fv17.0.0+incompatible.zip 347066 
BLAKE2B 
5ef49f931c987f9a24880afbd3ca231093bb43f0c059df9110c38ffe3ad54c4de3851cc36cc9af15b49112462cc164b0812c8872d5fb2d61d0cf751040213762
 SHA512 
3a24fd40eec7d23c69143355338019544fcc935b01f63f604419a5d7b5f1222e89de7e28dc86454e57e262f9bee5e495f3b8d7392c6e87b7e8c442e05709
 DIST github.com%2Fgoogle%2Fgo-github%2Fv28%2F@v%2Fv28.1.1.mod 428 BLAKE2B 
e78c1cfae3615c6b7062d74c18a8695fa0f35af0b2dd545bf6f5f5d4ce5a3f334b7abf2a0526061b174b4ac0b458d59dbed25c00d4a63b71e25d4a98821ae524
 SHA512 
7d2a20a54c885207facafd3e6ab18698e102c9ec564daa2864e39ed887f88df20c6b37488185fc829685198ab628de978a7a99a0a07611d4ef6256f1a5ebc7c2
+DIST github.com%2Fgoogle%2Fgo-github%2Fv32%2F@v%2Fv32.1.0.mod 362 BLAKE2B 
e6cd7db0bfe9ede854b194b5cbc132a80284ab94a60a39aa6d6a80b8d2c5319f96daffe0b1bf271daf740b2d64c3879bcb4d2d63f302edfec1fc737d5b54b730
 SHA512 
e053eed1c6f21bfd93c074f6814078cbd54a3fdbf9f5c809f7b1e355b31af51f99219fa08caad2f1a3157731ec654e8d54b18932be699a7b3f93a025cca63499
+DIST github.com%2Fgoogle%2Fgo-github%2Fv32%2F@v%2Fv32.1.0.zip 448314 BLAKE2B 
e02a5368adf8f57f16af69759c805dfe03a4f9d1b60e18dc293e7c8edb453a38765da034ed322f1f661973b061b7fd65d5768b1276aa3d1e1e70cf61fd4bbd38
 SHA512 
f30c03d732088284b777c7ae88728985f3a8f2ea654b2aa45e7ee6710d1d336d7b8dcc3ece97e3586d78828a58250ebdcbc82041e07a8572987f59708675b779
 DIST github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.mod 40 BLAKE2B 
081291e204018d8256655052c8f518c8d489818e899a6932325f2efe7a33dd7228f1bab1fe31f190c2cd1a022b8f320c2a779910231122de430bdb6c196ca95e
 SHA512 
b47c833f93e2d2f9746276fb7608dfe01295cead6b0c9cad36863e9c6da80e3abe8e7d79afb113fe382f73b641fcfd717090a8d6ca2d94bf2807fec07cd57574
 DIST github.com%2Fgoogle%2Fgo-querystring%2F@v%2Fv1.0.0.zip 9151 BLAKE2B 
853a982f1c3b2b60fb44e3da969f7cdbeb6e5214c549e47dee57329a9c93c8786bcb2af6e3aab5f7aacf0bf0c70beb26f95c42b796cc2cff5b9b825040cf5a11
 SHA512 
e13c7622fe1c4ba73fe147255c02d6828f5d5deaea74ee14a97dd689819547b913caef4721838a68490991c710156307cf0487866d200021cf9d774a4600e52e
 DIST github.com%2Fgoogle%2Fgo-replayers%2Fgrpcreplay%2F@v%2Fv0.1.0.mod 355 
BLAKE2B 
a8d1fc49f0ce942f92bc9eaa5e21ae9290db26f96f1a924f09574293f502473896b595dc4fb588657a4d3cda1ba16831ec235b46a96c8b4ce0824c963ba159f8
 SHA512 
be86403e513712f8901d0a190d46a2822a3a061deaf72d5e635ecb9f9174391327086e954b125e3d2f8b53d67c805080e69889cdf0f4f2379b9d0f71acaa93cb
@@ -1243,6 +1245,7 @@ DIST 
golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20191227195350-da58074b4299.mod 485 BLAK
 DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200119233911-0405dc783f0a.mod 485 
BLAKE2B 
84e7d8f764e53841999e798d24dcbffea37708b68eb430f91e3e09f77cca2a2d36d9bfd115f0fdc9eb87e967d6ffeb0ff6f6990afd722e86b40046995f22600e
 SHA512 
2c7217344b34e4870f799968403146268e8e6f85680aac25702f22e69bc4954d35a70a0743646ee8aa36f268c252a9c647e88b1dce8c47db302a1d3eca638aec
 DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200207192155-f17229e696bd.mod 515 
BLAKE2B 
b37d0d779f058e58ca3e350248cceaac958c4e406d70872fc3682f49b862391dc75d0a17a9ecac8a5dde4339552a222ce2f36b99d8daa3ad01fa5d8632351b3e
 SHA512 
c5f79afe4531059fbc6acf58b7ec7f1e9558df83c4936c830dcb138cbfd7dbc4bab6c0acce6e0c588cc742ec3984d4116ad3e03be815c4f64af32f7ea5024053
 DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200224162631-6cc2880d07d6.mod 572 
BLAKE2B 
fe37c4263fa4f07a01e65941f859f6abd92e26911622e8b06464ca1e4b65efa46b43eb1c475d6888a67d21b6104aca3c227f42210f0ea8e6709a497f13e1b45f
 SHA512 
a773e3b5c26e95dd24414b9f2aa88225a330581cd9ed0c1ca83a3a6712dd3639e1526abe7c0ea47f9ca701828eb39e1df2144edd6ab261caf584a058f092f0fb
+DIST golang.org%2Fx%2Fexp%2F@v%2Fv0.0.0-20200224162631-6cc2880d07d6.zip 
1564884 BLAKE2B 

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

2020-10-21 Thread Georgy Yakovlev
commit: 35f744cffa1d47a94c47ec7cfaf65ee7ef6cf318
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Oct 21 21:25:37 2020 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Oct 21 23:57:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35f744cf

dev-go/go-bindata: add ~ppc64 keyword

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

 dev-go/go-bindata/go-bindata-3.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-go/go-bindata/go-bindata-3.1.3.ebuild 
b/dev-go/go-bindata/go-bindata-3.1.3.ebuild
index d51df91eaed..8a1067538d7 100644
--- a/dev-go/go-bindata/go-bindata-3.1.3.ebuild
+++ b/dev-go/go-bindata/go-bindata-3.1.3.ebuild
@@ -28,7 +28,7 @@ 
SRC_URI="https://github.com/go-bindata/go-bindata/archive/v${PV}.tar.gz -> ${P}.
 
 LICENSE="CC-PD"
 SLOT="0/${PVR}"
-KEYWORDS="amd64 ~arm ~arm64"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64"
 
 src_compile() {
GOBIN=${S}/bin \



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

2020-10-21 Thread Michał Górny
commit: 0c1335aca12876c27b98eb56f32d2c4d3b07274e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:29 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c1335ac

dev-python/virtualenv: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/virtualenv/Manifest |  4 -
 dev-python/virtualenv/virtualenv-20.0.31-r1.ebuild | 93 --
 dev-python/virtualenv/virtualenv-20.0.32.ebuild| 93 --
 dev-python/virtualenv/virtualenv-20.0.33.ebuild| 93 --
 dev-python/virtualenv/virtualenv-20.0.34.ebuild| 93 --
 5 files changed, 376 deletions(-)

diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
index 8ac4dfa1b1a..4702e3f6988 100644
--- a/dev-python/virtualenv/Manifest
+++ b/dev-python/virtualenv/Manifest
@@ -1,6 +1,2 @@
 DIST virtualenv-16.7.10.tar.gz 5116776 BLAKE2B 
42f0a4b4330850b504f8febd991ef6ecdcbb0821efdd94ca324a8cc34a68a760a8a98de97f0cb2384d8e6cbb0ce8f261995c6433886444e29b75ba0ce09ca12c
 SHA512 
f06d7c354ce1910f04dbcbe1a77e60392653bbe4f638bafbe9284454db2c0e5d63cf9159201d0916fc01aaba91d45fb733b63096c38517fcd83fd00ed8b26d28
-DIST virtualenv-20.0.31.tar.gz 8300305 BLAKE2B 
1574b553b2bc8e05bf00584379f80c1e5c0ee9798595255830059eedea62f02f02d216c421aa2cb312bc9e60694f6a409d0c2495858a89fc1ad7aaddea7965ff
 SHA512 
46220bda37b3b860e44c4d0775a89c22a7ba775287f05438d1d3698201cc213a05b2718ef40be302627005ae349dc59a3141c7a30cc1dab6dc81f7692c7f16a5
-DIST virtualenv-20.0.32.tar.gz 8282189 BLAKE2B 
91cfece89079cf05bab406e86a7b4d89ff65b058682f989c1a87ed63ffd9a06447983935a05409e1f8116c45434fe5b4040ed713ae01c17887050709af26a422
 SHA512 
6080a395df16cc4d38a3afa90337fe0f60ce1d6906c4d62f461c90c67df2967a27144def0891407a96405d7b1ca8b838a0daeed4ccc775ffee35f7dc14f54598
-DIST virtualenv-20.0.33.tar.gz 8282602 BLAKE2B 
702432c39fb4e6802e9d456f2c1c10872e45c616dba72e52397d10328d310a920b1b475fcb0543ba05f7adc5d780adf9d6a9c850f5844b833c9bd66b7bb0fbc9
 SHA512 
3bb68734884fa88343070c19e5d931a36fb90f1351bbc24c0db7bea26172e9118fa088310d2667b568e268dc33141c62cad372e2ad03106eda72751a0c1895ea
-DIST virtualenv-20.0.34.tar.gz 8282838 BLAKE2B 
73352c278bac6d2bc548beee738bf5f9972430681edca242f2945d8301373094a378fe3ecf2a72bae11e2bf9c28b8bf0a8526ee5e52a9a5344ac4f46c3af7a9a
 SHA512 
4ea4b9a13771984dc5e9922ee79f3577dabcb8f49afa0e4a138114e20fb81e136b8c140a3dce471a01beefbff495dc3eb29bf9cf389bdb856e55838a53a49658
 DIST virtualenv-20.0.35.tar.gz 8283086 BLAKE2B 
66d6b22d9928bf3925c8911e24fa1ba22d1276518c23e0d951c58cca0cb34f67e5053f27882ab9eafbdba040a893861eadb40497398d9deaacb45c461bfa01cc
 SHA512 
066cefbf9c6c77277a1c97c8cf555a8b4411784ad289c058f107872be15e9dd4ef9ac6e4ec64143e0b30512d9f454408e18e434ef8f9b2bfe3e6456fade71251

diff --git a/dev-python/virtualenv/virtualenv-20.0.31-r1.ebuild 
b/dev-python/virtualenv/virtualenv-20.0.31-r1.ebuild
deleted file mode 100644
index a734981f18b..000
--- a/dev-python/virtualenv/virtualenv-20.0.31-r1.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} pypy3 )
-DISTUTILS_USE_SETUPTOOLS=manual
-
-inherit distutils-r1
-
-DESCRIPTION="Virtual Python Environment builder"
-HOMEPAGE="
-   https://virtualenv.pypa.io/en/stable/
-   https://pypi.org/project/virtualenv/
-   https://github.com/pypa/virtualenv/
-"
-SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-python/appdirs-1.4.3[${PYTHON_USEDEP}]
-   >=dev-python/distlib-0.3.1[${PYTHON_USEDEP}]
-   >=dev-python/filelock-3[${PYTHON_USEDEP}]
-   >=dev-python/setuptools-41[${PYTHON_USEDEP}]
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   >=dev-python/importlib_metadata-0.12[${PYTHON_USEDEP}]
-   ' python3_{6,7} pypy3)
-   $(python_gen_cond_dep '
-   >=dev-python/importlib_resources-1.0[${PYTHON_USEDEP}]
-   ' python3_6 pypy3)"
-# coverage is used somehow magically in virtualenv, maybe it actually
-# tests something useful
-BDEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? (
-   ${RDEPEND}
-   $(python_gen_cond_dep '
-   dev-python/coverage[${PYTHON_USEDEP}]
-   dev-python/flaky[${PYTHON_USEDEP}]
-   >=dev-python/pip-20.0.2[${PYTHON_USEDEP}]
-   >=dev-python/pytest-5[${PYTHON_USEDEP}]
-   >=dev-python/pytest-freezegun-0.4.1[${PYTHON_USEDEP}]
-   >=dev-python/pytest-mock-2.0.0[${PYTHON_USEDEP}]
-   

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

2020-10-21 Thread Michał Górny
commit: f2e5279a848e943ca6aee5145f8e733c743a6e42
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:17 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:25 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2e5279a

dev-python/stevedore: Remove old

Signed-off-by: Michał Górny  gentoo.org>

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

diff --git a/dev-python/stevedore/Manifest b/dev-python/stevedore/Manifest
index cf01feaa25c..e2ff51783f1 100644
--- a/dev-python/stevedore/Manifest
+++ b/dev-python/stevedore/Manifest
@@ -1,2 +1 @@
-DIST stevedore-3.2.0.tar.gz 510559 BLAKE2B 
69faa75eed9efff36a0dd5f91730dd22936af646bd54e1f8c47da5d3bc3d33e949714ac81898747336bcd8acbdd1bb2addc68fb64add825493ad29fb22393fee
 SHA512 
89b6c88ff41bd9429561886fa2e7cbeef1658e955266b61e1ac9809812ee8e290ecb39819618a12b1a6e080d2e86ea03d951a0a31f7ff4920d8b22bb55420439
 DIST stevedore-3.2.2.tar.gz 512174 BLAKE2B 
60061f04cee8b4ab1c95ab7c02083abd15a623970168df379c82860bb2ea9b27171f5862851eb194c88001b02878eacab4428a76cbfbe528e7246b3e492abfe1
 SHA512 
1c3f81157b16af800c1caa971f063c50638a70eced582dbcffafaf7d9bbd4e402f75003fcd73b3cb85940bbe9027bac24e37754ffcacffb06d133e938e07ebcf

diff --git a/dev-python/stevedore/stevedore-3.2.0.ebuild 
b/dev-python/stevedore/stevedore-3.2.0.ebuild
deleted file mode 100644
index 7241a0c841d..000
--- a/dev-python/stevedore/stevedore-3.2.0.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Manage dynamic plugins for Python applications"
-HOMEPAGE="https://github.com/openstack/stevedore 
https://pypi.org/project/stevedore/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 hppa ~ia64 ~ppc64 sparc x86"
-
-RDEPEND="
-   $(python_gen_cond_dep '
-   >=dev-python/importlib_metadata-1.7.0[${PYTHON_USEDEP}]
-   ' python3_{6,7})
-   >=dev-python/six-1.10.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   >=dev-python/pbr-2.0.0[${PYTHON_USEDEP}]
-   test? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/testtools[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests unittest
-distutils_enable_sphinx 'doc/source' \
-   '>=dev-python/openstackdocstheme-1.18.1' \
-   '>=dev-python/reno-2.5.0' \
-   '>=dev-python/sphinx-2.0.0'
-
-python_prepare_all() {
-   # Delete spurious data in requirements.txt
-   sed -e '/^pbr/d' -i requirements.txt || die
-   distutils-r1_python_prepare_all
-}



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

2020-10-21 Thread Michał Górny
commit: 4b0b6ee9f3a283db449433b45df93dfdfa69aa12
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:16 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b0b6ee9

dev-python/sqlparse: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sqlparse/Manifest  |  1 -
 dev-python/sqlparse/sqlparse-0.4.0.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-python/sqlparse/Manifest b/dev-python/sqlparse/Manifest
index b3753b7ac39..254934698ac 100644
--- a/dev-python/sqlparse/Manifest
+++ b/dev-python/sqlparse/Manifest
@@ -1,3 +1,2 @@
 DIST sqlparse-0.3.1.tar.gz 67572 BLAKE2B 
27c9267de1a269a4574019d457a3dad53ad805e56a57ba73e294c229a7852b7ca04557fb45d07566e94eba7593257ad7eb413b1e0ec04d1044838d5039dc8ba8
 SHA512 
4c56a528b43578a7a48fc31cee369215b15761d9903ea1d8e034c69f0eb6431dd15362aab13af25a36fccb361436f1cba746bcbb515cbab5d30319629dd2ddfb
-DIST sqlparse-0.4.0.tar.gz 67191 BLAKE2B 
748a30102b104ecd951d2e39b626e7351a7d141c756b3ae47451ccbbcef16f32201592aeee5bbf7a82a601e02f2faae8a569134b37b0660e54149e9ba56e096f
 SHA512 
3314fe6ee7694a01c7ab00469ca6de90d3e954c5da39d2d8e2e085608b0b1ff304757378aa473d0687a16d064d952d0cd987237340e2f169604533d6757a61f3
 DIST sqlparse-0.4.1.tar.gz 67228 BLAKE2B 
677b592af263e94e1f6d36242f4bf75d28d0466636c0c578b83f472acf05c357b6899150ce01b594db89f2844c1b85220429857583c79e6dbba34a75bdf54e47
 SHA512 
49f02a63ef490c2e900cea6a0882891cd1381e0f398c4e38688444300b0f0e961c91c4f1a2355704bba7f170083594bd9e26c2a6cac934da9d87ab291accd27c

diff --git a/dev-python/sqlparse/sqlparse-0.4.0.ebuild 
b/dev-python/sqlparse/sqlparse-0.4.0.ebuild
deleted file mode 100644
index 45594ba40a2..000
--- a/dev-python/sqlparse/sqlparse-0.4.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6..9} )
-inherit distutils-r1
-
-MY_PN="${PN##python-}"
-MY_P="${MY_PN}-${PV}"
-DESCRIPTION="A non-validating SQL parser module for Python"
-HOMEPAGE="https://github.com/andialbrecht/sqlparse;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S="${WORKDIR}"/${P#python-}
-
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux"
-LICENSE="BSD-2"
-
-distutils_enable_sphinx docs/source
-distutils_enable_tests pytest



[gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-bootstrap-theme/

2020-10-21 Thread Michał Górny
commit: 59a9879e9a39afc7b490e2abf3340b8537a0a7d6
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:12 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:20 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59a9879e

dev-python/sphinx-bootstrap-theme: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sphinx-bootstrap-theme/Manifest |  1 -
 .../sphinx-bootstrap-theme-0.6.5.ebuild| 18 --
 2 files changed, 19 deletions(-)

diff --git a/dev-python/sphinx-bootstrap-theme/Manifest 
b/dev-python/sphinx-bootstrap-theme/Manifest
index 08bfe9f099f..be4a8186428 100644
--- a/dev-python/sphinx-bootstrap-theme/Manifest
+++ b/dev-python/sphinx-bootstrap-theme/Manifest
@@ -1,2 +1 @@
-DIST sphinx-bootstrap-theme-0.6.5.tar.gz 1232943 BLAKE2B 
76cd6f70cd485c552e9a76c559c8687129851fa40e03e206bdafc5fc0f948ed53d07ea8196908d2c17af1718eb721aaeb4fd1d65313e12a069a7186008a4f222
 SHA512 
30ef77364aa4c83f1a2ee7f663740670124a6f433ed59af05ed408a59cb35643b66e3fea391edcb811cbd9ae3713eb174c76bf00bbad9801910935159bbe
 DIST sphinx-bootstrap-theme-0.8.0.tar.gz 1225612 BLAKE2B 
db5e65db732163048909903c7af0eb301a81b12fbf9ce299070d55ea8f949e2094f3c5624182fd8ac625d553f982cba6ef1bc0c2680de55993d57e82a779956a
 SHA512 
25a2d05c424c52d4571e9a50a55be0c7f3a32aa855c3fe6fb642b1afcebcabb0fa715aac48da280a556b6c8d206b7018b45d8f9bd092123a9c03940290bbfc63

diff --git 
a/dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.6.5.ebuild 
b/dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.6.5.ebuild
deleted file mode 100644
index 43b36798663..000
--- a/dev-python/sphinx-bootstrap-theme/sphinx-bootstrap-theme-0.6.5.ebuild
+++ /dev/null
@@ -1,18 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( pypy3 python3_{6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Sphinx theme integrates the Bootstrap CSS / JavaScript framework"
-HOMEPAGE="https://ryan-roemer.github.io/sphinx-bootstrap-theme/README.html;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
-IUSE=""



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

2020-10-21 Thread Michał Górny
commit: 60d009eae7604160dba0e55e126f491e3913d1ef
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:11 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:19 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60d009ea

dev-python/speg: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/speg/speg-0.3.ebuild | 13 -
 1 file changed, 13 deletions(-)

diff --git a/dev-python/speg/speg-0.3.ebuild b/dev-python/speg/speg-0.3.ebuild
deleted file mode 100644
index 4893e033749..000
--- a/dev-python/speg/speg-0.3.ebuild
+++ /dev/null
@@ -1,13 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-EAPI=7
-PYTHON_COMPAT=( python3_{6,7} )
-inherit distutils-r1
-DESCRIPTION="A PEG-based parser interpreter with memoization"
-HOMEPAGE="https://github.com/avakar/speg/;
-SRC_URI="https://github.com/avakar/speg/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="amd64 x86"
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND=""



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

2020-10-21 Thread Michał Górny
commit: 0b63898a83151b4ec9b9ef2950c1b84be07adc35
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:15 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:24 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b63898a

dev-python/sphinxcontrib-spelling: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sphinxcontrib-spelling/Manifest |  2 -
 .../sphinxcontrib-spelling-5.1.2.ebuild| 41 -
 .../sphinxcontrib-spelling-6.0.0.ebuild| 52 --
 3 files changed, 95 deletions(-)

diff --git a/dev-python/sphinxcontrib-spelling/Manifest 
b/dev-python/sphinxcontrib-spelling/Manifest
index d76eed85a5a..9de1bae8113 100644
--- a/dev-python/sphinxcontrib-spelling/Manifest
+++ b/dev-python/sphinxcontrib-spelling/Manifest
@@ -1,5 +1,3 @@
-DIST sphinxcontrib-spelling-5.1.2.tar.gz 22962 BLAKE2B 
c7b15289b4b6dce5e6c5fb529c4be2cd7c1f41d8bfc6ac86daf1a982f711bd2c426d9b3a615471538fe221197b64ccd907efd4620ea2440f6ec07b2a078d6bee
 SHA512 
4a0398b7c79a035e12d9ae96100fcaa4df42aeae07a01a73f7d875ba04fbbeb3d7441c9debe77491876d78b0a3753677cff4cb3a575e3490364fe5780f5a70b2
 DIST sphinxcontrib-spelling-5.3.0.tar.gz 45665 BLAKE2B 
c44c8c2621aecd74734c6137e1344a763e99fb61b3ce882c8ea70364df17a7e2fac49acc8878753cab1b70df2cf084de5087bed77f8b1bffe311410ecec3504d
 SHA512 
8f3c4718877e55b0ebcd3d8c0f078a6c06c27c2cdd3cc557fd2e0e990f0c8956179fd9a8b3135b280973e45c0c8657f71372746ef4b55319078db8f16c7e00e9
 DIST sphinxcontrib-spelling-5.4.0.tar.gz 46823 BLAKE2B 
8303a97b87d953a37db4548d895559baf93969c11f8417aafeb67804ec537f9ea028bcbf6a56eb3290f13871a782dcde142b1927865a6f9eefd5a20dc53061b1
 SHA512 
7e0fe6289f9482982825a1204c926490a1e31dc85e25e6418ba47f5575430875e3df5f77202ad458044b810bc2a29f989e6bc6f0c9b4934af938716a4ab887f0
-DIST sphinxcontrib-spelling-6.0.0.tar.gz 46607 BLAKE2B 
f5283fe16c8e72eea3a79b1a54036bb1a9b87857a1ba19082ed486c0bf87ea474fcbc7e1930449bb2b61b3c9c7f3e69de94bbe187927571d06ef7ce3adabf5cc
 SHA512 
bd2725740ab5b7b225f66d45a811ae7d282859f182d2088ad4b4f1314fdccf464eddf2e534207bca467bddf0df2fcd5f8abc52a90cf0135ac15231d14c363c25
 DIST sphinxcontrib-spelling-7.0.0.tar.gz 46859 BLAKE2B 
08b8fb68f485ce9a091ad88887c1683c39a99d8b138b1215228a01696181c0c1876004506f54a89812aa96dcb4936145f105829d82017576329bba416f4f
 SHA512 
b5c9585e171747addc2c9d00ede4e4c290286a6f35921fc54bb8a88bb9574b01494e5e7dbf492d59e74afd3c815a2814a4b7d27b3c3aa98a7b6b8934626d2bde

diff --git 
a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.2.ebuild 
b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.2.ebuild
deleted file mode 100644
index b51f53167f5..000
--- a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-5.1.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Sphinx spelling extension"
-HOMEPAGE="https://github.com/sphinx-contrib/spelling;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   dev-python/pbr[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   app-dicts/myspell-en
-   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
-   dev-python/testtools[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_sphinx docs/source --no-autodoc
-distutils_enable_tests unittest
-
-RDEPEND+="
-   dev-python/namespace-sphinxcontrib[${PYTHON_USEDEP}]
-"
-
-python_install_all() {
-   distutils-r1_python_install_all
-   find "${ED}" -name '*.pth' -delete || die
-}

diff --git 
a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-6.0.0.ebuild 
b/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-6.0.0.ebuild
deleted file mode 100644
index 6819f5557b2..000
--- a/dev-python/sphinxcontrib-spelling/sphinxcontrib-spelling-6.0.0.ebuild
+++ /dev/null
@@ -1,52 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Sphinx spelling extension"
-HOMEPAGE="https://github.com/sphinx-contrib/spelling;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
-
-RDEPEND="
-   $(python_gen_cond_dep '
-   >=dev-python/importlib_metadata-1.7.0[${PYTHON_USEDEP}]
-   ' python3_{6,7})
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/sphinx[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   dev-python/pbr[${PYTHON_USEDEP}]
-   test? (
-   

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

2020-10-21 Thread Michał Górny
commit: 654287b5502cc4bd79ddcffb940ada865704b5cf
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:31 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=654287b5

dev-python/zope-interface: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/zope-interface/Manifest |  1 -
 .../zope-interface/zope-interface-5.1.1.ebuild | 53 --
 2 files changed, 54 deletions(-)

diff --git a/dev-python/zope-interface/Manifest 
b/dev-python/zope-interface/Manifest
index 4a726346ac5..f43e21d15ec 100644
--- a/dev-python/zope-interface/Manifest
+++ b/dev-python/zope-interface/Manifest
@@ -1,3 +1,2 @@
 DIST zope.interface-5.1.0.tar.gz 225400 BLAKE2B 
6ad412bbf3c0327d2b8f37899c1e71fe4bf63c3840c9f2c7e776e3208ec8999c4812aaae89cb9a78724b40ef3dd883323b00eeccab44714eabef6c33c171be48
 SHA512 
be8319913222ada47a22559e22322ec12dff3adf17f45335d007c5aa3509d84a7d0a7e6c113967b91810b3613344b5c60e002eb740af2bbb454b2807de8dad98
-DIST zope.interface-5.1.1.tar.gz 228612 BLAKE2B 
4452a9e75feb496e933add5b15c17a782c78aaa0274eae09955ce618dd5946997d29aedbd4856952467e243ccdda923b66925af27afefeda03aff78f5f8f1fe4
 SHA512 
9cf195154592f5bac3335420eb01c55914b856e4b135b1756c9d812aa9418dcbd82a7e8438d3d1b5891867ca655c722641eb4d1606c47132aa8f9523b67c5725
 DIST zope.interface-5.1.2.tar.gz 228946 BLAKE2B 
20740fdf2c0298dc852b7c1ca9acdd125fe355dc2032e4ad990af67bc06e505e744c930420bb0c82b2b9c765f642c15b0a398c40dda637eabba7e237f8e7913e
 SHA512 
c0efd82d1b2f3bb6c71d89a74ccbef60955c74012fe2b87c752198c02374b3e5e113679451f2239474dbed0cbebb82b3fdefc3524d00a6f3896a16505847e519

diff --git a/dev-python/zope-interface/zope-interface-5.1.1.ebuild 
b/dev-python/zope-interface/zope-interface-5.1.1.ebuild
deleted file mode 100644
index 5de915fb7e9..000
--- a/dev-python/zope-interface/zope-interface-5.1.1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# pkg_resources namespace
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
-
-inherit distutils-r1 flag-o-matic
-
-MY_PN=${PN/-/.}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Interfaces for Python"
-HOMEPAGE="https://pypi.org/project/zope.interface/ 
https://github.com/zopefoundation/zope.interface;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-
-LICENSE="ZPL"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
-
-RDEPEND="dev-python/namespace-zope[${PYTHON_USEDEP}]"
-BDEPEND="
-   test? (
-   dev-python/zope-event[${PYTHON_USEDEP}]
-   dev-python/zope-testing[${PYTHON_USEDEP}]
-   )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-PATCHES=(
-   "${FILESDIR}"/5.1.0-drop-coverage.patch
-)
-
-distutils_enable_tests setup.py
-
-python_compile() {
-   if ! python_is_python3; then
-   local CFLAGS="${CFLAGS}" CXXFLAGS="${CXXFLAGS}"
-   append-flags -fno-strict-aliasing
-   fi
-
-   distutils-r1_python_compile
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   # remove .pth files since dev-python/namespace-zope handles the ns
-   find "${D}" -name '*.pth' -delete || die
-}



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

2020-10-21 Thread Michał Górny
commit: c4a9b654d23dc3ea4595f26aabe127419c4ef395
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:23 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4a9b654

dev-python/sphinx: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sphinx/Manifest|   1 -
 dev-python/sphinx/sphinx-3.1.2.ebuild | 133 --
 2 files changed, 134 deletions(-)

diff --git a/dev-python/sphinx/Manifest b/dev-python/sphinx/Manifest
index 85977f356bd..c070da89435 100644
--- a/dev-python/sphinx/Manifest
+++ b/dev-python/sphinx/Manifest
@@ -1,3 +1,2 @@
 DIST Sphinx-2.4.4.tar.gz 5966973 BLAKE2B 
727a75eb4ec33beadf80b22cdd8dda02a53f4da4aea10ee18ecae658a69a9bb797f83b0d11b41b8405bf18b2472ea7fd501bea85382c20c5f2a9d5b14a032428
 SHA512 
cd35b7ebdf4eb41fb3a58706333ca4328fbf9b37999ad1bcc751f9769f0a294464e4def019a403fcd2204ca963ef641c35c957a4145eb50af07573d21df8c74d
-DIST Sphinx-3.1.2.tar.gz 5934433 BLAKE2B 
4ed04dcff4db412ea1f749c0b90d0c38197bbc95607bcc719522f0690d6fd58aa59b87a053c036e9b3c982e9c0f6fa9b6b67f903cb7d9e6fea3a13d99b7be297
 SHA512 
d1b55a603ea4a76d2315e170b8ba7858caf1658660e9983034918bd265c505f0e5157ab9d9cebc970261646ae0959e1cf75562b01b73bf3a380e712393a735b9
 DIST Sphinx-3.2.1.tar.gz 5970067 BLAKE2B 
6158d31390c9b07aa3abcdc4eb7ed827cf2160192a2c53ad845f07d5027cc4bd65264ea1114e78e06f9652a8788a8d0e992a8988382787a05bf507a73618cd96
 SHA512 
3f0f49036a44938abd470c2f825a0b818daf3dfbb3bc5c746b64305b5fe66c1c34d9703eb9420b2b347247c122825ddae1b6c28c88c249206151f39e3bdb

diff --git a/dev-python/sphinx/sphinx-3.1.2.ebuild 
b/dev-python/sphinx/sphinx-3.1.2.ebuild
deleted file mode 100644
index 2d6fcc770e7..000
--- a/dev-python/sphinx/sphinx-3.1.2.ebuild
+++ /dev/null
@@ -1,133 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6..9} pypy3 )
-PYTHON_REQ_USE="threads(+)"
-
-inherit distutils-r1
-
-DESCRIPTION="Python documentation generator"
-HOMEPAGE="https://www.sphinx-doc.org/
-   https://github.com/sphinx-doc/sphinx;
-SRC_URI="mirror://pypi/S/${PN^}/${P^}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-macos ~x64-solaris"
-IUSE="doc latex test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   /dev/null || die
-   "${EPYTHON}" -m sphinx.pycode.__init__ || die "Grammar generation 
failed."
-   popd >/dev/null || die
-}
-
-python_compile_all() {
-   if use doc; then
-   esetup.py build_sphinx
-   HTML_DOCS=( "${BUILD_DIR}"/sphinx/html/. )
-   fi
-}
-
-python_test() {
-   mkdir -p "${BUILD_DIR}/sphinx_tempdir" || die
-   local -x SPHINX_TEST_TEMPDIR="${BUILD_DIR}/sphinx_tempdir"
-   pytest -vv || die "Tests fail with ${EPYTHON}"
-}



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

2020-10-21 Thread Michał Górny
commit: a082a544ffe4daf653026e013e8096671af379d7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:18 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:26 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a082a544

dev-python/svg-path: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/svg-path/Manifest|  1 -
 dev-python/svg-path/svg-path-3.0.ebuild | 33 -
 2 files changed, 34 deletions(-)

diff --git a/dev-python/svg-path/Manifest b/dev-python/svg-path/Manifest
index 8c90abdb0a8..fa6d2195d6b 100644
--- a/dev-python/svg-path/Manifest
+++ b/dev-python/svg-path/Manifest
@@ -1,2 +1 @@
-DIST svg.path-3.0.tar.gz 17077 BLAKE2B 
6fdb51c982575639337d74a6f02f0bb3cc44dac56bd6982dec6493bed52d9caab5ed725ac59bf754f309cc62ef6f77faec462afacc8f93ce9a20b886ef2b5c8e
 SHA512 
73d23f1386bbd4d1c1d805766f7e6fe6f8b7ac731e104020e7d853d7f1b46bc2681f44ef20d9c5343197d9d16b2af49f2c4ef4ba5945f4d25fa0493502203e13
 DIST svg.path-4.0.2.tar.gz 18161 BLAKE2B 
bd5adbf059808b8197fbff0f12e274d98cc72ef840cd29e504bab1dd5fbcb5240aa3d6beb2cc3f6b91bcbdd9251fa29285de0ecd163c22d6cb8454102b911597
 SHA512 
0659c3d012b81cca83306c2895480bcc770cf23f4fc98dc4f167b6799a9c5618a90aabd81e2c91e6b7c57998d42f04a47d8f0fa966546111cd165127df239510

diff --git a/dev-python/svg-path/svg-path-3.0.ebuild 
b/dev-python/svg-path/svg-path-3.0.ebuild
deleted file mode 100644
index 9d0dcff79ea..000
--- a/dev-python/svg-path/svg-path-3.0.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1
-
-MY_PN="svg.path"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="SVG path objects and parser"
-HOMEPAGE="https://github.com/regebro/svg.path;
-SRC_URI="https://github.com/regebro/svg.path/archive/${PV}.tar.gz -> 
${MY_P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}/${MY_P}"
-
-python_test() {
-   esetup.py test || die
-}
-
-python_install() {
-   python_domodule src/svg
-}



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

2020-10-21 Thread Michał Górny
commit: c5131d2eaf50b6d69ecaad084a6a0664101aa894
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:31 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5131d2e

dev-python/zstandard: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/zstandard/Manifest   |  1 -
 dev-python/zstandard/zstandard-0.12.0-r1.ebuild | 32 -
 2 files changed, 33 deletions(-)

diff --git a/dev-python/zstandard/Manifest b/dev-python/zstandard/Manifest
index 512ebe9eb2a..25c4d309a5b 100644
--- a/dev-python/zstandard/Manifest
+++ b/dev-python/zstandard/Manifest
@@ -1,3 +1,2 @@
-DIST zstandard-0.12.0.tar.gz 648827 BLAKE2B 
bb644150e4126997d447dad3e5aec9f6e15ee344366634772d75b246a9ab82fad13f85ce986f36e45331fff26449b05a0864ad77d949def8cb024f598a218c74
 SHA512 
ebf896a77ce5cdc82a1edb658a0b96bcf99deee7aa031163879fc21fe3d03623061182fd2c11840a5a46a8ad0a08b98b802b4703b963d448a25c0b52685d3b64
 DIST zstandard-0.14.0.tar.gz 676761 BLAKE2B 
f90fcee6571f89eb5964ba50c722be8f3b846a0aaa6f79bd41389131ce332a4c6f7ec3d2eabd16268a42d211c7c02c2f7379019ef44272eb23cc74a20e5e9b3d
 SHA512 
57c62eb7dedde2a2178f79a5658b87b5c5f176b282311273953003824272afa03e126a79b57fc8b75e9e15585d44d6b9931318a8ea5e7c75ec0feebbd7eb6cf0
 DIST zstandard-0.8.1.tar.gz 463785 BLAKE2B 
ac4dce58cefa05d265824004464bad89a7f4c4e5f19ac1d8b5b8b0ad6f806318e2b82ffb6f3a290e3605961801909b339b1e5d89fdccd76fd28c75a695a92e0a
 SHA512 
0ddbe22381397443c6c9f84e64f9358160bede104c4f48351119d880ac4f88994739b0b3915454567d2b2b04930c6ead5aa290a40323ba4b0bacf5e97809793c

diff --git a/dev-python/zstandard/zstandard-0.12.0-r1.ebuild 
b/dev-python/zstandard/zstandard-0.12.0-r1.ebuild
deleted file mode 100644
index 7a70e73bcae..000
--- a/dev-python/zstandard/zstandard-0.12.0-r1.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="Zstandard Bindings for Python"
-HOMEPAGE="https://pypi.org/project/zstandard/ 
https://github.com/indygreg/python-zstandard;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ppc ppc64 x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x64-macos ~x86-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="dev-python/cffi:=[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/hypothesis[${PYTHON_USEDEP}] )"
-
-python_compile() {
-   local MAKEOPTS=-j1
-   distutils-r1_python_compile
-}
-
-python_test() {
-   esetup.py test
-}



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

2020-10-21 Thread Michał Górny
commit: 2f2fec98b8f5d5d2f2a5cf26e3a675f01732e140
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:22 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:30 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f2fec98

dev-python/toolz: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/toolz/Manifest|  1 -
 dev-python/toolz/toolz-0.11.0.ebuild | 20 
 2 files changed, 21 deletions(-)

diff --git a/dev-python/toolz/Manifest b/dev-python/toolz/Manifest
index e28d373b309..b6a28a2f3d9 100644
--- a/dev-python/toolz/Manifest
+++ b/dev-python/toolz/Manifest
@@ -1,3 +1,2 @@
 DIST toolz-0.10.0.tar.gz 49579 BLAKE2B 
c323bf1ba1da5c01a1a1d879ef545767b8253c906baba63a0f600d2879c5b7120c4978574447954648c23c1ba05de2a2c7437eed1eeff31dface1c823f6e
 SHA512 
4ed40c165462440c6004974d2515067f211c625bebcb69ea854fd8837e1fe05febc546215355a6bb9de5916c8ba98a4d297f8aa20e40ffbc8a730b2bb3831a71
-DIST toolz-0.11.0.tar.gz 64412 BLAKE2B 
5b4a1fb4503767b91262ada31026c8ce26b98bb98967043dbbd2ecfa0011e200accc65d3a3923cbb69670aa305845d6825b3f0ed08f9e5a2c4e3a3854df1c62d
 SHA512 
6c546561848d5156ae90fc7f11b219c4aa489c96d3d0c6e703b636dc7f0096fe95b986e7e1f33a0914b324bf807f6d66bec4c8ce2031c3aae3a3086bb1cb0596
 DIST toolz-0.11.1.tar.gz 64428 BLAKE2B 
934f122bbf9e762e72f502f8b9ba8b5aa946b6e2b758e9501c2bc58fefa3443cda4b3e2c423be221643f51b2a12de0961be835ae3a23e97525fa203c969edff4
 SHA512 
8bea2b75b74d9da988c777577f3ad574192659dcc4bea54ac6d1400a81bef07818c49c8da40028a8c42905f9ab5b5111c50c239fb56f34c315865f90413af68b

diff --git a/dev-python/toolz/toolz-0.11.0.ebuild 
b/dev-python/toolz/toolz-0.11.0.ebuild
deleted file mode 100644
index 217a4844497..000
--- a/dev-python/toolz/toolz-0.11.0.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="List processing tools and functional utilities"
-HOMEPAGE="https://pypi.org/project/toolz/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
-
-BDEPEND="
-   dev-python/versioneer[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest



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

2020-10-21 Thread Michał Górny
commit: b3df32a573882f3ed8a86c365b0690e5983c02e0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:25 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:33 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3df32a5

dev-python/typing-extensions: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/typing-extensions/Manifest  |  1 -
 .../typing-extensions-3.7.4.2.ebuild   | 25 --
 2 files changed, 26 deletions(-)

diff --git a/dev-python/typing-extensions/Manifest 
b/dev-python/typing-extensions/Manifest
index da7d07b83af..6c7cb26a7a9 100644
--- a/dev-python/typing-extensions/Manifest
+++ b/dev-python/typing-extensions/Manifest
@@ -1,2 +1 @@
-DIST typing_extensions-3.7.4.2.tar.gz 38427 BLAKE2B 
9d7514cb27b5a8dbf246b15c8643a0e6e80d74004a39dc5585c1cb662cd77b9d8bacc25a03f9da7cde51aba4bd932ee8ffbde75d95ef29ae03c9f7e25897c816
 SHA512 
7a74c4a97d8cda3e56830c92b409235ffbe7cf0c1685b7fefa7a275a0abf21937622d12c25b4163b4927f6269ed689cbd30f95990ad0b7d2d4341ed648516819
 DIST typing_extensions-3.7.4.3.tar.gz 38979 BLAKE2B 
c1b0cc4d5d66f43628f6b488aefdcdd9878aa75cd426fce68aea6039006c1f0126f1a492a817e5a18d2c611aa399c5415d8b5e047b58868ee7b8b2cccfe13825
 SHA512 
fa1f96b73b13308ddb2676684862916aac8741be4523387c6a0f682a52d307190aac3e4149317842e686d14483d8a37a9e1de2514a2d1ca86f9ae9c8b0e18eb1

diff --git a/dev-python/typing-extensions/typing-extensions-3.7.4.2.ebuild 
b/dev-python/typing-extensions/typing-extensions-3.7.4.2.ebuild
deleted file mode 100644
index 7b3e88a5979..000
--- a/dev-python/typing-extensions/typing-extensions-3.7.4.2.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..8} pypy3 )
-
-inherit distutils-r1
-
-MY_PN=${PN/-/_}
-MY_P=${MY_PN}-${PV}
-
-DESCRIPTION="Type Hint extensions from Python 3.8 backported"
-HOMEPAGE="https://pypi.org/project/typing_extensions/ 
https://github.com/python/typing;
-SRC_URI="mirror://pypi/${MY_PN:0:1}/${MY_PN}/${MY_P}.tar.gz"
-S=${WORKDIR}/${MY_P}
-
-LICENSE="PSF-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-solaris"
-
-python_test() {
-   cd "${S}"/src_py3 || die
-   "${EPYTHON}" test_typing_extensions.py -v || die "tests failed under 
${EPYTHON}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-python/sphinx-notfound-page/

2020-10-21 Thread Michał Górny
commit: 6e1fdfe3461769cd2420bd03c4e945623155e0d1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:13 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:21 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e1fdfe3

dev-python/sphinx-notfound-page: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sphinx-notfound-page/Manifest |  1 -
 .../sphinx-notfound-page-0.4.ebuild  | 20 
 2 files changed, 21 deletions(-)

diff --git a/dev-python/sphinx-notfound-page/Manifest 
b/dev-python/sphinx-notfound-page/Manifest
index 5225d10cfeb..4cd3cee7861 100644
--- a/dev-python/sphinx-notfound-page/Manifest
+++ b/dev-python/sphinx-notfound-page/Manifest
@@ -1,2 +1 @@
-DIST sphinx-notfound-page-0.4.tar.gz 5685 BLAKE2B 
0bfc6cf98e0731a5cc95f1802dad1e7297ed764a626831b970d75d82ec0f7d6edb45c404851ea13bf38decc39aabf0e3dd6b136714a591e8ab595f11e23e67cd
 SHA512 
56e867e6954f26da498b77e8fa43e8d62961ab33ee9c16d2084745dd54a998df51c7d882a47560196135d2fb4d473f7305ef19b31373bc205f8eaf0d3d4946f0
 DIST sphinx-notfound-page-0.5.tar.gz 47806 BLAKE2B 
4715bed7509970f9198a0c666a568ca403157ad0704d0e1d17d222e6e8dc7adefab3922a4b79e056d20034463d5f034cba8c7b65248569a46866a964abec7e70
 SHA512 
a48cf4bcc755687c9e02482727ab2c28abe314118cef775e6b5625e2db67e4040745740c3c9fd88206bf050f1621ef20ffb0262ec614c11497ef030f9fb675a3

diff --git a/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.4.ebuild 
b/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.4.ebuild
deleted file mode 100644
index a87d5b2f13a..000
--- a/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.4.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 2019-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="Create a custom 404 page with absolute URLs hardcoded."
-HOMEPAGE="https://sphinx-notfound-page.readthedocs.io/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~x64-macos"
-IUSE=""
-
-DEPEND="dev-python/setuptools[${PYTHON_USEDEP}]"
-RDEPEND="${DEPEND}"
-BDEPEND=""



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

2020-10-21 Thread Michał Górny
commit: a1dbdc86e46e1881140ff2c892028ceb1def8719
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:30 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1dbdc86

dev-python/xlsxwriter: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/xlsxwriter/Manifest|  2 --
 dev-python/xlsxwriter/xlsxwriter-1.3.4.ebuild | 22 --
 dev-python/xlsxwriter/xlsxwriter-1.3.5.ebuild | 22 --
 3 files changed, 46 deletions(-)

diff --git a/dev-python/xlsxwriter/Manifest b/dev-python/xlsxwriter/Manifest
index 136ba777f9f..95ff195eeba 100644
--- a/dev-python/xlsxwriter/Manifest
+++ b/dev-python/xlsxwriter/Manifest
@@ -1,5 +1,3 @@
 DIST xlsxwriter-1.3.3-tests.tar.gz 32108929 BLAKE2B 
faabdf2d2662c61217925679b1b22b294db5279da11b959b12d181711a4c9033e34a52d4888e3dfe1d804889eaa2ee8ff03cf1f298b4930268594e2856ddfb85
 SHA512 
d5bfcb624b66bb2098fcab1623f8e221c1254fd7b094bb71622969618061b434d9a17d9199e32110ef56336e2a96a93c94f1ed1ceca5877ef41fb52c3b2a37b6
-DIST xlsxwriter-1.3.4-tests.tar.gz 32300247 BLAKE2B 
ef388172c09f258f0c70a45545fae068359ed182693cf5bf04f2d4f6b528a08e5f963766a5b553c70c94b6e7f7e7a45b3d0dd6e6754dec320bf4748a309c2402
 SHA512 
12bacc4e604f02f2045e1e5e5f402dcb96a04e1fbd8d934d19eefc01d011832586a517e235c99793a4114d64940785ab02586d40b3bf089b455b681268ee4ef6
-DIST xlsxwriter-1.3.5-tests.tar.gz 32306484 BLAKE2B 
161eed08d54ffb1728dfef394abd7614d2ec9e275b93079434bd3bd125e5707b15a6ca164a835ddec31894caa83d68dbd8d3cc5f38d24e4e30b2d86bd7f3e240
 SHA512 
349c7635f6d770ecd3429012c3e3a91f78381427fa166ef29da7cd7fd86e89da82dd51ddd69dca7b9ae4fb4f05ea4213c47c161755ed9a55a83b6b971edf8202
 DIST xlsxwriter-1.3.6-tests.tar.gz 32500145 BLAKE2B 
796cc49f26ffbb6f980488b2fb184da95a4d95049544e30d6754823cdac9f98cc829cd665c293220033b9e654ce95816b668ad364796b4b19a47e0fb6ac03fb9
 SHA512 
5a8031a92e467f1afef4a2bdcde199f35bf3a013cfe01b28cf182c9c6f51f46f51547c73165e05094f0bfbdab6b2e8f96ff75e531fe63681ce72cf93325c098d
 DIST xlsxwriter-1.3.7-tests.tar.gz 32545996 BLAKE2B 
789ee62a955422629f5a1ab80924774a98c34b2276f9fbc865d6a9d0e31778a49c5b4be72b3f7db55a13ff1d265514bd1dfaadb9243b21faa8ed2740db60ebd7
 SHA512 
516be34f5f5fd64835a4015c6eb23c23e8aabb34adc189a50f6ff4afe5cb31f01282870ce037679d14e0c40757f1ed51d26b4cb8fecdf952b4c38b6638d1d72f

diff --git a/dev-python/xlsxwriter/xlsxwriter-1.3.4.ebuild 
b/dev-python/xlsxwriter/xlsxwriter-1.3.4.ebuild
deleted file mode 100644
index 0976f9f9d2f..000
--- a/dev-python/xlsxwriter/xlsxwriter-1.3.4.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} pypy3 )
-
-inherit distutils-r1
-
-MY_PN="XlsxWriter"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Python module for creating Excel XLSX files"
-HOMEPAGE="https://github.com/jmcnamara/XlsxWriter;
-SRC_URI="https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${PV}.tar.gz 
-> ${P}-tests.tar.gz"
-S="${WORKDIR}/${MY_PN}-RELEASE_${PV}"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
-
-distutils_enable_tests pytest

diff --git a/dev-python/xlsxwriter/xlsxwriter-1.3.5.ebuild 
b/dev-python/xlsxwriter/xlsxwriter-1.3.5.ebuild
deleted file mode 100644
index 0976f9f9d2f..000
--- a/dev-python/xlsxwriter/xlsxwriter-1.3.5.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} pypy3 )
-
-inherit distutils-r1
-
-MY_PN="XlsxWriter"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="Python module for creating Excel XLSX files"
-HOMEPAGE="https://github.com/jmcnamara/XlsxWriter;
-SRC_URI="https://github.com/jmcnamara/XlsxWriter/archive/RELEASE_${PV}.tar.gz 
-> ${P}-tests.tar.gz"
-S="${WORKDIR}/${MY_PN}-RELEASE_${PV}"
-
-SLOT="0"
-LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
-
-distutils_enable_tests pytest



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

2020-10-21 Thread Michał Górny
commit: 75fbc08b8a0850582cb9f74a5ae648bf9a6a8761
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:24 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:32 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75fbc08b

dev-python/twine: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/twine/Manifest   |  1 -
 dev-python/twine/files/twine-1.15.0-tests.patch | 21 ---
 dev-python/twine/twine-1.15.0.ebuild| 49 -
 3 files changed, 71 deletions(-)

diff --git a/dev-python/twine/Manifest b/dev-python/twine/Manifest
index cfa3a8d3d0f..5879478ddd5 100644
--- a/dev-python/twine/Manifest
+++ b/dev-python/twine/Manifest
@@ -1,2 +1 @@
-DIST twine-1.15.0.tar.gz 135851 BLAKE2B 
5e85c30e23615e9fa7e40ed767412560b29c42ec777afbb17850781a384bc2d3787534a8114a65ac2374ab80441eb2d3b6d75dcff400e7b47a42453a9210130d
 SHA512 
e0eae05c108e1e766a0a8ec684e3423b0537c8aa671675f30403171fd4f48ec65666d407df53f6dd9eefa0b98e5fd2fdf7dbf1f0f9150686c499de131f6f2435
 DIST twine-3.2.0.tar.gz 145280 BLAKE2B 
b25fa984486a375e09705703a47994b529f6e5b48c6733c0a07b57bec6c0dfcdf4096d6ac6b0f9b7a7bfebfb32ea1cfb49c5de79f29495eb2a8fc59a5f8de4e5
 SHA512 
9959430913ea570d22f2d8b94e929af36b409b71691b3f66de8ddb77cfbfbe36590e21a6062db2a4a4f56ce2eb96984b0a474a93ea96b7734f53ada7a6411c28

diff --git a/dev-python/twine/files/twine-1.15.0-tests.patch 
b/dev-python/twine/files/twine-1.15.0-tests.patch
deleted file mode 100644
index ce75469c091..000
--- a/dev-python/twine/files/twine-1.15.0-tests.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-diff --git a/tests/test_package.py b/tests/test_package.py
-index 8e4fbbb..35c9c52 100644
 a/tests/test_package.py
-+++ b/tests/test_package.py
-@@ -214,11 +214,11 @@ TWINE_1_5_0_WHEEL_HEXDIGEST = package.Hexdigest(
- 'b657a4148d05bd0098c1d6d8cc4e14e766dbe93c3a5ab6723b969da27a87bac0',
- )
- 
--if platform.python_implementation().lower() == 'pypy':
--# pyblake2 refuses to install on PyPy
--TWINE_1_5_0_WHEEL_HEXDIGEST = TWINE_1_5_0_WHEEL_HEXDIGEST._replace(
--blake2=None,
--)
-+#if platform.python_implementation().lower() == 'pypy':
-+## pyblake2 refuses to install on PyPy
-+#TWINE_1_5_0_WHEEL_HEXDIGEST = TWINE_1_5_0_WHEEL_HEXDIGEST._replace(
-+#blake2=None,
-+#)
- 
- 
- def test_hash_manager():

diff --git a/dev-python/twine/twine-1.15.0.ebuild 
b/dev-python/twine/twine-1.15.0.ebuild
deleted file mode 100644
index e281b95ed91..000
--- a/dev-python/twine/twine-1.15.0.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Collection of utilities for publishing packages on PyPI"
-HOMEPAGE="https://twine.readthedocs.io/ https://github.com/pypa/twine 
https://pypi.org/project/twine/;
-SRC_URI="https://github.com/pypa/twine/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   test? (
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pretend[${PYTHON_USEDEP}]
-   )
-"
-RDEPEND="
-   >=dev-python/tqdm-4.14[${PYTHON_USEDEP}]
-   >=dev-python/pkginfo-1.4.2[${PYTHON_USEDEP}]
-   >=dev-python/readme_renderer-21.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.5.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-toolbelt-0.8.0[${PYTHON_USEDEP}]
-"
-
-PATCHES=(
-   "${FILESDIR}/twine-1.15.0-tests.patch"
-)
-
-python_prepare_all() {
-   # requires internet
-   rm -f tests/test_integration.py || die
-
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   distutils_install_for_testing
-   pytest -vv || die "Tests fail with ${EPYTHON}"
-}



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

2020-10-21 Thread Michał Górny
commit: 263c52ecefbb0a1fc6ad282fa132fff7fbfa37eb
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:10 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:18 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=263c52ec

dev-python/sentry-sdk: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sentry-sdk/Manifest |  3 -
 dev-python/sentry-sdk/sentry-sdk-0.17.6.ebuild | 85 --
 dev-python/sentry-sdk/sentry-sdk-0.17.7.ebuild | 85 --
 dev-python/sentry-sdk/sentry-sdk-0.19.0.ebuild | 85 --
 4 files changed, 258 deletions(-)

diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
index d654f7561ec..98425254b71 100644
--- a/dev-python/sentry-sdk/Manifest
+++ b/dev-python/sentry-sdk/Manifest
@@ -1,7 +1,4 @@
 DIST sentry-sdk-0.16.3.tar.gz 170145 BLAKE2B 
bf619313fb3f49800f5384f0dfec3aa34ef4bb030c5e038a485a8861a733a537ee7c834c8c200a2244335c3c61e7d564005b81d4e5c5f603d2864b2a943a5384
 SHA512 
e8589f7bd433d4aff068099e860c0cf012fc88dc63806873573a338bb91848d73e0a2af76dad0a5e023a1b25b0be85507346b77dec5c5a265942005219541699
-DIST sentry-sdk-0.17.6.tar.gz 183157 BLAKE2B 
ea0f6af54c31abc785274fc75238a02b8c9f7a978881a01203e0928e100c18df2257ec4a3cef608141b6846c616566388134a4ec31364f26d0bc2b0fadbb0dac
 SHA512 
1af433b5c2311612ad650ea196ddfedb444e9ccb424df72422759f8647fe6cc22bb81a15933f2716cf40313ce3b2e262c077168aa831758d057a1f2e5e1499ff
-DIST sentry-sdk-0.17.7.tar.gz 184034 BLAKE2B 
de71b2e270594abe2e16d7e2fb9db3028e3c2abd4539269562e8786e6d937352153da21d6366d5e0384e3de1dbd6fbabe3d5060a6f0f9953bd260fbd865c893d
 SHA512 
2360321ec0231ba76c968ff4e6dc78d42a48106aa6aade73a1c1194f9406fbafea3b533994da42027b3479302756ed3ec6e44ce551cb01ce60397939beaeb6d4
 DIST sentry-sdk-0.17.8.tar.gz 184271 BLAKE2B 
d34f881632e66d5db5cad0c6979de6c3c6205119af30b34996122ff7aff1ed7c3dd0c1603e57163f5d72c8525921f9af7c3e1c729adb14b43dbcee0aa4bd9fc5
 SHA512 
84ae0ca888457ed833b416320c45040e522a656d7c3ca0d64639f179e7be3237f53cfe4827e986a50d37bd7b61da765ed8c00ea663d478874cc47623ccf47a51
 DIST sentry-sdk-0.18.0.tar.gz 186389 BLAKE2B 
f531d68a1244c34d267cb332263c996afad31f7f72710b868e14850f06de6225a11fc37dca9ff820fc14d2f1b29919cfb10f59b7dc4449c0734458c6bd1b9816
 SHA512 
4c78418392668b1e061f0d6b88d3cc3511db138a99b08df50d2e610a7d8a5528ad83943ef1cfda8d508cb3b52f511f872ac87439460254a6b28348c9bb92406c
-DIST sentry-sdk-0.19.0.tar.gz 186477 BLAKE2B 
67e538526d39f814827f2d53ca2b8f59f1a3f13e3a0622e5a1ae8870c04d320dadac2c93e8afa786b47feb9295e6e50beb831112448ab89a1eaae750895378df
 SHA512 
5bf598af1fd7a565fd20f38a3e4961136fc2d102cdb9810cb43802e696897669ae679d82dec14cef5cdf0d3ee9dc7a3def39457b733b1018dd91f82066e2422f
 DIST sentry-sdk-0.19.1.tar.gz 186747 BLAKE2B 
ae26751ac2e640b86b3c7426829e699cfdbd1c35e70edf0f1f835e35da82f658990a5f61adc4e7b93b032f6c9824d0df90bb2146f125c1fb846c3436228d5516
 SHA512 
dd4234a36920893e55026ba5ab8b1476cbc91b035a4b4c78f9dcf29cc8e232dc49c6f7312b8fb3d64cf469552d08ef5cadb65d3a7fb58ba73b87e43375c27c8d

diff --git a/dev-python/sentry-sdk/sentry-sdk-0.17.6.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-0.17.6.ebuild
deleted file mode 100644
index 1e52e8d5510..000
--- a/dev-python/sentry-sdk/sentry-sdk-0.17.6.ebuild
+++ /dev/null
@@ -1,85 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..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 ~ppc ~ppc64 ~x86"
-
-RDEPEND="
-   dev-python/urllib3[${PYTHON_USEDEP}]
-   dev-python/certifi[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/asttokens[${PYTHON_USEDEP}]
-   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 ~ppc ~ppc64 ~x86"
-
-RDEPEND="
-   dev-python/urllib3[${PYTHON_USEDEP}]
-   dev-python/certifi[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/asttokens[${PYTHON_USEDEP}]
-   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 ~ppc ~ppc64 ~x86"
-
-RDEPEND="
-   dev-python/urllib3[${PYTHON_USEDEP}]
-   dev-python/certifi[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/asttokens[${PYTHON_USEDEP}]
-   

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

2020-10-21 Thread Michał Górny
commit: fcfe899a85523b5899297cdbe3fdffd02403d722
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:28 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fcfe899a

dev-python/urwid: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/urwid/Manifest   |  1 -
 dev-python/urwid/urwid-2.1.0.ebuild | 42 -
 2 files changed, 43 deletions(-)

diff --git a/dev-python/urwid/Manifest b/dev-python/urwid/Manifest
index 6a2e925fa78..b500cab7847 100644
--- a/dev-python/urwid/Manifest
+++ b/dev-python/urwid/Manifest
@@ -1,2 +1 @@
-DIST urwid-2.1.0.tar.gz 630226 BLAKE2B 
62e36080419cd4acf8c3415ce6393483244f44ffa881730ceebea71ae5535da04a7f45bd5e23fa0808a88a192c8d9d21fa2b1cf7dc3fb20485ee3280c2eeda99
 SHA512 
c121c0e49ab9531f67bff8740d29fc716fb8c9203e1b2ddb7257f01095e0bf976f3f2131a3b1f95a3b5368ddeea6a09b9c867ab459b91e3e9be6cba4f18ec654
 DIST urwid-2.1.1.tar.gz 633082 BLAKE2B 
93393cc9f8e755cf2e25119f26487e062ab145ff4c966c69ad0b153cc2a286aac4f70be9b7e82c57f644fb850f70c88c0c9562cf1c07dcdd427e0afe409a01b0
 SHA512 
08fc51205f0adeea0ecce876ca17d921961b665894aef440fd826ef0f8b9230cd8d22c5db85fcf4e227f8e70841e3439860e5035ff874b8d0c1834111c3a97db

diff --git a/dev-python/urwid/urwid-2.1.0.ebuild 
b/dev-python/urwid/urwid-2.1.0.ebuild
deleted file mode 100644
index 497c42bd4a5..000
--- a/dev-python/urwid/urwid-2.1.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6..9} )
-PYTHON_REQ_USE="ncurses"
-
-inherit distutils-r1
-
-DESCRIPTION="Curses-based user interface library for Python"
-HOMEPAGE="http://urwid.org/ https://pypi.org/project/urwid/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux"
-IUSE="examples"
-
-distutils_enable_sphinx docs
-distutils_enable_tests setup.py
-
-src_prepare() {
-   # optional tests broken by modern tornado versions
-   sed -e 's:import tornado:&_broken:' \
-   -i urwid/tests/test_event_loops.py || die
-   distutils-r1_src_prepare
-}
-
-python_compile() {
-   if ! python_is_python3; then
-   local CFLAGS="${CFLAGS} -fno-strict-aliasing"
-   export CFLAGS
-   fi
-
-   distutils-r1_python_compile
-}
-
-python_install_all() {
-   use examples && dodoc -r examples
-   distutils-r1_python_install_all
-}



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

2020-10-21 Thread Michał Górny
commit: 3b793d14933128fd9d0f2dfb68b370d56f2997c1
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:26 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b793d14

dev-python/u-msgpack: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/u-msgpack/Manifest   |  1 -
 dev-python/u-msgpack/u-msgpack-2.6.0.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/dev-python/u-msgpack/Manifest b/dev-python/u-msgpack/Manifest
index 98d1d7fa67e..ef4529099b3 100644
--- a/dev-python/u-msgpack/Manifest
+++ b/dev-python/u-msgpack/Manifest
@@ -1,2 +1 @@
-DIST u-msgpack-2.6.0.tar.gz 19911 BLAKE2B 
a6599a85fcb386f91dce4d11fd8d10c6be75c1fe4e80756c58058bcb7c2934c2174afe65bc0b88e11c5c9e3f66b46c956c9209bb6faf74ab5c382bd665c412fc
 SHA512 
b0f2fa677001705a8a1e96e590fd334d0561065e0617a56a31abd506907dc2446c93f8c4429e65e86c87f6d2cf3e19a921fa0aaccad5cdaf1acd1ae0a1235688
 DIST u-msgpack-2.7.0.tar.gz 20427 BLAKE2B 
f4e4447635fc20ef5246bbc90ee9cc0b93eaa9d13a0384423145531bb8bbb21dc9d1ddadc075a4a5e456dd8cc758fed3add4b2b43f83c0115c78a0095030ff70
 SHA512 
b5a6676aa3eea878e3f1cc6ca1351f59ae0fdffdfe4d68c43303a1c5d257449bdcd08bef0fc75117b238544366e42b43c6444bb93ba63d1633aadd0c32061c8b

diff --git a/dev-python/u-msgpack/u-msgpack-2.6.0.ebuild 
b/dev-python/u-msgpack/u-msgpack-2.6.0.ebuild
deleted file mode 100644
index f0ad14a9d10..000
--- a/dev-python/u-msgpack/u-msgpack-2.6.0.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8,9} pypy3 )
-
-inherit distutils-r1
-
-MY_PN="${PN}-python"
-MY_P="${MY_PN}-${PV}"
-
-DESCRIPTION="A portable, lightweight MessagePack serializer and deserializer"
-HOMEPAGE="https://github.com/vsergeev/u-msgpack-python 
https://pypi.org/project/u-msgpack-python/;
-SRC_URI="mirror://pypi/${MY_P:0:1}/${MY_PN}/${MY_P}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 s390 sparc x86 
~amd64-linux ~x86-linux"
-
-S="${WORKDIR}/${MY_P}"
-
-distutils_enable_tests pytest



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

2020-10-21 Thread Michał Górny
commit: 14148d1f22c8ff623ee040bc5cb189ca1f45f47f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:27 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14148d1f

dev-python/ujson: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/ujson/Manifest   |  1 -
 dev-python/ujson/ujson-4.0.0.ebuild | 24 
 2 files changed, 25 deletions(-)

diff --git a/dev-python/ujson/Manifest b/dev-python/ujson/Manifest
index 582916d83d4..d0c64ba2093 100644
--- a/dev-python/ujson/Manifest
+++ b/dev-python/ujson/Manifest
@@ -1,5 +1,4 @@
 DIST ujson-1.35.tar.gz 192027 BLAKE2B 
320058e7142f2264bee8b02a411bedb3b32d1c2fc86157eb47272f75cb401e6c75ce7d9e3dba5092cd1db99dbded8804347d4c7be11eaedb47bc8b4b8125fbd3
 SHA512 
931d8f574fc4920c9ded48369774666060e951f40982606ce9f1d9de3420004042af7d797075a54d92a2b25c4f313572a5e1a30f3bc8ce387ef8f3881193eee7
 DIST ujson-3.1.0.tar.gz 7128419 BLAKE2B 
544afb68e23fe942a6bb241f6948998d61a42d61799dff257f139510e4e97e9bba5c4742e1ed1f0b0e78dfcde0589f0b255c92fc5f3059b6cdd86279aabfe141
 SHA512 
c40953a4b5b55e894e42fccded618a9f2ed771904e1d1e90a28f4691a53fbd8b2fab3dc98a36b6e0637d2ef40ac87ebf9f2d8fce33cd3bc4e68bf7c18c7a33c3
 DIST ujson-3.2.0.tar.gz 7128952 BLAKE2B 
7e4c409eb8e87d542d37595439ded5c85e934e87a18987e18dce5ab0aebd5f9431b8a2c12ebaa467da928c3158d03325a40a9ae65230e39c93106d65b098c407
 SHA512 
8915e17acbd9650964dc9ae4f8a89021af921fac8f77f5456fdb8c0d6ceaa02767891d070c515c926deef76efb210a969c573e387ae62c15b2c8be761f6adb70
-DIST ujson-4.0.0.tar.gz 7128856 BLAKE2B 
48b487e056dc6972b456b09458ac246baf80e9069187e76e59de9e36d67676d0e13e4efc13f8214bac5bde89e4b393b24c7d471d4ac42bfbbe224965512720bb
 SHA512 
fdd0c3c829a5c082edf5441028d608c828f5301c97228e8ca80ce483d7e52c438e9f8995c948e4e82f0e7e4bc4e757e391d0adea5f59e3a97f9f28625fdb0914
 DIST ujson-4.0.1.tar.gz 7128868 BLAKE2B 
159496bfa2b7efff744c1f725c5a8c362c6baac20518d440e5827ec8af1a9a77b4e060126d9b35b39baae079f7092e64d49d0cd23a637174a4bca261203939d6
 SHA512 
11fb28166afab30e29d71070c91cfb78245eed704a769bf6fb0871c267135fac3fa1042c4ac875dcb870f8a00615e6bcc8fdcd0168edd5ccbae6437605b4df0d

diff --git a/dev-python/ujson/ujson-4.0.0.ebuild 
b/dev-python/ujson/ujson-4.0.0.ebuild
deleted file mode 100644
index 18e434f25cf..000
--- a/dev-python/ujson/ujson-4.0.0.ebuild
+++ /dev/null
@@ -1,24 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6..9} pypy3 )
-
-inherit distutils-r1
-
-DESCRIPTION="Ultra fast JSON encoder and decoder for Python"
-HOMEPAGE="https://pypi.org/project/ujson/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-   test? ( dev-python/pytz[${PYTHON_USEDEP}] )
-"
-
-distutils_enable_tests pytest



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

2020-10-21 Thread Michał Górny
commit: 17881413306d34b229afdac3561a357c9f809886
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:19 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:27 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17881413

dev-python/tenacity: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tenacity/Manifest |  1 -
 dev-python/tenacity/tenacity-6.1.0-r1.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/dev-python/tenacity/Manifest b/dev-python/tenacity/Manifest
index 2b5f687809a..d85afce3526 100644
--- a/dev-python/tenacity/Manifest
+++ b/dev-python/tenacity/Manifest
@@ -1,2 +1 @@
-DIST tenacity-6.1.0.tar.gz 33438 BLAKE2B 
e3f7c0ef19f98c0ac5b2a9a1be53241292d895547e5c10810ff94c27f34e8bbca7ef3aea79ce6e4042c84109e209b4be2913e6231233a3b050c18ed52f8af087
 SHA512 
a8f52f77e066a35c4a35cdd80fe01922613d9f4ca07975aece4a35bc743475f7540bf419e5095eacf94cb248ce33bdd89b46c5e3c5bd5a93bd99a601cf580732
 DIST tenacity-6.2.0.tar.gz 35213 BLAKE2B 
830953463ef9d7ee9e99fc0c9d3f55910754f4c2c777110ad8af65b0af186b2aada25ec3d9ae80f266ad9200080db1af70b80bb77f1edc51148001ca49e0bd08
 SHA512 
3753ab44390810458c559d243bdc5e3c0092a0c2af7eb4e6fa43d5e6e215a58d4bf3ff6e81800db2f517796b501fff038964b424e364ac417ddd3e70b57bc6c8

diff --git a/dev-python/tenacity/tenacity-6.1.0-r1.ebuild 
b/dev-python/tenacity/tenacity-6.1.0-r1.ebuild
deleted file mode 100644
index bbe88755047..000
--- a/dev-python/tenacity/tenacity-6.1.0-r1.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7} )
-
-inherit distutils-r1
-
-DESCRIPTION="General-purpose retrying library"
-HOMEPAGE="https://github.com/jd/tenacity;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE=""
-
-DEPEND="
-   dev-python/pbr[${PYTHON_USEDEP}]
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   dev-python/setuptools_scm[${PYTHON_USEDEP}]
-"
-RDEPEND="
-   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
-   >=dev-python/monotonic-0.6[${PYTHON_USEDEP}]
-"



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

2020-10-21 Thread Michał Górny
commit: e91555d19d02aa6070aea54e9fb34fcd2ac16c45
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:22 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e91555d1

dev-python/tqdm: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tqdm/Manifest   |  2 --
 dev-python/tqdm/tqdm-4.48.2.ebuild | 58 --
 dev-python/tqdm/tqdm-4.50.1.ebuild | 58 --
 3 files changed, 118 deletions(-)

diff --git a/dev-python/tqdm/Manifest b/dev-python/tqdm/Manifest
index a57a57d2526..7176c82be38 100644
--- a/dev-python/tqdm/Manifest
+++ b/dev-python/tqdm/Manifest
@@ -1,4 +1,2 @@
-DIST tqdm-4.48.2.tar.gz 148978 BLAKE2B 
2423a3d23b86ec6b535a2157d0fbaea6921f95873fb2507a08ff57de0fdcf8fcbfb030210393f5410437ee9977da3ad2011f07a866b3f91a057e338082325976
 SHA512 
849e4dad4bd0819b328e906af8a8f7acf2ebfd559c9ae3ebf822bc64c1b1a5c96e44b9b69d3dedf6387c44cf9eed559f1377ea29f71fadfc8f056c52685425e9
 DIST tqdm-4.49.0.tar.gz 151935 BLAKE2B 
790e2912a402795af9aba2e4db80cf41a7cb08267dad5946d89b4d9fb8b8c7a1dd65f33dcaf315bbe82862c0c2934b2dd2b8cee894c592d5a61ac61dd8c5126f
 SHA512 
44197eb09b90551eb66c8b2e0dc97f6864fc91654465e7d478ece6ecd610242d8e378c6814f9d3e1cf05b2db1aa533743535051ad456ec5ef6d477be906ee217
-DIST tqdm-4.50.1.tar.gz 153435 BLAKE2B 
5dda14bc4007e2820dc1899d352dccfd72988ce0ec84b556404d4a92f13cf51f340b7e745c39d01076485adcc6331eaf86e49c37d441ab667e4ee9e07019b238
 SHA512 
4db3ab73ca387961e0522fb5521bbad0420f1cf99a38a5192f048e08a30aeddd20d39ca2d7cd24dbd29e2342018fe65d55a2d0b275d188bf41f7592b8b77cd32
 DIST tqdm-4.50.2.tar.gz 153853 BLAKE2B 
12eccead810b8434ac1c7787b34ee54e78f6f2fa566e7ad10bbb428bb48af723e75126955e6af5262062d9a98621b5e70ca08925a2024c09488579c128ff5d00
 SHA512 
2d13473d3f7e85de1c62cc753bca2c2971acbfb8c1a0f99cebf248e9e384b5875ae655c41438abb9861d6c90051eec0d1a23af849f157359fa88c730718ecd33

diff --git a/dev-python/tqdm/tqdm-4.48.2.ebuild 
b/dev-python/tqdm/tqdm-4.48.2.ebuild
deleted file mode 100644
index a51d15b84f0..000
--- a/dev-python/tqdm/tqdm-4.48.2.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
-
-inherit distutils-r1
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/tqdm/tqdm;
-else
-   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ppc ppc64 sparc x86"
-fi
-
-DESCRIPTION="Add a progress meter to your loops in a second"
-HOMEPAGE="https://github.com/tqdm/tqdm;
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="examples"
-
-distutils_enable_tests nose
-
-python_prepare_all() {
-   sed -r \
-   -e "s:'nose'(,[[:space:]]*|)::" \
-   -e "s:'flake8'(,[[:space:]]*|)::" \
-   -e "s:'coverage'(,[[:space:]]*|)::" \
-   -i setup.py
-
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   # tests_main.py requires the package to be installed
-   distutils_install_for_testing
-   # Skip unpredictable performance tests
-   nosetests tqdm -v --ignore 'tests_perf.py' \
-   || die "tests failed with ${EPYTHON}"
-}
-
-python_install() {
-   doman "${BUILD_DIR}"/lib/tqdm/tqdm.1
-   rm "${BUILD_DIR}"/lib/tqdm/tqdm.1 || die
-   distutils-r1_python_install --skip-build
-}
-
-python_install_all() {
-   if use examples; then
-   dodoc -r examples
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-   distutils-r1_python_install_all
-}

diff --git a/dev-python/tqdm/tqdm-4.50.1.ebuild 
b/dev-python/tqdm/tqdm-4.50.1.ebuild
deleted file mode 100644
index 27373f57ea4..000
--- a/dev-python/tqdm/tqdm-4.50.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=rdepend
-PYTHON_COMPAT=( pypy3 python3_{6,7,8,9} )
-
-inherit distutils-r1
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/tqdm/tqdm;
-else
-   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
-fi
-
-DESCRIPTION="Add a progress meter to your loops in a second"
-HOMEPAGE="https://github.com/tqdm/tqdm;
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="examples"
-
-distutils_enable_tests nose
-
-python_prepare_all() {
-   sed -r \
-   -e "s:'nose'(,[[:space:]]*|)::" \
-   -e "s:'flake8'(,[[:space:]]*|)::" \
-   -e "s:'coverage'(,[[:space:]]*|)::" \
-   -i setup.py
-
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
-   # tests_main.py requires 

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

2020-10-21 Thread Michał Górny
commit: abea4d93fa93af733c566b2b256ad66da13c945a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:29 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abea4d93

dev-python/testfixtures: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/testfixtures/Manifest   |  1 -
 dev-python/testfixtures/testfixtures-6.14.1.ebuild | 56 --
 2 files changed, 57 deletions(-)

diff --git a/dev-python/testfixtures/Manifest b/dev-python/testfixtures/Manifest
index 80e450e0f07..0886f20bd8d 100644
--- a/dev-python/testfixtures/Manifest
+++ b/dev-python/testfixtures/Manifest
@@ -1,3 +1,2 @@
-DIST testfixtures-6.14.1.tar.gz 114969 BLAKE2B 
21e6b377e24240cb275feed2e160da256ca75884c5a6dc842364986031c3cd21fb1b5bc13f3e8780354d47179e6c038cb461a39a04d34bfc8beebbf9809d6431
 SHA512 
0da31d5e382984c22ada846c07570d4a179ba819005dd29891e551b99190fabaaf17174456f7ed4864e9c4aa25f7d5d8b86aa123b4628328610d6930c9c5d6bd
 DIST testfixtures-6.14.2.tar.gz 115229 BLAKE2B 
311ef13cc6f596aa9d4c54c0cc02e25c412704eefa3474c3a078f4f50ba556e9872d3ecff3d122443986f0917b2e1c6fff8315d20bd319dec1148fd9851321ba
 SHA512 
fbaeefc439a755d9f9e5ee223c6ce00288adfc2d12c9bef70ab06ea7bc4e9757d7a2429ac8046f7171aca1ac7d667f8a26168cd711f1cc4c719d66bbe8210cc6
 DIST testfixtures-6.15.0.tar.gz 116119 BLAKE2B 
cc0e351bd6778393cf061b741d7d593f56bc1b6a3d53d2e34baa006f7edd718c86f1b16c094e42cf116805a5c6652ac6827f71c1ebbb160d48c071317603c151
 SHA512 
34b9f1b9a5e76c5e20acf9abae2961694817de3822361cd5afc4a405ccdbcf26c617a01fbd8d2d977c2a0bc696232c2363df4a9fb7ba9187e0743cf2a6fe98e1

diff --git a/dev-python/testfixtures/testfixtures-6.14.1.ebuild 
b/dev-python/testfixtures/testfixtures-6.14.1.ebuild
deleted file mode 100644
index 1c445c87827..000
--- a/dev-python/testfixtures/testfixtures-6.14.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{6,7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="A collection of helpers and mock objects for unit tests and doc 
tests"
-HOMEPAGE="https://pypi.org/project/testfixtures/ 
https://github.com/Simplistix/testfixtures;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="amd64 x86 ~amd64-linux ~x86-linux"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   doc? (
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   )
-   test? (
-   $(python_gen_impl_dep sqlite)
-   dev-python/django[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-django[${PYTHON_USEDEP}]
-   dev-python/sybil[${PYTHON_USEDEP}]
-   >=dev-python/twisted-18[${PYTHON_USEDEP}]
-   dev-python/zope-component[${PYTHON_USEDEP}]
-   )"
-
-python_prepare_all() {
-   # Prevent un-needed download during build, fix Makefile for doc build
-   sed -e '/'sphinx.ext.intersphinx'/d' -i docs/conf.py || die
-
-   # remove test that tests the stripped zope-component 
test_components.ComponentsTests
-   rm -f testfixtures/tests/test_components.py docs/components.txt || die
-   distutils-r1_python_prepare_all
-}
-
-python_compile_all() {
-   use doc && emake -C docs html
-}
-
-python_test() {
-   PYTHONPATH="." \
-   DJANGO_SETTINGS_MODULE=testfixtures.tests.test_django.settings \
-   pytest -vv || die
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/_build/html/. )
-   distutils-r1_python_install_all
-}



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

2020-10-21 Thread Michał Górny
commit: 5e4cd5fafb32537e4317f120820f12895794364e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:23 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:31 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e4cd5fa

dev-python/treq: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/treq/Manifest   |  1 -
 dev-python/treq/treq-20.4.1.ebuild | 63 --
 2 files changed, 64 deletions(-)

diff --git a/dev-python/treq/Manifest b/dev-python/treq/Manifest
index 2b2343d60df..7097f0c1084 100644
--- a/dev-python/treq/Manifest
+++ b/dev-python/treq/Manifest
@@ -1,2 +1 @@
-DIST treq-20.4.1.tar.gz 59116 BLAKE2B 
1370748d8bde407a8802d54786b45fbbc65525efba14cd5a33d741573b9fca7b36629deea65672669c4da45347bb40d975a063430ffd18f50d5ef896ce6dae66
 SHA512 
ca24ca7ad6bcf3fe6cba490d05eea4d71727a84bb2caf0a019edc01f91f7c25d87dc8208fc7cc816d18ef42db4dc66884475f0baa6b2cf39714e4422d0d67d3b
 DIST treq-20.9.0.tar.gz 60142 BLAKE2B 
a495b73221ee86163a5fefd03c8019f4b671a1f32d2ab304b89566339a36aaec7245d33b738b646fa48c42f4db9744938637ece058e067ee3f747e53ce442ab8
 SHA512 
c595ad69d5a9c688ca966cc897db669a57d14027e0bdc345d550f791390099743749be4a41294e61428cdc7bc0fa197474be780323b00f17a712505e081e7073

diff --git a/dev-python/treq/treq-20.4.1.ebuild 
b/dev-python/treq/treq-20.4.1.ebuild
deleted file mode 100644
index 4f713ce23ab..000
--- a/dev-python/treq/treq-20.4.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{6,7,8} )
-DISTUTILS_USE_SETUPTOOLS="rdepend"
-
-inherit distutils-r1
-
-DESCRIPTION="A requests-like API built on top of twisted.web's Agent"
-HOMEPAGE="https://github.com/twisted/treq https://pypi.org/project/treq/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="doc test"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   dev-python/incremental[${PYTHON_USEDEP}]
-   dev-python/hyperlink[${PYTHON_USEDEP}]
-"
-
-RDEPEND="${COMMON_DEPEND}
-   dev-python/six[${PYTHON_USEDEP}]
-   >=dev-python/twisted-18.7.0[crypt,${PYTHON_USEDEP}]
-   >=dev-python/requests-2.1.0[${PYTHON_USEDEP}]
-   dev-python/attrs[${PYTHON_USEDEP}]
-"
-
-DEPEND="${COMMON_DEPEND}
-   doc? ( dev-python/sphinx
-   ${RDEPEND} )
-   test? (
-   dev-python/mock[${PYTHON_USEDEP}]
-   dev-python/httpbin[${PYTHON_USEDEP}]
-   )"
-
-python_compile_all() {
-   use doc && emake -C "${S}/docs" html
-}
-
-python_install_all() {
-   use doc && HTML_DOCS=( docs/_build/html/ )
-
-   distutils-r1_python_install_all
-}
-
-test_instructions(){
-   ewarn "The 'test' USE flag and FEATURE only ensures that the correct"
-   ewarn "dependenciess are installed for this package."
-   ewarn "Please run eg:"
-   ewarn "$ python3.7 /usr/bin/trial treq"
-   ewarn "as a user for each of the python versions it is installed to"
-   ewarn "to correctly test this package."
-}
-
-python_test() {
-   # Tests fail when run via emerge
-   # they need proper network access
-   test_instructions
-}



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

2020-10-21 Thread Michał Górny
commit: 017fed2412a9b1b5d8bc8e8f7e929eb1a1b2b6d5
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:20 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:28 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=017fed24

dev-python/terminado: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/terminado/Manifest   |  1 -
 dev-python/terminado/terminado-0.9.0.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/dev-python/terminado/Manifest b/dev-python/terminado/Manifest
index 98a19f17809..a85a3ad8de9 100644
--- a/dev-python/terminado/Manifest
+++ b/dev-python/terminado/Manifest
@@ -1,3 +1,2 @@
 DIST terminado-0.8.3.tar.gz 21165 BLAKE2B 
ec031cb7828840a4f299aa25de0030d5b7993119fd41b71e698dd032f4fd31ea725a9b610dc53a71d480ee74b49a1d072d76555b434da4f5fee2479efa03fdec
 SHA512 
441355cdc919b6f04b1bf1eb870f24e0bd6c7ef412e72e1747707049b1fa0d6676644e3646007f2653b3df00e1f30048d9dc40d73f0827b2bbfc0821549e140b
-DIST terminado-0.9.0.tar.gz 10363 BLAKE2B 
d984d290f95be196693fa50754266c44c5ddf817eec1876d573d2f254719d168f011cfa1673eca090cafb2f28738fcbcf1f4837ec80fb4438c1d1158e09b7a0b
 SHA512 
31ec024a0ae216f08955d2a5789fd63f03021b1a52a6a1b02a5b2e7165c99a386c77e85b4a632dfaa2608bc6ced1b8757b6de6a9f5793134cfc57f943aff
 DIST terminado-0.9.1.tar.gz 12335 BLAKE2B 
7f4d7794b8bccb3d7eafd5ab35130521633c391d19fcc93e02c24f3937c7f186e786d12047dde066807ee2ace3ee7db4f0607fc9c10dc976344c32398b5da23b
 SHA512 
429d2417cfc5521ee471febae6d893764cc0f1c7024c272951a178db5e2d20ce64af499393cd020ff6b424dc8b07d69a70da5789b39b49510a5789351a6f04f4

diff --git a/dev-python/terminado/terminado-0.9.0.ebuild 
b/dev-python/terminado/terminado-0.9.0.ebuild
deleted file mode 100644
index 8d931385692..000
--- a/dev-python/terminado/terminado-0.9.0.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=pyproject.toml
-PYTHON_COMPAT=( python3_{6..9} )
-
-inherit distutils-r1
-
-DESCRIPTION="Terminals served to term.js using Tornado websockets"
-HOMEPAGE="https://pypi.org/project/terminado/ 
https://github.com/jupyter/terminado;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-SLOT="0"
-LICENSE="BSD-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux"
-
-RDEPEND="
-   dev-python/ptyprocess[${PYTHON_USEDEP}]
-   www-servers/tornado[${PYTHON_USEDEP}]"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   sed -i -e 's:test_max_terminals:_&:' \
-   terminado/tests/basic_test.py || die
-   distutils-r1_src_prepare
-}



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

2020-10-21 Thread Michał Górny
commit: 935bb06fa8c61a0f3465c7daff871330cadb0e0a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 22:48:14 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 22:51:22 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=935bb06f

dev-python/sphinx-prompt: Remove old

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/sphinx-prompt/Manifest   |  1 -
 dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild | 21 -
 2 files changed, 22 deletions(-)

diff --git a/dev-python/sphinx-prompt/Manifest 
b/dev-python/sphinx-prompt/Manifest
index 9b30b091c2f..074a08faec3 100644
--- a/dev-python/sphinx-prompt/Manifest
+++ b/dev-python/sphinx-prompt/Manifest
@@ -1,2 +1 @@
-DIST sphinx-prompt-1.2.0.tar.gz 7506 BLAKE2B 
babff99a29b87ba9529d7811a5b34280b1d30a4f7dbde8cea28a3c2ec687d1d4443b6bd8b0fb3ab5bdd002066ef1d3117768a529e46691fbec9de59d5c8771a8
 SHA512 
e3fe2740bee8a0107a12e131d3a4f90ed22c4bcceab7cb94fc869a534725552d4d3a9d8519a54782c5a1913a2e3bee088fa14db7b3a37f256be3243c7f6a9a1f
 DIST sphinx-prompt-1.3.0.tar.gz 7511 BLAKE2B 
3e327b93fdfba48684983b0524fddc2c70f5ca997364e58cddb4e1d1078f51fc73e0102b969c49fa6cb27154624cd0220ea244eb13a0f6a4e252bfe3f9ca
 SHA512 
21dad50833ee1e00493c208b844caa41420fc2874c48fcb9ce20168a4872f8dc0a654eeea6ca6159d5ff6bbac3de15c2633c2f5abd826ac352c3f0ced37f6146

diff --git a/dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild 
b/dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild
deleted file mode 100644
index 6dab60f51ef..000
--- a/dev-python/sphinx-prompt/sphinx-prompt-1.2.0.ebuild
+++ /dev/null
@@ -1,21 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{7,8} )
-
-inherit distutils-r1
-
-DESCRIPTION="Sphinx directive to add unselectable prompt"
-HOMEPAGE="https://github.com/sbrunner/sphinx-prompt/;
-SRC_URI="https://github.com/sbrunner/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   dev-python/sphinx[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-"



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

2020-10-21 Thread Thomas Deutschmann
commit: 10f540c3334dbe5bd0a1413f890b9762ba59bca6
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Oct 21 22:49:05 2020 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Oct 21 22:49:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10f540c3

www-client/firefox: amd64 & x86 stable

Bug: https://bugs.gentoo.org/750446
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Thomas Deutschmann  gentoo.org>

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

diff --git a/www-client/firefox/firefox-78.4.0.ebuild 
b/www-client/firefox/firefox-78.4.0.ebuild
index b0ff9f723e8..84970560633 100644
--- a/www-client/firefox/firefox-78.4.0.ebuild
+++ b/www-client/firefox/firefox-78.4.0.ebuild
@@ -57,7 +57,7 @@ SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> 
${MOZ_P_DISTFILES}
 DESCRIPTION="Firefox Web Browser"
 HOMEPAGE="https://www.mozilla.com/firefox;
 
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 SLOT="0/esr$(ver_cut 1)"
 LICENSE="MPL-2.0 GPL-2 LGPL-2.1"



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

2020-10-21 Thread Robin H. Johnson
commit: 354053fecd502788f67e9d432c0985f3ab724c79
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed Oct 21 22:08:51 2020 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed Oct 21 22:09:13 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=354053fe

sys-apps/ipmitool: snapshot upstream for CVE

Upstream has still made a new release since 2016/10/08; including the
promised 1.8.19 per their own security advisory on 2020/02/04.

Capture the latest upstream state as a snapshot release, and port the
Debian patchset to it, as the Debian patchset contains other updates &
CVE fixes rejected by upstream.

Reference: 
https://github.com/ipmitool/ipmitool/security/advisories/GHSA-g659-9qxw-p7cp
Bug: https://bugs.gentoo.org/708436
Signed-off-by: Robin H. Johnson  gentoo.org>

 sys-apps/ipmitool/Manifest |   4 +
 sys-apps/ipmitool/ipmitool-1.8.18-r2.ebuild|  96 ++
 sys-apps/ipmitool/ipmitool-1.8.18_p20201004.ebuild | 145 +
 3 files changed, 245 insertions(+)

diff --git a/sys-apps/ipmitool/Manifest b/sys-apps/ipmitool/Manifest
index b3c7ece3e8c..dac59e8952b 100644
--- a/sys-apps/ipmitool/Manifest
+++ b/sys-apps/ipmitool/Manifest
@@ -1,2 +1,6 @@
+DIST enterprise-numbers.2020-10-21.xz 1426932 BLAKE2B 
bfe39ceea321ba47cd40eafa67862eb4dfd6dc29b192afb20ad0c908cd93a16b4103c5de64d042df012417c8cadc03000f2b2a00779bcc582a430603cad5f3cf
 SHA512 
4a854a56e8ed51997c320cbfba041d43cb98b14743ef80b67e701942068d3729604abaedb617655a83ca21a7e20ea5a622ede4de317ca492cefd46da784d28f3
 DIST ipmitool-1.8.18.tar.gz 995313 BLAKE2B 
4aee2b1488a8a97348954dd1555baf3d576d70f22fd17f11ba6147595b07ef52059ac8ab6775afa0ad956355eefbf3e2b0300cf87bb373d2f82b585de807412d
 SHA512 
274d424fff079f7628c0f9fe06580937cb9717c809a71b2f5ef97266c6b6c89983b662fbb1f090e2f94861f1799677c8fc6536013828a8a5e6cb239af53e45ab
+DIST ipmitool-1.8.18_p20201004.tar.gz 638493 BLAKE2B 
52f4ec8c82336b88640d1b91fc17af8f2fe0948a5c48c16067867dcad0852168d48bb21fdd99bde7ed957b66df888fd369c909079d1f81c861acd8c7f8dfa6f2
 SHA512 
8d72eef3584f4d2c86bfe43f70b5d687f3b7bbdf75b8979f7132c5c98b01baae22c336e540c197652187749fc9bb221a92e546b56e5cf2eb5650fad5094e9433
 DIST ipmitool_1.8.18-1.debian.tar.xz 19140 BLAKE2B 
255c4da005946f3b118a127f96fc5daad02a170ea079d7a765a0c7650e1eb7e50ad49b31fca95312b49e5a524e04a8a21215cafb1a8451e5b2af2aaec22cda75
 SHA512 
8aede337d07987decfd032898f194d32730eced443630ac3956676533d693fb2d17a175ef14218cbcd55da44f6b17714f676a912a1d5124a15a995e01d2828ef
+DIST ipmitool_1.8.18-9.debian-ported-gentoo.tar.xz 3208 BLAKE2B 
b37a127eff361039b3b810e19dd97f0c395462b658803f56f10f2dd1abbbe92743dc409ce6b83560db15621b7fa7a3c0f989100077893993df18108a082e49d2
 SHA512 
0f7646a2307ac98425e99dece9d3e3b23026136a97524151efdecc910fb537af41a91702782989046e44163da98610fa05792878473e228b45c16351f6015a45
+DIST ipmitool_1.8.18-9.debian.tar.xz 18508 BLAKE2B 
09e37fd2f6fad8f847bae87aa51f44293e5640b4c8ebc05e52ebd751542d7865024835fe728c14e3a44f48d54fedff9e7693653bd2288db27d21a5bae16268b6
 SHA512 
af2b4aa855125e1beb62ffd2931b5d4c0aa8cc4edbde27ea1b4be172e6a4351f574c32b2437b354d11b7f1c739161d850c47839d7a7d9f522b52e24f47a9ea8d

diff --git a/sys-apps/ipmitool/ipmitool-1.8.18-r2.ebuild 
b/sys-apps/ipmitool/ipmitool-1.8.18-r2.ebuild
new file mode 100644
index 000..eb3cdab7d44
--- /dev/null
+++ b/sys-apps/ipmitool/ipmitool-1.8.18-r2.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+inherit autotools eutils
+
+DESCRIPTION="Utility for controlling IPMI enabled devices."
+HOMEPAGE="http://ipmitool.sf.net/;
+DEBIAN_PR="9.debian"
+DEBIAN_PV="${PV/_p*}"
+DEBIAN_P="${PN}_${DEBIAN_PV}"
+DEBIAN_PF="${DEBIAN_P}-${DEBIAN_PR}"
+COMMIT_ID=
+if [[ -n "${COMMIT_ID}" ]]; then
+   S="${WORKDIR}/${PN}-${COMMIT_ID}"
+   
SRC_URI="https://github.com/ipmitool/ipmitool/archive/${COMMIT_ID}.tar.gz -> 
${P}.tar.gz"
+else
+   SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
+fi
+SRC_URI+="
+   http://http.debian.net/debian/pool/main/i/${PN}/${DEBIAN_PF}.tar.xz;
+   # 
https://launchpad.net/ubuntu/+archive/primary/+files/${DEBIAN_PF}.tar.xz
+#IUSE="freeipmi openipmi status"
+IUSE="libressl openipmi static"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~x86"
+LICENSE="BSD"
+
+RDEPEND="
+   !libressl? ( dev-libs/openssl:0= )
+   libressl? ( dev-libs/libressl:0= )
+   sys-libs/readline:0="
+DEPEND="${RDEPEND}
+   openipmi? ( sys-libs/openipmi )
+   virtual/os-headers"
+   #freeipmi? ( sys-libs/freeipmi )
+# ipmitool CAN build against || ( sys-libs/openipmi sys-libs/freeipmi )
+# but it doesn't actually need either.
+
+PATCHES=(
+   #"${FILESDIR}"/${P}-openssl-1.1.patch
+)
+
+src_prepare() {
+   default
+   [ -d "${S}"/debian ] && mv "${S}"/debian{,.package}
+   ln -s "${WORKDIR}"/debian "${S}"
+   for p in $(grep -v "^#" 

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

2020-10-21 Thread Michael Orlitzky
commit: 7b836ae5711dde35fb817f29ebd7c6f15b0e46b4
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Wed Oct 21 21:52:38 2020 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Wed Oct 21 21:53:17 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b836ae5

net-dns/valtz: new version 0.8.

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Michael Orlitzky  gentoo.org>

 net-dns/valtz/Manifest |  1 +
 net-dns/valtz/valtz-0.8.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/net-dns/valtz/Manifest b/net-dns/valtz/Manifest
index e1cae9535ba..da366ca3753 100644
--- a/net-dns/valtz/Manifest
+++ b/net-dns/valtz/Manifest
@@ -1 +1,2 @@
 DIST valtz-0.7.tgz 10638 BLAKE2B 
f6c8c476f523bc72531dd6537a7ed096b4fe15122db8ac8398b6ce325e8d61aecd3ef496c6102127bb8df4c8e0651201826ed4ccf79fd47616b6e083967412c4
 SHA512 
173e9f04399f8011b565ddfa7ad542c87af03da1b829d40b616271a993a282a1a3f54fb434db4837fb9ee4c3eb66a39f70ebf5ff5f13aff9c6fccfeabb3a3df7
+DIST valtz-0.8.tar.xz 9644 BLAKE2B 
f5a102931fdd58e9ac85ff09f93243f76268cf3fd7c8cd3853b463115d292250293ca17e430ce93d0e7e5b78d90805126e24538b2f10bbf314a9ca0dbfd54d9f
 SHA512 
87ad87445fb68b962b43e1d4cd08f155bdd3fe83480134dc141371bec87a2facce7f45381df655921e2875bb77c24bfb184487d8055f18a3acff50d8f4fa5c71

diff --git a/net-dns/valtz/valtz-0.8.ebuild b/net-dns/valtz/valtz-0.8.ebuild
new file mode 100644
index 000..b98620fc148
--- /dev/null
+++ b/net-dns/valtz/valtz-0.8.ebuild
@@ -0,0 +1,21 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Validation tool for tinydns-data zone files"
+SRC_URI="http://michael.orlitzky.com/code/releases/${P}.tar.xz;
+HOMEPAGE="http://michael.orlitzky.com/code/valtz.xhtml;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE=""
+
+RDEPEND="dev-lang/perl"
+
+src_install() {
+   dobin valtz
+   doman valtz.1
+   dodoc AUTHORS README CHANGES
+}



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

2020-10-21 Thread Michał Górny
commit: 5e7caf7b6b2d5d186bbe2788ed4d7e9abe403855
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:39:08 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:38 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e7caf7b

dev-python/suds: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/suds/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/suds/metadata.xml b/dev-python/suds/metadata.xml
index 172adda1657..c61eae1e680 100644
--- a/dev-python/suds/metadata.xml
+++ b/dev-python/suds/metadata.xml
@@ -2,6 +2,7 @@
 http://www.gentoo.org/dtd/metadata.dtd;>
 

+   

suds-community
suds-community/suds



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

2020-10-21 Thread Michał Górny
commit: 1ba4d464445b1f84a1c9ea6955e61ba8865298e4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:37:05 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:36 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ba4d464

dev-python/parsedatetime: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/parsedatetime/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/parsedatetime/metadata.xml 
b/dev-python/parsedatetime/metadata.xml
index a04297a9306..2eba3a54e1d 100644
--- a/dev-python/parsedatetime/metadata.xml
+++ b/dev-python/parsedatetime/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

bear/parsedatetime
parsedatetime



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

2020-10-21 Thread Michał Górny
commit: 30ef52d874b6f00a83f167b76bdb0e3a14154c0a
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:44:48 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:42 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30ef52d8

dev-python/fs: Use HTTPS in metadata.xml

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/fs/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/fs/metadata.xml b/dev-python/fs/metadata.xml
index 34aba6ae88b..6fb9cacb914 100644
--- a/dev-python/fs/metadata.xml
+++ b/dev-python/fs/metadata.xml
@@ -9,7 +9,7 @@
   
 fs
 PyFilesystem/pyfilesystem2
-http://docs.pyfilesystem.org/
+https://docs.pyfilesystem.org/
 
   w...@willmcgugan.com
   Will McGugan



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

2020-10-21 Thread Michał Górny
commit: 1894eb3678e68165122c9fe385280ec628edf94b
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:35:06 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:34 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1894eb36

dev-python/fs: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/fs/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/fs/metadata.xml b/dev-python/fs/metadata.xml
index 1643d116dc1..34aba6ae88b 100644
--- a/dev-python/fs/metadata.xml
+++ b/dev-python/fs/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 fs
 PyFilesystem/pyfilesystem2



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

2020-10-21 Thread Michał Górny
commit: d0e94c3a4544a29ec901599e309cc17c1e8ad523
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:41:33 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0e94c3a

dev-python/tempita: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/tempita/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/tempita/metadata.xml b/dev-python/tempita/metadata.xml
index efd988fe2bb..a1618dfe455 100644
--- a/dev-python/tempita/metadata.xml
+++ b/dev-python/tempita/metadata.xml
@@ -5,6 +5,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 Tempita
   



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

2020-10-21 Thread Michał Górny
commit: 37c9eb55680a2f8c0c04d0b93ce754474e011de9
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:35:40 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:35 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37c9eb55

dev-python/josepy: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/josepy/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/josepy/metadata.xml b/dev-python/josepy/metadata.xml
index 4a194c6a86c..76871d6b301 100644
--- a/dev-python/josepy/metadata.xml
+++ b/dev-python/josepy/metadata.xml
@@ -12,6 +12,7 @@
JOSE protocol implementation in Python using cryptography
Originally developed as part of the ACME protocol 
implementation.

+   

josepy
certbot/josepy



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

2020-10-21 Thread Michał Górny
commit: 09d0a2ef588316b427e5b72fc0aaf2d51e2668f7
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:42:03 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:41 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09d0a2ef

dev-python/pycountry: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pycountry/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pycountry/metadata.xml 
b/dev-python/pycountry/metadata.xml
index 926bcf2432e..da18e7bc6d5 100644
--- a/dev-python/pycountry/metadata.xml
+++ b/dev-python/pycountry/metadata.xml
@@ -5,6 +5,7 @@
pyt...@gentoo.org
Python

+   

pycountry
flyingcircusio/pycountry



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

2020-10-21 Thread Michał Górny
commit: ed5fa24e794e08f8c8d14776a664b0270c99f4ce
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:39:50 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:39 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed5fa24e

dev-python/doit: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/doit/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/doit/metadata.xml b/dev-python/doit/metadata.xml
index 6627bab29b6..f766ab5256c 100644
--- a/dev-python/doit/metadata.xml
+++ b/dev-python/doit/metadata.xml
@@ -9,6 +9,7 @@
 proxy-ma...@gentoo.org
 Proxy Maintainers
   
+  
   
 pydoit/doit
 doit



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

2020-10-21 Thread Michał Górny
commit: ee4fd6f743f2d14b00689102a00b4706695e7680
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:37:39 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:37 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee4fd6f7

dev-python/moto: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/moto/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/moto/metadata.xml b/dev-python/moto/metadata.xml
index b4fa92dbb73..de7cda739e3 100644
--- a/dev-python/moto/metadata.xml
+++ b/dev-python/moto/metadata.xml
@@ -9,6 +9,7 @@
 pyt...@gentoo.org
 Python
   
+  
   
 moto
 spulec/moto



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

2020-10-21 Thread Michał Górny
commit: 0740f3fbe8fefceb55e1c2867a679e6d32f5265c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 21:40:47 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 21:45:40 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0740f3fb

dev-python/ansi2html: Mark ALLARCHES

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/ansi2html/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/ansi2html/metadata.xml 
b/dev-python/ansi2html/metadata.xml
index 6d3ac65af5f..5ea83a06dfa 100644
--- a/dev-python/ansi2html/metadata.xml
+++ b/dev-python/ansi2html/metadata.xml
@@ -5,6 +5,7 @@
 sp...@gentoo.org
 Sebastian Pipping
   
+  
   
 ansi2html
 ralphbean/ansi2html



[gentoo-commits] repo/proj/guru:dev commit in: sci-physics/SU2/files/, sci-physics/SU2/

2020-10-21 Thread Sergey Torokhov
commit: 4cd820043758ecf6082d0a3b3ddfa5373fccac13
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Wed Oct 21 21:06:06 2020 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Wed Oct 21 21:23:27 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4cd82004

sci-physics/SU2: 7.0.7 version bump

Signed-off-by: Sergey Torokhov  yandex.ru>

 sci-physics/SU2/Manifest   |3 +
 sci-physics/SU2/SU2-7.0.7.ebuild   |  114 +
 sci-physics/SU2/files/SU2-7.0.7-fix-env.patch  |   12 +
 .../SU2/files/SU2-7.0.7-fix-python-optimize.patch  | 2212 
 4 files changed, 2341 insertions(+)

diff --git a/sci-physics/SU2/Manifest b/sci-physics/SU2/Manifest
index b68e4c98..876649be 100644
--- a/sci-physics/SU2/Manifest
+++ b/sci-physics/SU2/Manifest
@@ -1,3 +1,6 @@
 DIST SU2-7.0.6-TestCases.tar.gz 447944839 BLAKE2B 
5212ef7bf69bb40120ca2af99a02f2a89ae6cc0a1e048e57409ee1d2911f930452f4a5ef668126d6b7144c3f81d50bdadd0bcc810f0472740ccbbb6605e5a07d
 SHA512 
c976450e7e17df58b47cbf14d18c4435f977a70dc086d5b74ea584ae14b3204632ef87b2dce6a456396179f1b72ef8eba83065a42d978b8d6966d5446decbd3c
 DIST SU2-7.0.6-Tutorials.tar.gz 64282244 BLAKE2B 
3b0ce136c9fa5c3e0ffc585e28b1a60470eeaf2518cbef539fccc185f79cd41a889e3c3c8a0ada3f488cfe1d2d0115e2768267c6ef4502b882b07f909f6f382c
 SHA512 
4aaf39b98cbbe4c9e12d78027b0ee2b3d30fd614d1e48092d8bfd25c312a06a1621b2192653a7d8ac767762b06ae339ab6fb77e81f833efdb419ce09f92dec2f
 DIST SU2-7.0.6.tar.gz 20531872 BLAKE2B 
30e59bc6876223d87429b79f101a5705f989096a1b81725aa20012567d15b08b6a8a24140cc76b35c6c3657a1d6afa85d56da699ab38dac85714e296d7ad8531
 SHA512 
a4619dd969c6d9cb20de1d373c8e0af9d56654f9f96d919662897db4c3c8bf52b45fb1239065d480ba1b4f05ba7a17c9540ff3fe47fb0d96864736200cda8bcc
+DIST SU2-7.0.7-TestCases.tar.gz 448969006 BLAKE2B 
6c886824b55d7f8516d2ea69e2f7bef36a40986f4f715da46d91f851eb59390329433c6941a280eca34ad675633b2f1b01a897d1db8d177a5c4f770b286d0625
 SHA512 
0884b4f750dbcfd3f2cb0e71d6005932e4edd90a50fa84eb484f6c0c523930ddebfb3ed4315161b8fdeff911a52fa72b6d79739c8e19cd634b9823e007520213
+DIST SU2-7.0.7-Tutorials.tar.gz 64282235 BLAKE2B 
7a6b780ee6f01d26a7a7d4751ca39798af56cfd7b99ca3e13fdff61aecd631a3aa4c98a487f48a8b2593c711ee25bd1ddc90a316bde2c287e95a383321f1d5e9
 SHA512 
189b5da96f08689b62ba3c42ee349edd2e145f371112895587e53497f16de3d6fdbf17308af39961775d76e3169c40872ced8e267146b6da5ae12d31a4c70fa9
+DIST SU2-7.0.7.tar.gz 20618138 BLAKE2B 
c823ea59fd28547b78c4694d45995e83c5f2c16229c40d20b951cdd62a98e13c77c07cffa87a1ec105b29a597878c7a2342c6ac90c7c9751ed20f876194a55e1
 SHA512 
c5dacc8b2f4ab7eb72852d8e6ae59c0800e8126faf20641135fa31ec42915b8e3553082e328b2b158e3e337f7aab0a932b6b1f875d3c0191db538bb923affcf3

diff --git a/sci-physics/SU2/SU2-7.0.7.ebuild b/sci-physics/SU2/SU2-7.0.7.ebuild
new file mode 100644
index ..9e7077f6
--- /dev/null
+++ b/sci-physics/SU2/SU2-7.0.7.ebuild
@@ -0,0 +1,114 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{6,7,8} )
+
+inherit meson python-single-r1
+
+DESCRIPTION="SU2: An Open-Source Suite for Multiphysics Simulation and Design"
+HOMEPAGE="https://su2code.github.io/;
+SRC_URI="
+   https://github.com/su2code/SU2/archive/v${PV}.tar.gz -> ${P}.tar.gz
+   test? ( https://github.com/su2code/TestCases/archive/v${PV}.tar.gz -> 
${P}-TestCases.tar.gz )
+   tutorials? ( https://github.com/su2code/Tutorials/archive/v${PV}.tar.gz 
-> ${P}-Tutorials.tar.gz )
+"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# cgns, metis, parmetis are bundled;
+# omp is disable as it's experimental;
+# pastix is disabled as it's try to find bundled libs;
+IUSE="cgns -mkl +mpi openblas tecio test tutorials"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="
+   ${PYTHON_REQUIRED_USE}
+   mkl? ( !openblas )
+"
+
+RDEPEND="
+   ${PYTHON_DEPS}
+   mpi? ( virtual/mpi[cxx] )
+   mkl? ( sci-libs/mkl )
+   openblas? ( sci-libs/openblas )
+"
+DEPEND="
+   ${RDEPEND}
+   tecio? ( dev-libs/boost:= )
+"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}/${P}-fix-env.patch"
+   "${FILESDIR}/${PN}-7.0.4-unbundle_boost.patch"
+   "${FILESDIR}/${P}-fix-python-optimize.patch"
+)
+
+DOCS=( "LICENSE.md" "README.md" "SU2_PY/documentation.txt" )
+
+src_unpack() {
+   unpack "${P}.tar.gz"
+   if use test ; then
+   einfo "Unpacking ${P}-TestCases.tar.gz to 
/var/tmp/portage/sci-physics/${P}/work/${P}/TestCases"
+   tar -C "${P}"/TestCases --strip-components=1 -xzf 
"${DISTDIR}/${P}-TestCases.tar.gz" || die
+   fi
+   if use tutorials ; then
+   einfo "Unpacking ${P}-Tutorials.tar.gz to 
/var/tmp/portage/sci-physics/${P}/work/${P}"
+   mkdir "${P}"/Tutorials
+   tar -C "${P}"/Tutorials --strip-components=1 -xzf 
"${DISTDIR}/${P}-Tutorials.tar.gz" || die
+   fi
+}
+
+src_configure() {
+   

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

2020-10-21 Thread Andreas Sturmlechner
commit: 99b81f791930f6a423e4aecf7517bbd1f1e43dac
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Oct 21 21:08:34 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Oct 21 21:09:36 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=99b81f79

kde-plasma/plasma-meta: Drop kwinft support

Closes: https://bugs.gentoo.org/750593
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/plasma-meta/metadata.xml| 1 -
 kde-plasma/plasma-meta/plasma-meta-.ebuild | 9 -
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/kde-plasma/plasma-meta/metadata.xml 
b/kde-plasma/plasma-meta/metadata.xml
index 68c380ec91..85111e0327 100644
--- a/kde-plasma/plasma-meta/metadata.xml
+++ b/kde-plasma/plasma-meta/metadata.xml
@@ -14,7 +14,6 @@
Pull in Breeze theme for 
sys-boot/grub
Enable Breeze widget style and system settings 
module for GTK+
Enable support for KWallet auto-unlocking 
via kde-plasma/kwallet-pam
-   Pull in gui-wm/kwinft instead of 
kde-plasma/kwin
Add support for legacy applications 
using kde-plasma/xembed-sni-proxy
Pull in Breeze theme for 
sys-boot/plymouth
Install Plasma applet for PulseAudio 
volume management

diff --git a/kde-plasma/plasma-meta/plasma-meta-.ebuild 
b/kde-plasma/plasma-meta/plasma-meta-.ebuild
index e4c7854af4..1311e7d6ed 100644
--- a/kde-plasma/plasma-meta/plasma-meta-.ebuild
+++ b/kde-plasma/plasma-meta/plasma-meta-.ebuild
@@ -10,8 +10,8 @@ LICENSE="metapackage"
 SLOT="5"
 KEYWORDS=""
 IUSE="bluetooth +browser-integration crypt +desktop-portal discover 
+display-manager
-+elogind grub gtk +handbook +kwallet kwinft +legacy-systray +networkmanager
-plymouth pulseaudio qrcode +sddm sdk +smart systemd thunderbolt +wallpapers"
++elogind grub gtk +handbook +kwallet +legacy-systray +networkmanager plymouth
+pulseaudio qrcode +sddm sdk +smart systemd thunderbolt +wallpapers"
 
 REQUIRED_USE="^^ ( elogind systemd )"
 
@@ -32,10 +32,9 @@ RDEPEND="
>=kde-plasma/ksysguard-${PV}:${SLOT}
>=kde-plasma/kwayland-integration-${PV}:${SLOT}
>=kde-plasma/kwayland-server-${PV}:${SLOT}
-   !kwinft? ( >=kde-plasma/kwin-${PV}:${SLOT} )
-   kwinft? ( >=gui-wm/kwinft-$(ver_cut 1-2):${SLOT} )
+   >=kde-plasma/kwin-${PV}:${SLOT}
>=kde-plasma/kwrited-${PV}:${SLOT}
-   >=kde-plasma/libkscreen-${PV}:${SLOT}[kwinft?]
+   >=kde-plasma/libkscreen-${PV}:${SLOT}
>=kde-plasma/libksysguard-${PV}:${SLOT}
>=kde-plasma/milou-${PV}:${SLOT}
>=kde-plasma/oxygen-${PV}:${SLOT}



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

2020-10-21 Thread Andreas Sturmlechner
commit: 3716bc2457b8ad508c24ab68c7a741dfae9892fd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Oct 21 21:06:23 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Oct 21 21:06:23 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=3716bc24

kde-plasma/plasma-workspace: Drop kwinft support

Bug: https://bugs.gentoo.org/750593
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/plasma-workspace/plasma-workspace-.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/kde-plasma/plasma-workspace/plasma-workspace-.ebuild 
b/kde-plasma/plasma-workspace/plasma-workspace-.ebuild
index c05b97cb68..b2d728b643 100644
--- a/kde-plasma/plasma-workspace/plasma-workspace-.ebuild
+++ b/kde-plasma/plasma-workspace/plasma-workspace-.ebuild
@@ -73,10 +73,7 @@ COMMON_DEPEND="
>=kde-frameworks/prison-${KFMIN}:5[qml]
>=kde-frameworks/solid-${KFMIN}:5
>=kde-plasma/kscreenlocker-${PVCUT}:5
-   || (
-   >=kde-plasma/kwin-${PVCUT}:5
-   >=gui-wm/kwinft-$(ver_cut 1-2):5
-   )
+   >=kde-plasma/kwin-${PVCUT}:5
>=kde-plasma/libkscreen-${PVCUT}:5
>=kde-plasma/libksysguard-${PVCUT}:5
>=kde-plasma/libkworkspace-${PVCUT}:5



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

2020-10-21 Thread Andreas Sturmlechner
commit: 57351beebbd4c494d3bb392969da89f2b9b1c2a8
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Oct 21 21:06:58 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Oct 21 21:06:58 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=57351bee

kde-plasma/plasma-desktop: Drop kwinft support

Bug: https://bugs.gentoo.org/750593
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/plasma-desktop/plasma-desktop-.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild 
b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
index 42f1a1e9b8..1b14f3495a 100644
--- a/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
+++ b/kde-plasma/plasma-desktop/plasma-desktop-.ebuild
@@ -69,10 +69,7 @@ COMMON_DEPEND="
>=kde-frameworks/plasma-${KFMIN}:5
>=kde-frameworks/solid-${KFMIN}:5
>=kde-frameworks/sonnet-${KFMIN}:5
-   || (
-   >=kde-plasma/kwin-${PVCUT}:5
-   >=gui-wm/kwinft-$(ver_cut 1-2):5
-   )
+   >=kde-plasma/kwin-${PVCUT}:5
>=kde-plasma/libksysguard-${PVCUT}:5
>=kde-plasma/plasma-workspace-${PVCUT}:5
>=media-libs/phonon-4.11.0



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

2020-10-21 Thread Andreas Sturmlechner
commit: 0850fe59336217afb0ad1f7d732385b1988ea249
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Oct 21 21:05:36 2020 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Oct 21 21:05:36 2020 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0850fe59

kde-plasma/libkscreen: Drop kwinft support

Bug: https://bugs.gentoo.org/750593
Package-Manager: Portage-3.0.8, Repoman-3.0.2
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-plasma/libkscreen/libkscreen-.ebuild | 14 +-
 kde-plasma/libkscreen/metadata.xml   |  3 ---
 2 files changed, 1 insertion(+), 16 deletions(-)

diff --git a/kde-plasma/libkscreen/libkscreen-.ebuild 
b/kde-plasma/libkscreen/libkscreen-.ebuild
index 395a6effd0..7187d97ec9 100644
--- a/kde-plasma/libkscreen/libkscreen-.ebuild
+++ b/kde-plasma/libkscreen/libkscreen-.ebuild
@@ -12,12 +12,11 @@ VIRTUALX_REQUIRED="test"
 inherit ecm kde.org
 
 DESCRIPTION="Plasma screen management library"
-SRC_URI+=" 
https://dev.gentoo.org/~asturm/distfiles/${PN}-wrapland-support-5.18.80.tar.xz;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5/7"
 KEYWORDS=""
-IUSE="kwinft"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -26,19 +25,8 @@ DEPEND="
>=kde-frameworks/kcoreaddons-${KFMIN}:5
>=kde-frameworks/kwayland-${KFMIN}:5
x11-libs/libxcb
-   kwinft? ( gui-libs/wrapland:5 )
 "
 RDEPEND="${DEPEND}"
 
-PATCHES=( "${WORKDIR}/${PN}-wrapland-support.patch" )
-
 # requires running session
 RESTRICT+=" test"
-
-src_configure() {
-   local mycmakeargs=(
-   $(cmake_use_find_package kwinft Wrapland)
-   )
-
-   ecm_src_configure
-}

diff --git a/kde-plasma/libkscreen/metadata.xml 
b/kde-plasma/libkscreen/metadata.xml
index 670121b1fd..850a6ce4f9 100644
--- a/kde-plasma/libkscreen/metadata.xml
+++ b/kde-plasma/libkscreen/metadata.xml
@@ -5,9 +5,6 @@
k...@gentoo.org
Gentoo KDE Project

-   
-   Enable support for gui-wm/kwinft 
via gui-libs/wrapland
-   

Reflects ABI compatibility of 
libKF5Screen.so




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

2020-10-21 Thread Sergei Trofimovich
commit: c3e69a937f95044c6ccebc72b040d32e6dd0297d
Author: Michal Privoznik  redhat  com>
AuthorDate: Wed Oct 21 20:21:25 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Oct 21 20:55:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3e69a93

app-emulation/qemu-: Remove qemu--cflags.patch

In upstream commit of v5.1.0-1916-g5770e8afd6 qemu removed CFLAGS
clobbering (among other env vars) rendering our patch redundant.

Signed-off-by: Michal Privoznik  redhat.com>
Signed-off-by: Sergei Trofimovich  gentoo.org>

 app-emulation/qemu/files/qemu--cflags.patch | 12 
 app-emulation/qemu/qemu-.ebuild |  1 -
 2 files changed, 13 deletions(-)

diff --git a/app-emulation/qemu/files/qemu--cflags.patch 
b/app-emulation/qemu/files/qemu--cflags.patch
deleted file mode 100644
index 1c732a453a9..000
--- a/app-emulation/qemu/files/qemu--cflags.patch
+++ /dev/null
@@ -1,12 +0,0 @@
 a/configure
-+++ b/configure
-@@ -6349,9 +6349,6 @@ if test "$debug_info" = "yes"; then
-   CFLAGS="-g $CFLAGS"
-   LDFLAGS="-g $LDFLAGS"
- fi
--if test "$debug" = "no"; then
--  CFLAGS="-O2 $CFLAGS"
--fi
- 
- case "$ARCH" in
- alpha)

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index 2b03ed218ed..764cce197cf 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -225,7 +225,6 @@ RDEPEND="${CDEPEND}
 
 PATCHES=(
"${FILESDIR}"/${PN}-2.11.1-capstone_include_path.patch
-   "${FILESDIR}"/${PN}--cflags.patch
 )
 
 QA_PREBUILT="



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

2020-10-21 Thread Sergei Trofimovich
commit: 93d3131fd45018bd9af343d54a80451967dc1225
Author: Michal Privoznik  redhat  com>
AuthorDate: Wed Oct 21 20:16:20 2020 +
Commit: Sergei Trofimovich  gentoo  org>
CommitDate: Wed Oct 21 20:55:00 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93d3131f

app-emulation/qemu-: Reflect targets move

In qemu upstream commit of v5.1.0-1872-gfdb75aeff7 the targets
were moved from "${S}"/default-configs/ to
"${S}"/default-configs/targets/.

Signed-off-by: Michal Privoznik  redhat.com>
Closes: https://github.com/gentoo/gentoo/pull/17992
Signed-off-by: Sergei Trofimovich  gentoo.org>

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

diff --git a/app-emulation/qemu/qemu-.ebuild 
b/app-emulation/qemu/qemu-.ebuild
index bcd7de23167..2b03ed218ed 100644
--- a/app-emulation/qemu/qemu-.ebuild
+++ b/app-emulation/qemu/qemu-.ebuild
@@ -334,7 +334,7 @@ check_targets() {
local var=$1 mak=$2
local detected sorted
 
-   pushd "${S}"/default-configs >/dev/null || die
+   pushd "${S}"/default-configs/targets/ >/dev/null || die
 
# Force C locale until glibc is updated. #564936
detected=$(echo $(printf '%s\n' *-${mak}.mak | sed "s:-${mak}.mak::" | 
LC_COLLATE=C sort -u))



[gentoo-commits] repo/proj/guru:dev commit in: /

2020-10-21 Thread Sergey Torokhov
commit: 4715ac85f51b2292a2ae655bf800d02e58bf5c3d
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Wed Oct 21 20:22:21 2020 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Wed Oct 21 20:22:21 2020 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4715ac85

README.md: update reference to optfeature function

The `optfeature` function early was within `eutils.eclass`
that is now deprecated. This function is moved
to `optfeature.eclass`.

Signed-off-by: Sergey Torokhov  yandex.ru>

 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 518506a4..d8d5226a 100644
--- a/README.md
+++ b/README.md
@@ -137,7 +137,7 @@ See the [dev 
manual](https://devmanual.gentoo.org/eclass-reference/distutils-r1.
 
 Installation of small files, like documentation, completions, man pages, etc, 
does not have to be toggle-able with an USE flag. Instead, just install these 
files unconditionally. This avoids unnecessary recompilations when an user 
forgot to enable a flag that installs a small file.
 
-The same holds for optional runtime dependencies. It is not necessary to 
introduce a USE flag, that does not alter the compiled binary and just pulls in 
an extra optional runtime dependency. Instead, you can notify the user of these 
optional runtime dependencies with the `optfeature` function from the 
[eutils](https://devmanual.gentoo.org/eclass-reference/eutils.eclass/) eclass. 
If, for whatever reason, it is still desired to introduce an USE flag for 
optional runtime dependencies, one can still use the `optfeature` function as 
well to allow the user to choose to avoid recompiling a package.
+The same holds for optional runtime dependencies. It is not necessary to 
introduce a USE flag, that does not alter the compiled binary and just pulls in 
an extra optional runtime dependency. Instead, you can notify the user of these 
optional runtime dependencies with the `optfeature` function from the 
[optfeature](https://devmanual.gentoo.org/eclass-reference/optfeature.eclass/) 
eclass (early from currently deprecated 
[eutils](https://devmanual.gentoo.org/eclass-reference/eutils.eclass/) eclass). 
If, for whatever reason, it is still desired to introduce an USE flag for 
optional runtime dependencies, one can still use the `optfeature` function as 
well to allow the user to choose to avoid recompiling a package.
 
 
 ## Useful Links 



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

2020-10-21 Thread Piotr Karbowski
commit: aa86c2a58a78cb283b0fc74fbd19f69e7a677f14
Author: Piotr Karbowski  gentoo  org>
AuthorDate: Wed Oct 21 20:23:05 2020 +
Commit: Piotr Karbowski  gentoo  org>
CommitDate: Wed Oct 21 20:23:05 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa86c2a5

mail-mta/protonmail-bridge-bin: 1.4.4 version bump.

Signed-off-by: Piotr Karbowski  gentoo.org>

 mail-mta/protonmail-bridge-bin/Manifest|   1 +
 .../protonmail-bridge-bin-1.4.4.ebuild | 248 +
 2 files changed, 249 insertions(+)

diff --git a/mail-mta/protonmail-bridge-bin/Manifest 
b/mail-mta/protonmail-bridge-bin/Manifest
index cce2518b696..16107c20d46 100644
--- a/mail-mta/protonmail-bridge-bin/Manifest
+++ b/mail-mta/protonmail-bridge-bin/Manifest
@@ -1,2 +1,3 @@
 DIST protonmail-bridge-1.2.8-1.x86_64.rpm 54238575 BLAKE2B 
25ac160210747162ea688925ed5644b9b018400c1e89c52e617f0242b94b22956bbffb1e0dfed2c3c18fe7a4ba9b737eef35c51033c5f52557aa3c6803d37537
 SHA512 
676ca7466c1bd49f24327a99957c57b7794e6f10fc73b158ba8b95279a406e208d3f85f301631c4f54c5b7f0896b8f7a49c2c077af7a5ae54c7f1b329f5f89bc
 DIST protonmail-bridge-1.3.3-1.x86_64.rpm 54353335 BLAKE2B 
3703b78e843bde9ce67b346901e52ed54728de16c1b89bae1b9372bb1c8c9c51090fa4ff0b1f6587dc44a35125d69a8f4c4512924ad3b10dd7ac4453e72b3d58
 SHA512 
d455126e260cb5f45f28a08f123e0a954fcb76253ffa998774d10be9c1dd4902a1ad74f166213882ca2191a1e041e119cd816ccc31ef0b9aded51c830dc3b37f
+DIST protonmail-bridge-1.4.4-1.x86_64.rpm 55354116 BLAKE2B 
17365d5e431595768ad703cb72713d68c1f59fcada9081a490c3d6e4ebe1863d125073fdc4866cc0e61cb2eb3eb29fd7929529b0d6975925e95b00af576bb80a
 SHA512 
d5fe05df70df42cf117e0e4eea893324ea831a33b89c82c317a2a36c179b836336b7acc3f57429833b875a6c380882c06ce262579019c6a01de5611ebf93197c

diff --git a/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.4.4.ebuild 
b/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.4.4.ebuild
new file mode 100644
index 000..a1f688318f2
--- /dev/null
+++ b/mail-mta/protonmail-bridge-bin/protonmail-bridge-bin-1.4.4.ebuild
@@ -0,0 +1,248 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit rpm xdg-utils
+
+DESCRIPTION="Serves ProtonMail to IMAP/SMTP clients"
+HOMEPAGE="https://protonmail.com/bridge/;
+SRC_URI="https://protonmail.com/download/${P/-bin/}-1.x86_64.rpm;
+
+RESTRICT="bindist mirror"
+
+LICENSE="MIT protonmail-bridge-EULA"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+DEPEND=""
+RDEPEND="
+   app-crypt/libsecret
+   dev-libs/glib:2
+   media-sound/pulseaudio[glib]
+   sys-apps/dbus
+   virtual/opengl
+   media-libs/fontconfig
+   media-libs/freetype
+   x11-libs/libICE
+   x11-libs/libSM
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXext
+   x11-libs/libXi
+"
+BDEPEND="dev-util/patchelf"
+
+S="${WORKDIR}"
+
+QA_PREBUILT="*"
+
+src_prepare() {
+   # Some bogus files got into package.
+   rm -rf usr/lib/.build-id
+
+   # Bug #660366. To workaround preserving libs, set RUNPATH and rm unused 
libs
+   cd "${S}/usr/lib/protonmail/bridge" || die
+   patchelf --set-rpath '$ORIGIN/lib' protonmail-bridge || die "patchelf 
failed"
+   patchelf --set-rpath '$ORIGIN' lib/libicui18n.so.56 || die "patchelf 
failed"
+   patchelf --set-rpath '$ORIGIN' lib/libicuuc.so.56 || die "patchelf 
failed"
+
+   rm "lib/libQt53DCore.so.5" || die
+   rm "lib/libQt53DExtras.so.5" || die
+   rm "lib/libQt53DInput.so.5" || die
+   rm "lib/libQt53DLogic.so.5" || die
+   rm "lib/libQt53DQuick.so.5" || die
+   rm "lib/libQt53DQuickExtras.so.5" || die
+   rm "lib/libQt53DQuickInput.so.5" || die
+   rm "lib/libQt53DQuickRender.so.5" || die
+   rm "lib/libQt53DRender.so.5" || die
+   rm "lib/libQt5Concurrent.so.5" || die
+   rm "lib/libQt5Gamepad.so.5" || die
+   rm "lib/libQt5QuickParticles.so.5" || die
+   rm "plugins/audio/libqtaudio_alsa.so" || die
+   rm "plugins/audio/libqtmedia_pulse.so" || die
+   rm "plugins/bearer/libqconnmanbearer.so" || die
+   rm "plugins/bearer/libqgenericbearer.so" || die
+   rm "plugins/bearer/libqnmbearer.so" || die
+   rm "plugins/canbus/libqtpeakcanbus.so" || die
+   rm "plugins/canbus/libqtsocketcanbus.so" || die
+   rm "plugins/canbus/libqttinycanbus.so" || die
+   rm "plugins/designer/libqquickwidget.so" || die
+   rm "plugins/designer/libqwebengineview.so" || die
+   rm "plugins/egldeviceintegrations/libqeglfs-emu-integration.so" || die
+   rm "plugins/egldeviceintegrations/libqeglfs-x11-integration.so" || die
+   rm "plugins/gamepads/libevdevgamepad.so" || die
+   rm "plugins/generic/libqevdevkeyboardplugin.so" || die
+   rm "plugins/generic/libqevdevmouseplugin.so" || die
+   rm "plugins/generic/libqevdevtabletplugin.so" || die
+   rm "plugins/generic/libqevdevtouchplugin.so" || die
+   

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

2020-10-21 Thread Louis Sautier
commit: 73f67cfe1742a08be85abf964084425cab3d7ae9
Author: Louis Sautier  gentoo  org>
AuthorDate: Wed Oct 21 19:12:41 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Wed Oct 21 19:18:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73f67cfe

dev-python/MechanicalSoup: add Python 3.9 support

Also use distutils_enable_tests and remove unnecessary sed.

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild | 18 +-
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git a/dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild 
b/dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild
index 14b661fd659..25a8f0174d7 100644
--- a/dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild
+++ b/dev-python/MechanicalSoup/MechanicalSoup-0.12.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( pypy3 python3_{6,7,8} )
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
 
 inherit distutils-r1
 
@@ -14,8 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="examples test"
-RESTRICT="!test? ( test )"
+IUSE="examples"
 
 RDEPEND="
>=dev-python/beautifulsoup-4.0[${PYTHON_USEDEP}]
@@ -25,26 +24,19 @@ RDEPEND="
 "
 BDEPEND="
test? (
-   ${RDEPEND}
>=dev-python/requests-mock-1.3.0[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
dev-python/pytest-httpbin[${PYTHON_USEDEP}]
dev-python/pytest-mock[${PYTHON_USEDEP}]
)
 "
 
+distutils_enable_tests pytest
 distutils_enable_sphinx docs
 
 python_prepare_all() {
-   # We don't need pytest-runner to run tests via pytest
-   sed -i "s/'pytest-runner'//" setup.py || die
-   distutils-r1_python_prepare_all
-}
-
-python_test() {
# Override pytest options to skip coverage and flake8
-   pytest -vv --override-ini="addopts=" \
-   || die "tests failed with ${EPYTHON}"
+   sed -i -e '/^addopts =/d' setup.cfg || die
+   distutils-r1_python_prepare_all
 }
 
 python_install_all() {



[gentoo-commits] proj/releng:master commit in: tools/

2020-10-21 Thread Matt Turner
commit: 292177ad4311d0d8f505e3326ef177323048f4f4
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Oct 21 18:29:37 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Oct 21 19:00:28 2020 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=292177ad

Revert "specs/ppc/ppc64le: Disable musl builds"

This reverts commit 3c5ff69f328f1dbd50f1ba622cd3740bd8df8b3d.

In catalyst commit 3be3ac84 ("arch/ppc.toml: add CHOST based subarches")
we've added subarches for 'powerpc', 'powerpc64', and 'powerpc64le', so
these stage builds should now work.

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

 tools/catalyst-auto-ppc64le.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/catalyst-auto-ppc64le.conf b/tools/catalyst-auto-ppc64le.conf
index 0474cb49..2379954a 100644
--- a/tools/catalyst-auto-ppc64le.conf
+++ b/tools/catalyst-auto-ppc64le.conf
@@ -5,6 +5,7 @@ SPECS_DIR=${REPO_DIR}/releases/specs/ppc/ppc64le
 
 SPECS="stage1.spec stage3.spec"
 OPTIONAL_SPECS="systemd-stage1.spec systemd-stage3.spec"
+OPTIONAL_SPECS="${OPTIONAL_SPECS} musl-hardened-stage1.spec 
musl-hardened-stage3.spec"
 
 #SPECS="${SPECS} installcd-stage1.spec installcd-stage2-minimal.spec"
 #SPECS="${SPECS} stage2-desktop.spec stage3-desktop.spec"



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

2020-10-21 Thread Louis Sautier
commit: 025c26baf07873fb51b78f3b1b9e806ea10148d6
Author: Louis Sautier  gentoo  org>
AuthorDate: Wed Oct 21 18:56:01 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Wed Oct 21 18:58:55 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=025c26ba

dev-python/dominate: bump to 2.6.0

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/dominate/Manifest  |  1 +
 dev-python/dominate/dominate-2.6.0.ebuild | 18 ++
 2 files changed, 19 insertions(+)

diff --git a/dev-python/dominate/Manifest b/dev-python/dominate/Manifest
index 265518b7d46..a47bd58b346 100644
--- a/dev-python/dominate/Manifest
+++ b/dev-python/dominate/Manifest
@@ -1 +1,2 @@
 DIST dominate-2.5.2.tar.gz 37704 BLAKE2B 
1e55d1be457b6d1ea1f377734da3d48e7b400d6ee60093f09b42a8e094de3d303dd2285cf7883ddfbf5b47e6eaa7bd40194a945942c8afba8321f2fbdd0cb642
 SHA512 
d54d3b2c76e6e3d287715b2f583b3a8822a2d3556a549f728dd235bfc7c76159750cc78651d17cf8d3d5cb98929b2c54c2eae0861449882b0449235a7fbbdb55
+DIST dominate-2.6.0.tar.gz 35034 BLAKE2B 
f3a7aba630e925874da7387a1eed7ca15c353cb6464971d73e86eb259cbabad8b7736a0240d5c1578f84dc828f1ad6cd2e404c323dab9c0305031115e450944e
 SHA512 
1bb690d05a290753cabac045160500717eda8c7610ce88d2b88a490abaa64b2cdb07067c433fa6a27110ec6cb67d884d335663217391e61215ac8eb30003d8e6

diff --git a/dev-python/dominate/dominate-2.6.0.ebuild 
b/dev-python/dominate/dominate-2.6.0.ebuild
new file mode 100644
index 000..ebd04b77618
--- /dev/null
+++ b/dev-python/dominate/dominate-2.6.0.ebuild
@@ -0,0 +1,18 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
+
+inherit distutils-r1
+
+DESCRIPTION="Library for creating and manipulating HTML documents using an 
elegant DOM API"
+HOMEPAGE="https://github.com/Knio/dominate;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+distutils_enable_tests pytest



[gentoo-commits] proj/sci:master commit in: sys-cluster/Lmod/

2020-10-21 Thread Aisha Tammy
commit: 50c64c2c0e1a83bc3884511aaf98b0a965d7ea07
Author: Aisha Tammy  aisha  cc>
AuthorDate: Wed Oct 21 14:55:25 2020 +
Commit: Aisha Tammy  aisha  cc>
CommitDate: Wed Oct 21 14:55:34 2020 +
URL:https://gitweb.gentoo.org/proj/sci.git/commit/?id=50c64c2c

sys-cluster/Lmod: version bump to 8.4.10

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Aisha Tammy  aisha.cc>

 sys-cluster/Lmod/Lmod-8.4.10.ebuild | 104 
 1 file changed, 104 insertions(+)

diff --git a/sys-cluster/Lmod/Lmod-8.4.10.ebuild 
b/sys-cluster/Lmod/Lmod-8.4.10.ebuild
new file mode 100644
index 0..925e1d5e9
--- /dev/null
+++ b/sys-cluster/Lmod/Lmod-8.4.10.ebuild
@@ -0,0 +1,104 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Environment Module System based on Lua"
+HOMEPAGE="https://lmod.readthedocs.io/en/latest;
+SRC_URI="https://github.com/TACC/Lmod/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+KEYWORDS="~amd64"
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="auto-swap cache dotfiles duplicate +extend italic module-cmd nocase 
redirect test"
+RESTRICT="!test? ( test )"
+
+RDEPEND+="
+   app-shells/tcsh
+   || (
+   app-shells/loksh
+   app-shells/mksh
+   app-shells/ksh
+   )
+   app-shells/zsh
+   dev-lang/tcl
+   dev-lua/luafilesystem
+   dev-lua/luajson
+   dev-lua/luaposix
+   dev-lua/lua-term
+"
+DEPEND+="${RDEPEND}"
+BDEPEND+="
+   test? (
+   dev-util/Hermes
+   )
+"
+
+pkg_setup() {
+   elog "There is a lot of options for this package,"
+   elog "especially for run time behaviour."
+   elog "You can set them using EXTRA_ECONF variable."
+   elog "To see full list of options visit:"
+   elog "https://lmod.readthedocs.io/en/latest/090_configuring_lmod.html;
+}
+
+src_prepare() {
+   default
+
+   rm -r "${S}"/rt/{colorize,end2end,help,ifur,settarg} || die
+}
+
+src_configure() {
+   # set environment variables to pass to Lmod configuration
+   local -x CACHE_LIFETIME="${CACHE_LIFETIME:-86400}"
+   local -x SHORT_TIME="${SHORT_TIME:-2}"
+   local -x 
SYSTEM_TOUCH="${SYSTEM_TOUCH:-/var/lmod/latest_system_update.time}"
+   local -x SITE_NAME="${SITE_NAME:-Gentoo}"
+   local -x SYSHOST="${SYSHOST:-Gentoo}"
+
+   local myconf=(
+   --with-tcl
+   --with-fastTCLInterp
+   --with-colorize
+   --prefix=/opt
+   --with-ancient="${CACHE_LIFETIME}"
+   --with-supportKsh
+   --with-updateSystemFn="${SYSTEM_TOUCH}"
+   --with-siteName="${SITE_NAME}"
+   --with-syshost="${SYSHOST}"
+   --with-shortTime="${SHORT_TIME}"
+   --without-useBuiltinPkgs
+   $(use_with duplicate duplicatePaths)
+   $(use_with nocase caseIndependentSorting)
+   $(use_with italic hiddenItalic)
+   $(use_with auto-swap autoSwap)
+   $(use_with module-cmd exportedModuleCmd)
+   $(use_with redirect)
+   $(use_with dotfiles useDotFiles)
+   $(use_with cache cachedLoads)
+   $(use_with extend extendedDefault)
+   )
+
+   econf ${myconf[@]} ${EXTRA_ECONF[@]}
+}
+
+src_test() {
+   local -x PATH="/opt/hermes/bin:${PATH}"
+   tm -vvv || die
+}
+
+src_install() {
+   default
+
+   keepdir /var/lmod
+}
+
+pkg_postinst() {
+   elog "Lmod has been installed at /opt/lmod/{lmod -> ${PV}}"
+   elog "To activate Lmod, you need to source the profile"
+   elog "script provided"
+   elog " $ . /opt/lmod/lmod/init/profile"
+   elog "This will provide you with the 'module' command"
+   elog " $ man module"
+}



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

2020-10-21 Thread Michał Górny
commit: 69caafe0910c273534d6d96789ca564461ac1604
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 17:05:21 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 18:53:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69caafe0

dev-python/pybind11: Bump to 2.6.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pybind11/Manifest  |  1 +
 dev-python/pybind11/pybind11-2.6.0.ebuild | 62 +++
 2 files changed, 63 insertions(+)

diff --git a/dev-python/pybind11/Manifest b/dev-python/pybind11/Manifest
index 6b89938f6dc..c7cab97756c 100644
--- a/dev-python/pybind11/Manifest
+++ b/dev-python/pybind11/Manifest
@@ -1 +1,2 @@
 DIST pybind11-2.5.0.tar.gz 573769 BLAKE2B 
e46d99f873f8266efc577d3e0ab1e8a78784a45c35995bc3486501d627698e0fb10205008e8cb82c84e971f20cd02a6d2f08390f3a3041fff1a21c45f11b197f
 SHA512 
7f3a9c71916749436898d1844ef6b112baf0817a386308b5df8dec2a912ef4b6a932b94965e98f227c49fa77312f131972a6039f23b84a3daf6442a8ab0be7c2
+DIST pybind11-2.6.0.tar.gz 631925 BLAKE2B 
6b7872182f52e035f2a86f0f2ad70b084e62fc20d5aae4903c13ff824f80f3815845f3206d740d17ae471fd979eca117d9d4ee011f9f96c319ca808e6304b07f
 SHA512 
6a3f407c136d827243c0043c794c654ca267a1a4e3b7e0e45cc7629e29193156b0744d85e45222fab284a9af82cf7fa2008fbd977d2b5a7b947c8a6581456caf

diff --git a/dev-python/pybind11/pybind11-2.6.0.ebuild 
b/dev-python/pybind11/pybind11-2.6.0.ebuild
new file mode 100644
index 000..ad41df44bfd
--- /dev/null
+++ b/dev-python/pybind11/pybind11-2.6.0.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit cmake distutils-r1
+
+DESCRIPTION="AST-based Python refactoring library"
+HOMEPAGE="https://pybind11.readthedocs.io/en/stable/;
+SRC_URI="https://github.com/pybind/pybind11/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux 
~ppc-macos ~x86-macos"
+
+RDEPEND="
+   dev-cpp/eigen:3
+"
+
+distutils_enable_sphinx docs \
+   '

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

2020-10-21 Thread Michał Górny
commit: 56302140c19e1ff2ddedaae856a77451e4dc9c8d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 15:40:04 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 18:53:51 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56302140

dev-util/cvise: Bump to 1.8.0

Signed-off-by: Michał Górny  gentoo.org>

 dev-util/cvise/Manifest   |  1 +
 dev-util/cvise/cvise-1.8.0.ebuild | 60 +++
 2 files changed, 61 insertions(+)

diff --git a/dev-util/cvise/Manifest b/dev-util/cvise/Manifest
index 9a204e131ca..365356439f6 100644
--- a/dev-util/cvise/Manifest
+++ b/dev-util/cvise/Manifest
@@ -1,2 +1,3 @@
 DIST cvise-1.6.0.tar.gz 243050 BLAKE2B 
64c305426dbeaf2e3f3a92a902209b35fcc76b5f5a6d2e48fcc8e24d1325badc0839e70afa1381c6d1412c22a7e9dd41ca03d6ca714fa5082958378cc8863000
 SHA512 
9d4ee043c34748b600b49ac4f00463b853faff2809f8b581e9b07433a8f3bef4436d0e5d5a9dbff1b2d7c3a8ab1d6d4823e78787eb3e911a683808703b2e24b6
 DIST cvise-1.7.0.tar.gz 248515 BLAKE2B 
b1a2ca8abc7a09c240a7ae39400e3e60ca641dd0dff4edb34f43d755619ec47bb7a0d25fd6b4461bf80a3be14a63c6e56d0e3e758827ca7c2ef90370aba5d539
 SHA512 
2e0115355c0ca3cdf593ad4a8d0079ea0ea193234ff4fcae8bdc7c0244cc7b8672025682821279b826fda97f80dc71455390d709836acb671c19772f13156de5
+DIST cvise-1.8.0.tar.gz 248744 BLAKE2B 
5196a2bb68c0f9ca1a8219ee0dccae80aa7adac64df5bc4c7601a8ef81048875bfa3d8fb2e8c407cfa8f238739733ad4fbdf08bb14a72ec208d562bd7e69ba84
 SHA512 
eaef3506f0fcd54953271494ebdbd043c028cd98c4a976bc2d978112c28d27d5d307527db52c2a3f8f153b52430ba9c61ad072dcae5a6e0b9bfb8be844a50bab

diff --git a/dev-util/cvise/cvise-1.8.0.ebuild 
b/dev-util/cvise/cvise-1.8.0.ebuild
new file mode 100644
index 000..16f63504e0d
--- /dev/null
+++ b/dev-util/cvise/cvise-1.8.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+: ${CMAKE_MAKEFILE_GENERATOR=ninja}
+PYTHON_COMPAT=( python3_{6..9} )
+inherit cmake llvm python-single-r1
+
+DESCRIPTION="Super-parallel Python port of the C-Reduce"
+HOMEPAGE="https://github.com/marxin/cvise/;
+SRC_URI="
+   https://github.com/marxin/cvise/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="UoI-NCSA"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+LLVM_MAX_SLOT=12
+DEPEND="
+   || (
+   sys-devel/clang:12
+   sys-devel/clang:11
+   sys-devel/clang:10
+   )
+   <=sys-devel/clang-$(( LLVM_MAX_SLOT + 1 )):="
+RDEPEND="${DEPEND}
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/pebble[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   ')
+   dev-util/unifdef
+   sys-devel/flex"
+BDEPEND="
+   ${PYTHON_DEPS}
+   sys-devel/flex
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/pebble[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   ')
+   )"
+
+llvm_check_deps() {
+   has_version "sys-devel/clang:${LLVM_SLOT}"
+}
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+   llvm_pkg_setup
+}
+
+src_test() {
+   cd "${BUILD_DIR}" || die
+   pytest -vv || die
+}



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

2020-10-21 Thread Michał Górny
commit: 112fb4a5df82f522ccc5b368207266c27c92dba0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Oct 21 16:11:59 2020 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Oct 21 18:53:52 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=112fb4a5

dev-python/pygame: Bump to 2.0.0dev18

Signed-off-by: Michał Górny  gentoo.org>

 dev-python/pygame/Manifest  |  1 +
 dev-python/pygame/pygame-2.0.0_pre18.ebuild | 91 +
 2 files changed, 92 insertions(+)

diff --git a/dev-python/pygame/Manifest b/dev-python/pygame/Manifest
index ffdad2b609c..140e6d3a46d 100644
--- a/dev-python/pygame/Manifest
+++ b/dev-python/pygame/Manifest
@@ -2,3 +2,4 @@ DIST pygame-1.9.6.tar.gz 3223131 BLAKE2B 
a4d04c933fcad244d32bd512ef8717e60ec923f
 DIST pygame-2.0.0.dev10.tar.gz 5567274 BLAKE2B 
7d78f260318cfabeb33f1073ae210f890d2f772e3ef302f243cca67724c6012355644ba60d4cae6de72db6dd61d320177deff6ee83dd355ec4cc33e841b565f7
 SHA512 
4cee7599fd8a6d31ddd66bfaad3bbb67cb167c1ae339f37e83322d810fea8746e81a191c224a0eeb6cc43a64bf1730ff0886c82f1a4f642e2e656ca9a837bf9e
 DIST pygame-2.0.0.dev12.tar.gz 5598471 BLAKE2B 
339e96ed7f01070c3aa4b31b587a793b43b99ac476d72a431dff09d98b95ef48c6b0d4faa20301e6db43cb2b35b13245253d86859c16d2befbd3795f8ed48b7f
 SHA512 
f732056b3c8377326caf1d6ded6c59e8665de2ab2f6233d6d95dcc26137d67d180f8c5dc92fc22578ec5ce0ecf5a1de5080c62355d15035ab248d518cd75180f
 DIST pygame-2.0.0.dev14.tar.gz 5556790 BLAKE2B 
9857a8bc14081c375d717c50b7406f74a52ae725c31905acc2528f8d361d9b1e54e2f20383f553c6f3a290d2fbdbc2342c88c7a7a0abee3f6038ed737747a7a0
 SHA512 
37490dbb981cc889f00036162baa450f6cc6b936cfb23b5648ed43a8c524e8782c71efcfaef2c2ddf9690c946b0f5d15c670dddcb730f18dc37b28d06c13ae3b
+DIST pygame-2.0.0.dev18.tar.gz 5591175 BLAKE2B 
3479e9161e4dc5f00123f359b29f5c133020578bd09fc972f3f2d9e55b1700f4ac5eccc904524e98fe827fa7ed871db130da1f7b9aa8a67da98f42562f2ee766
 SHA512 
dfa8ac023e5da1688825281dd06e22aa59fa7061dcf17b8ec1c8c84b2bda7e27d39a97be3375d9ccb15aa50a0096be74ef6c80614e5d71729157712463140af1

diff --git a/dev-python/pygame/pygame-2.0.0_pre18.ebuild 
b/dev-python/pygame/pygame-2.0.0_pre18.ebuild
new file mode 100644
index 000..a43bd4b4223
--- /dev/null
+++ b/dev-python/pygame/pygame-2.0.0_pre18.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{6..9} )
+
+inherit distutils-r1
+
+MY_PV=${PV/_pre/.dev}
+MY_P=${PN}-${MY_PV}
+
+DESCRIPTION="Python bindings for SDL multimedia library"
+HOMEPAGE="https://www.pygame.org/;
+SRC_URI="
+   
https://github.com/pygame/pygame/releases/download/${MY_PV}/${MY_P}.tar.gz;
+S=${WORKDIR}/${MY_P}
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+IUSE="doc examples midi opengl test X"
+RESTRICT="!test? ( test )"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]
+   media-libs/freetype
+   >=media-libs/sdl2-image-1.2.2
+   >=media-libs/sdl2-mixer-1.2.4
+   >=media-libs/sdl2-ttf-2.0.6
+   >=media-libs/smpeg2-0.4.4-r1
+   midi? ( media-libs/portmidi )
+   X? ( >=media-libs/libsdl2-1.2.5[opengl?,threads,video,X] )
+   !X? ( >=media-libs/libsdl2-1.2.5[threads] )"
+DEPEND="${RDEPEND}
+   test? (
+   media-libs/sdl2-image[gif,jpeg,png]
+   media-libs/sdl2-mixer[mp3,vorbis,wav]
+   )"
+# fontconfig used for fc-list
+RDEPEND+="
+   media-libs/fontconfig"
+# util-linux provides script
+BDEPEND="
+   test? (
+   media-libs/fontconfig
+   sys-apps/util-linux
+   )"
+
+src_prepare() {
+   if ! use midi; then
+   rm test/midi_test.py || die
+   fi
+   distutils-r1_src_prepare
+}
+
+python_configure() {
+   PORTMIDI_INC_PORTTIME=1 LOCALBASE="${EPREFIX}/usr" \
+   "${EPYTHON}" "${S}"/buildconfig/config.py -auto || die
+
+   # Disable automagic dependency on PortMidi.
+   if ! use midi; then
+   sed -e "s:^pypm :#&:" -i Setup || die "sed failed"
+   fi
+}
+
+python_test() {
+   local -x PYTHONPATH=${BUILD_DIR}/install/lib
+   local -x SDL_VIDEODRIVER=dummy
+   local -x SDL_AUDIODRIVER=disk
+   esetup.py install \
+   --root="${BUILD_DIR}"/install \
+   --install-lib=lib
+   script -eqc "${EPYTHON} -m pygame.tests" || die
+}
+
+python_install() {
+   distutils-r1_python_install
+
+   # Bug #497720
+   rm -fr "${D}"$(python_get_sitedir)/pygame/{docs,examples,tests}/ || die
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   if use doc; then
+   docinto html
+   dodoc -r docs/*
+   fi
+
+   use examples && dodoc -r examples
+}



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

2020-10-21 Thread Louis Sautier
commit: 5aa2eaa577c58785638e9f443bdc2762fb371992
Author: Louis Sautier  gentoo  org>
AuthorDate: Wed Oct 21 18:39:37 2020 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Wed Oct 21 18:47:11 2020 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5aa2eaa5

dev-python/pushbullet-py: bump to 0.12.0

And use distutils_enable_tests to simplify deps.

Package-Manager: Portage-3.0.8, Repoman-3.0.1
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/pushbullet-py/Manifest  |  1 +
 .../pushbullet-py/pushbullet-py-0.12.0.ebuild  | 49 ++
 2 files changed, 50 insertions(+)

diff --git a/dev-python/pushbullet-py/Manifest 
b/dev-python/pushbullet-py/Manifest
index 23ad44b78bd..46d183f4e9e 100644
--- a/dev-python/pushbullet-py/Manifest
+++ b/dev-python/pushbullet-py/Manifest
@@ -1 +1,2 @@
 DIST pushbullet.py-0.11.0.tar.gz 21653 BLAKE2B 
a6c9b6f4958ce35b63ea4043d1d4f8691885bd0aa2927af541f2080a0b0b65a7df979a497967f3adceab8ad2382448a4c6a02d1184c9d72a18d91844eb970722
 SHA512 
b236f30b99e5bb79eff183529716c1c8f83cfd2526fdf50d86041eb6d3fcd6670d0c4dce407ae6e50aea0fa96d6a5527af980148f0c71ef758c480f972ad9659
+DIST pushbullet.py-0.12.0.tar.gz 23769 BLAKE2B 
096c5995bee7dba65b7f385c2cbd70d839b22a07b26dd1ad9c1ef64244ba97e3c2f077c9eb0ca46a2ccd7df6a27e3ee3d4d55522986e832ca109d003e77fbad6
 SHA512 
5394fb8e8631ba00c610c36380e2c917231207ecd25bb4e2f1f0e44c232f4dd33b99ce5b1973467844b7f46f275ea812620e6549afd42915ee8fc13e1650f758

diff --git a/dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild 
b/dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild
new file mode 100644
index 000..28a23a8aa3f
--- /dev/null
+++ b/dev-python/pushbullet-py/pushbullet-py-0.12.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2020 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( pypy3 python3_{6..9} )
+
+inherit distutils-r1
+
+MY_PN=${PN/-/.}
+DESCRIPTION="A simple python client for pushbullet.com"
+HOMEPAGE="https://github.com/randomchars/pushbullet.py;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${MY_PN}-${PV}.tar.gz"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples"
+
+RDEPEND="
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/python-magic[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/websocket-client[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   # skip tests which require network access
+   PUSHBULLET_API_KEY= pytest -vv \
+   -k "not (test_auth or test_decryption)" \
+   || die "Tests failed with ${EPYTHON}"
+}
+
+python_install_all() {
+   if use examples; then
+   docompress -x "/usr/share/doc/${PF}/examples"
+   docinto examples
+   dodoc -r example/.
+   fi
+   distutils-r1_python_install_all
+}



[gentoo-commits] proj/catalyst:master commit in: arch/

2020-10-21 Thread Matt Turner
commit: 954168fb35500c46b2eeed3929fcb904fca66275
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Oct 21 04:33:47 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Oct 21 17:58:12 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=954168fb

arch/ppc.toml: add power9 subarches

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

 arch/ppc.toml | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/arch/ppc.toml b/arch/ppc.toml
index 6f74789d..c8623cca 100644
--- a/arch/ppc.toml
+++ b/arch/ppc.toml
@@ -42,6 +42,16 @@ COMMON_FLAGS = "-O2 -pipe -mcpu=power8 -mtune=power8"
 CHOST = "powerpc64le-unknown-linux-gnu"
 USE = [ "altivec", "ibm",]
 
+[ppc64.power9]
+COMMON_FLAGS = "-O2 -pipe -mcpu=power9 -mtune=power9"
+CHOST = "powerpc64-unknown-linux-gnu"
+USE = [ "altivec", "ibm",]
+
+[ppc64.power9le]
+COMMON_FLAGS = "-O2 -pipe -mcpu=power9 -mtune=power9"
+CHOST = "powerpc64le-unknown-linux-gnu"
+USE = [ "altivec", "ibm",]
+
 [ppc64.ppc64]
 COMMON_FLAGS = "-O2 -pipe"
 CHOST = "powerpc64-unknown-linux-gnu"



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-10-21 Thread Matt Turner
commit: 627fd3bc71cdd47086a300a3810a0a651d97824e
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Oct 20 02:41:09 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 20 23:26:35 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=627fd3bc

targets: Remove unnecessary CONFIG_PROTECT assignment

CONFIG_PROTECT is set in run_merge, making this assignment and export
unnecessary.

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

 targets/support/kmerge.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/targets/support/kmerge.sh b/targets/support/kmerge.sh
index 972feb99..5e284183 100755
--- a/targets/support/kmerge.sh
+++ b/targets/support/kmerge.sh
@@ -88,7 +88,6 @@ genkernel_compile() {
 }
 
 [ -n "${clst_ENVSCRIPT}" ] && source /tmp/envscript
-export CONFIG_PROTECT="-*"
 
 # Set the timezone for the kernel build
 rm /etc/localtime



[gentoo-commits] proj/catalyst:master commit in: doc/, catalyst/, examples/, etc/, catalyst/base/

2020-10-21 Thread Matt Turner
commit: f9ec6eb347542d35208a94a07af155dcd473e4e1
Author: Matt Turner  gentoo  org>
AuthorDate: Tue May 19 00:59:10 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Oct 21 01:07:32 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=f9ec6eb3

catalyst: Configure distcc_hosts in the config file

distcc_hosts are independent of the build itself, and therefore should
be configured system-wide in catalyst.conf and not in each spec file.

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

 catalyst/base/stagebase.py   | 1 -
 catalyst/defaults.py | 1 +
 doc/catalyst-config.5.txt| 7 ++-
 doc/catalyst-spec.5.txt  | 6 --
 etc/catalyst.conf| 3 +--
 examples/generic_stage_template.spec | 7 ---
 examples/livecd-stage1_template.spec | 7 ---
 examples/livecd-stage2_template.spec | 7 ---
 examples/stage4_template.spec| 7 ---
 9 files changed, 8 insertions(+), 38 deletions(-)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index afea5776..be7b96c8 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -51,7 +51,6 @@ class StageBase(TargetBase, ClearBase, GenBase):
 "compression_mode",
 "cxxflags",
 "decompressor_search_order",
-"distcc_hosts",
 "fcflags",
 "fflags",
 "hostuse",

diff --git a/catalyst/defaults.py b/catalyst/defaults.py
index 7a2fe3f3..0f399b56 100644
--- a/catalyst/defaults.py
+++ b/catalyst/defaults.py
@@ -11,6 +11,7 @@ from DeComp.definitions import DECOMPRESSOR_PROGRAM_OPTIONS, 
LIST_XATTRS_OPTIONS
 valid_config_file_values = frozenset([
 "compression_mode",
 "digests",
+"distcc_hosts",
 "distdir",
 "envscript",
 "jobs",

diff --git a/doc/catalyst-config.5.txt b/doc/catalyst-config.5.txt
index cbef6092..570d42c2 100644
--- a/doc/catalyst-config.5.txt
+++ b/doc/catalyst-config.5.txt
@@ -78,7 +78,7 @@ be closed invalid.
 
 distcc::
 Enable distcc support for building. You have to set distcc_hosts in
-your spec file.
+your config file.
 
 icecream::
 Enable icecream compiler cluster support for building.
@@ -136,6 +136,11 @@ written to the target's make.conf if it is not the default 
value of
 Other settings
 ~~
 
+*distcc_hosts*::
+These are the hosts used as distcc slaves when distcc is enabled in
+your `catalyst.conf` (example: `127.0.0.1 192.168.0.1`).  It follows
+the same syntax as `distcc-config --set-hosts`.
+
 *jobs*::
 Integral value passed to *emerge(1)* as the parameter to --jobs and is
 used to define *MAKEOPTS* during the target build.

diff --git a/doc/catalyst-spec.5.txt b/doc/catalyst-spec.5.txt
index 43cd5d2f..31e69820 100644
--- a/doc/catalyst-spec.5.txt
+++ b/doc/catalyst-spec.5.txt
@@ -74,12 +74,6 @@ This specifies where the seed stage for this target comes 
from
 `$storedir/builds`.  The `rel_type` is also used as a path prefix for
 the seed.
 
-*distcc_hosts*::
-These are the hosts used as distcc slaves when distcc is enabled in
-your `catalyst.conf` (example: `127.0.0.1 192.168.0.1`).  It follows
-the same syntax as `distcc-config --set-hosts` and is entirely
-optional.
-
 *portage_confdir*::
 This is an optional directory containing portage configuration files
 (example: `/etc/portage`).  It follows the same syntax as

diff --git a/etc/catalyst.conf b/etc/catalyst.conf
index 81693c25..b0b284fa 100644
--- a/etc/catalyst.conf
+++ b/etc/catalyst.conf
@@ -35,8 +35,7 @@ options = [
# Enable FEATURES=ccache
# "ccache",
 
-   # Enable FEATURES=distcc. You have to set distcc_hosts in your spec
-   # file.
+   # Enable FEATURES=distcc. Make sure to set distcc_hosts too.
# "distcc",
 
# Enable FEATURES=icecream

diff --git a/examples/generic_stage_template.spec 
b/examples/generic_stage_template.spec
index 01c37789..8f0375c4 100644
--- a/examples/generic_stage_template.spec
+++ b/examples/generic_stage_template.spec
@@ -82,13 +82,6 @@ compressor_arch":
 #
 decompressor_search_order: lbzip2 bzip2 tar pixz xz gzip squashfs
 
-# These are the hosts used as distcc slaves when distcc is enabled in your
-# catalyst.conf.  It follows the same syntax as distcc-config --set-hosts and
-# is entirely optional.
-# example:
-# distcc_hosts: 127.0.0.1 192.168.0.1
-distcc_hosts:
-
 # This is an optional directory containing portage configuration files.  It
 # follows the same syntax as /etc/portage and should be consistent across all
 # targets to minimize problems.

diff --git a/examples/livecd-stage1_template.spec 
b/examples/livecd-stage1_template.spec
index c7086c91..b921372a 100644
--- a/examples/livecd-stage1_template.spec
+++ b/examples/livecd-stage1_template.spec
@@ -45,13 +45,6 @@ snapshot:
 # default/stage3-x86-2006.1
 source_subpath:
 
-# These are the hosts used as distcc slaves when distcc is enabled in your
-# catalyst.conf.  It follows the same syntax 

[gentoo-commits] proj/catalyst:master commit in: targets/embedded/, targets/stage4/, targets/livecd-stage2/, catalyst/base/, ...

2020-10-21 Thread Matt Turner
commit: 6696fd9e370c27f3bf62385aca0a5940f8246efd
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 19 22:50:40 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 20 23:26:35 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=6696fd9e

targets: Remove post-kmerge

The find ... touch modules.dep command doesn't seem necessary anymore,
and this is all the script still does. Additionally confusing,
pre-kmerge runs only once while post-kmerge runs once for each kernel.

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

 catalyst/base/stagebase.py  |  4 
 targets/embedded/controller.sh  |  5 -
 targets/livecd-stage2/controller.sh |  5 -
 targets/netboot/controller.sh   |  5 -
 targets/stage4/controller.sh|  5 -
 targets/support/post-kmerge.sh  | 11 ---
 6 files changed, 35 deletions(-)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index ffcc211c..99d638d8 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -1548,10 +1548,6 @@ class StageBase(TargetBase, ClearBase, GenBase):
 
 self.resume.is_enabled("build_kernel_" + kname)
 
-# Execute the script that cleans up the kernel build environment
-cmd([self.settings['controller_file'], 'post-kmerge'],
-env=self.env)
-
 def _copy_kernel_config(self, kname):
 key = 'boot/kernel/' + kname + '/config'
 if key in self.settings:

diff --git a/targets/embedded/controller.sh b/targets/embedded/controller.sh
index d0bf331d..48867897 100755
--- a/targets/embedded/controller.sh
+++ b/targets/embedded/controller.sh
@@ -33,11 +33,6 @@ case ${1} in
exec_in_chroot ${clst_shdir}/support/pre-kmerge.sh
;;
 
-   post-kmerge)
-   # Cleans up the build environment after the kernels are compiled
-   exec_in_chroot ${clst_shdir}/support/post-kmerge.sh
-   ;;
-
kernel)
shift
export kname="${1}"

diff --git a/targets/livecd-stage2/controller.sh 
b/targets/livecd-stage2/controller.sh
index fe078eed..30b522e3 100755
--- a/targets/livecd-stage2/controller.sh
+++ b/targets/livecd-stage2/controller.sh
@@ -8,11 +8,6 @@ case $1 in
exec_in_chroot ${clst_shdir}/support/pre-kmerge.sh
;;
 
-   post-kmerge)
-   # Cleans up the build environment after the kernels are compiled
-   exec_in_chroot ${clst_shdir}/support/post-kmerge.sh
-   ;;
-
kernel)
shift
export kname="$1"

diff --git a/targets/netboot/controller.sh b/targets/netboot/controller.sh
index b8d8ec23..9a6e14d2 100755
--- a/targets/netboot/controller.sh
+++ b/targets/netboot/controller.sh
@@ -17,11 +17,6 @@ case ${1} in
exec_in_chroot ${clst_shdir}/support/pre-kmerge.sh
;;
 
-   post-kmerge)
-   # Cleans up the build environment after the kernels are compiled
-   exec_in_chroot ${clst_shdir}/support/post-kmerge.sh
-   ;;
-
kernel)
shift
export kname="$1"

diff --git a/targets/stage4/controller.sh b/targets/stage4/controller.sh
index 7825f800..ba0774d1 100755
--- a/targets/stage4/controller.sh
+++ b/targets/stage4/controller.sh
@@ -14,11 +14,6 @@ case $1 in
exec_in_chroot ${clst_shdir}/support/pre-kmerge.sh
;;
 
-   post-kmerge)
-   # Cleans up the build environment after the kernels are compiled
-   exec_in_chroot ${clst_shdir}/support/post-kmerge.sh
-   ;;
-
kernel)
shift
export kname="$1"

diff --git a/targets/support/post-kmerge.sh b/targets/support/post-kmerge.sh
deleted file mode 100755
index 58b2e08d..
--- a/targets/support/post-kmerge.sh
+++ /dev/null
@@ -1,11 +0,0 @@
-#!/bin/bash
-
-RUN_DEFAULT_FUNCS="no"
-
-source /tmp/chroot-functions.sh
-
-# Only run depscan.sh if modules exist
-if [ -n "$(ls /lib/modules)" ]
-then
-   find /lib/modules -name modules.dep -exec touch {} \;
-fi



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-10-21 Thread Matt Turner
commit: 97060f608afd21e1463115f46cf2fbc3cee73b5c
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Oct 20 02:38:39 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 20 23:26:35 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=97060f60

targets: Reimplement kerncache support

I cannot see how the code added in commit fed3b45b could have possibly
worked, and in practice it did not.

An earlier commit (beb92087) deleted most or all of the uses of the
*_MATCH variables but left the code that set them in place.

Fixes: beb92087 ("Added patches from Joshua Kinard  gentoo.org>")
Fixes: fed3b45b ("Fix and improve kernel build when kerncache is enabled.")
Signed-off-by: Matt Turner  gentoo.org>

 targets/support/kmerge.sh | 147 +++---
 1 file changed, 47 insertions(+), 100 deletions(-)

diff --git a/targets/support/kmerge.sh b/targets/support/kmerge.sh
index 6a0137d7..972feb99 100755
--- a/targets/support/kmerge.sh
+++ b/targets/support/kmerge.sh
@@ -85,11 +85,6 @@ genkernel_compile() {
else
genkernel "${GK_ARGS[@]}" || exit 1
fi
-   if [ -n "${clst_KERNCACHE}" -a -e /var/tmp/${kname}.config ]
-   then
-   md5sum /var/tmp/${kname}.config | awk '{print $1}' > \
-   
/tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.CONFIG
-   fi
 }
 
 [ -n "${clst_ENVSCRIPT}" ] && source /tmp/envscript
@@ -106,117 +101,69 @@ eval eval kernel_gk_kernargs=( 
\$clst_boot_kernel_${kname}_gk_kernargs )
 eval "ksource=\$clst_boot_kernel_${kname}_sources"
 [[ -z ${ksource} ]] && ksource="sys-kernel/gentoo-sources"
 
-# Check if we have a match in kerncach
-
-if [ -n "${clst_KERNCACHE}" ]
-then
-   USE_MATCH=0
-   if [ -e /tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.USE ]
-   then
-   STR1=$(for i in `cat 
/tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.USE`; do echo $i; 
done|sort)
-   STR2=$(for i in ${kernel_use}; do echo $i; done|sort)
-   if [ "${STR1}" = "${STR2}" ]
-   then
-   USE_MATCH=1
-   else
-   [ -e /tmp/kerncache/${kname}/usr/src/linux/.config ] && 
\
-   rm /tmp/kerncache/${kname}/usr/src/linux/.config
-   fi
-   fi
-
-   EXTRAVERSION_MATCH=0
-   if [ -e 
/tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.EXTRAVERSION ]
-   then
-   STR1=`cat 
/tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.EXTRAVERSION`
-   STR2=${clst_kextraversion}
-   if [ "${STR1}" = "${STR2}" ]
-   then
-   EXTRAVERSION_MATCH=1
-   fi
-   fi
-
-   CONFIG_MATCH=0
-   if [ -e /tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.CONFIG ]
-   then
-   if [ ! -e /var/tmp/${kname}.config ]
-   then
-   CONFIG_MATCH=1
-   else
-   STR1=`cat 
/tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.CONFIG`
-   STR2=`md5sum /var/tmp/${kname}.config|awk '{print $1}'`
-   if [ "${STR1}" = "${STR2}" ]
-   then
-   CONFIG_MATCH=1
-   fi
-   fi
-   fi
+kernel_version=$(portageq best_visible / "${ksource}")
 
-   # install dependencies of kernel sources ahead of time in case
-   # package.provided generated below causes them not to be (re)installed
-   run_merge --onlydeps "${ksource}"
+if [[ -n ${clst_KERNCACHE} ]]; then
+   mkdir -p "/tmp/kerncache/${kname}"
+   pushd "/tmp/kerncache/${kname}" >/dev/null
 
-   # Create the kerncache directory if it doesn't exists
-   mkdir -p /tmp/kerncache/${kname}
+   echo "${kernel_use}" > /tmp/USE
+   echo "${kernel_version}" > /tmp/VERSION
+   echo "${clst_kextraversion}" > /tmp/EXTRAVERSION
 
-   if [ -e 
/tmp/kerncache/${kname}/${kname}-${clst_version_stamp}.KERNELVERSION ]
-   then
-   
KERNELVERSION=$( 
${clst_port_conf}/profile/package.provided
-   else
-   rm -f ${clst_port_conf}/profile/package.provided
+   if cmp -s {/tmp/,}USE && \
+  cmp -s {/tmp/,}VERSION && \
+  cmp -s {/tmp/,}EXTRAVERSION && \
+  cmp -s /var/tmp/${kname}.config CONFIG; then
+   cached_kernel_found="true"
fi
 
-   # Don't use package.provided if there's a pending up/downgrade
-   if [[ "$(portageq best_visible / ${ksource})" == "${KERNELVERSION}" ]]; 
then
-   echo "No pending updates for ${ksource}"
-   else
-   echo "Pending updates for ${ksource}, removing package.provided"
-   rm -f ${clst_port_conf}/profile/package.provided
-   fi
+   rm -f /tmp/{USE,VERSION,EXTRAVERSION}
+   popd >/dev/null
+fi
 
+if [[ 

[gentoo-commits] proj/catalyst:master commit in: targets/livecd-stage1/, targets/livecd-stage2/

2020-10-21 Thread Matt Turner
commit: 94fd641610005dd1797688bb21b77ee62aa94a87
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 19 23:04:05 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 20 23:26:35 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=94fd6416

targets: Delete never-used packages.txt code

Added in 2008 with a commit message saying

Added code to livecd-stage1 to generate a package list, which
will be used in livecd-stage2 with the upcoming livedvd
livecd/type to fetch the distfiles automatically.

which sounds like a nice plan, but until it's implemented we don't need
this code.

Fixes: a97c7ee4 ("Updated TODO. ...")
Signed-off-by: Matt Turner  gentoo.org>

 targets/livecd-stage1/controller.sh | 1 -
 targets/livecd-stage2/controller.sh | 1 -
 2 files changed, 2 deletions(-)

diff --git a/targets/livecd-stage1/controller.sh 
b/targets/livecd-stage1/controller.sh
index c4572ff9..ae897da9 100755
--- a/targets/livecd-stage1/controller.sh
+++ b/targets/livecd-stage1/controller.sh
@@ -11,7 +11,6 @@ case $1 in
mkdir -p ${clst_chroot_path}/usr/livecd ${clst_chroot_path}/tmp
exec_in_chroot \
${clst_shdir}/${clst_target}/chroot.sh
-   echo "${clst_packages}" > ${clst_chroot_path}/tmp/packages.txt
;;
 esac
 exit $?

diff --git a/targets/livecd-stage2/controller.sh 
b/targets/livecd-stage2/controller.sh
index 30b522e3..826dc9dc 100755
--- a/targets/livecd-stage2/controller.sh
+++ b/targets/livecd-stage2/controller.sh
@@ -78,7 +78,6 @@ case $1 in
# Clean out man, info and doc files
rm -rf ${clst_chroot_path}/usr/share/{man,doc,info}/*
fi
-   rm -f ${clst_chroot_path}/tmp/packages.txt
;;
 
bootloader)



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-10-21 Thread Matt Turner
commit: 9119f4ac49947825398f609627d03f4525aa004a
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Oct 20 23:03:02 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 20 23:26:35 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=9119f4ac

targets: Drop warning about no cdtar

Most platforms use grub now and don't need a cdtar. Also use double
brackets while we're here.

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

 targets/support/bootloader-setup.sh | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/targets/support/bootloader-setup.sh 
b/targets/support/bootloader-setup.sh
index a82b69dc..ea18f736 100755
--- a/targets/support/bootloader-setup.sh
+++ b/targets/support/bootloader-setup.sh
@@ -4,12 +4,8 @@ source ${clst_shdir}/support/functions.sh
 
 # $1 is the destination root
 
-if [ -n "${clst_cdtar}" ]
-then
+if [[ -n ${clst_cdtar} ]]; then
extract_cdtar $1
-else
-   #While this seems a little crazy, it's entirely possible the bootloader 
is just shoved in isoroot overlay
-   echo "No cdtar and unable to auto generate boot loader files... good 
luck"
 fi
 
 extract_kernels $1/boot



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-10-21 Thread Matt Turner
commit: 9d167d45f011940b15c7bba09dd04fd2ca0235ae
Author: Matt Turner  gentoo  org>
AuthorDate: Mon Oct 19 23:10:36 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 20 23:26:35 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=9d167d45

targets: Remove unnecessary unset PACKAGES

Dead code since 2008.

Fixes: b79d06a3 ("Remove temporary package listing code, ...")
Signed-off-by: Matt Turner  gentoo.org>

 targets/support/chroot-functions.sh | 1 -
 1 file changed, 1 deletion(-)

diff --git a/targets/support/chroot-functions.sh 
b/targets/support/chroot-functions.sh
index 22340023..7222892e 100755
--- a/targets/support/chroot-functions.sh
+++ b/targets/support/chroot-functions.sh
@@ -270,7 +270,6 @@ run_merge() {
 show_debug() {
if [ -n "${clst_DEBUG}" ]
then
-   unset PACKAGES
echo "DEBUG:"
echo "Profile/target info:"
echo "Profile inheritance:"



[gentoo-commits] proj/catalyst:master commit in: targets/support/

2020-10-21 Thread Matt Turner
commit: 07a8d208e1226d58efb8bc9416c030129dcae712
Author: Matt Turner  gentoo  org>
AuthorDate: Tue Oct 20 01:27:17 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue Oct 20 23:26:35 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=07a8d208

targets: Remove kernelpkgs.txt generation

Evidently this was to be consumed by the Gentoo Linux Installer, which
saw its last commit in 2008.

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

 targets/support/kmerge.sh  | 10 --
 targets/support/livecdfs-update.sh | 11 ---
 2 files changed, 21 deletions(-)

diff --git a/targets/support/kmerge.sh b/targets/support/kmerge.sh
index c4136dec..27584d51 100755
--- a/targets/support/kmerge.sh
+++ b/targets/support/kmerge.sh
@@ -66,16 +66,6 @@ setup_gk_args() {
 genkernel_compile(){
setup_gk_args
 
-   # Build our list of kernel packages
-   case ${clst_livecd_type} in
-   gentoo-release-live*)
-   if [ -n "${kernel_merge}" ]
-   then
-   mkdir -p /usr/livecd
-   echo "${kernel_merge}" > 
/usr/livecd/kernelpkgs.txt
-   fi
-   ;;
-   esac
# Build with genkernel using the set options
# callback is put here to avoid escaping issues
if [ -n "${clst_VERBOSE}" ]

diff --git a/targets/support/livecdfs-update.sh 
b/targets/support/livecdfs-update.sh
index 47dbb5b3..b7ead552 100755
--- a/targets/support/livecdfs-update.sh
+++ b/targets/support/livecdfs-update.sh
@@ -296,19 +296,8 @@ case ${clst_livecd_type} in
ln -sf /usr/livecd/gconf /etc/gconf
fi
 
-   if [ -e /usr/livecd/kernelpkgs.txt ]
-   then
-   rm -f /usr/livecd/kernelpkgs.txt
-   fi
-
touch /etc/startx
;;
-   * )
-   if [ -e /usr/livecd/kernelpkgs.txt ]
-   then
-   rm -f /usr/livecd/kernelpkgs.txt
-   fi
-   ;;
 esac
 
 # We want the first user to be used when auto-starting X



[gentoo-commits] proj/catalyst:master commit in: catalyst/, doc/, catalyst/base/, targets/support/, etc/

2020-10-21 Thread Matt Turner
commit: 3269cfc50ec2eeccbb1c5aebc89fd4b38ce1b3e8
Author: Matt Turner  gentoo  org>
AuthorDate: Thu May 14 02:37:11 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Oct 21 01:07:29 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=3269cfc5

catalyst: Set jobs/load-average via catalyst.conf

We currently have two mechanisms of setting MAKEOPTS: in spec files and
in catalystrc.

Setting makeopts in spec files doesn't make sense. The spec should
describe the thing that's being built and not contain options that are
specific to the build system.

Setting makeopts via catalystrc is better, but it only applies to the
actual build system invocations, leaving emerge to run jobs serially or
again requiring configuration specific to the build machine to be put
into the spec file. For example:

update_seed_command: ... --jobs 5 --load-average 5

With jobs and load-average specified in catalyst.conf, catalyst has the
information required to configure both emerge and the build systems
emerge executes.

This removes the undocumented makeopts spec file option and replaces it
with jobs and load-average settings in catalyst.conf.

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

 catalyst/base/stagebase.py  | 12 +---
 catalyst/defaults.py|  2 ++
 doc/catalyst-config.5.txt   | 15 ---
 etc/catalyst.conf   |  8 
 etc/catalystrc  |  3 ---
 targets/support/chroot-functions.sh |  8 
 6 files changed, 35 insertions(+), 13 deletions(-)

diff --git a/catalyst/base/stagebase.py b/catalyst/base/stagebase.py
index 99d638d8..afea5776 100644
--- a/catalyst/base/stagebase.py
+++ b/catalyst/base/stagebase.py
@@ -59,7 +59,6 @@ class StageBase(TargetBase, ClearBase, GenBase):
 "interpreter",
 "kerncache_path",
 "ldflags",
-"makeopts",
 "pkgcache_path",
 "portage_confdir",
 "portage_overlay",
@@ -1336,12 +1335,11 @@ class StageBase(TargetBase, ClearBase, GenBase):
 continue
 log.warning("Not making envar for '%s', is a dict", x)
 
-if "makeopts" in self.settings:
-if isinstance(self.settings["makeopts"], str):
-self.env["MAKEOPTS"] = self.settings["makeopts"]
-else:
-# ensure makeopts is a string
-self.env["MAKEOPTS"] = ' '.join(self.settings["makeopts"])
+makeopts = []
+for flag, setting in {'j': 'jobs', 'l': 'load-average'}.items():
+if setting in self.settings:
+makeopts.append(f'-{flag}{self.settings[setting]}')
+self.env['MAKEOPTS'] = ' '.join(makeopts)
 
 log.debug('setup_environment(); env = %r', self.env)
 

diff --git a/catalyst/defaults.py b/catalyst/defaults.py
index c153fcc4..7a2fe3f3 100644
--- a/catalyst/defaults.py
+++ b/catalyst/defaults.py
@@ -13,6 +13,8 @@ valid_config_file_values = frozenset([
 "digests",
 "distdir",
 "envscript",
+"jobs",
+"load-average",
 "options",
 "port_logdir",
 "repo_basedir",

diff --git a/doc/catalyst-config.5.txt b/doc/catalyst-config.5.txt
index 7ac9a2a3..cbef6092 100644
--- a/doc/catalyst-config.5.txt
+++ b/doc/catalyst-config.5.txt
@@ -48,9 +48,9 @@ $ python3 -c 'import hashlib; 
print(hashlib.algorithms_available)'
 
 *envscript*::
 Environment script location, which allows users to set options such as
-HTTP proxies, `MAKEOPTS`, `GENTOO_MIRRORS`, or any other environment
-variables needed for building.  The envscript file sets environment
-variables using POSIX shell notation:
+HTTP proxies, `GENTOO_MIRRORS`, or any other environment variables
+needed for building.  The envscript file sets environment variables
+using POSIX shell notation:
 +
 -
 export FOO="bar"
@@ -136,6 +136,15 @@ written to the target's make.conf if it is not the default 
value of
 Other settings
 ~~
 
+*jobs*::
+Integral value passed to *emerge(1)* as the parameter to --jobs and is
+used to define *MAKEOPTS* during the target build.
+
+*load-average*::
+Floating-point value passed to *emerge(1)* as the parameter to
+--load-average and is used to define *MAKEOPTS* during the target
+build.
+
 *sharedir*::
 Catalyst runtime script location.  `/usr/share/catalyst` should work for
 most default installations.  If you are running catalyst from a Git

diff --git a/etc/catalyst.conf b/etc/catalyst.conf
index 2272cb86..81693c25 100644
--- a/etc/catalyst.conf
+++ b/etc/catalyst.conf
@@ -76,3 +76,11 @@ options = [
 # WARNING: If you use too much RAM everything will fail horribly and it is not 
our fault.
 # set size of /var/tmp/portage tmpfs in gigabytes
 # var_tmpfs_portage = 16
+
+# Integral value passed to emerge as the parameter to --jobs and is used to
+# define MAKEOPTS during the target build.
+# jobs = 4
+
+# Floating-point value passed to 

[gentoo-commits] proj/catalyst:master commit in: arch/

2020-10-21 Thread Matt Turner
commit: 3be3ac842c2a97bd6f60e133591414114c5d60e2
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Oct 21 04:33:45 2020 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Oct 21 17:58:12 2020 +
URL:https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=3be3ac84

arch/ppc.toml: add CHOST based subarches

if stage spec sets chost value, code in
catalyst/base/stagebase.py#L76 will derive subarch
value from the frontmost part of CHOST triple.

if such subarch is not defined in toml file, build will fail.

Add generic copy of base subarches defined in CHOST format.

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

 arch/ppc.toml | 11 +++
 1 file changed, 11 insertions(+)

diff --git a/arch/ppc.toml b/arch/ppc.toml
index a3db919e..870c7647 100644
--- a/arch/ppc.toml
+++ b/arch/ppc.toml
@@ -46,10 +46,18 @@ USE = [ "altivec", "ibm",]
 COMMON_FLAGS = "-O2 -pipe"
 CHOST = "powerpc64-unknown-linux-gnu"
 
+[ppc64.powerpc64]
+COMMON_FLAGS = "-O2 -pipe"
+CHOST = "powerpc64-unknown-linux-gnu"
+
 [ppc64.ppc64le]
 COMMON_FLAGS = "-O2 -pipe"
 CHOST = "powerpc64le-unknown-linux-gnu"
 
+[ppc64.powerpc64le]
+COMMON_FLAGS = "-O2 -pipe"
+CHOST = "powerpc64le-unknown-linux-gnu"
+
 [ppc.g3]
 CHOST = "powerpc-unknown-linux-gnu"
 COMMON_FLAGS = "-O2 -mcpu=G3 -mtune=G3 -pipe"
@@ -68,3 +76,6 @@ USE = [ "altivec",]
 CHOST = "powerpc-unknown-linux-gnu"
 COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe"
 
+[ppc.powerpc]
+CHOST = "powerpc-unknown-linux-gnu"
+COMMON_FLAGS = "-O2 -mcpu=powerpc -mtune=powerpc -pipe"



  1   2   >