[gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-vkcapture/

2023-06-07 Thread Kostadin Shishmanov
commit: fbaf3b07f2be518bcc583779853144758c4545a0
Author: Kostadin Shishmanov  tutanota  com>
AuthorDate: Thu Jun  8 05:43:40 2023 +
Commit: Kostadin Shishmanov  tutanota  com>
CommitDate: Thu Jun  8 05:43:40 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fbaf3b07

media-video/obs-vkcapture: add 1.3.3, enable multilib, update EAPI 7 -> 8

Signed-off-by: Kostadin Shishmanov  tutanota.com>

 media-video/obs-vkcapture/Manifest |  1 +
 .../obs-vkcapture/obs-vkcapture-1.3.3.ebuild   | 61 ++
 2 files changed, 62 insertions(+)

diff --git a/media-video/obs-vkcapture/Manifest 
b/media-video/obs-vkcapture/Manifest
index ab4aa17f7..6ce2f0c52 100644
--- a/media-video/obs-vkcapture/Manifest
+++ b/media-video/obs-vkcapture/Manifest
@@ -1,3 +1,4 @@
 DIST obs-vkcapture-1.1.3.tar.gz 51200 BLAKE2B 
6a14f6c891bb0e2da5b879945e64f54c588577b4acb90af61c55dd9d060f5b5d26ef34f0179f6930b5782907523da47cc69597fee11829e371db070537c6dc91
 SHA512 
34bc8c6bd1b6f21717b60070240c462310d7666867fda638b2294c0e0b58e8e87a3e45cd2bf974d7853dc86daf5387f1ebf66896a02b7867f24ad72b63fe0ade
 DIST obs-vkcapture-1.1.4.tar.gz 51529 BLAKE2B 
a33f31b22c76ecf728864f951a03f30d225c792e97e5fe61a9d1a19e1307b1bb656ad58525f65428462bd8f00a238d7b89fe067355c2ae59787e72d83f9705ce
 SHA512 
5075d1fa49fa0ba27b26f76b5e4a8295d9bafec89ed73fec26ee473e1e53fbb17c6c2ad62dfd7cf57d57e3eb9a15594bab94a7f431ebfcb52b2946b26570f57c
 DIST obs-vkcapture-1.2.0.tar.gz 51934 BLAKE2B 
0b80cf2850f056ce9f3f0e8165fef893bfad0648a4366cebcdbeecb98e7df491e5078247d97ac0ba0dd88cbf1db6278aed3f9e282595392c55340b31bb45c2a4
 SHA512 
e30aeb24af467a9f8a343985b77ea5cd4e39fdcdec067f3c65f7dd9b8915a933bff1ee5127e4a7a4eaa0e740f97f31af669cb5a75155bbd9937d694d739a6d7d
+DIST obs-vkcapture-1.3.3.tar.gz 53301 BLAKE2B 
bfa51f847978d2abc1393e92aaf6a54ef48781778651652808449546f5ae043514d4798d75fc58a991eec7a0bb5d0e0e09efee9a2df049682f5714261f6e5f46
 SHA512 
d4d234eff53ff9d0e53e6478b378fce8376b22dc4088c1366e194eeb826db5f24f5c3ce26925423e29f4979ef2b0c081ed69d208a8af27810636a2c9538e98e7

diff --git a/media-video/obs-vkcapture/obs-vkcapture-1.3.3.ebuild 
b/media-video/obs-vkcapture/obs-vkcapture-1.3.3.ebuild
new file mode 100644
index 0..685b7e336
--- /dev/null
+++ b/media-video/obs-vkcapture/obs-vkcapture-1.3.3.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
+
+inherit xdg cmake-multilib
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/nowrep/obs-vkcapture;
+else
+   
SRC_URI="https://github.com/nowrep/obs-vkcapture/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="OBS Linux Vulkan/OpenGL game capture"
+HOMEPAGE="https://github.com/nowrep/obs-vkcapture;
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+BDEPEND="
+   dev-util/vulkan-headers
+   media-libs/shaderc
+   media-libs/vulkan-loader[${MULTILIB_USEDEP}]
+   >=media-video/obs-studio-27[wayland]
+   x11-libs/libdrm[${MULTILIB_USEDEP}]
+"
+RDEPEND="
+   media-libs/libglvnd[${MULTILIB_USEDEP}]
+   >=media-video/obs-studio-27[wayland]
+   x11-libs/libdrm[${MULTILIB_USEDEP}]
+   x11-libs/libxcb:=[${MULTILIB_USEDEP}]
+"
+
+QA_SONAME="
+   /usr/lib64/libVkLayer_obs_vkcapture.so
+   /usr/lib64/libobs_glcapture.so
+   /usr/lib/libVkLayer_obs_vkcapture.so
+   /usr/lib/libobs_glcapture.so
+"
+
+src_unpack() {
+   default
+
+   if [[ ${PV} ==  ]]; then
+   git-r3_src_unpack
+   fi
+}
+
+multilib_src_configure() {
+if ! multilib_is_native_abi; then
+   local mycmakeargs+=(
+   -DBUILD_PLUGIN=OFF
+   )
+fi
+   cmake_src_configure
+}



[gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-vkcapture/

2023-06-07 Thread Kostadin Shishmanov
commit: 3f2596da8b0008abaad4fd03d96d05e1334dbf87
Author: Kostadin Shishmanov  tutanota  com>
AuthorDate: Thu Jun  8 05:45:46 2023 +
Commit: Kostadin Shishmanov  tutanota  com>
CommitDate: Thu Jun  8 05:45:46 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3f2596da

media-video/obs-vkcapture-: enable multilib, update EAPI 7 -> 8

Signed-off-by: Kostadin Shishmanov  tutanota.com>

 .../obs-vkcapture/obs-vkcapture-.ebuild| 25 --
 1 file changed, 18 insertions(+), 7 deletions(-)

diff --git a/media-video/obs-vkcapture/obs-vkcapture-.ebuild 
b/media-video/obs-vkcapture/obs-vkcapture-.ebuild
index 7c3049cab..685b7e336 100644
--- a/media-video/obs-vkcapture/obs-vkcapture-.ebuild
+++ b/media-video/obs-vkcapture/obs-vkcapture-.ebuild
@@ -1,11 +1,11 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
 
-inherit xdg cmake
+inherit xdg cmake-multilib
 
 if [[ ${PV} ==  ]]; then
inherit git-r3
@@ -25,20 +25,22 @@ IUSE=""
 BDEPEND="
dev-util/vulkan-headers
media-libs/shaderc
-   media-libs/vulkan-loader
+   media-libs/vulkan-loader[${MULTILIB_USEDEP}]
>=media-video/obs-studio-27[wayland]
-   x11-libs/libdrm
+   x11-libs/libdrm[${MULTILIB_USEDEP}]
 "
 RDEPEND="
-   media-libs/libglvnd
+   media-libs/libglvnd[${MULTILIB_USEDEP}]
>=media-video/obs-studio-27[wayland]
-   x11-libs/libdrm
-   x11-libs/libxcb:=
+   x11-libs/libdrm[${MULTILIB_USEDEP}]
+   x11-libs/libxcb:=[${MULTILIB_USEDEP}]
 "
 
 QA_SONAME="
/usr/lib64/libVkLayer_obs_vkcapture.so
/usr/lib64/libobs_glcapture.so
+   /usr/lib/libVkLayer_obs_vkcapture.so
+   /usr/lib/libobs_glcapture.so
 "
 
 src_unpack() {
@@ -48,3 +50,12 @@ src_unpack() {
git-r3_src_unpack
fi
 }
+
+multilib_src_configure() {
+if ! multilib_is_native_abi; then
+   local mycmakeargs+=(
+   -DBUILD_PLUGIN=OFF
+   )
+fi
+   cmake_src_configure
+}



[gentoo-commits] repo/proj/guru:dev commit in: media-video/obs-vkcapture/

2023-06-07 Thread Kostadin Shishmanov
commit: d95340dbd11eb7e7e2bd946fa3151c432bbc24a0
Author: Kostadin Shishmanov  tutanota  com>
AuthorDate: Thu Jun  8 05:54:15 2023 +
Commit: Kostadin Shishmanov  tutanota  com>
CommitDate: Thu Jun  8 05:54:15 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d95340db

media-video/obs-vkcapture: add myself as a maintainer

Signed-off-by: Kostadin Shishmanov  tutanota.com>

 media-video/obs-vkcapture/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/media-video/obs-vkcapture/metadata.xml 
b/media-video/obs-vkcapture/metadata.xml
index ec532054c..0f9c6a5e4 100644
--- a/media-video/obs-vkcapture/metadata.xml
+++ b/media-video/obs-vkcapture/metadata.xml
@@ -5,6 +5,10 @@
Adel Kara Slimane
adel...@zegrapher.com

+   
+   Kostadin Shishmanov
+   koce...@tutanota.com
+   


David Rosca



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

2023-06-07 Thread Michał Górny
commit: 8fd4fb2f9f224e8b38eebe500da34ac0df675e30
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 05:25:20 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:55:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8fd4fb2f

dev-python/symengine: Require https://bugs.gentoo.org/898720
Signed-off-by: Michał Górny  gentoo.org>

 dev-python/symengine/symengine-0.10.0.ebuild   | 2 +-
 dev-python/symengine/symengine-0.9.2-r3.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/symengine/symengine-0.10.0.ebuild 
b/dev-python/symengine/symengine-0.10.0.ebuild
index 64d96ed99b0b..5ae18cdf1733 100644
--- a/dev-python/symengine/symengine-0.10.0.ebuild
+++ b/dev-python/symengine/symengine-0.10.0.ebuild
@@ -27,7 +27,7 @@ KEYWORDS="~amd64 ~arm ~arm64 ~loong ~riscv ~x86"
 
 BDEPEND="
dev-util/cmake
-   dev-python/cython[${PYTHON_USEDEP}]
+   

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

2023-06-07 Thread Michał Górny
commit: 6174c2adc9a10c244082d249090e635afad54ed1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 05:27:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:55:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6174c2ad

dev-python/docker: Bump to 6.1.3

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

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

diff --git a/dev-python/docker/Manifest b/dev-python/docker/Manifest
index d73f2ade9692..3ffe3016f685 100644
--- a/dev-python/docker/Manifest
+++ b/dev-python/docker/Manifest
@@ -1 +1,2 @@
 DIST docker-py-6.1.2.gh.tar.gz 253183 BLAKE2B 
28435f5db00cbcd189cb06af77a4eac95a27944d324718c02b1d8f28c9954242c3a36ae376b0e0118ce1e03cb49f44925250b33b34b3ba5b459ef0df9ae9a6a4
 SHA512 
13c2711c44ae7b781187abaa7518ed86dd37192a44b6fff2c0090bfd8edb82555d15fb9d1681de9db47839f8dbcf17cc03fb88ed4e0e0052032dbcc9ed4c0078
+DIST docker-py-6.1.3.gh.tar.gz 253192 BLAKE2B 
b5a54d2bcbb4a89e4861bbf59a9b4565886f5541a518f66691ae205b7581f73af9fe6d491af299b0295f39b4a6e6248871b16e25ea5650fabbeafb7ced6cdaf7
 SHA512 
ba6ade2487afb8f68606b7d78c0f0dc83ffde622444a9598a5c647d0176695171040c5d1115fb8db6d97cb062a24d552d043274a56923b0eae0f64d98cb92c30

diff --git a/dev-python/docker/docker-6.1.3.ebuild 
b/dev-python/docker/docker-6.1.3.ebuild
new file mode 100644
index ..a3fe24f9dc3d
--- /dev/null
+++ b/dev-python/docker/docker-6.1.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 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 distutils-r1
+
+MY_P=docker-py-${PV}
+DESCRIPTION="Python client for Docker"
+HOMEPAGE="
+   https://github.com/docker/docker-py/
+   https://pypi.org/project/docker/
+"
+SRC_URI="
+   https://github.com/docker/docker-py/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/packaging-14.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.26.0[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.26.0[${PYTHON_USEDEP}]
+   >=dev-python/websocket-client-0.32.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/paramiko-2.4.3[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs \
+   'dev-python/myst-parser'
+distutils_enable_tests pytest
+
+src_prepare() {
+   # localhost has a better chance of being in /etc/hosts
+   sed -e 's:socket[.]gethostname():"localhost":' \
+   -i tests/unit/api_test.py || die
+
+   distutils-r1_src_prepare
+
+   export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+}
+
+python_test() {
+   epytest tests/unit
+}



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

2023-06-07 Thread Michał Górny
commit: 5940d02209afe56ebf160f507446b48093c38d51
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 05:19:35 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:55:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5940d022

dev-python/beartype: Bump to 0.14.1

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

 dev-python/beartype/Manifest   |  1 +
 dev-python/beartype/beartype-0.14.1.ebuild | 35 ++
 2 files changed, 36 insertions(+)

diff --git a/dev-python/beartype/Manifest b/dev-python/beartype/Manifest
index cf25515cbbfb..a117640105c2 100644
--- a/dev-python/beartype/Manifest
+++ b/dev-python/beartype/Manifest
@@ -1 +1,2 @@
 DIST beartype-0.14.0.tar.gz 946839 BLAKE2B 
f1e5f51fc160eac2c87035114a8ad10e550fef464ab9eceb416b811cda84479c1d6b4ca095cb71911477d525fe28174c2c810c27f3ed177916a5738315a63bb6
 SHA512 
bdf1a9c4323455efbaa74af669e4b31c6701f5cc230d2d185e8d355361c4ed0afa9a314ee42ca773135cef6e88b17b8ccdcd848fbb7758e7de5fcdb5d25d
+DIST beartype-0.14.1.tar.gz 964899 BLAKE2B 
2387be88e33e3b1908caacf967c43ffaf0cae4f42ee0b29e840762707ee45902f2609ce42cf917eff4692d1ee86633844129308b0b4a533989967b282a265a71
 SHA512 
93e4b1a32cfa0b1465e7ae32177f34118b99e3ea7f5c8b796b3980256755f37dc15be10bf973ef75464e8825a4f4bd1c344bf2c592801cb482ecd78d93db3de5

diff --git a/dev-python/beartype/beartype-0.14.1.ebuild 
b/dev-python/beartype/beartype-0.14.1.ebuild
new file mode 100644
index ..1600c2778175
--- /dev/null
+++ b/dev-python/beartype/beartype-0.14.1.ebuild
@@ -0,0 +1,35 @@
+# Copyright 2022-2023 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 distutils-r1 pypi
+
+DESCRIPTION="Unbearably fast runtime type checking in pure Python"
+HOMEPAGE="
+   https://pypi.org/project/beartype/
+   https://github.com/beartype/beartype/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+   test? (
+   dev-python/mypy[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   # fragile performance test
+   
beartype_test/a00_unit/a90_decor/test_decorwrapper.py::test_wrapper_fail_obj_large
+   # test for building docs, apparently broken too
+   beartype_test/a90_func/z90_lib/a00_sphinx
+)



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

2023-06-07 Thread Michał Górny
commit: 4ea560193c9611e8e3e13297577a2614bf4b984a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 05:14:49 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:55:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ea56019

dev-python/starlette: Bump to 0.28.0

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

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

diff --git a/dev-python/starlette/Manifest b/dev-python/starlette/Manifest
index 134c928cf500..b8de93031c98 100644
--- a/dev-python/starlette/Manifest
+++ b/dev-python/starlette/Manifest
@@ -1 +1,2 @@
 DIST starlette-0.27.0.gh.tar.gz 2838346 BLAKE2B 
25f30e83edc12fa6607ef31b2711ee2b3c205aa62cc362d4a7389d61e48fc4410610841caca2e99dd3527eb0f47fe2740c5908ab5c72158e57a384563b53328d
 SHA512 
dd7ce57b78a5ab42e62699e6feed735c66aa64dce2004304a139957c75192cc0b3a475e80bb9ecee16093940d45f142f83e61af6fad0f320a8f586fea752049f
+DIST starlette-0.28.0.gh.tar.gz 2843094 BLAKE2B 
a3cb35cf465b4540457cffafe4a3bb32081f542b8a5c730bc7fcc0bbf9f7a6c2c21bcc4297c8f3c5281f6ca787aa03c3ee4f90032155d1aa1887440dc289e5c1
 SHA512 
344c0581e6d6e64abd51347757cba4eb9bfba6f66bf62a2a5491cd3bb1c332895d6827bc478c00d9dfe3043152e814b6870894577a4e9547ac116c66f75a49b1

diff --git a/dev-python/starlette/starlette-0.28.0.ebuild 
b/dev-python/starlette/starlette-0.28.0.ebuild
new file mode 100644
index ..11703340a66f
--- /dev/null
+++ b/dev-python/starlette/starlette-0.28.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1
+
+MY_P=${P/_p/.post}
+DESCRIPTION="The little ASGI framework that shines"
+HOMEPAGE="
+   https://www.starlette.io/
+   https://github.com/encode/starlette/
+   https://pypi.org/project/starlette/
+"
+# no docs or tests in sdist, as of 0.27.0
+SRC_URI="
+   https://github.com/encode/starlette/archive/${PV/_p/.post}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   =dev-python/anyio-3.4.0[${PYTHON_USEDEP}]
+   >=dev-python/httpx-0.22.0[${PYTHON_USEDEP}]
+   dev-python/itsdangerous[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/python-multipart[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/typing-extensions-3.10.0[${PYTHON_USEDEP}]
+   ' 3.8 3.9)
+"
+BDEPEND="
+   test? (
+   dev-python/trio[${PYTHON_USEDEP}]
+   )
+"
+
+EPYTEST_IGNORE=(
+   # Unpackaged 'databases' dependency
+   tests/test_database.py
+)
+
+distutils_enable_tests pytest



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

2023-06-07 Thread Michał Górny
commit: f942e3683aa7dabe9061bdfe8775c8b7ef817529
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 05:15:19 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:55:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f942e368

dev-python/beartype: Remove old

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

 dev-python/beartype/Manifest   |  3 ---
 dev-python/beartype/beartype-0.12.0.ebuild | 37 ---
 dev-python/beartype/beartype-0.13.0.ebuild | 41 --
 dev-python/beartype/beartype-0.13.1.ebuild | 35 -
 4 files changed, 116 deletions(-)

diff --git a/dev-python/beartype/Manifest b/dev-python/beartype/Manifest
index 39e48db10636..cf25515cbbfb 100644
--- a/dev-python/beartype/Manifest
+++ b/dev-python/beartype/Manifest
@@ -1,4 +1 @@
-DIST beartype-0.12.0.gh.tar.gz 874431 BLAKE2B 
0ad2a6c852b32427f8f9c5a8915e580601b24551e956d458a64cda4127bffe91a94ff676e2284daed6671e2c94515a234fd74dcb3d8a78616665490d1a780910
 SHA512 
2724f080a0f423a8b79b080843db696ee607f2e27ef52d726928086b643ebb31abe4e3ae24cae12075e222a21291d301601606640ca281ff98272578d5bf752e
-DIST beartype-0.13.0.gh.tar.gz 923713 BLAKE2B 
151480693dfd3e30b41b38ef7ad2138ec323992461e2528fb059ac206304113578843dd1053838e3b132df4fff9f1e03706f02aa3d2b136da96f228d51386dd6
 SHA512 
062776e8d13c75106e1474aeada727562743689ad0131d2e218b222a0befe072f21af59e28bf7e69e1477beefc6cc1dc8cda2a476cf620b68746a3d350d701f5
-DIST beartype-0.13.1.tar.gz 933146 BLAKE2B 
e008c6be830424a868fde249eafc26d71a914a7de683741f90590f6e7bb3bc06b482d49f5e72742d648413cb785bc78666204adffd348224cd2fd37434f0423c
 SHA512 
9109598ef876c08f63fa5451ef86b3e5c0f2cd334d88259a2d39ffae5fc41ad75122ac8781538c580cdf0c5d429cc15b5be04d5cce2a3392f5a0648e1c2de504
 DIST beartype-0.14.0.tar.gz 946839 BLAKE2B 
f1e5f51fc160eac2c87035114a8ad10e550fef464ab9eceb416b811cda84479c1d6b4ca095cb71911477d525fe28174c2c810c27f3ed177916a5738315a63bb6
 SHA512 
bdf1a9c4323455efbaa74af669e4b31c6701f5cc230d2d185e8d355361c4ed0afa9a314ee42ca773135cef6e88b17b8ccdcd848fbb7758e7de5fcdb5d25d

diff --git a/dev-python/beartype/beartype-0.12.0.ebuild 
b/dev-python/beartype/beartype-0.12.0.ebuild
deleted file mode 100644
index b5b5c8c7f555..
--- a/dev-python/beartype/beartype-0.12.0.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Unbearably fast runtime type checking in pure Python"
-HOMEPAGE="
-   https://pypi.org/project/beartype/
-   https://github.com/beartype/beartype
-"
-SRC_URI="
-   https://github.com/beartype/beartype/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-BDEPEND="
-   test? (
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # fragile performance test
-   
beartype_test/a00_unit/a90_decor/test_decorwrapper.py::test_wrapper_fail_obj_large
-)

diff --git a/dev-python/beartype/beartype-0.13.0.ebuild 
b/dev-python/beartype/beartype-0.13.0.ebuild
deleted file mode 100644
index 2617cf4b98f1..
--- a/dev-python/beartype/beartype-0.13.0.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1
-
-DESCRIPTION="Unbearably fast runtime type checking in pure Python"
-HOMEPAGE="
-   https://pypi.org/project/beartype/
-   https://github.com/beartype/beartype/
-"
-# as of 0.13.0, sdist is missing mypy.ini required by tests
-# https://github.com/beartype/beartype/pull/230
-SRC_URI="
-   https://github.com/beartype/beartype/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-BDEPEND="
-   test? (
-   dev-python/mypy[${PYTHON_USEDEP}]
-   dev-python/numpy[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # fragile performance test
-   
beartype_test/a00_unit/a90_decor/test_decorwrapper.py::test_wrapper_fail_obj_large
-   # test for building docs, apparently broken too
-   beartype_test/a90_func/z90_lib/a00_sphinx
-)

diff --git a/dev-python/beartype/beartype-0.13.1.ebuild 
b/dev-python/beartype/beartype-0.13.1.ebuild
deleted file mode 100644
index 2ede86b8636b..
--- a/dev-python/beartype/beartype-0.13.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( 

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

2023-06-07 Thread Miroslav Šulc
commit: 8c791b9cc1caf8d2f5a4e6b2f2da97984c7f23a5
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Jun  8 05:49:13 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Jun  8 05:49:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c791b9c

media-sound/qtractor: bump to 0.9.34

Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qtractor/Manifest   |   1 +
 media-sound/qtractor/qtractor-0.9.34.ebuild | 108 
 2 files changed, 109 insertions(+)

diff --git a/media-sound/qtractor/Manifest b/media-sound/qtractor/Manifest
index 4ee19d1bf82d..35a73c554a2c 100644
--- a/media-sound/qtractor/Manifest
+++ b/media-sound/qtractor/Manifest
@@ -1 +1,2 @@
 DIST qtractor-0.9.33.tar.gz 2014555 BLAKE2B 
b2de591c8be935403f8c54682758a891bd9ead07626aede7d1015915941a0558e9f9aeeed3cda5b2b60c52637a80d72e10edc6d29c5d05d87bcfaca31df58e7a
 SHA512 
cb5f26e124a3b43afeaa7f175338ea54ffdd907ee95935c9188ed890afbfea7706fcd45cf6f3c208abfd93ddfbc1ec6fbd1ee2c11a5505f45c97d98950944811
+DIST qtractor-0.9.34.tar.gz 2012437 BLAKE2B 
c64b75bc8ecd761378dd0170e0fdcfcd5c612cabdf8c4dddcfaca2bbbd95db6328b36bfe1a10426744b9e75148263476bc17af80efcecf70a6c6a2b4089f7c26
 SHA512 
6ee5df583eb7e46c88aacb98d0dc79159b50e510158651d476e9516180e9bcb536e9642842714b62f7c4fde15fe386d85e6706f70b583ce0d8677e671985c695

diff --git a/media-sound/qtractor/qtractor-0.9.34.ebuild 
b/media-sound/qtractor/qtractor-0.9.34.ebuild
new file mode 100644
index ..0a0f707f34eb
--- /dev/null
+++ b/media-sound/qtractor/qtractor-0.9.34.ebuild
@@ -0,0 +1,108 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake xdg
+
+DESCRIPTION="Audio/MIDI multi-track sequencer written in C++ with the Qt 
framework"
+HOMEPAGE="https://qtractor.sourceforge.io;
+SRC_URI="mirror://sourceforge/qtractor/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="aubio cpu_flags_x86_sse debug dssi ladspa libsamplerate mad osc 
rubberband vorbis zlib"
+REQUIRED_USE="dssi? ( ladspa )"
+
+BDEPEND="
+   dev-qt/linguist-tools:5
+   virtual/pkgconfig
+"
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   dev-qt/qtxml:5
+   dev-qt/qtx11extras:5
+   media-libs/alsa-lib
+   media-libs/libsndfile
+   media-libs/lilv
+   media-libs/lv2
+   media-libs/suil
+   virtual/jack
+   x11-libs/libxcb:=
+   aubio? ( media-libs/aubio:= )
+   dssi? ( media-libs/dssi )
+   ladspa? ( media-libs/ladspa-sdk )
+   libsamplerate? ( media-libs/libsamplerate )
+   mad? ( media-libs/libmad )
+   osc? ( media-libs/liblo )
+   rubberband? ( media-libs/rubberband )
+   vorbis? (
+   media-libs/libogg
+   media-libs/libvorbis
+   )
+   zlib? ( sys-libs/zlib )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   cmake_src_prepare
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DCONFIG_DSSI=$(usex dssi 1 0)
+   -DCONFIG_GRADIENT=1
+   -DCONFIG_JACK_LATENCY=1
+   -DCONFIG_JACK_METADATA=1
+   -DCONFIG_JACK_SESSION=1
+   -DCONFIG_LADSPA=$(usex ladspa 1 0)
+   -DCONFIG_LIBAUBIO=$(usex aubio 1 0)
+   -DCONFIG_LIBLILV=1
+   -DCONFIG_LIBLO=$(usex osc 1 0)
+   -DCONFIG_LIBMAD=$(usex mad 1 0)
+   -DCONFIG_LIBRUBBERBAND=$(usex rubberband 1 0)
+   -DCONFIG_LIBSAMPLERATE=$(usex libsamplerate 1 0)
+   -DCONFIG_LIBVORBIS=$(usex vorbis 1 0)
+   -DCONFIG_LIBZ=$(usex zlib 1 0)
+   -DCONFIG_LV2=1
+   -DCONFIG_LV2_UI_GTK2=0
+   -DCONFIG_NSM=0
+   -DCONFIG_SSE=$(usex cpu_flags_x86_sse 1 0)
+   -DCONFIG_STACKTRACE=$(usex debug 1 0)
+   -DCONFIG_VESTIGE=1
+   -DCONFIG_VST2=1
+   -DCONFIG_VST3=0
+   -DCONFIG_XUNIQUE=0
+   )
+   # Following options are left to the default
+   # CONFIG_LV2_ATOM
+   # CONFIG_LV2_BUF_SIZE
+   # CONFIG_LV2_CVPORT
+   # CONFIG_LV2_EVENT
+   # CONFIG_LV2_EXTERNAL_UI
+   # CONFIG_LV2_MIDNAM
+   # CONFIG_LV2_OPTIONS
+   # CONFIG_LV2_PARAMETERS
+   # CONFIG_LV2_PATCH
+   # CONFIG_LV2_PORT_EVENT
+   # CONFIG_LV2_PRESETS
+   # CONFIG_LV2_PROGRAMS
+   # CONFIG_LV2_STATE
+   # CONFIG_LV2_STATE_FILES
+   # CONFIG_LV2_STATE_MAKE_PATH
+   # CONFIG_LV2_TIME
+   # CONFIG_LV2_TIME_POSITION
+   # CONFIG_LV2_UI
+   # CONFIG_LV2_UI_IDLE
+   # CONFIG_LV2_UI_REQ_VALUE
+   # CONFIG_LV2_UI_SHOW
+   # CONFIG_LV2_UI_TOUCH
+   # CONFIG_LV2_WORKER
+   # CONFIG_LV2_UI_X11
+   cmake_src_configure
+}



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

2023-06-07 Thread Michał Górny
commit: e6b100f6a68fed06ff71183beb8b4446ba7e881b
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:57:01 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:12:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6b100f6

dev-python/towncrier: Bump to 23.6.0

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

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

diff --git a/dev-python/towncrier/Manifest b/dev-python/towncrier/Manifest
index 35e0762bd80d..e5d9f008d5de 100644
--- a/dev-python/towncrier/Manifest
+++ b/dev-python/towncrier/Manifest
@@ -1 +1,2 @@
 DIST towncrier-22.12.0.gh.tar.gz 54670 BLAKE2B 
b6baf6970cc8a5f798f378ae7c0637184a869c3c72907205c6493786353f1a5f26e1bca0faa7f4685236e3a1fc9d4b2cfe6632f01d36926ae9e74cb188460674
 SHA512 
6fad515b2368f2c1ee27673080607460949d6651d3c9b9ab106b8e7f0298d0748a4ec1424f73bb7bf8a81eef5b0fa74de6a0b7295f02f02f354f20a99eb30814
+DIST towncrier-23.6.0.gh.tar.gz 59311 BLAKE2B 
d778154288923aa26c8d4d99b5f4c999ce50687164c4477d093b1254394ed7cbc5d708f1a1b7e6f25ebca95217a049692f7c9ee822661f44d02f79db32240229
 SHA512 
44142130b6a3e4428a085f1c6e793ccf631de77f8f2eafb8d1145f45d8d26faa6d27c30f09b8db95e63b4c3de927ac975ed95d1ed6b76dac3d9ba5eef54989c0

diff --git a/dev-python/towncrier/towncrier-23.6.0.ebuild 
b/dev-python/towncrier/towncrier-23.6.0.ebuild
new file mode 100644
index ..c2ceb8e19d71
--- /dev/null
+++ b/dev-python/towncrier/towncrier-23.6.0.ebuild
@@ -0,0 +1,47 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1
+
+DESCRIPTION="Building newsfiles for your project"
+HOMEPAGE="
+   https://github.com/twisted/towncrier/
+   https://pypi.org/project/towncrier/
+"
+SRC_URI="
+   https://github.com/twisted/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/click-default-group[${PYTHON_USEDEP}]
+   dev-python/incremental[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/tomli[${PYTHON_USEDEP}]
+   ' 3.10)
+"
+BDEPEND="
+   dev-python/incremental[${PYTHON_USEDEP}]
+   test? (
+   dev-vcs/git
+   >=dev-python/twisted-16.0.0[${PYTHON_USEDEP}]
+   )
+"
+
+python_test() {
+   "${EPYTHON}" -m twisted.trial towncrier ||
+   die "tests failed with ${EPYTHON}"
+}



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

2023-06-07 Thread Michał Górny
commit: c2f53fb930e17f8e138af90d6b3aae7216d0417b
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 05:07:22 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:12:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2f53fb9

dev-python/trio: Strip +dev from version in snapshot

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

 ...trio-0.22.0_p20230530.ebuild => trio-0.22.0_p20230530-r1.ebuild} | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-python/trio/trio-0.22.0_p20230530.ebuild 
b/dev-python/trio/trio-0.22.0_p20230530-r1.ebuild
similarity index 92%
rename from dev-python/trio/trio-0.22.0_p20230530.ebuild
rename to dev-python/trio/trio-0.22.0_p20230530-r1.ebuild
index 987eea446215..83733f7b9ec0 100644
--- a/dev-python/trio/trio-0.22.0_p20230530.ebuild
+++ b/dev-python/trio/trio-0.22.0_p20230530-r1.ebuild
@@ -52,6 +52,12 @@ distutils_enable_sphinx docs/source \
dev-python/sphinx-rtd-theme \
dev-python/towncrier
 
+src_prepare() {
+   # strip +dev from version, as it is breaking poorly written packages
+   sed -i -e 's:+dev::' trio/_version.py || die
+   distutils-r1_src_prepare
+}
+
 python_test() {
local EPYTEST_IGNORE=(
# these tests require internet access



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

2023-06-07 Thread Michał Górny
commit: dec9315ff9990af78133ee63b2e7c5e8a6c959a3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:52:32 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:12:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dec9315f

dev-python/sphinx-rtd-theme: Bump to 1.2.2

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

 dev-python/sphinx-rtd-theme/Manifest   |  1 +
 .../sphinx-rtd-theme/sphinx-rtd-theme-1.2.2.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/dev-python/sphinx-rtd-theme/Manifest 
b/dev-python/sphinx-rtd-theme/Manifest
index 0c9ac95ae442..97e537a4b87e 100644
--- a/dev-python/sphinx-rtd-theme/Manifest
+++ b/dev-python/sphinx-rtd-theme/Manifest
@@ -1,2 +1,3 @@
 DIST sphinx_rtd_theme-1.2.0.tar.gz 2784826 BLAKE2B 
62d0af56a29d66831447009991a5e0fb0a483ca91ac2ef7e7ce0b19510281308b49219efd0c6e1bd8fc95c2acae233133ce2f89b7507c2b20f0f322e59ab06e0
 SHA512 
dd407c648c5512a79e31a106825c6f9ec4696b14d950830ab36faf912ea804b48b3a5d09c6a144e9cead773e4c057cbc809d7582deea1b253ce71b756f7f6b10
 DIST sphinx_rtd_theme-1.2.1.tar.gz 2784128 BLAKE2B 
c5aed3beb6ade90a27690a8c33c8e18d05f53fb5514987828823f3a8d4bbfecb2212593733ce03323b8e9402730bd8fadce6c5dfc0d425cd4b335f6eef81f948
 SHA512 
0c1e0f0015f9df23f992023e137cc5976e76ad45e46e2f51186cf572289afae5e37d29013e0440a9059808d9b40af850d29393c2d2bc0a3cd845b0fbfa392294
+DIST sphinx_rtd_theme-1.2.2.tar.gz 2784122 BLAKE2B 
af738c99a2406daa0372171a34c78ee14e955fee589ba49811ea50fd2cd431367fde4d6a34d9e4f532d1ed6d079b1cebf4bb390b573fb5fe9cfc8f02b838
 SHA512 
44272272ce14387c1252ec40325ff8f9b40da6e37206333a8e0831cdce76c45efe58cf28f08132188d2799527a40e4ead881e856a123921b1cd908dd17fe

diff --git a/dev-python/sphinx-rtd-theme/sphinx-rtd-theme-1.2.2.ebuild 
b/dev-python/sphinx-rtd-theme/sphinx-rtd-theme-1.2.2.ebuild
new file mode 100644
index ..3eced1b43231
--- /dev/null
+++ b/dev-python/sphinx-rtd-theme/sphinx-rtd-theme-1.2.2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="ReadTheDocs.org theme for Sphinx"
+HOMEPAGE="
+   https://github.com/readthedocs/sphinx_rtd_theme/
+   https://pypi.org/project/sphinx-rtd-theme/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/docutils[${PYTHON_USEDEP}]
+   =dev-python/sphinx-1.6[${PYTHON_USEDEP}]
+   =dev-python/sphinxcontrib-jquery-4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/readthedocs-sphinx-ext[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin docutils
+   sed -i -e '/docutils/s:<0[.]19::' setup.cfg || die
+   distutils-r1_src_prepare
+
+   # CI=1 disables rebuilding webpack that requires npm use
+   # yes, that surely makes sense
+   export CI=1
+}



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

2023-06-07 Thread Michał Górny
commit: de7ea09b62afa9f22c7cc8d2d106e48d3002df4a
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:47:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:12:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de7ea09b

dev-python/selenium: Bump to 4.10.0

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

 dev-python/selenium/Manifest   |  2 +
 dev-python/selenium/selenium-4.10.0.ebuild | 63 ++
 2 files changed, 65 insertions(+)

diff --git a/dev-python/selenium/Manifest b/dev-python/selenium/Manifest
index 611805eb873d..b41975a7a86d 100644
--- a/dev-python/selenium/Manifest
+++ b/dev-python/selenium/Manifest
@@ -1,4 +1,6 @@
+DIST selenium-4.10.0.tar.gz 6465647 BLAKE2B 
ce6bb410753d922fb40f9613ad7a552c91a162f86a1efedfe39f3eee5af45db76cc8664aeb2d140186dfd5ff362c7654a019e21918f20439b1703cbd3572b005
 SHA512 
fca7b7cff54aad0771d60e4f85795e4205d2dd8dbf21abbd9ab2300fa80e7b033b08012d21792f18bf378e9c5234d82f410cc33f592d774eb94e418b325a2dd3
 DIST selenium-4.9.0.tar.gz 6336895 BLAKE2B 
4a812324abd1903f14b03a73d21125eb83b753a553bcc4515aa4a3dc792bfb07bfacf34e35357f81c36675d9079bafe5f289a63c709df57358103a9141cef535
 SHA512 
3bfba3d862de73261e984e4dce3c2ff77b0f57074073b38648cbbe6908f2d20a5fadef8b23b6a292d780bfe3556291e26c2a7b1cc4b314cc959e78e0a2dcc6dc
 DIST selenium-4.9.1.tar.gz 6341857 BLAKE2B 
dd6461e096a15170c37b3e95f2f492da5bc16d1b2bcdc3e0528f5f27219529a850a5f01363f91d829ca05700fde800d55c5e43d758d566e48faba494610a25d4
 SHA512 
e9ff93c0dfb8f561bbfd2b31e555c7e815bba677b8391296e696ced7ce63daa12e169bd2ce5e02c0fb1499a028a7d674f6202e512082993b5a59bddab5011a3c
+DIST selenium-selenium-4.10.0.gh.tar.gz 89775386 BLAKE2B 
a20416826ae85b13f2312799b5fef1d079e142330a23b06d5b1cb2f3ec98e3c26e483e65bb99027e7b18eae80f13e74347afdc88c8facfc268220bbd93d8107a
 SHA512 
bd8a0ac5e976119b8bff8a0b570479ece666369f0aef3806d173e956639c9df591047d0d333bb6ea5bdad740d84c5ee454d9749e0ebc502c5700a96bb146e182
 DIST selenium-selenium-4.9.0.gh.tar.gz 90247221 BLAKE2B 
fe99ac519ef4ced5f61721d1e3bae70e938b4a481582623a33f4d5a2fd1978c42e216501eb25ac7496957c2ea37a3ad97aff7ab7adf440e1428a311410024aca
 SHA512 
9e745eae4cf6ea95fe1268b79a80734f4b67b0948fa5bfb144d6b681cd4b353add5c1a1d16b3f35652b6fa4a5b135f8a5203de97fcb9af0c27060a45b6269225
 DIST selenium-selenium-4.9.1.gh.tar.gz 90261099 BLAKE2B 
4ef22ed67881036b3b20642bf6288a9afd518364f0271843b9d4ebcc2ccdfe3f259d5f6e7e52c375ff94e65f533810d3b51059433890277f440d23e50c5b1acf
 SHA512 
fac1b0c50b6983fce7d2e5b40347dde05ca8b2907a9a6e06905f521d3bc9a05f61eed3bc07b91b0163958580a67605500d3e928aeed73b44b34a4b2a7ebeaca3

diff --git a/dev-python/selenium/selenium-4.10.0.ebuild 
b/dev-python/selenium/selenium-4.10.0.ebuild
new file mode 100644
index ..4a7efe79264e
--- /dev/null
+++ b/dev-python/selenium/selenium-4.10.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2023 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 distutils-r1 pypi
+
+# upstream sometimes tags it as ${P}, sometimes as ${P}-python, sigh
+TEST_TAG=${P}
+TEST_P=selenium-${TEST_TAG}
+
+DESCRIPTION="Python language binding for Selenium Remote Control"
+HOMEPAGE="
+   https://www.seleniumhq.org/
+   https://github.com/SeleniumHQ/selenium/tree/trunk/py/
+   https://pypi.org/project/selenium/
+"
+SRC_URI+="
+   test? (
+   
https://github.com/SeleniumHQ/selenium/archive/${TEST_TAG}.tar.gz
+   -> ${TEST_P}.gh.tar.gz
+   )
+"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+RDEPEND="
+   >=dev-python/certifi-2021.10.8[${PYTHON_USEDEP}]
+   =dev-python/trio-0.17[${PYTHON_USEDEP}]
+   =dev-python/trio-websocket-0.9[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.26[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO: we may need extra setup or deps
+   test/selenium
+
+   # expects vanilla certifi
+   
test/unit/selenium/webdriver/remote/remote_connection_tests.py::test_get_connection_manager_for_certs_and_timeout
+   )
+
+   cd "${WORKDIR}/${TEST_P}/py" || die
+   rm -rf selenium || die
+   # 
https://github.com/SeleniumHQ/selenium/blob/selenium-4.8.2-python/py/test/runner/run_pytest.py#L20-L24
+   # seriously?
+   epytest -o "python_files=*_tests.py test_*.py"
+}



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

2023-06-07 Thread Michał Górny
commit: 9ddd8e0195a4739706be6547fe4bf5847f9ad49f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:43:15 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 04:43:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ddd8e01

dev-python/cfn-lint: Bump to 0.77.7

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

 dev-python/cfn-lint/Manifest   |  1 +
 dev-python/cfn-lint/cfn-lint-0.77.7.ebuild | 64 ++
 2 files changed, 65 insertions(+)

diff --git a/dev-python/cfn-lint/Manifest b/dev-python/cfn-lint/Manifest
index 5271976c3ee9..01759c590039 100644
--- a/dev-python/cfn-lint/Manifest
+++ b/dev-python/cfn-lint/Manifest
@@ -2,3 +2,4 @@ DIST cfn-lint-0.75.1.gh.tar.gz 3487870 BLAKE2B 
26aaf3b24023260d7a7d8f2b89fc9135e
 DIST cfn-lint-0.77.4.tar.gz 3510766 BLAKE2B 
af5f8a842863504217b90cea80861a889eae2d1bbe1d7c8c9b429acaee00d291ddbe71e868577acc689a1ff04aaf9c5b2f690a839235cf57202b6226bc7f1abc
 SHA512 
96fe05b91d93b2581f546973bf0a812184429cfefb26c69e8e14fe6ac6402219ab518777a3f54fb30092c30189486aacd0841d1db31a191697ad1c333662bb98
 DIST cfn-lint-0.77.5.tar.gz 3513226 BLAKE2B 
edff62682027d87fc4f0934aba83ca1cbd83773fbf85246eecfe1d1908b8ba0f6df413b2dbc8976770f7eefaec78bde1cd7017ed36ffac849687436364a42f2d
 SHA512 
e80231e8539735d0a114c6de81f9c52714a1886dbeb070b78bba3c9dd2798399bbb6eb41b3917b5c826b4d3d571f2d9996a5eeaebd7a48a9b774135fb0966372
 DIST cfn-lint-0.77.6.tar.gz 3554363 BLAKE2B 
abd496cdb72e1032c92a6489da12a4ffb4f83bba994067f9e2d333e55a13ea22d07db880dd3acca208f9b8328c17fe98540cec2847dac32ad87b2662aa0047e4
 SHA512 
b36c781dbd3294d6f2cfe43f617832170e47c9c9502845a551e6a9263e28dc6de99c77abd998699a2fcb6f08535daff615b17072c3ad1fe9c10853890a71989f
+DIST cfn-lint-0.77.7.tar.gz 3554332 BLAKE2B 
b669b9f97523933eb5549f7b2d67a132aef2236301b24094a0b74e9198d49121d4ec173c99d74b554b77eee2765b4ceb97126f2ccfab121393bc68e34cfb8147
 SHA512 
124ab4b96963f4971a25535852290ee71b5eed82e85a4101b3aa0469213b1006bfe8ae3d384f1acf236a0fa9915a24999b00f31f0d6ddbedbdaba123bfbb823b

diff --git a/dev-python/cfn-lint/cfn-lint-0.77.7.ebuild 
b/dev-python/cfn-lint/cfn-lint-0.77.7.ebuild
new file mode 100644
index ..6f296e7c5910
--- /dev/null
+++ b/dev-python/cfn-lint/cfn-lint-0.77.7.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="CloudFormation Linter"
+HOMEPAGE="
+   https://github.com/aws-cloudformation/cfn-lint/
+   https://pypi.org/project/cfn-lint/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+
+RDEPEND="
+   >=dev-python/aws-sam-translator-1.68.0[${PYTHON_USEDEP}]
+   dev-python/jsonpatch[${PYTHON_USEDEP}]
+   >=dev-python/jschema_to_python-1.2.3[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-3.0[${PYTHON_USEDEP}]
+   dev-python/junit-xml[${PYTHON_USEDEP}]
+   dev-python/pyyaml-5.4[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.15.0[${PYTHON_USEDEP}]
+   dev-python/regex[${PYTHON_USEDEP}]
+   >=dev-python/sarif_om-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/sympy-1.0.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin the deps
+   sed -e 's:~=[0-9.]*::' -i setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
test/unit/module/test_template.py::TestTemplate::test_build_graph
+   # requires git repo
+   
test/unit/module/maintenance/test_update_documentation.py::TestUpdateDocumentation::test_update_docs
+   # Internet
+   
test/unit/module/formatters/test_formatters.py::TestFormatters::test_sarif_formatter
+   
test/unit/module/maintenance/test_update_resource_specs.py::TestUpdateResourceSpecs::test_update_resource_specs_python_3
+   # TODO: it looks as if AWS_DEFAULT_REGION didn't work
+   test/unit/module/core/test_run_cli.py::TestCli::test_bad_config
+   
test/unit/module/core/test_run_cli.py::TestCli::test_override_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_positional_template_parameters
+   
test/unit/module/core/test_run_cli.py::TestCli::test_template_config
+   )
+
+   # from tox.ini
+   local -x AWS_DEFAULT_REGION=us-east-1
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest
+}



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

2023-06-07 Thread Michał Górny
commit: bfa3a01822e04f236a845b33131a2e69eaf5bd7d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:46:29 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 04:46:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa3a018

dev-python/pydantic: Bump to 1.10.9

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

 dev-python/pydantic/Manifest   |  1 +
 dev-python/pydantic/pydantic-1.10.9.ebuild | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/dev-python/pydantic/Manifest b/dev-python/pydantic/Manifest
index fe208aff3f09..6419f0b79982 100644
--- a/dev-python/pydantic/Manifest
+++ b/dev-python/pydantic/Manifest
@@ -1,3 +1,4 @@
 DIST pydantic-1.10.7.gh.tar.gz 903379 BLAKE2B 
b2dd75a640ca54024a2bf141117a1d738a30a4630bed8f4d0169fc5a6a55ded719727d88c7e78b9a2acc3aec68482e9be8c8bf4776fef668fe4acc3e1fd775df
 SHA512 
948a7935b374719773df50243aed708b3c6789243b9aa0ba239cf1502ddd0e0cec4d701e108f1cc78090c088f3cb1c78b840c39f5e7ad0e61739776f552f284d
 DIST pydantic-1.10.8.gh.tar.gz 765592 BLAKE2B 
0b4cc273ce6fad20baa7c8bd87ef32199cb003f52b8e9aa19eda6359ca0e5c30152c7f25d2bb146ec23027011895cf44d9eb051c6ca609fb00e3d7b5f6089e4e
 SHA512 
3ac41cdf0eb70fb71298131a043966b85387bc953ef2f463ece80728b46251d5d5f66c3f030afc3cdf4527918ae410fcd733a774cbe0c3b7ba9fc806a76378e4
+DIST pydantic-1.10.9.gh.tar.gz 765868 BLAKE2B 
802c542d75b41ff2926215bf4f6bd68a906d581db7b08ed85577f9021d259717f3ef8dbacfe381723aa042aab8720ad182c57fee188f2436b33d21164e24ba23
 SHA512 
d376a302eac3427cdc8da0ed2fab01c0b5e7a05944a53c394a60dac5fa0066488be8553022bb5aa89367d5a2e80e5d6e3cb39d9272843718dd07f6acd11e
 DIST pydantic-2.0b2.tar.gz 527380 BLAKE2B 
214c740ecaed3cf4e7ed1e06d75ce17b37028e41c6a7abc4174b201691e31725123f89430c430a514c59973dc327d2b8fcd21c5ef0a47aaa48fafaf7e322d7a1
 SHA512 
49cc058c91e48638f9809ca77d9c486e3bdfc05e1546b19ca7e419f41e152998f750cfb58927ad8189913859d27fff68de0e5848599baaf816404e0f58fd6646

diff --git a/dev-python/pydantic/pydantic-1.10.9.ebuild 
b/dev-python/pydantic/pydantic-1.10.9.ebuild
new file mode 100644
index ..742af7f9f99e
--- /dev/null
+++ b/dev-python/pydantic/pydantic-1.10.9.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..12} )
+
+inherit distutils-r1
+
+MY_P=${P/_beta/b}
+DESCRIPTION="Data parsing and validation using Python type hints"
+HOMEPAGE="
+   https://github.com/pydantic/pydantic/
+   https://pypi.org/project/pydantic/
+"
+SRC_URI="
+   https://github.com/pydantic/pydantic/archive/v${PV/_beta/b}.tar.gz
+   -> ${MY_P}.gh.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 ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+IUSE="native-extensions"
+
+RDEPEND="
+   >=dev-python/typing-extensions-4.1.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   native-extensions? (
+   =dev-python/email-validator-1.2.1[${PYTHON_USEDEP}]
+   dev-python/hypothesis[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/python-dotenv[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -i -e '/CFLAGS/d' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_compile() {
+   if [[ ${EPYTHON} == pypy3 ]] || ! use native-extensions; then
+   # do not build extensions on PyPy to workaround
+   # https://github.com/cython/cython/issues/4763
+   local -x SKIP_CYTHON=1
+   fi
+   distutils-r1_python_compile
+}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   local -x PYTEST_PLUGINS=pytest_mock
+
+   local EPYTEST_DESELECT=(
+   # flaky test, known upstream
+   
tests/test_hypothesis_plugin.py::test_can_construct_models_with_all_fields
+   # mypy linting causes regressions with new mypy versions
+   tests/mypy
+   )
+   case ${EPYTHON} in
+   pypy3)
+   EPYTEST_DESELECT+=(
+   
tests/test_private_attributes.py::test_private_attribute
+   
tests/test_private_attributes.py::test_private_attribute_annotation
+   
tests/test_private_attributes.py::test_private_attribute_factory
+   
tests/test_private_attributes.py::test_private_attribute_multiple_inheritance
+   
tests/test_private_attributes.py::test_underscore_attrs_are_private
+   )
+   ;;
+   python3.12)
+   EPYTEST_DESELECT+=(
+   

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

2023-06-07 Thread Michał Górny
commit: c5e0755a7821333cc2cb3de2ae52cb77a62ce97d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:45:25 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 04:45:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5e0755a

app-arch/stormlib: Bump to 9.25

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

 app-arch/stormlib/Manifest |  1 +
 app-arch/stormlib/stormlib-9.25.ebuild | 44 ++
 2 files changed, 45 insertions(+)

diff --git a/app-arch/stormlib/Manifest b/app-arch/stormlib/Manifest
index de6109e6e67b..4081bddc12d0 100644
--- a/app-arch/stormlib/Manifest
+++ b/app-arch/stormlib/Manifest
@@ -1 +1,2 @@
 DIST StormLib-9.24.tar.gz 625374 BLAKE2B 
3647580b1b048e284ade2fb23aed53cac76a89a0180908f48fc99d571e702d876de37e42a47b3d351c72e6fa905fc02f4b8fa691a6840013637e1560e9acafcb
 SHA512 
38694685edfc9c53ff1e303109831b6a791200b9db275043bca8b3bbe7cc928cf0ce9cf554c6758f693da453b85e6385d277ae9add7af867c13488d77432cde5
+DIST StormLib-9.25.tar.gz 603875 BLAKE2B 
c7da242d039f5a49e8abd295b42e639fc540c77ee4bf8f210610d56940d1d35f19ea267dccde89e50f744218527f4c521e1d320f24e8fe3a0e0739ee899aa023
 SHA512 
0da78bda4bb89637da892fc73a0673b8a5f852ede4fdceba1029431d24dd1e59db9bfceafab1c5fb642e4b5d0d15d9865f7a138bfb190ce0c2d3601b22dd3023

diff --git a/app-arch/stormlib/stormlib-9.25.ebuild 
b/app-arch/stormlib/stormlib-9.25.ebuild
new file mode 100644
index ..dbb04664be09
--- /dev/null
+++ b/app-arch/stormlib/stormlib-9.25.ebuild
@@ -0,0 +1,44 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+MY_P=StormLib-${PV}
+DESCRIPTION="Library to read and write MPQ archives (Diablo, StarCraft)"
+HOMEPAGE="
+   http://www.zezula.net/en/mpq/stormlib.html
+   https://github.com/ladislav-zezula/StormLib/
+"
+SRC_URI="
+   https://github.com/ladislav-zezula/StormLib/archive/v${PV}.tar.gz
+   -> ${MY_P}.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-arch/bzip2:=
+   dev-libs/libtomcrypt:=[libtommath]
+   sys-libs/zlib:=
+"
+DEPEND=${RDEPEND}
+
+PATCHES=(
+   "${FILESDIR}"/stormlib-9.24-gnuinstalldirs.patch
+)
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_SHARED_LIBS=ON
+   # interactive test app
+   -DSTORM_BUILD_TESTS=OFF
+   -DWITH_LIBTOMCRYPT=ON
+   )
+
+   cmake_src_configure
+}



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

2023-06-07 Thread Michał Górny
commit: ac5ef9e4f9bff3ddc624f174c2bcaa0663bb0de3
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:48:56 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 05:12:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac5ef9e4

dev-python/sentry-sdk: Bump to 1.25.1

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

 dev-python/sentry-sdk/Manifest |   1 +
 dev-python/sentry-sdk/sentry-sdk-1.25.1.ebuild | 117 +
 2 files changed, 118 insertions(+)

diff --git a/dev-python/sentry-sdk/Manifest b/dev-python/sentry-sdk/Manifest
index f22864666289..9bb45b2f6854 100644
--- a/dev-python/sentry-sdk/Manifest
+++ b/dev-python/sentry-sdk/Manifest
@@ -2,3 +2,4 @@ DIST sentry-python-1.20.0.gh.tar.gz 345505 BLAKE2B 
e95225188a74f4d9e67f6044bcf3b
 DIST sentry-python-1.23.1.gh.tar.gz 355099 BLAKE2B 
d4aea7fd4746f1ee7873382f6a8545a1e21583e12b241ecc9ccf210bab95aa07051e802199c1c225756bb4fe9b8b9ec4bb76d737f2c19216df1b30e33614f54b
 SHA512 
3d7237c0d624c51cf7a99ea1c480fb67d0dee7ae48cefd7322d870881ecc6b25f5fa481c6cd86b75fa7f1a4acf54f9c0f576021bf75cc8e8b9be99ec05453e2f
 DIST sentry-python-1.24.0.gh.tar.gz 360564 BLAKE2B 
032c929b75e29ebb0e95f8dddcc567d7367399b0945f918821c5331898b0aa90eac4af531f4f49c52949d00b655508cd57a88915ab054f2a44f72e3dc81cc9a9
 SHA512 
9dee3f14082331232f743c7bd38a7a46273d4c467bdd4f8672f7597fa0d3baaecd34423d07669f14f0265be2c947bdbddc983aaa8cab66a139aeb036fde1b708
 DIST sentry-python-1.25.0.gh.tar.gz 361047 BLAKE2B 
0138ba1ab9b4aef73758cc9e5ca0241ddbd8f3d2175d84612cc485b62e0526346d1ffec7f407ec6556e2fe3f256c4602523dfaca082b5b1b343c701b5aee867f
 SHA512 
a4b7d4d969631060d2357cd6497fc552e13d9e49d921bb92bd241704b1a19d44c8749e6fc4884194c76e30cc3fc82d056f68212d28bda8865fdac421fedd0f27
+DIST sentry-python-1.25.1.gh.tar.gz 362026 BLAKE2B 
f392d766305a119d8d24472d21efade8a0f058d18e8d0e7b15fbcc2c368171e89a79394534aa85a7f9c4013fc1ba2566ee3de6d4708e1c5d7f3e3dd2aae56d4d
 SHA512 
eb22213d99989711fc1449f3910dbd81eafe6d8903181955cb307066ba90a6e0cf587e875c806a013ca2b9465dc070e622c4ec6a656bdec51668455d353ad91a

diff --git a/dev-python/sentry-sdk/sentry-sdk-1.25.1.ebuild 
b/dev-python/sentry-sdk/sentry-sdk-1.25.1.ebuild
new file mode 100644
index ..67abd0d3c7e8
--- /dev/null
+++ b/dev-python/sentry-sdk/sentry-sdk-1.25.1.ebuild
@@ -0,0 +1,117 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_11 )
+
+inherit distutils-r1
+
+MY_P=sentry-python-${PV}
+DESCRIPTION="Python client for Sentry"
+HOMEPAGE="
+   https://sentry.io/
+   https://github.com/getsentry/sentry-python/
+   https://pypi.org/project/sentry-sdk/
+"
+SRC_URI="
+   https://github.com/getsentry/sentry-python/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="PSF-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   dev-python/urllib3[${PYTHON_USEDEP}]
+   dev-python/certifi[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/asttokens[${PYTHON_USEDEP}]
+   dev-python/django[${PYTHON_USEDEP}]
+   dev-python/executing[${PYTHON_USEDEP}]
+   dev-python/fakeredis[${PYTHON_USEDEP}]
+   dev-python/flask-login[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pyrsistent[${PYTHON_USEDEP}]
+   dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
+   dev-python/pytest-django[${PYTHON_USEDEP}]
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-localserver[${PYTHON_USEDEP}]
+   dev-python/responses[${PYTHON_USEDEP}]
+   dev-python/werkzeug[${PYTHON_USEDEP}]
+   dev-python/zope-event[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+PATCHES=(
+   "${FILESDIR}/sentry-sdk-1.21.0-ignore-warnings.patch"
+)
+
+EPYTEST_IGNORE=(
+   # tests require Internet access
+   tests/integrations/httpx/test_httpx.py
+   tests/integrations/requests/test_requests.py
+   tests/integrations/stdlib/test_httplib.py
+   tests/integrations/flask/test_flask.py
+   tests/integrations/django/test_basic.py
+   tests/integrations/socket/test_socket.py
+   # wtf is it supposed to do?!
+   tests/integrations/gcp/test_gcp.py
+   # broken by rq-1.10.1 (optional dep)
+   tests/integrations/rq/test_rq.py
+   # fastapi is not packaged
+   tests/integrations/asgi/test_fastapi.py
+   # TODO
+   tests/integrations/bottle
+   # TODO: causes breakage in other tests
+   tests/integrations/starlette
+   # TODO
+   tests/integrations/tornado
+   # requires mockupdb
+   tests/integrations/pymongo
+)
+
+EPYTEST_DESELECT=(
+   # hangs
+   

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

2023-06-07 Thread Michał Górny
commit: d0b6fe21b3cf656fa0137524a2bf1a23aa1e5e45
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:44:22 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 04:44:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0b6fe21

dev-python/werkzeug: Bump to 2.3.5

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

 dev-python/werkzeug/Manifest  |  1 +
 dev-python/werkzeug/werkzeug-2.3.5.ebuild | 64 +++
 2 files changed, 65 insertions(+)

diff --git a/dev-python/werkzeug/Manifest b/dev-python/werkzeug/Manifest
index 009da6170a2e..e0849604d088 100644
--- a/dev-python/werkzeug/Manifest
+++ b/dev-python/werkzeug/Manifest
@@ -1 +1,2 @@
 DIST werkzeug-2.3.4.gh.tar.gz 833090 BLAKE2B 
e9d0134fa2a1355a2ef0df0f86cca6ea0f0a0c9b6ece98a6774ceab0a284c6a899e915688cb3e2e9f6192a7943cbcf20578d1e8f2f439dd8a9ab0f3d49361bcd
 SHA512 
1e519fc88ac4438aa4dbd623ef8afc96a630df61d25a5a28154749f5c38593edefbb32163a632a5f38fa70d8cf2f1ae93633e54cfafe72d497ab70c99f9b2478
+DIST werkzeug-2.3.5.gh.tar.gz 833927 BLAKE2B 
f9d2a81b0b1336265094df26d8b1fd17a471ed12d47014e5dd151085dd4112c0fb4788b62d926588d07dfaf91656d7e18406f5c684766e97bab45cccadea478e
 SHA512 
d1c1e344efaa1c5aa04c71f8007a9f10b3043bf5db2459fddae8df5186b103de2fd3f61394dacb774b57a72feed7080cde1611040e0849c97d81e6ed1ee2c4b2

diff --git a/dev-python/werkzeug/werkzeug-2.3.5.ebuild 
b/dev-python/werkzeug/werkzeug-2.3.5.ebuild
new file mode 100644
index ..510a6ca0d800
--- /dev/null
+++ b/dev-python/werkzeug/werkzeug-2.3.5.ebuild
@@ -0,0 +1,64 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="Collection of various utilities for WSGI applications"
+HOMEPAGE="
+   https://palletsprojects.com/p/werkzeug/
+   https://pypi.org/project/Werkzeug/
+   https://github.com/pallets/werkzeug/
+"
+SRC_URI="
+   https://github.com/pallets/werkzeug/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="test-rust"
+
+RDEPEND="
+   >=dev-python/markupsafe-2.1.1[${PYTHON_USEDEP}]
+"
+# NOTE: remove the loong mask after greenlet gains support for loong
+# see https://github.com/python-greenlet/greenlet/pull/257
+BDEPEND="
+   test? (
+   dev-python/ephemeral-port-reserve[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   dev-python/pytest-xprocess[${PYTHON_USEDEP}]
+   >=dev-python/watchdog-2.3[${PYTHON_USEDEP}]
+   test-rust? (
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   )
+   !hppa? ( !ia64? ( !loong? (
+   $(python_gen_cond_dep '
+   dev-python/greenlet[${PYTHON_USEDEP}]
+   ' python3_{10..11})
+   ) ) )
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local EPYTEST_DESELECT=()
+   if ! has_version "dev-python/cryptography[${PYTHON_USEDEP}]"; then
+   EPYTEST_DESELECT+=(
+   "tests/test_serving.py::test_server[https]"
+   tests/test_serving.py::test_ssl_dev_cert
+   tests/test_serving.py::test_ssl_object
+   )
+   fi
+
+   # the default portage tempdir is too long for AF_UNIX sockets
+   local -x TMPDIR=/tmp
+   epytest -p no:django -p no:httpbin tests
+}



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

2023-06-07 Thread Michał Górny
commit: f2ddd458542e190d8f93cf771c647900690a2134
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 03:58:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 03:58:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ddd458

dev-python/boto3: Bump to 1.26.149

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

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

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 9c577b199c68..5919e4d7cf17 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,3 +3,4 @@ DIST boto3-1.26.142.gh.tar.gz 655602 BLAKE2B 
e9d5671308e71bb43a97953407f4aba5b78
 DIST boto3-1.26.146.gh.tar.gz 658035 BLAKE2B 
29104a4ebd16ca8b2a0631bb747ed8b5af9fd6a5c86927937e6fc3ded14857c5244dc3ae4db1aec880f845b32d505edb1ef652a29f9f4d48f8a935a3ff239dbd
 SHA512 
910c49bfdca0f39e089eab50ca24f9cfa3c75cae8c33d53155f0df2dd4c6ae1729dc235bfb3f5880cd50bdeeb60327490bf2372ca2cc14600d24dc90b51d6120
 DIST boto3-1.26.147.gh.tar.gz 658916 BLAKE2B 
a612b3edd3f1ad232cf504f96750e759bed5e7abebae375bd4ac2918913c5863b5ef9bd6a2e534f7d08799c826c0fcf65cdbdb687960136f0d05192792cb6102
 SHA512 
6b845401d46e34602584da2fc10ea9c36fcb55beef2ba2c8ad724d030c54968e74690580080f2da218bc7d7886d7fb3d4b22abfbd90b5af5d6d86c9f6c45b52f
 DIST boto3-1.26.148.gh.tar.gz 659957 BLAKE2B 
cac68eca82a00d596cf03d833394d7da0cdde0b2159a5fac1592faf7b5ea5ca9d41ee20ca10164ffdfb717193b4173fcf5e377d426edb672bf8510a0f4d1fa67
 SHA512 
8df8029ff11faa6d864920a5b5690f2b895ed500aa45970a7f4da5f33b52415cdfd6f582671b0e8f80205efd73a697e8a0c05e4335e2d921f9204b74df6de23d
+DIST boto3-1.26.149.gh.tar.gz 660823 BLAKE2B 
3334e6dcaf537af992f02dc1c94cd24d4279bf67923956137d02f9ea75a9a2853e281bb5f63e94336e56530737651b12652a00d2db15be5919be700528c0a047
 SHA512 
dbae0e07b01558248b6a4c4645b48c55fbe091f609710ee49c17b4e0725e034a4ad19c9a868ea7b7d20695d67a5ef7cca454018be2f5da6340b00a5f45d31618

diff --git a/dev-python/boto3/boto3-1.26.149.ebuild 
b/dev-python/boto3/boto3-1.26.149.ebuild
new file mode 100644
index ..2a4a7643203e
--- /dev/null
+++ b/dev-python/boto3/boto3-1.26.149.ebuild
@@ -0,0 +1,66 @@
+# Copyright 1999-2023 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 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_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: dev-python/argcomplete/

2023-06-07 Thread Michał Górny
commit: dfbd71d25a29a52e4f621c82f101b7e3cd8c9b8d
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 03:58:59 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 03:58:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfbd71d2

dev-python/argcomplete: Remove old

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

 dev-python/argcomplete/Manifest |  2 --
 dev-python/argcomplete/argcomplete-2.1.2.ebuild | 40 -
 dev-python/argcomplete/argcomplete-3.0.5.ebuild | 40 -
 3 files changed, 82 deletions(-)

diff --git a/dev-python/argcomplete/Manifest b/dev-python/argcomplete/Manifest
index bd6241b6588e..51452ab29191 100644
--- a/dev-python/argcomplete/Manifest
+++ b/dev-python/argcomplete/Manifest
@@ -1,3 +1 @@
-DIST argcomplete-2.1.2.tar.gz 54114 BLAKE2B 
19d29eb26c8d77998dcba51c263f49800ff98f22038964faf63d7b5963e8d62ca71ade9493937014f2e030add8a7d1032e2fdffce28765e12164906499cd2bcb
 SHA512 
a91e3c0274c780da173659524f166b98f55342e54fbd38583757e65350b2288ea0e7f5acee7cb83b11478eda1b9b0f82ae6b0f559d7104c4ed67a6e1c9befa24
-DIST argcomplete-3.0.5.tar.gz 65470 BLAKE2B 
ca9208edf7688aa7ff9a224befa2a84d2c9b6bdf4077a805efb107f256f98f0477c2c900dfb3c3bee3c08973aab8777cf6b01ab1a4698347e3ac457f131df0a0
 SHA512 
7ee0e8b961e4e9ba76194587da481908ac064306f1cd4fc0886d6facb4f2dab409dd1080ab440be761caebe358139cc8bc67fb720dd1d8e3f6105595dc8a5858
 DIST argcomplete-3.0.8.tar.gz 56035 BLAKE2B 
0b63eff175c2780b63d07ef48169054705a4af5b0e7f1097fc74e525592491d42a48615b766e32cb69a673e26d867cae84fb23b98194c9fe618409d3eb312b83
 SHA512 
4667f0d03485c81048c53ecfd53fa1bbe50beea15f723f3ebd8a92aae37dd2bbca709f9b6a1e0a5a682f9e769883f94614b4fcefc1fd7c9fad9f1d8cbc1429f3

diff --git a/dev-python/argcomplete/argcomplete-2.1.2.ebuild 
b/dev-python/argcomplete/argcomplete-2.1.2.ebuild
deleted file mode 100644
index 4c9150727c75..
--- a/dev-python/argcomplete/argcomplete-2.1.2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Bash tab completion for argparse"
-HOMEPAGE="
-   https://github.com/kislyuk/argcomplete/
-   https://pypi.org/project/argcomplete/
-"
-
-LICENSE="Apache-2.0"
-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="test"
-RESTRICT="!test? ( test )"
-
-# pip is called as an external tool
-BDEPEND="
-   test? (
-   app-shells/fish
-   app-shells/tcsh
-   dev-python/pexpect[${PYTHON_USEDEP}]
-   >=dev-python/pip-19
-   )
-"
-
-src_prepare() {
-   sed -i -e 's:timeout=5:timeout=30:' test/test.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   "${EPYTHON}" test/test.py -v || die
-}

diff --git a/dev-python/argcomplete/argcomplete-3.0.5.ebuild 
b/dev-python/argcomplete/argcomplete-3.0.5.ebuild
deleted file mode 100644
index 802c9788b5f3..
--- a/dev-python/argcomplete/argcomplete-3.0.5.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} pypy3 )
-
-inherit distutils-r1 pypi
-
-DESCRIPTION="Bash tab completion for argparse"
-HOMEPAGE="
-   https://github.com/kislyuk/argcomplete/
-   https://pypi.org/project/argcomplete/
-"
-
-LICENSE="Apache-2.0"
-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="test"
-RESTRICT="!test? ( test )"
-
-# pip is called as an external tool
-BDEPEND="
-   test? (
-   app-shells/fish
-   app-shells/tcsh
-   dev-python/pexpect[${PYTHON_USEDEP}]
-   >=dev-python/pip-19
-   )
-"
-
-src_prepare() {
-   sed -i -e 's:timeout=5:timeout=30:' test/test.py || die
-   distutils-r1_src_prepare
-}
-
-python_test() {
-   "${EPYTHON}" test/test.py -v || die
-}



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

2023-06-07 Thread Michał Górny
commit: f52a24017053437ee589d851942946283a4c9310
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 04:06:38 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 04:06:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f52a2401

dev-python/pygobject: Replace our py3.12 sed with upstream fix

Replace our cheap test hack using `.*` regex with upstream patch
that conditionalizes the expected value per Python version.

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

 .../pygobject/files/pygobject-3.44.1-py312.patch   | 48 ++
 dev-python/pygobject/pygobject-3.44.1.ebuild   | 13 +++---
 2 files changed, 53 insertions(+), 8 deletions(-)

diff --git a/dev-python/pygobject/files/pygobject-3.44.1-py312.patch 
b/dev-python/pygobject/files/pygobject-3.44.1-py312.patch
new file mode 100644
index ..331e3bc0a3f8
--- /dev/null
+++ b/dev-python/pygobject/files/pygobject-3.44.1-py312.patch
@@ -0,0 +1,48 @@
+From fe6aedd8eebd92844b873f72e99dc4023316c6f3 Mon Sep 17 00:00:00 2001
+From: Christoph Reiter 
+Date: Wed, 7 Jun 2023 22:27:55 +0200
+Subject: [PATCH] tests: fix test_gvalue_flat_array_in_item_marshal_failure for
+ Python 3.12
+
+See https://gitlab.gnome.org/GNOME/pygobject/-/issues/582
+
+_PyGI_ERROR_PREFIX() no longer works with 3.12 since we only get normalized
+exceptions in there and can't add a prefix like "Item X: " to the message.
+
+Until we figure out how to add this back for 3.12, align the tests with the
+new behaviour (the new exception notes API would be an option, see the
+linked issue)
+---
+ tests/test_gi.py | 7 +--
+ 1 file changed, 5 insertions(+), 2 deletions(-)
+
+diff --git a/tests/test_gi.py b/tests/test_gi.py
+index 25a3b659..261d8b2b 100644
+--- a/tests/test_gi.py
 b/tests/test_gi.py
+@@ -1573,9 +1573,12 @@ class TestGValue(unittest.TestCase):
+ self.assertRaises(OverflowError, GIMarshallingTests.gvalue_flat_array,
+   [GLib.MININT - 1, "42", True])
+ 
++# FIXME: 
https://gitlab.gnome.org/GNOME/pygobject/-/issues/582#note_1764164
++exc_prefix = "Item 0: " if sys.version_info[:2] < (3, 12) else ""
++
+ with pytest.raises(
+ OverflowError,
+-match='Item 0: %d not in range %d to %d' % (
++match=exc_prefix + '%d not in range %d to %d' % (
+ GLib.MAXINT + 1, GLib.MININT, GLib.MAXINT)):
+ GIMarshallingTests.gvalue_flat_array([GLib.MAXINT + 1, "42", 
True])
+ 
+@@ -1583,7 +1586,7 @@ class TestGValue(unittest.TestCase):
+ 
+ with pytest.raises(
+ OverflowError,
+-match='Item 0: %d not in range %d to %d' % (
++match=exc_prefix + '%d not in range %d to %d' % (
+ GLib.MAXUINT64 * 2, min_, max_)):
+ GIMarshallingTests.gvalue_flat_array([GLib.MAXUINT64 * 2, "42", 
True])
+ 
+-- 
+GitLab
+

diff --git a/dev-python/pygobject/pygobject-3.44.1.ebuild 
b/dev-python/pygobject/pygobject-3.44.1.ebuild
index 231063a2d18f..713c63dc4584 100644
--- a/dev-python/pygobject/pygobject-3.44.1.ebuild
+++ b/dev-python/pygobject/pygobject-3.44.1.ebuild
@@ -44,14 +44,11 @@ BDEPEND="
virtual/pkgconfig
 "
 
-src_prepare() {
-   # workaround minor py3.12 test failure
-   # (I wish we could just use EPYTEST_DESELECT here, sigh)
-   # https://gitlab.gnome.org/GNOME/pygobject/-/issues/582
-   sed -i -e 's@Item 0: @.*@' tests/test_gi.py || die
-
-   distutils-r1_src_prepare
-}
+PATCHES=(
+   # fix test failure on py3.12
+   # 
https://gitlab.gnome.org/GNOME/pygobject/-/commit/fe6aedd8eebd92844b873f72e99dc4023316c6f3
+   "${FILESDIR}/${P}-py312.patch"
+)
 
 python_configure() {
local emesonargs=(



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

2023-06-07 Thread Michał Górny
commit: 7f5cedc732aa46e573d45539bdbd808e235379e1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 03:58:14 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 03:58:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f5cedc7

app-admin/awscli: Bump to 1.27.149

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

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

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index d6d925455585..5fc313bd0a77 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -3,3 +3,4 @@ DIST aws-cli-1.27.142.gh.tar.gz 2426758 BLAKE2B 
587791e0102d51b9681718a71c1225c6
 DIST aws-cli-1.27.146.gh.tar.gz 2430455 BLAKE2B 
5e59ad0a5e97b4f218c694a6c9df3fb85dd7682fc1c3e549e9bb38ef3f89f63ef4976f539134d744ef3acbf9a506ddbb2b1cb93c44e11460e96db05f0fc02bd5
 SHA512 
e942c2ba2abba21eae87ba2f88f727c7cf77681232e2aac9c975c07ba4bee41a10ef9044f3828ce61271a569e71469420d6b4ee7ec272fc8ea7132a597450d23
 DIST aws-cli-1.27.147.gh.tar.gz 2430890 BLAKE2B 
773e7f0809b568e02cec70763e6463d1e9a5ff71cef4828df33a72be929fa64ecdec852a30155c77c30bd185d467e12d433a6479fe870726662410db374c2442
 SHA512 
ea33bdc6670f8e5b2434c73c023c99a02e66c3f3e570bc79bbeac294722a6aa1f41a2930c466070da67b650ac9d5823d7de52fc6c93546cfa8d46baeae4be5c5
 DIST aws-cli-1.27.148.gh.tar.gz 2432201 BLAKE2B 
528f600158d6c7242a9c4aa205973019b00233e998710672af8f5c65e74e9eebbb3a0408a918d160d2cde62092d73557f9cfd29703bf838bea8afcf1d40ede0c
 SHA512 
4ed5835a4f7b0787abfe9817c83c545e399bc38ba25838a63dfab2b5c374bdbc11128ff43e3fdaca836eccfb26f026bb1697c94cb40adbe98e080b094b8e33e0
+DIST aws-cli-1.27.149.gh.tar.gz 2432755 BLAKE2B 
26c3dc5221f808d4604cf2f54955f6b7f3a315772594d3fe4bb7d07f8d1c129d3cad7427deada7eca04be330a23f0dee7f7d6168e4ac47d888016ed23bbbe329
 SHA512 
824829a70f989c1f1c75228692067c3f922c947c9eb7478312efd9b3a4d6257986f62aaade571bb871c740b27abf9d70b18c126458458ea793f798f7d2e3a5ca

diff --git a/app-admin/awscli/awscli-1.27.149.ebuild 
b/app-admin/awscli/awscli-1.27.149.ebuild
new file mode 100644
index ..62c19f3a63fb
--- /dev/null
+++ b/app-admin/awscli/awscli-1.27.149.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2023 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 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~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
+   
tests/functional/eks/test_kubeconfig.py::TestKubeconfigLoader::test_load_simple
+   
tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_env_only
+   
tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_existing
+   
tests/unit/customizations/eks/test_kubeconfig.py::TestKubeconfigValidator::test_valid
+   )
+
+   # integration tests require AWS credentials and Internet access
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked
+}
+
+python_install_all() {
+   newbashcomp bin/aws_bash_completer aws
+
+   insinto /usr/share/zsh/site-functions
+   newins bin/aws_zsh_completer.sh _aws
+
+   distutils-r1_python_install_all
+
+   rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || 
die
+}



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

2023-06-07 Thread Michał Górny
commit: 5c0f67fdf4c93636083080419cfe6c8370808f80
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jun  8 03:57:36 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jun  8 03:57:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c0f67fd

dev-python/botocore: Bump to 1.29.149

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

 dev-python/botocore/Manifest |  1 +
 dev-python/botocore/botocore-1.29.149.ebuild | 79 
 2 files changed, 80 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 2b6f36968400..899a6d8f7a70 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,3 +3,4 @@ DIST botocore-1.29.142.gh.tar.gz 11528069 BLAKE2B 
860a5ab68d26424702006b221e62e2
 DIST botocore-1.29.146.gh.tar.gz 11553866 BLAKE2B 
7b5b060480de459af9045be8724272fb876c8663b39b1a1ea3575cee83d233dc4e04735682f7eac9299ae0219a5995ddd3379d75c6d2e1bece565e2294b3cc23
 SHA512 
e786137deaac49fa9db7c8c4df1ff8be195dd400432fbb2e6a23608181161234fa5c3a81a293b4ae1133d1a40e0341b3a081f0d845672e8d0c604fdffc2bc1b5
 DIST botocore-1.29.147.gh.tar.gz 11567478 BLAKE2B 
e5b8b83057cdb1aa8fd654aeedba326a3641adefd8ace5ce7724b5e780f81a773a4ea20a53a3d5bd2db25e687730b5949608a554f4b550204123aee46b7d2feb
 SHA512 
a72a91dd440e1ef4a4a85044284a5201a277c0b3c2d0a30358c920ccb10b5caf0914b0ed3bf8207834e6acc604528d1512356cb4bd0bfdce9b38e39aa98c2296
 DIST botocore-1.29.148.gh.tar.gz 11587262 BLAKE2B 
ea2bcb115976e98b3f60ab8f7d49c7876bd1b3f188f51fd83f3cd5d86f57888f1a3cd127afea041424c2f6eaa16c0128848ee1805f5d789e0768886ac0e9e1c4
 SHA512 
8b02f5203be6e44f9002079532989ae6daecf0e1b6417f1f746d5846c37ec6e98d1fd01d7ecf58735fd27abed3cd74709a9dd9f624921ca58cea0a47c5915b85
+DIST botocore-1.29.149.gh.tar.gz 11591822 BLAKE2B 
28a5e96640dbef7a71b238edd629f72657001d1db2df5863babf3fe3eb883b5692dd86ea4c56749e65447f54b533976ad92901bf34554ccbd249c5d68dce1594
 SHA512 
fe497eb87738bbf24d436e8814e52878de8fd8622472e1d002e47b85c5577e3a5912d9ffe9deb52831a9b4f143f602ef9c522e9ff7a9b5819277654886f93b8d

diff --git a/dev-python/botocore/botocore-1.29.149.ebuild 
b/dev-python/botocore/botocore-1.29.149.ebuild
new file mode 100644
index ..3ced99abe4ff
--- /dev/null
+++ b/dev-python/botocore/botocore-1.29.149.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2023 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 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_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
+   
tests/functional/test_credentials.py::SSOSessionTest::test_token_chosen_from_provider
+   # urllib3-2 compatibility, mock relies on implementation details
+   
tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_continue_no_response_from_server
+   
tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_continue_returned
+   
tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_continue_sends_307
+   
tests/unit/test_awsrequest.py::TestAWSHTTPConnection::test_expect_100_sends_connection_header
+   

[gentoo-commits] repo/proj/guru:dev commit in: net-misc/ooni-probe-cli/

2023-06-07 Thread Anna Vyalkova
commit: 7a1bba5af15a55da95075dcb3e57920f6fcdda9c
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Thu Jun  8 04:23:46 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Thu Jun  8 04:23:46 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7a1bba5a

net-misc/ooni-probe-cli: add 3.17.4, drop 3.17.2

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 net-misc/ooni-probe-cli/Manifest| 2 +-
 .../{ooni-probe-cli-3.17.2.ebuild => ooni-probe-cli-3.17.4.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/ooni-probe-cli/Manifest b/net-misc/ooni-probe-cli/Manifest
index 92525961f..ebbaa0ed3 100644
--- a/net-misc/ooni-probe-cli/Manifest
+++ b/net-misc/ooni-probe-cli/Manifest
@@ -1,2 +1,2 @@
-DIST ooni-probe-cli-3.17.2.tar.gz 22665844 BLAKE2B 
0f98c8aa96d3cb3bee000624dada4ddd464658714b0f690192c530ba1394753f07cf0acaadc3a2d03e7d59756597f4770f333bfe127c5b35800beef5fdaef2b6
 SHA512 
311e943f3349c73dfd83f4b7c9a7abf87f35eac7bb655ebaeab78a1aa0293c78236de5e0204f822940292ae4c96fbb8bb0489500e3d7b464f8f1ecbb8aeb98c9
 DIST ooni-probe-cli-3.17.3.tar.gz 24061703 BLAKE2B 
601ce8a51639095f4b110507310c1febd9e96555d8b9f444afea6111d69587af3b880c7d31e8f4afc32141a7ec74dd7f8565da8f017d76435b16db4b71a57278
 SHA512 
87ad3c41ea70a89272bcd7662ff9b56b319865edeb5bff5a44df202a2b634c8be3dbc7ca85481a9f1a3bbb7ec97138094d25937cfbcddf727e1dafb10c787ec0
+DIST ooni-probe-cli-3.17.4.tar.gz 24104314 BLAKE2B 
ea3cbe374220b09dfe047e836824951782de8ec780d934eb8415a1126f07c77960b2f122e5436d461244c8d1ffa7e2d76fe0dcb763a0dd6d621441f8df7a400f
 SHA512 
8d80d2c4a4d91a515c061604d8abcc3138b0ee635f799f06e5b812356c1af2b021223e80497c68dff2ccf6346bfe4a17e22a25837634efd9a6add64ae7bce5ad

diff --git a/net-misc/ooni-probe-cli/ooni-probe-cli-3.17.2.ebuild 
b/net-misc/ooni-probe-cli/ooni-probe-cli-3.17.4.ebuild
similarity index 100%
rename from net-misc/ooni-probe-cli/ooni-probe-cli-3.17.2.ebuild
rename to net-misc/ooni-probe-cli/ooni-probe-cli-3.17.4.ebuild



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

2023-06-07 Thread Anna Vyalkova
commit: 164fa25fc182a368fa7ea4e61695cf179e824a5f
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Thu Jun  8 04:00:28 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Thu Jun  8 04:00:28 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=164fa25f

dev-python/opentype-sanitizer: add 9.1.0

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-python/opentype-sanitizer/Manifest |  1 +
 .../opentype-sanitizer-9.1.0.ebuild| 32 ++
 2 files changed, 33 insertions(+)

diff --git a/dev-python/opentype-sanitizer/Manifest 
b/dev-python/opentype-sanitizer/Manifest
index 4dfa0ee03..1c00b5c3d 100644
--- a/dev-python/opentype-sanitizer/Manifest
+++ b/dev-python/opentype-sanitizer/Manifest
@@ -1 +1,2 @@
 DIST opentype-sanitizer-9.0.0.tar.gz 162061 BLAKE2B 
b52cfe504e079e93b5b207886a06c126d44677f43d3e51e892c8589cb7644d86f2179e530fa98dc52239701b2f44ea180739e06bbffcc0be28b820418c73085f
 SHA512 
0890b3c6d3e6aa4f1d4156354ce4fc191cbbb2390ffbec3e3feb3a046ab28f7b14f8c75d6c599cdc8fc8317286f79f87d036099179f5d5100ceeb99987f97b27
+DIST opentype-sanitizer-9.1.0.tar.gz 159945 BLAKE2B 
ae223dbca34bcad0ec656691be85b01b2d3beda5965b06e7c617742aa6a93f7d9adf4e6f3df9d454c29afbd24e4493580bb19dab1e76b7a218d942287d1b8408
 SHA512 
d995a1d30591726065d18b5c2eda817b01effe637ab2013c927238e75810ff215088801c4bcdd7dec43cfcf5043f3669ae2ed6502ded834c8f3c8cfe712354e9

diff --git a/dev-python/opentype-sanitizer/opentype-sanitizer-9.1.0.ebuild 
b/dev-python/opentype-sanitizer/opentype-sanitizer-9.1.0.ebuild
new file mode 100644
index 0..1646da604
--- /dev/null
+++ b/dev-python/opentype-sanitizer/opentype-sanitizer-9.1.0.ebuild
@@ -0,0 +1,32 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_EXT=1
+PYPI_NO_NORMALIZE=1
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python wrapper for the OpenType Sanitizer"
+HOMEPAGE="
+   https://pypi.org/project/opentype-sanitizer/
+   https://github.com/googlefonts/ots-python
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   app-arch/lz4:=
+   media-libs/woff2
+   sys-libs/zlib:=
+"
+DEPEND="${RDEPEND}
+   dev-cpp/gtest
+"
+BDEPEND="dev-util/meson"
+
+distutils_enable_tests pytest



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

2023-06-07 Thread Anna Vyalkova
commit: 9405b1d278dcbae454e2e9e6b36facb93f5e4858
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Thu Jun  8 04:07:07 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Thu Jun  8 04:07:07 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9405b1d2

net-client/lagrange: add 1.16.3, drop 1.16.1

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 net-client/lagrange/Manifest  | 4 ++--
 .../lagrange/{lagrange-1.16.1.ebuild => lagrange-1.16.3.ebuild}   | 0
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-client/lagrange/Manifest b/net-client/lagrange/Manifest
index 37d7d9f4e..b3f532c96 100644
--- a/net-client/lagrange/Manifest
+++ b/net-client/lagrange/Manifest
@@ -1,4 +1,4 @@
-DIST lagrange-1.16.1.tar.gz 9997807 BLAKE2B 
06320ccdabd0be264b98987a355c2880640dc1bb3721ad2813ad74f1300f713498e4101cac1ed3e7d63d2f937211e425060441acb7f3aae96b026c2073b69c6d
 SHA512 
67f437c5f9e04f717a8aaec3542d37f58e057ec6ba9ebfa260a4cc19fd7727f0d7d06e6b4c56633bfed5d14755877fdd46be8756244876fb3f0ac66ad4fc2472
-DIST lagrange-1.16.1.tar.gz.sig 488 BLAKE2B 
c8866d4c9aefde8430c163d749b6927241c785bd828b6d4232739d1f13f9a40f32c4f132dfea871a04cf47f43ad369f1dc0d64ec71f2e906f0b01cae92c94ecf
 SHA512 
8a3aa1a00dc15d98111cc8283da3ea93f6badb30561423a07494fc14649d7018b35b8b36aa1628ba2ff02418475a69b264cf932582de852e9e5009196785d1be
 DIST lagrange-1.16.2.tar.gz 1990 BLAKE2B 
95fe1a0390c418aafbb23d79ac6d592be1387cd9a5d30ed1bad95d75dc576c7e5825522f36fe69bdedf2463dae966bbd329fa22bb2604c55420d724e6a4c2bc4
 SHA512 
64a34fd05404feb85ba0851958cf5b4cadd58e71057ee6ae34a7b31015453ce08310583259b96ec46885f7ee398ae2d27b2b7ff5a375a908e5b90b821cd57157
 DIST lagrange-1.16.2.tar.gz.sig 488 BLAKE2B 
15292815047dd7cd059d94cd73ce04a96b4d11b0e9ff5877547dc28d9ad19254573b23c10e2b5322f1d2830602d2ffad3aac77831b6af73774105ba5ca223d85
 SHA512 
0bf62c82014f84f5f7f7cde8d387e20d26da0de057ee3e783d2b1a73d6c4d0d03437bbfc5a0bb2833a9bcd6688674edabfe377fa3df7fe33b0d927a6e785d187
+DIST lagrange-1.16.3.tar.gz 10002363 BLAKE2B 
d58da7f4e615eb0a6f54275c33bc5bc4fddb25e4adbff3a4da76310495c85fee866389fc16032096e6cb8a4ffb4b6d05b271e6d0ec8d053818b37dd210daa449
 SHA512 
8eaa3d123969f8d436f4c44700e509da015710dd3a9318f6cd7787a48136bb457b6b5cc160eb64f44402a69307e72a0438b1ba0fb743775e280591f3373c2533
+DIST lagrange-1.16.3.tar.gz.sig 488 BLAKE2B 
2b1321fe0c27e1d637f80dd31e36fe38511e277be6da7c9a254f7e4954da6ae43badbe62d24e42f99243c5de9d2bed741d7880d9223c48e54fb06f6357f3ad0b
 SHA512 
87a99d4aa6a93e8a4e0df29c4b0c2dbfd94552ba49d60fcc3cd5b51f69c64434de8585465556232fcc93d51fbb3fd3c46a78633195a59ce3fbdf3eeb6f9db8d9

diff --git a/net-client/lagrange/lagrange-1.16.1.ebuild 
b/net-client/lagrange/lagrange-1.16.3.ebuild
similarity index 100%
rename from net-client/lagrange/lagrange-1.16.1.ebuild
rename to net-client/lagrange/lagrange-1.16.3.ebuild



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

2023-06-07 Thread Matt Turner
commit: 61091f465be228d81785d5cde71eb7b881642e87
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jun  8 01:08:13 2023 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jun  8 01:08:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=61091f46

app-text/rarian: Drop old versions

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

 app-text/rarian/Manifest   |  2 --
 app-text/rarian/rarian-0.8.1-r4.ebuild | 61 --
 2 files changed, 63 deletions(-)

diff --git a/app-text/rarian/Manifest b/app-text/rarian/Manifest
index dbc226d7b194..fe3f1ccb63c1 100644
--- a/app-text/rarian/Manifest
+++ b/app-text/rarian/Manifest
@@ -1,3 +1 @@
-DIST rarian-0.8.1-r4-patches.tar.xz 33868 BLAKE2B 
e272598fce4119ad4995b665b988080dc4aee23ba6d03e462e4c76186a418601cbc5c4f403beb64aad05c9e7003d58c2070122ddcaf7188335ec4b8370eb7afb
 SHA512 
766223faedb743c350de4f5c4dc3081f95a2c617d52ddedd4e78f64b3cbbacc20293cc4e98bbe38b41f795cefbf83d624d4434c2b94129ce224ad66da9e5760c
-DIST rarian-0.8.1.tar.gz 459461 BLAKE2B 
7589633a3abc188a7e83adede964b4d293984ad9c896e5c8116775905dfc3acc3b0cfbbee574b26d1c3966501f8b42e61df9910c840c58bfcd0b41d065a30c26
 SHA512 
ddc640e1ac210e9dc3fcdde6bbff6e21dabe97b160b531cac68d47d1b831dec71b7c4aced9819cfafd8f89f290920c4e33550b8e29d9872a1c1a202d6fe8e3eb
 DIST rarian-0.8.4.tar.bz2 402769 BLAKE2B 
bc077a6584f7ad0967cdaf298769d1da5ea4b9545191bcf7a8d4f07178666c416b8471a79447e6e3ff52bb2bfd8c55afc7d1638211d245abd9d4efe82c30a7a2
 SHA512 
5daf8c70438db566f8c4fc6a9b553898e078882307951e7060873fb4c32c12a6482f560f14dab9376917996a3a2f84a36bdf2721fa94c3e63379e3ea0ed131d4

diff --git a/app-text/rarian/rarian-0.8.1-r4.ebuild 
b/app-text/rarian/rarian-0.8.1-r4.ebuild
deleted file mode 100644
index 044d5c514ec0..
--- a/app-text/rarian/rarian-0.8.1-r4.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools
-
-DESCRIPTION="A documentation metadata library"
-HOMEPAGE="https://rarian.freedesktop.org/;
-SRC_URI="
-   https://${PN}.freedesktop.org/Releases/${P}.tar.gz
-   https://dev.gentoo.org/~soap/distfiles/${P}-r4-patches.tar.xz;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
-
-RDEPEND="
-   dev-libs/libxslt
-   dev-libs/tinyxml
-   || (
-   sys-apps/util-linux
-   app-misc/getopt
-   )"
-DEPEND="${RDEPEND}"
-
-PATCHES=(
-   
"${WORKDIR}"/0001-Fix-uri-of-omf-files-produced-by-rarian-sk-preinstal.patch
-   "${WORKDIR}"/0002-Allow-building-against-system-copy-of-tinyxml.patch
-   
"${WORKDIR}"/0003-Allow-to-specify-only-the-prefix-of-an-info-page-e.g.patch
-   
"${WORKDIR}"/0004-Fix-a-crash-when-opening-files-without-dots-in-their.patch
-   "${WORKDIR}"/0005-Make-librarian-obey-to-LC_MESSAGES.patch
-   "${WORKDIR}"/0006-Fix-m4-syntax-so-that-autoreconf-doesn-t-break.patch
-   "${WORKDIR}"/0007-Remove-the-nonexistent-dist-gzip-Automake-option.patch
-   "${WORKDIR}"/0008-Fix-OMF-category-parsing.patch
-   
"${WORKDIR}"/0009-Allow-the-getopt-command-to-be-customized-at-configu.patch
-   "${WORKDIR}"/0010-Wimplicit-int.patch
-)
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=()
-   # https://bugs.gentoo.org/show_bug.cgi?id=409811
-   # https://bugs.freedesktop.org/show_bug.cgi?id=53264
-   if ! has_version sys-apps/util-linux; then
-   myconf=( --with-getopt=getopt-long )
-   fi
-
-   econf \
-   --localstatedir="${EPREFIX}"/var \
-   "${myconf[@]}"
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-}



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

2023-06-07 Thread Georgy Yakovlev
commit: ad740d09d0a952503a4ecee24d1096207d2e0785
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jun  8 00:50:52 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jun  8 00:53:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad740d09

dev-lang/rust-bin: re-enable strip in 1.70.0

just skip libLLVM only

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

 .../{rust-bin-1.70.0.ebuild => rust-bin-1.70.0-r1.ebuild}| 9 +
 1 file changed, 5 insertions(+), 4 deletions(-)

diff --git a/dev-lang/rust-bin/rust-bin-1.70.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.70.0-r1.ebuild
similarity index 97%
rename from dev-lang/rust-bin/rust-bin-1.70.0.ebuild
rename to dev-lang/rust-bin/rust-bin-1.70.0-r1.ebuild
index 93ef429779a2..5205a10f872a 100644
--- a/dev-lang/rust-bin/rust-bin-1.70.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.70.0-r1.ebuild
@@ -39,10 +39,6 @@ BDEPEND="
 
 REQUIRED_USE="x86? ( cpu_flags_x86_sse2 )"
 
-# stripping rust may break it (at least on x86_64)
-# https://github.com/rust-lang/rust/issues/112286
-RESTRICT="strip"
-
 QA_PREBUILT="
opt/${P}/bin/.*
opt/${P}/lib/.*.so
@@ -208,6 +204,11 @@ multilib_src_install() {
 
# BUG: installs x86_64 binary on other arches
rm -f "${ED}/opt/${P}/lib/rustlib/"*/bin/rust-llvm-dwp || die
+
+   # libLLVM must NOT be stripped
+   # it's not present on all arches, but if present and stripped rustc 
will segfault.
+   # https://github.com/rust-lang/rust/issues/112286
+   dostrip -x *libLLVM-*
 }
 
 pkg_postinst() {



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

2023-06-07 Thread Patrick McLean
commit: 42186b4b750f9d448eeba0946dbc22732895ed7d
Author: Patrick McLean  gentoo  org>
AuthorDate: Thu Jun  8 00:06:50 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Thu Jun  8 00:06:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42186b4b

sys-cluster/ceph: Revbump, remove leveldb dep again, drop old

Signed-off-by: Patrick McLean  gentoo.org>

 sys-cluster/ceph/Manifest  |   2 -
 sys-cluster/ceph/ceph-17.2.5-r6.ebuild | 480 -
 sys-cluster/ceph/ceph-17.2.6-r2.ebuild | 480 -
 ...ceph-17.2.6-r3.ebuild => ceph-17.2.6-r4.ebuild} |   1 -
 4 files changed, 963 deletions(-)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index a229700775f4..c6a19a4f4244 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -1,5 +1,3 @@
 DIST ceph-16.2.13.tar.gz 157213576 BLAKE2B 
cc319ff67f6320c101341d7bbca0d49630fd6d4a5ed48b34e73a9e780ddf934adc35e3ff09e32115fe4b9a853bff9a85ca2c1e5e62d5596251d2dae535726a28
 SHA512 
39ec2bed1de0276f08bf93241f9fb275893041fd5f20ade75e68728107011ae5d01aed532d5afd8805951d09061a5a3d96c4311701c8897a29668f77126c19ab
-DIST ceph-17.2.5.tar.gz 169004360 BLAKE2B 
b6d8df5f9b58de5e42fed5d16b1c82d2178297f8bb1b6cf9c42ff55d6a5b2e20fe413feeab038738f62342576ef59fff7091b87648c10cf71401377b0ffa5dc8
 SHA512 
10cd3d9eb01c91c148a92f1f7d040bbd78af5bb1ab15d071d93f54b37097dc9e1268eed9e788fe32794d137f6af81abd6a2aeaee39cef44d2c45234a15cc6020
 DIST ceph-17.2.6.tar.gz 168093221 BLAKE2B 
f79efce9bd7f485b43ae1b4da94a1d9fb3753003f34535e93c80e480ffeaaf054d371f75bca72402da5f9dd460aafa820bb2af550d213bdbcca74aa939180431
 SHA512 
dca9aea2ce210c15fcc34cb06a5dc5b4488ffa36d684166d47ebd87e48b54b6fee0882e1c67007a780e1c25754e9bc6e760cc10f60ea1183263f8504ef2dbd9b
-DIST ceph-xsimd-17.2.5.tar.gz 173025 BLAKE2B 
54679c24804c195ae55b9f49589e331dde92c6d89aaa20e827539e9a4e0010c7549cdd5cf02a7ebed83f953ab2a6f1d9cc9a98cf45c3dc7758ae4938c9c43713
 SHA512 
ecc58e7909648aaa22aefbf76ee2c5a2bece4b1b88da9c7eda1b69a46247e619ff99c4366afd6015f95debd68c1a6b89292c677b9049462d0fc0255fbc0c2a33
 DIST ceph-xsimd-17.2.6.tar.gz 173025 BLAKE2B 
54679c24804c195ae55b9f49589e331dde92c6d89aaa20e827539e9a4e0010c7549cdd5cf02a7ebed83f953ab2a6f1d9cc9a98cf45c3dc7758ae4938c9c43713
 SHA512 
ecc58e7909648aaa22aefbf76ee2c5a2bece4b1b88da9c7eda1b69a46247e619ff99c4366afd6015f95debd68c1a6b89292c677b9049462d0fc0255fbc0c2a33

diff --git a/sys-cluster/ceph/ceph-17.2.5-r6.ebuild 
b/sys-cluster/ceph/ceph-17.2.5-r6.ebuild
deleted file mode 100644
index 95be155b4526..
--- a/sys-cluster/ceph/ceph-17.2.5-r6.ebuild
+++ /dev/null
@@ -1,480 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-LUA_COMPAT=( lua5-{3..4} )
-
-inherit check-reqs bash-completion-r1 cmake flag-o-matic lua-single \
-   python-r1 udev readme.gentoo-r1 toolchain-funcs systemd tmpfiles
-
-XSIMD_HASH="aeec9c872c8b475dedd7781336710f2dd2666cb2"
-SRC_URI="
-   https://download.ceph.com/tarballs/${P}.tar.gz
-   parquet? ( 
https://github.com/xtensor-stack/xsimd/archive/${XSIMD_HASH}.tar.gz -> 
ceph-xsimd-${PV}.tar.gz )
-"
-KEYWORDS="amd64 ~arm64"
-
-DESCRIPTION="Ceph distributed filesystem"
-HOMEPAGE="https://ceph.com/;
-
-LICENSE="Apache-2.0 LGPL-2.1 CC-BY-SA-3.0 GPL-2 GPL-2+ LGPL-2+ LGPL-2.1 LGPL-3 
GPL-3 BSD Boost-1.0 MIT public-domain"
-SLOT="0"
-
-CPU_FLAGS_X86=(avx2 avx512f pclmul sse{,2,3,4_1,4_2} ssse3)
-
-IUSE="
-   babeltrace +cephfs custom-cflags diskprediction dpdk fuse grafana
-   jemalloc jaeger kafka kerberos ldap lttng +mgr +parquet pmdk rabbitmq
-   +radosgw rbd-rwl rbd-ssd rdma rgw-lua +ssl spdk +sqlite +system-boost
-   systemd +tcmalloc test +uring xfs zbd zfs
-"
-
-IUSE+="$(printf "cpu_flags_x86_%s\n" ${CPU_FLAGS_X86[@]})"
-
-DEPEND="
-   ${LUA_DEPS}
-   ${PYTHON_DEPS}
-   acct-group/ceph
-   acct-user/ceph
-   virtual/libudev:=
-   app-arch/bzip2:=
-   app-arch/lz4:=
-   app-arch/snappy:=
-   >=app-arch/snappy-1.1.9-r1
-   app-arch/zstd:=
-   app-shells/bash:0
-   app-misc/jq:=
-   dev-libs/crypto++:=
-   dev-cpp/gflags:=
-   dev-lang/jsonnet:=
-   dev-libs/libaio:=
-   >=dev-libs/libfmt-6.2.1:=
-   =dev-util/google-perftools-2.6.1:= )
-   jaeger? (
-   dev-cpp/nlohmann_json:=
-   dev-cpp/opentelemetry-cpp:=[jaeger]
-   )
-   kafka? ( dev-libs/librdkafka:= )
-   kerberos? ( virtual/krb5 )
-   ldap? ( net-nds/openldap:= )
-   lttng? ( dev-util/lttng-ust:= )
-   parquet? ( dev-libs/re2:= )
-   pmdk? ( >=dev-libs/pmdk-1.10.0:= )
-   rabbitmq? ( net-libs/rabbitmq-c:= )
-   radosgw? (
-   dev-libs/icu:=
-   dev-libs/expat:=
-   net-misc/curl:=[curl_ssl_openssl]
-   )
-   rbd-rwl? ( dev-libs/pmdk:= )
- 

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

2023-06-07 Thread William Hubbs
commit: ec517c427ddbc579fe2c6983315916517f9f827b
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:21:36 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:21:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec517c42

sys-cluster/kube-proxy: stabilize 1.27.2 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-proxy/kube-proxy-1.27.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-proxy/kube-proxy-1.27.2.ebuild 
b/sys-cluster/kube-proxy/kube-proxy-1.27.2.ebuild
index ea991ff91e56..334b1e38e138 100644
--- a/sys-cluster/kube-proxy/kube-proxy-1.27.2.ebuild
+++ b/sys-cluster/kube-proxy/kube-proxy-1.27.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 RDEPEND="net-firewall/conntrack-tools"



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

2023-06-07 Thread William Hubbs
commit: 3d0ee5e9d36b3c3b913f3c44bf06ea2d2cf3b3bf
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:21:38 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:21:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d0ee5e9

sys-cluster/kube-scheduler: stabilize 1.27.2 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-scheduler/kube-scheduler-1.27.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.27.2.ebuild 
b/sys-cluster/kube-scheduler/kube-scheduler-1.27.2.ebuild
index 038445235f63..e17d60692ecd 100644
--- a/sys-cluster/kube-scheduler/kube-scheduler-1.27.2.ebuild
+++ b/sys-cluster/kube-scheduler/kube-scheduler-1.27.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-scheduler



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

2023-06-07 Thread William Hubbs
commit: 7f35c954058f446e38616a9c1136168e6c04781c
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:21:35 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:21:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f35c954

sys-cluster/kubelet: stabilize 1.27.2 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubelet/kubelet-1.27.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubelet/kubelet-1.27.2.ebuild 
b/sys-cluster/kubelet/kubelet-1.27.2.ebuild
index cd8a1735b583..9df9f88e3411 100644
--- a/sys-cluster/kubelet/kubelet-1.27.2.ebuild
+++ b/sys-cluster/kubelet/kubelet-1.27.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.20"



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

2023-06-07 Thread William Hubbs
commit: 1b04fc4244188c858e6b4847f989313d17a79032
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:21:31 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:21:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b04fc42

sys-cluster/kube-apiserver: stabilize 1.27.2 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-apiserver/kube-apiserver-1.27.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.27.2.ebuild 
b/sys-cluster/kube-apiserver/kube-apiserver-1.27.2.ebuild
index 4385ac330a7d..914f0e96f092 100644
--- a/sys-cluster/kube-apiserver/kube-apiserver-1.27.2.ebuild
+++ b/sys-cluster/kube-apiserver/kube-apiserver-1.27.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="



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

2023-06-07 Thread William Hubbs
commit: 109133cab95eaa5a6f419f2be0fefdff8cd324ed
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:21:29 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:21:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=109133ca

sys-cluster/kubeadm: stabilize 1.27.2 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubeadm/kubeadm-1.27.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubeadm/kubeadm-1.27.2.ebuild 
b/sys-cluster/kubeadm/kubeadm-1.27.2.ebuild
index 6a547029ab05..c57918acdc39 100644
--- a/sys-cluster/kubeadm/kubeadm-1.27.2.ebuild
+++ b/sys-cluster/kubeadm/kubeadm-1.27.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.20"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-controller-manager/

2023-06-07 Thread William Hubbs
commit: a61692231018c590c9eef98b81533cc1178d1ecd
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:21:32 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:21:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6169223

sys-cluster/kube-controller-manager: stabilize 1.27.2 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 .../kube-controller-manager/kube-controller-manager-1.27.2.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-cluster/kube-controller-manager/kube-controller-manager-1.27.2.ebuild 
b/sys-cluster/kube-controller-manager/kube-controller-manager-1.27.2.ebuild
index dc4ca2df138b..dff13deb18dc 100644
--- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.27.2.ebuild
+++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.27.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-controller-manager



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

2023-06-07 Thread William Hubbs
commit: 8e2756f2219ddb6ecd5cb2b3108bf34bdee9f5d3
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:21:34 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:21:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8e2756f2

sys-cluster/kubectl: stabilize 1.27.2 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubectl/kubectl-1.27.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubectl/kubectl-1.27.2.ebuild 
b/sys-cluster/kubectl/kubectl-1.27.2.ebuild
index ffa067f3b06c..922515b4f335 100644
--- a/sys-cluster/kubectl/kubectl-1.27.2.ebuild
+++ b/sys-cluster/kubectl/kubectl-1.27.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 BDEPEND=">=dev-lang/go-1.20"



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

2023-06-07 Thread William Hubbs
commit: 4360c71d0d4f0983e02b5564e4daa9fb0a0ab187
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:36 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4360c71d

sys-cluster/kube-proxy: stabilize 1.26.5 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-proxy/kube-proxy-1.26.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-proxy/kube-proxy-1.26.5.ebuild 
b/sys-cluster/kube-proxy/kube-proxy-1.26.5.ebuild
index c2bf8bb7da7f..15ea2dcb 100644
--- a/sys-cluster/kube-proxy/kube-proxy-1.26.5.ebuild
+++ b/sys-cluster/kube-proxy/kube-proxy-1.26.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 RDEPEND="net-firewall/conntrack-tools"



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

2023-06-07 Thread William Hubbs
commit: 90224cda47080b0eee8dd6db4d792df43c992281
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:35 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90224cda

sys-cluster/kubelet: stabilize 1.26.5 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubelet/kubelet-1.26.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubelet/kubelet-1.26.5.ebuild 
b/sys-cluster/kubelet/kubelet-1.26.5.ebuild
index ea082c4400a5..cff3013eb950 100644
--- a/sys-cluster/kubelet/kubelet-1.26.5.ebuild
+++ b/sys-cluster/kubelet/kubelet-1.26.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.19"



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

2023-06-07 Thread William Hubbs
commit: ab00c607ca917b01f824e0c6591153f816fd2ba1
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:38 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab00c607

sys-cluster/kube-scheduler: stabilize 1.26.5 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-scheduler/kube-scheduler-1.26.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.26.5.ebuild 
b/sys-cluster/kube-scheduler/kube-scheduler-1.26.5.ebuild
index b9b95df178b2..524876afc4d5 100644
--- a/sys-cluster/kube-scheduler/kube-scheduler-1.26.5.ebuild
+++ b/sys-cluster/kube-scheduler/kube-scheduler-1.26.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-scheduler



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

2023-06-07 Thread William Hubbs
commit: a2e69e2859aea05d9e2ecdc4cebb8cf5f5987df2
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:29 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2e69e28

sys-cluster/kubeadm: stabilize 1.26.5 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubeadm/kubeadm-1.26.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubeadm/kubeadm-1.26.5.ebuild 
b/sys-cluster/kubeadm/kubeadm-1.26.5.ebuild
index f9b83313a772..c428b054727b 100644
--- a/sys-cluster/kubeadm/kubeadm-1.26.5.ebuild
+++ b/sys-cluster/kubeadm/kubeadm-1.26.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.19"



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

2023-06-07 Thread William Hubbs
commit: 5159e2de59ac8409f2cdd51fafa4a8253c58da29
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:33 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5159e2de

sys-cluster/kubectl: stabilize 1.26.5 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubectl/kubectl-1.26.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubectl/kubectl-1.26.5.ebuild 
b/sys-cluster/kubectl/kubectl-1.26.5.ebuild
index 0a6d3b7c65b8..da2fb28a9977 100644
--- a/sys-cluster/kubectl/kubectl-1.26.5.ebuild
+++ b/sys-cluster/kubectl/kubectl-1.26.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 BDEPEND=">=dev-lang/go-1.19"



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-controller-manager/

2023-06-07 Thread William Hubbs
commit: cf9d0d7eb80ce9d8f8bf491966eb8119a9e488a4
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:32 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf9d0d7e

sys-cluster/kube-controller-manager: stabilize 1.26.5 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 .../kube-controller-manager/kube-controller-manager-1.26.5.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.5.ebuild 
b/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.5.ebuild
index c4863b6e8840..a5b017f18d03 100644
--- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.5.ebuild
+++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.26.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-controller-manager



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

2023-06-07 Thread William Hubbs
commit: 5098bd8afe82062b7680b7141916ed675e298910
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:31 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:31 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5098bd8a

sys-cluster/kube-apiserver: stabilize 1.26.5 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-apiserver/kube-apiserver-1.26.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.26.5.ebuild 
b/sys-cluster/kube-apiserver/kube-apiserver-1.26.5.ebuild
index 467da4d39d0b..732d08517b60 100644
--- a/sys-cluster/kube-apiserver/kube-apiserver-1.26.5.ebuild
+++ b/sys-cluster/kube-apiserver/kube-apiserver-1.26.5.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="



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

2023-06-07 Thread William Hubbs
commit: 5dd125135d81cd882d449a32ce17912bb8c576ca
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:20:00 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:20:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5dd12513

sys-cluster/kube-scheduler: stabilize 1.25.10 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-scheduler/kube-scheduler-1.25.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.25.10.ebuild 
b/sys-cluster/kube-scheduler/kube-scheduler-1.25.10.ebuild
index b9b95df178b2..524876afc4d5 100644
--- a/sys-cluster/kube-scheduler/kube-scheduler-1.25.10.ebuild
+++ b/sys-cluster/kube-scheduler/kube-scheduler-1.25.10.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-scheduler



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

2023-06-07 Thread William Hubbs
commit: b664e6ceac602b81937897b4e6a564eac1502ba6
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:19:59 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b664e6ce

sys-cluster/kube-proxy: stabilize 1.25.10 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-proxy/kube-proxy-1.25.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-proxy/kube-proxy-1.25.10.ebuild 
b/sys-cluster/kube-proxy/kube-proxy-1.25.10.ebuild
index c2bf8bb7da7f..15ea2dcb 100644
--- a/sys-cluster/kube-proxy/kube-proxy-1.25.10.ebuild
+++ b/sys-cluster/kube-proxy/kube-proxy-1.25.10.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 RDEPEND="net-firewall/conntrack-tools"



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

2023-06-07 Thread William Hubbs
commit: 4821787335b121174a98ab440a65631e6e4adeb4
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:19:58 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48217873

sys-cluster/kubelet: stabilize 1.25.10 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubelet/kubelet-1.25.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubelet/kubelet-1.25.10.ebuild 
b/sys-cluster/kubelet/kubelet-1.25.10.ebuild
index ea082c4400a5..cff3013eb950 100644
--- a/sys-cluster/kubelet/kubelet-1.25.10.ebuild
+++ b/sys-cluster/kubelet/kubelet-1.25.10.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.19"



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

2023-06-07 Thread William Hubbs
commit: 26466567afc37bbdefcdd37c5a8b4a8a48478030
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:19:56 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26466567

sys-cluster/kubectl: stabilize 1.25.10 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubectl/kubectl-1.25.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubectl/kubectl-1.25.10.ebuild 
b/sys-cluster/kubectl/kubectl-1.25.10.ebuild
index 0a6d3b7c65b8..da2fb28a9977 100644
--- a/sys-cluster/kubectl/kubectl-1.25.10.ebuild
+++ b/sys-cluster/kubectl/kubectl-1.25.10.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 BDEPEND=">=dev-lang/go-1.19"



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

2023-06-07 Thread William Hubbs
commit: 359d31cbbf77444e4ea216f62788db8ea7531bf5
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:19:52 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=359d31cb

sys-cluster/kubeadm: stabilize 1.25.10 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubeadm/kubeadm-1.25.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubeadm/kubeadm-1.25.10.ebuild 
b/sys-cluster/kubeadm/kubeadm-1.25.10.ebuild
index f9b83313a772..c428b054727b 100644
--- a/sys-cluster/kubeadm/kubeadm-1.25.10.ebuild
+++ b/sys-cluster/kubeadm/kubeadm-1.25.10.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.19"



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

2023-06-07 Thread William Hubbs
commit: 6c9f7b5966788965bc961047297af7c4d077b0c8
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:19:53 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c9f7b59

sys-cluster/kube-apiserver: stabilize 1.25.10 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-apiserver/kube-apiserver-1.25.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.25.10.ebuild 
b/sys-cluster/kube-apiserver/kube-apiserver-1.25.10.ebuild
index 467da4d39d0b..732d08517b60 100644
--- a/sys-cluster/kube-apiserver/kube-apiserver-1.25.10.ebuild
+++ b/sys-cluster/kube-apiserver/kube-apiserver-1.25.10.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-controller-manager/

2023-06-07 Thread William Hubbs
commit: f942970c7f28b926f373e723d6940632a8c6e5dc
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:19:55 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f942970c

sys-cluster/kube-controller-manager: stabilize 1.25.10 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 .../kube-controller-manager/kube-controller-manager-1.25.10.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.10.ebuild 
b/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.10.ebuild
index c4863b6e8840..a5b017f18d03 100644
--- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.10.ebuild
+++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.25.10.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-controller-manager



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

2023-06-07 Thread William Hubbs
commit: 8ad247ff47b60dbb2d18a7883ecbff365fddb106
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:18:54 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ad247ff

sys-cluster/kubectl: stabilize 1.24.14 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubectl/kubectl-1.24.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubectl/kubectl-1.24.14.ebuild 
b/sys-cluster/kubectl/kubectl-1.24.14.ebuild
index cb0239165ac7..f5eaa1f9ddd8 100644
--- a/sys-cluster/kubectl/kubectl-1.24.14.ebuild
+++ b/sys-cluster/kubectl/kubectl-1.24.14.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 BDEPEND=">=dev-lang/go-1.18.1"



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

2023-06-07 Thread William Hubbs
commit: 4aa8d2ebc1daaa9e5a06776a6843e6acca8ed40a
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:18:55 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4aa8d2eb

sys-cluster/kubelet: stabilize 1.24.14 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubelet/kubelet-1.24.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubelet/kubelet-1.24.14.ebuild 
b/sys-cluster/kubelet/kubelet-1.24.14.ebuild
index c855f8434257..547382fb6c70 100644
--- a/sys-cluster/kubelet/kubelet-1.24.14.ebuild
+++ b/sys-cluster/kubelet/kubelet-1.24.14.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.18.1"



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

2023-06-07 Thread William Hubbs
commit: b1b9c4e2bac8bcf719e47f8baade5194c42f4d8a
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:18:57 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1b9c4e2

sys-cluster/kube-proxy: stabilize 1.24.14 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-proxy/kube-proxy-1.24.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-proxy/kube-proxy-1.24.14.ebuild 
b/sys-cluster/kube-proxy/kube-proxy-1.24.14.ebuild
index 0cc8ca0574f5..d228a4990b81 100644
--- a/sys-cluster/kube-proxy/kube-proxy-1.24.14.ebuild
+++ b/sys-cluster/kube-proxy/kube-proxy-1.24.14.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 RDEPEND="net-firewall/conntrack-tools"



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

2023-06-07 Thread William Hubbs
commit: f274cf6aac79528fcfac9afb5cbe636c4789fa04
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:18:58 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f274cf6a

sys-cluster/kube-scheduler: stabilize 1.24.14 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-scheduler/kube-scheduler-1.24.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.24.14.ebuild 
b/sys-cluster/kube-scheduler/kube-scheduler-1.24.14.ebuild
index 4d29f574fe61..25f887df0345 100644
--- a/sys-cluster/kube-scheduler/kube-scheduler-1.24.14.ebuild
+++ b/sys-cluster/kube-scheduler/kube-scheduler-1.24.14.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-scheduler



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

2023-06-07 Thread William Hubbs
commit: e0ea85d0b7d8ca9ce19fc0ba6d196adc919c3464
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:18:51 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0ea85d0

sys-cluster/kube-apiserver: stabilize 1.24.14 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kube-apiserver/kube-apiserver-1.24.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.24.14.ebuild 
b/sys-cluster/kube-apiserver/kube-apiserver-1.24.14.ebuild
index 80549a7af0d5..d173c8d9825d 100644
--- a/sys-cluster/kube-apiserver/kube-apiserver-1.24.14.ebuild
+++ b/sys-cluster/kube-apiserver/kube-apiserver-1.24.14.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-cluster/kube-controller-manager/

2023-06-07 Thread William Hubbs
commit: 3308d87793504a17e3286ee1ad03f12db82fba4e
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:18:52 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3308d877

sys-cluster/kube-controller-manager: stabilize 1.24.14 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 .../kube-controller-manager/kube-controller-manager-1.24.14.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.14.ebuild 
b/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.14.ebuild
index 2d00c0ea6648..4d4b428d 100644
--- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.14.ebuild
+++ b/sys-cluster/kube-controller-manager/kube-controller-manager-1.24.14.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened"
 
 COMMON_DEPEND="acct-group/kube-controller-manager



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

2023-06-07 Thread William Hubbs
commit: 9e9daa20983cdb3c1c8d2c46e00557e38b1aab07
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Jun  7 23:18:39 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Jun  7 23:19:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e9daa20

sys-cluster/kubeadm: stabilize 1.24.14 for amd64

Signed-off-by: William Hubbs  gentoo.org>

 sys-cluster/kubeadm/kubeadm-1.24.14.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/kubeadm/kubeadm-1.24.14.ebuild 
b/sys-cluster/kubeadm/kubeadm-1.24.14.ebuild
index 9d1d7af21421..75b9826b1578 100644
--- a/sys-cluster/kubeadm/kubeadm-1.24.14.ebuild
+++ b/sys-cluster/kubeadm/kubeadm-1.24.14.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> kuber
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64"
+KEYWORDS="amd64 ~arm64"
 IUSE="hardened selinux"
 
 BDEPEND=">=dev-lang/go-1.18.1"



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

2023-06-07 Thread Anna Vyalkova
commit: 4308db24925483e516ebeb6058176c368196475c
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 23:16:27 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 23:16:27 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4308db24

app-portage/gentle: add a test dep

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 app-portage/gentle/gentle-0.1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/app-portage/gentle/gentle-0.1.ebuild 
b/app-portage/gentle/gentle-0.1.ebuild
index 238774459..67fa0d501 100644
--- a/app-portage/gentle/gentle-0.1.ebuild
+++ b/app-portage/gentle/gentle-0.1.ebuild
@@ -15,6 +15,8 @@ LICENSE="WTFPL-2"
 SLOT="0"
 KEYWORDS="~amd64"
 
+BDEPEND="test? ( app-text/xmldiff[${PYTHON_USEDEP}] )"
+
 distutils_enable_tests pytest
 
 pkg_postinst() {



[gentoo-commits] repo/gentoo:master commit in: x11-themes/tela-icon-theme/

2023-06-07 Thread Georgy Yakovlev
commit: fe66615fc77652a431ac89e16b96e1ec88f62e0e
Author: zackiloco  proton  me>
AuthorDate: Mon Jun  5 12:45:01 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:20:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe66615f

x11-themes/tela-icon-theme: Add 20230203

Signed-off-by: Steffen Winter  proton.me>
Closes: https://github.com/gentoo/gentoo/pull/30591
Signed-off-by: Georgy Yakovlev  gentoo.org>

 x11-themes/tela-icon-theme/Manifest|  2 +-
 .../tela-icon-theme-20230203.ebuild| 70 ++
 2 files changed, 71 insertions(+), 1 deletion(-)

diff --git a/x11-themes/tela-icon-theme/Manifest 
b/x11-themes/tela-icon-theme/Manifest
index bd10d9e3bba9..af1f0aaa500f 100644
--- a/x11-themes/tela-icon-theme/Manifest
+++ b/x11-themes/tela-icon-theme/Manifest
@@ -1 +1 @@
-DIST tela-icon-theme-20220828.tar.gz 3707567 BLAKE2B 
61a72b96df08cb5f3ef80b7aea5ca05e9b142607672f7213494c6f9fd0f458eeb87bd80842e14b7ed260f533088711f433357179c7c53d5beeeb76bafe2817d5
 SHA512 
6f0d26678ead12043bfc8943e2d40a507c2cfa8136a1556d53444efa5b1f6903307aead9255a38b3411980bd5353c3497bf224c1ed66a620d229b6a9a9079f83
+DIST tela-icon-theme-20230203.tar.gz 3774147 BLAKE2B 
c0b04ec934ed68a7d6267be030af861cf9c2c24e8367baebbc56b788f4dbec56dda2679190f33c739a04ed9ca3088138a1f89624e9beebf715149fbef2478576
 SHA512 
28ad9e67394ffa65bd1fe6052e38dd324487be621670bff933f3bb2aeee9134e656f1f8faebb060d5d765b808e008d5fede3d62a51b9ddca1e8047c927f3bdd1

diff --git a/x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild 
b/x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild
new file mode 100644
index ..c6ef1f2ee896
--- /dev/null
+++ b/x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild
@@ -0,0 +1,70 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit edo
+
+# eg. 20211225 -> 2021-12-25
+MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
+MY_PN="${PN^}"
+
+# standard comes first
+MY_COLOR_VARIANTS=( standard black blue brown green grey orange pink purple 
red yellow manjaro ubuntu dracula nord )
+
+inherit xdg
+
+DESCRIPTION="A flat colorful Design icon theme"
+HOMEPAGE="https://github.com/vinceliuice/Tela-icon-theme;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vinceliuice/${MY_PN}.git;
+else
+   
SRC_URI="https://github.com/vinceliuice/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz
 -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm64 ~ppc64"
+   S="${WORKDIR}/${MY_PN}-${MY_PV}"
+fi
+
+LICENSE="GPL-3+"
+SLOT="0"
+IUSE="+${MY_COLOR_VARIANTS[*]} +hardlink kde" # this is why standard comes 
first
+
+REQUIRED_USE="|| ( ${MY_COLOR_VARIANTS[*]} )"
+
+# not needed and slows us down, package installs 120 000 small files
+RESTRICT="binchecks strip test"
+
+# technically we can use app-arch/hardlink too, but it's deprecated
+BDEPEND="
+   app-shells/bash
+   sys-apps/util-linux[hardlink(-)?]
+"
+
+src_prepare() {
+   default
+   # we use eclass for that
+   sed -i '/gtk-update-icon-cache/d' install.sh || die
+}
+
+src_install() {
+   local v variants=(
+   $(for v in ${MY_COLOR_VARIANTS[@]}; do
+   usev ${v}
+   done)
+   $(usev kde '-c')
+   )
+
+   dodir /usr/share/icons
+   ./install.sh -d "${ED}/usr/share/icons" "${variants[@]}" || die
+   if use hardlink; then
+   einfo "Linking duplicate icons... (may take a long time)"
+   hardlink -pot "${ED}/usr/share/icons" || die "hardlink failed"
+   fi
+
+   # installs broken symlink (by design, but we remove it due to QA 
warnings)
+   # https://bugs.gentoo.org/830467
+   edob find "${ED}" -xtype l -print -delete
+
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/tela-icon-theme/

2023-06-07 Thread Georgy Yakovlev
commit: faf2696929734ea8376de1e13edffbeb282ffc10
Author: zackiloco  proton  me>
AuthorDate: Fri Apr 14 10:58:14 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:20:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=faf26969

x11-themes/tela-icon-theme: Remove 20220828-r2

Signed-off-by: Steffen Winter  proton.me>
Signed-off-by: Georgy Yakovlev  gentoo.org>

 .../tela-icon-theme-20220828-r2.ebuild | 70 --
 1 file changed, 70 deletions(-)

diff --git a/x11-themes/tela-icon-theme/tela-icon-theme-20220828-r2.ebuild 
b/x11-themes/tela-icon-theme/tela-icon-theme-20220828-r2.ebuild
deleted file mode 100644
index 3dc74352a3e5..
--- a/x11-themes/tela-icon-theme/tela-icon-theme-20220828-r2.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit edo
-
-# eg. 20211225 -> 2021-12-25
-MY_PV="${PV:0:4}-${PV:4:2}-${PV:6:2}"
-MY_PN="${PN^}"
-
-# standard comes first
-MY_COLOR_VARIANTS=( standard black blue brown green grey orange pink purple 
red yellow manjaro ubuntu nord )
-
-inherit xdg
-
-DESCRIPTION="A flat colorful Design icon theme"
-HOMEPAGE="https://github.com/vinceliuice/Tela-icon-theme;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/vinceliuice/${MY_PN}.git;
-else
-   
SRC_URI="https://github.com/vinceliuice/${MY_PN}/archive/refs/tags/${MY_PV}.tar.gz
 -> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm64 ~ppc64"
-   S="${WORKDIR}/${MY_PN}-${MY_PV}"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="+${MY_COLOR_VARIANTS[*]} +hardlink kde" # this is why standard comes 
first
-
-REQUIRED_USE="|| ( ${MY_COLOR_VARIANTS[*]} )"
-
-# not needed and slows us down, package installs 120 000 small files
-RESTRICT="binchecks strip test"
-
-# technically we can use app-arch/harlink too, but it's deprecated
-BDEPEND="
-   app-shells/bash
-   sys-apps/util-linux[hardlink(-)?]
-"
-
-src_prepare() {
-   default
-   # we use eclass for that
-   sed -i '/gtk-update-icon-cache/d' install.sh || die
-}
-
-src_install() {
-   local v variants=(
-   $(usev kde '-c')
-   $(for v in ${MY_COLOR_VARIANTS[@]}; do
-   usev ${v}
-   done)
-   )
-
-   dodir /usr/share/icons
-   ./install.sh -d "${ED}/usr/share/icons" "${variants[@]}" || die
-   if use hardlink; then
-   einfo "Linking duplicate icons... (may take a long time)"
-   hardlink -pot "${ED}/usr/share/icons" || die "hardlink failed"
-   fi
-
-   # installs broken symlink (by design, but we remove it due to QA 
warnings)
-   # https://bugs.gentoo.org/830467
-   edob find "${ED}" -xtype l -print -delete
-
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/tela-icon-theme/

2023-06-07 Thread Georgy Yakovlev
commit: 42aa3525c2c48b5b64299bb1867fb809b2086b29
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:15:23 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:20:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42aa3525

x11-themes/tela-icon-theme: sync live ebuild

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

 x11-themes/tela-icon-theme/tela-icon-theme-.ebuild | 11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/x11-themes/tela-icon-theme/tela-icon-theme-.ebuild 
b/x11-themes/tela-icon-theme/tela-icon-theme-.ebuild
index 9f99ea192c05..3a0301169077 100644
--- a/x11-themes/tela-icon-theme/tela-icon-theme-.ebuild
+++ b/x11-themes/tela-icon-theme/tela-icon-theme-.ebuild
@@ -35,10 +35,10 @@ REQUIRED_USE="|| ( ${MY_COLOR_VARIANTS[*]} )"
 # not needed and slows us down, package installs 120 000 small files
 RESTRICT="binchecks strip test"
 
-# technically we can use app-arch/harlink too, but it's deprecated
+# technically we can use app-arch/hardlink too, but it's deprecated
 BDEPEND="
app-shells/bash
-   sys-apps/util-linux[hardlink(-)?]
+   hardlink? ( sys-apps/util-linux[hardlink(-)?] )
 "
 
 src_prepare() {
@@ -49,18 +49,13 @@ src_prepare() {
 
 src_install() {
local v variants=(
-   $(usev kde '-c')
$(for v in ${MY_COLOR_VARIANTS[@]}; do
usev ${v}
done)
+   $(usev kde '-c')
)
 
dodir /usr/share/icons
-
-   # FIXME: remove after merged
-   # https://github.com/vinceliuice/Tela-icon-theme/issues/223
-   rm -v links/scalable/apps/preferences-desktop-keyboard-shortcuts.svg || 
:
-
./install.sh -d "${ED}/usr/share/icons" "${variants[@]}" || die
if use hardlink; then
einfo "Linking duplicate icons... (may take a long time)"



[gentoo-commits] repo/gentoo:master commit in: x11-themes/tela-icon-theme/

2023-06-07 Thread Georgy Yakovlev
commit: ab79bca4f761b6b1aa7870bdbb2070c469bccc2c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:14:33 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:20:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab79bca4

x11-themes/tela-icon-theme: make hardlink dep conditional

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

 x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild 
b/x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild
index c6ef1f2ee896..3a0301169077 100644
--- a/x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild
+++ b/x11-themes/tela-icon-theme/tela-icon-theme-20230203.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022 Gentoo Authors
+# Copyright 2022-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -38,7 +38,7 @@ RESTRICT="binchecks strip test"
 # technically we can use app-arch/hardlink too, but it's deprecated
 BDEPEND="
app-shells/bash
-   sys-apps/util-linux[hardlink(-)?]
+   hardlink? ( sys-apps/util-linux[hardlink(-)?] )
 "
 
 src_prepare() {



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

2023-06-07 Thread Georgy Yakovlev
commit: ee294930d194f27fd814113b3b8e9571dccc2dec
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:01:11 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee294930

virtual/rust: drop 1.68.1

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

 virtual/rust/rust-1.68.1.ebuild | 23 ---
 1 file changed, 23 deletions(-)

diff --git a/virtual/rust/rust-1.68.1.ebuild b/virtual/rust/rust-1.68.1.ebuild
deleted file mode 100644
index ae12ed9a2d0f..
--- a/virtual/rust/rust-1.68.1.ebuild
+++ /dev/null
@@ -1,23 +0,0 @@
-# Copyright 1999-2023 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=""
-
-# adjust when rust upstream bumps internal llvm
-# we do not allow multiple llvm versions in dev-lang/rust for
-# neither system nor bundled, so we just hardcode it here.
-SLOT="0/llvm-15"
-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] repo/gentoo:master commit in: dev-lang/rust/

2023-06-07 Thread Georgy Yakovlev
commit: 6f0d21536b5550ec95a02c36b3da3585eee8b8a3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:01:29 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f0d2153

dev-lang/rust: drop 1.68.1

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

 dev-lang/rust/Manifest   |   2 -
 dev-lang/rust/rust-1.68.1.ebuild | 741 ---
 2 files changed, 743 deletions(-)

diff --git a/dev-lang/rust/Manifest b/dev-lang/rust/Manifest
index 87453c5ac92b..3cd00695f4dc 100644
--- a/dev-lang/rust/Manifest
+++ b/dev-lang/rust/Manifest
@@ -196,8 +196,6 @@ DIST rustc-1.66.1-src.tar.xz 141692940 BLAKE2B 
3fae45345998386fda1b11ec896fac461
 DIST rustc-1.66.1-src.tar.xz.asc 801 BLAKE2B 
18e27c88b39eed29147854733c5533b7fffc417ff0b3bd5982174ffa2c5f6d217e2e28ced4da75863a4557800e7ad7a124a4bbb0def4c20da7ed543602185941
 SHA512 
4511f41ad3d098a339ea3173e3ffa692d1d3cd3ec9dd45af68e4491471f9a72a2e866f6924090eb366bdf6f856650d981eabe1cd851843a17f4a6e4f1dfbc8a9
 DIST rustc-1.67.1-src.tar.xz 142758844 BLAKE2B 
55b2a98592b1a2e465b7fb224607cbcb23cb13d5053b51abbd2e45428794f457b6925955c5c562f577830353e5287929b3588ee78a30036bf0ca13a3610316d9
 SHA512 
42d77ee93b168ae139b026138fb48d925624ff436a836aa97ee235f870e61ea11643b0cf7ad20bcafda774c6cd3855a4bc10a2e2ed1c4d82c6f15158963b304d
 DIST rustc-1.67.1-src.tar.xz.asc 801 BLAKE2B 
eb507c6f53c592921eb31cccb17c9d6027c67fb1311726f2d25fe7d1f8a1aa051efb99d7207a5e4477df0b75898783437e653fa041ed7daa27e7a7c4263ec230
 SHA512 
6c962f680d74251b55f77a43d6e383be53bacff8428e0d003bda207de1fea7f716b88f16686d22a88d99518a4834bf299731855fb030477a995d5e1f3d0024f4
-DIST rustc-1.68.1-src.tar.xz 147834548 BLAKE2B 
98e02c1ff3ed37cd52d1f348331ffe007583f078fbd1bc581eb32a098eee816f301cd833ecf9f806b8e0c673aa963b34d2e357c089bdb59a8a7464ab46b18307
 SHA512 
cf3921bc260db54b0f3afc0e6bc9fe8d560ddb81de5d2d4496746307d42a8010291f119d0cfc463996efce6ef829a0494b4eb6145e21c94fd113ff51ee010e21
-DIST rustc-1.68.1-src.tar.xz.asc 801 BLAKE2B 
5e0a2d95360fb5d8bed9e759111db225315b93d3042af19bb9fc9f239cabf9f32b85f2e616913ff3ce5fc8111deeb972bc184584ca473216b7a5320a255304a6
 SHA512 
5330405c09077070a63c04fc1c7059219d046fbaa24997861365199e48da98be4fe2a04fdc5c54a03166097bde58b4e51bdc8296ca89974d2dcec1da279bdab2
 DIST rustc-1.68.2-src.tar.xz 147835648 BLAKE2B 
4b6deab818d915afe67a96f4d32a758c15a832041a77d9da5d065a903ea2718e0e7ebbc0cd1baaa436b655bdb93a62e0fb76f9e37aed595c064e0857201bb091
 SHA512 
8b085d0351e19100e9abc24b10c44a0939a1d35ba23421da4ece345d7373f7dbad1dc6a2ae153c1259404dd96b41e2682e711cf2b0b63fd03a196760cddbcdd3
 DIST rustc-1.68.2-src.tar.xz.asc 801 BLAKE2B 
6ac2444950e5f919d09823ea3eef50364ad7b295126b090178872970f03c43ca9747779e0873138ca3a0b753eff79d2ef36d8b70c6a6050039ba9f9018571016
 SHA512 
86ccbb8ea89f820ba92ad9cbfb8f4bda3393e2c24d699355fd559a2339ff39bcce2a027ebd1b043f11de24b00cdac8c42d252915b36e711eb1d80f49a8007d47
 DIST rustc-1.69.0-src.tar.xz 127242864 BLAKE2B 
03f7f3784cb137bede0593dfc008347bb0bb25c982c058175ac2b0442c2593a5a7e2c4539c848ad4375d994c1b7900019120790f0fe12385b413eecc1647d70a
 SHA512 
724398fc208ec18adbd8ba81a445e23d1001b746990f36b869126be8a45f1cdfa75f5b9cbdd0abbab506f91a56d3736ab247677699ebd69525245558cfc01a60

diff --git a/dev-lang/rust/rust-1.68.1.ebuild b/dev-lang/rust/rust-1.68.1.ebuild
deleted file mode 100644
index 4f904c718106..
--- a/dev-lang/rust/rust-1.68.1.ebuild
+++ /dev/null
@@ -1,741 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit bash-completion-r1 check-reqs estack flag-o-matic llvm multiprocessing 
\
-   multilib multilib-build python-any-r1 rust-toolchain toolchain-funcs 
verify-sig
-
-if [[ ${PV} = *beta* ]]; then
-   betaver=${PV//*beta}
-   BETA_SNAPSHOT="${betaver:0:4}-${betaver:4:2}-${betaver:6:2}"
-   MY_P="rustc-beta"
-   SLOT="beta/${PV}"
-   SRC="${BETA_SNAPSHOT}/rustc-beta-src.tar.xz -> rustc-${PV}-src.tar.xz"
-else
-   ABI_VER="$(ver_cut 1-2)"
-   SLOT="stable/${ABI_VER}"
-   MY_P="rustc-${PV}"
-   SRC="${MY_P}-src.tar.xz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
-fi
-
-RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).1"
-
-DESCRIPTION="Systems programming language from Mozilla"
-HOMEPAGE="https://www.rust-lang.org/;
-
-SRC_URI="
-   https://static.rust-lang.org/dist/${SRC}
-   verify-sig? ( https://static.rust-lang.org/dist/${SRC}.asc )
-   !system-bootstrap? ( $(rust_all_arch_uris rust-${RUST_STAGE0_VERSION}) )
-"
-
-# keep in sync with llvm ebuild of the same version as bundled one.
-ALL_LLVM_TARGETS=( AArch64 AMDGPU ARM AVR BPF Hexagon Lanai Mips MSP430
-   NVPTX PowerPC RISCV Sparc SystemZ WebAssembly X86 XCore )
-ALL_LLVM_TARGETS=( "${ALL_LLVM_TARGETS[@]/#/llvm_targets_}" )

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

2023-06-07 Thread Georgy Yakovlev
commit: 5a33f0a67db4746ba25f55ac06cfb52cfcbb71ab
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:02:27 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a33f0a6

virtual/rust: Stabilize 1.69.0 ppc64, #907722

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

 virtual/rust/rust-1.69.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/rust/rust-1.69.0.ebuild b/virtual/rust/rust-1.69.0.ebuild
index fcf612688acc..16c53cef3de3 100644
--- a/virtual/rust/rust-1.69.0.ebuild
+++ b/virtual/rust/rust-1.69.0.ebuild
@@ -13,7 +13,7 @@ LICENSE=""
 # we do not allow multiple llvm versions in dev-lang/rust for
 # neither system nor bundled, so we just hardcode it here.
 SLOT="0/llvm-15"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="rustfmt"
 
 BDEPEND=""



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

2023-06-07 Thread Georgy Yakovlev
commit: 624177a26cdd6e8fa6b30bacb205a360d6b226ee
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:02:25 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=624177a2

dev-lang/rust-bin: Stabilize 1.69.0 ppc64, #907722

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

 dev-lang/rust-bin/rust-bin-1.69.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/rust-bin/rust-bin-1.69.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.69.0.ebuild
index 4bf223517fe7..d292fcd53d58 100644
--- a/dev-lang/rust-bin/rust-bin-1.69.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.69.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="$(rust_all_arch_uris ${MY_P})
 
 LICENSE="|| ( MIT Apache-2.0 ) BSD BSD-1 BSD-2 BSD-4 UoI-NCSA"
 SLOT="stable"
-KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~s390 x86"
 IUSE="clippy cpu_flags_x86_sse2 doc prefix rust-analyzer rust-src rustfmt"
 
 DEPEND=""



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

2023-06-07 Thread Georgy Yakovlev
commit: 0b2edc9b4f22eff3d683fe4af9feea2bb74d9834
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 21:59:34 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b2edc9b

dev-lang/rust: require src component for rust-analyzer

Closes: https://bugs.gentoo.org/907961
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust/rust-1.65.0.ebuild| 2 +-
 dev-lang/rust/rust-1.66.1.ebuild| 1 +
 dev-lang/rust/rust-1.67.1.ebuild| 1 +
 dev-lang/rust/rust-1.68.2.ebuild| 1 +
 dev-lang/rust/rust-1.69.0-r1.ebuild | 1 +
 5 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-lang/rust/rust-1.65.0.ebuild b/dev-lang/rust/rust-1.65.0.ebuild
index bb793aa16865..d46314607071 100644
--- a/dev-lang/rust/rust-1.65.0.ebuild
+++ b/dev-lang/rust/rust-1.65.0.ebuild
@@ -126,7 +126,7 @@ RDEPEND="${DEPEND}
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )
miri? ( nightly )
parallel-compiler? ( nightly )
-   rust-analyzer? ( !wasm )
+   rust-analyzer? ( !wasm rust-src )
test? ( ${ALL_LLVM_TARGETS[*]} )
wasm? ( llvm_targets_WebAssembly )
x86? ( cpu_flags_x86_sse2 )

diff --git a/dev-lang/rust/rust-1.66.1.ebuild b/dev-lang/rust/rust-1.66.1.ebuild
index 85a895e94dc2..5d39816f9cb7 100644
--- a/dev-lang/rust/rust-1.66.1.ebuild
+++ b/dev-lang/rust/rust-1.66.1.ebuild
@@ -124,6 +124,7 @@ RDEPEND="${DEPEND}
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )
miri? ( nightly )
parallel-compiler? ( nightly )
+   rust-analyzer? ( rust-src )
test? ( ${ALL_LLVM_TARGETS[*]} )
wasm? ( llvm_targets_WebAssembly )
x86? ( cpu_flags_x86_sse2 )

diff --git a/dev-lang/rust/rust-1.67.1.ebuild b/dev-lang/rust/rust-1.67.1.ebuild
index 5c51929f95da..4c66b8e3b4c4 100644
--- a/dev-lang/rust/rust-1.67.1.ebuild
+++ b/dev-lang/rust/rust-1.67.1.ebuild
@@ -124,6 +124,7 @@ RDEPEND="${DEPEND}
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )
miri? ( nightly )
parallel-compiler? ( nightly )
+   rust-analyzer? ( rust-src )
test? ( ${ALL_LLVM_TARGETS[*]} )
wasm? ( llvm_targets_WebAssembly )
x86? ( cpu_flags_x86_sse2 )

diff --git a/dev-lang/rust/rust-1.68.2.ebuild b/dev-lang/rust/rust-1.68.2.ebuild
index 4f904c718106..4bf6fa92b305 100644
--- a/dev-lang/rust/rust-1.68.2.ebuild
+++ b/dev-lang/rust/rust-1.68.2.ebuild
@@ -124,6 +124,7 @@ RDEPEND="${DEPEND}
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )
miri? ( nightly )
parallel-compiler? ( nightly )
+   rust-analyzer? ( rust-src )
test? ( ${ALL_LLVM_TARGETS[*]} )
wasm? ( llvm_targets_WebAssembly )
x86? ( cpu_flags_x86_sse2 )

diff --git a/dev-lang/rust/rust-1.69.0-r1.ebuild 
b/dev-lang/rust/rust-1.69.0-r1.ebuild
index 366e5890c90f..a61a6fce2139 100644
--- a/dev-lang/rust/rust-1.69.0-r1.ebuild
+++ b/dev-lang/rust/rust-1.69.0-r1.ebuild
@@ -124,6 +124,7 @@ RDEPEND="${DEPEND}
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )
miri? ( nightly )
parallel-compiler? ( nightly )
+   rust-analyzer? ( rust-src )
test? ( ${ALL_LLVM_TARGETS[*]} )
wasm? ( llvm_targets_WebAssembly )
x86? ( cpu_flags_x86_sse2 )



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

2023-06-07 Thread Georgy Yakovlev
commit: 21b306f13a97d7ae310846bdb457646a29b3f2f6
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:01:40 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=21b306f1

dev-lang/rust-bin: drop 1.68.1

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

 dev-lang/rust-bin/Manifest   |  33 -
 dev-lang/rust-bin/rust-bin-1.68.1.ebuild | 229 ---
 2 files changed, 262 deletions(-)

diff --git a/dev-lang/rust-bin/Manifest b/dev-lang/rust-bin/Manifest
index 26f52bb693c8..0b0dabd216b8 100644
--- a/dev-lang/rust-bin/Manifest
+++ b/dev-lang/rust-bin/Manifest
@@ -96,38 +96,6 @@ DIST rust-1.67.1-x86_64-unknown-linux-gnu.tar.xz 186714164 
BLAKE2B 648efbb302333
 DIST rust-1.67.1-x86_64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 
669b7c4b0d5382a7d1d0fe49405f2798f67a9e745711dc2c8e7548ea6fdc8f0fefdab37d0594aec14b2745ce45e7c469e79c0cb1d86077ad9c7b6aafc2656827
 SHA512 
067681cb4140a29adfa5f4b141e2f3450dad34b95a1e549a6bc8d759e57da5d2ae69cc165efcdef9d83e2eee06edb6acd587d38c9b2f3d000d7a3f79daccc671
 DIST rust-1.67.1-x86_64-unknown-linux-musl.tar.xz 269831452 BLAKE2B 
a36498528454f1bf0e1812eba005f27e3e281e4e2c117477785f5e48468c3fe316947b7e4360f573f0f4cd6f117e4102db8aeaa616be5bef09fb7518fd230b23
 SHA512 
9a3eb67239a88b875fe55846a2fffbbb1f2a4cc8eed18b5558f0f989d544a8ddfe0861d5b2b860a779833a1660ee622b30320ec9ef83e841724f7a32f08fda06
 DIST rust-1.67.1-x86_64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B 
b12d0ce1136e355ee027780dfe185ee443de402e531ecc743600aecf081990d4e998fa4a6e6f0f46a886cd806918e23c5e4ccb7cecb0324cb67189984192283f
 SHA512 
37428f0d1d8e2ddb7ce52bce3a297a7f666789d00e7e240180c3e1f7fb5b30bf5e17593cbedebdef95c50406ee82d40ef1f75a576a1a0e02387e1a12ed977c77
-DIST rust-1.68.1-aarch64-unknown-linux-gnu.tar.xz 257003480 BLAKE2B 
850c59e54fda0f1e1b2d012e849cdf6b11103b0354035ca153d80e3bda1edce5640c098d9846127608af7836758dce11da1ef7efa406bfbdf4fa632bf62211a7
 SHA512 
4126b389c846d0b94ab1d1800e46ef680d10b26699c9d296d78cc916a00f3b023962c0bb1f2dec55cc22335e7cd47f74baaadb7cd7b3a606aac53d3e2d7dfdb0
-DIST rust-1.68.1-aarch64-unknown-linux-gnu.tar.xz.asc 801 BLAKE2B 
914459984ab2e102b129c03149ddd23fc604e35b1136bc2f951ece6a46f8f9e2b6a88ae4e5aa57b2fa0eed7803c4537646c7c8253526a33cad8644f780776372
 SHA512 
9ae6008e57bf25997d2e44a3161e5943739a7be4e4e9e95e221dd7385f3440ecb3ca8e7fa94f943aa50684c5502a7493c5295ad8b9f1c5c3b4c48a6646a8843b
-DIST rust-1.68.1-aarch64-unknown-linux-musl.tar.xz 234957108 BLAKE2B 
62ff5f5c01829cc6c19a8f20923a832c9e4e719a9b83242420ee894b11a5af7c2447aba27ce6cfcdb3c0f9722c131da16efe1d1b1f7b0304f4993660a115db5d
 SHA512 
1a43c1d76d09cd97688e2c7b10a436c39574133c9d91d642e01cfa19a60f2037df7cb6a7dbceeab991ad673671453db8ebe2cba499dfa9e0bfdb226e506e3b07
-DIST rust-1.68.1-aarch64-unknown-linux-musl.tar.xz.asc 801 BLAKE2B 
632ef4c61afc9a32e5297c056e77e9ae3e84b5faabcb13892fa703bae8b3e8cd0730b160f6acb8846d9112e0a5e32031cd6ba68bccba1c7113ce7eee953615d2
 SHA512 
0fc556a797871bc11dd1a52190ed1d35f09297e00822270b9bab421fafd8a47899c779593b9f37bf510af6057b7cf6a118144be92b11fcf833e4ca1d111840e3
-DIST rust-1.68.1-arm-unknown-linux-gnueabi.tar.xz 216213308 BLAKE2B 
234b5507b23a0fd295b34d637e7a42bcf1a376cdeacdc448d0782847742d93b4b088ab7eb60b3d10aab2e7d516e77d9cd1f42bf9144ae49a860f9f2635b9d545
 SHA512 
ae9c05a404183d749e7a237d3843ddb538899181b0966f1e22fd4bfc00ab4728473f51d243afc8b9ab5749bb12c3a55f4db679f4ccab704d2fc0adcc5edb3a5b
-DIST rust-1.68.1-arm-unknown-linux-gnueabi.tar.xz.asc 801 BLAKE2B 
8cfc3fabc67366877fc94663c09de62e57e8d77ff5b412bec0a7225477dfcc856390aafb527ccc2c2595026cffb315b0fc9ceb371d85d42689d2171344e0c56d
 SHA512 
0d808c1a68e747137fd2ffd55b7b146cfd6f490b24eade9942183ad8b7a25499a2e18630adcfdfa5ddbbce6975777f5bd3ff469d77227f840ae6970019c9f81d
-DIST rust-1.68.1-arm-unknown-linux-gnueabihf.tar.xz 214982076 BLAKE2B 
8e69117487b32b89513bdf0492c5633630ba743ab68f1087a786c7e7148ed2c443ddf95e69f6d226fd96d399aa6802adc8480b78e7352876b121ee7fc459b605
 SHA512 
496d93691b4332a23edc91f2bdcc149c91e647cf9ee60177e64e88f76ed7cd1ea89884770cab38ac809e419e1dca4736bca2be811307efcadc8f9391fcf36821
-DIST rust-1.68.1-arm-unknown-linux-gnueabihf.tar.xz.asc 801 BLAKE2B 
575946a62a16ef956c1d418891ede2103fcd9940fad555fed73e78e13c64243e8dbeeb5c52f4ada515af31c542e4a577c9d000a1eb8b2f6ebd14ec232a36da6f
 SHA512 
5e528fb34566d8a7cc7e49f1c09819afd5aef79bed65e798c4d1244ad44028be6affc9c35e35a30943cb7b84e0e247ec5e0673bfce52836e1331cd2b63c9da82
-DIST rust-1.68.1-armv7-unknown-linux-gnueabihf.tar.xz 219027476 BLAKE2B 
0a56975cf0c519b33dfdfa9c1bb1e6d9a91cb582b5293dbcc19935ba35364f49fa3bd86bccb74a075f3759596a47685a2024a0efd10ed4b5f9b60580a762
 SHA512 
478cfc492e758eef7c5654bf60547b9d60799cb1bec56805d82666c54f982fcf2e57f578ce3d3f0f6a38b64602f4e3c2e94759b8298764b7fbc2fc88b41c778a
-DIST rust-1.68.1-armv7-unknown-linux-gnueabihf.tar.xz.asc 801 BLAKE2B 

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

2023-06-07 Thread Georgy Yakovlev
commit: a02608927b3ac79dc92c3ebce7b08a810fc30de3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:02:26 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a0260892

dev-lang/rust: Stabilize 1.69.0-r1 ppc64, #907722

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

 dev-lang/rust/rust-1.69.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/rust/rust-1.69.0-r1.ebuild 
b/dev-lang/rust/rust-1.69.0-r1.ebuild
index a61a6fce2139..b312e8a53d1d 100644
--- a/dev-lang/rust/rust-1.69.0-r1.ebuild
+++ b/dev-lang/rust/rust-1.69.0-r1.ebuild
@@ -19,7 +19,7 @@ else
SLOT="stable/${ABI_VER}"
MY_P="rustc-${PV}"
SRC="${MY_P}-src.tar.xz"
-   KEYWORDS="amd64 arm arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 arm arm64 ~mips ~ppc ppc64 ~riscv ~sparc x86"
 fi
 
 RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).2"



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

2023-06-07 Thread Georgy Yakovlev
commit: 188cb565103e7fe90f03793b0f32ed6a575d5a11
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 21:55:13 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=188cb565

dev-lang/rust: keyword 1.70.0

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

 dev-lang/rust/rust-1.70.0.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-lang/rust/rust-1.70.0.ebuild b/dev-lang/rust/rust-1.70.0.ebuild
index 873e2dff63fe..33820a266181 100644
--- a/dev-lang/rust/rust-1.70.0.ebuild
+++ b/dev-lang/rust/rust-1.70.0.ebuild
@@ -19,7 +19,7 @@ else
SLOT="stable/${ABI_VER}"
MY_P="rustc-${PV}"
SRC="${MY_P}-src.tar.xz"
-   #KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 fi
 
 RUST_STAGE0_VERSION="1.$(($(ver_cut 2) - 1)).0"
@@ -124,6 +124,7 @@ RDEPEND="${DEPEND}
 REQUIRED_USE="|| ( ${ALL_LLVM_TARGETS[*]} )
miri? ( nightly )
parallel-compiler? ( nightly )
+   rust-analyzer? ( rust-src )
test? ( ${ALL_LLVM_TARGETS[*]} )
wasm? ( llvm_targets_WebAssembly )
x86? ( cpu_flags_x86_sse2 )



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

2023-06-07 Thread Georgy Yakovlev
commit: 320291adb082ac66aed82ed871384644f353563a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 21:53:18 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=320291ad

dev-lang/rust-bin: keyword 1.70.0, restrict strip

Issue: https://github.com/rust-lang/rust/issues/112286
Signed-off-by: Georgy Yakovlev  gentoo.org>

 dev-lang/rust-bin/rust-bin-1.70.0.ebuild | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/dev-lang/rust-bin/rust-bin-1.70.0.ebuild 
b/dev-lang/rust-bin/rust-bin-1.70.0.ebuild
index 2624c2403c56..93ef429779a2 100644
--- a/dev-lang/rust-bin/rust-bin-1.70.0.ebuild
+++ b/dev-lang/rust-bin/rust-bin-1.70.0.ebuild
@@ -20,7 +20,7 @@ SRC_URI="$(rust_all_arch_uris ${MY_P})
 
 LICENSE="|| ( MIT Apache-2.0 ) BSD BSD-1 BSD-2 BSD-4 UoI-NCSA"
 SLOT="stable"
-#KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~x86"
 IUSE="clippy cpu_flags_x86_sse2 doc prefix rust-analyzer rust-src rustfmt"
 
 DEPEND=""
@@ -39,6 +39,10 @@ BDEPEND="
 
 REQUIRED_USE="x86? ( cpu_flags_x86_sse2 )"
 
+# stripping rust may break it (at least on x86_64)
+# https://github.com/rust-lang/rust/issues/112286
+RESTRICT="strip"
+
 QA_PREBUILT="
opt/${P}/bin/.*
opt/${P}/lib/.*.so



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

2023-06-07 Thread Georgy Yakovlev
commit: 11128aef84c9fe5771d149f182728e6c8e6002ca
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Wed Jun  7 22:00:25 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Wed Jun  7 22:02:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11128aef

virtual/rust: keyword 1.70.0

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

 virtual/rust/rust-1.70.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/rust/rust-1.70.0.ebuild b/virtual/rust/rust-1.70.0.ebuild
index b2590567fddf..55d0ba31f086 100644
--- a/virtual/rust/rust-1.70.0.ebuild
+++ b/virtual/rust/rust-1.70.0.ebuild
@@ -13,7 +13,7 @@ LICENSE=""
 # we do not allow multiple llvm versions in dev-lang/rust for
 # neither system nor bundled, so we just hardcode it here.
 SLOT="0/llvm-16"
-#KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~mips ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="rustfmt"
 
 BDEPEND=""



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

2023-06-07 Thread Marek Szuba
commit: 04d051cad8acdcae638928ba22203a1becd54d50
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Jun  7 21:37:34 2023 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Jun  7 21:37:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04d051ca

app-admin/ansible-lint: add 6.17.0

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

 app-admin/ansible-lint/Manifest   |  1 +
 app-admin/ansible-lint/ansible-lint-6.17.0.ebuild | 55 +++
 2 files changed, 56 insertions(+)

diff --git a/app-admin/ansible-lint/Manifest b/app-admin/ansible-lint/Manifest
index fe745ad5f7e5..ce289609c0d5 100644
--- a/app-admin/ansible-lint/Manifest
+++ b/app-admin/ansible-lint/Manifest
@@ -1,2 +1,3 @@
 DIST ansible-lint-6.14.6.tar.gz 475624 BLAKE2B 
99ac5214d7404c2cdaaf43678950b2031fd40396e45a27823feb708bc343b69181e624254b77bfe9f704a9037c60340f3a14d4a2651948b371ea91a28b1a1424
 SHA512 
dac9a089db2d2fe7b25f273b746571175d3ec974dbdf14d65cc10be83464f1ae88361d9e445d8687c011f817597fc4ca8d7501d192c6c529d9ec48997af8df7c
 DIST ansible-lint-6.16.2.tar.gz 487093 BLAKE2B 
0342bcc33e974f23cbc33d972959f04142374a79d9a750691e9898e9f237c049f635680a837531bf6a4d859d03aa3a4580ba01638935fe08ad1f874bef7f7f0a
 SHA512 
b2e79b6941d702e4281a08874bb0b90f1450275c1cc0f6bdce6065231545bec202e1e0d7a4d836abd5250d292f5b31319914f258e7296cdd3fcb2e341f81d96d
+DIST ansible-lint-6.17.0.tar.gz 478382 BLAKE2B 
64d00381a36270d5b9163ad6a6a3f71fbdec7a0554151bef7aa92b4df6f76c58d618fa91755183f49a32f6ab5ad512400e7582711780294dc39d524449aebb28
 SHA512 
7bb38843bbb378ff6636d337e05d95be73ce740fbfd78076e859809956489ad5f08c47f810311ad5ed7401c184e625901aaed1c444f887a874150c937b6bf125

diff --git a/app-admin/ansible-lint/ansible-lint-6.17.0.ebuild 
b/app-admin/ansible-lint/ansible-lint-6.17.0.ebuild
new file mode 100644
index ..94df30ddcc84
--- /dev/null
+++ b/app-admin/ansible-lint/ansible-lint-6.17.0.ebuild
@@ -0,0 +1,55 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Checks ansible playbooks for practices and behaviour that can be 
improved"
+HOMEPAGE="https://github.com/ansible/ansible-lint;
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~riscv"
+
+# Upstream has stated explicitly that all tests require Internet access
+PROPERTIES="test_network"
+RESTRICT="test"
+
+RDEPEND="
+   >=app-admin/ansible-core-2.12.0[${PYTHON_USEDEP}]
+   >=dev-python/ansible-compat-2.2.7[${PYTHON_USEDEP}]
+   >=dev-python/black-22.8.0[${PYTHON_USEDEP}]
+   >=dev-python/filelock-3.8.0[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-4.17.0[${PYTHON_USEDEP}]
+   >=dev-python/packaging-21.3[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-5.4.1[${PYTHON_USEDEP}]
+   >=dev-python/rich-12.0.0[${PYTHON_USEDEP}]
+   >=dev-python/ruamel-yaml-0.17.0[${PYTHON_USEDEP}]
+   >=dev-python/wcmatch-8.3.2[${PYTHON_USEDEP}]
+   >=dev-util/yamllint-1.30.0[${PYTHON_USEDEP}]
+   dev-vcs/git"
+BDEPEND="
+   >=dev-python/setuptools-scm-7.0.5[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   >=dev-python/pytest-plus-0.2[${PYTHON_USEDEP}]
+   >=dev-python/pytest-xdist-2.5.0[${PYTHON_USEDEP}]
+   )"
+
+# test_call_from_outside_venv doesn't play nicely with the sandbox
+# irrespective of whether Internet access is allowed or not
+EPYTEST_DESELECT=(
+   test/test_main.py::test_call_from_outside_venv
+)
+
+distutils_enable_tests pytest
+
+# Test suite fails to start without this
+python_test() {
+   epytest test
+}



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

2023-06-07 Thread Marek Szuba
commit: 8a45b5e839415229854940b522cada5a48567aac
Author: Marek Szuba  gentoo  org>
AuthorDate: Wed Jun  7 21:55:43 2023 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Wed Jun  7 21:55:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a45b5e8

net-p2p/syncthing: add 1.23.5

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

 net-p2p/syncthing/Manifest|   1 +
 net-p2p/syncthing/syncthing-1.23.5.ebuild | 112 ++
 2 files changed, 113 insertions(+)

diff --git a/net-p2p/syncthing/Manifest b/net-p2p/syncthing/Manifest
index c110d98011cb..e6ca187f0ebe 100644
--- a/net-p2p/syncthing/Manifest
+++ b/net-p2p/syncthing/Manifest
@@ -1 +1,2 @@
 DIST syncthing-1.23.4.tar.gz 14141457 BLAKE2B 
5c0edf12062a0a26858b6d6b76e9de527a2b0bcab5bf718baba94a22c95d0ffcdb39ea6c4855b1ba4bff3eeb1b83f42375f3fca9d016041d0130d9980d3d9c94
 SHA512 
cf86b61af000e2b9555f1dee0dfc6c340254859b753d3af2d88ea7de8f49137e7dea2bc98a6d8e526b35707918761f010a93ff8ee243f49945364f2e7f928ae3
+DIST syncthing-1.23.5.tar.gz 14196275 BLAKE2B 
e9d44ed83546ea28e474379c7b3141e447e4f595cf8587220fe76d64844b1ee57551f56b06a7244afc3af45728c19bd76b6ba923da03983dc7ae9799ac36d9a9
 SHA512 
ef41c7bf8e693e3db5ea7c3cd645580a89131cc0fb48e12a50a24af28c86533bf973c58daea7cda5822544602c366a21f299c88dcd601e3913b6a08d5f4564dc

diff --git a/net-p2p/syncthing/syncthing-1.23.5.ebuild 
b/net-p2p/syncthing/syncthing-1.23.5.ebuild
new file mode 100644
index ..d8e3bf08df7a
--- /dev/null
+++ b/net-p2p/syncthing/syncthing-1.23.5.ebuild
@@ -0,0 +1,112 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop go-module systemd xdg-utils
+
+DESCRIPTION="Open Source Continuous File Synchronization"
+HOMEPAGE="https://syncthing.net;
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${PN}-source-v${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="Apache-2.0 BSD BSD-2 CC0-1.0 ISC MIT MPL-2.0 Unlicense"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~x86"
+IUSE="selinux tools"
+
+RDEPEND="acct-group/syncthing
+   acct-user/syncthing
+   tools? ( >=acct-user/stdiscosrv-1
+   >=acct-user/strelaysrv-1 )
+   selinux? ( sec-policy/selinux-syncthing )"
+
+DOCS=( README.md AUTHORS CONTRIBUTING.md )
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.3.4-TestIssue5063_timeout.patch
+   "${FILESDIR}"/${PN}-1.18.4-tool_users.patch
+   "${FILESDIR}"/${PN}-1.23.2-tests_race.patch
+)
+
+S="${WORKDIR}"/${PN}
+
+src_prepare() {
+   # Bug #679280
+   xdg_environment_reset
+
+   default
+   sed -i \
+   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/stdiscosrv|' \
+   cmd/stdiscosrv/etc/linux-systemd/stdiscosrv.service \
+   || die
+   sed -i \
+   's|^ExecStart=.*|ExecStart=/usr/libexec/syncthing/strelaysrv|' \
+   cmd/strelaysrv/etc/linux-systemd/strelaysrv.service \
+   || die
+}
+
+src_compile() {
+   GOARCH= go run build.go -version "v${PV}" -no-upgrade -build-out=bin/ \
+   ${GOARCH:+-goarch="${GOARCH}"} \
+   build $(usex tools "all" "") || die "build failed"
+}
+
+src_test() {
+   go run build.go test || die "test failed"
+}
+
+src_install() {
+   local icon_size
+
+   doman man/*.[157]
+   einstalldocs
+
+   dobin bin/syncthing
+
+   domenu etc/linux-desktop/*.desktop
+   for icon_size in 32 64 128 256 512; do
+   newicon -s ${icon_size} assets/logo-${icon_size}.png ${PN}.png
+   done
+   newicon -s scalable assets/logo-only.svg ${PN}.svg
+
+   if use tools; then
+   exeinto /usr/libexec/syncthing
+   local exe
+   for exe in bin/* ; do
+   [[ "${exe}" == "bin/syncthing" ]] || doexe "${exe}"
+   done
+   fi
+
+   systemd_dounit etc/linux-systemd/system/${PN}{@,-resume}.service
+   systemd_douserunit etc/linux-systemd/user/${PN}.service
+   newconfd "${FILESDIR}"/${PN}.confd ${PN}
+   newinitd "${FILESDIR}"/${PN}.initd-r2 ${PN}
+
+   keepdir /var/log/${PN}
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}.logrotate ${PN}
+
+   if use tools; then
+   systemd_dounit 
cmd/stdiscosrv/etc/linux-systemd/stdiscosrv.service
+   newconfd "${FILESDIR}"/stdiscosrv.confd stdiscosrv
+   newinitd "${FILESDIR}"/stdiscosrv.initd-r1 stdiscosrv
+
+   systemd_dounit 
cmd/strelaysrv/etc/linux-systemd/strelaysrv.service
+   newconfd "${FILESDIR}"/strelaysrv.confd strelaysrv
+   newinitd "${FILESDIR}"/strelaysrv.initd-r1 strelaysrv
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/stdiscosrv.logrotate strelaysrv
+   newins "${FILESDIR}"/strelaysrv.logrotate strelaysrv
+   fi
+}
+
+pkg_postinst() {
+   

[gentoo-commits] proj/tinderbox-cluster:master commit in: docker/

2023-06-07 Thread Magnus Granberg
commit: 72a6e1e8bfdb606a6b6acee0abef43fdc13d5820
Author: Magnus Granberg  gentoo  org>
AuthorDate: Wed Jun  7 21:33:45 2023 +
Commit: Magnus Granberg  gentoo  org>
CommitDate: Wed Jun  7 21:33:45 2023 +
URL:
https://gitweb.gentoo.org/proj/tinderbox-cluster.git/commit/?id=72a6e1e8

Add support for xz compression

Signed-off-by: Magnus Granberg  gentoo.org>

 docker/GentooBuildbotWorkerBuild.Dockerfile | 5 -
 docker/GentooBuildbotWorkerLog.Dockerfile   | 2 +-
 2 files changed, 5 insertions(+), 2 deletions(-)

diff --git a/docker/GentooBuildbotWorkerBuild.Dockerfile 
b/docker/GentooBuildbotWorkerBuild.Dockerfile
index 23fc3f0..e700203 100644
--- a/docker/GentooBuildbotWorkerBuild.Dockerfile
+++ b/docker/GentooBuildbotWorkerBuild.Dockerfile
@@ -35,6 +35,8 @@ RUN echo -e "[binhost]\npriority = \nsync-uri = 
${BINHOSTURL}/${PROJECTUUID}
  && echo 'USE="X elogind"' | >> /etc/portage/make.conf\
  # && echo 'PYTHON_TARGETS="python3_10 python3_9 python3_8 python3_11"' | >> 
/etc/portage/make.conf\
  && echo 'ACCEPT_LICENSE="*"'\
+ && echo 'PORTAGE_COMPRESS="xz"'\
+ && echo 'BINPKG_COMPRESS="xz"'\
  #&& echo 'dev-vcs/git -webdev -gnome-keyring' | cat >> 
/etc/portage/package.use/git\
  #&& echo 'dev-util/buildbot-worker' | cat >> 
/etc/portage/package.accept_keywords/buildbot\
  #&& echo 'dev-libs/glib' | cat >> /etc/portage/package.mask/git\
@@ -62,7 +64,8 @@ RUN echo 'app-text/ansifilter' | cat >> 
/var/lib/portage/world\
  && echo 'dev-lang/rust-bin' | cat >> /var/lib/portage/world\
  && echo 'app-admin/eclean-kernel' | cat >> /var/lib/portage/world\
  && echo 'app-portage/gentoolkit' | cat >> /var/lib/portage/world\
- && echo 'app-editors/nano' | cat >> /var/lib/portage/world
+ && echo 'app-editors/nano' | cat >> /var/lib/portage/world\
+ && echo 'app-arch/xz-utils' | cat >> /var/lib/portage/world
 
 # Run emerge update and install buildbot-worker
 # update perl

diff --git a/docker/GentooBuildbotWorkerLog.Dockerfile 
b/docker/GentooBuildbotWorkerLog.Dockerfile
index 492be36..0164b94 100644
--- a/docker/GentooBuildbotWorkerLog.Dockerfile
+++ b/docker/GentooBuildbotWorkerLog.Dockerfile
@@ -18,7 +18,7 @@ RUN echo -e "[binhost]\npriority = \nsync-uri = 
https://gentoo.osuosl.org/ex
  && echo 'FEATURES="${FEATURES} buildpkg"' | cat >> /etc/portage/make.conf\
  && echo 'MAKEOPTS="-j8"' | cat >> /etc/portage/make.conf\
  && echo 'dev-libs/glib' | cat >> /etc/portage/package.mask/git\
- && emerge -qv buildbot-worker sqlalchemy dev-python/psycopg:2 rust-bin 
dev-vcs/git
+ && emerge -qv buildbot-worker sqlalchemy dev-python/psycopg:2 rust-bin 
dev-vcs/git utils-xz
 
 # We don't need the gentoo repo any longer
 RUN rm -R /var/db/repos/gentoo



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

2023-06-07 Thread Anna Vyalkova
commit: 6e9bb05e2184258cf4cdf174efa99c6cbb3216bf
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:16:46 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:16:46 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=6e9bb05e

dev-crystal/webdrivers: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/webdrivers/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-crystal/webdrivers/metadata.xml 
b/dev-crystal/webdrivers/metadata.xml
index 57c8564cb..9f002b300 100644
--- a/dev-crystal/webdrivers/metadata.xml
+++ b/dev-crystal/webdrivers/metadata.xml
@@ -7,5 +7,9 @@


matthewmcgarvey/webdrivers.cr
+   
+   Matthew McGarvey
+   matthewmcgarve...@gmail.com
+   

 



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

2023-06-07 Thread Anna Vyalkova
commit: 14dfbcff96a78820d829a721726cec2f405ab3a7
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:15:01 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:15:01 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=14dfbcff

dev-crystal/lucky_flow: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/lucky_flow/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/lucky_flow/metadata.xml 
b/dev-crystal/lucky_flow/metadata.xml
index 7ebbd0334..496b9d4d0 100644
--- a/dev-crystal/lucky_flow/metadata.xml
+++ b/dev-crystal/lucky_flow/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Paul Smith
+   paulcsmith0...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: e251a8870b99af1875a66f24c551539f03a331a3
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:15:33 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:15:33 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e251a887

dev-crystal/radix: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/radix/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/radix/metadata.xml b/dev-crystal/radix/metadata.xml
index 7ebbd0334..8f83534b3 100644
--- a/dev-crystal/radix/metadata.xml
+++ b/dev-crystal/radix/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Luis Lavena
+   luislav...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 4f24b8766fe5c93fa8cfb2fab62397681964
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:15:47 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:15:47 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4f24b876

dev-crystal/selenium: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/selenium/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/selenium/metadata.xml 
b/dev-crystal/selenium/metadata.xml
index 7ebbd0334..b597cb279 100644
--- a/dev-crystal/selenium/metadata.xml
+++ b/dev-crystal/selenium/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Matthew McGarvey
+   matthewmcgarve...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 7f63a114e93bb737fff876cd0ab088b22c67d576
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:13:47 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:13:47 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7f63a114

dev-crystal/inflector: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/inflector/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/inflector/metadata.xml 
b/dev-crystal/inflector/metadata.xml
index 7ebbd0334..7b8939ec0 100644
--- a/dev-crystal/inflector/metadata.xml
+++ b/dev-crystal/inflector/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Paul Hoffer
+   g...@paulhoffer.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: a280e7ad86fbc0f0bbe840aac44d10812f3f5bb7
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:14:48 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:14:48 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a280e7ad

dev-crystal/liquid: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/liquid/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/liquid/metadata.xml b/dev-crystal/liquid/metadata.xml
index 7ebbd0334..1402aa898 100644
--- a/dev-crystal/liquid/metadata.xml
+++ b/dev-crystal/liquid/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Arnaud Fernandés
+   arnaud.fernan...@laposte.net
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 1006b26f9c6dd8c769f28b871d07f6c2148d8c3c
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:17:01 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:17:01 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1006b26f

dev-crystal/webless: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/webless/metadata.xml | 4 
 1 file changed, 4 insertions(+)

diff --git a/dev-crystal/webless/metadata.xml b/dev-crystal/webless/metadata.xml
index 796df1c9d..081f4315e 100644
--- a/dev-crystal/webless/metadata.xml
+++ b/dev-crystal/webless/metadata.xml
@@ -7,5 +7,9 @@


matthewmcgarvey/webless
+   
+   matthewmcgarvey
+   matthewmcgarve...@gmail.com
+   

 



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

2023-06-07 Thread Anna Vyalkova
commit: ccb87eccc549558f458eb7f5c2a9da651696cc35
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:11:57 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:11:57 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ccb87ecc

dev-crystal/crystal-html5: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crystal-html5/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/crystal-html5/metadata.xml 
b/dev-crystal/crystal-html5/metadata.xml
index 7ebbd0334..fad56c7d9 100644
--- a/dev-crystal/crystal-html5/metadata.xml
+++ b/dev-crystal/crystal-html5/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Ali Naqvi
+   syed.alina...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: d9adeee57a838b5a06f85365f8c19ed7331457f9
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:15:18 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:15:18 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d9adeee5

dev-crystal/protodec: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/protodec/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/protodec/metadata.xml 
b/dev-crystal/protodec/metadata.xml
index 7ebbd0334..22b28aca3 100644
--- a/dev-crystal/protodec/metadata.xml
+++ b/dev-crystal/protodec/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Omar Roth
+   omarr...@protonmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 59228445d2f972e78619d80bcade6872a36dceb6
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:13:31 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:13:31 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=59228445

dev-crystal/habitat: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/habitat/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/habitat/metadata.xml b/dev-crystal/habitat/metadata.xml
index 7ebbd0334..496b9d4d0 100644
--- a/dev-crystal/habitat/metadata.xml
+++ b/dev-crystal/habitat/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Paul Smith
+   paulcsmith0...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: bab3faff4c10a778addc417e48157ddbb316df27
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:16:04 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:16:04 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bab3faff

dev-crystal/slang: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/slang/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/slang/metadata.xml b/dev-crystal/slang/metadata.xml
index 7ebbd0334..bbb3a618b 100644
--- a/dev-crystal/slang/metadata.xml
+++ b/dev-crystal/slang/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Jerome Gravel-Niquet
+   jerom...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 41e20d1e3ee054bead112ea2addea7ef5b435ef6
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:10:33 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:10:33 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=41e20d1e

dev-crystal/crikey: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crikey/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/crikey/metadata.xml b/dev-crystal/crikey/metadata.xml
index 7ebbd0334..108c5562c 100644
--- a/dev-crystal/crikey/metadata.xml
+++ b/dev-crystal/crikey/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Dominic Muller
+   nicklink...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 9e3c2d4df91e143ceb49ecd4e471444e980a490c
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:10:03 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:10:03 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9e3c2d4d

dev-crystal/backtracer: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/backtracer/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/backtracer/metadata.xml 
b/dev-crystal/backtracer/metadata.xml
index 7ebbd0334..e4a49c8fa 100644
--- a/dev-crystal/backtracer/metadata.xml
+++ b/dev-crystal/backtracer/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Sijawusz Pur Rahnama
+   s...@sija.pl
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: d67de62d156d711c498c5f9913f69ecfc4b0351d
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:16:32 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:16:32 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d67de62d

dev-crystal/water: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/water/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/water/metadata.xml b/dev-crystal/water/metadata.xml
index 7ebbd0334..3d775c254 100644
--- a/dev-crystal/water/metadata.xml
+++ b/dev-crystal/water/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Shootingfly
+   xie...@yolanda.hk
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 60875894535cff3a24f55115ebe45cd5a4ff8fb5
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:16:18 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:16:18 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=60875894

dev-crystal/spectator: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/spectator/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/spectator/metadata.xml 
b/dev-crystal/spectator/metadata.xml
index 7ebbd0334..3dfb6909c 100644
--- a/dev-crystal/spectator/metadata.xml
+++ b/dev-crystal/spectator/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Michael Miller
+   icy.arctic@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 710cf4aca66c437dc86428cc67da2386bc6ca998
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:14:20 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:14:20 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=710cf4ac

dev-crystal/kemal: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/kemal/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/kemal/metadata.xml b/dev-crystal/kemal/metadata.xml
index 7ebbd0334..a7b2f2c0f 100644
--- a/dev-crystal/kemal/metadata.xml
+++ b/dev-crystal/kemal/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Serdar Dogruyol
+   dogruyolser...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 2acd34c63caf134e1938b62fce91e5efb1850066
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:14:34 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:14:34 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2acd34c6

dev-crystal/kilt: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/kilt/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/kilt/metadata.xml b/dev-crystal/kilt/metadata.xml
index 7ebbd0334..bbb3a618b 100644
--- a/dev-crystal/kilt/metadata.xml
+++ b/dev-crystal/kilt/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Jerome Gravel-Niquet
+   jerom...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 80518b99a930dbc46c500d211c27b12eddc063b2
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:12:42 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:12:42 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=80518b99

dev-crystal/crystal-xpath2: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crystal-xpath2/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/crystal-xpath2/metadata.xml 
b/dev-crystal/crystal-xpath2/metadata.xml
index 7ebbd0334..fad56c7d9 100644
--- a/dev-crystal/crystal-xpath2/metadata.xml
+++ b/dev-crystal/crystal-xpath2/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Ali Naqvi
+   syed.alina...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 286d09b7f7466cada0a2a7bc1bf58eb1877052d9
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:14:03 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:14:03 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=286d09b7

dev-crystal/json_mapping: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/json_mapping/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/json_mapping/metadata.xml 
b/dev-crystal/json_mapping/metadata.xml
index 7ebbd0334..47d4b6462 100644
--- a/dev-crystal/json_mapping/metadata.xml
+++ b/dev-crystal/json_mapping/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Brian J. Cardiff
+   bcard...@manas.tech
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 97dabd237877317c4deff6446e0b2fe439ba5b27
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:13:15 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:13:15 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=97dabd23

dev-crystal/exception_page: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/exception_page/metadata.xml | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/dev-crystal/exception_page/metadata.xml 
b/dev-crystal/exception_page/metadata.xml
index 7ebbd0334..667d7a27d 100644
--- a/dev-crystal/exception_page/metadata.xml
+++ b/dev-crystal/exception_page/metadata.xml
@@ -5,4 +5,14 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Paul Smith
+   paulcsmith0...@gmail.com
+   
+   
+   Sijawusz Pur Rahnama
+   s...@sija.pl
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 3830fbcc0fe73f90ccab333580327b5edc974167
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:12:58 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:12:58 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3830fbcc

dev-crystal/crystar: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crystar/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/crystar/metadata.xml b/dev-crystal/crystar/metadata.xml
index 7ebbd0334..fad56c7d9 100644
--- a/dev-crystal/crystar/metadata.xml
+++ b/dev-crystal/crystar/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Ali Naqvi
+   syed.alina...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 358fe5ae3f1ff596450da8528d73b340e71c2654
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:11:42 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:11:42 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=358fe5ae

dev-crystal/crystal-fnv: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crystal-fnv/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/crystal-fnv/metadata.xml 
b/dev-crystal/crystal-fnv/metadata.xml
index 7ebbd0334..fad56c7d9 100644
--- a/dev-crystal/crystal-fnv/metadata.xml
+++ b/dev-crystal/crystal-fnv/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Ali Naqvi
+   syed.alina...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 2172b9a788f6b107c5fcaa886fe84b3996f503b7
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:12:24 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:12:24 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2172b9a7

dev-crystal/crystal-sqlite3: add upstream maintainers

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crystal-sqlite3/metadata.xml | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/dev-crystal/crystal-sqlite3/metadata.xml 
b/dev-crystal/crystal-sqlite3/metadata.xml
index 7ebbd0334..1d55295a6 100644
--- a/dev-crystal/crystal-sqlite3/metadata.xml
+++ b/dev-crystal/crystal-sqlite3/metadata.xml
@@ -5,4 +5,14 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Ary Borenszweig
+   aborenszw...@manas.tech
+   
+   
+   Brian J. Cardiff
+   bcard...@manas.tech
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: 098a7dd3c4d95137e536fd413d5e83405b934e44
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:11:04 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:11:04 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=098a7dd3

dev-crystal/crustache: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crustache/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/crustache/metadata.xml 
b/dev-crystal/crustache/metadata.xml
index 7ebbd0334..3bdbe7f03 100644
--- a/dev-crystal/crustache/metadata.xml
+++ b/dev-crystal/crustache/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   TSUYUSATO Kitsune
+   make.just...@gmail.com
+   
+   
 



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

2023-06-07 Thread Anna Vyalkova
commit: c60ff8d23a005d08bb4354ef64860d977d9a5ba7
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed Jun  7 20:11:26 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed Jun  7 20:11:26 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c60ff8d2

dev-crystal/crystal-db: add upstream maintainer

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 dev-crystal/crystal-db/metadata.xml | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/dev-crystal/crystal-db/metadata.xml 
b/dev-crystal/crystal-db/metadata.xml
index 7ebbd0334..47d4b6462 100644
--- a/dev-crystal/crystal-db/metadata.xml
+++ b/dev-crystal/crystal-db/metadata.xml
@@ -5,4 +5,10 @@
cyber+gen...@sysrq.in
Anna

+   
+   
+   Brian J. Cardiff
+   bcard...@manas.tech
+   
+   
 



  1   2   3   >