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

2023-07-07 Thread Arthur Zamarin
commit: 098174e77d2640872404beb286d5e2c44077f7f5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jul  7 19:05:26 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jul  7 19:05:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=098174e7

sys-process/iotop-c: fix extra _FORTIFY_SOURCE

Closes: https://bugs.gentoo.org/898166
Signed-off-by: Arthur Zamarin  gentoo.org>

 .../iotop-c/{iotop-c-1.23.ebuild => iotop-c-1.23-r1.ebuild}| 5 +
 sys-process/iotop-c/iotop-c-.ebuild| 7 ++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/sys-process/iotop-c/iotop-c-1.23.ebuild 
b/sys-process/iotop-c/iotop-c-1.23-r1.ebuild
similarity index 90%
rename from sys-process/iotop-c/iotop-c-1.23.ebuild
rename to sys-process/iotop-c/iotop-c-1.23-r1.ebuild
index 01595c683cbc..c401c231d083 100644
--- a/sys-process/iotop-c/iotop-c-1.23.ebuild
+++ b/sys-process/iotop-c/iotop-c-1.23-r1.ebuild
@@ -25,6 +25,11 @@ FILECAPS=(
cap_net_admin=eip usr/bin/iotop
 )
 
+src_prepare() {
+   sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
+   default
+}
+
 src_compile() {
emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
 }

diff --git a/sys-process/iotop-c/iotop-c-.ebuild 
b/sys-process/iotop-c/iotop-c-.ebuild
index b05952298d1d..47a5c48a0a0e 100644
--- a/sys-process/iotop-c/iotop-c-.ebuild
+++ b/sys-process/iotop-c/iotop-c-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -23,6 +23,11 @@ FILECAPS=(
cap_net_admin=eip usr/bin/iotop
 )
 
+src_prepare() {
+   sed -e 's/-D_FORTIFY_SOURCE=2//' -i Makefile || die
+   default
+}
+
 src_compile() {
emake V=1 CC="$(tc-getCC)" PKG_CONFIG="$(tc-getPKG_CONFIG)" NO_FLTO=1
 }



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

2023-07-07 Thread Arthur Zamarin
commit: 9d381821a0d9521e0a181bdd0dc7f9ac682e5020
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jul  7 18:56:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jul  7 18:56:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d381821

app-text/sigil: remove IUSE="system-mathjax"

It currently depends on mathjax3, which might take sometime to bump
the current mathjax ebuild (consumers using v2 instead of v3 and
such). For now I'll remove the useflag, and readd it in the future
when ::gentoo's mathjax is v3.

Closes: https://bugs.gentoo.org/907716
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-text/sigil/metadata.xml| 1 -
 app-text/sigil/sigil-1.9.30.ebuild | 5 ++---
 2 files changed, 2 insertions(+), 4 deletions(-)

diff --git a/app-text/sigil/metadata.xml b/app-text/sigil/metadata.xml
index 16a802d7daa4..4daa9a331609 100644
--- a/app-text/sigil/metadata.xml
+++ b/app-text/sigil/metadata.xml
@@ -7,7 +7,6 @@


Installed needed Python packages for using 
Sigil plugins
-   Use the system-wide 
dev-libs/mathjax instead of bundled


Sigil-Ebook/Sigil

diff --git a/app-text/sigil/sigil-1.9.30.ebuild 
b/app-text/sigil/sigil-1.9.30.ebuild
index 621537704a6e..681e2613d8dd 100644
--- a/app-text/sigil/sigil-1.9.30.ebuild
+++ b/app-text/sigil/sigil-1.9.30.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${P^}"
 LICENSE="GPL-3+ Apache-2.0"
 SLOT="0"
 KEYWORDS="amd64"
-IUSE="+plugins system-mathjax"
+IUSE="+plugins"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 RDEPEND="
@@ -41,7 +41,6 @@ RDEPEND="
dev-python/html5lib[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/regex[${PYTHON_USEDEP}]') )
-   system-mathjax? ( dev-libs/mathjax )
 "
 DEPEND="${RDEPEND}"
 BDEPEND="
@@ -63,7 +62,7 @@ src_configure() {
-DUSE_SYSTEM_LIBS=1
-DUSE_QT6=0
)
-   use system-mathjax && mycmakeargs+=( 
-DMATHJAX_DIR="${EPREFIX}"/usr/share/mathjax )
+   # use system-mathjax && mycmakeargs+=( 
-DMATHJAX3_DIR="${EPREFIX}"/usr/share/mathjax )
 
cmake_src_configure
 }



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/breezy/

2023-07-07 Thread Arthur Zamarin
commit: 460d3785d6172e9966beb9bfa5fee9a95d8ebe67
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Jul  7 18:34:02 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jul  7 18:34:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=460d3785

dev-vcs/breezy: add 3.3.0, enable py3.11, restrict tests

I've given up on adding tests. Yes, we have 29K out of 30K passed.
The 1K failing is ERROR/FAIL, so some of them might be false
positives, maybe something with portage sandbox, maybe with not CI
environment - I've given up. I conclude that it is good enough for
now.

Closes: https://bugs.gentoo.org/896944
Closes: https://bugs.gentoo.org/903674
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-vcs/breezy/Manifest|  37 ++
 dev-vcs/breezy/breezy-3.3.0.ebuild | 102 +
 2 files changed, 139 insertions(+)

diff --git a/dev-vcs/breezy/Manifest b/dev-vcs/breezy/Manifest
index a2600d08a8eb..2a59024654d0 100644
--- a/dev-vcs/breezy/Manifest
+++ b/dev-vcs/breezy/Manifest
@@ -1 +1,38 @@
+DIST aho-corasick-1.0.2.crate 167694 BLAKE2B 
fa5323cbe6cb73594dfa4c327c64676bc1e006dadc0b9def325974c83b9a769beba02d59a4657ec7a2d0cc511a7b7cc6f72cf57b8f9e639206d1c2bf13107a52
 SHA512 
5c75451f96fbbd670e6af0e1f54df2bdb57259dfe6898495ac46a5b2fc04f316a4698fd5cfd4ec31a94c298661937a8de08ce97cab3890fb3c015e4a2a67bb7b
+DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
+DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
 DIST breezy-3.2.1.tar.gz 9445046 BLAKE2B 
67de39c93351d2f78b1b64764a6ad11f26bd31c9bb2d73ef65f8722764d7db8c574f0e116f77dca1b93a53a360f984fb2861f94e0e7f41ce97ad0f703332e25e
 SHA512 
bfbbff1301f7cc13a2d59b1add80c196f3b45b69994194dcae96c0be151f807c965854047c86e43f54dd8c7aa24d56b25afdd00f0063e83b362a8c46d5858226
+DIST breezy-3.3.0.tar.gz 11386758 BLAKE2B 
2244f4f5bbe8c0d782e686c946e1891a4048099535e405370162dc6e5517dc59fbee3e6250b05a747fa2947328c9627ac612adbaa22469e43f3786d0b45b
 SHA512 
be45eb602b7c474166f6f427e1aca5ead1856e9ca5949aa619af66df59f881bf024bd71e11af41b4a79defe9af4ed91ab2497f5f2057a000ca3f946039325af9
+DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
+DIST indoc-0.3.6.crate 9663 BLAKE2B 
ca7a1f4d3cbedbee0ba0a3f19c4b3352ff90927eef744b7e4f1d60855d4dc4265202972e81e0fc06d1222d8d5fb322efc4ef669af7396b251248a1e45c91def2
 SHA512 
e900aa3b001df0fdbf1f543d8b679af317e85a1f95e26fc556213f2826a4f6c82d8c4f3f82de435e3591f8bc14e78eb22668d901dcbe2287f46740e0291afacd
+DIST indoc-impl-0.3.6.crate 7933 BLAKE2B 
93e232e360e8f02943ef9a9cabf16bc863d792d8096b8d9a13a07f0b7b396db590abf83b5444f082317059dad7578ffae974dbc8a7e56fbdbab817b7d2534725
 SHA512 
18406587ee56a09dd2062cee456af697efa903343de42c0ff618a64ddf2bf7efed5da02e7220fed2636c555a6ae18059018f5c3c9b44ba8d3e5a34ea5b53c806
+DIST instant-0.1.12.crate 6128 BLAKE2B 
728923f757c1ee4e4a7afb90e460eed81392068961240a538e5c6468e15a0b6491f590fb5f6cc46e6d78901ca232351f65abb9f2f230d8f4983c5e58c4011902
 SHA512 
fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407
+DIST lazy_static-1.4.0.crate 10443 BLAKE2B 
25b2e61bbac48f0dcbc79c81d7bf01f2403d8269ecb6be3ea6147bd00f7a588df15a91f44dfc18ada19b21faa71de4637c7d493a8628cbecd0e547d74e616a23
 SHA512 
e124c0521ec7c950f3c4a066821918da7a9c6e75d98009ae7c351928fdddead852e7596fea5937a9c30e4e4ce8eee7099b20248b5d6e3b2494b6a6d88cb8
+DIST libc-0.2.147.crate 686772 BLAKE2B 
ab2f0c65d071d46b8b88149add1c8429237ef6d9e0563d56ee1adbf23e6147dbb57fb68fbd02498f8ec75327693237a47e5e5259615ce8b0d5ed7a03bbf4fffb
 SHA512 
bfb3c230b59d623b98726f92b7c3f897b47ba3d22fe9834c15f5b4c1b662289aba35a0ae3acfc704ad74696db8c691ee007b9cc6fa03ae65a18eb6bedc81931e
+DIST lock_api-0.4.10.crate 26713 BLAKE2B 
113adf8554c65e9782e8fd0360d0398567dfbfddb1fea4928cc152fbab98dbe086e42b81170f6f5c333d61dd3261e8a1ebfbaed786e6bf6378e6afde6d7f9e5c
 SHA512 
ffe8cad8099bc382832181c1ff95e0935993491f247114604201be7d4ddf8402fd4db8fd6499c611f95fbce7d57dc3d3738eddfab31c52f50ab8709e549697db
+DIST memchr-2.5.0.crate 65812 BLAKE2B 
57966413a1f933dcb2d2d4ccb29c247070f65a83299b2a9f5aa83f5a48a5c5f1c4c7c632fa63bd19f9508e9291e7258db2f16e2813a56fd84e0856f70f1e67ab
 SHA512 

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

2023-07-07 Thread Arthur Zamarin
commit: f0bfff51de96224263f980777e1edcd62f3e2703
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue Jul  4 18:06:06 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Jul  7 18:13:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0bfff51

dev-python/fastbencode: new package, add 0.2

Dependency for dev-vcs/breezy

Bug: https://bugs.gentoo.org/896944
Co-authored-by: Marcus Comstedt  mc.pp.se>
Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/fastbencode/Manifest   |  1 +
 dev-python/fastbencode/fastbencode-0.2.ebuild | 26 ++
 dev-python/fastbencode/metadata.xml   | 12 
 3 files changed, 39 insertions(+)

diff --git a/dev-python/fastbencode/Manifest b/dev-python/fastbencode/Manifest
new file mode 100644
index ..b0c883f2d5e8
--- /dev/null
+++ b/dev-python/fastbencode/Manifest
@@ -0,0 +1 @@
+DIST fastbencode-0.2.tar.gz 22580 BLAKE2B 
87e14260cf7174ee1b40372879efed7b8fef3302ec0783cf9ebd103e9730c0f415ccd96c2ada944849b7cf63bf2998d2ddc644307619449b29177c680730233b
 SHA512 
4cc62d8ed54fcf1d989e026ad2b4d0c1f4a2fa762d9c2f7da182501af7454f802202c47763b714072009357858a3f93ea6ad9b3e9f80742b749f5014f84e1598

diff --git a/dev-python/fastbencode/fastbencode-0.2.ebuild 
b/dev-python/fastbencode/fastbencode-0.2.ebuild
new file mode 100644
index ..33b5303ae6ab
--- /dev/null
+++ b/dev-python/fastbencode/fastbencode-0.2.ebuild
@@ -0,0 +1,26 @@
+# Copyright 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=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Implementation of bencode with optional fast C extensions"
+HOMEPAGE="
+   https://github.com/breezy-team/fastbencode
+   https://pypi.org/project/fastbencode/
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests unittest

diff --git a/dev-python/fastbencode/metadata.xml 
b/dev-python/fastbencode/metadata.xml
new file mode 100644
index ..a626371679bf
--- /dev/null
+++ b/dev-python/fastbencode/metadata.xml
@@ -0,0 +1,12 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   pyt...@gentoo.org
+   Python
+   
+   
+   fastbencode
+   breezy-team/fastbencode
+   
+



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

2023-07-07 Thread Michał Górny
commit: 5675adee837b80f5a764ad48324ed425c570f5f9
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul  7 18:00:36 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul  7 18:04:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5675adee

sys-kernel/gentoo-kernel: Stabilize 6.1.38 amd64 arm64 ppc64 x86, #909777

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

 sys-kernel/gentoo-kernel/gentoo-kernel-6.1.38.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.38.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.38.ebuild
index c338d2cfc68f..2e6c2fb568e4 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.38.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-6.1.38.ebuild
@@ -43,7 +43,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
 IUSE="debug hardened"
 REQUIRED_USE="arm? ( savedconfig )
hppa? ( savedconfig )



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

2023-07-07 Thread Michał Górny
commit: 2ceeec455b65b54556b6508d090b467ba1f4351c
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul  7 18:00:36 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul  7 18:04:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ceeec45

virtual/dist-kernel: Stabilize 6.1.38 amd64 arm64 ppc64 x86, #909777

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

 virtual/dist-kernel/dist-kernel-6.1.38.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/dist-kernel/dist-kernel-6.1.38.ebuild 
b/virtual/dist-kernel/dist-kernel-6.1.38.ebuild
index d3f0fa8764cf..43c9e88b8a76 100644
--- a/virtual/dist-kernel/dist-kernel-6.1.38.ebuild
+++ b/virtual/dist-kernel/dist-kernel-6.1.38.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm arm64 ~hppa ~ppc ppc64 ~riscv x86"
 
 RDEPEND="
|| (



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-kernel-bin/

2023-07-07 Thread Michał Górny
commit: 7865656355f38c4f5957fef87f1955265bd3d1ca
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul  7 18:00:36 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul  7 18:04:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78656563

sys-kernel/gentoo-kernel-bin: Stabilize 6.1.38 amd64 arm64 ppc64 x86, #909777

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

 sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.38.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.38.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.38.ebuild
index 83c6a5e4fa8f..bbd48fd37dc6 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.38.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-6.1.38.ebuild
@@ -35,7 +35,7 @@ SRC_URI+="
 S=${WORKDIR}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 arm64 ppc64 x86"
 
 RDEPEND="
!sys-kernel/gentoo-kernel:${SLOT}



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

2023-07-07 Thread Ulrich Müller
commit: adb88b29915fa78c65eae0e0c7e2e4957d02bf16
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Jul  7 17:38:18 2023 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jul  7 17:41:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb88b29

media-video/simplescreenrecorder: Add slot dependency on ffmpeg

Signed-off-by: Ulrich Müller  gentoo.org>

 ...eenrecorder-0.4.4-r2.ebuild => simplescreenrecorder-0.4.4-r3.ebuild} | 2 +-
 media-video/simplescreenrecorder/simplescreenrecorder-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/media-video/simplescreenrecorder/simplescreenrecorder-0.4.4-r2.ebuild 
b/media-video/simplescreenrecorder/simplescreenrecorder-0.4.4-r3.ebuild
similarity index 98%
rename from 
media-video/simplescreenrecorder/simplescreenrecorder-0.4.4-r2.ebuild
rename to media-video/simplescreenrecorder/simplescreenrecorder-0.4.4-r3.ebuild
index c07b20b0..735efe53c501 100644
--- a/media-video/simplescreenrecorder/simplescreenrecorder-0.4.4-r2.ebuild
+++ b/media-video/simplescreenrecorder/simplescreenrecorder-0.4.4-r3.ebuild
@@ -30,7 +30,7 @@ RDEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-libs/alsa-lib:0=
-   media-video/ffmpeg[vorbis?,vpx?,x264?,mp3?,theora?]
+   media-video/ffmpeg:=[vorbis?,vpx?,x264?,mp3?,theora?]
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXext
x11-libs/libXfixes[${MULTILIB_USEDEP}]

diff --git a/media-video/simplescreenrecorder/simplescreenrecorder-.ebuild 
b/media-video/simplescreenrecorder/simplescreenrecorder-.ebuild
index 5d68f605635a..5816cb829b9c 100644
--- a/media-video/simplescreenrecorder/simplescreenrecorder-.ebuild
+++ b/media-video/simplescreenrecorder/simplescreenrecorder-.ebuild
@@ -30,7 +30,7 @@ RDEPEND="
dev-qt/qtwidgets:5
dev-qt/qtx11extras:5
media-libs/alsa-lib:0=
-   media-video/ffmpeg[vorbis?,vpx?,x264?,mp3?,theora?]
+   media-video/ffmpeg:=[vorbis?,vpx?,x264?,mp3?,theora?]
x11-libs/libX11[${MULTILIB_USEDEP}]
x11-libs/libXext
x11-libs/libXfixes[${MULTILIB_USEDEP}]



[gentoo-commits] repo/proj/guru:dev commit in: app-office/jameica-bin/

2023-07-07 Thread Adrian Schollmeyer
commit: 944d57f4d6c1f3d659f68cf719f232efe1bf6a8f
Author: Adrian Schollmeyer  nexadn  de>
AuthorDate: Fri Jul  7 17:40:35 2023 +
Commit: Adrian Schollmeyer  nexadn  de>
CommitDate: Fri Jul  7 17:40:35 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=944d57f4

app-office/jameica-bin: add 2.10.4, drop 2.10.3

Signed-off-by: Adrian Schollmeyer  nexadn.de>

 app-office/jameica-bin/Manifest | 2 +-
 .../{jameica-bin-2.10.3.ebuild => jameica-bin-2.10.4.ebuild}| 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-office/jameica-bin/Manifest b/app-office/jameica-bin/Manifest
index cc3185563..e2e2587cd 100644
--- a/app-office/jameica-bin/Manifest
+++ b/app-office/jameica-bin/Manifest
@@ -1 +1 @@
-DIST jameica-linux64-2.10.3.zip 28886523 BLAKE2B 
d49e187d5862155583ecda50e83345988aa94493737d76f5002a4c8b0f69995b3023bc696bfaed8a4f15ebe39bc7c7a95fd5c28db6be7800bf66f15af93a215b
 SHA512 
080dc2c04acec725b5cbf8fd025743e91742065b4ef0d44a44e149bfaf74ac69b9061a925bc89282cbd12e22c39b2bcfa93902f473fdd9319eb2f46ff164da5a
+DIST jameica-linux64-2.10.4.zip 38951918 BLAKE2B 
039e973df99c61cec7df23f0d97c71225642872d45b7d413df7cd458f0faa9bc8f1394e107e16c3e4c9555995da7e5363381e25481766f4832ad834157b2716e
 SHA512 
1cfa5601e69138941727719c5910fb452cc2ab06bef0e196773e3c079a1f49f1e4dbe7e51f11e9b30f14157bd41be8200ad6ff14f57efd31048ae07d8f307cad

diff --git a/app-office/jameica-bin/jameica-bin-2.10.3.ebuild 
b/app-office/jameica-bin/jameica-bin-2.10.4.ebuild
similarity index 100%
rename from app-office/jameica-bin/jameica-bin-2.10.3.ebuild
rename to app-office/jameica-bin/jameica-bin-2.10.4.ebuild



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

2023-07-07 Thread Maciej Barć
commit: 84e937bf8cc304449b196a383387720f018fa8be
Author: Maciej Barć  gentoo  org>
AuthorDate: Fri Jul  7 17:32:30 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Fri Jul  7 17:32:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e937bf

app-text/pandoc-bin: bump to 3.1.5

Signed-off-by: Maciej Barć  gentoo.org>

 app-text/pandoc-bin/Manifest|  2 ++
 app-text/pandoc-bin/pandoc-bin-3.1.5.ebuild | 56 +
 2 files changed, 58 insertions(+)

diff --git a/app-text/pandoc-bin/Manifest b/app-text/pandoc-bin/Manifest
index dd7aef19fd06..2e6ed1cd6eec 100644
--- a/app-text/pandoc-bin/Manifest
+++ b/app-text/pandoc-bin/Manifest
@@ -4,3 +4,5 @@ DIST pandoc-3.1.3-linux-amd64.tar.gz 28685814 BLAKE2B 
ecbc685d45ced12f69223ceff4
 DIST pandoc-3.1.3-linux-arm64.tar.gz 30811766 BLAKE2B 
5d5807ea6de49fe87b31f51754d70f781fbd27111980bb14eaafd985a53f7e4fa1c7c0dd66d041184194d5b6a74a429e78b8a0913532645d29b47dbc82e154fb
 SHA512 
6bb8b658e2ea3c96e5781754618104086268dbad45bd95ed7474842993c57cbd18ef1bb909556a1aef118589624d431b17454cd76e8b44dbe441e463e6332a1b
 DIST pandoc-3.1.4-linux-amd64.tar.gz 28628391 BLAKE2B 
b929d7c1f37f0630a816e07cf0b67a35dd474bfe55626c1ea3c4acefa61a4a7fe335cc1913c01ca3fd45fa1469f957ad671b08fc7e0bd1d4ca6404fe3817f1dc
 SHA512 
f59b66bae4b365ef1291ca979e47ee3955d017112b645da0b7b70dfc84cfc32d29ceb948e6ddd2f16a847867df661b69d1e0f0058259d53613a0ee5b61f312d9
 DIST pandoc-3.1.4-linux-arm64.tar.gz 30740344 BLAKE2B 
d0504eb6e530d91d223fcd5b578651ba4be74141c7cc4f2616a2a56dbdd73deafd8997a2eb0d0d4b7b75591219cbd194d3412e7c7f60bd6dfd1b97614e6d40bf
 SHA512 
0e63ed951ae1032c2ee29b36f2df5b2edba10d9993bccc2baacc378f82201f5afc38cfc5ffce234b5a8dcaac51ece1967c76a7ae30af0286c8083f0aa8b1573a
+DIST pandoc-3.1.5-linux-amd64.tar.gz 31034735 BLAKE2B 
c2704142f90a95c8bfe045ba1a6d7ce29c7e0f3c755a2fa85a694ce01d05f97814e0ccec70cc7da17c57fcb4124bc10afc4d06d40437eec08d984350d74cdae0
 SHA512 
97454c530e7fa95bc4cda90ff803422850d620c7f6452be855b9198fc71832ef2531f2350044b110b36804f745ca90c44ffb4f2013bee78fdc935f810b55ed41
+DIST pandoc-3.1.5-linux-arm64.tar.gz 33687622 BLAKE2B 
8021c04ba2a3b71db6b758a21e7dcc2708a2db871fd6604fdf9e2f89619f6141913b4a0bf267e775646a4a0d23308f64487bffe632f75bee53f02110b91e10a8
 SHA512 
ca64066d438076571979af998e19c89295e7d297a3c5365aaefbd4665e20a6ea1f19a1d8a320b2bc98fb0511a43570fbe3850bcbb13c3b3b054e3c13bd9d0142

diff --git a/app-text/pandoc-bin/pandoc-bin-3.1.5.ebuild 
b/app-text/pandoc-bin/pandoc-bin-3.1.5.ebuild
new file mode 100644
index ..f5289c741e6a
--- /dev/null
+++ b/app-text/pandoc-bin/pandoc-bin-3.1.5.ebuild
@@ -0,0 +1,56 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN=${PN//-bin/}
+MY_P=${MY_PN}-${PV}
+
+DESCRIPTION="Conversion between markup formats (binary package)"
+HOMEPAGE="https://pandoc.org/
+   https://github.com/jgm/pandoc/;
+
+BASE_URI="https://github.com/jgm/${MY_PN}/releases/download/${PV}/${MY_P};
+SRC_URI="
+   amd64? ( ${BASE_URI}-linux-amd64.tar.gz )
+   arm64? ( ${BASE_URI}-linux-arm64.tar.gz )
+"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm64"
+IUSE="+pandoc-symlink"
+
+RDEPEND="pandoc-symlink? ( !${CATEGORY}/${MY_PN} )"
+
+QA_FLAGS_IGNORED="usr/bin/${PN}"
+QA_PRESTRIPPED="${QA_FLAGS_IGNORED}"
+
+src_unpack() {
+   default
+
+   # Manpages are gzipped.
+   unpack "${S}"/share/man/man1/*.1.gz
+}
+
+src_install() {
+   exeinto /usr/bin
+   newexe bin/${MY_PN} ${PN}
+   dosym ${PN} /usr/bin/pandoc-lua-bin
+   dosym ${PN} /usr/bin/pandoc-server-bin
+
+   newman "${WORKDIR}"/${MY_PN}-lua.1 pandoc-lua-bin.1
+   newman "${WORKDIR}"/${MY_PN}-server.1 pandoc-server-bin.1
+   newman "${WORKDIR}"/${MY_PN}.1 ${PN}.1
+
+   if use pandoc-symlink ; then
+   dosym ${PN} /usr/bin/${MY_PN}
+   dosym pandoc-lua-bin /usr/bin/${MY_PN}-lua
+   dosym pandoc-server-bin /usr/bin/${MY_PN}-server
+
+   dosym ${PN}.1 /usr/share/man/man1/${MY_PN}.1
+   dosym pandoc-lua-bin.1 /usr/share/man/man1/${MY_PN}-lua.1
+   dosym pandoc-server-bin.1 /usr/share/man/man1/${MY_PN}-server.1
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: dev-cpp/cpp-httplib/

2023-07-07 Thread Maciej Barć
commit: 03d5e453a01cbd8d6f3b30250fccb6204cfdedfb
Author: Maciej Barć  gentoo  org>
AuthorDate: Fri Jul  7 17:35:00 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Fri Jul  7 17:35:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03d5e453

dev-cpp/cpp-httplib: bump to 0.13.0

Signed-off-by: Maciej Barć  gentoo.org>

 dev-cpp/cpp-httplib/Manifest  |  1 +
 dev-cpp/cpp-httplib/cpp-httplib-0.13.0.ebuild | 50 +++
 2 files changed, 51 insertions(+)

diff --git a/dev-cpp/cpp-httplib/Manifest b/dev-cpp/cpp-httplib/Manifest
index 724a835a0c32..364f06a709d9 100644
--- a/dev-cpp/cpp-httplib/Manifest
+++ b/dev-cpp/cpp-httplib/Manifest
@@ -1,2 +1,3 @@
 DIST cpp-httplib-0.12.3.tar.gz 639107 BLAKE2B 
15db0056069cbda5359c6279ebc84520039e809f32cd8314c180dd761324a76fccaae0e80f39d0b69563903bd667799425c7e85708962b2763416a3c8bbd09bb
 SHA512 
3465e5c843ad4087bababadf8fe9f3e6961213301540053bb47f242f958280f43c85b03b8cf6f955a6b91bf9511a81669feeb9989344caf2a1e42ff587b3a460
 DIST cpp-httplib-0.12.6.tar.gz 641145 BLAKE2B 
56a1a9c2d048a608664cce1ea3737d8633d6dbc124b4a5b2b5a33f81d678efdd2b8b0c79fb88c23dd861f1c6264eddba32349740142e3765d61f811dd50d9909
 SHA512 
63f0172bb7f4b02f3640634f25801bc1e34d85f53c9915e6402d825891793de26faa7551dff88a44c23af39e3592b7863454d9c070b5bd0e546cb987bca14885
+DIST cpp-httplib-0.13.0.tar.gz 644021 BLAKE2B 
9ed1d49819662dbb6af04c4ab8b1d1cfa68db07d5b147f64c8c20a6a61f61490f518d9c8e405f867a130f0b455e530582ec9685deaadfd4b9f34790becf6495f
 SHA512 
8d91fe1f2780d2330112ebb3f3d3c6ac6526e8cb04902e15edefe6121d588495519551007c3c134e0d16f71460cba1680860e229b2318f8725ce651027a68a9a

diff --git a/dev-cpp/cpp-httplib/cpp-httplib-0.13.0.ebuild 
b/dev-cpp/cpp-httplib/cpp-httplib-0.13.0.ebuild
new file mode 100644
index ..d084d2656c17
--- /dev/null
+++ b/dev-cpp/cpp-httplib/cpp-httplib-0.13.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit cmake-multilib python-any-r1 toolchain-funcs
+
+DESCRIPTION="C++ HTTP/HTTPS server and client library"
+HOMEPAGE="https://github.com/yhirose/cpp-httplib/;
+SRC_URI="https://github.com/yhirose/cpp-httplib/archive/v${PV}.tar.gz
+   -> ${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0/$(ver_cut 1-2)"  # soversion
+KEYWORDS="~amd64 ~loong ~x86"
+
+IUSE="brotli ssl test zlib"
+REQUIRED_USE="test? ( brotli ssl zlib )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   brotli? ( app-arch/brotli:=[${MULTILIB_USEDEP}] )
+   ssl? ( dev-libs/openssl:=[${MULTILIB_USEDEP}] )
+   zlib? ( sys-libs/zlib[${MULTILIB_USEDEP}] )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="${PYTHON_DEPS}"
+
+src_configure() {
+   local -a mycmakeargs=(
+   -DHTTPLIB_COMPILE=yes
+   -DBUILD_SHARED_LIBS=yes
+   -DHTTPLIB_USE_BROTLI_IF_AVAILABLE=no
+   -DHTTPLIB_USE_OPENSSL_IF_AVAILABLE=no
+   -DHTTPLIB_USE_ZLIB_IF_AVAILABLE=no
+   -DHTTPLIB_REQUIRE_BROTLI=$(usex brotli)
+   -DHTTPLIB_REQUIRE_OPENSSL=$(usex ssl)
+   -DHTTPLIB_REQUIRE_ZLIB=$(usex zlib)
+   -DPython3_EXECUTABLE="${PYTHON}"
+   )
+   cmake-multilib_src_configure
+}
+
+multilib_src_test() {
+   cp -p -R --reflink=auto "${S}/test" ./test || die
+
+   GTEST_FILTER='-*.*_Online' emake -C test "CXX=$(tc-getCXX)" 
CXXFLAGS="${CXXFLAGS} -I."
+}



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

2023-07-07 Thread Gonçalo Negrier Duarte
commit: a1abfbdc0ca8110de49d9d687185888300acab0c
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 17:04:50 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 17:04:50 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a1abfbdc

games-util/protonup: new package, add 0.1.5, 

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 games-util/protonup/Manifest  |  1 +
 games-util/protonup/metadata.xml  |  7 +++
 games-util/protonup/protonup-0.1.5.ebuild | 27 +++
 games-util/protonup/protonup-.ebuild  | 25 +
 4 files changed, 60 insertions(+)

diff --git a/games-util/protonup/Manifest b/games-util/protonup/Manifest
new file mode 100644
index 0..55cc01502
--- /dev/null
+++ b/games-util/protonup/Manifest
@@ -0,0 +1 @@
+DIST 0.1.5.tar.gz 17868 BLAKE2B 
6ca242e86916e478282bf6a66f4a98911db5e993485b09c631640083ae71f2669fe5b64972b34ab7f97be460877c9493ba99398c1aad9c0e12b02a82f5599d92
 SHA512 
81b0337ba355ddb5c48adefc736fb6599f04beff59aeabf950844233aea01673d442617f477c7392fde30d818c629b8e807fea820b1119fa22df512523edbd20

diff --git a/games-util/protonup/metadata.xml b/games-util/protonup/metadata.xml
new file mode 100644
index 0..535dc7c17
--- /dev/null
+++ b/games-util/protonup/metadata.xml
@@ -0,0 +1,7 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   AUNaseef/protonup
+   
+

diff --git a/games-util/protonup/protonup-0.1.5.ebuild 
b/games-util/protonup/protonup-0.1.5.ebuild
new file mode 100644
index 0..0e94e66a7
--- /dev/null
+++ b/games-util/protonup/protonup-0.1.5.ebuild
@@ -0,0 +1,27 @@
+# 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..12} )
+
+EPYTHON=python3
+
+inherit distutils-r1
+SRC_URI="https://github.com/AUNaseef/protonup/archive/refs/tags/${PV}.tar.gz;
+DESCRIPTION="Install and Update Proton-GE"
+HOMEPAGE="https://github.com/AUNaseef/protonup;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+KEYWORDS="~amd64 ~x86"
+
+src_compile() {
+   distutils-r1_src_compile
+}
+
+src_install() {
+   distutils-r1_src_install
+}
\ No newline at end of file

diff --git a/games-util/protonup/protonup-.ebuild 
b/games-util/protonup/protonup-.ebuild
new file mode 100644
index 0..b749a6297
--- /dev/null
+++ b/games-util/protonup/protonup-.ebuild
@@ -0,0 +1,25 @@
+# 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..12} )
+
+EPYTHON=python3
+
+inherit git-r3 distutils-r1
+EGIT_REPO_URI="https://github.com/AUNaseef/protonup.git;
+DESCRIPTION="Install and Update Proton-GE"
+HOMEPAGE="https://github.com/AUNaseef/protonup;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+src_compile() {
+   distutils-r1_src_compile
+}
+
+src_install() {
+   distutils-r1_src_install
+}
\ No newline at end of file



[gentoo-commits] repo/proj/guru:dev commit in: games-util/ProtonUp-Qt/

2023-07-07 Thread Gonçalo Negrier Duarte
commit: a15c6e42362959ac7b585f195e6d7eda744489bc
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 17:09:03 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 17:09:03 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a15c6e42

games-util/ProtonUp-Qt: unkeyword 2.8.1 for ~x86

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild 
b/games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild
index 86c1a0cf1..99c19bbfd 100644
--- a/games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild
+++ b/games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild
@@ -21,7 +21,7 @@ DEPEND="dev-python/steam
 dev-python/zstandard
 "
 
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64"
 
 src_install() {
 insinto /opt/ProtonUp-Qt && doins -r "${WORKDIR}/${P}/pupgui2" && doins -r 
"${WORKDIR}/${P}/pupgui2"



[gentoo-commits] repo/proj/guru:dev commit in: games-util/ProtonUp-Qt/files/, games-util/ProtonUp-Qt/

2023-07-07 Thread Gonçalo Negrier Duarte
commit: b2787cc7e2997ee022813432ed8cea694d67ef7a
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 17:04:42 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 17:04:42 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b2787cc7

games-util/ProtonUp-Qt: new package, add 2.8.1, 

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 games-util/ProtonUp-Qt/Manifest  |  1 +
 games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild  | 34 
 games-util/ProtonUp-Qt/ProtonUp-Qt-.ebuild   | 32 ++
 games-util/ProtonUp-Qt/files/ProtonUp-Qt |  2 ++
 games-util/ProtonUp-Qt/files/ProtonUp-Qt.desktop | 12 +
 games-util/ProtonUp-Qt/metadata.xml  |  7 +
 6 files changed, 88 insertions(+)

diff --git a/games-util/ProtonUp-Qt/Manifest b/games-util/ProtonUp-Qt/Manifest
new file mode 100644
index 0..2d8155143
--- /dev/null
+++ b/games-util/ProtonUp-Qt/Manifest
@@ -0,0 +1 @@
+DIST v2.8.1.tar.gz 753488 BLAKE2B 
878bdf08d1098dbd3b2a5ae52bea347f23930fa20d356faf4bc0c74a79acc25fd22ea408bf81b1fe7f57a5266b6cdf56ae8729324dcdb27b291dae676d4c7c76
 SHA512 
2e1426b61c5c6f1bfc9814795ac4f0c0170235e43252403bb4b2ab4422d6b493c8c6c920ddace4dcbaee6379f747fc9953c8b7222e770541f694ad0f5be6e508

diff --git a/games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild 
b/games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild
new file mode 100644
index 0..86c1a0cf1
--- /dev/null
+++ b/games-util/ProtonUp-Qt/ProtonUp-Qt-2.8.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop
+SRC_URI="https://github.com/DavidoTek/ProtonUp-Qt/archive/refs/tags/v${PV}.tar.gz;
+DESCRIPTION="Install and manage GE-Proton, Luxtorpeda & more for Steam and 
Wine-GE & more for Lutris with this graphical user interface."
+HOMEPAGE="https://davidotek.github.io/protonup-qt;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+DEPEND="dev-python/steam
+dev-python/requests
+dev-python/pyside6[designer(+)]
+dev-python/PyQt6
+dev-python/vdf
+dev-python/pyxdg
+dev-python/pyaml
+dev-python/zstandard
+"
+
+KEYWORDS="~amd64 ~x86"
+
+src_install() {
+insinto /opt/ProtonUp-Qt && doins -r "${WORKDIR}/${P}/pupgui2" && doins -r 
"${WORKDIR}/${P}/pupgui2"
+
+insinto /opt/bin/ && doins "${FILESDIR}/ProtonUp-Qt"
+fperms +x /opt/bin/ProtonUp-Qt
+
+domenu "${FILESDIR}/ProtonUp-Qt.desktop"
+newicon 
"${WORKDIR}/${P}/share/icons/hicolor/64x64/apps/net.davidotek.pupgui2.png" 
ProtonUp-Qt.png
+}
\ No newline at end of file

diff --git a/games-util/ProtonUp-Qt/ProtonUp-Qt-.ebuild 
b/games-util/ProtonUp-Qt/ProtonUp-Qt-.ebuild
new file mode 100644
index 0..b4d5a4aa9
--- /dev/null
+++ b/games-util/ProtonUp-Qt/ProtonUp-Qt-.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit git-r3 qmake-utils desktop
+EGIT_REPO_URI="https://github.com/DavidoTek/ProtonUp-Qt.git;
+DESCRIPTION="Install and manage GE-Proton, Luxtorpeda & more for Steam and 
Wine-GE & more for Lutris with this graphical user interface."
+HOMEPAGE="https://davidotek.github.io/protonup-qt;
+
+LICENSE="GPL-3"
+SLOT="0"
+
+DEPEND="dev-python/steam
+dev-python/requests
+dev-python/pyside6[designer(+)]
+dev-python/PyQt6
+dev-python/vdf
+dev-python/pyxdg
+dev-python/pyaml
+dev-python/zstandard
+"
+
+src_install() {
+insinto /opt/ProtonUp-Qt && doins -r "${WORKDIR}/${P}/pupgui2" && doins -r 
"${WORKDIR}/${P}/pupgui2"
+
+insinto /opt/bin/ && doins "${FILESDIR}/ProtonUp-Qt"
+fperms +x /opt/bin/ProtonUp-Qt
+
+domenu "${FILESDIR}/ProtonUp-Qt.desktop"
+newicon 
"${WORKDIR}/${P}/share/icons/hicolor/64x64/apps/net.davidotek.pupgui2.png" 
ProtonUp-Qt.png
+}
\ No newline at end of file

diff --git a/games-util/ProtonUp-Qt/files/ProtonUp-Qt 
b/games-util/ProtonUp-Qt/files/ProtonUp-Qt
new file mode 100644
index 0..12a274a03
--- /dev/null
+++ b/games-util/ProtonUp-Qt/files/ProtonUp-Qt
@@ -0,0 +1,2 @@
+#!/bin/sh
+cd /opt/ProtonUp-Qt &&  python3 -m  pupgui2
\ No newline at end of file

diff --git a/games-util/ProtonUp-Qt/files/ProtonUp-Qt.desktop 
b/games-util/ProtonUp-Qt/files/ProtonUp-Qt.desktop
new file mode 100644
index 0..6e23b5725
--- /dev/null
+++ b/games-util/ProtonUp-Qt/files/ProtonUp-Qt.desktop
@@ -0,0 +1,12 @@
+[Desktop Entry]
+Name=ProtonUp-Qt
+Exec=sh -c "cd /opt/ProtonUp-Qt &&  python3 -m  pupgui2"
+Type=Application
+Comment=Install Wine and Proton-based Compatibility Tools
+Comment[de]=Wine und Proton Kompatibilitätstools installieren
+Comment[it]=Installa tool di compatibilità basati su Wine e Proton
+Comment[nl]=Installeer op Wine en Proton gebaseerde 
compatibiliteitshulpmiddelen
+Comment[pl]=Zainstaluj narzędzia 

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

2023-07-07 Thread Gonçalo Negrier Duarte
commit: 0213901b46f189a22a131d90e17c12bd38ee6183
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 17:03:02 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 17:03:02 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0213901b

dev-python/steam: new package, add 1.4.4, 

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 dev-python/steam/Manifest   |  1 +
 dev-python/steam/metadata.xml   |  7 +++
 dev-python/steam/steam-1.4.4.ebuild | 36 
 dev-python/steam/steam-.ebuild  | 34 ++
 4 files changed, 78 insertions(+)

diff --git a/dev-python/steam/Manifest b/dev-python/steam/Manifest
new file mode 100644
index 0..cdd4791df
--- /dev/null
+++ b/dev-python/steam/Manifest
@@ -0,0 +1 @@
+DIST v1.4.4.tar.gz 878478 BLAKE2B 
755b37f0cae19f0f3eb7609931f79c15421a6c37f2ef178d809251394227b777f8626c8535d13b72257eaa9255eded27150a1018a4bff1d24cf29217224e7cab
 SHA512 
86ddbdc9b4d9bb2b1717f81b003a6884bbe44b55e632ea0d03ddc1866215210d4d3394f35773f0cba95623d7d94f6b270e3133eab80663947c07018094af5b45

diff --git a/dev-python/steam/metadata.xml b/dev-python/steam/metadata.xml
new file mode 100644
index 0..7ca0874cc
--- /dev/null
+++ b/dev-python/steam/metadata.xml
@@ -0,0 +1,7 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   ValvePython/steam
+   
+

diff --git a/dev-python/steam/steam-1.4.4.ebuild 
b/dev-python/steam/steam-1.4.4.ebuild
new file mode 100644
index 0..ec54f794b
--- /dev/null
+++ b/dev-python/steam/steam-1.4.4.ebuild
@@ -0,0 +1,36 @@
+# 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..12} )
+
+EPYTHON=python3
+
+inherit distutils-r1
+
+SRC_URI="https://github.com/ValvePython/steam/archive/refs/tags/v${PV}.tar.gz;
+DESCRIPTION="Python package for interacting with Steam"
+HOMEPAGE="https://github.com/ValvePython/steam;
+
+DEPEND="dev-python/six
+dev-python/pycryptodome
+dev-python/requests
+dev-python/urllib3
+dev-python/vdf
+dev-python/protobuf-python
+dev-python/cachetools
+"
+LICENSE="GPL-3"
+SLOT="0"
+
+KEYWORDS="~amd64 ~x86"
+
+src_compile() {
+   distutils-r1_src_compile
+}
+
+src_install() {
+   distutils-r1_src_install
+}

diff --git a/dev-python/steam/steam-.ebuild 
b/dev-python/steam/steam-.ebuild
new file mode 100644
index 0..bc0a51b61
--- /dev/null
+++ b/dev-python/steam/steam-.ebuild
@@ -0,0 +1,34 @@
+# 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..12} )
+
+EPYTHON=python3
+
+inherit git-r3 distutils-r1
+
+EGIT_REPO_URI="https://github.com/ValvePython/steam.git;
+DESCRIPTION="Python package for interacting with Steam"
+HOMEPAGE="https://github.com/ValvePython/steam;
+
+DEPEND="dev-python/six
+dev-python/pycryptodome
+dev-python/requests
+dev-python/urllib3
+dev-python/vdf
+dev-python/protobuf-python
+dev-python/cachetools
+"
+LICENSE="GPL-3"
+SLOT="0"
+
+src_compile() {
+   distutils-r1_src_compile
+}
+
+src_install() {
+   distutils-r1_src_install
+}



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

2023-07-07 Thread Michał Górny
commit: b3d97de5498ca62c98c42fb498d9fb82885f26e7
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul  7 16:53:07 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul  7 17:00:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3d97de5

dev-python/sqlalchemy: Bump to 1.4.49

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

 dev-python/sqlalchemy/Manifest |  1 +
 dev-python/sqlalchemy/sqlalchemy-1.4.49.ebuild | 98 ++
 2 files changed, 99 insertions(+)

diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
index a69ae76507f3..d45cb24b3312 100644
--- a/dev-python/sqlalchemy/Manifest
+++ b/dev-python/sqlalchemy/Manifest
@@ -1,4 +1,5 @@
 DIST SQLAlchemy-1.4.48.tar.gz 8448993 BLAKE2B 
02c5457e099a0f0bb0e5427a95d3ea35d504d0b5f1d10003b59c8dc76f92ea7b4720512d934fae64b12d95c5de5230139f3af9f5bd6e372fc07228b432995bd9
 SHA512 
f948e79c92889f2462b117ca49ccb8e82d5f8da0027c65488a3f6c64a802dc0bca96cc84c4e77bb3b8d434dfd66b621ef4d69c5d417ad781d1dc7136bcf6dea1
+DIST SQLAlchemy-1.4.49.tar.gz 8536601 BLAKE2B 
2133723380b157a76f4af6103a2c68099f78d7a49ad90793d682bd6015d61a06a72ba6f02922111b60716e311ddc2f6067153f7b4b1f80329775e0d6f27a0d92
 SHA512 
268751b09aebd9da10fd57b4b987fa57f3c61d18d5104bb308e405aa034c74e7d5441abd94368857fbe11b8d15bb5315634f64f3b1252e7318d24107ba1fe3ff
 DIST SQLAlchemy-2.0.12.tar.gz 9264506 BLAKE2B 
83a3aa719e2809b5b48ef5332cf6cbc0e973089dad142dbbe952d14b2e4f3e5a1cf67c7a7240017fbddfafe1c57d6acb974d9c61e72970d8a8c49b7a57f52a91
 SHA512 
0e4bbc7d4729b2667ca1e8a0c88293e44698346415e3742ad3c686495c9855b5714dab161590605d5ee60523a2544f590f67ac7d01f7f2756ddc7156688db902
 DIST SQLAlchemy-2.0.13.tar.gz 9286442 BLAKE2B 
3d2c06d7c89db1d5c5c13366cfc818720f8db0c1e26684c8de5856fd2cedf8c307f8653817eb080526b1da17bcfbd1163f1066226881ef47a553f5662e1989c2
 SHA512 
b560dedfaa1c2d854feddcb7ac343b184603db8143db8ec9551180fb5345ec793bc74211c838dd15cb45feba970d64f53daaeffe7d5bfa8c6c534742f6aa8453
 DIST SQLAlchemy-2.0.15.tar.gz 9296612 BLAKE2B 
45abdb9010b854e52762d9c84a471e92ece2b212620a74d161b19ef7c6bce3d9ad39b3075c4f32749774884e3ffe255f82028dd6a6375e269d2827cbf18c35e7
 SHA512 
a1b9301f4a81428ac36b9280840a27433fcfb97dec2a04888e6e53cc33104c82972147e2b840a929e05af0edb47ee496a7ed5171201332aad374ce64baef414d

diff --git a/dev-python/sqlalchemy/sqlalchemy-1.4.49.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-1.4.49.ebuild
new file mode 100644
index ..fa757af7a61b
--- /dev/null
+++ b/dev-python/sqlalchemy/sqlalchemy-1.4.49.ebuild
@@ -0,0 +1,98 @@
+# 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..11} )
+PYTHON_REQ_USE="sqlite?"
+
+inherit distutils-r1 optfeature pypi
+
+MY_PN="SQLAlchemy"
+DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
+HOMEPAGE="
+   https://www.sqlalchemy.org/
+   https://pypi.org/project/SQLAlchemy/
+   https://github.com/sqlalchemy/sqlalchemy/
+"
+SRC_URI="$(pypi_sdist_url --no-normalize "${MY_PN}")"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="examples +sqlite test"
+
+BDEPEND="
+   test? (
+   $(python_gen_impl_dep sqlite)
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_IGNORE=(
+   # hardcode call counts specific to Python versions
+   test/aaa_profiling
+)
+
+src_prepare() {
+   sed -i -e '/greenlet/d' setup.cfg || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # warning tests are unreliable
+   test/base/test_warnings.py
+   )
+   local sqlite_version=$(sqlite3 --version | cut -d' ' -f1)
+   [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
+   
test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access
+   # https://github.com/sqlalchemy/sqlalchemy/issues/8762
+   
test/orm/test_query.py::YieldTest_sqlite+pysqlite_${sqlite_version//./_}::test_yield_per_close_on_interrupted_iteration_legacy
+   )
+   if ! has_version "dev-python/greenlet[${PYTHON_USEDEP}]"; then
+   EPYTEST_DESELECT+=(
+   
test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_execution
+   
test/ext/asyncio/test_engine_py3k.py::TextSyncDBAPI::test_sync_driver_run_sync
+   
"test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[False-True]"
+   
"test/engine/test_pool.py::PoolEventsTest::test_checkin_event_gc[True-True]"
+   
"test/engine/test_pool.py::QueuePoolTest::test_userspace_disconnectionerror_weakref_finalizer[True-_exclusions0]"
+  

[gentoo-commits] repo/gentoo:master commit in: media-gfx/geeqie/files/, media-gfx/geeqie/

2023-07-07 Thread Bernard Cafarelli
commit: fb6f43da4a1fa2c3d442baaa32016593bbe816e1
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Fri Jul  7 16:43:55 2023 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Fri Jul  7 16:45:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb6f43da

media-gfx/geeqie: use lua.hpp to fix lua plugin compilation

This can be replaced later by upstream official fix

Bug: https://bugs.gentoo.org/909302
Signed-off-by: Bernard Cafarelli  gentoo.org>

 media-gfx/geeqie/files/geeqie-2.1-lua_hpp.patch | 19 +++
 media-gfx/geeqie/geeqie-2.1.ebuild  |  7 ---
 2 files changed, 23 insertions(+), 3 deletions(-)

diff --git a/media-gfx/geeqie/files/geeqie-2.1-lua_hpp.patch 
b/media-gfx/geeqie/files/geeqie-2.1-lua_hpp.patch
new file mode 100644
index ..a0c816b5fb3c
--- /dev/null
+++ b/media-gfx/geeqie/files/geeqie-2.1-lua_hpp.patch
@@ -0,0 +1,19 @@
+---
+ src/lua.cc | 4 +---
+ 1 file changed, 1 insertion(+), 3 deletions(-)
+
+diff --git a/src/lua.cc b/src/lua.cc
+index 84aa549a..458b658a 100644
+--- a/src/lua.cc
 b/src/lua.cc
+@@ -24,9 +24,7 @@
+ 
+ #define _XOPEN_SOURCE
+ 
+-#include 
+-#include 
+-#include 
++#include 
+ 
+ #include 
+ #include 

diff --git a/media-gfx/geeqie/geeqie-2.1.ebuild 
b/media-gfx/geeqie/geeqie-2.1.ebuild
index 9553979fc1d4..62d485ca97b3 100644
--- a/media-gfx/geeqie/geeqie-2.1.ebuild
+++ b/media-gfx/geeqie/geeqie-2.1.ebuild
@@ -45,6 +45,10 @@ BDEPEND="
 
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"
 
+PATCHES=(
+   "${FILESDIR}"/${P}-lua_hpp.patch
+)
+
 pkg_setup() {
# Do not require setting LUA_SINGLE_TARGET if lua is not used
use lua && lua-single_pkg_setup
@@ -55,9 +59,6 @@ src_prepare() {
 
# Disable doc build - not useful most of the time per upstream
sed -e "/subdir('doc')/d" -i meson.build || die
-
-   # Lua version
-   sed -e "s/lua5.[0-9]/${LUA_SINGLE_TARGET/-/.}/" -i meson.build || die
 }
 
 src_configure() {



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

2023-07-07 Thread Michał Górny
commit: 50fed80add729fde036964d54a099cf1afa119a0
Author: Michał Górny  gentoo  org>
AuthorDate: Fri Jul  7 16:20:09 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Fri Jul  7 16:27:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50fed80a

dev-python/sqlalchemy: Bump to 2.0.18

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

 dev-python/sqlalchemy/Manifest |   1 +
 dev-python/sqlalchemy/sqlalchemy-2.0.18.ebuild | 120 +
 2 files changed, 121 insertions(+)

diff --git a/dev-python/sqlalchemy/Manifest b/dev-python/sqlalchemy/Manifest
index 6f3f818bc0bd..a69ae76507f3 100644
--- a/dev-python/sqlalchemy/Manifest
+++ b/dev-python/sqlalchemy/Manifest
@@ -4,3 +4,4 @@ DIST SQLAlchemy-2.0.13.tar.gz 9286442 BLAKE2B 
3d2c06d7c89db1d5c5c13366cfc818720f
 DIST SQLAlchemy-2.0.15.tar.gz 9296612 BLAKE2B 
45abdb9010b854e52762d9c84a471e92ece2b212620a74d161b19ef7c6bce3d9ad39b3075c4f32749774884e3ffe255f82028dd6a6375e269d2827cbf18c35e7
 SHA512 
a1b9301f4a81428ac36b9280840a27433fcfb97dec2a04888e6e53cc33104c82972147e2b840a929e05af0edb47ee496a7ed5171201332aad374ce64baef414d
 DIST SQLAlchemy-2.0.16.tar.gz 9381438 BLAKE2B 
8999ab045d799c43de1b386d594022a8015fba4d69b3c910622e34b83ea7514b9cb97ab4f65997813eca058eff2a285ecc6cdd09396edf27a216fe412387ba7b
 SHA512 
f0d5287ba6cee97316d6de7cf1c893dd749459d912872d903833abf905b6c282fa477910fa5eb11b5ba803314e16c3f1a9ac6b7639573c4c44ff921ea56132da
 DIST SQLAlchemy-2.0.17.tar.gz 9394733 BLAKE2B 
d6237b4bc5f7c3e0ba615161ee112f520b87102d7f498ab0db9bf30287fc13c04910f1d00b059b277be5626af62f64f01101486c2eb31258c75ed4411db6
 SHA512 
be45d1283fc446c7ed886d87d9225711b8f0125e8de6961b365930515246e94c3943fd85d078056c942508a9785731bf280519e04b0c00d936e93d3b9b6c137f
+DIST SQLAlchemy-2.0.18.tar.gz 9417280 BLAKE2B 
0f67e993c91cbf5fb2b5c9481e531830c24f69cb583ab0045b844048e92e57c2a9d826f098b792c0dfc807236fcb422fb800d201473e75fafc1190282d7c27f1
 SHA512 
4665994e4dc07b5ba0e0549cf80c0cc542c87609c74dce1e5523d4d6bfd5e1be5c7b62562e151c864a2e2a836cceb8374e804871937c738e54a1aa17297732ce

diff --git a/dev-python/sqlalchemy/sqlalchemy-2.0.18.ebuild 
b/dev-python/sqlalchemy/sqlalchemy-2.0.18.ebuild
new file mode 100644
index ..8a0e1b74df5a
--- /dev/null
+++ b/dev-python/sqlalchemy/sqlalchemy-2.0.18.ebuild
@@ -0,0 +1,120 @@
+# 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} )
+PYTHON_REQ_USE="sqlite?"
+
+inherit distutils-r1 optfeature pypi
+
+MY_PN="SQLAlchemy"
+DESCRIPTION="Python SQL toolkit and Object Relational Mapper"
+HOMEPAGE="
+   https://www.sqlalchemy.org/
+   https://pypi.org/project/SQLAlchemy/
+   https://github.com/sqlalchemy/sqlalchemy/
+"
+SRC_URI="$(pypi_sdist_url --no-normalize "${MY_PN}")"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="examples +sqlite test"
+
+RDEPEND="
+   >=dev-python/typing-extensions-4.2.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   $(python_gen_impl_dep sqlite)
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -i -e '/greenlet/d' setup.cfg || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_IGNORE=(
+   test/ext/mypy/test_mypy_plugin_py3k.py
+   test/typing/test_mypy.py
+   # hardcode call counts specific to Python versions
+   test/aaa_profiling
+   )
+   local EPYTEST_DESELECT=(
+   # warning tests are unreliable
+   test/base/test_warnings.py
+   # TODO
+   
test/orm/test_versioning.py::ServerVersioningTest_sqlite+pysqlite_3_40_1::test_sql_expr_w_mods_bump
+   
test/sql/test_resultset.py::CursorResultTest_sqlite+pysqlite_3_41_0::test_pickle_rows_other_process
+   )
+   local sqlite_version=$(sqlite3 --version | cut -d' ' -f1)
+   [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
+   
test/ext/test_associationproxy.py::ProxyHybridTest::test_msg_fails_on_cls_access
+   
test/ext/test_associationproxy.py::DictOfTupleUpdateTest::test_update_multi_elem_varg
+   
test/ext/test_associationproxy.py::DictOfTupleUpdateTest::test_update_one_elem_varg
+   
test/engine/test_pool.py::QueuePoolTest::test_recycle_pool_no_race
+   
test/engine/test_processors.py::PyDateProcessorTest::test_date_invalid_string
+   
test/engine/test_processors.py::PyDateProcessorTest::test_datetime_invalid_string
+   
test/engine/test_processors.py::PyDateProcessorTest::test_time_invalid_string
+   

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

2023-07-07 Thread Andreas K. Hüttel
commit: f8d6e1bf5d3be2278ba54929ccdd7d2e31bd8a76
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Fri Jul  7 16:04:04 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Fri Jul  7 16:04:04 2023 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=f8d6e1bf

Fix mipsel2-musl filename

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

 releases/specs-qemu/mips/stage3-mipsel2-o32-musl.spec | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/releases/specs-qemu/mips/stage3-mipsel2-o32-musl.spec 
b/releases/specs-qemu/mips/stage3-mipsel2-o32-musl.spec
index 71f679b7..1487706c 100644
--- a/releases/specs-qemu/mips/stage3-mipsel2-o32-musl.spec
+++ b/releases/specs-qemu/mips/stage3-mipsel2-o32-musl.spec
@@ -5,7 +5,7 @@ interpreter: /usr/bin/qemu-mipsel
 rel_type: musl
 profile: default/linux/mips/17.0/mipsel/o32/musl
 snapshot: @TIMESTAMP@
-source_subpath: musl/stage1-mipsel2-musl-@TIMESTAMP@
+source_subpath: musl/stage1-mipsel2_musl-@TIMESTAMP@
 compression_mode: pixz
 decompressor_search_order: xz bzip2
 portage_confdir: @REPO_DIR@/releases/portage/stages-qemu



[gentoo-commits] repo/gentoo:master commit in: app-emacs/ebuild-mode/

2023-07-07 Thread Ulrich Müller
commit: 4dd1343eae439bb39433c76faca90179119a429f
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Jul  7 14:35:47 2023 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jul  7 14:36:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dd1343e

app-emacs/ebuild-mode: drop 1.64

Signed-off-by: Ulrich Müller  gentoo.org>

 app-emacs/ebuild-mode/Manifest|  1 -
 app-emacs/ebuild-mode/ebuild-mode-1.64.ebuild | 28 ---
 2 files changed, 29 deletions(-)

diff --git a/app-emacs/ebuild-mode/Manifest b/app-emacs/ebuild-mode/Manifest
index f97f18339433..d8910cf300d4 100644
--- a/app-emacs/ebuild-mode/Manifest
+++ b/app-emacs/ebuild-mode/Manifest
@@ -1,3 +1,2 @@
 DIST ebuild-mode-1.63.tar.xz 39600 BLAKE2B 
1746e0ab558fd7b48dc778f2287b3a9f2b5f82f5e4e53e353b0b9c3de3436a8ec17f827d93cf1ff990dd780a33435ea946e19ac655fd0f39fee03beb07ce5509
 SHA512 
264678921d8a2e535fedcc06c9c0932a4898f3d33cc54d79107658d9a77048e00c5ec276d4c74dc55c2ba2c643024453542f16619fde473d417b446bbd78175c
-DIST ebuild-mode-1.64.tar.xz 39872 BLAKE2B 
e6309f91276093d40c322e0b639c10067ac95f305a7333d4335182fc6f0bec34141bb3cac1fd577657a5d795338b1da0d1f2212b2c5fd6502d958129a1e8167b
 SHA512 
0c760946070882e93fb10dbad6f1ceb4977b2b9f0b7786c1a99ecde7b16874f840ac9877dc531503b216b0d030e779bb3d0f9cec9eeb40bb211ec6f20ebe0f88
 DIST ebuild-mode-1.65.tar.xz 39952 BLAKE2B 
fba1a751e417d39e1d4ce6f9fbc9b5e3465bdddef5fd9a675f6649a3fddb56a8009ebf4c9b22bde349c2faf0009dc6f29ae1acb78632144fbf1b4b5b9e5fa4ca
 SHA512 
fa8b16d68f3afd1ba3557e13d83a809d723bf0f0adf4741ee6897381835c96970a43c28191e9a90a0f096a164c183604caaee2e5ddb0769ed77fca34633cc0e3

diff --git a/app-emacs/ebuild-mode/ebuild-mode-1.64.ebuild 
b/app-emacs/ebuild-mode/ebuild-mode-1.64.ebuild
deleted file mode 100644
index 7c4ed2c5c19a..
--- a/app-emacs/ebuild-mode/ebuild-mode-1.64.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit elisp optfeature
-
-DESCRIPTION="Emacs modes for editing ebuilds and other Gentoo specific files"
-HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Emacs;
-SRC_URI="https://dev.gentoo.org/~ulm/emacs/${P}.tar.xz;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
-
-BDEPEND="sys-apps/texinfo"
-
-DOCS="ChangeLog keyword-generation.sh"
-ELISP_TEXINFO="${PN}.texi"
-SITEFILE="50${PN}-gentoo-1.54.el"
-
-pkg_postinst() {
-   elisp_pkg_postinst
-   optfeature "ebuild commands support" sys-apps/portage
-   optfeature "additional development tools" dev-util/pkgdev
-   optfeature "ebuild QA utilities" dev-util/pkgcheck
-   optfeature "generating HTML from GLEPs" dev-python/docutils-glep
-}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2023-07-07 Thread Mike Pagano
commit: dcfcaba95dbdf62a41a451e846e5ba579f5dfd8b
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jul  7 13:27:15 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jul  7 13:27:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcfcaba9

sys-kernel/gentoo-sources: stabilize 6.1.38 for x86

Bug: https://bugs.gentoo.org/909831
Signed-off-by: Mike Pagano  gentoo.org>

 sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild
index 02dd51701656..f5402d916f78 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/giac/, sci-mathematics/giac/files/

2023-07-07 Thread Michael Orlitzky
commit: adc3f1cb14828b2d90925192705e63f0c548993c
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Fri Jul  7 03:18:13 2023 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Fri Jul  7 13:17:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc3f1cb

sci-mathematics/giac: unbundle x11-libs/gl2ps.

Signed-off-by: Michael Orlitzky  gentoo.org>

 .../giac/files/giac-1.9.0.55-system-gl2ps.patch| 69 ++
 ...iac-1.9.0.55.ebuild => giac-1.9.0.55-r1.ebuild} | 26 +---
 2 files changed, 86 insertions(+), 9 deletions(-)

diff --git a/sci-mathematics/giac/files/giac-1.9.0.55-system-gl2ps.patch 
b/sci-mathematics/giac/files/giac-1.9.0.55-system-gl2ps.patch
new file mode 100644
index ..e82d892560da
--- /dev/null
+++ b/sci-mathematics/giac/files/giac-1.9.0.55-system-gl2ps.patch
@@ -0,0 +1,69 @@
+From ca8eda770e36d2649bfc808464415308a5e9fc47 Mon Sep 17 00:00:00 2001
+From: Michael Orlitzky 
+Date: Thu, 6 Jul 2023 21:27:09 -0400
+Subject: [PATCH 1/1] src: unbundle gl2ps.
+
+Updated patch based on the one by infini...@debian.org. Ours links
+only libxcas (and not libgiac) to gl2ps.
+---
+ configure.ac| 4 
+ src/Graph3d.cc  | 2 +-
+ src/Makefile.am | 6 +++---
+ 3 files changed, 8 insertions(+), 4 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 8e1813e..2f7f644 100644
+--- a/configure.ac
 b/configure.ac
+@@ -465,6 +465,10 @@ dnl   AC_CHECK_LIB(GLU, main)
+ AC_CHECK_LIB(fltk_images, main)
+ FLTK_LIBS="$LIBS $X_LIBS"
+ AC_SUBST(FLTK_LIBS)
++
++# GL2PS is only used by xcas (the GUI)
++GL2PS_LIBS="-lgl2ps"
++AC_SUBST(GL2PS_LIBS)
+   cd src && ln -sf ../fltk-1.3.8 && cd ..
+fi
+ fi
+diff --git a/src/Graph3d.cc b/src/Graph3d.cc
+index 7f54327..12d4723 100644
+--- a/src/Graph3d.cc
 b/src/Graph3d.cc
+@@ -45,7 +45,7 @@
+ #include "Xcas1.h"
+ #include "Cfg.h"
+ #include "Print.h"
+-#include "gl2ps.h"
++#include 
+ 
+ #ifdef __APPLE__
+ //#include 
+diff --git a/src/Makefile.am b/src/Makefile.am
+index 3fdd209..120ccb6 100644
+--- a/src/Makefile.am
 b/src/Makefile.am
+@@ -35,17 +35,17 @@ libbf.h list.h cutils.h qjsgiac.h \
+ quickjs.h js.h quickjs-atom.h quickjs-libc.h quickjs-opcode.h bf2gmp.h
+ 
+ noinst_LTLIBRARIES = libxcas.la
+-libxcas_la_LIBADD = libgiac.la $(FLTK_LIBS)
++libxcas_la_LIBADD = libgiac.la $(FLTK_LIBS) $(GL2PS_LIBS)
+ 
+ libxcas_la_SOURCES = History.cc Input.cc Xcas1.cc Equation.cc Print.cc \
+   Tableur.cc Editeur.cc Graph.cc Graph3d.cc Help1.cc Cfg.cc \
+   Flv_CStyle.cc \
+   Flve_Check_Button.cc Flve_Input.cc Flv_Style.cc Flv_Data_Source.cc \
+-  Flve_Combo.cc Flv_List.cc Flv_Table.cc gl2ps.c \
++  Flve_Combo.cc Flv_List.cc Flv_Table.cc \
+   History.h Input.h Xcas1.h Equation.h Print.h Tableur.h \
+   Editeur.h Graph.h Graph3d.h Help1.h Cfg.h Python.cc Python.h \
+   Flv_CStyle.H  Flve_Check_Button.H  Flve_Input.H  Flv_Style.H \
+-  Flv_Data_Source.H  Flve_Combo.H Flv_List.H Flv_Table.H gl2ps.h
++  Flv_Data_Source.H  Flve_Combo.H Flv_List.H Flv_Table.H
+ 
+ ##libjavagiac_la_LIBADD = libgiac.la 
+ 
+-- 
+2.39.3
+

diff --git a/sci-mathematics/giac/giac-1.9.0.55.ebuild 
b/sci-mathematics/giac/giac-1.9.0.55-r1.ebuild
similarity index 95%
rename from sci-mathematics/giac/giac-1.9.0.55.ebuild
rename to sci-mathematics/giac/giac-1.9.0.55-r1.ebuild
index 287394488a2d..ecc901270b63 100644
--- a/sci-mathematics/giac/giac-1.9.0.55.ebuild
+++ b/sci-mathematics/giac/giac-1.9.0.55-r1.ebuild
@@ -22,23 +22,26 @@ done
 
 # nauty and cliquer are automagical dependencies
 RDEPEND="dev-libs/gmp:=[cxx(+)]
-   sys-libs/readline:=
-   gui? ( x11-libs/fltk[opengl]
-   media-libs/libpng:= )
-   ao? ( media-libs/libao )
dev-libs/mpfr:=
+   dev-libs/ntl:=
+   net-misc/curl
sci-libs/mpfi
sci-libs/gsl:=
+   sci-mathematics/cliquer
+   sci-mathematics/nauty
sci-mathematics/pari:=[threads]
-   dev-libs/ntl:=
+   sys-libs/readline:=
virtual/lapack
virtual/blas
-   net-misc/curl
-   sci-mathematics/cliquer
-   sci-mathematics/nauty
+   ao? ( media-libs/libao )
ecm? ( sci-mathematics/gmp-ecm )
+   gc? ( dev-libs/boehm-gc )
glpk? ( sci-mathematics/glpk )
-   gc? ( dev-libs/boehm-gc )"
+   gui? (
+   media-libs/libpng:=
+   x11-libs/fltk[opengl]
+   x11-libs/gl2ps
+   )"
 
 DEPEND="${RDEPEND}"
 
@@ -52,6 +55,7 @@ PATCHES=(
"${FILESDIR}/${PN}-1.9.0.21-pari-2.15.patch"
"${FILESDIR}/${PN}-1.9.0.55-pari-2.15-test.patch"
"${FILESDIR}/${PN}-1.9.0.55-undefined-behavior.patch"
+   "${FILESDIR}/${PN}-1.9.0.55-system-gl2ps.patch"
 )
 
 REQUIRED_USE="test? ( gui )"
@@ -68,6 +72,10 @@ src_prepare() {
# if you pass --enable-fltk but the system version isn't detected.
  

[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2023-07-07 Thread Mike Pagano
commit: 8253a4da380fae09cccf8bfea29070993310d24e
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jul  7 13:16:39 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jul  7 13:16:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8253a4da

sys-kernel/gentoo-sources: stabilize 6.1.38 for amd64

Bug: https://bugs.gentoo.org/909831

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

 sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild
index cddeda6b9263..02dd51701656 100644
--- a/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild
+++ b/sys-kernel/gentoo-sources/gentoo-sources-6.1.38.ebuild
@@ -10,7 +10,7 @@ inherit kernel-2
 detect_version
 detect_arch
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
 HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
 IUSE="experimental"
 



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

2023-07-07 Thread Hans de Graaff
commit: f3832662c351d03d4300f03c4e29adf68d9bc72a
Author: Hans de Graaff  gentoo  org>
AuthorDate: Fri Jul  7 12:04:11 2023 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Fri Jul  7 12:05:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3832662

dev-ruby/faraday-multipart: fix test deps, drop wrong keywords

The keywords were copied by accident and should not be there.
Add missing test dependencies.

Closes: https://bugs.gentoo.org/909752
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/faraday-multipart/faraday-multipart-1.0.4.ebuild | 7 ++-
 1 file changed, 6 insertions(+), 1 deletion(-)

diff --git a/dev-ruby/faraday-multipart/faraday-multipart-1.0.4.ebuild 
b/dev-ruby/faraday-multipart/faraday-multipart-1.0.4.ebuild
index 99dc3f7448f4..c99f67cbe1f7 100644
--- a/dev-ruby/faraday-multipart/faraday-multipart-1.0.4.ebuild
+++ b/dev-ruby/faraday-multipart/faraday-multipart-1.0.4.ebuild
@@ -20,11 +20,16 @@ 
SRC_URI="https://github.com/lostisland/faraday-multipart/archive/v${PV}.tar.gz -
 
 LICENSE="MIT"
 SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64"
 IUSE=""
 
 ruby_add_rdepend "dev-ruby/multipart-post:0"
 
+ruby_add_bdepend "test? (
+   || ( dev-ruby/faraday:2 dev-ruby/faraday:1 )
+   dev-ruby/multipart-parser
+)"
+
 all_ruby_prepare() {
sed -i -e "s:_relative ':'./:" ${RUBY_FAKEGEM_GEMSPEC} || die
 }



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

2023-07-07 Thread Maciej Barć
commit: 80cbc74f1ed01bc9bbe52defb850252d6ec5ea16
Author: Maciej Barć  gentoo  org>
AuthorDate: Fri Jul  7 11:58:14 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Fri Jul  7 11:58:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80cbc74f

sys-apps/openrazer: remove outdated linux-mod-r1_pkg_postrm call

Signed-off-by: Maciej Barć  gentoo.org>

 sys-apps/openrazer/openrazer-3.6.1-r1.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-apps/openrazer/openrazer-3.6.1-r1.ebuild 
b/sys-apps/openrazer/openrazer-3.6.1-r1.ebuild
index f0e886f47110..d3f1a25658b7 100644
--- a/sys-apps/openrazer/openrazer-3.6.1-r1.ebuild
+++ b/sys-apps/openrazer/openrazer-3.6.1-r1.ebuild
@@ -155,7 +155,6 @@ pkg_postinst() {
 }
 
 pkg_postrm() {
-   linux-mod-r1_pkg_postrm
udev_reload
 
if use daemon ; then



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2023-07-07 Thread Mike Pagano
commit: b23de357d11c7b1f50563fb86fa249224fbb5640
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jul  7 11:54:45 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jul  7 11:54:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b23de357

sys-kernel/gentoo-sources: drop 6.1.36

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.1.36.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index de46403101ef..29f25c07af5a 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -67,9 +67,6 @@ DIST genpatches-6.1-33.extras.tar.xz 3812 BLAKE2B 
4c0552c0cd447cff8e1725dbcabe9a
 DIST genpatches-6.1-36.base.tar.xz 1892196 BLAKE2B 
21e7b006889ce39d3b2afaa981cb04c1229050d13b944086ac2c51add6c63dc96c3ac2dda188dfa11a45343904e26589684ffea3a22c235738c1c6d8c38a11cd
 SHA512 
b4de4f6db586a9aafddf639ae914b35ffb0e2340ef312c64a48f4a0bfc02c573437595fc61596245dec2eac7add9f62925e575e2f621d2cf2e80262096f64df9
 DIST genpatches-6.1-36.experimental.tar.xz 83360 BLAKE2B 
7a1c19aecf54d05772aca58ad355a53ed31d275e238c62964bbc448277415944273825b9c87ae47a53e4928bff66e99aa68e60ae5b80309024a605a1cc109d6c
 SHA512 
45008c3183d4b1a3b182a6027ced2edd08914db296f3311f384d4f12e06c3fbae7b7a6ca6caccbbd48630672f1716d90da265d892663a52c8e3e7ab814911d53
 DIST genpatches-6.1-36.extras.tar.xz 3808 BLAKE2B 
ba99390043e4a62ea1322364ba601440fd70079ffb98dea924f91aeb00a7add4d2402e16589e0406e66ff9e0ec7a9d0d76e0a14276fe486507345c8ebeb82bde
 SHA512 
ab4170a7b75c2617ccd5c08b7c5d84e68e593cacdca70dd59ed0b738639ddf3bbbaf6a4758728ff74026478a341782eb0e73a6a40ef9a7158f9c6221703afc55
-DIST genpatches-6.1-41.base.tar.xz 2664364 BLAKE2B 
411463f6532b87253491c5b4d05e4a76c2739408901eaedfcecc135c3e01303a30870e6133253e86b9e1ff10f9363dd7e2f0b5f68a85c7d1ec0e5f1443737820
 SHA512 
3227ed7184af3db4090c8e081b56f1fccd85f08298cf944c44ffdf808b7b17499191657a71e232e9c5dcaf68c1ca93902816c4dcdefc5f1240632816b87b2659
-DIST genpatches-6.1-41.experimental.tar.xz 83340 BLAKE2B 
c9349df1804dc46208c327caa12093a25d193f4dc0a838fbb3448714303b10fa0bc13f0ab38506a635c5098f689a3214c9afdcf4f2ec6b0ba52c1cc3fd37c9b3
 SHA512 
afaa1f0a0232a0487ce661bde8abea48dce99bbbc9d86b51f292c5db2e9c9233109062d89ef3fe55bba16a7ad9ce335b240ccc8570563d45062a0bb394338d0c
-DIST genpatches-6.1-41.extras.tar.xz 3808 BLAKE2B 
af183a6fd9ebd81ed22f8ecd36ba323e9c3aa438e72018ae1282bfd371874870a8a6d52b6488b1940a6eb65192cff46af7221967d4d473b2f3eafc963f0b5ed1
 SHA512 
fd26c56b8a9c5052e32c3ddaf7ff1379912f2aebc7b57bda68bb9f9bc0b316f8b5ae396e0547f205ab491acdc1fc9731acd87d13fdbb13508efbb6d6fa3154a4
 DIST genpatches-6.1-42.base.tar.xz 2681352 BLAKE2B 
8d16c71a41bba911a9ed73e8ff55794caf34adee41a757072db78f4168b6cdde0abb979cc5f6d353a9fbc3c5911e30642b5e8125c1a32fa02e9c946f157442a9
 SHA512 
be7f76ed509a912fc1913ae7f8dee0ae6b2351cd2175319b341812cb5fbf00b2adc053f9711a991324f40ce77c095ab820fd57a00b7acd006400fd10fc94b575
 DIST genpatches-6.1-42.experimental.tar.xz 83376 BLAKE2B 
c0be2c5730c3e73c5219d1b6c6fde1364b551570443c80712fb3b21a2e22c22969c239562557816c427ba87f337acc984398c1dd15caeffd4962bc9b32ccde78
 SHA512 
cc7ecdc73d969275728dedb80ecc4c829b22d3609f8a78a2d312501cef6704b33edd152e665fc418f5dad10f2a0c0d7ef52bde531173f056e9b462c406d14835
 DIST genpatches-6.1-42.extras.tar.xz 3808 BLAKE2B 
6a9159e3859740d4b14bd081aa6df1dbeeed5f322a3aa3df5b8cb942884b068e713815d7284f71ffcad95339928c120661c0b7a85e7c168b27d3daf88251bd18
 SHA512 
a6cb074fe4fafb8a336872ce7c5761ac1fe3e3e84836949803c4a46e9bf783d38a4ced188830158493f64518418c46228bc4f79f669258de5ac6b2e1714f7a4b

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.1.36.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-6.1.36.ebuild
deleted file mode 100644
index 3f34d7a72c17..
--- a/sys-kernel/gentoo-sources/gentoo-sources-6.1.36.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-ETYPE="sources"
-K_WANT_GENPATCHES="base extras experimental"
-K_GENPATCHES_VER="41"
-
-inherit kernel-2
-detect_version
-detect_arch
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
-HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
-IUSE="experimental"
-
-DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
-SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
-
-pkg_postinst() {
-   kernel-2_pkg_postinst
-   einfo "For more info on this patchset, and how to report problems, see:"
-   einfo "${HOMEPAGE}"
-}
-
-pkg_postrm() {
-   kernel-2_pkg_postrm
-}



[gentoo-commits] repo/gentoo:master commit in: sys-kernel/gentoo-sources/

2023-07-07 Thread Mike Pagano
commit: 74bf95d04902faea4e8e3da5a1bfbff2721499fd
Author: Mike Pagano  gentoo  org>
AuthorDate: Fri Jul  7 11:49:18 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Fri Jul  7 11:49:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74bf95d0

sys-kernel/gentoo-sources: drop 6.3.10

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

 sys-kernel/gentoo-sources/Manifest |  3 ---
 .../gentoo-sources/gentoo-sources-6.3.10.ebuild| 28 --
 2 files changed, 31 deletions(-)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index d4da6ad72950..de46403101ef 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -79,9 +79,6 @@ DIST genpatches-6.1-43.extras.tar.xz 3808 BLAKE2B 
744ddcd12ee2a654ffbb032905b8d8
 DIST genpatches-6.1-44.base.tar.xz 2683644 BLAKE2B 
d0264b6d6456fb2e6a67c1240cd3fbb95eef61701bf953df6e25e37a12fb12702b57f66e30ac757f28d9d1bcd0f2fbc38775d5b73922504084ff95f9fda1d78f
 SHA512 
e3777a612facad029782fe63abc702af06197521fcf90f4c80311fd7ad94739209573c7de910dfaeafd88948c2c3f3d29bb27f4fa1069475295b6f5b29e14116
 DIST genpatches-6.1-44.experimental.tar.xz 83364 BLAKE2B 
b729630b507c0c231df4c918c1b141eea1c10e2fb7fcd76a0a93c84bc70c878f1d913e3fe44189b3cf59e07f899c0dd4ada946de9c2266bda91e67d397e77a95
 SHA512 
22cce2bfcc0eb54e9269e479abd3c33439a86339e47403e3eb2bd6f3e5c3f0e1c7817e3986f11c5ee90496fc99cd772aab33109a739f2f1047181ff8d22b3667
 DIST genpatches-6.1-44.extras.tar.xz 3812 BLAKE2B 
bd5605700d0b55036d186eca82031f1d38883fbb3e2e98f0b44269c914f5a2912c026bebfdfd3fdcd563b97d3167fb9908bd0e29422b02e9314392b3ad2281c5
 SHA512 
e274c0e50fc476bc071fc4d77623b75cdfdda51951f541f56bc4f8ab53da17e67f615c37d35c93290d20b51d3ab2eb923a8e147daec4c59d3d1c87d3e803beb0
-DIST genpatches-6.3-13.base.tar.xz 754256 BLAKE2B 
ef146e227f2df785bb65d1cf8e50d786103aeed18a8f42e5584656f1999b943ac48db16d5cdc5917c03823364199284975837fabe9a777215373ae83e7206b99
 SHA512 
3df4532294febf47cb0291acdbf5ff137877186747ff7791f675686f2c08e14c0b8fd110e452c50172dc3d1b6a48bda604f6e577753380a4ab64502d0ec17724
-DIST genpatches-6.3-13.experimental.tar.xz 73256 BLAKE2B 
a6c305f006885f12e9791f14112d8e7e1d822bcca725a98a3055851310f002ccce4073ee0064e7575c99c2982b2ac3f09eb7a6b949381cd9d23fc411ec2d95df
 SHA512 
21f1ab4915771cb5960ba7da073932a6e5f79858041a69ec6d01be7d77396e9fac88a7dce35f52c59338948098a043aa306a4b5eacf61e5081f1cd3e40cf13fa
-DIST genpatches-6.3-13.extras.tar.xz 3808 BLAKE2B 
87d56c9b4869ed1741878e8dc03adf97c77872a7eda00697b21a72584393eeb89d9124299aa14aac9f4790e2a90adb42038a226e08ef01a7d1906a381c7a7d2e
 SHA512 
8e5ef88f45333e6afcd139b83698eb7a250c7db6882fe0409361d91a52fa6997fe57ef8ae1d3e5eb4b9306efab0d2fbbc96a4a3808925f15c305df6514159fd8
 DIST genpatches-6.3-14.base.tar.xz 769112 BLAKE2B 
5980cb83d7cc282d5fcca19385c3f4e3524a9a4a294b3e240391126de85f93f3f165ddedc4f70cee4da4f679eb84698e4f1925e7887f1622e6b935a27195f53c
 SHA512 
31b8b2388476fde88c6128d82a394bca12baf550a8d64f9344831baef1d81b9649042ba4f7eff8dc33e68c02f8f73fc6a812de99bd940823f01c4a30348d16ee
 DIST genpatches-6.3-14.experimental.tar.xz 73256 BLAKE2B 
c67dafe8e30de3c980a3ec2dc45038add7301aab34eef711a656cb9baf64e4c494e0d7fed4136428714d527fff43a6f452ce58c7414112aa4619bd0162cb6d8c
 SHA512 
8d592e0458f9213a849ee236f413cb870a883f7ce88663be9768a785df1d12227c9d9c6bbdfc5df93fae7853d18c92d30ff9b27403089fb26dac8f2172bbe955
 DIST genpatches-6.3-14.extras.tar.xz 3808 BLAKE2B 
d280e3791f1dc8aa1455666a7ec24188d8ad1e207f7cde4218bd30eefacdaf2bab8e2d21620077e3b02bdea06f03e936933de7d5f0cdd0303114901ee1bda703
 SHA512 
96abe3c0cb6f789026f10d1013b09c77d57c52c10ba46da5a6fb876f16540852d4604fd7838908fceebcbf651a6228af6fd213cdb535c905eae413973ee1f1dc

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-6.3.10.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-6.3.10.ebuild
deleted file mode 100644
index 36f63031ce9f..
--- a/sys-kernel/gentoo-sources/gentoo-sources-6.3.10.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="8"
-ETYPE="sources"
-K_WANT_GENPATCHES="base extras experimental"
-K_GENPATCHES_VER="13"
-
-inherit kernel-2
-detect_version
-detect_arch
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
-HOMEPAGE="https://dev.gentoo.org/~mpagano/genpatches;
-IUSE="experimental"
-
-DESCRIPTION="Full sources including the Gentoo patchset for the 
${KV_MAJOR}.${KV_MINOR} kernel tree"
-SRC_URI="${KERNEL_URI} ${GENPATCHES_URI} ${ARCH_URI}"
-
-pkg_postinst() {
-   kernel-2_pkg_postinst
-   einfo "For more info on this patchset, and how to report problems, see:"
-   einfo "${HOMEPAGE}"
-}
-
-pkg_postrm() {
-   kernel-2_pkg_postrm
-}



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

2023-07-07 Thread Andrew Ammerlaan
commit: fbd45e8de93872e9923620ad3061e908e2ed9dc5
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Fri Jul  7 11:36:49 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Fri Jul  7 11:39:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fbd45e8d

dev-python/python-slugify: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/python-slugify/python-slugify-8.0.1.ebuild 
b/dev-python/python-slugify/python-slugify-8.0.1.ebuild
index f808e43dda0d..73d8ede5c2ae 100644
--- a/dev-python/python-slugify/python-slugify-8.0.1.ebuild
+++ b/dev-python/python-slugify/python-slugify-8.0.1.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{9..12} )
 
 inherit distutils-r1
 



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

2023-07-07 Thread Andrew Ammerlaan
commit: ae48ca2613a9d3d1c21a36f8ab1d11a6ea3c7223
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Fri Jul  7 11:35:35 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Fri Jul  7 11:39:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae48ca26

dev-python/binaryornot: enable py3.12

Signed-off-by: Andrew Ammerlaan  gentoo.org>

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

diff --git a/dev-python/binaryornot/binaryornot-0.4.4-r3.ebuild 
b/dev-python/binaryornot/binaryornot-0.4.4-r3.ebuild
index ffd76d0df21a..9342e12d3a4e 100644
--- a/dev-python/binaryornot/binaryornot-0.4.4-r3.ebuild
+++ b/dev-python/binaryornot/binaryornot-0.4.4-r3.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{9..12} )
 
 inherit distutils-r1 pypi
 



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

2023-07-07 Thread Andrew Ammerlaan
commit: ff5e1768b15d524caa94f64db29bc0d8b9cd6afe
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Fri Jul  7 11:37:54 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Fri Jul  7 11:39:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff5e1768

dev-util/cookiecutter: add 2.2.0

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-util/cookiecutter/Manifest  |  1 +
 dev-util/cookiecutter/cookiecutter-2.2.0.ebuild | 52 +
 dev-util/cookiecutter/metadata.xml  |  2 +-
 3 files changed, 54 insertions(+), 1 deletion(-)

diff --git a/dev-util/cookiecutter/Manifest b/dev-util/cookiecutter/Manifest
index 4f587fc644cd..e59e9ea83a03 100644
--- a/dev-util/cookiecutter/Manifest
+++ b/dev-util/cookiecutter/Manifest
@@ -1,3 +1,4 @@
 DIST cookiecutter-1.7.3.tar.gz 253444 BLAKE2B 
92ae74768c909ab8e2ae97ad87921ae0cbf24c417ab6985ac10eacd913981ee7756843e2588936174d3c04ecfa7a62077a6d4a323fdfa6d1872f3c84d943cbcb
 SHA512 
a7dd7993ba40a084a719d553afbb8035f26976f38a3e8ee373c8074db64eac6bd7b711eca8cedbfd1050fc057a0b45409af4d59ff3bde57b344317dbee56f10b
 DIST cookiecutter-2.0.2.tar.gz 260840 BLAKE2B 
008c4dceb1218ba7ead3846d24fc77253988a1fedfee929f30b4d2a63ee6ead9f2733e58e84f2d29840a5885b6655bb7d554664cec4175f49bd333b493c0f36d
 SHA512 
0bd490e3f7067fbe87aeff35255ccac0d05d723c6505345856284612752a65e4e35a8e5fb4410f900d42e3998e68d7aa8bec402686404336dedbc456fd4cda49
 DIST cookiecutter-2.1.1.tar.gz 263100 BLAKE2B 
6f054cc5e03328db3198443fe1f99bbef285fe03a1f9bf588b4b80d2314da10f6c998221cf6c41bff9c7fdc3c92680290468dfb070ade4a868ab80f941c1f6a4
 SHA512 
7833bfc0e6d2d32060e099a97a4477114c2e6f9b09f951c4a5519153fd7c1f9659c22596e443392272f4a6f80eabb2a346417bac56ea7ea4108fc6b36fc0072c
+DIST cookiecutter-2.2.0.tar.gz 270467 BLAKE2B 
4bb308448e4e400902ac7b0af7a496065e5cb9a27959616bcb100451decc111d526b35158d96139e65ba6a8f1f71fc0bde2653cbfad1779c43ab9e703acb7253
 SHA512 
bd09e01e761dbbfd9f8c6f271aedda504edae1bc1e118906ea05984a38d262c7c7680210c6310c94bcdd19da4c68d74ce48849a01b88b5904dd6565309459cce

diff --git a/dev-util/cookiecutter/cookiecutter-2.2.0.ebuild 
b/dev-util/cookiecutter/cookiecutter-2.2.0.ebuild
new file mode 100644
index ..f4dd1e02e7f0
--- /dev/null
+++ b/dev-util/cookiecutter/cookiecutter-2.2.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..12} )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1
+
+DESCRIPTION="Command-line utility to create projects from cookiecutters 
(project templates)"
+HOMEPAGE="https://github.com/cookiecutter/cookiecutter;
+SRC_URI="https://github.com/cookiecutter/cookiecutter/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
+
+RDEPEND="
+   dev-python/arrow[${PYTHON_USEDEP}]
+   >=dev-python/binaryornot-0.4.4[${PYTHON_USEDEP}]
+   >=dev-python/click-7.0[${PYTHON_USEDEP}]
+   =dev-python/jinja-2.7[${PYTHON_USEDEP}]
+   =dev-python/pyyaml-5.3.1[${PYTHON_USEDEP}]
+   >=dev-python/python-slugify-4.0.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
+"
+
+BDEPEND="
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/freezegun[${PYTHON_USEDEP}]
+   dev-vcs/git
+   )
+"
+
+DOCS=( README.md HISTORY.md CONTRIBUTING.md )
+
+PATCHES=(
+   "${FILESDIR}/test_cli-1.7.2.patch"
+)
+
+distutils_enable_tests pytest
+# TODO: Package sphinx-click
+# distutils_enable_sphinx docs \
+#  dev-python/sphinx-rtd-theme \
+#  dev-python/recommonmark
+
+python_test() {
+   epytest -o addopts=
+}

diff --git a/dev-util/cookiecutter/metadata.xml 
b/dev-util/cookiecutter/metadata.xml
index 61e2dc802064..ddb58f880b7b 100644
--- a/dev-util/cookiecutter/metadata.xml
+++ b/dev-util/cookiecutter/metadata.xml
@@ -11,6 +11,6 @@



-   audreyr/cookiecutter
+   cookiecutter/cookiecutter

 



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

2023-07-07 Thread Andrew Ammerlaan
commit: 2ddebb4cb9e9acc427e6084263c096dca54ce2a3
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Fri Jul  7 11:38:48 2023 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Fri Jul  7 11:39:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ddebb4c

dev-util/cookiecutter: drop 1.7.3, 2.0.2-r1

Signed-off-by: Andrew Ammerlaan  gentoo.org>

 dev-util/cookiecutter/Manifest |  2 -
 dev-util/cookiecutter/cookiecutter-1.7.3.ebuild| 50 
 dev-util/cookiecutter/cookiecutter-2.0.2-r1.ebuild | 55 --
 3 files changed, 107 deletions(-)

diff --git a/dev-util/cookiecutter/Manifest b/dev-util/cookiecutter/Manifest
index e59e9ea83a03..30a8979b2d80 100644
--- a/dev-util/cookiecutter/Manifest
+++ b/dev-util/cookiecutter/Manifest
@@ -1,4 +1,2 @@
-DIST cookiecutter-1.7.3.tar.gz 253444 BLAKE2B 
92ae74768c909ab8e2ae97ad87921ae0cbf24c417ab6985ac10eacd913981ee7756843e2588936174d3c04ecfa7a62077a6d4a323fdfa6d1872f3c84d943cbcb
 SHA512 
a7dd7993ba40a084a719d553afbb8035f26976f38a3e8ee373c8074db64eac6bd7b711eca8cedbfd1050fc057a0b45409af4d59ff3bde57b344317dbee56f10b
-DIST cookiecutter-2.0.2.tar.gz 260840 BLAKE2B 
008c4dceb1218ba7ead3846d24fc77253988a1fedfee929f30b4d2a63ee6ead9f2733e58e84f2d29840a5885b6655bb7d554664cec4175f49bd333b493c0f36d
 SHA512 
0bd490e3f7067fbe87aeff35255ccac0d05d723c6505345856284612752a65e4e35a8e5fb4410f900d42e3998e68d7aa8bec402686404336dedbc456fd4cda49
 DIST cookiecutter-2.1.1.tar.gz 263100 BLAKE2B 
6f054cc5e03328db3198443fe1f99bbef285fe03a1f9bf588b4b80d2314da10f6c998221cf6c41bff9c7fdc3c92680290468dfb070ade4a868ab80f941c1f6a4
 SHA512 
7833bfc0e6d2d32060e099a97a4477114c2e6f9b09f951c4a5519153fd7c1f9659c22596e443392272f4a6f80eabb2a346417bac56ea7ea4108fc6b36fc0072c
 DIST cookiecutter-2.2.0.tar.gz 270467 BLAKE2B 
4bb308448e4e400902ac7b0af7a496065e5cb9a27959616bcb100451decc111d526b35158d96139e65ba6a8f1f71fc0bde2653cbfad1779c43ab9e703acb7253
 SHA512 
bd09e01e761dbbfd9f8c6f271aedda504edae1bc1e118906ea05984a38d262c7c7680210c6310c94bcdd19da4c68d74ce48849a01b88b5904dd6565309459cce

diff --git a/dev-util/cookiecutter/cookiecutter-1.7.3.ebuild 
b/dev-util/cookiecutter/cookiecutter-1.7.3.ebuild
deleted file mode 100644
index 4226acde3723..
--- a/dev-util/cookiecutter/cookiecutter-1.7.3.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-DESCRIPTION="Command-line utility to create projects from cookiecutters 
(project templates)"
-HOMEPAGE="https://github.com/cookiecutter/cookiecutter;
-SRC_URI="https://github.com/cookiecutter/cookiecutter/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-
-RDEPEND="
-   >=dev-python/binaryornot-0.4.4[${PYTHON_USEDEP}]
-   >=dev-python/click-7.0[${PYTHON_USEDEP}]
-   >=dev-python/jinja-2.7[${PYTHON_USEDEP}]
-   =dev-python/jinja2-time-0.2.0[${PYTHON_USEDEP}]
-   >=dev-python/poyo-0.5.0[${PYTHON_USEDEP}]
-   >=dev-python/python-slugify-4.0.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
-   >=dev-python/six-1.10[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   dev-python/freezegun[${PYTHON_USEDEP}]
-   dev-vcs/git
-   )
-"
-
-DOCS=( README.md HISTORY.md CONTRIBUTING.md )
-
-PATCHES=(
-   "${FILESDIR}/test_cli-1.7.2.patch"
-)
-
-distutils_enable_tests pytest
-distutils_enable_sphinx docs \
-   dev-python/sphinx-rtd-theme \
-   dev-python/recommonmark
-
-python_test() {
-   epytest -o addopts=
-}

diff --git a/dev-util/cookiecutter/cookiecutter-2.0.2-r1.ebuild 
b/dev-util/cookiecutter/cookiecutter-2.0.2-r1.ebuild
deleted file mode 100644
index 4ad9ba45ea65..
--- a/dev-util/cookiecutter/cookiecutter-2.0.2-r1.ebuild
+++ /dev/null
@@ -1,55 +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} )
-DISTUTILS_USE_PEP517=setuptools
-inherit distutils-r1
-
-DESCRIPTION="Command-line utility to create projects from cookiecutters 
(project templates)"
-HOMEPAGE="https://github.com/cookiecutter/cookiecutter;
-SRC_URI="https://github.com/cookiecutter/cookiecutter/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
-
-RDEPEND="
-   >=dev-python/binaryornot-0.4.4[${PYTHON_USEDEP}]
-   >=dev-python/click-7.0[${PYTHON_USEDEP}]
-   =dev-python/jinja-2.7[${PYTHON_USEDEP}]
-   =dev-python/jinja2-time-0.2.0[${PYTHON_USEDEP}]
-   >=dev-python/python-slugify-4.0.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.23.0[${PYTHON_USEDEP}]
-"
-
-BDEPEND="
-   test? (
-   dev-python/pytest-mock[${PYTHON_USEDEP}]
-   

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

2023-07-07 Thread Joonas Niilola
commit: aec2c5fb91b0b7d1c0c260066ac4c92fde29ce57
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Jul  7 11:37:16 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jul  7 11:38:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aec2c5fb

www-client/firefox: stabilize 102.13.0 for amd64

Bug: https://bugs.gentoo.org/909820
Signed-off-by: Joonas Niilola  gentoo.org>

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

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



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

2023-07-07 Thread Joonas Niilola
commit: 11b01723fe36b4b4c0249f4c8f49cd09de4881bb
Author: Joonas Niilola  gentoo  org>
AuthorDate: Fri Jul  7 11:13:42 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Fri Jul  7 11:38:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11b01723

www-client/firefox: stabilize 102.13.0 for x86

Bug: https://bugs.gentoo.org/909820
Signed-off-by: Joonas Niilola  gentoo.org>

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

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



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

2023-07-07 Thread WANG Xuerui
commit: 780f6406ba74e117bd73789f8a6e4e52cea10839
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 10:22:42 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 10:22:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=780f6406

dev-python/numpy: keyword 1.25.0-r2 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-python/numpy/numpy-1.25.0-r2.ebuild 
b/dev-python/numpy/numpy-1.25.0-r2.ebuild
index e222b83e5e69..37bac0a42203 100644
--- a/dev-python/numpy/numpy-1.25.0-r2.ebuild
+++ b/dev-python/numpy/numpy-1.25.0-r2.ebuild
@@ -22,7 +22,7 @@ LICENSE="BSD"
 SLOT="0"
 IUSE="lapack"
 if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc64 ~s390 ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc64 ~s390 ~sparc ~x86"
 fi
 
 RDEPEND="



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

2023-07-07 Thread WANG Xuerui
commit: 187c3f734047ab1ed4819a74f7dff4933d452caa
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 10:22:28 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 10:22:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=187c3f73

dev-python/pip-run: keyword 12.1.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 dev-python/pip-run/pip-run-12.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pip-run/pip-run-12.1.0.ebuild 
b/dev-python/pip-run/pip-run-12.1.0.ebuild
index 374ec3d2fe83..36249ede18c3 100644
--- a/dev-python/pip-run/pip-run-12.1.0.ebuild
+++ b/dev-python/pip-run/pip-run-12.1.0.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 
 RDEPEND="
dev-python/autocommand[${PYTHON_USEDEP}]



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

2023-07-07 Thread WANG Xuerui
commit: 0e53687cff1b97e4e04d88b36ba37d0230f4846a
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 10:21:57 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 10:21:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e53687c

dev-python/wurlitzer: keyword 3.0.3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-python/wurlitzer/wurlitzer-3.0.3.ebuild 
b/dev-python/wurlitzer/wurlitzer-3.0.3.ebuild
index cd2a1557bb7d..99e43a02639f 100644
--- a/dev-python/wurlitzer/wurlitzer-3.0.3.ebuild
+++ b/dev-python/wurlitzer/wurlitzer-3.0.3.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~hppa ~ia64 ~riscv x86"
+KEYWORDS="amd64 ~hppa ~ia64 ~loong ~riscv x86"
 
 distutils_enable_tests pytest
 



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

2023-07-07 Thread WANG Xuerui
commit: 69a0a2675f1d9eb9ab0d9edf8e70dbf771d7ac63
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 10:22:26 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 10:22:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=69a0a267

dev-python/jaraco-env: keyword 1.0.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-python/jaraco-env/jaraco-env-1.0.0.ebuild 
b/dev-python/jaraco-env/jaraco-env-1.0.0.ebuild
index 6eaa4cdae03d..b3ee49850703 100644
--- a/dev-python/jaraco-env/jaraco-env-1.0.0.ebuild
+++ b/dev-python/jaraco-env/jaraco-env-1.0.0.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 
 BDEPEND="
dev-python/setuptools-scm[${PYTHON_USEDEP}]



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

2023-07-07 Thread WANG Xuerui
commit: 7f3d5a86ac8f5c5e0bb966242ee419db2e98ce2a
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 10:22:00 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 10:22:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f3d5a86

dev-python/contourpy: keyword 1.1.0 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/dev-python/contourpy/contourpy-1.1.0.ebuild 
b/dev-python/contourpy/contourpy-1.1.0.ebuild
index 363f925265a6..d64ecb6f2525 100644
--- a/dev-python/contourpy/contourpy-1.1.0.ebuild
+++ b/dev-python/contourpy/contourpy-1.1.0.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~hppa ~ia64 ~riscv ~x86"
+KEYWORDS="~amd64 ~hppa ~ia64 ~loong ~riscv ~x86"
 
 RDEPEND="
>=dev-python/numpy-1.16[${PYTHON_USEDEP}]



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

2023-07-07 Thread Gonçalo Negrier Duarte
commit: 9cb0fc927d7250ca6a12775c3bb1c60bec3206e1
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 11:15:45 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 11:16:25 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9cb0fc92

app-text/sioyek: change to src_compile

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

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

diff --git a/app-text/sioyek/sioyek-.ebuild 
b/app-text/sioyek/sioyek-.ebuild
index b2ea83dde..d94394edf 100644
--- a/app-text/sioyek/sioyek-.ebuild
+++ b/app-text/sioyek/sioyek-.ebuild
@@ -16,7 +16,7 @@ BDEPEND="media-libs/harfbuzz
 dev-qt/qt3d
 "
 
-src_prepare() {
+src_compile() {
 #Make Mupdf specific for build
 pushd mupdf || die
 emake USE_SYSTEM_HARFBUZZ=yes



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

2023-07-07 Thread Edgar Luque
commit: c87a173c84fa81e14aa6c275ab5a82ce4f2ecfed
Author: Edgar Luque  edgarluque  com>
AuthorDate: Fri Jul  7 11:09:48 2023 +
Commit: Edgar Luque  edgarluque  com>
CommitDate: Fri Jul  7 11:09:48 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c87a173c

games-action/ddnet: add 17.1, drop 17.0.3

Signed-off-by: Edgar Luque  edgarluque.com>

 games-action/ddnet/Manifest   | 2 +-
 games-action/ddnet/{ddnet-17.0.3.ebuild => ddnet-17.1.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-action/ddnet/Manifest b/games-action/ddnet/Manifest
index 8176c7ba1..b9be14522 100644
--- a/games-action/ddnet/Manifest
+++ b/games-action/ddnet/Manifest
@@ -2,7 +2,7 @@ DIST cc-1.0.73.crate 57880 BLAKE2B 
be8d7a25a54afdd759844e76aec61526fc2bd5ca09480
 DIST cxx-1.0.71.crate 195479 BLAKE2B 
956f735ad6a417337dd6e0f71ba49d21e8ad9724e288b8d05a013c76bdeb0c3565197f8fc02f861a13f68c6823a969b05852c4abc0ef48d3deb4a3ede3ce7d3c
 SHA512 
1b770312e5ea69a9fa3882e2e507d9de4505dbf09fdab4e6cacdeed7a00122b1cc88583d7353959cd0375a380b7e8563a673c4602fc036130f248db97225b305
 DIST cxxbridge-flags-1.0.71.crate 5593 BLAKE2B 
4f3c72079b42cf41c66dc779a792c76d860e7b85220508b9284b23645b8fae3911864b76719457952bb3b7e666312022def72204c2d096afa2683716cb9f0c5d
 SHA512 
53f5783c4c15b87eac8f6c7ca911b5b3c92a5821040c4000586a118b441aaab17f798f878433436e881f0edd531d9243234cdb4bacfea16fe1f60df080a2d6b9
 DIST cxxbridge-macro-1.0.71.crate 59620 BLAKE2B 
ce4b5bfc016a799312cfc2000bcc7b0b701636a558b66d079e3a69ed3a4c83c3c22cbba7bcd3168107d5dd3a0728e2e8887c0089ac7ef022957cc0559ed7a2c5
 SHA512 
13b0f742ecf4724214b896bcd3c4fedff011751661bd657ca902f123fcb869e835ce850acb1cb9ebe0cb1d13fb9aecc74c7730586ebd465500c2e01cfe686dbc
-DIST ddnet-17.0.3.tar.gz 36100967 BLAKE2B 
546dbaa796dd4279d131c78498806f7ddc42f98c63baabe56b4aea502c549df265a9e392a88385cb8809b6f32c49fb1b328c6ea8c76bfff95bf829b71151c55d
 SHA512 
83ea0005bc82ec97c59d03f6f7fb5e58128061f49d54d333804f93dfdf996ab55ba55db3e7b55a715f95ca5d4134945683fa1d0445906031d6bc1a1170787966
+DIST ddnet-17.1.tar.gz 36108291 BLAKE2B 
b66b34463ba38a220b6aaf1f9d52540885540b1dd260d97b443e5df83be05cd0250a6a3a9f9f81725cdba21d4c81206fbe3b9ad746d64191f9ae3481866778e1
 SHA512 
63a30a1d93043544a2400a558cb8c6d97249f5119ec37b12d0efcd8ed706062c284e9812fd81fb921b0613ca59d7fcadb6c91caf2d26164087b7c2ddd7201758
 DIST link-cplusplus-1.0.6.crate 8150 BLAKE2B 
82b0eb89926a7f3b7e427242ff3f65eba78f467f1ab972f7f280daf09e2be7188d8e851a21018a268871d5dc9cf7dfda4ef24952b5bc38bd722a5537504c1ddb
 SHA512 
9f77f71f7261472de0d97b2c26efb43f3d49dafbaa1eb853340467260a65d85344e94e023540e068051108afd63cc48c6a5c8025f50922a73dc6409134418e74
 DIST proc-macro2-1.0.40.crate 40559 BLAKE2B 
d83cf7283393a82ca65263afc375d123bd2f48b719c9eab6859c52dc0c2b9b4b5af3090a0ebd0fedf0e1095f0bafbc443016f751a0485dc654bcd80a6f71e326
 SHA512 
bb179524bd41e36735010a7ec53e096359ffc3688ab97806a45ed9cfb17e8688ce352bbb8cd3bd4e15a4299e8500603c86591b17cfa31bca03f299f6f6347992
 DIST quote-1.0.20.crate 28160 BLAKE2B 
db257025f64817b1b58eecb8e64e63f1782d8a7fcb42ed6c3364254ec5a26705e49ce0637c880b0355b99a77473ce3083caae2cfabbd1a1a7e4fc826bae2cb7c
 SHA512 
d12f4a425273b99ae655da11fcf5dad2609e20ad3e7d85cde08c7d09f444a5c7a3505470bad2d48b1ba8ea59ebf38ab87aa1052e47ec414acfc05dcb07d438be

diff --git a/games-action/ddnet/ddnet-17.0.3.ebuild 
b/games-action/ddnet/ddnet-17.1.ebuild
similarity index 100%
rename from games-action/ddnet/ddnet-17.0.3.ebuild
rename to games-action/ddnet/ddnet-17.1.ebuild



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

2023-07-07 Thread Gonçalo Negrier Duarte
commit: 3cf6c1f189b1c0132cc8a3ffd3627623b794005a
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 10:35:06 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 10:35:06 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3cf6c1f1

gui-apps/ReGreet: fix spacing and metadata

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 gui-apps/ReGreet/ReGreet-.ebuild | 16 
 gui-apps/ReGreet/metadata.xml|  7 ---
 2 files changed, 12 insertions(+), 11 deletions(-)

diff --git a/gui-apps/ReGreet/ReGreet-.ebuild 
b/gui-apps/ReGreet/ReGreet-.ebuild
index 495666263..1f0457a68 100644
--- a/gui-apps/ReGreet/ReGreet-.ebuild
+++ b/gui-apps/ReGreet/ReGreet-.ebuild
@@ -19,11 +19,11 @@ DEPEND="x11-libs/gtk+:3
 || ( gui-wm/cage gui-wm/sway )
 "
 RDEPEND="
-   ${DEPEND}
-   gui-libs/greetd
+${DEPEND}
+gui-libs/greetd
 "
 BDEPEND="
-   virtual/rust
+virtual/rust
 "
 IUSE="gtk4 logs cage sway"
 REQUIRED_USE="|| ( cage sway ) cage? ( !sway ) sway? ( !cage )"
@@ -48,21 +48,21 @@ src_compile() {
 }
 
 src_install() {
-newbin ${WORKDIR}/${P}/target/release/regreet regreet
+newbin "${WORKDIR}/${P}/target/release/regreet regreet"
 if use cage; then
-insinto /etc/greetd/ && newins ${FILESDIR}/config-cage.toml config.toml
+insinto /etc/greetd/ && newins "${FILESDIR}/config-cage.toml 
config.toml"
 echo "Restart cage service to verify if works (Only activate on TTY1)"
 fi
 if use sway; then
-insinto /etc/greetd/ && newins ${FILESDIR}/config-sway.toml config.toml
-insinto /etc/greetd/ && doins ${FILESDIR}/sway-config
+insinto /etc/greetd/ && newins "${FILESDIR}/config-sway.toml 
config.toml"
+insinto /etc/greetd/ && doins "${FILESDIR}/sway-config"
 echo "Restart cage service to verify if works (Only activate on TTY1)"
 fi
 }
 
 src_post_install () {
 if use logs; then
-insinto /etc/tmpfiles.d/ && newins 
${WORKDIR}/${P}/systemd-tmpfiles.conf regreet.conf
+insinto /etc/tmpfiles.d/ && newins 
"${WORKDIR}/${P}/systemd-tmpfiles.conf regreet.conf"
 systemd-tmpfiles --create "$PWD/systemd-tmpfiles.conf"
 fi
 }
\ No newline at end of file

diff --git a/gui-apps/ReGreet/metadata.xml b/gui-apps/ReGreet/metadata.xml
index 23d69ba06..5cac65605 100644
--- a/gui-apps/ReGreet/metadata.xml
+++ b/gui-apps/ReGreet/metadata.xml
@@ -5,8 +5,9 @@
Compile with support for gtk4
Use cage to start ReGreet
Use sway to start ReGreet
+   Compile ReGreet with logs enable 
(debug)

-
-rharish101/ReGreet
-
+   
+   rharish101/ReGreet
+   
 



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/gtklock-extras/

2023-07-07 Thread Gonçalo Negrier Duarte
commit: 8a9f911b5a75b6402efc6ec14e8a4c9af60d27d1
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 10:34:46 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 10:34:46 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8a9f911b

gui-apps/gtklock-extras: fix spacing and metadata

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 gui-apps/gtklock-extras/gtklock-extras-.ebuild | 16 
 gui-apps/gtklock-extras/metadata.xml   |  6 +++---
 2 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/gui-apps/gtklock-extras/gtklock-extras-.ebuild 
b/gui-apps/gtklock-extras/gtklock-extras-.ebuild
index 81117c7e2..bac120786 100644
--- a/gui-apps/gtklock-extras/gtklock-extras-.ebuild
+++ b/gui-apps/gtklock-extras/gtklock-extras-.ebuild
@@ -28,14 +28,14 @@ REQUIRED_USE="|| ( playerctl powerbar userinfo )"
 src_compile() {
   if use powerbar; then
 pushd gtklock-powerbar-module || die
- emake
- popd || die
+emake
+popd || die
   fi
 
   if use playerctl; then
 pushd gtklock-playerctl-module || die
- emake
- popd || die
+emake
+popd || die
   fi
 
   if use userinfo; then
@@ -49,14 +49,14 @@ src_install() {
   dodir /usr/local/lib/gtklock
   if use powerbar; then
 pushd gtklock-powerbar-module || die
- insinto /usr/local/lib/gtklock && doins powerbar-module.so
- popd || die
+insinto /usr/local/lib/gtklock && doins powerbar-module.so
+popd || die
   fi
 
   if use playerctl; then
 pushd gtklock-playerctl-module || die
- insinto /usr/local/lib/gtklock && doins playerctl-module.so
- popd || die
+insinto /usr/local/lib/gtklock && doins playerctl-module.so
+popd || die
   fi
 
   if use userinfo; then

diff --git a/gui-apps/gtklock-extras/metadata.xml 
b/gui-apps/gtklock-extras/metadata.xml
index f37f96ac1..156af3f9f 100644
--- a/gui-apps/gtklock-extras/metadata.xml
+++ b/gui-apps/gtklock-extras/metadata.xml
@@ -6,7 +6,7 @@
gtklock module adding media player 
controls to the lockscreen
gtklock module adding user info to the 
lockscreen

-
-MrDuartePT/gtklock-modules-gentoo
-
+   
+   MrDuartePT/gtklock-modules-gentoo
+   
 



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

2023-07-07 Thread Gonçalo Negrier Duarte
commit: fb901d3985fc25981f0555f6a0fce8084254dec4
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 10:33:47 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 10:33:47 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fb901d39

app-text/sioyek: fix spacing and some unneded white lines

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 app-text/sioyek/sioyek-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/app-text/sioyek/sioyek-.ebuild 
b/app-text/sioyek/sioyek-.ebuild
index 2da14543a..b2ea83dde 100644
--- a/app-text/sioyek/sioyek-.ebuild
+++ b/app-text/sioyek/sioyek-.ebuild
@@ -32,10 +32,9 @@ src_install() {
 fperms +x /opt/sioyek/sioyek
 insinto /opt/sioyek/shaders
 doins pdf_viewer/shaders/*
-
+#Add Desktop file and icon
 domenu "${FILESDIR}/sioyek.desktop"
 doicon resources/sioyek-icon-linux.png
 insinto /usr/share/sioyek && doins tutorial.pdf pdf_viewer/keys.config 
pdf_viewer/prefs.config
 doman resources/sioyek.1
-
 }
\ No newline at end of file



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

2023-07-07 Thread Gonçalo Negrier Duarte
commit: f7b933a836f88c831fcda1e6e00f1e73b6b853c1
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 10:37:23 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 10:37:23 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7b933a8

gui-apps/ReGreet: add final white line

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 gui-apps/ReGreet/ReGreet-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-apps/ReGreet/ReGreet-.ebuild 
b/gui-apps/ReGreet/ReGreet-.ebuild
index 1f0457a68..f64a16ab8 100644
--- a/gui-apps/ReGreet/ReGreet-.ebuild
+++ b/gui-apps/ReGreet/ReGreet-.ebuild
@@ -65,4 +65,4 @@ src_post_install () {
 insinto /etc/tmpfiles.d/ && newins 
"${WORKDIR}/${P}/systemd-tmpfiles.conf regreet.conf"
 systemd-tmpfiles --create "$PWD/systemd-tmpfiles.conf"
 fi
-}
\ No newline at end of file
+}



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

2023-07-07 Thread Gonçalo Negrier Duarte
commit: 49b67f56acff418a0de47fbfc51f811ddf831c96
Author: Gonçalo Negrier Duarte  gmail  com>
AuthorDate: Fri Jul  7 10:35:47 2023 +
Commit: Gonçalo Negrier Duarte  gmail  com>
CommitDate: Fri Jul  7 10:35:47 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=49b67f56

sys-firmware/lenovolegionlinux: Remove toolchain-funcs eclass
** Remove app-portage/smart-live-rebuild dependency

Signed-off-by: Gonçalo Negrier Duarte  gmail.com>

 .../lenovolegionlinux/lenovolegionlinux-.ebuild | 13 ++---
 1 file changed, 6 insertions(+), 7 deletions(-)

diff --git a/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild 
b/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild
index 397b677ab..e5ddacdeb 100644
--- a/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild
+++ b/sys-firmware/lenovolegionlinux/lenovolegionlinux-.ebuild
@@ -8,7 +8,7 @@ PYTHON_COMPAT=( python3_{9..11} )
 
 EPYTHON=python3
 
-inherit linux-mod-r1 toolchain-funcs git-r3 distutils-r1 desktop systemd
+inherit linux-mod-r1 git-r3 distutils-r1 desktop systemd
 
 EGIT_REPO_URI="https://github.com/johnfanv2/LenovoLegionLinux.git;
 
@@ -21,7 +21,6 @@ DEPEND="sys-kernel/linux-headers
 legion-tools? ( dev-python/PyQt5 )
 legion-tools? ( dev-python/pyyaml )
 legion-tools? ( dev-python/argcomplete )
-   app-portage/smart-live-rebuild
legion-acpi? ( sys-power/acpid )
radeon-dgpu? ( dev-util/rocm-smi )
 downgrade-nvidia? ( <=x11-drivers/nvidia-drivers-525 )
@@ -60,29 +59,29 @@ src_install() {
cd "${WORKDIR}/${P}/extra"
 
if use legion-acpi; then
-insinto /etc/acpi/events/ && doins 
acpi/events/{ac_adapter_legion-fancurve,novo-button,PrtSc-button,fn-r-refrate}
+   insinto /etc/acpi/events/ && doins 
acpi/events/{ac_adapter_legion-fancurve,novo-button,PrtSc-button,fn-r-refrate}
insinto /etc/acpi/actions/ && doins 
acpi/actions/{battery-legion-quiet.sh,snipping-tool.sh,fn-r-refresh-rate.sh}
 fi
 
if use systemd; then
-   systemd_dounit service/legion-linux.service 
service/legion-linux.path
+   systemd_dounit service/legion-linux.service 
service/legion-linux.path
dobin service/fancurve-set
insinto /usr/share/legion_linux && doins 
service/profiles/*
insinto /etc/legion_linux && doins service/profiles/*
 
#AMD
if use radeon-dgpu; then
-   insinto /usr/share/legion_linux && newins 
"${FILESDIR}/radeon" .env
+   insinto /usr/share/legion_linux && newins 
"${FILESDIR}/radeon" .env
insinto /etc/legion_linux && newins 
"${FILESDIR}/radeon" .env
fi
#NVIDIA (need dowgrade because nvidia-smi -pl was removed)
 if use downgrade-nvidia; then 
-   insinto /usr/share/legion_linux && newins 
"${FILESDIR}/nvidia" .env
+   insinto /usr/share/legion_linux && newins 
"${FILESDIR}/nvidia" .env
insinto /etc/legion_linux && newins 
"${FILESDIR}/nvidia" .env
fi
 
if use ryzenadj; then 
-   insinto /usr/share/legion_linux && newins 
"${FILESDIR}/cpu" .env
+   insinto /usr/share/legion_linux && newins 
"${FILESDIR}/cpu" .env
insinto /etc/legion_linux && newins 
"${FILESDIR}/cpu" .env
fi
 



[gentoo-commits] repo/gentoo:master commit in: app-crypt/minisign/

2023-07-07 Thread Sam James
commit: 0dff2777ebfc7b6ab1121fa937e397cd4a9e0b86
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dff2777

app-crypt/minisign: Stabilize 0.11 x86, #909801

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

 app-crypt/minisign/minisign-0.11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/minisign/minisign-0.11.ebuild 
b/app-crypt/minisign/minisign-0.11.ebuild
index 274adaf699de..6b812829cc5e 100644
--- a/app-crypt/minisign/minisign-0.11.ebuild
+++ b/app-crypt/minisign/minisign-0.11.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]]; then
EGIT_REPO_URI="https://github.com/jedisct1/${PN}.git;
 else
SRC_URI="https://github.com/jedisct1/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc ~x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86"
 fi
 
 LICENSE="ISC"



[gentoo-commits] repo/gentoo:master commit in: sys-libs/pam/

2023-07-07 Thread Sam James
commit: c74608885da5707fedadb353208daff0c3f294e6
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:29 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7460888

sys-libs/pam: Stabilize 1.5.3 x86, #909813

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

 sys-libs/pam/pam-1.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/pam/pam-1.5.3.ebuild b/sys-libs/pam/pam-1.5.3.ebuild
index a32a15a75cae..32fd2e010d5e 100644
--- a/sys-libs/pam/pam-1.5.3.ebuild
+++ b/sys-libs/pam/pam-1.5.3.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="|| ( BSD GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="audit berkdb debug nis selinux"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: x11-wm/dwm/

2023-07-07 Thread Sam James
commit: 9ae9c51896c39bb89a4998298cdf78731a85a07a
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ae9c518

x11-wm/dwm: Stabilize 6.4 x86, #909809

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

 x11-wm/dwm/dwm-6.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/dwm/dwm-6.4.ebuild b/x11-wm/dwm/dwm-6.4.ebuild
index 99209036a471..9197ef3aa4b2 100644
--- a/x11-wm/dwm/dwm-6.4.ebuild
+++ b/x11-wm/dwm/dwm-6.4.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://git.suckless.org/dwm;
 else
SRC_URI="https://dl.suckless.org/${PN}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv x86"
 fi
 
 LICENSE="MIT"



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

2023-07-07 Thread Sam James
commit: a45fb485a876a5c4145f8a883f57ce7becd899a0
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:26 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a45fb485

dev-util/bear: Stabilize 3.1.2 x86, #909808

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

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

diff --git a/dev-util/bear/bear-3.1.2.ebuild b/dev-util/bear/bear-3.1.2.ebuild
index 558970d1d6eb..14d790f1e387 100644
--- a/dev-util/bear/bear-3.1.2.ebuild
+++ b/dev-util/bear/bear-3.1.2.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/rizsotto/Bear/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm64 ~loong ~ppc64 ~riscv x86"
 IUSE="test"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/tig/

2023-07-07 Thread Sam James
commit: b35674e96d57d9d6d4bff73c0fa2cba461146557
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b35674e9

dev-vcs/tig: Stabilize 2.5.8 x86, #909804

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

 dev-vcs/tig/tig-2.5.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/tig/tig-2.5.8.ebuild b/dev-vcs/tig/tig-2.5.8.ebuild
index e56d95ae9dc6..8fcb5c6a55b5 100644
--- a/dev-vcs/tig/tig-2.5.8.ebuild
+++ b/dev-vcs/tig/tig-2.5.8.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3 autotools
 else

SRC_URI="https://github.com/jonas/tig/releases/download/${P}/${P}.tar.gz;
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 fi
 
 DESCRIPTION="text mode interface for git"



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

2023-07-07 Thread Sam James
commit: 907ca7794d6b733447fbbb512b2aee3098246224
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:22 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=907ca779

x11-misc/slock: Stabilize 1.5 x86, #909805

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

 x11-misc/slock/slock-1.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/slock/slock-1.5.ebuild b/x11-misc/slock/slock-1.5.ebuild
index b6f333bb946a..48c224ba3286 100644
--- a/x11-misc/slock/slock-1.5.ebuild
+++ b/x11-misc/slock/slock-1.5.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~hppa ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~hppa ppc64 x86"
 
 RDEPEND="
virtual/libcrypt:=



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

2023-07-07 Thread Sam James
commit: 473cc4493b17de9196cf4480ea3f144f1f1b0559
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:28 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=473cc449

app-emulation/spice: Stabilize 0.15.2 x86, #909812

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

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

diff --git a/app-emulation/spice/spice-0.15.2.ebuild 
b/app-emulation/spice/spice-0.15.2.ebuild
index a7bef4558d2d..95a2531cb043 100644
--- a/app-emulation/spice/spice-0.15.2.ebuild
+++ b/app-emulation/spice/spice-0.15.2.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]] ; then
DEPEND="~app-emulation/spice-protocol-"
 else

SRC_URI="https://www.spice-space.org/download/releases/spice-server/${P}.tar.bz2;
-   KEYWORDS="~amd64 ~arm64 ~loong ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm64 ~loong ppc64 ~riscv x86"
 fi
 
 LICENSE="LGPL-2.1"



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

2023-07-07 Thread Sam James
commit: b029d95e587be7ebdf4ec624922ee3c2afbe5949
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:25 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b029d95e

x11-misc/dmenu: Stabilize 5.2 x86, #909807

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

 x11-misc/dmenu/dmenu-5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/dmenu/dmenu-5.2.ebuild b/x11-misc/dmenu/dmenu-5.2.ebuild
index 4b01fcf18d34..77c004cc86cb 100644
--- a/x11-misc/dmenu/dmenu-5.2.ebuild
+++ b/x11-misc/dmenu/dmenu-5.2.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://dl.suckless.org/tools/${P}.tar.gz;
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv x86"
 IUSE="xinerama"
 
 RDEPEND="



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

2023-07-07 Thread Sam James
commit: 4ffba582511d05a5bc7af360af714d73f359dcc6
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:19 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ffba582

app-arch/pigz: Stabilize 2.7-r1 x86, #909802

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

 app-arch/pigz/pigz-2.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/pigz/pigz-2.7-r1.ebuild b/app-arch/pigz/pigz-2.7-r1.ebuild
index ba9ebbcfc1c4..0886013e07a6 100644
--- a/app-arch/pigz/pigz-2.7-r1.ebuild
+++ b/app-arch/pigz/pigz-2.7-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.zlib.net/pigz/${P}.tar.gz;
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~ppc-macos"
 IUSE="static test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2023-07-07 Thread Sam James
commit: 07ad241c6b89b30fbdb5c6aa012bcf1a69680413
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:14 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07ad241c

dev-vcs/git: Stabilize 2.41.0 amd64, #909798

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

 dev-vcs/git/git-2.41.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.41.0.ebuild b/dev-vcs/git/git-2.41.0.ebuild
index 9ab42bd14ca1..774efb45ef44 100644
--- a/dev-vcs/git/git-2.41.0.ebuild
+++ b/dev-vcs/git/git-2.41.0.ebuild
@@ -50,7 +50,7 @@ if [[ ${PV} != * ]]; then
SRC_URI+=" doc? ( 
${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )"
 
if [[ ${PV} != *_rc* ]] ; then
-   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"
+   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"
fi
 fi
 



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

2023-07-07 Thread Sam James
commit: c2bce425c37fdf87dd545a974bf1fcc555f23a91
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:23 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2bce425

sys-apps/etckeeper: Stabilize 1.18.20 x86, #909806

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

 sys-apps/etckeeper/etckeeper-1.18.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/etckeeper/etckeeper-1.18.20.ebuild 
b/sys-apps/etckeeper/etckeeper-1.18.20.ebuild
index 37d0bea9d9db..b7372a68b5ed 100644
--- a/sys-apps/etckeeper/etckeeper-1.18.20.ebuild
+++ b/sys-apps/etckeeper/etckeeper-1.18.20.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://etckeeper.branchable.com/;
 SRC_URI="https://git.joeyh.name/index.cgi/etckeeper.git/snapshot/${P}.tar.gz;
 
 LICENSE="GPL-2"
-KEYWORDS="amd64 arm ~arm64 hppa ~ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 hppa ~ppc ppc64 ~riscv ~sparc x86"
 SLOT="0"
 IUSE="cron test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/git/

2023-07-07 Thread Sam James
commit: dfab93c98aa32199f893b177378ff22009468d60
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:16 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dfab93c9

dev-vcs/git: Stabilize 2.41.0 x86, #909798

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

 dev-vcs/git/git-2.41.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-vcs/git/git-2.41.0.ebuild b/dev-vcs/git/git-2.41.0.ebuild
index 774efb45ef44..94a47f64b7ef 100644
--- a/dev-vcs/git/git-2.41.0.ebuild
+++ b/dev-vcs/git/git-2.41.0.ebuild
@@ -50,7 +50,7 @@ if [[ ${PV} != * ]]; then
SRC_URI+=" doc? ( 
${SRC_URI_KORG}/${PN}-htmldocs-${DOC_VER}.tar.${SRC_URI_SUFFIX} )"
 
if [[ ${PV} != *_rc* ]] ; then
-   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"
+   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"
fi
 fi
 



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

2023-07-07 Thread Sam James
commit: c5093b6796fc2386a36856c25acacf8fc222a2f8
Author: Sam James  gentoo  org>
AuthorDate: Fri Jul  7 10:14:17 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Fri Jul  7 10:14:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5093b67

app-admin/tmpreaper: Stabilize 1.6.17 x86, #909799

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

 app-admin/tmpreaper/tmpreaper-1.6.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-admin/tmpreaper/tmpreaper-1.6.17.ebuild 
b/app-admin/tmpreaper/tmpreaper-1.6.17.ebuild
index 2f7b72e21b2d..77f47185f435 100644
--- a/app-admin/tmpreaper/tmpreaper-1.6.17.ebuild
+++ b/app-admin/tmpreaper/tmpreaper-1.6.17.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://debian/pool/main/t/${PN}/${PN}_${PV}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
 IUSE=""
 
 DEPEND="sys-apps/util-linux



[gentoo-commits] repo/gentoo:master commit in: dev-games/godot/, dev-games/godot/files/

2023-07-07 Thread Ionen Wolkens
commit: ff8e8aed00ded4a725808afd21213888fcdc6f6f
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Jul  7 09:16:08 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Fri Jul  7 09:16:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ff8e8aed

dev-games/godot: add 4.1

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

 dev-games/godot/Manifest   |   1 +
 .../godot/files/godot-4.1-xkb-no-sowrap.patch  |  77 +++
 dev-games/godot/godot-4.1.ebuild   | 230 +
 3 files changed, 308 insertions(+)

diff --git a/dev-games/godot/Manifest b/dev-games/godot/Manifest
index 97916163295d..3a3dc3ac025f 100644
--- a/dev-games/godot/Manifest
+++ b/dev-games/godot/Manifest
@@ -1,2 +1,3 @@
 DIST godot-3.5.2-stable.tar.xz 24047432 BLAKE2B 
a4d600cb174b2f79cc91c583b1052db2e7e2921003ffd5a307a2484af9cc050b600e763b6016ba2df043ba5e492f0bdd13c207fd3a3d794b6602f7c574093cb0
 SHA512 
e9f3c8b23cd69422639fe22948fb1f5f2071dff6e013fee3c08d6d3c1f39de4dfc252d32eb395c847021c9bbc1b2fa320500140ff3e684bf00530889ba48a181
 DIST godot-4.0.3-stable.tar.xz 30203636 BLAKE2B 
bfdf2f3a349d541039639fbce9d9d10ba6bfc200ae9442900709b1cb3d3c40dcf68b3de10d9ebe7211a1dfc380a5cf8954c5ed1d9a510afaeec8cee2dc4e9123
 SHA512 
185c3caf99dbfeffc83fa8298c801121ee58c4c6d3854127aeb3cb2128ed08ea1925229b90f08a79e3ea5e674725fe62e219226a58a17789c0e72ae8f27ed576
+DIST godot-4.1-stable.tar.xz 30679684 BLAKE2B 
dc088aa1496f9acd77ffeb2d35f1e0c71521e6cad4db8301626f1eb1aa9a147bc77e573ec82f84f05f38edcc2962991f45c822da9013797865ac0fd8669028ee
 SHA512 
561473924fdfcc97f32ecdeedc3548059acf8d53701b17074ac5f880af3c95f60dbbcc594e7a9c919e4aa1067b3d362448fce2cfcfe76fe13fe63ad29a7c3bb6

diff --git a/dev-games/godot/files/godot-4.1-xkb-no-sowrap.patch 
b/dev-games/godot/files/godot-4.1-xkb-no-sowrap.patch
new file mode 100644
index ..c4643b332a37
--- /dev/null
+++ b/dev-games/godot/files/godot-4.1-xkb-no-sowrap.patch
@@ -0,0 +1,77 @@
+https://github.com/godotengine/godot/pull/79097
+From: =?UTF-8?q?R=C3=A9mi=20Verschelde?= 
+Date: Thu, 6 Jul 2023 14:05:28 +0200
+Subject: [PATCH] Linux: Fix build with `use_sowrap=no` and various
+ warnings/errors
+
+--- a/platform/linuxbsd/joypad_linux.cpp
 b/platform/linuxbsd/joypad_linux.cpp
+@@ -98,19 +98,20 @@ static bool detect_sandbox() {
+ 
+ JoypadLinux::JoypadLinux(Input *in) {
+ #ifdef UDEV_ENABLED
+-#ifdef SOWRAP_ENABLED
+-#ifdef DEBUG_ENABLED
+-  int dylibloader_verbose = 1;
+-#else
+-  int dylibloader_verbose = 0;
+-#endif
+   if (detect_sandbox()) {
+   // Linux binaries in sandboxes / containers need special 
handling because
+   // libudev doesn't work there. So we need to fallback to manual 
parsing
+   // of /dev/input in such case.
+   use_udev = false;
+   print_verbose("JoypadLinux: udev enabled, but detected 
incompatible sandboxed mode. Falling back to /dev/input to detect joypads.");
+-  } else {
++  }
++#ifdef SOWRAP_ENABLED
++  else {
++#ifdef DEBUG_ENABLED
++  int dylibloader_verbose = 1;
++#else
++  int dylibloader_verbose = 0;
++#endif
+   use_udev = initialize_libudev(dylibloader_verbose) == 0;
+   if (use_udev) {
+   if (!udev_new || !udev_unref || !udev_enumerate_new || 
!udev_enumerate_add_match_subsystem || !udev_enumerate_scan_devices || 
!udev_enumerate_get_list_entry || !udev_list_entry_get_next || 
!udev_list_entry_get_name || !udev_device_new_from_syspath || 
!udev_device_get_devnode || !udev_device_get_action || !udev_device_unref || 
!udev_enumerate_unref || !udev_monitor_new_from_netlink || 
!udev_monitor_filter_add_match_subsystem_devtype || 
!udev_monitor_enable_receiving || !udev_monitor_get_fd || 
!udev_monitor_receive_device || !udev_monitor_unref) {
+@@ -124,10 +125,11 @@ JoypadLinux::JoypadLinux(Input *in) {
+   print_verbose("JoypadLinux: udev enabled, but couldn't 
be loaded. Falling back to /dev/input to detect joypads.");
+   }
+   }
+-#endif
++#endif // SOWRAP_ENABLED
+ #else
+   print_verbose("JoypadLinux: udev disabled, parsing /dev/input to detect 
joypads.");
+-#endif
++#endif // UDEV_ENABLED
++
+   input = in;
+   monitor_joypads_thread.start(monitor_joypads_thread_func, this);
+   joypad_events_thread.start(joypad_events_thread_func, this);
+--- a/platform/linuxbsd/x11/display_server_x11.cpp
 b/platform/linuxbsd/x11/display_server_x11.cpp
+@@ -5449,7 +5449,7 @@ DisplayServerX11::DisplayServerX11(const String 
_rendering_driver, WindowMode
+   }
+ #else
+ #ifdef XKB_ENABLED
+-  xkb_loaded = true;
++  bool xkb_loaded = true;
+ #endif
+ #endif
+ 
+@@ -5476,6 +5476,7 @@ DisplayServerX11::DisplayServerX11(const String 
_rendering_driver, WindowMode
+ 
+   r_error = OK;
+ 
++#ifdef SOWRAP_ENABLED
+   {
+   if (!XcursorImageCreate || 

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

2023-07-07 Thread WANG Xuerui
commit: cb4fd2ea2e4f198b90d57f7164485b28fb641390
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 08:18:12 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 08:18:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb4fd2ea

net-libs/webkit-gtk: keyword 2.40.3-r410 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 net-libs/webkit-gtk/webkit-gtk-2.40.3-r410.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.3-r410.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.40.3-r410.ebuild
index d3232f2f6a1d..278eda09c2b0 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.40.3-r410.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.40.3-r410.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="4.1/0" # soname version of libwebkit2gtk-4.1
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 IUSE="aqua avif examples gamepad gles2-only keyring +gstreamer +introspection 
pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X"
 REQUIRED_USE="|| ( aqua wayland X )"



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

2023-07-07 Thread WANG Xuerui
commit: b9f33491cea08fcbd194f3bfebc1f769059906a5
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 08:18:14 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 08:18:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9f33491

net-libs/webkit-gtk: keyword 2.40.3-r600 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 net-libs/webkit-gtk/webkit-gtk-2.40.3-r600.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.3-r600.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.40.3-r600.ebuild
index 6789c7e570cf..2304283a8fcf 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.40.3-r600.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.40.3-r600.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="6/0" # soname version of libwebkit2gtk-6.0
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 IUSE="aqua avif examples gamepad gles2-only keyring +gstreamer +introspection 
pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X"
 REQUIRED_USE="|| ( aqua wayland X )"



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

2023-07-07 Thread WANG Xuerui
commit: edaf31244d65daf1afba0689d3c136c83780af30
Author: WANG Xuerui  gentoo  org>
AuthorDate: Wed Jul  5 07:00:52 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 08:17:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edaf3124

www-client/epiphany: keyword 44.3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

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

diff --git a/www-client/epiphany/epiphany-44.3.ebuild 
b/www-client/epiphany/epiphany-44.3.ebuild
index 53e8f0938976..65629d6dd0f8 100644
--- a/www-client/epiphany/epiphany-44.3.ebuild
+++ b/www-client/epiphany/epiphany-44.3.ebuild
@@ -12,7 +12,7 @@ LICENSE="GPL-3+"
 SLOT="0"
 IUSE="test"
 RESTRICT="!test? ( test )"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 
 DEPEND="
>=x11-libs/cairo-1.2



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

2023-07-07 Thread WANG Xuerui
commit: 98e96713366656d6af956290f64b5769fbe0a147
Author: WANG Xuerui  gentoo  org>
AuthorDate: Fri Jul  7 08:18:09 2023 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Fri Jul  7 08:18:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98e96713

net-libs/webkit-gtk: keyword 2.40.3 for ~loong

Signed-off-by: WANG Xuerui  gentoo.org>

 net-libs/webkit-gtk/webkit-gtk-2.40.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.40.3.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.40.3.ebuild
index 429415d303ca..30dc4de1563d 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.40.3.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.40.3.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="4/37" # soname version of libwebkit2gtk-4.0
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
 IUSE="aqua avif examples gamepad gles2-only keyring +gstreamer +introspection 
pdf +jpeg2k +jumbo-build lcms seccomp spell systemd wayland X"
 REQUIRED_USE="|| ( aqua wayland X )"



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

2023-07-07 Thread Jakov Smolić
commit: ba460b0c443e9887fc69c6360df1d786e34fd8c0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Jul  7 08:11:42 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Jul  7 08:11:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba460b0c

dev-python/pydantic-core: Keyword 2.1.2 riscv, #909772

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

 dev-python/pydantic-core/pydantic-core-2.1.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pydantic-core/pydantic-core-2.1.2.ebuild 
b/dev-python/pydantic-core/pydantic-core-2.1.2.ebuild
index 521611eb2534..25707170effe 100644
--- a/dev-python/pydantic-core/pydantic-core-2.1.2.ebuild
+++ b/dev-python/pydantic-core/pydantic-core-2.1.2.ebuild
@@ -98,7 +98,7 @@ LICENSE+="
Apache-2.0 Apache-2.0-with-LLVM-exceptions MIT Unicode-DFS-2016
 "
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 
 RDEPEND="
>=dev-python/typing-extensions-4.7.1[${PYTHON_USEDEP}]



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

2023-07-07 Thread Jakov Smolić
commit: f61d1b83b8388f2707363e84d139c64db840f022
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Jul  7 08:11:46 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Jul  7 08:11:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f61d1b83

net-dns/inadyn: Keyword 2.11.0 riscv, #909765

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

 net-dns/inadyn/inadyn-2.11.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/inadyn/inadyn-2.11.0.ebuild 
b/net-dns/inadyn/inadyn-2.11.0.ebuild
index 77fae948de5e..6654dd5ddc9a 100644
--- a/net-dns/inadyn/inadyn-2.11.0.ebuild
+++ b/net-dns/inadyn/inadyn-2.11.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/troglobit/inadyn/releases/download/v${PV}/${P}.tar.g
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
 IUSE="gnutls mbedtls openssl"
 REQUIRED_USE="?? ( gnutls mbedtls openssl )"
 



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

2023-07-07 Thread Jakov Smolić
commit: e51575a25bc3d56044cb0a3ec3673fe6cef0db11
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Jul  7 08:11:40 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Jul  7 08:11:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e51575a2

dev-python/annotated-types: Keyword 0.5.0 riscv, #909772

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

 dev-python/annotated-types/annotated-types-0.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/annotated-types/annotated-types-0.5.0.ebuild 
b/dev-python/annotated-types/annotated-types-0.5.0.ebuild
index 7dbe43adc16f..ac1727860737 100644
--- a/dev-python/annotated-types/annotated-types-0.5.0.ebuild
+++ b/dev-python/annotated-types/annotated-types-0.5.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 
 BDEPEND="
test? (



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

2023-07-07 Thread Jakov Smolić
commit: 50535450b9d6b4fc7d96f03eb2ae6bf75b8adcd1
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Jul  7 08:11:41 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Jul  7 08:11:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50535450

dev-python/pydantic: Keyword 2.0.2 riscv, #909772

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

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

diff --git a/dev-python/pydantic/pydantic-2.0.2.ebuild 
b/dev-python/pydantic/pydantic-2.0.2.ebuild
index 834053de9dc8..ef2d6ce65d34 100644
--- a/dev-python/pydantic/pydantic-2.0.2.ebuild
+++ b/dev-python/pydantic/pydantic-2.0.2.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~riscv"
 
 RDEPEND="
>=dev-python/annotated-types-0.4.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: sys-libs/pam/

2023-07-07 Thread Jakov Smolić
commit: cedd998d519998b6c1583a293e994f1c6d6ef09b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Fri Jul  7 08:09:52 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Fri Jul  7 08:09:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cedd998d

sys-libs/pam: Stabilize 1.5.3 hppa, #909813

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

 sys-libs/pam/pam-1.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/pam/pam-1.5.3.ebuild b/sys-libs/pam/pam-1.5.3.ebuild
index ac42ebfcfcb0..a32a15a75cae 100644
--- a/sys-libs/pam/pam-1.5.3.ebuild
+++ b/sys-libs/pam/pam-1.5.3.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="|| ( BSD GPL-2 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux"
 IUSE="audit berkdb debug nis selinux"
 
 BDEPEND="



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

2023-07-07 Thread Miroslav Šulc
commit: 2f0e174edc7425d7f49d62e89200d064bd3a2588
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:12:58 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0e174e

media-libs/libxspf: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libxspf/libxspf-1.2.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libxspf/libxspf-1.2.1.ebuild 
b/media-libs/libxspf/libxspf-1.2.1.ebuild
index 812917049374..26745cf31d5d 100644
--- a/media-libs/libxspf/libxspf-1.2.1.ebuild
+++ b/media-libs/libxspf/libxspf-1.2.1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="Playlist handling library"
-HOMEPAGE="http://libspiff.sourceforge.net/;
+HOMEPAGE="https://libspiff.sourceforge.net/;
 SRC_URI="mirror://sourceforge/libspiff/${P}.tar.bz2"
 
 LICENSE="BSD LGPL-2.1"



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

2023-07-07 Thread Miroslav Šulc
commit: f5c27f55335eda01ab68d301c03737010616715f
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:08:21 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5c27f55

media-libs/libmp3splt: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libmp3splt/libmp3splt-0.9.2-r6.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-libs/libmp3splt/libmp3splt-0.9.2-r6.ebuild 
b/media-libs/libmp3splt/libmp3splt-0.9.2-r6.ebuild
index bb6d0c64135c..7c3cf16d9f2b 100644
--- a/media-libs/libmp3splt/libmp3splt-0.9.2-r6.ebuild
+++ b/media-libs/libmp3splt/libmp3splt-0.9.2-r6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,10 +6,10 @@ EAPI=8
 inherit autotools flag-o-matic
 
 DESCRIPTION="Library for mp3splt to split mp3 and ogg files without decoding"
-HOMEPAGE="http://mp3splt.sourceforge.net/mp3splt_page/home.php;
+HOMEPAGE="https://mp3splt.sourceforge.net/mp3splt_page/home.php;
 SRC_URI="mirror://sourceforge/${PN:3}/${P}.tar.gz"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha amd64 ~hppa ~ppc ~ppc64 sparc x86"
 IUSE="doc flac pcre"
@@ -49,7 +49,7 @@ src_configure() {
append-libs -ldl
 
local myeconfargs=(
-   --disable-cutter # TODO package cutter 

+   --disable-cutter # TODO package cutter 

--disable-optimise
--disable-static
$(use_enable doc doxygen_doc)



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

2023-07-07 Thread Miroslav Šulc
commit: 53b0fefba347c30e9b70df6cb80c906af43f1faf
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:09:49 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53b0fefb

media-libs/libnjb: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libnjb/libnjb-2.2.7-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libnjb/libnjb-2.2.7-r2.ebuild 
b/media-libs/libnjb/libnjb-2.2.7-r2.ebuild
index c09267b64f99..4cdf7c59697f 100644
--- a/media-libs/libnjb/libnjb-2.2.7-r2.ebuild
+++ b/media-libs/libnjb/libnjb-2.2.7-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
 inherit libtool udev
 
 DESCRIPTION="Library for communicating with the Creative Nomad JukeBox digital 
audio player"
-HOMEPAGE="http://libnjb.sourceforge.net;
+HOMEPAGE="https://libnjb.sourceforge.net;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"



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

2023-07-07 Thread Miroslav Šulc
commit: d991679491bfc03ff57064d5e5b1cfc40406dcd9
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:12:12 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9916794

media-libs/libtimidity: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libtimidity/libtimidity-0.2.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libtimidity/libtimidity-0.2.7.ebuild 
b/media-libs/libtimidity/libtimidity-0.2.7.ebuild
index a2c2e2c31512..0adf3a351200 100644
--- a/media-libs/libtimidity/libtimidity-0.2.7.ebuild
+++ b/media-libs/libtimidity/libtimidity-0.2.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
 inherit multilib-minimal
 
 DESCRIPTION="MIDI to WAVE converter library"
-HOMEPAGE="http://libtimidity.sourceforge.net;
+HOMEPAGE="https://libtimidity.sourceforge.net;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="LGPL-2.1"



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

2023-07-07 Thread Miroslav Šulc
commit: 4fb39ef144ea983c6fa941954560df29f7a4601d
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:16:28 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4fb39ef1

media-libs/tse3: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/31776
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/tse3/tse3-0.3.1-r2.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/media-libs/tse3/tse3-0.3.1-r2.ebuild 
b/media-libs/tse3/tse3-0.3.1-r2.ebuild
index 5f0dc9f72733..81f7327d4a82 100644
--- a/media-libs/tse3/tse3-0.3.1-r2.ebuild
+++ b/media-libs/tse3/tse3-0.3.1-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 inherit autotools flag-o-matic
 
 DESCRIPTION="TSE3 Sequencer library"
-HOMEPAGE="http://TSE3.sourceforge.net;
+HOMEPAGE="https://TSE3.sourceforge.net;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
mirror://gentoo/${P}-awe_voice.h.tbz2"
 
@@ -16,7 +16,6 @@ IUSE="alsa oss"
 
 RDEPEND="alsa? ( media-libs/alsa-lib )"
 DEPEND="${RDEPEND}"
-BDEPEND=""
 
 PATCHES=(
"${FILESDIR}/${PN}-0.2.7-size_t-64bit.patch"



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

2023-07-07 Thread Miroslav Šulc
commit: 55a601ef082ef6507310915a1028690cc83e84e5
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:14:07 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55a601ef

media-libs/resid: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/resid/resid-0.16_p2-r2.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/resid/resid-0.16_p2-r2.ebuild 
b/media-libs/resid/resid-0.16_p2-r2.ebuild
index b4dc842c6028..5ff26305d535 100644
--- a/media-libs/resid/resid-0.16_p2-r2.ebuild
+++ b/media-libs/resid/resid-0.16_p2-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -8,11 +8,11 @@ inherit autotools
 MY_MAJ=$(ver_cut 1-2)
 
 DESCRIPTION="C++ library to emulate the C64 SID chip"
-HOMEPAGE="http://sidplay2.sourceforge.net;
+HOMEPAGE="https://sidplay2.sourceforge.net;
 SRC_URI="mirror://sourceforge/sidplay2/${P/_p/-p}.tgz"
 S="${WORKDIR}"/${PN}-${MY_MAJ}
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha amd64 ppc sparc x86"
 



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

2023-07-07 Thread Miroslav Šulc
commit: b59e95ab1ef6c6fdb4bd66707e0936f610bf78a9
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:10:59 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b59e95ab

media-libs/libsmf: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libsmf/libsmf-1.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libsmf/libsmf-1.3.ebuild 
b/media-libs/libsmf/libsmf-1.3.ebuild
index 858716580daa..e3e1da7039f0 100644
--- a/media-libs/libsmf/libsmf-1.3.ebuild
+++ b/media-libs/libsmf/libsmf-1.3.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="Standard MIDI File format library"
-HOMEPAGE="http://libsmf.sourceforge.net/api/;
+HOMEPAGE="https://libsmf.sourceforge.net/api/;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"



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

2023-07-07 Thread Miroslav Šulc
commit: 42457a58bc4bf864b242eea8389b7665e4c61d94
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:06:31 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42457a58

media-libs/libmodplug: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libmodplug/libmodplug-0.8.9.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild 
b/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild
index c63df08e7b2f..b92ffbcd510a 100644
--- a/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild
+++ b/media-libs/libmodplug/libmodplug-0.8.9.1.ebuild
@@ -8,7 +8,7 @@ MY_PVR="${PV}.r461"
 inherit autotools multilib-minimal
 
 DESCRIPTION="Library for playing MOD-like music files"
-HOMEPAGE="http://modplug-xmms.sourceforge.net/;
+HOMEPAGE="https://modplug-xmms.sourceforge.net/;
 
SRC_URI="https://github.com/ShiftMediaProject/modplug/archive/refs/tags/${MY_PVR}.tar.gz
 -> ${P}.tar.gz"
 S="${WORKDIR}/modplug-${MY_PVR}"
 



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

2023-07-07 Thread Miroslav Šulc
commit: 8c46cb3cb6d1e03c591994180f0ad3f7401e10da
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:09:18 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c46cb3c

media-libs/libmtp: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libmtp/libmtp-1.1.21.ebuild | 2 +-
 media-libs/libmtp/libmtp-.ebuild   | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/libmtp/libmtp-1.1.21.ebuild 
b/media-libs/libmtp/libmtp-1.1.21.ebuild
index d8be7090fcf6..ec7ec64723a9 100644
--- a/media-libs/libmtp/libmtp-1.1.21.ebuild
+++ b/media-libs/libmtp/libmtp-1.1.21.ebuild
@@ -15,7 +15,7 @@ else
 fi
 
 DESCRIPTION="Implementation of Microsoft's Media Transfer Protocol (MTP)"
-HOMEPAGE="http://libmtp.sourceforge.net/;
+HOMEPAGE="https://libmtp.sourceforge.net/;
 
 LICENSE="LGPL-2.1" # LGPL-2+ and LGPL-2.1+ ?
 SLOT="0/9" # Based on SONAME of libmtp shared library

diff --git a/media-libs/libmtp/libmtp-.ebuild 
b/media-libs/libmtp/libmtp-.ebuild
index c967b9ef0cc5..b292bdb3998c 100644
--- a/media-libs/libmtp/libmtp-.ebuild
+++ b/media-libs/libmtp/libmtp-.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,7 +15,7 @@ else
 fi
 
 DESCRIPTION="Implementation of Microsoft's Media Transfer Protocol (MTP)"
-HOMEPAGE="http://libmtp.sourceforge.net/;
+HOMEPAGE="https://libmtp.sourceforge.net/;
 
 LICENSE="LGPL-2.1" # LGPL-2+ and LGPL-2.1+ ?
 SLOT="0/9" # Based on SONAME of libmtp shared library



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

2023-07-07 Thread Miroslav Šulc
commit: 1f4b19d970e9b8cc8585d322d4ccf58b7c570b29
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:38:14 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f4b19d9

media-libs/libcdaudio: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libcdaudio/libcdaudio-0.99.12-r4.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/media-libs/libcdaudio/libcdaudio-0.99.12-r4.ebuild 
b/media-libs/libcdaudio/libcdaudio-0.99.12-r4.ebuild
index 7912ed3b0f5d..569e9cab54e5 100644
--- a/media-libs/libcdaudio/libcdaudio-0.99.12-r4.ebuild
+++ b/media-libs/libcdaudio/libcdaudio-0.99.12-r4.ebuild
@@ -1,16 +1,15 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="Library of cd audio related routines"
-HOMEPAGE="http://libcdaudio.sourceforge.net/;
+HOMEPAGE="https://libcdaudio.sourceforge.net/;
 SRC_URI="mirror://sourceforge/libcdaudio/${P}.tar.gz"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86"
-IUSE=""
 
 PATCHES=(
"${FILESDIR}"/${PN}-0.99-CAN-2005-0706.patch



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

2023-07-07 Thread Miroslav Šulc
commit: 0c92eac8bc0ce632c729b6ca3e25462bcf25a944
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:42:30 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c92eac8

media-libs/libifp: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libifp/libifp-1.0.0.2-r1.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/libifp/libifp-1.0.0.2-r1.ebuild 
b/media-libs/libifp/libifp-1.0.0.2-r1.ebuild
index c9bb45c9f64b..a89fd2a8f927 100644
--- a/media-libs/libifp/libifp-1.0.0.2-r1.ebuild
+++ b/media-libs/libifp/libifp-1.0.0.2-r1.ebuild
@@ -1,10 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-DESCRIPTION="A general-purpose library for iRiver's iFP portable audio players"
-HOMEPAGE="http://ifp-driver.sourceforge.net/libifp/;
+DESCRIPTION="General-purpose library for iRiver's iFP portable audio players"
+HOMEPAGE="https://ifp-driver.sourceforge.net/libifp/;
 SRC_URI="mirror://sourceforge/ifp-driver/${P}.tar.gz"
 
 LICENSE="GPL-2"



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

2023-07-07 Thread Miroslav Šulc
commit: 549684f8c4cdd26b138b3dba9c8f85565d8ebca0
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:39:36 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=549684f8

media-libs/libcddb: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libcddb/libcddb-1.3.2-r1.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/media-libs/libcddb/libcddb-1.3.2-r1.ebuild 
b/media-libs/libcddb/libcddb-1.3.2-r1.ebuild
index 4d8db92b8287..a37ce984594a 100644
--- a/media-libs/libcddb/libcddb-1.3.2-r1.ebuild
+++ b/media-libs/libcddb/libcddb-1.3.2-r1.ebuild
@@ -1,15 +1,15 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 inherit autotools multilib-minimal
 
-DESCRIPTION="A library for accessing a CDDB server"
-HOMEPAGE="http://libcddb.sourceforge.net/;
+DESCRIPTION="Library for accessing a CDDB server"
+HOMEPAGE="https://libcddb.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
-LICENSE="LGPL-2"
+LICENSE="LGPL-2+"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE="doc static-libs"



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

2023-07-07 Thread Miroslav Šulc
commit: d39006659aca55a2d5672840d4a7f1e44558b360
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:41:13 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3900665

media-libs/libclastfm: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libclastfm/libclastfm-0.5.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/media-libs/libclastfm/libclastfm-0.5.ebuild 
b/media-libs/libclastfm/libclastfm-0.5.ebuild
index ec203eb68942..711cfbfec9e2 100644
--- a/media-libs/libclastfm/libclastfm-0.5.ebuild
+++ b/media-libs/libclastfm/libclastfm-0.5.ebuild
@@ -1,13 +1,13 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 DESCRIPTION="C API library to the last.fm web service (unofficial)"
-HOMEPAGE="http://liblastfm.sourceforge.net/;
+HOMEPAGE="https://liblastfm.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN/c}/${P}.tar.gz"
 
-LICENSE="GPL-3"
+LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="amd64 x86"
 IUSE="static-libs"



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

2023-07-07 Thread Miroslav Šulc
commit: 0dfd251e39550932e7b9bc02ac8ee456888f5fce
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 09:05:57 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dfd251e

media-libs/libmad: use HTTPS, fix LICENSE, fix UnusedInherits

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libmad/libmad-0.15.1b-r10.ebuild | 11 ---
 1 file changed, 4 insertions(+), 7 deletions(-)

diff --git a/media-libs/libmad/libmad-0.15.1b-r10.ebuild 
b/media-libs/libmad/libmad-0.15.1b-r10.ebuild
index d597490dcf95..2b61ff7cf8a5 100644
--- a/media-libs/libmad/libmad-0.15.1b-r10.ebuild
+++ b/media-libs/libmad/libmad-0.15.1b-r10.ebuild
@@ -1,22 +1,19 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-inherit autotools flag-o-matic multilib-minimal toolchain-funcs
+inherit autotools multilib-minimal toolchain-funcs
 
 DESCRIPTION="\"M\"peg \"A\"udio \"D\"ecoder library"
-HOMEPAGE="http://mad.sourceforge.net;
+HOMEPAGE="https://mad.sourceforge.net;
 SRC_URI="mirror://sourceforge/mad/${P}.tar.gz"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="debug static-libs"
 
-DEPEND=""
-RDEPEND=""
-
 DOCS=( CHANGES CREDITS README TODO VERSION )
 
 MULTILIB_WRAPPED_HEADERS=(



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

2023-07-07 Thread Miroslav Šulc
commit: b905f0126351683174914add655aa38296273099
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:31:03 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b905f012

media-libs/aften: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/aften/aften-0.0.8-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/aften/aften-0.0.8-r2.ebuild 
b/media-libs/aften/aften-0.0.8-r2.ebuild
index ab7fe29f0a45..e643b945fe77 100644
--- a/media-libs/aften/aften-0.0.8-r2.ebuild
+++ b/media-libs/aften/aften-0.0.8-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
 inherit cmake
 
 DESCRIPTION="A/52 (AC-3) audio encoder"
-HOMEPAGE="http://aften.sourceforge.net/;
+HOMEPAGE="https://aften.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN}/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1 BSD"



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

2023-07-07 Thread Miroslav Šulc
commit: 852bcccec9bea9a28771c23c60fea169f8cef57b
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:35:50 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=852bccce

media-libs/id3lib: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/id3lib/id3lib-3.8.3-r10.ebuild | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/media-libs/id3lib/id3lib-3.8.3-r10.ebuild 
b/media-libs/id3lib/id3lib-3.8.3-r10.ebuild
index 4dd16cd8c21a..068e7a60f0a6 100644
--- a/media-libs/id3lib/id3lib-3.8.3-r10.ebuild
+++ b/media-libs/id3lib/id3lib-3.8.3-r10.ebuild
@@ -6,10 +6,11 @@ EAPI=8
 inherit autotools
 
 DESCRIPTION="Id3 library for C/C++"
-HOMEPAGE="http://id3lib.sourceforge.net/;
+HOMEPAGE="https://id3lib.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN}/${P/_}.tar.gz"
+S="${WORKDIR}/${P/_}"
 
-LICENSE="LGPL-2.1"
+LICENSE="LGPL-2.1+"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux"
 IUSE="doc static-libs"
@@ -21,8 +22,6 @@ BDEPEND="doc? ( app-doc/doxygen )"
 
 DOCS=( AUTHORS ChangeLog HISTORY README THANKS TODO )
 
-S="${WORKDIR}"/${P/_}
-
 PATCHES=(
"${FILESDIR}"/${P}-zlib.patch
"${FILESDIR}"/${P}-test_io.patch



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

2023-07-07 Thread Miroslav Šulc
commit: 007ddf62a9d4c9ef7da8eab3b7bb61e10dc7022c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:32:39 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=007ddf62

media-libs/bio2jack: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/bio2jack/bio2jack-0.9-r2.ebuild | 11 +--
 1 file changed, 5 insertions(+), 6 deletions(-)

diff --git a/media-libs/bio2jack/bio2jack-0.9-r2.ebuild 
b/media-libs/bio2jack/bio2jack-0.9-r2.ebuild
index 77de2718000d..d14f9030429a 100644
--- a/media-libs/bio2jack/bio2jack-0.9-r2.ebuild
+++ b/media-libs/bio2jack/bio2jack-0.9-r2.ebuild
@@ -1,15 +1,16 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 inherit autotools
 
-DESCRIPTION="A library for porting blocked I/O OSS/ALSA audio applications to 
JACK"
-HOMEPAGE="http://bio2jack.sourceforge.net/;
+DESCRIPTION="Library for porting blocked I/O OSS/ALSA audio applications to 
JACK"
+HOMEPAGE="https://bio2jack.sourceforge.net/;
 SRC_URI="mirror://sourceforge/bio2jack/${P}.tar.gz"
+S="${WORKDIR}/${PN}"
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~ia64 ppc ppc64 ~riscv sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 IUSE="static-libs"
@@ -22,8 +23,6 @@ DEPEND="
virtual/jack"
 RDEPEND="${DEPEND}"
 
-S=${WORKDIR}/${PN}
-
 src_prepare() {
default
 



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

2023-07-07 Thread Miroslav Šulc
commit: 800145eab46abf96ea1265f7816bce86e7640745
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:30:17 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=800145ea

media-libs/a52dec: use HTTPS, fix LICENSE

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/a52dec/a52dec-0.7.4-r8.ebuild | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/media-libs/a52dec/a52dec-0.7.4-r8.ebuild 
b/media-libs/a52dec/a52dec-0.7.4-r8.ebuild
index fe92b504f184..4afd045dbc8d 100644
--- a/media-libs/a52dec/a52dec-0.7.4-r8.ebuild
+++ b/media-libs/a52dec/a52dec-0.7.4-r8.ebuild
@@ -1,15 +1,15 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
 inherit autotools flag-o-matic multilib-minimal
 
-DESCRIPTION="library for decoding ATSC A/52 streams used in DVD"
-HOMEPAGE="http://liba52.sourceforge.net/;
-SRC_URI="http://liba52.sourceforge.net/files/${P}.tar.gz;
+DESCRIPTION="Library for decoding ATSC A/52 streams used in DVD"
+HOMEPAGE="https://liba52.sourceforge.net/;
+SRC_URI="https://liba52.sourceforge.net/files/${P}.tar.gz;
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="djbfft oss"



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

2023-07-07 Thread Miroslav Šulc
commit: ca258f3beec21fda6596375443648eb75daa1d4b
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Thu Jul  6 08:37:05 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Fri Jul  7 07:31:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca258f3b

media-libs/libbs2b: use HTTPS

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-libs/libbs2b/libbs2b-3.1.0-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libbs2b/libbs2b-3.1.0-r2.ebuild 
b/media-libs/libbs2b/libbs2b-3.1.0-r2.ebuild
index f90ef90c42a1..65000edaf2c9 100644
--- a/media-libs/libbs2b/libbs2b-3.1.0-r2.ebuild
+++ b/media-libs/libbs2b/libbs2b-3.1.0-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -6,7 +6,7 @@ EAPI=7
 inherit autotools multilib-minimal
 
 DESCRIPTION="Bauer stereophonic-to-binaural DSP library"
-HOMEPAGE="http://bs2b.sourceforge.net/;
+HOMEPAGE="https://bs2b.sourceforge.net/;
 SRC_URI="mirror://sourceforge/bs2b/${P}.tar.bz2"
 
 LICENSE="MIT"



[gentoo-commits] repo/gentoo:master commit in: app-emacs/eselect-mode/, app-admin/eselect/

2023-07-07 Thread Ulrich Müller
commit: 1812188fca7722312d32080989a15f7d6b921fde
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Jul  7 06:25:52 2023 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Jul  7 06:29:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1812188f

app-admin/eselect, app-emacs/eselect-mode: Add a comment

eselect-mode is a separate package only because we don't want eselect
to have a use-dependency on Emacs. Nevertheless, the two packages
should be bumped and stabilized together.

Signed-off-by: Ulrich Müller  gentoo.org>

 app-admin/eselect/eselect-1.4.25.ebuild   | 5 +
 app-emacs/eselect-mode/eselect-mode-1.4.25.ebuild | 5 +
 2 files changed, 10 insertions(+)

diff --git a/app-admin/eselect/eselect-1.4.25.ebuild 
b/app-admin/eselect/eselect-1.4.25.ebuild
index f34db73d0445..67427d8a317a 100644
--- a/app-admin/eselect/eselect-1.4.25.ebuild
+++ b/app-admin/eselect/eselect-1.4.25.ebuild
@@ -3,6 +3,11 @@
 
 EAPI=7
 
+# Packages sharing a common release tarball:
+# app-admin/eselect
+# app-emacs/eselect-mode
+# Please bump and mark them stable together!
+
 inherit bash-completion-r1
 
 DESCRIPTION="Gentoo's multi-purpose configuration and management tool"

diff --git a/app-emacs/eselect-mode/eselect-mode-1.4.25.ebuild 
b/app-emacs/eselect-mode/eselect-mode-1.4.25.ebuild
index 86e72007688c..fecdf0f40955 100644
--- a/app-emacs/eselect-mode/eselect-mode-1.4.25.ebuild
+++ b/app-emacs/eselect-mode/eselect-mode-1.4.25.ebuild
@@ -3,6 +3,11 @@
 
 EAPI=7
 
+# Packages sharing a common release tarball:
+# app-admin/eselect
+# app-emacs/eselect-mode
+# Please bump and mark them stable together!
+
 inherit elisp
 
 MY_P="eselect-${PV}"



[gentoo-commits] repo/proj/guru:dev commit in: dev-libs/lsbcrypt/files/, dev-libs/lsbcrypt/

2023-07-07 Thread Okamura Kazuya
commit: 7c74790b3ae12967717d328d67f65c3043b30f17
Author: Okamura Kazuya  danceylove  net>
AuthorDate: Fri Jul  7 06:18:33 2023 +
Commit: Okamura Kazuya  danceylove  net>
CommitDate: Fri Jul  7 06:18:33 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=7c74790b

dev-libs/lsbcrypt: Remove variables that are defined independently in the 
makefile

I am attempting to fix the following bugs.
https://bugs.gentoo.org/909726

Signed-off-by: Okamura Kazuya  danceylove.net>

 .../files/lsbcrypt-fix-flags-directly.patch| 14 ++
 dev-libs/lsbcrypt/lsbcrypt-1.0.0-r2.ebuild | 30 ++
 2 files changed, 44 insertions(+)

diff --git a/dev-libs/lsbcrypt/files/lsbcrypt-fix-flags-directly.patch 
b/dev-libs/lsbcrypt/files/lsbcrypt-fix-flags-directly.patch
new file mode 100644
index 0..75c4a083e
--- /dev/null
+++ b/dev-libs/lsbcrypt/files/lsbcrypt-fix-flags-directly.patch
@@ -0,0 +1,14 @@
+I am attempting to fix the following bugs.
+https://bugs.gentoo.org/909726
+diff --git a/Makefile b/Makefile
+index 03ebfa5..bed7d39 100644
+--- a/Makefile
 b/Makefile
+@@ -1,5 +1,5 @@
+-CC = gcc
+-CFLAGS = $(shell grep '^CFLAGS = ' crypt_blowfish/Makefile | cut -d= -f2-)
++#CC = gcc
++#CFLAGS = $(shell grep '^CFLAGS = ' crypt_blowfish/Makefile | cut -d= -f2-)
+ .PHONY: crypt_blowfish
+ 
+ all: bcrypt.a

diff --git a/dev-libs/lsbcrypt/lsbcrypt-1.0.0-r2.ebuild 
b/dev-libs/lsbcrypt/lsbcrypt-1.0.0-r2.ebuild
new file mode 100644
index 0..36456f88d
--- /dev/null
+++ b/dev-libs/lsbcrypt/lsbcrypt-1.0.0-r2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+COMMIT="55ff64349dec3012cfbbb1c4f92d4dbd46920213"
+DESCRIPTION="libcrypt wrapper for LiteSpeedTech"
+HOMEPAGE="https://github.com/litespeedtech/libbcrypt/;
+SRC_URI="https://github.com/litespeedtech/libbcrypt/archive/${COMMIT}.tar.gz 
-> ${P}.gh.tar.gz"
+LICENSE="CC0-1.0 public-domain"
+SLOT="0"
+KEYWORDS="~amd64"
+
+S="${WORKDIR}/libbcrypt-${COMMIT}"
+
+PATCHES=(
+   "${FILESDIR}"/${PV}-fix-tests.patch
+   "${FILESDIR}"/${PV}-fix-flags-directly.patch
+)
+
+src_test() {
+   default
+   ./bcrypt_test || die "Tests failed!"
+}
+
+src_install() {
+   newlib.a bcrypt.a libbcrypt.a
+   newheader bcrypt.h libbcrypt.h
+   einstalldocs
+}



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

2023-07-07 Thread Ionen Wolkens
commit: 02014f9adf5d4cfbc33cb2810ec3e1ebc1d70d04
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Jul  7 06:01:53 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Fri Jul  7 06:19:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02014f9a

media-libs/libplacebo: add 6.292.0

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

 media-libs/libplacebo/Manifest  |  1 +
 media-libs/libplacebo/libplacebo-6.292.0.ebuild | 96 +
 2 files changed, 97 insertions(+)

diff --git a/media-libs/libplacebo/Manifest b/media-libs/libplacebo/Manifest
index 08494341626b..d97c529ac8a4 100644
--- a/media-libs/libplacebo/Manifest
+++ b/media-libs/libplacebo/Manifest
@@ -1,3 +1,4 @@
 DIST libplacebo-glad-2.0.4.tar.gz 599932 BLAKE2B 
788d2b70222fd09eea02515bdf3cbc147540631bf35fe39f12aa21fdbabf3d229f4234a430217dfaf3363934b8be12dd6a19871049a7b117deb8260ec69f8c67
 SHA512 
328d0dbe33e69f846d1c54226c6675694404f41e53c4762e6013c7bfe76b0700f0b28f4117a2018a09c9c23ccb6ad94d7b20882fefc2513941a4515686c9b9e7
 DIST libplacebo-v5.264.1.tar.gz 725394 BLAKE2B 
421de50ef5e2270e3ba32dd85d92d816a374257442b535face6cb8501d565652aae530b86a7d717c9352c6a82ca665ff7d91c2d9768365780cbbe4f48d1d3276
 SHA512 
305f43b71f078f4113def43c444df667dfbdd2a6a34d3b457b15da0b3499ca97ec9a8acbd151d58c8e1a593ace3d8aa61067b32556c6bae451efbb217d60a731
 DIST libplacebo-v6.287.0-rc1.tar.bz2 615586 BLAKE2B 
0c3cea0345cd535dcf3220789748840769c42842cb3d86ac0989e6f4ba03002be7bdc0b50ceb24e3b94065582a48cda128d198e6a569cd6d3c7be36e4f81f1f3
 SHA512 
9c0bc369f2885415f78c0d1b36a758e56acdf3f7ef34c41bd8153f8f643d4e29ff41ba1ca6fd10b39d1daa96dff9d22dd9affc37d599825f9f9b01480530294d
+DIST libplacebo-v6.292.0.tar.bz2 623292 BLAKE2B 
6ae5c0aaadf88e3e4ba2e4a95d0ac939d7a64ae65bef0c6fd3dbc294e9eb953d3114ab718e1b58476971bf24ec2632e8176bc4346ff59bfe7b24537c833a4f21
 SHA512 
30a7990e9aee5f18e0517a281017fb69be521390972bdb38c0db09ef83144673b1f59dd4c1f42c3f4ee298544ba032a74c5e672ef028fbbf20e178a059270864

diff --git a/media-libs/libplacebo/libplacebo-6.292.0.ebuild 
b/media-libs/libplacebo/libplacebo-6.292.0.ebuild
new file mode 100644
index ..98e20244f513
--- /dev/null
+++ b/media-libs/libplacebo/libplacebo-6.292.0.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit meson-multilib python-any-r1
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git;
+   inherit git-r3
+else
+   GLAD_PV=2.0.4
+   SRC_URI="
+   
https://code.videolan.org/videolan/libplacebo/-/archive/v${PV}/libplacebo-v${PV}.tar.bz2
+   opengl? ( 
https://github.com/Dav1dde/glad/archive/refs/tags/v${GLAD_PV}.tar.gz -> 
${PN}-glad-${GLAD_PV}.tar.gz )"
+   S="${WORKDIR}/${PN}-v${PV}"
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Reusable library for GPU-accelerated image processing primitives"
+HOMEPAGE="https://code.videolan.org/videolan/libplacebo/;
+
+LICENSE="LGPL-2.1+ opengl? ( MIT )"
+SLOT="0/$(ver_cut 2 ${PV}.)" # soname
+IUSE="glslang lcms llvm-libunwind +opengl +shaderc test unwind +vulkan"
+RESTRICT="!test? ( test )"
+REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )"
+
+# libglvnd is used with dlopen() through glad (inc. egl/gles)
+RDEPEND="
+   lcms? ( media-libs/lcms:2[${MULTILIB_USEDEP}] )
+   opengl? ( media-libs/libglvnd[${MULTILIB_USEDEP}] )
+   shaderc? ( media-libs/shaderc[${MULTILIB_USEDEP}] )
+   !shaderc? ( glslang? ( dev-util/glslang:=[${MULTILIB_USEDEP}] ) )
+   unwind? (
+   llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] )
+   !llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] )
+   )
+   vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )"
+# vulkan-headers is required even with USE=-vulkan (bug #882065)
+DEPEND="
+   ${RDEPEND}
+   dev-util/vulkan-headers"
+BDEPEND="
+   $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]')
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-5.229.1-llvm-libunwind.patch
+   "${FILESDIR}"/${PN}-5.229.1-python-executable.patch
+)
+
+python_check_deps() {
+   python_has_version "dev-python/jinja[${PYTHON_USEDEP}]"
+}
+
+src_unpack() {
+   if [[ ${PV} ==  ]]; then
+   local EGIT_SUBMODULES=( $(usev opengl 3rdparty/glad) )
+   git-r3_src_unpack
+   else
+   default
+   if use opengl; then
+   rmdir "${S}"/3rdparty/glad || die
+   mv glad-${GLAD_PV} "${S}"/3rdparty/glad || die
+   fi
+   fi
+}
+
+src_prepare() {
+   default
+
+   # typically auto-skipped, but may assume usable opengl/vulkan then hang
+   sed -i "/tests += 'opengl_surfaceless.c'/d" src/opengl/meson.build || 
die
+   sed -i "/tests += 

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

2023-07-07 Thread Ionen Wolkens
commit: 2ab27e177ac0e56d39be150f05e90e8486470063
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Fri Jul  7 06:04:08 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Fri Jul  7 06:19:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ab27e17

media-libs/libplacebo: drop 6.287.0_rc1

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

 media-libs/libplacebo/Manifest |  1 -
 .../libplacebo/libplacebo-6.287.0_rc1.ebuild   | 98 --
 2 files changed, 99 deletions(-)

diff --git a/media-libs/libplacebo/Manifest b/media-libs/libplacebo/Manifest
index d97c529ac8a4..5b59db2d7c05 100644
--- a/media-libs/libplacebo/Manifest
+++ b/media-libs/libplacebo/Manifest
@@ -1,4 +1,3 @@
 DIST libplacebo-glad-2.0.4.tar.gz 599932 BLAKE2B 
788d2b70222fd09eea02515bdf3cbc147540631bf35fe39f12aa21fdbabf3d229f4234a430217dfaf3363934b8be12dd6a19871049a7b117deb8260ec69f8c67
 SHA512 
328d0dbe33e69f846d1c54226c6675694404f41e53c4762e6013c7bfe76b0700f0b28f4117a2018a09c9c23ccb6ad94d7b20882fefc2513941a4515686c9b9e7
 DIST libplacebo-v5.264.1.tar.gz 725394 BLAKE2B 
421de50ef5e2270e3ba32dd85d92d816a374257442b535face6cb8501d565652aae530b86a7d717c9352c6a82ca665ff7d91c2d9768365780cbbe4f48d1d3276
 SHA512 
305f43b71f078f4113def43c444df667dfbdd2a6a34d3b457b15da0b3499ca97ec9a8acbd151d58c8e1a593ace3d8aa61067b32556c6bae451efbb217d60a731
-DIST libplacebo-v6.287.0-rc1.tar.bz2 615586 BLAKE2B 
0c3cea0345cd535dcf3220789748840769c42842cb3d86ac0989e6f4ba03002be7bdc0b50ceb24e3b94065582a48cda128d198e6a569cd6d3c7be36e4f81f1f3
 SHA512 
9c0bc369f2885415f78c0d1b36a758e56acdf3f7ef34c41bd8153f8f643d4e29ff41ba1ca6fd10b39d1daa96dff9d22dd9affc37d599825f9f9b01480530294d
 DIST libplacebo-v6.292.0.tar.bz2 623292 BLAKE2B 
6ae5c0aaadf88e3e4ba2e4a95d0ac939d7a64ae65bef0c6fd3dbc294e9eb953d3114ab718e1b58476971bf24ec2632e8176bc4346ff59bfe7b24537c833a4f21
 SHA512 
30a7990e9aee5f18e0517a281017fb69be521390972bdb38c0db09ef83144673b1f59dd4c1f42c3f4ee298544ba032a74c5e672ef028fbbf20e178a059270864

diff --git a/media-libs/libplacebo/libplacebo-6.287.0_rc1.ebuild 
b/media-libs/libplacebo/libplacebo-6.287.0_rc1.ebuild
deleted file mode 100644
index 65e9c82a4358..
--- a/media-libs/libplacebo/libplacebo-6.287.0_rc1.ebuild
+++ /dev/null
@@ -1,98 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-inherit meson-multilib python-any-r1
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://code.videolan.org/videolan/libplacebo.git;
-   inherit git-r3
-else
-   MY_PV=${PV/_/-}
-   GLAD_PV=2.0.4
-   SRC_URI="
-   
https://code.videolan.org/videolan/libplacebo/-/archive/v${MY_PV}/libplacebo-v${MY_PV}.tar.bz2
-   opengl? ( 
https://github.com/Dav1dde/glad/archive/refs/tags/v${GLAD_PV}.tar.gz -> 
${PN}-glad-${GLAD_PV}.tar.gz )"
-   S="${WORKDIR}/${PN}-v${MY_PV}"
-   # unkeyworded _rc for use with mpv- if not using libplacebo-
-   #KEYWORDS="~amd64 ~ppc64 ~x86"
-fi
-
-DESCRIPTION="Reusable library for GPU-accelerated image processing primitives"
-HOMEPAGE="https://code.videolan.org/videolan/libplacebo/;
-
-LICENSE="LGPL-2.1+ opengl? ( MIT )"
-SLOT="0/$(ver_cut 2 ${PV}.)" # soname
-IUSE="glslang lcms llvm-libunwind +opengl +shaderc test unwind +vulkan"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="vulkan? ( || ( glslang shaderc ) )"
-
-# libglvnd is used with dlopen() through glad (inc. egl/gles)
-RDEPEND="
-   lcms? ( media-libs/lcms:2[${MULTILIB_USEDEP}] )
-   opengl? ( media-libs/libglvnd[${MULTILIB_USEDEP}] )
-   shaderc? ( media-libs/shaderc[${MULTILIB_USEDEP}] )
-   !shaderc? ( glslang? ( dev-util/glslang:=[${MULTILIB_USEDEP}] ) )
-   unwind? (
-   llvm-libunwind? ( sys-libs/llvm-libunwind[${MULTILIB_USEDEP}] )
-   !llvm-libunwind? ( sys-libs/libunwind:=[${MULTILIB_USEDEP}] )
-   )
-   vulkan? ( media-libs/vulkan-loader[${MULTILIB_USEDEP}] )"
-# vulkan-headers is required even with USE=-vulkan (bug #882065)
-DEPEND="
-   ${RDEPEND}
-   dev-util/vulkan-headers"
-BDEPEND="
-   $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]')
-   virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-5.229.1-llvm-libunwind.patch
-   "${FILESDIR}"/${PN}-5.229.1-python-executable.patch
-)
-
-python_check_deps() {
-   python_has_version "dev-python/jinja[${PYTHON_USEDEP}]"
-}
-
-src_unpack() {
-   if [[ ${PV} ==  ]]; then
-   local EGIT_SUBMODULES=( $(usev opengl 3rdparty/glad) )
-   git-r3_src_unpack
-   else
-   default
-   if use opengl; then
-   rmdir "${S}"/3rdparty/glad || die
-   mv glad-${GLAD_PV} "${S}"/3rdparty/glad || die
-   fi
-   fi
-}
-
-src_prepare() {
-   default
-
-   # typically auto-skipped, but may assume usable 

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

2023-07-07 Thread Patrick McLean
commit: a2fd0be235a874bd58de073559681842143f402d
Author: Patrick McLean  gentoo  org>
AuthorDate: Fri Jul  7 06:07:12 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Jul  7 06:07:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2fd0be2

dev-libs/simdjson: drop 3.1.1-r1, 3.1.7-r1

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

 dev-libs/simdjson/Manifest |   2 -
 dev-libs/simdjson/simdjson-3.1.1-r1.ebuild |  87 
 dev-libs/simdjson/simdjson-3.1.7-r1.ebuild | 102 -
 3 files changed, 191 deletions(-)

diff --git a/dev-libs/simdjson/Manifest b/dev-libs/simdjson/Manifest
index 7e39c9f4ba68..fe346c8f9bf6 100644
--- a/dev-libs/simdjson/Manifest
+++ b/dev-libs/simdjson/Manifest
@@ -1,5 +1,3 @@
-DIST simdjson-3.1.1.gh.tar.gz 1633897 BLAKE2B 
a2bc394bfbf7916bc7743d3891b84eb3743cce2998242ecb427a7a3357986ea90c6ee546c3048aeb5629c9475f9ce862038f349ced51f684d199441632cca7ef
 SHA512 
fb7d0963236c8fa692bf6c4ed2a66da5b29632c02e357894e0d5c604467e82f9a56cc7e8229769d9e401ed5bf5dfb25ae46f40fbe68605cedf58d763d03af93f
-DIST simdjson-3.1.7.gh.tar.gz 1648370 BLAKE2B 
46ca65569ba4fcf80bac1e1670bd0dea172c5d157f2ed05135c64c620bc7361f894d7227513545e0112643fd75d93bac02b3d0488ea0efe0401dbf5946d332b2
 SHA512 
6b54723720aa8816e3bbd5cfe8dc71b087ac1d20d8982601563b70146bd63629a9f74cbc460a78ab2c83c689991586ef20a268fc67946b57dcc3f5486bc5
 DIST simdjson-3.2.0.gh.tar.gz 1653237 BLAKE2B 
b1745b2a96d9ff9f7187329191007e63a5f0c7051fb85a97212cf06076740ca01be035858bbb66805d10ba49ff90d05961a8b77750fc0d789e8dfe5865937f0b
 SHA512 
02723d05fe88cfc69c1ec3eef92ae9e7da169a99645992829d4e40a00edecb98e21593dc9e04aeb2959cbcdbb8f40bb464daef9eb26cf3bd344c39271f6add2e
 DIST simdjson-3.2.1.gh.tar.gz 1655680 BLAKE2B 
5d65c624fb89bf1b50a0287da2ef184d732b5eefa6e76bf39dc7bdbd6fdd6882cae4ddbc6e8c0f0fdd762c5e396828aa32fe99b1aba78e820f7419f3b5fa258e
 SHA512 
eeac785c7868362f51f3fb87cb4e0cfc77b2c4e3767afbe1d22df87f16a3cb4af1dc27a1df5ba3c139cb0a3053bc30afcdcb31515ce4e757c309ed2c0f3f507e
 DIST simdjson-data-a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz 6635706 
BLAKE2B 
563376147f18d590a176a5a0398365db1a3e677b773c018f335efa7fff05ac22ac5dc37613792082a32e6c9b91a773a590f7dfd15efa5ba660f9142b128b28a7
 SHA512 
168198404b11b8c76ff4f53645d7b5a88a5c72b4a5b6646b4410859ec3416ae9b37fc59f7d2f014ccc785615ea5c31dc00b145dbb1a7acb701b94029dd4ea1e1

diff --git a/dev-libs/simdjson/simdjson-3.1.1-r1.ebuild 
b/dev-libs/simdjson/simdjson-3.1.1-r1.ebuild
deleted file mode 100644
index 21e68efff590..
--- a/dev-libs/simdjson/simdjson-3.1.1-r1.ebuild
+++ /dev/null
@@ -1,87 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs cmake
-
-DATA_HASH="a5b13babe65c1bba7186b41b43d4cbdc20a5c470"
-DESCRIPTION="SIMD accelerated C++ JSON library"
-HOMEPAGE="
-   https://simdjson.org/
-   https://github.com/simdjson/simdjson
-"
-SRC_URI="
-   https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
-   test? ( https://github.com/${PN}/${PN}-data/archive/${DATA_HASH}.tar.gz 
-> ${PN}-data-${DATA_HASH}.tar.gz )
-"
-
-LICENSE="Apache-2.0 Boost-1.0 BSD MIT"
-SLOT="0/15"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE="test tools"
-
-BDEPEND="
-   sys-apps/file
-   sys-apps/grep
-   virtual/pkgconfig
-"
-DEPEND="
-   tools? ( https://simdjson.org/
-   https://github.com/simdjson/simdjson
-"
-SRC_URI="
-   https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
-   test? ( https://github.com/${PN}/${PN}-data/archive/${DATA_HASH}.tar.gz 
-> ${PN}-data-${DATA_HASH}.tar.gz )
-"
-
-LICENSE="Apache-2.0 Boost-1.0 BSD MIT"
-SLOT="0/15"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE="+all-impls test tools"
-
-BDEPEND="
-   sys-apps/file
-   sys-apps/grep
-   virtual/pkgconfig
-"
-DEPEND="
-   tools? ( 

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

2023-07-07 Thread Patrick McLean
commit: 1ae522a9b2ab4ec329056865111bee2e5ac163f9
Author: Patrick McLean  gentoo  org>
AuthorDate: Fri Jul  7 06:05:42 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Jul  7 06:06:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ae522a9

dev-libs/simdjson: stabilize 3.2.0 for amd64

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

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

diff --git a/dev-libs/simdjson/simdjson-3.2.0.ebuild 
b/dev-libs/simdjson/simdjson-3.2.0.ebuild
index 33a873755541..c12b3fcbb648 100644
--- a/dev-libs/simdjson/simdjson-3.2.0.ebuild
+++ b/dev-libs/simdjson/simdjson-3.2.0.ebuild
@@ -18,7 +18,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0 Boost-1.0 BSD MIT"
 SLOT="0/16"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~x86"
 IUSE="+all-impls test tools"
 
 BDEPEND="



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

2023-07-07 Thread Patrick McLean
commit: 8ff5cde4de151eee3f76cde405fa4a27b43f854e
Author: Patrick McLean  gentoo  org>
AuthorDate: Fri Jul  7 06:05:06 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Fri Jul  7 06:06:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ff5cde4

dev-libs/simdjson: add 3.2.1

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

 dev-libs/simdjson/Manifest  |   1 +
 dev-libs/simdjson/simdjson-3.2.1.ebuild | 102 
 2 files changed, 103 insertions(+)

diff --git a/dev-libs/simdjson/Manifest b/dev-libs/simdjson/Manifest
index f9dbbcc73be1..7e39c9f4ba68 100644
--- a/dev-libs/simdjson/Manifest
+++ b/dev-libs/simdjson/Manifest
@@ -1,4 +1,5 @@
 DIST simdjson-3.1.1.gh.tar.gz 1633897 BLAKE2B 
a2bc394bfbf7916bc7743d3891b84eb3743cce2998242ecb427a7a3357986ea90c6ee546c3048aeb5629c9475f9ce862038f349ced51f684d199441632cca7ef
 SHA512 
fb7d0963236c8fa692bf6c4ed2a66da5b29632c02e357894e0d5c604467e82f9a56cc7e8229769d9e401ed5bf5dfb25ae46f40fbe68605cedf58d763d03af93f
 DIST simdjson-3.1.7.gh.tar.gz 1648370 BLAKE2B 
46ca65569ba4fcf80bac1e1670bd0dea172c5d157f2ed05135c64c620bc7361f894d7227513545e0112643fd75d93bac02b3d0488ea0efe0401dbf5946d332b2
 SHA512 
6b54723720aa8816e3bbd5cfe8dc71b087ac1d20d8982601563b70146bd63629a9f74cbc460a78ab2c83c689991586ef20a268fc67946b57dcc3f5486bc5
 DIST simdjson-3.2.0.gh.tar.gz 1653237 BLAKE2B 
b1745b2a96d9ff9f7187329191007e63a5f0c7051fb85a97212cf06076740ca01be035858bbb66805d10ba49ff90d05961a8b77750fc0d789e8dfe5865937f0b
 SHA512 
02723d05fe88cfc69c1ec3eef92ae9e7da169a99645992829d4e40a00edecb98e21593dc9e04aeb2959cbcdbb8f40bb464daef9eb26cf3bd344c39271f6add2e
+DIST simdjson-3.2.1.gh.tar.gz 1655680 BLAKE2B 
5d65c624fb89bf1b50a0287da2ef184d732b5eefa6e76bf39dc7bdbd6fdd6882cae4ddbc6e8c0f0fdd762c5e396828aa32fe99b1aba78e820f7419f3b5fa258e
 SHA512 
eeac785c7868362f51f3fb87cb4e0cfc77b2c4e3767afbe1d22df87f16a3cb4af1dc27a1df5ba3c139cb0a3053bc30afcdcb31515ce4e757c309ed2c0f3f507e
 DIST simdjson-data-a5b13babe65c1bba7186b41b43d4cbdc20a5c470.tar.gz 6635706 
BLAKE2B 
563376147f18d590a176a5a0398365db1a3e677b773c018f335efa7fff05ac22ac5dc37613792082a32e6c9b91a773a590f7dfd15efa5ba660f9142b128b28a7
 SHA512 
168198404b11b8c76ff4f53645d7b5a88a5c72b4a5b6646b4410859ec3416ae9b37fc59f7d2f014ccc785615ea5c31dc00b145dbb1a7acb701b94029dd4ea1e1

diff --git a/dev-libs/simdjson/simdjson-3.2.1.ebuild 
b/dev-libs/simdjson/simdjson-3.2.1.ebuild
new file mode 100644
index ..33a873755541
--- /dev/null
+++ b/dev-libs/simdjson/simdjson-3.2.1.ebuild
@@ -0,0 +1,102 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs cmake
+
+DATA_HASH="a5b13babe65c1bba7186b41b43d4cbdc20a5c470"
+DESCRIPTION="SIMD accelerated C++ JSON library"
+HOMEPAGE="
+   https://simdjson.org/
+   https://github.com/simdjson/simdjson
+"
+SRC_URI="
+   https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.gh.tar.gz
+   test? ( https://github.com/${PN}/${PN}-data/archive/${DATA_HASH}.tar.gz 
-> ${PN}-data-${DATA_HASH}.tar.gz )
+"
+
+LICENSE="Apache-2.0 Boost-1.0 BSD MIT"
+SLOT="0/16"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+IUSE="+all-impls test tools"
+
+BDEPEND="
+   sys-apps/file
+   sys-apps/grep
+   virtual/pkgconfig
+"
+DEPEND="
+   tools? ( 

<    1   2   3