[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-wine/

2022-11-16 Thread Ionen Wolkens
commit: d4b3ba03339d6a70aae2cc7cf933f76a07392db9
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Nov 17 07:50:14 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Nov 17 07:52:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b3ba03

app-eselect/eselect-wine: bigger warning for collision-protect

Easy to miss with the wall of text portage gives.

Note users typically don't have this enabled, it's primarily Gentoo
devs that may use this more aggressive version of protect-owned.

Signed-off-by: Ionen Wolkens  gentoo.org>

 app-eselect/eselect-wine/eselect-wine-2.0.0.ebuild | 16 +++-
 1 file changed, 11 insertions(+), 5 deletions(-)

diff --git a/app-eselect/eselect-wine/eselect-wine-2.0.0.ebuild 
b/app-eselect/eselect-wine/eselect-wine-2.0.0.ebuild
index 50b4a4c56409..5129be25c9b1 100644
--- a/app-eselect/eselect-wine/eselect-wine-2.0.0.ebuild
+++ b/app-eselect/eselect-wine/eselect-wine-2.0.0.ebuild
@@ -16,11 +16,17 @@ SLOT="0"
 RDEPEND="app-admin/eselect"
 
 pkg_pretend() {
-   # not-owned {bin,include}/wine is removed by pkg_preinst's unset, but
-   # portage currently checks collisions and errors out /before/ 
pkg_preinst
-   has_version '

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

2022-11-16 Thread Thomas Beierlein
commit: 573dae0ef553e180e7f5c85a333adce34237f59b
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Thu Nov 17 07:06:09 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Thu Nov 17 07:09:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573dae0e

media-libs/hamlib: fix CLANG warnings

Backported from Hamlib repo i
(see https://github.com/Hamlib/Hamlib/issues/1149)

Closes: https://bugs.gentoo.org/880961
Signed-off-by: Thomas Beierlein  gentoo.org>

 .../files/hamlib-4.4-fix-clang-warnings.patch  | 191 +
 media-libs/hamlib/hamlib-4.4.ebuild|   1 +
 2 files changed, 192 insertions(+)

diff --git a/media-libs/hamlib/files/hamlib-4.4-fix-clang-warnings.patch 
b/media-libs/hamlib/files/hamlib-4.4-fix-clang-warnings.patch
new file mode 100644
index ..832af50e0e6c
--- /dev/null
+++ b/media-libs/hamlib/files/hamlib-4.4-fix-clang-warnings.patch
@@ -0,0 +1,191 @@
+From 1aebee2da9d29ff1d1a16e19f23bbff4e0f319a8 Mon Sep 17 00:00:00 2001
+From: Mike Black W9MDB 
+Date: Mon, 14 Nov 2022 16:37:20 -0600
+Subject: [PATCH 1/2] Fix clang warning on callback functions
+ https://github.com/Hamlib/Hamlib/issues/1149
+
+---
+ include/hamlib/rig.h |  4 +++-
+ rigs/aor/aor.c   |  4 ++--
+ src/mem.c| 15 ---
+ tests/testcaps.sh| 12 
+ 4 files changed, 25 insertions(+), 10 deletions(-)
+ create mode 100755 tests/testcaps.sh
+
+diff --git a/include/hamlib/rig.h b/include/hamlib/rig.h
+index 574c21bd..5dbb5a7b 100644
+--- a/include/hamlib/rig.h
 b/include/hamlib/rig.h
+@@ -1675,7 +1675,7 @@ typedef struct cal_table_float cal_table_float_t;
+ //! @cond Doxygen_Suppress
+ #define EMPTY_FLOAT_CAL { 0, { { 0, 0f }, } }
+ 
+-typedef int (* chan_cb_t)(RIG *, channel_t **, int, const chan_t *, 
rig_ptr_t);
++typedef int (* chan_cb_t)(RIG *, vfo_t vfo, channel_t **, int, const chan_t 
*, rig_ptr_t);
+ typedef int (* confval_cb_t)(RIG *,
+  const struct confparams *,
+  value_t *,
+@@ -2024,10 +2024,12 @@ struct rig_caps {
+ int (*get_chan_all_cb)(RIG *rig, vfo_t vfo, chan_cb_t chan_cb, rig_ptr_t);
+ 
+ int (*set_mem_all_cb)(RIG *rig,
++  vfo_t vfo,
+   chan_cb_t chan_cb,
+   confval_cb_t parm_cb,
+   rig_ptr_t);
+ int (*get_mem_all_cb)(RIG *rig,
++  vfo_t vfo,
+   chan_cb_t chan_cb,
+   confval_cb_t parm_cb,
+   rig_ptr_t);
+diff --git a/rigs/aor/aor.c b/rigs/aor/aor.c
+index ad4331d9..3f69d723 100644
+--- a/rigs/aor/aor.c
 b/rigs/aor/aor.c
+@@ -1364,7 +1364,7 @@ int aor_get_chan_all_cb(RIG *rig, vfo_t vfo, chan_cb_t 
chan_cb, rig_ptr_t arg)
+  * future data for channel channel_num
+  */
+ chan = NULL;
+-retval = chan_cb(rig, , chan_next, chan_list, arg);
++retval = chan_cb(rig, vfo, , chan_next, chan_list, arg);
+ 
+ if (retval != RIG_OK)
+ {
+@@ -1414,7 +1414,7 @@ int aor_get_chan_all_cb(RIG *rig, vfo_t vfo, chan_cb_t 
chan_cb, rig_ptr_t arg)
+  * provide application with channel data,
+  * and ask for a new channel structure
+  */
+-chan_cb(rig, , chan_next, chan_list, arg);
++chan_cb(rig, vfo, , chan_next, chan_list, arg);
+ 
+ if (j >= LINES_PER_MA - 1)
+ {
+diff --git a/src/mem.c b/src/mem.c
+index 8aa51e57..a6d72e59 100644
+--- a/src/mem.c
 b/src/mem.c
+@@ -954,7 +954,7 @@ int get_chan_all_cb_generic(RIG *rig, vfo_t vfo, chan_cb_t 
chan_cb,
+  * future data for channel channel_num
+  */
+ chan = NULL;
+-retval = chan_cb(rig, , chan_list[i].startc, chan_list, arg);
++retval = chan_cb(rig, vfo, , chan_list[i].startc, chan_list, 
arg);
+ 
+ if (retval != RIG_OK)
+ {
+@@ -995,7 +995,7 @@ int get_chan_all_cb_generic(RIG *rig, vfo_t vfo, chan_cb_t 
chan_cb,
+ 
+ chan_next = j < chan_list[i].endc ? j + 1 : j;
+ 
+-chan_cb(rig, , chan_next, chan_list, arg);
++chan_cb(rig, vfo, , chan_next, chan_list, arg);
+ }
+ }
+ 
+@@ -1016,7 +1016,7 @@ int set_chan_all_cb_generic(RIG *rig, vfo_t vfo, 
chan_cb_t chan_cb,
+ for (j = chan_list[i].startc; j <= chan_list[i].endc; j++)
+ {
+ 
+-chan_cb(rig, , j, chan_list, arg);
++chan_cb(rig, vfo, , j, chan_list, arg);
+ chan->vfo = RIG_VFO_MEM;
+ 
+ retval = rig_set_channel(rig, vfo, chan);
+@@ -1044,6 +1044,7 @@ struct map_all_s
+  * chan_cb_t to be used for non cb get/set_all
+  */
+ static int map_chan(RIG *rig,
++vfo_t vfo,
+ channel_t **chan,
+ int channel_num,
+ const chan_t *chan_list,
+@@ -1343,7 +1344,7 @@ int HAMLIB_API 

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

2022-11-16 Thread Thomas Beierlein
commit: 22c0bcaa71a17ddf52bc2be680bcf4aaee092c76
Author: Thomas Beierlein  gentoo  org>
AuthorDate: Thu Nov 17 07:04:43 2022 +
Commit: Thomas Beierlein  gentoo  org>
CommitDate: Thu Nov 17 07:09:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22c0bcaa

media-libs/hamlib: drop 4.3.1

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

 media-libs/hamlib/Manifest|  1 -
 media-libs/hamlib/hamlib-4.3.1.ebuild | 97 ---
 2 files changed, 98 deletions(-)

diff --git a/media-libs/hamlib/Manifest b/media-libs/hamlib/Manifest
index 6e041160e129..784d5e34f9f6 100644
--- a/media-libs/hamlib/Manifest
+++ b/media-libs/hamlib/Manifest
@@ -1,2 +1 @@
-DIST hamlib-4.3.1.tar.gz 2356944 BLAKE2B 
c803d253c867303cbde98b6f2e10f610aac111b7bd81fd343e1396cb86384b1c26942e5ccb8e395e073f9aa3d48e6f9edc1b64da14b2ec5ca09f98fbd3dee667
 SHA512 
8dee4676a19de7ac1ef733a4285b76e918f11aad6594d0557d36df295faf04c615e0993edb2f9ed5e7aea718c184603fec831caf28b75026c705f0b2e4b9eca7
 DIST hamlib-4.4.tar.gz 2401399 BLAKE2B 
4256b5b4374c62ef4fb957d29deda95aa9d15a8b52b81c5db1c07f3ebbf4c8e48c6c082769cef82c8457b3f813ac00ef7a37136615747f2c93e5275a112891e7
 SHA512 
37366ba180031de34da447c3d4e0086f156b893f57b5ab9bbc38b8e1f4bf9310fa1a9eb2a6d7884f1f11900dbdb811b4071e023aba571ea0ac5d07ddb122bf7b

diff --git a/media-libs/hamlib/hamlib-4.3.1.ebuild 
b/media-libs/hamlib/hamlib-4.3.1.ebuild
deleted file mode 100644
index 905bf3bb1fd3..
--- a/media-libs/hamlib/hamlib-4.3.1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{7..10} )
-MY_P=${P/_rc2/~rc2}
-
-inherit autotools python-single-r1
-
-DESCRIPTION="Ham radio backend rig control libraries"
-HOMEPAGE="http://www.hamlib.org;
-SRC_URI="mirror://sourceforge/hamlib/${MY_P}.tar.gz"
-
-LICENSE="LGPL-2 GPL-2"
-SLOT="0/4.2"
-KEYWORDS="amd64 x86"
-IUSE="doc perl python tcl"
-
-RESTRICT="test"
-
-RDEPEND="
-   =virtual/libusb-0*
-   dev-libs/libxml2
-   sys-libs/readline:0=
-   perl? ( dev-lang/perl )
-   python? ( ${PYTHON_DEPS} )
-   tcl? ( dev-lang/tcl:0= )"
-
-DEPEND=" ${RDEPEND}
-   virtual/pkgconfig
-   dev-lang/swig
-   >=sys-devel/libtool-2.2
-   doc? ( app-doc/doxygen
-   dev-util/source-highlight )"
-
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DOCS=(AUTHORS NEWS PLAN README README.betatester README.developer)
-
-S="${WORKDIR}/${MY_P}"
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   # fix hardcoded libdir paths
-   sed -i -e "s#fix}/lib#fix}/$(get_libdir)/hamlib#" \
-   -e "s#fix}/include#fix}/include/hamlib#" \
-   hamlib.pc.in || die "sed failed"
-
-   # Correct install target to whatever INSTALLDIRS says and use vendor
-   # installdirs everywhere (bug #611550)
-   sed -i -e "s#install_site#install#" \
-   -e 's#MAKEFILE="Hamlib-pl.mk"#MAKEFILE="Hamlib-pl.mk" 
INSTALLDIRS=vendor#' \
-   bindings/Makefile.am || die "sed failed patching for perl"
-
-   # make building of documentation compatible with autotools-utils
-   sed -i -e "s/doc:/html:/g" doc/Makefile.am || die "sed failed"
-
-   eautoreconf
-
-   eapply_user
-}
-
-src_configure() {
-   econf \
-   --libdir=/usr/$(get_libdir)/hamlib \
-   --disable-static \
-   --with-xml-support \
-   $(use_with perl perl-binding) \
-   $(use_with python python-binding) \
-   $(use_with tcl tcl-binding)
-}
-
-src_compile() {
-   emake
-   use doc && emake html
-}
-
-src_install() {
-   emake DESTDIR="${D}" install
-
-   use python && python_optimize
-
-   use doc && HTML_DOCS=( doc/html/ )
-   einstalldocs
-
-   insinto /usr/$(get_libdir)/pkgconfig
-   doins hamlib.pc
-
-   echo "LDPATH=/usr/$(get_libdir)/hamlib" > "${T}"/73hamlib
-   doenvd "${T}"/73hamlib
-
-   find "${ED}" -name '*.la' -delete || die
-}



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

2022-11-16 Thread Joonas Niilola
commit: 0b96a061981cc649710218f6c1b36cdfd3f4b24b
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Nov 17 06:38:09 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Nov 17 07:05:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b96a061

www-client/firefox: enhance the rust-llvm checks on 102

 - clean the check a bit with some of Arfrever's suggestions,
 - move the rust/llvm check under clang condition (-clang users need not to
   care),
 - move strict virtual/rust:0/llvm-* dependency under clang conditional block.

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

 www-client/firefox/firefox-102.5.0.ebuild | 25 +++--
 1 file changed, 11 insertions(+), 14 deletions(-)

diff --git a/www-client/firefox/firefox-102.5.0.ebuild 
b/www-client/firefox/firefox-102.5.0.ebuild
index 03abcbf6fefe..03144da28805 100644
--- a/www-client/firefox/firefox-102.5.0.ebuild
+++ b/www-client/firefox/firefox-102.5.0.ebuild
@@ -89,6 +89,7 @@ BDEPEND="${PYTHON_DEPS}
sys-devel/llvm:15
clang? (
sys-devel/lld:15
+   virtual/rust:0/llvm-15
pgo? ( 
=sys-libs/compiler-rt-sanitizers-15*[profile] )
)
)
@@ -96,20 +97,18 @@ BDEPEND="${PYTHON_DEPS}
sys-devel/clang:14
sys-devel/llvm:14
clang? (
+   virtual/rust:0/llvm-14
sys-devel/lld:14
pgo? ( 
=sys-libs/compiler-rt-sanitizers-14*[profile] )
)
)
)
-   || (
-   virtual/rust:0/llvm-15
-   virtual/rust:0/llvm-14
-   )
app-arch/unzip
app-arch/zip
>=dev-util/cbindgen-0.24.3
net-libs/nodejs
virtual/pkgconfig
+   virtual/rust
amd64? ( >=dev-lang/nasm-2.14 )
x86? ( >=dev-lang/nasm-2.14 )"
 
@@ -445,19 +444,17 @@ pkg_setup() {
check-reqs_pkg_setup
 
# Attempt to force a specific llvm/clang/lld with multiple llvm 
toolchain slots installed.
-   local LLVM_USE_SLOT=${LLVM_MAX_SLOT}
-   if $(has_version "virtual/rust:0/llvm-${LLVM_USE_SLOT}"); then
-   :
-   else
-   ((LLVM_USE_SLOT=LLVM_USE_SLOT-1))
-   if $(has_version 
"virtual/rust:0/llvm-${LLVM_USE_SLOT}"); then
-   :
-   else
-   die "Couldn't find 
virtual/rust:0/llvm-${LLVM_MAX_SLOT} or virtual/rust:0/llvm-${LLVM_USE_SLOT}. 
Check your virtual/rust installation."
+   if use clang; then
+   local LLVM_USE_SLOT=${LLVM_MAX_SLOT}
+   if ! has_version -b 
"virtual/rust:0/llvm-${LLVM_USE_SLOT}"; then
+   ((LLVM_USE_SLOT -= 1))
+   if ! has_version -b 
"virtual/rust:0/llvm-${LLVM_USE_SLOT}"; then
+   die "Couldn't find 
virtual/rust:0/llvm-${LLVM_MAX_SLOT} or virtual/rust:0/llvm-${LLVM_USE_SLOT}. 
Check your virtual/rust installation."
+   fi
fi
+   local LLVM_MAX_SLOT=${LLVM_USE_SLOT}
fi
 
-   local LLVM_MAX_SLOT=${LLVM_USE_SLOT}
llvm_pkg_setup
 
if use clang && use lto ; then



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

2022-11-16 Thread Hans de Graaff
commit: 32ce986d02acbbc8d134041243d9879db440fb48
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Nov 17 06:40:36 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Nov 17 06:40:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32ce986d

dev-util/jenkins-bin: add 2.361.4

Signed-off-by: Hans de Graaff  gentoo.org>

 dev-util/jenkins-bin/Manifest   |  1 +
 dev-util/jenkins-bin/jenkins-bin-2.361.4.ebuild | 45 +
 2 files changed, 46 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index e4729f826a5a..7dd41f460947 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,4 +1,5 @@
 DIST jenkins-bin-2.361.1.war 93504273 BLAKE2B 
dc5592c20401c19ca86a620335bb2dde803cfc786b912996308654e4db28351a2417e7a504f383b3127d46676ac43671872b1f306f38f40256b14c41945a8e03
 SHA512 
4feecd554aeedd94c5693f5e685ff31c882ff34c875a28d9d2d639c1d5f897dc893ee6dcfc037b457d385dbb3f62f7ab3842343711def5e01837cc5744e236b5
 DIST jenkins-bin-2.361.2.war 93504834 BLAKE2B 
d5e74022b83a0ee2775a01c2840ebb67212cede7cb27be980353527c522d7feb91b0b70823126f8101429381d2419834b0493da8566f8dbba8d88c60e862c90d
 SHA512 
dc04b13ca2e1afe5f0d1c967558cbfb9720a47f93b62167c4ed4422b7a43b2ac8b806e75ac12e58dc66d85f7e34800948d857aaeb573d923c7fd61a415b8d148
 DIST jenkins-bin-2.361.3.war 93501786 BLAKE2B 
36c5bafd70689603b84ad5ca86b407778b1bf686ea57d4d96566d5dcd22fa7e23f47d9f38048ec6cdf192e839f7588108c221625a94da687d8e74c079cbd1cc4
 SHA512 
3d0d9ad8c38a514789a8e074f3055e2ba6c8781cf333b95dd74f861011acd8d49ef3c4151f3c2646aba9007d6475304e31a85b39daaa7bb4c955beb2373c64f8
+DIST jenkins-bin-2.361.4.war 93501813 BLAKE2B 
92decc0eb48ec1bbb7acf4d6e0ce568bd793c3f45cb6f68673db041ff029fddce014217f269b36645db7f2f3bac614fd3ef7de8ccc4a57bc697b28e776298bbe
 SHA512 
ad4b91acf79ca156e456ddfefb5ac6290263aeebf16780bf886a0b1fde27e208e2ed61d45268fb7f5a74549fcf362439f819f616e916520b211f85d015753f53
 DIST jenkins-bin-2.363.war 93462629 BLAKE2B 
7c35594bc03dfd97e93f75b7e05389919ee1634ec2e3a1a4934a2f6215de2420652aaed79ebcde5e7ce9a5e2d8ed7d9495e36f3ee77bcbf6a6d996c2a767c7bb
 SHA512 
4b6207fbd166f6c336181ff224b717b154fbd97a4899e86b94b8e5f3b26d53bb2e3742086a839774edbf6fd56a1d037b14e455474fca7d6f189bb9591b42168c

diff --git a/dev-util/jenkins-bin/jenkins-bin-2.361.4.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-2.361.4.ebuild
new file mode 100644
index ..aad8d1e6aa4c
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-2.361.4.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="https://jenkins.io/;
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war-stable/${PV}/${PN/-bin/}.war -> 
${P}.war"
+SLOT="lts"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux"
+IUSE=""
+
+DEPEND="acct-group/jenkins
+   acct-user/jenkins"
+
+RDEPEND="acct-group/jenkins
+   acct-user/jenkins
+   media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:0
+   || ( virtual/jre:17 virtual/jre:11 )"
+
+S="${WORKDIR}"
+
+src_install() {
+   local JENKINS_DIR=/var/lib/jenkins
+
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r2.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}-r2.init jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}-r3.service jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}



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

2022-11-16 Thread Michał Górny
commit: 53ce6369c5a0ba86ab5b29c0107097a988fcd672
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:48:40 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:55:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ce6369

dev-python/mako: Bump to 1.2.4

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

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

diff --git a/dev-python/mako/Manifest b/dev-python/mako/Manifest
index c18ab0f2fd26..77de8cdab7cb 100644
--- a/dev-python/mako/Manifest
+++ b/dev-python/mako/Manifest
@@ -1 +1,2 @@
 DIST Mako-1.2.3.tar.gz 491336 BLAKE2B 
75a393bc91e40adf65b584f829e8f454ec894b6f09581d7511e8d5a3d534c301b8e06418a3aa896953270e54e70282afa6692b43debb8abdf122fcaeb754f1ed
 SHA512 
904b12826b3fc74dec069e1fd4afb67a8a1962d72962c4ee8c9360deb728b8deb40c21e7bf831122ad6b095172a8de015222a97f47675d48d595c8eabd98a14b
+DIST Mako-1.2.4.tar.gz 497021 BLAKE2B 
61b0d7c681e41128fdeff83414de30ffd2282ec6480af61924e35094f674732562297b977f12a0e5cc842ae0ed3f67c7955bb223a0e4f061c773cd4507208d02
 SHA512 
9a90d245f2c8b5e5efa283d91f762a2fffa40b7f71e7a4b66de7f66f894ad5ba2fa5c04080200b6633bb61d4308db5b5e763b26ae7d93d18efe4aebb2178006a

diff --git a/dev-python/mako/mako-1.2.4.ebuild 
b/dev-python/mako/mako-1.2.4.ebuild
new file mode 100644
index ..a0e0b665671b
--- /dev/null
+++ b/dev-python/mako/mako-1.2.4.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+MY_P=${P^}
+DESCRIPTION="A Python templating language"
+HOMEPAGE="
+   https://www.makotemplates.org/
+   https://github.com/sqlalchemy/mako/
+   https://pypi.org/project/Mako/
+"
+SRC_URI="mirror://pypi/${MY_P:0:1}/${PN^}/${MY_P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+IUSE="doc"
+
+RDEPEND="
+   >=dev-python/markupsafe-0.9.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/Babel[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=()
+   [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
+   
test/test_exceptions.py::ExceptionsTest::test_alternating_file_names
+   )
+   epytest
+}
+
+python_install_all() {
+   rm -r doc/build || die
+
+   use doc && local HTML_DOCS=( doc/. )
+   distutils-r1_python_install_all
+}



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

2022-11-16 Thread Michał Górny
commit: 8f064b58bc1da48afb56f95cb55dfdd5f545b44f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:35:26 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:35:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f064b58

dev-util/stripe-mock: Bump to 0.146.0

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

 dev-util/stripe-mock/Manifest   |  1 +
 dev-util/stripe-mock/stripe-mock-0.146.0.ebuild | 27 +
 2 files changed, 28 insertions(+)

diff --git a/dev-util/stripe-mock/Manifest b/dev-util/stripe-mock/Manifest
index 41d872d9688a..6caa16b2c684 100644
--- a/dev-util/stripe-mock/Manifest
+++ b/dev-util/stripe-mock/Manifest
@@ -1,2 +1,3 @@
 DIST stripe-mock-0.141.0.tar.gz 583884 BLAKE2B 
bd6e8c19280047fe0aba420aa701e1d7df340d10c1a16f03ae46c690f1c77ea59413f0911c44d71542ef6cc6d8ae7474905b4a997714f1dc30e42b20f8dbe64f
 SHA512 
11083ccb14cba1fdcd629d22ad663c88bd7b0d37274e86f178f7cf0fe789ca3bd52a1f4ab9f2414ecee7590124d69e6a2813221dbfd0d74cc86e454157dbefc5
 DIST stripe-mock-0.145.0.tar.gz 579773 BLAKE2B 
f2661daf70f2073ce475b53e591d08ddb030e263c0b08211083f675ced05842e92d43c16183369658d32abed5569b48695e300f26b491f10983bcc6ec41a9e74
 SHA512 
55597c4911ef32c804a63289cc9d04c5ed4f6b673cdd85e794a039abab8b6741e6970d13f8c54c3734d1ed2948437d4ebfdb0ef45bd12dcabee530ae9baaae66
+DIST stripe-mock-0.146.0.tar.gz 561719 BLAKE2B 
30b7fb51de192e94157bdbe7d9c5598749b3bbf8f8f6e17b39bd4396da09ca8ded5fdfcdea1034274fd877a0e2356d5ea9820df05c75fd88a98c4a60e8bf7714
 SHA512 
d9680d41f20382a1bef5fec6ae5e0970781e169ad77151838b32ce2ffc4d2d024276c44dbc998f2a2a0a20b90e75241b78e6d6dfa282fafb9486990653af6c63

diff --git a/dev-util/stripe-mock/stripe-mock-0.146.0.ebuild 
b/dev-util/stripe-mock/stripe-mock-0.146.0.ebuild
new file mode 100644
index ..89958510a463
--- /dev/null
+++ b/dev-util/stripe-mock/stripe-mock-0.146.0.ebuild
@@ -0,0 +1,27 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit go-module
+
+DESCRIPTION="Mock HTTP server that responds like the real Stripe API"
+HOMEPAGE="https://github.com/stripe/stripe-mock/;
+SRC_URI="https://github.com/stripe/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT ISC BSD-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+src_compile() {
+   emake build
+}
+
+src_test() {
+   emake test
+}
+
+src_install() {
+   dobin stripe-mock
+   einstalldocs
+}



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

2022-11-16 Thread Michał Górny
commit: 6d10f420ec7e2c2bfe0779aea1417a54ed27b32a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:53:15 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 06:02:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d10f420

dev-python/thriftpy2: Bump to 0.4.16

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

 dev-python/thriftpy2/Manifest|  1 +
 dev-python/thriftpy2/thriftpy2-0.4.16.ebuild | 47 
 2 files changed, 48 insertions(+)

diff --git a/dev-python/thriftpy2/Manifest b/dev-python/thriftpy2/Manifest
index dc299c54ec7e..4b11b2c1160f 100644
--- a/dev-python/thriftpy2/Manifest
+++ b/dev-python/thriftpy2/Manifest
@@ -1 +1,2 @@
 DIST thriftpy2-0.4.15.gh.tar.gz 136581 BLAKE2B 
68287057e76ec6f2b91d9fca9a63e1814e2e17f4fb074b5f227b177137452f88921adf4912c66fee206b29d9f32cd0eb43cbbbe275574c21babc12b1f949672e
 SHA512 
c5a17e42ac8a4051714938a4db926a25f41c84e4935fcf18c62ef8b115d9a1df3853800ca6c9fa01cafd6cbdfe31b6b4eabc7a81169a4773e0bda2241c4a26fb
+DIST thriftpy2-0.4.16.gh.tar.gz 146991 BLAKE2B 
7547ea85106d0929d3e6ee771ff10ad2cd047f4e779c668e4a30ee936ac04d470e16d8321a2771db4404f57e1be41438b4a302bc04b8e4698db03de35dbfa5e9
 SHA512 
c00b21eb7db3fe91843a5129d16e7af2a29331489e7d8394bcf78eb5c4b8054162b9c5a024eec8080708dbffc491db7922258ecd895477cda49dcc7d56297ecf

diff --git a/dev-python/thriftpy2/thriftpy2-0.4.16.ebuild 
b/dev-python/thriftpy2/thriftpy2-0.4.16.ebuild
new file mode 100644
index ..856239dd1ed6
--- /dev/null
+++ b/dev-python/thriftpy2/thriftpy2-0.4.16.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Pure python approach of Apache Thrift"
+HOMEPAGE="
+   https://github.com/Thriftpy/thriftpy2/
+   https://pypi.org/project/thriftpy2/
+"
+SRC_URI="
+   https://github.com/Thriftpy/thriftpy2/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/ply[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   dev-python/tornado[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   
tests/test_tornado.py::TornadoRPCTestCase::test_asynchronous_exception
+   
tests/test_tornado.py::TornadoRPCTestCase::test_asynchronous_result
+   )
+
+   cd tests || die
+   epytest
+}



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

2022-11-16 Thread Michał Górny
commit: 7c44902e0f54a29a5af8d527abe17411d883bf7e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:47:28 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:55:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c44902e

dev-python/pyphen: Bump to 0.13.1

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

 dev-python/pyphen/Manifest |  1 +
 dev-python/pyphen/pyphen-0.13.1.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/dev-python/pyphen/Manifest b/dev-python/pyphen/Manifest
index a972b919e779..11bb7cf15e97 100644
--- a/dev-python/pyphen/Manifest
+++ b/dev-python/pyphen/Manifest
@@ -1 +1,2 @@
 DIST pyphen-0.13.0.gh.tar.gz 1976723 BLAKE2B 
2a2934cabf13f1b77477d131622cd2f03c342557bdfe3b2f7cfbbf31c4538850e021e074798d80300f87b2557f87cbf3bbeafd01da03b38a7036609e61e140ec
 SHA512 
67897cec0b213a755af53ac21c61ddc1ac573a724658543174c3f88adb5f3db367fecf3afb1e7035c0d5b87e624daa2fe7650cb6e44c63d3b9ef6962bbc5d9e2
+DIST pyphen-0.13.1.gh.tar.gz 1976786 BLAKE2B 
f836467ab8d75f48ed17bccf629193a0c3009a8fc6af114ef86606d468d70aa68f3af5d9dc77318282825cf3d21f661b2a4a93cbf305913ead5cb11de74f474e
 SHA512 
230aec57f0a2db11f30b15115e5ed59ce19aed60120de24783f58ef831854ad7e236ae1da086bca01f9a41cef24f8402d9e0bf9251f6d55c38aa624fd55d4a3b

diff --git a/dev-python/pyphen/pyphen-0.13.1.ebuild 
b/dev-python/pyphen/pyphen-0.13.1.ebuild
new file mode 100644
index ..8e9142ded36e
--- /dev/null
+++ b/dev-python/pyphen/pyphen-0.13.1.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Python module for hyphenation using hunspell dictionaries"
+HOMEPAGE="
+   https://github.com/Kozea/Pyphen/
+   https://pypi.org/project/pyphen/
+"
+SRC_URI="
+   https://github.com/Kozea/Pyphen/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S=${WORKDIR}/${P^}
+
+LICENSE="GPL-2+ LGPL-2+ MPL-1.1"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv ~x86"
+
+distutils_enable_tests pytest
+
+python_test() {
+   epytest -o addopts=
+}



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

2022-11-16 Thread Michał Górny
commit: c8cda50438aab78630f918c6f7af4523275af169
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:49:32 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:55:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8cda504

dev-python/exceptiongroup: Bump to 1.0.4

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

 dev-python/exceptiongroup/Manifest |  1 +
 .../exceptiongroup/exceptiongroup-1.0.4.ebuild | 34 ++
 2 files changed, 35 insertions(+)

diff --git a/dev-python/exceptiongroup/Manifest 
b/dev-python/exceptiongroup/Manifest
index 50c5e1d146ab..f0cd3e10b1c0 100644
--- a/dev-python/exceptiongroup/Manifest
+++ b/dev-python/exceptiongroup/Manifest
@@ -2,3 +2,4 @@ DIST exceptiongroup-1.0.0.gh.tar.gz 19766 BLAKE2B 
2c4aa2c7c096b91971872b2236fad2
 DIST exceptiongroup-1.0.1.gh.tar.gz 20267 BLAKE2B 
1438e88a51034acd8b032339097640862da323dc46aaab4f64e53a3e8c3ce8a7bbda16cc72eff9c4f3ac44d8c239b9e51d3561781bbd0ed88fe9e1db78e95c2b
 SHA512 
79a678b6d3d152334ff593d15047e4b4c8714d50bd667ff2c878617512fe78b0c1d9df113db221d9ac7ea1e4522427747d85e26ae2d46b16f15538e1a638cc38
 DIST exceptiongroup-1.0.2.gh.tar.gz 20586 BLAKE2B 
09b1b7bee8f1e379c8ef48d9c8202efd7bc530029c5e2a7b91f0204e99429fade8cfa7427e2a88b52747b3308c0a03b193397b3c35c50ea7a9741c15d6f591f6
 SHA512 
c93a9b85649d662ae63d8396d262eaaff90b068e60f85e747d2538380a262afd54b16bfb0bae49c3909a39950574b9d777120c86e91344259700224480782759
 DIST exceptiongroup-1.0.3.gh.tar.gz 22285 BLAKE2B 
4b4d0e46098daf3dd508996d6e566addae53f9ee5da4bccd92cb7c3eefc44c0d815ea94271be1dec8dbf8631b9264c36cd79d063cce3e5c6a326caca778cd53e
 SHA512 
a47242afd9b92c37fd537e253dc0b3c9e6a04e255e9607ff49fc968da24776920dcc36fbda3d2074c44b5cbf7d310f3d7de3d74d396348fc25f22ed3342723c0
+DIST exceptiongroup-1.0.4.gh.tar.gz 22529 BLAKE2B 
bdf58d36ea59cc7bed17947e4671c92058e7036b20c91df434625d8627db41d646dd0b90ea397c25674753e3ba09654f5978c0e13007d0af8b1fe659540d
 SHA512 
18f207cb028f1b9ab1073c2859b4aeff357706c3d4c9f05fbe8739f3e19852dd91da5be9c9e18b14b16bd494fc8bf1bd26d058e925084da8c00eac5ad057e2be

diff --git a/dev-python/exceptiongroup/exceptiongroup-1.0.4.ebuild 
b/dev-python/exceptiongroup/exceptiongroup-1.0.4.ebuild
new file mode 100644
index ..b848cb3eea31
--- /dev/null
+++ b/dev-python/exceptiongroup/exceptiongroup-1.0.4.ebuild
@@ -0,0 +1,34 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=flit_scm
+PYTHON_COMPAT=( pypy3 python3_{8..11} )
+
+inherit distutils-r1
+
+MY_P=${P/_}
+DESCRIPTION="Backport of PEP 654 (exception groups)"
+HOMEPAGE="
+   https://github.com/agronholm/exceptiongroup/
+   https://pypi.org/project/exceptiongroup/
+"
+SRC_URI="
+   https://github.com/agronholm/exceptiongroup/archive/${PV/_}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT PSF-2.4"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV/_}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



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

2022-11-16 Thread Michał Górny
commit: 268a21398b0ba5f2a79e68dad53af1a1236cae9e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:49:45 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:55:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=268a2139

dev-python/stripe: Bump to 5.0.0

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

 dev-python/stripe/Manifest|  1 +
 dev-python/stripe/stripe-5.0.0.ebuild | 71 +++
 2 files changed, 72 insertions(+)

diff --git a/dev-python/stripe/Manifest b/dev-python/stripe/Manifest
index 0f9de2f7b376..18f47a91fbcb 100644
--- a/dev-python/stripe/Manifest
+++ b/dev-python/stripe/Manifest
@@ -1 +1,2 @@
 DIST stripe-4.2.0.tar.gz 267578 BLAKE2B 
1cd08aa37a3735928e65fb401d8817694cbfceff05722aa96ae4880da6ccb6e3139dcf55804efe26a4e1c1814a6734eed1b5754c06efaf2003d9c28efbdb8731
 SHA512 
8a2660878838b0a2602afb6716db0dd91c2896b9f27224c2b04c800f32705e876d2915b0c5f4f1bdcf8d3d508ca050660e2e923f999bd0a10f9fdabd3acaa750
+DIST stripe-5.0.0.tar.gz 267241 BLAKE2B 
6b4a58a355baf2d16d6de8667d1dff655c3334b58933c6172b25963f90bf072ebb5fae197faafd69285ceaaf06ba952c7012c35222df873d0453ec9fcee45cd5
 SHA512 
3d782abd3d6983734b6248fcb44cb69609475e14b820062882439c11ba8ba64e19f3db7984902157adaf0a80f9c26d18e7fbe414eb27bfeda95a7fae78a07577

diff --git a/dev-python/stripe/stripe-5.0.0.ebuild 
b/dev-python/stripe/stripe-5.0.0.ebuild
new file mode 100644
index ..85f74b80fdad
--- /dev/null
+++ b/dev-python/stripe/stripe-5.0.0.ebuild
@@ -0,0 +1,71 @@
+# 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..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Stripe python bindings"
+HOMEPAGE="
+   https://github.com/stripe/stripe-python/
+   https://pypi.org/project/stripe/
+"
+SRC_URI="mirror://pypi/s/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/requests-2.20[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   >=dev-util/stripe-mock-0.141.0
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   net-misc/curl
+   )
+"
+
+distutils_enable_tests pytest
+
+DOCS=( LONG_DESCRIPTION.rst CHANGELOG.md README.md )
+
+python_test() {
+   epytest tests
+}
+
+src_test() {
+   local stripe_mock_port=12111
+   local stripe_mock_max_port=12121
+   local stripe_mock_logfile="${T}/stripe_mock_${EPYTHON}.log"
+   # Try to start stripe-mock until we find a free port
+   while [[ "${stripe_mock_port}" -le "${stripe_mock_max_port}" ]]; do
+   ebegin "Trying to start stripe-mock on port ${stripe_mock_port}"
+   stripe-mock --http-port ${stripe_mock_port} &> 
"${stripe_mock_logfile}" &
+   local stripe_mock_pid=$!
+   sleep 2
+   # Did stripe-mock start?
+   curl --fail -u "sk_test_123:" \
+   http://127.0.0.1:${stripe_mock_port}/v1/customers &> 
/dev/null
+   eend $? "Port ${stripe_mock_port} unavailable"
+   if [[ $? -eq 0 ]]; then
+   einfo "stripe-mock running on port ${stripe_mock_port}"
+   break
+   fi
+   (( stripe_mock_port++ ))
+   done
+   if [[ "${stripe_mock_port}" -gt "${stripe_mock_max_port}" ]]; then
+   eerror "Unable to start stripe-mock for tests"
+   die "Please see the logfile located at: ${stripe_mock_logfile}"
+   fi
+
+   local -x STRIPE_MOCK_PORT=${stripe_mock_port}
+   distutils-r1_src_test
+
+   # Tear down stripe-mock
+   kill "${stripe_mock_pid}" || die "Unable to stop stripe-mock"
+}



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

2022-11-16 Thread Michał Górny
commit: 6c4297da71f5b1de9820ad44f339ee84c3203412
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:39:39 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:41:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c4297da

dev-python/resolvelib: Bump to 0.9.0

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

 dev-python/resolvelib/Manifest|  1 +
 dev-python/resolvelib/resolvelib-0.9.0.ebuild | 33 +++
 2 files changed, 34 insertions(+)

diff --git a/dev-python/resolvelib/Manifest b/dev-python/resolvelib/Manifest
index 8b7ab408f486..d168989f8552 100644
--- a/dev-python/resolvelib/Manifest
+++ b/dev-python/resolvelib/Manifest
@@ -1,2 +1,3 @@
 DIST resolvelib-0.5.4.tar.gz 14474 BLAKE2B 
d1424bf6a019e16e9b662741b6c089258bfef26d5bffcfc9e0c8d9ba105b689654fdce7bf9068f71c49a2ce590f05c16b93c53bbe468fc1a339e7fa489adece2
 SHA512 
cb027c5478c217f6f8288b42a933665aaf6e59280e7aa88a25f6594e589e34ac2b75734764e331d0889ad9cf0c60b8cbdfa14b01dce023a76870bb21cfc4d926
 DIST resolvelib-0.8.1.gh.tar.gz 766632 BLAKE2B 
59bb02a08cf0f9bc6070cd5c5109826a7cacc5bda07479358fd591ff018bad761b53ed48f0a330e5ef60b8fa8d5db14ef044b662423e372aad7fc477df5b97ef
 SHA512 
bc99d0661f3605d97074066df3c57edec8db40f66111f0d7a23ad88097ba4a162368ab396ef75632d09cd8a76417fbee2554d0cdb2f797795c246d16e7e3b955
+DIST resolvelib-0.9.0.gh.tar.gz 768502 BLAKE2B 
a5f0ab89f8b44125da59bc93bbfd78e8f35c3af82459732317097a79db81d5366e9fdfdf75ed12d1726441d1d0275304a953c489e987832134be936b92766878
 SHA512 
cb263a60e958e190c92dc333afd61eba76e3f1b1cf8f825c39292ea37c90f440afaacfc2d574987e26f6bb1d3a155ea8d878dd29cf82e78d912df36f4a10eb7e

diff --git a/dev-python/resolvelib/resolvelib-0.9.0.ebuild 
b/dev-python/resolvelib/resolvelib-0.9.0.ebuild
new file mode 100644
index ..ccfd21367fce
--- /dev/null
+++ b/dev-python/resolvelib/resolvelib-0.9.0.ebuild
@@ -0,0 +1,33 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Resolve abstract dependencies into concrete ones"
+HOMEPAGE="
+   https://github.com/sarugaku/resolvelib/
+   https://pypi.org/project/resolvelib/
+
+"
+SRC_URI="
+   https://github.com/sarugaku/resolvelib/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/commentjson[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2022-11-16 Thread Michał Górny
commit: 3e26ceaa23a3356f20d713c6c0df197dbe324f80
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:35:54 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:41:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e26ceaa

dev-python/boto3: Bump to 1.26.11

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

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

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index b8a21ecf759e..d2b41ea3a1b5 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,5 +1,6 @@
 DIST boto3-1.24.96.gh.tar.gz 547933 BLAKE2B 
63c347b3abb383f36e4109b2695014dda6b4dd159b8f0e878ea17bcd24c9605dcf403a120b15f63e9a335065a1e3254813998a435d5eb1663f0066f2e7797be6
 SHA512 
9c3ac6dba99904a54e4b06b02531c2388d235b1926cb5bd7b767c679632b613db4a0d453030295e5f4101efdb7a3df8aca08e3c2e92a6725dc3df733cef37d72
 DIST boto3-1.25.5.gh.tar.gz 550814 BLAKE2B 
85f345b635fe16a978853d21192f49804837b050539aba650195bf788c7912f8713aa3a826de6f5ae4c28c4c3795e7053a2105622757f3087579e827eda3487f
 SHA512 
6f4cd909b7a6670f74df6c7cac4a140114a0e05f736ed23c5a53351c5c6505f02d40e81ad1314db86db67d16429b38f78708e9cc8ce2cb08f28742ec209c2755
+DIST boto3-1.26.11.gh.tar.gz 561018 BLAKE2B 
3bd4ddd23d0752dcaad9795041658909f8df88eb75a89fd727866a25bd0e8a3106a497776c1be8e53274d85302d9185f9bb95b777efd89fed3f5a33edfe04fa1
 SHA512 
f31e15bf46fa4338418507840ac3961c06f3573502a71892a262bf24bfc38b405cccef1abc6e59859a9985f917c4463e698a1a92543519a8da3ff6221a67
 DIST boto3-1.26.4.gh.tar.gz 553689 BLAKE2B 
0da69cfa0b05ab789fc59938562efb49c3c0a46ae0dd5ca84d5e5782f7ed78f4fae45fa38cfea27c2dbb59bff2604b7f09064d2f4f35578500d379ff9f34513e
 SHA512 
2f7058c405145d66b92412f0941ec705c32e87121cae3f4be9fd6db4cfee3c1bedc3d952badd5ead13e2e1a4e10d4a1a7bf73b7869225a7615d5038a9086
 DIST boto3-1.26.5.gh.tar.gz 555039 BLAKE2B 
0f1ca94e7a2c04a760d3452e1e51f883307f82ce9a6cde733a69b0c113d002fd3e757ca7e185b412506af9290c2d70ec78a6987a1b2f7552af95f7eaddd5980e
 SHA512 
862ca971589a5ebe2508a9545eb5de29d3ba0f8d431b334c55770be26d1f03c2b9d250dc5b865faa72d0aaaef3f0fff01274b6c64c7506891d708da9238b7896
 DIST boto3-1.26.7.gh.tar.gz 556096 BLAKE2B 
3c3b68970b707639dc0d61d04c0d05b01535a01cd8e164d202e726d9225b3a17559e0589fa40601f1a37443986ed370dc40fc4d198d0ce8da1b9ea2eb1582955
 SHA512 
9a6faa7942ff87827ab47885bc11d2b7f508434b879dfd1ec456ad39f0df4d9a9b0029c9eddda00dae8aad3b2bd13730d42fc2bf2e06de370d60fd28cd0d4ac7

diff --git a/dev-python/boto3/boto3-1.26.11.ebuild 
b/dev-python/boto3/boto3-1.26.11.ebuild
new file mode 100644
index ..6edcc751d54b
--- /dev/null
+++ b/dev-python/boto3/boto3-1.26.11.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..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/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/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.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.6.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)"
+}



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

2022-11-16 Thread Michał Górny
commit: 5d74c2e14ff58b8e9638b1828c7643ef882c3797
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:36:05 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:41:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d74c2e1

app-admin/awscli: Bump to 1.27.11

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.27.11.ebuild | 80 ++
 2 files changed, 81 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 4a82bd398e4b..fc5817657b32 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -8,6 +8,7 @@ DIST aws-cli-1.26.4.gh.tar.gz 2293891 BLAKE2B 
5565375f74d88b5e0ddc1a96ab461c63ba
 DIST aws-cli-1.26.5.gh.tar.gz 2294226 BLAKE2B 
5c52d77679dcb999626751a7aa9abe3d81a1ee49584ea928ffe7e1fbc8ab33ec02d1385b4fea1d888e4cc11eabce73901389d1fd5fe9d365369f303da09b49c6
 SHA512 
3c1f6b43bef84060b8d3d7a7d848189e2ec0471e93340a04456f7fe70902722cac59a864db00b9a522ac14fd787ac415403982fd40facbab51a21ef11070b71e
 DIST aws-cli-1.27.0.gh.tar.gz 2294372 BLAKE2B 
5cf6f745ae11155dffbdcd58f0850c26667cec8eac0546a7e1b4031270336bc4d5258946d00c3a649ad0c7a88ff82a1770139f21ffcc3bba2394c9388176304f
 SHA512 
b294c72ec36010b042a2b84cd423270c1920c28b40b866fc5fbbfc4625f1525ddd18dfcce66eca8f3f65b2bdd4641eaec2b11a8d7bc1f257d97cdd6f69168653
 DIST aws-cli-1.27.1.gh.tar.gz 2294930 BLAKE2B 
720981aa974ee3999806fc480f9a20afef9a8c5c36a81d7beef8f692b5e6a3b0c567979c5cba6d243d695b310e63391d64138e8ed51ec3df8208c7d20a758ec1
 SHA512 
021c97ebd2f52d14a99d54143ef8a657e939caab32423b9747fa78f53430b914d4c93998cbe52e685550d3823a4d2f2049b3e3895c6c0ecec5e4535bd068008a
+DIST aws-cli-1.27.11.gh.tar.gz 2303984 BLAKE2B 
f773a631bd2f172697a013e11765307edfac0957f7bff7d05e74c326239491c03629859b5d7b4ec85a831e28acd47cbbf4a2393c8ae512fbf393142cfb7ca13d
 SHA512 
ad9eee70eb95d2c9c71978425e96b80a42569efca6e20c5caeb6af7b27aa893b3bfe68fed8e13b18e20626c4cd9599e8efe93dacde5bcc5c347b815376819ea5
 DIST aws-cli-1.27.2.gh.tar.gz 2295292 BLAKE2B 
6a2bf1e05b8e72880c8f2337da4fbe6dde6844371bbb441043fbb4fe319a68c7f97034eed7415098063a55da8c655332b757f9e18e2c4de8b63f580fe46da41c
 SHA512 
19e0b420e3283c208b75fe0028d26296bf358d8a40e804b0c413bc1ead26d66f88c9dfbc609931d9f5a677d95d9b701089abf4f1df60f0d0ba3cba5e08ea51ac
 DIST aws-cli-1.27.3.gh.tar.gz 2295495 BLAKE2B 
cd396d324f2a7c81df2488e61cd021819d2498fbd1ff58f7e75d24f523df7d17f463eb419f429be4f8b1e3ae4eab20dc0bf45b140c2aaa7a91d576f9274e
 SHA512 
6efeae8478486073aac0ebbf56ea10cf337b06be6b2306ebbbc489600e52fac28f4c95f8b8435f5e3a9a9342da59c9ca164a019d04ec17363ecbba533a53d7d5
 DIST aws-cli-1.27.4.gh.tar.gz 2296705 BLAKE2B 
604306821f91decf0fb6f88d1115000164f393c8a878b5990ca25a2f8d36972a88832079844656e26f084c729aa0e05014e9ff9ca95d1e820346214f5d1bfde1
 SHA512 
0753e78e43e3d26fcb906c068e78e23ca3ecfbd4607d1f9d8487922d6a1e6b5598b80b9d2cae6236f6b4724e1667b51132c90b66eec7c427ca35aa6f7b3c5f24

diff --git a/app-admin/awscli/awscli-1.27.11.ebuild 
b/app-admin/awscli/awscli-1.27.11.ebuild
new file mode 100644
index ..9bcb01ac11e2
--- /dev/null
+++ b/app-admin/awscli/awscli-1.27.11.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_{10..11} )
+
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+   https://github.com/aws/aws-cli/
+   https://pypi.org/project/awscli/
+"
+SRC_URI="
+   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(ver_cut 3-)"
+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.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   !app-admin/awscli-bin
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   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() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   

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

2022-11-16 Thread Michał Górny
commit: f76692668e8f66fe48c310ce97e3c870c7de4a5e
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:45:48 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:45:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7669266

dev-python/memory_profiler: Bump to 0.61

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

 dev-python/memory_profiler/Manifest|  1 +
 .../memory_profiler/memory_profiler-0.61.ebuild| 61 ++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/memory_profiler/Manifest 
b/dev-python/memory_profiler/Manifest
index aaf7b94d12d1..398776b4ae98 100644
--- a/dev-python/memory_profiler/Manifest
+++ b/dev-python/memory_profiler/Manifest
@@ -1 +1,2 @@
 DIST memory_profiler-0.60.gh.tar.gz 142585 BLAKE2B 
aa7fd9e547eecadc184d4da5830c582a9a9ab9565f3dc9c763caaa7e75698ed6b499d2555e4a93b39d2f80f85fad025b84043e0812cb25dd1511f4ebf8da5a85
 SHA512 
407e44a410cdb4c7c8cc5ff40198c28012f8b0c6bba88d2d1612681eb621a1b802ef137be62fc64ca9e3c362ca3814433bc12169d7c3827bf97293c5bbb8bfbc
+DIST memory_profiler-0.61.gh.tar.gz 144680 BLAKE2B 
418ae6e7433dd58b00c8706209a7172c31ccf57d74255aa670b271bc9d76b339bd582b48886bed7b53062abd8eb421678c911b3495de4d541b949f340aad7091
 SHA512 
02c70a049107ad4df635e20e22eaaa91fd4e4fd29690b0a7c314e08ed6e076bbb81f85dd97924ed35f7f0133cfd3c7e55b35400449489733beb172debe592c4e

diff --git a/dev-python/memory_profiler/memory_profiler-0.61.ebuild 
b/dev-python/memory_profiler/memory_profiler-0.61.ebuild
new file mode 100644
index ..a5f150e6ca3a
--- /dev/null
+++ b/dev-python/memory_profiler/memory_profiler-0.61.ebuild
@@ -0,0 +1,61 @@
+# 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..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="A module for monitoring memory usage of a python program"
+HOMEPAGE="
+   https://github.com/pythonprofilers/memory_profiler/
+   https://pypi.org/project/memory-profiler/
+"
+SRC_URI="
+   https://github.com/pythonprofilers/memory_profiler/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+IUSE="examples"
+
+# dev-lang/mercury: collision on 'mprof'
+# https://bugs.gentoo.org/571176
+RDEPEND="
+   dev-python/psutil[${PYTHON_USEDEP}]
+   !dev-lang/mercury
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   "${EPYTHON}" -m memory_profiler test/test_as.py || die
+   "${EPYTHON}" -m memory_profiler test/test_func.py || die
+   "${EPYTHON}" -m memory_profiler test/test_gen.py || die
+   "${EPYTHON}" -m memory_profiler test/test_loop.py || die
+   "${EPYTHON}" -m memory_profiler test/test_loop_decorated.py || die
+   "${EPYTHON}" -m memory_profiler test/test_mprofile.py || die
+   "${EPYTHON}" -m memory_profiler test/test_nested.py || die
+   "${EPYTHON}" -m memory_profiler test/test_precision_command_line.py || 
die
+   "${EPYTHON}" -m memory_profiler test/test_unicode.py || die
+
+   "${EPYTHON}" test/test_exception.py || die
+   "${EPYTHON}" test/test_exit_code.py || die
+   "${EPYTHON}" test/test_global.py || die
+   "${EPYTHON}" test/test_import.py || die
+   "${EPYTHON}" test/test_memory_usage.py || die
+   "${EPYTHON}" test/test_mprof.py || die
+   "${EPYTHON}" test/test_precision_import.py || die
+   "${EPYTHON}" test/test_stream_unicode.py || die
+   "${EPYTHON}" test/test_tracemalloc.py || die
+}
+
+python_install_all() {
+   use examples && dodoc -r examples
+
+   distutils-r1_python_install_all
+}



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

2022-11-16 Thread Michał Górny
commit: eda23535ab9b121665267e6c452ddbeaf7841c33
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:43:35 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:43:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eda23535

dev-python/nuitka: Bump to 1.2.1

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

 dev-python/nuitka/Manifest|  1 +
 dev-python/nuitka/nuitka-1.2.1.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/dev-python/nuitka/Manifest b/dev-python/nuitka/Manifest
index 8a3faa6a84ef..0f144917cc0c 100644
--- a/dev-python/nuitka/Manifest
+++ b/dev-python/nuitka/Manifest
@@ -1,2 +1,3 @@
 DIST Nuitka-1.1.8.tar.gz 3931273 BLAKE2B 
19425e5394f02f4e5dab612e17f80de27569a0d364aaf8597c7bf63f0aa271c3f8cfa987c12b1ae09c5449775b6e4e61aa4d733d0ed81231c4df6ef955dc030e
 SHA512 
f1e594499cd9fcd03873646c41b66a4d89980f408412dcd58db45b3c48238503d03ef25a1b230cfa99960df69f2564b74b02c446e0431dd72634ce277347a551
+DIST Nuitka-1.2.1.tar.gz 3958041 BLAKE2B 
461fd91fc2948aa131a5295f3e2f8c99d8de26b32d0dd3008ee130bdc8b722a469e458a717b5cbdbf45cd3720dfff828c3eade1d57c7f0ee391cd062105b4ad1
 SHA512 
98a95342a78c935ebea88446ee875122baeb66290148cf8c454c8287ecc40b092015d710a1a25b35c3b6869138800d2c654b09a3424512536f06d27860bfa2bb
 DIST Nuitka-1.2.tar.gz 3957227 BLAKE2B 
e82c8e30ef326254db255785efd2bab1450c2c496bbef1aae35e6f6c42fee09f2454bdff366ecfcf704aa42bbe9cd62ff5a65f26065b85e95083cb0134829dbc
 SHA512 
65c262109f2341aab607601299ec70c88df46218ecc2bb7a7d39ff66b8d4ec43e44a5d30ac936d6572fb141ca6b19e3c0e0c01975dea82d46a2ec190ed13c21b

diff --git a/dev-python/nuitka/nuitka-1.2.1.ebuild 
b/dev-python/nuitka/nuitka-1.2.1.ebuild
new file mode 100644
index ..b55f0385d58a
--- /dev/null
+++ b/dev-python/nuitka/nuitka-1.2.1.ebuild
@@ -0,0 +1,55 @@
+# 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 flag-o-matic optfeature
+
+DESCRIPTION="Python to native compiler"
+HOMEPAGE="
+   https://www.nuitka.net/
+   https://github.com/Nuitka/Nuitka/
+   https://pypi.org/project/Nuitka/
+"
+SRC_URI="https://nuitka.net/releases/${P^}.tar.gz;
+S=${WORKDIR}/${P^}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~loong ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-util/scons[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   test? ( dev-util/ccache )
+"
+
+DOCS=( Changelog.pdf Developer_Manual.pdf README.pdf )
+
+distutils-r1_src_prepare() {
+   # remove vendored version of SCons that is Python2 only
+   # this should be removed when upstream removes support for Python2
+   rm -vR "${PN}/build/inline_copy/lib/scons-2.3.2/SCons" || die
+   eapply_user
+}
+
+python_install() {
+   distutils-r1_python_install
+   doman doc/nuitka3.1 doc/nuitka3-run.1
+}
+
+python_test() {
+   append-ldflags -Wl,--no-warn-search-mismatch
+   ./tests/basics/run_all.py search || die
+}
+
+pkg_postinst() {
+   optfeature "support for stand-alone executables" app-admin/chrpath
+}



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

2022-11-16 Thread Michał Górny
commit: 8dcc972ef3661939f332a919004f0b388ba0c5f9
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:44:11 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:44:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8dcc972e

dev-python/dask: Bump to 2022.11.0

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

 dev-python/dask/Manifest  |  1 +
 dev-python/dask/dask-2022.11.0.ebuild | 61 +++
 2 files changed, 62 insertions(+)

diff --git a/dev-python/dask/Manifest b/dev-python/dask/Manifest
index 484182a01c43..06cdb778cfd9 100644
--- a/dev-python/dask/Manifest
+++ b/dev-python/dask/Manifest
@@ -1,3 +1,4 @@
 DIST dask-2022.10.0.gh.tar.gz 8778168 BLAKE2B 
d352f574cbf478747a95896c8b074c40c9bb413ccc6cd7b12d344b0dc7dc89bdc0613bf5b142e000b85f1c2a5a02e6eb8ac00b6db459a8580927cb4d7c54cf46
 SHA512 
d35ee0c710f4cccbdddca028a33f3f855ea26f94bebae1dd2a8c761cd0d116324daa03fd7fb5a4cb57d040f549f922b7373a0c089c9667b4da25fbb3b83efa02
 DIST dask-2022.10.1.gh.tar.gz 8781108 BLAKE2B 
2030cf0670d054a222123ef836573ae7f5e574a879089a57b9a7730ae5cc33e43da2af3b470ce24174169f9045415cf71543aa05fd368b447a01982c5b7c
 SHA512 
58b5515be46086a02a895f97db7120423a51651dcefef6f14d631a719e4faa0315b7a32640e4cd823064ae754319b84cc7c74bb4d4e9d904177816115abc48e5
+DIST dask-2022.11.0.gh.tar.gz 8223664 BLAKE2B 
d92a393877ecdc24ee20ada65f5a14bb6559c2b266f68a19fe30a8d18b63e543d0115d1a0d3bd3deefa476810722e37016be13035e097a7cc73f196c93052727
 SHA512 
e4294fa041a64227ecb40cbdb72b5c0f0a7f026ad51da37b778330b01a05a14cf5ab67feafe098388f40edb571ab9c6b688270063433567785048c477cf2a6f4
 DIST dask-2022.9.2.gh.tar.gz 8767605 BLAKE2B 
ad0d9b7f849f984316768f1d1983e13177c3263b6803ce6d861b15b8d88c21c7dce4dae917ca28f8688797573503c6fd518816ca7d993d67c56172ef2adc73ec
 SHA512 
467411933432821413f8440e6434b18c2bf76c616a92ec990bc71c141ea2cab235c1330e888ed77f429b6d00d588042928cd3b06d9b693d51302cf8c114700dd

diff --git a/dev-python/dask/dask-2022.11.0.ebuild 
b/dev-python/dask/dask-2022.11.0.ebuild
new file mode 100644
index ..8f2f893b8e30
--- /dev/null
+++ b/dev-python/dask/dask-2022.11.0.ebuild
@@ -0,0 +1,61 @@
+# 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..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Task scheduling and blocked algorithms for parallel processing"
+HOMEPAGE="
+   https://www.dask.org/
+   https://github.com/dask/dask/
+   https://pypi.org/project/dask/
+"
+SRC_URI="
+   https://github.com/dask/dask/archive/${PV}.tar.gz -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]
+   >=dev-python/fsspec-0.6.0[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.15.1[${PYTHON_USEDEP}]
+   >=dev-python/pandas-0.25.0[${PYTHON_USEDEP}]
+   >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
+   >=dev-python/partd-0.3.10[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
+   >=dev-python/toolz-0.8.2[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/toolz[${PYTHON_USEDEP}]
+   test? (
+   dev-python/moto[${PYTHON_USEDEP}]
+   dev-python/numexpr[${PYTHON_USEDEP}]
+   dev-python/pytest-rerunfailures[${PYTHON_USEDEP}]
+   dev-python/scipy[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # another test relying on -Werror
+   "dask/array/tests/test_overlap.py::test_map_overlap_no_depth[None]"
+   # TODO
+   dask/array/tests/test_reductions.py::test_mean_func_does_not_warn
+   dask/tests/test_config.py::test__get_paths
+   dask/array/tests/test_linalg.py::test_solve_assume_a
+   
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[0-float-5-1-True]"
+   
"dask/dataframe/tests/test_dataframe.py::test_repartition_npartitions[1-float-5-1-True]"
+)
+
+python_test() {
+   epytest -p no:flaky -m "not network"
+}



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

2022-11-16 Thread Michał Górny
commit: 3e7a4b356d2583dcaadf964966246edccf659235
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:32:38 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:32:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e7a4b35

dev-python/subunit: Bump to 1.4.2

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

 dev-python/subunit/Manifest |  1 +
 dev-python/subunit/subunit-1.4.2.ebuild | 96 +
 2 files changed, 97 insertions(+)

diff --git a/dev-python/subunit/Manifest b/dev-python/subunit/Manifest
index d0a11cdf067e..bc08fe31abae 100644
--- a/dev-python/subunit/Manifest
+++ b/dev-python/subunit/Manifest
@@ -1,2 +1,3 @@
 DIST subunit-1.4.0_p20210729.tar.gz 112644 BLAKE2B 
56e785c029f3f2896d0ed3d8005c37403e6aa32d05b653db0e3b679d2157820558e578b53133f4f79404a660f37a710aeeec03ff941fd7cd0819020a0d474515
 SHA512 
90b1ad071fb5246a7446a4c999142566b9d96c39838905e9020b80f2f0aba0b86dd5185bbd25ff7fc65f69ae68e1e53dfde5b2de05755aa97db9248c6faaa9d7
 DIST subunit-1.4.1.gh.tar.gz 112188 BLAKE2B 
dd09882f13b52e8c1f34f91ee49726f75f473a042b0e025704eb95681e4ff3f313fc6b2f9fbcc78f4fb75c88e3b2a828ffee0f7dfaaa8ad2bff9bfb14bd5c0ea
 SHA512 
c21ab0791ccc92e47df5d741deaae56fffe792777958193727f47c2739135fb77880d30b106e525239c0c35841834dd937e2b30fce27fbe73ca9116753147a65
+DIST subunit-1.4.2.gh.tar.gz 112283 BLAKE2B 
195318de120f1fd7cff7173ba056bf5b37983db3527ca7d0f6be7ae9889b99e9c143c92a71d7bd1bada9458b7af402bfbee4153292e58a546e88ca2212ee547b
 SHA512 
21413f0ed26f5f0572249ff4bcf948ea25d9185a1df73421836b9b21e11f323300f93a0275f0d64dc7c81a8e038fa0661a34f818bb038abf79c0637e051bc69e

diff --git a/dev-python/subunit/subunit-1.4.2.ebuild 
b/dev-python/subunit/subunit-1.4.2.ebuild
new file mode 100644
index ..9f172a5eae8c
--- /dev/null
+++ b/dev-python/subunit/subunit-1.4.2.ebuild
@@ -0,0 +1,96 @@
+# 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..11} pypy3 )
+
+inherit distutils-r1 multilib-minimal autotools
+
+DESCRIPTION="A streaming protocol for test results"
+HOMEPAGE="
+   https://launchpad.net/subunit/
+   https://pypi.org/project/python-subunit/
+"
+SRC_URI="
+   https://github.com/testing-cabal/subunit/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0 BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-python/testtools-0.9.34[${PYTHON_USEDEP}]
+   dev-python/extras[${PYTHON_USEDEP}]
+   dev-lang/perl:=
+"
+DEPEND="
+   ${RDEPEND}
+   >=dev-libs/check-0.9.11[${MULTILIB_USEDEP}]
+   >=dev-util/cppunit-1.13.2[${MULTILIB_USEDEP}]
+   >=virtual/pkgconfig-0-r1
+   test? (
+   dev-python/fixtures[${PYTHON_USEDEP}]
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   dev-python/testscenarios[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/subunit-1.4.0-werror.patch"
+)
+
+src_prepare() {
+   # Install perl modules in vendor_perl, bug 534654.
+   export PERL_INSTALLDIRS=vendor
+
+   mv all_tests.py python/ || die
+
+   distutils-r1_src_prepare
+   eautoreconf
+   multilib_copy_sources
+}
+
+multilib_src_configure() {
+   ECONF_SOURCE=${S} \
+   econf \
+   --enable-shared \
+   $(use_enable static-libs static)
+}
+
+multilib_src_compile() {
+   default
+   multilib_is_native_abi && distutils-r1_src_compile
+}
+
+python_test() {
+   cd python || die
+   "${EPYTHON}" -m testtools.run -v all_tests.test_suite ||
+   die "Testing failed with ${EPYTHON}"
+}
+
+multilib_src_test() {
+   multilib_is_native_abi && distutils-r1_src_test
+}
+
+multilib_src_install() {
+   local targets=(
+   install-include_subunitHEADERS
+   install-pcdataDATA
+   install-exec-local
+   install-libLTLIBRARIES
+   )
+   emake DESTDIR="${D}" "${targets[@]}"
+
+   multilib_is_native_abi && distutils-r1_src_install
+}
+
+multilib_src_install_all() {
+   einstalldocs
+   find "${D}" -name '*.la' -delete || die
+}



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

2022-11-16 Thread Michał Górny
commit: 6dbcfde2ecb3f6b5a42b3ef6d6d352b595502951
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 05:35:46 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 05:41:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dbcfde2

dev-python/botocore: Bump to 1.29.11

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.29.11.ebuild | 74 +
 2 files changed, 75 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 7b8309b1d51d..211a4b62ef25 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,5 +1,6 @@
 DIST botocore-1.27.96.gh.tar.gz 9792299 BLAKE2B 
7d4b388e0dd45a41c794ad8527287fb326c5e828c15998393936b817333055dfbc59f85365f074f6b3017715341d30fed4ea0de8e1ee24ee08d13eff36b369bf
 SHA512 
1050c23a207d089af16e86404db0367936d186c23b8e1fcfa8ebb07737ad411c2771344d535edd5dde43f8473e45ad85c8e5c39f2ddb03449ead3c9daa746a22
 DIST botocore-1.28.5.gh.tar.gz 9842427 BLAKE2B 
ed185346c21eeb0d05b39b55e99e065d9a5448fbe8206de49b3c128d12f4aabe1f6258153710350783846d10e5e10a22ccf77f6d27345297ec64e7ce74e51b87
 SHA512 
8b41b79826a71ed31c27534129e959e0896d9f4cb1769b4f14f1760d173500563a579aa0e00aaff5058275d5b5e8b921fed34b12825cf16ba4e216b174e4bba5
+DIST botocore-1.29.11.gh.tar.gz 10660645 BLAKE2B 
0d5f8a7e34f99947e1488b468699e682acf0077fcc9f3bfb87e00f4966571970e335964edeabb20b41e4f900aee8c5075a004e8e3b09ce7d04a38f4c729d3361
 SHA512 
f1e2d948b7123316084228b574c8d0a0cc7dac1e615edfc525f9f42e081bf87d107ec948b5f209a6013b37c0f9617d1e585ef602a1f76c106dbd2369ae6e4514
 DIST botocore-1.29.4.gh.tar.gz 10587870 BLAKE2B 
e8007cc2e6aa82bd3223f13c5df0e94dcd6f90cfd86d6137723209191d95b7f1be8df3755eae9190aee44312b9980eb81a5a4ede4d326f4cdf3d4b43febb4486
 SHA512 
f164b1ab95ea34127d2cdaa6e0ec626e7f8849ac1d112e28384e5e1b105b7e482f386999da52d968023d0f35bff5c6b433b4117f98b85eb060887205fc2f55a4
 DIST botocore-1.29.5.gh.tar.gz 10609519 BLAKE2B 
814b9409d59e799f47ae536a35fc3677f7eb78f7d4233f846fa66e4bf68b3724dd2bf3ecec777ddc80baf6e7c8201a7649218553db9ad87d1350a2c53a89771d
 SHA512 
6d3d337d9b8f6b3042856df33b016db943059e57a34b3124ea5aca4fb3b6551d476e9cf08e8b6d36caac6db46703b6785fc03f505aa860f029d45f06f254706e
 DIST botocore-1.29.7.gh.tar.gz 10629818 BLAKE2B 
9c74df449411d444d87f43a612741e0a9378214e1382d94e07e557c258808ae2de9d1216e743075b0b63611c1b855ac5c6102733db2320c83213e0b1cbe2888a
 SHA512 
cb7b8ad2661dae376d300ec3d757ec3e9b6702a5064d0aab63af5d81eccb2530a12875568fa9a29d0a83bb7babe165c1d18f10cadeeaf9d57cca9cfceaf2761f

diff --git a/dev-python/botocore/botocore-1.29.11.ebuild 
b/dev-python/botocore/botocore-1.29.11.ebuild
new file mode 100644
index ..eed342eb3cfa
--- /dev/null
+++ b/dev-python/botocore/botocore-1.29.11.ebuild
@@ -0,0 +1,74 @@
+# 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..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/botocore/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="
+   https://github.com/boto/botocore/archive/${PV}.tar.gz
+   -> ${P}.gh.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}]
+   )
+"
+
+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
+   # fails on unrelated warnings
+   
tests/unit/test_client.py::TestAutoGeneratedClient::test_BOTO_DISABLE_COMMONNAME
+   
tests/unit/test_client.py::TestClientErrors::test_BOTO_DISABLE_COMMONNAME
+   # TODO
+   

[gentoo-commits] repo/gentoo:master commit in: dev-util/perf/files/, dev-util/perf/

2022-11-16 Thread Michał Górny
commit: 41355d5ee50bb0cb7af9058f0af753a7cf73d602
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 04:59:08 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 04:59:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=41355d5e

dev-util/perf: Remove old

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

 dev-util/perf/Manifest  |   4 -
 dev-util/perf/files/perf-5.15-clang.patch   | 231 
 dev-util/perf/files/perf-5.17.1-clang.patch |  61 ---
 dev-util/perf/perf-5.15-r1.ebuild   | 266 
 dev-util/perf/perf-5.17.1.ebuild| 264 ---
 dev-util/perf/perf-5.18.ebuild  | 264 ---
 6 files changed, 1090 deletions(-)

diff --git a/dev-util/perf/Manifest b/dev-util/perf/Manifest
index e5f10036beaf..076d2671e177 100644
--- a/dev-util/perf/Manifest
+++ b/dev-util/perf/Manifest
@@ -1,7 +1,3 @@
-DIST linux-5.15.tar.xz 121913744 BLAKE2B 
3921274b23f7938abdf3ed9334534b4581e13d7484303d3a5280eddb038999aaa8b83a487472d9c4a219af0f06b9fecccaf348fb5510ab8762f4ef4b7e83
 SHA512 
d25ad40b5bcd6a4c6042fd0fd84e196e7a58024734c3e9a484fd0d5d54a0c1d87db8a3c784eff55e43b6f021709dc685eb0efa18d2aec327e4f88a79f405705a
-DIST linux-5.17.tar.xz 128399340 BLAKE2B 
82dc4a45cc25c781ac67aa6ed1e4c369544154960f41c4634d47621f381159687a227054976d078524cda28884d395a15f7542fe44ca74ce98ca6ff54a81d6d0
 SHA512 
89f0a7ca69d20a539d4b612a7028a30a5e98b402e4b6b88516f14237e5da4b626d7929eab8b40fccc90766e8f3bae87e9858a19077ffad20d8204acf18794f5b
-DIST linux-5.18.tar.xz 129790264 BLAKE2B 
e2745a69eb70169e90505a9318a3993046eab3020496eecde7d8352ecda0eb71a25b21becf7ce93fc593507dce7d1cd61b94ddcdf82b3094d79c0d3d48508eeb
 SHA512 
dbbc9d1395898a498fa4947fceda1781344fa5d360240f753810daa4fa88e519833e2186c4e582a8f1836e6413e9e85f6563c7770523b704e8702d67622f98b5
 DIST linux-5.19.tar.xz 131581464 BLAKE2B 
4db03a6830a3b3bbf0837e1912182a443d9a4aa8af20a12e6ec814ed708038452d3c0ccee1258cca671c464d76461536363a8adc56e9d098c9a44ae3484a297a
 SHA512 
00313b2f9b82d2dc3fb8294007cf7d7599d254b717ed2de23c81fa7a1bbcbc2798ad286cb94e2f7f5bd54132d1d764facd90d30f79dbcc6616cc7f926adc2623
 DIST linux-6.0.tar.xz 133886176 BLAKE2B 
c09a9c877ac0fac83dc31d2d04d96f0a3331d4ed78e3ad4edfd4dc077e1c11d0c49f419fdac4008b5c93d1b09c2b724e12ef0b38371ad0962908abf85dfa95fa
 SHA512 
bac41a7aeb6e809616cee2f13dcd1c45e829dfd1ccf60aee1dc4c46b1e28532f4485c7d819a32940de84fdfbf89db80a4e919bce8a74b2948c5a01551771b714
-DIST patch-5.17.1.xz 15244 BLAKE2B 
f340b8a103754122153dd381fe210b18ba37b7262dae4fc7a1f99c5a62868c9bdb178e83865b35f00b82bd2d67ae127c440515d1740093825f7ec7fa4c4a490d
 SHA512 
fb9a28ce7c68daeca82586e7631dc0be00a1a8393b4cef4c659fc1f9dac6e1f941bd60671c0350d1dea9cb035f56d627f64a394a9acb00b2b5dea8a1d44c065f
 DIST perf-5.19-binutils-2.39-patches.tar.xz 5612 BLAKE2B 
ec3aeadc3e2508f33dddbb419f434885b39b8220d294f3845f0bc96282923ff46dca126a04c732b8286752e56087ba5b2c5ad9526884f6d0b8b6df5665121e5e
 SHA512 
af676e5a600e227d85f89a5ee0cfacfe1845aa56c27ef9da3ebaf578362d7e741375d30565759123b33b86d36bc9981c8c4cda113af32745cc59cf4a9275e73b

diff --git a/dev-util/perf/files/perf-5.15-clang.patch 
b/dev-util/perf/files/perf-5.15-clang.patch
deleted file mode 100644
index 5ea0c75f27f1..
--- a/dev-util/perf/files/perf-5.15-clang.patch
+++ /dev/null
@@ -1,231 +0,0 @@
-From e1f1cbfe812e4a019034105ab5e81fd9f0742353 Mon Sep 17 00:00:00 2001
-From: Ian Rogers 
-Date: Mon, 11 Oct 2021 19:13:20 -0700
-Subject: [PATCH 1/3] tools: Bump minimum LLVM C++ std to GNU++14
-
-LLVM 9 (current release is LLVM 13) moved the minimum C++ version to
-GNU++14. Bump the version numbers in the feature test and perf build.
-
-Reviewed-by: Fangrui Song 
-Signed-off-by: Ian Rogers 
-Cc: Alexander Shishkin 
-Cc: Daniel Borkmann 
-Cc: Ingo Molnar 
-Cc: Jiri Olsa 
-Cc: Leo Yan 
-Cc: Mark Rutland 
-Cc: Michael Petlan 
-Cc: Namhyung Kim 
-Cc: Nathan Chancellor 
-Cc: Nick Desaulniers 
-Cc: Peter Zijlstra 
-Cc: Sedat Dilek 
-Cc: l...@lists.linux.dev
-Link: https://lore.kernel.org/r/20211012021321.291635-1-irog...@google.com
-Signed-off-by: Arnaldo Carvalho de Melo 

- tools/build/feature/Makefile | 6 +++---
- tools/perf/Makefile.config   | 2 +-
- 2 files changed, 4 insertions(+), 4 deletions(-)
-
-diff --git a/tools/build/feature/Makefile b/tools/build/feature/Makefile
-index eff55d287db1..9756e589e4ae 100644
 a/tools/build/feature/Makefile
-+++ b/tools/build/feature/Makefile
-@@ -296,7 +296,7 @@ $(OUTPUT)test-jvmti-cmlr.bin:
-   $(BUILD)
- 
- $(OUTPUT)test-llvm.bin:
--  $(BUILDXX) -std=gnu++11 \
-+  $(BUILDXX) -std=gnu++14 \
-   -I$(shell $(LLVM_CONFIG) --includedir)  \
-   -L$(shell $(LLVM_CONFIG) --libdir)  \
-   $(shell $(LLVM_CONFIG) --libs Core BPF) \
-@@ -304,12 +304,12 @@ $(OUTPUT)test-llvm.bin:
- 

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

2022-11-16 Thread Michał Górny
commit: 1bf8d3f94b384a467b4fffb9da16712a1b9009e3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Nov 17 04:49:18 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Nov 17 04:54:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf8d3f9

media-sound/pragha: Correct dependencies

Closes: https://bugs.gentoo.org/881567
Signed-off-by: Michał Górny  gentoo.org>

 ...a-1.3.99.1.ebuild => pragha-1.3.99.1-r1.ebuild} | 37 ++
 1 file changed, 24 insertions(+), 13 deletions(-)

diff --git a/media-sound/pragha/pragha-1.3.99.1.ebuild 
b/media-sound/pragha/pragha-1.3.99.1-r1.ebuild
similarity index 82%
rename from media-sound/pragha/pragha-1.3.99.1.ebuild
rename to media-sound/pragha/pragha-1.3.99.1-r1.ebuild
index 2667de64c421..5284653c476c 100644
--- a/media-sound/pragha/pragha-1.3.99.1.ebuild
+++ b/media-sound/pragha/pragha-1.3.99.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -12,18 +12,24 @@ 
SRC_URI="https://github.com/pragha-music-player/${PN}/releases/download/v${PV}/$
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE="cdda +glyr grilo +keybinder koel lastfm libnotify mtp +peas +playlist 
rygel soup +udev"
+IUSE="
+   cdda +glyr grilo +keybinder koel lastfm libnotify mtp +peas
+   +playlist rygel soup +udev
+"
 
-COMMON_DEPEND=">=dev-db/sqlite-3.4:3=
+DEPEND="
+   >=dev-db/sqlite-3.4:3=
>=dev-libs/glib-2.42
media-libs/gstreamer:1.0
media-libs/gst-plugins-base:1.0
>=media-libs/taglib-1.8:=
>=x11-libs/gtk+-3.14:3
>=xfce-base/libxfce4ui-4.11:=[gtk3(+)]
-   cdda? ( >=dev-libs/libcdio-0.90:=
+   cdda? (
+   >=dev-libs/libcdio-0.90:=
>=dev-libs/libcdio-paranoia-0.90:=
-   >=media-libs/libcddb-1.3.0:= )
+   >=media-libs/libcddb-1.3.0:=
+   )
glyr? ( >=media-libs/glyr-1.0.1:= )
grilo? ( media-libs/grilo:0.3[network(+)] )
keybinder? ( >=dev-libs/keybinder-0.2.0:3 )
@@ -34,24 +40,29 @@ COMMON_DEPEND=">=dev-db/sqlite-3.4:3=
peas? ( >=dev-libs/libpeas-1.0.0[gtk] )
playlist? ( >=dev-libs/totem-pl-parser-2.26:= )
rygel? ( >=net-misc/rygel-0.26 )
-   soup? ( >=net-libs/libsoup-2.38:= )
-   udev? ( dev-libs/libgudev:= )"
-RDEPEND="${COMMON_DEPEND}
-   media-plugins/gst-plugins-meta:1.0"
-DEPEND="${COMMON_DEPEND}
+   soup? ( >=net-libs/libsoup-2.38:2.4 )
+   udev? ( dev-libs/libgudev:= )
+"
+RDEPEND="
+   ${DEPEND}
+   media-plugins/gst-plugins-meta:1.0
+"
+BDEPEND="
dev-util/intltool
>=dev-util/xfce4-dev-tools-4.10
sys-devel/gettext
virtual/pkgconfig
-   xfce-base/exo"
-REQUIRED_USE="glyr? ( peas )
+"
+REQUIRED_USE="
+   glyr? ( peas )
grilo? ( peas )
koel? ( soup )
libnotify? ( peas )
mtp? ( udev )
rygel? ( peas )
soup? ( peas )
-   udev? ( peas )"
+   udev? ( peas )
+"
 
 src_configure() {
local myconf=(



[gentoo-commits] proj/releng:master commit in: tools/, releases/specs-qemu/m68k/

2022-11-16 Thread Andreas K. Hüttel
commit: 3a3df3551918797f0b7e8aac4f1ad1ad34b25c81
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Nov 17 01:52:59 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Nov 17 01:52:59 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=3a3df355

Add m68k systemd merged-usr build

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

 releases/specs-qemu/m68k/stage1-systemd-mu.spec | 13 +
 releases/specs-qemu/m68k/stage3-systemd-mu.spec | 11 +++
 tools/catalyst-auto-qemu-m68k.conf  | 16 ++--
 3 files changed, 38 insertions(+), 2 deletions(-)

diff --git a/releases/specs-qemu/m68k/stage1-systemd-mu.spec 
b/releases/specs-qemu/m68k/stage1-systemd-mu.spec
new file mode 100644
index ..ae5ec941
--- /dev/null
+++ b/releases/specs-qemu/m68k/stage1-systemd-mu.spec
@@ -0,0 +1,13 @@
+subarch: m68k
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage1
+rel_type: default
+profile: default/linux/m68k/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-m68k-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng
+interpreter: /usr/bin/qemu-m68k

diff --git a/releases/specs-qemu/m68k/stage3-systemd-mu.spec 
b/releases/specs-qemu/m68k/stage3-systemd-mu.spec
new file mode 100644
index ..527b2056
--- /dev/null
+++ b/releases/specs-qemu/m68k/stage3-systemd-mu.spec
@@ -0,0 +1,11 @@
+subarch: m68k
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage3
+rel_type: default
+profile: default/linux/m68k/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-m68k-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng
+interpreter: /usr/bin/qemu-m68k

diff --git a/tools/catalyst-auto-qemu-m68k.conf 
b/tools/catalyst-auto-qemu-m68k.conf
index 7ac24ce5..7c4d4268 100644
--- a/tools/catalyst-auto-qemu-m68k.conf
+++ b/tools/catalyst-auto-qemu-m68k.conf
@@ -13,10 +13,12 @@ EMAIL_SUBJECT_PREPEND="[m68k-qemu-auto]"
 SETS="
openrc
systemd
+   systemd_mu
 "
 
 SET_openrc_SPECS="stage1-openrc.spec stage3-openrc.spec"
 SET_systemd_SPECS="stage1-systemd.spec stage3-systemd.spec"
+SET_systemd_mu_SPECS="stage1-systemd-mu.spec stage3-systemd-mu.spec"
 
 update_symlinks() {
# Symlink the latest stages3 to build from
@@ -35,9 +37,19 @@ post_build() {
local set=$1 spec=$2
 
case ${spec} in
-   stage3*.spec)
+   stage3-openrc.spec)
pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
-   upload stage3-m68k-$(echo ${spec}|sed -e 
's:^stage3-::g' -e 's:\.spec$::g')-${TIMESTAMP}*.xz*
+   upload stage3-m68k-openrc-${TIMESTAMP}*.xz*
+   popd >/dev/null
+   ;;
+   stage3-systemd.spec)
+   pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
+   upload stage3-m68k-systemd-${TIMESTAMP}*.xz*
+   popd >/dev/null
+   ;;
+   stage3-systemd-mu.spec)
+   pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
+   upload stage3-m68k-systemd-mergedusr-${TIMESTAMP}*.xz*
popd >/dev/null
;;
*)



[gentoo-commits] proj/releng:master commit in: tools/, releases/specs-qemu/mips/

2022-11-16 Thread Andreas K. Hüttel
commit: 054f29e53fa7633550a202a81e0932ddb0d1d061
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Thu Nov 17 01:47:45 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Thu Nov 17 01:47:45 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=054f29e5

Add mips systemd merged-usr build

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

 .../specs-qemu/mips/stage1-mips64el-n64-systemd-mu.spec| 14 ++
 .../specs-qemu/mips/stage1-mipsel3-n64-systemd-mu.spec | 14 ++
 .../specs-qemu/mips/stage3-mips64el-n64-systemd-mu.spec| 12 
 .../specs-qemu/mips/stage3-mipsel3-n64-systemd-mu.spec | 12 
 tools/catalyst-auto-qemu-mips-common   | 14 +-
 5 files changed, 65 insertions(+), 1 deletion(-)

diff --git a/releases/specs-qemu/mips/stage1-mips64el-n64-systemd-mu.spec 
b/releases/specs-qemu/mips/stage1-mips64el-n64-systemd-mu.spec
new file mode 100644
index ..95120cde
--- /dev/null
+++ b/releases/specs-qemu/mips/stage1-mips64el-n64-systemd-mu.spec
@@ -0,0 +1,14 @@
+subarch: mips64el_n64
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mips64el
+rel_type: default
+profile: default/linux/mips/17.0/mipsel/n64/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-mips64el_n64-systemd-mergedusr-latest
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+update_seed: no
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/mips/stage1-mipsel3-n64-systemd-mu.spec 
b/releases/specs-qemu/mips/stage1-mipsel3-n64-systemd-mu.spec
new file mode 100644
index ..7de26fdb
--- /dev/null
+++ b/releases/specs-qemu/mips/stage1-mipsel3-n64-systemd-mu.spec
@@ -0,0 +1,14 @@
+subarch: mipsel3_n64
+target: stage1
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mips64el
+rel_type: default
+profile: default/linux/mips/17.0/mipsel/n64/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-mipsel3_n64-systemd-mergedusr-latest
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+update_seed: no
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/mips/stage3-mips64el-n64-systemd-mu.spec 
b/releases/specs-qemu/mips/stage3-mips64el-n64-systemd-mu.spec
new file mode 100644
index ..cdbe66ff
--- /dev/null
+++ b/releases/specs-qemu/mips/stage3-mips64el-n64-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: mips64el_n64
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mips64el
+rel_type: default
+profile: default/linux/mips/17.0/mipsel/n64/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-mips64el_n64-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/releases/specs-qemu/mips/stage3-mipsel3-n64-systemd-mu.spec 
b/releases/specs-qemu/mips/stage3-mipsel3-n64-systemd-mu.spec
new file mode 100644
index ..d8e38008
--- /dev/null
+++ b/releases/specs-qemu/mips/stage3-mipsel3-n64-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: mipsel3_n64
+target: stage3
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+interpreter: /usr/bin/qemu-mips64el
+rel_type: default
+profile: default/linux/mips/17.0/mipsel/n64/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-mipsel3_n64-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+decompressor_search_order: xz bzip2
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng

diff --git a/tools/catalyst-auto-qemu-mips-common 
b/tools/catalyst-auto-qemu-mips-common
index fe24d575..8965846a 100644
--- a/tools/catalyst-auto-qemu-mips-common
+++ b/tools/catalyst-auto-qemu-mips-common
@@ -7,7 +7,7 @@ SPECS_DIR=${REPO_DIR}/releases/specs-qemu/mips
 EMAIL_SUBJECT_PREPEND="[mips-qemu-auto]"
 
 SETS_BE="mips2o32openrc mips32o32openrc mips3n32openrc mips3multilibopenrc 
mips3n64openrc mips64n32openrc mips64multilibopenrc mips64n64openrc"
-SETS_LE="mipsel2o32openrc mips32elo32openrc mipsel3o32openrc mipsel3n32openrc 
mipsel3multilibopenrc mipsel3n64openrc mipsel3n64systemd mips64eln32openrc 
mips64elmultilibopenrc mips64eln64openrc mips64eln64systemd"
+SETS_LE="mipsel2o32openrc mips32elo32openrc mipsel3o32openrc mipsel3n32openrc 
mipsel3multilibopenrc mipsel3n64openrc mipsel3n64systemd mipsel3n64systemd_mu 
mips64eln32openrc mips64elmultilibopenrc mips64eln64openrc mips64eln64systemd 
mips64eln64systemd_mu"
 
 # SETS="${SETS_BE} ${SETS_LE}"
 
@@ -27,8 +27,11 @@ 
SET_mipsel3multilibopenrc_SPECS="stage1-mipsel3-multilib-openrc.spec stage3-mips
 
 SET_mips3n64openrc_SPECS="stage1-mips3-n64-openrc.spec 
stage3-mips3-n64-openrc.spec"
 

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

2022-11-16 Thread Sam James
commit: a90b271f8487b431a535626db05e8ce63c7ad574
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:34:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:37:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a90b271f

dev-libs/hiredis: enable async tests

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

 dev-libs/hiredis/hiredis-1.1.0.ebuild | 9 -
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/dev-libs/hiredis/hiredis-1.1.0.ebuild 
b/dev-libs/hiredis/hiredis-1.1.0.ebuild
index dc2110460101..514234cce290 100644
--- a/dev-libs/hiredis/hiredis-1.1.0.ebuild
+++ b/dev-libs/hiredis/hiredis-1.1.0.ebuild
@@ -19,7 +19,12 @@ RESTRICT="!test? ( test )"
 
 DEPEND="ssl? ( dev-libs/openssl:= )"
 RDEPEND="${DEPEND}"
-BDEPEND="test? ( dev-db/redis )"
+BDEPEND="
+   test? (
+   dev-db/redis
+   dev-libs/libevent
+   )
+"
 
 PATCHES=(
"${FILESDIR}"/${PN}-1.0.0-disable-network-tests.patch
@@ -39,6 +44,7 @@ _build() {
PREFIX="${EPREFIX}/usr" \
LIBRARY_PATH="$(get_libdir)" \
USE_SSL=$(usex ssl 1 0) \
+   TEST_ASYNC=$(usex test 1 0) \
DEBUG_FLAGS= \
OPTIMIZATION= \
"$@"
@@ -52,6 +58,7 @@ src_compile() {
 }
 
 src_test() {
+   # Compare with 
https://github.com/redis/hiredis/blob/648763c36e9f6493b13a77da35eb33ef0652b4e2/Makefile#L32
local REDIS_PID="${T}"/hiredis.pid
local REDIS_SOCK="${T}"/hiredis.sock
local REDIS_PORT=56379



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

2022-11-16 Thread Zac Medico
commit: b261d7c0a245f15499b1a8ab72d4d512cef89ef7
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Nov 17 01:20:12 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Nov 17 01:22:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b261d7c0

dev-util/flatpak-builder: pin to libsoup:2.4

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

 .../{flatpak-builder-1.2.2.ebuild => flatpak-builder-1.2.2-r1.ebuild}   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/flatpak-builder/flatpak-builder-1.2.2.ebuild 
b/dev-util/flatpak-builder/flatpak-builder-1.2.2-r1.ebuild
similarity index 96%
rename from dev-util/flatpak-builder/flatpak-builder-1.2.2.ebuild
rename to dev-util/flatpak-builder/flatpak-builder-1.2.2-r1.ebuild
index f135df85fc71..262070de405e 100644
--- a/dev-util/flatpak-builder/flatpak-builder-1.2.2.ebuild
+++ b/dev-util/flatpak-builder/flatpak-builder-1.2.2-r1.ebuild
@@ -15,7 +15,7 @@ IUSE="doc +yaml"
 RDEPEND="
>=sys-apps/flatpak-0.99.1
>=dev-util/ostree-2019.5:=
-   >=net-libs/libsoup-2.4:=
+   >=net-libs/libsoup-2.4:2.4=
>=dev-libs/elfutils-0.8.12:=
>=dev-libs/glib-2.44:2=
>=dev-libs/libxml2-2.4:=



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

2022-11-16 Thread Zac Medico
commit: 40c2d71cf2b6ce62f680540c9f88b273bb65cb6d
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Nov 17 01:17:16 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Nov 17 01:22:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40c2d71c

dev-util/flatpak-builder: drop 1.0.11

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

 dev-util/flatpak-builder/Manifest  |  1 -
 .../flatpak-builder/flatpak-builder-1.0.11.ebuild  | 43 --
 2 files changed, 44 deletions(-)

diff --git a/dev-util/flatpak-builder/Manifest 
b/dev-util/flatpak-builder/Manifest
index a5ef12d4469a..8e2036416cc5 100644
--- a/dev-util/flatpak-builder/Manifest
+++ b/dev-util/flatpak-builder/Manifest
@@ -1,2 +1 @@
-DIST flatpak-builder-1.0.11.tar.xz 459500 BLAKE2B 
aa5edebaa6a52a7dbf5cd68bfc356617e13556036979575369ee65e919b267f0ec6838524668793c394b9024f97309d71ceb094c26e3893dedc8884ea8d18d1f
 SHA512 
27c15ecccee79c6a7545f11d7c8cd7b80d4e99dc9c48818dd722934dfbe61e02b258b3db59946badfe5e1e189b39b509a2dbff1404a31a42c29ed4993fb5ec26
 DIST flatpak-builder-1.2.2.tar.xz 503444 BLAKE2B 
f499d5a5bb313530b2a5c69c2aef897aead40e959495ee368f375e03b9bca3c224b377607d1ca213f8640b0f926d7b862b0a7502e1773661a8e5ee983340f53c
 SHA512 
28ab004f5c4fdb7f43b7d3f0823d54dad0aa4f660d5bbe9969e0ce011a1e338e2442e676d1d4c197af60d61a0911b8715ba34244b547116887bbcdef589e1b47

diff --git a/dev-util/flatpak-builder/flatpak-builder-1.0.11.ebuild 
b/dev-util/flatpak-builder/flatpak-builder-1.0.11.ebuild
deleted file mode 100644
index 20d616e0056d..
--- a/dev-util/flatpak-builder/flatpak-builder-1.0.11.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz;
-DESCRIPTION="Tool to build flatpaks from source"
-HOMEPAGE="http://flatpak.org/;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE="doc +yaml"
-
-RDEPEND="
-   >=sys-apps/flatpak-0.99.1
-   >=dev-util/ostree-2019.5:=
-   >=net-libs/libsoup-2.4:=
-   >=dev-libs/elfutils-0.8.12:=
-   >=dev-libs/glib-2.44:2=
-   >=dev-libs/libxml2-2.4:=
-   dev-libs/json-glib:=
-   net-misc/curl:=
-   yaml? ( dev-libs/libyaml:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   >=sys-devel/gettext-0.18.2
-   virtual/pkgconfig
-   doc? (
-   app-text/xmlto
-   dev-libs/libxslt
-   )
-"
-
-PATCHES=("${FILESDIR}/flatpak-builder-1.0.11-musl.patch")
-
-src_configure() {
-   econf \
-   $(use_enable doc documentation) \
-   $(use_enable doc docbook-docs) \
-   $(use_with yaml)
-}



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

2022-11-16 Thread Zac Medico
commit: 15a5bd58d23ca1f0f07b01c2e3e0a35c304f9ebc
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Nov 17 01:14:24 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Nov 17 01:22:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=15a5bd58

sys-apps/flatpak: pin to libsoup:2.4

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

 sys-apps/flatpak/{flatpak-1.12.3.ebuild => flatpak-1.12.3-r1.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/flatpak/flatpak-1.12.3.ebuild 
b/sys-apps/flatpak/flatpak-1.12.3-r1.ebuild
similarity index 98%
rename from sys-apps/flatpak/flatpak-1.12.3.ebuild
rename to sys-apps/flatpak/flatpak-1.12.3-r1.ebuild
index d83453336f19..6914f29a7ab8 100644
--- a/sys-apps/flatpak/flatpak-1.12.3.ebuild
+++ b/sys-apps/flatpak/flatpak-1.12.3-r1.ebuild
@@ -34,7 +34,7 @@ RDEPEND="
)
>=gnome-base/dconf-0.26:=
gnome-base/gsettings-desktop-schemas
-   >=net-libs/libsoup-2.4:=
+   >=net-libs/libsoup-2.4:2.4=
>=sys-apps/bubblewrap-0.5.0
sys-apps/dbus
>=sys-fs/fuse-2.9.9:0=



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

2022-11-16 Thread Sam James
commit: 5974c3b9dfc9e366bd43108a4e1b8723defba644
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:16:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:16:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5974c3b9

dev-libs/hiredis: add README note

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

 dev-libs/hiredis/hiredis-1.1.0.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-libs/hiredis/hiredis-1.1.0.ebuild 
b/dev-libs/hiredis/hiredis-1.1.0.ebuild
index ff29bf657a84..dc2110460101 100644
--- a/dev-libs/hiredis/hiredis-1.1.0.ebuild
+++ b/dev-libs/hiredis/hiredis-1.1.0.ebuild
@@ -10,6 +10,8 @@ HOMEPAGE="https://github.com/redis/hiredis;
 SRC_URI="https://github.com/redis/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
+# Always check "Upgrading from ..." in README
+# e.g. https://github.com/redis/hiredis#upgrading-to-110
 SLOT="0/$(ver_cut 1-2)"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-solaris"
 IUSE="examples ssl static-libs test"



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

2022-11-16 Thread Sam James
commit: dc650c56050521d1b49c3f09c8ac0ad878503519
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:09:35 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:09:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc650c56

dev-libs/hiredis: add 1.1.0

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

 dev-libs/hiredis/Manifest |  1 +
 dev-libs/hiredis/hiredis-1.1.0.ebuild | 89 +++
 2 files changed, 90 insertions(+)

diff --git a/dev-libs/hiredis/Manifest b/dev-libs/hiredis/Manifest
index 5fea35cb08ca..e56d2c6315f8 100644
--- a/dev-libs/hiredis/Manifest
+++ b/dev-libs/hiredis/Manifest
@@ -1,2 +1,3 @@
 DIST hiredis-0.14.1.tar.gz 64372 BLAKE2B 
9846b05e21bfadb876e26ab45bf5c29a3283b602ef725dfbd877815be690bb5579551f0c452e1d8abf9ae985f6b71408a3b86b343ca5d6dce58dd4897640996a
 SHA512 
a7310f2d65075df0c17636a0220e16487759471a3442b1de2595ab747565f6b6262e37131613b13e396b31050bcbe5529c35d420cd43fd7d500d9d563d469c4f
 DIST hiredis-1.0.2.tar.gz 98139 BLAKE2B 
86d872cfec3d4e925d5d68e4f4faf1301aa6d706bd0406a8080471e14afc2c25db13b9a0937d29baccd457611af8e46922b5379183c7470c9ae1860aac3af096
 SHA512 
86497a1c21869bbe535378885eee6dbd594ef96325966511a3513f81e501af0f5ac7fed864f3230372f3ac7a23c05bad477fa5aa90b9747c9fb1408028174f9b
+DIST hiredis-1.1.0.tar.gz 122002 BLAKE2B 
74c23816e59ea241c68640f99970ae68536a1cd605ac1a7146bf52e355f5f74b3d39fb81be02741cf776c06b47b9d5acc7ec66bfdcf802dec3ed68fb28a82b1b
 SHA512 
9dad012c144ed24de6aa413a3a10d19a9d0d9ece18dbc388406cd86c5b98cb66c76c586cb559c601ed13a75051d8921dc2882534cc3605513fde47d57276c3bb

diff --git a/dev-libs/hiredis/hiredis-1.1.0.ebuild 
b/dev-libs/hiredis/hiredis-1.1.0.ebuild
new file mode 100644
index ..a3cf72b485d0
--- /dev/null
+++ b/dev-libs/hiredis/hiredis-1.1.0.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="Minimalistic C client library for the Redis database"
+HOMEPAGE="https://github.com/redis/hiredis;
+SRC_URI="https://github.com/redis/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD"
+# 1.0.1 erroneously bumped SONAME but we're stuck with it now. Force another
+# rebuild so everybody is on the right one though (1.0.0).
+SLOT="0/1.0.2"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-solaris"
+IUSE="examples ssl static-libs test"
+RESTRICT="!test? ( test )"
+
+DEPEND="ssl? ( dev-libs/openssl:= )"
+RDEPEND="${DEPEND}"
+BDEPEND="test? ( dev-db/redis )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.0.0-disable-network-tests.patch
+)
+
+src_prepare() {
+   default
+
+   # use GNU ld syntax on Solaris
+   sed -i -e '/DYLIB_MAKE_CMD=.* -G/d' Makefile || die
+}
+
+_build() {
+   emake \
+   AR="$(tc-getAR)" \
+   CC="$(tc-getCC)" \
+   PREFIX="${EPREFIX}/usr" \
+   LIBRARY_PATH="$(get_libdir)" \
+   USE_SSL=$(usex ssl 1 0) \
+   DEBUG_FLAGS= \
+   OPTIMIZATION= \
+   "$@"
+}
+
+src_compile() {
+   # The static lib re-uses the same objects as the shared lib, so
+   # overhead is low w/creating it all the time.  It's also needed
+   # by the tests.
+   _build dynamic static hiredis.pc
+}
+
+src_test() {
+   local REDIS_PID="${T}"/hiredis.pid
+   local REDIS_SOCK="${T}"/hiredis.sock
+   local REDIS_PORT=56379
+   local REDIS_TEST_CONFIG="
+   daemonize yes
+   pidfile ${REDIS_PID}
+   port ${REDIS_PORT}
+   bind 127.0.0.1
+   unixsocket //${REDIS_SOCK}
+   "
+
+   _build hiredis-test
+
+   "${EPREFIX}"/usr/sbin/redis-server - <<< "${REDIS_TEST_CONFIG}" || die
+   ./hiredis-test -h 127.0.0.1 -p ${REDIS_PID} -s ${REDIS_SOCK}
+   local ret=$?
+
+   kill "$(<"${REDIS_PID}")" || die
+   [[ ${ret} != "0" ]] && die "tests failed"
+}
+
+src_install() {
+   _build PREFIX="${ED}/usr" install
+
+   if ! use static-libs ; then
+   find "${ED}" -name '*.a' -delete || die
+   fi
+
+   insinto /usr/$(get_libdir)/pkgconfig
+   doins ${PN}.pc
+
+   local DOCS=( CHANGELOG.md README.md )
+   use examples && DOCS+=( examples )
+   einstalldocs
+}



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

2022-11-16 Thread Sam James
commit: 61ed8e50340be597f02e4070c2f81dabc0070636
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:13:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:13:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61ed8e50

dev-libs/hiredis: update EAPI 7 -> 8

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

 dev-libs/hiredis/hiredis-1.1.0.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/dev-libs/hiredis/hiredis-1.1.0.ebuild 
b/dev-libs/hiredis/hiredis-1.1.0.ebuild
index a3cf72b485d0..ff29bf657a84 100644
--- a/dev-libs/hiredis/hiredis-1.1.0.ebuild
+++ b/dev-libs/hiredis/hiredis-1.1.0.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 inherit toolchain-funcs
 
@@ -10,9 +10,7 @@ HOMEPAGE="https://github.com/redis/hiredis;
 SRC_URI="https://github.com/redis/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="BSD"
-# 1.0.1 erroneously bumped SONAME but we're stuck with it now. Force another
-# rebuild so everybody is on the right one though (1.0.0).
-SLOT="0/1.0.2"
+SLOT="0/$(ver_cut 1-2)"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-solaris"
 IUSE="examples ssl static-libs test"
 RESTRICT="!test? ( test )"



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

2022-11-16 Thread Sam James
commit: 67d3942a9f6ef728978789432be5a6b6f5f30c2b
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:08:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:08:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67d3942a

dev-perl/IO-Tty: add 1.170.0

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

 dev-perl/IO-Tty/IO-Tty-1.170.0.ebuild | 17 +
 dev-perl/IO-Tty/Manifest  |  1 +
 2 files changed, 18 insertions(+)

diff --git a/dev-perl/IO-Tty/IO-Tty-1.170.0.ebuild 
b/dev-perl/IO-Tty/IO-Tty-1.170.0.ebuild
new file mode 100644
index ..85f02d9aeaeb
--- /dev/null
+++ b/dev-perl/IO-Tty/IO-Tty-1.170.0.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=TODDR
+DIST_VERSION=1.17
+inherit perl-module
+
+DESCRIPTION="IO::Tty and IO::Pty modules for Perl"
+
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.160.0-musl-strlcpy.patch
+)

diff --git a/dev-perl/IO-Tty/Manifest b/dev-perl/IO-Tty/Manifest
index 1a5ab86ebfd4..d5d46ccd2191 100644
--- a/dev-perl/IO-Tty/Manifest
+++ b/dev-perl/IO-Tty/Manifest
@@ -1 +1,2 @@
 DIST IO-Tty-1.16.tar.gz 26765 BLAKE2B 
94de85df09ac717e36b2c9e469e6cbd707cc7c9c92eb1be729373856af944a2664fbc913441151e7b417ae6b5c1d62cbda4416e407e4849c1ac34181460efe11
 SHA512 
a6f28a8796992645c4b2ddab5b3a76f49e61a891442078ef8249088d077108ea63bb4c8000cf39d15d13801b82e1cfcbe6ea0e6542789ab28385d83e03f6a9de
+DIST IO-Tty-1.17.tar.gz 27245 BLAKE2B 
65f56eb4841ba63dace795698320ce40535a05c5ad4844b9d2563d41acfc1d085878a4c72cf42048682c183d035ed655ed030819d00654b09ad2cc4b11c7ce77
 SHA512 
a9a53670d579684af1ca0d6e77bd74430c801174c59421139f79a19e76377d40055b74a8b1ef92d8601ca5bda2f911cba99a0bda0c24cf847bacac3df2314d37



[gentoo-commits] repo/gentoo:master commit in: x11-libs/libast/files/, x11-libs/libast/

2022-11-16 Thread Sam James
commit: 429d6d3e55f8cbe1856ea6899b6b02aad822ce41
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:46:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:46:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=429d6d3e

x11-libs/libast: further Clang 16 fixes

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

 .../files/libast-0.8-configure-clang16.patch   | 65 ++
 .../{libast-0.8.ebuild => libast-0.8-r1.ebuild}|  9 ++-
 2 files changed, 72 insertions(+), 2 deletions(-)

diff --git a/x11-libs/libast/files/libast-0.8-configure-clang16.patch 
b/x11-libs/libast/files/libast-0.8-configure-clang16.patch
new file mode 100644
index ..3d339a2aeb34
--- /dev/null
+++ b/x11-libs/libast/files/libast-0.8-configure-clang16.patch
@@ -0,0 +1,65 @@
+https://github.com/mej/libast/pull/5
+https://bugs.gentoo.org/871705
+
+From 6c50760566499ef34cfd34ee38945e2612f4f7bf Mon Sep 17 00:00:00 2001
+From: Ryan Schmidt 
+Date: Mon, 7 Dec 2020 01:34:46 -0600
+Subject: [PATCH] Fix implicit declaration of library function exit
+
+--- a/libast.m4
 b/libast.m4
+@@ -505,10 +505,10 @@ char ovbuf[7];
+ int i;
+ for (i=0; i<7; i++) ovbuf[i]='x';
+ snprintf(ovbuf, 4,"foo%s", "bar");
+-if (ovbuf[5]!='x') exit(1);
++if (ovbuf[5]!='x') return 1;
+ snprintf(ovbuf, 4,"foo%d", 666);
+-if (ovbuf[5]!='x') exit(1);
+-exit(0);
++if (ovbuf[5]!='x') return 1;
++return 0;
+ } >>
+ changequote([, ])
+ , dps_cv_snprintf_bug=0, dps_cv_snprintf_bug=1, dps_cv_snprintf_bug=2)
+@@ -550,10 +550,10 @@ int main(void)
+   char ovbuf[8] = "xxx";
+   int i;
+   prnt(ovbuf, "foo%s", "bar");
+-  if (ovbuf[5]!='x') {fprintf(stderr, "buffer:  %s\n", ovbuf); exit(1);}
++  if (ovbuf[5]!='x') {fprintf(stderr, "buffer:  %s\n", ovbuf); return 1;}
+   prnt(ovbuf, "foo%d", 666);
+-  if (ovbuf[5]!='x') {fprintf(stderr, "buffer:  %s\n", ovbuf); exit(1);}
+-  exit(0);
++  if (ovbuf[5]!='x') {fprintf(stderr, "buffer:  %s\n", ovbuf); return 1;}
++  return 0;
+ } >>
+ changequote([, ])
+ , dps_cv_vsnprintf_bug=0, dps_cv_vsnprintf_bug=1, 
dps_cv_vsnprintf_bug=2)
+@@ -651,10 +651,10 @@ AC_DEFUN([dps_rlimit_nproc], [
+ AC_TRY_RUN(
+ changequote(<<, >>)dnl
+ <<
+-#ifndef HAVE_STDLIB_H
++#ifdef HAVE_STDLIB_H
+ #include 
+ #endif /* HAVE_STDLIB_H */
+-#ifndef HAVE_SIGNAL_H
++#ifdef HAVE_SIGNAL_H
+ #include 
+ #endif /* HAVE_SIGNAL_H */
+ #ifdef HAVE_UNISTD_H
+@@ -699,10 +699,10 @@ AC_DEFUN([dps_rlimit_memlock], [
+ AC_TRY_RUN(
+ changequote(<<, >>)dnl
+ <<
+-#ifndef HAVE_STDLIB_H
++#ifdef HAVE_STDLIB_H
+ #include 
+ #endif /* HAVE_STDLIB_H */
+-#ifndef HAVE_SIGNAL_H
++#ifdef HAVE_SIGNAL_H
+ #include 
+ #endif /* HAVE_SIGNAL_H */
+ #ifdef HAVE_UNISTD_H
+

diff --git a/x11-libs/libast/libast-0.8.ebuild 
b/x11-libs/libast/libast-0.8-r1.ebuild
similarity index 90%
rename from x11-libs/libast/libast-0.8.ebuild
rename to x11-libs/libast/libast-0.8-r1.ebuild
index 396c0cb77b4d..a508619651b6 100644
--- a/x11-libs/libast/libast-0.8.ebuild
+++ b/x11-libs/libast/libast-0.8-r1.ebuild
@@ -16,16 +16,21 @@ IUSE="imlib cpu_flags_x86_mmx pcre"
 
 RDEPEND="
!sci-astronomy/ast
+   media-libs/freetype
x11-base/xorg-proto
x11-libs/libXt
x11-libs/libICE
x11-libs/libSM
x11-libs/libX11
-   media-libs/freetype
imlib? ( media-libs/imlib2 )
-   pcre? ( dev-libs/libpcre )"
+   pcre? ( dev-libs/libpcre )
+"
 DEPEND="${RDEPEND}"
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.8-configure-clang16.patch
+)
+
 src_prepare() {
default
 



[gentoo-commits] repo/gentoo:master commit in: net-misc/curl/files/, net-misc/curl/

2022-11-16 Thread Sam James
commit: 93404ce48ebc3346b1d0a45e5b313f25bec02e5f
Author: Henning Schild  hennsch  de>
AuthorDate: Wed Nov 16 13:09:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 00:58:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93404ce4

net-misc/curl: backport one more noproxy regression patch to 7.86.0

Bug: https://bugs.gentoo.org/878365
Signed-off-by: Henning Schild  hennsch.de>
Closes: https://github.com/gentoo/gentoo/pull/28295
Signed-off-by: Sam James  gentoo.org>

 net-misc/curl/curl-7.86.0-r3.ebuild| 292 +
 ...roxy-tailmatch-like-in-7.85.0-and-earlier.patch |  84 ++
 2 files changed, 376 insertions(+)

diff --git a/net-misc/curl/curl-7.86.0-r3.ebuild 
b/net-misc/curl/curl-7.86.0-r3.ebuild
new file mode 100644
index ..cd08376dee7b
--- /dev/null
+++ b/net-misc/curl/curl-7.86.0-r3.ebuild
@@ -0,0 +1,292 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit autotools prefix multilib-minimal verify-sig
+
+DESCRIPTION="A Client that groks URLs"
+HOMEPAGE="https://curl.haxx.se/;
+SRC_URI="https://curl.haxx.se/download/${P}.tar.xz
+   verify-sig? ( https://curl.haxx.se/download/${P}.tar.xz.asc )"
+
+LICENSE="curl"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="+adns alt-svc brotli +ftp gnutls gopher hsts +http2 idn +imap ipv6 
kerberos ldap mbedtls nss +openssl +pop3 +progress-meter rtmp samba +smtp ssh 
ssl sslv3 static-libs test telnet +tftp websockets zstd"
+IUSE+=" curl_ssl_gnutls curl_ssl_mbedtls curl_ssl_nss +curl_ssl_openssl"
+IUSE+=" nghttp3 quiche"
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/danielstenberg.asc
+
+# Only one default ssl provider can be enabled
+REQUIRED_USE="
+   ssl? (
+   ^^ (
+   curl_ssl_gnutls
+   curl_ssl_mbedtls
+   curl_ssl_nss
+   curl_ssl_openssl
+   )
+   )"
+
+# lead to lots of false negatives, bug #285669
+RESTRICT="!test? ( test )"
+
+RDEPEND="ldap? ( net-nds/openldap:=[${MULTILIB_USEDEP}] )
+   brotli? ( app-arch/brotli:=[${MULTILIB_USEDEP}] )
+   ssl? (
+   gnutls? (
+   net-libs/gnutls:0=[static-libs?,${MULTILIB_USEDEP}]
+   dev-libs/nettle:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   mbedtls? (
+   net-libs/mbedtls:0=[${MULTILIB_USEDEP}]
+   app-misc/ca-certificates
+   )
+   openssl? (
+   
dev-libs/openssl:0=[sslv3(-)=,static-libs?,${MULTILIB_USEDEP}]
+   )
+   nss? (
+   dev-libs/nss:0[${MULTILIB_USEDEP}]
+   dev-libs/nss-pem
+   app-misc/ca-certificates
+   )
+   )
+   http2? ( net-libs/nghttp2:=[${MULTILIB_USEDEP}] )
+   nghttp3? (
+   net-libs/nghttp3[${MULTILIB_USEDEP}]
+   net-libs/ngtcp2[ssl,${MULTILIB_USEDEP}]
+   )
+   quiche? ( >=net-libs/quiche-0.3.0[${MULTILIB_USEDEP}] )
+   idn? ( net-dns/libidn2:0=[static-libs?,${MULTILIB_USEDEP}] )
+   adns? ( net-dns/c-ares:0=[${MULTILIB_USEDEP}] )
+   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
+   rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )
+   ssh? ( net-libs/libssh2[${MULTILIB_USEDEP}] )
+   sys-libs/zlib[${MULTILIB_USEDEP}]
+   zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] )"
+
+# Do we need to enforce the same ssl backend for curl and rtmpdump? Bug #423303
+#  rtmp? (
+#  media-video/rtmpdump
+#  curl_ssl_gnutls? ( media-video/rtmpdump[gnutls] )
+#  curl_ssl_openssl? ( media-video/rtmpdump[-gnutls,ssl] )
+#  )
+
+DEPEND="${RDEPEND}"
+BDEPEND="dev-lang/perl
+   virtual/pkgconfig
+   test? (
+   sys-apps/diffutils
+   )
+   verify-sig? ( sec-keys/openpgp-keys-danielstenberg )"
+
+DOCS=( CHANGES README 
docs/{FEATURES.md,INTERNALS.md,FAQ,BUGS.md,CONTRIBUTE.md} )
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/curl/curlbuild.h
+)
+
+MULTILIB_CHOST_TOOLS=(
+   /usr/bin/curl-config
+)
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-7.30.0-prefix.patch
+   "${FILESDIR}"/${PN}-respect-cflags-3.patch
+   "${FILESDIR}"/${P}-proxy-noproxy-tailmatching.patch
+   "${FILESDIR}"/${P}-proxy-noproxy-match-comma.patch
+   "${FILESDIR}"/${P}-noproxy-tailmatch-like-in-7.85.0-and-earlier.patch
+)
+
+src_prepare() {
+   default
+
+   eprefixify curl-config.in
+   eautoreconf
+}
+
+multilib_src_configure() {
+   # We make use of the fact that 

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

2022-11-16 Thread Sam James
commit: 4ddcecb3e20f4b2346ef2a342fea2273815076bc
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:05:03 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:05:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ddcecb3

sys-fs/xfsprogs: add 6.0.0

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

 sys-fs/xfsprogs/Manifest  |  1 +
 sys-fs/xfsprogs/xfsprogs-6.0.0.ebuild | 95 +++
 2 files changed, 96 insertions(+)

diff --git a/sys-fs/xfsprogs/Manifest b/sys-fs/xfsprogs/Manifest
index 1c80375b42e7..2f5291eca336 100644
--- a/sys-fs/xfsprogs/Manifest
+++ b/sys-fs/xfsprogs/Manifest
@@ -1,3 +1,4 @@
 DIST xfsprogs-5.14.2.tar.xz 1308912 BLAKE2B 
04083bf7952015d64f16e1aec0fa74be1957543e2264914f69defe45a3dc9f2524d941abc064a25a2fd760ebd6dcdcdc2404fd305e08fff7f6be6c5fc11d4d2f
 SHA512 
cb9794247a2eed8bd9f10ff811d38f97e4adbed97bad334b0fa8a26503ec224237eddd92fd78892584a153967417ab2009fb2fc8bab6ef12cd53fd20bdba1b4e
 DIST xfsprogs-5.18.0.tar.xz 1310008 BLAKE2B 
a2a2835d53ee6ac55279636f3f3cdcecab8757911ce5c1ea5f350a4da9ff4c1ca64b2aba1c0e5424c0c0a01fd0504396d5fecca12e4689c372ed5bb76b9ac24e
 SHA512 
47d035a33367edae7357e34c70bdb0fe9219231153fb4c4f418ed1462d137dd77338c12a199eb71cd70e88903e5fc11e1e4fb595c622183786e87346e2f65739
 DIST xfsprogs-5.19.0.tar.xz 1325160 BLAKE2B 
37258ca34b3fc241a5153518ac5230aec9aeefc04d3fc05b96087d8e2fb374094ba21027fbcfa163cbafab21a69a510a7b278972130083387a97fd0027def6e2
 SHA512 
0b069cd44eb87052ee55ebffcce736ef103adeda539e854bd86d53942f541c07d74cc174f06a2221230eaa82b21d43327833492cd0ded577d442e1935a0abe7d
+DIST xfsprogs-6.0.0.tar.xz 1320744 BLAKE2B 
ae1d175e3dc5f0f6819397f8166a419847da07616d472f81928e3086b9fac420c09e9406d752a34a957d6d9c82a45defb17d6773e87e3b5f4ff509952ef3e76e
 SHA512 
a3ddccdea1129038420d933f1e9ae8f9e75b3ad59fd0fe4c61b7a4dc6145f47b4262f68aefc3216d37cc33ee5643cd6f260ec83cd39d6b61a1cd046c03674ad8

diff --git a/sys-fs/xfsprogs/xfsprogs-6.0.0.ebuild 
b/sys-fs/xfsprogs/xfsprogs-6.0.0.ebuild
new file mode 100644
index ..2f545bcf92b0
--- /dev/null
+++ b/sys-fs/xfsprogs/xfsprogs-6.0.0.ebuild
@@ -0,0 +1,95 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic systemd usr-ldscript
+
+DESCRIPTION="XFS filesystem utilities"
+HOMEPAGE="https://xfs.wiki.kernel.org/;
+SRC_URI="https://www.kernel.org/pub/linux/utils/fs/xfs/${PN}/${P}.tar.xz;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="icu libedit nls selinux"
+
+RDEPEND="dev-libs/inih
+   dev-libs/userspace-rcu:=
+   >=sys-apps/util-linux-2.17.2
+   icu? ( dev-libs/icu:= )
+   libedit? ( dev-libs/libedit )"
+DEPEND="${RDEPEND}"
+BDEPEND="nls? ( sys-devel/gettext )"
+RDEPEND+=" selinux? ( sec-policy/selinux-xfs )"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.3.0-libdir.patch
+   "${FILESDIR}"/${PN}-5.18.0-docdir.patch
+   "${FILESDIR}"/${PN}-5.18.0-include.patch
+)
+
+src_prepare() {
+   default
+
+   # Fix doc dir
+   sed -i \
+   -e "/^PKG_DOC_DIR/s:@pkg_name@:${PF}:" \
+   include/builddefs.in || die
+
+   # Don't install compressed docs
+   sed 's@\(CHANGES\)\.gz[[:space:]]@\1 @' -i doc/Makefile || die
+}
+
+src_configure() {
+   # include/builddefs.in will add FCFLAGS to CFLAGS which will
+   # unnecessarily clutter CFLAGS (and fortran isn't used)
+   unset FCFLAGS
+
+   # If set in user env, this breaks configure
+   unset PLATFORM
+
+   export DEBUG=-DNDEBUG
+
+   # Package is honoring CFLAGS; No need to use OPTIMIZER anymore.
+   # However, we have to provide an empty value to avoid default
+   # flags.
+   export OPTIMIZER=" "
+
+   # Avoid automagic on libdevmapper (bug #709694)
+   export ac_cv_search_dm_task_create=no
+
+   # Build fails with -O3 (bug #712698)
+   replace-flags -O3 -O2
+
+   # Upstream does NOT support --disable-static anymore,
+   # https://www.spinics.net/lists/linux-xfs/msg30185.html
+   # https://www.spinics.net/lists/linux-xfs/msg30272.html
+   local myconf=(
+   --enable-blkid
+   --with-crond-dir="${EPREFIX}/etc/cron.d"
+   --with-systemd-unit-dir="$(systemd_get_systemunitdir)"
+   $(use_enable icu libicu)
+   $(use_enable nls gettext)
+   $(use_enable libedit editline)
+   )
+
+   if is-flagq -flto ; then
+   myconf+=( --enable-lto )
+   else
+   myconf+=( --disable-lto )
+   fi
+
+   econf "${myconf[@]}"
+}
+
+src_compile() {
+   emake V=1
+}
+
+src_install() {
+   emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install
+   emake DIST_ROOT="${ED}" HAVE_ZIPPED_MANPAGES=false install-dev
+
+   gen_usr_ldscript -a handle
+}



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

2022-11-16 Thread Sam James
commit: c3a289eb916dfb55e420a1d7f269d8fd2e904c42
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:05:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:05:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3a289eb

dev-util/perf: Stabilize 5.19 arm64, #876166

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

 dev-util/perf/perf-5.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/perf/perf-5.19.ebuild b/dev-util/perf/perf-5.19.ebuild
index dae347e98cf6..a1b75fd9e59e 100644
--- a/dev-util/perf/perf-5.19.ebuild
+++ b/dev-util/perf/perf-5.19.ebuild
@@ -32,7 +32,7 @@ SRC_URI+=" 
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES};
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 IUSE="audit babeltrace clang crypt debug +doc gtk java libpfm lzma numa perl 
python slang systemtap unwind zlib zstd"
 
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"



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

2022-11-16 Thread Sam James
commit: c87bee095ee4441659e5b27ee27d7aadd6326249
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:05:43 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:05:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c87bee09

dev-perl/Net-SSLeay: Stabilize 1.920.0 arm64, #881371

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

 dev-perl/Net-SSLeay/Net-SSLeay-1.920.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-SSLeay/Net-SSLeay-1.920.0.ebuild 
b/dev-perl/Net-SSLeay/Net-SSLeay-1.920.0.ebuild
index ab7d51c2e6e0..6249482ffc4e 100644
--- a/dev-perl/Net-SSLeay/Net-SSLeay-1.920.0.ebuild
+++ b/dev-perl/Net-SSLeay/Net-SSLeay-1.920.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Perl extension for using OpenSSL"
 
 LICENSE="Artistic-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~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 ~loong ~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="minimal examples"
 
 RDEPEND="



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

2022-11-16 Thread Sam James
commit: e74a025a89e2c8028561dca3e1caf6972af75b27
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 00:55:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 00:55:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e74a025a

dev-util/cmake: add 3.25.0 (unkeyworded for now)

Unkeyworded until I (or someone) can give it some more testing.

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

 dev-util/cmake/Manifest|   4 +
 dev-util/cmake/cmake-3.25.0.ebuild | 294 +
 2 files changed, 298 insertions(+)

diff --git a/dev-util/cmake/Manifest b/dev-util/cmake/Manifest
index 5b53baffa715..e8b0ff12b5d0 100644
--- a/dev-util/cmake/Manifest
+++ b/dev-util/cmake/Manifest
@@ -9,3 +9,7 @@ DIST cmake-3.24.3-SHA-256.txt 1646 BLAKE2B 
739503a16c2e333c9b05a3232e2dcc56105f6
 DIST cmake-3.24.3-SHA-256.txt.asc 833 BLAKE2B 
f8797072c2d30facfbbebc972c68cd1a6510331e63c67e6b665bd97dd9013e354bab68e03d578698d2f9e50c173ff8e1cac40751c7a3645be294a717f4bfee3a
 SHA512 
bc67eaf6dba935df85ae3d7c37600259b032579813b275087332d5cc4c72dd6bdf44762260729a15f237f69f772670291bb2f2dcc4b155fb17112e0e8fa01d6b
 DIST cmake-3.24.3-docs.tar.xz 492156 BLAKE2B 
92edd031189673c46e8e13a5e1200917734b918651dc01d982c25602e48cd5d5f014fa8563bdc79b3d09d90ef07a52c9d5a570a5181c59c233ba5bf450cdd5df
 SHA512 
75806743fca976098b9b7ee777c494478142ab5686dc8ccb18510b5938c7e88cf8b3bc47321022f55f33c04bb0a7f549d70be8c765d1ec143467e679c8863132
 DIST cmake-3.24.3.tar.gz 10399876 BLAKE2B 
24e2ff8cf4f63ba182dd305c14367fa0163f6187da84f7ec10b1ad6241c7df5b48f329b67ba5f7b5d3b644cba89c7adb848a3ae7196bf5b4dbfaedf178dba250
 SHA512 
57edf2a8c1c9edeed7fd11271083f333d940b31e0e909d9c71671465961559c505e4e22f36e68bfe1a40a01eb05fe94bc8d37b062f9be613f959f864207e3764
+DIST cmake-3.25.0-SHA-256.txt 1646 BLAKE2B 
0408c43f36777473c0df229059d6508990a01535f5b3b8d3ae3b1cda221abab5cc2d37dc655de44a581a4b18b3ef73e920c20921d649a9149b7307b9d548ba6a
 SHA512 
8b73a55837e86fa2e166a12041558cc45d1910514c9a1d63398758a99d76687f13f0c8b5244b89297bd890776a5c286a20e278361eefa0bf8db136744ba76515
+DIST cmake-3.25.0-SHA-256.txt.asc 833 BLAKE2B 
1424ff89c7ae68352daddbdb810e818020bdd0979fac32de98839cea510ffb8d30a517327f1853d59bf83f846ccde528d07ed624e55c1b1f185551e4f7bc47d6
 SHA512 
354f7fbb3597eed8f0d94a496cac13b8d9301576b23bf85fcd5d14b84f2848d96534e2c827f7311a00043da789b4160adad805717f110cfc4677d585691e7e55
+DIST cmake-3.25.0-docs.tar.xz 499744 BLAKE2B 
d6bfb6f58bab66e0b444206c93a03c10e084f7326c9ecdc7a1a2c5ccd79e4d6403eff92989e05883e5985782dd93e9daea19e773a7fefdfb3808deda0546288b
 SHA512 
7c382bd837f808fbfe3c665c2294ba935f20f62acf24c46c760d79f252b3e26f7ff70c75cdd802bfe9fc65ef73a560ce686caa53a4516c1071800f1ce2285285
+DIST cmake-3.25.0.tar.gz 10560389 BLAKE2B 
182983a7fc2eedcbd369fef1b1cd118044abcd1679870ca301f3aa8c0ddebd7cb509ae843d0f7a9847b2b54f79235c3407efd47b6a4684c010b6a3b030e1db4b
 SHA512 
f6e527161b8501c72b71a95ff7a0cf304ae02a214086ff58dd686543243d939e83faf94780cda477b19e4d42e4b8f1ff96c52f98e8f7f717e102a5229f4dd44c

diff --git a/dev-util/cmake/cmake-3.25.0.ebuild 
b/dev-util/cmake/cmake-3.25.0.ebuild
new file mode 100644
index ..38731f6c70e1
--- /dev/null
+++ b/dev-util/cmake/cmake-3.25.0.ebuild
@@ -0,0 +1,294 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Generate using 
https://github.com/thesamesam/sam-gentoo-scripts/blob/main/niche/generate-cmake-docs
+# Set to 1 if prebuilt, 0 if not
+# (the construct below is to allow overriding from env for script)
+: ${CMAKE_DOCS_PREBUILT:=1}
+
+CMAKE_DOCS_PREBUILT_DEV=sam
+CMAKE_DOCS_VERSION=$(ver_cut 1-3)
+# Default to generating docs (inc. man pages) if no prebuilt; overridden later
+# See bug #784815
+CMAKE_DOCS_USEFLAG="+doc"
+
+# 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
+   CMAKE_DOCS_PREBUILT=0
+
+   EGIT_REPO_URI="https://gitlab.kitware.com/cmake/cmake.git;
+   inherit git-r3
+else
+   SRC_URI="https://cmake.org/files/v$(ver_cut 1-2)/${MY_P}.tar.gz"
+
+   if [[ ${CMAKE_DOCS_PREBUILT} == 1 ]] ; then
+   SRC_URI+=" !doc? ( 
https://dev.gentoo.org/~${CMAKE_DOCS_PREBUILT_DEV}/distfiles/${CATEGORY}/${PN}/${PN}-${CMAKE_DOCS_VERSION}-docs.tar.xz
 )"
+   fi
+
+   if [[ ${PV} != *_rc* ]] ; then
+   
VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/bradking.asc
+   inherit verify-sig
+
+   SRC_URI+=" verify-sig? (
+   

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

2022-11-16 Thread Sam James
commit: 9841574e46260f409c25aea7c4b7a95bc1aad1d4
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:01:46 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:01:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9841574e

dev-libs/botan: add 2.19.3

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

 dev-libs/botan/Manifest|   2 +
 dev-libs/botan/botan-2.19.3.ebuild | 180 +
 2 files changed, 182 insertions(+)

diff --git a/dev-libs/botan/Manifest b/dev-libs/botan/Manifest
index 34580d8a67e8..1371878c4608 100644
--- a/dev-libs/botan/Manifest
+++ b/dev-libs/botan/Manifest
@@ -1,2 +1,4 @@
 DIST Botan-2.19.2.tar.xz 6063336 BLAKE2B 
a46fa49c61846e718197ab3a8431a5bdcab0f4cc5e42aec04fd22932ecdbfa2b755cae53c125eee8248ecae237671ec6f0533f99289068ed81e6cd34886d8b88
 SHA512 
52b9c80a240457e46a299480338472f7d0c0b56df7b1709fdef52c5be3afca5b474fe143801c9a332ae884eaf033e60461c9d3e0b2f7b069f4fe8b4c45932abf
 DIST Botan-2.19.2.tar.xz.asc 488 BLAKE2B 
94d22dff9de02871560649b1d961f4c7ae5fa37a847141554f8da9f0a726d4497cd23e0d84197beb4d176f29aa3a478118d94cd52d2c04733d115828f85d400d
 SHA512 
e25a03ac437a08737ecde541ead4b841ccb507d3198683a1755dab1d4f82e9ce0278473db7c7041a4b808f9dff9927106e30bbad79b1674615254ee78f0b6a06
+DIST Botan-2.19.3.tar.xz 6105896 BLAKE2B 
6d7778d9e9a101c76f35c65b0fb0201641cd91967ba934510f3836ee4b924d54cabdc760dd460997679250aa66e1d2a99369cd03f8fb9e7b2fe672d4b355215f
 SHA512 
80012397e2aa7cc88a9536340ac9b770d1195fddda53b9d4cfde82318dd05f9d4f925bbdff773aba99883a701f4d30581e9d5c97e915fa80c3ca2acfa5a92110
+DIST Botan-2.19.3.tar.xz.asc 488 BLAKE2B 
cd86bf77306aad2956cced6ac4fb96081279af88743e87d8fe5437e72e9fa8db8aaf40d0b5cb9c5b3a85204cb7d63c3baa3054126ab4c9a2db527e6835a069d7
 SHA512 
9142f932c958138b4bac32f503a550e6c73b61612690a280dcb98efe8c367aa6bd3cd88b4ed4decec376bb87596a780a21bdcb01d4a3573a1c44fbeb0aa49d23

diff --git a/dev-libs/botan/botan-2.19.3.ebuild 
b/dev-libs/botan/botan-2.19.3.ebuild
new file mode 100644
index ..87dba760e169
--- /dev/null
+++ b/dev-libs/botan/botan-2.19.3.ebuild
@@ -0,0 +1,180 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/botan.asc
+inherit edo python-r1 toolchain-funcs verify-sig
+
+MY_P="Botan-${PV}"
+DESCRIPTION="C++ crypto library"
+HOMEPAGE="https://botan.randombit.net/;
+SRC_URI="https://botan.randombit.net/releases/${MY_P}.tar.xz;
+SRC_URI+=" verify-sig? ( 
https://botan.randombit.net/releases/${MY_P}.tar.xz.asc )"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="BSD-2"
+SLOT="2/$(ver_cut 1-2)" # soname version
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~ppc-macos"
+IUSE="doc boost bzip2 lzma python static-libs sqlite test tools zlib"
+RESTRICT="!test? ( test )"
+
+CPU_USE=(
+   cpu_flags_arm_{aes,neon}
+   cpu_flags_ppc_altivec
+   cpu_flags_x86_{aes,avx2,popcnt,rdrand,sha,sse2,ssse3,sse4_1,sse4_2}
+)
+
+IUSE+=" ${CPU_USE[@]}"
+
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+# NOTE: Boost is needed at runtime too for the CLI tool.
+DEPEND="
+   boost? ( dev-libs/boost:= )
+   bzip2? ( >=app-arch/bzip2-1.0.5:= )
+   lzma? ( app-arch/xz-utils:= )
+   python? ( ${PYTHON_DEPS} )
+   sqlite? ( dev-db/sqlite:3= )
+   zlib? ( >=sys-libs/zlib-1.2.3:= )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep '
+   doc? ( dev-python/sphinx[${PYTHON_USEDEP}] )
+   ')
+   verify-sig? ( sec-keys/openpgp-keys-botan )
+"
+
+# NOTE: Considering patching Botan?
+# Please see upstream's guidance:
+# 
https://botan.randombit.net/handbook/packaging.html#minimize-distribution-patches
+
+python_check_deps() {
+   use doc || return 0
+   python_has_version "dev-python/sphinx[${PYTHON_USEDEP}]"
+}
+
+src_configure() {
+   python_setup
+
+   local disable_modules=(
+   $(usev !boost 'boost')
+   )
+
+   if [[ -z "${DISABLE_MODULES}" ]] ; then
+   elog "Disabling module(s): ${disable_modules[@]}"
+   fi
+
+   local chostarch="${CHOST%%-*}"
+
+   # Arch specific wrangling
+   local myos=
+   case ${CHOST} in
+   *-darwin*)
+   myos=darwin
+   ;;
+   *)
+   myos=linux
+
+   if [[ ${CHOST} == *hppa* ]] ; then
+   chostarch=parisc
+   elif [[ ${ABI} == sparc64 ]] ; then
+   chostarch="sparc64"
+   elif [[ ${ABI} == sparc32 ]] ; then
+   chostarch="sparc32"
+   fi
+   ;;
+   esac
+
+   local pythonvers=()
+   if use python ; then
+

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

2022-11-16 Thread Sam James
commit: 0600a310ac4610a88de1b9b5d3e6144ccc5040aa
Author: Chris Mayo  gmail  com>
AuthorDate: Wed Nov 16 19:25:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 00:56:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0600a310

dev-util/geany-plugins: ensure lua supports deprecated APIs

Bug: https://bugs.gentoo.org/878529
Closes: https://bugs.gentoo.org/881507
Signed-off-by: Chris Mayo  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/28302
Signed-off-by: Sam James  gentoo.org>

 .../{geany-plugins-1.38-r3.ebuild => geany-plugins-1.38-r4.ebuild}   | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-util/geany-plugins/geany-plugins-1.38-r3.ebuild 
b/dev-util/geany-plugins/geany-plugins-1.38-r4.ebuild
similarity index 99%
rename from dev-util/geany-plugins/geany-plugins-1.38-r3.ebuild
rename to dev-util/geany-plugins/geany-plugins-1.38-r4.ebuild
index f74c64c1a2e0..22a9b9b191dd 100644
--- a/dev-util/geany-plugins/geany-plugins-1.38-r3.ebuild
+++ b/dev-util/geany-plugins/geany-plugins-1.38-r4.ebuild
@@ -4,6 +4,7 @@
 EAPI=8
 
 LUA_COMPAT=( lua5-1 )
+LUA_REQ_USE="deprecated"
 
 inherit flag-o-matic lua-single
 



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

2022-11-16 Thread Sam James
commit: 91d61efd7851b7c912c7ce0b45bc10889f2cf61e
Author: Sam James  gentoo  org>
AuthorDate: Thu Nov 17 01:05:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Nov 17 01:05:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91d61efd

net-misc/curl: drop 7.86.0

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

 net-misc/curl/curl-7.86.0.ebuild | 287 ---
 1 file changed, 287 deletions(-)

diff --git a/net-misc/curl/curl-7.86.0.ebuild b/net-misc/curl/curl-7.86.0.ebuild
deleted file mode 100644
index 4dbd6a99bbe3..
--- a/net-misc/curl/curl-7.86.0.ebuild
+++ /dev/null
@@ -1,287 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-
-inherit autotools prefix multilib-minimal verify-sig
-
-DESCRIPTION="A Client that groks URLs"
-HOMEPAGE="https://curl.haxx.se/;
-SRC_URI="https://curl.haxx.se/download/${P}.tar.xz
-   verify-sig? ( https://curl.haxx.se/download/${P}.tar.xz.asc )"
-
-LICENSE="curl"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~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="+adns alt-svc brotli +ftp gnutls gopher hsts +http2 idn +imap ipv6 
kerberos ldap mbedtls nss +openssl +pop3 +progress-meter rtmp samba +smtp ssh 
ssl sslv3 static-libs test telnet +tftp websockets zstd"
-IUSE+=" curl_ssl_gnutls curl_ssl_mbedtls curl_ssl_nss +curl_ssl_openssl"
-IUSE+=" nghttp3 quiche"
-VERIFY_SIG_OPENPGP_KEY_PATH="${BROOT}"/usr/share/openpgp-keys/danielstenberg.asc
-
-# Only one default ssl provider can be enabled
-REQUIRED_USE="
-   ssl? (
-   ^^ (
-   curl_ssl_gnutls
-   curl_ssl_mbedtls
-   curl_ssl_nss
-   curl_ssl_openssl
-   )
-   )"
-
-# lead to lots of false negatives, bug #285669
-RESTRICT="!test? ( test )"
-
-RDEPEND="ldap? ( net-nds/openldap:=[${MULTILIB_USEDEP}] )
-   brotli? ( app-arch/brotli:=[${MULTILIB_USEDEP}] )
-   ssl? (
-   gnutls? (
-   net-libs/gnutls:0=[static-libs?,${MULTILIB_USEDEP}]
-   dev-libs/nettle:0=[${MULTILIB_USEDEP}]
-   app-misc/ca-certificates
-   )
-   mbedtls? (
-   net-libs/mbedtls:0=[${MULTILIB_USEDEP}]
-   app-misc/ca-certificates
-   )
-   openssl? (
-   
dev-libs/openssl:0=[sslv3(-)=,static-libs?,${MULTILIB_USEDEP}]
-   )
-   nss? (
-   dev-libs/nss:0[${MULTILIB_USEDEP}]
-   dev-libs/nss-pem
-   app-misc/ca-certificates
-   )
-   )
-   http2? ( net-libs/nghttp2:=[${MULTILIB_USEDEP}] )
-   nghttp3? (
-   net-libs/nghttp3[${MULTILIB_USEDEP}]
-   net-libs/ngtcp2[ssl,${MULTILIB_USEDEP}]
-   )
-   quiche? ( >=net-libs/quiche-0.3.0[${MULTILIB_USEDEP}] )
-   idn? ( net-dns/libidn2:0=[static-libs?,${MULTILIB_USEDEP}] )
-   adns? ( net-dns/c-ares:0=[${MULTILIB_USEDEP}] )
-   kerberos? ( >=virtual/krb5-0-r1[${MULTILIB_USEDEP}] )
-   rtmp? ( media-video/rtmpdump[${MULTILIB_USEDEP}] )
-   ssh? ( net-libs/libssh2[${MULTILIB_USEDEP}] )
-   sys-libs/zlib[${MULTILIB_USEDEP}]
-   zstd? ( app-arch/zstd:=[${MULTILIB_USEDEP}] )"
-
-# Do we need to enforce the same ssl backend for curl and rtmpdump? Bug #423303
-#  rtmp? (
-#  media-video/rtmpdump
-#  curl_ssl_gnutls? ( media-video/rtmpdump[gnutls] )
-#  curl_ssl_openssl? ( media-video/rtmpdump[-gnutls,ssl] )
-#  )
-
-DEPEND="${RDEPEND}"
-BDEPEND="dev-lang/perl
-   virtual/pkgconfig
-   test? (
-   sys-apps/diffutils
-   )
-   verify-sig? ( sec-keys/openpgp-keys-danielstenberg )"
-
-DOCS=( CHANGES README 
docs/{FEATURES.md,INTERNALS.md,FAQ,BUGS.md,CONTRIBUTE.md} )
-
-MULTILIB_WRAPPED_HEADERS=(
-   /usr/include/curl/curlbuild.h
-)
-
-MULTILIB_CHOST_TOOLS=(
-   /usr/bin/curl-config
-)
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-7.30.0-prefix.patch
-   "${FILESDIR}"/${PN}-respect-cflags-3.patch
-)
-
-src_prepare() {
-   default
-
-   eprefixify curl-config.in
-   eautoreconf
-}
-
-multilib_src_configure() {
-   # We make use of the fact that later flags override earlier ones
-   # So start with all ssl providers off until proven otherwise
-   # TODO: in the future, we may want to add wolfssl 
(https://www.wolfssl.com/)
-   local myconf=()
-
-   myconf+=( --without-gnutls --without-mbedtls --without-nss 
--without-ssl )
-   myconf+=( --without-ca-fallback 
--with-ca-bundle="${EPREFIX}"/etc/ssl/certs/ca-certificates.crt  )
-   #myconf+=( 

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

2022-11-16 Thread Sam James
commit: 6a0959170e0c8b84fd6badb5ab30fe162ff87af7
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:39:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:39:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a095917

net-dns/updatedd: add savannah-nongnu upstream metadata

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

 net-dns/updatedd/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/net-dns/updatedd/metadata.xml b/net-dns/updatedd/metadata.xml
index 85e4ed814fa2..3919a9943bb2 100644
--- a/net-dns/updatedd/metadata.xml
+++ b/net-dns/updatedd/metadata.xml
@@ -1,5 +1,8 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
+   
+   updatedd  
+   
 



[gentoo-commits] repo/gentoo:master commit in: net-dns/updatedd/files/, net-dns/updatedd/

2022-11-16 Thread Sam James
commit: 7c17f8e073c73523ec0421684dfa6d41c6cc20bb
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:36:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:36:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c17f8e0

net-dns/updatedd: fix configure w/ clang 16

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

 .../files/updatedd-2.6-respect-docdir.patch| 25 
 ...datedd-2.6-r6.ebuild => updatedd-2.6-r7.ebuild} | 27 ++
 2 files changed, 43 insertions(+), 9 deletions(-)

diff --git a/net-dns/updatedd/files/updatedd-2.6-respect-docdir.patch 
b/net-dns/updatedd/files/updatedd-2.6-respect-docdir.patch
new file mode 100644
index ..437d326a6e30
--- /dev/null
+++ b/net-dns/updatedd/files/updatedd-2.6-respect-docdir.patch
@@ -0,0 +1,25 @@
+From 8e484c4b0ceac8e7c37492fdf5e5b89f18451277 Mon Sep 17 00:00:00 2001
+From: Michael Orlitzky 
+Date: Sat, 14 Jan 2017 01:06:48 -0500
+Subject: [PATCH 1/1] Use the autotools "docdir" in Documentation/Makefile.am.
+
+--- a/Documentation/Makefile.am
 b/Documentation/Makefile.am
+@@ -2,12 +2,12 @@
+ 
+ ## install documentation
+ install-data-local:
+-  $(INSTALL) -d $(DESTDIR)$(datadir)/doc/updatedd
+-  $(INSTALL) $(srcdir)/updatedd-*.pdf $(DESTDIR)$(datadir)/doc/updatedd
+-  $(INSTALL) $(srcdir)/updatedd-pppd-rc $(DESTDIR)$(datadir)/doc/updatedd
++  $(INSTALL) -d $(DESTDIR)$(docdir)
++  $(INSTALL) $(srcdir)/updatedd-*.pdf $(DESTDIR)$(docdir)
++  $(INSTALL) $(srcdir)/updatedd-pppd-rc $(DESTDIR)$(docdir)
+ 
+-uninstall-local:
+-  $(RM) -r $(DESTDIR)$(datadir)/doc/updatedd
++uninstall-local:/
++  $(RM) -r $(DESTDIR)$(datadir)/updatedd
+ 
+ ## include debian files
+ EXTRA_DIST = updatedd-2.4-english.pdf updatedd-2.4-german.pdf 
updatedd-pppd-rc COPYING

diff --git a/net-dns/updatedd/updatedd-2.6-r6.ebuild 
b/net-dns/updatedd/updatedd-2.6-r7.ebuild
similarity index 64%
rename from net-dns/updatedd/updatedd-2.6-r6.ebuild
rename to net-dns/updatedd/updatedd-2.6-r7.ebuild
index d55cae76e39c..4b7df5532d7e 100644
--- a/net-dns/updatedd/updatedd-2.6-r6.ebuild
+++ b/net-dns/updatedd/updatedd-2.6-r7.ebuild
@@ -1,7 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
+
+inherit autotools
 
 DESCRIPTION="Dynamic DNS client with plugins for several dynamic dns services"
 HOMEPAGE="https://savannah.nongnu.org/projects/updatedd/;
@@ -10,20 +12,27 @@ 
SRC_URI="https://savannah.nongnu.org/download/updatedd/${PN}_${PV}.tar.gz;
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~arm ppc x86"
-IUSE=""
 
-DEPEND=""
-RDEPEND="dev-lang/perl
-   dev-perl/IO-Socket-Timeout"
+RDEPEND="
+   dev-lang/perl
+   dev-perl/IO-Socket-Timeout
+"
 
 PATCHES=(
"${FILESDIR}/${P}-options.patch"
"${FILESDIR}/fix-ovh-DYNDNSHOST.patch"
-   "${FILESDIR}/respect-docdir.patch"
"${FILESDIR}/set-socket-timeouts-for-ipserv.patch"
"${FILESDIR}/fix-ovh-support.patch"
+   "${FILESDIR}/${P}-respect-docdir.patch"
 )
 
-src_configure() {
-   econf --disable-static
+src_prepare() {
+   default
+
+   # Needed for Clang 16
+   eautoreconf
+}
+
+src_install() {
+   find "${ED}" -name '*.la' -delete || die
 }



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

2022-11-16 Thread Sam James
commit: 9e04f172a1cf5a1f302aa7d36831f473d4ae84ca
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:18:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:18:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e04f172

dev-perl/Crypt-OpenSSL-RSA: Stabilize 0.330.0 arm64, #881375

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

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

diff --git a/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.330.0.ebuild 
b/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.330.0.ebuild
index 676db97a0591..2bdd41f70762 100644
--- a/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.330.0.ebuild
+++ b/dev-perl/Crypt-OpenSSL-RSA/Crypt-OpenSSL-RSA-0.330.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="RSA encoding and decoding using the OpenSSL libraries"
 
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-macos"
 
 RDEPEND="
dev-perl/Crypt-OpenSSL-Bignum



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

2022-11-16 Thread Sam James
commit: a2eae779dc4a4cabbb5ed91b0a16d634adeb17bf
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:17:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:17:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2eae779

net-analyzer/yersinia: add github upstream metadata

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

 net-analyzer/yersinia/metadata.xml | 21 -
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/net-analyzer/yersinia/metadata.xml 
b/net-analyzer/yersinia/metadata.xml
index 3fd38e1109b5..6356df3a0a4c 100644
--- a/net-analyzer/yersinia/metadata.xml
+++ b/net-analyzer/yersinia/metadata.xml
@@ -1,13 +1,16 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   net...@gentoo.org
-   Gentoo network monitoring and analysis project
-
-
-Yersinia is a network tool designed to take advantage of some weakeness
-in different network protocols. It intends to be a solid framework for
-analyzing and testing the deployed networks and systems.
-
+   
+   net...@gentoo.org
+   Gentoo network monitoring and analysis project
+   
+   
+   Yersinia is a network tool designed to take advantage of some weakeness
+   in different network protocols. It intends to be a solid framework for
+   analyzing and testing the deployed networks and systems.
+   
+   
+   tomac/yersinia
+   
 



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

2022-11-16 Thread Sam James
commit: 39a47ae3a6b29144a075dc7d92db224011e31457
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:16:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:16:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39a47ae3

net-analyzer/yersinia: fix configure w/ clang 16

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

 .../files/yersinia-0.8.2-configure-clang16.patch   | 53 +++
 ...sinia-0.8.2.ebuild => yersinia-0.8.2-r1.ebuild} | 20 
 net-analyzer/yersinia/yersinia-.ebuild | 59 --
 3 files changed, 64 insertions(+), 68 deletions(-)

diff --git a/net-analyzer/yersinia/files/yersinia-0.8.2-configure-clang16.patch 
b/net-analyzer/yersinia/files/yersinia-0.8.2-configure-clang16.patch
new file mode 100644
index ..f2366c02dfb4
--- /dev/null
+++ b/net-analyzer/yersinia/files/yersinia-0.8.2-configure-clang16.patch
@@ -0,0 +1,53 @@
+https://github.com/tomac/yersinia/pull/76
+
+From ec9d31932fca39e3160b0d0bfd0383db82ff5bcf Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Wed, 16 Nov 2022 23:10:45 +
+Subject: [PATCH] configure: fix -Wimplicit-function-declaration,
+ -Wstrict-prototypes
+
+Clang 16 makes -Wimplicit-function-declaration an error by default. 
Unfortunately,
+this can lead to misconfiguration or miscompilation of software as configure
+tests may then return the wrong result.
+
+For more information, see LWN.net [0] or LLVM's Discourse [1], the Gentoo wiki 
[2],
+or the (new) c-std-porting mailing list [3].
+
+[0] https://lwn.net/Articles/913505/
+[1] 
https://discourse.llvm.org/t/configure-script-breakage-with-the-new-werror-implicit-function-declaration/65213
+[2] https://wiki.gentoo.org/wiki/Modern_C_porting
+[3] hosted at lists.linux.dev.
+
+Signed-off-by: Sam James 
+--- a/configure.in
 b/configure.in
+@@ -233,12 +233,13 @@ dnl fi
+ 
+ AC_MSG_CHECKING(if libnet is at least version 1.1.2)
+ AC_TRY_RUN([
+-#include
+-#include
++#include 
++#include 
++#include 
+ #define HOPE_MAJOR  1
+ #define HOPE_MEDIUM 1
+ #define HOPE_MINOR  2
+-int main()
++int main(void)
+ {
+   unsigned int major,medium,minor,current, desired;
+   desired = HOPE_MAJOR*1 + HOPE_MEDIUM*100 + HOPE_MINOR;
+@@ -419,9 +420,9 @@ AC_CHECK_FUNCS(strerror_r, 
have_strerror_r=yes,have_strerror_r=no)
+ if test $have_strerror_r = yes; then
+ AC_MSG_CHECKING(if strerror_r is on glibc version >= 2.0)
+ AC_TRY_RUN([
+-#include 
++#include 
+ #include 
+-int main()
++int main(void)
+ {
+ #if defined(__GLIBC__) && __GLIBC__ >= 2 && __GLIBC_MINOR__ >= 0
+exit(0);
+

diff --git a/net-analyzer/yersinia/yersinia-0.8.2.ebuild 
b/net-analyzer/yersinia/yersinia-0.8.2-r1.ebuild
similarity index 85%
rename from net-analyzer/yersinia/yersinia-0.8.2.ebuild
rename to net-analyzer/yersinia/yersinia-0.8.2-r1.ebuild
index e216096f810c..0d001464a4d2 100644
--- a/net-analyzer/yersinia/yersinia-0.8.2.ebuild
+++ b/net-analyzer/yersinia/yersinia-0.8.2-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
+
 inherit autotools flag-o-matic
 
 DESCRIPTION="A framework for layer 2 attacks"
@@ -14,30 +15,31 @@ KEYWORDS="amd64 x86"
 IUSE="gtk ncurses"
 
 RDEPEND="
+   >=net-libs/libnet-1.1.2
+   >=net-libs/libpcap-0.9.4
ncurses? ( >=sys-libs/ncurses-5.5:= )
gtk? (
dev-libs/glib:2
x11-libs/gdk-pixbuf
=x11-libs/gtk+-2*
)
-   >=net-libs/libnet-1.1.2
-   >=net-libs/libpcap-0.9.4
-"
-DEPEND="
-   virtual/pkgconfig
-   ${RDEPEND}
 "
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
 DOCS=( AUTHORS ChangeLog FAQ README THANKS TODO )
+
 PATCHES=(
"${FILESDIR}"/${PN}-0.7.1-no-ncurses.patch
"${FILESDIR}"/${PN}-0.7.3-tinfo.patch
+   "${FILESDIR}"/${PN}-0.8.2-configure-clang16.patch
 )
 
 src_prepare() {
default
 
if ! use gtk; then
-   #bug #514802
+   # bug #514802
sed -i -e '/AM_GLIB_GNU_GETTEXT/d' configure.in || die
fi
 

diff --git a/net-analyzer/yersinia/yersinia-.ebuild 
b/net-analyzer/yersinia/yersinia-.ebuild
deleted file mode 100644
index f2825d6f6f13..
--- a/net-analyzer/yersinia/yersinia-.ebuild
+++ /dev/null
@@ -1,59 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit autotools flag-o-matic git-r3
-
-DESCRIPTION="A framework for layer 2 attacks"
-HOMEPAGE="https://github.com/tomac/yersinia;
-EGIT_REPO_URI="https://github.com/tomac/yersinia;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS=""
-IUSE="gtk ncurses"
-
-RDEPEND="
-   ncurses? ( >=sys-libs/ncurses-5.5:= )
-   gtk? (
-   dev-libs/glib:2
-   x11-libs/gdk-pixbuf
-   =x11-libs/gtk+-2*
-

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

2022-11-16 Thread Sam James
commit: 79cb82984409502bac3e99d124752bdf1321c7d8
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:18:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:18:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79cb8298

dev-libs/appstream: Stabilize 0.15.5 arm64, #880021

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

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

diff --git a/dev-libs/appstream/appstream-0.15.5.ebuild 
b/dev-libs/appstream/appstream-0.15.5.ebuild
index 6ae6d10b2ee8..8978b5465107 100644
--- a/dev-libs/appstream/appstream-0.15.5.ebuild
+++ b/dev-libs/appstream/appstream-0.15.5.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == ** ]]; then
 else
MY_PN="AppStream"

SRC_URI="https://www.freedesktop.org/software/appstream/releases/${MY_PN}-${PV}.tar.xz;
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
S="${WORKDIR}/${MY_PN}-${PV}"
 fi
 



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

2022-11-16 Thread Sam James
commit: 62586d7de4f7bf87943faf17bc7f2f617cfd5df5
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:18:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:18:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62586d7d

dev-libs/libxmlb: Stabilize 0.3.10 arm64, #880021

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

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

diff --git a/dev-libs/libxmlb/libxmlb-0.3.10.ebuild 
b/dev-libs/libxmlb/libxmlb-0.3.10.ebuild
index ba5636127fa9..a58acafb0f38 100644
--- a/dev-libs/libxmlb/libxmlb-0.3.10.ebuild
+++ b/dev-libs/libxmlb/libxmlb-0.3.10.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/hughsie/libxmlb/archive/${PV}.tar.gz -> ${P}.tar.gz"
 LICENSE="LGPL-2.1+"
 SLOT="0/2" # libxmlb.so version
 
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
 IUSE="doc introspection stemmer test"
 
 RESTRICT="!test? ( test )"



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

2022-11-16 Thread Sam James
commit: 37f2ae413565b4ba0c84fb3481a0b1a3d5cbbbc8
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:18:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:18:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37f2ae41

sys-cluster/rdma-core: Stabilize 42.0-r1 arm64, #881361

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

 sys-cluster/rdma-core/rdma-core-42.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/rdma-core/rdma-core-42.0-r1.ebuild 
b/sys-cluster/rdma-core/rdma-core-42.0-r1.ebuild
index bee48ef4ebe3..38ebf6d9e2c2 100644
--- a/sys-cluster/rdma-core/rdma-core-42.0-r1.ebuild
+++ b/sys-cluster/rdma-core/rdma-core-42.0-r1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/linux-rdma/rdma-core;
 else

SRC_URI="https://github.com/linux-rdma/rdma-core/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv 
~s390 sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv 
~s390 sparc x86"
 fi
 
 LICENSE="|| ( GPL-2 ( CC0-1.0 MIT BSD BSD-with-attribution ) )"



[gentoo-commits] repo/gentoo:master commit in: sys-auth/pam_ssh_agent_auth/files/, sys-auth/pam_ssh_agent_auth/

2022-11-16 Thread Sam James
commit: d78b6e3c57ff356dd42cbe75c46fd3b6d321acdd
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 20:10:37 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 22:59:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d78b6e3c

sys-auth/pam_ssh_agent_auth: further Clang 16 fixes

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

 ...0001-Fix-function-prototypes-in-configure.patch |  6 +-
 ...g-includes-implicit-function-declarations.patch | 78 +-
 ebuild => pam_ssh_agent_auth-0.10.4-r1.ebuild} |  0
 3 files changed, 65 insertions(+), 19 deletions(-)

diff --git 
a/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0001-Fix-function-prototypes-in-configure.patch
 
b/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0001-Fix-function-prototypes-in-configure.patch
index 143f7b7672f4..32b7688fd7bd 100644
--- 
a/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0001-Fix-function-prototypes-in-configure.patch
+++ 
b/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0001-Fix-function-prototypes-in-configure.patch
@@ -1,6 +1,6 @@
 https://github.com/jbeverly/pam_ssh_agent_auth/pull/41
 
-From ad2cc74dce3a6eaff0df193a2ae3db177e0d594f Mon Sep 17 00:00:00 2001
+From 023579b11aa2eecfaa203dca40b2a38d69fea0f2 Mon Sep 17 00:00:00 2001
 From: Sam James 
 Date: Fri, 30 Sep 2022 20:51:17 +0100
 Subject: [PATCH 1/2] Fix function prototypes in configure
@@ -34,7 +34,7 @@ Signed-off-by: Sam James 
  #include 
  #ifdef HAVE_SNPRINTF
 -main()
-+int main()
++int main(void)
  {
char buf[50];
char expected_out[50];
@@ -43,7 +43,7 @@ Signed-off-by: Sam James 
  }
  #else
 -main() { exit(0); }
-+int main() { exit(0); }
++int main(void) { exit(0); }
  #endif
]])], [ true ], [ AC_DEFINE(BROKEN_SNPRINTF) ],
AC_MSG_WARN([cross compiling: Assuming working snprintf()])

diff --git 
a/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0002-Add-missing-includes-implicit-function-declarations.patch
 
b/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0002-Add-missing-includes-implicit-function-declarations.patch
index dda8c88128f6..e5b255f5cb37 100644
--- 
a/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0002-Add-missing-includes-implicit-function-declarations.patch
+++ 
b/sys-auth/pam_ssh_agent_auth/files/pam_ssh_agent_auth-0.10.4-0002-Add-missing-includes-implicit-function-declarations.patch
@@ -1,6 +1,6 @@
 https://github.com/jbeverly/pam_ssh_agent_auth/pull/41
 
-From a12729d18c7ddeae9781a20155d5db1396e9e954 Mon Sep 17 00:00:00 2001
+From 634711a191c1b8be6ea6eb9251ab60a8cb73c6ad Mon Sep 17 00:00:00 2001
 From: Sam James 
 Date: Fri, 30 Sep 2022 20:54:45 +0100
 Subject: [PATCH 2/2] Add missing includes (implicit function declarations)
@@ -60,15 +60,28 @@ Signed-off-by: Sam James 
  int main(void){char b[5];snprintf(b,5,"123456789");exit(b[4]!='\0');}
]])],
[AC_MSG_RESULT(yes)],
-@@ -1408,6 +1414,7 @@ if test "x$ac_cv_func_asprintf" != "xyes" && \
+@@ -1406,8 +1412,10 @@ if test "x$ac_cv_func_asprintf" != "xyes" && \
+   AC_RUN_IFELSE(
+   [AC_LANG_SOURCE([[
  #include 
++#include 
  #include 
  #include 
 +#include 
  
  int x_snprintf(char *str,size_t count,const char *fmt,...)
  {
-@@ -1496,6 +1503,7 @@ if test ! -z "$check_for_openpty_ctty_bug"; then
+@@ -1435,7 +1443,8 @@ fi
+ # check that the fmt argument is const char * or just char *.
+ # This is only useful for when BROKEN_SNPRINTF
+ AC_MSG_CHECKING([whether snprintf can declare const char *fmt])
+-AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include 
++AC_COMPILE_IFELSE([AC_LANG_SOURCE([[#include 
++ #include 
+  int snprintf(char *a, size_t b, const char *c, ...) { return 0; }
+  int main(void) { snprintf(0, 0, 0); } 
+ ]])],
+@@ -1496,6 +1505,7 @@ if test ! -z "$check_for_openpty_ctty_bug"; then
  #include 
  #include 
  #include 
@@ -76,7 +89,7 @@ Signed-off-by: Sam James 
  
  int
  main()
-@@ -1543,6 +1551,7 @@ if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
+@@ -1543,6 +1553,7 @@ if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
AC_RUN_IFELSE(
[AC_LANG_SOURCE([[
  #include 
@@ -84,7 +97,7 @@ Signed-off-by: Sam James 
  #include 
  #include 
  #include 
-@@ -1615,6 +1624,7 @@ if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
+@@ -1615,6 +1626,7 @@ if test "x$ac_cv_func_getaddrinfo" = "xyes" && \
AC_RUN_IFELSE(
[AC_LANG_SOURCE([[
  #include 
@@ -92,7 +105,7 @@ Signed-off-by: Sam James 
  #include 
  #include 
  #include 
-@@ -1677,6 +1687,7 @@ if test "x$check_for_conflicting_getspnam" = "x1"; then
+@@ -1677,6 +1689,7 @@ if test "x$check_for_conflicting_getspnam" = "x1"; then
AC_COMPILE_IFELSE([AC_LANG_SOURCE(
[
  #include 
@@ -100,7 +113,7 @@ Signed-off-by: Sam James 
  int main(void) {exit(0);}
])],
[
-@@ -1750,6 

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

2022-11-16 Thread Sam James
commit: 8a4934f641704b512282d9e33841d302fdde2da8
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:00:12 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:00:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a4934f6

app-emulation/q4wine: Stabilize 1.3.13 amd64, #881551

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

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

diff --git a/app-emulation/q4wine/q4wine-1.3.13.ebuild 
b/app-emulation/q4wine/q4wine-1.3.13.ebuild
index eef0589c6f36..da3fd52366f7 100644
--- a/app-emulation/q4wine/q4wine-1.3.13.ebuild
+++ b/app-emulation/q4wine/q4wine-1.3.13.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}"/${MY_P}
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+dbus debug +ico +iso +wineappdb"
 
 DEPEND="



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

2022-11-16 Thread Sam James
commit: e2345e1e7cba96bb37b15a87ec9d8fe5375536ae
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 19:58:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 22:59:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2345e1e

dev-db/kyotocabinet: add 1.2.79

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

 dev-db/kyotocabinet/Manifest   |  1 +
 dev-db/kyotocabinet/kyotocabinet-1.2.79.ebuild | 68 ++
 2 files changed, 69 insertions(+)

diff --git a/dev-db/kyotocabinet/Manifest b/dev-db/kyotocabinet/Manifest
index 153fe26ce686..cc68343464c7 100644
--- a/dev-db/kyotocabinet/Manifest
+++ b/dev-db/kyotocabinet/Manifest
@@ -1 +1,2 @@
 DIST kyotocabinet-1.2.77.tar.gz 949326 BLAKE2B 
faacde57e8c7fed3fb232ea6fd12b668f2d2ee352cd357d5e16e0d1740cd8f73e223964249efeae50f3ea5d0672117b2410b91ba557ebe1ac7ba4075ac28deab
 SHA512 
f38794c11faa3f4b64097a2e314307e1a6b75ddc495103647ebe52786a689336754496e7083697417ea90436e7fad681f16440975abec9ae917874aa25153e0f
+DIST kyotocabinet-1.2.79.tar.gz 943804 BLAKE2B 
8a12e6dd953a1ba995d5a60126fb2682a07be390698bf98535633af894573aafc63b55497dc869cad14eceb14824ceb4f8c471b9aa1dad51944c35eac0cf4912
 SHA512 
9243192c81d3aa37cc8c80eb3bdf235192a0919b134cededa2b4178be515d148916e7405e094cbcdd7dbf13bf38a569bf21863afac7cc05d6418cca5853a2ff4

diff --git a/dev-db/kyotocabinet/kyotocabinet-1.2.79.ebuild 
b/dev-db/kyotocabinet/kyotocabinet-1.2.79.ebuild
new file mode 100644
index ..4d737ac5ad0b
--- /dev/null
+++ b/dev-db/kyotocabinet/kyotocabinet-1.2.79.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools toolchain-funcs
+
+DESCRIPTION="A straightforward implementation of DBM"
+HOMEPAGE="https://dbmx.net/kyotocabinet/;
+SRC_URI="https://dbmx.net/kyotocabinet/pkg/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+IUSE="debug doc examples +lzma +lzo static-libs"
+
+DEPEND="sys-libs/zlib[static-libs?]
+   lzma? ( app-arch/xz-utils:=[static-libs?] )
+   lzo? ( dev-libs/lzo:=[static-libs?] )"
+RDEPEND="${DEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/fix_configure-1.2.62.patch
+   "${FILESDIR}"/${PN}-1.2.76-configure-8-byte-atomics.patch
+   "${FILESDIR}"/${PN}-1.2.76-flags.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i -e "/DOCDIR/d" Makefile.in || die
+   tc-export AR
+
+   mv configure.in configure.ac || die
+   eautoreconf
+}
+
+src_configure() {
+   # We need to set LD_LIBRARY_PATH which will be assigned to RUNENV later
+   # used by test suite
+   LD_LIBRARY_PATH=. \
+   econf $(use_enable debug) \
+   $(use_enable static-libs static) \
+   $(use_enable !static-libs shared) \
+   $(use_enable lzma) \
+   $(use_enable lzo)
+}
+
+src_test() {
+   emake -j1 check
+}
+
+src_install() {
+   default
+
+   if ! use static-libs; then
+   find "${ED}" -name '*.a' -delete || die
+   fi
+
+   if use doc; then
+   dodoc -r doc/*
+   fi
+
+   if use examples; then
+   docinto example
+   dodoc example/*
+   fi
+}



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

2022-11-16 Thread Sam James
commit: db3b39149922805883f02a80d4d75ff3bc091d0a
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:00:11 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:00:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db3b3914

app-misc/mx5000tools: Stabilize 0.1.2_p20190613 amd64, #881547

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

 app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild 
b/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild
index 006929be4f67..cca3815e7eaa 100644
--- a/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild
+++ b/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/${PN}-${MX5000_TOOLS_COMMIT}
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 x86"
+KEYWORDS="amd64 ppc ppc64 x86"
 
 RDEPEND="
dev-libs/glib:2



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

2022-11-16 Thread Sam James
commit: b9b85f250035f15379ff15546ce7a244d7e5592f
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 23:00:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 23:00:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b85f25

app-misc/mx5000tools: Stabilize 0.1.2_p20190613 x86, #881547

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

 app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild 
b/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild
index 1b386c583e2a..006929be4f67 100644
--- a/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild
+++ b/app-misc/mx5000tools/mx5000tools-0.1.2_p20190613.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}"/${PN}-${MX5000_TOOLS_COMMIT}
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ppc ppc64 ~x86"
+KEYWORDS="~amd64 ppc ppc64 x86"
 
 RDEPEND="
dev-libs/glib:2



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

2022-11-16 Thread Sam James
commit: dc553122331d057553a206eb19e90daa10c3fb05
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 19:55:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 22:59:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc553122

dev-db/kyotocabinet: update HOMEPAGE, SRC_URI

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

 dev-db/kyotocabinet/kyotocabinet-1.2.77.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-db/kyotocabinet/kyotocabinet-1.2.77.ebuild 
b/dev-db/kyotocabinet/kyotocabinet-1.2.77.ebuild
index 7221529d0b8c..c2108518f5f2 100644
--- a/dev-db/kyotocabinet/kyotocabinet-1.2.77.ebuild
+++ b/dev-db/kyotocabinet/kyotocabinet-1.2.77.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
@@ -6,8 +6,8 @@ EAPI=7
 inherit autotools toolchain-funcs
 
 DESCRIPTION="A straightforward implementation of DBM"
-HOMEPAGE="https://fallabs.com/kyotocabinet/;
-SRC_URI="https://fallabs.com/kyotocabinet/pkg/${P}.tar.gz;
+HOMEPAGE="https://dbmx.net/kyotocabinet/;
+SRC_URI="https://dbmx.net/kyotocabinet/pkg/${P}.tar.gz;
 
 LICENSE="GPL-3"
 SLOT="0"



[gentoo-commits] repo/gentoo:master commit in: app-i18n/xvnkb/

2022-11-16 Thread Sam James
commit: d9ce7c754080c1187a222ec3939014c0c316423a
Author: Sam James  gentoo  org>
AuthorDate: Wed Nov 16 19:51:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Nov 16 22:59:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9ce7c75

app-i18n/xvnkb: use HTTPS

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

 app-i18n/xvnkb/xvnkb-0.2.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild 
b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
index 5493f9d719bf..98e4e14b988b 100644
--- a/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
+++ b/app-i18n/xvnkb/xvnkb-0.2.11.ebuild
@@ -6,8 +6,8 @@ EAPI="8"
 inherit toolchain-funcs
 
 DESCRIPTION="Vietnamese input keyboard for X"
-HOMEPAGE="http://xvnkb.sourceforge.net/;
-SRC_URI="http://${PN}.sourceforge.net/${P}.tar.bz2;
+HOMEPAGE="https://xvnkb.sourceforge.net/;
+SRC_URI="https://${PN}.sourceforge.net/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0"



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

2022-11-16 Thread Matt Turner
commit: 27798bec01b881642adb0bda32b98eec03ed09e3
Author: Christophe Lermytte  lermytte  be>
AuthorDate: Wed Nov 16 22:22:30 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Nov 16 22:56:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27798bec

app-misc/bijiben: link against webkit-gtk:4.1

The evolution-data-server version this ebuild is using is linked
against libsoup:3.0, we need to use a webkit-gtk version that does so
too.

Closes: https://bugs.gentoo.org/878109
Closes: https://github.com/gentoo/gentoo/pull/28304
Signed-off-by: Christophe Lermytte  lermytte.be>
Signed-off-by: Matt Turner  gentoo.org>

 .../{bijiben-40.1-r1.ebuild => bijiben-40.1-r2.ebuild}   |  1 +
 app-misc/bijiben/files/bijiben-40.1-webkit-gtk-libsoup.patch | 12 
 2 files changed, 13 insertions(+)

diff --git a/app-misc/bijiben/bijiben-40.1-r1.ebuild 
b/app-misc/bijiben/bijiben-40.1-r2.ebuild
similarity index 95%
rename from app-misc/bijiben/bijiben-40.1-r1.ebuild
rename to app-misc/bijiben/bijiben-40.1-r2.ebuild
index d7e5045ca8bc..5170e1f11c80 100644
--- a/app-misc/bijiben/bijiben-40.1-r1.ebuild
+++ b/app-misc/bijiben/bijiben-40.1-r2.ebuild
@@ -38,6 +38,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/${PN}-40.1-meson-0.61.patch
+   "${FILESDIR}"/${PN}-40.1-webkit-gtk-libsoup.patch
 )
 
 src_configure() {

diff --git a/app-misc/bijiben/files/bijiben-40.1-webkit-gtk-libsoup.patch 
b/app-misc/bijiben/files/bijiben-40.1-webkit-gtk-libsoup.patch
new file mode 100644
index ..150f97010686
--- /dev/null
+++ b/app-misc/bijiben/files/bijiben-40.1-webkit-gtk-libsoup.patch
@@ -0,0 +1,12 @@
+https://bugs.gentoo.org/878109
+
+--- a/meson.build
 b/meson.build
+@@ -126,7 +126,7 @@ bijiben_deps = [
+   dependency('libxml-2.0'),
+   dependency('libcurl'),
+   dependency('uuid'),
+-  dependency('webkit2gtk-4.0', version: '>= 2.26'),
++  dependency('webkit2gtk-4.1', version: '>= 2.26'),
+   cc.find_library('m')
+ ]



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

2022-11-16 Thread Georgy Yakovlev
commit: 869feec511b29896d24369460575cdfa10a0caa7
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Nov 16 21:54:19 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Nov 16 21:54:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=869feec5

virtual/rust: drop 1.64.0, 1.65.0

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

 virtual/rust/rust-1.64.0.ebuild | 19 ---
 virtual/rust/rust-1.65.0.ebuild | 19 ---
 2 files changed, 38 deletions(-)

diff --git a/virtual/rust/rust-1.64.0.ebuild b/virtual/rust/rust-1.64.0.ebuild
deleted file mode 100644
index ee4189e024d1..
--- a/virtual/rust/rust-1.64.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit multilib-build
-
-DESCRIPTION="Virtual for Rust language compiler"
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE="rustfmt"
-
-BDEPEND=""
-RDEPEND="|| (
-   ~dev-lang/rust-${PV}[rustfmt?,${MULTILIB_USEDEP}]
-   ~dev-lang/rust-bin-${PV}[rustfmt?,${MULTILIB_USEDEP}]
-)"

diff --git a/virtual/rust/rust-1.65.0.ebuild b/virtual/rust/rust-1.65.0.ebuild
deleted file mode 100644
index a7d950afd9b7..
--- a/virtual/rust/rust-1.65.0.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit multilib-build
-
-DESCRIPTION="Virtual for Rust language compiler"
-
-LICENSE=""
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
-IUSE="rustfmt"
-
-BDEPEND=""
-RDEPEND="|| (
-   ~dev-lang/rust-${PV}[rustfmt?,${MULTILIB_USEDEP}]
-   ~dev-lang/rust-bin-${PV}[rustfmt?,${MULTILIB_USEDEP}]
-)"



[gentoo-commits] proj/releng:master commit in: releases/specs/ia64/, tools/

2022-11-16 Thread Andreas K. Hüttel
commit: c5e8ae2dda8cb5c95c841955166ee631aa2302df
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Nov 16 21:42:34 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Nov 16 21:42:34 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=c5e8ae2d

Add ia64 systemd merged-usr build

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

 releases/specs/ia64/stage1-systemd-mu.spec | 12 
 releases/specs/ia64/stage3-systemd-mu.spec | 10 ++
 tools/catalyst-auto-ia64.conf  |  5 -
 3 files changed, 26 insertions(+), 1 deletion(-)

diff --git a/releases/specs/ia64/stage1-systemd-mu.spec 
b/releases/specs/ia64/stage1-systemd-mu.spec
new file mode 100644
index ..b3939d02
--- /dev/null
+++ b/releases/specs/ia64/stage1-systemd-mu.spec
@@ -0,0 +1,12 @@
+subarch: ia64
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage1
+rel_type: default
+profile: default/linux/ia64/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-ia64-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: --update --deep --newuse @world
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/releases/specs/ia64/stage3-systemd-mu.spec 
b/releases/specs/ia64/stage3-systemd-mu.spec
new file mode 100644
index ..02619c36
--- /dev/null
+++ b/releases/specs/ia64/stage3-systemd-mu.spec
@@ -0,0 +1,10 @@
+subarch: ia64
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage3
+rel_type: default
+profile: default/linux/ia64/17.0/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-ia64-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages
+portage_prefix: releng

diff --git a/tools/catalyst-auto-ia64.conf b/tools/catalyst-auto-ia64.conf
index 114d71f1..ba74d35c 100644
--- a/tools/catalyst-auto-ia64.conf
+++ b/tools/catalyst-auto-ia64.conf
@@ -5,7 +5,7 @@ UPLOAD_USER=ia64
 UPLOAD_KEY=/root/.ssh/id_rsa
 SPECS_DIR=${REPO_DIR}/releases/specs/ia64
 
-SPECS="stage1-openrc.spec stage3-openrc.spec stage1-systemd.spec 
stage3-systemd.spec"
+SPECS="stage1-openrc.spec stage3-openrc.spec stage1-systemd.spec 
stage3-systemd.spec stage1-systemd-mu.spec stage3-systemd-mu.spec"
 OPTIONAL_SPECS="installcd-stage1.spec installcd-stage2-minimal.spec"
 
 KCONFIG_DIR=${REPO_DIR}/releases/kconfig/ia64
@@ -38,6 +38,9 @@ post_build() {
stage3-systemd.spec)
upload stage3-*systemd-${TIMESTAMP}*.xz*
;;
+   stage3-systemd-mu.spec)
+   upload stage3-*systemd-mergedusr-${TIMESTAMP}*.xz*
+   ;;
*)
echo "Finished ${spec}"
;;



[gentoo-commits] proj/releng:master commit in: releases/specs-qemu/loong/, tools/

2022-11-16 Thread Andreas K. Hüttel
commit: 6a55a8d80ab11d93245d0c26dcfa04671ffbf239
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Wed Nov 16 21:48:47 2022 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Wed Nov 16 21:48:47 2022 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=6a55a8d8

Add loong systemd merged-usr build

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

 releases/specs-qemu/loong/stage1-systemd-mu.spec | 13 +
 releases/specs-qemu/loong/stage3-systemd-mu.spec | 11 +++
 tools/catalyst-auto-qemu-loong.conf  | 18 ++
 3 files changed, 38 insertions(+), 4 deletions(-)

diff --git a/releases/specs-qemu/loong/stage1-systemd-mu.spec 
b/releases/specs-qemu/loong/stage1-systemd-mu.spec
new file mode 100644
index ..c745deae
--- /dev/null
+++ b/releases/specs-qemu/loong/stage1-systemd-mu.spec
@@ -0,0 +1,13 @@
+subarch: loong
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage1
+rel_type: default
+profile: default/linux/loong/22.0/la64v100/lp64d/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage3-loong-systemd-mergedusr-latest
+compression_mode: pixz
+update_seed: no
+update_seed_command: -uDN @world
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng
+interpreter: /usr/bin/qemu-loongarch64

diff --git a/releases/specs-qemu/loong/stage3-systemd-mu.spec 
b/releases/specs-qemu/loong/stage3-systemd-mu.spec
new file mode 100644
index ..5de56ba7
--- /dev/null
+++ b/releases/specs-qemu/loong/stage3-systemd-mu.spec
@@ -0,0 +1,11 @@
+subarch: loong
+version_stamp: systemd-mergedusr-@TIMESTAMP@
+target: stage3
+rel_type: default
+profile: default/linux/loong/22.0/la64v100/lp64d/systemd/merged-usr
+snapshot: @TIMESTAMP@
+source_subpath: default/stage1-loong-systemd-mergedusr-@TIMESTAMP@
+compression_mode: pixz
+portage_confdir: @REPO_DIR@/releases/portage/stages-qemu
+portage_prefix: releng
+interpreter: /usr/bin/qemu-loongarch64

diff --git a/tools/catalyst-auto-qemu-loong.conf 
b/tools/catalyst-auto-qemu-loong.conf
index 5f140c17..69004e40 100644
--- a/tools/catalyst-auto-qemu-loong.conf
+++ b/tools/catalyst-auto-qemu-loong.conf
@@ -13,11 +13,15 @@ EMAIL_SUBJECT_PREPEND="[loong-qemu-auto]"
 SETS="
openrc
systemd
+   systemd_mu
 "
 
 SET_openrc_SPECS="stage1-openrc.spec stage3-openrc.spec"
+
 SET_systemd_SPECS="stage1-systemd.spec stage3-systemd.spec"
 
+SET_systemd_mu_SPECS="stage1-systemd-mu.spec stage3-systemd-mu.spec"
+
 update_symlinks() {
# Symlink the latest stages3 to build from
local d f
@@ -34,14 +38,20 @@ update_symlinks() {
 post_build() {
local set=$1 spec=$2
 
+   pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
case ${spec} in
-   stage3*.spec)
-   pushd "${BUILD_SRCDIR_BASE}/builds/default" >/dev/null
-   upload stage3-loong-$(echo ${spec}|sed -e 
's:^stage3-::g' -e 's:\.spec$::g')-${TIMESTAMP}*.xz*
-   popd >/dev/null
+   stage3-openrc.spec)
+   upload stage3-loong-openrc-${TIMESTAMP}*.xz*
+   ;;
+   stage3-systemd.spec)
+   upload stage3-loong-systemd-${TIMESTAMP}*.xz*
+   ;;
+   stage3-systemd-mu.spec)
+   upload stage3-loong-systemd-mergedusr-${TIMESTAMP}*.xz*
;;
*)
echo "Finished ${spec}"
;;
esac
+   popd >/dev/null
 }



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

2022-11-16 Thread Mike Gilbert
commit: 92ce9ad698a9564e56a70013239f73345ebd5d32
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:44:09 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Nov 16 21:44:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=92ce9ad6

www-client/google-chrome-beta: adjust at-spi2-core dep

Signed-off-by: Mike Gilbert  gentoo.org>

 .../google-chrome-beta/google-chrome-beta-108.0.5359.48.ebuild   | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-108.0.5359.48.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-108.0.5359.48.ebuild
index b1fd61130859..c97ff5d01e50 100644
--- a/www-client/google-chrome-beta/google-chrome-beta-108.0.5359.48.ebuild
+++ b/www-client/google-chrome-beta/google-chrome-beta-108.0.5359.48.ebuild
@@ -30,10 +30,7 @@ IUSE="selinux"
 RESTRICT="bindist mirror strip"
 
 RDEPEND="
-   || (
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   ( app-accessibility/at-spi2-atk dev-libs/atk )
-   )
+   >=app-accessibility/at-spi2-core-2.46.0:2
app-misc/ca-certificates
dev-libs/expat
dev-libs/glib:2



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

2022-11-16 Thread Mike Gilbert
commit: 415af2567b5ae4a84e46f63929fb1cac5d70909e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:43:29 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Nov 16 21:44:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=415af256

www-client/google-chrome: adjust at-spi2-core dep

Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome/google-chrome-107.0.5304.110.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/www-client/google-chrome/google-chrome-107.0.5304.110.ebuild 
b/www-client/google-chrome/google-chrome-107.0.5304.110.ebuild
index debf03942e48..530fa40bf7cc 100644
--- a/www-client/google-chrome/google-chrome-107.0.5304.110.ebuild
+++ b/www-client/google-chrome/google-chrome-107.0.5304.110.ebuild
@@ -30,10 +30,7 @@ IUSE="selinux"
 RESTRICT="bindist mirror strip"
 
 RDEPEND="
-   || (
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   ( app-accessibility/at-spi2-atk dev-libs/atk )
-   )
+   >=app-accessibility/at-spi2-core-2.46.0:2
app-misc/ca-certificates
dev-libs/expat
dev-libs/glib:2



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2022-11-16 Thread Mike Gilbert
commit: 0e1dae56326865a01ab1fbbe5a5bf91679447c3f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:44:34 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Nov 16 21:44:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e1dae56

www-client/google-chrome-unstable: adjust at-spi2-core dep

Signed-off-by: Mike Gilbert  gentoo.org>

 .../google-chrome-unstable-109.0.5410.0.ebuild   | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-109.0.5410.0.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-109.0.5410.0.ebuild
index b1fd61130859..c97ff5d01e50 100644
--- 
a/www-client/google-chrome-unstable/google-chrome-unstable-109.0.5410.0.ebuild
+++ 
b/www-client/google-chrome-unstable/google-chrome-unstable-109.0.5410.0.ebuild
@@ -30,10 +30,7 @@ IUSE="selinux"
 RESTRICT="bindist mirror strip"
 
 RDEPEND="
-   || (
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   ( app-accessibility/at-spi2-atk dev-libs/atk )
-   )
+   >=app-accessibility/at-spi2-core-2.46.0:2
app-misc/ca-certificates
dev-libs/expat
dev-libs/glib:2



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

2022-11-16 Thread Matt Turner
commit: 725e4e813dc570f1944727432076e04d10de1ad4
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Nov 16 21:42:08 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Nov 16 21:42:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=725e4e81

profiles: Expand message about app-accessibility/at-spi2-atk deprecation

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

 profiles/package.deprecated | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/profiles/package.deprecated b/profiles/package.deprecated
index ccf0240faa3f..ca26d490fc2f 100644
--- a/profiles/package.deprecated
+++ b/profiles/package.deprecated
@@ -45,6 +45,8 @@ virtual/imap-c-client
 
 # Matt Turner  (2022-10-02)
 # Dummy packages, now merged into app-accessibility/at-spi2-core.
+# When possible, replace dependencies on these packages with a dependency on
+#  >=app-accessibility/at-spi2-core-2.46.0
 app-accessibility/at-spi2-atk
 dev-libs/atk
 



[gentoo-commits] repo/gentoo:master commit in: sci-geosciences/geocode-glib/

2022-11-16 Thread Matt Turner
commit: b39373299dff705110578f2954f901b9f93ff8af
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Nov 16 21:40:37 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Nov 16 21:42:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3937329

sci-geosciences/geocode-glib: Fix blocker

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

 sci-geosciences/geocode-glib/geocode-glib-3.26.4-r201.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-geosciences/geocode-glib/geocode-glib-3.26.4-r201.ebuild 
b/sci-geosciences/geocode-glib/geocode-glib-3.26.4-r201.ebuild
index a0b7b3004da4..d7b3e765e3de 100644
--- a/sci-geosciences/geocode-glib/geocode-glib-3.26.4-r201.ebuild
+++ b/sci-geosciences/geocode-glib/geocode-glib-3.26.4-r201.ebuild
@@ -19,7 +19,7 @@ RDEPEND="
>=net-libs/libsoup-3.0.8:3.0[introspection?]
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
 
-   

[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/syntax-highlighting/

2022-11-16 Thread Andreas Sturmlechner
commit: 9529d52f9a5972b1c1410891c29b0b212b545a20
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:05:02 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9529d52f

kde-frameworks/syntax-highlighting: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 .../syntax-highlighting/syntax-highlighting-5.100.0.ebuild   | 5 +++--
 kde-frameworks/syntax-highlighting/syntax-highlighting-5.99.0.ebuild | 5 +++--
 2 files changed, 6 insertions(+), 4 deletions(-)

diff --git 
a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.100.0.ebuild 
b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.100.0.ebuild
index 1cb111a4cf42..8f91935918d1 100644
--- a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.100.0.ebuild
+++ b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.100.0.ebuild
@@ -8,9 +8,10 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for syntax highlighting"
+
 LICENSE="MIT"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtdeclarative-${QTMIN}:5
@@ -21,7 +22,7 @@ DEPEND="
 RDEPEND="${DEPEND}"
 BDEPEND="
dev-lang/perl
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
+   >=dev-qt/linguist-tools-${QTMIN}:5
 "
 
 src_install() {

diff --git 
a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.99.0.ebuild 
b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.99.0.ebuild
index 19163a7b88ea..f122de37610d 100644
--- a/kde-frameworks/syntax-highlighting/syntax-highlighting-5.99.0.ebuild
+++ b/kde-frameworks/syntax-highlighting/syntax-highlighting-5.99.0.ebuild
@@ -8,9 +8,10 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for syntax highlighting"
+
 LICENSE="MIT"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtdeclarative-${QTMIN}:5
@@ -21,7 +22,7 @@ DEPEND="
 RDEPEND="${DEPEND}"
 BDEPEND="
dev-lang/perl
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
+   >=dev-qt/linguist-tools-${QTMIN}:5
 "
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kwidgetsaddons/

2022-11-16 Thread Andreas Sturmlechner
commit: adc899fec15575e9c39848899d3f763c61a29df6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:38 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc899fe

kde-frameworks/kwidgetsaddons: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.100.0.ebuild | 4 ++--
 kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.100.0.ebuild 
b/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.100.0.ebuild
index 1bd174a17186..67dd3ea3fac4 100644
--- a/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.100.0.ebuild
+++ b/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.100.0.ebuild
@@ -12,14 +12,14 @@ DESCRIPTION="An assortment of high-level widgets for common 
tasks"
 
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_test() {
# bug 650216, 653186, 697866, 808216

diff --git a/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.99.0.ebuild 
b/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.99.0.ebuild
index 354c4da1bc98..86f0e4c1144c 100644
--- a/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.99.0.ebuild
+++ b/kde-frameworks/kwidgetsaddons/kwidgetsaddons-5.99.0.ebuild
@@ -12,14 +12,14 @@ DESCRIPTION="An assortment of high-level widgets for common 
tasks"
 
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_test() {
# bug 650216, 653186, 697866, 808216



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kwindowsystem/

2022-11-16 Thread Andreas Sturmlechner
commit: 1f406d4c8e662ec12b17b552e769aedeef7e28c2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:47 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f406d4c

kde-frameworks/kwindowsystem: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kwindowsystem/kwindowsystem-5.100.0.ebuild | 7 +++
 kde-frameworks/kwindowsystem/kwindowsystem-5.99.0.ebuild  | 7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/kde-frameworks/kwindowsystem/kwindowsystem-5.100.0.ebuild 
b/kde-frameworks/kwindowsystem/kwindowsystem-5.100.0.ebuild
index a7bb3c2bf822..f1a05fe8fa94 100644
--- a/kde-frameworks/kwindowsystem/kwindowsystem-5.100.0.ebuild
+++ b/kde-frameworks/kwindowsystem/kwindowsystem-5.100.0.ebuild
@@ -8,9 +8,10 @@ VIRTUALX_REQUIRED="test"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework providing access to properties and features of the 
window manager"
+
 LICENSE="|| ( LGPL-2.1 LGPL-3 ) MIT"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
 RESTRICT="test"
 
@@ -28,9 +29,7 @@ DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 )
 "
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 DOCS=( docs/README.kstartupinfo )
 

diff --git a/kde-frameworks/kwindowsystem/kwindowsystem-5.99.0.ebuild 
b/kde-frameworks/kwindowsystem/kwindowsystem-5.99.0.ebuild
index 9315a7bcfb40..0d28a7e26d1a 100644
--- a/kde-frameworks/kwindowsystem/kwindowsystem-5.99.0.ebuild
+++ b/kde-frameworks/kwindowsystem/kwindowsystem-5.99.0.ebuild
@@ -8,9 +8,10 @@ VIRTUALX_REQUIRED="test"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework providing access to properties and features of the 
window manager"
+
 LICENSE="|| ( LGPL-2.1 LGPL-3 ) MIT"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
 RESTRICT="test"
 
@@ -28,9 +29,7 @@ DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 )
 "
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 DOCS=( docs/README.kstartupinfo )
 



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kholidays/

2022-11-16 Thread Andreas Sturmlechner
commit: ccf56e205d9481c128200b17fc12590dff83108a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:21 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf56e20

kde-frameworks/kholidays: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kholidays/kholidays-5.100.0.ebuild | 11 ---
 kde-frameworks/kholidays/kholidays-5.99.0.ebuild  | 11 ---
 2 files changed, 8 insertions(+), 14 deletions(-)

diff --git a/kde-frameworks/kholidays/kholidays-5.100.0.ebuild 
b/kde-frameworks/kholidays/kholidays-5.100.0.ebuild
index 6331b9327761..52228ac7a59f 100644
--- a/kde-frameworks/kholidays/kholidays-5.100.0.ebuild
+++ b/kde-frameworks/kholidays/kholidays-5.100.0.ebuild
@@ -9,17 +9,14 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Library to determine holidays and other special events for a 
geographical region"
+
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
-DEPEND="
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-"
+DEPEND=">=dev-qt/qtdeclarative-${QTMIN}:5"
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_test() {
# bug 624214

diff --git a/kde-frameworks/kholidays/kholidays-5.99.0.ebuild 
b/kde-frameworks/kholidays/kholidays-5.99.0.ebuild
index 5f2c1fec63a3..ac42f4820383 100644
--- a/kde-frameworks/kholidays/kholidays-5.99.0.ebuild
+++ b/kde-frameworks/kholidays/kholidays-5.99.0.ebuild
@@ -9,17 +9,14 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Library to determine holidays and other special events for a 
geographical region"
+
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
-DEPEND="
-   >=dev-qt/qtdeclarative-${QTMIN}:5
-"
+DEPEND=">=dev-qt/qtdeclarative-${QTMIN}:5"
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_test() {
# bug 624214



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/knotifications/

2022-11-16 Thread Andreas Sturmlechner
commit: 126605087dd52e3d3da585e4a1b1b248315d5305
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:34 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12660508

kde-frameworks/knotifications: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/knotifications/knotifications-5.100.0.ebuild | 4 ++--
 kde-frameworks/knotifications/knotifications-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/knotifications/knotifications-5.100.0.ebuild 
b/kde-frameworks/knotifications/knotifications-5.100.0.ebuild
index 17f9ef2d0ece..cf32b88543c7 100644
--- a/kde-frameworks/knotifications/knotifications-5.100.0.ebuild
+++ b/kde-frameworks/knotifications/knotifications-5.100.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework for notifying the user of an event"
 
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="dbus nls phonon qml speech X"
+IUSE="dbus phonon qml speech X"
 
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -35,7 +35,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/knotifications/knotifications-5.99.0.ebuild 
b/kde-frameworks/knotifications/knotifications-5.99.0.ebuild
index df82027fa0a6..3344bc38c2d8 100644
--- a/kde-frameworks/knotifications/knotifications-5.99.0.ebuild
+++ b/kde-frameworks/knotifications/knotifications-5.99.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework for notifying the user of an event"
 
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="dbus nls phonon qml speech X"
+IUSE="dbus phonon qml speech X"
 
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -35,7 +35,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/sonnet/

2022-11-16 Thread Andreas Sturmlechner
commit: 2b7921d6d386bf3dc69137389fa54f4007927bb5
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:56 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b7921d6

kde-frameworks/sonnet: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/sonnet/sonnet-5.100.0.ebuild | 6 ++
 kde-frameworks/sonnet/sonnet-5.99.0.ebuild  | 6 ++
 2 files changed, 4 insertions(+), 8 deletions(-)

diff --git a/kde-frameworks/sonnet/sonnet-5.100.0.ebuild 
b/kde-frameworks/sonnet/sonnet-5.100.0.ebuild
index 6a624120445d..f6d3a7082c0c 100644
--- a/kde-frameworks/sonnet/sonnet-5.100.0.ebuild
+++ b/kde-frameworks/sonnet/sonnet-5.100.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework for providing spell-checking through 
abstraction of popul
 
 LICENSE="LGPL-2+ LGPL-2.1+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
-IUSE="aspell +hunspell nls qml"
+IUSE="aspell +hunspell qml"
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
@@ -22,9 +22,7 @@ DEPEND="
qml? ( >=dev-qt/qtdeclarative-${QTMIN}:5 )
 "
 RDEPEND="${DEPEND}"
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/sonnet/sonnet-5.99.0.ebuild 
b/kde-frameworks/sonnet/sonnet-5.99.0.ebuild
index c3808f2166d0..5dfd2198a481 100644
--- a/kde-frameworks/sonnet/sonnet-5.99.0.ebuild
+++ b/kde-frameworks/sonnet/sonnet-5.99.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework for providing spell-checking through 
abstraction of popul
 
 LICENSE="LGPL-2+ LGPL-2.1+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
-IUSE="aspell +hunspell nls qml"
+IUSE="aspell +hunspell qml"
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
@@ -22,9 +22,7 @@ DEPEND="
qml? ( >=dev-qt/qtdeclarative-${QTMIN}:5 )
 "
 RDEPEND="${DEPEND}"
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/solid/

2022-11-16 Thread Andreas Sturmlechner
commit: 4a060b871f80b3c8bd698ed4caac8ef310a9d33e
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:52 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4a060b87

kde-frameworks/solid: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/solid/solid-5.100.0.ebuild | 4 ++--
 kde-frameworks/solid/solid-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/solid/solid-5.100.0.ebuild 
b/kde-frameworks/solid/solid-5.100.0.ebuild
index 6a92d9c81505..08735e228daa 100644
--- a/kde-frameworks/solid/solid-5.100.0.ebuild
+++ b/kde-frameworks/solid/solid-5.100.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Provider for platform independent hardware 
discovery, abstraction a
 
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="ios nls"
+IUSE="ios"
 
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -30,9 +30,9 @@ DEPEND="${RDEPEND}
test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
 "
 BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
sys-devel/bison
sys-devel/flex
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
 "
 
 src_configure() {

diff --git a/kde-frameworks/solid/solid-5.99.0.ebuild 
b/kde-frameworks/solid/solid-5.99.0.ebuild
index 49b11b21cc14..a3ba8b790e45 100644
--- a/kde-frameworks/solid/solid-5.99.0.ebuild
+++ b/kde-frameworks/solid/solid-5.99.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Provider for platform independent hardware 
discovery, abstraction a
 
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="ios nls"
+IUSE="ios"
 
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -30,9 +30,9 @@ DEPEND="${RDEPEND}
test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
 "
 BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
sys-devel/bison
sys-devel/flex
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
 "
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kdbusaddons/

2022-11-16 Thread Andreas Sturmlechner
commit: 9815c8558953623aff391d2824ecf6a2d4e4cf11
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:03 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9815c855

kde-frameworks/kdbusaddons: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kdbusaddons/kdbusaddons-5.100.0.ebuild | 7 +++
 kde-frameworks/kdbusaddons/kdbusaddons-5.99.0.ebuild  | 7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/kde-frameworks/kdbusaddons/kdbusaddons-5.100.0.ebuild 
b/kde-frameworks/kdbusaddons/kdbusaddons-5.100.0.ebuild
index 393adeb20f9f..5ab6429841ec 100644
--- a/kde-frameworks/kdbusaddons/kdbusaddons-5.100.0.ebuild
+++ b/kde-frameworks/kdbusaddons/kdbusaddons-5.100.0.ebuild
@@ -8,18 +8,17 @@ VIRTUALDBUS_TEST="true"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for registering services and applications per 
freedesktop standards"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
X? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
 "
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/kdbusaddons/kdbusaddons-5.99.0.ebuild 
b/kde-frameworks/kdbusaddons/kdbusaddons-5.99.0.ebuild
index a25876caac78..b3feb3a83915 100644
--- a/kde-frameworks/kdbusaddons/kdbusaddons-5.99.0.ebuild
+++ b/kde-frameworks/kdbusaddons/kdbusaddons-5.99.0.ebuild
@@ -8,18 +8,17 @@ VIRTUALDBUS_TEST="true"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for registering services and applications per 
freedesktop standards"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
X? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
 "
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kjobwidgets/

2022-11-16 Thread Andreas Sturmlechner
commit: 1de02a7ce541504d1c4cb5d533a9e79cab735814
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:29 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1de02a7c

kde-frameworks/kjobwidgets: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kjobwidgets/kjobwidgets-5.100.0.ebuild | 7 +++
 kde-frameworks/kjobwidgets/kjobwidgets-5.99.0.ebuild  | 7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/kde-frameworks/kjobwidgets/kjobwidgets-5.100.0.ebuild 
b/kde-frameworks/kjobwidgets/kjobwidgets-5.100.0.ebuild
index 66909f2ed71f..278a3d386e00 100644
--- a/kde-frameworks/kjobwidgets/kjobwidgets-5.100.0.ebuild
+++ b/kde-frameworks/kjobwidgets/kjobwidgets-5.100.0.ebuild
@@ -8,13 +8,11 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework providing assorted widgets for showing the progress of 
jobs"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
>=dev-qt/qtgui-${QTMIN}:5
@@ -29,6 +27,7 @@ DEPEND="${RDEPEND}
x11-libs/libX11
)
 "
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/kjobwidgets/kjobwidgets-5.99.0.ebuild 
b/kde-frameworks/kjobwidgets/kjobwidgets-5.99.0.ebuild
index bdc74f8a122f..3e980f353a26 100644
--- a/kde-frameworks/kjobwidgets/kjobwidgets-5.99.0.ebuild
+++ b/kde-frameworks/kjobwidgets/kjobwidgets-5.99.0.ebuild
@@ -8,13 +8,11 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework providing assorted widgets for showing the progress of 
jobs"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
>=dev-qt/qtgui-${QTMIN}:5
@@ -29,6 +27,7 @@ DEPEND="${RDEPEND}
x11-libs/libX11
)
 "
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kitemviews/

2022-11-16 Thread Andreas Sturmlechner
commit: 6360f6573de34f6628cf4ad713624406f107fc34
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:25 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6360f657

kde-frameworks/kitemviews: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kitemviews/kitemviews-5.100.0.ebuild | 4 ++--
 kde-frameworks/kitemviews/kitemviews-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kitemviews/kitemviews-5.100.0.ebuild 
b/kde-frameworks/kitemviews/kitemviews-5.100.0.ebuild
index 8d978f4db47f..aad4cee983a7 100644
--- a/kde-frameworks/kitemviews/kitemviews-5.100.0.ebuild
+++ b/kde-frameworks/kitemviews/kitemviews-5.100.0.ebuild
@@ -12,11 +12,11 @@ DESCRIPTION="Framework providing additional widgets for 
item models"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"

diff --git a/kde-frameworks/kitemviews/kitemviews-5.99.0.ebuild 
b/kde-frameworks/kitemviews/kitemviews-5.99.0.ebuild
index 8dd692b7c8aa..a3af92a0c5df 100644
--- a/kde-frameworks/kitemviews/kitemviews-5.99.0.ebuild
+++ b/kde-frameworks/kitemviews/kitemviews-5.99.0.ebuild
@@ -12,11 +12,11 @@ DESCRIPTION="Framework providing additional widgets for 
item models"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kcoreaddons/

2022-11-16 Thread Andreas Sturmlechner
commit: 5ec47c57cbb9c1562f0b5d29e20ec2b2b25d7039
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:03:43 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ec47c57

kde-frameworks/kcoreaddons: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kcoreaddons/kcoreaddons-5.100.0.ebuild | 6 +++---
 kde-frameworks/kcoreaddons/kcoreaddons-5.99.0.ebuild  | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/kde-frameworks/kcoreaddons/kcoreaddons-5.100.0.ebuild 
b/kde-frameworks/kcoreaddons/kcoreaddons-5.100.0.ebuild
index 170ae9a6669d..11aae4285128 100644
--- a/kde-frameworks/kcoreaddons/kcoreaddons-5.100.0.ebuild
+++ b/kde-frameworks/kcoreaddons/kcoreaddons-5.100.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Framework for solving common problems such as 
caching, randomisatio
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="dbus fam nls"
+IUSE="dbus fam"
 
 DEPEND="
>=dev-qt/qtcore-${QTMIN}:5[icu]
@@ -19,9 +19,9 @@ DEPEND="
fam? ( virtual/fam )
 "
 RDEPEND="${DEPEND}
-   nls? ( >=dev-qt/qttranslations-${QTMIN}:5 )
+   >=dev-qt/qttranslations-${QTMIN}:5
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/kcoreaddons/kcoreaddons-5.99.0.ebuild 
b/kde-frameworks/kcoreaddons/kcoreaddons-5.99.0.ebuild
index 22a85495eda6..7a12dfcecec2 100644
--- a/kde-frameworks/kcoreaddons/kcoreaddons-5.99.0.ebuild
+++ b/kde-frameworks/kcoreaddons/kcoreaddons-5.99.0.ebuild
@@ -10,7 +10,7 @@ DESCRIPTION="Framework for solving common problems such as 
caching, randomisatio
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="dbus fam nls"
+IUSE="dbus fam"
 
 DEPEND="
>=dev-qt/qtcore-${QTMIN}:5[icu]
@@ -19,9 +19,9 @@ DEPEND="
fam? ( virtual/fam )
 "
 RDEPEND="${DEPEND}
-   nls? ( >=dev-qt/qttranslations-${QTMIN}:5 )
+   >=dev-qt/qttranslations-${QTMIN}:5
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kglobalaccel/

2022-11-16 Thread Andreas Sturmlechner
commit: cd43046b59cd6d2631d8977c2aa2f0df177bf5cd
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:16 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd43046b

kde-frameworks/kglobalaccel: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kglobalaccel/kglobalaccel-5.100.0.ebuild | 4 ++--
 kde-frameworks/kglobalaccel/kglobalaccel-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kglobalaccel/kglobalaccel-5.100.0.ebuild 
b/kde-frameworks/kglobalaccel/kglobalaccel-5.100.0.ebuild
index 100fac252454..ae9ed1be5f60 100644
--- a/kde-frameworks/kglobalaccel/kglobalaccel-5.100.0.ebuild
+++ b/kde-frameworks/kglobalaccel/kglobalaccel-5.100.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework to handle global shortcuts"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
 REQUIRED_USE="test? ( X )"
 RESTRICT="test" # requires installed instance
@@ -39,7 +39,7 @@ DEPEND="${RDEPEND}
=kde-frameworks/kdeclarative-${PVCUT}*:5
)
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/kglobalaccel/kglobalaccel-5.99.0.ebuild 
b/kde-frameworks/kglobalaccel/kglobalaccel-5.99.0.ebuild
index c88db1d32b66..10cc16c39478 100644
--- a/kde-frameworks/kglobalaccel/kglobalaccel-5.99.0.ebuild
+++ b/kde-frameworks/kglobalaccel/kglobalaccel-5.99.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework to handle global shortcuts"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
 REQUIRED_USE="test? ( X )"
 RESTRICT="test" # requires installed instance
@@ -39,7 +39,7 @@ DEPEND="${RDEPEND}
=kde-frameworks/kdeclarative-${PVCUT}*:5
)
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kconfig/

2022-11-16 Thread Andreas Sturmlechner
commit: dd7b7dc71487060114f6aaf54451cd020d8152c6
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:03:37 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd7b7dc7

kde-frameworks/kconfig: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kconfig/kconfig-5.100.0.ebuild | 4 ++--
 kde-frameworks/kconfig/kconfig-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kconfig/kconfig-5.100.0.ebuild 
b/kde-frameworks/kconfig/kconfig-5.100.0.ebuild
index 879e6a4266d1..e17b870502e3 100644
--- a/kde-frameworks/kconfig/kconfig-5.100.0.ebuild
+++ b/kde-frameworks/kconfig/kconfig-5.100.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Framework for reading and writing configuration"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="dbus nls qml"
+IUSE="dbus qml"
 
 # bug 560086
 RESTRICT="test"
@@ -25,7 +25,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 DOCS=( DESIGN docs/{DESIGN.kconfig,options.md} )
 

diff --git a/kde-frameworks/kconfig/kconfig-5.99.0.ebuild 
b/kde-frameworks/kconfig/kconfig-5.99.0.ebuild
index 85e62c7cf9e4..9e47b573ac06 100644
--- a/kde-frameworks/kconfig/kconfig-5.99.0.ebuild
+++ b/kde-frameworks/kconfig/kconfig-5.99.0.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Framework for reading and writing configuration"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="dbus nls qml"
+IUSE="dbus qml"
 
 # bug 560086
 RESTRICT="test"
@@ -25,7 +25,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 DOCS=( DESIGN docs/{DESIGN.kconfig,options.md} )
 



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kdnssd/

2022-11-16 Thread Andreas Sturmlechner
commit: 7ce9f3c84ab589ed9a6e39c606ea2f96f7a62c7b
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:12 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ce9f3c8

kde-frameworks/kdnssd: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kdnssd/kdnssd-5.100.0.ebuild | 7 +++
 kde-frameworks/kdnssd/kdnssd-5.99.0.ebuild  | 7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/kde-frameworks/kdnssd/kdnssd-5.100.0.ebuild 
b/kde-frameworks/kdnssd/kdnssd-5.100.0.ebuild
index f22dfe5d5b8e..92440fdf9c39 100644
--- a/kde-frameworks/kdnssd/kdnssd-5.100.0.ebuild
+++ b/kde-frameworks/kdnssd/kdnssd-5.100.0.ebuild
@@ -7,13 +7,11 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for network service discovery using Zeroconf"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls zeroconf"
+IUSE="zeroconf"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 DEPEND="
>=dev-qt/qtnetwork-${QTMIN}:5
zeroconf? (
@@ -22,6 +20,7 @@ DEPEND="
)
 "
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/kdnssd/kdnssd-5.99.0.ebuild 
b/kde-frameworks/kdnssd/kdnssd-5.99.0.ebuild
index fba82be2f896..ad65103429e9 100644
--- a/kde-frameworks/kdnssd/kdnssd-5.99.0.ebuild
+++ b/kde-frameworks/kdnssd/kdnssd-5.99.0.ebuild
@@ -7,13 +7,11 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for network service discovery using Zeroconf"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls zeroconf"
+IUSE="zeroconf"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 DEPEND="
>=dev-qt/qtnetwork-${QTMIN}:5
zeroconf? (
@@ -22,6 +20,7 @@ DEPEND="
)
 "
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kcompletion/

2022-11-16 Thread Andreas Sturmlechner
commit: d3a96c170630616b24399700b5fa511086d09c67
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:03:33 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3a96c17

kde-frameworks/kcompletion: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kcompletion/kcompletion-5.100.0.ebuild | 4 ++--
 kde-frameworks/kcompletion/kcompletion-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kcompletion/kcompletion-5.100.0.ebuild 
b/kde-frameworks/kcompletion/kcompletion-5.100.0.ebuild
index c318e0b7fe25..d4f238e39703 100644
--- a/kde-frameworks/kcompletion/kcompletion-5.100.0.ebuild
+++ b/kde-frameworks/kcompletion/kcompletion-5.100.0.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Framework for common completion tasks such as 
filename or URL compl
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
@@ -22,4 +22,4 @@ DEPEND="
=kde-frameworks/kwidgetsaddons-${PVCUT}*:5
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"

diff --git a/kde-frameworks/kcompletion/kcompletion-5.99.0.ebuild 
b/kde-frameworks/kcompletion/kcompletion-5.99.0.ebuild
index 8a5aa5099098..8a51b50f3002 100644
--- a/kde-frameworks/kcompletion/kcompletion-5.99.0.ebuild
+++ b/kde-frameworks/kcompletion/kcompletion-5.99.0.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="Framework for common completion tasks such as 
filename or URL compl
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
@@ -22,4 +22,4 @@ DEPEND="
=kde-frameworks/kwidgetsaddons-${PVCUT}*:5
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kbookmarks/

2022-11-16 Thread Andreas Sturmlechner
commit: d230ba266fbc735643713c15f2f9824031cb2cef
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:03:16 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d230ba26

kde-frameworks/kbookmarks: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kbookmarks/kbookmarks-5.100.0.ebuild | 4 ++--
 kde-frameworks/kbookmarks/kbookmarks-5.99.0.ebuild  | 6 ++
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/kde-frameworks/kbookmarks/kbookmarks-5.100.0.ebuild 
b/kde-frameworks/kbookmarks/kbookmarks-5.100.0.ebuild
index 2658f6a03fdc..bd05a6b5a686 100644
--- a/kde-frameworks/kbookmarks/kbookmarks-5.100.0.ebuild
+++ b/kde-frameworks/kbookmarks/kbookmarks-5.100.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework for managing bookmarks stored in XBEL 
format"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -29,4 +29,4 @@ RDEPEND="
 DEPEND="${RDEPEND}
>=kde-frameworks/kconfigwidgets-${PVCUT}:5
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"

diff --git a/kde-frameworks/kbookmarks/kbookmarks-5.99.0.ebuild 
b/kde-frameworks/kbookmarks/kbookmarks-5.99.0.ebuild
index e2d0a419244e..1e689df28ede 100644
--- a/kde-frameworks/kbookmarks/kbookmarks-5.99.0.ebuild
+++ b/kde-frameworks/kbookmarks/kbookmarks-5.99.0.ebuild
@@ -12,11 +12,8 @@ DESCRIPTION="Framework for managing bookmarks stored in XBEL 
format"
 
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
>=dev-qt/qtgui-${QTMIN}:5
@@ -32,3 +29,4 @@ RDEPEND="
 DEPEND="${RDEPEND}
>=kde-frameworks/kconfigwidgets-${PVCUT}:5
 "
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kcrash/

2022-11-16 Thread Andreas Sturmlechner
commit: 074ad15c605c8ecec49c355e3cc53f1218f07bb9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:03:58 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074ad15c

kde-frameworks/kcrash: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kcrash/kcrash-5.100.0.ebuild | 7 +++
 kde-frameworks/kcrash/kcrash-5.99.0.ebuild  | 7 +++
 2 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/kde-frameworks/kcrash/kcrash-5.100.0.ebuild 
b/kde-frameworks/kcrash/kcrash-5.100.0.ebuild
index bc93f71a3c35..12d72472865c 100644
--- a/kde-frameworks/kcrash/kcrash-5.100.0.ebuild
+++ b/kde-frameworks/kcrash/kcrash-5.100.0.ebuild
@@ -10,9 +10,10 @@ VIRTUALX_REQUIRED="test"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for intercepting and handling application crashes"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
 # requires running Plasma environment
 RESTRICT="test"
@@ -30,9 +31,7 @@ DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 )
 "
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(

diff --git a/kde-frameworks/kcrash/kcrash-5.99.0.ebuild 
b/kde-frameworks/kcrash/kcrash-5.99.0.ebuild
index 0d4af1c3e557..3b3e5882e25f 100644
--- a/kde-frameworks/kcrash/kcrash-5.99.0.ebuild
+++ b/kde-frameworks/kcrash/kcrash-5.99.0.ebuild
@@ -10,9 +10,10 @@ VIRTUALX_REQUIRED="test"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for intercepting and handling application crashes"
+
 LICENSE="LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls X"
+IUSE="X"
 
 # requires running Plasma environment
 RESTRICT="test"
@@ -30,9 +31,7 @@ DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 )
 "
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/karchive/

2022-11-16 Thread Andreas Sturmlechner
commit: fa645a455f0f36aea4317ffa0f1e60874c47596c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:06:58 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa645a45

kde-frameworks/karchive: Add missing BDEPEND

Upstream commit 78d4b9daf306d54de215c1d82b949941a7aab33c

Closes: https://bugs.gentoo.org/881521
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/karchive/karchive-5.100.0.ebuild | 7 ++-
 kde-frameworks/karchive/karchive-5.99.0.ebuild  | 7 ++-
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/karchive/karchive-5.100.0.ebuild 
b/kde-frameworks/karchive/karchive-5.100.0.ebuild
index f1a14d479b54..063fb2b82ea4 100644
--- a/kde-frameworks/karchive/karchive-5.100.0.ebuild
+++ b/kde-frameworks/karchive/karchive-5.100.0.ebuild
@@ -3,9 +3,11 @@
 
 EAPI=8
 
+QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for reading, creation, and manipulation of various 
archive formats"
+
 LICENSE="GPL-2 LGPL-2.1"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="+zstd"
@@ -17,7 +19,10 @@ DEPEND="
zstd? ( app-arch/zstd:= )
 "
 RDEPEND="${DEPEND}"
-BDEPEND="zstd? ( virtual/pkgconfig )"
+BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
+   zstd? ( virtual/pkgconfig )
+"
 
 src_prepare() {
ecm_src_prepare

diff --git a/kde-frameworks/karchive/karchive-5.99.0.ebuild 
b/kde-frameworks/karchive/karchive-5.99.0.ebuild
index 96ac92184dbe..8ac5db693d21 100644
--- a/kde-frameworks/karchive/karchive-5.99.0.ebuild
+++ b/kde-frameworks/karchive/karchive-5.99.0.ebuild
@@ -3,9 +3,11 @@
 
 EAPI=8
 
+QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for reading, creation, and manipulation of various 
archive formats"
+
 LICENSE="GPL-2 LGPL-2.1"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
 IUSE="+zstd"
@@ -17,7 +19,10 @@ DEPEND="
zstd? ( app-arch/zstd:= )
 "
 RDEPEND="${DEPEND}"
-BDEPEND="zstd? ( virtual/pkgconfig )"
+BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
+   zstd? ( virtual/pkgconfig )
+"
 
 src_prepare() {
ecm_src_prepare



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kauth/

2022-11-16 Thread Andreas Sturmlechner
commit: 37ac7facb536013e3258fb5f2b49e9e05a967167
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:16:08 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37ac7fac

kde-frameworks/kauth: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kauth/kauth-5.100.0.ebuild | 4 ++--
 kde-frameworks/kauth/kauth-5.99.0.ebuild  | 7 +++
 2 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/kde-frameworks/kauth/kauth-5.100.0.ebuild 
b/kde-frameworks/kauth/kauth-5.100.0.ebuild
index 6b826142a8cd..bafdda8227c3 100644
--- a/kde-frameworks/kauth/kauth-5.100.0.ebuild
+++ b/kde-frameworks/kauth/kauth-5.100.0.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework to let applications perform actions as 
a privileged user"
 
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls +policykit"
+IUSE="+policykit"
 
 DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -22,7 +22,7 @@ DEPEND="
policykit? ( >=sys-auth/polkit-qt-0.113.0[qt5(+)] )
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 PDEPEND="policykit? ( kde-plasma/polkit-kde-agent )"
 
 src_configure() {

diff --git a/kde-frameworks/kauth/kauth-5.99.0.ebuild 
b/kde-frameworks/kauth/kauth-5.99.0.ebuild
index b8baeea042ac..578b1066dcbc 100644
--- a/kde-frameworks/kauth/kauth-5.99.0.ebuild
+++ b/kde-frameworks/kauth/kauth-5.99.0.ebuild
@@ -9,13 +9,11 @@ VIRTUALX_REQUIRED="test"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework to let applications perform actions as a privileged 
user"
+
 LICENSE="LGPL-2.1+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls +policykit"
+IUSE=" +policykit"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
>=dev-qt/qtgui-${QTMIN}:5
@@ -24,6 +22,7 @@ DEPEND="
policykit? ( >=sys-auth/polkit-qt-0.113.0 )
 "
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 PDEPEND="policykit? ( kde-plasma/polkit-kde-agent )"
 
 src_configure() {



[gentoo-commits] repo/gentoo:master commit in: kde-frameworks/kcodecs/

2022-11-16 Thread Andreas Sturmlechner
commit: 5bfee86872764690bc0509394ed9cde4c623b695
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:03:28 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:32:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bfee868

kde-frameworks/kcodecs: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kcodecs/kcodecs-5.100.0.ebuild | 4 ++--
 kde-frameworks/kcodecs/kcodecs-5.99.0.ebuild  | 4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kcodecs/kcodecs-5.100.0.ebuild 
b/kde-frameworks/kcodecs/kcodecs-5.100.0.ebuild
index 9cf40af65ff1..ccf01d1a2fbe 100644
--- a/kde-frameworks/kcodecs/kcodecs-5.100.0.ebuild
+++ b/kde-frameworks/kcodecs/kcodecs-5.100.0.ebuild
@@ -9,9 +9,9 @@ inherit ecm frameworks.kde.org
 DESCRIPTION="Framework for manipulating strings using various encodings"
 LICENSE="GPL-2+ LGPL-2+"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
dev-util/gperf
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
 "

diff --git a/kde-frameworks/kcodecs/kcodecs-5.99.0.ebuild 
b/kde-frameworks/kcodecs/kcodecs-5.99.0.ebuild
index 65fd66cce743..e6506b310d4b 100644
--- a/kde-frameworks/kcodecs/kcodecs-5.99.0.ebuild
+++ b/kde-frameworks/kcodecs/kcodecs-5.99.0.ebuild
@@ -9,9 +9,9 @@ inherit ecm frameworks.kde.org
 DESCRIPTION="Framework for manipulating strings using various encodings"
 LICENSE="GPL-2+ LGPL-2+"
 KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc64 ~riscv ~x86"
-IUSE="nls"
+IUSE=""
 
 BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
dev-util/gperf
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
 "



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

2022-11-16 Thread Mike Gilbert
commit: 4fe6adeaaa100dbc541e3f5e386799888c715de4
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:20:43 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Nov 16 21:20:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fe6adea

www-client/google-chrome-beta: automated update (108.0.5359.48)

Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-beta/Manifest  | 2 +-
 ...eta-108.0.5359.40.ebuild => google-chrome-beta-108.0.5359.48.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-beta/Manifest 
b/www-client/google-chrome-beta/Manifest
index 7215f3f932d5..2e4228b1561c 100644
--- a/www-client/google-chrome-beta/Manifest
+++ b/www-client/google-chrome-beta/Manifest
@@ -1 +1 @@
-DIST google-chrome-beta_108.0.5359.40-1_amd64.deb 93047508 BLAKE2B 
492598ccf749152c5a3bb901ac274bb519697989012d3214c07eeb455dca25937a5df0c3993511e8108ea9e6e9a0efda039be01e8f66a303332091c417819f03
 SHA512 
0c66cb74a8f15e19291756d273bdacb1402146cce1f09ac7c760d1339b16bd84f73238e293c6e73defa81388858dc07dd694e302f41660e509dc9cd9ac6bd4ba
+DIST google-chrome-beta_108.0.5359.48-1_amd64.deb 93088268 BLAKE2B 
9867015c40a86d811c42c32b43e8b83c89ce3522a683e8a9fde04e14477fe5a9a0a5437e1ab44716c500795307751a4fd65e671b27f3d76896c25297a5cc3e23
 SHA512 
2ecd208a84296c9f03fcef46841dc3df8b4e4ded7ca9cc73dfeea1c64a684f11ded88a1e35fa3d7adb6833ff7fb7ce2a8684a3eeefd7b42293494c3ca204a550

diff --git 
a/www-client/google-chrome-beta/google-chrome-beta-108.0.5359.40.ebuild 
b/www-client/google-chrome-beta/google-chrome-beta-108.0.5359.48.ebuild
similarity index 100%
rename from 
www-client/google-chrome-beta/google-chrome-beta-108.0.5359.40.ebuild
rename to www-client/google-chrome-beta/google-chrome-beta-108.0.5359.48.ebuild



[gentoo-commits] repo/gentoo:master commit in: www-client/google-chrome-unstable/

2022-11-16 Thread Mike Gilbert
commit: ae49b48833d369d63266dc82b342f46a6b06dea9
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:21:04 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Nov 16 21:21:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae49b488

www-client/google-chrome-unstable: automated update (109.0.5410.0)

Signed-off-by: Mike Gilbert  gentoo.org>

 www-client/google-chrome-unstable/Manifest  | 2 +-
 ...e-109.0.5396.2.ebuild => google-chrome-unstable-109.0.5410.0.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/google-chrome-unstable/Manifest 
b/www-client/google-chrome-unstable/Manifest
index e44319a1789c..d1f38bc99691 100644
--- a/www-client/google-chrome-unstable/Manifest
+++ b/www-client/google-chrome-unstable/Manifest
@@ -1 +1 @@
-DIST google-chrome-unstable_109.0.5396.2-1_amd64.deb 93730984 BLAKE2B 
11630c22b483dd57cd1903e7b89dfd367a04b6bf3ac294d411b518d110e029fadd43e76a4502aff217fb1b29d9a755f57c19af06ea50a56e2784c3c45047c63b
 SHA512 
af3462b332aca05a6fb07285893ebd269a8f4cd58571cb7d9dd7d55ceaf117e07c5bdc63a43ad79165a6c3e7fa831a08ab298eb5cbca477cff2b902cde6b3d5b
+DIST google-chrome-unstable_109.0.5410.0-1_amd64.deb 92949656 BLAKE2B 
60e136b595ef258e9c1919a240985aa5c4b96be9984ba3eff8ae184fe1da12b5f2dd20e4941ea2db2201231d84e06d9c6c66ef6629cd42be39d81ff3848c3f74
 SHA512 
fd06599cf3bb71dd0ee8dc7b91390a314dded7002a07e7ec3e90c6f31cc6c9b8a45bff6afabf18dd5307585e9e526262745a9b2276b8b242e2218eeada13bc47

diff --git 
a/www-client/google-chrome-unstable/google-chrome-unstable-109.0.5396.2.ebuild 
b/www-client/google-chrome-unstable/google-chrome-unstable-109.0.5410.0.ebuild
similarity index 100%
rename from 
www-client/google-chrome-unstable/google-chrome-unstable-109.0.5396.2.ebuild
rename to 
www-client/google-chrome-unstable/google-chrome-unstable-109.0.5410.0.ebuild



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

2022-11-16 Thread Mike Gilbert
commit: 76174f08100284b98717c22edf48473e694f941b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:21:10 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Nov 16 21:21:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76174f08

www-plugins/chrome-binary-plugins: automated update (109.0.5410.0_alpha)

Signed-off-by: Mike Gilbert  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...6.2_alpha.ebuild => chrome-binary-plugins-109.0.5410.0_alpha.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 a8caf67f80fd..b670676340a4 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
 DIST google-chrome-beta_108.0.5359.48-1_amd64.deb 93088268 BLAKE2B 
9867015c40a86d811c42c32b43e8b83c89ce3522a683e8a9fde04e14477fe5a9a0a5437e1ab44716c500795307751a4fd65e671b27f3d76896c25297a5cc3e23
 SHA512 
2ecd208a84296c9f03fcef46841dc3df8b4e4ded7ca9cc73dfeea1c64a684f11ded88a1e35fa3d7adb6833ff7fb7ce2a8684a3eeefd7b42293494c3ca204a550
 DIST google-chrome-stable_107.0.5304.110-1_amd64.deb 93320612 BLAKE2B 
60c2edfd76e322d6c494d7d0b1135b01bd20bfd14430cc9489c2a9e2f455bc008fadb619cb8970ea5a145e5d1e71479f7fcfbf699a260df70f7496524e103431
 SHA512 
34bd64d5136522240f34aab8ba4de7cfaa51c856a80d2c443cf1b732422cd9a87a0df09e7e018d5b3149cd1d2e8603f1d67ddb7ee6a90bc4786dff3cfccef70b
-DIST google-chrome-unstable_109.0.5396.2-1_amd64.deb 93730984 BLAKE2B 
11630c22b483dd57cd1903e7b89dfd367a04b6bf3ac294d411b518d110e029fadd43e76a4502aff217fb1b29d9a755f57c19af06ea50a56e2784c3c45047c63b
 SHA512 
af3462b332aca05a6fb07285893ebd269a8f4cd58571cb7d9dd7d55ceaf117e07c5bdc63a43ad79165a6c3e7fa831a08ab298eb5cbca477cff2b902cde6b3d5b
+DIST google-chrome-unstable_109.0.5410.0-1_amd64.deb 92949656 BLAKE2B 
60e136b595ef258e9c1919a240985aa5c4b96be9984ba3eff8ae184fe1da12b5f2dd20e4941ea2db2201231d84e06d9c6c66ef6629cd42be39d81ff3848c3f74
 SHA512 
fd06599cf3bb71dd0ee8dc7b91390a314dded7002a07e7ec3e90c6f31cc6c9b8a45bff6afabf18dd5307585e9e526262745a9b2276b8b242e2218eeada13bc47

diff --git 
a/www-plugins/chrome-binary-plugins/chrome-binary-plugins-109.0.5396.2_alpha.ebuild
 
b/www-plugins/chrome-binary-plugins/chrome-binary-plugins-109.0.5410.0_alpha.ebuild
similarity index 100%
rename from 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-109.0.5396.2_alpha.ebuild
rename to 
www-plugins/chrome-binary-plugins/chrome-binary-plugins-109.0.5410.0_alpha.ebuild



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

2022-11-16 Thread Mike Gilbert
commit: 613de5a755b25f0ddadb310eba9ba6b9dd19ee22
Author: Mike Gilbert  gentoo  org>
AuthorDate: Wed Nov 16 21:20:52 2022 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Wed Nov 16 21:20:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=613de5a7

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

Signed-off-by: Mike Gilbert  gentoo.org>

 www-plugins/chrome-binary-plugins/Manifest  | 2 +-
 ...9.40_beta.ebuild => chrome-binary-plugins-108.0.5359.48_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 e1f4346a9d68..a8caf67f80fd 100644
--- a/www-plugins/chrome-binary-plugins/Manifest
+++ b/www-plugins/chrome-binary-plugins/Manifest
@@ -1,3 +1,3 @@
-DIST google-chrome-beta_108.0.5359.40-1_amd64.deb 93047508 BLAKE2B 
492598ccf749152c5a3bb901ac274bb519697989012d3214c07eeb455dca25937a5df0c3993511e8108ea9e6e9a0efda039be01e8f66a303332091c417819f03
 SHA512 
0c66cb74a8f15e19291756d273bdacb1402146cce1f09ac7c760d1339b16bd84f73238e293c6e73defa81388858dc07dd694e302f41660e509dc9cd9ac6bd4ba
+DIST google-chrome-beta_108.0.5359.48-1_amd64.deb 93088268 BLAKE2B 
9867015c40a86d811c42c32b43e8b83c89ce3522a683e8a9fde04e14477fe5a9a0a5437e1ab44716c500795307751a4fd65e671b27f3d76896c25297a5cc3e23
 SHA512 
2ecd208a84296c9f03fcef46841dc3df8b4e4ded7ca9cc73dfeea1c64a684f11ded88a1e35fa3d7adb6833ff7fb7ce2a8684a3eeefd7b42293494c3ca204a550
 DIST google-chrome-stable_107.0.5304.110-1_amd64.deb 93320612 BLAKE2B 
60c2edfd76e322d6c494d7d0b1135b01bd20bfd14430cc9489c2a9e2f455bc008fadb619cb8970ea5a145e5d1e71479f7fcfbf699a260df70f7496524e103431
 SHA512 
34bd64d5136522240f34aab8ba4de7cfaa51c856a80d2c443cf1b732422cd9a87a0df09e7e018d5b3149cd1d2e8603f1d67ddb7ee6a90bc4786dff3cfccef70b
 DIST google-chrome-unstable_109.0.5396.2-1_amd64.deb 93730984 BLAKE2B 
11630c22b483dd57cd1903e7b89dfd367a04b6bf3ac294d411b518d110e029fadd43e76a4502aff217fb1b29d9a755f57c19af06ea50a56e2784c3c45047c63b
 SHA512 
af3462b332aca05a6fb07285893ebd269a8f4cd58571cb7d9dd7d55ceaf117e07c5bdc63a43ad79165a6c3e7fa831a08ab298eb5cbca477cff2b902cde6b3d5b

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



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

2022-11-16 Thread Matt Turner
commit: 1445b792e6754df60fc47a914b84576331a217be
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Nov 16 20:11:12 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Nov 16 21:17:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1445b792

net-libs/dleyna: Drop keywords

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

 net-libs/dleyna/dleyna-0.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/dleyna/dleyna-0.8.1.ebuild 
b/net-libs/dleyna/dleyna-0.8.1.ebuild
index 215ae41f05bc..a9da0994691e 100644
--- a/net-libs/dleyna/dleyna-0.8.1.ebuild
+++ b/net-libs/dleyna/dleyna-0.8.1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://gitlab.gnome.org/World/dLeyna/-/archive/v${PV}/dLeyna-v${PV}.ta
 
 LICENSE="LGPL-2.1"
 SLOT="1.0/6" # soname of libdleyna-core-1.0.so
-KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
+KEYWORDS="~amd64"
 
 RDEPEND="
>=dev-libs/glib-2.28:2



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

2022-11-16 Thread Matt Turner
commit: 334b10121985192a8685456fa01fabcd0a2a0a7e
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Nov 16 18:55:17 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Nov 16 21:17:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=334b1012

dev-util/gnome-builder: Drop x86 keywords

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

 dev-util/gnome-builder/gnome-builder-42.1.ebuild | 2 +-
 dev-util/gnome-builder/gnome-builder-43.2.ebuild | 2 +-
 dev-util/gnome-builder/gnome-builder-43.3.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/dev-util/gnome-builder/gnome-builder-42.1.ebuild 
b/dev-util/gnome-builder/gnome-builder-42.1.ebuild
index d2c22a74b016..2de7aa0f466d 100644
--- a/dev-util/gnome-builder/gnome-builder-42.1.ebuild
+++ b/dev-util/gnome-builder/gnome-builder-42.1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Builder 
https://gitlab.gnome.org/GNOME/gno
 # FIXME: Review licenses at some point
 LICENSE="GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0"
 SLOT="0"
-KEYWORDS="amd64 x86"
+KEYWORDS="amd64"
 IUSE="clang +devhelp doc flatpak +git +glade gtk-doc spell +sysprof test 
+webkit"
 REQUIRED_USE="
${PYTHON_REQUIRED_USE}

diff --git a/dev-util/gnome-builder/gnome-builder-43.2.ebuild 
b/dev-util/gnome-builder/gnome-builder-43.2.ebuild
index 93eb5643b264..d2082c62d4c0 100644
--- a/dev-util/gnome-builder/gnome-builder-43.2.ebuild
+++ b/dev-util/gnome-builder/gnome-builder-43.2.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Builder 
https://gitlab.gnome.org/GNOME/gno
 # FIXME: Review licenses at some point
 LICENSE="GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 IUSE="clang doc +d-spy flatpak +git gtk-doc spell +sysprof test +webkit"
 REQUIRED_USE="
${PYTHON_REQUIRED_USE}

diff --git a/dev-util/gnome-builder/gnome-builder-43.3.ebuild 
b/dev-util/gnome-builder/gnome-builder-43.3.ebuild
index f776af525b22..5dee6c02e24e 100644
--- a/dev-util/gnome-builder/gnome-builder-43.3.ebuild
+++ b/dev-util/gnome-builder/gnome-builder-43.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Builder 
https://gitlab.gnome.org/GNOME/gno
 # FIXME: Review licenses at some point
 LICENSE="GPL-3+ GPL-2+ LGPL-3+ LGPL-2+ MIT CC-BY-SA-3.0 CC0-1.0"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 IUSE="clang doc +d-spy flatpak +git gtk-doc spell +sysprof test +webkit"
 REQUIRED_USE="
${PYTHON_REQUIRED_USE}



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

2022-11-16 Thread Matt Turner
commit: f8b9a08d3ffe40c4a755e6407e16c3936d6f8889
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Nov 16 20:45:32 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Wed Nov 16 21:17:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8b9a08d

net-libs/dleyna: Drop old versions

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

 net-libs/dleyna/Manifest|  1 -
 net-libs/dleyna/dleyna-0.8.0.ebuild | 50 -
 2 files changed, 51 deletions(-)

diff --git a/net-libs/dleyna/Manifest b/net-libs/dleyna/Manifest
index 38685b4c8180..ce9605a2d526 100644
--- a/net-libs/dleyna/Manifest
+++ b/net-libs/dleyna/Manifest
@@ -1,2 +1 @@
-DIST dLeyna-v0.8.0.tar.bz2 146281 BLAKE2B 
89fc24ed4dcc19b35f317c4760c82877dd829b144cc7f466a0ed22274131238f1058f0aeb53f56639802d808f06028ed9026115002f32d48ef493ff3a986f53f
 SHA512 
f5f78cd5edf40550ea25ae408a910d7d9bbffb4d03539d2e6ee037204761e424f54a15e6da2083f3d4782728509ae58558e709cd7f6074a327dbcf2b5c677d6d
 DIST dLeyna-v0.8.1.tar.bz2 146410 BLAKE2B 
a26ebc01df4a8d5cefeb91e06605d4dffe6beebd6df650e9425048b787edb7dd144399fd66916dee360bc6bb3cf1071e24464ec52d0cdce36e5440272e41
 SHA512 
9b93ddb0b1a7a29d99da875aba1ae0e3e9c61d003353e4705cbf4274449af6c4ca454e68fe4d618749b7ff7cd215ad3361b07575494dadd8be34c589b8e48641

diff --git a/net-libs/dleyna/dleyna-0.8.0.ebuild 
b/net-libs/dleyna/dleyna-0.8.0.ebuild
deleted file mode 100644
index 43c3563b859d..
--- a/net-libs/dleyna/dleyna-0.8.0.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="A set of services and D-Bus APIs to simplify access to UPnP/DLNA 
media devices"
-HOMEPAGE="https://gitlab.gnome.org/World/dLeyna;
-SRC_URI="https://gitlab.gnome.org/World/dLeyna/-/archive/v${PV}/dLeyna-v${PV}.tar.bz2;
-
-LICENSE="LGPL-2.1"
-SLOT="1.0/6" # soname of libdleyna-core-1.0.so
-KEYWORDS="amd64 ~arm64 ~riscv x86"
-
-RDEPEND="
-   >=dev-libs/glib-2.28:2
-   >=net-libs/gssdp-1.6.0:1.6=
-   >=net-libs/gupnp-1.6.0:1.6=
-   >=net-libs/gupnp-av-0.12.9:0=
-   >=media-libs/gupnp-dlna-0.9.4:2.0=
-   >=net-libs/libsoup-3.0:3.0
-   dev-libs/libxml2
-
-   !net-libs/dleyna-connector-dbus
-   !net-libs/dleyna-core
-   !net-libs/dleyna-renderer
-   !net-misc/dleyna-server
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-python/docutils
-   virtual/pkgconfig
-"
-
-S="${WORKDIR}"/dLeyna-v${PV}
-
-src_prepare() {
-   default
-   sed -i -e "s/'rst2man'/'rst2man', 'rst2man.py'/g" doc/meson.build || die
-}
-
-src_configure() {
-   local emesonargs=(
-   -Ddbus_service_dir="${EPREFIX}/usr/share/dbus-1/services"
-   -Dman_pages=true
-   -Ddocs=false
-   )
-   meson_src_configure
-}



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

2022-11-16 Thread Andreas Sturmlechner
commit: 11cc672c39a710b324289a6819e3b3d0d7f7f859
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:05:02 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:05:02 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=11cc672c

kde-frameworks/syntax-highlighting: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/syntax-highlighting/syntax-highlighting-.ebuild | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/syntax-highlighting/syntax-highlighting-.ebuild 
b/kde-frameworks/syntax-highlighting/syntax-highlighting-.ebuild
index d73553c08c..19b431cc9d 100644
--- a/kde-frameworks/syntax-highlighting/syntax-highlighting-.ebuild
+++ b/kde-frameworks/syntax-highlighting/syntax-highlighting-.ebuild
@@ -8,9 +8,10 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for syntax highlighting"
+
 LICENSE="MIT"
 KEYWORDS=""
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtdeclarative-${QTMIN}:5
@@ -21,7 +22,7 @@ DEPEND="
 RDEPEND="${DEPEND}"
 BDEPEND="
dev-lang/perl
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
+   >=dev-qt/linguist-tools-${QTMIN}:5
 "
 
 src_install() {



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

2022-11-16 Thread Andreas Sturmlechner
commit: 0975d942c757b172afe97eed75c585b88c36cce9
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:06:58 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:06:58 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=0975d942

kde-frameworks/karchive: Add missing BDEPEND

Upstream commit 78d4b9daf306d54de215c1d82b949941a7aab33c

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

 kde-frameworks/karchive/karchive-.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/kde-frameworks/karchive/karchive-.ebuild 
b/kde-frameworks/karchive/karchive-.ebuild
index 4c107ae0a7..302aa80b03 100644
--- a/kde-frameworks/karchive/karchive-.ebuild
+++ b/kde-frameworks/karchive/karchive-.ebuild
@@ -3,9 +3,11 @@
 
 EAPI=8
 
+QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for reading, creation, and manipulation of various 
archive formats"
+
 LICENSE="GPL-2 LGPL-2.1"
 KEYWORDS=""
 IUSE="+zstd"
@@ -17,7 +19,10 @@ DEPEND="
zstd? ( app-arch/zstd:= )
 "
 RDEPEND="${DEPEND}"
-BDEPEND="zstd? ( virtual/pkgconfig )"
+BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
+   zstd? ( virtual/pkgconfig )
+"
 
 src_prepare() {
ecm_src_prepare



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

2022-11-16 Thread Andreas Sturmlechner
commit: d8208a96c20dd8d6100f767052cf9a44e94e7139
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:47 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:04:47 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=d8208a96

kde-frameworks/kwindowsystem: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kwindowsystem/kwindowsystem-.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kwindowsystem/kwindowsystem-.ebuild 
b/kde-frameworks/kwindowsystem/kwindowsystem-.ebuild
index 39ce4fdbf8..e81605d171 100644
--- a/kde-frameworks/kwindowsystem/kwindowsystem-.ebuild
+++ b/kde-frameworks/kwindowsystem/kwindowsystem-.ebuild
@@ -8,9 +8,10 @@ VIRTUALX_REQUIRED="test"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework providing access to properties and features of the 
window manager"
+
 LICENSE="|| ( LGPL-2.1 LGPL-3 ) MIT"
 KEYWORDS=""
-IUSE="nls X"
+IUSE="X"
 
 RESTRICT="test"
 
@@ -28,9 +29,7 @@ DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
test? ( >=dev-qt/qtwidgets-${QTMIN}:5 )
 "
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 DOCS=( docs/README.kstartupinfo )
 



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

2022-11-16 Thread Andreas Sturmlechner
commit: 18e5122d31d9dd52c249515e207d8ff05622963a
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:56 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:04:56 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=18e5122d

kde-frameworks/sonnet: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/sonnet/sonnet-.ebuild | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/sonnet/sonnet-.ebuild 
b/kde-frameworks/sonnet/sonnet-.ebuild
index 005a7e4d80..0a31ed5e41 100644
--- a/kde-frameworks/sonnet/sonnet-.ebuild
+++ b/kde-frameworks/sonnet/sonnet-.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework for providing spell-checking through 
abstraction of popul
 
 LICENSE="LGPL-2+ LGPL-2.1+"
 KEYWORDS=""
-IUSE="aspell +hunspell nls qml"
+IUSE="aspell +hunspell qml"
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
@@ -22,9 +22,7 @@ DEPEND="
qml? ( >=dev-qt/qtdeclarative-${QTMIN}:5 )
 "
 RDEPEND="${DEPEND}"
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



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

2022-11-16 Thread Andreas Sturmlechner
commit: b10afc36287731805377cd6c40a1acd84ed910a2
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:38 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:04:38 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=b10afc36

kde-frameworks/kwidgetsaddons: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kwidgetsaddons/kwidgetsaddons-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/kwidgetsaddons/kwidgetsaddons-.ebuild 
b/kde-frameworks/kwidgetsaddons/kwidgetsaddons-.ebuild
index 31a7fd9b79..d51baafbcb 100644
--- a/kde-frameworks/kwidgetsaddons/kwidgetsaddons-.ebuild
+++ b/kde-frameworks/kwidgetsaddons/kwidgetsaddons-.ebuild
@@ -12,14 +12,14 @@ DESCRIPTION="An assortment of high-level widgets for common 
tasks"
 
 LICENSE="LGPL-2.1+"
 KEYWORDS=""
-IUSE="nls"
+IUSE=""
 
 DEPEND="
>=dev-qt/qtgui-${QTMIN}:5
>=dev-qt/qtwidgets-${QTMIN}:5
 "
 RDEPEND="${DEPEND}"
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_test() {
# bug 650216, 653186, 697866, 808216



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

2022-11-16 Thread Andreas Sturmlechner
commit: f9bfa6a6cc8b544b699b4ce7667c91a6ba0edefb
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:34 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:04:34 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=f9bfa6a6

kde-frameworks/knotifications: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/knotifications/knotifications-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/knotifications/knotifications-.ebuild 
b/kde-frameworks/knotifications/knotifications-.ebuild
index 168e524bd4..98ba502280 100644
--- a/kde-frameworks/knotifications/knotifications-.ebuild
+++ b/kde-frameworks/knotifications/knotifications-.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Framework for notifying the user of an event"
 
 LICENSE="LGPL-2.1+"
 KEYWORDS=""
-IUSE="dbus nls phonon qml speech X"
+IUSE="dbus phonon qml speech X"
 
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -35,7 +35,7 @@ RDEPEND="
 DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
 "
-BDEPEND="nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



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

2022-11-16 Thread Andreas Sturmlechner
commit: e7e253c66809494bcfc608bb48dada711cd0b88c
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:52 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:04:52 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=e7e253c6

kde-frameworks/solid: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/solid/solid-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/kde-frameworks/solid/solid-.ebuild 
b/kde-frameworks/solid/solid-.ebuild
index dcf4fcac34..2a0c836984 100644
--- a/kde-frameworks/solid/solid-.ebuild
+++ b/kde-frameworks/solid/solid-.ebuild
@@ -11,7 +11,7 @@ DESCRIPTION="Provider for platform independent hardware 
discovery, abstraction a
 
 LICENSE="LGPL-2.1+"
 KEYWORDS=""
-IUSE="ios nls"
+IUSE="ios"
 
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
@@ -30,9 +30,9 @@ DEPEND="${RDEPEND}
test? ( >=dev-qt/qtconcurrent-${QTMIN}:5 )
 "
 BDEPEND="
+   >=dev-qt/linguist-tools-${QTMIN}:5
sys-devel/bison
sys-devel/flex
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
 "
 
 src_configure() {



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

2022-11-16 Thread Andreas Sturmlechner
commit: fa3c61e0b4f425cb9a76613163a0cfdaa0a8f5f0
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:03 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:04:03 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=fa3c61e0

kde-frameworks/kdbusaddons: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kdbusaddons/kdbusaddons-.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild 
b/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild
index 83e73b29ac..e39692257b 100644
--- a/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild
+++ b/kde-frameworks/kdbusaddons/kdbusaddons-.ebuild
@@ -8,18 +8,17 @@ VIRTUALDBUS_TEST="true"
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework for registering services and applications per 
freedesktop standards"
+
 LICENSE="LGPL-2+"
 KEYWORDS=""
-IUSE="nls X"
+IUSE="X"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 DEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
X? ( >=dev-qt/qtx11extras-${QTMIN}:5 )
 "
 RDEPEND="${DEPEND}"
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



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

2022-11-16 Thread Andreas Sturmlechner
commit: 54c3cff1fda298cc5d0fd963319150849d79718f
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Wed Nov 16 21:04:29 2022 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Wed Nov 16 21:04:29 2022 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=54c3cff1

kde-frameworks/kjobwidgets: Drop IUSE nls

It is non-optional.

Signed-off-by: Andreas Sturmlechner  gentoo.org>

 kde-frameworks/kjobwidgets/kjobwidgets-.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/kde-frameworks/kjobwidgets/kjobwidgets-.ebuild 
b/kde-frameworks/kjobwidgets/kjobwidgets-.ebuild
index 3255d625bf..2441725af6 100644
--- a/kde-frameworks/kjobwidgets/kjobwidgets-.ebuild
+++ b/kde-frameworks/kjobwidgets/kjobwidgets-.ebuild
@@ -8,13 +8,11 @@ QTMIN=5.15.5
 inherit ecm frameworks.kde.org
 
 DESCRIPTION="Framework providing assorted widgets for showing the progress of 
jobs"
+
 LICENSE="LGPL-2+"
 KEYWORDS=""
-IUSE="nls X"
+IUSE="X"
 
-BDEPEND="
-   nls? ( >=dev-qt/linguist-tools-${QTMIN}:5 )
-"
 RDEPEND="
>=dev-qt/qtdbus-${QTMIN}:5
>=dev-qt/qtgui-${QTMIN}:5
@@ -29,6 +27,7 @@ DEPEND="${RDEPEND}
x11-libs/libX11
)
 "
+BDEPEND=">=dev-qt/linguist-tools-${QTMIN}:5"
 
 src_configure() {
local mycmakeargs=(



  1   2   3   4   5   >