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

2022-03-24 Thread Yixun Lan
commit: b2d09c40818cb4d2d34d7260a7591504e9bcfe84
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar 25 04:56:10 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar 25 04:57:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2d09c40

app-text/cmark: keyword 0.30.2 for ~riscv

Bug: https://bugs.gentoo.org/835970
Signed-off-by: Yixun Lan  gentoo.org>

 app-text/cmark/cmark-0.30.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-text/cmark/cmark-0.30.2.ebuild 
b/app-text/cmark/cmark-0.30.2.ebuild
index 97d0f495a45e..4c15b66535c8 100644
--- a/app-text/cmark/cmark-0.30.2.ebuild
+++ b/app-text/cmark/cmark-0.30.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/commonmark/cmark/archive/${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="BSD-2"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 ~riscv x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd/, sys-apps/systemd/files/

2022-03-24 Thread Sam James
commit: 6ce7901f80b073f8206f95aadf8e119eca7695b2
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 04:56:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 04:56:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ce7901f

sys-apps/systemd: backport RNG seed fix/improvements

Bug: https://github.com/systemd/systemd/issues/21983
Signed-off-by: Sam James  gentoo.org>

 .../systemd/files/250.4-random-seed-hash.patch |  74 +++
 sys-apps/systemd/systemd-250.4-r1.ebuild   | 521 +
 2 files changed, 595 insertions(+)

diff --git a/sys-apps/systemd/files/250.4-random-seed-hash.patch 
b/sys-apps/systemd/files/250.4-random-seed-hash.patch
new file mode 100644
index ..efaa8cdfcaac
--- /dev/null
+++ b/sys-apps/systemd/files/250.4-random-seed-hash.patch
@@ -0,0 +1,74 @@
+https://github.com/systemd/systemd-stable/commit/ed46ff2bd6ca21d83cae4a94c3ed752ad1b64cce
+
+From: "Jason A. Donenfeld" 
+Date: Mon, 3 Jan 2022 18:11:32 +0100
+Subject: [PATCH] random-seed: hash together old seed and new seed before
+ writing out file
+
+If we're consuming an on-disk seed, we usually write out a new one after
+consuming it. In that case, we might be at early boot and the randomness
+could be rather poor, and the kernel doesn't guarantee that it'll use
+the new randomness right away for us. In order to prevent the new
+entropy from getting any worse, hash together the old seed and the new
+seed, and replace the final bytes of the new seed with the hash output.
+This way, entropy strictly increases and never regresses.
+
+(cherry picked from commit da2862ef06f22fc8d31dafced6d2d6dc14f2ee0b)
+--- a/src/random-seed/random-seed.c
 b/src/random-seed/random-seed.c
+@@ -26,6 +26,7 @@
+ #include "random-util.h"
+ #include "string-util.h"
+ #include "sync-util.h"
++#include "sha256.h"
+ #include "util.h"
+ #include "xattr-util.h"
+ 
+@@ -106,9 +107,11 @@ static int run(int argc, char *argv[]) {
+ _cleanup_close_ int seed_fd = -1, random_fd = -1;
+ bool read_seed_file, write_seed_file, synchronous;
+ _cleanup_free_ void* buf = NULL;
++struct sha256_ctx hash_state;
++uint8_t hash[32];
+ size_t buf_size;
+ struct stat st;
+-ssize_t k;
++ssize_t k, l;
+ int r;
+ 
+ log_setup();
+@@ -242,6 +245,16 @@ static int run(int argc, char *argv[]) {
+ if (r < 0)
+ log_error_errno(r, "Failed to write seed to 
/dev/urandom: %m");
+ }
++/* If we're going to later write out a seed file, initialize 
a hash state with
++ * the contents of the seed file we just read, so that the 
new one can't regress
++ * in entropy. */
++if (write_seed_file) {
++sha256_init_ctx(_state);
++if (k < 0)
++k = 0;
++sha256_process_bytes(, sizeof(k), _state);
++sha256_process_bytes(buf, k, _state);
++}
+ }
+ 
+ if (write_seed_file) {
+@@ -277,6 +290,17 @@ static int run(int argc, char *argv[]) {
+"Got EOF while reading 
from /dev/urandom.");
+ }
+ 
++/* If we previously read in a seed file, then hash the new 
seed into the old one,
++ * and replace the last 32 bytes of the seed with the hash 
output, so that the
++ * new seed file can't regress in entropy. */
++if (read_seed_file) {
++sha256_process_bytes(, sizeof(k), _state);
++sha256_process_bytes(buf, k, _state);
++sha256_finish_ctx(_state, hash);
++l = MIN(k, 32);
++memcpy((uint8_t *)buf + k - l, hash, l);
++}
++
+ r = loop_write(seed_fd, buf, (size_t) k, false);
+ if (r < 0)
+ return log_error_errno(r, "Failed to write new random 
seed file: %m");

diff --git a/sys-apps/systemd/systemd-250.4-r1.ebuild 
b/sys-apps/systemd/systemd-250.4-r1.ebuild
new file mode 100644
index ..444d748cfd2b
--- /dev/null
+++ b/sys-apps/systemd/systemd-250.4-r1.ebuild
@@ -0,0 +1,521 @@
+# Copyright 2011-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
+
+# Avoid QA warnings
+TMPFILES_OPTIONAL=1
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://github.com/systemd/systemd.git;
+   inherit git-r3
+else
+   if [[ ${PV} == *.* ]]; then
+   MY_PN=systemd-stable
+   else
+   MY_PN=systemd
+   fi
+   MY_PV=${PV/_/-}
+   MY_P=${MY_PN}-${MY_PV}
+   S=${WORKDIR}/${MY_P}
+   

[gentoo-commits] proj/riscv:master commit in: dev-qt/qtwebengine/, dev-qt/qtwebengine/files/

2022-03-24 Thread Yixun Lan
commit: 20714d617ef73390f25f6fec89f148ba5c336081
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar 25 04:46:04 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar 25 04:46:04 2022 +
URL:https://gitweb.gentoo.org/proj/riscv.git/commit/?id=20714d61

dev-qt/qtwebengine: import from gentoo's official tree

original version without modification here

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 dev-qt/qtwebengine/Manifest|   3 +
 ...qtwebengine-5.15.2-disable-fatal-warnings.patch |  12 +
 .../files/qtwebengine-5.15.2-enable-ppc64.patch|  37 +++
 .../files/qtwebengine-5.15.2-extra_gn.patch|  12 +
 ...ine-5.15.2_p20210224-chromium-87-v8-icu68.patch | 192 +++
 .../qtwebengine-5.15.2_p20210224-disable-git.patch |  15 ++
 ...qtwebengine-5.15.2_p20210521-clang-libc++.patch |  10 +
 ...gine-5.15.2_p20211015-pdfium-system-lcms2.patch |  79 ++
 ...ngine-5.15.2_p20211210-sandbox-glibc-2.34.patch |  27 +++
 dev-qt/qtwebengine/metadata.xml|  34 +++
 .../qtwebengine-5.15.3_p20220310.ebuild| 265 +
 11 files changed, 686 insertions(+)

diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest
new file mode 100644
index 000..24d4c40
--- /dev/null
+++ b/dev-qt/qtwebengine/Manifest
@@ -0,0 +1,3 @@
+DIST qtwebengine-5.15.2-r1-chromium87-ppc64le.tar.xz 28784 BLAKE2B 
aa101d14446f3282fda8932cc75a249d88b79319f0886d95777292776d94ac5f4fc114c3893b2801fbba6abb14f381172bb14b15b5ffef12413db3a16e4d1ca6
 SHA512 
3324e0076eb18e2ae2248428d2730cfb3413761514b2bb57e25b8db792488098d9f7cebfa08f1a3b39b1d0a382aafed75c5ae8273918909335957921305e
+DIST qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 2930 BLAKE2B 
fca1d1406874d04eafb64bb4d8730512a6307ba44fb99d76f428ca1bd4a303758e0c3bd8f92a59f7bcf62e5b767c5a8ed239028bdb74ad7a8b62abf88d38c101
 SHA512 
61cbfbe4ff340b75ea8d356e031e932ac03fe65dd00ff897ca4b0185d1d989490daf75ffeaaabb3e92c870c11c7ff8ad2cd6372f5363b3d774b8ecca6d89
+DIST qtwebengine-5.15.3_p20220310.tar.xz 319290976 BLAKE2B 
0a0e74e7d94e59d81687ceb4d791034d43daaeef887894acedc2d2568a8c74e4b7303440518d377c16de21a546e2609fdd89ab64c0664c230df4657cec9d399c
 SHA512 
e57c7c51d0f27d116d2dc80043cb563a1dbce2357221ba87ae3c3b0e8c781e3ef09f69b8f6f20fcb7d85d596ae312b2f85ebc35ba7ee283ab30caa8f796fe2d6

diff --git 
a/dev-qt/qtwebengine/files/qtwebengine-5.15.2-disable-fatal-warnings.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2-disable-fatal-warnings.patch
new file mode 100644
index 000..b0f5f3d
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.15.2-disable-fatal-warnings.patch
@@ -0,0 +1,12 @@
+diff --git a/src/buildtools/config/common.pri 
b/src/buildtools/config/common.pri
+index cf990c79..910a88ca 100644
+--- a/src/buildtools/config/common.pri
 b/src/buildtools/config/common.pri
+@@ -26,6 +26,7 @@ gn_args += \
+ skia_use_dawn=false \
+ toolkit_views=false \
+ treat_warnings_as_errors=false \
++fatal_linker_warnings=false \
+ use_allocator_shim=false \
+ use_allocator=\"none\" \
+ use_custom_libcxx=false \

diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.15.2-enable-ppc64.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2-enable-ppc64.patch
new file mode 100644
index 000..4fb19cc
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.15.2-enable-ppc64.patch
@@ -0,0 +1,37 @@
+From 463f1234c57a36e78ff666bd55094a9d4e68f296 Mon Sep 17 00:00:00 2001
+From: q66 
+Date: Sat, 18 Jan 2020 23:52:55 +0100
+Subject: [PATCH 1/3] Enable ppc64 builds
+
+---
+ configure.pri  | 1 +
+ mkspecs/features/functions.prf | 1 +
+ 2 files changed, 2 insertions(+)
+
+diff --git a/configure.pri b/configure.pri
+index 3a144e3f8..cabe8b24a 100644
+--- a/configure.pri2021-02-24 10:45:58.0 +0100
 -  2021-03-07 21:18:43.124754796 +0100
+@@ -144,6 +144,7 @@
+ contains(QT_ARCH, "arm")|contains(QT_ARCH, "arm64"): return(true)
+ contains(QT_ARCH, "mips"): return(true)
+ contains(QT_ARCH, "mips64"): return(true)
++contains(QT_ARCH, "power64"): return(true)
+ qtLog("Architecture not supported.")
+ return(false)
+ }
+diff --git a/mkspecs/features/functions.prf b/mkspecs/features/functions.prf
+index 512e2523b..e31123654 100644
+--- a/mkspecs/features/functions.prf   2021-02-24 10:45:58.0 +0100
 -  2021-03-07 21:19:21.345036293 +0100
+@@ -107,6 +107,7 @@
+ contains(qtArch, "mips"): return(mipsel)
+ contains(qtArch, "mips64"): return(mips64el)
+ contains(qtArch, "mips64el"): return(mips64el)
++contains(qtArch, "power64"): return(ppc64)
+ return(unknown)
+ }
+ 
+-- 
+2.26.0
+

diff --git a/dev-qt/qtwebengine/files/qtwebengine-5.15.2-extra_gn.patch 
b/dev-qt/qtwebengine/files/qtwebengine-5.15.2-extra_gn.patch
new file mode 100644
index 000..0488122
--- /dev/null
+++ b/dev-qt/qtwebengine/files/qtwebengine-5.15.2-extra_gn.patch
@@ -0,0 +1,12 

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

2022-03-24 Thread Yixun Lan
commit: 45541db3ba10d2245663953add1fe08402e621df
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar 25 04:47:21 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar 25 04:47:21 2022 +
URL:https://gitweb.gentoo.org/proj/riscv.git/commit/?id=45541db3

dev-qt/qtwebengine: add riscv support

take patches from archlinux's riscv repo
https://github.com/felixonmars/archriscv-packages/qt5-webengine/

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 dev-qt/qtwebengine/Manifest| 1 +
 dev-qt/qtwebengine/qtwebengine-5.15.3_p20220310.ebuild | 5 -
 2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest
index 24d4c40..f69e1d9 100644
--- a/dev-qt/qtwebengine/Manifest
+++ b/dev-qt/qtwebengine/Manifest
@@ -1,3 +1,4 @@
 DIST qtwebengine-5.15.2-r1-chromium87-ppc64le.tar.xz 28784 BLAKE2B 
aa101d14446f3282fda8932cc75a249d88b79319f0886d95777292776d94ac5f4fc114c3893b2801fbba6abb14f381172bb14b15b5ffef12413db3a16e4d1ca6
 SHA512 
3324e0076eb18e2ae2248428d2730cfb3413761514b2bb57e25b8db792488098d9f7cebfa08f1a3b39b1d0a382aafed75c5ae8273918909335957921305e
 DIST qtwebengine-5.15.2_p20211019-jumbo-build.patch.bz2 2930 BLAKE2B 
fca1d1406874d04eafb64bb4d8730512a6307ba44fb99d76f428ca1bd4a303758e0c3bd8f92a59f7bcf62e5b767c5a8ed239028bdb74ad7a8b62abf88d38c101
 SHA512 
61cbfbe4ff340b75ea8d356e031e932ac03fe65dd00ff897ca4b0185d1d989490daf75ffeaaabb3e92c870c11c7ff8ad2cd6372f5363b3d774b8ecca6d89
+DIST qtwebengine-5.15.3-riscv-0.tar.xz 189688 BLAKE2B 
987b09aa79d1bb425e23a9d4573d46dc1f470b7abf169a446317b68b42a131fa9fb3f1839d0589858a91949759ec1909b0488deeb40863a362fd28307c7b5bb0
 SHA512 
1e6aaa13118eaba839e82482f30ba14843bcd67bc4c42a38bf09e1f89bb53175dedcf74ddbd68ea9821dc36645f23de3e63211de2a82962ae6ada49f520bc4f6
 DIST qtwebengine-5.15.3_p20220310.tar.xz 319290976 BLAKE2B 
0a0e74e7d94e59d81687ceb4d791034d43daaeef887894acedc2d2568a8c74e4b7303440518d377c16de21a546e2609fdd89ab64c0664c230df4657cec9d399c
 SHA512 
e57c7c51d0f27d116d2dc80043cb563a1dbce2357221ba87ae3c3b0e8c781e3ef09f69b8f6f20fcb7d85d596ae312b2f85ebc35ba7ee283ab30caa8f796fe2d6

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220310.ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220310.ebuild
index 8c44a49..507c247 100644
--- a/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220310.ebuild
+++ b/dev-qt/qtwebengine/qtwebengine-5.15.3_p20220310.ebuild
@@ -28,6 +28,7 @@ fi
 
 # ppc64 patchset based on https://github.com/chromium-ppc64le releases
 SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${PN}-5.15.2_p20211019-jumbo-build.patch.bz2
+   
https://dev.gentoo.org/~dlan/distfiles/${CATEGORY}/${PN}/${PN}-5.15.3-riscv-0.tar.xz
ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-r1-chromium87-ppc64le.tar.xz
 )"
 
 IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio 
+system-ffmpeg +system-icu widgets"
@@ -107,6 +108,8 @@ PATCHES=(
"${FILESDIR}/${PN}-5.15.2_p20210224-disable-git.patch" # downstream 
snapshot fix
"${FILESDIR}/${PN}-5.15.2_p20211015-pdfium-system-lcms2.patch" # by 
Debian, QTBUG-61746
"${WORKDIR}/${PN}-5.15.2_p20211019-jumbo-build.patch" # bug 813957
+   "${WORKDIR}/${PN}-5.15.3-riscv-general.patch"
+   "${WORKDIR}/${PN}-5.15.3-riscv-v8.patch"
 )
 
 qtwebengine_check-reqs() {
@@ -126,7 +129,7 @@ qtwebengine_check-reqs() {
# Estimate the amount of RAM required
# Multiplier is *10 because Bash doesn't do floating point maths.
# Let's crudely assume ~2GB per compiler job for GCC.
-   local multiplier=20
+   local multiplier=8
 
# And call it ~1.5GB for Clang.
if tc-is-clang ; then



[gentoo-commits] proj/riscv:master commit in: sys-kernel/sifive-sources/

2022-03-24 Thread Yixun Lan
commit: c30f8d9e7f4fa4b950d907e15afc4f999832997e
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar 25 04:02:14 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar 25 04:02:14 2022 +
URL:https://gitweb.gentoo.org/proj/riscv.git/commit/?id=c30f8d9e

sys-kernel/sifive-sources: drop old

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 sys-kernel/sifive-sources/Manifest |  9 --
 .../sifive-sources/sifive-sources-5.15.23.ebuild   | 35 --
 .../sifive-sources/sifive-sources-5.16.14.ebuild   | 34 -
 3 files changed, 78 deletions(-)

diff --git a/sys-kernel/sifive-sources/Manifest 
b/sys-kernel/sifive-sources/Manifest
index f628c7e..1e07859 100644
--- a/sys-kernel/sifive-sources/Manifest
+++ b/sys-kernel/sifive-sources/Manifest
@@ -1,19 +1,10 @@
-DIST genpatches-5.15-25.base.tar.xz 1018612 BLAKE2B 
493b8c695f2bfcdfa36712143ffad423883273b48e0ae45db226d9e12b809764538716fa8dc257d0cb211f9db50f6af437cc8d19dde0e8af5a10accf85a3b4be
 SHA512 
f268ace309d283079e0f491a3a77de56d4a18fa31bba643be4d215f931baf6a251d1e28c358d4b606b0ea15fc34e71f6b13901f5eb95f18ebad79f384bb6e5a9
-DIST genpatches-5.15-25.experimental.tar.xz 5420 BLAKE2B 
44293344502125562bbda7ee9bedc05141a9b78ffb8fc3178e857a1a638f6943abe9f235679e858646d69e3a470cd047845efd2703f187aade8f2197f4ce
 SHA512 
4a229d0ad358732af9bd09eb93f6e80aad3a20c0bc64bb083a1e64472fcff89db761a396c9ecaf03b6e52976fb61d96db39023120b6fe463222767d0f2230059
-DIST genpatches-5.15-25.extras.tar.xz 3876 BLAKE2B 
17a20913e907e6b6a87afdd7775b7f9811bc3eed5374b957244242fdbc655519606063656bb8e5f51ded3168f73e99832d0cdf66e830811dc1e5ea0c0b8a2582
 SHA512 
1b8f4424996351a70c26f5a90c2490078c1a8daa80da578e2e3b3d1c4be6a4474d40cbd2e6fae8b1f1b9389cdaf2257e01a14ac6c2f7ece8a883d74a686e
-DIST genpatches-5.16-15.base.tar.xz 709572 BLAKE2B 
bb6e5656cee01af674e30c5dbf66d6d538122161c69a21951f5b514c9d372a7ba40d653ee8c25358875fe4feaaea272cc849b6d07ede548d912b8672531e2815
 SHA512 
ad2daebb4d7602c8426b9990c9a2148715247917bf32a0310676b02f38f82b306b4469660836718747705074c8616fc2b083e9c6fdcb982a94be3bb06c7c05a4
-DIST genpatches-5.16-15.experimental.tar.xz 5424 BLAKE2B 
8ab77c5903f502534ad472f9387bc3c466911b633d2264dff0bf622ba86f55f5e606fc328a8de760857f2ef1c8d0a7b611608d65db502a6d94ed1c01cd5b85ab
 SHA512 
24b4a46fc694e05aa25e199f97c4b88428c31ac94563f6e145f8d6848b0447c9548e03c958c823add6457d6eaaaebb4c9ced132740a9685a620d1b61f7ae9005
-DIST genpatches-5.16-15.extras.tar.xz 3800 BLAKE2B 
b4142537d04eed518b9a7e827879b7e427d8c0a06710dd72f9f84e1990db72dd48382c67a9e0cf24f9b104b8cddf4d28739fd93e705b97952e364b3693ff1671
 SHA512 
773543f9989255ce2fb3f6f32aa546f2109eb52e2e816572e027a8428f93bb9c72baadc59ee3019edd03fc97339d30c34c2d8b50b2e1d0e5383b1633b2c0e169
 DIST genpatches-5.16-16.base.tar.xz 747884 BLAKE2B 
753592e7d39dc64cd8567df14449bdc7bcea37a2d7ff6b508d6f5a22053bdb7e1a80f3ec0a2aea7560191a239bc93d94db4618e3d4e43b4a2537b2cbf92aab3a
 SHA512 
8f184d6e708f7a8828fe0e7c9ff249293158047fb38bd8ebdc2eeb76388bfb370f0ea832ce19352e3180d6bae624fed97bcc6e3abc3492fa5e4a0a55159a4ba8
 DIST genpatches-5.16-16.experimental.tar.xz 5420 BLAKE2B 
285aa3d5dc2a968372f641a7c660c17841dae22837788b5923405dab40a8d9fc0029d655468fbc3c783c19d99ccb11fd89f8a80281332d1fe932d74342fa6c78
 SHA512 
2576b279b4e429e3fbb4465ce3a6d7c47c81ee6f7882dce428f4d626e73f8f28c58662a60c0313aa20fe185fad71019fcb6bb10e3954a3074dc6a4043ca9abac
 DIST genpatches-5.16-16.extras.tar.xz 3800 BLAKE2B 
05b8ec6533b54f39ebb66402d88dba619601f9edf73a769f765c3acbccf88513fb8a17dfe58e490762013543fcc980e2ca285f23d6c0a71cf871941d523bcc76
 SHA512 
e0acbf026bbe216bbe3856b7f99fd391b7a2a856ab2e6cf7b3fbc91811a8c1d622dec2d2e2ced5790d388fb17dadbd086a074f814af59b69c7287024c604bb50
 DIST genpatches-5.17-1.base.tar.xz 7588 BLAKE2B 
d0046364d4f26368f627d920552e1a67c6b5f25cf5b101ba6b04bf395482d3341deb65d2207159faab9028abc3a8e615746474072dec34d38732296a77d893f1
 SHA512 
b4f355f9006457374b212d5b79442d0d7fd371064943947ed2b64f0b1fd6357ac7e367249e11827444ea73f0ef1f015a7741d4ace38ae1d68fdcc67f00af0fd2
 DIST genpatches-5.17-1.experimental.tar.xz 5404 BLAKE2B 
a28f67bbea63d27ac7a79aeccb025992d21ff821ce6c6eca8db5f089565a540fafe9cb7c3066572a250d0f05bc84ed2211e2f893abaf44ea4aea5f7cea2c2416
 SHA512 
d7c6845962734ae4a9700be49f5bf3c70053ee273bff272256ea592c5ac47499903ad5b72368a258ed64a22bd12d87b6f1552a22cebe3685f98243670be11004
 DIST genpatches-5.17-1.extras.tar.xz 3800 BLAKE2B 
7c7c955dbbc2aa6fe8b39f84c993f76aa117b5f218a2de9ff15a165c2d15d253a5adca5c979e5fd887d9b76cbfd2c9c70cc6f2d6d493fad011337e7a941cb498
 SHA512 
c47a545e6ac510e87f8239afc5b23aefb2956de3446a0e16b79396fb1c335456638101fd615446220987278bc1f68d1154958018793056699270d2250731c47d
-DIST linux-5.15.tar.xz 121913744 BLAKE2B 
3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b83a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83
 SHA512 

[gentoo-commits] proj/riscv:master commit in: sys-kernel/sifive-sources/

2022-03-24 Thread Yixun Lan
commit: b21f1b03ab7d8b13ac92fc1a1486372d4f8a10be
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Mar 25 04:01:27 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Mar 25 04:01:27 2022 +
URL:https://gitweb.gentoo.org/proj/riscv.git/commit/?id=b21f1b03

sys-kernel/sifive-sources: version bump, 5.17.0

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Yixun Lan  gentoo.org>

 sys-kernel/sifive-sources/Manifest |  5 
 .../sifive-sources/sifive-sources-5.17.0.ebuild| 34 ++
 2 files changed, 39 insertions(+)

diff --git a/sys-kernel/sifive-sources/Manifest 
b/sys-kernel/sifive-sources/Manifest
index 7ceb3f0..f628c7e 100644
--- a/sys-kernel/sifive-sources/Manifest
+++ b/sys-kernel/sifive-sources/Manifest
@@ -7,8 +7,13 @@ DIST genpatches-5.16-15.extras.tar.xz 3800 BLAKE2B 
b4142537d04eed518b9a7e827879b
 DIST genpatches-5.16-16.base.tar.xz 747884 BLAKE2B 
753592e7d39dc64cd8567df14449bdc7bcea37a2d7ff6b508d6f5a22053bdb7e1a80f3ec0a2aea7560191a239bc93d94db4618e3d4e43b4a2537b2cbf92aab3a
 SHA512 
8f184d6e708f7a8828fe0e7c9ff249293158047fb38bd8ebdc2eeb76388bfb370f0ea832ce19352e3180d6bae624fed97bcc6e3abc3492fa5e4a0a55159a4ba8
 DIST genpatches-5.16-16.experimental.tar.xz 5420 BLAKE2B 
285aa3d5dc2a968372f641a7c660c17841dae22837788b5923405dab40a8d9fc0029d655468fbc3c783c19d99ccb11fd89f8a80281332d1fe932d74342fa6c78
 SHA512 
2576b279b4e429e3fbb4465ce3a6d7c47c81ee6f7882dce428f4d626e73f8f28c58662a60c0313aa20fe185fad71019fcb6bb10e3954a3074dc6a4043ca9abac
 DIST genpatches-5.16-16.extras.tar.xz 3800 BLAKE2B 
05b8ec6533b54f39ebb66402d88dba619601f9edf73a769f765c3acbccf88513fb8a17dfe58e490762013543fcc980e2ca285f23d6c0a71cf871941d523bcc76
 SHA512 
e0acbf026bbe216bbe3856b7f99fd391b7a2a856ab2e6cf7b3fbc91811a8c1d622dec2d2e2ced5790d388fb17dadbd086a074f814af59b69c7287024c604bb50
+DIST genpatches-5.17-1.base.tar.xz 7588 BLAKE2B 
d0046364d4f26368f627d920552e1a67c6b5f25cf5b101ba6b04bf395482d3341deb65d2207159faab9028abc3a8e615746474072dec34d38732296a77d893f1
 SHA512 
b4f355f9006457374b212d5b79442d0d7fd371064943947ed2b64f0b1fd6357ac7e367249e11827444ea73f0ef1f015a7741d4ace38ae1d68fdcc67f00af0fd2
+DIST genpatches-5.17-1.experimental.tar.xz 5404 BLAKE2B 
a28f67bbea63d27ac7a79aeccb025992d21ff821ce6c6eca8db5f089565a540fafe9cb7c3066572a250d0f05bc84ed2211e2f893abaf44ea4aea5f7cea2c2416
 SHA512 
d7c6845962734ae4a9700be49f5bf3c70053ee273bff272256ea592c5ac47499903ad5b72368a258ed64a22bd12d87b6f1552a22cebe3685f98243670be11004
+DIST genpatches-5.17-1.extras.tar.xz 3800 BLAKE2B 
7c7c955dbbc2aa6fe8b39f84c993f76aa117b5f218a2de9ff15a165c2d15d253a5adca5c979e5fd887d9b76cbfd2c9c70cc6f2d6d493fad011337e7a941cb498
 SHA512 
c47a545e6ac510e87f8239afc5b23aefb2956de3446a0e16b79396fb1c335456638101fd615446220987278bc1f68d1154958018793056699270d2250731c47d
 DIST linux-5.15.tar.xz 121913744 BLAKE2B 
3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b83a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83
 SHA512 
d25ad40b5bcd6a4c6042fd0fd84e196e7a58024734c3e9a484fd0d5d54a0c1d87db8a3c784eff55e43b6f021709dc685eb0efa18d2aec327e4f88a79f405705a
 DIST linux-5.16.tar.xz 123114100 BLAKE2B 
07a90cc640ff89e1359c06cee8c38abd33e51f9b9a89833e31a1d2750526fda4a59e8884db3c1ea63df0a37f0d3de6b5a922b014b7313d8abce20d90ac08adcb
 SHA512 
7a257dd576bc8493595ec7d6f3c9cb6e22c772a8b2dbe735d2485c4f5c56e26a08695546e7e0f1f1cd04a533f25e829361958d4da0b98bf0ba8094dd57a85aaf
+DIST linux-5.17.tar.xz 128399340 BLAKE2B 
82dc4a45cc25c781ac67aa6ed1e4c369544154960f41c4634d47621f381159687a227054976d078524cda28884d395a15f7542fe44ca74ce98ca6ff54a81d6d0
 SHA512 
89f0a7ca69d20a539d4b612a7028a30a5e98b402e4b6b88516f14237e5da4b626d7929eab8b40fccc90766e8f3bae87e9858a19077ffad20d8204acf18794f5b
 DIST sifive-patches-5.15.23-0.patch.xz 4384 BLAKE2B 
ddef97f48ca464eae336a6645cbea675da769945600c28c36e722ef30a2b2071e723d68dac8a2184979670c46d5c1a18447134b9b8fa836bdc3a1151f23d64dd
 SHA512 
884a7e1d004a0f6e4700ffe4cd173ed7a57330a6c2a76d5a46bdbf4ebdb1c53799f9f690ddec973098bb7487ebbd9e6b74c06dc3c8b8ad3706033399db87a697
 DIST sifive-patches-5.16.14-0.patch.xz 2664 BLAKE2B 
597d0fb7ce7acfb23512f606486488c5f00fd01d5e97d9c64c0c2c30b3750cd86bc3aa546f0c0cbd009fdcf4951c8830b4207dc65609a4ed7a822dddc9f9
 SHA512 
611d48e59f78dfad2800870a80cb7ec3a6a55ce7378288200dca9d0490ade273282c4576b98e44f9bbfefb3b6d431028a2b1fee76234d669a733f85b0721a397
 DIST sifive-patches-5.16.15-0.patch.xz 2664 BLAKE2B 
597d0fb7ce7acfb23512f606486488c5f00fd01d5e97d9c64c0c2c30b3750cd86bc3aa546f0c0cbd009fdcf4951c8830b4207dc65609a4ed7a822dddc9f9
 SHA512 
611d48e59f78dfad2800870a80cb7ec3a6a55ce7378288200dca9d0490ade273282c4576b98e44f9bbfefb3b6d431028a2b1fee76234d669a733f85b0721a397
+DIST sifive-patches-5.17.0-0.patch.xz 1516 BLAKE2B 
7141ff5acecd0f40b8a50f64cf720e745321a72c642ad23660949725f7a1a01300a811026875b8b6020784915f9661f65befbbfb83c172d679963331ef02c633
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: app-containers/crun/

2022-03-24 Thread Sam James
commit: d2ffd834357d3fe94e6ad3af078a988ba5afa039
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 04:23:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 04:23:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2ffd834

app-containers/crun: Stabilize 1.3 arm64, #835974

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

 app-containers/crun/crun-1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-containers/crun/crun-1.3.ebuild 
b/app-containers/crun/crun-1.3.ebuild
index 927cc63d4181..fb5ec251832d 100644
--- a/app-containers/crun/crun-1.3.ebuild
+++ b/app-containers/crun/crun-1.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/containers/${PN}/releases/download/${PV}/${P}.tar.gz
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64"
+KEYWORDS="amd64 ~arm arm64 ppc64"
 IUSE="+bpf +caps criu +seccomp systemd static-libs"
 
 DEPEND="



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

2022-03-24 Thread Sam James
commit: 67fbbfbff3a01e1f30867a02201f8b4a3e8c4831
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 04:23:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 04:23:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67fbbfbf

dev-python/namespace-google: Stabilize 1-r1 arm64, #835974

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

 dev-python/namespace-google/namespace-google-1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/namespace-google/namespace-google-1-r1.ebuild 
b/dev-python/namespace-google/namespace-google-1-r1.ebuild
index c7361b9a2cdd..285076609031 100644
--- a/dev-python/namespace-google/namespace-google-1-r1.ebuild
+++ b/dev-python/namespace-google/namespace-google-1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -12,7 +12,7 @@ SRC_URI=""
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE=""
 
 RDEPEND="dev-python/setuptools[${PYTHON_USEDEP}]



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

2022-03-24 Thread Sam James
commit: bbb259ae5daf0bc7518368f73c3b5e95a5e0e1c8
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 04:23:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 04:23:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbb259ae

sys-process/criu: Stabilize 3.15-r3 arm64, #835974

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

 sys-process/criu/criu-3.15-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/criu/criu-3.15-r3.ebuild 
b/sys-process/criu/criu-3.15-r3.ebuild
index a16d88017474..196819060d80 100644
--- a/sys-process/criu/criu-3.15-r3.ebuild
+++ b/sys-process/criu/criu-3.15-r3.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://download.openvz.org/criu/${P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc64"
+KEYWORDS="amd64 ~arm arm64 ppc64"
 IUSE="doc selinux setproctitle static-libs"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2022-03-24 Thread Sam James
commit: 2ee4288564fe371d2a4d0c16cb2d2513dbd6649b
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 04:23:28 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 04:23:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ee42885

dev-python/protobuf-python: Stabilize 3.19.1 arm64, #835974

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

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

diff --git a/dev-python/protobuf-python/protobuf-python-3.19.1.ebuild 
b/dev-python/protobuf-python/protobuf-python-3.19.1.ebuild
index b940f8d7436e..3e158f4d10aa 100644
--- a/dev-python/protobuf-python/protobuf-python-3.19.1.ebuild
+++ b/dev-python/protobuf-python/protobuf-python-3.19.1.ebuild
@@ -23,7 +23,7 @@ HOMEPAGE="https://developers.google.com/protocol-buffers/ 
https://github.com/pro
 
 LICENSE="BSD"
 SLOT="0/30"
-KEYWORDS="~alpha amd64 arm ~arm64 -hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 -hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos"
 
 BDEPEND="${PYTHON_DEPS}
~dev-libs/protobuf-${PV}



[gentoo-commits] repo/gentoo:master commit in: app-containers/crun/

2022-03-24 Thread Sam James
commit: 1de0ae5303425702cc8b7cbdaa6a26e52b95911b
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 04:03:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 04:03:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de0ae53

app-containers/crun: add 1.4.4

Bug: https://bugs.gentoo.org/835976
Signed-off-by: Sam James  gentoo.org>

 app-containers/crun/Manifest  |  1 +
 app-containers/crun/crun-1.4.4.ebuild | 62 +++
 2 files changed, 63 insertions(+)

diff --git a/app-containers/crun/Manifest b/app-containers/crun/Manifest
index 80ca148cff08..eba2b6fea90f 100644
--- a/app-containers/crun/Manifest
+++ b/app-containers/crun/Manifest
@@ -1,2 +1,3 @@
 DIST crun-1.3.tar.gz 1889283 BLAKE2B 
d7e7f676ca5db8322b9da2110c9a9e8eb11b13b5e9f1432ccc6ef12bf6ae7db3a28e3227fac86091589a215394ec577e91ccbffec532dabf44be746cb8a5d404
 SHA512 
9600bdacf5fd2defa542230b6e134920eb80e9d4c49598167b9d58887719765c174f1ac8559c0092dc1b5435274124e0b29c3d0830df86d1cfd690d67c746016
 DIST crun-1.4.2.tar.gz 1956517 BLAKE2B 
c5db3396902c33568c3f9a490c57f8781703018f228f07bb17b1ccaa5c2ab903eda76e50d46fa3be10e440e6a0c3f791744f05d7677c71e2510673077d0acbef
 SHA512 
cc7b57ed945cb36a36cf2ceab57349f836a07164ef31e0cec8bbddc4451a5757e2a0b92bc553b8994a236d7869cfdf229a5dd5e5a0d7f139f8c2a8df5c151d3a
+DIST crun-1.4.4.tar.gz 1962130 BLAKE2B 
59681ba7af5735b46d27b568b2f9c36b72dd20d33d1eda4c77284eaeb3a771746e5be26fac28284039f857a4853c3c8decbc9a83bb62004e4ae2da79f1470d31
 SHA512 
fe64f56bf0f1ed9fed4df4926dd57b0966863208726ad00d8b96dfb9440833f6f88c4223875a6b01fe350456bc2c1021d14efa32795762037e394737daa4bde7

diff --git a/app-containers/crun/crun-1.4.4.ebuild 
b/app-containers/crun/crun-1.4.4.ebuild
new file mode 100644
index ..23faad06c21f
--- /dev/null
+++ b/app-containers/crun/crun-1.4.4.ebuild
@@ -0,0 +1,62 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit python-any-r1
+
+DESCRIPTION="A fast and low-memory footprint OCI Container Runtime fully 
written in C"
+HOMEPAGE="https://github.com/containers/crun;
+SRC_URI="https://github.com/containers/${PN}/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64"
+IUSE="+bpf +caps criu +seccomp systemd static-libs"
+
+DEPEND="
+   dev-libs/yajl:=
+   sys-kernel/linux-headers
+   caps? ( sys-libs/libcap )
+   criu? ( >=sys-process/criu-3.15 )
+   seccomp? ( sys-libs/libseccomp )
+   systemd? ( sys-apps/systemd:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+   ${PYTHON_DEPS}
+   virtual/pkgconfig
+"
+
+# the crun test suite is comprehensive to the extent that tests will fail
+# within a sandbox environment, due to the nature of the privileges
+# required to create linux "containers".
+RESTRICT="test"
+
+src_configure() {
+   local myeconfargs=(
+   $(use_enable bpf)
+   $(use_enable caps)
+   $(use_enable criu)
+   $(use_enable seccomp)
+   $(use_enable systemd)
+   $(usex static-libs '--enable-shared --enable-static' 
'--enable-shared --disable-static' '' '')
+   )
+
+   # Need https://github.com/containers/libocispec/pull/107 to be merged & 
land in
+   # a crun release that syncs up w/ latest version, then can drop 
CONFIG_SHELL
+   CONFIG_SHELL="${BROOT}/bin/bash" econf "${myeconfargs[@]}"
+}
+
+src_compile() {
+   emake -C libocispec
+   emake crun
+}
+
+src_install() {
+   emake "DESTDIR=${D}" install-exec
+   doman crun.1
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: app-containers/podman/

2022-03-24 Thread Zac Medico
commit: e1cda8d006a810818e98d7bbe64d3240bf0a67f3
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 04:00:08 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 04:01:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1cda8d0

app-containers/podman: prefer crun over runc

Closes: https://bugs.gentoo.org/763267
Signed-off-by: Zac Medico  gentoo.org>

 app-containers/podman/podman-4.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-containers/podman/podman-4.0.2.ebuild 
b/app-containers/podman/podman-4.0.2.ebuild
index e565620c034c..d5e19cc828de 100644
--- a/app-containers/podman/podman-4.0.2.ebuild
+++ b/app-containers/podman/podman-4.0.2.ebuild
@@ -21,7 +21,7 @@ RESTRICT+=" test"
 COMMON_DEPEND="
app-crypt/gpgme:=
>=app-containers/conmon-2.0.0
-   || ( >=app-containers/runc-1.0.0_rc6 app-containers/crun )
+   || ( app-containers/crun >=app-containers/runc-1.0.0_rc6 )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
>=net-misc/cni-plugins-0.8.6



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

2022-03-24 Thread Sam James
commit: 99ec29149b8f511a4e99586d14ed6f11cdc5ed8d
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 03:49:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 03:54:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99ec2914

sys-apps/hwloc: fixup nvidia dependencies

- USE=tools isn't needed for nvidia-drivers (thanks Ionen!)
- addpredict for nvidia to avoid sandbox violation
- Add additional USE=video_cards_nvidia deps (only for this case, not in 
general)

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

 .../{hwloc-2.7.1.ebuild => hwloc-2.7.1-r1.ebuild}  | 25 ++
 1 file changed, 16 insertions(+), 9 deletions(-)

diff --git a/sys-apps/hwloc/hwloc-2.7.1.ebuild 
b/sys-apps/hwloc/hwloc-2.7.1-r1.ebuild
similarity index 81%
rename from sys-apps/hwloc/hwloc-2.7.1.ebuild
rename to sys-apps/hwloc/hwloc-2.7.1-r1.ebuild
index 7b677fb68d16..132b2e9fc5e2 100644
--- a/sys-apps/hwloc/hwloc-2.7.1.ebuild
+++ b/sys-apps/hwloc/hwloc-2.7.1-r1.ebuild
@@ -15,9 +15,10 @@ SLOT="0/15"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="cairo +cpuid cuda debug gl nvml +pci static-libs svg udev xml X 
video_cards_nvidia"
 
-# opencl support dropped with x11-drivers/ati-drivers being removed (bug 
#582406).
-# Anyone with hardware is welcome to step up and help test to get it re-added.
-RDEPEND=">=sys-libs/ncurses-5.9-r3:0[${MULTILIB_USEDEP}]
+# opencl: opencl support dropped with x11-drivers/ati-drivers being removed 
(bug #582406).
+# anyone with hardware is welcome to step up and help test to get it 
re-added.
+# video-cards_nvidia: libXext/libX11 deps are only here, see HWLOC_GL_REQUIRES 
usage in config/hwloc.m4
+RDEPEND=">=sys-libs/ncurses-5.9-r3:=[${MULTILIB_USEDEP}]
cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,${MULTILIB_USEDEP}] )
cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= )
nvml? ( x11-drivers/nvidia-drivers[${MULTILIB_USEDEP}] )
@@ -25,15 +26,17 @@ RDEPEND=">=sys-libs/ncurses-5.9-r3:0[${MULTILIB_USEDEP}]
>=sys-apps/pciutils-3.3.0-r2[${MULTILIB_USEDEP}]
>=x11-libs/libpciaccess-0.13.1-r1[${MULTILIB_USEDEP}]
)
-   udev? ( virtual/libudev )
+   udev? ( virtual/libudev:= )
xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )
-   video_cards_nvidia? ( x11-drivers/nvidia-drivers[static-libs,tools] )"
+   video_cards_nvidia? (
+   x11-drivers/nvidia-drivers[static-libs]
+   x11-libs/libXext
+   x11-libs/libX11
+   )"
 DEPEND="${RDEPEND}"
 # 2.69-r5 for --runstatedir
-BDEPEND="
-   >=sys-devel/autoconf-2.69-r5
-   virtual/pkgconfig
-"
+BDEPEND=">=sys-devel/autoconf-2.69-r5
+   virtual/pkgconfig"
 
 PATCHES=( "${FILESDIR}/${PN}-1.8.1-gl.patch" )
 
@@ -49,6 +52,10 @@ multilib_src_configure() {
# bug #393467
export HWLOC_PKG_CONFIG="$(tc-getPKG_CONFIG)"
 
+   if use video_cards_nvidia ; then
+   addpredict /dev/nvidiactl
+   fi
+
if use cuda ; then
append-cflags "-I${ESYSROOT}/opt/cuda/include"
append-cppflags "-I${ESYSROOT}/opt/cuda/include"



[gentoo-commits] repo/gentoo:master commit in: app-containers/podman/

2022-03-24 Thread Zac Medico
commit: fe26469c2047f321138e5dc1f475b7fa786d37ae
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 03:52:51 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 03:53:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe26469c

Revert "app-containers/podman: add cgroup-hybrid USE flag"

This reverts commit 869ab111563d24bc8186b3dd17328cd8554b3442
since crun has missing arm64 and riscv keywords.

Bug: https://bugs.gentoo.org/763267
Signed-off-by: Zac Medico  gentoo.org>

 app-containers/podman/metadata.xml| 3 ---
 app-containers/podman/podman-3.4.4.ebuild | 5 ++---
 app-containers/podman/podman-4.0.2.ebuild | 5 ++---
 3 files changed, 4 insertions(+), 9 deletions(-)

diff --git a/app-containers/podman/metadata.xml 
b/app-containers/podman/metadata.xml
index 11d7dc7603dc..844d5c0dcd45 100644
--- a/app-containers/podman/metadata.xml
+++ b/app-containers/podman/metadata.xml
@@ -22,9 +22,6 @@
Enables dependencies for the "btrfs" graph driver, 
including
necessary kernel flags.

-   
-   Default to hybrid (legacy) cgroup hierarchy instead of 
unified (modern).
-   

Enables fuse dependencies (fuse-overlayfs is especially 
useful
for rootless mode).

diff --git a/app-containers/podman/podman-3.4.4.ebuild 
b/app-containers/podman/podman-3.4.4.ebuild
index d9c90056d70c..f6e9ac8b1006 100644
--- a/app-containers/podman/podman-3.4.4.ebuild
+++ b/app-containers/podman/podman-3.4.4.ebuild
@@ -15,14 +15,13 @@ LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
 KEYWORDS="amd64 arm64 ~ppc64 ~riscv"
-IUSE="apparmor btrfs +cgroup-hybrid +fuse +rootless selinux"
+IUSE="apparmor btrfs +fuse +rootless selinux"
 RESTRICT+=" test"
 
 COMMON_DEPEND="
app-crypt/gpgme:=
>=app-containers/conmon-2.0.0
-   cgroup-hybrid? ( >=app-containers/runc-1.0.0_rc6  )
-   !cgroup-hybrid? ( app-containers/crun )
+   || ( >=app-containers/runc-1.0.0_rc6 app-containers/crun )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
>=net-misc/cni-plugins-0.8.6

diff --git a/app-containers/podman/podman-4.0.2.ebuild 
b/app-containers/podman/podman-4.0.2.ebuild
index 62f957b6252a..e565620c034c 100644
--- a/app-containers/podman/podman-4.0.2.ebuild
+++ b/app-containers/podman/podman-4.0.2.ebuild
@@ -15,14 +15,13 @@ LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
-IUSE="apparmor btrfs cgroup-hybrid +fuse +init +rootless selinux"
+IUSE="apparmor btrfs +fuse +init +rootless selinux"
 RESTRICT+=" test"
 
 COMMON_DEPEND="
app-crypt/gpgme:=
>=app-containers/conmon-2.0.0
-   cgroup-hybrid? ( >=app-containers/runc-1.0.0_rc6  )
-   !cgroup-hybrid? ( app-containers/crun )
+   || ( >=app-containers/runc-1.0.0_rc6 app-containers/crun )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
>=net-misc/cni-plugins-0.8.6



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

2022-03-24 Thread Zac Medico
commit: 91a277f56ef8f48d9a2c8f5e399930964da28cac
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 03:39:07 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 03:45:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91a277f5

app-text/calibre: use qt5_get_bindir

Closes: https://bugs.gentoo.org/835923
Signed-off-by: Zac Medico  gentoo.org>

 app-text/calibre/calibre-5.16.1-r1.ebuild | 6 +++---
 app-text/calibre/calibre-5.39.1.ebuild| 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/app-text/calibre/calibre-5.16.1-r1.ebuild 
b/app-text/calibre/calibre-5.16.1-r1.ebuild
index 32b84b85f211..f0ce3cbefb85 100644
--- a/app-text/calibre/calibre-5.16.1-r1.ebuild
+++ b/app-text/calibre/calibre-5.16.1-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python3_{8..9} )
 PYTHON_REQ_USE="ipv6(+),sqlite,ssl"
 
-inherit bash-completion-r1 desktop toolchain-funcs python-single-r1 xdg-utils
+inherit bash-completion-r1 desktop toolchain-funcs python-single-r1 
qmake-utils xdg-utils
 
 DESCRIPTION="Ebook management application"
 HOMEPAGE="https://calibre-ebook.com/;
@@ -176,7 +176,7 @@ src_install() {
cp "${T}"/bin/{kbuildsycoca,update-mime-database} || die
chmod +x "${T}"/bin/{kbuildsycoca,update-mime-database} || die
 
-   export QMAKE="${EPREFIX}/usr/$(get_libdir)/qt5/bin/qmake"
+   export QMAKE="$(qt5_get_bindir)/qmake"
 
# Unset DISPLAY in order to prevent xdg-mime from triggering a sandbox
# violation with kbuildsycoca as in bug #287067, comment #13.
@@ -207,7 +207,7 @@ src_install() {
 
addpredict /dev/dri #665310
 
-   PATH=${T}/bin:${PATH} PYTHONPATH=${S}/src${PYTHONPATH:+:}${PYTHONPATH} \
+   PATH=${T}/bin:$(qt5_get_bindir):${PATH} 
PYTHONPATH=${S}/src${PYTHONPATH:+:}${PYTHONPATH} \
"${PYTHON}" setup.py install \
--root="${D}" \
--prefix="${EPREFIX}/usr" \

diff --git a/app-text/calibre/calibre-5.39.1.ebuild 
b/app-text/calibre/calibre-5.39.1.ebuild
index a9f64cfe2e57..ec684bf96296 100644
--- a/app-text/calibre/calibre-5.39.1.ebuild
+++ b/app-text/calibre/calibre-5.39.1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 PYTHON_COMPAT=( python3_{8..9} )
 PYTHON_REQ_USE="ipv6(+),sqlite,ssl"
 
-inherit toolchain-funcs python-single-r1 xdg-utils
+inherit toolchain-funcs python-single-r1 qmake-utils xdg-utils
 
 DESCRIPTION="Ebook management application"
 HOMEPAGE="https://calibre-ebook.com/;
@@ -196,7 +196,7 @@ src_compile() {
local MY_LIBDIR="${ESYSROOT}/usr/$(get_libdir)"
export FT_LIB_DIR="${MY_LIBDIR}" HUNSPELL_LIB_DIR="${MY_LIBDIR}" 
PODOFO_LIB_DIR="${MY_LIBDIR}"
 
-   PATH="${T}/bin:${PATH}" ${EPYTHON} setup.py build || die
+   PATH="${T}/bin:$(qt5_get_bindir):${PATH}" ${EPYTHON} setup.py build || 
die
 }
 
 src_test() {
@@ -229,7 +229,7 @@ src_install() {
cp "${T}"/bin/{kbuildsycoca,update-mime-database} || die
chmod +x "${T}"/bin/{kbuildsycoca,update-mime-database} || die
 
-   export QMAKE="${EPREFIX}/usr/$(get_libdir)/qt5/bin/qmake"
+   export QMAKE="$(qt5_get_bindir)/qmake"
 
# Unset DISPLAY in order to prevent xdg-mime from triggering a sandbox
# violation with kbuildsycoca as in bug #287067, comment #13.



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

2022-03-24 Thread Sam James
commit: a911e4622e092205dd6a959f9105c1048d134a23
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 03:33:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 03:33:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a911e462

media-libs/harfbuzz: fix comment typo

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

 media-libs/harfbuzz/harfbuzz-3.2.0.ebuild| 2 +-
 media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild | 2 +-
 media-libs/harfbuzz/harfbuzz-4.0.1.ebuild| 2 +-
 media-libs/harfbuzz/harfbuzz-4.1.0.ebuild| 2 +-
 media-libs/harfbuzz/harfbuzz-.ebuild | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-libs/harfbuzz/harfbuzz-3.2.0.ebuild 
b/media-libs/harfbuzz/harfbuzz-3.2.0.ebuild
index a40771678b2b..04e6837e2000 100644
--- a/media-libs/harfbuzz/harfbuzz-3.2.0.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-3.2.0.ebuild
@@ -76,7 +76,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-   # harfbuzz-gobject only used for instrospection, bug #535852
+   # harfbuzz-gobject only used for introspection, bug #535852
local emesonargs=(
-Dcoretext="disabled"
-Dchafa="disabled"

diff --git a/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild 
b/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild
index 8a1d1b1f669e..fc9f7e995db4 100644
--- a/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-3.4.0-r1.ebuild
@@ -80,7 +80,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-   # harfbuzz-gobject only used for instrospection, bug #535852
+   # harfbuzz-gobject only used for introspection, bug #535852
local emesonargs=(
-Dcoretext="disabled"
-Dchafa="disabled"

diff --git a/media-libs/harfbuzz/harfbuzz-4.0.1.ebuild 
b/media-libs/harfbuzz/harfbuzz-4.0.1.ebuild
index 5513b4acfdb6..899f139ec716 100644
--- a/media-libs/harfbuzz/harfbuzz-4.0.1.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-4.0.1.ebuild
@@ -76,7 +76,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-   # harfbuzz-gobject only used for instrospection, bug #535852
+   # harfbuzz-gobject only used for introspection, bug #535852
local emesonargs=(
-Dcoretext="disabled"
-Dchafa="disabled"

diff --git a/media-libs/harfbuzz/harfbuzz-4.1.0.ebuild 
b/media-libs/harfbuzz/harfbuzz-4.1.0.ebuild
index 5513b4acfdb6..899f139ec716 100644
--- a/media-libs/harfbuzz/harfbuzz-4.1.0.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-4.1.0.ebuild
@@ -76,7 +76,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-   # harfbuzz-gobject only used for instrospection, bug #535852
+   # harfbuzz-gobject only used for introspection, bug #535852
local emesonargs=(
-Dcoretext="disabled"
-Dchafa="disabled"

diff --git a/media-libs/harfbuzz/harfbuzz-.ebuild 
b/media-libs/harfbuzz/harfbuzz-.ebuild
index 5513b4acfdb6..899f139ec716 100644
--- a/media-libs/harfbuzz/harfbuzz-.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-.ebuild
@@ -76,7 +76,7 @@ src_prepare() {
 }
 
 multilib_src_configure() {
-   # harfbuzz-gobject only used for instrospection, bug #535852
+   # harfbuzz-gobject only used for introspection, bug #535852
local emesonargs=(
-Dcoretext="disabled"
-Dchafa="disabled"



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

2022-03-24 Thread Zac Medico
commit: 2b5f6419dd6ad17fc7a3d3187b599a1fe2b1e7a6
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 03:28:20 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 03:28:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b5f6419

app-text/calibre: drop 5.38.0, 5.39.0

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

 app-text/calibre/Manifest  |   2 -
 app-text/calibre/calibre-5.38.0.ebuild | 316 -
 app-text/calibre/calibre-5.39.0.ebuild | 316 -
 3 files changed, 634 deletions(-)

diff --git a/app-text/calibre/Manifest b/app-text/calibre/Manifest
index 79756a1ade65..16d61dca0738 100644
--- a/app-text/calibre/Manifest
+++ b/app-text/calibre/Manifest
@@ -1,5 +1,3 @@
 DIST calibre-5.16.0-SIP-v4.patch.xz 6768 BLAKE2B 
b939233266c7cab0fa71ccdeb748bbcffbf16248081ccf0ab313420fe3898954da71e0796b3d6c44e93c636113221f95fa6affc6be97bf41f4086a909b2849f9
 SHA512 
eb19e6bb328f60eb4af2c38d54c3d2a09989d41d71d27de10ab5ae443af902c3c12fc70042d4735dd785573cb63bb7d7a10ae5f7ed72afc1e1a9c6aacaf64aec
 DIST calibre-5.16.1.tar.xz 36757204 BLAKE2B 
71114eed723180142f5428a680d8c5ceabcd007acbc6a70a9298e45a9f21fc793f0ef86bf60b36c96bbd15e9e3f8d8638d179872fb6ff1f9b9f5e31a93e65ba1
 SHA512 
41cf29cc32c7af08215baf80609f8f099d44f2b82d34181451cbf3ed1648e07d64712dba9ff0ddec5bad3d342c7d8bde40bb822f6bd5fb93a4b29d25cf188aae
-DIST calibre-5.38.0.tar.xz 38365980 BLAKE2B 
1c6939e69abde52426d32ab56a91f9b31f687f1d20792c5b360bf5563d72384db395b29e63d8becc1e196f54522a8643588109891943eb1fa525a5395873bb3e
 SHA512 
2744e9d0d3f6daa578360ffb8334adbc49b4dc41100fbe0820b73e4a5a1e24c70c1e75bf1f03b9590f2a64d6c0c7710b26884356567f51200d5c00fe23ed5772
-DIST calibre-5.39.0.tar.xz 38372008 BLAKE2B 
e56513c918d7ac3e7f1b28e98dc82c29170577991714185791b0723daa4adbd404a6fac6584c7d2ad7ceafc19ab6aee519ab0c2d5f0bcc66f4de6236d7096b68
 SHA512 
ea6c739339603abea890a06f43c16522746352bde3abaebd6f2fa64771ec63800a62bd7f0cd47d1c7fb865a6cd73f9ff7522d71d7f4f593247f8eeb93a9263f6
 DIST calibre-5.39.1.tar.xz 38375212 BLAKE2B 
c9205b84180cdf3e98ca30729815f0c3f6b490e1df855119b3032689417b4218d26ce4c6f56d93d040fd5b88924fc432102c00af3286f85b7d5a72a536ab1ece
 SHA512 
47a3be38a24b9e690102108abd1f2385d792721adec637f6de1cc8504df8cc0e3577786add3f48a10c2bc995320d65370d002afaea6ea13b6131b8b6767f27fa

diff --git a/app-text/calibre/calibre-5.38.0.ebuild 
b/app-text/calibre/calibre-5.38.0.ebuild
deleted file mode 100644
index a9f64cfe2e57..
--- a/app-text/calibre/calibre-5.38.0.ebuild
+++ /dev/null
@@ -1,316 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..9} )
-PYTHON_REQ_USE="ipv6(+),sqlite,ssl"
-
-inherit toolchain-funcs python-single-r1 xdg-utils
-
-DESCRIPTION="Ebook management application"
-HOMEPAGE="https://calibre-ebook.com/;
-SRC_URI="https://download.calibre-ebook.com/${PV}/${P}.tar.xz;
-
-LICENSE="
-   GPL-3+
-   GPL-3
-   GPL-2+
-   GPL-2
-   GPL-1+
-   LGPL-3+
-   LGPL-2.1+
-   LGPL-2.1
-   BSD
-   MIT
-   Old-MIT
-   Apache-2.0
-   public-domain
-   || ( Artistic GPL-1+ )
-   CC-BY-3.0
-   OFL-1.1
-   PSF-2
-"
-KEYWORDS="~amd64 ~arm ~x86"
-SLOT="0"
-IUSE="ios +udisks"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="${PYTHON_DEPS}
-   >=app-text/hunspell-1.7:=
-   >=app-text/podofo-0.9.6_pre20171027:=
-   >=app-text/poppler-0.26.5[qt5]
-   dev-libs/glib:2=
-   dev-libs/hyphen:=
-   >=dev-libs/icu-57.1:=
-   dev-libs/libinput:=
-   >=dev-libs/dbus-glib-0.106
-   dev-libs/snowball-stemmer:=
-   >=sys-apps/dbus-1.10.8
-   $(python_gen_cond_dep '
-   app-accessibility/speech-dispatcher[python,${PYTHON_USEDEP}]
-   >=dev-python/apsw-3.25.2_p1[${PYTHON_USEDEP}]
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/cchardet[${PYTHON_USEDEP}]
-   >=dev-python/chardet-3.0.3[${PYTHON_USEDEP}]
-   >=dev-python/cssselect-0.7.1[${PYTHON_USEDEP}]
-   >=dev-python/css-parser-1.0.4[${PYTHON_USEDEP}]
-   >=dev-python/dbus-python-1.2.4[${PYTHON_USEDEP}]
-   dev-python/dnspython[${PYTHON_USEDEP}]
-   >=dev-python/feedparser-5.2.1[${PYTHON_USEDEP}]
-   >=dev-python/html2text-2019.8.11[${PYTHON_USEDEP}]
-   >=dev-python/html5-parser-0.4.9[${PYTHON_USEDEP}]
-   dev-python/jeepney[${PYTHON_USEDEP}]
-   >=dev-python/lxml-3.8.0[${PYTHON_USEDEP}]
-   >=dev-python/markdown-3.0.1[${PYTHON_USEDEP}]
-   >=dev-python/mechanize-0.3.5[${PYTHON_USEDEP}]
-   >=dev-python/msgpack-0.6.2[${PYTHON_USEDEP}]
-   >=dev-python/netifaces-0.10.5[${PYTHON_USEDEP}]
-   >=dev-python/pillow-3.2.0[${PYTHON_USEDEP}]
-   

[gentoo-commits] repo/gentoo:master commit in: app-containers/snapd/

2022-03-24 Thread Zac Medico
commit: 042fee9ddef2d2e9c5eab876b5b0a8e6038a7efe
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 03:06:17 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 03:13:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=042fee9d

app-containers/snapd: drop 2.54.3, 2.54.4

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

 app-containers/snapd/Manifest|   2 -
 app-containers/snapd/snapd-2.54.3.ebuild | 183 ---
 app-containers/snapd/snapd-2.54.4.ebuild | 183 ---
 3 files changed, 368 deletions(-)

diff --git a/app-containers/snapd/Manifest b/app-containers/snapd/Manifest
index 5347845a4cb6..a808820830e0 100644
--- a/app-containers/snapd/Manifest
+++ b/app-containers/snapd/Manifest
@@ -1,3 +1 @@
-DIST snapd-2.54.3.tar.xz 4831376 BLAKE2B 
c74540e326e690ecced2e5dcab7246581e9f87412b2ba2fe16721fef5ec66eb20a915207e7c7d20579741929b0840760c336ebd75e4be77bc3f6d01e5909dad0
 SHA512 
ee89d7e02522ab9a50e17dbe34be19eeda10bf3518110e5c6b23987d618aaa324f762e745badb4e9d99e0b138788d1dc591802dd6c59e2ffc2ebec3eb384498f
-DIST snapd-2.54.4.tar.xz 4831036 BLAKE2B 
b45ac9aacb0b023ab1cc79541dd97bda2d9f9a5987e9aa1a07b49b30667aa87fc38d74d24009f0ec6257cc8d764e2080cb4605cd5945bfc008f76008a1d29e0e
 SHA512 
267c9e4dab73990f2d2ebc9c035e02856ec04be9f96a7fa6994a1827b2bbe9f5fd3ba7e0fcc84a1fe1f04480ca8785a163ee42bbca05cde80ff197aa63eaad19
 DIST snapd-2.55.2.tar.xz 6659212 BLAKE2B 
a76cec2bf0f3c44212a20c8b0744e4327a725b28a0055be49dfbe638020532f4933c20edda3bdab20290d38f602459fd0962413a9c58400cdc8d6ef3b4634a41
 SHA512 
8fee8bb6ff52d3cbd5f0a9f206e7c93dea1b6c0ade9c2b6fbd7b0d729b6eeeb1fb01a28dab53543671c42ceac25d6d8932a8b4b9349332b0cde9b9226f6ec063

diff --git a/app-containers/snapd/snapd-2.54.3.ebuild 
b/app-containers/snapd/snapd-2.54.3.ebuild
deleted file mode 100644
index bf6b2a0a243e..
--- a/app-containers/snapd/snapd-2.54.3.ebuild
+++ /dev/null
@@ -1,183 +0,0 @@
-# Copyright 2020-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-EGO_PN="github.com/snapcore/${PN}"
-inherit autotools bash-completion-r1 flag-o-matic golang-vcs-snapshot 
linux-info readme.gentoo-r1 systemd xdg-utils
-
-DESCRIPTION="Service and tools for management of snap packages"
-HOMEPAGE="http://snapcraft.io/;
-
-MY_S="${S}/src/github.com/snapcore/${PN}"
-
-SRC_URI="https://github.com/snapcore/${PN}/releases/download/${PV}/${PN}_${PV}.vendor.tar.xz
 -> ${P}.tar.xz"
-MY_PV=${PV}
-KEYWORDS="~amd64"
-
-LICENSE="GPL-3 Apache-2.0 BSD BSD-2 LGPL-3-with-linking-exception MIT"
-SLOT="0"
-IUSE="apparmor +cgroup-hybrid +forced-devmode gtk kde systemd"
-REQUIRED_USE="!forced-devmode? ( apparmor cgroup-hybrid ) systemd"
-
-CONFIG_CHECK="~CGROUPS
-   ~CGROUP_DEVICE
-   ~CGROUP_FREEZER
-   ~NAMESPACES
-   ~SQUASHFS
-   ~SQUASHFS_ZLIB
-   ~SQUASHFS_LZO
-   ~SQUASHFS_XZ
-   ~BLK_DEV_LOOP
-   ~SECCOMP
-   ~SECCOMP_FILTER"
-
-RDEPEND="
-   sys-libs/libseccomp:=
-   apparmor? (
-   sec-policy/apparmor-profiles
-   sys-apps/apparmor:=
-   )
-   dev-libs/glib
-   virtual/libudev
-   systemd? ( sys-apps/systemd[cgroup-hybrid(+)?] )
-   sys-libs/libcap:=
-   sys-fs/squashfs-tools[lzma]"
-
-DEPEND="${RDEPEND}"
-
-BDEPEND="
-   >=dev-lang/go-1.9
-   dev-python/docutils
-   sys-devel/gettext
-   sys-fs/xfsprogs"
-
-PDEPEND="sys-auth/polkit[gtk?,kde?]"
-
-README_GENTOO_SUFFIX=""
-
-pkg_setup() {
-   if use apparmor; then
-   CONFIG_CHECK+=" ~SECURITY_APPARMOR"
-   fi
-   linux-info_pkg_setup
-
-   # Seems to have issues building with -O3, switch to -O2
-   replace-flags -O3 -O2
-}
-
-src_prepare() {
-   default
-   # Update apparmor profile to allow libtinfow.so*
-   sed -i 's/libtinfo/libtinfo{,w}/' \
-   "${MY_S}/cmd/snap-confine/snap-confine.apparmor.in" || die
-
-   if ! use forced-devmode; then
-   sed -e 's#return !apparmorFull#if !apparmorFull 
{\n\t\tpanic("USE=forced-devmode is disabled")\n\t}\n\treturn false#' \
-   -i "${MY_S}/sandbox/forcedevmode.go" || die
-   grep -q 'panic("USE=forced-devmode is disabled")' 
"${MY_S}/sandbox/forcedevmode.go" || die "failed to disable forced-devmode"
-   fi
-
-   sed -i 's:command -v git >/dev/null:false:' -i "${MY_S}/mkversion.sh" 
|| die
-
-   pushd "${MY_S}" >/dev/null || die
-   ./mkversion.sh "${PV}"
-   popd >/dev/null || die
-   pushd "${MY_S}/cmd" >/dev/null || die
-   eautoreconf
-}
-
-src_configure() {
-   SNAPD_MAKEARGS=(
-   "BINDIR=${EPREFIX}/usr/bin"
-   "DBUSSERVICESDIR=${EPREFIX}/usr/share/dbus-1/services"
-   "LIBEXECDIR=${EPREFIX}/usr/lib"
-   "SNAP_MOUNT_DIR=${EPREFIX}/var/lib/snapd/snap"
-

[gentoo-commits] repo/gentoo:master commit in: app-containers/snapd/

2022-03-24 Thread Zac Medico
commit: cfbedc84507006ba9cff71bd9cede4ede8ccf8e2
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 03:11:20 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 03:13:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfbedc84

app-containers/snapd: remove cgroup-hybrid USE flag

Closes: https://bugs.gentoo.org/835818
Signed-off-by: Zac Medico  gentoo.org>

 app-containers/snapd/metadata.xml| 3 ---
 app-containers/snapd/snapd-2.55.2.ebuild | 6 +++---
 2 files changed, 3 insertions(+), 6 deletions(-)

diff --git a/app-containers/snapd/metadata.xml 
b/app-containers/snapd/metadata.xml
index 82446241f723..0109791c93ff 100644
--- a/app-containers/snapd/metadata.xml
+++ b/app-containers/snapd/metadata.xml
@@ -12,9 +12,6 @@

Enable AppArmor support.

-   
-   Default to hybrid (legacy) cgroup hierarchy instead of 
unified (modern).
-   

Automatically disable application confinement if 
feature detection fails.


diff --git a/app-containers/snapd/snapd-2.55.2.ebuild 
b/app-containers/snapd/snapd-2.55.2.ebuild
index bf6b2a0a243e..4e8c75f7a53b 100644
--- a/app-containers/snapd/snapd-2.55.2.ebuild
+++ b/app-containers/snapd/snapd-2.55.2.ebuild
@@ -17,8 +17,8 @@ KEYWORDS="~amd64"
 
 LICENSE="GPL-3 Apache-2.0 BSD BSD-2 LGPL-3-with-linking-exception MIT"
 SLOT="0"
-IUSE="apparmor +cgroup-hybrid +forced-devmode gtk kde systemd"
-REQUIRED_USE="!forced-devmode? ( apparmor cgroup-hybrid ) systemd"
+IUSE="apparmor +forced-devmode gtk kde systemd"
+REQUIRED_USE="!forced-devmode? ( apparmor ) systemd"
 
 CONFIG_CHECK="~CGROUPS
~CGROUP_DEVICE
@@ -40,7 +40,7 @@ RDEPEND="
)
dev-libs/glib
virtual/libudev
-   systemd? ( sys-apps/systemd[cgroup-hybrid(+)?] )
+   systemd? ( sys-apps/systemd )
sys-libs/libcap:=
sys-fs/squashfs-tools[lzma]"
 



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

2022-03-24 Thread Sam James
commit: e31db18baafd0bcc3872ee41cd838f863a793728
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 03:08:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 03:10:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e31db18b

sys-devel/libtool: keyword 2.4.7; sync live

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

 sys-devel/libtool/libtool-2.4.7.ebuild | 2 +-
 sys-devel/libtool/libtool-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/libtool/libtool-2.4.7.ebuild 
b/sys-devel/libtool/libtool-2.4.7.ebuild
index 2eb522d28d08..65f0d1aab0da 100644
--- a/sys-devel/libtool/libtool-2.4.7.ebuild
+++ b/sys-devel/libtool/libtool-2.4.7.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
-   #KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 fi
 
 DESCRIPTION="A shared library tool for developers"

diff --git a/sys-devel/libtool/libtool-.ebuild 
b/sys-devel/libtool/libtool-.ebuild
index 648487eec160..65f0d1aab0da 100644
--- a/sys-devel/libtool/libtool-.ebuild
+++ b/sys-devel/libtool/libtool-.ebuild
@@ -30,7 +30,7 @@ RDEPEND="
sys-devel/gnuconfig
>=sys-devel/autoconf-2.69:*
>=sys-devel/automake-1.13:*
-   dev-libs/libltdl"
+   >=dev-libs/libltdl-2.4.7"
 DEPEND="${RDEPEND}"
 [[ ${PV} == * ]] && BDEPEND="sys-apps/help2man"
 



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

2022-03-24 Thread Sam James
commit: aaf70cb39d1b0d5fe8cdcdd5acb3b32e8f654ed6
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 03:09:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 03:10:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aaf70cb3

dev-libs/libltdl: keyword 2.4.7

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

 dev-libs/libltdl/libltdl-2.4.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libltdl/libltdl-2.4.7.ebuild 
b/dev-libs/libltdl/libltdl-2.4.7.ebuild
index 3b9b846936fb..d8df7594e536 100644
--- a/dev-libs/libltdl/libltdl-2.4.7.ebuild
+++ b/dev-libs/libltdl/libltdl-2.4.7.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}"/${MY_P}/libltdl
 
 LICENSE="GPL-2"
 SLOT="0"
-#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="static-libs"
 # libltdl doesn't have a testsuite.
 



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

2022-03-24 Thread Sam James
commit: 1afc1eb64a72561fc112b4d8c36314fa09635d9e
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 03:09:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 03:10:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1afc1eb6

dev-libs/libltdl: drop OutdatedBlocker

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

 dev-libs/libltdl/libltdl-2.4.7.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-libs/libltdl/libltdl-2.4.7.ebuild 
b/dev-libs/libltdl/libltdl-2.4.7.ebuild
index d8df7594e536..04dd29883a01 100644
--- a/dev-libs/libltdl/libltdl-2.4.7.ebuild
+++ b/dev-libs/libltdl/libltdl-2.4.7.ebuild
@@ -20,7 +20,6 @@ KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~riscv ~
 IUSE="static-libs"
 # libltdl doesn't have a testsuite.
 
-RDEPEND="!

[gentoo-commits] repo/gentoo:master commit in: app-containers/podman/

2022-03-24 Thread Zac Medico
commit: 869ab111563d24bc8186b3dd17328cd8554b3442
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 02:58:09 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 03:01:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=869ab111

app-containers/podman: add cgroup-hybrid USE flag

Closes: https://bugs.gentoo.org/763267
Signed-off-by: Zac Medico  gentoo.org>

 app-containers/podman/metadata.xml| 3 +++
 app-containers/podman/podman-3.4.4.ebuild | 5 +++--
 app-containers/podman/podman-4.0.2.ebuild | 5 +++--
 3 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/app-containers/podman/metadata.xml 
b/app-containers/podman/metadata.xml
index 844d5c0dcd45..11d7dc7603dc 100644
--- a/app-containers/podman/metadata.xml
+++ b/app-containers/podman/metadata.xml
@@ -22,6 +22,9 @@
Enables dependencies for the "btrfs" graph driver, 
including
necessary kernel flags.

+   
+   Default to hybrid (legacy) cgroup hierarchy instead of 
unified (modern).
+   

Enables fuse dependencies (fuse-overlayfs is especially 
useful
for rootless mode).

diff --git a/app-containers/podman/podman-3.4.4.ebuild 
b/app-containers/podman/podman-3.4.4.ebuild
index f6e9ac8b1006..d9c90056d70c 100644
--- a/app-containers/podman/podman-3.4.4.ebuild
+++ b/app-containers/podman/podman-3.4.4.ebuild
@@ -15,13 +15,14 @@ LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
 KEYWORDS="amd64 arm64 ~ppc64 ~riscv"
-IUSE="apparmor btrfs +fuse +rootless selinux"
+IUSE="apparmor btrfs +cgroup-hybrid +fuse +rootless selinux"
 RESTRICT+=" test"
 
 COMMON_DEPEND="
app-crypt/gpgme:=
>=app-containers/conmon-2.0.0
-   || ( >=app-containers/runc-1.0.0_rc6 app-containers/crun )
+   cgroup-hybrid? ( >=app-containers/runc-1.0.0_rc6  )
+   !cgroup-hybrid? ( app-containers/crun )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
>=net-misc/cni-plugins-0.8.6

diff --git a/app-containers/podman/podman-4.0.2.ebuild 
b/app-containers/podman/podman-4.0.2.ebuild
index e565620c034c..62f957b6252a 100644
--- a/app-containers/podman/podman-4.0.2.ebuild
+++ b/app-containers/podman/podman-4.0.2.ebuild
@@ -15,13 +15,14 @@ LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
 SLOT="0"
 
 KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
-IUSE="apparmor btrfs +fuse +init +rootless selinux"
+IUSE="apparmor btrfs cgroup-hybrid +fuse +init +rootless selinux"
 RESTRICT+=" test"
 
 COMMON_DEPEND="
app-crypt/gpgme:=
>=app-containers/conmon-2.0.0
-   || ( >=app-containers/runc-1.0.0_rc6 app-containers/crun )
+   cgroup-hybrid? ( >=app-containers/runc-1.0.0_rc6  )
+   !cgroup-hybrid? ( app-containers/crun )
dev-libs/libassuan:=
dev-libs/libgpg-error:=
>=net-misc/cni-plugins-0.8.6



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

2022-03-24 Thread Sam James
commit: 49a5ee3a41b4b8088590ad752cd04e50edcc4d3b
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 02:43:40 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 02:52:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49a5ee3a

app-emulation/virt-manager: drop obsolete intltool dependency

Dropped upstream a long time ago, it seems (can't find commit ref,
but not references in source).

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

 app-emulation/virt-manager/virt-manager-4.0.0.ebuild | 3 +--
 app-emulation/virt-manager/virt-manager-.ebuild  | 3 +--
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-emulation/virt-manager/virt-manager-4.0.0.ebuild 
b/app-emulation/virt-manager/virt-manager-4.0.0.ebuild
index f0c76db800b0..fa0f4663c4b9 100644
--- a/app-emulation/virt-manager/virt-manager-4.0.0.ebuild
+++ b/app-emulation/virt-manager/virt-manager-4.0.0.ebuild
@@ -48,8 +48,7 @@ RDEPEND="${PYTHON_DEPS}
x11-libs/vte:2.91[introspection]
)"
 DEPEND="${RDEPEND}"
-BDEPEND="dev-python/docutils
-   dev-util/intltool"
+BDEPEND="dev-python/docutils"
 
 DOCS=( README.md NEWS.md )
 

diff --git a/app-emulation/virt-manager/virt-manager-.ebuild 
b/app-emulation/virt-manager/virt-manager-.ebuild
index 0d98a47262d9..0f88e40eceea 100644
--- a/app-emulation/virt-manager/virt-manager-.ebuild
+++ b/app-emulation/virt-manager/virt-manager-.ebuild
@@ -48,8 +48,7 @@ RDEPEND="${PYTHON_DEPS}
policykit? ( sys-auth/polkit[introspection] )
)"
 DEPEND="${RDEPEND}"
-BDEPEND="dev-python/docutils
-   dev-util/intltool"
+BDEPEND="dev-python/docutils"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: app-containers/podman/

2022-03-24 Thread Zac Medico
commit: d597980ee6540973e29a7b52f5112051f6091248
Author: Zac Medico  gentoo  org>
AuthorDate: Fri Mar 25 02:42:40 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Fri Mar 25 02:42:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d597980e

app-containers/podman: drop 4.0.0, 4.0.1

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

 app-containers/podman/Manifest|   2 -
 app-containers/podman/podman-4.0.0.ebuild | 161 --
 app-containers/podman/podman-4.0.1.ebuild | 161 --
 3 files changed, 324 deletions(-)

diff --git a/app-containers/podman/Manifest b/app-containers/podman/Manifest
index d2c0c1508419..89345cfe5ac3 100644
--- a/app-containers/podman/Manifest
+++ b/app-containers/podman/Manifest
@@ -1,4 +1,2 @@
 DIST podman-3.4.4.tar.gz 10945990 BLAKE2B 
3de69c9bc3bd1334837d21cb2817a9e9757fbb561a0b047658c7401608ecf1fbe09d5cd0c65497a82150a67a3775c77705d0dbd314a54f7b3a1953733cfb2906
 SHA512 
cfd295bf50ce86ea70741c3e663b409ed47b1e560c962bc579f319151a0fe2b24cdd3045667660083cce89449a9c5de1508c94a9a02375165a72ce7c1616
-DIST podman-4.0.0.tar.gz 11379640 BLAKE2B 
2d68b95206ef59873c2a5c434aa3901c33a3526f840805ab42ac4dad4ed5861824a6b2142d02b500e087d56f4da3255c2b156af4d835a6427c2ebfae34278a75
 SHA512 
2e25f303d143bc4e265f0f8998ea1c4af3d6da8b35452cf6b27a4eb204805a9b5f75f4b6430921b42c80b76a6b5c9cf35a732c265727a11261fca25cc96f57e7
-DIST podman-4.0.1.tar.gz 11379467 BLAKE2B 
dc9785c6ff85ba2f2279b7b8fb820f402fa347c4af70e3c3a6119a7a79f19f1dc4e2048c0682f7751e701005e2966e806537630f6efd69d336bce560ad5053a4
 SHA512 
b333c91f1c04ef084df05dc6f31717e89078a3e5c6b620c403c29e4a3c9db30bbd15537334a645206d85bfb9679b1f4748c46936d9ca21c1f77066e8cf0f25c8
 DIST podman-4.0.2.tar.gz 11377152 BLAKE2B 
ab022c3e7ef40685301f08b2d939e936b07e08231d5b86a84fefa6ea7a60c8f20a5e15b79788d862c263336204a9cd8d7206748b4530f2f42ccdd31df370747f
 SHA512 
f3c42b3b3c75ca451b4c22c2d6f9f1b9ab9437b118b16e19f17f92f28b5849f8e3de4ebc97d8d249f565a61ba187214928c25a031204163a59174e94ce300a59

diff --git a/app-containers/podman/podman-4.0.0.ebuild 
b/app-containers/podman/podman-4.0.0.ebuild
deleted file mode 100644
index 0be37da653fe..
--- a/app-containers/podman/podman-4.0.0.ebuild
+++ /dev/null
@@ -1,161 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-EGIT_COMMIT="84c8870ac236578c41713113fc09a29a5f727bdd"
-
-inherit bash-completion-r1 flag-o-matic go-module tmpfiles
-
-DESCRIPTION="Library and podman tool for running OCI-based containers in Pods"
-HOMEPAGE="https://github.com/containers/podman/;
-MY_PN=podman
-MY_P=${MY_PN}-${PV}
-SRC_URI="https://github.com/containers/podman/archive/v${PV}.tar.gz -> 
${MY_P}.tar.gz"
-LICENSE="Apache-2.0 BSD BSD-2 CC-BY-SA-4.0 ISC MIT MPL-2.0"
-SLOT="0"
-
-KEYWORDS="~amd64 ~arm64 ~ppc64"
-IUSE="apparmor btrfs +fuse +rootless selinux"
-RESTRICT+=" test"
-
-COMMON_DEPEND="
-   app-crypt/gpgme:=
-   >=app-containers/conmon-2.0.0
-   || ( >=app-containers/runc-1.0.0_rc6 app-containers/crun )
-   dev-libs/libassuan:=
-   dev-libs/libgpg-error:=
-   >=net-misc/cni-plugins-0.8.6
-   sys-fs/lvm2
-   sys-libs/libseccomp:=
-
-   apparmor? ( sys-libs/libapparmor )
-   btrfs? ( sys-fs/btrfs-progs )
-   rootless? ( app-containers/slirp4netns )
-   selinux? ( sys-libs/libselinux:= )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   dev-go/go-md2man"
-RDEPEND="${COMMON_DEPEND}
-   fuse? ( sys-fs/fuse-overlayfs )"
-
-S=${WORKDIR}/${MY_P}
-
-src_prepare() {
-   default
-
-   # Disable installation of python modules here, since those are
-   # installed by separate ebuilds.
-   local makefile_sed_args=(
-   -e '/^GIT_.*/d'
-   -e 's/$(GO) build/$(GO) build -v -work -x/'
-   -e 's/^\(install:.*\) install\.python$/\1/'
-   -e 's|^pkg/varlink/iopodman.go: .gopathok 
pkg/varlink/io.podman.varlink$|pkg/varlink/iopodman.go: 
pkg/varlink/io.podman.varlink|'
-   )
-
-   has_version -b '>=dev-lang/go-1.13.9' || makefile_sed_args+=(-e 
's:GO111MODULE=off:GO111MODULE=on:')
-
-   sed "${makefile_sed_args[@]}" -i Makefile || die
-}
-
-src_compile() {
-   local git_commit=${EGIT_COMMIT}
-
-   # Filter unsupported linker flags
-   filter-flags '-Wl,*'
-
-   [[ -f hack/apparmor_tag.sh ]] || die
-   if use apparmor; then
-   echo -e "#!/bin/sh\necho apparmor" > hack/apparmor_tag.sh || die
-   else
-   echo -e "#!/bin/sh\ntrue" > hack/apparmor_tag.sh || die
-   fi
-
-   [[ -f hack/btrfs_installed_tag.sh ]] || die
-   if use btrfs; then
-   echo -e "#!/bin/sh\ntrue" > hack/btrfs_installed_tag.sh || die
-   else
-   echo -e "#!/bin/sh\necho exclude_graphdriver_btrfs" > \
-   hack/btrfs_installed_tag.sh || die
-   fi
-
-   [[ -f 

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

2022-03-24 Thread Sam James
commit: 4af2216c1c81b2e0923f23891502200188fed623
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 02:07:19 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 02:07:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4af2216c

app-admin/system-config-printer: drop obsolete intltool dependency

Dropped upstream in 
https://github.com/OpenPrinting/system-config-printer/commit/e653c1a860aedc306828e60f4b99a80e0d8b3523.

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

 app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild 
b/app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild
index c8b20534951d..664a9ddecafe 100644
--- a/app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild
+++ b/app-admin/system-config-printer/system-config-printer-1.5.16-r1.ebuild
@@ -38,7 +38,6 @@ DEPEND="${COMMON_DEPEND}
>=app-text/xmlto-0.0.22
dev-perl/XML-Parser
dev-util/desktop-file-utils
-   dev-util/intltool
>=sys-devel/gettext-0.20
virtual/pkgconfig
 "



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

2022-03-24 Thread Sam James
commit: 4944a4fa5bc168a384926b41a8f4aa980558b260
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 02:23:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 02:23:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4944a4fa

net-p2p/transmission: drop obsolete intltool dependency

Dropped upstream in 
https://github.com/transmission/transmission/commit/8c160aad2d3adb7417c26605fd08e79494e07ee5

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

 net-p2p/transmission/transmission-3.00-r1.ebuild | 4 +---
 net-p2p/transmission/transmission-.ebuild| 4 +---
 2 files changed, 2 insertions(+), 6 deletions(-)

diff --git a/net-p2p/transmission/transmission-3.00-r1.ebuild 
b/net-p2p/transmission/transmission-3.00-r1.ebuild
index 6198bf9dfff7..146f028003dc 100644
--- a/net-p2p/transmission/transmission-3.00-r1.ebuild
+++ b/net-p2p/transmission/transmission-3.00-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2006-2021 Gentoo Authors
+# Copyright 2006-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -32,7 +32,6 @@ BDEPEND="${ACCT_DEPEND}
virtual/pkgconfig
nls? (
gtk? (
-   dev-util/intltool
sys-devel/gettext
)
qt5? (
@@ -68,7 +67,6 @@ DEPEND="${COMMON_DEPEND}
nls? (
virtual/libintl
gtk? (
-   dev-util/intltool
sys-devel/gettext
)
qt5? (

diff --git a/net-p2p/transmission/transmission-.ebuild 
b/net-p2p/transmission/transmission-.ebuild
index 263035fd7e17..07d9d10d6c58 100644
--- a/net-p2p/transmission/transmission-.ebuild
+++ b/net-p2p/transmission/transmission-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2006-2021 Gentoo Authors
+# Copyright 2006-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -32,7 +32,6 @@ BDEPEND="${ACCT_DEPEND}
virtual/pkgconfig
nls? (
gtk? (
-   dev-util/intltool
sys-devel/gettext
)
qt5? (
@@ -68,7 +67,6 @@ DEPEND="${COMMON_DEPEND}
nls? (
virtual/libintl
gtk? (
-   dev-util/intltool
sys-devel/gettext
)
qt5? (



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

2022-03-24 Thread Sam James
commit: 834322d5c3536354a165908a790ec4b998e4c2bf
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 02:26:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 02:26:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=834322d5

net-wireless/blueman: drop obsolete intltool dependency

Dropped upstream in 
https://github.com/blueman-project/blueman/commit/3a3b27e6f8706df2de000cee6a879652d3633a00

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

 net-wireless/blueman/blueman-2.2.3-r2.ebuild | 2 +-
 net-wireless/blueman/blueman-.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-wireless/blueman/blueman-2.2.3-r2.ebuild 
b/net-wireless/blueman/blueman-2.2.3-r2.ebuild
index d76266468173..24a8732bed40 100644
--- a/net-wireless/blueman/blueman-2.2.3-r2.ebuild
+++ b/net-wireless/blueman/blueman-2.2.3-r2.ebuild
@@ -35,7 +35,7 @@ BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
')
virtual/pkgconfig
-   nls? ( dev-util/intltool sys-devel/gettext )"
+   nls? ( sys-devel/gettext )"
 RDEPEND="${DEPEND}
$(python_gen_cond_dep '
dev-python/pycairo[${PYTHON_USEDEP}]

diff --git a/net-wireless/blueman/blueman-.ebuild 
b/net-wireless/blueman/blueman-.ebuild
index 93256bfb360b..090a7032ac19 100644
--- a/net-wireless/blueman/blueman-.ebuild
+++ b/net-wireless/blueman/blueman-.ebuild
@@ -35,7 +35,7 @@ BDEPEND="
dev-python/cython[${PYTHON_USEDEP}]
')
virtual/pkgconfig
-   nls? ( dev-util/intltool sys-devel/gettext )"
+   nls? ( sys-devel/gettext )"
 RDEPEND="${DEPEND}
$(python_gen_cond_dep '
dev-python/pycairo[${PYTHON_USEDEP}]



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

2022-03-24 Thread Sam James
commit: 9a94d1706874aa8bb9732f33ebc6832d3e49249e
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 01:56:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 01:59:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a94d170

x11-misc/colord: drop obsolete intltool dependency

Dropped upstream in 
https://github.com/hughsie/colord/commit/158fba0bc37d4cdcbd98d30e97b434ad033732f4.

Bug: https://github.com/hughsie/colord/pull/138
Signed-off-by: Sam James  gentoo.org>

 x11-misc/colord/colord-1.4.6.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/x11-misc/colord/colord-1.4.6.ebuild 
b/x11-misc/colord/colord-1.4.6.ebuild
index 818cce065a64..8dffbd9ed219 100644
--- a/x11-misc/colord/colord-1.4.6.ebuild
+++ b/x11-misc/colord/colord-1.4.6.ebuild
@@ -46,7 +46,6 @@ BDEPEND="
acct-user/colord
app-text/docbook-xsl-ns-stylesheets
dev-libs/libxslt
-   >=dev-util/intltool-0.35
>=sys-devel/gettext-0.17
virtual/pkgconfig
extra-print-profiles? ( media-gfx/argyllcms )



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

2022-03-24 Thread Sam James
commit: 50394db3306e9ac7abd4ced3d8a2e196f78a9f3f
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 01:49:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 01:49:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50394db3

media-video/wireplumber: crank up pipewire minimum version

Closes: https://bugs.gentoo.org/835968
Signed-off-by: Sam James  gentoo.org>

 media-video/wireplumber/wireplumber-0.4.9.ebuild | 2 +-
 media-video/wireplumber/wireplumber-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/wireplumber/wireplumber-0.4.9.ebuild 
b/media-video/wireplumber/wireplumber-0.4.9.ebuild
index 2e425ab4a17e..6d3a6544520e 100644
--- a/media-video/wireplumber/wireplumber-0.4.9.ebuild
+++ b/media-video/wireplumber/wireplumber-0.4.9.ebuild
@@ -41,7 +41,7 @@ BDEPEND="
 DEPEND="
${LUA_DEPS}
>=dev-libs/glib-2.62
-   >=media-video/pipewire-0.3.45:=
+   >=media-video/pipewire-0.3.48:=
virtual/libc
elogind? ( sys-auth/elogind )
systemd? ( sys-apps/systemd )

diff --git a/media-video/wireplumber/wireplumber-.ebuild 
b/media-video/wireplumber/wireplumber-.ebuild
index 2e425ab4a17e..6d3a6544520e 100644
--- a/media-video/wireplumber/wireplumber-.ebuild
+++ b/media-video/wireplumber/wireplumber-.ebuild
@@ -41,7 +41,7 @@ BDEPEND="
 DEPEND="
${LUA_DEPS}
>=dev-libs/glib-2.62
-   >=media-video/pipewire-0.3.45:=
+   >=media-video/pipewire-0.3.48:=
virtual/libc
elogind? ( sys-auth/elogind )
systemd? ( sys-apps/systemd )



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

2022-03-24 Thread Sam James
commit: 37ab13cf675738b16236e2f017a97cd1730ea1fb
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 00:33:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 01:48:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37ab13cf

net-im/gajim: drop intltool dependency

Dropped upstream a while ago:
https://dev.gajim.org/gajim/gajim/-/commit/7751c3e72260b69ea7aa3a62f9b1799a7a000125.

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

 net-im/gajim/gajim-1.3.3-r1.ebuild | 3 +--
 net-im/gajim/gajim-1.3.3_p2.ebuild | 1 -
 2 files changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-im/gajim/gajim-1.3.3-r1.ebuild 
b/net-im/gajim/gajim-1.3.3-r1.ebuild
index 5d090a79413d..d1a222c2bc02 100644
--- a/net-im/gajim/gajim-1.3.3-r1.ebuild
+++ b/net-im/gajim/gajim-1.3.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -24,7 +24,6 @@ COMMON_DEPEND="
>=x11-libs/gtk+-3.22:3[introspection]"
 DEPEND="${COMMON_DEPEND}
app-arch/unzip
-   >=dev-util/intltool-0.40.1
virtual/pkgconfig
>=sys-devel/gettext-0.17-r1"
 RDEPEND="${COMMON_DEPEND}

diff --git a/net-im/gajim/gajim-1.3.3_p2.ebuild 
b/net-im/gajim/gajim-1.3.3_p2.ebuild
index 346c1c0f0693..8253e660e160 100644
--- a/net-im/gajim/gajim-1.3.3_p2.ebuild
+++ b/net-im/gajim/gajim-1.3.3_p2.ebuild
@@ -24,7 +24,6 @@ COMMON_DEPEND="
>=x11-libs/gtk+-3.22:3[introspection]"
 DEPEND="${COMMON_DEPEND}
app-arch/unzip
-   >=dev-util/intltool-0.40.1
virtual/pkgconfig
>=sys-devel/gettext-0.17-r1"
 RDEPEND="${COMMON_DEPEND}



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

2022-03-24 Thread Sam James
commit: c29fc579bfba53190582f2dbbd31fee4575123c6
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 01:24:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 01:48:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c29fc579

app-emulation/virt-viewer: drop obsolete intltool dependency

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

 app-emulation/virt-viewer/virt-viewer-10.0_p20210730.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/app-emulation/virt-viewer/virt-viewer-10.0_p20210730.ebuild 
b/app-emulation/virt-viewer/virt-viewer-10.0_p20210730.ebuild
index cf637aba0caa..e87604e77799 100644
--- a/app-emulation/virt-viewer/virt-viewer-10.0_p20210730.ebuild
+++ b/app-emulation/virt-viewer/virt-viewer-10.0_p20210730.ebuild
@@ -33,7 +33,6 @@ DEPEND="${RDEPEND}
spice? ( >=app-emulation/spice-protocol-0.12.10 )"
 BDEPEND="${PYTHON_DEPS}
dev-lang/perl
-   >=dev-util/intltool-0.35.0
virtual/pkgconfig"
 
 REQUIRED_USE="|| ( spice vnc )"



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

2022-03-24 Thread Sam James
commit: fa22af4cc70f93e7dd22d016e3ba0b8ddc66b634
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 01:17:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 01:48:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa22af4c

app-emulation/libvirt-glib: drop obsolete intltool dependency

Dropped upstream in 
https://gitlab.com/libvirt/libvirt-glib/-/commit/800d0052be47bd4016ed015d24032106c6b9bc40

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

 app-emulation/libvirt-glib/libvirt-glib-4.0.0.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-emulation/libvirt-glib/libvirt-glib-4.0.0.ebuild 
b/app-emulation/libvirt-glib/libvirt-glib-4.0.0.ebuild
index 825b6a5327a6..22cba180aefe 100644
--- a/app-emulation/libvirt-glib/libvirt-glib-4.0.0.ebuild
+++ b/app-emulation/libvirt-glib/libvirt-glib-4.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -25,7 +25,6 @@ DEPEND="${RDEPEND}"
 
 BDEPEND="
dev-util/glib-utils
-   >=dev-util/intltool-0.35.0
virtual/pkgconfig
gtk-doc? ( dev-util/gtk-doc
app-text/docbook-xml-dtd:4.3 )



[gentoo-commits] repo/gentoo:master commit in: net-misc/spice-gtk/

2022-03-24 Thread Sam James
commit: c576007903489cb037c2c2c1c5f05c8bc20fc4be
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 01:14:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 01:48:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5760079

net-misc/spice-gtk: remove obsolete intltool dependency

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

 net-misc/spice-gtk/spice-gtk-0.39-r2.ebuild | 1 -
 net-misc/spice-gtk/spice-gtk-.ebuild| 1 -
 2 files changed, 2 deletions(-)

diff --git a/net-misc/spice-gtk/spice-gtk-0.39-r2.ebuild 
b/net-misc/spice-gtk/spice-gtk-0.39-r2.ebuild
index 26009d625fee..e4af25b8d05c 100644
--- a/net-misc/spice-gtk/spice-gtk-0.39-r2.ebuild
+++ b/net-misc/spice-gtk/spice-gtk-0.39-r2.ebuild
@@ -66,7 +66,6 @@ DEPEND="${RDEPEND}
dev-perl/Text-CSV
dev-util/glib-utils
>=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.40.0
>=sys-devel/gettext-0.17
virtual/pkgconfig
vala? ( $(vala_depend) )

diff --git a/net-misc/spice-gtk/spice-gtk-.ebuild 
b/net-misc/spice-gtk/spice-gtk-.ebuild
index cac0f2b7b32f..5d2a172d0ec3 100644
--- a/net-misc/spice-gtk/spice-gtk-.ebuild
+++ b/net-misc/spice-gtk/spice-gtk-.ebuild
@@ -69,7 +69,6 @@ DEPEND="${RDEPEND}
dev-perl/Text-CSV
dev-util/glib-utils
>=dev-util/gtk-doc-am-1.14
-   >=dev-util/intltool-0.40.0
>=sys-devel/gettext-0.17
virtual/pkgconfig
vala? ( $(vala_depend) )



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

2022-03-24 Thread Sam James
commit: d89a2a37c96f098273be31004f89e3c208fbef42
Author: Sam James  gentoo  org>
AuthorDate: Fri Mar 25 01:16:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Mar 25 01:48:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d89a2a37

dev-util/d-feet: drop obsolete intltool dependency

Dropped upstream in 
https://gitlab.gnome.org/GNOME/d-feet/-/commit/6cc2cada7b13a6e2f04a9129643aa619ae1126f2.

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

 dev-util/d-feet/d-feet-0.3.16.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-util/d-feet/d-feet-0.3.16.ebuild 
b/dev-util/d-feet/d-feet-0.3.16.ebuild
index 346847660580..2c8c11e710f2 100644
--- a/dev-util/d-feet/d-feet-0.3.16.ebuild
+++ b/dev-util/d-feet/d-feet-0.3.16.ebuild
@@ -33,7 +33,6 @@ RDEPEND="
 "
 BDEPEND="
dev-util/itstool
-   >=dev-util/intltool-0.40.0
test? ( dev-python/pycodestyle )
 "
 



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

2022-03-24 Thread Matthew Thode
commit: c2faaf773cc0076f4064340ac6fa515f3b45bf73
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Mar 25 01:35:14 2022 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Mar 25 01:40:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2faaf77

app-admin/puppet: 7.15.0 bump

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

 app-admin/puppet/Manifest |   1 +
 app-admin/puppet/puppet-7.15.0.ebuild | 127 ++
 2 files changed, 128 insertions(+)

diff --git a/app-admin/puppet/Manifest b/app-admin/puppet/Manifest
index 1714d1c78589..72ebe0b991c7 100644
--- a/app-admin/puppet/Manifest
+++ b/app-admin/puppet/Manifest
@@ -1,2 +1,3 @@
 DIST puppet-5.5.22.tar.gz 2998132 BLAKE2B 
8662c89190d0904fe44ffeca1cf9a9ddca40d57ba6fb2d1e644ca353ceb55b1ca3a91416f1eef2975233c9c4498784e7d7280c111ea0cc070870cadc69341d99
 SHA512 
5332b084a63bdf244672cc4751022c84a1cc50d3f394a13bdcbccf7fcf4ebea67953e88957f23046608bf25e9182548449be824c18289cb2bf1e3ed29b40dc58
 DIST puppet-7.14.0.tar.gz 2816077 BLAKE2B 
c4aacf7179208e801fad2aa384691e38ca4bd1329819d4ca15b7a3cf25c5787e8adef12c91d233c5adbc301ab77cdf9748f094a1904c78c62d6ac73dafb4a634
 SHA512 
36aaa9c8cce9d1c40e77eee1e3544c0b0c665bbfa3b8184401905d6f15c142be8490421af0dac57856849de343b288f67153c551db68f8cea9e0ed3ad251feb3
+DIST puppet-7.15.0.tar.gz 2817137 BLAKE2B 
ce76ad71251a9202d31e858706eb994c6210cbe97f31e56d95b8c36d541d0ce8d1e65ab33d399e7dca1c5ea8e7f4dfccb3a2a4d36baaed6ca31516b7e449bf2a
 SHA512 
0d68bda85a5f61fdb74c3e70304d414afef238dff4f7a4cd60c17f5cc26fcb18ba7f81065d6295adde33bc181031b458d259daa84a41156c9589f5c0e3cb8951

diff --git a/app-admin/puppet/puppet-7.15.0.ebuild 
b/app-admin/puppet/puppet-7.15.0.ebuild
new file mode 100644
index ..98baf706218d
--- /dev/null
+++ b/app-admin/puppet/puppet-7.15.0.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+USE_RUBY="ruby24 ruby25 ruby26 ruby27"
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+RUBY_FAKEGEM_TASK_DOC="doc:all"
+RUBY_FAKEGEM_EXTRAINSTALL="locales"
+
+inherit ruby-fakegem systemd tmpfiles
+
+DESCRIPTION="A system automation and configuration management software"
+HOMEPAGE="https://puppet.com/;
+SRC_URI="http://downloads.puppetlabs.com/puppet/${P}.tar.gz;
+
+LICENSE="Apache-2.0 GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+IUSE="augeas diff doc emacs ldap rrdtool selinux shadow sqlite vim-syntax"
+RESTRICT="test"
+
+ruby_add_rdepend "
+   dev-ruby/hiera
+   dev-ruby/json:=
+   dev-ruby/semantic_puppet
+   >=dev-ruby/facter-3.0.0
+   dev-ruby/concurrent-ruby
+   augeas? ( dev-ruby/ruby-augeas )
+   diff? ( dev-ruby/diff-lcs )
+   doc? ( dev-ruby/rdoc )
+   ldap? ( dev-ruby/ruby-ldap )
+   shadow? ( dev-ruby/ruby-shadow )
+   sqlite? ( dev-ruby/sqlite3 )
+   virtual/ruby-ssl
+   dev-ruby/hocon"
+
+ruby_add_bdepend "
+   doc? ( dev-ruby/yard )
+   test? (
+   dev-ruby/mocha
+   dev-ruby/rack
+   dev-ruby/rspec-its
+   )"
+# this should go in the above lists, but isn't because of test deps not being 
keyworded
+#   dev-ruby/rspec-collection_matchers
+
+RDEPEND+=" ${RDEPEND}
+   rrdtool? ( >=net-analyzer/rrdtool-1.2.23[ruby] )
+   selinux? (
+   sys-libs/libselinux[ruby]
+   sec-policy/selinux-puppet
+   )
+   vim-syntax? ( >=app-vim/puppet-syntax-3.0.1 )
+   >=app-portage/eix-0.18.0
+   acct-user/puppet
+   acct-group/puppet"
+PDEPEND="emacs? ( >=app-emacs/puppet-mode-0.3-r1 )"
+
+all_ruby_prepare() {
+   # Avoid spec that require unpackaged json-schema.
+   rm spec/lib/matchers/json.rb $( grep -Rl matchers/json spec) || die
+
+   # fix systemd path
+   eapply -p0 "${FILESDIR}/puppet-systemd.patch"
+
+   # Avoid specs that can only run in the puppet.git repository. This
+   # should be narrowed down to the specific specs.
+   rm spec/integration/parser/compiler_spec.rb || die
+
+   # Avoid failing spec that need further investigation.
+   rm spec/unit/module_tool/metadata_spec.rb || die
+}
+
+each_ruby_install() {
+   each_fakegem_install
+#  dosym "/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${P}" 
"/usr/$(get_libdir)/ruby/gems/$(ruby_get_version)/gems/${PN}"
+}
+
+all_ruby_install() {
+   all_fakegem_install
+
+   # systemd stuffs
+   systemd_dounit "${WORKDIR}/all/${P}/ext/systemd/puppet.service"
+
+   # tmpfiles stuff
+   newtmpfiles "${FILESDIR}/tmpfiles.d" "puppet.conf"
+
+   # openrc init stuff
+   newinitd "${FILESDIR}"/puppet.init-4.x puppet
+
+   keepdir /etc/puppetlabs/puppet/ssl
+
+   keepdir /var/lib/puppet/facts
+   keepdir /var/lib/puppet/files
+   fowners -R puppet:puppet /var/lib/puppet
+
+   fperms 0750 

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

2022-03-24 Thread Matthew Thode
commit: 3dfc50bc4f22e0a8a1b0994cbe7c2270cc9d7752
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Mar 25 01:36:54 2022 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Mar 25 01:40:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dfc50bc

app-admin/puppet-agent: 7.15.0 bump

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

 app-admin/puppet-agent/Manifest   |  2 +
 app-admin/puppet-agent/puppet-agent-7.15.0.ebuild | 91 +++
 2 files changed, 93 insertions(+)

diff --git a/app-admin/puppet-agent/Manifest b/app-admin/puppet-agent/Manifest
index fae2bfefb1fb..5f84e0a6b9f8 100644
--- a/app-admin/puppet-agent/Manifest
+++ b/app-admin/puppet-agent/Manifest
@@ -1,2 +1,4 @@
 DIST puppet-agent_7.14.0-1focal_amd64.deb 20339972 BLAKE2B 
3e7a230e73c1eb7d96317e7877fc1bf5dbfb44f2e8faa65a1ba08ca3c7c22115458797e1bf33450d5f45c11ed0a96c2973a0d6a0a83d98739ad52c90fe45f3af
 SHA512 
08cd94e1d5ed1a8827f43a60c80ab64a8370ecebab01cd9d8b6c36e99007a84d9b6d39a8a8eb6370b2e78f2360d4fc0b95bf85f8b59a38b44b4d94a4e266d4b7
 DIST puppet-agent_7.14.0-1focal_arm64.deb 19534676 BLAKE2B 
a809b4beb8c20ce2e45f1c2c552585403494ed2c0eca719077597106fcb91478bfe7cb12bcb420e5b093840fe41f4ae101c978df48690ea47940216dda7b293e
 SHA512 
4d57fe41d6943b3b6d643f55aead3264ed4f4aedd280e8fc0ed8504a1f7e0da1e9a06e9d7e2b4916f2de2c6726b3dcff3ce8096d02503443ad6e74b0528177bc
+DIST puppet-agent_7.15.0-1focal_amd64.deb 20342292 BLAKE2B 
4d8a322182b10462353b4fb78b8a655765e6b91e31626c34126862cf27d7863ed6dcfdf6d8545c9bfb2be25e42bd0f3f34c5726885dc6508eb71aa09646e647a
 SHA512 
b6887ef66c47fcfce7136e13ff96f7a8df8b11011fd9ec8cb01a79d8a7f7b77e43da63033d9c42446c4131ffe04e8bfaf5bdf70ba1cb6c37dcd1d6963024ef29
+DIST puppet-agent_7.15.0-1focal_arm64.deb 19533904 BLAKE2B 
234fc85f20df8bba9d1f33e84ac725326201984c041ab371dd645df2e6cce12b6c81481ceff01819dc884d3c8f6191d6e98aafbb78a6856733b4cc3255d0e905
 SHA512 
70f389bc29270317fc621ef7be2eea9764b490ae2da32fb3968bd2c966eec53ef7e65469ea7fd5069676e23feede48557575b9020783b50292b146cc17ae840e

diff --git a/app-admin/puppet-agent/puppet-agent-7.15.0.ebuild 
b/app-admin/puppet-agent/puppet-agent-7.15.0.ebuild
new file mode 100644
index ..3ef55d1516d2
--- /dev/null
+++ b/app-admin/puppet-agent/puppet-agent-7.15.0.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit systemd unpacker tmpfiles
+
+DESCRIPTION="general puppet client utils along with hiera and facter"
+HOMEPAGE="https://puppetlabs.com/;
+SRC_URI="amd64? ( 
http://apt.puppetlabs.com/pool/focal/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1focal_amd64.deb
 )
+arm64? ( 
http://apt.puppetlabs.com/pool/focal/puppet/${PN:0:1}/${PN}/${PN}_${PV}-1focal_arm64.deb
 )"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="puppetdb selinux"
+RESTRICT="strip"
+
+# virtual/libcrypt:= is in here despite being a pre-built package
+# to ensure that the has_version logic for the symlink doesn't become stale
+CDEPEND="!app-admin/puppet
+   !dev-ruby/hiera
+   !dev-ruby/facter
+   app-emulation/virt-what
+   acct-user/puppet
+   acct-group/puppet
+   virtual/libcrypt:="
+
+DEPEND="
+   ${CDEPEND}
+   app-admin/augeas"
+RDEPEND="${CDEPEND}
+   app-portage/eix
+   sys-apps/dmidecode
+   sys-libs/libselinux
+   sys-libs/glibc
+   sys-libs/readline:0/8
+   sys-libs/libxcrypt[compat]
+   sys-libs/ncurses:0[tinfo]
+   selinux? (
+   sys-libs/libselinux[ruby]
+   sec-policy/selinux-puppet
+   )
+   puppetdb? ( >=dev-ruby/puppetdb-termini-5.0.1 )"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_install() {
+   # conf.d
+   doconfd etc/default/puppet
+   doconfd etc/default/pxp-agent
+   # logrotate.d
+   insinto /etc/logrotate.d
+   doins etc/logrotate.d/pxp-agent
+   # puppet itself
+   insinto /etc/puppetlabs
+   doins -r etc/puppetlabs/*
+   # logdir for systemd
+   keepdir var/log/puppetlabs/puppet/
+   chmod 0750 var/log/puppetlabs/puppet/
+   # the rest
+   insinto /opt
+   dodir opt/puppetlabs/puppet/cache
+   doins -r opt/*
+   fperms 0750 /opt/puppetlabs/puppet/cache
+   # init
+   newinitd "${FILESDIR}/puppet.initd2" puppet
+   systemd_dounit lib/systemd/system/puppet.service
+   systemd_dounit lib/systemd/system/pxp-agent.service
+   newtmpfiles usr/lib/tmpfiles.d/puppet-agent.conf puppet-agent.conf
+   # symlinks
+   chmod 0755 -R "${D}/opt/puppetlabs/puppet/bin/"
+   dosym ../../opt/puppetlabs/bin/facter /usr/bin/facter
+   dosym ../../opt/puppetlabs/bin/hiera /usr/bin/hiera
+   dosym ../../opt/puppetlabs/bin/puppet /usr/bin/puppet
+
+   # Handling of the path to the crypt library during the ongoing migration
+   # from glibc[crypt] to libxcrypt
+   # 

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

2022-03-24 Thread Matthew Thode
commit: 5667f45d5e02c8537b1217a6a719b487852cd467
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Mar 25 01:39:52 2022 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Mar 25 01:40:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5667f45d

app-admin/puppetserver: 7.6.1 bump

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

 app-admin/puppetserver/Manifest  |   1 +
 app-admin/puppetserver/puppetserver-7.6.1.ebuild | 131 +++
 2 files changed, 132 insertions(+)

diff --git a/app-admin/puppetserver/Manifest b/app-admin/puppetserver/Manifest
index 136c4c74ecd5..e23e9ae63cb4 100644
--- a/app-admin/puppetserver/Manifest
+++ b/app-admin/puppetserver/Manifest
@@ -1 +1,2 @@
 DIST puppetserver-7.6.0.tar.gz 63322828 BLAKE2B 
252ad828b4066a1b928c17f3b7a62c08e46f969abcd046a5e5a9b2e03856d0a336f1c3c85474323095c43b5bd61c47b48f7aa811ca58e2917b0d70256cdbcde8
 SHA512 
8c00380a814a9722aaa2b2125124635aa1983ad4dc028a59d9f2dd9789f79f81a2c9a76447fa34b029ba87a48502e8db5ded597d054f11250c403a4058d810db
+DIST puppetserver-7.6.1.tar.gz 64646806 BLAKE2B 
4905504e68ee2dbbe0705553da3ee73826dc6bd50cc9ea8e62f3a4f9b5f67e53e829a0faa465fcf3b76dd85288eef71e472f272b0506c5e951b5d88df4274c9f
 SHA512 
5a76e0053f41bf51cb0c4f79a6785e7759ba4ecaeadb84ce3dc777a288910d355bbeb0efc438eb3fddc09b7f7471526124bbfd076bff9091eecb341f3958130b

diff --git a/app-admin/puppetserver/puppetserver-7.6.1.ebuild 
b/app-admin/puppetserver/puppetserver-7.6.1.ebuild
new file mode 100644
index ..6877b38e3a99
--- /dev/null
+++ b/app-admin/puppetserver/puppetserver-7.6.1.ebuild
@@ -0,0 +1,131 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd tmpfiles
+
+DESCRIPTION="Puppet Server is the next-generation application for managing 
Puppet agents"
+HOMEPAGE="http://docs.puppetlabs.com/puppetserver/;
+SRC_URI="https://downloads.puppetlabs.com/puppet/${P}.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE="puppetdb"
+# will need the same keywords in puppet-agent (puppet-agent now has arm64)
+KEYWORDS="~amd64"
+
+RDEPEND+="
+   >=virtual/jdk-1.8.0
+   app-admin/puppet-agent[puppetdb?]"
+DEPEND+="acct-user/puppet
+   acct-group/puppet"
+
+src_prepare() {
+   sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' 
ext/redhat/puppetserver.service || die
+   sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' 
ext/bin/puppetserver || die
+   sed -i 's/sysconfig\/puppetserver/default\/puppetserver/g' install.sh 
|| die
+   sed -i 's/var\/run/run/g' ext/config/conf.d/puppetserver.conf || die
+   sed -i 's/var\/run/run/g' ext/redhat/puppetserver.service || die
+   sed -i 's/var\/run/run/g' install.sh || die
+   default
+}
+
+src_compile() {
+   einfo "not compiling"
+}
+
+src_install() {
+   insinto /opt/puppetlabs/server/apps/puppetserver
+   insopts -m0774
+   doins ext/ezbake-functions.sh
+   insopts -m0644
+   doins ext/ezbake.manifest
+   doins puppet-server-release.jar
+   insinto /etc/puppetlabs/puppetserver
+   doins ext/config/logback.xml
+   doins ext/config/request-logging.xml
+   insinto /etc/puppetlabs/puppetserver/services.d
+   doins ext/system-config/services.d/bootstrap.cfg
+   doins ext/config/services.d/ca.cfg
+   insinto /etc/puppetlabs/puppetserver/conf.d
+   doins ext/config/conf.d/puppetserver.conf
+   doins ext/config/conf.d/auth.conf
+   doins ext/config/conf.d/global.conf
+   doins ext/config/conf.d/web-routes.conf
+   doins ext/config/conf.d/metrics.conf
+   doins ext/config/conf.d/webserver.conf
+   insopts -m0755
+   insinto /opt/puppetlabs/server/apps/puppetserver/scripts
+   doins install.sh
+   insinto /opt/puppetlabs/server/apps/puppetserver/cli/apps
+   doins ext/cli/ca
+   doins ext/cli/irb
+   doins ext/cli/foreground
+   doins ext/cli/gem
+   doins ext/cli/ruby
+   doins ext/cli/reload
+   doins ext/cli/start
+   doins ext/cli/stop
+   insinto /opt/puppetlabs/server/apps/puppetserver/cli
+   doins ext/cli_defaults/cli-defaults.sh
+   insinto /opt/puppetlabs/server/apps/puppetserver/bin
+   doins ext/bin/puppetserver
+   insopts -m0644
+   dodir /opt/puppetlabs/server/bin
+   dosym ../apps/puppetserver/bin/puppetserver 
/opt/puppetlabs/server/bin/puppetserver
+   dodir /opt/puppetlabs/bin
+   dosym ../server/apps/puppetserver/bin/puppetserver 
/opt/puppetlabs/bin/puppetserver
+   dosym ../../opt/puppetlabs/server/apps/puppetserver/bin/puppetserver 
/usr/bin/puppetserver
+   dodir /opt/puppetlabs/server/apps/puppetserver/config/services.d
+   # other sys stuff
+   dodir /etc/puppetlabs/code
+   # needed for systemd
+   keepdir /var/log/puppetlabs/puppetserver
+   dodir 

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

2022-03-24 Thread Matthew Thode
commit: 9f751664773d27cd11300c3e5a48dff3b0d26054
Author: Matthew Thode  gentoo  org>
AuthorDate: Fri Mar 25 01:37:51 2022 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Fri Mar 25 01:40:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9f751664

app-admin/puppetdb: 7.10.0 bump

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

 app-admin/puppetdb/Manifest   |  1 +
 app-admin/puppetdb/puppetdb-7.10.0.ebuild | 90 +++
 2 files changed, 91 insertions(+)

diff --git a/app-admin/puppetdb/Manifest b/app-admin/puppetdb/Manifest
index 7d5570c140a4..aaa36921b413 100644
--- a/app-admin/puppetdb/Manifest
+++ b/app-admin/puppetdb/Manifest
@@ -1 +1,2 @@
+DIST puppetdb-7.10.0.tar.gz 48764663 BLAKE2B 
912f779f8d409936122030469152865b50ce71c9b41dee6df1e2f9ada48a1be6ea2a5aa5901a95111cf18e9bd971753839fc461c993f9ffd1c82c367eff9aa7d
 SHA512 
84a8b5071fe7db24b37245c6a1c0215f7720a1bb72aca7531f7957fd65cebe2f7b3090e913be0c4a68d9f94d19f739f23837bd858ad61ad1706b76b18fe5b0b0
 DIST puppetdb-7.9.0.tar.gz 48143509 BLAKE2B 
bd08f4127cd68080c7c7f2b9acd571a2fd0e6af4cc36b920eca5e420a2149dbc1c5dcfbb5ac152730e88b0e751f5acd42c5e8c2457673ccbba26fc40258c07d5
 SHA512 
b24a3233a08fe80c5e3b78bc05262cefb27c6d307cbd8f98c74766157db72d15c0f114c5c3cccd7733b9bb99ff9c7f229b6625af5e7b2ce7b6d349322507654d

diff --git a/app-admin/puppetdb/puppetdb-7.10.0.ebuild 
b/app-admin/puppetdb/puppetdb-7.10.0.ebuild
new file mode 100644
index ..343b744bedeb
--- /dev/null
+++ b/app-admin/puppetdb/puppetdb-7.10.0.ebuild
@@ -0,0 +1,90 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit systemd tmpfiles
+
+DESCRIPTION="PuppetDB collects data generated by Puppet"
+HOMEPAGE="http://docs.puppetlabs.com/puppetdb/;
+SRC_URI="https://downloads.puppetlabs.com/${PN}/${P}.tar.gz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND+=">=virtual/jdk-1.8.0"
+DEPEND+="acct-user/puppetdb
+   acct-group/puppetdb"
+
+src_prepare() {
+   sed -i 's/sysconfig/conf\.d/g' ext/redhat/puppetdb.service || die
+   sed -i 's/sysconfig/conf\.d/g' ext/bin/puppetdb || die
+   sed -i 's/sysconfig/conf\.d/g' install.sh || die
+   sed -i 's/var\/run/run/g' ext/puppetdb.tmpfiles.conf || die
+   sed -i 's/var\/run/run/g' install.sh || die
+   default
+}
+
+src_compile() {
+   einfo "not compiling"
+}
+
+src_install() {
+   dodir /opt/puppetlabs/server/data/puppetdb
+   insinto /opt/puppetlabs/server/apps/puppetdb
+   insopts -m0744
+   doins ext/ezbake-functions.sh
+   insopts -m0644
+   doins ext/ezbake.manifest
+   doins puppetdb.jar
+   insinto /etc/puppetlabs/puppetdb
+   doins ext/config/logback.xml
+   doins ext/config/bootstrap.cfg
+   doins ext/config/request-logging.xml
+   insinto /etc/puppetlabs/puppetdb/conf.d
+   doins ext/config/conf.d/jetty.ini
+   doins ext/config/conf.d/repl.ini
+   doins ext/config/conf.d/database.ini
+   doins ext/config/conf.d/config.ini
+   doins ext/config/conf.d/auth.conf
+   insopts -m0755
+   insinto /opt/puppetlabs/server/apps/puppetdb/scripts
+   doins install.sh
+   insinto /opt/puppetlabs/server/apps/puppetdb/cli/apps
+   doins ext/cli/foreground
+   doins ext/cli/ssl-setup
+   doins ext/cli/config-migration
+   doins ext/cli/foreground
+   doins ext/cli/anonymize
+   doins ext/cli/reload
+   doins ext/cli/start
+   doins ext/cli/stop
+   insinto /opt/puppetlabs/server/apps/puppetdb/bin
+   doins ext/bin/puppetdb
+   insopts -m0644
+   dodir /opt/puppetlabs/server/bin
+   dosym ../apps/puppetdb/bin/puppetdb /opt/puppetlabs/server/bin/puppetdb
+   dodir /opt/puppetlabs/bin
+   dosym ../server/apps/puppetdb/bin/puppetdb /opt/puppetlabs/bin/puppetdb
+   dosym ../../opt/puppetlabs/server/apps/puppetdb/bin/puppetdb 
/usr/bin/puppetdb
+   # init type tasks
+   newconfd ext/default puppetdb
+   systemd_dounit ext/redhat/puppetdb.service
+   newtmpfiles ext/puppetdb.tmpfiles.conf puppetdb.conf
+   newinitd "${FILESDIR}/puppetdb.initd-r2" puppetdb
+   # misc
+   insinto /etc/logrotate.d
+   newins ext/puppetdb.logrotate.conf puppetdb
+   fowners -R puppetdb:puppetdb /opt/puppetlabs/server/data/puppetdb
+   fperms -R 770 /opt/puppetlabs/server/data/puppetdb
+}
+
+pkg_postinst() {
+   tmpfiles_process puppetdb.conf
+
+   elog "to install please run '/opt/puppetlabs/server/bin/puppetdb 
ssl-setup'"
+   elog
+   elog "to upgrade please run '/opt/puppetlabs/server/bin/puppetdb 
config-migration'"
+}



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

2022-03-24 Thread Marek Szuba
commit: b39da955044ee101dc21cfd0961cc38089517196
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Mar 25 00:13:08 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Mar 25 00:13:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b39da955

dev-python/pytest-helpers-namespace: keyword 2021.3.24 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 .../pytest-helpers-namespace-2021.3.24.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/dev-python/pytest-helpers-namespace/pytest-helpers-namespace-2021.3.24.ebuild 
b/dev-python/pytest-helpers-namespace/pytest-helpers-namespace-2021.3.24.ebuild
index b8308edaf17e..4022f5c76182 100644
--- 
a/dev-python/pytest-helpers-namespace/pytest-helpers-namespace-2021.3.24.ebuild
+++ 
b/dev-python/pytest-helpers-namespace/pytest-helpers-namespace-2021.3.24.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 RDEPEND="dev-python/pytest[${PYTHON_USEDEP}]"
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-vim/salt-vim/

2022-03-24 Thread Marek Szuba
commit: 533a8301e657aeb81cb03fbac199df2e279153d5
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Mar 25 00:10:18 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Mar 25 00:10:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=533a8301

app-vim/salt-vim: keyword 20151119 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 app-vim/salt-vim/salt-vim-20151119.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-vim/salt-vim/salt-vim-20151119.ebuild 
b/app-vim/salt-vim/salt-vim-20151119.ebuild
index c094923f3dc7..902c767a5ace 100644
--- a/app-vim/salt-vim/salt-vim-20151119.ebuild
+++ b/app-vim/salt-vim/salt-vim-20151119.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ DESCRIPTION="Vim files for working on Salt files"
 HOMEPAGE="https://github.com/saltstack/salt-vim;
 SRC_URI="https://github.com/saltstack/${PN}/archive/${SALT_VIM_HASH}.tar.gz -> 
${P}.tar.gz"
 LICENSE="Apache-2.0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 RDEPEND="!<=app-admin/salt-2015.5.6
!~app-admin/salt-2015.8.0



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

2022-03-24 Thread Marek Szuba
commit: 39d89388d1b47533f7917e8b510a680e1ff83beb
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Mar 25 00:11:56 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Mar 25 00:11:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39d89388

dev-python/yappi: keyword 1.3.3 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/yappi/yappi-1.3.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/yappi/yappi-1.3.3.ebuild 
b/dev-python/yappi/yappi-1.3.3.ebuild
index 58c7f2ec81a7..5f43f725efa2 100644
--- a/dev-python/yappi/yappi-1.3.3.ebuild
+++ b/dev-python/yappi/yappi-1.3.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -19,7 +19,7 @@ S="${WORKDIR}/${PN}-${COMMIT_HASH}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 BDEPEND="test? ( dev-python/gevent[${PYTHON_USEDEP}] )"
 



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

2022-03-24 Thread Marek Szuba
commit: f36e225cf7205d4837b5c8dad1ee547d48bbc6e0
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Mar 25 00:11:26 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Mar 25 00:11:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f36e225c

dev-python/lockfile: keyword 0.12.2-r2 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/lockfile/lockfile-0.12.2-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/lockfile/lockfile-0.12.2-r2.ebuild 
b/dev-python/lockfile/lockfile-0.12.2-r2.ebuild
index 1e2e089dd5cc..1d9b54e15ac9 100644
--- a/dev-python/lockfile/lockfile-0.12.2-r2.ebuild
+++ b/dev-python/lockfile/lockfile-0.12.2-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 
 BDEPEND=">dev-python/pbr-1.8[${PYTHON_USEDEP}]"
 



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

2022-03-24 Thread Marek Szuba
commit: ebb0a0e35ea82080798750eaa542330aeb5e6e42
Author: Marek Szuba  gentoo  org>
AuthorDate: Fri Mar 25 00:12:39 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Fri Mar 25 00:12:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebb0a0e3

dev-python/pytest-tempdir: keyword 2019.10.12 for ~riscv

Signed-off-by: Marek Szuba  gentoo.org>

 dev-python/pytest-tempdir/pytest-tempdir-2019.10.12.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/pytest-tempdir/pytest-tempdir-2019.10.12.ebuild 
b/dev-python/pytest-tempdir/pytest-tempdir-2019.10.12.ebuild
index 0720ff8875bd..8975450b6b5f 100644
--- a/dev-python/pytest-tempdir/pytest-tempdir-2019.10.12.ebuild
+++ b/dev-python/pytest-tempdir/pytest-tempdir-2019.10.12.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,6 +12,6 @@ 
SRC_URI="https://github.com/saltstack/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 distutils_enable_tests --install pytest



[gentoo-commits] repo/gentoo:master commit in: profiles/default/linux/amd64/17.0/musl/clang/

2022-03-24 Thread Andreas K. Hüttel
commit: 3652fdd67f01c95650536b816c1bcc13fc5df89a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Mar 25 00:03:55 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Mar 25 00:04:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3652fdd6

profiles: musl/clang: modify CHOST due to libcxx default

Signed-off-by: Andreas K. Hüttel  gentoo.org>

 profiles/default/linux/amd64/17.0/musl/clang/make.defaults | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/default/linux/amd64/17.0/musl/clang/make.defaults 
b/profiles/default/linux/amd64/17.0/musl/clang/make.defaults
new file mode 100644
index ..0733def06ac2
--- /dev/null
+++ b/profiles/default/linux/amd64/17.0/musl/clang/make.defaults
@@ -0,0 +1,6 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# To avoid messy ABI problems, we change the CHOST when libcxx is default.
+CHOST="x86_64-libcxx-linux-musl"
+CHOST_amd64="${CHOST}"



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

2022-03-24 Thread Michał Górny
commit: 7b68e2caf6983bb4cf7e476540d5862e403d9b01
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:22:16 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b68e2ca

dev-python/mypy: Bump to 0.942

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

 dev-python/mypy/Manifest  |  1 +
 dev-python/mypy/mypy-0.942.ebuild | 66 +++
 2 files changed, 67 insertions(+)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index ed810db0f004..4437c142098e 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -4,3 +4,4 @@ DIST mypy-0.930.tar.gz 2777310 BLAKE2B 
4681991993b04679d21c8f6bf8327a02eb628addc
 DIST mypy-0.931.tar.gz 2779826 BLAKE2B 
11986102c6bc498a23bae52002e6ac515fa03724eed867b5356e3fb9aaa9a6eb7e699b612ab81b99dac215119402beecc702421fa82d655913976889dd4cb833
 SHA512 
8a336ae2f784c8ff912fc6b7dd53ed106cf14f435cee65604de74b8d4d7ab39ad65af0646060ef78e958d5a51a1de090fad628461412f2eef9593a8c032aa87a
 DIST mypy-0.940.tar.gz 2700469 BLAKE2B 
4ac13002c3752566ade30a720c4de56d600552221c42f930af54a68573e6b5eb10de90ce66e2cd42f9eb419d5d09e354e4bf2d09cbcf0d6b841ab0e6710d7058
 SHA512 
5131ea3fe8d96f12442c68dddf04261582a063dcdd031804276263949af9f9af967be3dd775868d289709987773e1911f33e1f43951389f93cabf91c771e271f
 DIST mypy-0.941.tar.gz 2700297 BLAKE2B 
1d0369336b82c167dc25da8bcc21817b351a65a2543727f08c2e14aa15a75fec21b0937eb09b8060b405c09703b8052d4ed2df65d6e27f5dd429998b110a9e35
 SHA512 
39ef6e0d9215f0f530ca572d3b701a877f9b968034c2ca5a04549bf6a337a8d3609c23bc45bf45b16209128d26ab2b74bca27ecbdc5de53581429b47fb348aa8
+DIST mypy-0.942.tar.gz 2701940 BLAKE2B 
5501466e57b4afb8825e6c804cbdc270c79ff457c39f2e5834f4b68df70263c05b2b9abb08fe58202ee65f5e22d2291f39fcb1fc47168416134538c5f6e12ab3
 SHA512 
79b83587eefad10d7d20d3bfd8484a9e8b2d363e68c1e5ffaa3a82ca8b8f8d9183036ea46695a634f9156911d6f918af684ac636105b37b3a5d0e958f5d661f4

diff --git a/dev-python/mypy/mypy-0.942.ebuild 
b/dev-python/mypy/mypy-0.942.ebuild
new file mode 100644
index ..aa40a8f0ad7f
--- /dev/null
+++ b/dev-python/mypy/mypy-0.942.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Optional static typing for Python"
+HOMEPAGE="http://www.mypy-lang.org/;
+SRC_URI="https://github.com/python/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+# stubgen collides with this package: https://bugs.gentoo.org/585594
+RDEPEND="
+   !dev-util/stubgen
+   >=dev-python/psutil-4[${PYTHON_USEDEP}]
+   >=dev-python/typed-ast-1.4.0[${PYTHON_USEDEP}]
+   =dev-python/typing-extensions-3.7.4[${PYTHON_USEDEP}]
+   >=dev-python/mypy_extensions-0.4.3[${PYTHON_USEDEP}]
+   https://github.com/python/mypy/issues/11019
+   mypy/test/teststubtest.py
+   # fails due to setuptools deprecation warnings
+   mypyc/test/test_run.py::TestRun::run-imports.test::testImports
+   )
+
+   [[ "${EPYTHON}" == "python3.10" ]] && EPYTEST_DESELECT+=(
+   # https://github.com/python/mypy/issues/11018
+   mypyc/test/test_commandline.py::TestCommandLine::testErrorOutput
+   )
+
+   # Some mypy/test/testcmdline.py::PythonCmdlineSuite tests
+   # fail with high COLUMNS values
+   local -x COLUMNS=80
+   epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}



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

2022-03-24 Thread Michał Górny
commit: 765421bb3a046631954eea3f7df79316f5146d3f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:18:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765421bb

dev-python/trimesh: Bump to 3.10.6

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

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

diff --git a/dev-python/trimesh/Manifest b/dev-python/trimesh/Manifest
index 050b8d82ac8d..42c7aa61908c 100644
--- a/dev-python/trimesh/Manifest
+++ b/dev-python/trimesh/Manifest
@@ -2,3 +2,4 @@ DIST trimesh-3.10.0.tar.gz 10736418 BLAKE2B 
9e65e9e5bc3984d1dca5c5d4a0498ff1f635
 DIST trimesh-3.10.1.tar.gz 10738596 BLAKE2B 
9dc310b3e2b26fcf85f8c15841e5db1cf0edfb52593b3d89ee7ccb0678df2e9261f79cc9ed6709b5cad2ed633b220daa4f0fcb88da27bd942d1973d89968f147
 SHA512 
555777569c5bbfda2b93cc52ec21dfb9efecda30f3c0283415249a742b3717df8dcea9ce9cf79e42419d1bdafcad34795dd198f80b5e8a791f7cfb1a9cc2a17a
 DIST trimesh-3.10.2.gh.tar.gz 10738967 BLAKE2B 
70aecc2d7524eec7eb5499f2926072139bab26cadd24a7f2200975ba1d15d7ee2a264efa124be69669f70c2a3026aa67ff3c6f56156dbf940027b48b57de4f9f
 SHA512 
3fed75b26187dc8b682e7befd7c23c96a33cb3375255a26b3c80513d8ea9b2308f7570940a8c11da1455bd7acf5b89aead65a9743d76d2adf8e6faf5260a6b77
 DIST trimesh-3.10.3.gh.tar.gz 10739164 BLAKE2B 
558e9b66b6398b10ffaa1117f07d1ea7464d5e230d201473cf24efbb2e88e534883cc33fc13a6e217f76d5d40dc5f507b5fdca73f4275a79e67ac8a654c8199d
 SHA512 
0f20e77bb4c94a723aa50a15cb0c401d410d4112ef936e4340ad45ca2b88ee42881a02c280bc51635f443c4c38078db218b334405c3de9fc7236f6bc3cef3855
+DIST trimesh-3.10.6.gh.tar.gz 10740778 BLAKE2B 
3e0b456f44b557d0176e8c2bcde36e49c01c2d95468329453dd4bbbc3253d2f2a2e5ad6ee3201def0c8c657e9521fcad9d2b33c43fc1d44337cca3b0ec6f1826
 SHA512 
df83d2b31f33d448ab321cf32c8ca37689ca201dbd8a963166e33be8266120db9ac4749c7360f3739f8289a755a7d40ea2c4b09cd4c2e07851adce0be743081c

diff --git a/dev-python/trimesh/trimesh-3.10.6.ebuild 
b/dev-python/trimesh/trimesh-3.10.6.ebuild
new file mode 100644
index ..45da22f2c5ec
--- /dev/null
+++ b/dev-python/trimesh/trimesh-3.10.6.ebuild
@@ -0,0 +1,62 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 multiprocessing optfeature
+
+DESCRIPTION="Python library for loading and using triangular meshes"
+HOMEPAGE="https://trimsh.org/ https://github.com/mikedh/trimesh;
+# No tests in PyPI tarballs
+SRC_URI="
+   https://github.com/mikedh/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+RDEPEND="
+   dev-python/chardet[${PYTHON_USEDEP}]
+   dev-python/colorlog[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/msgpack[${PYTHON_USEDEP}]
+   dev-python/networkx[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[${PYTHON_USEDEP}]
+   dev-python/pycollada[${PYTHON_USEDEP}]
+   dev-python/pyglet[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/svg-path[${PYTHON_USEDEP}]
+   dev-python/sympy[${PYTHON_USEDEP}]
+   dev-python/xxhash[${PYTHON_USEDEP}]
+   sci-libs/rtree[${PYTHON_USEDEP}]
+   sci-libs/shapely[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}
+
+pkg_postinst() {
+   optfeature_header "${PN} functionality can be extended by installing 
the following packages:"
+   optfeature "making GUI applications with 3D stuff" dev-python/glooey
+   optfeature "2D triangulations of polygons" dev-python/mapbox_earcut
+   optfeature "loading a number of additional mesh formats" 
dev-python/meshio
+   optfeature "figuring out how much memory we have" dev-python/psutil
+   optfeature "marching cubes and other nice stuff" sci-libs/scikit-image
+}



[gentoo-commits] repo/gentoo:master commit in: net-misc/electrum/

2022-03-24 Thread Michał Górny
commit: 7216dfde5614570e91950eea041096efed51f7ce
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:23:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7216dfde

net-misc/electrum: Bump to 4.2.1

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

 net-misc/electrum/Manifest  |  1 +
 net-misc/electrum/electrum-4.2.1.ebuild | 93 +
 2 files changed, 94 insertions(+)

diff --git a/net-misc/electrum/Manifest b/net-misc/electrum/Manifest
index b02cfe8a1024..0de148fa01b2 100644
--- a/net-misc/electrum/Manifest
+++ b/net-misc/electrum/Manifest
@@ -1,2 +1,3 @@
 DIST electrum-4.1.5.gh.tar.gz 4998188 BLAKE2B 
c33f1a8fa2af68370319a4f4fefe4d1814a20870114f4929d53bf90eca6bbb555cf9e52681f329d18dec32642ee21ee0e32558ec817936291296ce8e196c8fb1
 SHA512 
9430dfde6d6e78bb71db416cd35f474b44e234d69421b370dc7e4b09584ad86e095051dcf1366c142d5e6c3029aca617b4fb383f50904fc43d2f7f99053b1c92
 DIST electrum-4.2.0.gh.tar.gz 5065087 BLAKE2B 
800667f2661ef45fae7e7f2d73229810eb490e90a9bea7ff84c04c3cf859f07ac71972658a52f802817a42de7eeb0084c6b0e1aba74733918f250228996f0641
 SHA512 
72c8afcd2f3fc3de2b8b6516dc82355718c7dc9a88b06ba91d8e3a3d1e2bf329c02cfc8ea9dc22aff88fbde622dd443606f14e11e0bf8050da5765cd9be75a83
+DIST electrum-4.2.1.gh.tar.gz 5066728 BLAKE2B 
66b1ef4ec21f74f2f5c25de97a31c2ec23f907526df2ac661fdcb563e1e857ca88f4f534f2373e809ba978c66b78af72260af27944ac7aa8a92e86531827fef6
 SHA512 
b32ee5f8779bdb9bcda6a163f3f0a4cd95e91efb37418734c9f08930221ad15e54868fca0d5d0fb1dd3b1fac91b8cdea6c6ec822d98ad6b3d6ee01c841972e88

diff --git a/net-misc/electrum/electrum-4.2.1.ebuild 
b/net-misc/electrum/electrum-4.2.1.ebuild
new file mode 100644
index ..02786de94c6c
--- /dev/null
+++ b/net-misc/electrum/electrum-4.2.1.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_REQ_USE="ncurses?"
+
+inherit desktop distutils-r1 xdg-utils
+
+DESCRIPTION="User friendly Bitcoin client"
+HOMEPAGE="https://electrum.org/;
+SRC_URI="
+   https://github.com/spesmilo/electrum/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="cli ncurses qrcode +qt5"
+REQUIRED_USE="|| ( cli ncurses qt5 )"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-libs/libsecp256k1
+   >=dev-python/aiohttp-socks-0.3[${PYTHON_USEDEP}]
+   =dev-python/aiorpcX-0.22*[${PYTHON_USEDEP}]
+   >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
+   dev-python/bitstring[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   >=dev-python/dnspython-2[${PYTHON_USEDEP}]
+   dev-python/pbkdf2[${PYTHON_USEDEP}]
+   dev-python/PySocks[${PYTHON_USEDEP}]
+   dev-python/qrcode[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   >=dev-python/protobuf-python-3.12[${PYTHON_USEDEP}]
+   qrcode? ( media-gfx/zbar[v4l] )
+   qt5? (
+   dev-python/PyQt5[gui,widgets,${PYTHON_USEDEP}]
+   )
+   ncurses? ( $(python_gen_impl_dep 'ncurses') )
+"
+BDEPEND="
+   test? (
+   dev-python/pyaes[${PYTHON_USEDEP}]
+   dev-python/pycryptodome[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   eapply "${FILESDIR}/3.1.2-no-user-root.patch"
+
+   # Prevent icon from being installed in the wrong location
+   sed -i '/icons_dirname/d' setup.py || die
+
+   # use backwards-compatible cryptodome API
+   sed -i -e 's:Cryptodome:Crypto:' electrum/crypto.py || die
+
+   local bestgui
+   if use qt5; then
+   bestgui=qt
+   elif use ncurses; then
+   bestgui=text
+   else
+   bestgui=stdio
+   fi
+   sed -i 's/^\([[:space:]]*\)\(config_options\['\''cwd'\''\] = 
.*\)$/\1\2\n\1config_options.setdefault("gui", "'"${bestgui}"'")\n/' 
${PN}/${PN} || die
+
+   eapply_user
+
+   xdg_environment_reset
+   distutils-r1_src_prepare
+}
+
+src_install() {
+   doicon -s 128 electrum/gui/icons/${PN}.png
+   dodoc RELEASE-NOTES
+   distutils-r1_src_install
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+}



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

2022-03-24 Thread Michał Górny
commit: 6022c8bc079c0ea59741ad5d6690bb9e5abe7161
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:23:09 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6022c8bc

dev-python/itsdangerous: Bump to 2.1.2

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

 dev-python/itsdangerous/Manifest  |  1 +
 dev-python/itsdangerous/itsdangerous-2.1.2.ebuild | 25 +++
 2 files changed, 26 insertions(+)

diff --git a/dev-python/itsdangerous/Manifest b/dev-python/itsdangerous/Manifest
index 74fe3cb081da..5e96ddf5332d 100644
--- a/dev-python/itsdangerous/Manifest
+++ b/dev-python/itsdangerous/Manifest
@@ -1,2 +1,3 @@
 DIST itsdangerous-1.1.0.tar.gz 53219 BLAKE2B 
6ad74dacb9728e77d57ac5e364e79e3cc749be206fa03e82a407cdd77b5b72ddb4861bf181772915e684539e6404c6a45f6081c7c8e17a33a2d532b4fc3fed80
 SHA512 
61bab3fce5f87a3b5fc8fad61e735a63df6aa039416ee3494e1c99a2a1162b4fb72793bc5dc949de0985724c40121810b159513606c4c3976a7666dba3a1b93d
 DIST itsdangerous-2.1.1.tar.gz 56217 BLAKE2B 
8b35b32ce0d9a5432079199165f9d7a43dee80775737bfde637820a86c6c2c4cf122914958d4e88466446b75deaf4dfe995c9cda64c254793056e5773136d07d
 SHA512 
54ec17e540fc7c39e5880c044c1ce60b1141355cc341dc96eefbfd8f12e3018eadd531081a00aa719736b9af437bafe147dd5fee456d8b4478f7107aacdb
+DIST itsdangerous-2.1.2.tar.gz 56143 BLAKE2B 
4c36cb26bcc6b6821b92b88b0254711ebe00bfda2193cecf0a7eb1fd514806f366fc0b4dc587a383003ec1272a2bc732418a46b44fa711beaedc06c379635ddc
 SHA512 
e4d870a33992b309ed778f403c0c1e098983a693d1165260748bf36385ebfadb583811e05ddd48001a33cf6a4e963b7dd8a8c68919c5b4b86f63621d8869e259

diff --git a/dev-python/itsdangerous/itsdangerous-2.1.2.ebuild 
b/dev-python/itsdangerous/itsdangerous-2.1.2.ebuild
new file mode 100644
index ..629fdcbd42a3
--- /dev/null
+++ b/dev-python/itsdangerous/itsdangerous-2.1.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Various helpers to pass trusted data to untrusted environments 
and back"
+HOMEPAGE="https://pythonhosted.org/itsdangerous/ 
https://pypi.org/project/itsdangerous/;
+SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+
+BDEPEND="
+   test? (
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-03-24 Thread Michał Górny
commit: f3cdd956aa70969358e3a5b8638dabd9380cc658
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:16:02 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3cdd956

dev-python/pylint: Bump to 2.13.0

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

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

diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
index ee99635a75bf..9589e3c0993e 100644
--- a/dev-python/pylint/Manifest
+++ b/dev-python/pylint/Manifest
@@ -1 +1,2 @@
 DIST pylint-2.12.2.gh.tar.gz 1032702 BLAKE2B 
de7dce04159b332baa5c23f4034ee249e49f9239c5c9190213a51a84a47ac2129f8a2265e1ad9c01ab448ec58f4f36653c6de5b0be6bfdf6aa286c8887313759
 SHA512 
0d2b9b785371af0a1c809271153abbab58f50455b34f12370461ded2c4f3d62656e4c0391adff48e179b95da945a2f44e762863e2b7d63808976bf5f684e20d2
+DIST pylint-2.13.0.gh.tar.gz 1114326 BLAKE2B 
2d99ae38474a13ecf0b306b2de445b93ef39c4ed286abdbc62e08580b34ea22615983bded024f87eb4ad5e9cfdd12edbab6e7bf841d4e7827c945e798f31771f
 SHA512 
7ca5fdf6d5835886ae01937fad56319cc9b71248d7a8aa6c6d92ba4bf5d35340ec0a16c1b2029d1ca5170f8c3abd29b1d6915a415d5df3c0949f4f9c0d6a690c

diff --git a/dev-python/pylint/pylint-2.13.0.ebuild 
b/dev-python/pylint/pylint-2.13.0.ebuild
new file mode 100644
index ..5b4c20ed49cd
--- /dev/null
+++ b/dev-python/pylint/pylint-2.13.0.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python code static checker"
+HOMEPAGE="
+   https://www.logilab.org/project/pylint
+   https://pypi.org/project/pylint/
+   https://github.com/pycqa/pylint/
+"
+SRC_URI="
+   https://github.com/pycqa/pylint/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+IUSE="examples"
+
+# Make sure to check https://github.com/PyCQA/pylint/blob/main/setup.cfg#L43 
on bumps
+# Adjust dep bounds!
+RDEPEND="
+   =dev-python/astroid-2.11.0[${PYTHON_USEDEP}]
+   >=dev-python/dill-0.2[${PYTHON_USEDEP}]
+   >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
+   =dev-python/mccabe-0.6[${PYTHON_USEDEP}]
+   =dev-python/platformdirs-2.2.0[${PYTHON_USEDEP}]
+   >=dev-python/tomli-1.1.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+   ' 3.8 3.9)
+"
+BDEPEND="
+   test? (
+   >=dev-python/GitPython-3[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-2.4.4-sphinx-theme.patch"
+)
+
+distutils_enable_sphinx doc --no-autodoc
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # No need to run the benchmarks
+   tests/benchmark/test_baseline_benchmarks.py
+
+   # TODO
+   
'tests/test_functional.py::test_functional[forgotten_debug_statement_py37]'
+   
'tests/test_functional.py::test_functional[dataclass_with_field]'
+   
tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_error_msg
+   
tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_info_msg
+   )
+   # Specify the test directory explicitly to avoid import file mismatches
+   epytest tests
+}
+
+python_install_all() {
+   if use examples ; then
+   docompress -x "/usr/share/doc/${PF}/examples"
+   docinto examples
+   dodoc -r examples/.
+   fi
+
+   distutils-r1_python_install_all
+}



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

2022-03-24 Thread Michał Górny
commit: 522d096178294e7420446c2459d0c908a61186db
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:13:10 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=522d0961

dev-python/boto3: Bump to 1.21.26

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

 dev-python/boto3/Manifest |  1 +
 dev-python/boto3/boto3-1.21.26.ebuild | 63 +++
 2 files changed, 64 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index b46f40585cc0..cfd15d2b6512 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,4 +1,5 @@
 DIST boto3-1.21.15.tar.gz 476516 BLAKE2B 
306c7ee69dec5ff1fbd76ed32aaebdf0f52cdc49df600562f49cd543e5f331c6dbf88001070022043b9fd01c651af83b1c8c0966292c90791831f2e9d9fc4a84
 SHA512 
9d431fcbdcd42658cd52094b97c151fd10a68f2c83a457dccdf7991c8358c17b32faa09e3941f6d6e72bad8cda1b93dcfae8d78585dae43790c0ec248f0ab15d
 DIST boto3-1.21.22.tar.gz 479768 BLAKE2B 
3ae647a4c06cb9f7c4c32216dba439ce8bbf346fccf5a8651c08b398bcb7fdb0a4ac81c8d311625d0f50634b90c2f8a02160a19435db836ad05edf0d998a148d
 SHA512 
583a49907339fdb8bb1deaec7683dad6bd0c2836a05cc317a8fc97a17e7b79fd114677fd6342cf6f96b1140bf1bcf9ca0fb1fd3af1c86600e6cfba5bbbf21ec2
 DIST boto3-1.21.25.tar.gz 482117 BLAKE2B 
7f4823fa6045addb4b4ed01e83d1095e9f56dac7c232c5cc744cd956ce0c9840bf70a2901cf4094b0b403ba38129529880b1f1c91d26e9d85db9ca714cfc447b
 SHA512 
2571098f20054d09e691adef67f518321349a55ae3f6eaf3b4ae1d58eefe2e61c67f1bce79366dd017bbaa86e8ffebea12f0d22c712f0b00487fe39e169ce115
+DIST boto3-1.21.26.tar.gz 482624 BLAKE2B 
19f38b86eab6363ff86febc9f7623def010314a70e3d88c405bf641a4cd0b2de390fb69f5205c5df2e7d71c80a31989efbc64c442bd02d3d2a5efb7ee937596d
 SHA512 
85848df7f5863df5ddc97be29f734bbdff54d195d5d1e465b35f3693b8196c03422b9a8024a2ecdaead40a4ddd1742c06e9d2e5b90fd4de28dffd6609f209dfb
 DIST boto3-1.21.8.tar.gz 473069 BLAKE2B 
f08f76fb9c4e56e6ba5624c885973599505769d7f9eea6e20a06e1a641768b1f7b108fc7293282a55bf4c7d2b62eb34853f46b8c3ada9afb8fc25624daa60c12
 SHA512 
23ed88dcaefe3224db05959251befaae4f03859bf00daf649db1e838e5fb92e01a6da4bee8083366d804404aac358df19d7e4552d6aaf39f9c4b371ccc7f9088

diff --git a/dev-python/boto3/boto3-1.21.26.ebuild 
b/dev-python/boto3/boto3-1.21.26.ebuild
new file mode 100644
index ..6fcba460ab1d
--- /dev/null
+++ b/dev-python/boto3/boto3-1.21.26.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 multiprocessing
+
+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 ~ppc ~ppc64 ~riscv ~sparc ~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}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   epytest tests/{functional,unit} \
+   -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}



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

2022-03-24 Thread Michał Górny
commit: a6855f71a8af69100d3a6b92786747da5432cb55
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:13:01 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6855f71

dev-python/botocore: Bump to 1.24.26

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.24.26.ebuild | 68 +
 2 files changed, 69 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index b85b885694a2..d2dae72b9c0d 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,4 +1,5 @@
 DIST botocore-1.24.15.tar.gz 8820413 BLAKE2B 
1a842d811b0471ee6881fc6fbae9726912636c9a83ed9e1395ae96705f6ef47cbb5d6b134a011da747951b7570e722af5a60c949e9301d509a79f431a797ca70
 SHA512 
d614d6f065a77e5d4dda9c8dbe401feae4e83398c5d2508b0807984fc8783b31cd6c507663c90a08daa5ccbf95b450633928599cd340227ab5dc90ea00fa1bbe
 DIST botocore-1.24.22.tar.gz 8839717 BLAKE2B 
7b3843900da913561ab2a99f7371139cd8fd89a2eb52a90b33f8fb4c0449ff23a00f56347a2916b271346acf2c0721af0a9695bff3663888aa87c790705ce4c3
 SHA512 
070222b5eca46fa5463620af63816bc8813c717a56b4c41294556130390959ac14570a1256542f145a5b36727ced9657b386fcd5f538d64912c8a9f049673bd6
 DIST botocore-1.24.25.tar.gz 8852839 BLAKE2B 
feb0f5de1d34b9f5a1b20f76480f432059c74293c70d310234beb8515741883d639dc54d7843d47e03aa107846d1a83af29fb98e6cc519aea289841a17464f56
 SHA512 
d2bb402bff2af857d433b379d81b727120543de6a5cf3d13f0c5dd60cef219fd5ea6362156c5284bb06860ec2ca0f1823fce4dccda03e4213eb737e45470ca0d
+DIST botocore-1.24.26.tar.gz 8855676 BLAKE2B 
ad8e82872429043a9a80d6584a5a8af623ce91b516c045284b8ea618629c7cf65195433691db7eced91969ccb14fc8c7f57956897b528c6861fe84175d46286b
 SHA512 
2f08bcd1db6b9a5ede68be204d68f8fa0f1c906ca8d7dccb69d5775a66f86c990788970194058973a90ada928914ec92cf02d4cba30a85c7619bb38d3b117268
 DIST botocore-1.24.8.tar.gz 8798121 BLAKE2B 
4ca37ed7be0af62901bf154f75739cc7e07505a809e551884c72d5b5eed334ffffc6db016df522564a1f3d9b6f258e8eca96161a734711340bf880b553b5
 SHA512 
6ac2139694ab199313a0fb9a2f783b12de7f3915d10cba739f4758356a3b84a917c3c394954b6d82d7a62de907c6fe57a3559e2b9a625bb0479e7bacd31d21cc

diff --git a/dev-python/botocore/botocore-1.24.26.ebuild 
b/dev-python/botocore/botocore-1.24.26.ebuild
new file mode 100644
index ..3bf7c7cfb689
--- /dev/null
+++ b/dev-python/botocore/botocore-1.24.26.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1 multiprocessing
+
+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 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${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 pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   )
+
+   epytest tests/{functional,unit} \
+   -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}



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

2022-03-24 Thread Michał Górny
commit: ce6b718c56ef281677ed5e3ffa7ba4b5089b6bfd
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:25:21 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce6b718c

dev-python/jinja: Bump to 3.1.0

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

 dev-python/jinja/Manifest   |  1 +
 dev-python/jinja/jinja-3.1.0.ebuild | 52 +
 2 files changed, 53 insertions(+)

diff --git a/dev-python/jinja/Manifest b/dev-python/jinja/Manifest
index 4cea068ffb08..28a942e43d68 100644
--- a/dev-python/jinja/Manifest
+++ b/dev-python/jinja/Manifest
@@ -1,2 +1,3 @@
 DIST jinja-2.11.3.tar.gz 258057 BLAKE2B 
4735464d044718ce1e6b2663ecb1b238b38fbf0f37ed683257775fe9e853186c089b98494209e511be5aa96bf6df8f6d472be132b6184a7d9213e182099c0433
 SHA512 
f8e2951edf780d7b44ac74d36579c89b0a5c076b4250faf643ae7e3ff6a431fedaabed640e5efb496cda1a79a4057bf312ae652484c8d4631d521689eb0adbc1
 DIST jinja-3.0.3.tar.gz 273634 BLAKE2B 
3f72840f3f895471896b918b0d3173aa7b40a077fe78a014064e66ac74c3d1ef1ae811723a84ea56d32edde23ee26ab6091bd5ce7ee4e46a9693f34d2538b491
 SHA512 
8a364620a4660add0593f4b252a2f20423aa3017193dffe6e8aa80710444da0cae5e6c4b77247d39f33e90185f475714fb892f6b5f01d3055a88b0f669a748be
+DIST jinja-3.1.0.tar.gz 271851 BLAKE2B 
de55a518aa63e3c6ca88bd107709172f73fcb9419c75254b2c23c531b598af7860a303e7da6e61f03cf18edf6935c92f5c12c8b91a7f4eb955c64f472a506b02
 SHA512 
1bd75c752f8e1c45f05f881598c257a6a357658892307e1352dd4752f45ede9b23f0ce3c16909e1885243199c2b845357c3ea33af8d6848fe346c29eeaf22b60

diff --git a/dev-python/jinja/jinja-3.1.0.ebuild 
b/dev-python/jinja/jinja-3.1.0.ebuild
new file mode 100644
index ..008e162474da
--- /dev/null
+++ b/dev-python/jinja/jinja-3.1.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="A full-featured template engine for Python"
+HOMEPAGE="https://jinja.palletsprojects.com/ https://pypi.org/project/Jinja2/;
+SRC_URI="https://github.com/pallets/jinja/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris"
+IUSE="examples"
+
+RDEPEND="
+   >=dev-python/markupsafe-2.0.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx-issues \
+   dev-python/pallets-sphinx-themes
+distutils_enable_tests pytest
+
+# XXX: handle Babel better?
+
+src_prepare() {
+   # avoid unnecessary dep on extra sphinxcontrib modules
+   sed -i '/sphinxcontrib.log_cabinet/ d' docs/conf.py || die
+
+   distutils-r1_src_prepare
+}
+
+python_install_all() {
+   if use examples ; then
+   docinto examples
+   dodoc -r examples/.
+   fi
+
+   distutils-r1_python_install_all
+}
+
+pkg_postinst() {
+   if ! has_version dev-python/Babel; then
+   elog "For i18n support, please emerge dev-python/Babel."
+   fi
+}



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

2022-03-24 Thread Michał Górny
commit: aef4f1a4beb2337f964f974931157d944d8c73e4
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:13:20 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aef4f1a4

app-admin/awscli: Bump to 1.22.81

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.22.81.ebuild | 66 ++
 2 files changed, 67 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index bd97f926af05..0b8717d5a085 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -2,3 +2,4 @@ DIST awscli-1.22.63.tar.gz 2167746 BLAKE2B 
e72126578c9bac30c6d66bdd178961a7a36a0
 DIST awscli-1.22.70.tar.gz 2177284 BLAKE2B 
1ba770ba1b1404d6ff31d95ee198cba41321fe79d618d8b2ab8258da75f9cc56d5af95851dbed837b65e4fdbd82193639da5614551fe2d7f0ebc20df44531615
 SHA512 
0f246e82cee70b8d16e1fc7e30aae67554f5186eb2a0251295b25eafe23d7b29293059be7ebffbe7a45c665d0bae210699093b86bf7b3e188017018d8329af84
 DIST awscli-1.22.77.tar.gz 2179996 BLAKE2B 
fec49002841fa634bd2b7ae72f534bda875d69169179bbeb85eac18f2d9e9102121b6c0d73d8c7132ac0a6b8e5a8a39cea258d90c15f90b29b44d12ed509cfd1
 SHA512 
0fa89b6a2dd9dfc7e7be713c10b7470ad8fe8877a7fa9712510254cfbef36771f9e2541adfef9366e13e2273a373c2b88730572f7f1ad79c19f67e57c17e6631
 DIST awscli-1.22.80.tar.gz 2182289 BLAKE2B 
632aa3806ffc6924b9d359f437b89f4c494065ee57f352c4ea83c1c6a012090ae3bf050eb633708fca9e50dd53205bfa3c838ee5c64088a253b7d2ad9fcb4427
 SHA512 
a35214dc4dc6280c2774f0423af1a933260bc9ef718ec1779b50d52c5b47d05034f8a8ff327c01af59b3490acd5dad3921535ec848c00885136fdb7909bbeb75
+DIST awscli-1.22.81.tar.gz 2182494 BLAKE2B 
57f62fc372f065f7b7c3a7b7b4fe32fed1bdb439d2abb8070d0383bede89ece50016b92ecd48c0b6b9b258a56843a0989bca63c49f41923b702b38c5d5a09daf
 SHA512 
ef2b452ac579730eb37796b55e3214df10df54307c826773f4c8334270eb08d1d72a5de468c1e058ce72cc92c93e913c8d9e764b74af0fc35ba078b190af5364

diff --git a/app-admin/awscli/awscli-1.22.81.ebuild 
b/app-admin/awscli/awscli-1.22.81.ebuild
new file mode 100644
index ..2040c8cb81d2
--- /dev/null
+++ b/app-admin/awscli/awscli-1.22.81.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="https://pypi.org/project/awscli/;
+#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/aws-cli-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+# awscli 1.22.55 → botocore 1.24.0
+# so botocore is x.(y+2).(z-55)
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(( $(ver_cut 3-) - 55))"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.4.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # integration tests require AWS credentials and Internet access
+   epytest tests/{functional,unit} \
+   -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")"
+}
+
+python_install_all() {
+   newbashcomp bin/aws_bash_completer aws
+
+   insinto /usr/share/zsh/site-functions
+   newins bin/aws_zsh_completer.sh _aws
+
+   distutils-r1_python_install_all
+
+   rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || 
die
+}



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

2022-03-24 Thread Michał Górny
commit: fd5eec3bd1a6d6dbbd4a3268e613f152ca7939b0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 23:17:13 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Mar 25 00:02:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd5eec3b

dev-python/dill: EAPI 8, PEP517, py3.10

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

 dev-python/dill/dill-0.3.4-r1.ebuild | 32 
 1 file changed, 32 insertions(+)

diff --git a/dev-python/dill/dill-0.3.4-r1.ebuild 
b/dev-python/dill/dill-0.3.4-r1.ebuild
new file mode 100644
index ..d52d40d0b368
--- /dev/null
+++ b/dev-python/dill/dill-0.3.4-r1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="Serialize all of python (almost)"
+HOMEPAGE="https://pypi.org/project/dill/;
+SRC_URI="
+   https://github.com/uqfoundation/dill/archive/${P}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S=${WORKDIR}/${PN}-${P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86 ~amd64-linux ~x86-linux"
+
+python_test() {
+   local fail= t
+   for t in tests/test_*.py; do
+   ebegin "\t${t}"
+   "${EPYTHON}" "${t}"
+   eend ${?} || fail=1
+   done
+
+   [[ ${fail} ]] && die "Tests fail with ${EPYTHON}"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-libs/inih/, dev-libs/inih/files/

2022-03-24 Thread Sam James
commit: 67b1e3883fdbd708bbb4c705459fc48e031a2e58
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 23:36:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 23:57:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67b1e388

dev-libs/inih: add 54

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

 dev-libs/inih/Manifest|  1 +
 dev-libs/inih/files/inih-54-set-version.patch | 20 +++
 dev-libs/inih/inih-54.ebuild  | 35 +++
 3 files changed, 56 insertions(+)

diff --git a/dev-libs/inih/Manifest b/dev-libs/inih/Manifest
index e19e85d2c827..1bb3e441dac8 100644
--- a/dev-libs/inih/Manifest
+++ b/dev-libs/inih/Manifest
@@ -1 +1,2 @@
 DIST inih-53.tar.gz 16984 BLAKE2B 
1242e6273c9dd9a11ea026a3495a487b2aa72d8e01f34304d8568c88897ae9c9bb425246f992dc16f4dc2210ec14c597d0ef595cec84ff98a5d6101ee5a643b9
 SHA512 
99bc40c294b521e9973184bfb30d60c129735991f33b387b3d023827a34672b0489eadf91e38895ea725168dbc7b27bb02c1975debe7573b4b209d0e947b2100
+DIST inih-54.tar.gz 18217 BLAKE2B 
53c809fd8bd0a1998eca6dd4ac1d1fb88960c04e1cf4e1c2b24c4b7214c210d15915da1efdec15248010ab52b26f61ffe8d7302fed4643246cf0b6b65a5efb80
 SHA512 
47952d5ce86dd02b61960bf76dd1290272b62ab371b2ed7d54bd9f42de47cf2b19d9cfe8ef8e67d0e80729f8a7d9b7a97ad0b3fbc8d02199351368d8cafb62fa

diff --git a/dev-libs/inih/files/inih-54-set-version.patch 
b/dev-libs/inih/files/inih-54-set-version.patch
new file mode 100644
index ..b9dba1ffb0be
--- /dev/null
+++ b/dev-libs/inih/files/inih-54-set-version.patch
@@ -0,0 +1,20 @@
+https://github.com/benhoyt/inih/pull/135
+
+From 690fd8cb5a1c7db67e78b9e2543ff5a9fc733ce3 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Thu, 24 Mar 2022 23:32:46 +
+Subject: [PATCH] meson.build: define version
+
+Otherwise, the installed .pc file contains "Version: undefined".
+
+Signed-off-by: Sam James 
+--- a/meson.build
 b/meson.build
+@@ -1,6 +1,7 @@
+ project('inih',
+ ['c'],
+ license : 'BSD-3-Clause',
++version : '54',
+ )
+ 
+  options 

diff --git a/dev-libs/inih/inih-54.ebuild b/dev-libs/inih/inih-54.ebuild
new file mode 100644
index ..dc8fa977393a
--- /dev/null
+++ b/dev-libs/inih/inih-54.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Tests not wired up to meson and don't seem to be intended for downstream use 
yet
+# e.g. hardcoding gcc, just a shell script
+
+inherit meson-multilib
+
+DESCRIPTION="inih (INI not invented here) simple .INI file parser"
+HOMEPAGE="https://github.com/benhoyt/inih;
+
+SRC_URI="https://github.com/benhoyt/inih/archive/r${PV}.tar.gz -> ${P}.tar.gz"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+S="${WORKDIR}/inih-r${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-set-version.patch
+)
+
+DOCS=( README.md )
+
+multilib_src_configure() {
+   local emesonargs=(
+   -Ddefault_library=shared
+   -Ddistro_install=true
+   -Dwith_INIReader=true
+   )
+
+   meson_src_configure
+}



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

2022-03-24 Thread Sam James
commit: 816974ce2310b4843fca5e34a0d7add3aa67a057
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 23:56:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 23:57:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=816974ce

sys-apps/hwloc: add 2.7.1

Closes: https://bugs.gentoo.org/544708
Signed-off-by: Sam James  gentoo.org>

 sys-apps/hwloc/Manifest   |   1 +
 sys-apps/hwloc/hwloc-2.7.1.ebuild | 103 ++
 2 files changed, 104 insertions(+)

diff --git a/sys-apps/hwloc/Manifest b/sys-apps/hwloc/Manifest
index 5ed805213b31..075870899733 100644
--- a/sys-apps/hwloc/Manifest
+++ b/sys-apps/hwloc/Manifest
@@ -1,3 +1,4 @@
 DIST hwloc-1.11.13.tar.bz2 4120436 BLAKE2B 
a6a09f7d6abeaa9d23df555cfd2186ae61f0f67f83fa8f1aa4bc29376b233a8511f11745f35064f39545c7e62e9d271c1334b6906712028729e138e41d1f212f
 SHA512 
dd38bcc9a5df2dcfd3bbd828ab13fdb1c1d21747a0b62e6c87df95d2835c0472590344ff5bda4f6c28e597eaba1ea11c0bc96907ad45f1215f51f95ac9f58138
 DIST hwloc-2.5.0.tar.bz2 6688349 BLAKE2B 
684367afa5fc056b9bf04b3a95bd8239ec70127d5e582948ca16a09323614ad0ef77278a120544af0a740b456f1ba24bffc861b9f132293fafb7da0597d0b688
 SHA512 
9e8b829868cb9f5fd2fe84d8515d0dc8725ddc84c788a61c1e9e918eb2b29659eb73cf22a4189e6b887f5bfa3255c206f4ba924bd7fe2c88c185f4308c0949cd
 DIST hwloc-2.6.0.tar.bz2 6728585 BLAKE2B 
96099ae3527e11a83adc068e07756752d2effa38b4bae174045e5142a3457af8790e9fd3d778ff2d91708101aaf6e108affed7688918195e0f2bdbd55235ad46
 SHA512 
3f35ee685507469e2c7d4a2ab4c339eff24123b4bc21d96bc53fd2737a36bdd371f1e1e4440b410ecac6cf1881562187243bfbf846203cb3702a4c4c7be0d5df
+DIST hwloc-2.7.1.tar.bz2 6810477 BLAKE2B 
26706b8835954b8baa9028eaf2da0f8ae6e57d1841d68daaa04d58a7b24a67e4e171eb439b8dbfb589a70eb1b5cced51f12a99bb7132591919c902374f89025f
 SHA512 
35de85de3f5e75de30b5ac72d2c118dcb990a2427c9812910a03772857181fd7259a27352b34a968186d02ffc811644c3411d84ee37f2d0ff9b83628951b4863

diff --git a/sys-apps/hwloc/hwloc-2.7.1.ebuild 
b/sys-apps/hwloc/hwloc-2.7.1.ebuild
new file mode 100644
index ..7b677fb68d16
--- /dev/null
+++ b/sys-apps/hwloc/hwloc-2.7.1.ebuild
@@ -0,0 +1,103 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools bash-completion-r1 cuda flag-o-matic systemd toolchain-funcs 
multilib-minimal
+
+MY_PV="v$(ver_cut 1-2)"
+DESCRIPTION="displays the hardware topology in convenient formats"
+HOMEPAGE="https://www.open-mpi.org/projects/hwloc/;
+SRC_URI="https://www.open-mpi.org/software/${PN}/${MY_PV}/downloads/${P}.tar.bz2;
+
+LICENSE="BSD"
+SLOT="0/15"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+IUSE="cairo +cpuid cuda debug gl nvml +pci static-libs svg udev xml X 
video_cards_nvidia"
+
+# opencl support dropped with x11-drivers/ati-drivers being removed (bug 
#582406).
+# Anyone with hardware is welcome to step up and help test to get it re-added.
+RDEPEND=">=sys-libs/ncurses-5.9-r3:0[${MULTILIB_USEDEP}]
+   cairo? ( >=x11-libs/cairo-1.12.14-r4[X?,svg?,${MULTILIB_USEDEP}] )
+   cuda? ( >=dev-util/nvidia-cuda-toolkit-6.5.19-r1:= )
+   nvml? ( x11-drivers/nvidia-drivers[${MULTILIB_USEDEP}] )
+   pci? (
+   >=sys-apps/pciutils-3.3.0-r2[${MULTILIB_USEDEP}]
+   >=x11-libs/libpciaccess-0.13.1-r1[${MULTILIB_USEDEP}]
+   )
+   udev? ( virtual/libudev )
+   xml? ( >=dev-libs/libxml2-2.9.1-r4[${MULTILIB_USEDEP}] )
+   video_cards_nvidia? ( x11-drivers/nvidia-drivers[static-libs,tools] )"
+DEPEND="${RDEPEND}"
+# 2.69-r5 for --runstatedir
+BDEPEND="
+   >=sys-devel/autoconf-2.69-r5
+   virtual/pkgconfig
+"
+
+PATCHES=( "${FILESDIR}/${PN}-1.8.1-gl.patch" )
+
+DOCS=( AUTHORS NEWS README VERSION )
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+multilib_src_configure() {
+   # bug #393467
+   export HWLOC_PKG_CONFIG="$(tc-getPKG_CONFIG)"
+
+   if use cuda ; then
+   append-cflags "-I${ESYSROOT}/opt/cuda/include"
+   append-cppflags "-I${ESYSROOT}/opt/cuda/include"
+
+   local -x LDFLAGS="${LDFLAGS}"
+   append-ldflags "-L${ESYSROOT}/opt/cuda/$(get_libdir)"
+   fi
+
+   local myconf=(
+   --disable-opencl
+
+   # netloc is deprecated upstream, about to be removed
+   # bug #796797
+   --disable-netloc
+
+   --disable-plugin-ltdl
+   --enable-plugins
+   --enable-shared
+   --runstatedir="${EPREFIX}/run"
+   $(multilib_native_use_enable cuda)
+   $(multilib_native_use_enable video_cards_nvidia gl)
+   $(use_enable cairo)
+   $(use_enable cpuid)
+   $(use_enable debug)
+   $(use_enable udev libudev)
+   $(use_enable nvml)
+   $(use_enable pci)
+   

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

2022-03-24 Thread Sam James
commit: 68c7fb1180a23ab70eff30197abe2020b82f4777
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 23:57:40 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 23:57:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68c7fb11

net-analyzer/nfdump: drop unnecessary --disable-static in -r1

EAPI 8 does this for us.

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

 net-analyzer/nfdump/nfdump-1.6.23-r1.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/net-analyzer/nfdump/nfdump-1.6.23-r1.ebuild 
b/net-analyzer/nfdump/nfdump-1.6.23-r1.ebuild
index 198f7e8eb909..34bb2bd90adb 100644
--- a/net-analyzer/nfdump/nfdump-1.6.23-r1.ebuild
+++ b/net-analyzer/nfdump/nfdump-1.6.23-r1.ebuild
@@ -66,8 +66,7 @@ src_configure() {
$(use_enable jnat) \
$(use_enable nsel) \
$(use_enable readpcap) \
-   $(use_enable sflow) \
-   --disable-static
+   $(use_enable sflow)
 }
 
 src_install() {



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

2022-03-24 Thread Sam James
commit: b3f1fef7e8055105cb1efd9f975445bf752a3818
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 23:45:50 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 23:57:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3f1fef7

dev-util/cmake: drop 3.23.0_rc3, 3.23.0_rc4

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

 dev-util/cmake/Manifest|   2 -
 dev-util/cmake/cmake-3.23.0_rc3.ebuild | 227 -
 dev-util/cmake/cmake-3.23.0_rc4.ebuild | 227 -
 3 files changed, 456 deletions(-)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index 69b5bc796665..2a762209f4c0 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -1,5 +1,3 @@
 DIST cmake-3.22.2.tar.gz 9779456 BLAKE2B 
5f1c76344fe2d6fba012b0d745dc990ec1ed4bf32c99beac1e538f4b83c1d695aee757d2780e635b67c0a185935a6a70b344a733259e3a91d01c4b83e94e2730
 SHA512 
86e95f9ce773bcc7513a1c3901561a1b09d06830936b8b1d44e075fe3bac55cfa636eccdedfa94a9939f5e12eb965224559fac30a17c64314ee023acb2a3e53f
 DIST cmake-3.22.3.tar.gz 9779118 BLAKE2B 
917b722701481cb87cc282a19083ec3299d845eeb633369bf29a961d1eef8a0f1157d866d983c4720a9b0524b81d647b5947a06281089a0a106146df2936
 SHA512 
a35003468153b99770ac6bbdeaa611a231a1104560da36aca0f393b8b71dbb44d854378504d2ec6b4af615f78efe18d91453fe15a1b7ec58129aa0289a5a1507
-DIST cmake-3.23.0-rc3.tar.gz 9987742 BLAKE2B 
4e097aa051f587859dfd82f8b7ed984481e6a507f509566f6c6feeab4e04b637b4d0bd783f53b9b0c8b6797692f2f4f78e6413285b89772564d97d432c193476
 SHA512 
f6f1d10200d57462a9f0092c77f9f872778d23c57253e8602a4f97e7b403238a639d0f50f91e7e3df28c2d3fd2c87dde17aa83bf12bafd6a0ee2d168ebc9bf2a
-DIST cmake-3.23.0-rc4.tar.gz 9987533 BLAKE2B 
352dfbb075bbc3fb5b39a9ebbc6a7a7c61dc82ef6ce6b7d52178018fbafb4e8bddfd30214b03c3b69027e6f01887ee15c6f791ec4f874a8848cf2a3c36f18393
 SHA512 
42d78e15ad6f3547a4a0e07e0fe95729964c1bdc89e464eacc05b4c62b71a124d54283807989bcfd772002a07cd9f7b5a5ff08a56c3732ac89727ae62d7ae68c
 DIST cmake-3.23.0-rc5.tar.gz 9982945 BLAKE2B 
92ab4500cf337a2ffdac4e5e454c060914ecfa6ede8de268a2ff9f7ba0db5ec3b6e6ecae1658e428d09322917e4a119ab75be4a2bef249d5143f3aa166a4cfd7
 SHA512 
70f5fb78418dc62b5d04cf3a02cb5e308513b7065a3537917fc0d86ba7be9859324ae6a644483368e1be15f56cb33f2ea84027be3224fb492c5fe527e1b51c5b

diff --git a/dev-util/cmake/cmake-3.23.0_rc3.ebuild 
b/dev-util/cmake/cmake-3.23.0_rc3.ebuild
deleted file mode 100644
index 96c6c3f0cae6..
--- a/dev-util/cmake/cmake-3.23.0_rc3.ebuild
+++ /dev/null
@@ -1,227 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# TODO RunCMake.LinkWhatYouUse fails consistently w/ ninja
-# ... but seems fine as of 3.22.3?
-# TODO ... but bootstrap sometimes(?) fails with ninja now. bug #834759.
-CMAKE_MAKEFILE_GENERATOR="emake"
-CMAKE_REMOVE_MODULES_LIST=( none )
-inherit bash-completion-r1 cmake elisp-common flag-o-matic multiprocessing \
-   toolchain-funcs virtualx xdg-utils
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="Cross platform Make"
-HOMEPAGE="https://cmake.org/;
-SRC_URI="https://cmake.org/files/v$(ver_cut 1-2)/${MY_P}.tar.gz"
-
-LICENSE="CMake"
-SLOT="0"
-[[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="doc emacs ncurses qt5 test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=app-arch/libarchive-3.3.3:=
-   app-crypt/rhash
-   >=dev-libs/expat-2.0.1
-   >=dev-libs/jsoncpp-1.9.2-r2:0=
-   >=dev-libs/libuv-1.10.0:=
-   >=net-misc/curl-7.21.5[ssl]
-   sys-libs/zlib
-   virtual/pkgconfig
-   emacs? ( >=app-editors/emacs-23.1:* )
-   ncurses? ( sys-libs/ncurses:0= )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   doc? (
-   dev-python/requests
-   dev-python/sphinx
-   )
-   test? ( app-arch/libarchive[zstd] )
-"
-
-S="${WORKDIR}/${MY_P}"
-
-SITEFILE="50${PN}-gentoo.el"
-
-PATCHES=(
-   # prefix
-   "${FILESDIR}"/${PN}-3.16.0_rc4-darwin-bundle.patch
-   "${FILESDIR}"/${PN}-3.14.0_rc3-prefix-dirs.patch
-   "${FILESDIR}"/${PN}-3.19.1-darwin-gcc.patch
-
-   # handle gentoo packaging in find modules
-   "${FILESDIR}"/${PN}-3.17.0_rc1-FindBLAS.patch
-   # Next patch needs to be reworked
-   #"${FILESDIR}"/${PN}-3.17.0_rc1-FindLAPACK.patch
-   "${FILESDIR}"/${PN}-3.5.2-FindQt4.patch
-
-   # respect python eclasses
-   "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch
-   "${FILESDIR}"/${PN}-3.9.0_rc2-FindPythonInterp.patch
-
-   "${FILESDIR}"/${PN}-3.18.0-filter_distcc_warning.patch # bug 691544
-
-   # upstream fixes (can usually be removed with a 

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

2022-03-24 Thread Sam James
commit: 782c215f23cd6db58b7742fccea14ea98d54b34b
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 23:45:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 23:57:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=782c215f

dev-util/cmake: add 3.23.0_rc5

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

 dev-util/cmake/Manifest|   1 +
 dev-util/cmake/cmake-3.23.0_rc5.ebuild | 233 +
 2 files changed, 234 insertions(+)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index 11500fb16ff5..69b5bc796665 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -2,3 +2,4 @@ DIST cmake-3.22.2.tar.gz 9779456 BLAKE2B 
5f1c76344fe2d6fba012b0d745dc990ec1ed4bf
 DIST cmake-3.22.3.tar.gz 9779118 BLAKE2B 
917b722701481cb87cc282a19083ec3299d845eeb633369bf29a961d1eef8a0f1157d866d983c4720a9b0524b81d647b5947a06281089a0a106146df2936
 SHA512 
a35003468153b99770ac6bbdeaa611a231a1104560da36aca0f393b8b71dbb44d854378504d2ec6b4af615f78efe18d91453fe15a1b7ec58129aa0289a5a1507
 DIST cmake-3.23.0-rc3.tar.gz 9987742 BLAKE2B 
4e097aa051f587859dfd82f8b7ed984481e6a507f509566f6c6feeab4e04b637b4d0bd783f53b9b0c8b6797692f2f4f78e6413285b89772564d97d432c193476
 SHA512 
f6f1d10200d57462a9f0092c77f9f872778d23c57253e8602a4f97e7b403238a639d0f50f91e7e3df28c2d3fd2c87dde17aa83bf12bafd6a0ee2d168ebc9bf2a
 DIST cmake-3.23.0-rc4.tar.gz 9987533 BLAKE2B 
352dfbb075bbc3fb5b39a9ebbc6a7a7c61dc82ef6ce6b7d52178018fbafb4e8bddfd30214b03c3b69027e6f01887ee15c6f791ec4f874a8848cf2a3c36f18393
 SHA512 
42d78e15ad6f3547a4a0e07e0fe95729964c1bdc89e464eacc05b4c62b71a124d54283807989bcfd772002a07cd9f7b5a5ff08a56c3732ac89727ae62d7ae68c
+DIST cmake-3.23.0-rc5.tar.gz 9982945 BLAKE2B 
92ab4500cf337a2ffdac4e5e454c060914ecfa6ede8de268a2ff9f7ba0db5ec3b6e6ecae1658e428d09322917e4a119ab75be4a2bef249d5143f3aa166a4cfd7
 SHA512 
70f5fb78418dc62b5d04cf3a02cb5e308513b7065a3537917fc0d86ba7be9859324ae6a644483368e1be15f56cb33f2ea84027be3224fb492c5fe527e1b51c5b

diff --git a/dev-util/cmake/cmake-3.23.0_rc5.ebuild 
b/dev-util/cmake/cmake-3.23.0_rc5.ebuild
new file mode 100644
index ..402d531d597d
--- /dev/null
+++ b/dev-util/cmake/cmake-3.23.0_rc5.ebuild
@@ -0,0 +1,233 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# TODO RunCMake.LinkWhatYouUse fails consistently w/ ninja
+# ... but seems fine as of 3.22.3?
+# TODO ... but bootstrap sometimes(?) fails with ninja now. bug #834759.
+CMAKE_MAKEFILE_GENERATOR="emake"
+CMAKE_REMOVE_MODULES_LIST=( none )
+inherit bash-completion-r1 cmake elisp-common flag-o-matic multiprocessing \
+   toolchain-funcs virtualx xdg-utils
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="Cross platform Make"
+HOMEPAGE="https://cmake.org/;
+if [[ ${PV} ==  ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://gitlab.kitware.com/cmake/cmake.git;
+else
+   SRC_URI="https://cmake.org/files/v$(ver_cut 1-2)/${MY_P}.tar.gz"
+   if [[ ${PV} != *_rc* ]] ; then
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips 
~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   fi
+fi
+
+LICENSE="CMake"
+SLOT="0"
+IUSE="doc emacs ncurses qt5 test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=app-arch/libarchive-3.3.3:=
+   app-crypt/rhash
+   >=dev-libs/expat-2.0.1
+   >=dev-libs/jsoncpp-1.9.2-r2:0=
+   >=dev-libs/libuv-1.10.0:=
+   >=net-misc/curl-7.21.5[ssl]
+   sys-libs/zlib
+   virtual/pkgconfig
+   emacs? ( >=app-editors/emacs-23.1:* )
+   ncurses? ( sys-libs/ncurses:0= )
+   qt5? (
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtwidgets:5
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   doc? (
+   dev-python/requests
+   dev-python/sphinx
+   )
+   test? ( app-arch/libarchive[zstd] )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+SITEFILE="50${PN}-gentoo.el"
+
+PATCHES=(
+   # prefix
+   "${FILESDIR}"/${PN}-3.16.0_rc4-darwin-bundle.patch
+   "${FILESDIR}"/${PN}-3.14.0_rc3-prefix-dirs.patch
+   "${FILESDIR}"/${PN}-3.19.1-darwin-gcc.patch
+
+   # handle gentoo packaging in find modules
+   "${FILESDIR}"/${PN}-3.17.0_rc1-FindBLAS.patch
+   # Next patch needs to be reworked
+   #"${FILESDIR}"/${PN}-3.17.0_rc1-FindLAPACK.patch
+   "${FILESDIR}"/${PN}-3.5.2-FindQt4.patch
+
+   # respect python eclasses
+   "${FILESDIR}"/${PN}-2.8.10.2-FindPythonLibs.patch
+   "${FILESDIR}"/${PN}-3.9.0_rc2-FindPythonInterp.patch
+
+   "${FILESDIR}"/${PN}-3.18.0-filter_distcc_warning.patch # bug 691544
+
+   # upstream fixes (can usually be removed with a version bump)
+)
+
+cmake_src_bootstrap() {
+   # disable running of cmake in bootstrap command
+   sed -i \
+   -e 

[gentoo-commits] proj/releng:master commit in: releases/kconfig/amd64/

2022-03-24 Thread Georgy Yakovlev
commit: 64ffd943f4fe6495737d68af150108358533e87b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Mar 24 23:41:19 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Mar 24 23:41:38 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=64ffd943

releases/kconfig/amd64: add vmd.ko to livegui

Bug: https://bugs.gentoo.org/802525
Signed-off-by: Georgy Yakovlev  gentoo.org>

 releases/kconfig/amd64/livegui-amd64-5.15.16.config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/releases/kconfig/amd64/livegui-amd64-5.15.16.config 
b/releases/kconfig/amd64/livegui-amd64-5.15.16.config
index b6bce0b4..99a32b7f 100644
--- a/releases/kconfig/amd64/livegui-amd64-5.15.16.config
+++ b/releases/kconfig/amd64/livegui-amd64-5.15.16.config
@@ -1405,7 +1405,7 @@ CONFIG_PCI_LABEL=y
 #
 # PCI controller drivers
 #
-# CONFIG_VMD is not set
+CONFIG_VMD=m
 CONFIG_PCI_HYPERV_INTERFACE=m
 
 #



[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nfdump/, net-analyzer/nfdump/files/

2022-03-24 Thread Sam James
commit: 295836b2ebe44f18f8c06fcb56e1e22e96da1a55
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 23:00:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 23:02:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=295836b2

net-analyzer/nfdump: add additional autoconf 2.69+ patches

Let's do a new revision for the more comprehensive upstream
autoconf 2.69+ patches (and throwing in the upstream-sent
variant of the automake patch given the previous version added
to 1.6.23 was partly done upstream already).

Could affect installed files and such too of course with
major build system changes.

Closes: https://bugs.gentoo.org/832420
Signed-off-by: Sam James  gentoo.org>

 .../nfdump/files/nfdump-1.6.23-autotools.patch | 216 +
 .../files/nfdump-1.6.23-m4-dir-automake.patch  |  23 +++
 net-analyzer/nfdump/nfdump-1.6.23-r1.ebuild|  84 
 3 files changed, 323 insertions(+)

diff --git a/net-analyzer/nfdump/files/nfdump-1.6.23-autotools.patch 
b/net-analyzer/nfdump/files/nfdump-1.6.23-autotools.patch
new file mode 100644
index ..65558bbe7dfa
--- /dev/null
+++ b/net-analyzer/nfdump/files/nfdump-1.6.23-autotools.patch
@@ -0,0 +1,216 @@
+https://github.com/phaag/nfdump/commit/e6261098570f69ad973a7a4ea7aaebb1663712e8
+https://github.com/phaag/nfdump/commit/67da975f20076751bce49caf57c89ed21ed92ad0
+https://github.com/phaag/nfdump/commit/4652c2014012a81438f53cb590687c8c93419140
+
+From: Peter Haag 
+Date: Tue, 22 Feb 2022 10:54:19 +0100
+Subject: [PATCH] Fix issue #304 - accept CFLAGS
+
+--- a/configure.ac
 b/configure.ac
+@@ -8,8 +8,11 @@ AC_INIT(nfdump, 1.6.23, pe...@people.ops-trust.net)
+ AC_CONFIG_HEADER([config.h])
+ AM_INIT_AUTOMAKE([subdir-objects])
+ 
++if test "x$CFLAGS" = "x"; then
++CFLAGS="-g -O3"
++fi 
++
+ # Checks for programs.
+-CFLAGS="-g -O3"
+ AC_PROG_CC([clang gcc])
+ AX_CHECK_C11
+ CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wmissing-declarations -Wmissing-noreturn -fno-strict-aliasing"
+
+From: Peter Haag 
+Date: Fri, 25 Feb 2022 09:12:27 +0100
+Subject: [PATCH] Cleanup automake files. Fixes #304.
+
+--- a/configure.ac
 b/configure.ac
+@@ -1,12 +1,13 @@
+ #   -*- Autoconf -*-
+ # Process this file with autoconf to produce a configure script.
+ 
+-AC_PREREQ(2.59)
++AC_PREREQ([2.71])
+ AC_REVISION($Revision: 244 $)dnl 
+-AC_INIT(nfdump, 1.6.23, pe...@people.ops-trust.net)
++AC_INIT([nfdump],[1.6.23],[pe...@people.ops-trust.net])
+ 
+-AC_CONFIG_HEADER([config.h])
++AC_CONFIG_HEADERS([config.h])
+ AM_INIT_AUTOMAKE([subdir-objects])
++AC_CONFIG_MACRO_DIRS([m4])
+ 
+ if test "x$CFLAGS" = "x"; then
+ CFLAGS="-g -O3"
+@@ -15,7 +16,12 @@ fi
+ # Checks for programs.
+ AC_PROG_CC([clang gcc])
+ AX_CHECK_C11
+-CFLAGS="$CFLAGS -Wall -Wstrict-prototypes -Wmissing-prototypes 
-Wmissing-declarations -Wmissing-noreturn -fno-strict-aliasing"
++AX_APPEND_FLAG([-Wall], [CFLAGS])
++AX_APPEND_FLAG([-Wstrict-prototypes], [CFLAGS])
++AX_APPEND_FLAG([-Wmissing-prototypes], [CFLAGS])
++AX_APPEND_FLAG([-Wmissing-declarations], [CFLAGS])
++AX_APPEND_FLAG([-Wmissing-noreturn], [CFLAGS])
++AX_APPEND_FLAG([-fno-strict-aliasing], [CFLAGS])
+ 
+ LT_INIT
+ 
+@@ -59,7 +65,7 @@ if test "${enable_fixtimebug}" = "yes" ; then
+ fi
+ 
+ AC_PROG_YACC
+-AC_PROG_LEX
++AC_PROG_LEX(yywrap)
+ which $LEX > /dev/null 2>&1
+ if test $? = 1; then
+   AC_MSG_ERROR(No lex or flex found on system)
+@@ -312,7 +318,11 @@ AC_LINK_IFELSE(
+ 
+ # Checks for header files.
+ AC_HEADER_DIRENT
+-AC_HEADER_STDC
++# Autoupdate added the next two lines to ensure that your configure
++# script's behavior did not change.  They are probably safe to remove.
++AC_CHECK_INCLUDES_DEFAULT
++AC_PROG_EGREP
++
+ AC_CHECK_HEADERS(stdio_ext.h)
+ AC_CHECK_HEADERS([nameser8_compat.h])
+ AC_CHECK_HEADERS([features.h arpa/inet.h fcntl.h netinet/in.h fts.h stdint.h 
stdlib.h stddef.h string.h sys/socket.h syslog.h unistd.h iso/limits_iso.h])
+@@ -404,17 +414,14 @@ AC_CHECK_FUNCS(memcmp memcpy memmove memset)
+ AC_MSG_CHECKING([for union semun])
+ AC_CACHE_VAL(ac_cv_struct_semun,
+   [
+-  AC_TRY_COMPILE(
+-  [
++  AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[
+   #include 
+   #include 
+   #include ;
+-  ],
+-  [
++  ]], [[
+   union semun semdat;
+-  ],
+-  ac_cv_struct_semun=yes, ac_cv_struct_semun=no
+-  )
++  ]])],[ac_cv_struct_semun=yes],[ac_cv_struct_semun=no
++  ])
+   ]
+ )
+ 
+@@ -424,7 +431,7 @@ if test "$ac_cv_struct_semun" = "yes"; then
+ fi
+ 
+ AC_MSG_CHECKING(for the %z format string in printf())
+-AC_TRY_RUN([
++AC_RUN_IFELSE([AC_LANG_SOURCE([[
+ #include 
+ #include 
+ 
+@@ -438,28 +445,38 @@ char string[16];
+ 
+   return i == 5 ? 0 : 1;
+ }
+-],

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/nfdump/files/, net-analyzer/nfdump/

2022-03-24 Thread Sam James
commit: e78ff1747765da9b82919cad40e123bd83591879
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 22:48:36 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 23:01:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e78ff174

net-analyzer/nfdump: fix autoreconf

Closes: https://bugs.gentoo.org/832420
Signed-off-by: Sam James  gentoo.org>

 net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch | 19 +++
 net-analyzer/nfdump/nfdump-1.6.23.ebuild |  3 ++-
 2 files changed, 21 insertions(+), 1 deletion(-)

diff --git a/net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch 
b/net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch
new file mode 100644
index ..ac25ee094653
--- /dev/null
+++ b/net-analyzer/nfdump/files/nfdump-1.6.23-m4-dir.patch
@@ -0,0 +1,19 @@
+Variant sent upstream (configure.ac hunk irrelevant now): 
https://github.com/phaag/nfdump/pull/336
+https://bugs.gentoo.org/832420
+--- a/Makefile.am
 b/Makefile.am
+@@ -1,3 +1,4 @@
++ACLOCAL_AMFLAGS = -I m4
+ 
+ SUBDIRS = . bin man doc
+ 
+--- a/configure.ac
 b/configure.ac
+@@ -7,6 +7,7 @@ AC_INIT(nfdump, 1.6.23, pe...@people.ops-trust.net)
+ 
+ AC_CONFIG_HEADER([config.h])
+ AM_INIT_AUTOMAKE([subdir-objects])
++AC_CONFIG_MACRO_DIR([m4])
+ 
+ # Checks for programs.
+ AX_CHECK_C11

diff --git a/net-analyzer/nfdump/nfdump-1.6.23.ebuild 
b/net-analyzer/nfdump/nfdump-1.6.23.ebuild
index 9c9c2bd847b6..dca53c21054e 100644
--- a/net-analyzer/nfdump/nfdump-1.6.23.ebuild
+++ b/net-analyzer/nfdump/nfdump-1.6.23.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -38,6 +38,7 @@ BDEPEND="
 PATCHES=(
"${FILESDIR}"/${PN}-1.6.19-compiler.patch
"${FILESDIR}"/${PN}-1.6.19-libft.patch
+   "${FILESDIR}"/${PN}-1.6.23-m4-dir.patch
 )
 
 DOCS=( AUTHORS ChangeLog README.md )



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

2022-03-24 Thread Jakov Smolić
commit: 2bfc594cbdaada5325db5f10a8fa1734cea90485
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:36:02 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2bfc594c

dev-python/flask-wtf: keyword 1.0.0 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/flask-wtf/flask-wtf-1.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/flask-wtf/flask-wtf-1.0.0.ebuild 
b/dev-python/flask-wtf/flask-wtf-1.0.0.ebuild
index 7d81736c5d46..251c81fc05b0 100644
--- a/dev-python/flask-wtf/flask-wtf-1.0.0.ebuild
+++ b/dev-python/flask-wtf/flask-wtf-1.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 RDEPEND="
>=dev-python/Babel-1[${PYTHON_USEDEP}]



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

2022-03-24 Thread Jakov Smolić
commit: 44f89536bb2a83a7be725b342d4425bc4e971c84
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:39:07 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f89536

dev-python/zxcvbn: keyword 4.4.28 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/zxcvbn/zxcvbn-4.4.28.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild 
b/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild
index 66bdf399468d..6493a5eab967 100644
--- a/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild
+++ b/dev-python/zxcvbn/zxcvbn-4.4.28.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2020-2021 Gentoo Authors
+# Copyright 2020-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,6 +15,6 @@ S=${WORKDIR}/zxcvbn-python-${PV}
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 distutils_enable_tests pytest



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

2022-03-24 Thread Jakov Smolić
commit: 35194a4109d0b57724f9499f8058f6464a2ae103
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:37:16 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35194a41

dev-python/peewee: keyword 3.14.10 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/peewee/peewee-3.14.10.ebuild 
b/dev-python/peewee/peewee-3.14.10.ebuild
index c471bcb506de..31af69dcc2ba 100644
--- a/dev-python/peewee/peewee-3.14.10.ebuild
+++ b/dev-python/peewee/peewee-3.14.10.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://github.com/coleifer/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="examples test"
 RESTRICT="!test? ( test )"
 



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

2022-03-24 Thread Jakov Smolić
commit: 847f0393bc25a6d769df10c4e161aec3d0c6f159
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:35:33 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=847f0393

dev-python/flask-principal: keyword 0.4.0-r2 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/flask-principal/flask-principal-0.4.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/flask-principal/flask-principal-0.4.0-r2.ebuild 
b/dev-python/flask-principal/flask-principal-0.4.0-r2.ebuild
index 1951c5c1685e..a06a64000a94 100644
--- a/dev-python/flask-principal/flask-principal-0.4.0-r2.ebuild
+++ b/dev-python/flask-principal/flask-principal-0.4.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 RDEPEND="
dev-python/flask[${PYTHON_USEDEP}]



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

2022-03-24 Thread Jakov Smolić
commit: e9405b1f49b2d13188ef215f92e05627d73f7611
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:34:57 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9405b1f

dev-python/flask-mail: keyword 0.9.1-r1 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/flask-mail/flask-mail-0.9.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/flask-mail/flask-mail-0.9.1-r1.ebuild 
b/dev-python/flask-mail/flask-mail-0.9.1-r1.ebuild
index ff1ef2743777..21b8d51f0240 100644
--- a/dev-python/flask-mail/flask-mail-0.9.1-r1.ebuild
+++ b/dev-python/flask-mail/flask-mail-0.9.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
dev-python/blinker[${PYTHON_USEDEP}]"



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

2022-03-24 Thread Jakov Smolić
commit: e756bfdb289219d40ba9180cc2ce9f3d54f6ccd9
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:37:56 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e756bfdb

dev-python/phonenumbers: keyword 8.12.45 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/phonenumbers/phonenumbers-8.12.45.ebuild 
b/dev-python/phonenumbers/phonenumbers-8.12.45.ebuild
index 46dbfb8b29a0..3b1d20a349fc 100644
--- a/dev-python/phonenumbers/phonenumbers-8.12.45.ebuild
+++ b/dev-python/phonenumbers/phonenumbers-8.12.45.ebuild
@@ -22,7 +22,7 @@ S=${WORKDIR}/${MY_P}/python
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-03-24 Thread Jakov Smolić
commit: 2c4e33672f1f7825f5d69b9f8d50065356f28537
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:32:43 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c4e3367

dev-python/flask-security: keyword 4.1.3 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/24727
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/flask-security/flask-security-4.1.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/flask-security/flask-security-4.1.3.ebuild 
b/dev-python/flask-security/flask-security-4.1.3.ebuild
index d179a41755a8..7461c5995d62 100644
--- a/dev-python/flask-security/flask-security-4.1.3.ebuild
+++ b/dev-python/flask-security/flask-security-4.1.3.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 
 RDEPEND="
>=dev-python/bleach-3.3.1[${PYTHON_USEDEP}]



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

2022-03-24 Thread Jakov Smolić
commit: eb0614a88bfa755487d0e26ffbbe46285535679d
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:33:46 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb0614a8

dev-python/cachetools: keyword 5.0.0 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/cachetools/cachetools-5.0.0.ebuild 
b/dev-python/cachetools/cachetools-5.0.0.ebuild
index 349d8e6ebe72..913ab3eaa0fe 100644
--- a/dev-python/cachetools/cachetools-5.0.0.ebuild
+++ b/dev-python/cachetools/cachetools-5.0.0.ebuild
@@ -12,6 +12,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv x86"
 
 distutils_enable_tests pytest



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

2022-03-24 Thread Jakov Smolić
commit: 4d35b682f9e97d13cd923603115210af664abcba
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:40:44 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d35b682

dev-python/speaklater: keyword 1.3-r1 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/speaklater/speaklater-1.3-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/speaklater/speaklater-1.3-r1.ebuild 
b/dev-python/speaklater/speaklater-1.3-r1.ebuild
index 53f4c0eb1415..d6fc15239d81 100644
--- a/dev-python/speaklater/speaklater-1.3-r1.ebuild
+++ b/dev-python/speaklater/speaklater-1.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 python_configure_all() {
# https://github.com/mitsuhiko/speaklater/issues/2



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

2022-03-24 Thread Jakov Smolić
commit: fa7ffa6f0151d55a38732b829ef32096758e2701
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:34:14 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa7ffa6f

dev-python/flask-babelex: keyword 0.9.4 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/flask-babelex/flask-babelex-0.9.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild 
b/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
index 8c709a50a162..2b2f5f347a35 100644
--- a/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
+++ b/dev-python/flask-babelex/flask-babelex-0.9.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 RDEPEND="dev-python/flask[${PYTHON_USEDEP}]
>=dev-python/Babel-1[${PYTHON_USEDEP}]



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

2022-03-24 Thread Jakov Smolić
commit: 7b3ce12ec52cb4ae3bf50282065ccdbf7965f08b
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:38:43 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b3ce12e

dev-python/pony: keyword 0.7.16 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/pony/pony-0.7.16.ebuild 
b/dev-python/pony/pony-0.7.16.ebuild
index 68f54e9d7234..9740d4224f24 100644
--- a/dev-python/pony/pony-0.7.16.ebuild
+++ b/dev-python/pony/pony-0.7.16.ebuild
@@ -17,7 +17,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 RDEPEND="dev-python/flask[${PYTHON_USEDEP}]"
 BDEPEND="test? ( $(python_gen_impl_dep sqlite) )"



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

2022-03-24 Thread Jakov Smolić
commit: 8b4446ee84dda9d7a01f0649d39b9af0ed072f24
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:40:22 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b4446ee

dev-python/sentinels: keyword 1.0.0 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/sentinels/sentinels-1.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/sentinels/sentinels-1.0.0.ebuild 
b/dev-python/sentinels/sentinels-1.0.0.ebuild
index 307785c1fa29..5ab83cb8e8d4 100644
--- a/dev-python/sentinels/sentinels-1.0.0.ebuild
+++ b/dev-python/sentinels/sentinels-1.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,6 +13,6 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 distutils_enable_tests nose



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

2022-03-24 Thread Jakov Smolić
commit: d6c1de77e6d6bd9ba411c0d08306bd86cf383aa4
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:40:02 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6c1de77

dev-python/flask-sphinx-themes: keyword 1.0.2 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.2.ebuild 
b/dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.2.ebuild
index 630add4ca05b..2fcb2605b2ee 100644
--- a/dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.2.ebuild
+++ b/dev-python/flask-sphinx-themes/flask-sphinx-themes-1.0.2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,4 +16,4 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
+KEYWORDS="amd64 ~arm arm64 ~riscv x86"



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

2022-03-24 Thread Jakov Smolić
commit: d7f1e94dac4ced4cf2d3559064dfef369bdbd470
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:39:31 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7f1e94d

dev-python/flask-babel: keyword 2.0.0 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

 dev-python/flask-babel/flask-babel-2.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/flask-babel/flask-babel-2.0.0.ebuild 
b/dev-python/flask-babel/flask-babel-2.0.0.ebuild
index 08ffec5020f0..fdc3d3f53662 100644
--- a/dev-python/flask-babel/flask-babel-2.0.0.ebuild
+++ b/dev-python/flask-babel/flask-babel-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -19,7 +19,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 x86"
+KEYWORDS="amd64 ~arm arm64 ~riscv x86"
 
 RDEPEND="
dev-python/Babel[${PYTHON_USEDEP}]



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

2022-03-24 Thread Jakov Smolić
commit: b6b49e48e9b64dd915e1692f3ee82e181839f555
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:36:26 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6b49e48

dev-python/mongomock: keyword 4.0.0 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/mongomock/mongomock-4.0.0.ebuild 
b/dev-python/mongomock/mongomock-4.0.0.ebuild
index 486e75c45198..83be201d3df2 100644
--- a/dev-python/mongomock/mongomock-4.0.0.ebuild
+++ b/dev-python/mongomock/mongomock-4.0.0.ebuild
@@ -14,7 +14,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 BDEPEND=">=dev-python/pbr-5.1.1[${PYTHON_USEDEP}]"
 



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

2022-03-24 Thread Jakov Smolić
commit: 834e40f83d7207dd1c2bb25ae781ed8eace944ce
Author: Yu Gu  gmail  com>
AuthorDate: Wed Mar 23 15:41:02 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 22:47:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=834e40f8

dev-python/wtforms: keyword 3.0.1 for ~riscv

Signed-off-by: Yu Gu  gmail.com>
Signed-off-by: Jakov Smolić  gentoo.org>

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

diff --git a/dev-python/wtforms/wtforms-3.0.1.ebuild 
b/dev-python/wtforms/wtforms-3.0.1.ebuild
index 42359fdbfdfc..d10688438784 100644
--- a/dev-python/wtforms/wtforms-3.0.1.ebuild
+++ b/dev-python/wtforms/wtforms-3.0.1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64 ~riscv x86"
 
 RDEPEND="
dev-python/markupsafe[${PYTHON_USEDEP}]"



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

2022-03-24 Thread Lars Wendler
commit: c6020f102e7a09a8f1b3442febf418571a6b3992
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar 24 22:35:24 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar 24 22:40:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6020f10

media-sound/strawberry: Bump to version 1.0.3

Signed-off-by: Lars Wendler  gentoo.org>

 media-sound/strawberry/Manifest|   1 +
 media-sound/strawberry/strawberry-1.0.3.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/media-sound/strawberry/Manifest b/media-sound/strawberry/Manifest
index 4efcbe13e44c..4c360d62bf9e 100644
--- a/media-sound/strawberry/Manifest
+++ b/media-sound/strawberry/Manifest
@@ -1,2 +1,3 @@
 DIST strawberry-1.0.1.tar.xz 11191132 BLAKE2B 
e182ec5db26b22b60e9393b3a418cf44c01b647ab268bafe6d3f098d879817563d68faf7962f0670017f70b7f9f64f3a680056002e7041a2dc956fdc1dceeb95
 SHA512 
6a668ba6dbdcd5c60e78190c2cc8c04ad4ed920102c7555fdd42f6bf47c5b4004f9580c0f009cade642b404f6884b2b5dac386d326bf6f234403e4ba7612a2bb
 DIST strawberry-1.0.2.tar.xz 11202768 BLAKE2B 
555c9492a6c10e9df579d4e9b1c718c722531f21784f68a436d8bd313a6950f0cfc58ded85f9a144de12a73ab07a0cc4d0e028223122dd4fde6604eb92145bd8
 SHA512 
196be23dde8fee531b2996bc7dacaf5b00dcd3f1aaaeb6630ed2a2fdeb777abb66d6c19928fc157dde7d5bceffdc646ff615a6d52bc0e6ee5ddcc14de6ee7a59
+DIST strawberry-1.0.3.tar.xz 11197224 BLAKE2B 
de47d07133506e21e5e5cc6a9460482f364cca4eb1ff9a3433b09a75db4cbde339b6ed7949d788c87d465b6dac488e598b4840a3b24d6439f28cbe59185b01e3
 SHA512 
a61c0824ac75d29048c31ce7d8b7ae5ccc700f21700951b53ab87f30b15a2ce49368c7a366037565d3b5c556cf20dad8c93d1db936108eda7429518d7700d6dc

diff --git a/media-sound/strawberry/strawberry-1.0.3.ebuild 
b/media-sound/strawberry/strawberry-1.0.3.ebuild
new file mode 100644
index ..af868219fe69
--- /dev/null
+++ b/media-sound/strawberry/strawberry-1.0.3.ebuild
@@ -0,0 +1,120 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic plocale xdg
+
+PLOCALES="ca cs de es es_AR es_ES es_MX fi fr hu id it ja ko nb nl pl pt_BR ru 
sv uk zh_CN"
+
+DESCRIPTION="Modern music player and library organizer based on Clementine and 
Qt"
+HOMEPAGE="https://www.strawberrymusicplayer.org/;
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/strawberrymusicplayer/strawberry;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/strawberrymusicplayer/strawberry/releases/download/${PV}/${P}.tar.xz;
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+LICENSE="GPL-3"
+SLOT="0"
+IUSE="cdda debug +gstreamer ipod moodbar mtp pulseaudio +udisks vlc"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   sys-devel/gettext
+   virtual/pkgconfig
+"
+COMMON_DEPEND="
+   dev-db/sqlite:=
+   dev-libs/glib:2
+   dev-libs/protobuf:=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5[ssl]
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   >=media-libs/taglib-1.11.1_p20181028
+   x11-libs/libX11
+   cdda? ( dev-libs/libcdio:= )
+   gstreamer? (
+   >=media-libs/chromaprint-1.4:=
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   )
+   ipod? ( >=media-libs/libgpod-0.8.0 )
+   moodbar? ( sci-libs/fftw:3.0 )
+   mtp? ( >=media-libs/libmtp-1.0.0 )
+   pulseaudio? ( media-sound/pulseaudio )
+   vlc? ( media-video/vlc )
+"
+# Note: sqlite driver of dev-qt/qtsql is bundled, so no sqlite use is 
required; check if this can be overcome someway;
+RDEPEND="${COMMON_DEPEND}
+   gstreamer? (
+   media-plugins/gst-plugins-meta:1.0
+   media-plugins/gst-plugins-soup:1.0
+   media-plugins/gst-plugins-taglib:1.0
+   )
+   mtp? ( gnome-base/gvfs[mtp] )
+   udisks? ( sys-fs/udisks:2 )
+"
+DEPEND="${COMMON_DEPEND}
+   >=dev-cpp/gtest-1.8.0
+   dev-libs/boost
+   dev-qt/qttest:5
+"
+
+DOCS=( Changelog README.md )
+
+REQUIRED_USE="
+   cdda? ( gstreamer )
+   || ( gstreamer vlc )
+"
+
+src_prepare() {
+   plocale_find_changes "src/translations" "" ".po"
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # spotify is not in portage
+   local mycmakeargs=(
+   -DBUILD_WERROR=OFF
+   # avoid automagically enabling of ccache (bug #611010)
+   -DCCACHE_EXECUTABLE=OFF
+   -DENABLE_GIO=ON
+   -DLINGUAS="$(plocale_get_locales)"
+   -DENABLE_AUDIOCD="$(usex cdda)"
+   -DENABLE_GSTREAMER="$(usex gstreamer)"
+   -DENABLE_LIBGPOD="$(usex ipod)"
+   -DENABLE_LIBMTP="$(usex mtp)"
+   -DENABLE_LIBPULSE="$(usex pulseaudio)"
+   

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

2022-03-24 Thread Sam James
commit: 7ed3b2af49e86956f362d14906831f31e2924089
Author: Sam James  gentoo  org>
AuthorDate: Thu Mar 24 22:25:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Mar 24 22:26:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ed3b2af

dev-db/postgresql: add missing llvm.eclass inherit

Revbump is needed as requested/needed LLVM versions may not have
been used.

Closes: https://bugs.gentoo.org/835887
Signed-off-by: Sam James  gentoo.org>

 .../postgresql/{postgresql-13.6-r1.ebuild => postgresql-13.6-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/postgresql/postgresql-13.6-r1.ebuild 
b/dev-db/postgresql/postgresql-13.6-r2.ebuild
similarity index 99%
rename from dev-db/postgresql/postgresql-13.6-r1.ebuild
rename to dev-db/postgresql/postgresql-13.6-r2.ebuild
index 166a5befa679..7c89241ebf32 100644
--- a/dev-db/postgresql/postgresql-13.6-r1.ebuild
+++ b/dev-db/postgresql/postgresql-13.6-r2.ebuild
@@ -6,7 +6,7 @@ EAPI=7
 PYTHON_COMPAT=( python3_{8,9,10} )
 LLVM_MAX_SLOT=14
 
-inherit flag-o-matic linux-info multilib pam prefix python-single-r1 systemd 
tmpfiles
+inherit flag-o-matic linux-info llvm multilib pam prefix python-single-r1 
systemd tmpfiles
 
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 



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

2022-03-24 Thread Lars Wendler
commit: 827fc52e085fbfca5eb0bee8c55648c30c876c99
Author: Thomas Bettler  gmail  com>
AuthorDate: Thu Dec 16 19:33:50 2021 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar 24 22:21:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=827fc52e

net-libs/libpsl: add python 3.10

Closes: https://bugs.gentoo.org/829372
Closes: https://github.com/gentoo/gentoo/pull/23344
Signed-off-by: Thomas Bettler  gmail.com>
Signed-off-by: Lars Wendler  gentoo.org>

 net-libs/libpsl/libpsl-0.21.0.ebuild | 2 +-
 net-libs/libpsl/libpsl-0.21.1.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-libs/libpsl/libpsl-0.21.0.ebuild 
b/net-libs/libpsl/libpsl-0.21.0.ebuild
index 33ab42070c4a..9f62b4a5210b 100644
--- a/net-libs/libpsl/libpsl-0.21.0.ebuild
+++ b/net-libs/libpsl/libpsl-0.21.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 inherit multilib-minimal python-any-r1
 
 DESCRIPTION="C library for the Public Suffix List"

diff --git a/net-libs/libpsl/libpsl-0.21.1.ebuild 
b/net-libs/libpsl/libpsl-0.21.1.ebuild
index 3af43132fb4f..a64f5cc0f2d7 100644
--- a/net-libs/libpsl/libpsl-0.21.1.ebuild
+++ b/net-libs/libpsl/libpsl-0.21.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..9} )
+PYTHON_COMPAT=( python3_{8..10} )
 inherit multilib-minimal python-any-r1
 
 DESCRIPTION="C library for the Public Suffix List"



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

2022-03-24 Thread Lars Wendler
commit: ab01cd1864f97407bbbf6acb45ca9b70d95f75d5
Author: Lars Wendler  gentoo  org>
AuthorDate: Thu Mar 24 22:16:44 2022 +
Commit: Lars Wendler  gentoo  org>
CommitDate: Thu Mar 24 22:17:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab01cd18

net-im/pidgin: Attempt to fix USE="gstreamer -v4l" constellation

Closes: https://bugs.gentoo.org/835960
Signed-off-by: Lars Wendler  gentoo.org>

 net-im/pidgin/pidgin-2.14.8-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-im/pidgin/pidgin-2.14.8-r1.ebuild 
b/net-im/pidgin/pidgin-2.14.8-r1.ebuild
index f5afab2726d5..028282d415c0 100644
--- a/net-im/pidgin/pidgin-2.14.8-r1.ebuild
+++ b/net-im/pidgin/pidgin-2.14.8-r1.ebuild
@@ -188,8 +188,6 @@ src_configure() {
$(use_enable debug)
$(use_enable doc doxygen)
$(use_enable gstreamer)
-   $(use_enable gstreamer farstream)
-   $(use_enable gstreamer vv)
$(use_enable gtk gtkui)
$(use_enable gtk sm)
$(use_enable idn)
@@ -200,7 +198,9 @@ src_configure() {
$(use_enable sasl cyrus-sasl )
$(use_enable tk)
$(use_enable tcl)
+   $(use_enable v4l farstream)
$(use_enable v4l gstreamer-video)
+   $(use_enable v4l vv)
$(use_enable zeroconf avahi)
$(use_with gstreamer gstreamer 1.0)
$(usex gtk '--enable-nls' "$(use_enable nls)")



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

2022-03-24 Thread Jakov Smolić
commit: 3212e8eb35c63d4bdff7a3613814320d9f7a9bf7
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 21:44:44 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 21:44:44 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=3212e8eb

overlays: Remove git:// URL from blackburn29 overlay since it doesn't
work

Fixes: 9803e5aedd255a0364734cfa9d8b1a0772d4cd83
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 2ef6c2b..e2c348b 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -642,7 +642,6 @@
   Blake LaFleur
 
 https://github.com/blackburn29/blackburn29-overlay.git
-git://github.com/blackburn29/blackburn29-overlay.git
 g...@github.com:blackburn29/blackburn29-overlay.git
 
https://github.com/blackburn29/blackburn29-overlay/commits/master.atom
   



[gentoo-commits] repo/gentoo:master commit in: app-portage/gentoopm/

2022-03-24 Thread Michał Górny
commit: c8700535914aef4dd51bab15666cddde012b1bff
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 21:17:42 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 24 21:17:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8700535

app-portage/gentoopm: Remove old

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

 app-portage/gentoopm/Manifest  |  1 -
 app-portage/gentoopm/gentoopm-0.3.3.ebuild | 28 
 2 files changed, 29 deletions(-)

diff --git a/app-portage/gentoopm/Manifest b/app-portage/gentoopm/Manifest
index dde6c0d3e50f..974d1511a2fe 100644
--- a/app-portage/gentoopm/Manifest
+++ b/app-portage/gentoopm/Manifest
@@ -1,2 +1 @@
-DIST gentoopm-0.3.3.tar.gz 38624 BLAKE2B 
018be741c6970b17525e56d5acdb23e15c8f78016fddda50ef329ea65b84e085a928e1e5e95c69757530c067c28aa578e9c56b8bd7546d7249a75e9c3cc3b57f
 SHA512 
91ea07035b25bdccd8072c5691690ae0b40b6220a2ea29e4b051aeb8455f200e94569036af42ff2f5d7714344d332e5d71e3ff8dfde811f2aa6b6c1b3a895b21
 DIST gentoopm-0.4.tar.gz 39123 BLAKE2B 
c8ea81e2d1aa09d3aa838ccb2a1d221e29ba6cf20c5539435a36da058733ee6814864f11a5a96742b371c6d0f2e1ffa269edf197cd30cf4bc7d517f9fa6623cc
 SHA512 
7af0d4d8b3562b009d8897b70b8621d2004e22a16006ec84144544174724757b39e09cbde98ee876adc166947a58e4afa85f752c66d4dbb03ff1d3a52074720f

diff --git a/app-portage/gentoopm/gentoopm-0.3.3.ebuild 
b/app-portage/gentoopm/gentoopm-0.3.3.ebuild
deleted file mode 100644
index 7cfa28e7b892..
--- a/app-portage/gentoopm/gentoopm-0.3.3.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="A common interface to Gentoo package managers"
-HOMEPAGE="https://github.com/mgorny/gentoopm/;
-SRC_URI="https://github.com/mgorny/gentoopm/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~mips ~sparc x86 ~x64-macos"
-IUSE=""
-
-RDEPEND="
-   || (
-   >=sys-apps/pkgcore-0.9.4[${PYTHON_USEDEP}]
-   >=sys-apps/portage-2.1.10.3[${PYTHON_USEDEP}] )"
-PDEPEND="app-eselect/eselect-package-manager"
-
-python_test() {
-   esetup.py test
-}



[gentoo-commits] repo/gentoo:master commit in: app-arch/lziprecover/

2022-03-24 Thread Michał Górny
commit: 883203f59e7e264f0725908c912eca82b60269eb
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 21:18:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 24 21:18:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=883203f5

app-arch/lziprecover: Remove old

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

 app-arch/lziprecover/Manifest|  1 -
 app-arch/lziprecover/lziprecover-1.22.ebuild | 27 ---
 2 files changed, 28 deletions(-)

diff --git a/app-arch/lziprecover/Manifest b/app-arch/lziprecover/Manifest
index e1928d7be13e..19a080027841 100644
--- a/app-arch/lziprecover/Manifest
+++ b/app-arch/lziprecover/Manifest
@@ -1,2 +1 @@
-DIST lziprecover-1.22.tar.gz 152840 BLAKE2B 
c6c5ca0bcb0309539d48c89a1259c5d1d9b47372a92935f762daa428a9e66d6ab0b0a2ac956b70e15824d699c7de0d92e92f0c7ff68ea091599754082771b928
 SHA512 
5fa209f6a80314ba7db45effc2546be660b6a31133570abf2e37a4d570910757fc4241e2496e63a95fadb66cffbca59976a8568659f4e8562baeb16517599e96
 DIST lziprecover-1.23.tar.gz 156147 BLAKE2B 
71a210c7143ff6f0f8b9cce7d5a1b6f681f8331fb971fa2836dfd04ad50e732ab595a415a9b8a3020c70c884c7e7fce5c605e63e0f28ea94f2de9d5447199a83
 SHA512 
9f2d40311f901c2c00fa6b106a2363dfcd7b6c73ae86282733d7c3451237ee30f6d5cce035ab5ba63300eea637eeb3ac5db7e7571bdef1bef259b801b10f1c7a

diff --git a/app-arch/lziprecover/lziprecover-1.22.ebuild 
b/app-arch/lziprecover/lziprecover-1.22.ebuild
deleted file mode 100644
index d328cc1e2e94..
--- a/app-arch/lziprecover/lziprecover-1.22.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Lziprecover is a data recovery tool and decompressor for lzip 
compressed files"
-HOMEPAGE="https://www.nongnu.org/lzip/lziprecover.html;
-SRC_URI="https://download.savannah.gnu.org/releases/lzip/${PN}/${P/_/-}.tar.gz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-S="${WORKDIR}/${P/_/-}"
-
-src_configure() {
-   # not autotools-based
-   ./configure \
-   --prefix="${EPREFIX}"/usr \
-   CXX="$(tc-getCXX)" \
-   CPPFLAGS="${CPPFLAGS}" \
-   CXXFLAGS="${CXXFLAGS}" \
-   LDFLAGS="${LDFLAGS}" || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-portage/smart-live-rebuild/

2022-03-24 Thread Michał Górny
commit: 186b4e26c60ec57224874b76fb998f77125976ca
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Mar 24 21:17:59 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Mar 24 21:17:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=186b4e26

app-portage/smart-live-rebuild: Remove old

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

 app-portage/smart-live-rebuild/Manifest|  1 -
 .../smart-live-rebuild-1.3.7.ebuild| 36 --
 2 files changed, 37 deletions(-)

diff --git a/app-portage/smart-live-rebuild/Manifest 
b/app-portage/smart-live-rebuild/Manifest
index 87ee04b91fd3..3725a27ab008 100644
--- a/app-portage/smart-live-rebuild/Manifest
+++ b/app-portage/smart-live-rebuild/Manifest
@@ -1,2 +1 @@
-DIST smart-live-rebuild-1.3.7.tar.gz 17283 BLAKE2B 
9de30e07b7c950c7e0e3d7f20a364ef65028fe425a017cf46de73a4aaa2c82f13359bc8e2d3269ed50b201b95c41af16c6f233576c1176f8c9b6394227bc8e14
 SHA512 
47111fa0e4ef9630a60b262566166822ac3245338c9cabc9e5959922e6f60cac70087025321fc9946ef7527b02ce7eb25d74e22d045f9e875c82d6f7877feb4b
 DIST smart-live-rebuild-1.4.0.tar.gz 17630 BLAKE2B 
84faabbe702dc05dbd895961dba83b8b8968bafcc5e35bd1b7dc8644f98a904651168aaee081ecb0c101761def2f5d49046116179156e75f6b335a79595d82e6
 SHA512 
add82ac413c698a430afbb48a7d4c7d0dae26b9d37f01dcbe7f71ee2e2fbc1686ff63c6ea9ae1c24dbc3662d27247bec2ccc002841bd42c4c11729873a49617f

diff --git a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.7.ebuild 
b/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.7.ebuild
deleted file mode 100644
index 62ac7c7bd7c8..
--- a/app-portage/smart-live-rebuild/smart-live-rebuild-1.3.7.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DISTUTILS_USE_SETUPTOOLS=no
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Check live packages for updates and emerge them as necessary"
-HOMEPAGE="https://github.com/mgorny/smart-live-rebuild/;
-SRC_URI="https://github.com/mgorny/smart-live-rebuild/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 hppa ~mips ~sparc x86 ~x64-macos"
-IUSE=""
-
-RDEPEND=">=app-portage/gentoopm-0.2.1[${PYTHON_USEDEP}]"
-
-# Tests need to be fixed
-RESTRICT=test
-
-python_test() {
-   esetup.py test
-}
-
-python_install_all() {
-   distutils-r1_python_install_all
-
-   insinto /etc/portage
-   newins smart-live-rebuild.conf{.example,}
-   insinto /usr/share/portage/config/sets
-   newins sets.conf.example smart-live-rebuild.conf
-}



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

2022-03-24 Thread Jakov Smolić
commit: 6c0ecebe2953fe9f4d02efddd3669c484c71ba0f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:35:03 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:35:03 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=6c0ecebe

overlays: Replace git:// URL for crossdev overlay (unsupported on Github)

Closes: https://bugs.gentoo.org/835902
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index f399818..6c23862 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -892,7 +892,7 @@
   m...@gentoo.org
   Vadim A. Misbakh-Soloviov
 
-git://github.com/alphallc/crossdev
+https://github.com/alphallc/crossdev
 https://github.com/alphallc/crossdev/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: f41ed51d0067dfd2f1b4bbc8bb21bf3c2c281f47
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:37:01 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:37:01 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=f41ed51d

overlays: Replace git:// URL for linux-surface overlay (unsupported on
Github)

Closes: https://bugs.gentoo.org/835905
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 2306032..2ef6c2b 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -2478,7 +2478,7 @@
   parin...@protonmail.com
   Parinthapat P.
 
-git://github.com/Parinz/linux-surface-overlay.git
+https://github.com/Parinz/linux-surface-overlay.git
 
https://github.com/Parinz/linux-surface-overlay/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: 371e988b533432ded658d1ccf4b019aa8236f049
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:32:23 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:32:23 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=371e988b

overlays: Replace git:// URL for rich0 overlay (unsupported on Github)

Closes: https://bugs.gentoo.org/835908
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index cbcd362..e9de613 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -3531,7 +3531,7 @@
   ri...@gentoo.org
   Richard Freeman
 
-git://github.com/rich0/rich0-overlay.git
+https://github.com/rich0/rich0-overlay.git
 https://github.com/rich0/rich0-overlay/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: 3f17a806995e47dbe96dcbe84ec1b404d228d214
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:35:41 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:35:41 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=3f17a806

overlays: Replace git:// URL for deepin overlay (unsupported on Github)

Closes: https://bugs.gentoo.org/835903
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 6c23862..2306032 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -951,7 +951,7 @@
   ate...@gmail.com
   Aten Zhang
 
-git://github.com/zhtengw/deepin-overlay.git
+https://github.com/zhtengw/deepin-overlay.git
 https://github.com/zhtengw/deepin-overlay/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: a961dfae8d382682de493f0bac5e0be657951555
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:30:45 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:30:45 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=a961dfae

overlays: Replace git:// URL for scrill (unsupported on Github)

Closes: https://bugs.gentoo.org/835910
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index b4338bf..286b427 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -3773,7 +3773,7 @@
   sergey.zh...@gmail.com
   Sergey Zhuga
 
-git://github.com/scrill/scrill-overlay.git
+https://github.com/scrill/scrill-overlay.git
 https://github.com/scrill/scrill-overlay/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: 38713cd2a189e85c47d006bd94c745e2a499391a
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:23:04 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:27:54 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=38713cd2

overlays: Drop git:// URL from sage-on-gentoo (unsupported on Github)

Closes: https://bugs.gentoo.org/835909
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 11e262d..77e37c3 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -3678,7 +3678,6 @@
   frp.bis...@gmail.com
   Francois Bissey
 
-git://github.com/cschwan/sage-on-gentoo.git
 https://github.com/cschwan/sage-on-gentoo.git
 https://github.com/feeds/cschwan/commits/sage-on-gentoo/master
   



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

2022-03-24 Thread Jakov Smolić
commit: 15e14bf2654d2a2b16eaa67c4365127e61db29da
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:32:59 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:32:59 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=15e14bf2

overlays: Replace git:// URL for moltonel overlay (unsupported on Github)

Closes: https://bugs.gentoo.org/835907
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index e9de613..b19b639 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -2702,7 +2702,7 @@
   molto...@gmail.com
   Vincent de Phily
 
-git://github.com/vincentdephily/moltonel-ebuilds.git
+https://github.com/vincentdephily/moltonel-ebuilds.git
   
   
 monero



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

2022-03-24 Thread Jakov Smolić
commit: 9a44a5be8d8a0e6820119fbb8ee21fc8dcb7c030
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:29:14 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:30:02 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=9a44a5be

overlays: Replace git:// URL with https:// for FireBurn overlay

Closes: https://bugs.gentoo.org/835899
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 4275dc3..b4338bf 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1405,7 +1405,7 @@
   m...@fireburn.co.uk
   Mike Lothian
 
-git://github.com/FireBurn/Overlay.git
+https://github.com/FireBurn/Overlay.git
 https://github.com/FireBurn/Overlay/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: 2d7740565e8ee168b6a1dad3bde90acc3b297e6b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:33:46 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:33:46 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=2d774056

overlays: Replace git:// URL for bumblebee overlay (unsupported on
Github)

Closes: https://bugs.gentoo.org/835900
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index b19b639..f399818 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -760,7 +760,7 @@
   m...@gentoo.org
   Vadim A. Misbakh-Soloviov
 
-git://github.com/Bumblebee-Project/bumblebee-gentoo
+https://github.com/Bumblebee-Project/bumblebee-gentoo
 
https://github.com/Bumblebee-Project/bumblebee-gentoo/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: 65b374c6e1036a18c97560a637027566bbb9d0bb
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:31:33 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:31:33 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=65b374c6

overlays: Replace git:// URL for suntar overlay (unsupported on Github)

Closes: https://bugs.gentoo.org/835911
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 286b427..cbcd362 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -4178,7 +4178,7 @@
   alenk.s...@gmail.com
   Elena Sergeicheva
 
-git://github.com/suntar/suntar-overlay.git
+https://github.com/suntar/suntar-overlay.git
 https://github.com/suntar/suntar-overlay/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: d72ef6d3f11cd42336b73dc58609014bb77b0c01
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:27:20 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:29:53 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=d72ef6d3

overlays: Drop git:// URL from tmacedo overlay (unsupported on Github)

Closes: https://bugs.gentoo.org/835913
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 77e37c3..4275dc3 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -4371,7 +4371,7 @@
   tftfmac...@gmail.com
   Tiago Macedo
 
-git://github.com/tmacedo/portage.git
+https://github.com/tmacedo/portage.git
 https://github.com/tmacedo/portage/commits/master.atom
   
   



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

2022-03-24 Thread Jakov Smolić
commit: e59c68703af5156fc25011c18014844fe06d8090
Author: Jakov Smolić  gentoo  org>
AuthorDate: Thu Mar 24 20:19:32 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Thu Mar 24 20:20:41 2022 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=e59c6870

overlays: Drop git:// URL from foo-overlay per slashbeast's request

Closes: https://bugs.gentoo.org/835904
Signed-off-by: Jakov Smolić  gentoo.org>

 files/overlays/repositories.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 82d4855..11e262d 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1517,7 +1517,6 @@
   slashbe...@gentoo.org
   Piotr Karbowski
 
-git://github.com/slashbeast/foo-overlay.git
 https://github.com/slashbeast/foo-overlay.git
 https://github.com/slashbeast/foo-overlay/commits/master.atom
   



[gentoo-commits] repo/gentoo:master commit in: www-plugins/chrome-binary-plugins/

2022-03-24 Thread Stephan Hartmann
commit: b32406b969f831bce46eb3136f9900a4d487b5ee
Author: Stephan Hartmann  gentoo  org>
AuthorDate: Thu Mar 24 20:17:54 2022 +
Commit: Stephan Hartmann  gentoo  org>
CommitDate: Thu Mar 24 20:18:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b32406b9

www-plugins/chrome-binary-plugins: automated update (100.0.4896.56_beta)

Signed-off-by: Stephan Hartmann  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...6.46_beta.ebuild => chrome-binary-plugins-100.0.4896.56_beta.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-plugins/chrome-binary-plugins/Manifest 
b/www-plugins/chrome-binary-plugins/Manifest
index 5dbbd4239326..3e45c3806cad 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_100.0.4896.46-1_amd64.deb 83545416 BLAKE2B 
cf75c470f0d33989762e92462a7560eaaa1a096540e3adf12512b3d4ca26adaffa825654e7886d6a0a10476bb13493e8d7f4014804d0ab27c3f564f26ed3a897
 SHA512 
4a5d0c3073c7fc1f8070d91f9a6783235c6e16da6a22a0de970525e6bf4643bd9e0848c978d10819fcaf31efb90f98b90abfc3e5d4c544f54b63f0e7587c214b
+DIST google-chrome-beta_100.0.4896.56-1_amd64.deb 83611996 BLAKE2B 
7b4b3ecb5d9e7e8083833686e2cc329c2e456804b75604cd53177ec5847cf55aeafcb444f9c1e8a5907f2ad60e698779a936fadb0623b286485c11aa2e73b16f
 SHA512 
06a317477d3a9efc6b7dbce053b930ddc483105bcaf72f3bac8cfc8f8d4bfd755261e7cbeca797bbb27edebbcda56b9e8054e1c9cd70c31c04f2003280268d7c
 DIST google-chrome-stable_99.0.4844.82-1_amd64.deb 82974424 BLAKE2B 
9f6982d6e83ae7e07e6c545094e2fae1eb162a2be6fd577dec089bc22f4ae1bc18ad72e2062659f5fb499b5e42634dd8a049bebb1e46159811001eb8e420df20
 SHA512 
e1c186ba889bf6af9bc56316f1f5286bd4c8072b12c3830f149a3e0873771ca122f3e11730100edf2e25862bc6d336825f4b831e7c14bf74789b4f9589281f28
 DIST google-chrome-unstable_101.0.4951.7-1_amd64.deb 84358668 BLAKE2B 
efc65d59dea8474c697f2c24349898995bd37370f2322e918226542b2ce04061633f1d358d42f5dd4bc36148e55f156c7be51dfb09afcfd359bc16431cdac41e
 SHA512 
f26ed8f4cce75cb858536355320268bbdc1c2dab35505eb58c3e2b5cfd4915ff5776336d353074ce0b1447d9b22b63d02bd502df152220c1e801afe045778374

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-100.0.4896.46_beta.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-100.0.4896.56_beta.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-100.0.4896.46_beta.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-100.0.4896.56_beta.ebuild



  1   2   3   >