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

2022-08-11 Thread Arthur Zamarin
commit: b15ba3f37373ccab5b347b28725a8d3eed05056b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 05:16:17 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 05:16:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b15ba3f3

dev-python/boto3: add 1.24.50

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index b9f5c8877fdb..63b556618d9a 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,3 +3,4 @@ DIST boto3-1.24.41.gh.tar.gz 523844 BLAKE2B 
0cff30d6aba5e8eddb8f545737e22a146ef9
 DIST boto3-1.24.46.gh.tar.gz 524945 BLAKE2B 
f26235fb6993a9dd09fca562315c8ec7003f122fe63851eb7e9db47519b311557665998ba61dafbebcec825ff0b5ff55d329dfd41523b90a387bf590e6205eda
 SHA512 
922423beac0f7ecefb44c474ba8a928f3faec0adc945fd06958c9ffdad612bbb3d0be9dbb68249bcb6cd12446f858c208346808239f37153e6631defb74189bf
 DIST boto3-1.24.47.gh.tar.gz 525452 BLAKE2B 
2c191fb2de8d03f1529a8b9c7d9cb6c21ea86415108c79dc7c06071bbaa1d94c491ca05348877dc8352094c626c60a6a07e336af4241b7bde1154a4ebeac371d
 SHA512 
dd3807ef9ef28a5c6bff20b801a33ae9c150a6ff57bf4af645d8d6a5de05e8507289b9714190ca1e80400c637cd1761a2c568453d2d7af24e71ace93d3e5355a
 DIST boto3-1.24.49.gh.tar.gz 526085 BLAKE2B 
8372c65dbe92fee877a9aaafbbeda6ee6df672e431e40e139ad5cd852cc15d2d6add34de0b8c34bdec8d39947940891b949d1720425e1311dc5e45f724a89bf9
 SHA512 
baea5b18407052b9391d7e5ad3efd124d1448f7fa7e2f89bfc04bc417e395035aa9d2cfbbaed822328baf7f81dbed81bc3c66dcaa66598a97b53c8c08cf61366
+DIST boto3-1.24.50.gh.tar.gz 526501 BLAKE2B 
4ff77e527a990be760296471f6695eac1604926ae7814034c6ab840b6796d881a02a9936639dcd08daeb472fb27b964f7abd961f079f7961a4a624f7987fedb9
 SHA512 
9a2c3dcc7ea595c8d40872d59dae7459d401a9f930c542925829ceca6fc8b9846acf4cf6771056b983e2eea85060488d001f3a948ec3d2f7cdbd617c1f72

diff --git a/dev-python/boto3/boto3-1.24.50.ebuild 
b/dev-python/boto3/boto3-1.24.50.ebuild
new file mode 100644
index ..6edcc751d54b
--- /dev/null
+++ b/dev-python/boto3/boto3-1.24.50.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/boto3/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3;
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="
+   https://github.com/boto/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-08-11 Thread Arthur Zamarin
commit: 2b56e6bcb93f67b8985c95fc8c3fac9995fb1b2e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 05:17:55 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 05:17:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b56e6bc

dev-python/sphinx_lv2_theme: Stabilize 1.2.0 ALLARCHES, #864947

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.2.0.ebuild 
b/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.2.0.ebuild
index 797aa5604888..5933b15f4c96 100644
--- a/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.2.0.ebuild
+++ b/dev-python/sphinx_lv2_theme/sphinx_lv2_theme-1.2.0.ebuild
@@ -18,4 +18,4 @@ S="${WORKDIR}/${PN}-v${PV}"
 
 LICENSE="ISC"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"



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

2022-08-11 Thread Arthur Zamarin
commit: 63437b408b6e1991641649d7b137f26b21436976
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 05:03:46 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 05:03:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63437b40

dev-python/botocore: add 1.27.50

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index fb7bd9893ba8..0e93ed5b8b5e 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,3 +3,4 @@ DIST botocore-1.27.41.gh.tar.gz 9493802 BLAKE2B 
dff510a658e77fe7185a8d118228cd80
 DIST botocore-1.27.46.gh.tar.gz 9502831 BLAKE2B 
75b4ada461e43573c202efdf12201dad8af017ec85c82d0e7cf9ba1823dfd988d4432daef13891a9b8063003a37432a041847cedf46d4665305f486f498edd8c
 SHA512 
1b7719f2216ea170b8739811da2e11acf033919d826c138aa069b19250036b1b2f2cf276d71e464afc6fff63ed99333e6cc321e84139b55e02dea365aa71adc3
 DIST botocore-1.27.47.gh.tar.gz 9506174 BLAKE2B 
9fe05af1b1cf7df90c61e15c0ad8a701082a15d206830167f8fa2cfef79538b99928442a9e007eb8f92a5d20513eab096a84a97aac6d8bf0a9adcce3cb50cfb2
 SHA512 
043bba6ed1f5987dff759c67faaa9ecea16cdafc1d48fbcfecaca393530a298cf31d990bbade4db1d149acc49ffb0dcc2d1eab46b77a4e5eb59d3502c1066889
 DIST botocore-1.27.49.gh.tar.gz 9510394 BLAKE2B 
01a0f2dd80adadc3bc1acb3c26e3280171d11e0e1bd14535214aab7b01a5f43c7f707b6396a83a77edfc417c2047ca2d11b52550321acd88528c93a02250b079
 SHA512 
30f9891eed6277cadc3379f23214d08caab917114bceebd3400c64f8271d449609b9f3bc31c01976e705b565d136f8d1fab1f0bd3ee2870880703d6b40244f1f
+DIST botocore-1.27.50.gh.tar.gz 9519905 BLAKE2B 
2a44bcc5c66a4306884683f9da022750114568b7ac061c65444d329432e457b38d65db06c25526932f77eb43fe822c221a87cab643c3d3492e15325e1546a8ff
 SHA512 
f7d8445d6510599c2c5459bf1d93761698d5b0f527ac74e5bee20286d2769dc9a1998ae9577a740a9a7cf7611843dd90e193db144f8f788b13c017fd7a641957

diff --git a/dev-python/botocore/botocore-1.27.50.ebuild 
b/dev-python/botocore/botocore-1.27.50.ebuild
new file mode 100644
index ..6558cbe56a50
--- /dev/null
+++ b/dev-python/botocore/botocore-1.27.50.ebuild
@@ -0,0 +1,69 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/botocore/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="
+   https://github.com/boto/botocore/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   )
+
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2022-08-11 Thread Arthur Zamarin
commit: 074ee8cc1e54753852c3d026a1badf6b0cbd6584
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 04:49:09 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 04:49:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074ee8cc

app-misc/uptimed: Stabilize 0.4.6-r1 ppc64, #864943

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-misc/uptimed/uptimed-0.4.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/uptimed/uptimed-0.4.6-r1.ebuild 
b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
index 38106ecda9d6..b89c210f41ea 100644
--- a/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
+++ b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rpodgorny/uptimed/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND="
acct-group/uptimed



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

2022-08-11 Thread Arthur Zamarin
commit: 59878a9e8f4df5ca8b8edbdcf76bc6efe69dd61f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 04:49:10 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 04:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59878a9e

app-misc/uptimed: Stabilize 0.4.6-r1 arm64, #864943

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-misc/uptimed/uptimed-0.4.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/uptimed/uptimed-0.4.6-r1.ebuild 
b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
index b89c210f41ea..bcaeb7f53e69 100644
--- a/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
+++ b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rpodgorny/uptimed/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND="
acct-group/uptimed



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

2022-08-11 Thread Arthur Zamarin
commit: 62b2f1d1ea5e5c047e40b9facec1cff00ae2eadb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 04:49:07 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 04:49:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62b2f1d1

sys-process/btop: Stabilize 1.2.8 arm64, #864923

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-process/btop/btop-1.2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/btop/btop-1.2.8.ebuild 
b/sys-process/btop/btop-1.2.8.ebuild
index ce7607865462..a7debc776d4b 100644
--- a/sys-process/btop/btop-1.2.8.ebuild
+++ b/sys-process/btop/btop-1.2.8.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/aristocratos/btop/archive/refs/tags/v${PV}.tar.gz ->
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
+KEYWORDS="~amd64 arm64 ppc64 ~x86"
 
 src_prepare() {
default



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

2022-08-11 Thread Arthur Zamarin
commit: c79bf1a7c1fce0d6379de5383080689ad4a59589
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 04:49:06 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 04:49:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c79bf1a7

sys-process/btop: Stabilize 1.2.8 ppc64, #864923

Signed-off-by: Arthur Zamarin  gentoo.org>

 sys-process/btop/btop-1.2.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-process/btop/btop-1.2.8.ebuild 
b/sys-process/btop/btop-1.2.8.ebuild
index e1fc710c461d..ce7607865462 100644
--- a/sys-process/btop/btop-1.2.8.ebuild
+++ b/sys-process/btop/btop-1.2.8.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/aristocratos/btop/archive/refs/tags/v${PV}.tar.gz ->
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ppc64 ~x86"
 
 src_prepare() {
default



[gentoo-commits] repo/gentoo:master commit in: app-editors/hexedit/

2022-08-11 Thread Arthur Zamarin
commit: 7366df8e94de41f79933170d1116a4173cac29c0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 04:49:05 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 04:49:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7366df8e

app-editors/hexedit: Stabilize 1.6 arm64, #864913

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/hexedit/hexedit-1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/hexedit/hexedit-1.6.ebuild 
b/app-editors/hexedit/hexedit-1.6.ebuild
index b5bbd93722a3..ede474b497b0 100644
--- a/app-editors/hexedit/hexedit-1.6.ebuild
+++ b/app-editors/hexedit/hexedit-1.6.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 EGIT_REPO_URI="https://github.com/pixel/hexedit.git;
 else
 SRC_URI="https://github.com/pixel/hexedit/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2022-08-11 Thread Arthur Zamarin
commit: 9dc3b856617d7a4b2eced6782fa443502e179690
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Fri Aug 12 04:49:08 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Fri Aug 12 04:49:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dc3b856

app-misc/uptimed: Stabilize 0.4.6-r1 ppc, #864943

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-misc/uptimed/uptimed-0.4.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/uptimed/uptimed-0.4.6-r1.ebuild 
b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
index 5df4993bf443..38106ecda9d6 100644
--- a/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
+++ b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/rpodgorny/uptimed/archive/v${PV}.tar.gz -> ${P}.tar.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ~ppc64 ~riscv ~sparc ~x86"
 
 RDEPEND="
acct-group/uptimed



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

2022-08-11 Thread Matt Turner
commit: 8427bb396882672c41c7a5f4da28a093c40f0f75
Author: Matt Turner  gentoo  org>
AuthorDate: Fri Aug 12 01:49:16 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Fri Aug 12 02:49:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8427bb39

net-misc/networkmanager: Version bump to 1.38.4

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

 net-misc/networkmanager/Manifest   |   1 +
 .../networkmanager/networkmanager-1.38.4.ebuild| 417 +
 2 files changed, 418 insertions(+)

diff --git a/net-misc/networkmanager/Manifest b/net-misc/networkmanager/Manifest
index ded03dc6e506..78d75fca5e33 100644
--- a/net-misc/networkmanager/Manifest
+++ b/net-misc/networkmanager/Manifest
@@ -1 +1,2 @@
 DIST NetworkManager-1.38.2.tar.xz 5526780 BLAKE2B 
54e9746d3bf41146bb2bbc1ec273c4e2ca0a458e1a488eba7e5f17572e6e8db02ccfcd5b884e00162e505512b24a38de77447944d979fbe40d20d4af4c688a71
 SHA512 
0da3294bec659e6742c2b941eb6cb2464df1018e801148ac37cce0a0612c4468701add13659c18b1c08b51556c7e3e2782ad2353804fdf2a094e97d531da964b
+DIST NetworkManager-1.38.4.tar.xz 5446860 BLAKE2B 
c7b1e456a33ff136137cf0bd615fffdbc2d24b853bbe31dcab143c2748baf0a8f25fcc55af1811f4a179c5d85d86a09dcb2cdd3b374996b013be1acfea580316
 SHA512 
b36b35f1292df9888a5930cb28aca693ee566eec9216520adf3f5aeb9631d4d399bb0ea06641ab488f025584df438b69b2be01a3a7782e20267b60165f9159b6

diff --git a/net-misc/networkmanager/networkmanager-1.38.4.ebuild 
b/net-misc/networkmanager/networkmanager-1.38.4.ebuild
new file mode 100644
index ..d7793ea79d96
--- /dev/null
+++ b/net-misc/networkmanager/networkmanager-1.38.4.ebuild
@@ -0,0 +1,417 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+GNOME_ORG_MODULE="NetworkManager"
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit gnome.org linux-info meson-multilib python-any-r1 readme.gentoo-r1 
systemd toolchain-funcs udev vala virtualx
+
+DESCRIPTION="A set of co-operative tools that make networking simple and 
straightforward"
+HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0"
+
+IUSE="audit bluetooth +concheck connection-sharing debug dhclient dhcpcd 
elogind gnutls +gtk-doc +introspection iptables +iwd psl libedit lto +nss 
nftables +modemmanager ofono ovs policykit +ppp resolvconf selinux syslog 
systemd teamd test +tools vala +wext +wifi"
+RESTRICT="!test? ( test )"
+
+REQUIRED_USE="
+   bluetooth? ( modemmanager )
+   connection-sharing? ( || ( iptables nftables ) )
+   gtk-doc? ( introspection )
+   iwd? ( wifi )
+   vala? ( introspection )
+   wext? ( wifi )
+   ^^ ( gnutls nss )
+   ?? ( elogind systemd )
+   ?? ( dhclient dhcpcd )
+   ?? ( syslog systemd )
+"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+
+COMMON_DEPEND="
+   sys-apps/util-linux[${MULTILIB_USEDEP}]
+   elogind? ( >=sys-auth/elogind-219 )
+   >=virtual/libudev-175:=[${MULTILIB_USEDEP}]
+   sys-apps/dbus
+   net-libs/libndp
+   systemd? ( >=sys-apps/systemd-209:0= )
+   >=dev-libs/glib-2.40:2[${MULTILIB_USEDEP}]
+   introspection? ( >=dev-libs/gobject-introspection-0.10.3:= )
+   selinux? (
+   sec-policy/selinux-networkmanager
+   sys-libs/libselinux
+   )
+   audit? ( sys-process/audit )
+   teamd? (
+   >=dev-libs/jansson-2.7:=
+   >=net-misc/libteam-1.9
+   )
+   policykit? ( >=sys-auth/polkit-0.106 )
+   nss? ( >=dev-libs/nss-3.11:=[${MULTILIB_USEDEP}] )
+   gnutls? (
+   >=net-libs/gnutls-2.12:=[${MULTILIB_USEDEP}]
+   )
+   ppp? ( >=net-dialup/ppp-2.4.5:=[ipv6] )
+   modemmanager? (
+   net-misc/mobile-broadband-provider-info
+   >=net-misc/modemmanager-0.7.991:0=
+   )
+   bluetooth? ( >=net-wireless/bluez-5 )
+   ofono? ( net-misc/ofono )
+   dhclient? ( >=net-misc/dhcp-4[client] )
+   dhcpcd? ( >=net-misc/dhcpcd-9.3.3 )
+   ovs? ( >=dev-libs/jansson-2.7:= )
+   resolvconf? ( virtual/resolvconf )
+   connection-sharing? (
+   net-dns/dnsmasq[dbus,dhcp]
+   iptables? ( net-firewall/iptables )
+   nftables? ( net-firewall/nftables )
+   )
+   psl? ( net-libs/libpsl )
+   concheck? ( net-misc/curl )
+   tools? (
+   >=dev-libs/newt-0.52.15
+   libedit? ( dev-libs/libedit )
+   !libedit? ( sys-libs/readline:= )
+   )
+"
+RDEPEND="${COMMON_DEPEND}
+   acct-group/plugdev
+   || (
+   net-misc/iputils[arping(+)]
+   net-analyzer/arping
+   )
+   wifi? (
+   !iwd? ( >=net-wireless/wpa_supplicant-0.7.3-r3[dbus] )
+   iwd? ( net-wireless/iwd )
+   )
+"
+DEPEND="${COMMON_DEPEND}
+   >=sys-kernel/linux-headers-3.18
+   

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

2022-08-11 Thread Maciej Barć
commit: 3d9ccad170819e71c5f2d7e4501cec2eb2b272bd
Author: Maciej Barć  gentoo  org>
AuthorDate: Fri Aug 12 02:32:26 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Fri Aug 12 02:32:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d9ccad1

app-emacs/buttercup: bump to 1.26

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

 app-emacs/buttercup/Manifest  |  1 +
 app-emacs/buttercup/buttercup-1.26.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-emacs/buttercup/Manifest b/app-emacs/buttercup/Manifest
index 361966f289e9..a0406074f06f 100644
--- a/app-emacs/buttercup/Manifest
+++ b/app-emacs/buttercup/Manifest
@@ -1,2 +1,3 @@
 DIST buttercup-1.24.tar.gz 85337 BLAKE2B 
fb40d0899f68aff5f2fdb989b2c0e42005e6667ecfe8a4ca806ddb4139f497f0eed5328ba6407136b757a0f13bc6ec5ee488792da3de1e84edba394a781c410c
 SHA512 
0a436f5e5bcf386a3675ef281ac6c9f0125917058de88a5557d879004bbf7cd4298086aa3fb86f2bd807f46c166b0fb02e248cc485878891293147656525f8ca
 DIST buttercup-1.25.tar.gz 86763 BLAKE2B 
ccf7ba797517710e66b666cc121766d29886e0e1a8fd5ad63cb8b5fa4ee2d2a0d2644cd413c1095f37b1ba60467c012e507230787e1daaca3e869a4072e61bb4
 SHA512 
1eb45485fb1de638837da4d97f6043a64e97d167c8c130d9c5ba6ff67a5e0bcae272c8247779ab1c9427668468a3b94e91af07426b5465a7c3f9c54433a0433e
+DIST buttercup-1.26.tar.gz 87554 BLAKE2B 
ee5d37360b6c9daa8b790f7ea6ae5bf7ff4266b1fcbe913877aefd4ede2e7d6561e48eae533c17c906e19b498d9d127692597ee728bd1fa791430f5f6ab508c8
 SHA512 
fb491e1db33ffaeca52529630c538040487a7bdf7766faab2c6a1bc39d1060c57a259006b741abbec9b9a6911f8390b2513e0a4dddf856b79274ed24307c

diff --git a/app-emacs/buttercup/buttercup-1.26.ebuild 
b/app-emacs/buttercup/buttercup-1.26.ebuild
new file mode 100644
index ..cfebece4d7cc
--- /dev/null
+++ b/app-emacs/buttercup/buttercup-1.26.ebuild
@@ -0,0 +1,30 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+NEED_EMACS="24.3"
+
+inherit elisp
+
+DESCRIPTION="Behaviour-driven Elisp testing"
+HOMEPAGE="https://github.com/jorgenschaefer/emacs-buttercup;
+SRC_URI="https://github.com/jorgenschaefer/emacs-${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
+S="${WORKDIR}"/emacs-${P}
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+DOCS=( docs/{running,writing}-tests.md  )
+SITEFILE="50${PN}-gentoo.el"
+
+src_test() {
+   ${EMACS} ${EMACSFLAGS} -L . -l buttercup \
+-f buttercup-run-discover || die "tests failed"
+}
+
+src_install() {
+   elisp_src_install
+   dobin bin/${PN}
+}



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

2022-08-11 Thread Yixun Lan
commit: aeacb6c0368063125e4c25b5bb84cbdd5ab08a60
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Aug 12 01:39:39 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Aug 12 01:47:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aeacb6c0

dev-util/bcc: keyword 0.25.0 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/dev-util/bcc/bcc-0.25.0.ebuild b/dev-util/bcc/bcc-0.25.0.ebuild
index 1b1af6260a0c..3587e236d298 100644
--- a/dev-util/bcc/bcc-0.25.0.ebuild
+++ b/dev-util/bcc/bcc-0.25.0.ebuild
@@ -15,7 +15,7 @@ SRC_URI="https://github.com/iovisor/bcc/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~riscv ~x86"
 IUSE="+lua test"
 
 REQUIRED_USE="



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

2022-08-11 Thread Yixun Lan
commit: 925da763c9d6aba71da5bd24a0167c92cb1a40de
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Aug 12 01:43:38 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Aug 12 01:47:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=925da763

profiles/arch/riscv: mask dev-util/bcc[lua]

Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/profiles/arch/riscv/package.use.mask 
b/profiles/arch/riscv/package.use.mask
index ef3767f4e951..6e53ca326581 100644
--- a/profiles/arch/riscv/package.use.mask
+++ b/profiles/arch/riscv/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Yixun Lan  (2022-08-11)
+# lua not support on riscv
+dev-util/bcc lua
+
 # Yu Gu  (2022-07-26)
 # Xen does not work on riscv, ceph not tested, bug #859625
 app-emulation/libvirt xen rbd



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

2022-08-11 Thread Yixun Lan
commit: 372bdd17073d19c1817e0a80c217463663859f0c
Author: Yixun Lan  gentoo  org>
AuthorDate: Fri Aug 12 01:47:32 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Fri Aug 12 01:47:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=372bdd17

profiles/arch/riscv: cleanup due to USE flags dropped

Signed-off-by: Yixun Lan  gentoo.org>

 profiles/arch/riscv/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/riscv/package.use.mask 
b/profiles/arch/riscv/package.use.mask
index ffd587d0c3a5..ef3767f4e951 100644
--- a/profiles/arch/riscv/package.use.mask
+++ b/profiles/arch/riscv/package.use.mask
@@ -67,10 +67,6 @@ app-emulation/qemu xen
 app-emulation/qemu rbd
 sys-fs/multipath-tools rbd
 
-# Georgy Yakovlev  (2022-01-16)
-# requires sys-apps/dbus-broker, which is keyworded here.
-sys-apps/systemd -hostnamed-fallback
-
 # Alexey Sokolov  (2012-12-25)
 # Requires dev-qt/qtwebengine
 sci-astronomy/stellarium webengine



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

2022-08-11 Thread Ulrich Müller
commit: 1f7ce21a121e3e07b3410f527028e891c9b8314a
Author: Ulrich Müller  gentoo  org>
AuthorDate: Fri Aug 12 00:38:25 2022 +
Commit: Ulrich Müller  gentoo  org>
CommitDate: Fri Aug 12 00:38:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f7ce21a

net-im/zoom: drop 5.10.7.3311

Bug: https://bugs.gentoo.org/864939
Signed-off-by: Ulrich Müller  gentoo.org>

 net-im/zoom/Manifest|   1 -
 net-im/zoom/zoom-5.10.7.3311.ebuild | 185 
 2 files changed, 186 deletions(-)

diff --git a/net-im/zoom/Manifest b/net-im/zoom/Manifest
index 8cb436f9eb2e..e0e76f3d6416 100644
--- a/net-im/zoom/Manifest
+++ b/net-im/zoom/Manifest
@@ -1,3 +1,2 @@
-DIST zoom-5.10.7.3311_x86_64.tar.xz 130117904 BLAKE2B 
d3ad7501ec6fc495c62bb783c79690f5424c7e07b0cad1a3e71e20633e9df088c918a0b9a4cc5a956b016e6144da4998567ebb3ef393452caf8814d4e300c186
 SHA512 
acf31bc5e983500f534ccfcfe0b935a735e4a259bcfb37d99109bed41d0f3f561a664c5cbf728f907feb8ec5e79a13a27dc39c01948ee2e9f1bab2288e450231
 DIST zoom-5.11.1.3595_x86_64.tar.xz 131583416 BLAKE2B 
9848b198bc8c523287e68d85ec42bbb5c1fc6448210c4104273bf6680f4fa2f460a5f880f07d6d5d65aa83cd58c82b071be83205e505c097c205370cd1304c35
 SHA512 
9e02dcbd33369334521cc51f8a64db1f677fe887773fa73e4ade10f01a0e0ac48cce3ff6ce962d52208935ecf19f82c22c9d81702e9839c30f0cdaa3fd9fde4e
 DIST zoom-5.11.3.3882_x86_64.tar.xz 132055676 BLAKE2B 
bef2b6eadcc2595e3cf4c004f2faf94831d5b1b4289b49654c16030276804893bf5f7192cfd437e28470ba5b891933321a76792e8d8588416ac0284d8654a856
 SHA512 
56c67ce44a88ec01732150b17b81ad9109329fa0f833eefcd32c5c029eb47928371571296745ae458147953cb9109f5622de1040d0f5bac70e118ae6a4ee18da

diff --git a/net-im/zoom/zoom-5.10.7.3311.ebuild 
b/net-im/zoom/zoom-5.10.7.3311.ebuild
deleted file mode 100644
index de370171be34..
--- a/net-im/zoom/zoom-5.10.7.3311.ebuild
+++ /dev/null
@@ -1,185 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop readme.gentoo-r1 wrapper xdg-utils
-
-DESCRIPTION="Video conferencing and web conferencing service"
-HOMEPAGE="https://zoom.us/;
-SRC_URI="https://zoom.us/client/${PV}/${PN}_x86_64.tar.xz -> 
${P}_x86_64.tar.xz"
-S="${WORKDIR}/${PN}"
-
-LICENSE="all-rights-reserved"
-SLOT="0"
-KEYWORDS="-* ~amd64"
-IUSE="bundled-libjpeg-turbo +bundled-qt opencl pulseaudio wayland"
-RESTRICT="mirror bindist strip"
-
-RDEPEND="!games-engines/zoom
-   app-accessibility/at-spi2-atk
-   app-accessibility/at-spi2-core
-   dev-libs/atk
-   dev-libs/expat
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   >=dev-libs/quazip-1.0:0=
-   media-libs/alsa-lib
-   media-libs/fdk-aac:0/2
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/mesa[gbm(+)]
-   media-sound/mpg123
-   net-print/cups
-   sys-apps/dbus
-   sys-apps/util-linux
-   sys-libs/glibc
-   virtual/opengl
-   x11-libs/cairo
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libxcb
-   x11-libs/libXcomposite
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libxkbcommon[X]
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libxshmfence
-   x11-libs/libXtst
-   x11-libs/pango
-   x11-libs/xcb-util-image
-   x11-libs/xcb-util-keysyms
-   opencl? ( virtual/opencl )
-   pulseaudio? ( media-sound/pulseaudio )
-   wayland? ( dev-libs/wayland )
-   !bundled-libjpeg-turbo? ( >=media-libs/libjpeg-turbo-2.0.5 )
-   !bundled-qt? (
-   dev-libs/icu
-   dev-qt/qtcore:5
-   dev-qt/qtdbus:5
-   dev-qt/qtdeclarative:5[widgets]
-   dev-qt/qtdiag:5
-   dev-qt/qtgraphicaleffects:5
-   dev-qt/qtgui:5
-   dev-qt/qtlocation:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtquickcontrols:5[widgets]
-   dev-qt/qtquickcontrols2:5
-   dev-qt/qtsvg:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   wayland? ( dev-qt/qtwayland )
-   )"
-
-BDEPEND="dev-util/bbe
-   bundled-libjpeg-turbo? ( dev-util/patchelf )"
-
-QA_PREBUILT="opt/zoom/*"
-
-src_prepare() {
-   default
-
-   # The tarball doesn't contain an icon, so extract it from the binary
-   bbe -s -b '/\n/' -e 'J 1;D' zoom 
\
-   >videoconference-zoom.svg && [[ -s videoconference-zoom.svg ]] \
-   || die "Extraction of icon failed"
-
-   if ! use pulseaudio; then
-   # For some strange reason, zoom cannot use any ALSA sound 
devices if
-   # it finds libpulse. This causes breakage if 
media-sound/apulse[sdk]
-   # is installed. So, force zoom to ignore libpulse.
-   bbe -e 's/libpulse.so/IgNoRePuLsE/' zoom >zoom.tmp || die
-   mv 

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

2022-08-11 Thread Craig Andrews
commit: 62866858f1f99e4c9c44608a553fe8da7d512302
Author: Craig Andrews  gentoo  org>
AuthorDate: Thu Aug 11 23:21:57 2022 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Thu Aug 11 23:27:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62866858

net-analyzer/netdata: add 1.36.0

Signed-off-by: Craig Andrews  gentoo.org>

 net-analyzer/netdata/Manifest  |   1 +
 net-analyzer/netdata/netdata-1.36.0.ebuild | 159 +
 2 files changed, 160 insertions(+)

diff --git a/net-analyzer/netdata/Manifest b/net-analyzer/netdata/Manifest
index fc4992c878c5..cd5688d0960f 100644
--- a/net-analyzer/netdata/Manifest
+++ b/net-analyzer/netdata/Manifest
@@ -1 +1,2 @@
 DIST netdata-1.35.1.tar.gz 22335562 BLAKE2B 
a715f26f1318f01ce45266bbc78ada5ec2e3516f7ff2a6fda77829433398986bc564b377362097ea7c2595ac01911a817be124c9f0ba560dd00ae5001a080da7
 SHA512 
43cbf099841fe2547b7de56610f811e55fdf2e9af3dc18fde818e09de1125a7f8d57f6a16f2dee8ea4b9e6f2683959549810a1ea7f8f7b5007eb7069bfddb477
+DIST netdata-1.36.0.tar.gz 24794657 BLAKE2B 
f3230f5c279a5a203f9245a1d74f254961cafe060d285fcd63f968c5f33cd2c4393288c44262eb12665c6471d757d65a9a2406c7d80997736ada6189ba1c8450
 SHA512 
1748c5f6ea392b6cfc6b761632bc632422fb6910f53fb26a796003cdc0048f28ab550daa0658a6d5de5fec65b0a5aae8f44f68ec65c19f06b11eda6fd337c8d4

diff --git a/net-analyzer/netdata/netdata-1.36.0.ebuild 
b/net-analyzer/netdata/netdata-1.36.0.ebuild
new file mode 100644
index ..3df5ef6ecd47
--- /dev/null
+++ b/net-analyzer/netdata/netdata-1.36.0.ebuild
@@ -0,0 +1,159 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python{3_8,3_9,3_10} )
+
+inherit autotools fcaps flag-o-matic linux-info python-single-r1 systemd 
toolchain-funcs
+
+if [[ ${PV} == * ]] ; then
+   EGIT_REPO_URI="https://github.com/netdata/${PN}.git;
+   inherit git-r3
+else
+   
SRC_URI="https://github.com/netdata/${PN}/releases/download/v${PV}/${PN}-v${PV}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-v${PV}"
+   KEYWORDS="~amd64 ~ppc64 ~x86"
+fi
+
+DESCRIPTION="Linux real time system monitoring, done right!"
+HOMEPAGE="https://github.com/netdata/netdata https://my-netdata.io/;
+
+LICENSE="GPL-3+ MIT BSD"
+SLOT="0"
+IUSE="caps cloud +compression cpu_flags_x86_sse2 cups +dbengine ipmi +jsonc 
kinesis +lto mongodb mysql nfacct nodejs postgres prometheus +python tor xen"
+REQUIRED_USE="
+   mysql? ( python )
+   python? ( ${PYTHON_REQUIRED_USE} )
+   tor? ( python )"
+
+# most unconditional dependencies are for plugins.d/charts.d.plugin:
+RDEPEND="
+   acct-group/netdata
+   acct-user/netdata
+   app-misc/jq
+   >=app-shells/bash-4:0
+   || (
+   net-analyzer/openbsd-netcat
+   net-analyzer/netcat
+   )
+   net-libs/libwebsockets
+   net-misc/curl
+   net-misc/wget
+   sys-apps/util-linux
+   virtual/awk
+   caps? ( sys-libs/libcap )
+   cups? ( net-print/cups )
+   dbengine? (
+   app-arch/lz4
+   dev-libs/judy
+   dev-libs/openssl:=
+   )
+   dev-libs/libuv
+   cloud? ( dev-libs/protobuf:= )
+   compression? ( sys-libs/zlib )
+   ipmi? ( sys-libs/freeipmi )
+   jsonc? ( dev-libs/json-c:= )
+   kinesis? ( dev-libs/aws-sdk-cpp[kinesis] )
+   mongodb? ( dev-libs/mongo-c-driver )
+   nfacct? (
+   net-firewall/nfacct
+   net-libs/libmnl
+   )
+   nodejs? ( net-libs/nodejs )
+   prometheus? (
+   dev-libs/protobuf:=
+   app-arch/snappy
+   )
+   python? (
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
+   mysql? ( $(python_gen_cond_dep 
'dev-python/mysqlclient[${PYTHON_USEDEP}]') )
+   postgres? ( $(python_gen_cond_dep 
'dev-python/psycopg:2[${PYTHON_USEDEP}]') )
+   tor? ( $(python_gen_cond_dep 'net-libs/stem[${PYTHON_USEDEP}]') 
)
+   )
+   xen? (
+   app-emulation/xen-tools
+   dev-libs/yajl
+   )"
+DEPEND="${RDEPEND}
+   virtual/pkgconfig"
+
+FILECAPS=(
+   'cap_dac_read_search,cap_sys_ptrace+ep' 
'usr/libexec/netdata/plugins.d/apps.plugin'
+)
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+   linux-info_pkg_setup
+}
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   if use ppc64; then
+   # bundled dlib does not support vsx on big-endian
+   # https://github.com/davisking/dlib/issues/397
+   [[ $(tc-endian) == big ]] && append-flags -mno-vsx
+   fi
+
+   econf \
+   --localstatedir="${EPREFIX}"/var \
+   --with-user=netdata \
+   --without-bundled-protobuf \
+   $(use_enable cloud) \
+   

[gentoo-commits] repo/gentoo:master commit in: profiles/arch/riscv/, profiles/arch/riscv/rv64gc/lp64d/

2022-08-11 Thread Yixun Lan
commit: 70c1dd67d21436fe54b552e4553a4711683facba
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 22:34:19 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 22:49:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70c1dd67

profiles/arch/riscv: mask virtual/{jre,jdk} other than lp64d

this due to dev-java/openjdk support riscv,lp64d only

Signed-off-by: Yixun Lan  gentoo.org>

 profiles/arch/riscv/package.mask  | 5 +
 profiles/arch/riscv/rv64gc/lp64d/package.mask | 5 +
 2 files changed, 10 insertions(+)

diff --git a/profiles/arch/riscv/package.mask b/profiles/arch/riscv/package.mask
index ab795bdab09d..14d513dbb5bc 100644
--- a/profiles/arch/riscv/package.mask
+++ b/profiles/arch/riscv/package.mask
@@ -1,6 +1,11 @@
 # Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Yixun Lan  (2022-08-11)
+# dev-java/openjdk support lp64d only, so mask others
+virtual/jdk
+virtual/jre
+
 # Arthur Zamarin  (2022-04-30)
 # Bootstrapping was created only for lp64d
 dev-java/openjdk

diff --git a/profiles/arch/riscv/rv64gc/lp64d/package.mask 
b/profiles/arch/riscv/rv64gc/lp64d/package.mask
index 53f8d2598ac4..f08a2570a938 100644
--- a/profiles/arch/riscv/rv64gc/lp64d/package.mask
+++ b/profiles/arch/riscv/rv64gc/lp64d/package.mask
@@ -1,6 +1,11 @@
 # Copyright 2019-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Yixun Lan  (2022-08-11)
+# dev-java/openjdk support lp64d, unmask it
+-virtual/jdk
+-virtual/jre
+
 # Arthur Zamarin  (2022-04-30)
 # Bootstrapping tarball was created for lp64d
 -dev-java/openjdk



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

2022-08-11 Thread Yixun Lan
commit: 534230d1f1c8f38b3548af8d754279d1f54a5fac
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 22:36:45 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 22:51:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=534230d1

virtual/jre: keyword 11-r2 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

 virtual/jre/jre-11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/jre/jre-11-r2.ebuild b/virtual/jre/jre-11-r2.ebuild
index 4715fadc1b67..764142bcff29 100644
--- a/virtual/jre/jre-11-r2.ebuild
+++ b/virtual/jre/jre-11-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for Java Runtime Environment (JRE)"
 SLOT="${PV}"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv x86"
 
 RDEPEND="|| (
virtual/jdk:${SLOT}



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

2022-08-11 Thread Yixun Lan
commit: ee8d9eaf65f8ff91de2592e53cf26ace3bda541a
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 22:37:11 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 22:51:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee8d9eaf

virtual/jre: keyword 17 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/virtual/jre/jre-17.ebuild b/virtual/jre/jre-17.ebuild
index f42ded3a228c..b4948459fd41 100644
--- a/virtual/jre/jre-17.ebuild
+++ b/virtual/jre/jre-17.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DESCRIPTION="Virtual for Java Runtime Environment (JRE)"
 SLOT="${PV}"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv x86"
 
 RDEPEND="|| (
virtual/jdk:${SLOT}



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

2022-08-11 Thread Yixun Lan
commit: ba9e0530dd043b683fc11f25745fa039014ca21a
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 22:36:02 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 22:51:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ba9e0530

virtual/jdk: keyword 11-r2 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

 virtual/jdk/jdk-11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/jdk/jdk-11-r2.ebuild b/virtual/jdk/jdk-11-r2.ebuild
index 7032cca35142..25d3c5f9211a 100644
--- a/virtual/jdk/jdk-11-r2.ebuild
+++ b/virtual/jdk/jdk-11-r2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for Java Development Kit (JDK)"
 SLOT="${PV}"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv x86"
 IUSE="headless-awt"
 
 RDEPEND="|| (



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

2022-08-11 Thread Yixun Lan
commit: c9139df5f4da9af7247ff539a3f53688a9b4094b
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 22:36:21 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 22:51:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9139df5

virtual/jdk: keyword 17 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

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

diff --git a/virtual/jdk/jdk-17.ebuild b/virtual/jdk/jdk-17.ebuild
index 4c3f45fc8d30..d221cfbe93df 100644
--- a/virtual/jdk/jdk-17.ebuild
+++ b/virtual/jdk/jdk-17.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 DESCRIPTION="Virtual for Java Development Kit (JDK)"
 SLOT="${PV}"
-KEYWORDS="amd64 ~arm arm64 ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ppc64 ~riscv x86"
 IUSE="headless-awt"
 
 RDEPEND="|| (



[gentoo-commits] repo/proj/guru:dev commit in: sci-electronics/lxi-tools/

2022-08-11 Thread Jan Henke
commit: 72a499af8c1635e3531f5cdff81c32b42016cf09
Author: Jan Henke  taujhe  de>
AuthorDate: Thu Aug 11 21:25:56 2022 +
Commit: Jan Henke  taujhe  de>
CommitDate: Thu Aug 11 21:25:56 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=72a499af

sci-electronics/lxi-tools: Fix gschema, xdg icons actions

Signed-off-by: Jan Henke  taujhe.de>

 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild 
b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
index f069b84ec..47e2a4cb0 100644
--- a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
+++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit meson
+inherit meson gnome2-utils xdg-utils
 
 DESCRIPTION="Tools to access devices with LXI"
 HOMEPAGE="https://github.com/lxi-tools/lxi-tools;
@@ -34,3 +34,13 @@ src_configure() {
)
meson_src_configure
 }
+
+pkg_postinst() {
+   gnome2_schemas_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+   xdg_icon_cache_update
+}



[gentoo-commits] repo/gentoo:master commit in: games-action/minetest/files/

2022-08-11 Thread James Le Cuirot
commit: adf381eb5544065c7f787cbaf917afa488cf3ffc
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Aug 10 17:45:21 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Aug 11 21:04:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adf381eb

games-action/minetest: remove unused patches

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Portage 3.0.34 / pkgdev 0.2.1 / pkgcheck 0.10.12
Closes: https://github.com/gentoo/gentoo/pull/26816
Signed-off-by: James Le Cuirot  gentoo.org>

 .../minetest/files/minetest-5.4.1-gcc11.patch   | 21 -
 .../files/minetest-5.5.0-bundled_luabitop.patch | 17 -
 2 files changed, 38 deletions(-)

diff --git a/games-action/minetest/files/minetest-5.4.1-gcc11.patch 
b/games-action/minetest/files/minetest-5.4.1-gcc11.patch
deleted file mode 100644
index bb37cdf31e07..
--- a/games-action/minetest/files/minetest-5.4.1-gcc11.patch
+++ /dev/null
@@ -1,21 +0,0 @@
-From 7c2826cbc0f36027d4a9781f433150d1c5d0d03f Mon Sep 17 00:00:00 2001
-From: lhofhansl 
-Date: Thu, 6 May 2021 10:24:30 -0700
-Subject: [PATCH] Fix build for newer versions of GCC (#11246)
-

- src/clientiface.h | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/src/clientiface.h b/src/clientiface.h
-index cc5292b71bf9..dfd97674137c 100644
 a/src/clientiface.h
-+++ b/src/clientiface.h
-@@ -31,6 +31,7 @@ with this program; if not, write to the Free Software 
Foundation, Inc.,
- #include 
- #include 
- #include 
-+#include 
- #include 
- 
- class MapBlock;

diff --git a/games-action/minetest/files/minetest-5.5.0-bundled_luabitop.patch 
b/games-action/minetest/files/minetest-5.5.0-bundled_luabitop.patch
deleted file mode 100644
index 5006ddd499b6..
--- a/games-action/minetest/files/minetest-5.5.0-bundled_luabitop.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-When built against PUC Lua, minetest binaries get linked against
-a customised version of LuaBitOp which then gets installed
-as /usr/$(get_libdir)/libbitop.so. This violates the policies of both
-Gentoo (unversioned shared library) and Lua itself (compiled extensions
-should be installed into implementation-specific directories rather than
-top-level libdir, and I'm pretty sure linking against such extensions
-is a no-no). Switching to system dev-lua/LuaBitOp will require work
-so just make the customised version static for now.
-
 a/lib/bitop/CMakeLists.txt
-+++ b/lib/bitop/CMakeLists.txt
-@@ -1,4 +1,4 @@
--add_library(bitop bit.c)
-+add_library(bitop STATIC bit.c)
- target_link_libraries(bitop)
- 
- include_directories(${LUA_INCLUDE_DIR})



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

2022-08-11 Thread James Le Cuirot
commit: 6628e6337af08a4d8571fb6d99083a5f17bf567a
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Aug 11 20:56:14 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Aug 11 20:56:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6628e633

www-client/vivaldi-snapshot: Drop old 5.4.2753.19

Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi-snapshot/Manifest   |   3 -
 .../vivaldi-snapshot-5.4.2753.19.ebuild| 206 -
 2 files changed, 209 deletions(-)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index fc26c562484d..7a8b71254b64 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -1,6 +1,3 @@
-DIST vivaldi-snapshot_5.4.2753.19-1_amd64.deb 97606564 BLAKE2B 
4196bdf0151dd1f1f108a01b65ebde08f2a5622e30da88fc635c9e43535d7a983f77953911e214da573589430591b401e5981f7c62033b35f3719fb0f2301769
 SHA512 
1e4fe56d4c0b92a39382bf5e87d4b7efb20ef3f585ad93535e5d269a935420b09752e453ab650ba6aa88fdf6f6900d232ae1b1390ab7630fcb8cff35a21c6ed9
-DIST vivaldi-snapshot_5.4.2753.19-1_arm64.deb 87860620 BLAKE2B 
80d0ff6f3e84ecf18c54c62ba6249650334e9f0cc965599a32e45858c51db1c3b7e4eef57e406acbb55a9e6b6dc14d16f7da1b3a186928b5c2b925e7d6e37437
 SHA512 
e9b12fa0c96a9af93d06c04b60d9aa39debdc47bc7e3f31bcbb6943bd7437ce0ee3161f372ffd66058bfa5a8e15a7c7d308b0962049c67e734dedbfac732f405
-DIST vivaldi-snapshot_5.4.2753.19-1_armhf.deb 88363304 BLAKE2B 
43777e10dbf7cdeb85fc9e90afe8e5a098641aa94114e2f7810f8d7b228a877cb1521032bdd953a73895b7048df148d7494002bc6aed36a71f9a0b6209fee825
 SHA512 
5849b9b3234f4b72ad8c29fa7ba497f692a014bd4497093f1b13134d86e66498ca17f1034836102bd1006c8b186b60ada2a667d087e369f72189e2e9ac7435df
 DIST vivaldi-snapshot_5.4.2753.21-1_amd64.deb 97567004 BLAKE2B 
7853e76437f4cd1d9d5dd23760fdb51975c7238c4229bbfed81293e63a3e26db96cb8e3c4e18ae60aa978629cee5ee2a16d0fe2fbf37cc102442f232ab75f757
 SHA512 
2c5dcf3892b9fa3d75b64e3a55a25b79f6846c0ba0de2cdf2a587f2748e51e3c0f94696ce6ef32445c0c43cea155f0dfbb3be9f928332f86beb1aa6acb1a1f83
 DIST vivaldi-snapshot_5.4.2753.21-1_arm64.deb 87882492 BLAKE2B 
dbe55b70b3744321fad6c882d7f3c20e2de7e821a4e61c2b3a3f2ed43fe0e6f1ed7eb71863217398725fec0ea15bb1c7de251f01be6aedf0602717e09b23006e
 SHA512 
17db095f4ec2d936dd41d0369223f185877ba8dc372f922e6d7eba3d4c320325b4496ebb887be787d827bd05ed2fa92cd8cb1e29da6ccfdd91d1e3f7f9a38a6f
 DIST vivaldi-snapshot_5.4.2753.21-1_armhf.deb 88377804 BLAKE2B 
ffc6c58e2e69699b5cd45f8d1a910e9907fae7bdcd58ec5b7fc038f642c4e89317e41f14931c624bfb39307e5750862ce7f81c0689cdecc18c86c8eb0254edf3
 SHA512 
59f729843d11c66163ed9a21d6aac2895c391b7da0a58d23caa5e5dcdfc1348a8f785bb559facb3bcf7a5ec9cedfea59a59067f80e24e4adaafe992e8b752279

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.4.2753.19.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.4.2753.19.ebuild
deleted file mode 100644
index cc815568ad94..
--- a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.4.2753.19.ebuild
+++ /dev/null
@@ -1,206 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CHROMIUM_VERSION="102"
-CHROMIUM_LANGS="
-   af
-   am
-   ar
-   az
-   be
-   bg
-   bn
-   ca
-   cs
-   da
-   de
-   de-CH
-   el
-   en-GB
-   en-US
-   eo
-   es
-   es-419
-   es-PE
-   et
-   eu
-   fa
-   fi
-   fil
-   fr
-   fy
-   gd
-   gl
-   gu
-   he
-   hi
-   hr
-   hu
-   hy
-   id
-   io
-   is
-   it
-   ja
-   jbo
-   ka
-   kab
-   kn
-   ko
-   ku
-   lt
-   lv
-   mk
-   ml
-   mr
-   ms
-   nb
-   nl
-   nn
-   pa
-   pl
-   pt-BR
-   pt-PT
-   ro
-   ru
-   sc
-   sk
-   sl
-   sq
-   sr
-   sr-Latn
-   sv
-   sw
-   ta
-   te
-   th
-   tr
-   uk
-   ur
-   vi
-   zh-CN
-   zh-TW
-"
-
-inherit chromium-2 desktop unpacker xdg
-
-VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/;
-
-if [[ ${PV} = *_p* ]]; then
-   DEB_REV="${PV#*_p}"
-else
-   DEB_REV=1
-fi
-
-KEYWORDS="-* ~amd64 ~arm ~arm64"
-VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_;
-
-RE="\bamd64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" amd64? ( 
${VIVALDI_BASE_URI}amd64.deb )"
-RE="\barm\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm? ( 
${VIVALDI_BASE_URI}armhf.deb )"
-RE="\barm64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm64? ( 
${VIVALDI_BASE_URI}arm64.deb )"
-RE="\bx86\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" x86? ( 
${VIVALDI_BASE_URI}i386.deb )"
-
-LICENSE="Vivaldi"
-SLOT="0"

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

2022-08-11 Thread James Le Cuirot
commit: d68d940d3b8d9518838791775f9be6288a3b13b3
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Aug 11 20:54:57 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Aug 11 20:54:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d68d940d

www-client/vivaldi-snapshot: Add version 5.4.2753.27

Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi-snapshot/Manifest   |   3 +
 .../vivaldi-snapshot-5.4.2753.27.ebuild| 206 +
 2 files changed, 209 insertions(+)

diff --git a/www-client/vivaldi-snapshot/Manifest 
b/www-client/vivaldi-snapshot/Manifest
index 3c399e89c61a..fc26c562484d 100644
--- a/www-client/vivaldi-snapshot/Manifest
+++ b/www-client/vivaldi-snapshot/Manifest
@@ -4,3 +4,6 @@ DIST vivaldi-snapshot_5.4.2753.19-1_armhf.deb 88363304 BLAKE2B 
43777e10dbf7cdeb8
 DIST vivaldi-snapshot_5.4.2753.21-1_amd64.deb 97567004 BLAKE2B 
7853e76437f4cd1d9d5dd23760fdb51975c7238c4229bbfed81293e63a3e26db96cb8e3c4e18ae60aa978629cee5ee2a16d0fe2fbf37cc102442f232ab75f757
 SHA512 
2c5dcf3892b9fa3d75b64e3a55a25b79f6846c0ba0de2cdf2a587f2748e51e3c0f94696ce6ef32445c0c43cea155f0dfbb3be9f928332f86beb1aa6acb1a1f83
 DIST vivaldi-snapshot_5.4.2753.21-1_arm64.deb 87882492 BLAKE2B 
dbe55b70b3744321fad6c882d7f3c20e2de7e821a4e61c2b3a3f2ed43fe0e6f1ed7eb71863217398725fec0ea15bb1c7de251f01be6aedf0602717e09b23006e
 SHA512 
17db095f4ec2d936dd41d0369223f185877ba8dc372f922e6d7eba3d4c320325b4496ebb887be787d827bd05ed2fa92cd8cb1e29da6ccfdd91d1e3f7f9a38a6f
 DIST vivaldi-snapshot_5.4.2753.21-1_armhf.deb 88377804 BLAKE2B 
ffc6c58e2e69699b5cd45f8d1a910e9907fae7bdcd58ec5b7fc038f642c4e89317e41f14931c624bfb39307e5750862ce7f81c0689cdecc18c86c8eb0254edf3
 SHA512 
59f729843d11c66163ed9a21d6aac2895c391b7da0a58d23caa5e5dcdfc1348a8f785bb559facb3bcf7a5ec9cedfea59a59067f80e24e4adaafe992e8b752279
+DIST vivaldi-snapshot_5.4.2753.27-1_amd64.deb 97597432 BLAKE2B 
afcac0f2548f91f8de7aa50f79f85d6df878ee499a14e6cf44e76d080d42338a62c14c0935c84b9289ca1faebf219dfc1fa717f2fa56f709754d6bcec85648b9
 SHA512 
62bcf35fd37e879924a9ffc150a34bec1b9329212b20cfedbf9bac6773db5b59457f4a6bc69fd4c51ff32672d9e87a30c8166bb1b11a34d519bfda84283b3807
+DIST vivaldi-snapshot_5.4.2753.27-1_arm64.deb 87874496 BLAKE2B 
3728370232735c1d8b22e2bb2f82611ba77b9b60effaae8c8759af5a24eea0562633f300a0c24fcd44586bf73c712e2271edcbc3cee0f5eb51501a19d0421a7f
 SHA512 
59cb375fc967dd554b3e483a3767e64cef6c8802f073dcad9bf6333f1311430ff7a1a144fa4aeb955de5b73fc3783094dc3f6aa3f5ae1dc2b57874c503dcface
+DIST vivaldi-snapshot_5.4.2753.27-1_armhf.deb 88397740 BLAKE2B 
82522a95b2b483d31b18a223b140ea8ac905599e6d8a7ae8803be700ccb1a8d173f0375b1dfabb9c57dc4cfd4dac118f7771e6cdf4790eadf164d3e8e6e59d92
 SHA512 
0cbecda93ddc87c89e5ae82c85f72678605c3d8f09b5df7b227f72f2273d488100493d6e7d77e8302b9c7bf910f3d89b8b52fa0d835ba72c4b190c6de7976b8e

diff --git a/www-client/vivaldi-snapshot/vivaldi-snapshot-5.4.2753.27.ebuild 
b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.4.2753.27.ebuild
new file mode 100644
index ..cc815568ad94
--- /dev/null
+++ b/www-client/vivaldi-snapshot/vivaldi-snapshot-5.4.2753.27.ebuild
@@ -0,0 +1,206 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CHROMIUM_VERSION="102"
+CHROMIUM_LANGS="
+   af
+   am
+   ar
+   az
+   be
+   bg
+   bn
+   ca
+   cs
+   da
+   de
+   de-CH
+   el
+   en-GB
+   en-US
+   eo
+   es
+   es-419
+   es-PE
+   et
+   eu
+   fa
+   fi
+   fil
+   fr
+   fy
+   gd
+   gl
+   gu
+   he
+   hi
+   hr
+   hu
+   hy
+   id
+   io
+   is
+   it
+   ja
+   jbo
+   ka
+   kab
+   kn
+   ko
+   ku
+   lt
+   lv
+   mk
+   ml
+   mr
+   ms
+   nb
+   nl
+   nn
+   pa
+   pl
+   pt-BR
+   pt-PT
+   ro
+   ru
+   sc
+   sk
+   sl
+   sq
+   sr
+   sr-Latn
+   sv
+   sw
+   ta
+   te
+   th
+   tr
+   uk
+   ur
+   vi
+   zh-CN
+   zh-TW
+"
+
+inherit chromium-2 desktop unpacker xdg
+
+VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A browser for our friends"
+HOMEPAGE="https://vivaldi.com/;
+
+if [[ ${PV} = *_p* ]]; then
+   DEB_REV="${PV#*_p}"
+else
+   DEB_REV=1
+fi
+
+KEYWORDS="-* ~amd64 ~arm ~arm64"
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_;
+
+RE="\bamd64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" amd64? ( 
${VIVALDI_BASE_URI}amd64.deb )"
+RE="\barm\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm? ( 
${VIVALDI_BASE_URI}armhf.deb )"
+RE="\barm64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm64? ( 
${VIVALDI_BASE_URI}arm64.deb )"
+RE="\bx86\b"; [[ ${KEYWORDS} =~ ${RE} ]] && 

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

2022-08-11 Thread James Le Cuirot
commit: cb515ece3c5b543114485ace989c2dc77196e65b
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Aug 11 20:54:10 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Aug 11 20:54:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb515ece

profiles: Mask games-rpg/crosscode on musl

It requires dev-libs/nwjs, which is a binary package for glibc.

Signed-off-by: James Le Cuirot  gentoo.org>

 profiles/default/linux/musl/package.mask | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/default/linux/musl/package.mask 
b/profiles/default/linux/musl/package.mask
index 1810992203ea..c90ad0cedaf6 100644
--- a/profiles/default/linux/musl/package.mask
+++ b/profiles/default/linux/musl/package.mask
@@ -62,6 +62,7 @@ games-puzzle/world-of-goo-hb
 games-roguelike/adom
 games-roguelike/neon-chrome
 games-rpg/costume-quest
+games-rpg/crosscode
 games-rpg/dear-esther
 games-rpg/dungeon-defenders
 games-rpg/eschalon-book-1-demo



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

2022-08-11 Thread James Le Cuirot
commit: 60b43025869dffe722b148276f6dfab4c8dc25fa
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Aug 11 20:52:07 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Aug 11 20:52:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60b43025

profiles: Maks dev-libs/nwjs on musl

Binary package for glibc. Could be built from source but would take ages
and isn't worth the maintenance cost.

Closes: https://bugs.gentoo.org/864903
Signed-off-by: James Le Cuirot  gentoo.org>

 profiles/default/linux/musl/package.mask | 5 +
 1 file changed, 5 insertions(+)

diff --git a/profiles/default/linux/musl/package.mask 
b/profiles/default/linux/musl/package.mask
index 47955d113744..1810992203ea 100644
--- a/profiles/default/linux/musl/package.mask
+++ b/profiles/default/linux/musl/package.mask
@@ -77,6 +77,11 @@ games-strategy/knights-demo
 games-strategy/majesty-demo
 media-video/binkplayer
 
+# James Le Cuirot  (2022-08-11)
+# Binary package for glibc. Could be built from source but would take ages and
+# isn't worth the maintenance cost.
+dev-libs/nwjs
+
 # Ian Stakenvicius, 2017-06-14
 # on behalf of mozi...@gentoo.org
 # Mask firefox-54 and above as it requires rust



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

2022-08-11 Thread James Le Cuirot
commit: a4e255371c45fe106eecb74144390aaebbb9b53a
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Aug 11 20:49:25 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Aug 11 20:49:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4e25537

www-client/vivaldi: Add version 5.4.2753.28

Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi/Manifest   |   3 +
 www-client/vivaldi/vivaldi-5.4.2753.28.ebuild | 206 ++
 2 files changed, 209 insertions(+)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index b3fb0327a9a3..d2900e840f84 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -3,3 +3,6 @@ DIST vivaldi-stable_5.3.2679.70-1_arm64.deb 81633136 BLAKE2B 
6cfad0ec2f47a0228b6
 DIST vivaldi-stable_5.3.2679.70-1_armhf.deb 81281828 BLAKE2B 
ac4ae8ca2ed316dcb4d41ac5448c3adbc2ad9763b7ce63d2e11244e5fc8e3629e0a3a5616730b9d039c23b04d6a201b69e6de5b754298d2afee5cd1589cd9aa9
 SHA512 
5c648cf881a59973cd95be789b2cd112f15518f41577bed4c934f6be84f8b540a26c27896decf855c0f3a438d5c78232ae1ef93835ef80ddc1d413759abde0a4
 DIST vivaldi-stable_5.3.2679.73-1_arm64.deb 81662184 BLAKE2B 
521a72a52cd2bf90f63f60b5a2bf1e08baa9e7662041438da812612c20aaeeba9488504882d7c9fe5e82960e89377a13d9c3e7be09c1a6fbb9f18715f0e9a42a
 SHA512 
42105dfac48ce9177937d85f3ebd8fee146a333e528baab4f413f73db60e93cedcc57c0fb888eb00046a25892fe6a2193adde9d3affab3012cfd159ca7c4cd61
 DIST vivaldi-stable_5.3.2679.73-1_armhf.deb 81299184 BLAKE2B 
e432b093c0d9bcedd2eb8dce6495a7bb59c0cf8f9ea6a537c142df762fa0a9483c7bf1f81083ddfffcdf0088197edfe6a2ddfd6f35c1d49df5b749470191b4a6
 SHA512 
f89a30f1c6ca35927989d2c08e9d4a1e61a4dc717cccd590bf05421fde795a743ab4f96de1c5b4c2e91c1ca3de9270fd6cd94d9a2e211f24d34050242f43e341
+DIST vivaldi-stable_5.4.2753.28-1_amd64.deb 97607844 BLAKE2B 
98b4d55931f9809c20dcebb162d30c83375af725fc11ca72ebcf61c2a3ff91de563bfe127ab507224255f5c6865df76d3ea9b141827981e5a78cb42c1cbdbc5b
 SHA512 
88b43a8378986b608ae7bd840b55f5c98d83a4614a5fda7ee4ceb03923511edf7128dfbe138a320ecc27dd047db21f5e31f41f42e298a5ede93b564f7efec800
+DIST vivaldi-stable_5.4.2753.28-1_arm64.deb 87875228 BLAKE2B 
88c43b2f07f81bc809bb5a3a7e3bd4cc4fb2b85e86f8d17518cba1e9769ce550bd7c08e74b1f9c11cbc003674a23b359bd4b70ecc67ed2eb70b18a7f50ce86bb
 SHA512 
2bef4d5fa85ce14b068dc4528984321dc1d21f05fad266d6247a9afaecae9e3f740ff9a0acad633d9f189b2c979f6c3be7120c981b528ee325fc04eb4d76ea70
+DIST vivaldi-stable_5.4.2753.28-1_armhf.deb 88386840 BLAKE2B 
1f11e37da7cb0d940d70d652109a6aa71952e00669e3a7416e1c3a2c1406109948273f6eed56eb5e2cb7e16417746a08b4ad5584a45b94d7527308ae155a97a2
 SHA512 
596f3d3b6deb2aef8b95892b510c0486ddb26f1babf581f5fc2701872108804efeede4107b85a399c0ddbd1f338bc58492f3458028a4dc573b74fc1df8ad34ef

diff --git a/www-client/vivaldi/vivaldi-5.4.2753.28.ebuild 
b/www-client/vivaldi/vivaldi-5.4.2753.28.ebuild
new file mode 100644
index ..cc815568ad94
--- /dev/null
+++ b/www-client/vivaldi/vivaldi-5.4.2753.28.ebuild
@@ -0,0 +1,206 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CHROMIUM_VERSION="102"
+CHROMIUM_LANGS="
+   af
+   am
+   ar
+   az
+   be
+   bg
+   bn
+   ca
+   cs
+   da
+   de
+   de-CH
+   el
+   en-GB
+   en-US
+   eo
+   es
+   es-419
+   es-PE
+   et
+   eu
+   fa
+   fi
+   fil
+   fr
+   fy
+   gd
+   gl
+   gu
+   he
+   hi
+   hr
+   hu
+   hy
+   id
+   io
+   is
+   it
+   ja
+   jbo
+   ka
+   kab
+   kn
+   ko
+   ku
+   lt
+   lv
+   mk
+   ml
+   mr
+   ms
+   nb
+   nl
+   nn
+   pa
+   pl
+   pt-BR
+   pt-PT
+   ro
+   ru
+   sc
+   sk
+   sl
+   sq
+   sr
+   sr-Latn
+   sv
+   sw
+   ta
+   te
+   th
+   tr
+   uk
+   ur
+   vi
+   zh-CN
+   zh-TW
+"
+
+inherit chromium-2 desktop unpacker xdg
+
+VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
+VIVALDI_HOME="opt/${PN}"
+DESCRIPTION="A browser for our friends"
+HOMEPAGE="https://vivaldi.com/;
+
+if [[ ${PV} = *_p* ]]; then
+   DEB_REV="${PV#*_p}"
+else
+   DEB_REV=1
+fi
+
+KEYWORDS="-* ~amd64 ~arm ~arm64"
+VIVALDI_BASE_URI="https://downloads.vivaldi.com/${VIVALDI_PN#vivaldi-}/${VIVALDI_PN}_${PV%_p*}-${DEB_REV}_;
+
+RE="\bamd64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" amd64? ( 
${VIVALDI_BASE_URI}amd64.deb )"
+RE="\barm\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm? ( 
${VIVALDI_BASE_URI}armhf.deb )"
+RE="\barm64\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" arm64? ( 
${VIVALDI_BASE_URI}arm64.deb )"
+RE="\bx86\b"; [[ ${KEYWORDS} =~ ${RE} ]] && SRC_URI+=" x86? ( 
${VIVALDI_BASE_URI}i386.deb )"
+
+LICENSE="Vivaldi"
+SLOT="0"
+IUSE="proprietary-codecs widevine"

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

2022-08-11 Thread James Le Cuirot
commit: b24ced402887f8bcac16465e7276736d7ca43c43
Author: James Le Cuirot  gentoo  org>
AuthorDate: Thu Aug 11 20:51:29 2022 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Thu Aug 11 20:51:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b24ced40

www-client/vivaldi: Drop old 5.3.2679.73

Signed-off-by: James Le Cuirot  gentoo.org>

 www-client/vivaldi/Manifest   |   2 -
 www-client/vivaldi/vivaldi-5.3.2679.73.ebuild | 206 --
 2 files changed, 208 deletions(-)

diff --git a/www-client/vivaldi/Manifest b/www-client/vivaldi/Manifest
index d2900e840f84..d5be04ee884c 100644
--- a/www-client/vivaldi/Manifest
+++ b/www-client/vivaldi/Manifest
@@ -1,8 +1,6 @@
 DIST vivaldi-stable_5.3.2679.70-1_amd64.deb 89908668 BLAKE2B 
e03200cc5d6b4fffb760ff2192f545f54d99d40cbc799ce3b57e1e2766524f32e4b282dde5b5dc9c06d5582d03d80350c734944f36f7b61614a7c8cc7de98d10
 SHA512 
6cdfc8f9d00eb07b68a0d700f57b5f8135b3c0c166c97e8d5d100ca3e0c00965a5ea8bcf0e5e5d206f12fd4bb7bfcd867539f6a8c82fe024aadf63776ed481e0
 DIST vivaldi-stable_5.3.2679.70-1_arm64.deb 81633136 BLAKE2B 
6cfad0ec2f47a0228b6e5cacd689540cf2a26606433906ab79f298897fcea870b579459dfc84fed5c6933ea53d70de558fec4a8730d67d69c7b7293c5ec7c4ca
 SHA512 
3fc2570c32189088d24d1e9e9d3ad2b16daec281a85de1bffc0161e4320e846f896cfc08c39ba4b7c42505d79f7f5d2b15c5e03e62a91e333c891bf0f090488e
 DIST vivaldi-stable_5.3.2679.70-1_armhf.deb 81281828 BLAKE2B 
ac4ae8ca2ed316dcb4d41ac5448c3adbc2ad9763b7ce63d2e11244e5fc8e3629e0a3a5616730b9d039c23b04d6a201b69e6de5b754298d2afee5cd1589cd9aa9
 SHA512 
5c648cf881a59973cd95be789b2cd112f15518f41577bed4c934f6be84f8b540a26c27896decf855c0f3a438d5c78232ae1ef93835ef80ddc1d413759abde0a4
-DIST vivaldi-stable_5.3.2679.73-1_arm64.deb 81662184 BLAKE2B 
521a72a52cd2bf90f63f60b5a2bf1e08baa9e7662041438da812612c20aaeeba9488504882d7c9fe5e82960e89377a13d9c3e7be09c1a6fbb9f18715f0e9a42a
 SHA512 
42105dfac48ce9177937d85f3ebd8fee146a333e528baab4f413f73db60e93cedcc57c0fb888eb00046a25892fe6a2193adde9d3affab3012cfd159ca7c4cd61
-DIST vivaldi-stable_5.3.2679.73-1_armhf.deb 81299184 BLAKE2B 
e432b093c0d9bcedd2eb8dce6495a7bb59c0cf8f9ea6a537c142df762fa0a9483c7bf1f81083ddfffcdf0088197edfe6a2ddfd6f35c1d49df5b749470191b4a6
 SHA512 
f89a30f1c6ca35927989d2c08e9d4a1e61a4dc717cccd590bf05421fde795a743ab4f96de1c5b4c2e91c1ca3de9270fd6cd94d9a2e211f24d34050242f43e341
 DIST vivaldi-stable_5.4.2753.28-1_amd64.deb 97607844 BLAKE2B 
98b4d55931f9809c20dcebb162d30c83375af725fc11ca72ebcf61c2a3ff91de563bfe127ab507224255f5c6865df76d3ea9b141827981e5a78cb42c1cbdbc5b
 SHA512 
88b43a8378986b608ae7bd840b55f5c98d83a4614a5fda7ee4ceb03923511edf7128dfbe138a320ecc27dd047db21f5e31f41f42e298a5ede93b564f7efec800
 DIST vivaldi-stable_5.4.2753.28-1_arm64.deb 87875228 BLAKE2B 
88c43b2f07f81bc809bb5a3a7e3bd4cc4fb2b85e86f8d17518cba1e9769ce550bd7c08e74b1f9c11cbc003674a23b359bd4b70ecc67ed2eb70b18a7f50ce86bb
 SHA512 
2bef4d5fa85ce14b068dc4528984321dc1d21f05fad266d6247a9afaecae9e3f740ff9a0acad633d9f189b2c979f6c3be7120c981b528ee325fc04eb4d76ea70
 DIST vivaldi-stable_5.4.2753.28-1_armhf.deb 88386840 BLAKE2B 
1f11e37da7cb0d940d70d652109a6aa71952e00669e3a7416e1c3a2c1406109948273f6eed56eb5e2cb7e16417746a08b4ad5584a45b94d7527308ae155a97a2
 SHA512 
596f3d3b6deb2aef8b95892b510c0486ddb26f1babf581f5fc2701872108804efeede4107b85a399c0ddbd1f338bc58492f3458028a4dc573b74fc1df8ad34ef

diff --git a/www-client/vivaldi/vivaldi-5.3.2679.73.ebuild 
b/www-client/vivaldi/vivaldi-5.3.2679.73.ebuild
deleted file mode 100644
index afa3518fdc1e..
--- a/www-client/vivaldi/vivaldi-5.3.2679.73.ebuild
+++ /dev/null
@@ -1,206 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CHROMIUM_VERSION="102"
-CHROMIUM_LANGS="
-   af
-   am
-   ar
-   az
-   be
-   bg
-   bn
-   ca
-   cs
-   da
-   de
-   de-CH
-   el
-   en-GB
-   en-US
-   eo
-   es
-   es-419
-   es-PE
-   et
-   eu
-   fa
-   fi
-   fil
-   fr
-   fy
-   gd
-   gl
-   gu
-   he
-   hi
-   hr
-   hu
-   hy
-   id
-   io
-   is
-   it
-   ja
-   jbo
-   ka
-   kab
-   kn
-   ko
-   ku
-   lt
-   lv
-   mk
-   ml
-   mr
-   ms
-   nb
-   nl
-   nn
-   pa
-   pl
-   pt-BR
-   pt-PT
-   ro
-   ru
-   sc
-   sk
-   sl
-   sq
-   sr
-   sr-Latn
-   sv
-   sw
-   ta
-   te
-   th
-   tr
-   uk
-   ur
-   vi
-   zh-CN
-   zh-TW
-"
-
-inherit chromium-2 desktop unpacker xdg
-
-VIVALDI_PN="${PN/%vivaldi/vivaldi-stable}"
-VIVALDI_HOME="opt/${PN}"
-DESCRIPTION="A browser for our friends"
-HOMEPAGE="https://vivaldi.com/;
-
-if [[ ${PV} = *_p* ]]; then
-   DEB_REV="${PV#*_p}"
-else
-   DEB_REV=1
-fi
-
-KEYWORDS="-* ~arm ~arm64"

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

2022-08-11 Thread Michał Górny
commit: bd03fca23a8e1ef990b14db3464c2fedd28a60b1
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 13:29:51 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:36:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd03fca2

sys-kernel/vanilla-kernel: Bump to 5.10.136

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

 sys-kernel/vanilla-kernel/Manifest |   2 +
 .../vanilla-kernel/vanilla-kernel-5.10.136.ebuild  | 134 +
 2 files changed, 136 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 78380c800ed5..813d3d5bf47b 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -17,6 +17,8 @@ DIST kernel-x86_64-fedora.config.5.18.9-gentoo 221797 BLAKE2B 
1873ffeab78c7e9a81
 DIST kernel-x86_64.config.5.4.21 184907 BLAKE2B 
0eb2b07c14cea7545350fcdf3a94f2a531f0137c502ebda9299cacf44da5385686e2049b480b28bc153c9d413d453cfe682b9655eefe70428cb720f57c7bd200
 SHA512 
f3b3ee6841555ac3a9cc11536a7d44e1a5a8df2bab14ba341fda7df1ceb0de45cf1c799a1d54a64f2858fd1272d348bb52cf269ffa396878c5402baf2730237f
 DIST linux-5.10.135.tar.sign 993 BLAKE2B 
a544cdf24ef0f1dc5ddc5622d8f00dc3af0fc38604d955c7a8b54e0c1fa7f7d60197551710cc2ab0bad69fc06d2077e5b1b796259fe29665d558b5fe656beff1
 SHA512 
ef565e3ae98acf58fa871e701b8a4ad2a3fd1f5aae109685cf1bd5cf0d2fca3f8361ca5d0d14613311a1bfc5069013249ece0f6eec4b88b2c4157caeca0686d6
 DIST linux-5.10.135.tar.xz 120470192 BLAKE2B 
121edb3af02eb4c00195e2c4e1144636bd33fb89143fe5bf46acd924bfd00665ee17837dd2426b9a9b16ad0725f1a944350446cbd00276af30623baea84bda67
 SHA512 
6b945179f375db6d76e3761ddc5b64a987c27bdf9d52694ede3a158f265710fe5a8f4f4b2752641076e64a62160d501081b560675eb855305703e1fd79629d47
+DIST linux-5.10.136.tar.sign 993 BLAKE2B 
2b81f6dd2520fe5b5ed78a583a8451bf5f9924466733b1920586e1250816d9d26bbd8a1bad8141bed69982e15eec2e94cf6785439b691b9afaee5e83290cd5a6
 SHA512 
9d46aee3bf910a95832d63422f74f15073a1c126ba5f056251e317989865dfb4ccf1fccfc8584ecc491e810f8cc021122e454a0854f0db67e3267ff845eac4c9
+DIST linux-5.10.136.tar.xz 120473116 BLAKE2B 
b68c62f0ba53c0cc839bb5be07f0e4f458a565c47c627b6274e50a4b95e08276a30b9bb821bd17074bdbc8ea4a6f463772922a0b6445adc3f64dd3e9858db108
 SHA512 
10196bfa692646cd60885524fa8dbbb0f401bef83f0bb85415d4b4838b259fb2ae446e76b7c211b46c19d9f11077ecde1d47de97be453e2f06826231764f147e
 DIST linux-5.15.59.tar.sign 991 BLAKE2B 
80fe92152ba1ec23c4cd3b1c3edf6ca8b4c381dcb4f8735daaa6dc1d417137b186a08d3d1af0fe9cdf7b3a562a7cd154b8bd9c9a28fe708613f1adbe932e56dd
 SHA512 
34b52887f668c479f530120d0cbab7f4d30bb01cb204ff158b4908db5facf75d51722d2adab66b31dd2dbecf98c707ad0736e59d63ceeb3c27a4220c7633e027
 DIST linux-5.15.59.tar.xz 126404076 BLAKE2B 
c601b25663f73438daa40f1a72039a4ca6a027cd356a9cca3f00341a8aab0845893d4ac848a43a34758c0959e38b11ac885531cf1472b18f3373ba6c426b
 SHA512 
1dd5badf83bdde38dd43fe1f678b883200b6b4b52547281ebd0780ea1cc628138e5798e21a2eb4bd2fb71755808017fdff5c85259e2c3211da79fcc8fb87361c
 DIST linux-5.18.16.tar.sign 991 BLAKE2B 
5309ae0d80fbec35f4fcdfb82e3f1fd99c96ad53b82efe4ef95f0f7ee5f04be1e97f69bfe664080ff92fe21b327dc72e723515c0fe43fa52f6a43d1894454a34
 SHA512 
01edeffc25b4221907f0b57aca694361ff5cf5fd6235750422b23d95241b2a1b2cd3ba0fa4b8a895e1996df49d577654a16cb302c798e8c7365ec536088f6660

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.10.136.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.10.136.ebuild
new file mode 100644
index ..718e3ea82627
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.10.136.ebuild
@@ -0,0 +1,134 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build toolchain-funcs verify-sig
+
+MY_P=linux-${PV}
+# https://koji.fedoraproject.org/koji/packageinfo?packageID=8
+CONFIG_VER=5.10.12
+CONFIG_HASH=836165dd2dff34e4f2c47ca8f9c803002c1e6530
+GENTOO_CONFIG_VER=g1
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz
+   -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz
+   verify-sig? (
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.sign
+   )
+   amd64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config
+   -> kernel-x86_64-fedora.config.${CONFIG_VER}
+   )
+   arm64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config
+   -> kernel-aarch64-fedora.config.${CONFIG_VER}
+   )
+   ppc64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config
+ 

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

2022-08-11 Thread Michał Górny
commit: 37181705cb84af387d962e1a8cdf650b9f233277
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 20:34:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:36:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37181705

sys-kernel/gentoo-kernel-bin: Bump to 5.10.136

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   6 +
 .../gentoo-kernel-bin-5.10.136.ebuild  | 135 +
 2 files changed, 141 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index cd2ac811ee67..230574e7dd1d 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -1,5 +1,7 @@
 DIST genpatches-5.10-144.base.tar.xz 3907764 BLAKE2B 
41b8ce08ca73879811e11d91f9365ddfbbc15617a4b825ba00144e71feb86e0ef24b3418b77b203a13ad6299237085a2a1c796beb6ac9aa98a5990a39fd1dd02
 SHA512 
1b946439d9cf6d97df1acadd7b36ef657fac40ff98b31e2237f3cc412e9efd6d4d1d409339af9d48779dbd9d88aac124f67e07afcf99e7760f93afb6d226131c
 DIST genpatches-5.10-144.extras.tar.xz 3868 BLAKE2B 
0d956a61fb525b8ce3b14c215a0c0a6ffa46f21fcf87a63884d31418946a64de0c680472a62fc9bc0d83f67b49dfe88ed373e3ff2ba2f369a0909e3947b27c16
 SHA512 
c870f84b1a4ae7b95518d08ab46fc7e632a47884e43a9c774be34335ebf825388136ed360f5129c8c97567600e79ce2889d64d9b60a1a8bd2a5b4052e74e2973
+DIST genpatches-5.10-145.base.tar.xz 3914420 BLAKE2B 
0d6f00cfba2ea5bc70bf44549e82b79d8e7a59b8e34ad7b94dc97c0ab1059ad005b15d09ab51fd9dcf65243dbf0abc0221d26ee06708adacc7dcc7aa18e7939a
 SHA512 
4b2cc1f37d0dee2bb8181be5ea4030b3c9f2035c688cba3e5d512584486158cd7e1d944d089bff7a28d55d1353ea500de6adaaaf282767fadb1f1d206a2682c7
+DIST genpatches-5.10-145.extras.tar.xz 3868 BLAKE2B 
1e6d3c0402bd46656c9f524ff9b309f4d8f4ba85be0dcf210774b5975d85d2098301ff8e6b33fe419d1bc70faf0a4d1d7572fa5c70122a5508a66790a2f18c4b
 SHA512 
d51bcafbcd6cfa70b9aefddb416020363720c152944edba3a41ae152c9b3a0ef1ca3fc70252d9a75b0b636c3480890aa8bd727e18b699d789ad5b08fd065cf7a
 DIST genpatches-5.15-63.base.tar.xz 2523256 BLAKE2B 
99979433623fad89d9a237f80f126e43f8d3a013cbf0ba77c3b5a4f2d02ee5bddc8d52be4a88f758225fd0ddc6a26946f9b08011b75404830fe44132e5fa5297
 SHA512 
4c582e0348e8d1d8ff7747c49a09a4fedd9c6b64e7f40c13fedfef0407557aaaf65cd7fb45a41b8175c8b15fe274261960f7af74459e353329fe378bfaef0fe6
 DIST genpatches-5.15-63.extras.tar.xz 3932 BLAKE2B 
372a8997239e0c1cb97db2fe02e5c3e2f8f26c29705f8210d1eb30168fa0a7720949b64e399d4846b185ddd2141171cb13e5da5ae85e620e382262256a6c
 SHA512 
461eb99b6e124a648bdaacb015c7b413e102cb28768bb149a154d1c4fc570ae241a73c5bc64024b385ac8eac831a6bf65e79bd93f168fb93f94b0fae133080f7
 DIST genpatches-5.18-20.base.tar.xz 776528 BLAKE2B 
3d7a0cf2c6f9a5d28049c42b6e2ffccbb707232aef139c9b9aae33c37d6cef22b45261094ac5c3e23019123709c642c69d3f181683d790305f97d72d93a48177
 SHA512 
db5a44c919f29f0c37cd21384a5ffa6b528575f5b5dbf71800d3a6277f793ad4ee6a6d04a35c3ef5f90906133a91f4a0e23ae43e86f678a25b23bb1c77761c22
@@ -14,6 +16,10 @@ DIST gentoo-kernel-5.10.135-1.amd64.xpak 67502330 BLAKE2B 
d138fd2cd1ff26e3256277
 DIST gentoo-kernel-5.10.135-1.arm64.xpak 60985844 BLAKE2B 
a8e22cec67675594160e7f661a3952e59a0c53338164f70b23b9acdc8a304b1414e188fd51bb96de1972422654c966a78add201f38d3f2f3de3f2745d934ea97
 SHA512 
c5189162285035a036e23e5075554dd5aab1e8db9df6425f3409455cae61dd5a43a97fc3a47f287699399242ec4f841bb35b5e5f441d491f7de72e7448082326
 DIST gentoo-kernel-5.10.135-1.ppc64le.xpak 55988769 BLAKE2B 
f77eede27c91ce30fa556abc8a2e7af42aa984d8e5b973d0e9f3fde77c05790ce891d44d76d6e8c7fdbff608e3be80871b3afdda3b30c36abb3127fe9007c28a
 SHA512 
05a09e9630c427b23905cff1074d4007ee0aa4391752419dba4e0f3dadc6fe913b394dcb76424e303943df54fe14a7ac8fd10d9755cf77dee64f2672c87b3322
 DIST gentoo-kernel-5.10.135-1.x86.xpak 58295706 BLAKE2B 
d175103a6756af83a12ed720750178075414a9c4ee899709018b3f65863cf99034f29e9d1cbb967078b207f72e45f961cfd34f35e6d4beb508fa984239975cbb
 SHA512 
998a4a6419f05e7309070449a4182cd8652634c8d44a4e38e266c0d848f8afd4ebe115b4c2ee443882a7dadc3aaa4505199a7091fba64815c4cc55101f5f7c62
+DIST gentoo-kernel-5.10.136-1.amd64.xpak 67498296 BLAKE2B 
55b5f54f3d2c9550bc845c3ac2ad8a453d7dfd1709f4be6f4e2002a2f393fa55e88eddfe03cf680cb922798e3f2be348772b132c3648f19dd7d391d2f15b862b
 SHA512 
54f6140e7b5c41c68843c1c7b52da8a3acddd173d1dbff3e2fdd4cf28153497d8c13bd164442479f23ef57212f60a452a9832533b7cd6874766298fb6342e1f0
+DIST gentoo-kernel-5.10.136-1.arm64.xpak 60968266 BLAKE2B 
8340fbbda0ab5a7c8516e19a0bfb57ec2725db2f17b1220aba126292d78820a15d2bf754a257be537ffc4ab423457914283ebfbeaf083cd7d0c1b3dcc74029ec
 SHA512 
9b142d6d55993f61460fb0eaa2912b96121b6c810403fa7f0316d8048111350574c9855e9a7877701d77705de28b70a0cdef39420e3ab1d39518504ceae110ba
+DIST gentoo-kernel-5.10.136-1.ppc64le.xpak 56047302 BLAKE2B 
42ea77f7788bbe8bca138e52d0a87213f16535baecc5a02663cc059bcd1728cccd694f40932fb2b1db60bc66fbb58870fdac8122f51e0bee6009652dbda90786
 SHA512 

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

2022-08-11 Thread Michał Górny
commit: ea663a4255d8af9b826515db7451a661c609c73f
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 13:29:30 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:36:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea663a42

virtual/dist-kernel: Bump to 5.4.210

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

 virtual/dist-kernel/dist-kernel-5.4.210.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/virtual/dist-kernel/dist-kernel-5.4.210.ebuild 
b/virtual/dist-kernel/dist-kernel-5.4.210.ebuild
new file mode 100644
index ..2e0a7cc6b4b7
--- /dev/null
+++ b/virtual/dist-kernel/dist-kernel-5.4.210.ebuild
@@ -0,0 +1,19 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Virtual to depend on any Distribution Kernel"
+HOMEPAGE=""
+SRC_URI=""
+
+LICENSE=""
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   || (
+   ~sys-kernel/gentoo-kernel-${PV}
+   ~sys-kernel/gentoo-kernel-bin-${PV}
+   ~sys-kernel/vanilla-kernel-${PV}
+   )"



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

2022-08-11 Thread Michał Górny
commit: ed2e8c23095081aeeda973236758fe35a898aed0
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 13:29:29 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:35:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed2e8c23

sys-kernel/gentoo-kernel: Bump to 5.4.210

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

 sys-kernel/gentoo-kernel/Manifest  |   2 +
 .../gentoo-kernel/gentoo-kernel-5.4.210.ebuild | 100 +
 2 files changed, 102 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index 61ab2f5f39ba..548aff9d5d69 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -8,6 +8,8 @@ DIST genpatches-5.4-208.base.tar.xz 4869104 BLAKE2B 
3e9038248ddcfd22d67248e65199
 DIST genpatches-5.4-208.extras.tar.xz 1812 BLAKE2B 
3e5b8cae462a748eb36af66c4ebc393fc09882a1fa23cce6f82a078ea5598c23c2ecbe7029d6e2060735fe342b3a7bb5c235dcf16081bba0f05a6b88501af991
 SHA512 
b550dce1b6d090959eaacd523ee1be258fbf9db84309054c3cce9beb0bae710ff2e1c23f480310072fb08f7456bdf825b3ba76d57e999fc1597368df93e65677
 DIST genpatches-5.4-214.base.tar.xz 4943544 BLAKE2B 
5b7d27e1b520cdaff98dc9fe6ddfe102a9c09fb8a5fd36a57d5f36ebbd7639ce1a59dbeb55e71ede1129a3890318b740b24bc654716f81840d6d2e6d8a95de20
 SHA512 
6494bb7d1b9ef0e46fa31a164b3c807338463dcd4d8108e5a0c5d944196f1b3e1df51192f733861514a302af3eefee530b1e173dec9b6ddd3bb0120e47714fbf
 DIST genpatches-5.4-214.extras.tar.xz 1812 BLAKE2B 
f82f9d703ed7fafa1abae01e9ab15db88b318ef84254360d105490bc727244795064fc6b21fbf771626da9adb62aba44a170165518fae58d8adfde7319e1971c
 SHA512 
a3d8f94e4d9b7e5c29be7c1b336273f89ed38bbd4c21e6b34a51421ef71581a6e8ecc15751fe0bd7dbc1c98a754d1491304383f21925c0018b6e57891f76f303
+DIST genpatches-5.4-215.base.tar.xz 4945872 BLAKE2B 
7a0e2098f86258afe07e27a460aa8602f62fe646c918668d0f1bc03307e009ea275de198445c19a5e0727c459bdd00379c1bf86eab44265eb73a072e295b82ce
 SHA512 
dcd26f17ecbda5b2918e98f5cec369ff9e98fa323ae39f0172bf771cdb2125312d93bbc2f1d5f46cb9ba381ff9d0fd339ecc0eac8000db90c8c2b0e07016c313
+DIST genpatches-5.4-215.extras.tar.xz 1812 BLAKE2B 
26646412d59a947f1ed77792269296818ed1189aad3f30748e877e947119bd87a6a916f3ecb61a6effaa7346a31e1844eba123144e5055e5567e0be315578225
 SHA512 
bb45c3f3c617c9446390c15296e02ff0d01d67d96ff8e941fe14a1658e2e6845f2918f2c716cf7739dc5a0bf2dcfabb19f55bb77f51ee8a7b34c5ed2b263a959
 DIST gentoo-kernel-config-g1.tar.gz 4283 BLAKE2B 
44dd51ec45ebc71bffcd6d85a2fefba053f7bce8035057f0bbe928e24816ad4ba03c9bf67dcfcd6d6d1833c0a2ea93e0fd486c2093664dc41ccce316e1e60588
 SHA512 
3a45f28df9d457df0fe0d185da8b10f4e35f49dad75075e041e8cf3cf6972fecc8145cd557b0bf3a8dea20ddffae0194f88e61c1e5098fa0a5ca301d40aeea2e
 DIST gentoo-kernel-config-g2.tar.gz 4359 BLAKE2B 
965392fb5b3c1290c596d3e8593cfcf54e76cedd47de335c1b9658c1b35649af18a94639bf3df84507c797e6d7ea074f7f2a2579d2d01073478b30a4f167b2aa
 SHA512 
d1bdef2e817799fcebbcdae1f3b1666f8ca70b0d5adca74014dd665f6b02c81b839220d8fe3794ea1202e1f2589d281344699864207c98b95d23a1d1f03bd42d
 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B 
a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d
 SHA512 
7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.210.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.210.ebuild
new file mode 100644
index ..ffd40f039fd9
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.210.ebuild
@@ -0,0 +1,100 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 5 ))
+# https://koji.fedoraproject.org/koji/packageinfo?packageID=8
+CONFIG_VER=5.4.21
+CONFIG_HASH=2809b7faa6a8cb232cd825096c146b7bdc1e08ea
+GENTOO_CONFIG_VER=g1
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   
https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz
+   -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz
+   amd64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64.config
+   -> kernel-x86_64.config.${CONFIG_VER}
+   )
+   arm64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64.config
+   -> kernel-aarch64.config.${CONFIG_VER}
+   )
+   ppc64? (
+   

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

2022-08-11 Thread Michał Górny
commit: eeb4326ee2beeb3e54d13e317a5a24fd0aad608c
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 13:30:01 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:36:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeb4326e

sys-kernel/gentoo-kernel: Bump to 5.10.136

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

 sys-kernel/gentoo-kernel/Manifest  |   2 +
 .../gentoo-kernel/gentoo-kernel-5.10.136.ebuild| 131 +
 2 files changed, 133 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index 548aff9d5d69..e7ec62a73da3 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -1,5 +1,7 @@
 DIST genpatches-5.10-144.base.tar.xz 3907764 BLAKE2B 
41b8ce08ca73879811e11d91f9365ddfbbc15617a4b825ba00144e71feb86e0ef24b3418b77b203a13ad6299237085a2a1c796beb6ac9aa98a5990a39fd1dd02
 SHA512 
1b946439d9cf6d97df1acadd7b36ef657fac40ff98b31e2237f3cc412e9efd6d4d1d409339af9d48779dbd9d88aac124f67e07afcf99e7760f93afb6d226131c
 DIST genpatches-5.10-144.extras.tar.xz 3868 BLAKE2B 
0d956a61fb525b8ce3b14c215a0c0a6ffa46f21fcf87a63884d31418946a64de0c680472a62fc9bc0d83f67b49dfe88ed373e3ff2ba2f369a0909e3947b27c16
 SHA512 
c870f84b1a4ae7b95518d08ab46fc7e632a47884e43a9c774be34335ebf825388136ed360f5129c8c97567600e79ce2889d64d9b60a1a8bd2a5b4052e74e2973
+DIST genpatches-5.10-145.base.tar.xz 3914420 BLAKE2B 
0d6f00cfba2ea5bc70bf44549e82b79d8e7a59b8e34ad7b94dc97c0ab1059ad005b15d09ab51fd9dcf65243dbf0abc0221d26ee06708adacc7dcc7aa18e7939a
 SHA512 
4b2cc1f37d0dee2bb8181be5ea4030b3c9f2035c688cba3e5d512584486158cd7e1d944d089bff7a28d55d1353ea500de6adaaaf282767fadb1f1d206a2682c7
+DIST genpatches-5.10-145.extras.tar.xz 3868 BLAKE2B 
1e6d3c0402bd46656c9f524ff9b309f4d8f4ba85be0dcf210774b5975d85d2098301ff8e6b33fe419d1bc70faf0a4d1d7572fa5c70122a5508a66790a2f18c4b
 SHA512 
d51bcafbcd6cfa70b9aefddb416020363720c152944edba3a41ae152c9b3a0ef1ca3fc70252d9a75b0b636c3480890aa8bd727e18b699d789ad5b08fd065cf7a
 DIST genpatches-5.15-63.base.tar.xz 2523256 BLAKE2B 
99979433623fad89d9a237f80f126e43f8d3a013cbf0ba77c3b5a4f2d02ee5bddc8d52be4a88f758225fd0ddc6a26946f9b08011b75404830fe44132e5fa5297
 SHA512 
4c582e0348e8d1d8ff7747c49a09a4fedd9c6b64e7f40c13fedfef0407557aaaf65cd7fb45a41b8175c8b15fe274261960f7af74459e353329fe378bfaef0fe6
 DIST genpatches-5.15-63.extras.tar.xz 3932 BLAKE2B 
372a8997239e0c1cb97db2fe02e5c3e2f8f26c29705f8210d1eb30168fa0a7720949b64e399d4846b185ddd2141171cb13e5da5ae85e620e382262256a6c
 SHA512 
461eb99b6e124a648bdaacb015c7b413e102cb28768bb149a154d1c4fc570ae241a73c5bc64024b385ac8eac831a6bf65e79bd93f168fb93f94b0fae133080f7
 DIST genpatches-5.18-20.base.tar.xz 776528 BLAKE2B 
3d7a0cf2c6f9a5d28049c42b6e2ffccbb707232aef139c9b9aae33c37d6cef22b45261094ac5c3e23019123709c642c69d3f181683d790305f97d72d93a48177
 SHA512 
db5a44c919f29f0c37cd21384a5ffa6b528575f5b5dbf71800d3a6277f793ad4ee6a6d04a35c3ef5f90906133a91f4a0e23ae43e86f678a25b23bb1c77761c22

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.136.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.136.ebuild
new file mode 100644
index ..8cc3f5803876
--- /dev/null
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.10.136.ebuild
@@ -0,0 +1,131 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 9 ))
+# https://koji.fedoraproject.org/koji/packageinfo?packageID=8
+CONFIG_VER=5.10.12
+CONFIG_HASH=836165dd2dff34e4f2c47ca8f9c803002c1e6530
+GENTOO_CONFIG_VER=g1
+
+DESCRIPTION="Linux kernel built with Gentoo patches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   
https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz
+   -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz
+   amd64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64-fedora.config
+   -> kernel-x86_64-fedora.config.${CONFIG_VER}
+   )
+   arm64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64-fedora.config
+   -> kernel-aarch64-fedora.config.${CONFIG_VER}
+   )
+   ppc64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le-fedora.config
+   -> kernel-ppc64le-fedora.config.${CONFIG_VER}
+   )
+   x86? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686-fedora.config
+   -> 

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

2022-08-11 Thread Michał Górny
commit: 7a175f053eee7aacfc8605b751ed4d92f186415c
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 20:34:19 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:36:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a175f05

sys-kernel/gentoo-kernel-bin: Bump to 5.4.210

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   6 +
 .../gentoo-kernel-bin-5.4.210.ebuild   | 135 +
 2 files changed, 141 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 24b9106cbdb7..cd2ac811ee67 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -8,6 +8,8 @@ DIST genpatches-5.4-208.base.tar.xz 4869104 BLAKE2B 
3e9038248ddcfd22d67248e65199
 DIST genpatches-5.4-208.extras.tar.xz 1812 BLAKE2B 
3e5b8cae462a748eb36af66c4ebc393fc09882a1fa23cce6f82a078ea5598c23c2ecbe7029d6e2060735fe342b3a7bb5c235dcf16081bba0f05a6b88501af991
 SHA512 
b550dce1b6d090959eaacd523ee1be258fbf9db84309054c3cce9beb0bae710ff2e1c23f480310072fb08f7456bdf825b3ba76d57e999fc1597368df93e65677
 DIST genpatches-5.4-214.base.tar.xz 4943544 BLAKE2B 
5b7d27e1b520cdaff98dc9fe6ddfe102a9c09fb8a5fd36a57d5f36ebbd7639ce1a59dbeb55e71ede1129a3890318b740b24bc654716f81840d6d2e6d8a95de20
 SHA512 
6494bb7d1b9ef0e46fa31a164b3c807338463dcd4d8108e5a0c5d944196f1b3e1df51192f733861514a302af3eefee530b1e173dec9b6ddd3bb0120e47714fbf
 DIST genpatches-5.4-214.extras.tar.xz 1812 BLAKE2B 
f82f9d703ed7fafa1abae01e9ab15db88b318ef84254360d105490bc727244795064fc6b21fbf771626da9adb62aba44a170165518fae58d8adfde7319e1971c
 SHA512 
a3d8f94e4d9b7e5c29be7c1b336273f89ed38bbd4c21e6b34a51421ef71581a6e8ecc15751fe0bd7dbc1c98a754d1491304383f21925c0018b6e57891f76f303
+DIST genpatches-5.4-215.base.tar.xz 4945872 BLAKE2B 
7a0e2098f86258afe07e27a460aa8602f62fe646c918668d0f1bc03307e009ea275de198445c19a5e0727c459bdd00379c1bf86eab44265eb73a072e295b82ce
 SHA512 
dcd26f17ecbda5b2918e98f5cec369ff9e98fa323ae39f0172bf771cdb2125312d93bbc2f1d5f46cb9ba381ff9d0fd339ecc0eac8000db90c8c2b0e07016c313
+DIST genpatches-5.4-215.extras.tar.xz 1812 BLAKE2B 
26646412d59a947f1ed77792269296818ed1189aad3f30748e877e947119bd87a6a916f3ecb61a6effaa7346a31e1844eba123144e5055e5567e0be315578225
 SHA512 
bb45c3f3c617c9446390c15296e02ff0d01d67d96ff8e941fe14a1658e2e6845f2918f2c716cf7739dc5a0bf2dcfabb19f55bb77f51ee8a7b34c5ed2b263a959
 DIST gentoo-kernel-5.10.135-1.amd64.xpak 67502330 BLAKE2B 
d138fd2cd1ff26e3256277b8fd2b45037983b0956947d64b112e639cb555ca1c4de055abdbf96c12d00eadc6e32a607ed1bbb45d9b3374a67385d5889b433fcf
 SHA512 
5bfdef5d83ea108f12b21cd480f1b35bed751c56c42347e3f54a4f73bc3dac14be61c2133ce581e3cac685c9a4ff40d5f26c79a0117c4b1858df35c0cbd24816
 DIST gentoo-kernel-5.10.135-1.arm64.xpak 60985844 BLAKE2B 
a8e22cec67675594160e7f661a3952e59a0c53338164f70b23b9acdc8a304b1414e188fd51bb96de1972422654c966a78add201f38d3f2f3de3f2745d934ea97
 SHA512 
c5189162285035a036e23e5075554dd5aab1e8db9df6425f3409455cae61dd5a43a97fc3a47f287699399242ec4f841bb35b5e5f441d491f7de72e7448082326
 DIST gentoo-kernel-5.10.135-1.ppc64le.xpak 55988769 BLAKE2B 
f77eede27c91ce30fa556abc8a2e7af42aa984d8e5b973d0e9f3fde77c05790ce891d44d76d6e8c7fdbff608e3be80871b3afdda3b30c36abb3127fe9007c28a
 SHA512 
05a09e9630c427b23905cff1074d4007ee0aa4391752419dba4e0f3dadc6fe913b394dcb76424e303943df54fe14a7ac8fd10d9755cf77dee64f2672c87b3322
@@ -28,6 +30,10 @@ DIST gentoo-kernel-5.4.209-1.amd64.xpak 61550465 BLAKE2B 
4bbb9fc28663096cabf91f9
 DIST gentoo-kernel-5.4.209-1.arm64.xpak 57941118 BLAKE2B 
a0696286b4b7cf9e12408351ba008ef13f1a82e15cbd0c60a2f79e49068ab1b7c8bb9f8628e52539513e7a77972e284878a12fdc82c2b6893e39d5185e5b1980
 SHA512 
fe7e71321b5cb48daa388c4fa003ab302818dfda5d240a88d2d77fd77cb01ce0c6077a0c1d7cbf765758483ffce20751616dafa2b402c095741cffb86436dd41
 DIST gentoo-kernel-5.4.209-1.ppc64le.xpak 55272363 BLAKE2B 
bd869e67557e3326a78f019b6df449e6fa2f91d5312931ec8533061e7132f96d27200ef1e6217de5cdddeb327227a8f2ef4d7ecb92a88b495b1861eacf6ef8ea
 SHA512 
5639a97831d86aa82dc0bfddb7fb01ee56881ead03e6509d3f6984a49183982322b3054b3ab7cee30d3222f795edbb8e79041c13c30a95bae2f148432b8fab51
 DIST gentoo-kernel-5.4.209-1.x86.xpak 53372138 BLAKE2B 
848146fafb6b0405be32e59a2d7325668e4df197bd2e769ec73125ee3c66b65e10c505553dc6f77aaf20160205b4fcf1d45b666edf0eb17e593456ea60614d06
 SHA512 
6a80303f1ddfa53364ffa389ee9d2852001143afb6b8f3ca682df49b5cb44c3ffdbde80b6f4eca65a391259cd1a4abfd90958675446bd0d05152727e92fd
+DIST gentoo-kernel-5.4.210-1.amd64.xpak 61539075 BLAKE2B 
96bb8b29f443ea35291e19a880ed5c1a2bc9858cd083e1b5c5f4b47def976f2624e3627a31443c7d8d3e594df30c3264b0246ee20601dfd01db0c8dac170af67
 SHA512 
a83cc67fcdddb4f5a267815ab188bb6f49b40e3b8074c524ffaf238b7211f00cb0cca81ba33de4727f01dd218de6c6ff9fee1db0ff7abe43d06a7b6656700a73
+DIST gentoo-kernel-5.4.210-1.arm64.xpak 57952623 BLAKE2B 

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

2022-08-11 Thread Michał Górny
commit: 7d0c621b18f9890d06b6b6ea8a85434ca6b8f194
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 13:29:17 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:35:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7d0c621b

sys-kernel/vanilla-kernel: Bump to 5.4.210

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

 sys-kernel/vanilla-kernel/Manifest |   2 +
 .../vanilla-kernel/vanilla-kernel-5.4.210.ebuild   | 108 +
 2 files changed, 110 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 460243c63862..78380c800ed5 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -25,3 +25,5 @@ DIST linux-5.4.203.tar.sign 991 BLAKE2B 
4e13305b908e1e158c61ae0667186cfd42e7dac2
 DIST linux-5.4.203.tar.xz 112925472 BLAKE2B 
90467bcc6ca564affaa57adb0b0e0f7358dfedcb5d53309b987b239acadf6f9b5c77c4f265c7d5f8e6a6a42e9e5ed5a16cc17baeae004e2b55470c9d786de6ae
 SHA512 
a7c7373cf5abe9ee48920b3f314020c9c552a8cd4e2eff67a32ef2f8300a789e7a7e9b78fd1a57b8a017ccc37a2d970b4abde5a85a7bd01766fc89af64cdbb69
 DIST linux-5.4.209.tar.sign 991 BLAKE2B 
e750fa4ffd74c55e555201c23c961bb056171bd009131132868a1d0af0fe878bc798d805461162e40009014661ce91f9da2aee863286bd82b27b359c701e8beb
 SHA512 
6647e67a9515f5ea7cff75fb6e451475ca8115223d73eadd6762fd1874f51834f63d3b03c24895db25da9b635abc583651962bafdec4ba0e2dcf22ccc9609bba
 DIST linux-5.4.209.tar.xz 112951528 BLAKE2B 
26d3ed24f2e9686a200cad3e1f12b01e8e1344a09d445270bc2d1af39449300b30ea66d88ed1d22b39b4cafaf05d6d924f6d24fa47ceadf704a5118d5621bd2e
 SHA512 
bc09ca7a004fd1804320d5908c85fe92e1bab820df8a61b95b06c85e41701d172333575f470ab49fd4918df282281e77cf074c2bfc44744baf6967acf32d2f58
+DIST linux-5.4.210.tar.sign 991 BLAKE2B 
90ca190c2bc1e939e2aa61116f5cda649e8b16d7882aa086f63e060e6934956489fc6942baa3f6c0021e0c94aa10c9713687fc352c210d83161a9baf0bd08275
 SHA512 
ed9bf42de53d190c0cc8f63775584a83a7a1911a0b22611d166d616c81de88c7d70e472397bac4653bed2f971208b229ad6a9cd884fc72ddb296175dd5ec91dc
+DIST linux-5.4.210.tar.xz 112939860 BLAKE2B 
d02e73a6c1e597cb66d36995b7419a8bc1de876cd3c797c3cf3fec63b24b111d2b4b6b0578929ff947fd9613227ce9b804a3e0fe3e6b9d00b63bb74ae5c66bd5
 SHA512 
c5511c912fb67040e319b9f64927d9405d2368b85cbc139bd289a6c13eecb6ba2cb5b217ba18fab3fac8117bd9d8261b6c4333e6684970ed82a579c5f9702cd6

diff --git a/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.210.ebuild 
b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.210.ebuild
new file mode 100644
index ..bffac7964798
--- /dev/null
+++ b/sys-kernel/vanilla-kernel/vanilla-kernel-5.4.210.ebuild
@@ -0,0 +1,108 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-build verify-sig
+
+MY_P=linux-${PV}
+# https://koji.fedoraproject.org/koji/packageinfo?packageID=8
+CONFIG_VER=5.4.21
+CONFIG_HASH=2809b7faa6a8cb232cd825096c146b7bdc1e08ea
+GENTOO_CONFIG_VER=g1
+
+DESCRIPTION="Linux kernel built from vanilla upstream sources"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://github.com/projg2/gentoo-kernel-config/archive/${GENTOO_CONFIG_VER}.tar.gz
+   -> gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz
+   verify-sig? (
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 
1).x/${MY_P}.tar.sign
+   )
+   amd64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-x86_64.config
+   -> kernel-x86_64.config.${CONFIG_VER}
+   )
+   arm64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-aarch64.config
+   -> kernel-aarch64.config.${CONFIG_VER}
+   )
+   ppc64? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-ppc64le.config
+   -> kernel-ppc64le.config.${CONFIG_VER}
+   )
+   x86? (
+   
https://src.fedoraproject.org/rpms/kernel/raw/${CONFIG_HASH}/f/kernel-i686.config
+   -> kernel-i686.config.${CONFIG_VER}
+   )
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="GPL-2"
+KEYWORDS="~amd64 ~arm64 ~ppc ~x86"
+IUSE="debug"
+
+BDEPEND="
+   debug? ( dev-util/pahole )
+   verify-sig? ( sec-keys/openpgp-keys-kernel )
+"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}
+"
+
+VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/kernel.org.asc
+
+src_unpack() {
+   if use verify-sig; then
+   einfo "Unpacking linux-${PV}.tar.xz ..."
+   verify-sig_verify_detached - "${DISTDIR}"/linux-${PV}.tar.sign \
+   < <(xz -cd "${DISTDIR}"/linux-${PV}.tar.xz | tee >(tar 
-x))
+   assert "Unpack failed"
+   unpack "gentoo-kernel-config-${GENTOO_CONFIG_VER}.tar.gz"
+   else
+  

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

2022-08-11 Thread Michał Górny
commit: 02cc88c8e7e0f400e94dabd4a03a558d4143e080
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Aug 11 13:30:02 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Aug 11 20:36:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02cc88c8

virtual/dist-kernel: Bump to 5.10.136

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

 virtual/dist-kernel/dist-kernel-5.10.136.ebuild | 19 +++
 1 file changed, 19 insertions(+)

diff --git a/virtual/dist-kernel/dist-kernel-5.10.136.ebuild 
b/virtual/dist-kernel/dist-kernel-5.10.136.ebuild
new file mode 100644
index ..5594b4186dc8
--- /dev/null
+++ b/virtual/dist-kernel/dist-kernel-5.10.136.ebuild
@@ -0,0 +1,19 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="Virtual to depend on any Distribution Kernel"
+HOMEPAGE=""
+SRC_URI=""
+
+LICENSE=""
+SLOT="0/${PV}"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86"
+
+RDEPEND="
+   || (
+   ~sys-kernel/gentoo-kernel-${PV}
+   ~sys-kernel/gentoo-kernel-bin-${PV}
+   ~sys-kernel/vanilla-kernel-${PV}
+   )"



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

2022-08-11 Thread Arthur Zamarin
commit: 5d76ff4c54e22ad4744de95a0fefb76303e677c6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 19:57:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 19:57:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d76ff4c

virtual/dist-kernel: Stabilize 5.4.209 ppc64, #864907

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/virtual/dist-kernel/dist-kernel-5.4.209.ebuild 
b/virtual/dist-kernel/dist-kernel-5.4.209.ebuild
index 2e0a7cc6b4b7..d742f50c782d 100644
--- a/virtual/dist-kernel/dist-kernel-5.4.209.ebuild
+++ b/virtual/dist-kernel/dist-kernel-5.4.209.ebuild
@@ -9,7 +9,7 @@ SRC_URI=""
 
 LICENSE=""
 SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ppc64 ~x86"
 
 RDEPEND="
|| (



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

2022-08-11 Thread Arthur Zamarin
commit: fa6a480030cc1ce47329eb2ff9915f2d23b92386
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 19:57:15 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 19:57:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa6a4800

sys-kernel/gentoo-kernel-bin: Stabilize 5.4.209 ppc64, #864907

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.209.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.209.ebuild
index 0b7942d6ee44..e2688e863685 100644
--- a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.209.ebuild
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.4.209.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: sys-kernel/gentoo-kernel/

2022-08-11 Thread Arthur Zamarin
commit: b8f99b64cb9eeccd2cb84f9e4c059f7d71258d38
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 19:57:14 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 19:57:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8f99b64

sys-kernel/gentoo-kernel: Stabilize 5.4.209 ppc64, #864907

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.209.ebuild 
b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.209.ebuild
index e5b1dfba488d..015005407a4b 100644
--- a/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.209.ebuild
+++ b/sys-kernel/gentoo-kernel/gentoo-kernel-5.4.209.ebuild
@@ -40,7 +40,7 @@ SRC_URI+="
 S=${WORKDIR}/${MY_P}
 
 LICENSE="GPL-2"
-KEYWORDS="~amd64 ~arm64 ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc ppc64 ~x86"
 IUSE="debug"
 
 RDEPEND="



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

2022-08-11 Thread Nick Sarnie
commit: 75dbae129a64824af80be78bf0649f82064873e3
Author: Nikita Romanyuk  yahoo  com>
AuthorDate: Thu Aug 11 18:17:30 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Aug 11 19:33:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75dbae12

app-emulation/vkd3d: add 1.4

Signed-off-by: Nikita Romanyuk  yahoo.com>
Closes: https://github.com/gentoo/gentoo/pull/26826
Signed-off-by: Nick Sarnie  gentoo.org>

 app-emulation/vkd3d/Manifest |  1 +
 app-emulation/vkd3d/vkd3d-1.4.ebuild | 43 
 2 files changed, 44 insertions(+)

diff --git a/app-emulation/vkd3d/Manifest b/app-emulation/vkd3d/Manifest
index 99a8cd7b5807..a68ffed16fbf 100644
--- a/app-emulation/vkd3d/Manifest
+++ b/app-emulation/vkd3d/Manifest
@@ -1,3 +1,4 @@
 DIST vkd3d-1.0.tar.xz 461884 BLAKE2B 
4dbd729f9e795d3d81178abc1a8774c0bbe6a5257c96c97acf1e4b4cdb5b7e30c77235e8b8fa57f7db3196caf30c55c3b0c07e2981629dd6177436a3cd117d33
 SHA512 
55712528688cdedc63049e168b371b470dbb8e31ddc36d8b23b0655f4a061726eb8556b9abf3cb887f6bd21379959aed9fab93ba0fd53813aec413ebec71d615
 DIST vkd3d-1.1.tar.xz 487452 BLAKE2B 
834ca06d2159a5857dde457f27e541f06624e87633af6aca7445867abc38c56a1da1fe34b6795ffbd6aa73e983ac0e4301402ae35ef8358fa8cc79c12972b11d
 SHA512 
e107612bdca95e998f9d819bdf74e4ffe1b4d400d250ab855c4ebf94b7d3f088b3221591fef03b1c6b8ecb030feb1673f74831bd8bd8edda2989d09a8846b0f7
 DIST vkd3d-1.2.tar.xz 611240 BLAKE2B 
e7ea3f7120ad1092be0239bdc2e6d0dfdfecc3b1c2e7c359c4bfbd8c259f092e041a75a0e896da9a1c6370d5716590711128d31c9e552897b177b300b9a15107
 SHA512 
ca9d5b11e7770747b78b61f43196b45b7bda8d2dd4f1d76da915f895a04dc28c20499e1e433f5ce17416964fe0f37cdc907e7aa540ec9105afbc8a100094f3e7
+DIST vkd3d-1.4.tar.xz 774920 BLAKE2B 
c46a71b495fc41658ea493f65ad15aec18202889a9c7925962301cce91f32e197c5850f374331595e4bd267fcbf9836531e733fb5880ddb4936476ddedd19bbc
 SHA512 
58535b57b0b506542f2867e9b1229682f012216b9f8913d2692d4ed64a8113248d66ea710127ec2064baf9511b7f2be7b757dffcaf95a43168d781010d007ddb

diff --git a/app-emulation/vkd3d/vkd3d-1.4.ebuild 
b/app-emulation/vkd3d/vkd3d-1.4.ebuild
new file mode 100644
index ..e64cc1a24558
--- /dev/null
+++ b/app-emulation/vkd3d/vkd3d-1.4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit multilib-minimal
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://source.winehq.org/git/vkd3d.git;
+   inherit git-r3
+else
+   KEYWORDS="~amd64 ~x86"
+   SRC_URI="https://dl.winehq.org/vkd3d/source/${P}.tar.xz;
+fi
+
+#Tests fail: https://bugs.gentoo.org/838655
+RESTRICT="test"
+
+IUSE="spirv-tools"
+RDEPEND="spirv-tools? ( dev-util/spirv-tools:=[${MULTILIB_USEDEP}] )
+   media-libs/vulkan-loader[${MULTILIB_USEDEP},X]
+   x11-libs/xcb-util:=[${MULTILIB_USEDEP}]
+   x11-libs/xcb-util-keysyms:=[${MULTILIB_USEDEP}]
+   x11-libs/xcb-util-wm:=[${MULTILIB_USEDEP}]"
+
+DEPEND="${RDEPEND}
+   dev-util/spirv-headers
+   dev-util/vulkan-headers"
+
+DESCRIPTION="D3D12 to Vulkan translation library"
+HOMEPAGE="https://source.winehq.org/git/vkd3d.git/;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+
+multilib_src_configure() {
+   local myconf=(
+   $(use_with spirv-tools)
+   --disable-doxygen-pdf
+   )
+
+   ECONF_SOURCE=${S} econf "${myconf[@]}"
+}



[gentoo-commits] repo/gentoo:master commit in: games-arcade/criticalmass/files/, games-arcade/criticalmass/

2022-08-11 Thread Ionen Wolkens
commit: ac4ee3fa01c26af03295d6a19582a4538e341ca3
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Aug 11 17:29:01 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Aug 11 18:44:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac4ee3fa

games-arcade/criticalmass: EAPI6->8, misc changes

* use https for homepage
* depend on libsdl[opengl,sound,video] (doesn't launch without opengl)
* depend on zlib
* make dependency for music unconditional (generally feel audio/music
  being a broken-if-missing optfeature is questionable for games, there
  is an option to disable correctly in-game)
* tidy patches and add some bugrefs
* fix direct AR call (combined with -flags.patch)

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

 .../criticalmass/criticalmass-1.0.2-r1.ebuild  | 62 --
 .../criticalmass/criticalmass-1.0.2-r2.ebuild  | 53 
 .../files/criticalmass-1.0.2-cflags.patch  | 27 --
 .../files/criticalmass-1.0.2-flags.patch   | 24 ++
 .../files/criticalmass-1.0.2-gcc43.patch   | 99 +-
 .../files/criticalmass-1.0.2-libpng.patch  | 28 ++
 .../files/criticalmass-1.0.2-libpng14.patch| 11 ---
 .../files/criticalmass-1.0.2-libpng15.patch| 31 ---
 patch => criticalmass-1.0.2-system-curl.patch} | 30 ++-
 9 files changed, 136 insertions(+), 229 deletions(-)

diff --git a/games-arcade/criticalmass/criticalmass-1.0.2-r1.ebuild 
b/games-arcade/criticalmass/criticalmass-1.0.2-r1.ebuild
deleted file mode 100644
index 5191beb0107f..
--- a/games-arcade/criticalmass/criticalmass-1.0.2-r1.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit autotools desktop flag-o-matic
-
-DESCRIPTION="SDL/OpenGL space shoot'em up game"
-HOMEPAGE="http://criticalmass.sourceforge.net/;
-SRC_URI="mirror://sourceforge/criticalmass/CriticalMass-${PV}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   media-libs/sdl-mixer
-   media-libs/sdl-image[png]
-   media-libs/libpng:0=
-   virtual/opengl
-   net-misc/curl
-"
-DEPEND="${RDEPEND}"
-
-S="${WORKDIR}/CriticalMass-${PV}"
-
-src_prepare() {
-   default
-
-   eapply "${FILESDIR}"/${P}-gcc43.patch \
-   "${FILESDIR}"/${P}-system_curl.patch \
-   "${FILESDIR}"/${P}-libpng14.patch \
-   "${FILESDIR}"/${P}-cflags.patch \
-   "${FILESDIR}"/${P}-libpng15.patch
-
-   rm -rf curl
-
-   mv configure.in configure.ac || die
-   eautoreconf
-}
-
-src_configure() {
-   append-cxxflags -std=gnu++98 # Bug 612758
-   default
-}
-
-src_install() {
-   HTML_DOCS="Readme.html"
-   default
-   rm -f "${ED}/usr/bin/Packer"
-   newicon critter.png ${PN}.png
-   make_desktop_entry critter "Critical Mass"
-}
-
-pkg_postinst() {
-   if ! has_version "media-libs/sdl-mixer[mod]" ; then
-   ewarn
-   ewarn "To hear music, you will have to rebuild 
media-libs/sdl-mixer"
-   ewarn "with the \"mod\" USE flag turned on."
-   ewarn
-   fi
-}

diff --git a/games-arcade/criticalmass/criticalmass-1.0.2-r2.ebuild 
b/games-arcade/criticalmass/criticalmass-1.0.2-r2.ebuild
new file mode 100644
index ..550a1493e02e
--- /dev/null
+++ b/games-arcade/criticalmass/criticalmass-1.0.2-r2.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools desktop flag-o-matic
+
+MY_P="CriticalMass-${PV}"
+
+DESCRIPTION="SDL/OpenGL space shoot'em up game"
+HOMEPAGE="https://criticalmass.sourceforge.io/;
+SRC_URI="mirror://sourceforge/criticalmass/${MY_P}.tar.bz2"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2+ ZLIB"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   media-libs/libglvnd[X]
+   media-libs/libpng:=
+   media-libs/libsdl[opengl,sound,video]
+   media-libs/sdl-image[png]
+   media-libs/sdl-mixer[mod]
+   net-misc/curl
+   sys-libs/zlib:="
+DEPEND="${RDEPEND}"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-gcc43.patch
+   "${FILESDIR}"/${P}-system-curl.patch
+   "${FILESDIR}"/${P}-libpng.patch
+   "${FILESDIR}"/${P}-flags.patch
+)
+
+src_prepare() {
+   default
+
+   rm -r curl || die
+   eautoreconf
+
+   append-cxxflags -std=gnu++98 #612758
+}
+
+src_install() {
+   local HTML_DOCS="Readme.html"
+   default
+
+   rm "${ED}"/usr/bin/Packer || die #247449
+
+   newicon critter.png ${PN}.png
+   make_desktop_entry critter "Critical Mass"
+}

diff --git a/games-arcade/criticalmass/files/criticalmass-1.0.2-cflags.patch 
b/games-arcade/criticalmass/files/criticalmass-1.0.2-cflags.patch
deleted file mode 100644
index 0d9063c37538..
--- 

[gentoo-commits] repo/gentoo:master commit in: games-arcade/balloonchase/files/, games-arcade/balloonchase/

2022-08-11 Thread Ionen Wolkens
commit: 3b04cd8bbd78038085cf5d27a86d9e673513bb51
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Aug 11 13:16:24 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Aug 11 18:44:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b04cd8b

games-arcade/balloonchase: EAPI6->8, misc changes

* use No_homepage/mirror (links dead with no replacement known)
* make patch a little bit smaller and embed $(CXX) + $(PKG_CONFIG)
* add missing EPREFIX
* replace .bmp icon, neither right format nor size to be valid for XDG
  and no guarantees it can be displayed by everything

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

 games-arcade/balloonchase/Manifest |  1 +
 .../balloonchase/balloonchase-0.9.6-r1.ebuild  | 34 ---
 .../balloonchase/balloonchase-0.9.6-r2.ebuild  | 44 +++
 ...entoo.patch => balloonchase-0.9.6-gentoo.patch} | 51 +-
 4 files changed, 56 insertions(+), 74 deletions(-)

diff --git a/games-arcade/balloonchase/Manifest 
b/games-arcade/balloonchase/Manifest
index 9e11cb51d3df..86eaba1aa8fc 100644
--- a/games-arcade/balloonchase/Manifest
+++ b/games-arcade/balloonchase/Manifest
@@ -1 +1,2 @@
 DIST balloonchase-0.9.6.tar.bz2 523085 BLAKE2B 
50e453327d51da3fe40f52850cb2fbb7a10e897f59bac5d6f4a676d3211d3dcdae00359304ad119252ebf98e9f46482ad801078762f16ddc609bc94b68c3fc18
 SHA512 
ab5617713c96187564926fd5ecbdbf5186f78c23cfb43b26b28b9d18e71330efd77700cf7cd02e04be7fd8e33f2d30bf59f64954135ac82802d1d839dc2e7767
+DIST balloonchase.png 1744 BLAKE2B 
d78e636c0cb2ef521967035ce96fbee0e7b2659cb5127ba32cd3437394a709941fd915dfc0f376d47c2ad5ca81f6392f5942c2737cb2524ec3a041dc5b8c6c26
 SHA512 
bfd32d65b5cb290df90881cb7a953f1cac38f4e91151c672e4320b9b41f7bff46ef97d6c123aa7267b241710dccf4ade409ff129c945af1ee06d33fdf490f169

diff --git a/games-arcade/balloonchase/balloonchase-0.9.6-r1.ebuild 
b/games-arcade/balloonchase/balloonchase-0.9.6-r1.ebuild
deleted file mode 100644
index 36976cc63a40..
--- a/games-arcade/balloonchase/balloonchase-0.9.6-r1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2018 Gentoo Foundation
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit desktop toolchain-funcs
-
-DESCRIPTION="Fly a hot air balloon and try to blow the other player out of the 
screen"
-HOMEPAGE="http://makegho.mbnet.fi/c/bchase/;
-SRC_URI="http://makegho.mbnet.fi/c/bchase/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="media-libs/libsdl[video]"
-RDEPEND="${DEPEND}"
-
-src_prepare() {
-   default
-   eapply "${FILESDIR}"/${PV}-gentoo.patch
-   sed -i "s:g++:$(tc-getCXX):" Makefile || die
-   sed -i \
-   -e "s:GENTOODIR:/usr/share/${PN}:" src/main.c || die
-}
-
-src_install() {
-   dobin ${PN}
-   insinto /usr/share/${PN}
-   doins -r images
-   newicon images/kp2b.bmp ${PN}.bmp
-   make_desktop_entry ${PN} "Balloon Chase" /usr/share/pixmaps/${PN}.bmp
-   einstalldocs
-}

diff --git a/games-arcade/balloonchase/balloonchase-0.9.6-r2.ebuild 
b/games-arcade/balloonchase/balloonchase-0.9.6-r2.ebuild
new file mode 100644
index ..aa65b89196ec
--- /dev/null
+++ b/games-arcade/balloonchase/balloonchase-0.9.6-r2.ebuild
@@ -0,0 +1,44 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop toolchain-funcs
+
+DESCRIPTION="Fly a hot air balloon and try to blow the other player out of the 
screen"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+SRC_URI="
+   mirror://gentoo/${P}.tar.bz2
+   https://dev.gentoo.org/~ionen/distfiles/${PN}.png;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="media-libs/libsdl[video]"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-gentoo.patch
+)
+
+src_prepare() {
+   default
+
+   sed -i "s|GENTOODIR|${EPREFIX}/usr/share/${PN}|" src/main.c || die
+
+   tc-export CXX PKG_CONFIG
+}
+
+src_install() {
+   dobin ${PN}
+
+   insinto /usr/share/${PN}
+   doins -r images
+
+   doicon "${DISTDIR}"/${PN}.png
+   make_desktop_entry ${PN} "Balloon Chase"
+
+   einstalldocs
+}

diff --git a/games-arcade/balloonchase/files/0.9.6-gentoo.patch 
b/games-arcade/balloonchase/files/balloonchase-0.9.6-gentoo.patch
similarity index 81%
rename from games-arcade/balloonchase/files/0.9.6-gentoo.patch
rename to games-arcade/balloonchase/files/balloonchase-0.9.6-gentoo.patch
index ff232693422b..c847f0677660 100644
--- a/games-arcade/balloonchase/files/0.9.6-gentoo.patch
+++ b/games-arcade/balloonchase/files/balloonchase-0.9.6-gentoo.patch
@@ -1,26 +1,18 @@
 --- a/Makefile
 +++ b/Makefile
-@@ -1,4 +1,3 @@
+@@ -1,2 +1 @@
 -LDFLAGS= -lSDL -lpthread -s
  CFLAGS= -Wall # -DDEBUG
- PKG_BCDIR=balloonchase-`cat src/ver`
- PKG_BCVER=`cat src/ver`
-@@ -9,8 +8,8 @@
- clean:
-   rm 

[gentoo-commits] repo/gentoo:master commit in: games-arcade/conveysdl/files/, games-arcade/conveysdl/

2022-08-11 Thread Ionen Wolkens
commit: 9dd4d3ff586d86bfa9aac3e92bd56718ff33e25e
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Aug 11 15:22:03 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Aug 11 18:44:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd4d3ff

games-arcade/conveysdl: EAPI6->8, misc changes

* use No_homepage/mirror wrt bug #680556 (no replacement known)
* add missing icon
* tidy patches and add bugref
* convert seds to patch
* use flag-o-matic and pkg-config to handle flags and add EPREFIX
* install the readme (ebuild went through the trouble to
  modify it but didn't install it)

Closes: https://bugs.gentoo.org/680556
Signed-off-by: Ionen Wolkens  gentoo.org>

 games-arcade/conveysdl/Manifest|  1 +
 games-arcade/conveysdl/conveysdl-1.3-r1.ebuild | 55 --
 games-arcade/conveysdl/conveysdl-1.3-r2.ebuild | 52 
 .../conveysdl/files/conveysdl-1.3-arrays.patch | 23 +++--
 .../conveysdl/files/conveysdl-1.3-audio.patch  | 15 ++
 .../conveysdl/files/conveysdl-1.3-speed.patch  | 39 ---
 6 files changed, 83 insertions(+), 102 deletions(-)

diff --git a/games-arcade/conveysdl/Manifest b/games-arcade/conveysdl/Manifest
index f32988e47ccf..055890135264 100644
--- a/games-arcade/conveysdl/Manifest
+++ b/games-arcade/conveysdl/Manifest
@@ -1 +1,2 @@
 DIST conveysdl.1.3.tar 429568 BLAKE2B 
950952ad311bb51855bbd1cf3bf25b750d067db1cef8333f44ac3a96f30033f700efb9771d3050be6a3acc63c79b49fa8d64a1a11a088a777a13f21fb82a4c81
 SHA512 
fe6f91cdd63ae1019cb99613618e44ceeddb4080ad5e50bd8ce0abf27e057617d3658a29b2faf668cbc3b0887f1a4a05cadadb060f69d850c3d85c9e7190dd8a
+DIST conveysdl.png 328 BLAKE2B 
a62da06757da9e103e7156a5fbda7b9a7e0381aa6d203fe4ed7e46568073eef6287a955303a227975f9e073dbab3bad990a8033200da204059887bb8078203c8
 SHA512 
dcf99bc5112189a5d33a183a8a6ecad3b70456a75112a3caece1d87f967fcb14279f6a2f9a47dc67967806c09b5725cb2f239c29be9370336c0f76bed4db1867

diff --git a/games-arcade/conveysdl/conveysdl-1.3-r1.ebuild 
b/games-arcade/conveysdl/conveysdl-1.3-r1.ebuild
deleted file mode 100644
index 904ee87c07b4..
--- a/games-arcade/conveysdl/conveysdl-1.3-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-inherit desktop toolchain-funcs
-
-DESCRIPTION="Guide the blob along the conveyer belt collecting the red blobs"
-HOMEPAGE="http://www.cloudsprinter.com/software/conveysdl/;
-SRC_URI="http://www.cloudsprinter.com/software/conveysdl/${P/-/.}.tar;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="media-libs/libsdl[sound,video]
-   media-libs/sdl-mixer"
-RDEPEND="${DEPEND}"
-
-S="${WORKDIR}"
-
-src_prepare() {
-   default
-
-   # Incomplete readme
-   sed -i \
-   -e 's:I k:use -nosound to disable sound\n\nI k:' \
-   readme || die
-
-   sed -i \
-   -e 's:SDL_Mi:SDL_mi:' \
-   main.c || die
-
-   eapply \
-   "${FILESDIR}"/${P}-arrays.patch \
-   "${FILESDIR}"/${P}-speed.patch
-}
-
-src_compile() {
-   emake main \
-   CC="$(tc-getCC)" \
-   CFLAGS="${CFLAGS} $(sdl-config --cflags) \
-   -DDATA_PREFIX=\\\"/usr/share/${PN}/\\\" \
-   -DENABLE_SOUND" \
-   LDLIBS="-lSDL_mixer $(sdl-config --libs)"
-}
-
-src_install() {
-   newbin main ${PN}
-   insinto /usr/share/${PN}
-   doins -r gfx sounds levels
-   newicon gfx/jblob.bmp ${PN}.bmp
-   make_desktop_entry ${PN} Convey /usr/share/pixmaps/${PN}.bmp
-   einstalldocs
-}

diff --git a/games-arcade/conveysdl/conveysdl-1.3-r2.ebuild 
b/games-arcade/conveysdl/conveysdl-1.3-r2.ebuild
new file mode 100644
index ..a45ec62f1a9e
--- /dev/null
+++ b/games-arcade/conveysdl/conveysdl-1.3-r2.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop flag-o-matic toolchain-funcs
+
+DESCRIPTION="Guide the blob along the conveyer belt collecting the red blobs"
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+SRC_URI="
+   mirror://gentoo/${P/-/.}.tar
+   https://dev.gentoo.org/~ionen/distfiles/${PN}.png;
+S="${WORKDIR}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   media-libs/libsdl[sound,video]
+   media-libs/sdl-mixer"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${P}-arrays.patch
+   "${FILESDIR}"/${P}-audio.patch
+   "${FILESDIR}"/${P}-speed.patch
+)
+
+src_compile() {
+   tc-export CC
+
+   append-cppflags $($(tc-getPKG_CONFIG) --cflags sdl SDL_mixer || die) \
+   -DDATA_PREFIX="'\"${EPREFIX}/usr/share/${PN}/\"'" \
+   -DENABLE_SOUND
+   append-libs $($(tc-getPKG_CONFIG) --libs sdl 

[gentoo-commits] repo/gentoo:master commit in: games-arcade/cob/

2022-08-11 Thread Ionen Wolkens
commit: 1d955e4fba16c2c0fd0e7be19cc488259c049970
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Aug 11 14:10:36 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Aug 11 18:44:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d955e4f

games-arcade/cob: EAPI6->8, update links, add missing icon

No replacement found for links wrt bug #680664, so No_homepage/mirror.

Closes: https://bugs.gentoo.org/680664
Signed-off-by: Ionen Wolkens  gentoo.org>

 games-arcade/cob/Manifest|  1 +
 .../cob/{cob-0.9-r1.ebuild => cob-0.9-r2.ebuild} | 20 
 2 files changed, 13 insertions(+), 8 deletions(-)

diff --git a/games-arcade/cob/Manifest b/games-arcade/cob/Manifest
index 3f73042b7290..5c3011b55732 100644
--- a/games-arcade/cob/Manifest
+++ b/games-arcade/cob/Manifest
@@ -1 +1,2 @@
 DIST cob-0.9.tar.gz 712618 BLAKE2B 
f73bec711f4e2c7907cf987fdd12207556752e05f5cf98f9818ef470c2bc2fa95f03c8c4a2f6c114b87d5c00cf3b17da3a1d127869b7ee548d5bd0d05d4c4114
 SHA512 
1a329bb06a25137c1dc9d65cff949ed1b0ca7445ecf897375be71581c35f0bc563008fc7607d650a660a405f2282b0329148487bd29b6a053478b61d932bdf4d
+DIST cob.png 755 BLAKE2B 
d560e5b72275c174d4285f54e900f8fb82e54fd358df7aa07c37e9e75974fc776293faa9cb9c26c4aacbe28961462432b3d97193365533851b7c5179e291a6c2
 SHA512 
201e8c4d534532d22417e6a96832061e0286ade7e2fc768b9391114e86565cb38365674dbee19f13029e43b55dba7332ccd9536ff26629e3f7382090b8224882

diff --git a/games-arcade/cob/cob-0.9-r1.ebuild 
b/games-arcade/cob/cob-0.9-r2.ebuild
similarity index 52%
rename from games-arcade/cob/cob-0.9-r1.ebuild
rename to games-arcade/cob/cob-0.9-r2.ebuild
index 8851838f489d..b45c2ee9e74b 100644
--- a/games-arcade/cob/cob-0.9-r1.ebuild
+++ b/games-arcade/cob/cob-0.9-r2.ebuild
@@ -1,20 +1,22 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=8
+
 inherit desktop
 
 DESCRIPTION="Cruising on Broadway: a painting-type game"
-HOMEPAGE="http://www.autismuk.freeserve.co.uk/;
-SRC_URI="http://www.autismuk.freeserve.co.uk/${P}.tar.gz;
+HOMEPAGE="https://wiki.gentoo.org/wiki/No_homepage;
+SRC_URI="
+   mirror://gentoo/${P}.tar.gz
+   https://dev.gentoo.org/~ionen/distfiles/${PN}.png;
 
-LICENSE="GPL-2"
+LICENSE="GPL-2+"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~x86"
-IUSE=""
 
-DEPEND="media-libs/libsdl[joystick,sound,video]"
-RDEPEND="${DEPEND}"
+RDEPEND="media-libs/libsdl[joystick,sound,video]"
+DEPEND="${RDEPEND}"
 
 PATCHES=(
"${FILESDIR}"/${P}-gcc43.patch
@@ -23,5 +25,7 @@ PATCHES=(
 
 src_install() {
default
+
+   doicon "${DISTDIR}"/${PN}.png
make_desktop_entry ${PN} "Cruising on Broadway"
 }



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

2022-08-11 Thread Nick Sarnie
commit: fb0ade47878dd8b70c8f2ae2e1951e6aa3944395
Author: Nick Sarnie  gentoo  org>
AuthorDate: Thu Aug 11 18:39:51 2022 +
Commit: Nick Sarnie  gentoo  org>
CommitDate: Thu Aug 11 18:39:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fb0ade47

app-eselect/eselect-wine: update maintainers

Signed-off-by: Nick Sarnie  gentoo.org>

 app-eselect/eselect-wine/metadata.xml | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/app-eselect/eselect-wine/metadata.xml 
b/app-eselect/eselect-wine/metadata.xml
index e8ff4f1c8f62..280cd5c41bf0 100644
--- a/app-eselect/eselect-wine/metadata.xml
+++ b/app-eselect/eselect-wine/metadata.xml
@@ -1,7 +1,10 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
+   
+   w...@gentoo.org
+   Wine
+   

np-hardass/eselect-wine




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

2022-08-11 Thread John Helmert III
commit: 106d5ab4c5c1ec11f14e74dfb0ebcc4b72197b53
Author: John Helmert III  gentoo  org>
AuthorDate: Thu Aug 11 04:15:20 2022 +
Commit: John Helmert III  gentoo  org>
CommitDate: Thu Aug 11 18:22:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=106d5ab4

app-misc/uptimed: drop ownership changes in pkg_postinst

Bug: https://bugs.gentoo.org/630810
Signed-off-by: John Helmert III  gentoo.org>

 app-misc/uptimed/uptimed-0.4.6-r1.ebuild | 45 
 1 file changed, 45 insertions(+)

diff --git a/app-misc/uptimed/uptimed-0.4.6-r1.ebuild 
b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
new file mode 100644
index ..5df4993bf443
--- /dev/null
+++ b/app-misc/uptimed/uptimed-0.4.6-r1.ebuild
@@ -0,0 +1,45 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools systemd
+
+DESCRIPTION="System uptime record daemon that keeps track of your highest 
uptimes"
+HOMEPAGE="https://github.com/rpodgorny/uptimed/;
+SRC_URI="https://github.com/rpodgorny/uptimed/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   acct-group/uptimed
+   acct-user/uptimed
+"
+DEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_install() {
+   local DOCS=( ChangeLog README.md TODO AUTHORS CREDITS INSTALL.cgi 
sample-cgi/* )
+   default
+   find "${ED}" -type f -name '*.la' -delete || die
+
+   local spooldir="/var/spool/${PN}"
+   keepdir ${spooldir}
+   fowners uptimed:uptimed ${spooldir}
+
+   newinitd "${FILESDIR}"/${PN}.init-r1 uptimed
+   systemd_dounit "${FILESDIR}/${PN}.service"
+}
+
+pkg_postinst() {
+   elog "Start uptimed with '/etc/init.d/uptimed start' (for openRC)"
+   elog "or systemctl start uptimed (for systemd)"
+   elog "To view your uptime records, use the command 'uprecords'."
+}



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-proto/

2022-08-11 Thread Matt Turner
commit: 2641df6420a6da6e68872a9d49d88b78c7f0205c
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 11 17:37:19 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 11 17:40:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2641df64

x11-base/xorg-proto: Add Python 3.11 compatibility

* Bump to EAPI=8
* Switch to xz'd tarballs
* Propagate ~loong KEYWORD

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

 x11-base/xorg-proto/xorg-proto-.ebuild | 8 
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/x11-base/xorg-proto/xorg-proto-.ebuild 
b/x11-base/xorg-proto/xorg-proto-.ebuild
index a86a2415e1b6..ccbe4831235d 100644
--- a/x11-base/xorg-proto/xorg-proto-.ebuild
+++ b/x11-base/xorg-proto/xorg-proto-.ebuild
@@ -1,8 +1,8 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
 
 MY_PN="${PN/xorg-/xorg}"
 MY_P="${MY_PN}-${PV}"
@@ -20,8 +20,8 @@ HOMEPAGE="https://gitlab.freedesktop.org/xorg/proto/xorgproto;
 if [[ ${PV} = * ]]; then
SRC_URI=""
 else
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos 
~x64-solaris"
-   
SRC_URI="https://xorg.freedesktop.org/archive/individual/proto/${MY_P}.tar.gz;
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos 
~x64-solaris"
+   
SRC_URI="https://xorg.freedesktop.org/archive/individual/proto/${MY_P}.tar.xz;
S="${WORKDIR}/${MY_P}"
 fi
 



[gentoo-commits] repo/gentoo:master commit in: x11-base/xorg-proto/

2022-08-11 Thread Matt Turner
commit: 369f9d3e07ee4771ea5dd15544d24257662203c5
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 11 17:37:33 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 11 17:40:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=369f9d3e

x11-base/xorg-proto: Version bump to 2022.2

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

 x11-base/xorg-proto/Manifest |  1 +
 x11-base/xorg-proto/xorg-proto-2022.2.ebuild | 54 
 2 files changed, 55 insertions(+)

diff --git a/x11-base/xorg-proto/Manifest b/x11-base/xorg-proto/Manifest
index 724cae2bffbd..24828bbfcd00 100644
--- a/x11-base/xorg-proto/Manifest
+++ b/x11-base/xorg-proto/Manifest
@@ -1 +1,2 @@
 DIST xorgproto-2022.1.tar.gz 1107316 BLAKE2B 
b7c60d77978f95b62208c5c5974c7310a9b6197c8b14218ba319eb44660f20c5eb33ef106beccae16f79a0530a20bd38b6aa2de81329c4b48a2da285ab903c31
 SHA512 
e34404eb9f7edfebdecbf38c66491fbca91929c59b5762d3266b2808cdae3f4e65589001d29bf5374effc56173a5467f5a107bf4fe05acae69839b841e83f72c
+DIST xorgproto-2022.2.tar.xz 757080 BLAKE2B 
0fee7910fced83548780fd1c7bfd214c932c7c5064c6ebd40ac9285d071837056b9eca24dadb53a572a05768f8762c4dd81ac58fcf6b43028f557ed56a98f7f9
 SHA512 
8e6108110600d076a94cc6d0e465b2e9adfbbe8d7e6b75fae9c5262d99dc6074ab1ed561a74d6d451f00f5b7af9f507a6317be9c0770efeed9e60b64beb7a1c9

diff --git a/x11-base/xorg-proto/xorg-proto-2022.2.ebuild 
b/x11-base/xorg-proto/xorg-proto-2022.2.ebuild
new file mode 100644
index ..ccbe4831235d
--- /dev/null
+++ b/x11-base/xorg-proto/xorg-proto-2022.2.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
+
+MY_PN="${PN/xorg-/xorg}"
+MY_P="${MY_PN}-${PV}"
+
+EGIT_REPO_URI="https://gitlab.freedesktop.org/xorg/proto/${MY_PN}.git;
+
+if [[ ${PV} = * ]]; then
+   GIT_ECLASS="git-r3"
+fi
+
+inherit ${GIT_ECLASS} meson python-any-r1
+
+DESCRIPTION="X.Org combined protocol headers"
+HOMEPAGE="https://gitlab.freedesktop.org/xorg/proto/xorgproto;
+if [[ ${PV} = * ]]; then
+   SRC_URI=""
+else
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~x64-macos 
~x64-solaris"
+   
SRC_URI="https://xorg.freedesktop.org/archive/individual/proto/${MY_P}.tar.xz;
+   S="${WORKDIR}/${MY_P}"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="
+   test? (
+   $(python_gen_any_dep '
+   dev-python/python-libevdev[${PYTHON_USEDEP}]
+   ')
+   )
+"
+RDEPEND=""
+
+python_check_deps() {
+   has_version -b "dev-python/python-libevdev[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_install() {
+   meson_src_install
+
+   mv "${ED}"/usr/share/doc/{xorgproto,${P}} || die
+}



[gentoo-commits] repo/gentoo:master commit in: net-ftp/filezilla/

2022-08-11 Thread Arthur Zamarin
commit: 29ecde7936c677d692a70bb1418a63d9a5d52a8e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 17:37:35 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 17:37:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29ecde79

net-ftp/filezilla: Stabilize 3.60.1-r1 ppc64, #864909

Signed-off-by: Arthur Zamarin  gentoo.org>

 net-ftp/filezilla/filezilla-3.60.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/filezilla/filezilla-3.60.1-r1.ebuild 
b/net-ftp/filezilla/filezilla-3.60.1-r1.ebuild
index 8f4d46102111..8523dfe69c60 100644
--- a/net-ftp/filezilla/filezilla-3.60.1-r1.ebuild
+++ b/net-ftp/filezilla/filezilla-3.60.1-r1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${PN}-${MY_PV}"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ppc64 ~riscv ~x86"
 IUSE="dbus nls test"
 RESTRICT="!test? ( test )"
 



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

2022-08-11 Thread Arthur Zamarin
commit: 856fa2ad0d7908ec369c41a179cd56b5d4e3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 17:37:36 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 17:37:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=856fa2cc

dev-libs/libfilezilla: Stabilize 0.37.2 ppc64, #864909

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/dev-libs/libfilezilla/libfilezilla-0.37.2.ebuild 
b/dev-libs/libfilezilla/libfilezilla-0.37.2.ebuild
index fe7ec5e83bfe..d630ebe35697 100644
--- a/dev-libs/libfilezilla/libfilezilla-0.37.2.ebuild
+++ b/dev-libs/libfilezilla/libfilezilla-0.37.2.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://download.filezilla-project.org/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-2+"
 SLOT="0/25" # libfilezilla.so version
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ppc64 ~riscv ~x86"
 IUSE="test"
 
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/gentoo:master commit in: app-editors/hexedit/

2022-08-11 Thread Arthur Zamarin
commit: a50f6693ac30cc2cee9371fa0932d95ebf8876ea
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 17:34:43 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 17:34:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a50f6693

app-editors/hexedit: Stabilize 1.6 ppc, #864913

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/hexedit/hexedit-1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/hexedit/hexedit-1.6.ebuild 
b/app-editors/hexedit/hexedit-1.6.ebuild
index 7da44e6f5b51..72daa4747246 100644
--- a/app-editors/hexedit/hexedit-1.6.ebuild
+++ b/app-editors/hexedit/hexedit-1.6.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 EGIT_REPO_URI="https://github.com/pixel/hexedit.git;
 else
 SRC_URI="https://github.com/pixel/hexedit/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: app-editors/hexedit/

2022-08-11 Thread Arthur Zamarin
commit: 671e1ac295c7f003d7408b6f16b03410f0faef57
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 17:34:44 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 17:34:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=671e1ac2

app-editors/hexedit: Stabilize 1.6 ppc64, #864913

Signed-off-by: Arthur Zamarin  gentoo.org>

 app-editors/hexedit/hexedit-1.6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/hexedit/hexedit-1.6.ebuild 
b/app-editors/hexedit/hexedit-1.6.ebuild
index 72daa4747246..b5bbd93722a3 100644
--- a/app-editors/hexedit/hexedit-1.6.ebuild
+++ b/app-editors/hexedit/hexedit-1.6.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]]; then
 EGIT_REPO_URI="https://github.com/pixel/hexedit.git;
 else
 SRC_URI="https://github.com/pixel/hexedit/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ~ppc64 ~riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ppc ppc64 ~riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 fi
 
 LICENSE="GPL-2"



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

2022-08-11 Thread Arthur Zamarin
commit: 29b8d164f7462e65c51cb9b53d68e4e8178aee68
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Aug 11 17:34:42 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Aug 11 17:34:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29b8d164

net-dns/dnsmasq: Stabilize 2.86 ppc64, #864821

Signed-off-by: Arthur Zamarin  gentoo.org>

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

diff --git a/net-dns/dnsmasq/dnsmasq-2.86.ebuild 
b/net-dns/dnsmasq/dnsmasq-2.86.ebuild
index 7cc85152f7aa..9649e0dd60df 100644
--- a/net-dns/dnsmasq/dnsmasq-2.86.ebuild
+++ b/net-dns/dnsmasq/dnsmasq-2.86.ebuild
@@ -13,7 +13,7 @@ SRC_URI="http://www.thekelleys.org.uk/dnsmasq/${P}.tar.xz;
 
 LICENSE="|| ( GPL-2 GPL-3 )"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc ~x86"
 
 IUSE="auth-dns conntrack dbus +dhcp dhcp-tools dnssec +dumpfile id idn libidn2"
 IUSE+=" +loop +inotify ipv6 lua nettlehash nls script selinux static tftp"



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

2022-08-11 Thread Patrick McLean
commit: 7457bf74eecdfab69ef0110087d426941cb054af
Author: Patrick McLean  gentoo  org>
AuthorDate: Thu Aug 11 16:48:10 2022 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Thu Aug 11 16:48:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7457bf74

sys-apps/nvme-cli: add 2.1.2

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

 sys-apps/nvme-cli/Manifest  |  1 +
 sys-apps/nvme-cli/nvme-cli-2.1.2.ebuild | 34 +
 2 files changed, 35 insertions(+)

diff --git a/sys-apps/nvme-cli/Manifest b/sys-apps/nvme-cli/Manifest
index fd37ba985ddc..8af04fe51003 100644
--- a/sys-apps/nvme-cli/Manifest
+++ b/sys-apps/nvme-cli/Manifest
@@ -1,3 +1,4 @@
 DIST nvme-cli-1.16.tar.gz 598246 BLAKE2B 
8aef6ae82ec9a2c67de6c69addd72c87ade6554e6d374c717f8e3c0585565974a2b2870eb172b3ebdc1ae307bd3a55a14a17d3feea8d437265db136b434b519f
 SHA512 
c713eb15b979ad17791cf95717b42d5f638cb4803d646bca1f4825e6bb50f086226b44b108b61571709b2cb615ae6ba86dbad309f675b240ebd3968d1cf536ff
 DIST nvme-cli-2.0.tar.gz 646320 BLAKE2B 
81a8161091071be4e98d4feb78b3f3edaed07262212a8950c1882e3b46f38cd82d8cd8bfec62b3971feda6e82d297338e5541c8eda33c8b6f714d3b3ce000c25
 SHA512 
24a00ee8e0fc963c1757797413ff5725cec18f821a714d6bbbf37906010d72934d6fdd7b466c085f13716a5279d1a7bd3254ee474e37a0ecd00a85ef23e12417
 DIST nvme-cli-2.1.1.tar.gz 674354 BLAKE2B 
2cb995195328a9c91644ff32676eb3a6d9f1927a004ed75d2be0a746f45050b8ae927924a1095a787ea10618bd600133237852f56116c1db25c4eaa03ea9dab5
 SHA512 
61a8e7c0ae8da082ac0cda2fdf61ffe8d83ed5d4ee31640bde89fde929ba3fe6d788950bd232630af2c7fc5f3563f05f47f350e005c8556691e5aede73c88d74
+DIST nvme-cli-2.1.2.tar.gz 674414 BLAKE2B 
e71e32a371c2cebfd7f66539490baa8e8074c5bd21afa2470e73c763c752318ca5abc1fe1a4d3f346137dcdbb604889a23955269f209222384a629e8d6817d6a
 SHA512 
2162a6967a221a4ae7e0261748c26a10ff43d5b592039e29578d8310cf176428d528c2d510c0b58419b70bd6d28f4d2c77f0cd27606d87079c64289d5d14f930

diff --git a/sys-apps/nvme-cli/nvme-cli-2.1.2.ebuild 
b/sys-apps/nvme-cli/nvme-cli-2.1.2.ebuild
new file mode 100644
index ..ef7cb9b54e90
--- /dev/null
+++ b/sys-apps/nvme-cli/nvme-cli-2.1.2.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson systemd udev
+
+DESCRIPTION="NVM-Express user space tooling for Linux"
+HOMEPAGE="https://github.com/linux-nvme/nvme-cli;
+SRC_URI="https://github.com/linux-nvme/nvme-cli/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+RESTRICT="test"
+
+LICENSE="GPL-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~loong ~ppc64 ~riscv ~x86"
+IUSE="hugepages +json +uuid"
+
+RDEPEND="
+   >=sys-libs/libnvme-1.1:=[json=,uuid=]
+   hugepages? ( sys-libs/libhugetlbfs:= )
+   json? ( dev-libs/json-c:= )
+   uuid? ( sys-apps/util-linux:= )"
+
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
+
+src_configure() {
+   local unitdir="$(systemd_get_systemunitdir)"
+   local emesonargs=(
+   -Dsystemddir="${unitdir%/system}"
+   -Dudevrulesdir="${EPREFIX}$(get_udevdir)"
+   )
+   meson_src_configure
+}



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

2022-08-11 Thread Matt Turner
commit: 1990d5f474e2b002826d7cd2a6c7b89200413be8
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 11 15:56:40 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 11 16:20:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1990d5f4

dev-util/glade: Version bump to 3.40.0

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

 dev-util/glade/Manifest|  1 +
 dev-util/glade/glade-3.40.0.ebuild | 82 ++
 2 files changed, 83 insertions(+)

diff --git a/dev-util/glade/Manifest b/dev-util/glade/Manifest
index 0ba975c1b9d5..cacf89522266 100644
--- a/dev-util/glade/Manifest
+++ b/dev-util/glade/Manifest
@@ -1 +1,2 @@
 DIST glade-3.38.2.tar.xz 2709224 BLAKE2B 
2bcd447b90d6e67abc44dd273f0f5d7fc1d6848ef0bd878481f2c10e8846828e63fbf9c9c96e5effe8126b4aec7eb05886606ca1dc5fb94943bc5d1d8d0ef4e2
 SHA512 
2df8c8363206905663cd3ac9196da5425a888b64f1b3b3ac6cd41e14c4a82a5d2c299730ef0606c3970a04dd8f245bb5639218794eb67dcbd26fae17565e
+DIST glade-3.40.0.tar.xz 2654772 BLAKE2B 
472dfd841e9501f7bbc96bde49ebe26dfd54193cd479658d042547eba5d1af196c0a06212ec5c894c53c12f3791967f6c77859f96802e3df5760b36c6c0c4af1
 SHA512 
6b018f882e9d155a4b2256c0b4c72743f971c8d730a53f16faa240d01e14051f5b6ce04e355dcc78e1679579fb091facaa06acdda6297c5b8efc642c42bb7b4e

diff --git a/dev-util/glade/glade-3.40.0.ebuild 
b/dev-util/glade/glade-3.40.0.ebuild
new file mode 100644
index ..6204835b1876
--- /dev/null
+++ b/dev-util/glade/glade-3.40.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit gnome2 python-single-r1 meson optfeature virtualx
+
+DESCRIPTION="A user interface designer for GTK+ and GNOME"
+HOMEPAGE="https://glade.gnome.org https://gitlab.gnome.org/GNOME/glade;
+
+LICENSE="GPL-2+ FDL-1.1+"
+SLOT="3.10/13" # subslot = suffix of libgladeui-2.so
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+IUSE="gjs gtk-doc +introspection python webkit"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+DEPEND="
+   dev-libs/atk[introspection?]
+   >=dev-libs/glib-2.53.2:2
+   >=dev-libs/libxml2-2.4.0:2
+   x11-libs/cairo:=
+   x11-libs/gdk-pixbuf:2[introspection?]
+   >=x11-libs/gtk+-3.22.0:3[introspection?]
+   x11-libs/pango[introspection?]
+   introspection? ( >=dev-libs/gobject-introspection-1.32:= )
+   gjs? ( >=dev-libs/gjs-1.64.0 )
+   python? (
+   ${PYTHON_DEPS}
+   x11-libs/gtk+:3[introspection]
+   $(python_gen_cond_dep '
+   >=dev-python/pygobject-3.8:3[${PYTHON_USEDEP}]
+   ')
+   )
+   webkit? ( >=net-libs/webkit-gtk-2.12.0:4 )
+"
+RDEPEND="${DEPEND}"
+BDEPEND="
+   ${PYTHON_DEPS}
+   app-text/docbook-xml-dtd:4.1.2
+   dev-libs/libxslt
+   dev-util/itstool
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+RESTRICT="test" # https://gitlab.gnome.org/GNOME/glade/issues/333
+
+PATCHES=(
+   # To avoid file collison with other slots, rename help module.
+   # Prevent the UI from loading glade:3's gladeui devhelp documentation.
+   "${FILESDIR}"/${PN}-3.14.1-doc-version.patch
+)
+
+pkg_setup() {
+   python-single-r1_pkg_setup
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dgladeui=true
+   $(meson_feature gjs)
+   $(meson_feature python)
+   $(meson_feature webkit webkit2gtk)
+
+   $(meson_use gtk-doc gtk_doc)
+   $(meson_use introspection)
+   )
+   meson_src_configure
+}
+
+src_test() {
+   virtx meson_src_test
+}
+
+pkg_postinst() {
+   gnome2_pkg_postinst
+
+   optfeature_header
+   optfeature "integration API documentation support" dev-util/devhelp
+}



[gentoo-commits] repo/gentoo:master commit in: x11-libs/pango/

2022-08-11 Thread Matt Turner
commit: c352cc1ed35a5c2b8866d7a64e3372b72c27eb84
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 11 15:57:08 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 11 16:20:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c352cc1e

x11-libs/pango: Version bump to 1.50.9

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

 x11-libs/pango/Manifest|  1 +
 x11-libs/pango/pango-1.50.9.ebuild | 91 ++
 2 files changed, 92 insertions(+)

diff --git a/x11-libs/pango/Manifest b/x11-libs/pango/Manifest
index 63caf519d4f8..321a0980b6e5 100644
--- a/x11-libs/pango/Manifest
+++ b/x11-libs/pango/Manifest
@@ -2,3 +2,4 @@ DIST pango-1.42.4-patchset.tar.xz 6040 BLAKE2B 
ec3f1a6a4de30e0864e7f0bf0950cb7a7
 DIST pango-1.42.4.tar.xz 833876 BLAKE2B 
7de1094a29750b9e59ea1e5c92644fa5d6b835828d027963a53cce3f204ee1ea0042ec492e209de9136f05ca131ccda959bc477d4f6e9c72e5f620ddf4235f26
 SHA512 
993e97f647eba0c5ed90bcfcb8228bf67fa3f20b1f4331e4e40a30788d7c3ac55eee1209471bf21df125cb8fc6121acc8062a9da2f8a7d6cbe8e9ad13a9320dc
 DIST pango-1.50.7.tar.xz 4294752 BLAKE2B 
049b7c09f2ec35ca229eadcd146513d2b292fac8c2296a1635f32c1e21a2ff14979c4ce4a88f966d2d85dad55e356f089c09e00062d06373f7d0760871333046
 SHA512 
4d754ed753fc34074c2a8751459406af7eb1eccb227c6158287f7e2921614d918cae47d078d4a2b4c098b641e40274e81bf1ec6b6a1b147efd550626665767d3
 DIST pango-1.50.8.tar.xz 4298760 BLAKE2B 
76531815c5b472823b62e0c7a44d4a6c8cf38d587527cceff46e9e7ad302c53abd5827ed4242db2f754761928632b986517ca2814a1ddb9501b2832bbadb3116
 SHA512 
81821e5837d5fb78a07ac8f8e360de9a9bf9b2418a3e0654f80ee3dce7f98325ea2483cc7c1d1db4a662886a1244530515d83480f4c3bc0510788a9bbbae2f91
+DIST pango-1.50.9.tar.xz 4262208 BLAKE2B 
13495015a7b22fb33d6c06e2fd2f325f30a80ee88a9ae7306aea477bc0551762ef20b3ebb4d8c4a45e791f25e675264a1d1973b703e131b4caab42369e4bd293
 SHA512 
f108274174c0ff5eabe8a3ed23ba124c85b72dbc9c003fee388fe8775deb0946ad3dfd7c96e70a30268cbd390e29c4c184ff30300d99add70ba0ead59b3e

diff --git a/x11-libs/pango/pango-1.50.9.ebuild 
b/x11-libs/pango/pango-1.50.9.ebuild
new file mode 100644
index ..84a85e7a5a68
--- /dev/null
+++ b/x11-libs/pango/pango-1.50.9.ebuild
@@ -0,0 +1,91 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit flag-o-matic gnome2-utils meson-multilib xdg
+
+DESCRIPTION="Internationalized text layout and rendering library"
+HOMEPAGE="https://www.pango.org/ https://gitlab.gnome.org/GNOME/pango;
+SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/pango/$(ver_cut 
1-2)/${P}.tar.xz"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+IUSE="debug +introspection sysprof test X"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   >=dev-libs/glib-2.62.2:2[${MULTILIB_USEDEP}]
+   >=dev-libs/fribidi-1.0.6[${MULTILIB_USEDEP}]
+   
>=media-libs/harfbuzz-2.6.0:=[glib(+),introspection?,truetype(+),${MULTILIB_USEDEP}]
+   >=media-libs/fontconfig-2.13.0:1.0=[${MULTILIB_USEDEP}]
+   >=x11-libs/cairo-1.12.10:=[X?,${MULTILIB_USEDEP}]
+   >=media-libs/freetype-2.5.0.1:2=[${MULTILIB_USEDEP}]
+   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+   X? (
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}]
+   )
+"
+DEPEND="${RDEPEND}
+   sysprof? ( >=dev-util/sysprof-capture-3.40.1:4[${MULTILIB_USEDEP}] )
+   X? ( x11-base/xorg-proto )
+"
+BDEPEND="
+   dev-util/glib-utils
+   sys-apps/help2man
+   virtual/pkgconfig
+   test? ( media-fonts/cantarell )
+"
+
+PATCHES=(
+   "${FILESDIR}"/1.50.8-harfbuzz-4.patch
+)
+
+src_prepare() {
+   default
+   xdg_environment_reset
+   gnome2_environment_reset
+}
+
+multilib_src_configure() {
+   if use debug; then
+   append-cflags -DPANGO_ENABLE_DEBUG
+   else
+   append-cflags -DG_DISABLE_CAST_CHECKS
+   fi
+
+   local emesonargs=(
+   # Never use gi-docgen subproject
+   --wrap-mode nofallback
+
+   -Dgtk_doc=false # we ship pregenerated docs
+   $(meson_native_use_feature introspection)
+   -Dinstall-tests=false
+   -Dfontconfig=enabled
+   $(meson_feature sysprof)
+   -Dlibthai=disabled
+   -Dcairo=enabled
+   $(meson_feature X xft)
+   -Dfreetype=enabled
+   )
+   meson_src_configure
+}
+
+multilib_src_install_all() {
+   insinto /usr/share/gtk-doc/html
+   # This will install PangoXft API docs regardless of USE=-X, but this is 
intentional
+   doins -r "${S}"/docs/Pango*
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+
+   if has_version 'media-libs/freetype[-harfbuzz]' ; then
+

[gentoo-commits] repo/gentoo:master commit in: x11-libs/gdk-pixbuf/

2022-08-11 Thread Matt Turner
commit: 60a95ae77886a99e40a9c79062c2a885a2b13ca5
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 11 16:11:59 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 11 16:20:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60a95ae7

x11-libs/gdk-pixbuf: Depend on dev-python/docutils

Also move gi-docgen from DEPEND/RDEPEND to BDEPEND, where it belongs.

Closes: https://bugs.gentoo.org/864853
Signed-off-by: Matt Turner  gentoo.org>

 x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.9.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.9.ebuild 
b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.9.ebuild
index aad9b485be43..7f32ba6a4b85 100644
--- a/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.9.ebuild
+++ b/x11-libs/gdk-pixbuf/gdk-pixbuf-2.42.9.ebuild
@@ -21,15 +21,16 @@ DEPEND="
>=media-libs/libpng-1.4:0=[${MULTILIB_USEDEP}]
jpeg? ( media-libs/libjpeg-turbo:0=[${MULTILIB_USEDEP}] )
tiff? ( >=media-libs/tiff-3.9.2:0=[${MULTILIB_USEDEP}] )
-   gtk-doc? ( >=dev-util/gi-docgen-2021.1 )
introspection? ( >=dev-libs/gobject-introspection-1.54:= )
 "
 RDEPEND="${DEPEND}"
 BDEPEND="
+   gtk-doc? ( >=dev-util/gi-docgen-2021.1 )
app-text/docbook-xsl-stylesheets
app-text/docbook-xml-dtd:4.3
dev-libs/glib:2
dev-libs/libxslt
+   dev-python/docutils
dev-util/glib-utils
>=sys-devel/gettext-0.19.8
virtual/pkgconfig



[gentoo-commits] repo/gentoo:master commit in: net-print/cups-pk-helper/

2022-08-11 Thread Matt Turner
commit: 2945194a5b5b3cc22648f81a2cac7df228451d92
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 11 15:49:38 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 11 16:20:19 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2945194a

net-print/cups-pk-helper: Version bump to 0.2.7

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

 net-print/cups-pk-helper/Manifest  |  1 +
 .../cups-pk-helper/cups-pk-helper-0.2.7.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/net-print/cups-pk-helper/Manifest 
b/net-print/cups-pk-helper/Manifest
index be83f62d218a..c892c20d195a 100644
--- a/net-print/cups-pk-helper/Manifest
+++ b/net-print/cups-pk-helper/Manifest
@@ -1 +1,2 @@
 DIST cups-pk-helper-0.2.6.tar.xz 162368 BLAKE2B 
3dec9a32f577c35a426ec4bbf2f96b2e18e0cd7bbb8a43fd93a6104d8fbb01de15cc7a168ae67fe5f2dca34823c70ac5f61acc01d876130d6ae9f5b789491d23
 SHA512 
33f1b6f58f4772148bd1cfb8163dacaffd3cc62f2d03731710c98b765ebb8b87541cb9cf43e886880134c32db91a43c7142b1556a0abdf1449068031b0d5fbd3
+DIST cups-pk-helper-0.2.7.tar.xz 54500 BLAKE2B 
e9107c18396e87bc8e385a32d00ac6d15bfcc6f53e9c04514bbc9e7bee6b4a87ba16b97da321c72fb01fa273a0fdcb396a0eed335e9e37eb98d7a299ec480ca1
 SHA512 
8f1d5dce73a52552d00eb3f54b39e03ca7ae711a0591572a25bd8926e228457628f1ee7e6ae89bda1b0ef473f860ad85bff9036ca1bc244d2cbda530bab96d40

diff --git a/net-print/cups-pk-helper/cups-pk-helper-0.2.7.ebuild 
b/net-print/cups-pk-helper/cups-pk-helper-0.2.7.ebuild
new file mode 100644
index ..beb9c4167af5
--- /dev/null
+++ b/net-print/cups-pk-helper/cups-pk-helper-0.2.7.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit gnome.org meson
+
+DESCRIPTION="PolicyKit helper to configure cups with fine-grained privileges"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/cups-pk-helper 
https://gitlab.freedesktop.org/cups-pk-helper/cups-pk-helper;
+SRC_URI="https://www.freedesktop.org/software/${PN}/releases/${P}.tar.xz;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+DEPEND="
+   >=dev-libs/glib-2.36.0:2
+   >=sys-auth/polkit-0.97
+   net-print/cups
+"
+RDEPEND="${DEPEND}
+   sys-apps/dbus
+"
+BDEPEND="
+   >=dev-util/gdbus-codegen-2.36.0
+   >=dev-util/intltool-0.40.6
+   virtual/pkgconfig
+   sys-devel/gettext
+"
+
+DOCS=( AUTHORS HACKING NEWS README )



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

2022-08-11 Thread WANG Xuerui
commit: 59eee1394d2af0b830ab6eca1e69cd32362c11ec
Author: WANG Xuerui  gentoo  org>
AuthorDate: Wed Aug 10 06:24:22 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Aug 11 15:26:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=59eee139

media-libs/libheif: keyword 1.12.0-r2 for ~loong

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

 media-libs/libheif/libheif-1.12.0-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/libheif/libheif-1.12.0-r2.ebuild 
b/media-libs/libheif/libheif-1.12.0-r2.ebuild
index c89a232647bc..e2759984de2b 100644
--- a/media-libs/libheif/libheif-1.12.0-r2.ebuild
+++ b/media-libs/libheif/libheif-1.12.0-r2.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/strukturag/libheif/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv x86"
 fi
 
 DESCRIPTION="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"



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

2022-08-11 Thread WANG Xuerui
commit: 392356e425a1612daff46699219b9b1446dd0f05
Author: WANG Xuerui  gentoo  org>
AuthorDate: Wed Aug 10 06:24:24 2022 +
Commit: WANG Xuerui  gentoo  org>
CommitDate: Thu Aug 11 15:26:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=392356e4

media-libs/libheif: forward ~loong

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

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

diff --git a/media-libs/libheif/libheif-.ebuild 
b/media-libs/libheif/libheif-.ebuild
index b319e000d0c7..b2726cb668a0 100644
--- a/media-libs/libheif/libheif-.ebuild
+++ b/media-libs/libheif/libheif-.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else

SRC_URI="https://github.com/strukturag/libheif/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86"
 fi
 
 DESCRIPTION="ISO/IEC 23008-12:2017 HEIF file format decoder and encoder"



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

2022-08-11 Thread Yixun Lan
commit: 2fa6b73678658e54d9ba391a6431fb83b30caaea
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 14:01:44 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 14:01:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2fa6b736

net-ftp/ftp: Keyword 0.17.34.0.2.5.1 arm64, #850538

Signed-off-by: Yixun Lan  gentoo.org>

 net-ftp/ftp/ftp-0.17.34.0.2.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/ftp/ftp-0.17.34.0.2.5.1.ebuild 
b/net-ftp/ftp/ftp-0.17.34.0.2.5.1.ebuild
index bbdb45b4f87b..b99d583cb14b 100644
--- a/net-ftp/ftp/ftp-0.17.34.0.2.5.1.ebuild
+++ b/net-ftp/ftp/ftp-0.17.34.0.2.5.1.ebuild
@@ -21,7 +21,7 @@ S="${WORKDIR}"/${MY_P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 IUSE="ipv6 readline ssl"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-ftp/uftpd/

2022-08-11 Thread Yixun Lan
commit: 012de8a8c30852e9d4f6c6292642629530b5d55d
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 14:01:51 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 14:01:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=012de8a8

net-ftp/uftpd: Keyword 2.15 arm64, #850538

Signed-off-by: Yixun Lan  gentoo.org>

 net-ftp/uftpd/uftpd-2.15.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-ftp/uftpd/uftpd-2.15.ebuild b/net-ftp/uftpd/uftpd-2.15.ebuild
index abc498a16b38..b185fb645db4 100644
--- a/net-ftp/uftpd/uftpd-2.15.ebuild
+++ b/net-ftp/uftpd/uftpd-2.15.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.xz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: net-ftp/tnftp/

2022-08-11 Thread Yixun Lan
commit: 310729347045e54258d76b5f959122e7292c0b99
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 14:01:47 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 14:01:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=31072934

net-ftp/tnftp: Keyword 20210827 arm64, #850538

Signed-off-by: Yixun Lan  gentoo.org>

 net-ftp/tnftp/tnftp-20210827.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-ftp/tnftp/tnftp-20210827.ebuild 
b/net-ftp/tnftp/tnftp-20210827.ebuild
index 0c915cffcf44..20ba951aef78 100644
--- a/net-ftp/tnftp/tnftp-20210827.ebuild
+++ b/net-ftp/tnftp/tnftp-20210827.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="ftp://ftp.netbsd.org/pub/NetBSD/misc/tnftp/;
 
 SLOT="0"
 LICENSE="BSD-4 BSD ISC"
-KEYWORDS="amd64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm64 ppc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="ipv6 socks5 ssl"
 REQUIRED_USE="socks5? ( !ipv6 )"
 



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

2022-08-11 Thread Yixun Lan
commit: b786a14ada4afd778bf0800d00c3f45bde26e586
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 14:01:36 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 14:01:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b786a14a

dev-libs/libite: Keyword 2.5.1 arm64, #850538

Signed-off-by: Yixun Lan  gentoo.org>

 dev-libs/libite/libite-2.5.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libite/libite-2.5.1.ebuild 
b/dev-libs/libite/libite-2.5.1.ebuild
index 4dc072f41234..1163330dee56 100644
--- a/dev-libs/libite/libite-2.5.1.ebuild
+++ b/dev-libs/libite/libite-2.5.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/troglobit/libite/releases/download/v${PV}/${P}.tar.x
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 
 src_configure() {
econf --enable-static=no



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

2022-08-11 Thread Yixun Lan
commit: b5688534d4834b1fb7dbcbe06a39655131f3112c
Author: Yixun Lan  gentoo  org>
AuthorDate: Thu Aug 11 14:01:40 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 14:01:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5688534

dev-libs/libuev: Keyword 2.4.0 arm64, #850538

Signed-off-by: Yixun Lan  gentoo.org>

 dev-libs/libuev/libuev-2.4.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/libuev/libuev-2.4.0.ebuild 
b/dev-libs/libuev/libuev-2.4.0.ebuild
index b181b2fb8849..011168732e7f 100644
--- a/dev-libs/libuev/libuev-2.4.0.ebuild
+++ b/dev-libs/libuev/libuev-2.4.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/troglobit/${PN}/releases/download/v${PV}/${P}.tar.xz
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="static-libs"
 
 src_configure() {



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

2022-08-11 Thread Andrew Ammerlaan
commit: 68d2a3c5867c0ebede0dfe3e9739693094e87c96
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Aug 11 14:03:28 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Aug 11 14:03:28 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68d2a3c5

profiles: mask more revdeps

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index d02dbd7cc..915fe2806 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -23,12 +23,16 @@ app-crypt/certbot-dns-digitalocean
 dev-python/prawcore
 # depends on dev-python/prawcore
 dev-python/praw
+# depends on dev-python/praw
+net-misc/giara
 
 # Andrew Ammerlaan  (2022-08-11)
 # depends on removed dev-python/pydispatcher
 dev-python/scrapy
 # depends on dev-python/scrapy
 dev-python/itemadapter
+# depends on dev-python/itemadapter
+dev-python/itemloaders
 
 # Andrew Ammerlaan  (2022-08-11)
 # depends on removed net-p2p/go-ipfs



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

2022-08-11 Thread Andrew Ammerlaan
commit: 4626f68b9d008e23f03c19b62954e98219c20090
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Aug 11 13:59:52 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Aug 11 13:59:52 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4626f68b

profiles: mask dev-python/praw

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index dfff4f9a3..d02dbd7cc 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -21,6 +21,8 @@ app-crypt/certbot-dns-digitalocean
 # Andrew Ammerlaan  (2022-08-11)
 # depends on removed  (2022-08-11)
 # depends on removed dev-python/pydispatcher



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

2022-08-11 Thread Andrew Ammerlaan
commit: 24d3e4f30ac7bd66727b5a595bbd767afb61bee1
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Aug 11 13:59:16 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Aug 11 13:59:16 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=24d3e4f3

profiles: mask dev-python/itemadapter

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

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 888f81dfd..dfff4f9a3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -25,6 +25,8 @@ dev-python/prawcore
 # Andrew Ammerlaan  (2022-08-11)
 # depends on removed dev-python/pydispatcher
 dev-python/scrapy
+# depends on dev-python/scrapy
+dev-python/itemadapter
 
 # Andrew Ammerlaan  (2022-08-11)
 # depends on removed net-p2p/go-ipfs



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

2022-08-11 Thread Yixun Lan
commit: 68b096f1a355710f8c1532f74da0b79bc4adcc48
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Aug  3 13:01:59 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 13:56:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=68b096f1

sys-block/mbuffer: keyword 20220418 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

 sys-block/mbuffer/mbuffer-20220418.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/mbuffer/mbuffer-20220418.ebuild 
b/sys-block/mbuffer/mbuffer-20220418.ebuild
index 1fb048d9a999..b066bd7de99e 100644
--- a/sys-block/mbuffer/mbuffer-20220418.ebuild
+++ b/sys-block/mbuffer/mbuffer-20220418.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.maier-komor.de/software/mbuffer/${P}.tgz;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86"
 IUSE="debug ssl test"
 
 REQUIRED_USE="test? ( ssl )"



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

2022-08-11 Thread Yixun Lan
commit: 9489ec360614e685007fc8c779ef08a75463690c
Author: Yixun Lan  gentoo  org>
AuthorDate: Wed Aug  3 13:40:44 2022 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Thu Aug 11 13:56:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9489ec36

dev-lang/gforth: keyword 0.7.3-r2 for ~riscv

Signed-off-by: Yixun Lan  gentoo.org>

 dev-lang/gforth/gforth-0.7.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/gforth/gforth-0.7.3-r2.ebuild 
b/dev-lang/gforth/gforth-0.7.3-r2.ebuild
index 201a852c376d..2f135b7501ce 100644
--- a/dev-lang/gforth/gforth-0.7.3-r2.ebuild
+++ b/dev-lang/gforth/gforth-0.7.3-r2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gforth/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~x86 ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~riscv ~x86 ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris"
 IUSE="+check emacs"
 
 DEPEND="dev-libs/ffcall



[gentoo-commits] repo/proj/guru:dev commit in: profiles/, dev-python/python-binary-memcached/

2022-08-11 Thread Andrew Ammerlaan
commit: 9307d05a62bf4396a49f08be3045c276956b0cf8
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Aug 11 13:56:45 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Aug 11 13:56:45 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9307d05a

dev-python/python-binary-memcached: treeclean

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

 dev-python/python-binary-memcached/Manifest|  1 -
 dev-python/python-binary-memcached/metadata.xml| 16 
 .../python-binary-memcached-0.31.1.ebuild  | 46 --
 profiles/package.mask  |  5 ---
 4 files changed, 68 deletions(-)

diff --git a/dev-python/python-binary-memcached/Manifest 
b/dev-python/python-binary-memcached/Manifest
deleted file mode 100644
index c53caf703..0
--- a/dev-python/python-binary-memcached/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST python-binary-memcached-0.31.1-gh.tar.gz 93809 BLAKE2B 
6a7a6921a7ff24427ddb5443acf7a81c43a06baaadaead9caf50a8eb758d05d43430dd581e69d6dd4e83799e52e93949250cbf69309bb860857c63972ad0fc2c
 SHA512 
3fbf0cbf05b42a5e28f01542ff0d190d138104cab97a5b05c17133f245fe37aad97b4daba31c203d854a4228fc9d49fd0306d93a45541a8cf7d173afc81c70ab

diff --git a/dev-python/python-binary-memcached/metadata.xml 
b/dev-python/python-binary-memcached/metadata.xml
deleted file mode 100644
index 399b6e337..0
--- a/dev-python/python-binary-memcached/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   lssndrbarbi...@gmail.com
-   Alessandro Barbieri
-   
-   
-A pure python module (thread safe) to access memcached via it's binary with 
SASL auth support.
-The main purpose of this module it to be able to communicate with memcached 
using binary protocol and support authentication, so it can work with Heroku 
for example.
-   
-   
-   jaysonsantos/python-binary-memcached
-   python-binary-memcached
-   
-

diff --git 
a/dev-python/python-binary-memcached/python-binary-memcached-0.31.1.ebuild 
b/dev-python/python-binary-memcached/python-binary-memcached-0.31.1.ebuild
deleted file mode 100644
index 37802aa38..0
--- a/dev-python/python-binary-memcached/python-binary-memcached-0.31.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="access memcached via it's binary protocol with SASL auth support"
-HOMEPAGE="
-   https://github.com/jaysonsantos/python-binary-memcached
-   https://pypi.org/project/python-binary-memcached/
-"
-SRC_URI="https://github.com/jaysonsantos/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}-gh.tar.gz"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   dev-python/six[${PYTHON_USEDEP}]
-   dev-python/uhashring[${PYTHON_USEDEP}]
-"
-DEPEND="
-   ${RDEPEND}
-   >=dev-python/m2r-0.2.1[${PYTHON_USEDEP}]
-   test? ( net-misc/memcached )
-"
-BDEPEND="
-   test? (
-   dev-python/mistune[${PYTHON_USEDEP}]
-   >=dev-python/pytest-6.2[${PYTHON_USEDEP}]
-   >=dev-python/trustme-0.9.0[${PYTHON_USEDEP}]
-   >=dev-python/mock-4.0[${PYTHON_USEDEP}]
-   )
-"
-
-RESTRICT="test" # tests require a running memcached
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   rm README.rst || die
-   default
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 5629afab9..888f81dfd 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -48,11 +48,6 @@ app-emulation/dxvk-bin
 app-editors/imhex
 dev-vcs/mergestat
 
-# Alessandro Barbieri  (2022-06-26)
-# depends on non-existent dev-python/m2r
-# https://github.com/jaysonsantos/python-binary-memcached/issues/249
-dev-python/python-binary-memcached
-
 # Christopher Byrne  (2022-04-15)
 # Depends on masked dev-libs/openssl-3.0.*
 app-crypt/tpm2-openssl



[gentoo-commits] repo/proj/guru:dev commit in: dev-util/rpmlint/files/, profiles/, dev-util/rpmlint/

2022-08-11 Thread Andrew Ammerlaan
commit: 14812b460e20227fa57448c8cac3adcd6a41ab05
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Aug 11 13:55:47 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Aug 11 13:55:47 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=14812b46

dev-util/rpmlint: treeclean

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

 dev-util/rpmlint/Manifest|  1 -
 dev-util/rpmlint/files/no-coverage.patch |  8 -
 dev-util/rpmlint/metadata.xml| 20 ---
 dev-util/rpmlint/rpmlint-2.3.0.ebuild| 57 
 profiles/package.mask|  4 ---
 5 files changed, 90 deletions(-)

diff --git a/dev-util/rpmlint/Manifest b/dev-util/rpmlint/Manifest
deleted file mode 100644
index ad2b7bd9c..0
--- a/dev-util/rpmlint/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST rpmlint-2.3.0.tar.gz 5738210 BLAKE2B 
ae6e2f494009e5f7d2235d4a6e0bbc54bc992f890285d713b50e73131d2926e6db5f230a03c07cef6c314e33e418d8a8522721b0896a78cf4a3c6dbc6ea7e2ac
 SHA512 
8c10a58315695a5768a8f95de9bcae2cca264d48e1a672ff515a2696eee3664dc97c1653ef6e3e18e46f2286cb99430fb3eaa3b0dc6ac069a6b4b94d13584903

diff --git a/dev-util/rpmlint/files/no-coverage.patch 
b/dev-util/rpmlint/files/no-coverage.patch
deleted file mode 100644
index 86edc54ec..0
--- a/dev-util/rpmlint/files/no-coverage.patch
+++ /dev/null
@@ -1,8 +0,0 @@
 a/setup.cfg
-+++ b/setup.cfg
-@@ -10,4 +10,4 @@
- application-import-names = Testing
- 
- [tool:pytest]
--addopts = -vv --cov=rpmlint -n auto --flake8
-+addopts = -vv

diff --git a/dev-util/rpmlint/metadata.xml b/dev-util/rpmlint/metadata.xml
deleted file mode 100644
index f7b6c936b..0
--- a/dev-util/rpmlint/metadata.xml
+++ /dev/null
@@ -1,20 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-   
-   co-maintainers welcome
-   lssndrbarbi...@gmail.com
-   Alessandro Barbieri
-   
-   
-   rpmlint is a tool for checking common errors in rpm packages. 
It can be
-   used to test individual packages and spec files before 
uploading or to
-   check an entire distribution. By default all applicable checks 
are
-   processed but specific checks can be performed by using command 
line
-   parameters.
-   
-   
-   
https://github.com/rpm-software-management/rpmlint/issues
-   rpm-software-management/rpmlint
-   
-

diff --git a/dev-util/rpmlint/rpmlint-2.3.0.ebuild 
b/dev-util/rpmlint/rpmlint-2.3.0.ebuild
deleted file mode 100644
index fd823edea..0
--- a/dev-util/rpmlint/rpmlint-2.3.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_SINGLE_IMPL=1
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit distutils-r1
-
-DESCRIPTION="Tool for checking common errors in RPM packages"
-HOMEPAGE="https://github.com/rpm-software-management/rpmlint;
-SRC_URI="https://github.com/rpm-software-management/rpmlint/archive/refs/tags/${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   app-arch/bzip2
-   app-arch/cpio
-   app-arch/gzip
-   app-arch/xz-utils
-   app-arch/zstd
-   sys-devel/binutils:*
-
-   $(python_gen_cond_dep '
-   app-arch/rpm[python,${PYTHON_SINGLE_USEDEP}]
-   dev-python/pybeam[${PYTHON_USEDEP}]
-   dev-python/pyxdg[${PYTHON_USEDEP}]
-   dev-python/toml[${PYTHON_USEDEP}]
-   dev-python/zstandard[${PYTHON_USEDEP}]
-   dev-python/pyenchant[${PYTHON_USEDEP}]
-   dev-python/python-magic[${PYTHON_USEDEP}]
-   ')
-"
-DEPEND="
-   ${RDEPEND}
-   test? (
-   app-shells/dash
-   dev-libs/appstream-glib
-   dev-util/desktop-file-utils
-   dev-util/devscripts
-   || (
-   ( app-text/hunspell[l10n_cs,l10n_en] 
app-text/enchant[hunspell] )
-   ( app-text/aspell[l10n_cs,l10n_en] 
app-text/enchant[aspell] )
-   )
-
-   $(python_gen_cond_dep 
'dev-python/pytest-xdist[${PYTHON_USEDEP}]')
-   )
-"
-
-PATCHES=( "${FILESDIR}/no-coverage.patch" )
-
-distutils_enable_tests pytest

diff --git a/profiles/package.mask b/profiles/package.mask
index 44544dfbb..5629afab9 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -48,10 +48,6 @@ app-emulation/dxvk-bin
 app-editors/imhex
 dev-vcs/mergestat
 
-# Andrew Ammerlaan  (2022-07-03)
-# unavailable dependency dev-util/distro-info
-dev-util/rpmlint
-
 # Alessandro Barbieri  (2022-06-26)
 # depends on non-existent dev-python/m2r
 # https://github.com/jaysonsantos/python-binary-memcached/issues/249



[gentoo-commits] repo/proj/guru:dev commit in: dev-util/devscripts/files/, profiles/, dev-util/devscripts/

2022-08-11 Thread Andrew Ammerlaan
commit: ca500cc0ae17d57ec16e59319808c339d76ec2ed
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Aug 11 13:55:29 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Aug 11 13:55:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ca500cc0

dev-util/devscripts: treeclean

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

 dev-util/devscripts/Manifest   |   2 -
 dev-util/devscripts/devscripts-2.21.3.ebuild   | 120 
 dev-util/devscripts/devscripts-2.22.1-r1.ebuild| 126 -
 dev-util/devscripts/devscripts-2.22.1.ebuild   | 125 
 .../devscripts/files/Remove-failing-tests.patch|  22 
 ...Debian-xsl-stylesheets-paths-with-Gentoos.patch |  42 ---
 dev-util/devscripts/files/distutils-r1.patch   |  26 -
 dev-util/devscripts/metadata.xml   |   9 --
 profiles/package.mask  |   1 -
 9 files changed, 473 deletions(-)

diff --git a/dev-util/devscripts/Manifest b/dev-util/devscripts/Manifest
deleted file mode 100644
index 8bfe80aaf..0
--- a/dev-util/devscripts/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST devscripts_2.21.3.tar.xz 980408 BLAKE2B 
99207ed58c0fdc592ce491ddda79a2ecb22a8975ef70828749bf58dff9cc94f63779025b3f0326d0c2c49ca768a7e651b1f9e7843e6da298c25340916334de25
 SHA512 
84122dd36de7961c26044ac8b82c0aae1dd4a811b5f0d522fe43488dad2872aa044ad1f38a78e49f9d13d8c19eb583a8082d636caeebb188f1dd4f1caec7
-DIST devscripts_2.22.1.tar.xz 989556 BLAKE2B 
2a2e3ca9757c710e181e807f0369c137f21070d86b4c51d8b5132ca4add33677edbd26e04a2faae93e9e458608028680ce450119579aa40ad205c8e5d857
 SHA512 
260603e1a655035c5aca3c9734db1bc6aa7e9aa017ece7e9158c57e06a1ee548922ec2defdd9dcb4560743d78aef08d30695b1bc833bd4d77fe1c7497d157c45

diff --git a/dev-util/devscripts/devscripts-2.21.3.ebuild 
b/dev-util/devscripts/devscripts-2.21.3.ebuild
deleted file mode 100644
index db63f9def..0
--- a/dev-util/devscripts/devscripts-2.21.3.ebuild
+++ /dev/null
@@ -1,120 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_OPTIONAL=true
-PYTHON_COMPAT=( python3_9 )
-
-inherit distutils-r1
-
-DESCRIPTION="Scripts to make the life of a Debian Package maintainer easier"
-HOMEPAGE="https://salsa.debian.org/debian/devscripts;
-SRC_URI="mirror://debian/pool/main/d/${PN}/${PN}_${PV}.tar.xz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="python test"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-RESTRICT="!test? ( test )"
-
-CDEPEND="
-   dev-lang/perl:=
-   dev-perl/File-DesktopEntry
-   dev-perl/File-DirList
-   dev-perl/File-HomeDir
-   dev-perl/File-Touch
-   dev-perl/IPC-Run
-   dev-perl/Moo
-   dev-perl/libwww-perl
-   dev-util/distro-info
-   python? ( ${PYTHON_DEPS} )
-"
-DEPEND="${CDEPEND}
-   test? (
-   app-arch/zip
-   dev-perl/Git-Wrapper
-   dev-perl/GitLab-API-v4
-   dev-perl/List-Compare
-   dev-perl/Software-License
-   dev-perl/String-ShellQuote
-   dev-perl/UNIVERSAL-require
-   dev-python/pyftpdlib[${PYTHON_USEDEP}]
-   dev-python/python-debian[${PYTHON_USEDEP}]
-   dev-util/shunit2
-   dev-vcs/subversion
-   sys-libs/libfaketime
-   virtual/perl-DB_File
-   )
-"
-RDEPEND="${CDEPEND}
-   app-arch/dpkg
-   app-crypt/gnupg
-   app-text/wdiff
-   dev-util/debhelper
-   dev-util/patchutils
-   sys-apps/fakeroot
-"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}/distutils-r1.patch"
-   "${FILESDIR}/Remove-failing-tests.patch"
-   "${FILESDIR}/Replace-Debian-xsl-stylesheets-paths-with-Gentoos.patch"
-)
-
-DISTUTILS_S="${S}"/scripts
-
-src_prepare() {
-   default
-
-   # Avoid file collision with app-shells/bash-completion
-   rm "${DISTUTILS_S}"/bts.bash_completion || die
-}
-
-src_configure() {
-   default
-
-   if use python; then
-   pushd "${DISTUTILS_S}" > /dev/null || die
-   distutils-r1_src_configure
-   popd > /dev/null || die
-   fi
-}
-
-src_compile() {
-   default
-
-   if use python; then
-   pushd "${DISTUTILS_S}" > /dev/null || die
-   distutils-r1_src_compile
-   popd > /dev/null || die
-   fi
-}
-
-src_install() {
-   dodir /usr/bin
-   default
-
-   if use python; then
-   pushd "${DISTUTILS_S}" > /dev/null || die
-   distutils-r1_src_install
-   popd > /dev/null || die
-   fi
-
-   mv "${ED}"/usr/share/doc/${PN} "${ED}"/usr/share/doc/${PF} || die
-
-   # "incorrect name, no completions for command defined"
-   rm "${ED}"/usr/share/bash-completion/completions/{debcheckout,pkgnames} 
|| die
-}
-

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

2022-08-11 Thread Andrew Ammerlaan
commit: 3ac638f4c4fa681d0d3aa262ac656ddff39f6382
Author: Andrew Ammerlaan  gentoo  org>
AuthorDate: Thu Aug 11 13:50:57 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Thu Aug 11 13:53:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3ac638f4

package.mask: mask some packages with broken deps

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

 profiles/package.mask | 20 
 1 file changed, 20 insertions(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 677156903..47f5543f5 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -14,6 +14,26 @@
 
 # New entries go on top.
 
+# Andrew Ammerlaan  (2022-08-11)
+# depends on removed ~app-crypt/certbot-1.27.0
+app-crypt/certbot-dns-digitalocean
+
+# Andrew Ammerlaan  (2022-08-11)
+# depends on removed  (2022-08-11)
+# depends on removed dev-python/pydispatcher
+dev-python/scrapy
+
+# Andrew Ammerlaan  (2022-08-11)
+# depends on removed net-p2p/go-ipfs
+net-p2p/ipfs-cluster
+
+# Andrew Ammerlaan  (2022-08-11)
+# depends on removed 
 # depends on dev-python/PyQt6, which is currently masked with all of qt6
 >=net-misc/maestral-qt-1.6.0



[gentoo-commits] repo/proj/guru:master commit in: sci-electronics/lxi-tools/

2022-08-11 Thread Andrew Ammerlaan
commit: 67e61e629e803ad277bce25315978f6ef7b9e7af
Author: Jan Henke  taujhe  de>
AuthorDate: Sun Aug  7 14:26:09 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Aug  7 14:26:09 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=67e61e62

sci-electronics/lxi-tools: new package, add 2.1

Signed-off-by: Jan Henke  taujhe.de>

 sci-electronics/lxi-tools/Manifest |  1 +
 sci-electronics/lxi-tools/lxi-tools-2.1.ebuild | 36 ++
 sci-electronics/lxi-tools/metadata.xml | 21 +++
 3 files changed, 58 insertions(+)

diff --git a/sci-electronics/lxi-tools/Manifest 
b/sci-electronics/lxi-tools/Manifest
new file mode 100644
index 0..3f3137ef9
--- /dev/null
+++ b/sci-electronics/lxi-tools/Manifest
@@ -0,0 +1 @@
+DIST lxi-tools-2.1.tar.gz 937946 BLAKE2B 
25de9b879bd5db4e664aa2420598b22838477f10485247d6f435249dbc7c3d866c439362a99252c7fee329b7cf2a24c2bd72f523aac55a5cb70db914031daf0c
 SHA512 
ddf54826aa3f50a575d2c5f6e62d6a1a813adde275530b19c4e7465e689f43fea290aab4c5762498e2437e67bade577ace4f12cd24ae41c99f811772c38ad307

diff --git a/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild 
b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
new file mode 100644
index 0..f069b84ec
--- /dev/null
+++ b/sci-electronics/lxi-tools/lxi-tools-2.1.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Tools to access devices with LXI"
+HOMEPAGE="https://github.com/lxi-tools/lxi-tools;
+SRC_URI="https://github.com/lxi-tools/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="bash-completion +gui"
+
+RDEPEND="
+   bash-completion? ( >=app-shells/bash-completion-2.11 )
+   >=sys-libs/readline-8.1_p2
+   >=dev-lang/lua-5.3.6-r2:5.3
+   >=sci-electronics/liblxi-1.13
+   gui? (
+   >=dev-libs/glib-2.70
+   >=gui-libs/gtk-4.5.0
+   >=gui-libs/gtksourceview-5.3.3
+   >=gui-libs/libadwaita-1.0.1
+   )
+"
+DEPEND="${RDEPEND}"
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use gui)
+   )
+   meson_src_configure
+}

diff --git a/sci-electronics/lxi-tools/metadata.xml 
b/sci-electronics/lxi-tools/metadata.xml
new file mode 100644
index 0..4b1b4bbc3
--- /dev/null
+++ b/sci-electronics/lxi-tools/metadata.xml
@@ -0,0 +1,21 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+gen...@taujhe.de
+Jan Henke
+  
+  
+lxi-tools/lxi-tools
+  
+  
+   lxi-tools are open source software tools for managing network attached 
LXI 
+   compatible test instruments such as modern oscilloscopes, power 
supplies, 
+   spectrum analyzers etc.
+
+   Features include automatic discovery of test instruments, sending SCPI 
+   commands, grabbing screenshots from supported instruments, benchmarking 
+   SCPI message performance, and powerful scripting for test automation. 
Both 
+   a commandline tool and a GUI tool are available.
+  
+



[gentoo-commits] repo/proj/guru:master commit in: net-p2p/yggdrasil-go/

2022-08-11 Thread Andrew Ammerlaan
commit: b53b0c545b668ccd62ceaaf3df1fd149600c6c77
Author: Eric Joldasov  getgoogleoff  me>
AuthorDate: Tue Aug  9 19:51:59 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Aug  9 19:51:59 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b53b0c54

net-p2p/yggdrasil-go: drop 0.3.15

Signed-off-by: Eric Joldasov  getgoogleoff.me>

 net-p2p/yggdrasil-go/Manifest   |  65 -
 net-p2p/yggdrasil-go/yggdrasil-go-0.3.15.ebuild | 117 
 2 files changed, 182 deletions(-)

diff --git a/net-p2p/yggdrasil-go/Manifest b/net-p2p/yggdrasil-go/Manifest
index 1a74c37c2..e91336917 100644
--- a/net-p2p/yggdrasil-go/Manifest
+++ b/net-p2p/yggdrasil-go/Manifest
@@ -1,67 +1,2 @@
-DIST 
github.com%2F!arceliar%2Fphony%2F@v%2Fv0.0.0-20191006174943-d0c68492aca0.mod 42 
BLAKE2B 
113b161c3362f86482e8e107940c202a2870c2b722a6226dd9cde65dc4d39a7610b17d014a152c939df9c5433801d334c93e5233cf77fd6160d075c84aa37e20
 SHA512 
7b93619432e39da924cac8312148fe7dcb4bb760bb8f01e2285db806410532f85ebbe3983b7b5d5227fe3dfc28a9db8b86669f2c0f40cc319cb4590380c70dbb
-DIST 
github.com%2F!arceliar%2Fphony%2F@v%2Fv0.0.0-20191006174943-d0c68492aca0.zip 
9460 BLAKE2B 
ee30c74923e624720d1b5d7c3c8b3b377212ff0567da7b5b0af78aa248e137a198453f9d0692c0086115503d2e3ebdec547b3c130b20a720e2dd98b97a04de5d
 SHA512 
9c72e11aff4b17a79e836a42fc9cb478921214da2b3d088545d3183c0025e89e8b31d90a829ac3f879f3db0c508e58b48a605b7b288f26379f8c1b43689d3edc
-DIST github.com%2F!vivid!cortex%2Fewma%2F@v%2Fv1.1.1.mod 35 BLAKE2B 
7b5030936400bbff37dc3e2c1d6b7224df6d5f5f97a2e22fd1dc08f3d6ef08894eec30004589dbe81e56a9e71b3ca391e088996a84c98ddabc4d934db7c9fa22
 SHA512 
e6d91e44ed614c66a668e8423e7657d0696cdd5c6fc0fc4d6ecf741849f1e4891e47262376d4787c967c88c907c5bc668d437d613afaf628fcbbcb352f5d2033
-DIST github.com%2F!vivid!cortex%2Fewma%2F@v%2Fv1.1.1.zip 8064 BLAKE2B 
3fb2dca3bf31d7c8e0bfa67193ca30e7ed76e270fc6ee5e1f1acadaf5be7047dc63afed2f4e55a16d3a641ebbcb8111a6a580b91964081b3e3621e8d62d70f9d
 SHA512 
0a6ea5758fd0d42e2ce8366405eb0ed42da5737c830b36a9cc24cf99541d7d7760a2ee868c99901fb9a103f8113183771f0dbe139deac3667222692c4d025eb9
-DIST github.com%2Fcheggaaa%2Fpb%2Fv3%2F@v%2Fv3.0.4.mod 299 BLAKE2B 
c5607f7f89dbb49d7f898e867e366f88ac28149f4ff76e02885a3c5f216140367f57c62cd1fc11205f76e8d83b1ce1bf52ec8f1bcfbc04e797e7c0fb4f193690
 SHA512 
51b80b95e070e37852ff192ee85c01f2b2ee42c7bdc2aa2740af092026d734bf0a58baf64c23aa83747a1f9b1b130ad89922fa3b83c5e12b43696e317f259b65
-DIST github.com%2Fcheggaaa%2Fpb%2Fv3%2F@v%2Fv3.0.4.zip 24036 BLAKE2B 
72cc21eea465daf676d9fd6775208800aa3a5367489458c95a8a66b68a1e1711f69985a1e08c01c1cfffe4f6773660f771bb79d115b182f21328728dfbab420c
 SHA512 
8e7f6777fea0b593b211dad35502685145e144a246820bb6439e3975eb46735c2f904b68f45e882500345fa8bb161bfc5f2087d82c0e5bafcb8bfbd821759c4e
-DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.mod 30 BLAKE2B 
cdd74965525563fa7e3db19aae87c777b2de65faeaf2987957ea3bb4c0c6a91ab82fe02bfeeab4d6f523214bc2e929628c082edb967d49309e75483ff4c3bb41
 SHA512 
2dfc66b2f6accb7ecaccc48cb3daa338173f4751d954cb2912025d881f17a7a2df0457b2d7420f2d93b50519a2437a763450c4d639a26b3289fce7bdec5bb144
-DIST github.com%2Ffatih%2Fcolor%2F@v%2Fv1.7.0.zip 11987 BLAKE2B 
bb585868c568466b366c1c50762376d9e2b6f3d3ac287af94c45f7d348516d2e80ee96c6980a4b5fede40f1302f0e3e900e24aae16fec29801a795cb7e514dec
 SHA512 
70f78081c04bdbb52e8f5d24b8926b39a28c4f069beaee0d7bf24be946f2b0ee3bc08d8ecc1305412623670e1767433a37d458df3fc849d244c63b6222f1f599
-DIST github.com%2Fgologme%2Flog%2F@v%2Fv0.0.0-20181207131047-4e5d8ccb38e8.mod 
30 BLAKE2B 
185b19379cfee2e8e6cd66bb7aa63504f3207635a6f718a20010d52c4a1319b571755cd68fc908812ceb32d964f9110ec2dd8032f41be9efeaeaa12aa97b1b46
 SHA512 
16a1a6865e352be1835b2307c44798da5391d6762998d4ba45960513fb69445b1fe60cf1e9685763d9e9ca8546717fe1539258519051ae0fbf454525ea9fb0b4
-DIST github.com%2Fgologme%2Flog%2F@v%2Fv0.0.0-20181207131047-4e5d8ccb38e8.zip 
6194 BLAKE2B 
04fccf366cbe5ee21292df9c2698a6445cc31e623cf976d5bac1685c61080a449b07e49fa3db38241eae377562ac3ec53bc89127dd8fa34c84f3744652f9e126
 SHA512 
df3ff1123736f3bd0a1fdab192ac90067291236031418a19d0029ce996624db99d596c06a0db19264f8bf936125ea894ca62545e4b1d45add9fe6ed6e8aaf0b3
-DIST github.com%2Fhashicorp%2Fgo-syslog%2F@v%2Fv1.0.0.mod 38 BLAKE2B 
9696a247ecfb868250995f7fde811a647e8b01d6f3a33996109c44aaa16bc85c0c70e9bc621857db7208f5ef49706cd3b2313f13b9e6f3327aebac20f72b4a8f
 SHA512 
dec8c92389eca1dc304cce77cc70a3b51940f073581320117627c759edd5b523c379473179865f1e3e3f86deb9f323a5fff54951871053ed43293b0454182871
-DIST github.com%2Fhashicorp%2Fgo-syslog%2F@v%2Fv1.0.0.zip 6210 BLAKE2B 
b5d3b234531523546445cfc48d9c4198fd0ffe8c91ad6d2b3349f28d5073a6d3cd76f0db36380d69ea5617357a8677a81ef8cebe04c0dbc4538bec1810f817ae
 SHA512 
50519f8c8efb7b3494c857373cb119b924f2ace674f07bd0d0da5939a75f8c154b5cc8875fd35135228a9e8e221fccc174aa298d21bd490b89a0f2d9aeb38e09
-DIST 

[gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/files/, app-editors/neovim-qt/

2022-08-11 Thread Andrew Ammerlaan
commit: d4a86b6f10ef7b3b2c740491c33c554c02b94000
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Tue Aug  9 13:54:09 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Aug  9 13:54:09 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d4a86b6f

app-editors/neovim-qt: add 0.2.17, fix tests

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 app-editors/neovim-qt/Manifest |  1 +
 ...only-require-Qt5Test-if-tests-are-enabled.patch | 50 ++
 app-editors/neovim-qt/neovim-qt-0.2.17.ebuild  | 50 ++
 3 files changed, 101 insertions(+)

diff --git a/app-editors/neovim-qt/Manifest b/app-editors/neovim-qt/Manifest
index 653ba816d..69eafaae4 100644
--- a/app-editors/neovim-qt/Manifest
+++ b/app-editors/neovim-qt/Manifest
@@ -1 +1,2 @@
 DIST neovim-qt-0.2.16.1.tar.gz 1069176 BLAKE2B 
ccb9d7275735969dc0576b498e017068da63e14ba82e3160621822d83c3902e35064be393dda57f8e70d83bcbb22e8e663f2ec996ffb48ff0140099ae0793a88
 SHA512 
63910b0416103f8c4f2450a07d4790c2b7fd26e2ba324445a20700a12d1dc3cb6fb06c674f3a1173348dad5c2256e8018167765306ca33ad94bc176bf5e4e45c
+DIST neovim-qt-0.2.17.tar.gz 1076230 BLAKE2B 
ab322d7f03bca40b4b3ee6e89a20dc04ec06d9ba3f49c0e658586f55e5219d13770078ed956a889dbe100836cb83cbc1829a39d60e9164e3bcb43ba085a72412
 SHA512 
ff290c6797c51ac23acd87ecd4c8d034321c4994c76b60f5d15626aa31db377090359d4bc681c6a9d0462ff5847269c35b95561ccd156600cf3f09f28ad4b8b2

diff --git 
a/app-editors/neovim-qt/files/neovim-qt-0.2.17-only-require-Qt5Test-if-tests-are-enabled.patch
 
b/app-editors/neovim-qt/files/neovim-qt-0.2.17-only-require-Qt5Test-if-tests-are-enabled.patch
new file mode 100644
index 0..06ca1b0ed
--- /dev/null
+++ 
b/app-editors/neovim-qt/files/neovim-qt-0.2.17-only-require-Qt5Test-if-tests-are-enabled.patch
@@ -0,0 +1,50 @@
+# upstream PR: 
+
+From dd334be1e113d9e0f2310cc35b620c5090d06e1f Mon Sep 17 00:00:00 2001
+From: tastytea 
+Date: Tue, 9 Aug 2022 15:32:08 +0200
+Subject: [PATCH] only require Qt5Test if tests are enabled
+
+---
+ CMakeLists.txt | 2 +-
+ src/gui/shellwidget/CMakeLists.txt | 4 +++-
+ 2 files changed, 4 insertions(+), 2 deletions(-)
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index 8c77d27..ed02426 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -135,7 +135,6 @@ set(CMAKE_AUTOMOC ON)
+ find_package(Qt5Core REQUIRED)
+ find_package(Qt5Network REQUIRED)
+ find_package(Qt5Svg REQUIRED)
+-find_package(Qt5Test REQUIRED)
+ find_package(Qt5Widgets REQUIRED)
+ 
+ if(Qt5Core_VERSION VERSION_LESS 5.8)
+@@ -176,6 +175,7 @@ add_subdirectory(doc)
+ 
+ option(ENABLE_TESTS "Build tests" ON)
+ if(ENABLE_TESTS)
++  find_package(Qt5Test REQUIRED)
+   enable_testing()
+   add_subdirectory(test)
+   add_subdirectory(src/gui/shellwidget/test)
+diff --git a/src/gui/shellwidget/CMakeLists.txt 
b/src/gui/shellwidget/CMakeLists.txt
+index f456c4a..41bc382 100644
+--- a/src/gui/shellwidget/CMakeLists.txt
 b/src/gui/shellwidget/CMakeLists.txt
+@@ -9,7 +9,9 @@ set(CMAKE_INCLUDE_CURRENT_DIR ON)
+ # Qt
+ set(CMAKE_AUTOMOC ON)
+ find_package(Qt5Widgets REQUIRED)
+-find_package(Qt5Test REQUIRED)
++if(ENABLE_TESTS)
++  find_package(Qt5Test REQUIRED)
++endif()
+ 
+ if (WIN32 AND USE_STATIC_QT)
+   add_definitions(-DUSE_STATIC_QT)
+-- 
+2.35.1
+

diff --git a/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild 
b/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
new file mode 100644
index 0..204a6bb3c
--- /dev/null
+++ b/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake virtualx xdg
+
+DESCRIPTION="Neovim client library and GUI, in Qt5"
+HOMEPAGE="https://github.com/equalsraf/neovim-qt;
+SRC_URI="https://github.com/equalsraf/neovim-qt/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="ISC"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+
+COMMON_DEPEND="
+   dev-libs/msgpack
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5"
+DEPEND="
+   ${COMMON_DEPEND}
+   test? ( dev-qt/qttest:5 )
+"
+RDEPEND="
+   ${COMMON_DEPEND}
+   app-editors/neovim"
+
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+   
"${FILESDIR}"/${PN}-0.2.17-only-require-Qt5Test-if-tests-are-enabled.patch
+)
+src_configure() {
+   local mycmakeargs=(
+   -DUSE_SYSTEM_MSGPACK=ON
+   -DUSE_GCOV=OFF
+   -DENABLE_TESTS=$(usex test)
+   -DBUILD_SHARED_LIBS=OFF # upstream explicitly builds static lib
+   )
+
+   cmake_src_configure
+}
+
+src_test() {
+   virtx cmake_src_test
+}



[gentoo-commits] repo/proj/guru:master commit in: sci-electronics/liblxi/

2022-08-11 Thread Andrew Ammerlaan
commit: b2393fc0708edd5f06eade04d5ddae86a40fe186
Author: Jan Henke  taujhe  de>
AuthorDate: Sun Aug  7 14:01:38 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Aug  7 14:01:38 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b2393fc0

sci-electronics/liblxi: update maintainers

Signed-off-by: Jan Henke  taujhe.de>

 sci-electronics/liblxi/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-electronics/liblxi/metadata.xml 
b/sci-electronics/liblxi/metadata.xml
index f62351af6..2f006ff93 100644
--- a/sci-electronics/liblxi/metadata.xml
+++ b/sci-electronics/liblxi/metadata.xml
@@ -3,7 +3,7 @@
 
   
 gen...@taujhe.de
-Jan Henke
+Jan Henke
   
   
 lxi-tools/liblxi



[gentoo-commits] repo/proj/guru:master commit in: media-video/wlrobs/

2022-08-11 Thread Andrew Ammerlaan
commit: f99a4c038e57a2c6c375559d3e2c596062ab0237
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Mon Aug  8 20:45:00 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Aug  8 20:45:00 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f99a4c03

media-video/wlrobs: Regenerate manifest, tarball wasn't stable

See: https://todo.sr.ht/~sircmpwn/hg.sr.ht/33
Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>

 media-video/wlrobs/Manifest | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/wlrobs/Manifest b/media-video/wlrobs/Manifest
index 4070c07a0..319472213 100644
--- a/media-video/wlrobs/Manifest
+++ b/media-video/wlrobs/Manifest
@@ -1 +1 @@
-DIST wlrobs-1.0.tar.gz 54998 BLAKE2B 
b4e3975d9bc7b0b8dc5721448b29aa95a2c17284fbab5db738ede9998ae9add2a984fa1f1e1d9fa5fe281cef58edd0dd525a358f12c3271cad9a357a101a7b48
 SHA512 
846f0c0ca780296c2704bfc05c96dd1cb9579bcd29b24abe03567abad4c3d8276712c524e79080c8f0632726ad3b6b1e793d4cea0a81a1aa3e7689595fec01cf
+DIST wlrobs-1.0.tar.gz 54980 BLAKE2B 
bf5579593c9afb19f1c9d3d5cc34608483626e25b0b60d5834fc799a10293aca248aa2f9c36c43c0a92df4c376708b7a507b806dcee156e92388464c070bebf9
 SHA512 
a6ca293b0d21dee1264cbecfa3c10db3f696faa09c1cd445ced2fc17440a45677e07018c7a4eb0e72880b444bb2f1e0db9307a07c9117e56ff07043d1e6a758d



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

2022-08-11 Thread Andrew Ammerlaan
commit: 2fecd79959dbc36a6616b643a690bf84a3d7a184
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Mon Aug  8 20:22:40 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Aug  8 20:23:13 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2fecd799

dev-lang/hare: Fix snapshot

Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>

 dev-lang/hare/Manifest |  2 +-
 dev-lang/hare/hare-0_pre20220624-r1.ebuild | 33 
 dev-lang/hare/hare-0_pre20220730.ebuild| 40 ++
 dev-lang/hare/hare-.ebuild | 32 +++-
 4 files changed, 61 insertions(+), 46 deletions(-)

diff --git a/dev-lang/hare/Manifest b/dev-lang/hare/Manifest
index 628dcaace..8ca8dae2d 100644
--- a/dev-lang/hare/Manifest
+++ b/dev-lang/hare/Manifest
@@ -1 +1 @@
-DIST hare-0_pre20220624.tar.gz 671399 BLAKE2B 
4ef1d2724219367ce6ffdcf69b5c9f5bd573ddf19a12c0aafa695483c05ef2032961ea714058af9bcfecfcbb45f0ca9bfd3056dc0b388f001f4ddb8a96873233
 SHA512 
9e8b4b17e293f0bc23cc3913860055d62dae0d0fc700080b2bde76a65c5344bf09e5a51c92f799e9c000bd18550fe10b9a5cd6e38c52ffe7c3faca8a670188ee
+DIST hare-0_pre20220730.tar.gz 681268 BLAKE2B 
e91bb4e0d87adb8271a1f9a30b744e3874482f38d0d370c6abd446456c960e088d1ff717793c4fa5876461397792c7ec66478bc327e11ba22b372f0ee714a5c4
 SHA512 
d7c07188e0416e68c5314f40d1dbffa27cd03644784aecb14a29a88d4ad6bc37e310cc8df95dbf93a96eebf2e262638d0ed0c0d98bce22d7c9630984418ce437

diff --git a/dev-lang/hare/hare-0_pre20220624-r1.ebuild 
b/dev-lang/hare/hare-0_pre20220624-r1.ebuild
deleted file mode 100644
index a9096c3d7..0
--- a/dev-lang/hare/hare-0_pre20220624-r1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="The Hare systems programming language"
-HOMEPAGE="https://harelang.org/;
-EGIT_COMMIT="65449ddbbbf39659bfaf84a2cb78510409a4ab7a"
-SRC_URI="https://git.sr.ht/~sircmpwn/hare/archive/${EGIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
-LICENSE="MPL-2.0 GPL-3"
-SLOT="0/${PV}"
-KEYWORDS="~amd64 ~arm64 ~riscv"
-
-DEPEND="
-   sys-devel/qbe
-   dev-lang/harec
-"
-BDEPEND="
-   app-text/scdoc
-"
-RDEPEND="${DEPEND}"
-
-src_unpack() {
-   default
-   git-r3_src_unpack
-   mkdir "${WORKDIR}/${P}/build" || die
-}
-
-src_configure() {
-   cp config.example.mk config.mk || die
-   sed -i -e 's;^PREFIX=.*;PREFIX=/usr;' config.mk || die
-}

diff --git a/dev-lang/hare/hare-0_pre20220730.ebuild 
b/dev-lang/hare/hare-0_pre20220730.ebuild
new file mode 100644
index 0..df2b5c234
--- /dev/null
+++ b/dev-lang/hare/hare-0_pre20220730.ebuild
@@ -0,0 +1,40 @@
+# Copyright 2021-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+if [[ "${PV}" =  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare;
+   SLOT="0"
+else
+   EGIT_COMMIT="296925c91d79362d6b8ac94e0336a38e9af0f1c9"
+   SRC_URI="https://git.sr.ht/~sircmpwn/hare/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+   SLOT="0/${PV}"
+
+   KEYWORDS="~amd64 ~arm64 ~riscv"
+fi
+
+DESCRIPTION="The Hare systems programming language"
+HOMEPAGE="https://harelang.org/;
+LICENSE="MPL-2.0 GPL-3"
+
+DEPEND="
+   sys-devel/qbe
+   >=dev-lang/harec-0_pre20220702
+"
+BDEPEND="
+   app-text/scdoc
+"
+RDEPEND="${DEPEND}"
+
+src_configure() {
+   cp config.example.mk config.mk || die
+   sed -i \
+   -e 's;^PREFIX=.*;PREFIX=/usr;' \
+   -e 's;^AS =;AS ?=;' \
+   -e 's;^LD =;LD ?=;' \
+   -e 's;^AR =;AR ?=;' \
+   config.mk || die
+}

diff --git a/dev-lang/hare/hare-.ebuild b/dev-lang/hare/hare-.ebuild
index 7b5abe0c2..df2b5c234 100644
--- a/dev-lang/hare/hare-.ebuild
+++ b/dev-lang/hare/hare-.ebuild
@@ -1,32 +1,40 @@
 # Copyright 2021-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-inherit git-r3
+if [[ "${PV}" =  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare;
+   SLOT="0"
+else
+   EGIT_COMMIT="296925c91d79362d6b8ac94e0336a38e9af0f1c9"
+   SRC_URI="https://git.sr.ht/~sircmpwn/hare/archive/${EGIT_COMMIT}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${EGIT_COMMIT}"
+   SLOT="0/${PV}"
+
+   KEYWORDS="~amd64 ~arm64 ~riscv"
+fi
 
 DESCRIPTION="The Hare systems programming language"
 HOMEPAGE="https://harelang.org/;
-EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/hare;
 LICENSE="MPL-2.0 GPL-3"
-SLOT="0"
 
 DEPEND="
sys-devel/qbe
-   dev-lang/harec
+   >=dev-lang/harec-0_pre20220702
 "
 BDEPEND="
app-text/scdoc
 "
 RDEPEND="${DEPEND}"
 
-src_unpack() {
-   default
-   

[gentoo-commits] repo/proj/guru:master commit in: app-editors/neovim-qt/

2022-08-11 Thread Andrew Ammerlaan
commit: 0669a82f350289c841a71e78e623357153a9dd1f
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Tue Aug  9 16:00:28 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Aug  9 16:10:50 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0669a82f

app-editors/neovim-qt: fix test deps

test doesn't use bundled DeJaVu Mono

Upstream-Bug: https://github.com/equalsraf/neovim-qt/issues/1005
Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 app-editors/neovim-qt/neovim-qt-0.2.17.ebuild | 12 +---
 1 file changed, 9 insertions(+), 3 deletions(-)

diff --git a/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild 
b/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
index 204a6bb3c..238a8e04f 100644
--- a/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
+++ b/app-editors/neovim-qt/neovim-qt-0.2.17.ebuild
@@ -15,15 +15,21 @@ KEYWORDS="~amd64 ~x86"
 IUSE="test"
 
 COMMON_DEPEND="
-   dev-libs/msgpack
+   dev-libs/msgpack:=
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
dev-qt/qtsvg:5
-   dev-qt/qtwidgets:5"
+   dev-qt/qtwidgets:5
+"
+# NOTE: remove dejavu once 
+#   is resolved
 DEPEND="
${COMMON_DEPEND}
-   test? ( dev-qt/qttest:5 )
+   test? (
+   dev-qt/qttest:5
+   media-fonts/dejavu[X]
+   )
 "
 RDEPEND="
${COMMON_DEPEND}



[gentoo-commits] repo/proj/guru:master commit in: net-p2p/yggdrasil-go/

2022-08-11 Thread Andrew Ammerlaan
commit: 93cfd952aceadb153940160f01c56888fb5b59cd
Author: Eric Joldasov  getgoogleoff  me>
AuthorDate: Tue Aug  9 20:25:18 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Aug  9 20:25:18 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=93cfd952

net-p2p/yggdrasil-go: install docs, set file capabilities

Signed-off-by: Eric Joldasov  getgoogleoff.me>

 net-p2p/yggdrasil-go/yggdrasil-go-0.4.4.ebuild | 18 +-
 net-p2p/yggdrasil-go/yggdrasil-go-.ebuild  | 18 +-
 2 files changed, 26 insertions(+), 10 deletions(-)

diff --git a/net-p2p/yggdrasil-go/yggdrasil-go-0.4.4.ebuild 
b/net-p2p/yggdrasil-go/yggdrasil-go-0.4.4.ebuild
index 726c54483..f8bfdf265 100644
--- a/net-p2p/yggdrasil-go/yggdrasil-go-0.4.4.ebuild
+++ b/net-p2p/yggdrasil-go/yggdrasil-go-0.4.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit go-module linux-info systemd
+inherit go-module linux-info systemd fcaps
 
 DESCRIPTION="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
 HOMEPAGE="https://yggdrasil-network.github.io/;
@@ -24,6 +24,10 @@ DEPEND="
 
 BDEPEND=">=dev-lang/go-1.17.0"
 
+FILECAPS=(
+   cap_net_admin,cap_net_bind_service "usr/bin/yggdrasil"
+)
+
 pkg_setup() {
linux-info_pkg_setup
if ! linux_config_exists; then
@@ -35,15 +39,19 @@ pkg_setup() {
 }
 
 src_compile() {
-   PKGNAME="${PN}" PKGVER="${PV}" \
-   GOFLAGS="-trimpath -buildmode=pie -mod=readonly" \
-   ./build -l "-linkmode external -extldflags \"${LDFLAGS}\""
+   local package="github.com/yggdrasil-network/yggdrasil-go/src/version"
+
+   for CMD in yggdrasil yggdrasilctl ; do
+   ego build -buildmode=pie -ldflags "-s -linkmode external 
-extldflags '${LDFLAGS}' -X ${package}.buildName=${PN} -X 
${package}.buildVersion=v${PV}" -trimpath ./cmd/$CMD
+   done
+
 }
 
 src_install() {
dobin {yggdrasil,yggdrasilctl}
+   dodoc README.md
+   dodoc CHANGELOG.md
systemd_dounit "contrib/systemd/yggdrasil.service"
systemd_dounit "contrib/systemd/yggdrasil-default-config.service"
doinitd "contrib/openrc/yggdrasil"
-   einstalldocs
 }

diff --git a/net-p2p/yggdrasil-go/yggdrasil-go-.ebuild 
b/net-p2p/yggdrasil-go/yggdrasil-go-.ebuild
index d803f16d4..20419a673 100644
--- a/net-p2p/yggdrasil-go/yggdrasil-go-.ebuild
+++ b/net-p2p/yggdrasil-go/yggdrasil-go-.ebuild
@@ -3,13 +3,12 @@
 
 EAPI=8
 
-inherit go-module linux-info systemd git-r3
+inherit go-module linux-info systemd git-r3 fcaps
 
 EGIT_REPO_URI="https://github.com/yggdrasil-network/yggdrasil-go;
 
 DESCRIPTION="An experiment in scalable routing as an encrypted IPv6 overlay 
network"
 HOMEPAGE="https://yggdrasil-network.github.io/;
-DOCS=( README.md )
 
 LICENSE="LGPL-3 MIT Apache-2.0 BSD ZLIB"
 SLOT="0"
@@ -20,7 +19,11 @@ DEPEND="
acct-group/yggdrasil
 "
 
-BDEPEND=">=dev-lang/go-1.16.0"
+BDEPEND=">=dev-lang/go-1.17.0"
+
+FILECAPS=(
+   cap_net_admin,cap_net_bind_service "usr/bin/yggdrasil"
+)
 
 pkg_setup() {
linux-info_pkg_setup
@@ -38,12 +41,17 @@ src_unpack() {
 }
 
 src_compile() {
-   GOFLAGS="-trimpath -buildmode=pie -mod=readonly" \
-   ./build -l "-linkmode external -extldflags \"${LDFLAGS}\""
+   local package="github.com/yggdrasil-network/yggdrasil-go/src/version"
+
+   for CMD in yggdrasil yggdrasilctl ; do
+   ego build -buildmode=pie -ldflags "-s -linkmode external 
-extldflags '${LDFLAGS}' -X ${package}.buildName=${PN} -X 
${package}.buildVersion=v${PV}" -trimpath ./cmd/$CMD
+   done
 }
 
 src_install() {
dobin {yggdrasil,yggdrasilctl}
+   dodoc README.md
+   dodoc CHANGELOG.md
systemd_dounit "contrib/systemd/yggdrasil.service"
systemd_dounit "contrib/systemd/yggdrasil-default-config.service"
doinitd "contrib/openrc/yggdrasil"



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

2022-08-11 Thread Andrew Ammerlaan
commit: 17da0caaa0b837348982eb1766778c11ec2b80e0
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Mon Aug  8 20:19:22 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Aug  8 20:23:13 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=17da0caa

dev-lang/harec: Update snapshot to 20220702

Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>

 dev-lang/harec/Manifest | 2 +-
 .../harec/{harec-0_pre20220624.ebuild => harec-0_pre20220702.ebuild}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-lang/harec/Manifest b/dev-lang/harec/Manifest
index 8c732b86a..b86bde0f2 100644
--- a/dev-lang/harec/Manifest
+++ b/dev-lang/harec/Manifest
@@ -1 +1 @@
-DIST harec-0_pre20220624.tar.gz 164875 BLAKE2B 
c27d074be6095dcd44702244165051a39fb3503ae50976b152743813f88c7d9b2117b21f2123ffc337c1230cbb114e258d0bc2567fba83882336b444f0ea04af
 SHA512 
08323ddf35ff20ff661132e8d34507e9e247e9e6bb709238c68f7e3212030591ce79374b43cb4eb77c545048c69d68082b893ed95ae8fe29d58b3a81aaf41f7f
+DIST harec-0_pre20220702.tar.gz 164745 BLAKE2B 
769597c6c4a0ad1f027d8e98bd37359aa53e6e3c457073d672f3616bb17d51b0e677752781e253292cefb94049f32e013758db43e97cbdfe3d73fb7e2c99a10b
 SHA512 
382e3e03ec455257853f0cdddc74cfa8f265915601ddb1c96025bb08ddb111264393ce76a037f2363881e33dcb9d27ed615dbf1d84b1e626df9c19da9c7de5a5

diff --git a/dev-lang/harec/harec-0_pre20220624.ebuild 
b/dev-lang/harec/harec-0_pre20220702.ebuild
similarity index 93%
rename from dev-lang/harec/harec-0_pre20220624.ebuild
rename to dev-lang/harec/harec-0_pre20220702.ebuild
index 49227e54b..7102b6f0e 100644
--- a/dev-lang/harec/harec-0_pre20220624.ebuild
+++ b/dev-lang/harec/harec-0_pre20220702.ebuild
@@ -8,7 +8,7 @@ if [[ "${PV}" = "" ]]; then
EGIT_REPO_URI="https://git.sr.ht/~sircmpwn/harec;
S="${WORKDIR}/${P}/build"
 else
-   EGIT_COMMIT="62d4204f21332d97ad7697f628eade9137e9c3bc"
+   EGIT_COMMIT="56359312644f76941de1878d33a1a0b840be8056"

SRC_URI="https://git.sr.ht/~sircmpwn/harec/archive/${EGIT_COMMIT}.tar.gz -> 
${P}.tar.gz"
S="${WORKDIR}/${PN}-${EGIT_COMMIT}/build"
 



[gentoo-commits] repo/proj/guru:master commit in: media-sound/nulloy/

2022-08-11 Thread Andrew Ammerlaan
commit: b75ba650eee1c673aef3d34acec011786772901a
Author: Vitaly Zdanevich  ya  ru>
AuthorDate: Tue Aug  9 07:18:01 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Aug  9 07:18:01 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=b75ba650

media-sound/nulloy: add dependency qtsvg

Closes: https://bugs.gentoo.org/864307

Signed-off-by: Vitaly Zdanevich  ya.ru>

 media-sound/nulloy/nulloy-0.9.5.ebuild | 1 +
 media-sound/nulloy/nulloy-.ebuild  | 1 +
 2 files changed, 2 insertions(+)

diff --git a/media-sound/nulloy/nulloy-0.9.5.ebuild 
b/media-sound/nulloy/nulloy-0.9.5.ebuild
index b282c00be..9149309fd 100644
--- a/media-sound/nulloy/nulloy-0.9.5.ebuild
+++ b/media-sound/nulloy/nulloy-0.9.5.ebuild
@@ -25,6 +25,7 @@ BDEPEND="
 DEPEND="
dev-qt/qtcore
dev-qt/designer
+   dev-qt/qtsvg
dev-qt/linguist
dev-qt/qtscript
dev-qt/qtx11extras

diff --git a/media-sound/nulloy/nulloy-.ebuild 
b/media-sound/nulloy/nulloy-.ebuild
index 21fdf4c5f..74428110c 100644
--- a/media-sound/nulloy/nulloy-.ebuild
+++ b/media-sound/nulloy/nulloy-.ebuild
@@ -23,6 +23,7 @@ BDEPEND="
 DEPEND="
dev-qt/qtcore
dev-qt/designer
+   dev-qt/qtsvg
dev-qt/linguist
dev-qt/qtscript
dev-qt/qtx11extras



[gentoo-commits] repo/proj/guru:master commit in: app-emulation/proton-ge-custom-bin/

2022-08-11 Thread Andrew Ammerlaan
commit: 4d6ad81428de15c5e339791cad502002c6a1cbb7
Author: Jhonatan Justin  justin  com  br>
AuthorDate: Sun Aug  7 16:50:25 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Aug  7 16:50:25 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4d6ad814

app-emulation/proton-ge-custom-bin: add 7.29

Signed-off-by: Jhonatan Justin  justin.com.br>

 app-emulation/proton-ge-custom-bin/Manifest|  1 +
 .../proton-ge-custom-bin-7.29.ebuild   | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/app-emulation/proton-ge-custom-bin/Manifest 
b/app-emulation/proton-ge-custom-bin/Manifest
index 5eb18aff5..71568d700 100644
--- a/app-emulation/proton-ge-custom-bin/Manifest
+++ b/app-emulation/proton-ge-custom-bin/Manifest
@@ -1,2 +1,3 @@
 DIST GE-Proton7-27.tar.gz 415170082 BLAKE2B 
1773d34defe483a6c894d55de1089eb831f1d44e92bfae5c46faeec825fa8b2cc7c05ac9ca9a05d6ea0c393aa90fe06334a0c07feef71631e27a7dbf30e3dcda
 SHA512 
b741594fbc062bf7e5b5228273680807fb3eb20cfa04993b2e4ce9442ebed18f3e84ca5d59ee19381165d595932fe54b720526bd1f41b2bf74b13a20308de5ee
 DIST GE-Proton7-28.tar.gz 416168736 BLAKE2B 
8be4361f8ee4c596cd0ccc7451d204f011c4ddc253822c23e0c411f545fad9f56ce8e5fcdb7ac606e2a2e679c4a09ac488246b909106f89730744db43a909458
 SHA512 
a08b922c4a294edaaec5773ad7114b16114e06273da86ac8f9e8272065043db7b2cb3f1f944d634243e4f845c19fbeae2f53c56efb40a41471c7405f91d51590
+DIST GE-Proton7-29.tar.gz 416341212 BLAKE2B 
42cae5797804e677eebc9ea46c9beec8d9e6945a4538e16cf2a9def61b9cea6945fb68e05b37a2962a18056a6656d73be77ebbeab88770513ee168d991833f84
 SHA512 
b4c7a6894302a302a15b6f3968987c98190461e9cbb4afa7738fe28fb24b1a2730140c424efc60a77624c8867bcc52e3b6ae1a60c9246aedf208ddb994d602d5

diff --git 
a/app-emulation/proton-ge-custom-bin/proton-ge-custom-bin-7.29.ebuild 
b/app-emulation/proton-ge-custom-bin/proton-ge-custom-bin-7.29.ebuild
new file mode 100644
index 0..6a91640c6
--- /dev/null
+++ b/app-emulation/proton-ge-custom-bin/proton-ge-custom-bin-7.29.ebuild
@@ -0,0 +1,25 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+MULTILIB_COMPAT=( abi_x86_{32,64} )
+inherit multilib-minimal
+
+DESCRIPTION="A fancy custom distribution of Valves Proton with various patches"
+HOMEPAGE="https://github.com/GloriousEggroll/proton-ge-custom;
+SRC_URI="https://github.com/GloriousEggroll/proton-ge-custom/releases/download/GE-Proton${PV/./-}/GE-Proton${PV/./-}.tar.gz;
+S="${WORKDIR}/GE-Proton${PV/./-}"
+LICENSE="0BSD LGPL-2+ ZLIB MIT MPL-2.0 OFL-1.1 BSD"
+SLOT="${PV}"
+KEYWORDS="~amd64"
+RESTRICT="mirror strip"
+QA_PREBUILT={*}
+
+RDEPEND="
+   media-libs/mesa[vulkan,${MULTILIB_USEDEP}]
+   media-libs/vulkan-loader[${MULTILIB_USEDEP}]"
+
+src_install() {
+   insinto "/usr/share/Steam/compatibilitytools.d/"
+   doins -r "${S}"
+}



[gentoo-commits] repo/proj/guru:master commit in: games-emulation/yuzu/

2022-08-11 Thread Andrew Ammerlaan
commit: 8d8a045581d950439a9ef6e4d30d4e8136c11b4e
Author: Samuel Bauer  yahoo  fr>
AuthorDate: Mon Aug  8 11:03:46 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Aug  8 11:03:46 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8d8a0455

games-emulation/yuzu: depends on dev-qt/qtmultimedia

Signed-off-by: Samuel Bauer  yahoo.fr>

 games-emulation/yuzu/yuzu-0_p20220725.ebuild | 1 +
 games-emulation/yuzu/yuzu-.ebuild| 1 +
 2 files changed, 2 insertions(+)

diff --git a/games-emulation/yuzu/yuzu-0_p20220725.ebuild 
b/games-emulation/yuzu/yuzu-0_p20220725.ebuild
index 8bc53d5fc..a307582e5 100644
--- a/games-emulation/yuzu/yuzu-0_p20220725.ebuild
+++ b/games-emulation/yuzu/yuzu-0_p20220725.ebuild
@@ -38,6 +38,7 @@ RDEPEND="
qt5? (
>=dev-qt/qtcore-5.15:5
>=dev-qt/qtgui-5.15:5
+   >=dev-qt/qtmultimedia-5.15:5
>=dev-qt/qtwidgets-5.15:5
)
sdl? (

diff --git a/games-emulation/yuzu/yuzu-.ebuild 
b/games-emulation/yuzu/yuzu-.ebuild
index 953cae7e0..0860eda94 100644
--- a/games-emulation/yuzu/yuzu-.ebuild
+++ b/games-emulation/yuzu/yuzu-.ebuild
@@ -35,6 +35,7 @@ RDEPEND="
qt5? (
>=dev-qt/qtcore-5.15:5
>=dev-qt/qtgui-5.15:5
+   >=dev-qt/qtmultimedia-5.15:5
>=dev-qt/qtwidgets-5.15:5
)
sdl? (



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/fnott/

2022-08-11 Thread Andrew Ammerlaan
commit: c752ffe58a5be7dcd74ee2e59ec08a3f65f386c2
Author: Leonardo Hernández Hernández  outlook  com>
AuthorDate: Sun Aug  7 21:13:05 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Aug  7 21:14:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c752ffe5

gui-apps/fnott: add 1.3.0

Signed-off-by: Leonardo Hernández Hernández  outlook.com>

 gui-apps/fnott/Manifest   |  1 +
 gui-apps/fnott/fnott-1.3.0.ebuild | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/gui-apps/fnott/Manifest b/gui-apps/fnott/Manifest
index abf14c4a8..d54eeb504 100644
--- a/gui-apps/fnott/Manifest
+++ b/gui-apps/fnott/Manifest
@@ -1 +1,2 @@
 DIST fnott-1.2.1.tar.gz 377573 BLAKE2B 
ed167a7a8d069c75acc8cf7c8ad80afb88b2ed13f590b61f70cd6b8355c77ae25bd95f7401388dbf4650311e8514a9e0c52fa13f500eb18c4f9f0de79de78884
 SHA512 
7818a01893dd2e8ea7a55355981f83e2d358ce68e36af81fe062c05e1a3405662fb5e221a0509b7212c57ce431e3591d6e4c5d2a1242f2b76c48a00c66e23932
+DIST fnott-1.3.0.tar.gz 380852 BLAKE2B 
ba1ef8210ec9ade6dbaa7a3f3e7ad6e283a8838b11e845e7dae481c0429e64984778a3add947b53a6c32be7c8ec630846c1fd7c2a99e56ec3126083a42787808
 SHA512 
701823cc50e8432b72e1b17ffb62cd3de7b7e6d08e571c2fbe301bd024820eb72dcb49d9d2e07cf62a81b27175072683dec54d9d8ac9fec0dda0cdf90a23d8c0

diff --git a/gui-apps/fnott/fnott-1.3.0.ebuild 
b/gui-apps/fnott/fnott-1.3.0.ebuild
new file mode 100644
index 0..65451529a
--- /dev/null
+++ b/gui-apps/fnott/fnott-1.3.0.ebuild
@@ -0,0 +1,46 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="Keyboard driven and lightweight Wayland notification daemon."
+HOMEPAGE="https://codeberg.org/dnkl/fnott;
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://codeberg.org/dnkl/fnott.git;
+else
+   SRC_URI="https://codeberg.org/dnkl/fnott/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   S="${WORKDIR}/${PN}"
+   KEYWORDS="~amd64"
+fi
+
+LICENSE="MIT ZLIB"
+SLOT="0"
+
+DEPEND="
+   x11-libs/pixman
+   media-libs/libpng
+   dev-libs/wayland
+   sys-apps/dbus
+   media-libs/fcft
+   media-libs/freetype
+   media-libs/fontconfig
+"
+RDEPEND="${DEPEND}
+"
+BDEPEND="
+   dev-util/wayland-scanner
+   dev-libs/wayland-protocols
+   app-text/scdoc
+   dev-libs/tllist
+"
+
+src_install() {
+   local DOCS=( CHANGELOG.md README.md LICENSE )
+   meson_src_install
+
+   rm -r "${ED}"/usr/share/doc/"${PN}" || die
+}



[gentoo-commits] repo/proj/guru:master commit in: media-gfx/nsxiv/

2022-08-11 Thread Andrew Ammerlaan
commit: 496f75ae2c81683358cabef3861abe678900391c
Author: Nickolas Raymond Kaczynski  disroot  org>
AuthorDate: Tue Aug  9 17:24:52 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Tue Aug  9 17:24:52 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=496f75ae

media-gfx/nsxiv-: fix ebuild

Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Nickolas Raymond Kaczynski  disroot.org>

 media-gfx/nsxiv/nsxiv-.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/nsxiv/nsxiv-.ebuild 
b/media-gfx/nsxiv/nsxiv-.ebuild
index 0b27fee7f..cea408441 100644
--- a/media-gfx/nsxiv/nsxiv-.ebuild
+++ b/media-gfx/nsxiv/nsxiv-.ebuild
@@ -65,7 +65,7 @@ src_install() {
EGPREFIX="/usr/share/doc/${P}/examples" \
install install-icon
dodoc README.md
-   domenu nsxiv.desktop
+   domenu etc/nsxiv.desktop
 
save_config config.h
 }



[gentoo-commits] repo/proj/guru:master commit in: app-misc/clifm/

2022-08-11 Thread Andrew Ammerlaan
commit: 71e7fa21cb16b536c21ea187c91d75123e144b8a
Author: Michael Yang  gmail  com>
AuthorDate: Mon Aug  8 21:00:01 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Mon Aug  8 21:00:01 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=71e7fa21

app-misc/clifm: fix update desktop mimeinfo cache

Closes: https://bugs.gentoo.org/864319
Signed-off-by: Michael Yang  gmail.com>

 app-misc/clifm/clifm-1.6.ebuild  | 1 +
 app-misc/clifm/clifm-.ebuild | 1 +
 2 files changed, 2 insertions(+)

diff --git a/app-misc/clifm/clifm-1.6.ebuild b/app-misc/clifm/clifm-1.6.ebuild
index a17478751..826248a0c 100644
--- a/app-misc/clifm/clifm-1.6.ebuild
+++ b/app-misc/clifm/clifm-1.6.ebuild
@@ -53,4 +53,5 @@ pkg_postinst() {
optfeature "mounting archives" sys-fs/archivemount
optfeature "extracting .iso files" app-arch/p7zip
optfeature "creating .iso files" app-cdr/cdrtools
+   xdg_pkg_postinst
 }

diff --git a/app-misc/clifm/clifm-.ebuild b/app-misc/clifm/clifm-.ebuild
index a17478751..826248a0c 100644
--- a/app-misc/clifm/clifm-.ebuild
+++ b/app-misc/clifm/clifm-.ebuild
@@ -53,4 +53,5 @@ pkg_postinst() {
optfeature "mounting archives" sys-fs/archivemount
optfeature "extracting .iso files" app-arch/p7zip
optfeature "creating .iso files" app-cdr/cdrtools
+   xdg_pkg_postinst
 }



[gentoo-commits] repo/proj/guru:master commit in: media-gfx/heatshrink/files/, media-gfx/heatshrink/

2022-08-11 Thread Andrew Ammerlaan
commit: aa2a03e20ed8ca53a75840fc390771bc9422f238
Author: Thibaud CANALE  thican  net>
AuthorDate: Sun Aug  7 18:35:43 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Aug  7 18:35:43 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=aa2a03e2

media-gfx/heatshrink: new package, add 0.4.1

Signed-off-by: Thibaud CANALE  thican.net>

 media-gfx/heatshrink/Manifest|  1 +
 media-gfx/heatshrink/files/Makefile.patch| 23 ++
 media-gfx/heatshrink/heatshrink-0.4.1.ebuild | 29 
 3 files changed, 53 insertions(+)

diff --git a/media-gfx/heatshrink/Manifest b/media-gfx/heatshrink/Manifest
new file mode 100644
index 0..b23793093
--- /dev/null
+++ b/media-gfx/heatshrink/Manifest
@@ -0,0 +1 @@
+DIST heatshrink-0.4.1.tar.gz 36945 BLAKE2B 
526e3f88ddaec8116e5eef1a73a4450454ca808545dfe4a36069be8a0d771ca92c850c51f9b3c3e73f244454ba17d03da8fb0be4849728300c7eb8181e39651e
 SHA512 
bb9610b963da0762b1ac21d0907f3801b525431abff495b66cadc244a2b2b334441de2b14442b722bfeb56cb4459fe4021eae0d0454f9e26a80e6efa11f079d2

diff --git a/media-gfx/heatshrink/files/Makefile.patch 
b/media-gfx/heatshrink/files/Makefile.patch
new file mode 100644
index 0..a858ec0c1
--- /dev/null
+++ b/media-gfx/heatshrink/files/Makefile.patch
@@ -0,0 +1,23 @@
+diff --git a/Makefile b/Makefile
+index d0c4dbe6..5cd8977a 100644
+--- a/Makefile
 b/Makefile
+@@ -12,7 +12,8 @@ WARN += -Wmissing-declarations
+ #THEFT_INC=   -I${THEFT_PATH}/include/
+ #LDFLAGS += -L${THEFT_PATH}/lib -ltheft
+ 
+-CFLAGS += -std=c99 -g ${WARN} ${THEFT_INC} ${OPTIMIZE}
++MY_CFLAGS := -std=c99 ${WARN} ${THEFT_INC} ${OPTIMIZE} ${CFLAGS}
++CFLAGS := ${MY_CFLAGS}
+ 
+ all: heatshrink test_runners libraries
+ 
+@@ -66,8 +67,6 @@ RM ?=rm
+ 
+ install: libraries heatshrink
+   ${INSTALL} -c heatshrink ${PREFIX}/bin/
+-  ${INSTALL} -c libheatshrink_static.a ${PREFIX}/lib/
+-  ${INSTALL} -c libheatshrink_dynamic.a ${PREFIX}/lib/
+   ${INSTALL} -c heatshrink_common.h ${PREFIX}/include/
+   ${INSTALL} -c heatshrink_config.h ${PREFIX}/include/
+   ${INSTALL} -c heatshrink_encoder.h ${PREFIX}/include/

diff --git a/media-gfx/heatshrink/heatshrink-0.4.1.ebuild 
b/media-gfx/heatshrink/heatshrink-0.4.1.ebuild
new file mode 100644
index 0..9c7bffdf4
--- /dev/null
+++ b/media-gfx/heatshrink/heatshrink-0.4.1.ebuild
@@ -0,0 +1,29 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="data compression library for embedded/real-time systems"
+HOMEPAGE="https://github.com/atomicobject/heatshrink;
+
+if [[ "${PV}" == "" ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/atomicobject/${PN}.git;
+else
+   inherit verify-sig
+   
SRC_URI="https://github.com/atomicobject/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="ISC"
+SLOT="0"
+
+PATCHES=(
+   "${FILESDIR}/Makefile.patch"
+)
+
+src_install() {
+   local MY_ED="${ED}/usr"
+   mkdir "${MY_ED%/}"{,/bin,/include} || die
+   emake PREFIX="${MY_ED%/}/" install
+}



[gentoo-commits] repo/proj/guru:master commit in: gui-apps/fnott/

2022-08-11 Thread Andrew Ammerlaan
commit: 3859f13a0b082ee8182e3389ef3ff15b8d43
Author: Leonardo Hernández Hernández  outlook  com>
AuthorDate: Sun Aug  7 21:13:40 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Aug  7 21:14:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3859f13a

gui-apps/fnott: add LICENSE file to ${DOCS}

Signed-off-by: Leonardo Hernández Hernández  outlook.com>

 gui-apps/fnott/fnott-.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gui-apps/fnott/fnott-.ebuild b/gui-apps/fnott/fnott-.ebuild
index 5f1d72055..65451529a 100644
--- a/gui-apps/fnott/fnott-.ebuild
+++ b/gui-apps/fnott/fnott-.ebuild
@@ -8,7 +8,7 @@ inherit meson
 DESCRIPTION="Keyboard driven and lightweight Wayland notification daemon."
 HOMEPAGE="https://codeberg.org/dnkl/fnott;
 
-if [ "${PV}" -eq "" ]; then
+if [[ "${PV}" == "" ]]; then
inherit git-r3
EGIT_REPO_URI="https://codeberg.org/dnkl/fnott.git;
 else
@@ -39,7 +39,7 @@ BDEPEND="
 "
 
 src_install() {
-   local DOCS=( CHANGELOG.md README.md )
+   local DOCS=( CHANGELOG.md README.md LICENSE )
meson_src_install
 
rm -r "${ED}"/usr/share/doc/"${PN}" || die



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

2022-08-11 Thread Andrew Ammerlaan
commit: e7b0ff0d57489de32ec6e5b8d0c669a910919007
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Sun Aug  7 08:58:17 2022 +
Commit: Andrew Ammerlaan  gentoo  org>
CommitDate: Sun Aug  7 08:58:36 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e7b0ff0d

dev-util/deblob: Remove mandoc from tests

Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>

 dev-util/deblob/deblob-.ebuild | 3 ---
 1 file changed, 3 deletions(-)

diff --git a/dev-util/deblob/deblob-.ebuild 
b/dev-util/deblob/deblob-.ebuild
index e58f82a29..6aa1709b6 100644
--- a/dev-util/deblob/deblob-.ebuild
+++ b/dev-util/deblob/deblob-.ebuild
@@ -10,12 +10,9 @@ HOMEPAGE="https://git.sr.ht/~lanodan/deblob;
 EGIT_REPO_URI="https://git.sr.ht/~lanodan/deblob;
 LICENSE="BSD"
 SLOT="0"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 DEPEND="
dev-lang/hare:=
-   test? ( app-text/mandoc )
 "
 RDEPEND=""
 



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

2022-08-11 Thread Mike Pagano
commit: 97750390709226323fb45f4f7aec6b4a8cf8143a
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Aug 11 13:11:20 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Aug 11 13:11:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97750390

sys-kernel/gentoo-sources: add 5.4.210

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.4.210.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 33401f8ed7ac..d6a6cfb40382 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -85,6 +85,9 @@ DIST genpatches-5.4-213.extras.tar.xz 1812 BLAKE2B 
b6812b7e126a55b2079832ddce8c9
 DIST genpatches-5.4-214.base.tar.xz 4943544 BLAKE2B 
5b7d27e1b520cdaff98dc9fe6ddfe102a9c09fb8a5fd36a57d5f36ebbd7639ce1a59dbeb55e71ede1129a3890318b740b24bc654716f81840d6d2e6d8a95de20
 SHA512 
6494bb7d1b9ef0e46fa31a164b3c807338463dcd4d8108e5a0c5d944196f1b3e1df51192f733861514a302af3eefee530b1e173dec9b6ddd3bb0120e47714fbf
 DIST genpatches-5.4-214.experimental.tar.xz 16908 BLAKE2B 
6f18616f3b6637b4aa8602616eb5535e315cb1833035f45d34d170f1f48061949b1e11a2deac94d61e20517269eeffd11ee1016d5521edd16a9e380d84a88e86
 SHA512 
d3932bef02b1b45b8ebc6e7f36c13fc35b03659f3e67da33cc44cf0e8152623cd0d38a05a71e39acbf5678bc1a6cff5f48763a4b73c94d84c2aab22fa1239eff
 DIST genpatches-5.4-214.extras.tar.xz 1812 BLAKE2B 
f82f9d703ed7fafa1abae01e9ab15db88b318ef84254360d105490bc727244795064fc6b21fbf771626da9adb62aba44a170165518fae58d8adfde7319e1971c
 SHA512 
a3d8f94e4d9b7e5c29be7c1b336273f89ed38bbd4c21e6b34a51421ef71581a6e8ecc15751fe0bd7dbc1c98a754d1491304383f21925c0018b6e57891f76f303
+DIST genpatches-5.4-215.base.tar.xz 4945872 BLAKE2B 
7a0e2098f86258afe07e27a460aa8602f62fe646c918668d0f1bc03307e009ea275de198445c19a5e0727c459bdd00379c1bf86eab44265eb73a072e295b82ce
 SHA512 
dcd26f17ecbda5b2918e98f5cec369ff9e98fa323ae39f0172bf771cdb2125312d93bbc2f1d5f46cb9ba381ff9d0fd339ecc0eac8000db90c8c2b0e07016c313
+DIST genpatches-5.4-215.experimental.tar.xz 16900 BLAKE2B 
fb4974250b59caa5f313f70c5144c13028c73c443f09773408c294a768239ddc6e8681e67730a5d9b3729409f39125c4bffa9a8224fa8626c19728cbf3a4
 SHA512 
186443fba9518029c02def350b45a2c7c62e36508ee2ad5f06e3f94bc5a88fa3b44b101dc88a6f7c31bd59c76296ecd19c5151bc079981c03830060ab94dd5ba
+DIST genpatches-5.4-215.extras.tar.xz 1812 BLAKE2B 
26646412d59a947f1ed77792269296818ed1189aad3f30748e877e947119bd87a6a916f3ecb61a6effaa7346a31e1844eba123144e5055e5567e0be315578225
 SHA512 
bb45c3f3c617c9446390c15296e02ff0d01d67d96ff8e941fe14a1658e2e6845f2918f2c716cf7739dc5a0bf2dcfabb19f55bb77f51ee8a7b34c5ed2b263a959
 DIST linux-4.14.tar.xz 100770500 BLAKE2B 
85dc4aa953fe65e273a24473d8de98e4f204f97c43be9fc87cf5be01f796f94cfde5c8f9c84619751f1cac51f83ce0b4681fb19c5f2965a72d4a94fe5577846a
 SHA512 
77e43a02d766c3d73b7e25c4aafb2e931d6b16e870510c22cef0cdb05c3acb7952b8908ebad12b10ef982c6efbe286364b1544586e715cf38390e483927904d8
 DIST linux-4.19.tar.xz 103117552 BLAKE2B 
1dbf16cf410867412d17568fe42bc1e90c034183b654d270b650621ff7664a321950943d0639205bc1ee7ef6210be170c1f2c785a042ed8a4ec5e3a486d890e0
 SHA512 
ab67cc746b375a8b135e8b23e35e1d6787930d19b3c26b2679787d62951cbdbc3bb66f8ededeb9b890e5008b2459397f9018f1a6772fdef67780b06a4cb9f6f4
 DIST linux-4.9.tar.xz 93192404 BLAKE2B 
83ae310b17d47f1f18d6d28537c31e10f3e60458c5954c4611158ca99e71cc0da2e051272eabf27d5887df4a7cb4a5dd66ff993077c11d2221e92d300a0b48d7
 SHA512 
bf67ff812cc3cb7e5059e82cc5db0d9a7c5637f7ed9a42e4730c715bf7047c81ed3a571225f92a33ef0b6d65f35595bc32d773356646df2627da55e9bc7f1f1a

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.4.210.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.4.210.ebuild
new file mode 100644
index ..ad7402bfb026
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.4.210.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 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="215"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~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/

2022-08-11 Thread Mike Pagano
commit: 609d5c192dca7bd3224f9ef3d29b1c0472aa27da
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Aug 11 13:11:29 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Aug 11 13:11:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=609d5c19

sys-kernel/gentoo-sources: add 5.10.136

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.10.136.ebuild  | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index d6a6cfb40382..7695ee10346d 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -49,6 +49,9 @@ DIST genpatches-5.10-143.extras.tar.xz 3868 BLAKE2B 
8bcfec127807585e1145930a119e
 DIST genpatches-5.10-144.base.tar.xz 3907764 BLAKE2B 
41b8ce08ca73879811e11d91f9365ddfbbc15617a4b825ba00144e71feb86e0ef24b3418b77b203a13ad6299237085a2a1c796beb6ac9aa98a5990a39fd1dd02
 SHA512 
1b946439d9cf6d97df1acadd7b36ef657fac40ff98b31e2237f3cc412e9efd6d4d1d409339af9d48779dbd9d88aac124f67e07afcf99e7760f93afb6d226131c
 DIST genpatches-5.10-144.experimental.tar.xz 16876 BLAKE2B 
7be06890636984bcfec45818726c48dee9b2de69a3278bad8a79b1f9d4443695bf9fa56132b4f41c21564a43fe309f1191b2ce794430f6a697c58308d32396ff
 SHA512 
677edca73f20e9c41fda7c400daf4870d00141cbd6ba8ced934ce785e3e6270db15f820ba5561202687fd437aa64ad2f71bb1a3f397c577d7d1dde90e1cc79e1
 DIST genpatches-5.10-144.extras.tar.xz 3868 BLAKE2B 
0d956a61fb525b8ce3b14c215a0c0a6ffa46f21fcf87a63884d31418946a64de0c680472a62fc9bc0d83f67b49dfe88ed373e3ff2ba2f369a0909e3947b27c16
 SHA512 
c870f84b1a4ae7b95518d08ab46fc7e632a47884e43a9c774be34335ebf825388136ed360f5129c8c97567600e79ce2889d64d9b60a1a8bd2a5b4052e74e2973
+DIST genpatches-5.10-145.base.tar.xz 3914420 BLAKE2B 
0d6f00cfba2ea5bc70bf44549e82b79d8e7a59b8e34ad7b94dc97c0ab1059ad005b15d09ab51fd9dcf65243dbf0abc0221d26ee06708adacc7dcc7aa18e7939a
 SHA512 
4b2cc1f37d0dee2bb8181be5ea4030b3c9f2035c688cba3e5d512584486158cd7e1d944d089bff7a28d55d1353ea500de6adaaaf282767fadb1f1d206a2682c7
+DIST genpatches-5.10-145.experimental.tar.xz 16872 BLAKE2B 
f64a4d634711e4238c0cec9fadd42b505b4f693a681ecf6bac4e9cd57cfe8735e4423b0970be26c04deedf674b9de7fd71630643899026dda2dce26f15023138
 SHA512 
0ab1863443820644382917f2cdbdb6eac22f27cabf23015d43e9b97ad07dbb29ca197c5e958a17d7b7090936ae162d376acfd1a36c5006d60da86c05cfa42e1c
+DIST genpatches-5.10-145.extras.tar.xz 3868 BLAKE2B 
1e6d3c0402bd46656c9f524ff9b309f4d8f4ba85be0dcf210774b5975d85d2098301ff8e6b33fe419d1bc70faf0a4d1d7572fa5c70122a5508a66790a2f18c4b
 SHA512 
d51bcafbcd6cfa70b9aefddb416020363720c152944edba3a41ae152c9b3a0ef1ca3fc70252d9a75b0b636c3480890aa8bd727e18b699d789ad5b08fd065cf7a
 DIST genpatches-5.15-45.base.tar.xz 1826632 BLAKE2B 
77bb4d997b63723f677f82b91b33afd0f35367d9304051999a0daa84da26feb99fc76a61af77a5e477a5a8ded1a5c12316450563cd56b6c93a93e6df6421b107
 SHA512 
9435803d4dd65fa78d8e14e992681aeb016d3672b81d589b293d1cbacc024605e18429529803ba344ecae1610bb77150a7b2405cd43f00fc905e9c6babef04c1
 DIST genpatches-5.15-45.experimental.tar.xz 5420 BLAKE2B 
984a3e683708e1a1ec4e77fcacc592caca20d134a994e3922548b2cce0aea6b69e0dd3ae93899182b147e42a171b2dc5b230e601cb3b06b09ee6c8ca88bf489f
 SHA512 
7305e4777e3001ea5526b059ed1684c16879e07f83f54536d1326c03a495915cd1f9776865d0bff024053312d9e9f4a94d27e4c047fffaff831995a5aa69561d
 DIST genpatches-5.15-45.extras.tar.xz 3932 BLAKE2B 
e2c4132995b7b39c9d135e17cd21315013cfa8b9de9b06d9ff9a5780c4f35be294eb6d71130a9f4b9fbd9c2f31ded41c1c6dfecb2fdc4401118411a7485a
 SHA512 
5b1cf3281df2fe24eac3827b0753c83305dd956b23351899be1dd37a89d00917c771475e3df3f9980f6b0fd210420b479c6196c7d1ea2ea9a0d711fab50cfb64

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.10.136.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.10.136.ebuild
new file mode 100644
index ..3386980860d0
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.10.136.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 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="145"
+
+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/

2022-08-11 Thread Mike Pagano
commit: 10fb5cbc9e03badb663bfe2280de1f8b24208291
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Aug 11 13:11:11 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Aug 11 13:11:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10fb5cbc

sys-kernel/gentoo-sources: add 4.19.255

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-4.19.255.ebuild  | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 4bd625e1ae92..33401f8ed7ac 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -22,6 +22,9 @@ DIST genpatches-4.19-252.extras.tar.xz 3664 BLAKE2B 
cf5b8fa06cdea22043ee6f291547
 DIST genpatches-4.19-253.base.tar.xz 5642084 BLAKE2B 
155fb8844207b9963986fc0b91c5d457f65b1724d033f224de15d971d84087490caa7361dcab6cc0d8d6dc08d7a754be354f7f2501e999ad3fa098e25267a3f8
 SHA512 
eeab6e7cea48a2f83d9e90aa27018aa728869cd6d8b596cfda03a8f12f0fd56ac8bd1d3669d982bc8b2be3561ca3024647b0eccb7eb56b25b6ee80d92a3710b2
 DIST genpatches-4.19-253.experimental.tar.xz 5460 BLAKE2B 
05303142767c86af4e5dc2386995cf4f3a2c6a0ee505d5932b68c0b28d9a596b7deadf5ca0a0c8d31ed1227d92f64d3748abb9a80108846dfb3464bc4e8390f9
 SHA512 
5a17a528dc0bef04dee24a73bf6a7ba918b10379f7ce5bb36ee224eaecd988409fe6e627c270708b39c9fea39dc678740593231838b3192ebf2208f8d060e6ef
 DIST genpatches-4.19-253.extras.tar.xz 3664 BLAKE2B 
eb96ed2925448ba20c41186ccb137423509c52d27f97bb322ae041f0a6068018abb247ce6060d28dc62e6acae0b7306ece046f1d3aa8935b41390cf0efd7d489
 SHA512 
f863780a01fc641422528c105552a8c201437da53d0bb60159f9a8f33bc0b288204178afae68fa8072e5e39f2c871bd9432b34d04fff5f88c6d151699f290f7f
+DIST genpatches-4.19-254.base.tar.xz 5649516 BLAKE2B 
cabf9ee4329d35c9f6ddf28da294af4221189860806c6f0fc79f66e6049895beba7757290d7436c92425715e6415bade97fcdf534693c343ab119c999f0df541
 SHA512 
036a2114ccc8cc6549a171c3af053864b4783337a6fc4fe4be5695e8f8c4ec9c48bf7dd990225322d2a6c456d669157fc593bd5c1053bf0ea2763a5072215e48
+DIST genpatches-4.19-254.experimental.tar.xz 5460 BLAKE2B 
374c5a3ada1432bcc6afc7f7713ab28e29a0f0524c63bcac2affaf6dacbec2dffa2e51d4c85b0dfaa2f1d2fa18935a2a741124aea2044d1683ac527f66ffdceb
 SHA512 
8dd1970cfa64d5c36814d773dfb5369081500d6e35245ff5e13aaeb50b5d1b951cfad46161466d12280f44cef59d085a393b5412f9fc7e442673d15f68b7ac1f
+DIST genpatches-4.19-254.extras.tar.xz 3664 BLAKE2B 
0c261e4457c4922a31c2de110091f3ac30b92c30af77a543ca8a88b198f6d3de5182326e0e0466f5931cb8cdd2b8bb2b70a235cab7de778a67779f224f26f00e
 SHA512 
e09e100f1031e017b534f285f838ad5b4f4abbe4d520b82d5aa36f27bf87274a18bc8fb3249f6416a7eb6f15c83dd911fc755cc814f8400447cbe7a041262f44
 DIST genpatches-4.9-318.base.tar.xz 5151300 BLAKE2B 
568a51692657549568ce2d4332f9e0035dc55b86a4aedf9ce28451cf027504359e108ce187ad9f10908126014288a46aa78016e8d52703b8e3f51b9272442c34
 SHA512 
32f9802e78c54360cae4349611f58c8e5f9c5e8452721802c315fe75b216e2fe2f7d5808e2ad2e915aea0f20ce65ee667fa3db366d0e9b49fa7fca54304bc6e1
 DIST genpatches-4.9-318.experimental.tar.xz 106368 BLAKE2B 
ee253ba8f55728c546720dbe206a3c70de95f1e15693950254505173a5721d1d682007a9988ea956533e4cef1b615b3da28b79d7c282a2099af66ee20c539296
 SHA512 
56453356ad599543dd9cace88ed59399556eb4f8e8d56fb150f08c2532d1a8765b4d7005d96aee4a4c9e5871869ce96f590d86d26f0792c7c8c99f0e643e2676
 DIST genpatches-4.9-318.extras.tar.xz 3676 BLAKE2B 
f8d266992b4fff6a3668347fccffb6573c1a0af85adda7f622d346244a8123bfa518527dbbb088f804d6f177362f5d7999cca807c5dc69e46acc7707b71a
 SHA512 
52124e1245b3749039e7e2013ac9c30ff6b2dc6d3ffbc37c306483901f1916b0bf0ec5f5064452f7dd5729ef9da8f94ae7b5dc084ddf81b55078948988deb3b0

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-4.19.255.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-4.19.255.ebuild
new file mode 100644
index ..6673a8996b2e
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-4.19.255.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 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="254"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~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/

2022-08-11 Thread Mike Pagano
commit: 3386673b9af284c2c11c544c610bb29182f66efb
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Aug 11 13:11:55 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Aug 11 13:11:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3386673b

sys-kernel/gentoo-sources: add 5.19.1 and the BMQ(BitMap Queue) Scheduler

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.19.1.ebuild| 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 93fe0fdd1fb5..a1081387f4a8 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -82,6 +82,9 @@ DIST genpatches-5.18-21.extras.tar.xz 3924 BLAKE2B 
582b7320bf607d925d9b2e8809403
 DIST genpatches-5.19-1.base.tar.xz 4080 BLAKE2B 
27fe512fd700cc6fc1946ebe0b39b423f35fbdce3b6c2181e1e1c197dccf436c6ba285b8bbf74500c80c64c486831a88f0f548cbd787d925eefafe740764a839
 SHA512 
8ff90b26202ddb80890ce8a33debbb8b6b85432412e7f76fdbdd98e257e9be23ffa5c03c81cb8482b7a35099083dec800f766354b5886d4f8f7647e3354f97b6
 DIST genpatches-5.19-1.experimental.tar.xz 5400 BLAKE2B 
7c85f3452ed817de0831beb3af12ff88f49e8ce07555aefdb245c500b76527aafc1d4f26d5cd1af2e1c4fd2999f10de0977fdf376624b5719bfef44835d3d449
 SHA512 
d3ba95e091800d981364e60fa7068c1f633297793dd05ba9c2c0d505c9c4404bc8d940b016baf04494ffa93a89a007c6c7331ad9df3ccd10b790ef2428c2309d
 DIST genpatches-5.19-1.extras.tar.xz 3772 BLAKE2B 
1d418c3d5d328e9704ba10d7483cd562e511f345a5cc6799abc52e6cdeca20efa61417f62eaf7aae2078a8bb05c7dbabe4f4ddba7ad4221b458bd5c589f29b47
 SHA512 
479d957a3348485baf6504a08cf06b334938656701b15067512c0f48e530c2e87ca281ad3af6e55c75a53d2e9e584d94fc030ee82c538a97a85cea9a9c8fe214
+DIST genpatches-5.19-2.base.tar.xz 11468 BLAKE2B 
34f610cf3d91e8af3fe8daaf127fd305fae55b0f8ce42669a3660b23536116671bc8769ff2325c7e1a08a9424c00ca840d57965c843847c37c0b0896bb8dcca4
 SHA512 
6e923c6e4b7052e486de64e8c46ff98f9b7c1bac4c996f6fdd9641cc09b117302de22b95a73d9f62615dd08f5bc2a1525f38231af40d44e68a3064a64e562248
+DIST genpatches-5.19-2.experimental.tar.xz 70276 BLAKE2B 
b86ee6b65e9e79bbd48639409f50c75299fdba127fbf33459a6c0ccf5eee08245338c4717678c7a08fa5d52713a12ac0660ef5e4cbd829c0a9e076543b3ba042
 SHA512 
839631c55d06c1bc2a66c43607c252a2aa8b6b440d19ba333f2517609804c87bfbf21197f8ce972a2b94f81a1eba90fd5bbdf5743af953ee47bc5dc702ddccda
+DIST genpatches-5.19-2.extras.tar.xz 3772 BLAKE2B 
73839fd5ad6aa8bf128a3350009815eb027d278463d93113f211a1b3f33c3c3b0ba37b3415d9ba1428ae8c7e6cbf5aaf98b540703acc44d956201abd948569bd
 SHA512 
a49ddb49046045de528099c3c7f619cc6bef4bd54e5b9dc808ac8fb7c1f892db132f37ab0e0ea77ffd397e8b43529dea40ef2d6cef154e9fe5dd912dc665d52f
 DIST genpatches-5.4-199.base.tar.xz 4683396 BLAKE2B 
e1e66ce10c436bb196a5890e08d5beb8d0a1ece7f19f8fb3b1027747509cc7b6102ace634abdbd299dd48fbc8750f3bc127abe55014410b1d558b4aec497f475
 SHA512 
8a16d67794e864749fdcdbf413ec0fe996d3c4fb5f04f8c8a2d3001377c8b5d4d7007a96efaa3590fd4b595cccdea36d83c6dc292629566e5398f322658d80f4
 DIST genpatches-5.4-199.experimental.tar.xz 16904 BLAKE2B 
496602e26da272a8b58a61402eba0fc9871a96e78005014bd49b4e4354336269e17eeb6828a393c74f0d0cded080247f561a1bae7f6ed22c22d575cc12659ed6
 SHA512 
fb23e903b297b7660df9aed9aa3a7c94e100c2aa8061e7591823b4abbca82c898f2775b42e319908e4380bec45138acb44972e1f2d09927c96c141a4ba6deff6
 DIST genpatches-5.4-199.extras.tar.xz 1812 BLAKE2B 
03b9ebf9d306256e58c895006038f4bb3d908590ef2f603487d9b970963c24acfbe78fbe862b2b493ab477e6e901aba332dc69916eb881fc42a79a62d7f81da4
 SHA512 
d100e876a9b64d662331d4a78b8531a71144bb70b789e0ab0b76e6957c368ee3a88025e040cd622dd4cf6e4da358a3636571ddf55b94e42dbc250a62a629baee

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.19.1.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.19.1.ebuild
new file mode 100644
index ..350db901ae85
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.19.1.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 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="2"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~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/

2022-08-11 Thread Mike Pagano
commit: 54520c985abd078f5d4a2b15ede25187ceaea1b7
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Aug 11 13:11:44 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Aug 11 13:11:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54520c98

sys-kernel/gentoo-sources: add 5.18.17

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.18.17.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 91691bf2a2b6..93fe0fdd1fb5 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -76,6 +76,9 @@ DIST genpatches-5.18-19.extras.tar.xz 3920 BLAKE2B 
ba251facf88903832ba28ea4a7619
 DIST genpatches-5.18-20.base.tar.xz 776528 BLAKE2B 
3d7a0cf2c6f9a5d28049c42b6e2ffccbb707232aef139c9b9aae33c37d6cef22b45261094ac5c3e23019123709c642c69d3f181683d790305f97d72d93a48177
 SHA512 
db5a44c919f29f0c37cd21384a5ffa6b528575f5b5dbf71800d3a6277f793ad4ee6a6d04a35c3ef5f90906133a91f4a0e23ae43e86f678a25b23bb1c77761c22
 DIST genpatches-5.18-20.experimental.tar.xz 69912 BLAKE2B 
af0ce62b24f9ad72f9c3f4521ea2fe4288e30f7d821a232a2a6a155d4560c6495e0a9059f9b710bfc16b543c27b5c1f03fef4791695b21e3d11f9814bb37fe56
 SHA512 
4212b8e4460fdc27602af043db445929a4eef49354529887633f19bc28080974aae617f9904a89fd63561e44be19d71e0d3618f883e2cd08b702d58214f584bb
 DIST genpatches-5.18-20.extras.tar.xz 3924 BLAKE2B 
ddea420397d5b64ac5e964db6b2d863cca0a4fd46a3969af7f24b7803b0f07278b54363c1b43fbc4f305ac4b44e5880d5af0bb10cd2a0a08bc0e4fbd51c9e35e
 SHA512 
51203e404cc8084974725f78dd521f5d7864f40380bc1f45596b8754a57f30535e32c3984c01a4d12b38b6118eb1448126f96042d8a2b5007167428e09761726
+DIST genpatches-5.18-21.base.tar.xz 786248 BLAKE2B 
60d007f0ad81b8c8af63789f98613850edc92836672a743bf543c2e7078b666a41f4f277d5b9f001a018811733f266d87651198e3c087c00f8bc8239b2b89236
 SHA512 
0018fdc5805dff2f92b0f3c2e78e0a30359eb5a02b8b24cc4ced7c42d90e6fa904e8b43982ffdf9bc5c55b9faed1c003bfd6510f3f9c8042180884aa3a87ba2b
+DIST genpatches-5.18-21.experimental.tar.xz 69932 BLAKE2B 
9df2cb4f6d8e1c7ead395d07f58e598a252334e97651b931cb906953190b4bfa45da1bc9ff38e1dd921773fd8021d69a518dc368cd570fcf038072e1c599459c
 SHA512 
5307f8aa5e4855aef086fca56dc249cf42ec5cfa19e8d4feed0a001b26af893390360873508f711f5ce164daf049e7be53a8dabdbcfdc03b11a21d23b305bc3f
+DIST genpatches-5.18-21.extras.tar.xz 3924 BLAKE2B 
582b7320bf607d925d9b2e88094032b161cc08df1d5118777454f4f6b966812b333235f2bcf016957d7bcecde6d77b4dc7b76047b8374e34b9262e2aad5e4708
 SHA512 
26aed20e6cc179d10bb017b1707d5bf5d76a92aadd9ab73acc655352dea8c6fd03cc4848da953800077bf43d1d5e1dddeff01ba486d5c2f6524707a236a956b9
 DIST genpatches-5.19-1.base.tar.xz 4080 BLAKE2B 
27fe512fd700cc6fc1946ebe0b39b423f35fbdce3b6c2181e1e1c197dccf436c6ba285b8bbf74500c80c64c486831a88f0f548cbd787d925eefafe740764a839
 SHA512 
8ff90b26202ddb80890ce8a33debbb8b6b85432412e7f76fdbdd98e257e9be23ffa5c03c81cb8482b7a35099083dec800f766354b5886d4f8f7647e3354f97b6
 DIST genpatches-5.19-1.experimental.tar.xz 5400 BLAKE2B 
7c85f3452ed817de0831beb3af12ff88f49e8ce07555aefdb245c500b76527aafc1d4f26d5cd1af2e1c4fd2999f10de0977fdf376624b5719bfef44835d3d449
 SHA512 
d3ba95e091800d981364e60fa7068c1f633297793dd05ba9c2c0d505c9c4404bc8d940b016baf04494ffa93a89a007c6c7331ad9df3ccd10b790ef2428c2309d
 DIST genpatches-5.19-1.extras.tar.xz 3772 BLAKE2B 
1d418c3d5d328e9704ba10d7483cd562e511f345a5cc6799abc52e6cdeca20efa61417f62eaf7aae2078a8bb05c7dbabe4f4ddba7ad4221b458bd5c589f29b47
 SHA512 
479d957a3348485baf6504a08cf06b334938656701b15067512c0f48e530c2e87ca281ad3af6e55c75a53d2e9e584d94fc030ee82c538a97a85cea9a9c8fe214

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.18.17.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.18.17.ebuild
new file mode 100644
index ..8731e722c474
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.18.17.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 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="21"
+
+inherit kernel-2
+detect_version
+detect_arch
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~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/

2022-08-11 Thread Mike Pagano
commit: cd8ef915fdb77cff21dc4f62e7609756a92cebf0
Author: Mike Pagano  gentoo  org>
AuthorDate: Thu Aug 11 13:11:37 2022 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Thu Aug 11 13:11:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd8ef915

sys-kernel/gentoo-sources: add 5.15.60

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

 sys-kernel/gentoo-sources/Manifest |  3 +++
 .../gentoo-sources/gentoo-sources-5.15.60.ebuild   | 28 ++
 2 files changed, 31 insertions(+)

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 7695ee10346d..91691bf2a2b6 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -64,6 +64,9 @@ DIST genpatches-5.15-62.extras.tar.xz 3932 BLAKE2B 
e4478eeb5bdf3b6db3e9e9de9c026
 DIST genpatches-5.15-63.base.tar.xz 2523256 BLAKE2B 
99979433623fad89d9a237f80f126e43f8d3a013cbf0ba77c3b5a4f2d02ee5bddc8d52be4a88f758225fd0ddc6a26946f9b08011b75404830fe44132e5fa5297
 SHA512 
4c582e0348e8d1d8ff7747c49a09a4fedd9c6b64e7f40c13fedfef0407557aaaf65cd7fb45a41b8175c8b15fe274261960f7af74459e353329fe378bfaef0fe6
 DIST genpatches-5.15-63.experimental.tar.xz 5416 BLAKE2B 
15f4bec8ad60aeca18c9af152cd7ad505da4dad900e9d3bb12225b1cdd6893b53eea320ac1213240ec3bd169abb518a081dabbd4c64c63eb9aad5239425a8faa
 SHA512 
794cd9c41fa86bd28199af6145acac8bba4fce15944f1f54061452501fc0dbc9a0670dbc42c6caf4b2f0972e512f028e20a61141c58f8490f69a03f6ee540c93
 DIST genpatches-5.15-63.extras.tar.xz 3932 BLAKE2B 
372a8997239e0c1cb97db2fe02e5c3e2f8f26c29705f8210d1eb30168fa0a7720949b64e399d4846b185ddd2141171cb13e5da5ae85e620e382262256a6c
 SHA512 
461eb99b6e124a648bdaacb015c7b413e102cb28768bb149a154d1c4fc570ae241a73c5bc64024b385ac8eac831a6bf65e79bd93f168fb93f94b0fae133080f7
+DIST genpatches-5.15-64.base.tar.xz 2531728 BLAKE2B 
9e4501d9a9e423b50d1cea9265dceef035879be1f16b9745aa7bbac8370f7f79c4e6c36fc2f3971a7d766a00fe6bab585148433601ca0ed30b40ca4a9a870406
 SHA512 
70d7c3f805b0ce6a9cd8034f0fcf22db203621c7464c7eb158a0d7a01dfeafe313934119a639305d02da25afc1852aa29d16d9d0de3d0101bc3bc4a0af18e8e8
+DIST genpatches-5.15-64.experimental.tar.xz 5424 BLAKE2B 
8b63f5dad718f6cac9d229798d1ab33359114046dc700118db3ead0fb39b3a4982ecd4b0dd5fefdc932ed32bc7ea1715c75858b8c8f417b2f6c3ac415283204b
 SHA512 
d281600402ab9a17a77b4c859c35e4c946cf00ff8f590037ef208d6841760ebda84f2ee45f40670f868b415616415edf4e5f47c4eaa064f0a9dc1f3fd0692ef9
+DIST genpatches-5.15-64.extras.tar.xz 3932 BLAKE2B 
3d6407f9f8da0b68072b93f74e33255c8c33523f7101a2fb9ca5ec4156f6f8cedb558a6cecca2c46ca8775869a06805ab21962f2fd7d1e974ed1813f3c0fc59f
 SHA512 
6dc7dee3aae37c5504857188fd6957ef85765ecaa5bc17f70e172af66e3ba9d005f27aabbe9171b848f17c9bff5acedb42f01389ae1b6866dca44a1b6611d4e0
 DIST genpatches-5.18-18.base.tar.xz 701140 BLAKE2B 
ee91222d6f6ce56d30cfe02b5546fcf7ee3ba04852c4875e9c98ed4177a7b73311e515e543a20107ddd1542077c9b4e2d13fd9cd0e05d507ade84f8fbb942300
 SHA512 
57aa8878d165ce05c2981c25e9a381df8ac8004336de88b330f779841683a1998dce79cb0e0c1263c77c81a84f01768630ff5e2385693a79b420b5ba05136a1b
 DIST genpatches-5.18-18.experimental.tar.xz 69920 BLAKE2B 
c23c3cf2f7b59b300bd4492fed25abc4aad4b462fa80de49910093180352c3aa6aafb5763235951c81e4e4d21246a47dd2022071a333e80c6e98b949d8d084ea
 SHA512 
e0c8831079785730ba9ccda0f6419451043fabf1a284217d4c79dcc828eda72fcb6c3ea2a2a6724f280ec1236b23916bdd6b357b3c6f6ae082e3b64a994fdc5f
 DIST genpatches-5.18-18.extras.tar.xz 3924 BLAKE2B 
f01ece5d1568a0a760b58108571cfcad343a37be3d344ea728ff89d3fa5c972d7d1c6808ec41ec699ece98a2049ea2c5cc036bae5f44e93cf23528a71e3aa922
 SHA512 
e810217c00867d3836c4606586e35cc26e8c934382d5927ca188249610b613605437013ca0015217d650e89bede32d67f4daa443bd445dec382832a4e43937ab

diff --git a/sys-kernel/gentoo-sources/gentoo-sources-5.15.60.ebuild 
b/sys-kernel/gentoo-sources/gentoo-sources-5.15.60.ebuild
new file mode 100644
index ..d013845ea4ee
--- /dev/null
+++ b/sys-kernel/gentoo-sources/gentoo-sources-5.15.60.ebuild
@@ -0,0 +1,28 @@
+# Copyright 1999-2022 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="64"
+
+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: net-wireless/iwgtk/

2022-08-11 Thread Ben Kohler
commit: 5cffcb4123838ef796df17fa03bd34abcdf9411c
Author: Ben Kohler  gentoo  org>
AuthorDate: Thu Aug 11 12:58:48 2022 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Thu Aug 11 13:00:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5cffcb41

net-wireless/iwgtk: add 0.8

Signed-off-by: Ben Kohler  gentoo.org>

 net-wireless/iwgtk/Manifest |  1 +
 net-wireless/iwgtk/iwgtk-0.8.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/net-wireless/iwgtk/Manifest b/net-wireless/iwgtk/Manifest
index a3eba5be9135..fa9f7f4e25b2 100644
--- a/net-wireless/iwgtk/Manifest
+++ b/net-wireless/iwgtk/Manifest
@@ -1 +1,2 @@
 DIST iwgtk-0.7.tar.gz 117313 BLAKE2B 
49c8c728a397f41af0b62748d4b84320185b705a191e90adae619cab7a8aff8cfe1b6ffe5cf6ee9405995f37b25b4f218cbb9d1264154d360a9e7ce9827ffdaa
 SHA512 
da40aa66985004e7917fac15629d36b9b5fc2e1d56fda1544567afdcc28ac5c65c125b35ffe6751b66eb0e3c71489c383be017a44a4cfef065c8859f15b7de74
+DIST iwgtk-0.8.tar.gz 119824 BLAKE2B 
ffd44e292319ae21a812249616b9de28e47e9a558cb37013fda8a4032cc9002352535639c3dd8f34e21ff31c2619640c0592ff05a53e7ea6abb7b619d97f8a6d
 SHA512 
efad4252ed031836a384a642bdc90bfc1396903eeb494e6f76238fcc5314ba7d58dd1aef9d4457aab2b940434b781e1a6bffd32ed6170dfb9abb919069f461f7

diff --git a/net-wireless/iwgtk/iwgtk-0.8.ebuild 
b/net-wireless/iwgtk/iwgtk-0.8.ebuild
new file mode 100644
index ..4d2eb68b95d0
--- /dev/null
+++ b/net-wireless/iwgtk/iwgtk-0.8.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit meson xdg
+
+DESCRIPTION="Lightweight, graphical wifi management utility for Linux"
+HOMEPAGE="https://github.com/J-Lentz/iwgtk;
+SRC_URI="https://github.com/J-Lentz/iwgtk/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+BDEPEND="app-text/scdoc"
+
+DEPEND="
+   dev-libs/atk:0
+   dev-libs/glib:2
+   gui-libs/gtk:4
+   media-gfx/qrencode:=
+   x11-libs/cairo:0
+   x11-libs/gdk-pixbuf:2
+   x11-libs/pango:0
+"
+
+RDEPEND="
+   ${DEPEND}
+   >=net-wireless/iwd-1.28
+"



  1   2   3   >