[gentoo-commits] proj/portage:master commit in: lib/portage/dbapi/

2023-10-04 Thread Zac Medico
commit: 2ccc08e3b629d3f56f028cd767ebd5ff1a8edaf1
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Oct  5 04:43:50 2023 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Oct  5 05:18:58 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=2ccc08e3

MergeProcess: Migrate to ForkProcess target parameter

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

 lib/portage/dbapi/_MergeProcess.py | 73 +++---
 1 file changed, 52 insertions(+), 21 deletions(-)

diff --git a/lib/portage/dbapi/_MergeProcess.py 
b/lib/portage/dbapi/_MergeProcess.py
index 7c018222fe..012435dce3 100644
--- a/lib/portage/dbapi/_MergeProcess.py
+++ b/lib/portage/dbapi/_MergeProcess.py
@@ -1,6 +1,7 @@
-# Copyright 2010-2020 Gentoo Authors
+# Copyright 2010-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+import functools
 import io
 import multiprocessing
 import platform
@@ -73,6 +74,20 @@ class MergeProcess(ForkProcess):
 self.fd_pipes.setdefault(0, portage._get_stdin().fileno())
 
 self.log_filter_file = self.settings.get("PORTAGE_LOG_FILTER_FILE_CMD")
+self.target = functools.partial(
+self._target,
+lambda: self._counter,
+lambda: self._elog_reader_fd,
+lambda: self._dblink,
+self.infloc,
+self.mydbapi,
+self.myebuild,
+self.pkgloc,
+self.prev_mtimes,
+self.settings,
+self.unmerge,
+self.vartree.dbapi,
+)
 super()._start()
 
 def _lock_vdb(self):
@@ -197,13 +212,29 @@ class MergeProcess(ForkProcess):
 
 return pids
 
-def _run(self):
-os.close(self._elog_reader_fd)
-counter = self._counter
-mylink = self._dblink
-portage.output.havecolor = not no_color(self.settings)
+@staticmethod
+def _target(
+get_counter,
+get_elog_reader_fd,
+get_mylink,
+infloc,
+mydbapi,
+myebuild,
+pkgloc,
+prev_mtimes,
+settings,
+unmerge,
+vardb,
+):
+"""
+TODO: Make all arguments picklable for the multiprocessing spawn start 
method.
+"""
+os.close(get_elog_reader_fd())
+counter = get_counter()
+mylink = get_mylink()
+portage.output.havecolor = not no_color(settings)
 # Avoid wastful updates of the vdb cache.
-self.vartree.dbapi._flush_cache_enabled = False
+vardb._flush_cache_enabled = False
 
 # In this subprocess we don't want PORTAGE_BACKGROUND to
 # suppress stdout/stderr output since they are pipes. We
@@ -211,21 +242,21 @@ class MergeProcess(ForkProcess):
 # already be opened by the parent process, so we set the
 # "subprocess" value for use in conditional logging code
 # involving PORTAGE_LOG_FILE.
-if not self.unmerge:
+if not unmerge:
 # unmerge phases have separate logs
-if self.settings.get("PORTAGE_BACKGROUND") == "1":
-self.settings["PORTAGE_BACKGROUND_UNMERGE"] = "1"
+if settings.get("PORTAGE_BACKGROUND") == "1":
+settings["PORTAGE_BACKGROUND_UNMERGE"] = "1"
 else:
-self.settings["PORTAGE_BACKGROUND_UNMERGE"] = "0"
-self.settings.backup_changes("PORTAGE_BACKGROUND_UNMERGE")
-self.settings["PORTAGE_BACKGROUND"] = "subprocess"
-self.settings.backup_changes("PORTAGE_BACKGROUND")
+settings["PORTAGE_BACKGROUND_UNMERGE"] = "0"
+settings.backup_changes("PORTAGE_BACKGROUND_UNMERGE")
+settings["PORTAGE_BACKGROUND"] = "subprocess"
+settings.backup_changes("PORTAGE_BACKGROUND")
 
 rval = 1
-if self.unmerge:
+if unmerge:
 if not mylink.exists():
 rval = os.EX_OK
-elif mylink.unmerge(ldpath_mtimes=self.prev_mtimes) == os.EX_OK:
+elif mylink.unmerge(ldpath_mtimes=prev_mtimes) == os.EX_OK:
 mylink.lockdb()
 try:
 mylink.delete()
@@ -234,11 +265,11 @@ class MergeProcess(ForkProcess):
 rval = os.EX_OK
 else:
 rval = mylink.merge(
-self.pkgloc,
-self.infloc,
-myebuild=self.myebuild,
-mydbapi=self.mydbapi,
-prev_mtimes=self.prev_mtimes,
+pkgloc,
+infloc,
+myebuild=myebuild,
+mydbapi=mydbapi,
+prev_mtimes=prev_mtimes,
 counter=counter,
 )
 return rval



[gentoo-commits] proj/portage:master commit in: lib/portage/package/ebuild/_parallel_manifest/

2023-10-04 Thread Zac Medico
commit: 07dbfbdf0504387fe96f865440550b720245f0bb
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Oct  5 04:36:43 2023 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Oct  5 04:37:06 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=07dbfbdf

ManifestProcess: Migrate to ForkProcess target parameter

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

 .../ebuild/_parallel_manifest/ManifestProcess.py   | 28 +-
 1 file changed, 22 insertions(+), 6 deletions(-)

diff --git a/lib/portage/package/ebuild/_parallel_manifest/ManifestProcess.py 
b/lib/portage/package/ebuild/_parallel_manifest/ManifestProcess.py
index f1a30670b4..ec2d5bdfc2 100644
--- a/lib/portage/package/ebuild/_parallel_manifest/ManifestProcess.py
+++ b/lib/portage/package/ebuild/_parallel_manifest/ManifestProcess.py
@@ -1,6 +1,8 @@
-# Copyright 2012 Gentoo Foundation
+# Copyright 2012-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+import functools
+
 import portage
 from portage import os
 from portage.exception import FileNotFound, PermissionDenied, 
PortagePackageException
@@ -13,11 +15,25 @@ class ManifestProcess(ForkProcess):
 
 MODIFIED = 16
 
-def _run(self):
-mf = self.repo_config.load_manifest(
-os.path.join(self.repo_config.location, self.cp),
+def _start(self):
+self.target = functools.partial(
+self._target,
+self.cp,
 self.distdir,
-fetchlist_dict=self.fetchlist_dict,
+self.fetchlist_dict,
+self.repo_config,
+)
+super()._start()
+
+@staticmethod
+def _target(cp, distdir, fetchlist_dict, repo_config):
+"""
+TODO: Make all arguments picklable for the multiprocessing spawn start 
method.
+"""
+mf = repo_config.load_manifest(
+os.path.join(repo_config.location, cp),
+distdir,
+fetchlist_dict=fetchlist_dict,
 )
 
 try:
@@ -43,5 +59,5 @@ class ManifestProcess(ForkProcess):
 return 1
 else:
 if modified:
-return self.MODIFIED
+return ManifestProcess.MODIFIED
 return os.EX_OK



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

2023-10-04 Thread Arthur Zamarin
commit: 088a95f26f5709742c3cc08e542bcb344df427a9
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 05:02:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 05:02:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=088a95f2

x11-libs/libXpm: Stabilize 3.5.17 arm64, #915194

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

 x11-libs/libXpm/libXpm-3.5.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libXpm/libXpm-3.5.17.ebuild 
b/x11-libs/libXpm/libXpm-3.5.17.ebuild
index 55310398aa3f..e40867c2b553 100644
--- a/x11-libs/libXpm/libXpm-3.5.17.ebuild
+++ b/x11-libs/libXpm/libXpm-3.5.17.ebuild
@@ -9,7 +9,7 @@ XORG_TARBALL_SUFFIX="xz"
 inherit xorg-3
 
 DESCRIPTION="X.Org Xpm library"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: d8413317f9dd71444d5a1d0fa91b845cf8ad04f6
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 05:02:05 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 05:02:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d8413317

x11-libs/libXpm: Stabilize 3.5.17 arm, #915194

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

 x11-libs/libXpm/libXpm-3.5.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libXpm/libXpm-3.5.17.ebuild 
b/x11-libs/libXpm/libXpm-3.5.17.ebuild
index e40867c2b553..9f970bf59569 100644
--- a/x11-libs/libXpm/libXpm-3.5.17.ebuild
+++ b/x11-libs/libXpm/libXpm-3.5.17.ebuild
@@ -9,7 +9,7 @@ XORG_TARBALL_SUFFIX="xz"
 inherit xorg-3
 
 DESCRIPTION="X.Org Xpm library"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: 55fa3c15b259418fbe21acce6ff9b106ee99d099
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 05:02:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 05:02:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55fa3c15

x11-libs/libX11: Stabilize 1.8.7 arm, #915193

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

 x11-libs/libX11/libX11-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libX11/libX11-1.8.7.ebuild 
b/x11-libs/libX11/libX11-1.8.7.ebuild
index c8f720a23a20..0fc1af8d79f9 100644
--- a/x11-libs/libX11/libX11-1.8.7.ebuild
+++ b/x11-libs/libX11/libX11-1.8.7.ebuild
@@ -11,7 +11,7 @@ inherit toolchain-funcs xorg-3
 # Note: please bump this with x11-misc/compose-tables
 DESCRIPTION="X.Org X11 library"
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: 3f3c5b6c77fad12dfc37e98dddc0bf746915328b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 05:02:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 05:02:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f3c5b6c

x11-misc/compose-tables: Stabilize 1.8.7 arm, #915193

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

 x11-misc/compose-tables/compose-tables-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild 
b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
index 9c567740b55a..38ce781f3959 100644
--- a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="X.Org Compose Key tables from libX11"
 
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
 S="${WORKDIR}/libX11-${PV}/"
 
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 # Only needed by configure
 DEPEND="



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

2023-10-04 Thread Arthur Zamarin
commit: a4397c20d9e0046af38cdf29924e4c1040ae76eb
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 05:02:02 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 05:02:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4397c20

x11-misc/compose-tables: Stabilize 1.8.7 arm64, #915193

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

 x11-misc/compose-tables/compose-tables-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild 
b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
index b5562546bd7f..9c567740b55a 100644
--- a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="X.Org Compose Key tables from libX11"
 
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
 S="${WORKDIR}/libX11-${PV}/"
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 # Only needed by configure
 DEPEND="



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

2023-10-04 Thread Arthur Zamarin
commit: 1a3e280338066ff06cfb3757e0574e46ead39491
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 05:02:02 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 05:02:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a3e2803

x11-libs/libX11: Stabilize 1.8.7 arm64, #915193

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

 x11-libs/libX11/libX11-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libX11/libX11-1.8.7.ebuild 
b/x11-libs/libX11/libX11-1.8.7.ebuild
index 5a6819fde2ac..c8f720a23a20 100644
--- a/x11-libs/libX11/libX11-1.8.7.ebuild
+++ b/x11-libs/libX11/libX11-1.8.7.ebuild
@@ -11,7 +11,7 @@ inherit toolchain-funcs xorg-3
 # Note: please bump this with x11-misc/compose-tables
 DESCRIPTION="X.Org X11 library"
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: e402336a8edeccba279cc6c0b6491ddb9b1cae89
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:42 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e402336a

sys-boot/grub: Stabilize 2.06-r9 x86, #915187

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

 sys-boot/grub/grub-2.06-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/grub/grub-2.06-r9.ebuild 
b/sys-boot/grub/grub-2.06-r9.ebuild
index 48ff28af00b7..eaede1207205 100644
--- a/sys-boot/grub/grub-2.06-r9.ebuild
+++ b/sys-boot/grub/grub-2.06-r9.ebuild
@@ -54,7 +54,7 @@ if [[ ${PV} !=  ]]; then
"
S=${WORKDIR}/${P%_*}
fi
-   KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 else
inherit git-r3
EGIT_REPO_URI="https://git.savannah.gnu.org/git/grub.git;



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

2023-10-04 Thread Arthur Zamarin
commit: e6dcbcd25a2e4c2df04f6d4023f8675abc82ba06
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:43 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6dcbcd2

sys-boot/grub: Stabilize 2.06-r9 amd64, #915187

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

 sys-boot/grub/grub-2.06-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-boot/grub/grub-2.06-r9.ebuild 
b/sys-boot/grub/grub-2.06-r9.ebuild
index eaede1207205..f372a2ec6a09 100644
--- a/sys-boot/grub/grub-2.06-r9.ebuild
+++ b/sys-boot/grub/grub-2.06-r9.ebuild
@@ -54,7 +54,7 @@ if [[ ${PV} !=  ]]; then
"
S=${WORKDIR}/${P%_*}
fi
-   KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 else
inherit git-r3
EGIT_REPO_URI="https://git.savannah.gnu.org/git/grub.git;



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

2023-10-04 Thread Arthur Zamarin
commit: 1330eb70e587d26e4f4d235d54f81c07e91c27e5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:48 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1330eb70

x11-libs/libXpm: Stabilize 3.5.17 amd64, #915194

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

 x11-libs/libXpm/libXpm-3.5.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libXpm/libXpm-3.5.17.ebuild 
b/x11-libs/libXpm/libXpm-3.5.17.ebuild
index 10ffa4aafa0f..55310398aa3f 100644
--- a/x11-libs/libXpm/libXpm-3.5.17.ebuild
+++ b/x11-libs/libXpm/libXpm-3.5.17.ebuild
@@ -9,7 +9,7 @@ XORG_TARBALL_SUFFIX="xz"
 inherit xorg-3
 
 DESCRIPTION="X.Org Xpm library"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: 0f1850b004e957395a9e20ac0707660a7396d413
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:47 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f1850b0

x11-libs/libX11: Stabilize 1.8.7 amd64, #915193

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

 x11-libs/libX11/libX11-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libX11/libX11-1.8.7.ebuild 
b/x11-libs/libX11/libX11-1.8.7.ebuild
index 51d9ec95a6d8..5a6819fde2ac 100644
--- a/x11-libs/libX11/libX11-1.8.7.ebuild
+++ b/x11-libs/libX11/libX11-1.8.7.ebuild
@@ -11,7 +11,7 @@ inherit toolchain-funcs xorg-3
 # Note: please bump this with x11-misc/compose-tables
 DESCRIPTION="X.Org X11 library"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: 7b775c5ec2a31a76260a0d52bac370eb69f95155
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:46 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b775c5e

x11-misc/compose-tables: Stabilize 1.8.7 amd64, #915193

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

 x11-misc/compose-tables/compose-tables-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild 
b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
index 7c4df2e8c172..b5562546bd7f 100644
--- a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="X.Org Compose Key tables from libX11"
 
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
 S="${WORKDIR}/libX11-${PV}/"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 # Only needed by configure
 DEPEND="



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

2023-10-04 Thread Arthur Zamarin
commit: 0257fb3c0bab079162dfef8f9606fb2cf86c1226
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:45 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0257fb3c

x11-libs/libX11: Stabilize 1.8.7 x86, #915193

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

 x11-libs/libX11/libX11-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libX11/libX11-1.8.7.ebuild 
b/x11-libs/libX11/libX11-1.8.7.ebuild
index e6c8a172a0ca..51d9ec95a6d8 100644
--- a/x11-libs/libX11/libX11-1.8.7.ebuild
+++ b/x11-libs/libX11/libX11-1.8.7.ebuild
@@ -11,7 +11,7 @@ inherit toolchain-funcs xorg-3
 # Note: please bump this with x11-misc/compose-tables
 DESCRIPTION="X.Org X11 library"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: 450e83f692b5519becbe0fa1a5bd53c8412a0599
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:47 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=450e83f6

x11-libs/libXpm: Stabilize 3.5.17 x86, #915194

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

 x11-libs/libXpm/libXpm-3.5.17.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libXpm/libXpm-3.5.17.ebuild 
b/x11-libs/libXpm/libXpm-3.5.17.ebuild
index 29f42abc4f80..10ffa4aafa0f 100644
--- a/x11-libs/libXpm/libXpm-3.5.17.ebuild
+++ b/x11-libs/libXpm/libXpm-3.5.17.ebuild
@@ -9,7 +9,7 @@ XORG_TARBALL_SUFFIX="xz"
 inherit xorg-3
 
 DESCRIPTION="X.Org Xpm library"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: 834ec85b9d8cc04a780b52dccff0c20715d3073a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:41 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=834ec85b

dev-python/jsonschema: Stabilize 4.19.1 ppc, #912611

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

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

diff --git a/dev-python/jsonschema/jsonschema-4.19.1.ebuild 
b/dev-python/jsonschema/jsonschema-4.19.1.ebuild
index 05832d393303..2435b2bb8412 100644
--- a/dev-python/jsonschema/jsonschema-4.19.1.ebuild
+++ b/dev-python/jsonschema/jsonschema-4.19.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
>=dev-python/attrs-22.2.0[${PYTHON_USEDEP}]



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

2023-10-04 Thread Arthur Zamarin
commit: 74a343bbaa65152abd5d014a73d79f9aa2c90086
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:44 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74a343bb

x11-misc/compose-tables: Stabilize 1.8.7 ppc, #915193

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

 x11-misc/compose-tables/compose-tables-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild 
b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
index 07d749e49aed..d5a4d8bcd927 100644
--- a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="X.Org Compose Key tables from libX11"
 
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
 S="${WORKDIR}/libX11-${PV}/"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 # Only needed by configure
 DEPEND="



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

2023-10-04 Thread Arthur Zamarin
commit: 42e0be3ddd73952e49c66ff58cc33f736275ff65
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:44 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42e0be3d

x11-libs/libX11: Stabilize 1.8.7 ppc, #915193

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

 x11-libs/libX11/libX11-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/libX11/libX11-1.8.7.ebuild 
b/x11-libs/libX11/libX11-1.8.7.ebuild
index 28f7a5710fd8..e6c8a172a0ca 100644
--- a/x11-libs/libX11/libX11-1.8.7.ebuild
+++ b/x11-libs/libX11/libX11-1.8.7.ebuild
@@ -11,7 +11,7 @@ inherit toolchain-funcs xorg-3
 # Note: please bump this with x11-misc/compose-tables
 DESCRIPTION="X.Org X11 library"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2023-10-04 Thread Arthur Zamarin
commit: f7b2b1b38301e1d3e190e42313b2ed0d3afb8f30
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:45 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7b2b1b3

x11-misc/compose-tables: Stabilize 1.8.7 x86, #915193

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

 x11-misc/compose-tables/compose-tables-1.8.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild 
b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
index d5a4d8bcd927..7c4df2e8c172 100644
--- a/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.8.7.ebuild
@@ -13,7 +13,7 @@ DESCRIPTION="X.Org Compose Key tables from libX11"
 
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
 S="${WORKDIR}/libX11-${PV}/"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 # Only needed by configure
 DEPEND="



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

2023-10-04 Thread Arthur Zamarin
commit: 1939cf3a19a694fac559bb746470d5c1bd29e25c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Oct  5 04:46:40 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Oct  5 04:46:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1939cf3a

dev-python/jsonschema-specifications: Stabilize 2023.7.1 ppc, #912107

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

 .../jsonschema-specifications/jsonschema-specifications-2023.7.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/jsonschema-specifications/jsonschema-specifications-2023.7.1.ebuild
 
b/dev-python/jsonschema-specifications/jsonschema-specifications-2023.7.1.ebuild
index 2db90382a337..e3e30ff4617b 100644
--- 
a/dev-python/jsonschema-specifications/jsonschema-specifications-2023.7.1.ebuild
+++ 
b/dev-python/jsonschema-specifications/jsonschema-specifications-2023.7.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
>=dev-python/referencing-0.28.0[${PYTHON_USEDEP}]



[gentoo-commits] proj/portage:master commit in: lib/_emerge/

2023-10-04 Thread Zac Medico
commit: 8e88810e61b6b36bd36e8fb1e5ae76715a72dcd9
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Oct  5 04:17:10 2023 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Oct  5 04:18:31 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=8e88810e

EbuildFetcherProcess: Migrate to ForkProcess target parameter

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

 lib/_emerge/EbuildFetcher.py | 35 +++
 1 file changed, 23 insertions(+), 12 deletions(-)

diff --git a/lib/_emerge/EbuildFetcher.py b/lib/_emerge/EbuildFetcher.py
index 7e28be4938..edabe54456 100644
--- a/lib/_emerge/EbuildFetcher.py
+++ b/lib/_emerge/EbuildFetcher.py
@@ -1,7 +1,8 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 import copy
+import functools
 import io
 import sys
 
@@ -246,6 +247,14 @@ class _EbuildFetcherProcess(ForkProcess):
 
 self._settings = settings
 self.log_filter_file = settings.get("PORTAGE_LOG_FILTER_FILE_CMD")
+self.target = functools.partial(
+self._target,
+self._settings,
+self._get_digests,
+self._get_manifest,
+self._uri_map,
+self.fetchonly,
+)
 ForkProcess._start(self)
 
 # Free settings now since it's no longer needed in
@@ -254,25 +263,27 @@ class _EbuildFetcherProcess(ForkProcess):
 settings = None
 self._settings = None
 
-def _run(self):
+@staticmethod
+def _target(settings, get_digests, get_manifest, uri_map, fetchonly):
+"""
+TODO: Make all arguments picklable for the multiprocessing spawn start 
method.
+"""
 # Force consistent color output, in case we are capturing fetch
 # output through a normal pipe due to unavailability of ptys.
-portage.output.havecolor = self._settings.get("NOCOLOR") not in 
("yes", "true")
+portage.output.havecolor = settings.get("NOCOLOR") not in ("yes", 
"true")
 
 # For userfetch, drop privileges for the entire fetch call, in
 # order to handle DISTDIR on NFS with root_squash for bug 601252.
-if _want_userfetch(self._settings):
-_drop_privs_userfetch(self._settings)
+if _want_userfetch(settings):
+_drop_privs_userfetch(settings)
 
 rval = 1
-allow_missing = (
-self._get_manifest().allow_missing or "digest" in 
self._settings.features
-)
+allow_missing = get_manifest().allow_missing or "digest" in 
settings.features
 if fetch(
-self._uri_map,
-self._settings,
-fetchonly=self.fetchonly,
-digests=copy.deepcopy(self._get_digests()),
+uri_map,
+settings,
+fetchonly=fetchonly,
+digests=copy.deepcopy(get_digests()),
 allow_missing_digests=allow_missing,
 ):
 rval = os.EX_OK



[gentoo-commits] repo/proj/guru:dev commit in: net-libs/syndication-domination/

2023-10-04 Thread Brett Alcox
commit: 1f0e8450b351f67f4289d06f9eecc305d8c5bcf2
Author: brettalcox  gmail  com>
AuthorDate: Thu Oct  5 03:11:14 2023 +
Commit: Brett Alcox  gmail  com>
CommitDate: Thu Oct  5 03:11:14 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1f0e8450

net-libs/syndication-domination: new package, add 

Signed-off-by: brettalcox  gmail.com>

 net-libs/syndication-domination/metadata.xml   | 15 ++
 .../syndication-domination-.ebuild | 54 ++
 2 files changed, 69 insertions(+)

diff --git a/net-libs/syndication-domination/metadata.xml 
b/net-libs/syndication-domination/metadata.xml
new file mode 100644
index 00..81cf0cee77
--- /dev/null
+++ b/net-libs/syndication-domination/metadata.xml
@@ -0,0 +1,15 @@
+
+https://www.gentoo.org/dtd/metadata.dtd'>
+
+   
+   brettal...@gmail.com
+   
+   
+   GabMus/syndication-domination
+   
+   
+   
+   Builds a binary executable instead of python bindings 
+   
+   
+

diff --git a/net-libs/syndication-domination/syndication-domination-.ebuild 
b/net-libs/syndication-domination/syndication-domination-.ebuild
new file mode 100644
index 00..92791e1b5f
--- /dev/null
+++ b/net-libs/syndication-domination/syndication-domination-.ebuild
@@ -0,0 +1,54 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson
+
+DESCRIPTION="An RSS/Atom parser, because there's nothing else out there."
+HOMEPAGE="https://gitlab.com/gabmus/syndication-domination;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://gitlab.com/gabmus/syndication-domination.git;
+else
+   KEYWORDS="~amd64"
+   
SRC_URI="https://gitlab.com/gabmus/syndication-domination/-/archive/${PV}/${P}.tar.bz2;
+fi
+
+LICENSE="AGPL-3"
+SLOT="0"
+IUSE="debug json-binary +python"
+REQUIRED_USE="
+   ^^ ( python json-binary )
+"
+DEPEND="
+   app-text/htmltidy
+   dev-libs/libfmt
+   dev-libs/pugixml
+   python? (
+   >=dev-lang/python-3.11
+   dev-python/pybind11
+   )
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_configure() {
+   local emesonargs=(
+   --buildtype $(usex debug debug release)
+   --prefix=/usr
+   -DHTML_SUPPORT=true
+   $(meson_use python PYTHON_BINDINGS)
+   $(meson_use json-binary TO_JSON_BINARY)
+   )
+   meson_src_configure
+}
+
+src_compile() {
+   meson_src_compile
+}
+
+src_install() {
+   meson_src_install
+}



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

2023-10-04 Thread Michał Górny
commit: e48b8d4fca9a582284a2bb690ba021fabecb7c41
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:53:01 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:53:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e48b8d4f

dev-python/xxhash: Bump to 3.4.1

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

 dev-python/xxhash/Manifest|  1 +
 dev-python/xxhash/xxhash-3.4.1.ebuild | 38 +++
 2 files changed, 39 insertions(+)

diff --git a/dev-python/xxhash/Manifest b/dev-python/xxhash/Manifest
index fc5308e36143..683477f2d2ae 100644
--- a/dev-python/xxhash/Manifest
+++ b/dev-python/xxhash/Manifest
@@ -1 +1,2 @@
 DIST xxhash-3.3.0.tar.gz 84262 BLAKE2B 
9655bed8c30e8ecc7b3f12bebe9f845412e4fbc24daef11570eb8bf78deaf78fe4ea874a5ed334c965c055e6ad4e32f03f025d3ed815bb7a2249e8f80a0b04b0
 SHA512 
1418e0ff8d7dca7759bfe048ee42c2b1168b68ec69f431622f065c28bcf65b2e21f5951a8651f2151a17f8d1b19b47d5c305a545ae1e0d427c7cadf29e94b968
+DIST xxhash-3.4.1.tar.gz 84220 BLAKE2B 
9bf0bc3ea15adbcf9c1b0dd526f406bd20ca11b6c25c2c771e34952d9bd3d2e85d121304bebfe47590573b4da73acf28d1726d0c628239ec9591738462cee3c0
 SHA512 
ab3c1fa5ce3ebefa13f87c60a700a897a080c576f1ce492bae9c47eb24a9d182cc8e71bfed81c8f0413ee261fd5522bdf44187043c9703958b72fa77e46a8953

diff --git a/dev-python/xxhash/xxhash-3.4.1.ebuild 
b/dev-python/xxhash/xxhash-3.4.1.ebuild
new file mode 100644
index ..b271bad65166
--- /dev/null
+++ b/dev-python/xxhash/xxhash-3.4.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python binding for the xxHash library"
+HOMEPAGE="
+   https://github.com/ifduyue/python-xxhash/
+   https://pypi.org/project/xxhash/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+DEPEND="
+   >=dev-libs/xxhash-0.8.0
+"
+RDEPEND="
+   ${DEPEND}
+"
+
+distutils_enable_tests unittest
+
+python_configure_all() {
+   export XXHASH_LINK_SO=1
+}
+
+python_test() {
+   cd tests || die
+   eunittest
+}



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

2023-10-04 Thread Michał Górny
commit: a157b975560bbc28d0ba3a8f39029ae56e033be8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:57:22 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:57:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a157b975

dev-python/tzlocal: Bump to 5.1

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

 dev-python/tzlocal/Manifest   |  1 +
 dev-python/tzlocal/tzlocal-5.1.ebuild | 32 
 2 files changed, 33 insertions(+)

diff --git a/dev-python/tzlocal/Manifest b/dev-python/tzlocal/Manifest
index 25493dac95cc..dc4903811f4d 100644
--- a/dev-python/tzlocal/Manifest
+++ b/dev-python/tzlocal/Manifest
@@ -1 +1,2 @@
 DIST tzlocal-5.0.1.gh.tar.gz 25032 BLAKE2B 
a1b0d2d2d6422c91752332d789efddad5f14e02e0097deaea1b8df2de20686d1e73dddb1864c5c643b20f8cfce56ff28adb741f7ae74b58409a60bf0eb172057
 SHA512 
b89293180e82334e3c1627845516ac25d8862c799d6d56a9eff13549bfafef2e4e4b0a624e9455e4310429f50b9d82fa984b7dfe8cdd9ed3dc7325ea89c0c5b1
+DIST tzlocal-5.1.gh.tar.gz 25413 BLAKE2B 
e4ed9c3161d049e9e00176d3ebf9a30db0f65b8c5141498d3a5d4df9e9bb299e6a307e462884640cbdaa781a3a5c07bc453e36d0eb772da0e22bbf6e474de187
 SHA512 
692d7ac8d04cdc3da43d75fbbd99b329b1436ef6b41540604bd65f667ac5f20219dc769d0379f41eb8723521e2ad4d2b9f399326f3d1a41b9f63c0db4341eb0d

diff --git a/dev-python/tzlocal/tzlocal-5.1.ebuild 
b/dev-python/tzlocal/tzlocal-5.1.ebuild
new file mode 100644
index ..19aa8b81c205
--- /dev/null
+++ b/dev-python/tzlocal/tzlocal-5.1.ebuild
@@ -0,0 +1,32 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} pypy3 )
+
+inherit distutils-r1
+
+DESCRIPTION="tzinfo object for the local timezone"
+HOMEPAGE="
+   https://github.com/regebro/tzlocal/
+   https://pypi.org/project/tzlocal/
+"
+# symlinks aren't correctly preserved in sdist, as of 5.0.1
+SRC_URI="
+   https://github.com/regebro/tzlocal/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2023-10-04 Thread Michał Górny
commit: 214b364755882c646bb5661b4027db3ee055d762
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:55:26 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:55:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=214b3647

dev-python/deepdiff: Bump to 6.6.0

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

 dev-python/deepdiff/Manifest  |  1 +
 dev-python/deepdiff/deepdiff-6.6.0.ebuild | 39 +++
 2 files changed, 40 insertions(+)

diff --git a/dev-python/deepdiff/Manifest b/dev-python/deepdiff/Manifest
index 35de30568b46..5add73057f0a 100644
--- a/dev-python/deepdiff/Manifest
+++ b/dev-python/deepdiff/Manifest
@@ -2,3 +2,4 @@ DIST deepdiff-6.3.1.tar.gz 392651 BLAKE2B 
605dddc7c9d5895388141cbd3ed1a566c06310
 DIST deepdiff-6.4.0.tar.gz 394464 BLAKE2B 
dce005461b4ce1c4b84b9093ba445b11a96b91bf4aab302ae76fc98066c9c3d9871fe79de5f0254451e4bd9b7dc623268d375b681fea69988392e04385777818
 SHA512 
af4fb42180959df2dbd7708d87d8b1cd49e8cde058a705e45e78da188668cb42e65e9ddabb120fa9ab71bb8f45d3e8a9293c5e3568b9d49af6b326d4a21e27e4
 DIST deepdiff-6.4.1.tar.gz 394531 BLAKE2B 
a95b18bf335e88beb2ee19209fa9166fe2c0c65a5312ee4283b03e745c0469913ccf3b132042c7173a518416f8d227da24f8c3aa3dd91d916ac67fb190b9bf54
 SHA512 
3e54313b4681b75d607ad2eb2485245f43d78f0a80adf2f50847fd9a241cb1752cf66028a3cb5dc2980786e1c9de35fa9da52df8ed434ca2f889d99250088f66
 DIST deepdiff-6.5.0.tar.gz 395348 BLAKE2B 
e7a509ac1950da7ba2c3d12c85eb80d03b8f78229c5a041d14aee8368d8a2a071a0afc8cad0425f23eda82d3f5038d9340c8ed2870f637fd9bb2665cd15be67f
 SHA512 
857d1e0e34ab85c67c5b655fe245f4aba4de3620ad39e1f044bf6329b0ecd0afeeb9511a318badadb21daac03594844d6c6357c91a8056e44e67e83e4635f26b
+DIST deepdiff-6.6.0.tar.gz 400645 BLAKE2B 
4210c050bf94d974561270ea9b6884d3c1004a9ebfadb1edcae361a1a15765dd7314418a4455b8ddb548100774f048df0aefea9d880179979eefcfb8f8d5906a
 SHA512 
81b31ab52a23928746cc890439e7733b8ca6c5df390cf866977420cbd08f9d93b49d938e663e4d6e46f4b19741cbb52bc1f631b3cb733a7390535adf0fb432f2

diff --git a/dev-python/deepdiff/deepdiff-6.6.0.ebuild 
b/dev-python/deepdiff/deepdiff-6.6.0.ebuild
new file mode 100644
index ..e41b020f504f
--- /dev/null
+++ b/dev-python/deepdiff/deepdiff-6.6.0.ebuild
@@ -0,0 +1,39 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A library for comparing dictionaries, iterables, strings and 
other objects"
+HOMEPAGE="
+   https://github.com/seperman/deepdiff/
+   https://pypi.org/project/deepdiff/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   >=dev-python/pyyaml-6.0[${PYTHON_USEDEP}]
+   >=dev-python/click-8.1.3[${PYTHON_USEDEP}]
+"
+
+DEPEND="
+   test? (
+   >=dev-python/jsonpickle-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/numpy-1.23.5[${PYTHON_USEDEP}]
+   dev-python/pydantic[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/tomli-w[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/tomli[${PYTHON_USEDEP}]
+   ' 3.10)
+   )
+"
+
+distutils_enable_tests pytest



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

2023-10-04 Thread Michał Górny
commit: 7412fe7399fae12a469dfa0f9f80c9b34660ad7c
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:51:56 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:51:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7412fe73

dev-python/nbconvert: Bump to 7.9.2

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

 dev-python/nbconvert/Manifest   |  1 +
 dev-python/nbconvert/nbconvert-7.9.2.ebuild | 82 +
 2 files changed, 83 insertions(+)

diff --git a/dev-python/nbconvert/Manifest b/dev-python/nbconvert/Manifest
index 77368b379180..b44fc24ff720 100644
--- a/dev-python/nbconvert/Manifest
+++ b/dev-python/nbconvert/Manifest
@@ -1,2 +1,3 @@
 DIST nbconvert-7.8.0.tar.gz 850287 BLAKE2B 
c499f9df8dd7eb4d337f0b7b6f79cb6046361900747fc1cbd84426b2fda35f9e453002341b322b32f04187e0fd3e375dcc4338e3b4bc7455ddc4f2185a69ed1d
 SHA512 
e332f5561050244c79e728c71e51b9ecd66c99c1550bb95bc3cb710b1bb67a3513c0a7c00cb3e333c032e5228f251b7be036162c77cb375900c5eacc923fc197
 DIST nbconvert-7.9.1.tar.gz 850278 BLAKE2B 
718eb528911c85f7a60285590fdf6d0bea6b9f6a11b9764506cfeb46ace20b32582947a7f63f7c1a8c3d631cc2b032a683cabcad9f52414a260a05acc717d1dc
 SHA512 
d50cec9fdb89d1b6e31fe24aa9146207aea86438b96d8f7a5d9ee4d18f41f0c53ae1855e0701d2ddceb00b5e97bf849c63790a674ac2346546ab7285ee3c9a6e
+DIST nbconvert-7.9.2.tar.gz 850333 BLAKE2B 
d2d2b6f04e879a78151e606c24b03dd4655b37cc13a1302d7d7a8fd880d9728f0a144f25aefbfaa4b63d4a510811ee6af6d92cf9506d2c1718d7b319cb7ef745
 SHA512 
43ed36aae813f77bfd50aebfed4c650e552fc5a438e607b924aa2907f23c53c61ec3ddff1051d77e8b0ad968fcef17e6b010b1e7876b17b380d2e12cfeecf631

diff --git a/dev-python/nbconvert/nbconvert-7.9.2.ebuild 
b/dev-python/nbconvert/nbconvert-7.9.2.ebuild
new file mode 100644
index ..c3ac4e5d1e50
--- /dev/null
+++ b/dev-python/nbconvert/nbconvert-7.9.2.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 multiprocessing pypi virtualx
+
+DESCRIPTION="Converting Jupyter Notebooks"
+HOMEPAGE="
+   https://nbconvert.readthedocs.io/
+   https://github.com/jupyter/nbconvert/
+   https://pypi.org/project/nbconvert/
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/bleach[${PYTHON_USEDEP}]
+   dev-python/defusedxml[${PYTHON_USEDEP}]
+   >=dev-python/jinja-3.0[${PYTHON_USEDEP}]
+   >=dev-python/jupyter-core-4.7[${PYTHON_USEDEP}]
+   dev-python/jupyterlab-pygments[${PYTHON_USEDEP}]
+   >=dev-python/markupsafe-2.0[${PYTHON_USEDEP}]
+   =dev-python/nbclient-0.5.0[${PYTHON_USEDEP}]
+   >=dev-python/nbformat-5.7[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   >=dev-python/pandocfilters-1.4.1[${PYTHON_USEDEP}]
+   >=dev-python/pygments-2.4.1[${PYTHON_USEDEP}]
+   dev-python/tinycss2[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-5.1.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   >=dev-python/ipywidgets-7[${PYTHON_USEDEP}]
+   dev-python/flaky[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   mkdir -p share/templates/classic/static || die
+   # tries to refetch stuff even if it's already present
+   sed -e 's:css = .*:raise PermissionError("You shall not fetch!"):' \
+   -i hatch_build.py || die
+   distutils-r1_src_prepare
+}
+
+src_test() {
+   virtx distutils-r1_src_test
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
tests/test_nbconvertapp.py::TestNbConvertApp::test_convert_full_qualified_name
+   
tests/test_nbconvertapp.py::TestNbConvertApp::test_post_processor
+   # crazy qtweb* stuff, perhaps permissions
+   tests/exporters/test_qtpdf.py::TestQtPDFExporter::test_export
+   tests/exporters/test_qtpng.py::TestQtPNGExporter::test_export
+   )
+
+   # virtx implies nonfatal, make it explicit to avoid confusion
+   nonfatal epytest -n "$(makeopts_jobs)" || die
+}
+
+pkg_postinst() {
+   if ! has_version virtual/pandoc; then
+   einfo "Pandoc is required for converting to formats other than 
Python,"
+   einfo "HTML, and Markdown. If you need this functionality, 
install"
+   einfo "app-text/pandoc or app-text/pandoc-bin."
+   fi
+}



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

2023-10-04 Thread Michał Górny
commit: b63c5e14366bce130104fbe039fbc12260a22aba
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:54:45 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:54:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b63c5e14

dev-python/nose2: Bump to 0.14.0

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

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

diff --git a/dev-python/nose2/Manifest b/dev-python/nose2/Manifest
index 66482a47c025..7033bfa282c5 100644
--- a/dev-python/nose2/Manifest
+++ b/dev-python/nose2/Manifest
@@ -1 +1,2 @@
 DIST nose2-0.13.0.gh.tar.gz 159435 BLAKE2B 
33a0d395045933c41cd22c8c30a933fb0fc14a21abf5aa4af459687e28126b89f5aad4e57aa4b06a303c50581e785f38708c0071e9cfe37c609046310540c595
 SHA512 
d2f16eddab75cecd864005eee3d29159e2c83d843c79df73f65d6dfacab7c195ae9b5e6d059848689d6b71da89035df8eb73d277560c1967d732c1522b54bfc5
+DIST nose2-0.14.0.gh.tar.gz 159460 BLAKE2B 
c72f939f597eead3a5d8be995fc4ae1988a0c76f5599dc9e040780520055aa1002d2d93f35527e56f90609d2f4ef560161bbf695bb3751cac71007dfbd06c522
 SHA512 
ed6b245bc57b63b011883f42dbda8b2797504afa02a102c43f4e7d3c6cbfcf7e8babca23f9341c7681b75dae12c2d269ea65a583c18d4d15b999df081fc0247b

diff --git a/dev-python/nose2/nose2-0.14.0.ebuild 
b/dev-python/nose2/nose2-0.14.0.ebuild
new file mode 100644
index ..19ec968fbda6
--- /dev/null
+++ b/dev-python/nose2/nose2-0.14.0.ebuild
@@ -0,0 +1,35 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Unittest with plugins"
+HOMEPAGE="
+   https://github.com/nose-devs/nose2/
+   https://pypi.org/project/nose2/
+"
+SRC_URI="
+   https://github.com/nose-devs/${PN}/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/coverage-4.4.1[${PYTHON_USEDEP}]
+"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx-rtd-theme \
+   dev-python/sphinx-issues
+
+python_test() {
+   "${EPYTHON}" -m nose2.__main__ -vv || die "tests failed under 
${EPYTHON}"
+}



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

2023-10-04 Thread Michał Górny
commit: ee262039c41e866440503941a03e87e859548c45
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:56:03 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:56:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ee262039

dev-python/sqlglot: Bump to 18.11.3

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

 dev-python/sqlglot/Manifest   |  1 +
 dev-python/sqlglot/sqlglot-18.11.3.ebuild | 36 +++
 2 files changed, 37 insertions(+)

diff --git a/dev-python/sqlglot/Manifest b/dev-python/sqlglot/Manifest
index 1e30672c6c8d..9804c2a4ddf6 100644
--- a/dev-python/sqlglot/Manifest
+++ b/dev-python/sqlglot/Manifest
@@ -1,4 +1,5 @@
 DIST sqlglot-18.10.1.tar.gz 8803525 BLAKE2B 
4e500eb9239fc5a3169a8f00aa022ff579f750c5c4c13e0906a4a6749216051a8b1f69d83b1d5f1ab118abb20f79b83f7881c5cef74d8d8a1066be1fcc1e588f
 SHA512 
09ae7bb28cedd6d9c267694dbc38dcea75a860fb54e60d412f78a36629abba70e1be42683b220eec918f9f59782ce014625e1e7b15d17bc57dcf3658d49b95b7
 DIST sqlglot-18.11.2.tar.gz 8833005 BLAKE2B 
eee98c392bd40cc552cdb09a6d4e60ff21d0f75c59d2961994409de7ac44d702c28aa01472e4406dbb6c8ac4d3496e71fc4ac2bea5e82c48d47cdd98111d5e79
 SHA512 
855686bd8bdaba68f564dbff0005c0362c83b146fd5d6da3a3d948657384201d2fe825a758f960650f540dcaef5c073197fdfb34fe788331d20bcaf44f03a10a
+DIST sqlglot-18.11.3.tar.gz 8835268 BLAKE2B 
040cd5cc449ff57e6107cf23a4973df622754300e4a8010f43e85de0394dc79c4d5c12c80304f9ac3519515702d8c753e59449fd2f96d9cab9e10d926b9f9980
 SHA512 
948bea3055e05e843aa9b8c9ea83c8435256bd645e02ae3fc0a3de987852c6e96fadf0e5b914ddac10d12ece3b7dc982ef9467564666eac14b07baf53838339a
 DIST sqlglot-18.8.0.tar.gz 8764753 BLAKE2B 
f1a01a1dc939a53476d396c66e74b1ec0550f557ef2eac1bec5001229964e2838655d361612b20527fae0f8112ccc940295cd0d92e83d5ba1f272f4d9372374b
 SHA512 
3e98ff8ad4e6061c41d90b33c7982b46b8e06680d14e989923077d61ac93d390df64df6ff182a1c87911979dd84ac493275bbc091bcdcc9a1dfce2a4091c7fa7
 DIST sqlglot-18.9.0.tar.gz 8790638 BLAKE2B 
c951ee964b888dadaa3fd974bad89a689e9be9e5d17f42e5387c8c97152604205df7871294cb249ce9a0f6ed6a66fb41aba0f6596851e96252444c06908b91f1
 SHA512 
1e24d7936e94ced97ccc290634392434c064732017fa012b270632336663faa2315658e3dfc9d3bbd94648220f412c91cb9d0d4b97b3f26a21fa2129f4fce84a

diff --git a/dev-python/sqlglot/sqlglot-18.11.3.ebuild 
b/dev-python/sqlglot/sqlglot-18.11.3.ebuild
new file mode 100644
index ..368b77416b42
--- /dev/null
+++ b/dev-python/sqlglot/sqlglot-18.11.3.ebuild
@@ -0,0 +1,36 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit distutils-r1 pypi optfeature
+
+DESCRIPTION="An easily customizable SQL parser and transpiler"
+HOMEPAGE="
+   https://sqlglot.com/
+   https://github.com/tobymao/sqlglot/
+   https://pypi.org/project/sqlglot/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+EPYTEST_IGNORE=(
+   # Tests require pyspark or duckdb which aren't in the tree.
+   # Pandas would be a requirement normally, but it gets ignored by proxy.
+   "tests/dataframe/integration/test_dataframe.py"
+   "tests/dataframe/integration/test_grouped_data.py"
+   "tests/dataframe/integration/test_session.py"
+   "tests/test_executor.py"
+   "tests/test_optimizer.py"
+)
+
+distutils_enable_tests pytest
+
+pkg_postinst() {
+   optfeature "simplifying timedelta expressions" 
dev-python/python-dateutil
+}



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

2023-10-04 Thread Michał Górny
commit: ce7f9867383a87bfe82e348a185690cf817e314b
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:09:40 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:49:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ce7f9867

app-admin/awscli: Bump to 1.29.60

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.29.60.ebuild | 85 ++
 2 files changed, 86 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 4a197e84bcb0..76b88ca1d81b 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -6,3 +6,4 @@ DIST aws-cli-1.29.56.gh.tar.gz 2554744 BLAKE2B 
ed08837a56f8bf1f58dbd35a08aa79333
 DIST aws-cli-1.29.57.gh.tar.gz 2556732 BLAKE2B 
8bbd17041c28e18f1b94421e624e3e7209a751bcd5508b75ff5473aba814e00453159151ddbc1daca5013d06cf418384af1703a34ddf9ecb7b6dbdfe5b91c3c9
 SHA512 
4cbc7df76930ce5626b45a100e1fe62695d470f02af025e483eb161f92828d2d535e91b3200f9c55dc50f30955b88e5f74e015e229649e2debac0acb2da5345b
 DIST aws-cli-1.29.58.gh.tar.gz 2557504 BLAKE2B 
3325dc80048feda09ebaa096b3c7be6b3da54991bf31d581a1f004844a7dd041e233d101f9f23bcfc977c02c5ed07ed08ee912a3b32b96292f68af507bec92af
 SHA512 
5a84840be3e480651860962f8b9c6f9bf23bdef68bb521af840f4609aa4b577f43219f07e6c3440b0e25a9263359b342caec877696767a51daba6397f959aa7b
 DIST aws-cli-1.29.59.gh.tar.gz 2558295 BLAKE2B 
16d38585064cd75b1c2e1e804bc2fa4224634032b2eb905bb55f64be53b6737748ce688349ee51f54bedf73c3d2f50da92c9465fc2604fc288b6c07613ed3fe3
 SHA512 
7f7c850211ae172387809a04aeecafc250f31b513bc35028fb5ca6425190524071c51fc722962e1a069282a6281afb9baed0f5b5c2e66534c362e6947bf3b07e
+DIST aws-cli-1.29.60.gh.tar.gz 2559662 BLAKE2B 
3f968c51f3bdb5784ecc0a8981c669a730d96cddb0dc9a2c7bb091bb1fb7b874999d29a6259a017d36b6deeb117962816b69609958d97ec313d12bd675b30746
 SHA512 
80c265e95fb04716160e3181faee1e71b51238c180fd208e5982ccaf191ab9a1d671a104bc546c4d678f2aa4d309734e2a36b5625e51bf548195ecb18883deb6

diff --git a/app-admin/awscli/awscli-1.29.60.ebuild 
b/app-admin/awscli/awscli-1.29.60.ebuild
new file mode 100644
index ..941051349113
--- /dev/null
+++ b/app-admin/awscli/awscli-1.29.60.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+inherit bash-completion-r1 distutils-r1 multiprocessing
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+   https://github.com/aws/aws-cli/
+   https://pypi.org/project/awscli/
+"
+SRC_URI="
+   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.7.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   !app-admin/awscli-bin
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # broken xdist (signal() works only in main thread)
+   
tests/functional/ecs/test_execute_command.py::TestExecuteCommand::test_execute_command_success
+   
tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking
+   
tests/unit/customizations/codeartifact/test_adapter_login.py::TestDotNetLogin::test_login_dotnet_sources_listed_with_backtracking_windows
+   
tests/unit/customizations/codeartifact/test_adapter_login.py::TestNuGetLogin::test_login_nuget_sources_listed_with_backtracking
+   
tests/unit/customizations/ecs/test_executecommand_startsession.py::TestExecuteCommand::test_execute_command_success
+   tests/unit/test_compat.py::TestIgnoreUserSignals
+   tests/unit/test_help.py::TestHelpPager::test_can_handle_ctrl_c
+   

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

2023-10-04 Thread Michał Górny
commit: a30f77ea7d5ee59170b998fd6e728e426d1cb251
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:09:27 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:49:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a30f77ea

dev-python/boto3: Bump to 1.28.60

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

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

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 18ff4c97178b..0779b1df91c9 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -6,3 +6,4 @@ DIST boto3-1.28.56.gh.tar.gz 704679 BLAKE2B 
b7413df6f6cfe9b0b604ac44888b4141b67d
 DIST boto3-1.28.57.gh.tar.gz 705839 BLAKE2B 
5d536c8465de64b7a0dfff909325d719d6d36f0bf531b14211dd45f4539170e8b0c78ae1ba111028d6273d6453f4087b2de7a7b62ad6b1da115281b87d99b248
 SHA512 
b5277a0c03a57147e9d0cf05800b1f30059151dc019045dbaa91a36f6cd0c08b21bd4dad25d4359d594379f84b8f862e1dde306382a3cdd6070eaa300dcfd23b
 DIST boto3-1.28.58.gh.tar.gz 706435 BLAKE2B 
18bd0fe690a004070e7f25207710b02b6d943b913849db32970dc998ff0e0ba51cb294111ac13fe472760966fc66594893a89ff3e03253d99048dbe9dee3a230
 SHA512 
283b4908f6774f4c63e206ea3552dbbb34bf40159c2a877a7f54816bc3334151d99f9d6aeccca918b6e91ee20d021c6628afe822f008e773da097a4c7cbfb4a0
 DIST boto3-1.28.59.gh.tar.gz 710405 BLAKE2B 
f5eefd333ef17cfe388330f656716548bfa85c511ed39d193808e3d6d8fa028eeb9737882a56c36d8ea4ada3f74f94a0ac6f429a3d707de351d6675dbe709ceb
 SHA512 
5976c38cb5ee528bb2410d84c4320e39a39b5c43a67d3c2cc64f9d2ff89b3283398bbfe48c11fbeb41fd8f38801084d3a44d254c73b3137d434dfc24164335a3
+DIST boto3-1.28.60.gh.tar.gz 710868 BLAKE2B 
fc743b242ab49aab2f1c8483e2d44112372422755cf8a8d9d52c87c40d19f36ca9a0dbe2c26cd05445eeb5fff84fddafaba83bf30529c7653a557e6ec26e8497
 SHA512 
352a53843be76833556687e92645937858ce29750e29d4fe805b669465be4f3f997124e706a11c14e46342a2ac03ff4d503ff052d8472a9c633f9f5a8261d4c3

diff --git a/dev-python/boto3/boto3-1.28.60.ebuild 
b/dev-python/boto3/boto3-1.28.60.ebuild
new file mode 100644
index ..a37cc38af2f3
--- /dev/null
+++ b/dev-python/boto3/boto3-1.28.60.ebuild
@@ -0,0 +1,68 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..12} )
+
+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.7.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   local -x PYTEST_DISABLE_PLUGIN_AUTOLOAD=1
+   epytest tests/{functional,unit} \
+   -p xdist -n "$(makeopts_jobs)" --dist=worksteal
+}



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

2023-10-04 Thread Michał Górny
commit: feed35a9a9efa6d2463c618ef733111f9afdbdd8
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Oct  5 02:09:20 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Oct  5 02:49:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=feed35a9

dev-python/botocore: Bump to 1.31.60

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

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

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 2c41c345bf81..1746a71e1194 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -6,3 +6,4 @@ DIST botocore-1.31.56.gh.tar.gz 11885802 BLAKE2B 
4fd386fcc987672df88ffec5265c1fd
 DIST botocore-1.31.57.gh.tar.gz 11899280 BLAKE2B 
047cba5850b024dd4070346eb2c635696f9684a38ea458357c934295e86d33b65e3b9f8e98e5fa96d2f0ba18c68bfc970c1fe7ad13bbfc0e83ede4ae4b6dbb88
 SHA512 
512bfd31a3534213977f6d05cf8603222e9517cc0d95cdf0fa3c9f9565f0f08cb7e646830a5d5093df7ca5b84c82db2887648e7b7cf47411486c664c730963d9
 DIST botocore-1.31.58.gh.tar.gz 11900019 BLAKE2B 
8b78876c5ca816b1aa71fb32dc261fe1a8df9af4d6ded7ebe7a5472ae4673e38bc5486dcb01c718f663ddebf897ea57da591e16060816063d25f1c4afe9cecad
 SHA512 
0401181971ccb96431667ef5280cb60157691af0e26628f0f257f131c792f02379f710bfb00af4be29183b87873bf9072f7cab45e8b5035894b8914c3824f3fe
 DIST botocore-1.31.59.gh.tar.gz 11910861 BLAKE2B 
8010fb8d3cacf5fd21a9377496939868dbd9a4c0a791bcaa87559f4c4c152f7364685f3cd7d3fd4ff8dce0ee7c7b1a69b2901ae13de78a608af4c63457b53789
 SHA512 
9c6758f887753a46ffa849c2aa32564d48909de9a6ffb78881739443087be67fa82955c32df98367331318ec061fe7b7e4d8d3a1538ac29b420145c1c5de0b7b
+DIST botocore-1.31.60.gh.tar.gz 11951233 BLAKE2B 
218aa6efe1dafb465b2c1b2b91127cd2294929d2890e2c9b8e255cddb4b41184f92ea2468546646163e643b9ef6ed79e63a39220ae32cb375689bb43cbbf0129
 SHA512 
8d6c06a53de95a03473ec098bb07f977c710ba2c3f9d9b6faf27b1d206da7ef5be68c8b1947f92107f0ec5ade5d15facfd12649553302c8a51914d058393a2eb

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



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

2023-10-04 Thread Matthew Thode
commit: 9ff0d60ba21ca9ed67f7f92a807c2efe59dbf573
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Oct  5 02:05:37 2023 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Oct  5 02:09:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ff0d60b

app-crypt/acme: add 2.7.0

Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/acme/Manifest  |  1 +
 app-crypt/acme/acme-2.7.0.ebuild | 60 
 2 files changed, 61 insertions(+)

diff --git a/app-crypt/acme/Manifest b/app-crypt/acme/Manifest
index 6bc3eac1503d..41b4e913854e 100644
--- a/app-crypt/acme/Manifest
+++ b/app-crypt/acme/Manifest
@@ -1 +1,2 @@
 DIST certbot-2.6.0.gh.tar.gz 1336339 BLAKE2B 
0c0575ad553ebe0f3ab56da750572bca46b30d034033e43c30c3793c114050ad824a277eab0be5a47326ea099e58e9a421448b53fc1b9173afae9a0ec308ac62
 SHA512 
d694156886484511f5a38fb5e40f98b2e2dbe4bc5110c95b2084ec03b39cb0eb9bbc623c7bca4a81054e980c8dbac752949042391813298a27be7e70410882e3
+DIST certbot-2.7.0.gh.tar.gz 1336481 BLAKE2B 
224f26819ee55b99a26540e7f56a8466c806d08149cce511d28d77ce9f5fb8073ec65e6cfa3e0c168ca84ddcbf85478ff335b84feaadee66db6c5a811be202be
 SHA512 
1e1defcd143f804a36b50e3104d239bf20873545474ceb654269a5879e15cfbb76a18bd569f5e6e12de1036779e72c74d9896707daabc314fc5d67acc1c5180d

diff --git a/app-crypt/acme/acme-2.7.0.ebuild b/app-crypt/acme/acme-2.7.0.ebuild
new file mode 100644
index ..88e179e64295
--- /dev/null
+++ b/app-crypt/acme/acme-2.7.0.ebuild
@@ -0,0 +1,60 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+PARENT_PN="certbot"
+PARENT_P="${PARENT_PN}-${PV}"
+
+if [[ "${PV}" == * ]]; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   EGIT_SUBMODULES=()
+   EGIT_CHECKOUT_DIR="${WORKDIR}/${PARENT_P}"
+else
+   SRC_URI="
+   https://github.com/certbot/certbot/archive/v${PV}.tar.gz
+   -> ${PARENT_P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="An implementation of the ACME protocol"
+HOMEPAGE="
+   https://github.com/certbot/certbot
+   https://letsencrypt.org/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+S="${WORKDIR}/${PARENT_P}/${PN}"
+
+BDEPEND="
+   test? (
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+   )
+"
+# The requirement is really 17.5.0 but easier to require latest stable >= 
23.1.1
+# to avoid broken 23.1.0.
+RDEPEND="
+   dev-python/chardet[${PYTHON_USEDEP}]
+   >=dev-python/cryptography-3.2.1[${PYTHON_USEDEP}]
+   >=dev-python/josepy-1.13.0[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-23.1.1[${PYTHON_USEDEP}]
+   dev-python/pyrfc3339[${PYTHON_USEDEP}]
+   >=dev-python/pytz-2019.3[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.20.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-toolbelt-0.3.0[${PYTHON_USEDEP}]
+"
+
+distutils_enable_sphinx docs dev-python/sphinx-rtd-theme
+distutils_enable_tests pytest



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

2023-10-04 Thread Matthew Thode
commit: 67617ecff8ff7cf217856deb773e5d1b57b3606a
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Oct  5 02:08:27 2023 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Oct  5 02:09:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67617ecf

app-crypt/certbot-apache: add 2.7.0

Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-apache/Manifest  |  1 +
 .../certbot-apache/certbot-apache-2.7.0.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/app-crypt/certbot-apache/Manifest 
b/app-crypt/certbot-apache/Manifest
index 6bc3eac1503d..41b4e913854e 100644
--- a/app-crypt/certbot-apache/Manifest
+++ b/app-crypt/certbot-apache/Manifest
@@ -1 +1,2 @@
 DIST certbot-2.6.0.gh.tar.gz 1336339 BLAKE2B 
0c0575ad553ebe0f3ab56da750572bca46b30d034033e43c30c3793c114050ad824a277eab0be5a47326ea099e58e9a421448b53fc1b9173afae9a0ec308ac62
 SHA512 
d694156886484511f5a38fb5e40f98b2e2dbe4bc5110c95b2084ec03b39cb0eb9bbc623c7bca4a81054e980c8dbac752949042391813298a27be7e70410882e3
+DIST certbot-2.7.0.gh.tar.gz 1336481 BLAKE2B 
224f26819ee55b99a26540e7f56a8466c806d08149cce511d28d77ce9f5fb8073ec65e6cfa3e0c168ca84ddcbf85478ff335b84feaadee66db6c5a811be202be
 SHA512 
1e1defcd143f804a36b50e3104d239bf20873545474ceb654269a5879e15cfbb76a18bd569f5e6e12de1036779e72c74d9896707daabc314fc5d67acc1c5180d

diff --git a/app-crypt/certbot-apache/certbot-apache-2.7.0.ebuild 
b/app-crypt/certbot-apache/certbot-apache-2.7.0.ebuild
new file mode 100644
index ..4d1707d36f00
--- /dev/null
+++ b/app-crypt/certbot-apache/certbot-apache-2.7.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+PARENT_PN="${PN%-apache}"
+PARENT_P="${PARENT_PN}-${PV}"
+
+if [[ "${PV}" == * ]]; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   EGIT_SUBMODULES=()
+   EGIT_CHECKOUT_DIR="${WORKDIR}/${PARENT_P}"
+else
+   SRC_URI="
+   https://github.com/certbot/certbot/archive/v${PV}.tar.gz
+   -> ${PARENT_P}.gh.tar.gz
+   "
+   # Only for amd64, arm64 and x86 because of dev-python/python-augeas
+   KEYWORDS="~amd64 ~arm64 ~x86"
+fi
+
+DESCRIPTION="Apache plugin for Certbot (Let’s Encrypt client)"
+HOMEPAGE="
+   https://github.com/certbot/certbot
+   https://letsencrypt.org/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+S="${WORKDIR}/${PARENT_P}/${PN}"
+
+BDEPEND="
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+RDEPEND="
+   >=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
+   dev-python/python-augeas[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2023-10-04 Thread Matthew Thode
commit: 5d8e225a8574bd5ff779c01e77c3d8da31f26428
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Oct  5 02:09:01 2023 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Oct  5 02:09:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d8e225a

app-crypt/certbot-nginx: add 2.7.0

Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot-nginx/Manifest   |  1 +
 app-crypt/certbot-nginx/certbot-nginx-2.7.0.ebuild | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/app-crypt/certbot-nginx/Manifest b/app-crypt/certbot-nginx/Manifest
index 6bc3eac1503d..41b4e913854e 100644
--- a/app-crypt/certbot-nginx/Manifest
+++ b/app-crypt/certbot-nginx/Manifest
@@ -1 +1,2 @@
 DIST certbot-2.6.0.gh.tar.gz 1336339 BLAKE2B 
0c0575ad553ebe0f3ab56da750572bca46b30d034033e43c30c3793c114050ad824a277eab0be5a47326ea099e58e9a421448b53fc1b9173afae9a0ec308ac62
 SHA512 
d694156886484511f5a38fb5e40f98b2e2dbe4bc5110c95b2084ec03b39cb0eb9bbc623c7bca4a81054e980c8dbac752949042391813298a27be7e70410882e3
+DIST certbot-2.7.0.gh.tar.gz 1336481 BLAKE2B 
224f26819ee55b99a26540e7f56a8466c806d08149cce511d28d77ce9f5fb8073ec65e6cfa3e0c168ca84ddcbf85478ff335b84feaadee66db6c5a811be202be
 SHA512 
1e1defcd143f804a36b50e3104d239bf20873545474ceb654269a5879e15cfbb76a18bd569f5e6e12de1036779e72c74d9896707daabc314fc5d67acc1c5180d

diff --git a/app-crypt/certbot-nginx/certbot-nginx-2.7.0.ebuild 
b/app-crypt/certbot-nginx/certbot-nginx-2.7.0.ebuild
new file mode 100644
index ..681a2d89b66e
--- /dev/null
+++ b/app-crypt/certbot-nginx/certbot-nginx-2.7.0.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1
+
+PARENT_PN="${PN%-nginx}"
+PARENT_P="${PARENT_PN}-${PV}"
+
+if [[ "${PV}" == * ]]; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://github.com/certbot/certbot.git;
+   EGIT_SUBMODULES=()
+   EGIT_CHECKOUT_DIR="${WORKDIR}/${PARENT_P}"
+else
+   SRC_URI="
+   https://github.com/certbot/certbot/archive/v${PV}.tar.gz
+   -> ${PARENT_P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+fi
+
+DESCRIPTION="Nginx plugin for Certbot (Let’s Encrypt client)"
+HOMEPAGE="
+   https://github.com/certbot/certbot
+   https://letsencrypt.org/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+
+S="${WORKDIR}/${PARENT_P}/${PN}"
+
+BDEPEND="
+   test? ( dev-python/pytest[${PYTHON_USEDEP}] )
+"
+
+# The requirement is really 17.5.0 but easier to require latest stable >= 
23.1.1
+# to avoid broken 23.1.0.
+RDEPEND="
+   >=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
+   >=app-crypt/certbot-${PV}[${PYTHON_USEDEP}]
+   >=dev-python/pyopenssl-23.1.1[${PYTHON_USEDEP}]
+   >=dev-python/pyparsing-2.2.1[${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest



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

2023-10-04 Thread Matthew Thode
commit: 19023be5cea10aefa96c55ec826e035075cf4e35
Author: Matthew Thode  gentoo  org>
AuthorDate: Thu Oct  5 02:07:28 2023 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Thu Oct  5 02:09:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19023be5

app-crypt/certbot: add 2.7.0

Signed-off-by: Matthew Thode  gentoo.org>

 app-crypt/certbot/Manifest  | 1 +
 app-crypt/certbot/{certbot-.ebuild => certbot-2.7.0.ebuild} | 2 +-
 app-crypt/certbot/certbot-.ebuild   | 2 +-
 3 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/app-crypt/certbot/Manifest b/app-crypt/certbot/Manifest
index 6bc3eac1503d..41b4e913854e 100644
--- a/app-crypt/certbot/Manifest
+++ b/app-crypt/certbot/Manifest
@@ -1 +1,2 @@
 DIST certbot-2.6.0.gh.tar.gz 1336339 BLAKE2B 
0c0575ad553ebe0f3ab56da750572bca46b30d034033e43c30c3793c114050ad824a277eab0be5a47326ea099e58e9a421448b53fc1b9173afae9a0ec308ac62
 SHA512 
d694156886484511f5a38fb5e40f98b2e2dbe4bc5110c95b2084ec03b39cb0eb9bbc623c7bca4a81054e980c8dbac752949042391813298a27be7e70410882e3
+DIST certbot-2.7.0.gh.tar.gz 1336481 BLAKE2B 
224f26819ee55b99a26540e7f56a8466c806d08149cce511d28d77ce9f5fb8073ec65e6cfa3e0c168ca84ddcbf85478ff335b84feaadee66db6c5a811be202be
 SHA512 
1e1defcd143f804a36b50e3104d239bf20873545474ceb654269a5879e15cfbb76a18bd569f5e6e12de1036779e72c74d9896707daabc314fc5d67acc1c5180d

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-2.7.0.ebuild
similarity index 96%
copy from app-crypt/certbot/certbot-.ebuild
copy to app-crypt/certbot/certbot-2.7.0.ebuild
index 31a618c23d65..28d628bba116 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-2.7.0.ebuild
@@ -47,7 +47,7 @@ BDEPEND="
 # See certbot/setup.py for acme >= dep
 RDEPEND="
>=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
-   >=dev-python/ConfigArgParse-0.9.3[${PYTHON_USEDEP}]
+   >=dev-python/ConfigArgParse-1.5.3[${PYTHON_USEDEP}]
>=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
>=dev-python/cryptography-3.2.1[${PYTHON_USEDEP}]
>=dev-python/distro-1.0.1[${PYTHON_USEDEP}]

diff --git a/app-crypt/certbot/certbot-.ebuild 
b/app-crypt/certbot/certbot-.ebuild
index 31a618c23d65..28d628bba116 100644
--- a/app-crypt/certbot/certbot-.ebuild
+++ b/app-crypt/certbot/certbot-.ebuild
@@ -47,7 +47,7 @@ BDEPEND="
 # See certbot/setup.py for acme >= dep
 RDEPEND="
>=app-crypt/acme-${PV}[${PYTHON_USEDEP}]
-   >=dev-python/ConfigArgParse-0.9.3[${PYTHON_USEDEP}]
+   >=dev-python/ConfigArgParse-1.5.3[${PYTHON_USEDEP}]
>=dev-python/configobj-5.0.6[${PYTHON_USEDEP}]
>=dev-python/cryptography-3.2.1[${PYTHON_USEDEP}]
>=dev-python/distro-1.0.1[${PYTHON_USEDEP}]



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

2023-10-04 Thread Matt Turner
commit: 4b449bf51218864f2a35bd30740a2af0b833c775
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Oct  5 01:09:05 2023 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Oct  5 01:09:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b449bf5

x11-libs/libXrandr: Version bump to 1.5.4

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

 x11-libs/libXrandr/Manifest   |  1 +
 x11-libs/libXrandr/libXrandr-1.5.4.ebuild | 20 
 2 files changed, 21 insertions(+)

diff --git a/x11-libs/libXrandr/Manifest b/x11-libs/libXrandr/Manifest
index f5e74930cb10..d74c0c6c9276 100644
--- a/x11-libs/libXrandr/Manifest
+++ b/x11-libs/libXrandr/Manifest
@@ -1 +1,2 @@
 DIST libXrandr-1.5.3.tar.xz 282316 BLAKE2B 
ec3c9cd4dfaa68332c947a46cf47651c60f97d26522e9a63c5a857c0f48f06c305ed4b2633ab0b8190f9dd74b367227fa869b42031a2d1986bdfd79545d1d9ea
 SHA512 
0c385fc304a872048ffca5cfb8789dfe3132e3126894d54b2fe642dff19d286e7ade1d2f6da894e03788df9c5cf31427c674e987143037b7d385b19285590edb
+DIST libXrandr-1.5.4.tar.xz 282928 BLAKE2B 
683205e5d2727dca1319c096ce035469bc9c70844f57750df465d19fad31c3aadd3535860f5c02aebed324b41ffe4471c0389128fc3d15ef560956bc196ff489
 SHA512 
f7c0b083943e11b4cc3c97e10e2cbbc3920fe0c9c5031ef86fca2eb5df413d767caf53dca266abf65395eb10e55354c8fe59ed6b3265402ffccb919a813bc781

diff --git a/x11-libs/libXrandr/libXrandr-1.5.4.ebuild 
b/x11-libs/libXrandr/libXrandr-1.5.4.ebuild
new file mode 100644
index ..6ee8809f2959
--- /dev/null
+++ b/x11-libs/libXrandr/libXrandr-1.5.4.ebuild
@@ -0,0 +1,20 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+XORG_MULTILIB=yes
+XORG_TARBALL_SUFFIX="xz"
+inherit xorg-3
+
+DESCRIPTION="X.Org Xrandr library"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~x64-solaris"
+IUSE="doc"
+
+RDEPEND="
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}]"
+DEPEND="${RDEPEND}
+   x11-base/xorg-proto"



[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/csharp-gentoodotnetinfo/

2023-10-04 Thread Maciej Barć
commit: 0f38e9fee9a163e9af53ae08414314a3ea0dd02f
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Oct  4 22:43:54 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Oct  4 23:32:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f38e9fe

dev-dotnet/csharp-gentoodotnetinfo: bump to 1.1.1

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

 dev-dotnet/csharp-gentoodotnetinfo/Manifest|  2 +
 .../csharp-gentoodotnetinfo-1.1.1.ebuild   | 51 ++
 2 files changed, 53 insertions(+)

diff --git a/dev-dotnet/csharp-gentoodotnetinfo/Manifest 
b/dev-dotnet/csharp-gentoodotnetinfo/Manifest
index 187c2595c189..34fdff466853 100644
--- a/dev-dotnet/csharp-gentoodotnetinfo/Manifest
+++ b/dev-dotnet/csharp-gentoodotnetinfo/Manifest
@@ -1,2 +1,4 @@
 DIST csharp-gentoodotnetinfo-1.0.0.tar.bz2 11273 BLAKE2B 
dc813e3af220b8a348716e3fd95640cd284083a463b007e5943b0f335161d3491637e47f894f276dd45b8dae74b2d057874425beef1bf3463b50eee9e480b495
 SHA512 
3900dd435cc122e2c368c4040413f64f5f232cb374d672f843b73c41a9a1aef2903db53f5688c223f478a521908001c025d74fbf1d59bb7608be26cf780eaf38
+DIST csharp-gentoodotnetinfo-1.1.1.tar.bz2 19051 BLAKE2B 
e55042c43c956d7a7cef999f92ce131aaeccc10db6a248d154aabd01f9072d71baed29f1ccfdd8c3f96d094f3eab491e4a9e04e1239ae23ba22695363cd35e6a
 SHA512 
372a61251a3a8f0df2cf2b5dc83fc6348b7551c3101646ad10086cd324363e63589d056d7f260058c5ab2f01ba759d231b078c923a592f7d11a7b81b6004fcd1
+DIST microsoft.dotnet.platformabstractions.3.1.6.nupkg 72146 BLAKE2B 
08d852b5e6558b499f2d780284aa747e5cf39886d86fa378128fae9f71741bd57c5bc75c0077948f193b7e8ea03a520d8ef3bd3b4fc80779adb4a84a4b44fe8c
 SHA512 
55b87f544874686bed96889953b7e99e43426b79b0fac31cc452e0f4a27ca5cc08522c0ac967bf9df649f7c04137a5e2553d134ad79d5c1e69578367c2b4b4c6
 DIST system.commandline.2.0.0-beta4.22272.1.nupkg 616636 BLAKE2B 
5252560598c4cd67348520cea086c37b4151b984a61238de1984838975340247b16050113422b1765931bdfc1dee38e226789b6427e56ab7c3a36bf07d0bcc20
 SHA512 
979a7e66ba29e17bc5bec42e926ed15362e23ae403e498c955e09dffc4d3baa14777a06f95e25d591fc9757a0eaa18deb9e4662a1ca1663fa300f509a4a0383c

diff --git 
a/dev-dotnet/csharp-gentoodotnetinfo/csharp-gentoodotnetinfo-1.1.1.ebuild 
b/dev-dotnet/csharp-gentoodotnetinfo/csharp-gentoodotnetinfo-1.1.1.ebuild
new file mode 100644
index ..21cb5a004b20
--- /dev/null
+++ b/dev-dotnet/csharp-gentoodotnetinfo/csharp-gentoodotnetinfo-1.1.1.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DOTNET_PKG_COMPAT=7.0
+NUGETS="
+microsoft.dotnet.platformabstractions@3.1.6
+system.commandline@2.0.0-beta4.22272.1
+"
+
+inherit dotnet-pkg
+
+DESCRIPTION=".NET information tool for Gentoo"
+HOMEPAGE="https://gitlab.gentoo.org/dotnet/csharp-gentoodotnetinfo/;
+
+if [[ "${PV}" == ** ]] ; then
+   inherit git-r3
+
+   EGIT_REPO_URI="https://gitlab.gentoo.org/dotnet/${PN}.git;
+else
+   
SRC_URI="https://gitlab.gentoo.org/dotnet/${PN}/-/archive/${PV}/${P}.tar.bz2;
+
+   KEYWORDS="~amd64 ~arm ~arm64"
+fi
+
+SRC_URI+=" ${NUGET_URIS} "
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+DOTNET_PKG_PROJECTS=(
+   
Source/v1/gentoo-dotnet-info-app/GentooDotnetInfo/GentooDotnetInfo.csproj
+)
+
+src_unpack() {
+   dotnet-pkg_src_unpack
+
+   if [[ -n ${EGIT_REPO_URI} ]] ; then
+   git-r3_src_unpack
+   fi
+}
+
+src_install() {
+   local launcher_dll="/usr/share/${P}/GentooDotnetInfo.dll"
+
+   dotnet-pkg-base_install
+   dotnet-pkg-base_dolauncher_portable "${launcher_dll}" gentoo-dotnet-info
+
+   einstalldocs
+}



[gentoo-commits] repo/gentoo:master commit in: games-util/cartridges/

2023-10-04 Thread Maciej Barć
commit: 9203c228b6ecc35c479f4a63822dddf8623fe1af
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Oct  4 21:08:16 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Oct  4 23:32:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9203c228

games-util/cartridges: drop old 2.1.1

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

 games-util/cartridges/Manifest|  1 -
 games-util/cartridges/cartridges-2.1.1.ebuild | 58 ---
 2 files changed, 59 deletions(-)

diff --git a/games-util/cartridges/Manifest b/games-util/cartridges/Manifest
index f9f50ed841e3..bc9e313eb7a5 100644
--- a/games-util/cartridges/Manifest
+++ b/games-util/cartridges/Manifest
@@ -1,3 +1,2 @@
-DIST cartridges-2.1.1.tar.gz 1337163 BLAKE2B 
6d4a67d8d6ecc035e6b3b12a7d5c9160de2af46423264c670bb7e448d00393a6dc7742ab30047eaa888689d9ad0eb5baf9657523164761cff3b71d4b23a9d551
 SHA512 
0963e2e5183a8cbb8c1de1fbbf9f67beda65eb7396aaf644fcc30ed79a3dd8136e5e78d3a5b065c9b6f2a4cba4e3c715e412f1cc651a555195d9af5cc6f1e22b
 DIST cartridges-2.2.1.tar.gz 1277149 BLAKE2B 
5295253e8347254905b7911a8fc9bab44b953dbed90a9d7211eef651317bd38e6d04a7218cb4c418a7af5223bc53789e866c688cc85239b922d54722a9c055bc
 SHA512 
f2e0ed8ef9f916cf0cdf1e1134286d1242948291b24cf6103c2171a232c97c05c3260aeb307f6cfaee6d78a473151440f2e0854bcb1ccaf1f854952b8a50a2c6
 DIST cartridges-2.3.tar.gz 1282083 BLAKE2B 
1e6ef65ba223af5b65af922c90b61b5c1bca1859b4231632b2c2996258f562719340f7cb9c6facc6f8151bac8388bcfe3c549131bee9b249d0d03310a622538b
 SHA512 
d5f2d29414d1e347e0459003890f018e585450cc3b6663e922696f04c1eff3a864364a08dfa17ea6fe4e87aa47c28485f0954a4376c1d1695039e478a7dbe7f4

diff --git a/games-util/cartridges/cartridges-2.1.1.ebuild 
b/games-util/cartridges/cartridges-2.1.1.ebuild
deleted file mode 100644
index ed5e3c551ea4..
--- a/games-util/cartridges/cartridges-2.1.1.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-
-inherit gnome2-utils meson python-single-r1 xdg
-
-DESCRIPTION="Simple game launcher written in Python using GTK4 and Libadwaita"
-HOMEPAGE="https://github.com/kra-mo/cartridges/;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/kra-mo/${PN}.git;
-else
-   SRC_URI="https://github.com/kra-mo/${PN}/archive/v${PV}.tar.gz
-   -> ${P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="GPL-3+"
-SLOT="0"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   gui-libs/gtk:4[introspection]
-   gui-libs/libadwaita:1[introspection]
-   $(python_gen_cond_dep '
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   ')
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-libs/appstream-glib
-   dev-util/blueprint-compiler
-   dev-util/desktop-file-utils
-"
-
-PATCHES=( "${FILESDIR}"/${PN}-1.5.4-dont-validate-appstream.patch )
-
-src_install() {
-   meson_src_install
-
-   python_fix_shebang "${ED}"/usr/bin
-   python_optimize "${ED}"/usr/share/cartridges/cartridges
-}
-
-pkg_postinst() {
-   gnome2_schemas_update
-   xdg_pkg_postinst
-}
-
-pkg_postrm() {
-   gnome2_schemas_update
-   xdg_pkg_postrm
-}



[gentoo-commits] repo/gentoo:master commit in: app-shells/pwsh/

2023-10-04 Thread Maciej Barć
commit: 60d1c43c01133ee1e2d2f7975563df55d2302900
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Oct  4 21:44:05 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Oct  4 23:32:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=60d1c43c

app-shells/pwsh: bump to 7.3.7

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

 app-shells/pwsh/Manifest  |   8 +
 app-shells/pwsh/pwsh-7.3.7.ebuild | 409 ++
 2 files changed, 417 insertions(+)

diff --git a/app-shells/pwsh/Manifest b/app-shells/pwsh/Manifest
index a112128adbd6..ec51f3349d5a 100644
--- a/app-shells/pwsh/Manifest
+++ b/app-shells/pwsh/Manifest
@@ -7,10 +7,12 @@ DIST microsoft.codeanalysis.analyzers.3.3.3.nupkg 022 
BLAKE2B 8704bf2c8a57bd
 DIST microsoft.codeanalysis.common.4.4.0.nupkg 4688165 BLAKE2B 
076ebf835f71b445d58ba7b7317f0787ad3ce44026779ded73dce9b3cc347a07c764bfc890d1e51cdb621e8f0d44ad986798645021e47823760aaab99e3617e9
 SHA512 
564fe62e3a4b98770b5bdcc1ca119189ba96e3c52df9c5f5d150de8b3d1bf6e058ac7a3c5cd85f6fc9db3ec91e0666d93566c763a5b2913b3c58589f557a6d29
 DIST microsoft.codeanalysis.csharp.4.4.0.nupkg 10750699 BLAKE2B 
9dc364fb0c577d3dabcc8f1637ff1ebd182842217c684aa2914bb2e62069a40ebe6bc3b331e5342d7c14bfb3336339e0e8b601b550b22f3906cd2ba10574d045
 SHA512 
fe0f852202c1934df0a5fe5aae60f303685035a93b9ea955c326dc0e53d8d1fd2469dfa813cc0a235b9668fb642a56a18b63eda6ad5fccb58a694abb5fb8953b
 DIST microsoft.codeanalysis.netanalyzers.7.0.3-preview1.23267.1.nupkg 4258949 
BLAKE2B 
4183d97a35c4a1ab1503d2920ee784bbe264285f886c58a927574413af7dd97c18691044756f8985c8f085d81469319fd306b8ed0305e00e8fe507dadf4fec06
 SHA512 
97745b4146c0fc755b6c2bf3807c4c9a0640a90e8ec6eba096ee82d36155dff5954813d1ca7fa1d5eb1969a65db8160ccb93319e1a8aa98b8307925292dd64a2
+DIST microsoft.codeanalysis.netanalyzers.7.0.4.nupkg 4258611 BLAKE2B 
510526748bf69bde6c87d6112fdd15841e16b8f419f4baf7d58c2603cacdb2d70883ef9ee068e9b37651eef0ba61b48719112ca640a040c5fa28eb43e262426f
 SHA512 
d7634922cc408bf5ae79cea31b0d54887aa71f2bfb146fa5737707312ce7278457f8b1c4c0e371cf8589f515cee66942d114831e21a180be8125dd973cc2aa6a
 DIST microsoft.codecoverage.17.3.3.nupkg 8943778 BLAKE2B 
db2047b51bf3465899f478f370f5b8ed88446dc8dbac46a306cb7dd81dc316df3fcf8d76e476e618854bf6b5507914c772d7b1abfae2527ea83967d3d8b22f20
 SHA512 
733998b098201aec1f94962790700dbca009009eb9e6d9e1247366e61d6fae38b057f676a8bedc35c03ee4760cd70269434f8ebf4759dfcc281199b9d27ddbca
 DIST microsoft.csharp.4.0.1.nupkg 462346 BLAKE2B 
209ccebc9103b803d26ea1f0232245c3cd231078b03a83a0011a2a79a1a8a324a72c5b3fda94b2686fff170932f366e165f81a36a70df590a39c45d70778e4be
 SHA512 
c0e75a9162f28ba4c4572c8fac4fd4c8c97d6d3505a37683646ba5f7e5f6ac0da69d5200d2646054de90e8e08f893a10e514591b69b8273640842b2cf90bddec
 DIST microsoft.csharp.4.3.0.nupkg 462324 BLAKE2B 
c6cbdfc136e3895429e8d941ff1fd401f2a6652249c920f98267f4c454d6dc6c148d00cc156d904019af16b6f4b3fe6c308146a08a52c477e16e54cb1d1489bc
 SHA512 
30c440b34652c8af000557a50286b75579dd5311bf5b9da24e8e572f46a311a747cd46b7e0279607010f34e2c5ee8393041b536366c0770aea8a97c101e2d91a
 DIST microsoft.csharp.4.7.0.nupkg 627100 BLAKE2B 
114a5af7151feb80785619d54caf5f928558a034254b5c2e185820a441f017705c933b0d66a31d395ce516a81f97655cfeca46e37397082b1b5d6ac6f507301a
 SHA512 
2c96988515f95714d4b83f5650f183dc6a564e0b3cf5255fa0e3ef48476debab4bde542f9f2f6c47f6620b7a71d6a515e4415e6d2e388b60817a29621d5690df
+DIST microsoft.extensions.objectpool.7.0.11.nupkg 82380 BLAKE2B 
794cc26cc0f736212d08975c7d88ade9ee587370e08b851a984dd1ad0a81d247cefe2f1cfd276a4d2e4ad7eee8b95511854d9fbbc4a8604d6ce368548c4b3304
 SHA512 
74115a70ad4713f683a784fe0b4662365d856e71e48db55e8eef5b1c611d9121df80e01e7beed8cef587781e86a033fa391530a46bfd87d06a38700acabfedfa
 DIST microsoft.extensions.objectpool.7.0.9.nupkg 82109 BLAKE2B 
eab5894da4ab77505db8c2580b6b2a3eda72903f13b6d33c042b44d0ffdf7cc1e4c340d256f4951ab44c7c1eb1966f62b1b6745fcac54a5a474da42afedd5245
 SHA512 
b5e8b122061f714e1bc9182e55dfd5844acaf646468f9fe9d4d9906f87577766332664d0fbd966a25bf937a188513f9a1e2fc287f15f8d8c40406741a019a164
 DIST microsoft.management.infrastructure.2.0.0.nupkg 92871 BLAKE2B 
4e09a785ceb108766f7753a052d6d2a3634c474cc3a3baf6b04891f8bc3f57d5cba60c06797999cecf7cbf634bf5366eab631553a33d0d9bc001ad3585278065
 SHA512 
49b35acb4eafe76d69519bb2f85d8862d18b79e1f168f964ba6669d64ef560ed75945a88ab7d30f30711b6ab3fe7459cb594da51a52feace56cb471e4d3e0af5
 DIST microsoft.management.infrastructure.runtime.unix.2.0.0.nupkg 99289 
BLAKE2B 
2ef4c83b00f3403f5ca0ad633c6ecab1aba25b95551328b220a605b3abc3308d4493100041174207fa814ba942d2e16235da5e3315c520169d6ab8a0bc453dbc
 SHA512 
6a6ac508f88a1678457a5c6100d01a97e78a199f0d616ec61f8befb4bbc43178460c026439390068ad6f8a4eeaa15e333caa99208d2f5e68a0ab93fd93f62a5f
@@ -32,6 +34,7 @@ DIST microsoft.win32.registry.5.0.0.nupkg 354731 BLAKE2B 
3e98fbda73990aa8d4a8fe5
 DIST microsoft.win32.registry.accesscontrol.7.0.0.nupkg 128615 BLAKE2B 

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

2023-10-04 Thread Maciej Barć
commit: 43e82e12b8bd940496e49b9ff4daa7a4b88fb9a5
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Oct  4 21:16:08 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Oct  4 23:32:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43e82e12

dev-lang/luau: bump to 0.597

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

 dev-lang/luau/Manifest  |  1 +
 dev-lang/luau/luau-0.597.ebuild | 36 
 2 files changed, 37 insertions(+)

diff --git a/dev-lang/luau/Manifest b/dev-lang/luau/Manifest
index f33c1723b473..b23ee1d99a25 100644
--- a/dev-lang/luau/Manifest
+++ b/dev-lang/luau/Manifest
@@ -1,3 +1,4 @@
 DIST luau-0.593.tar.gz 6053499 BLAKE2B 
5cc023f32419cfc09a7dd4f4e94e99905e8e8bab42b675cb0d4712bacd930250094441f5a7ac9fbc68b9fa6e84bb5e9585100f44ee28ef9acf0b21b42f43eed6
 SHA512 
04c2808685db42fce09defca7a4e4e30a71e6fd6c4dc9362f030648203552e7ec79bbadda76f8e89ef3b627c18b05c277d3658286fbbf2c17db574733c0f7593
 DIST luau-0.595.tar.gz 6064604 BLAKE2B 
3586b7aa90e7a365322099f4861a51b6bc089fa17aff1b81dab4456038b6d4e1ad7b61708bf23d085c1fad5ebcaa9010dff343d8e278475740c9c6d9250f6c3e
 SHA512 
47498e69ea05b79739a406ad3455b914319aefdb2595ab13e9b1a508f5b92d084f8e5eac795f1a87c49e67008d01683f817847d8b84fc2a01c23c42103840e06
 DIST luau-0.596.tar.gz 6068791 BLAKE2B 
b6f8c7e0c51486910a8e4f22f22e2da407c90eb7bf56dcbd29932ad95a82cd5c0dc66933d9132394213a9e170f0e24512879c8ca914d44fab1069e9eb398d440
 SHA512 
2ae5727206020e74f70fef8acdf2b77ff4dd7872cf2122f9a09214ced606e9df2a494d02bd7fddceb9d056bb768764d0de5b6ed0ac15ccf65cf639e644245dca
+DIST luau-0.597.tar.gz 6073080 BLAKE2B 
169d7a6e84bc5857129afb4f0f82a63f56c2579ba91a7844cba729e1eb610e00626c33f5456a6ec63891360227b569482619fc2012360267dcddd0adb26f7dc7
 SHA512 
d1eab79b64c0452ff892b52db0e6e2dea077ef036083c6f486a37cd2a0f3199570018f8755754463ce1bb92fe3d32d3464f954d0a82aa5a03b0c0b9d2e3f3744

diff --git a/dev-lang/luau/luau-0.597.ebuild b/dev-lang/luau/luau-0.597.ebuild
new file mode 100644
index ..c7bee4916d90
--- /dev/null
+++ b/dev-lang/luau/luau-0.597.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Gradually typed embeddable scripting language derived from Lua"
+HOMEPAGE="https://luau-lang.org/
+   https://github.com/Roblox/luau/;
+
+if [[ ${PV} == ** ]] ; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/Roblox/${PN}.git;
+else
+   SRC_URI="https://github.com/Roblox/${PN}/archive/${PV}.tar.gz
+   -> ${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+
+DOCS=( CONTRIBUTING.md README.md SECURITY.md )
+
+src_test() {
+   "${BUILD_DIR}"/Luau.UnitTest || die
+   "${BUILD_DIR}"/Luau.Conformance  || die
+}
+
+src_install() {
+   exeinto /usr/bin
+   doexe "${BUILD_DIR}"/luau{,-analyze,-ast,-compile,-reduce}
+
+   einstalldocs
+}



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

2023-10-04 Thread Maciej Barć
commit: 758b778893ffb112216dfbb8327d8fd79120532c
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Oct  4 21:08:47 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Oct  4 23:32:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=758b7788

dev-lang/luau: drop old 0.592

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

 dev-lang/luau/Manifest  |  1 -
 dev-lang/luau/luau-0.592.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/dev-lang/luau/Manifest b/dev-lang/luau/Manifest
index 5db997ec66d1..f33c1723b473 100644
--- a/dev-lang/luau/Manifest
+++ b/dev-lang/luau/Manifest
@@ -1,4 +1,3 @@
-DIST luau-0.592.tar.gz 6047275 BLAKE2B 
94299eabd16c7163877b4e1b4514998d3a9db06b60f8aafb368d199eb407709987d22d02ff182e66fa38983f5eb8b09d557739d98e8d8cbc406dbfe336e99cba
 SHA512 
69f4c3c82e26e42c6f2d5ce052b00f90cba10c4ebe2cea979e1e0c53463b2b22389e1a3308984c3c537c1efc1c488407a51f15fdd30301b8364645f362447b2f
 DIST luau-0.593.tar.gz 6053499 BLAKE2B 
5cc023f32419cfc09a7dd4f4e94e99905e8e8bab42b675cb0d4712bacd930250094441f5a7ac9fbc68b9fa6e84bb5e9585100f44ee28ef9acf0b21b42f43eed6
 SHA512 
04c2808685db42fce09defca7a4e4e30a71e6fd6c4dc9362f030648203552e7ec79bbadda76f8e89ef3b627c18b05c277d3658286fbbf2c17db574733c0f7593
 DIST luau-0.595.tar.gz 6064604 BLAKE2B 
3586b7aa90e7a365322099f4861a51b6bc089fa17aff1b81dab4456038b6d4e1ad7b61708bf23d085c1fad5ebcaa9010dff343d8e278475740c9c6d9250f6c3e
 SHA512 
47498e69ea05b79739a406ad3455b914319aefdb2595ab13e9b1a508f5b92d084f8e5eac795f1a87c49e67008d01683f817847d8b84fc2a01c23c42103840e06
 DIST luau-0.596.tar.gz 6068791 BLAKE2B 
b6f8c7e0c51486910a8e4f22f22e2da407c90eb7bf56dcbd29932ad95a82cd5c0dc66933d9132394213a9e170f0e24512879c8ca914d44fab1069e9eb398d440
 SHA512 
2ae5727206020e74f70fef8acdf2b77ff4dd7872cf2122f9a09214ced606e9df2a494d02bd7fddceb9d056bb768764d0de5b6ed0ac15ccf65cf639e644245dca

diff --git a/dev-lang/luau/luau-0.592.ebuild b/dev-lang/luau/luau-0.592.ebuild
deleted file mode 100644
index b15291852bc5..
--- a/dev-lang/luau/luau-0.592.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Gradually typed embeddable scripting language derived from Lua"
-HOMEPAGE="https://luau-lang.org/
-   https://github.com/Roblox/luau/;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/Roblox/${PN}.git;
-else
-   SRC_URI="https://github.com/Roblox/${PN}/archive/${PV}.tar.gz
-   -> ${P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DOCS=( CONTRIBUTING.md README.md SECURITY.md )
-
-src_test() {
-   "${BUILD_DIR}"/Luau.UnitTest || die
-   "${BUILD_DIR}"/Luau.Conformance  || die
-}
-
-src_install() {
-   exeinto /usr/bin
-   doexe "${BUILD_DIR}"/luau{,-analyze,-ast,-compile,-reduce}
-
-   einstalldocs
-}



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

2023-10-04 Thread Maciej Barć
commit: 101c2f48c4564f4bd1db6b500598197292b0606d
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Oct  4 21:18:58 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Oct  4 23:32:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=101c2f48

dev-lang/algol68g: bump to 3.3.24

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

 dev-lang/algol68g/Manifest   |  1 +
 dev-lang/algol68g/algol68g-3.3.24.ebuild | 41 
 2 files changed, 42 insertions(+)

diff --git a/dev-lang/algol68g/Manifest b/dev-lang/algol68g/Manifest
index 04eb5470fd40..2ff39a1ffcca 100644
--- a/dev-lang/algol68g/Manifest
+++ b/dev-lang/algol68g/Manifest
@@ -1 +1,2 @@
 DIST algol68g-3.3.21.tar.gz 660179 BLAKE2B 
43f666cec1f77c3b7056221ab18bcc0bf458b6d6fe1d6c361709683993152aac6957068b09d8c47cc8441233739e7450ff126b1153bbbc272831c5200dde89a6
 SHA512 
18e3f431477fd282726858ae0b5abfe1f695a1f2ad9799437c0ce58808749c876067f2ccafc38b7baef392b1a7543fc389325dae0acfb60e19e2ef084423f719
+DIST algol68g-3.3.24.tar.gz 660171 BLAKE2B 
b70e568c48d4a4f1b142de97c7eaf4a52237e4bd74469318dbfa5bfdd3510f1770aaf4def2a95fe984dfa183206b70646ea0f3cd41486b64ab435ebaa4f70693
 SHA512 
e6d4baec87bdfc853ee6c17c80b121ce90d90409344bf55243a339e68b4bc79bcaf8cad56ca6e5eedc7742e445550c4eb6673e74352bf446a39b3ce1712de857

diff --git a/dev-lang/algol68g/algol68g-3.3.24.ebuild 
b/dev-lang/algol68g/algol68g-3.3.24.ebuild
new file mode 100644
index ..f1c0cc53d018
--- /dev/null
+++ b/dev-lang/algol68g/algol68g-3.3.24.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Algol 68 Genie compiler-interpreter"
+HOMEPAGE="https://jmvdveer.home.xs4all.nl/en.algol-68-genie.html;
+SRC_URI="https://jmvdveer.home.xs4all.nl/${P}.tar.gz;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="+curl +gsl +mpfr +ncurses plotutils postgres +readline"
+
+RDEPEND="
+   curl? ( net-misc/curl )
+   gsl? ( sci-libs/gsl:= )
+   mpfr? ( dev-libs/mpfr:= )
+   plotutils? ( media-libs/plotutils )
+   postgres? ( dev-db/postgresql:* )
+   readline? ( sys-libs/readline:= )
+"
+DEPEND="
+   ${RDEPEND}
+"
+
+PATCHES=( "${FILESDIR}/${PN}-3.3.21-configure-implicit.patch" )
+
+src_configure() {
+   local -a myconf=(
+   $(use_enable curl)
+   $(use_enable gsl)
+   $(use_enable mpfr)
+   $(use_enable ncurses curses)
+   $(use_enable plotutils)
+   $(use_enable postgres postgresql)
+   $(use_enable readline)
+   $(use_with ncurses)
+   )
+   econf "${myconf[@]}"
+}



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

2023-10-04 Thread Maciej Barć
commit: 06c0d8a4616294ee12b9e3a8e1e36c57581cdc28
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Oct  4 21:08:41 2023 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Oct  4 23:32:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06c0d8a4

dev-lang/luau: drop old 0.591

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

 dev-lang/luau/Manifest  |  1 -
 dev-lang/luau/luau-0.591.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/dev-lang/luau/Manifest b/dev-lang/luau/Manifest
index e73e1f8e61ec..5db997ec66d1 100644
--- a/dev-lang/luau/Manifest
+++ b/dev-lang/luau/Manifest
@@ -1,4 +1,3 @@
-DIST luau-0.591.tar.gz 6019607 BLAKE2B 
b60520141f79ec576ca0ac0eb6f73b6022a7450bf2a713e3c9dfcfece97750909e36c07c7e2dc31a786a0d9201e73b44a1d69213cdf8138173b9d862a67499d4
 SHA512 
068c5323fb7b7e55cf26dceedbd7a4b5e6356e503076e7cdce1493e6a105a49b5eff65312c98e796ec863cc74172a7010838f27f4b7b8131c8fc93a8a1501c39
 DIST luau-0.592.tar.gz 6047275 BLAKE2B 
94299eabd16c7163877b4e1b4514998d3a9db06b60f8aafb368d199eb407709987d22d02ff182e66fa38983f5eb8b09d557739d98e8d8cbc406dbfe336e99cba
 SHA512 
69f4c3c82e26e42c6f2d5ce052b00f90cba10c4ebe2cea979e1e0c53463b2b22389e1a3308984c3c537c1efc1c488407a51f15fdd30301b8364645f362447b2f
 DIST luau-0.593.tar.gz 6053499 BLAKE2B 
5cc023f32419cfc09a7dd4f4e94e99905e8e8bab42b675cb0d4712bacd930250094441f5a7ac9fbc68b9fa6e84bb5e9585100f44ee28ef9acf0b21b42f43eed6
 SHA512 
04c2808685db42fce09defca7a4e4e30a71e6fd6c4dc9362f030648203552e7ec79bbadda76f8e89ef3b627c18b05c277d3658286fbbf2c17db574733c0f7593
 DIST luau-0.595.tar.gz 6064604 BLAKE2B 
3586b7aa90e7a365322099f4861a51b6bc089fa17aff1b81dab4456038b6d4e1ad7b61708bf23d085c1fad5ebcaa9010dff343d8e278475740c9c6d9250f6c3e
 SHA512 
47498e69ea05b79739a406ad3455b914319aefdb2595ab13e9b1a508f5b92d084f8e5eac795f1a87c49e67008d01683f817847d8b84fc2a01c23c42103840e06

diff --git a/dev-lang/luau/luau-0.591.ebuild b/dev-lang/luau/luau-0.591.ebuild
deleted file mode 100644
index b15291852bc5..
--- a/dev-lang/luau/luau-0.591.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Gradually typed embeddable scripting language derived from Lua"
-HOMEPAGE="https://luau-lang.org/
-   https://github.com/Roblox/luau/;
-
-if [[ ${PV} == ** ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/Roblox/${PN}.git;
-else
-   SRC_URI="https://github.com/Roblox/${PN}/archive/${PV}.tar.gz
-   -> ${P}.tar.gz"
-   KEYWORDS="amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-DOCS=( CONTRIBUTING.md README.md SECURITY.md )
-
-src_test() {
-   "${BUILD_DIR}"/Luau.UnitTest || die
-   "${BUILD_DIR}"/Luau.Conformance  || die
-}
-
-src_install() {
-   exeinto /usr/bin
-   doexe "${BUILD_DIR}"/luau{,-analyze,-ast,-compile,-reduce}
-
-   einstalldocs
-}



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

2023-10-04 Thread Ionen Wolkens
commit: e396d5b30527894ebfbff63b6e0b9cf8869d39f8
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Oct  4 22:55:55 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Oct  4 22:56:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e396d5b3

media-sound/xmms2: fix comment typo

Just happened to see it while making changes and was bothering me...

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

 media-sound/xmms2/xmms2-0.9.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/xmms2/xmms2-0.9.3-r1.ebuild 
b/media-sound/xmms2/xmms2-0.9.3-r1.ebuild
index 35f77f9d00b6..31a6e2081db6 100644
--- a/media-sound/xmms2/xmms2-0.9.3-r1.ebuild
+++ b/media-sound/xmms2/xmms2-0.9.3-r1.ebuild
@@ -17,7 +17,7 @@ KEYWORDS="~alpha amd64 ~arm ~loong ppc ~riscv x86"
 
 # IUSE static map to be passed to --with-{optionals,plugins}=opt1,opt2,...
 # flag:opt = `usev flag opt`, opt = `usev opt`, :opt = `echo opt`
-# (if have a use for some of these disabled features, please fill a bug)
+# (if have a use for some of these disabled features, please file a bug)
 XMMS2_OPTIONALS=(
cxx:xmmsclient++,xmmsclient++-glib :launcher 
mlib-update:medialib-updater
:nycli perl :pixmaps python server:s4 test:tests libvisual:vistest



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

2023-10-04 Thread Ionen Wolkens
commit: 877e3a93fbb9e7f71be4a0232db12ff7c5affb35
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Wed Oct  4 22:40:35 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Wed Oct  4 22:43:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=877e3a93

media-sound/xmms2: drop IUSE=ofa

Bug: https://bugs.gentoo.org/915190
Signed-off-by: Ionen Wolkens  gentoo.org>

 media-sound/xmms2/metadata.xml  | 1 -
 media-sound/xmms2/xmms2-0.9.3-r1.ebuild | 9 ++---
 2 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/media-sound/xmms2/metadata.xml b/media-sound/xmms2/metadata.xml
index c0c77429c86b..0f0c6702194d 100644
--- a/media-sound/xmms2/metadata.xml
+++ b/media-sound/xmms2/metadata.xml
@@ -13,7 +13,6 @@
Install xmms2-libvisual for use with the 
'visualization' effect
Support for Monkey's Audio (APE) format using 
media-sound/mac
Enable building of xmms2-mlib-updater 
client
-   Support for Open Fingerprint Architecture 
(OFA)
Build xmms2 player daemon (otherwise only 
clients are built)
Support for C64 SID using 
media-libs/libsidplay
Support Vorbis using an alternate 
fixed-point decoder with media-libs/tremor

diff --git a/media-sound/xmms2/xmms2-0.9.3-r1.ebuild 
b/media-sound/xmms2/xmms2-0.9.3-r1.ebuild
index c4c3d80df577..35f77f9d00b6 100644
--- a/media-sound/xmms2/xmms2-0.9.3-r1.ebuild
+++ b/media-sound/xmms2/xmms2-0.9.3-r1.ebuild
@@ -27,10 +27,10 @@ XMMS2_PLUGINS=(
aac:faad airplay alsa ao :asx cdda :cue curl :diskwrite :equalizer
ffmpeg:apefile,asf,avcodec,flv,tta :file flac 
fluidsynth:fluidsynth,mid1,midsquash
gme :html ices :icymetaint :id3v2 jack :karaoke :m3u mac +mad mms 
modplug
-   mp3:mpg123 :mp4 musepack :normalize :null :nulstripper ofa opus oss :pls
+   mp3:mpg123 :mp4 musepack :normalize :null :nulstripper opus oss :pls
pulseaudio:pulse :replaygain samba sid sndfile speex tremor vocoder 
+vorbis
:wave wavpack :xml xml:rss,xspf zeroconf:daap
-   # disabled: coreaudio,gvfs,nms,sc68,sun,waveout
+   # disabled: coreaudio,gvfs,nms,ofa,sc68,sun,waveout
 )
 
 IUSE="
@@ -79,11 +79,6 @@ COMMON_DEPEND="
modplug? ( media-libs/libmodplug )
mp3? ( media-sound/mpg123 )
musepack? ( media-sound/musepack-tools )
-   ofa? (
-   dev-libs/expat
-   media-libs/libofa
-   sci-libs/fftw:3.0=
-   )
opus? ( media-libs/opusfile )
pulseaudio? ( media-libs/libpulse )
samba? ( net-fs/samba )



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

2023-10-04 Thread Sam James
commit: 000927b952036b15491fd0b00b1ab12c140e2e69
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct  4 22:30:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct  4 22:30:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=000927b9

net-misc/stunnel: BDEPEND on sys-devel/autoconf-archive

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

 net-misc/stunnel/stunnel-5.71.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/net-misc/stunnel/stunnel-5.71.ebuild 
b/net-misc/stunnel/stunnel-5.71.ebuild
index 0a61d4a431b5..0366717dd2c4 100644
--- a/net-misc/stunnel/stunnel-5.71.ebuild
+++ b/net-misc/stunnel/stunnel-5.71.ebuild
@@ -37,7 +37,9 @@ RDEPEND="
selinux? ( sec-policy/selinux-stunnel )
stunnel3? ( dev-lang/perl )
 "
+# autoconf-archive for F_S patch
 BDEPEND="
+   sys-devel/autoconf-archive
test? ( ${PYTHON_DEPS} )
 "
 



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

2023-10-04 Thread Sam James
commit: 953c7f35f7293e9bf81ca83c4831c8ef65558485
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct  4 22:23:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct  4 22:23:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=953c7f35

app-crypt/pesign: add mandoc BDEPEND

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

 app-crypt/pesign/pesign-116.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-crypt/pesign/pesign-116.ebuild 
b/app-crypt/pesign/pesign-116.ebuild
index d890d561aad2..0d1550f8649f 100644
--- a/app-crypt/pesign/pesign-116.ebuild
+++ b/app-crypt/pesign/pesign-116.ebuild
@@ -26,6 +26,7 @@ DEPEND="
sys-boot/gnu-efi
 "
 BDEPEND="
+   app-text/mandoc
sys-apps/help2man
virtual/pkgconfig
 "



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

2023-10-04 Thread Sam James
commit: 91f1c92a3dd2a088373e7c3c3978042f4c0b387e
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct  4 22:21:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct  4 22:21:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91f1c92a

sys-libs/libunwind: add 

Needed for testing some arm64 (apple) bits.

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

 sys-libs/libunwind/libunwind-1.7.2.ebuild  | 25 --
 ...ibunwind-1.7.2.ebuild => libunwind-.ebuild} | 25 --
 2 files changed, 38 insertions(+), 12 deletions(-)

diff --git a/sys-libs/libunwind/libunwind-1.7.2.ebuild 
b/sys-libs/libunwind/libunwind-1.7.2.ebuild
index da2467284362..e5cd9a5f96e9 100644
--- a/sys-libs/libunwind/libunwind-1.7.2.ebuild
+++ b/sys-libs/libunwind/libunwind-1.7.2.ebuild
@@ -13,20 +13,29 @@ LIBUNWIND_DOCS_VERSION=1.7.1
 # Default to generating docs (inc. man pages) if no prebuilt; overridden later
 LIBUNWIND_DOCS_USEFLAG="+doc"
 
-[[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] && LIBUNWIND_DOCS_USEFLAG="doc"
-
 inherit multilib-minimal
 
 DESCRIPTION="Portable and efficient API to determine the call-chain of a 
program"
 HOMEPAGE="https://savannah.nongnu.org/projects/libunwind;
-SRC_URI="https://github.com/libunwind/libunwind/releases/download/v${PV}/${P}.tar.gz;
-if [[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] ; then
-   SRC_URI+=" !doc? ( 
https://dev.gentoo.org/~${LIBUNWIND_DOCS_PREBUILT_DEV}/distfiles/${CATEGORY}/${PN}/${PN}-${LIBUNWIND_DOCS_VERSION}-docs.tar.xz
 )"
+
+if [[ ${PV} ==  ]] ; then
+   LIBUNWIND_DOCS_PREBUILT=0
+
+   EGIT_REPO_URI="https://github.com/libunwind/libunwind;
+   inherit autotools git-r3
+else
+   
SRC_URI="https://github.com/libunwind/libunwind/releases/download/v${PV}/${P}.tar.gz;
+   if [[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] ; then
+   SRC_URI+=" !doc? ( 
https://dev.gentoo.org/~${LIBUNWIND_DOCS_PREBUILT_DEV}/distfiles/${CATEGORY}/${PN}/${PN}-${LIBUNWIND_DOCS_VERSION}-docs.tar.xz
 )"
+   fi
+
+   KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 -sparc x86 ~amd64-linux ~x86-linux"
 fi
 
+[[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] && LIBUNWIND_DOCS_USEFLAG="doc"
+
 LICENSE="MIT"
 SLOT="0/8" # libunwind.so.8
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 
-sparc x86 ~amd64-linux ~x86-linux"
 IUSE="debug debug-frame ${LIBUNWIND_DOCS_USEFLAG} libatomic lzma static-libs 
test zlib"
 
 RESTRICT="test !test? ( test )" # some tests are broken (toolchain version 
dependent, rely on external binaries)
@@ -66,6 +75,10 @@ src_prepare() {
default
 
chmod +x src/ia64/mk_cursor_i || die
+
+   if [[ ${PV} ==  ]] ; then
+   eautoreconf
+   fi
 }
 
 multilib_src_configure() {

diff --git a/sys-libs/libunwind/libunwind-1.7.2.ebuild 
b/sys-libs/libunwind/libunwind-.ebuild
similarity index 84%
copy from sys-libs/libunwind/libunwind-1.7.2.ebuild
copy to sys-libs/libunwind/libunwind-.ebuild
index da2467284362..f851e69da60a 100644
--- a/sys-libs/libunwind/libunwind-1.7.2.ebuild
+++ b/sys-libs/libunwind/libunwind-.ebuild
@@ -13,20 +13,29 @@ LIBUNWIND_DOCS_VERSION=1.7.1
 # Default to generating docs (inc. man pages) if no prebuilt; overridden later
 LIBUNWIND_DOCS_USEFLAG="+doc"
 
-[[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] && LIBUNWIND_DOCS_USEFLAG="doc"
-
 inherit multilib-minimal
 
 DESCRIPTION="Portable and efficient API to determine the call-chain of a 
program"
 HOMEPAGE="https://savannah.nongnu.org/projects/libunwind;
-SRC_URI="https://github.com/libunwind/libunwind/releases/download/v${PV}/${P}.tar.gz;
-if [[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] ; then
-   SRC_URI+=" !doc? ( 
https://dev.gentoo.org/~${LIBUNWIND_DOCS_PREBUILT_DEV}/distfiles/${CATEGORY}/${PN}/${PN}-${LIBUNWIND_DOCS_VERSION}-docs.tar.xz
 )"
+
+if [[ ${PV} ==  ]] ; then
+   LIBUNWIND_DOCS_PREBUILT=0
+
+   EGIT_REPO_URI="https://github.com/libunwind/libunwind;
+   inherit autotools git-r3
+else
+   
SRC_URI="https://github.com/libunwind/libunwind/releases/download/v${PV}/${P}.tar.gz;
+   if [[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] ; then
+   SRC_URI+=" !doc? ( 
https://dev.gentoo.org/~${LIBUNWIND_DOCS_PREBUILT_DEV}/distfiles/${CATEGORY}/${PN}/${PN}-${LIBUNWIND_DOCS_VERSION}-docs.tar.xz
 )"
+   fi
+
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~s390 -sparc ~x86 ~amd64-linux ~x86-linux"
 fi
 
+[[ ${LIBUNWIND_DOCS_PREBUILT} == 1 ]] && LIBUNWIND_DOCS_USEFLAG="doc"
+
 LICENSE="MIT"
 SLOT="0/8" # libunwind.so.8
-KEYWORDS="amd64 arm arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv ~s390 
-sparc x86 ~amd64-linux ~x86-linux"
 IUSE="debug debug-frame ${LIBUNWIND_DOCS_USEFLAG} libatomic lzma static-libs 
test zlib"
 
 RESTRICT="test !test? ( test )" # some tests are broken (toolchain version 
dependent, rely on external binaries)
@@ -66,6 +75,10 @@ src_prepare() {

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

2023-10-04 Thread Anna Figueiredo Gomes
commit: 9c9beb804a602c93befebafe4ca371e9f7c30d2a
Author: Anna (navi) Figueiredo Gomes  vlhl  dev>
AuthorDate: Wed Oct  4 22:19:27 2023 +
Commit: Anna Figueiredo Gomes  tutanota  com>
CommitDate: Wed Oct  4 22:19:27 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=9c9beb80

games-util/xivlauncher: add 1.0.6, drop 1.0.5

Signed-off-by: Anna (navi) Figueiredo Gomes  vlhl.dev>

 games-util/xivlauncher/Manifest   | 4 ++--
 .../{xivlauncher-1.0.5.ebuild => xivlauncher-1.0.6.ebuild}| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index b6deed0f86..993ad6d6fc 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -1,4 +1,4 @@
-DIST FFXIVQuickLauncher-5e1022893d0aa52da84680b7c0694bdd5d560b32.tar.gz 
5266640 BLAKE2B 
5e9fb5df090184c0422936d4c62af1f73ea03c447adb7ba00717ce40fe09086713b6be1708158bb0112ea8c9e6324acd2705caaea414c32314c35fb446a2bf5d
 SHA512 
1c7a2790da8e3350ee74ed60935753f971b5166993694d313f31d7b245a7a39bc96c0f33c92d00a3adc6d600dfb4a4fe07e8b16f28e86808d11b9dfbb2b08bf0
+DIST FFXIVQuickLauncher-e8e22c32969a858343b751dbbda4777606ba5717.tar.gz 
5267549 BLAKE2B 
f143db989db4c47a8012040a34298b6293fe48732b3f43780f04b2530ca13bd75df4c9511c104b05897a787f6f915c14d958a3b7bde9ea99c7e4060f3bdca3c9
 SHA512 
128f170822eaa5277c4788ef838ca4f0bda75c17f3456922d4e3d68ef607687d9fe38b55024003c64400d3a486db595a6a317b731f82c4054974a49c9584c71e
 DIST castle.core.4.4.1.nupkg 919111 BLAKE2B 
5ee1245ef79f00b89fd03957b260337b4af242667c10cd9189540853344d062e27dee224989ef6a29544083f9a8416a197b9d97ba38ee1ace4630e89893355e7
 SHA512 
b27c340df07622abda8543a48c057eb936c9b02b7ed2d6f58e09e33bd5a5f70c7a2ee867127a05697e5a4127ba40494a17ea40080482578328aa8a33ae97aa3a
 DIST cheaploc.1.1.6.nupkg 17585 BLAKE2B 
1ed77a02342449f2b20fc97f0dfca7122637beb9f5f08854dc3d6c4f3676340686e49ac46173945f90dc56e7f41bc719d1976b5b4e61f1b25ced0b94cdb6a29d
 SHA512 
ff2d6e19a08b54d288eced17cafe2dca9943bc7b0fab131c477f9ce7d8390762b11949228bc4193e661490432828ea8596ccb3d0d01ce2e990c346caa4cbb8fa
 DIST commandlineparser.2.9.1.nupkg 496069 BLAKE2B 
e2c4b38841f83d6bc10432b8055af90369f1fe0a10105a58b51b44cd48e5d84cb0b5e4b19f444d8c81b38646a62c7c4d11cbd710e92fea68be3ebea6ab98e3f1
 SHA512 
4f364e45c9668c7e7cc6a922b488f3fa523033c20d7a432694f0a6af05ce528ea0481d8375e2f4f1032c6990347b4803ce9a0e48068c6fe15ec46fb1254f085d
@@ -185,4 +185,4 @@ DIST vortice.direct3d11.2.1.0.nupkg 764570 BLAKE2B 
0bacd329d8a582ecbf8d762b209df
 DIST vortice.directx.2.1.0.nupkg 240511 BLAKE2B 
0fefe0ee66eac71d05eb3f4e93f09e445042005a2db44cba52692ce018207dceb5a1c4c1e1d04e8510fecaa52e1f9ab19f10a3f00e36781f5e0204ab645694fa
 SHA512 
03e8beeb88c81f1e158ae7804feb84d17191356c17438de5332bbc8d3b96cb12c4ac5d84296751fda2c6b1f50a688336c9c5b14509c3f3e3fa410927a79afd76
 DIST vortice.dxgi.2.1.0.nupkg 84022 BLAKE2B 
1e6e550a4c9752db0204d2c6dace2f70190bb562faaa5f59074a1d5b3fe511426f7a776d80d9d847adb3bcbc28da4fa7124aa0abe1c4970f1c8eb70f2f0a2d56
 SHA512 
cf1e4e46608209a0809d9103dc65b614afaae12b1195ed279ef639f3475c2e2ecaca627b8fef9dba780edfc70a78c441cf2881a4ea3d70d524d58f556ae23c7f
 DIST vortice.mathematics.1.3.24.nupkg 115105 BLAKE2B 
077d18cbc13b6fe6c5aee95680cb1d80b5927c58ae0061cd487c6b4f4f1ad732f6238f5cc5b1971fffcba8ac9d982f107af1c133c3226e8ca150a2c4b514f4bf
 SHA512 
601b828fd182e2a77d989581ccd2e90f150155267f09f10eaf8af0e77a6ba4fc34cc040c42adb4b57c9e809bae7f96f5c21b0f10d73bde0d8d3c9d0414693d08
-DIST xivlauncher-1.0.5.tar.gz 18456312 BLAKE2B 
657e86f0da27c69578a99731677d0c3daec83fba8cd74460ef77ae123dfbcfb02c6231037fab51910e4090c1bed06f4733de50ca34bebabb90a1e9612286e09a
 SHA512 
20b814283cc1b36c10d28d63e3b8f28dc456f670182129fba26f722ec6fb069eb94609675186c8e8cfb277c29897383070be66d8f9348c7a1b681856b2ef7de3
+DIST xivlauncher-1.0.6.tar.gz 18456404 BLAKE2B 
c37a5cc05070ce1914b6d784f2742ec9ff4adea9370605b1605db7093ed3e5bde3e57f5d5098770317d43fded51cfab3723208a273d07b885dad91489dbce8a7
 SHA512 
90ef341ec64eb03f1d0efdf60b42f53b22d3b7e747341312e248ef7dba34d83b45b98ab0973ec575352208ba3074bd0daf03b6d16371e5af571277fbdfeb2e7a

diff --git a/games-util/xivlauncher/xivlauncher-1.0.5.ebuild 
b/games-util/xivlauncher/xivlauncher-1.0.6.ebuild
similarity index 99%
rename from games-util/xivlauncher/xivlauncher-1.0.5.ebuild
rename to games-util/xivlauncher/xivlauncher-1.0.6.ebuild
index 66fc37f919..a3685faea7 100644
--- a/games-util/xivlauncher/xivlauncher-1.0.5.ebuild
+++ b/games-util/xivlauncher/xivlauncher-1.0.6.ebuild
@@ -217,7 +217,7 @@ RDEPEND="
x11-libs/libSM
 "
 
-XIVQL_COMMIT="5e1022893d0aa52da84680b7c0694bdd5d560b32"
+XIVQL_COMMIT="e8e22c32969a858343b751dbbda4777606ba5717"
 
 SRC_URI="

https://github.com/goatcorp/XIVLauncher.Core/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz



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

2023-10-04 Thread William Hubbs
commit: 9d576197cbe444b2e9633a94ef50516cb44c479b
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:17:16 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:17:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d576197

sys-cluster/kube-scheduler: drop 1.28.1

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

 sys-cluster/kube-scheduler/Manifest|  1 -
 .../kube-scheduler/kube-scheduler-1.28.1.ebuild| 38 --
 2 files changed, 39 deletions(-)

diff --git a/sys-cluster/kube-scheduler/Manifest 
b/sys-cluster/kube-scheduler/Manifest
index 18d7101c2b4c..bb287af627ab 100644
--- a/sys-cluster/kube-scheduler/Manifest
+++ b/sys-cluster/kube-scheduler/Manifest
@@ -5,5 +5,4 @@ DIST kubernetes-1.26.8.tar.gz 38511916 BLAKE2B 
60e1277debcdf5b093629d718552948a2
 DIST kubernetes-1.26.9.tar.gz 38520517 BLAKE2B 
4e49686fd083b1aefb314a1f6acbff91437a5f8e6801c20bcf493a29eb99c419c13cd1246efbe4e6baab0da22a19df189a6cda7047eaa14edf7fa895eeca5535
 SHA512 
9ad42f2ddbd8662b9175d58f06024571e3bc07f3d905f66a9cc5635e41492ed9a9cdb0debe3864990516dacc41afb58265dc918d46a078e77f0889b9ed121427
 DIST kubernetes-1.27.5.tar.gz 38204018 BLAKE2B 
4b44430f7854fca70f650c31388b9d378218d6d4ed116659522542a0e199a19c65e152a4b7235ad5f5fe86753c3ee834ea162da9ff889e384bee780a61a39c42
 SHA512 
9237d03c3cc2374b1e3631f63ac850fc2461628785863c909972c85b74d9fd3c75dc286e0953059c1999457d2a43b474b1ec7b8c633e158aeb88f89e02e874f8
 DIST kubernetes-1.27.6.tar.gz 38249520 BLAKE2B 
942a66075e0ec9aec579908f7a3724be2bc5fb0d8f40d8fd3d025221199e97c44e96a13099bff7a408af9847ef0f5568033146cbb1566a608a572418410cfbdf
 SHA512 
147c0eb819a1ea8c2d49467bceacdefe7693082609bce924bbafe9dd7afc27a576bf6b5d350b63da5fb7bf6cdf20983ac681e48539edda777303f81e4e2a72db
-DIST kubernetes-1.28.1.tar.gz 39881720 BLAKE2B 
9f56e1a9d2c45948c3c4baca99b16e8b73cb2e375088b9d3badd1664ebd178a052855c235637ac2f596cbb02ec440958710f39bd5dbd34e37f74c4260dd8cf65
 SHA512 
cc28483e09f7a3861bf1b8f7867e3295f8879a2c0a2a851ce14f41158c8ea3cb080ae697dc897d8a55efd3a7f0dcbfcca2d39dff6fd9ca0dd1b5762c1010fb09
 DIST kubernetes-1.28.2.tar.gz 39908514 BLAKE2B 
1c681294ce6560e678ee75b912466c09ea127fae0d0caf1707a7ed45e7df825345b913cf52ff4b851bf59fb78619ea89c9de0185e11ff3f13516599c72028e07
 SHA512 
b15948df4251d4f0b50e939354182bd765be2044835ca2fe42d2339309b3dd7a78143f09f41703bafb0f985a049f25aac386204e30db8dc85d554955759cb1e9

diff --git a/sys-cluster/kube-scheduler/kube-scheduler-1.28.1.ebuild 
b/sys-cluster/kube-scheduler/kube-scheduler-1.28.1.ebuild
deleted file mode 100644
index 038445235f63..
--- a/sys-cluster/kube-scheduler/kube-scheduler-1.28.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module
-
-DESCRIPTION="Kubernetes Scheduler"
-HOMEPAGE="https://kubernetes.io;
-SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="hardened"
-
-COMMON_DEPEND="acct-group/kube-scheduler
-   acct-user/kube-scheduler"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-BDEPEND=">=dev-lang/go-1.20"
-
-RESTRICT+=" test"
-S="${WORKDIR}/kubernetes-${PV}"
-
-src_compile() {
-   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
-   emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
-}
-
-src_install() {
-   dobin _output/bin/${PN}
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}.logrotated ${PN}
-   keepdir /var/log/${PN}
-   fowners ${PN}:${PN} /var/log/${PN}
-}



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

2023-10-04 Thread William Hubbs
commit: 8367932544f179ae8e279a9dbd59b6cb8355a5af
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:17:12 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:17:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83679325

sys-cluster/kube-controller-manager: drop 1.28.1

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

 sys-cluster/kube-controller-manager/Manifest   |  1 -
 .../kube-controller-manager-1.28.1.ebuild  | 38 --
 2 files changed, 39 deletions(-)

diff --git a/sys-cluster/kube-controller-manager/Manifest 
b/sys-cluster/kube-controller-manager/Manifest
index 18d7101c2b4c..bb287af627ab 100644
--- a/sys-cluster/kube-controller-manager/Manifest
+++ b/sys-cluster/kube-controller-manager/Manifest
@@ -5,5 +5,4 @@ DIST kubernetes-1.26.8.tar.gz 38511916 BLAKE2B 
60e1277debcdf5b093629d718552948a2
 DIST kubernetes-1.26.9.tar.gz 38520517 BLAKE2B 
4e49686fd083b1aefb314a1f6acbff91437a5f8e6801c20bcf493a29eb99c419c13cd1246efbe4e6baab0da22a19df189a6cda7047eaa14edf7fa895eeca5535
 SHA512 
9ad42f2ddbd8662b9175d58f06024571e3bc07f3d905f66a9cc5635e41492ed9a9cdb0debe3864990516dacc41afb58265dc918d46a078e77f0889b9ed121427
 DIST kubernetes-1.27.5.tar.gz 38204018 BLAKE2B 
4b44430f7854fca70f650c31388b9d378218d6d4ed116659522542a0e199a19c65e152a4b7235ad5f5fe86753c3ee834ea162da9ff889e384bee780a61a39c42
 SHA512 
9237d03c3cc2374b1e3631f63ac850fc2461628785863c909972c85b74d9fd3c75dc286e0953059c1999457d2a43b474b1ec7b8c633e158aeb88f89e02e874f8
 DIST kubernetes-1.27.6.tar.gz 38249520 BLAKE2B 
942a66075e0ec9aec579908f7a3724be2bc5fb0d8f40d8fd3d025221199e97c44e96a13099bff7a408af9847ef0f5568033146cbb1566a608a572418410cfbdf
 SHA512 
147c0eb819a1ea8c2d49467bceacdefe7693082609bce924bbafe9dd7afc27a576bf6b5d350b63da5fb7bf6cdf20983ac681e48539edda777303f81e4e2a72db
-DIST kubernetes-1.28.1.tar.gz 39881720 BLAKE2B 
9f56e1a9d2c45948c3c4baca99b16e8b73cb2e375088b9d3badd1664ebd178a052855c235637ac2f596cbb02ec440958710f39bd5dbd34e37f74c4260dd8cf65
 SHA512 
cc28483e09f7a3861bf1b8f7867e3295f8879a2c0a2a851ce14f41158c8ea3cb080ae697dc897d8a55efd3a7f0dcbfcca2d39dff6fd9ca0dd1b5762c1010fb09
 DIST kubernetes-1.28.2.tar.gz 39908514 BLAKE2B 
1c681294ce6560e678ee75b912466c09ea127fae0d0caf1707a7ed45e7df825345b913cf52ff4b851bf59fb78619ea89c9de0185e11ff3f13516599c72028e07
 SHA512 
b15948df4251d4f0b50e939354182bd765be2044835ca2fe42d2339309b3dd7a78143f09f41703bafb0f985a049f25aac386204e30db8dc85d554955759cb1e9

diff --git 
a/sys-cluster/kube-controller-manager/kube-controller-manager-1.28.1.ebuild 
b/sys-cluster/kube-controller-manager/kube-controller-manager-1.28.1.ebuild
deleted file mode 100644
index dc4ca2df138b..
--- a/sys-cluster/kube-controller-manager/kube-controller-manager-1.28.1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module
-
-DESCRIPTION="Kubernetes Controller Manager"
-HOMEPAGE="https://kubernetes.io;
-SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="hardened"
-
-COMMON_DEPEND="acct-group/kube-controller-manager
-   acct-user/kube-controller-manager"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-BDEPEND=">=dev-lang/go-1.20"
-
-RESTRICT+=" test"
-S="${WORKDIR}/kubernetes-${PV}"
-
-src_compile() {
-   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
-   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
-}
-
-src_install() {
-   dobin _output/bin/${PN}
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}.logrotated ${PN}
-   keepdir /var/log/${PN}
-   fowners ${PN}:${PN} /var/log/${PN}
-}



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

2023-10-04 Thread William Hubbs
commit: c1bdefae8b9107fbbcdb43a163f2ae00232e6942
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:17:15 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:17:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1bdefae

sys-cluster/kube-proxy: drop 1.28.1

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

 sys-cluster/kube-proxy/Manifest |  1 -
 sys-cluster/kube-proxy/kube-proxy-1.28.1.ebuild | 34 -
 2 files changed, 35 deletions(-)

diff --git a/sys-cluster/kube-proxy/Manifest b/sys-cluster/kube-proxy/Manifest
index 18d7101c2b4c..bb287af627ab 100644
--- a/sys-cluster/kube-proxy/Manifest
+++ b/sys-cluster/kube-proxy/Manifest
@@ -5,5 +5,4 @@ DIST kubernetes-1.26.8.tar.gz 38511916 BLAKE2B 
60e1277debcdf5b093629d718552948a2
 DIST kubernetes-1.26.9.tar.gz 38520517 BLAKE2B 
4e49686fd083b1aefb314a1f6acbff91437a5f8e6801c20bcf493a29eb99c419c13cd1246efbe4e6baab0da22a19df189a6cda7047eaa14edf7fa895eeca5535
 SHA512 
9ad42f2ddbd8662b9175d58f06024571e3bc07f3d905f66a9cc5635e41492ed9a9cdb0debe3864990516dacc41afb58265dc918d46a078e77f0889b9ed121427
 DIST kubernetes-1.27.5.tar.gz 38204018 BLAKE2B 
4b44430f7854fca70f650c31388b9d378218d6d4ed116659522542a0e199a19c65e152a4b7235ad5f5fe86753c3ee834ea162da9ff889e384bee780a61a39c42
 SHA512 
9237d03c3cc2374b1e3631f63ac850fc2461628785863c909972c85b74d9fd3c75dc286e0953059c1999457d2a43b474b1ec7b8c633e158aeb88f89e02e874f8
 DIST kubernetes-1.27.6.tar.gz 38249520 BLAKE2B 
942a66075e0ec9aec579908f7a3724be2bc5fb0d8f40d8fd3d025221199e97c44e96a13099bff7a408af9847ef0f5568033146cbb1566a608a572418410cfbdf
 SHA512 
147c0eb819a1ea8c2d49467bceacdefe7693082609bce924bbafe9dd7afc27a576bf6b5d350b63da5fb7bf6cdf20983ac681e48539edda777303f81e4e2a72db
-DIST kubernetes-1.28.1.tar.gz 39881720 BLAKE2B 
9f56e1a9d2c45948c3c4baca99b16e8b73cb2e375088b9d3badd1664ebd178a052855c235637ac2f596cbb02ec440958710f39bd5dbd34e37f74c4260dd8cf65
 SHA512 
cc28483e09f7a3861bf1b8f7867e3295f8879a2c0a2a851ce14f41158c8ea3cb080ae697dc897d8a55efd3a7f0dcbfcca2d39dff6fd9ca0dd1b5762c1010fb09
 DIST kubernetes-1.28.2.tar.gz 39908514 BLAKE2B 
1c681294ce6560e678ee75b912466c09ea127fae0d0caf1707a7ed45e7df825345b913cf52ff4b851bf59fb78619ea89c9de0185e11ff3f13516599c72028e07
 SHA512 
b15948df4251d4f0b50e939354182bd765be2044835ca2fe42d2339309b3dd7a78143f09f41703bafb0f985a049f25aac386204e30db8dc85d554955759cb1e9

diff --git a/sys-cluster/kube-proxy/kube-proxy-1.28.1.ebuild 
b/sys-cluster/kube-proxy/kube-proxy-1.28.1.ebuild
deleted file mode 100644
index ea991ff91e56..
--- a/sys-cluster/kube-proxy/kube-proxy-1.28.1.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module
-
-DESCRIPTION="Kubernetes Proxy service"
-HOMEPAGE="https://github.com/kubernetes/kubernetes https://kubernetes.io;
-SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="hardened"
-
-RDEPEND="net-firewall/conntrack-tools"
-BDEPEND=">=dev-lang/go-1.20"
-
-RESTRICT+=" test"
-S="${WORKDIR}/kubernetes-${PV}"
-
-src_compile() {
-   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
-   emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
-}
-
-src_install() {
-   dobin _output/bin/${PN}
-   keepdir /var/log/${PN} /var/lib/${PN}
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}.logrotated ${PN}
-}



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

2023-10-04 Thread William Hubbs
commit: a6b024508eb1bb77bf876e4e18d48a7c7379e7f0
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:17:09 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:17:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6b02450

sys-cluster/kubeadm: drop 1.28.1

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

 sys-cluster/kubeadm/Manifest  |  1 -
 sys-cluster/kubeadm/kubeadm-1.28.1.ebuild | 35 ---
 2 files changed, 36 deletions(-)

diff --git a/sys-cluster/kubeadm/Manifest b/sys-cluster/kubeadm/Manifest
index 18d7101c2b4c..bb287af627ab 100644
--- a/sys-cluster/kubeadm/Manifest
+++ b/sys-cluster/kubeadm/Manifest
@@ -5,5 +5,4 @@ DIST kubernetes-1.26.8.tar.gz 38511916 BLAKE2B 
60e1277debcdf5b093629d718552948a2
 DIST kubernetes-1.26.9.tar.gz 38520517 BLAKE2B 
4e49686fd083b1aefb314a1f6acbff91437a5f8e6801c20bcf493a29eb99c419c13cd1246efbe4e6baab0da22a19df189a6cda7047eaa14edf7fa895eeca5535
 SHA512 
9ad42f2ddbd8662b9175d58f06024571e3bc07f3d905f66a9cc5635e41492ed9a9cdb0debe3864990516dacc41afb58265dc918d46a078e77f0889b9ed121427
 DIST kubernetes-1.27.5.tar.gz 38204018 BLAKE2B 
4b44430f7854fca70f650c31388b9d378218d6d4ed116659522542a0e199a19c65e152a4b7235ad5f5fe86753c3ee834ea162da9ff889e384bee780a61a39c42
 SHA512 
9237d03c3cc2374b1e3631f63ac850fc2461628785863c909972c85b74d9fd3c75dc286e0953059c1999457d2a43b474b1ec7b8c633e158aeb88f89e02e874f8
 DIST kubernetes-1.27.6.tar.gz 38249520 BLAKE2B 
942a66075e0ec9aec579908f7a3724be2bc5fb0d8f40d8fd3d025221199e97c44e96a13099bff7a408af9847ef0f5568033146cbb1566a608a572418410cfbdf
 SHA512 
147c0eb819a1ea8c2d49467bceacdefe7693082609bce924bbafe9dd7afc27a576bf6b5d350b63da5fb7bf6cdf20983ac681e48539edda777303f81e4e2a72db
-DIST kubernetes-1.28.1.tar.gz 39881720 BLAKE2B 
9f56e1a9d2c45948c3c4baca99b16e8b73cb2e375088b9d3badd1664ebd178a052855c235637ac2f596cbb02ec440958710f39bd5dbd34e37f74c4260dd8cf65
 SHA512 
cc28483e09f7a3861bf1b8f7867e3295f8879a2c0a2a851ce14f41158c8ea3cb080ae697dc897d8a55efd3a7f0dcbfcca2d39dff6fd9ca0dd1b5762c1010fb09
 DIST kubernetes-1.28.2.tar.gz 39908514 BLAKE2B 
1c681294ce6560e678ee75b912466c09ea127fae0d0caf1707a7ed45e7df825345b913cf52ff4b851bf59fb78619ea89c9de0185e11ff3f13516599c72028e07
 SHA512 
b15948df4251d4f0b50e939354182bd765be2044835ca2fe42d2339309b3dd7a78143f09f41703bafb0f985a049f25aac386204e30db8dc85d554955759cb1e9

diff --git a/sys-cluster/kubeadm/kubeadm-1.28.1.ebuild 
b/sys-cluster/kubeadm/kubeadm-1.28.1.ebuild
deleted file mode 100644
index a7a02677a302..
--- a/sys-cluster/kubeadm/kubeadm-1.28.1.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 go-module
-
-DESCRIPTION="CLI to Easily bootstrap a secure Kubernetes cluster"
-HOMEPAGE="https://kubernetes.io;
-SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="hardened selinux"
-
-BDEPEND=">=dev-lang/go-1.20"
-RDEPEND="app-containers/cri-tools
-   selinux? ( sec-policy/selinux-kubernetes )"
-
-RESTRICT+=" test"
-S="${WORKDIR}/kubernetes-${PV}"
-
-src_compile() {
-   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" FORCE_HOST_GO=yes \
-   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
-}
-
-src_install() {
-   dobin _output/bin/${PN}
-   _output/bin/${PN} completion bash > ${PN}.bash || die
-   _output/bin/${PN} completion zsh > ${PN}.zsh || die
-   newbashcomp ${PN}.bash ${PN}
-   insinto /usr/share/zsh/site-functions
-   newins ${PN}.zsh _${PN}
-}



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

2023-10-04 Thread William Hubbs
commit: da53ae7e6e8609594de2b24bba9f6567c8fe40dd
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:17:10 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:17:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da53ae7e

sys-cluster/kube-apiserver: drop 1.28.1

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

 sys-cluster/kube-apiserver/Manifest|  1 -
 .../kube-apiserver/kube-apiserver-1.28.1.ebuild| 39 --
 2 files changed, 40 deletions(-)

diff --git a/sys-cluster/kube-apiserver/Manifest 
b/sys-cluster/kube-apiserver/Manifest
index 18d7101c2b4c..bb287af627ab 100644
--- a/sys-cluster/kube-apiserver/Manifest
+++ b/sys-cluster/kube-apiserver/Manifest
@@ -5,5 +5,4 @@ DIST kubernetes-1.26.8.tar.gz 38511916 BLAKE2B 
60e1277debcdf5b093629d718552948a2
 DIST kubernetes-1.26.9.tar.gz 38520517 BLAKE2B 
4e49686fd083b1aefb314a1f6acbff91437a5f8e6801c20bcf493a29eb99c419c13cd1246efbe4e6baab0da22a19df189a6cda7047eaa14edf7fa895eeca5535
 SHA512 
9ad42f2ddbd8662b9175d58f06024571e3bc07f3d905f66a9cc5635e41492ed9a9cdb0debe3864990516dacc41afb58265dc918d46a078e77f0889b9ed121427
 DIST kubernetes-1.27.5.tar.gz 38204018 BLAKE2B 
4b44430f7854fca70f650c31388b9d378218d6d4ed116659522542a0e199a19c65e152a4b7235ad5f5fe86753c3ee834ea162da9ff889e384bee780a61a39c42
 SHA512 
9237d03c3cc2374b1e3631f63ac850fc2461628785863c909972c85b74d9fd3c75dc286e0953059c1999457d2a43b474b1ec7b8c633e158aeb88f89e02e874f8
 DIST kubernetes-1.27.6.tar.gz 38249520 BLAKE2B 
942a66075e0ec9aec579908f7a3724be2bc5fb0d8f40d8fd3d025221199e97c44e96a13099bff7a408af9847ef0f5568033146cbb1566a608a572418410cfbdf
 SHA512 
147c0eb819a1ea8c2d49467bceacdefe7693082609bce924bbafe9dd7afc27a576bf6b5d350b63da5fb7bf6cdf20983ac681e48539edda777303f81e4e2a72db
-DIST kubernetes-1.28.1.tar.gz 39881720 BLAKE2B 
9f56e1a9d2c45948c3c4baca99b16e8b73cb2e375088b9d3badd1664ebd178a052855c235637ac2f596cbb02ec440958710f39bd5dbd34e37f74c4260dd8cf65
 SHA512 
cc28483e09f7a3861bf1b8f7867e3295f8879a2c0a2a851ce14f41158c8ea3cb080ae697dc897d8a55efd3a7f0dcbfcca2d39dff6fd9ca0dd1b5762c1010fb09
 DIST kubernetes-1.28.2.tar.gz 39908514 BLAKE2B 
1c681294ce6560e678ee75b912466c09ea127fae0d0caf1707a7ed45e7df825345b913cf52ff4b851bf59fb78619ea89c9de0185e11ff3f13516599c72028e07
 SHA512 
b15948df4251d4f0b50e939354182bd765be2044835ca2fe42d2339309b3dd7a78143f09f41703bafb0f985a049f25aac386204e30db8dc85d554955759cb1e9

diff --git a/sys-cluster/kube-apiserver/kube-apiserver-1.28.1.ebuild 
b/sys-cluster/kube-apiserver/kube-apiserver-1.28.1.ebuild
deleted file mode 100644
index 45f6308c3fbc..
--- a/sys-cluster/kube-apiserver/kube-apiserver-1.28.1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 go-module systemd
-
-DESCRIPTION="Kubernetes API server"
-HOMEPAGE="https://kubernetes.io;
-SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="hardened"
-
-COMMON_DEPEND="
-   acct-group/kube-apiserver
-   acct-user/kube-apiserver"
-DEPEND="${COMMON_DEPEND}"
-RDEPEND="${COMMON_DEPEND}"
-BDEPEND=">=dev-lang/go-1.20"
-
-RESTRICT+=" test"
-S="${WORKDIR}/kubernetes-${PV}"
-
-src_compile() {
-   CGO_LDFLAGS="$(usex hardened '-fNO-PIC ' '')" FORCE_HOST_GO="yes" \
-   emake -j1 GOFLAGS=-v GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
-}
-
-src_install() {
-   dobin _output/bin/${PN}
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}.logrotated ${PN}
-   keepdir /var/log/${PN}
-   fowners ${PN}:${PN} /var/log/${PN}
-}



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

2023-10-04 Thread William Hubbs
commit: b3086063a41153d765913fb515457b4bec6e881b
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:17:14 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:17:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b3086063

sys-cluster/kubelet: drop 1.28.1

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

 sys-cluster/kubelet/Manifest  |  1 -
 sys-cluster/kubelet/kubelet-1.28.1.ebuild | 37 ---
 2 files changed, 38 deletions(-)

diff --git a/sys-cluster/kubelet/Manifest b/sys-cluster/kubelet/Manifest
index 18d7101c2b4c..bb287af627ab 100644
--- a/sys-cluster/kubelet/Manifest
+++ b/sys-cluster/kubelet/Manifest
@@ -5,5 +5,4 @@ DIST kubernetes-1.26.8.tar.gz 38511916 BLAKE2B 
60e1277debcdf5b093629d718552948a2
 DIST kubernetes-1.26.9.tar.gz 38520517 BLAKE2B 
4e49686fd083b1aefb314a1f6acbff91437a5f8e6801c20bcf493a29eb99c419c13cd1246efbe4e6baab0da22a19df189a6cda7047eaa14edf7fa895eeca5535
 SHA512 
9ad42f2ddbd8662b9175d58f06024571e3bc07f3d905f66a9cc5635e41492ed9a9cdb0debe3864990516dacc41afb58265dc918d46a078e77f0889b9ed121427
 DIST kubernetes-1.27.5.tar.gz 38204018 BLAKE2B 
4b44430f7854fca70f650c31388b9d378218d6d4ed116659522542a0e199a19c65e152a4b7235ad5f5fe86753c3ee834ea162da9ff889e384bee780a61a39c42
 SHA512 
9237d03c3cc2374b1e3631f63ac850fc2461628785863c909972c85b74d9fd3c75dc286e0953059c1999457d2a43b474b1ec7b8c633e158aeb88f89e02e874f8
 DIST kubernetes-1.27.6.tar.gz 38249520 BLAKE2B 
942a66075e0ec9aec579908f7a3724be2bc5fb0d8f40d8fd3d025221199e97c44e96a13099bff7a408af9847ef0f5568033146cbb1566a608a572418410cfbdf
 SHA512 
147c0eb819a1ea8c2d49467bceacdefe7693082609bce924bbafe9dd7afc27a576bf6b5d350b63da5fb7bf6cdf20983ac681e48539edda777303f81e4e2a72db
-DIST kubernetes-1.28.1.tar.gz 39881720 BLAKE2B 
9f56e1a9d2c45948c3c4baca99b16e8b73cb2e375088b9d3badd1664ebd178a052855c235637ac2f596cbb02ec440958710f39bd5dbd34e37f74c4260dd8cf65
 SHA512 
cc28483e09f7a3861bf1b8f7867e3295f8879a2c0a2a851ce14f41158c8ea3cb080ae697dc897d8a55efd3a7f0dcbfcca2d39dff6fd9ca0dd1b5762c1010fb09
 DIST kubernetes-1.28.2.tar.gz 39908514 BLAKE2B 
1c681294ce6560e678ee75b912466c09ea127fae0d0caf1707a7ed45e7df825345b913cf52ff4b851bf59fb78619ea89c9de0185e11ff3f13516599c72028e07
 SHA512 
b15948df4251d4f0b50e939354182bd765be2044835ca2fe42d2339309b3dd7a78143f09f41703bafb0f985a049f25aac386204e30db8dc85d554955759cb1e9

diff --git a/sys-cluster/kubelet/kubelet-1.28.1.ebuild 
b/sys-cluster/kubelet/kubelet-1.28.1.ebuild
deleted file mode 100644
index cd8a1735b583..
--- a/sys-cluster/kubelet/kubelet-1.28.1.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit go-module systemd
-
-DESCRIPTION="Kubernetes Node Agent"
-HOMEPAGE="https://kubernetes.io;
-SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="hardened selinux"
-
-BDEPEND=">=dev-lang/go-1.20"
-RDEPEND="selinux? ( sec-policy/selinux-kubernetes )"
-
-RESTRICT+=" test "
-S="${WORKDIR}/kubernetes-${PV}"
-
-src_compile() {
-   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
-   emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
-}
-
-src_install() {
-   dobin _output/bin/${PN}
-   keepdir /etc/kubernetes/manifests /var/log/kubelet /var/lib/kubelet
-   newinitd "${FILESDIR}"/${PN}.initd ${PN}
-   newconfd "${FILESDIR}"/${PN}.confd ${PN}
-   insinto /etc/logrotate.d
-   newins "${FILESDIR}"/${PN}.logrotated ${PN}
-   systemd_dounit "${FILESDIR}"/${PN}.service
-   insinto /etc/kubernetes
-   newins "${FILESDIR}"/${PN}.env ${PN}.env
-}



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

2023-10-04 Thread William Hubbs
commit: 6da1bf696569c23ef2215d041e0a5c7000beda45
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:17:13 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:17:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6da1bf69

sys-cluster/kubectl: drop 1.28.1

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

 sys-cluster/kubectl/Manifest  |  1 -
 sys-cluster/kubectl/kubectl-1.28.1.ebuild | 33 ---
 2 files changed, 34 deletions(-)

diff --git a/sys-cluster/kubectl/Manifest b/sys-cluster/kubectl/Manifest
index 18d7101c2b4c..bb287af627ab 100644
--- a/sys-cluster/kubectl/Manifest
+++ b/sys-cluster/kubectl/Manifest
@@ -5,5 +5,4 @@ DIST kubernetes-1.26.8.tar.gz 38511916 BLAKE2B 
60e1277debcdf5b093629d718552948a2
 DIST kubernetes-1.26.9.tar.gz 38520517 BLAKE2B 
4e49686fd083b1aefb314a1f6acbff91437a5f8e6801c20bcf493a29eb99c419c13cd1246efbe4e6baab0da22a19df189a6cda7047eaa14edf7fa895eeca5535
 SHA512 
9ad42f2ddbd8662b9175d58f06024571e3bc07f3d905f66a9cc5635e41492ed9a9cdb0debe3864990516dacc41afb58265dc918d46a078e77f0889b9ed121427
 DIST kubernetes-1.27.5.tar.gz 38204018 BLAKE2B 
4b44430f7854fca70f650c31388b9d378218d6d4ed116659522542a0e199a19c65e152a4b7235ad5f5fe86753c3ee834ea162da9ff889e384bee780a61a39c42
 SHA512 
9237d03c3cc2374b1e3631f63ac850fc2461628785863c909972c85b74d9fd3c75dc286e0953059c1999457d2a43b474b1ec7b8c633e158aeb88f89e02e874f8
 DIST kubernetes-1.27.6.tar.gz 38249520 BLAKE2B 
942a66075e0ec9aec579908f7a3724be2bc5fb0d8f40d8fd3d025221199e97c44e96a13099bff7a408af9847ef0f5568033146cbb1566a608a572418410cfbdf
 SHA512 
147c0eb819a1ea8c2d49467bceacdefe7693082609bce924bbafe9dd7afc27a576bf6b5d350b63da5fb7bf6cdf20983ac681e48539edda777303f81e4e2a72db
-DIST kubernetes-1.28.1.tar.gz 39881720 BLAKE2B 
9f56e1a9d2c45948c3c4baca99b16e8b73cb2e375088b9d3badd1664ebd178a052855c235637ac2f596cbb02ec440958710f39bd5dbd34e37f74c4260dd8cf65
 SHA512 
cc28483e09f7a3861bf1b8f7867e3295f8879a2c0a2a851ce14f41158c8ea3cb080ae697dc897d8a55efd3a7f0dcbfcca2d39dff6fd9ca0dd1b5762c1010fb09
 DIST kubernetes-1.28.2.tar.gz 39908514 BLAKE2B 
1c681294ce6560e678ee75b912466c09ea127fae0d0caf1707a7ed45e7df825345b913cf52ff4b851bf59fb78619ea89c9de0185e11ff3f13516599c72028e07
 SHA512 
b15948df4251d4f0b50e939354182bd765be2044835ca2fe42d2339309b3dd7a78143f09f41703bafb0f985a049f25aac386204e30db8dc85d554955759cb1e9

diff --git a/sys-cluster/kubectl/kubectl-1.28.1.ebuild 
b/sys-cluster/kubectl/kubectl-1.28.1.ebuild
deleted file mode 100644
index ffa067f3b06c..
--- a/sys-cluster/kubectl/kubectl-1.28.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit bash-completion-r1 go-module
-
-DESCRIPTION="CLI to run commands against Kubernetes clusters"
-HOMEPAGE="https://kubernetes.io;
-SRC_URI="https://github.com/kubernetes/kubernetes/archive/v${PV}.tar.gz -> 
kubernetes-${PV}.tar.gz"
-
-LICENSE="Apache-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="hardened"
-
-BDEPEND=">=dev-lang/go-1.20"
-
-RESTRICT+=" test"
-S="${WORKDIR}/kubernetes-${PV}"
-
-src_compile() {
-   CGO_LDFLAGS="$(usex hardened '-fno-PIC ' '')" \
-   emake -j1 GOFLAGS="" GOLDFLAGS="" LDFLAGS="" WHAT=cmd/${PN}
-}
-
-src_install() {
-   dobin _output/bin/${PN}
-   _output/bin/${PN} completion bash > ${PN}.bash || die
-   _output/bin/${PN} completion zsh > ${PN}.zsh || die
-   newbashcomp ${PN}.bash ${PN}
-   insinto /usr/share/zsh/site-functions
-   newins ${PN}.zsh _${PN}
-}



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

2023-10-04 Thread William Hubbs
commit: 5e20f3434f3a41fb0df8e38076788c1785bb7bc7
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:15:44 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:16:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e20f343

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

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

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

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



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

2023-10-04 Thread William Hubbs
commit: b143224f81ddb1e2e8a94547fd0c63244993e856
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:15:32 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:16:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b143224f

sys-cluster/kubeadm: stabilize 1.28.2 for amd64

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

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

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



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

2023-10-04 Thread William Hubbs
commit: 93a0753b2ccddbb5330f362788f13a20371620e7
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:15:47 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:16:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93a0753b

sys-cluster/kubectl: stabilize 1.28.2 for amd64

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

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

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



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

2023-10-04 Thread William Hubbs
commit: 7461d2cb7439b974758faa612336c5de077dc7e8
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:15:50 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:16:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7461d2cb

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

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

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

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



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

2023-10-04 Thread William Hubbs
commit: 2cef2dd1cec9d9e383c01a8d9eb55aacb7899fad
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:15:52 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:16:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cef2dd1

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

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

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

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



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

2023-10-04 Thread William Hubbs
commit: d1c3abbc58faba2126fb68db21130a58da5a3de3
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:15:45 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:16:07 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1c3abbc

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

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

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

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



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

2023-10-04 Thread William Hubbs
commit: 2f976589ae39f8a7bc4d3056a09c07484b26e8cc
Author: William Hubbs  gentoo  org>
AuthorDate: Wed Oct  4 22:15:48 2023 +
Commit: William Hubbs  gentoo  org>
CommitDate: Wed Oct  4 22:16:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f976589

sys-cluster/kubelet: stabilize 1.28.2 for amd64

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

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

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



[gentoo-commits] repo/gentoo:master commit in: dev-java/jdbc-mysql/

2023-10-04 Thread Conrad Kostecki
commit: 50fd06269c315be66f79374480b5105778de2d11
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Wed Oct  4 17:35:47 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:56:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50fd0626

dev-java/jdbc-mysql: drop 8.0.32

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/33195
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-java/jdbc-mysql/Manifest |  1 -
 dev-java/jdbc-mysql/jdbc-mysql-8.0.32.ebuild | 56 
 2 files changed, 57 deletions(-)

diff --git a/dev-java/jdbc-mysql/Manifest b/dev-java/jdbc-mysql/Manifest
index 3c205b5b2fdb..b39662917f89 100644
--- a/dev-java/jdbc-mysql/Manifest
+++ b/dev-java/jdbc-mysql/Manifest
@@ -1,3 +1,2 @@
-DIST mysql-connector-j-8.0.32.tar.gz 4229102 BLAKE2B 
bb4f89ac9eb4ebc5ed4a8f3d0b63a75d0dbb237e0c434c705d970ec20ec89526d6b0cb11cbceb5e9e5bb485b9d7b17420407d7b01017c7531d5d531c30d8
 SHA512 
96d920cd137c8aadd7669d3bdc84893bb1dd2c76e81128356844c4321104fc6d2debf950ca1dfdfe958d848b16cd91ee475aad7d3d9b52478f8ac58dbf51922b
 DIST mysql-connector-j-8.1.0.tar.gz 4241696 BLAKE2B 
930257a876b1b512b598ebf8397125145bb9d1a438fe33bb55ca208dddfdd29bd436a365cc35b9128cdee6eee436da688dd53cc3ed6cd04efb22d1f5af731863
 SHA512 
f8a7c621397f49981dd7d19e880d92ee051015ad011c027380ac85760dc22ce2f4117fd27b8d72325c5e2bc40a1a9c22e9534f7200208916ee62bbf1e5ad0c75
 DIST oci-java-sdk-common-2.47.0.jar 439209 BLAKE2B 
b3b28bb0cf4b8dbca37bb34df7bb48029901be5d9f7754a2ccce888a9af4a06b3348cd545d480127f942687b9b0d63336c37b5f95ecb9f96111c9388a4bc6053
 SHA512 
73e7376c92d47d81e0630e2ad2d510a483068664874ae31622629dad6dc016d746499c2d29682563e5cdee35ddb6e9e59a2e7557d32e1eeec5fb12206f9d1d6e

diff --git a/dev-java/jdbc-mysql/jdbc-mysql-8.0.32.ebuild 
b/dev-java/jdbc-mysql/jdbc-mysql-8.0.32.ebuild
deleted file mode 100644
index 6b0870af39c9..
--- a/dev-java/jdbc-mysql/jdbc-mysql-8.0.32.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-# Tests disabled, see bug #902723
-JAVA_PKG_IUSE="doc source"
-MAVEN_ID="com.mysql:mysql-connector-j:8.0.32"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-# Bundling a binary version of oci-java-sdk-common
-# https://github.com/oracle/oci-java-sdk/blob/v2.47.0/bmc-common/pom.xml
-OSC="2.47.0"
-
-DESCRIPTION="JDBC Type 4 driver for MySQL"
-HOMEPAGE="https://dev.mysql.com/doc/connector-j/en/;
-SRC_URI="https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-j-${PV}.tar.gz
-   
https://repo1.maven.org/maven2/com/oracle/oci/sdk/oci-java-sdk-common/${OSC}/oci-java-sdk-common-${OSC}.jar;
-
-S="${WORKDIR}/mysql-connector-j-${PV}"
-
-LICENSE="GPL-2-with-MySQL-FLOSS-exception"
-SLOT="0"
-KEYWORDS="amd64 ppc64 x86"
-
-CP_DEPEND="
-   dev-java/c3p0:0
-   dev-java/protobuf-java:0
-   dev-java/slf4j-api:0
-"
-DEPEND=" ${CP_DEPEND}
-   >=virtual/jdk-1.8:*
-"
-RDEPEND=" ${CP_DEPEND}
-   >=virtual/jre-1.8:*
-"
-
-DOCS=( CHANGES README )
-
-JAVA_GENTOO_CLASSPATH_EXTRA="${DISTDIR}/oci-java-sdk-common-${OSC}.jar"
-JAVA_JAR_FILENAME="mysql-connector-j.jar"
-JAVA_RESOURCE_DIRS="src/main/resources"
-JAVA_SRC_DIR=(
-   "src/generated"
-   "src/legacy/java"
-   "src/main/core-api/java"
-   "src/main/core-impl/java"
-   "src/main/protocol-impl/java"
-   "src/main/user-api/java"
-   "src/main/user-impl/java"
-)
-JAVA_TEST_GENTOO_CLASSPATH="junit-4"
-JAVA_TEST_RESOURCE_DIRS="src/test/config"
-JAVA_TEST_SRC_DIR="src/test/java"



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

2023-10-04 Thread Conrad Kostecki
commit: 11e90dd364e64085b406e762fa42d2caefeda72a
Author: Mario Haustein  hrz  tu-chemnitz  de>
AuthorDate: Wed Oct  4 21:19:03 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:55:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11e90dd3

net-analyzer/wtfis: drop 0.6.1-r2, 0.6.2-r1, 0.7.0-r1

Signed-off-by: Mario Haustein  hrz.tu-chemnitz.de>
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-analyzer/wtfis/Manifest  |  3 ---
 net-analyzer/wtfis/wtfis-0.6.1-r2.ebuild | 40 
 net-analyzer/wtfis/wtfis-0.6.2-r1.ebuild | 39 ---
 net-analyzer/wtfis/wtfis-0.7.0-r1.ebuild | 39 ---
 4 files changed, 121 deletions(-)

diff --git a/net-analyzer/wtfis/Manifest b/net-analyzer/wtfis/Manifest
index 209244788be0..be735c0292bc 100644
--- a/net-analyzer/wtfis/Manifest
+++ b/net-analyzer/wtfis/Manifest
@@ -1,4 +1 @@
-DIST wtfis-0.6.1.gh.tar.gz 472803 BLAKE2B 
9764d54d88bc8709b67673200a295bc0520438733b45c98d779e088bbcf57778007caf7fa0dcafed881d94bb6b7216f8f00b30b0b0bd528252c18e449865c382
 SHA512 
75f44416979f7196879a5a3f528caed7154c29f6a79b9ba116bba98f609b5d4bf9f2f78c2eba1e1629fa9f50c60b5678adac98150843fc1ffbedff8bcae3f0f3
-DIST wtfis-0.6.2.gh.tar.gz 473959 BLAKE2B 
776b8cafa5acca6648c168198b47ae9f47b8d72b8454880adcb6e63280f9bf60c83184e5ce3054058232eecbf80ead880d4d454ce3b7ca664d4a0bf1d4451e59
 SHA512 
11ca3987d4ee8e66ad662136b7d4262c26556359c253382fefae3b70aa1c09b95c326a5347299c519eaf54724099402917977ad322eb07dbec765a9d21f39549
-DIST wtfis-0.7.0.gh.tar.gz 545486 BLAKE2B 
ac4272ce7b1a1b6c0f0a3c17af155e4be25ac6e466ddcb983f3b9eb20c3e20be29447092c515e1429fd51c79bc89ed282b46886c05eaae97bb31d5816d57ba57
 SHA512 
678c504ca7c682b1fd0bde345fb6007513e5ecaa5a7dc77f220778ee1de10636b44462e319a8d67b9fbe10c77f29ce2c31692a82777ca91713fd257c28c407f5
 DIST wtfis-0.7.1.gh.tar.gz 548395 BLAKE2B 
fbcc19358a0a357fdc9f4b5f27d4bda60e20a118c3c3b7cdfd90fad956d2ef0375efe4f0c8a3a94bfa8a6657d5bb710eaacb403b8c3d446921b963e3e8909442
 SHA512 
9a77c17e1e922e6d17aba9c6cc7364c8b65bc401cbca311280a4eef958056238aef87c2a8891c1bce5848083d1a7e5e00b0b63ead5ffefdea80ae7baee40c845

diff --git a/net-analyzer/wtfis/wtfis-0.6.1-r2.ebuild 
b/net-analyzer/wtfis/wtfis-0.6.1-r2.ebuild
deleted file mode 100644
index e10203eef827..
--- a/net-analyzer/wtfis/wtfis-0.6.1-r2.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1
-
-DESCRIPTION="Passive hostname, domain and IP lookup tool for non-robots"
-HOMEPAGE="https://github.com/pirxthepilot/wtfis;
-
-if [[ ${PV} = "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/pirxthepilot/wtfis.git;
-else
-   
SRC_URI="https://github.com/pirxthepilot/wtfis/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.gh.tar.gz"
-   KEYWORDS="amd64 ~loong x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
-   =dev-python/pydantic-1.10.2[${PYTHON_USEDEP}]
-   >=dev-python/python-dotenv-0.21.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.28.1[${PYTHON_USEDEP}]
-   >=dev-python/rich-12.6.0[${PYTHON_USEDEP}]
-   =net-analyzer/shodan-1.28.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/freezegun[${PYTHON_USEDEP}]
-   dev-python/rich[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest

diff --git a/net-analyzer/wtfis/wtfis-0.6.2-r1.ebuild 
b/net-analyzer/wtfis/wtfis-0.6.2-r1.ebuild
deleted file mode 100644
index 65fc9e8d4f00..
--- a/net-analyzer/wtfis/wtfis-0.6.2-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=hatchling
-PYTHON_COMPAT=( python3_{10..11} )
-inherit distutils-r1
-
-DESCRIPTION="Passive hostname, domain and IP lookup tool for non-robots"
-HOMEPAGE="https://github.com/pirxthepilot/wtfis;
-
-if [[ ${PV} = "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/pirxthepilot/wtfis.git;
-else
-   
SRC_URI="https://github.com/pirxthepilot/wtfis/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.gh.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
-   >=dev-python/pydantic-2.0.3[${PYTHON_USEDEP}]
-   >=dev-python/python-dotenv-0.21.0[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.28.1[${PYTHON_USEDEP}]
-   >=dev-python/rich-12.6.0[${PYTHON_USEDEP}]
-   =net-analyzer/shodan-1.28.0[${PYTHON_USEDEP}]
-"
-BDEPEND="
-   test? (
-   dev-python/freezegun[${PYTHON_USEDEP}]
-   dev-python/rich[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest

diff --git a/net-analyzer/wtfis/wtfis-0.7.0-r1.ebuild 
b/net-analyzer/wtfis/wtfis-0.7.0-r1.ebuild

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

2023-10-04 Thread Conrad Kostecki
commit: 413037ff293720a019771793c1e1639172409d16
Author: Mario Haustein  hrz  tu-chemnitz  de>
AuthorDate: Wed Oct  4 21:16:11 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:55:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=413037ff

dev-libs/capstone: drop 5.0_rc2-r2, 5.0_rc2-r3, 5.0_rc4, 5.0

Signed-off-by: Mario Haustein  hrz.tu-chemnitz.de>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-libs/capstone/Manifest   |  3 -
 dev-libs/capstone/capstone-5.0.ebuild| 92 ---
 dev-libs/capstone/capstone-5.0_rc2-r2.ebuild | 83 
 dev-libs/capstone/capstone-5.0_rc2-r3.ebuild | 95 
 dev-libs/capstone/capstone-5.0_rc4.ebuild| 91 --
 5 files changed, 364 deletions(-)

diff --git a/dev-libs/capstone/Manifest b/dev-libs/capstone/Manifest
index 48ab56926ed6..3c41eeac7749 100644
--- a/dev-libs/capstone/Manifest
+++ b/dev-libs/capstone/Manifest
@@ -1,5 +1,2 @@
 DIST capstone-4.0.2.tar.gz 3439542 BLAKE2B 
435729a8fef2dce6495635352101b3befe563c8404efdbb0dccabecbe2bded332221665bacdbcd9043dda72b652b6f29c0e1a548cefb8c64d5b6b9dc174ed3d9
 SHA512 
7f93534517307b737422a8825b66b2a1f3e1cca2049465d60ab12595940154aaf843ba40ed348fce58de58b990c19a0caef289060eb72898cb008a88c470970e
 DIST capstone-5.0.1.tar.gz 7654195 BLAKE2B 
83f6681d4c9c748df00daf59f7b33637ab72eee661261c22acae40a6db2def70bb6b5339d731244fdbae6f1e1b0b5b22bb6f60c1390a1bebceb97b3f810aedb0
 SHA512 
350aba77ce2d96b5c25764913591ba80e4497177ae0a8b2c820c6755ee8310848fbfc54e7ccac27fafc2dbc6778118ad92c53d1b5cb601d4fa146dec7d7e11e5
-DIST capstone-5.0.tar.gz 7636912 BLAKE2B 
8980268415a1e66afb9420a4fd4d94dcb78a7022b62a27d7a95ab0eb21a23fc27e2a2e99c0250133f3ff42c589ea7a5dba59c03175ae8f85fe74a80b52790763
 SHA512 
bb345fe7abaaf4932db93702ce713403aa88d1a63ff931be43f0ef72c5b1a7d17b85df6157fc476e236e009a2bd75cabb2534588387d01b3851e756e6c3e444d
-DIST capstone-5.0_rc2.tar.gz 5761725 BLAKE2B 
2f5074fe1881309ee2d36cdfeba10bacefbac5c994d42dd3b08c07fe8b70e298d9d18e9c061dad1a54c6368bdc296fd02f30d77f78b1ae05074764e7041aef2c
 SHA512 
fdc4992399a2add960b12ff2495087a97fa66dce85e87375ba9d19e02b7ea5fb16a7efa93d839c2693378f6367efc9df68f192584ba624443d3b0b197d4dcd9a
-DIST capstone-5.0_rc4.tar.gz 7640978 BLAKE2B 
32f10208ee1789c8818aa321b2d5d11b2aadbc358ae64e862e150d1ddaaa77b9b379175dbbf9c079fb3bc967b40712346e65d7a53003e5dc9ebacab746b821de
 SHA512 
71a685017ad10a25431debe3678e2b29dc3380f78dce3eddaf3ffa26611d1ecc1f191bf930745befc5d45592a8a2887da3a258ab26db460f999d764d3155ac69

diff --git a/dev-libs/capstone/capstone-5.0.ebuild 
b/dev-libs/capstone/capstone-5.0.ebuild
deleted file mode 100644
index f34cfc5ee6a5..
--- a/dev-libs/capstone/capstone-5.0.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..12} )
-DISTUTILS_EXT=1
-DISTUTILS_OPTIONAL=1
-DISTUTILS_USE_PEP517=setuptools
-
-inherit cmake distutils-r1 toolchain-funcs
-
-DESCRIPTION="disassembly/disassembler framework + bindings"
-HOMEPAGE="https://www.capstone-engine.org/;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/capstone-engine/capstone.git;
-   EGIT_REPO_BRANCH="next"
-else
-   MY_PV="${PV/_rc/-rc}-post1"
-   
SRC_URI="https://github.com/capstone-engine/capstone/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}/${PN}-${MY_PV}"
-   KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv x86"
-fi
-
-LICENSE="BSD"
-SLOT="0/5" # libcapstone.so.5
-
-IUSE="python static-libs test"
-RDEPEND="python? ( ${PYTHON_DEPS} )"
-DEPEND="${RDEPEND}
-   python? ( dev-python/setuptools[${PYTHON_USEDEP}] )
-"
-BDEPEND="${DISTUTILS_DEPS}"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-distutils_enable_tests setup.py
-
-if [[ ${PV} == *_rc* ]]; then
-   # Upstream doesn't flag release candidates (bug 858350)
-   QA_PKGCONFIG_VERSION=""
-fi
-
-wrap_python() {
-   local phase=$1
-   shift
-
-   if use python; then
-   pushd bindings/python >/dev/null || die
-   distutils-r1_${phase} "$@"
-   popd >/dev/null || die
-   fi
-}
-
-src_prepare() {
-   tc-export RANLIB
-   cmake_src_prepare
-
-   wrap_python ${FUNCNAME}
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCAPSTONE_BUILD_TESTS="$(usex test)"
-   )
-   cmake_src_configure
-
-   wrap_python ${FUNCNAME}
-}
-
-src_compile() {
-   cmake_src_compile
-
-   wrap_python ${FUNCNAME}
-}
-
-src_test() {
-   cmake_src_test
-
-   wrap_python ${FUNCNAME}
-}
-
-src_install() {
-   cmake_src_install
-
-   wrap_python ${FUNCNAME}
-
-   if ! use static-libs ; then
-   find "${ED}" -name '*.a' -delete || die
-   fi
-}

diff --git 

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

2023-10-04 Thread Conrad Kostecki
commit: 0da6faa380899eea9d7a5abd2f97169f088752a1
Author: Mario Haustein  hrz  tu-chemnitz  de>
AuthorDate: Wed Oct  4 21:20:13 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:55:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0da6faa3

sci-geosciences/grass: drop 8.2.0-r7

Signed-off-by: Mario Haustein  hrz.tu-chemnitz.de>
Closes: https://github.com/gentoo/gentoo/pull/33197
Signed-off-by: Conrad Kostecki  gentoo.org>

 sci-geosciences/grass/Manifest  |   1 -
 sci-geosciences/grass/grass-8.2.0-r7.ebuild | 272 
 2 files changed, 273 deletions(-)

diff --git a/sci-geosciences/grass/Manifest b/sci-geosciences/grass/Manifest
index 5b4153d86306..b14cd23e527a 100644
--- a/sci-geosciences/grass/Manifest
+++ b/sci-geosciences/grass/Manifest
@@ -1,4 +1,3 @@
-DIST grass-8.2.0.tar.gz 66819726 BLAKE2B 
e4398368dd8fd26324709202f42556033a0fea12b6bf5b300c9c416e8758472ceacf40e1d3d540b1aefea88199c0f411462a64fc5e09864582e2e4ce743d67f3
 SHA512 
8179b8704ea688ba412496d0e149c5a47b89fd557b613a49f3addb9721f166cd3aa23ff2549832d9940e5065893e3257ce7287e75018a3468aa7847392398930
 DIST grass-8.2.1.tar.gz 66827246 BLAKE2B 
d48e9169e7a444ed378b968f7d3cd76a6626c3a8d0ced9191c95842e2180178f9fa40a85b0c6a07742f22029b654f93909cacaef2ef2ed017b545183c7f163a3
 SHA512 
3d48519881d2ad0862185aa7541f39fd5ba19e53918655962b66855b330d693a1cfe9370c0283eefd49a2813e5e9f3399edc03e4e1e15518106342b3b105c661
 DIST grass-8.3.0.tar.gz 68481826 BLAKE2B 
dc91895887356ec655c0f12f18654522976ab0b942fb1751fca5b49d4d06a7ec63f83e890b75f7c509ba128da58587e532554ba99d59b6cefd6bbf111415
 SHA512 
0d6c0a9ec7038cf707f868144aec3fb4c59c72c56b9cff4c7b2f256c90cbd7e45c1851a7f7a37e7b9ac42f6bbaecb4e8fa4ad7d5eb0f88adf9c2b3bfa23ecf15
 DIST grass-8.3.0RC1.tar.gz 67872978 BLAKE2B 
5394d929e5d9aaed157a87a5eef720403cbb82e0900a591f38d7e88c570dbcc22e4aa4cd6bd060f09736700f48426c40da6cdcc22abc6bee8d04af886aa9b805
 SHA512 
6a74d142061b9b6d7eebc9226ae7b3c0201f8153c5e9d95236ceab143a6a6613d6aba03de59180817ff73f64ed34c5c289bd2d370352f52a8d5eab4d61044ac7

diff --git a/sci-geosciences/grass/grass-8.2.0-r7.ebuild 
b/sci-geosciences/grass/grass-8.2.0-r7.ebuild
deleted file mode 100644
index 356ff4cb62b9..
--- a/sci-geosciences/grass/grass-8.2.0-r7.ebuild
+++ /dev/null
@@ -1,272 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-PYTHON_REQ_USE="sqlite"  # bug 572440
-
-inherit autotools desktop python-single-r1 toolchain-funcs xdg
-
-DESCRIPTION="A free GIS with raster and vector functionality, as well as 3D 
vizualization"
-HOMEPAGE="https://grass.osgeo.org/;
-
-LICENSE="GPL-2"
-SLOT="0/8.2"
-
-GVERSION=${SLOT#*/}
-MY_PM="${PN}${GVERSION}"
-MY_PM="${MY_PM/.}"
-
-if [[ ${PV} =~ "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/OSGeo/grass.git;
-else
-   MY_P="${P/_rc/RC}"
-   SRC_URI="https://grass.osgeo.org/${MY_PM}/source/${MY_P}.tar.gz;
-   if [[ ${PV} != *_rc* ]] ; then
-   KEYWORDS="amd64 ~ppc ~x86"
-   fi
-
-   S="${WORKDIR}/${MY_P}"
-fi
-
-IUSE="blas cxx fftw geos lapack las mysql netcdf nls odbc opencl opengl openmp 
png postgres readline sqlite threads tiff truetype X zstd"
-REQUIRED_USE="
-   ${PYTHON_REQUIRED_USE}
-   opengl? ( X )"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   >=app-admin/eselect-1.2
-   $(python_gen_cond_dep '
-   dev-python/numpy[${PYTHON_USEDEP}]
-   dev-python/six[${PYTHON_USEDEP}]
-   ')
-   sci-libs/gdal:=
-   sys-libs/gdbm:=
-   sys-libs/ncurses:=
-   sci-libs/proj:=
-   sys-libs/zlib
-   media-libs/libglvnd
-   media-libs/glu
-   blas? (
-   virtual/cblas[eselect-ldso(+)]
-   virtual/blas[eselect-ldso(+)]
-   )
-   fftw? ( sci-libs/fftw:3.0= )
-   geos? ( sci-libs/geos:= )
-   lapack? ( virtual/lapack[eselect-ldso(+)] )
-   las? ( sci-geosciences/liblas )
-   mysql? ( dev-db/mysql-connector-c:= )
-   netcdf? ( sci-libs/netcdf:= )
-   odbc? ( dev-db/unixODBC )
-   opencl? ( virtual/opencl )
-   opengl? ( virtual/opengl )
-   png? ( media-libs/libpng:= )
-   postgres? ( >=dev-db/postgresql-8.4:= )
-   readline? ( sys-libs/readline:= )
-   sqlite? ( dev-db/sqlite:3 )
-   tiff? ( media-libs/tiff:= )
-   truetype? ( media-libs/freetype:2 )
-   X? (
-   dev-python/wxpython:4.0
-   x11-libs/cairo[X]
-   x11-libs/libICE
-   x11-libs/libSM
-   x11-libs/libX11
-   x11-libs/libXext
-   x11-libs/libXt
-   )
-   zstd? ( app-arch/zstd:= )"
-DEPEND="${RDEPEND}
-   X? ( x11-base/xorg-proto )"
-BDEPEND="
-   sys-devel/bison
-   sys-devel/flex
-   sys-devel/gettext
-   virtual/pkgconfig
-   X? ( dev-lang/swig )"
-

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

2023-10-04 Thread Conrad Kostecki
commit: 4916c381a9b96c915b89a483dcc2441f11bac743
Author: Mario Haustein  hrz  tu-chemnitz  de>
AuthorDate: Wed Oct  4 21:14:28 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:55:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4916c381

dev-util/ROPgadget: drop 7.3-r1

Signed-off-by: Mario Haustein  hrz.tu-chemnitz.de>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-util/ROPgadget/Manifest|  1 -
 dev-util/ROPgadget/ROPgadget-7.3-r1.ebuild | 38 --
 2 files changed, 39 deletions(-)

diff --git a/dev-util/ROPgadget/Manifest b/dev-util/ROPgadget/Manifest
index 6af1390f7fdb..b33ee449d749 100644
--- a/dev-util/ROPgadget/Manifest
+++ b/dev-util/ROPgadget/Manifest
@@ -1,2 +1 @@
-DIST ROPgadget-7.3.gh.tar.gz 10105592 BLAKE2B 
b5bfa7bbac6875c2a417c65f3415603c07fda64f96416bba7fc4d6ea653c81b97b7dc4d8573ad53f3353862a218afb15aeaf238880d82a568b6cbe1bb276eb99
 SHA512 
58457f77c24a1cc4cc703c75aed9303f63ce3eba699210239603e274f134ec06d73b2c519b78176fcaaf6794a81c5a59bb9bafeaa429f7085443372e1087e173
 DIST ROPgadget-7.4.gh.tar.gz 10110520 BLAKE2B 
1c5dc52d377b4b580aa72351ce7863c9f819b39cbf0732b33eb8330d0229166250978fde123f8bf1e3a45d5fe791b17da1a93a49c8c45755d5dc1b7f8e05bf52
 SHA512 
0906cf7e916967ac5f446778ddc4ffdca78b8cf23c584968c116fdd43bc8488624104fbb78380516a54356dc4c4d50c5d10cc462bdd507435d5f70f8b9d51fa7

diff --git a/dev-util/ROPgadget/ROPgadget-7.3-r1.ebuild 
b/dev-util/ROPgadget/ROPgadget-7.3-r1.ebuild
deleted file mode 100644
index 3d578eb0d617..
--- a/dev-util/ROPgadget/ROPgadget-7.3-r1.ebuild
+++ /dev/null
@@ -1,38 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-PYTHON_REQ_USE="sqlite"
-
-inherit distutils-r1
-
-DESCRIPTION="Search for gadgets in binaries to facilitate your ROP 
exploitation"
-HOMEPAGE="https://shell-storm.org/project/ROPgadget/;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/JonathanSalwan/ROPgadget;
-else
-   
SRC_URI="https://github.com/JonathanSalwan/ROPgadget/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
-   KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-
-# Version 7.3 and older is incompatible to >=dev-libs/capstone-5.0_rc3.
-# See https://bugs.gentoo.org/912164 and
-# https://github.com/JonathanSalwan/ROPgadget/issues/190.
-RDEPEND="
-   ${PYTHON_DEPS}
-   ~dev-libs/capstone-5.0_rc2[python,${PYTHON_USEDEP}]
-"
-
-src_test() {
-   pushd test-suite-binaries || die
-   ./test.sh || die
-   popd || die
-}



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

2023-10-04 Thread Conrad Kostecki
commit: dc7382b89a41d0ba39c82c1cd6290b7eb1adf3dd
Author: Mario Haustein  hrz  tu-chemnitz  de>
AuthorDate: Wed Oct  4 21:15:05 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:55:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc7382b8

dev-util/gef: drop 2023.06

Signed-off-by: Mario Haustein  hrz.tu-chemnitz.de>
Signed-off-by: Conrad Kostecki  gentoo.org>

 dev-util/gef/Manifest   |  1 -
 dev-util/gef/gef-2023.06.ebuild | 82 -
 2 files changed, 83 deletions(-)

diff --git a/dev-util/gef/Manifest b/dev-util/gef/Manifest
index 3fa134dbf80d..0ac5e0cbea13 100644
--- a/dev-util/gef/Manifest
+++ b/dev-util/gef/Manifest
@@ -1,2 +1 @@
-DIST gef-2023.06.tar.gz 187126 BLAKE2B 
e44606249d42760caf4e47f1b2f5e4592255fd8b81b28cab313352d10dcbc47a79a0130e102cc2618fe88dc47a5589ed6bee3e7d80878cc66f5e9abd775c103e
 SHA512 
5362234ae6b753abe719280640148978cd25f535249a1ad9311ebd66f99138d59d5b9f07e9e93ebe00aab4702c73229c2f3d92e2d70fb5daf3f30a49e4d3b8ff
 DIST gef-2023.08.tar.gz 230347 BLAKE2B 
b9b8fed1bdf81fa870583921c4bdd6df2d98112748c939da48acae7e636ec6e22dc751d8ed75e52e72ff0aa04835720293f0e82e99ff614c447f2a614c76e48a
 SHA512 
d3a26826b991db7e8d475da945b16933ce046dd64381f5df60ea0fe310d0325f39b05142de5f75abbbd5693c93ad70ff25e982d0ff3526a6fe66fd7526a359c5

diff --git a/dev-util/gef/gef-2023.06.ebuild b/dev-util/gef/gef-2023.06.ebuild
deleted file mode 100644
index de47a718664f..
--- a/dev-util/gef/gef-2023.06.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-
-DOCS_BUILDER="mkdocs"
-DOCS_DEPEND="
-   dev-python/mkdocs-material
-"
-
-inherit python-single-r1 docs wrapper
-
-DESCRIPTION="A GDB Enhanced Features for exploit devs & reversers"
-HOMEPAGE="https://github.com/hugsy/gef;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/hugsy/gef;
-else
-   SRC_URI="https://github.com/hugsy/gef/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="test"
-# Seem to hang right now?
-RESTRICT="!test? ( test ) test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="
-   ${PYTHON_DEPS}
-   dev-util/ropper[${PYTHON_SINGLE_USEDEP}]
-   sys-devel/gdb[python,${PYTHON_SINGLE_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-libs/capstone[python,${PYTHON_USEDEP}]
-   dev-libs/keystone[python,${PYTHON_USEDEP}]
-   dev-python/pylint[${PYTHON_USEDEP}]
-   dev-util/unicorn[python,${PYTHON_USEDEP}]
-   ')"
-
-BDEPEND="
-   test? (
-   $(python_gen_cond_dep '
-   dev-python/pytest[${PYTHON_USEDEP}]
-   dev-python/pytest-xdist[${PYTHON_USEDEP}]
-   ')
-   )"
-
-DOCS=( README.md )
-
-src_prepare() {
-   default
-
-   sed -i -e '/pylint/d' tests/requirements.txt || die
-}
-
-src_compile() {
-   # Tries to compile tests
-   :
-
-   docs_compile
-}
-
-src_install() {
-   insinto "/usr/share/${PN}"
-   doins -r *.py
-
-   python_optimize "${ED}/usr/share/${PN}"
-
-   make_wrapper "gdb-gef" \
-   "gdb -x \"/usr/share/${PN}/gef.py\"" || die
-
-   einstalldocs
-}
-
-pkg_postinst() {
-   einfo "\nUsage:"
-   einfo "~$ gdb-gef \n"
-}



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

2023-10-04 Thread Conrad Kostecki
commit: db994a09a2c4e889ca690993c916050c66e373e1
Author: Mario Haustein  hrz  tu-chemnitz  de>
AuthorDate: Wed Oct  4 21:18:33 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:55:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db994a09

net-analyzer/shodan: drop 1.28.0

Signed-off-by: Mario Haustein  hrz.tu-chemnitz.de>
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-analyzer/shodan/Manifest |  1 -
 net-analyzer/shodan/shodan-1.28.0.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/net-analyzer/shodan/Manifest b/net-analyzer/shodan/Manifest
index ccf8ff62fc9a..c6bc514144b6 100644
--- a/net-analyzer/shodan/Manifest
+++ b/net-analyzer/shodan/Manifest
@@ -1,2 +1 @@
-DIST shodan-1.28.0.gh.tar.gz 51277 BLAKE2B 
e2cd4c322ccdd1d81c998dc810c56b85de903afe9c3a59adc231d382779806909a78e994ff163639468dd9af1e8f7a547953b0e2304ac167ed7cf9c437d69adc
 SHA512 
cb2476faf2c435d29823635e5262bdf6b224b2a5f19b77513fb6e920f4d042b15a7fd23cea7e2a29bc73b00be188dfac16f945fba090da28a72d0342357232c3
 DIST shodan-1.30.0.tar.gz 57790 BLAKE2B 
1c3c030e84d31dc79ad737b71e63ce6c9218441be04ec94b4144013545e0d7dd79f1e25e51af1811cdd624f2f32b128e5aeb7dbc8d71b21741712733ca4b6d39
 SHA512 
996555945f4d874cb0fa3c596e6fad9298f7af396c0e94d75b8e9e103d4a2d7dd33ed8af24a218c753117231a0713caa971106f2152bc429d7c8b5c07b00dbc6

diff --git a/net-analyzer/shodan/shodan-1.28.0.ebuild 
b/net-analyzer/shodan/shodan-1.28.0.ebuild
deleted file mode 100644
index 8c7d7860bc86..
--- a/net-analyzer/shodan/shodan-1.28.0.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-inherit distutils-r1
-
-DESCRIPTION="The official Python library for Shodan"
-HOMEPAGE="https://github.com/achillean/shodan-python;
-
-MY_PN="${PN}-python"
-
-if [[ ${PV} = "" ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/achillean/shodan-python.git;
-else
-   
SRC_URI="https://github.com/achillean/shodan-python/archive/refs/tags/${PV}.tar.gz
 -> ${P}.gh.tar.gz"
-   S="${WORKDIR}/${MY_PN}-${PV}"
-   KEYWORDS="amd64 ~loong x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-RDEPEND="
-   dev-python/click[${PYTHON_USEDEP}]
-   dev-python/click-plugins[${PYTHON_USEDEP}]
-   dev-python/colorama[${PYTHON_USEDEP}]
-   >=dev-python/requests-2.2.1[${PYTHON_USEDEP}]
-   dev-python/xlsxwriter[${PYTHON_USEDEP}]
-"
-
-# Test requires API key
-RESTRICT="test"



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

2023-10-04 Thread Conrad Kostecki
commit: 4c378502eba044b9a0417157c211ba75623db718
Author: Robert Förster  gmake  de>
AuthorDate: Wed Oct  4 21:20:52 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:54:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c378502

net-im/swift: fix soname

Signed-off-by: Robert Förster  gmake.de>
Closes: https://github.com/gentoo/gentoo/pull/33198
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-im/swift/{swift-4.0.3.ebuild => swift-4.0.3-r1.ebuild} | 5 +
 1 file changed, 5 insertions(+)

diff --git a/net-im/swift/swift-4.0.3.ebuild 
b/net-im/swift/swift-4.0.3-r1.ebuild
similarity index 97%
rename from net-im/swift/swift-4.0.3.ebuild
rename to net-im/swift/swift-4.0.3-r1.ebuild
index 36ac7c1ee8ed..0cd230963430 100644
--- a/net-im/swift/swift-4.0.3.ebuild
+++ b/net-im/swift/swift-4.0.3-r1.ebuild
@@ -112,6 +112,11 @@ src_prepare() {
else
rm -fr 3rdParty || die
fi
+
+   if [[ ! -f VERSION.swift ]] ; then
+   # Source tarball from git doesn't include this file
+   echo "${PV}" > VERSION.swift || die
+   fi
 }
 
 src_configure() {



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

2023-10-04 Thread Mart Raudsepp
commit: 98c5a36673da7197ca03bef05cac3b753ae5a888
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Oct  4 21:43:59 2023 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Oct  4 21:46:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98c5a366

package.mask: Last rite media-plugins/gst-plugins-ofa

Bug: https://bugs.gentoo.org/915189
Closes: https://bugs.gentoo.org/907439
Signed-off-by: Mart Raudsepp  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 480f49b45b41..3bb837b104a3 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -33,6 +33,11 @@
 
 #--- END OF EXAMPLES ---
 
+# Mart Raudsepp  (2023-10-04)
+# GStreamer plugin removed upstream. The database used by this music 
fingerprint
+# plugin has been defunct for a while. Removal on 2023-11-04. Bug #915189.
+media-plugins/gst-plugins-ofa
+
 # Michał Górny  (2023-10-04)
 # The project was abandoned upstream.  The test suite is broken
 # with python3.12.  It was used only as an optional test dep



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

2023-10-04 Thread Conrad Kostecki
commit: 27462ada8da739dd8e26c60fdd3d270f1b54a959
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:43:35 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=27462ada

sys-cluster/kube-apiserver: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...r-1.28.0-make-gomaxprocs-install-optional.patch | 78 --
 1 file changed, 78 deletions(-)

diff --git 
a/sys-cluster/kube-apiserver/files/kube-apiserver-1.28.0-make-gomaxprocs-install-optional.patch
 
b/sys-cluster/kube-apiserver/files/kube-apiserver-1.28.0-make-gomaxprocs-install-optional.patch
deleted file mode 100644
index 1a8935b31c9c..
--- 
a/sys-cluster/kube-apiserver/files/kube-apiserver-1.28.0-make-gomaxprocs-install-optional.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From cce3f6ffa796ea416021b0d62567a3f52b979567 Mon Sep 17 00:00:00 2001
-From: Jordan Liggitt 
-Date: Wed, 16 Aug 2023 09:33:02 -0400
-Subject: [PATCH 2/2] Make gomaxprocs install optional, limit to tests
-

- hack/lib/golang.sh   | 25 +++--
- hack/make-rules/test-e2e-node.sh |  1 +
- hack/make-rules/test.sh  |  1 +
- 3 files changed, 17 insertions(+), 10 deletions(-)
-
-diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
-index 66772f08a81..983ff368e25 100755
 a/hack/lib/golang.sh
-+++ b/hack/lib/golang.sh
-@@ -556,20 +556,25 @@ kube::golang::setup_env() {
- 
-   # This seems to matter to some tools
-   export GO15VENDOREXPERIMENT=1
-+}
- 
-+kube::golang::setup_gomaxprocs() {
-   # GOMAXPROCS by default does not reflect the number of cpu(s) available
-   # when running in a container, please see 
https://github.com/golang/go/issues/33803
--  if ! command -v ncpu >/dev/null 2>&1; then
--# shellcheck disable=SC2164
--pushd "${KUBE_ROOT}/hack/tools" >/dev/null
--GO111MODULE=on go install ./ncpu
--# shellcheck disable=SC2164
--popd >/dev/null
-+  if [[ -z "${GOMAXPROCS:-}" ]]; then
-+if ! command -v ncpu >/dev/null 2>&1; then
-+  # shellcheck disable=SC2164
-+  pushd "${KUBE_ROOT}/hack/tools" >/dev/null
-+  GO111MODULE=on go install ./ncpu || echo "Will not automatically set 
GOMAXPROCS"
-+  # shellcheck disable=SC2164
-+  popd >/dev/null
-+fi
-+if command -v ncpu >/dev/null 2>&1; then
-+  GOMAXPROCS=$(ncpu)
-+  export GOMAXPROCS
-+  kube::log::status "Set GOMAXPROCS automatically to ${GOMAXPROCS}"
-+fi
-   fi
--
--  GOMAXPROCS=${GOMAXPROCS:-$(ncpu)}
--  export GOMAXPROCS
--  kube::log::status "Setting GOMAXPROCS: ${GOMAXPROCS}"
- }
- 
- # This will take binaries from $GOPATH/bin and copy them to the appropriate
-diff --git a/hack/make-rules/test-e2e-node.sh 
b/hack/make-rules/test-e2e-node.sh
-index 43dde0c740f..49e3e04ac71 100755
 a/hack/make-rules/test-e2e-node.sh
-+++ b/hack/make-rules/test-e2e-node.sh
-@@ -18,6 +18,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
-diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh
-index e9074678a8f..4aa72730d83 100755
 a/hack/make-rules/test.sh
-+++ b/hack/make-rules/test.sh
-@@ -22,6 +22,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
--- 
-2.41.0
-



[gentoo-commits] repo/gentoo:master commit in: net-wireless/gnome-bluetooth/files/

2023-10-04 Thread Conrad Kostecki
commit: e2fd2ce78988962d53cca1bb81b21d5bff6ba624
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Oct  4 15:49:33 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:44:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e2fd2ce7

net-wireless/gnome-bluetooth: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33191
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../gnome-bluetooth/files/61-gnome-bluetooth.rules| 11 ---
 .../gnome-bluetooth-3.34.5-meson-0.61-build.patch | 19 ---
 2 files changed, 30 deletions(-)

diff --git a/net-wireless/gnome-bluetooth/files/61-gnome-bluetooth.rules 
b/net-wireless/gnome-bluetooth/files/61-gnome-bluetooth.rules
deleted file mode 100644
index 506574082122..
--- a/net-wireless/gnome-bluetooth/files/61-gnome-bluetooth.rules
+++ /dev/null
@@ -1,11 +0,0 @@
-# Get access to /dev/rfkill for users
-# See https://bugzilla.redhat.com/show_bug.cgi?id=514798
-#
-# Updated for udev >= 154
-# http://bugs.debian.org/582188
-# https://bugzilla.redhat.com/show_bug.cgi?id=588660
-
-ENV{ACL_MANAGE}=="0", GOTO="gnome_bluetooth_end"
-ACTION!="add|change", GOTO="gnome_bluetooth_end"
-KERNEL=="rfkill", GROUP="plugdev", MODE="0664", TAG+="udev-acl"
-LABEL="gnome_bluetooth_end"

diff --git 
a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-3.34.5-meson-0.61-build.patch
 
b/net-wireless/gnome-bluetooth/files/gnome-bluetooth-3.34.5-meson-0.61-build.patch
deleted file mode 100644
index 2e6c912b3d5d..
--- 
a/net-wireless/gnome-bluetooth/files/gnome-bluetooth-3.34.5-meson-0.61-build.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-https://gitlab.gnome.org/GNOME/gnome-bluetooth/-/commit/755fd758f866d3a3f7ca482942beee749f13a91e
-https://bugs.gentoo.org/831430
-
-From: Bastien Nocera 
-Date: Fri, 7 Jan 2022 12:51:22 +0100
-Subject: [PATCH] build: Fix build for newer versions of meson
-
-sendto/meson.build:24:5: ERROR: Function does not take positional arguments.
 a/sendto/meson.build
-+++ b/sendto/meson.build
-@@ -22,7 +22,6 @@ desktop_in = configure_file(
- )
- 
- i18n.merge_file (
--  desktop,
-   type: 'desktop',
-   input: desktop_in,
-   output: desktop,
-GitLab



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-firmware/files/

2023-10-04 Thread Conrad Kostecki
commit: 10a40bedf2d2698e7bbb43eb0933604a71d32ad6
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Oct  4 15:48:20 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:44:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10a40bed

gnome-extra/gnome-firmware: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33187
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/gnome-firmware-43.0-build-failure.patch  | 26 --
 1 file changed, 26 deletions(-)

diff --git 
a/gnome-extra/gnome-firmware/files/gnome-firmware-43.0-build-failure.patch 
b/gnome-extra/gnome-firmware/files/gnome-firmware-43.0-build-failure.patch
deleted file mode 100644
index 2ea2b1938230..
--- a/gnome-extra/gnome-firmware/files/gnome-firmware-43.0-build-failure.patch
+++ /dev/null
@@ -1,26 +0,0 @@
-From e8a5b2ec185d78c918305cd85962823c6b4ef363 Mon Sep 17 00:00:00 2001
-From: Richard Hughes 
-Date: Fri, 14 Oct 2022 15:15:23 +0100
-Subject: [PATCH] Fix compile failure with -Dsystemd=false
-
-Fixes https://gitlab.gnome.org/World/gnome-firmware/-/issues/47

- src/gfu-common.c | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/src/gfu-common.c b/src/gfu-common.c
-index dfb1d30..bf83778 100644
 a/src/gfu-common.c
-+++ b/src/gfu-common.c
-@@ -234,7 +234,7 @@ gfu_common_system_shutdown(GError **error)
- #else
-   g_set_error_literal(error,
-   FWUPD_ERROR,
--  FWUPD_ERROR_INVALID_ARGS,
-+  FWUPD_ERROR_NOT_SUPPORTED,
-   "No supported backend compiled in to perform the 
operation.");
- #endif
-   return val != NULL;
--- 
-GitLab
-



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

2023-10-04 Thread Conrad Kostecki
commit: 3c2b9c5ffafe4fc17f5d98344d30bfe8bd25548c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Sep 26 18:49:56 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3c2b9c5f

net-misc/gns3-gui: remove old

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-misc/gns3-gui/Manifest   |  1 -
 net-misc/gns3-gui/gns3-gui-2.2.41.ebuild | 40 
 2 files changed, 41 deletions(-)

diff --git a/net-misc/gns3-gui/Manifest b/net-misc/gns3-gui/Manifest
index cd51ae43be52..3b2dece1b459 100644
--- a/net-misc/gns3-gui/Manifest
+++ b/net-misc/gns3-gui/Manifest
@@ -1,3 +1,2 @@
-DIST gns3-gui-2.2.41.tar.gz 5046775 BLAKE2B 
8ca83ed58312bd2cf0c0e854cebe6001121bf21e9f26804b779fc81ec06689c154d704b9cf2e7a5d57608519c3fbe724b07437b64c5840dd2ad6119f38669a29
 SHA512 
b86e23808c6158d6811a51901aff3f10c9722ca51389c2d241c6d174992299c83529014e6a098a2d5777fabda212ffb2731025843cc317f8560868bcb8cb2195
 DIST gns3-gui-2.2.42.tar.gz 5048413 BLAKE2B 
19c4f1977797af0a3c2bbed926cc8f9361840658dbdc25ad9a2972bec21749c84d5cdc477079f01b8c354e21e9663b27bcbc09f974c914c188f98ec151b7bd67
 SHA512 
19940857308da3810047cec9285c34b0011e4dc44a1316bf2fe5042e0f255546e8e3d2d4788a1f70baedb498a295223916633f4950ef9dbfa19b8e72c7545176
 DIST gns3-gui-2.2.43.tar.gz 5055465 BLAKE2B 
21e21d1b1e77151d385d210270dc909e3ed938c2220360e038820d9e30a1ca126122ccfe0f582e392143aeac364274bc96dbed1a3ea23cd29e0d9dbc858af5a5
 SHA512 
167961caa13e7bc7abea3753c69e883e864e5fbf543f12117a0653f203ef92d46214f083c715c1fad3ab4a52504fa714a2901d0caa4c0048e26cae9fa7ee5a31

diff --git a/net-misc/gns3-gui/gns3-gui-2.2.41.ebuild 
b/net-misc/gns3-gui/gns3-gui-2.2.41.ebuild
deleted file mode 100644
index 50f98a4b6407..
--- a/net-misc/gns3-gui/gns3-gui-2.2.41.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_11 )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 virtualx xdg
-
-DESCRIPTION="Graphical Network Simulator"
-HOMEPAGE="https://www.gns3.com https://github.com/GNS3/gns3-gui;
-SRC_URI="https://github.com/GNS3/gns3-gui/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-#net-misc/gns3-server version should always match gns3-gui version
-RDEPEND="
-   >=dev-python/distro-1.8.0[${PYTHON_USEDEP}]
-   >=dev-python/jsonschema-4.17.3[${PYTHON_USEDEP}]
-   >=dev-python/psutil-5.9.4[${PYTHON_USEDEP}]
-   >=dev-python/sentry-sdk-1.17.0[${PYTHON_USEDEP}]
-   ~net-misc/gns3-server-${PV}[${PYTHON_USEDEP}]
-   dev-python/PyQt5[gui,network,svg,websockets,widgets,${PYTHON_USEDEP}]
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   default
-
-   # newer python packages are fine
-   sed -i -e 's/[<>=].*//' requirements.txt || die
-}
-
-src_test() {
-   virtx distutils-r1_src_test
-}



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

2023-10-04 Thread Conrad Kostecki
commit: 46d4067ed7e3ca4d6183e51ffd30b9b1598efc7e
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:44:19 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46d4067e

sys-cluster/kube-proxy: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...y-1.28.0-make-gomaxprocs-install-optional.patch | 78 --
 1 file changed, 78 deletions(-)

diff --git 
a/sys-cluster/kube-proxy/files/kube-proxy-1.28.0-make-gomaxprocs-install-optional.patch
 
b/sys-cluster/kube-proxy/files/kube-proxy-1.28.0-make-gomaxprocs-install-optional.patch
deleted file mode 100644
index 1a8935b31c9c..
--- 
a/sys-cluster/kube-proxy/files/kube-proxy-1.28.0-make-gomaxprocs-install-optional.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From cce3f6ffa796ea416021b0d62567a3f52b979567 Mon Sep 17 00:00:00 2001
-From: Jordan Liggitt 
-Date: Wed, 16 Aug 2023 09:33:02 -0400
-Subject: [PATCH 2/2] Make gomaxprocs install optional, limit to tests
-

- hack/lib/golang.sh   | 25 +++--
- hack/make-rules/test-e2e-node.sh |  1 +
- hack/make-rules/test.sh  |  1 +
- 3 files changed, 17 insertions(+), 10 deletions(-)
-
-diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
-index 66772f08a81..983ff368e25 100755
 a/hack/lib/golang.sh
-+++ b/hack/lib/golang.sh
-@@ -556,20 +556,25 @@ kube::golang::setup_env() {
- 
-   # This seems to matter to some tools
-   export GO15VENDOREXPERIMENT=1
-+}
- 
-+kube::golang::setup_gomaxprocs() {
-   # GOMAXPROCS by default does not reflect the number of cpu(s) available
-   # when running in a container, please see 
https://github.com/golang/go/issues/33803
--  if ! command -v ncpu >/dev/null 2>&1; then
--# shellcheck disable=SC2164
--pushd "${KUBE_ROOT}/hack/tools" >/dev/null
--GO111MODULE=on go install ./ncpu
--# shellcheck disable=SC2164
--popd >/dev/null
-+  if [[ -z "${GOMAXPROCS:-}" ]]; then
-+if ! command -v ncpu >/dev/null 2>&1; then
-+  # shellcheck disable=SC2164
-+  pushd "${KUBE_ROOT}/hack/tools" >/dev/null
-+  GO111MODULE=on go install ./ncpu || echo "Will not automatically set 
GOMAXPROCS"
-+  # shellcheck disable=SC2164
-+  popd >/dev/null
-+fi
-+if command -v ncpu >/dev/null 2>&1; then
-+  GOMAXPROCS=$(ncpu)
-+  export GOMAXPROCS
-+  kube::log::status "Set GOMAXPROCS automatically to ${GOMAXPROCS}"
-+fi
-   fi
--
--  GOMAXPROCS=${GOMAXPROCS:-$(ncpu)}
--  export GOMAXPROCS
--  kube::log::status "Setting GOMAXPROCS: ${GOMAXPROCS}"
- }
- 
- # This will take binaries from $GOPATH/bin and copy them to the appropriate
-diff --git a/hack/make-rules/test-e2e-node.sh 
b/hack/make-rules/test-e2e-node.sh
-index 43dde0c740f..49e3e04ac71 100755
 a/hack/make-rules/test-e2e-node.sh
-+++ b/hack/make-rules/test-e2e-node.sh
-@@ -18,6 +18,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
-diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh
-index e9074678a8f..4aa72730d83 100755
 a/hack/make-rules/test.sh
-+++ b/hack/make-rules/test.sh
-@@ -22,6 +22,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
--- 
-2.41.0
-



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

2023-10-04 Thread Conrad Kostecki
commit: fadece2ca9d03b05042b485d836c994fcc14df6a
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Sep 26 18:48:17 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fadece2c

net-misc/gns3-server: version bump (2.2.43)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-misc/gns3-server/Manifest  |  1 +
 net-misc/gns3-server/gns3-server-2.2.43.ebuild | 71 ++
 2 files changed, 72 insertions(+)

diff --git a/net-misc/gns3-server/Manifest b/net-misc/gns3-server/Manifest
index 836d982115b0..f7562954cd32 100644
--- a/net-misc/gns3-server/Manifest
+++ b/net-misc/gns3-server/Manifest
@@ -1,2 +1,3 @@
 DIST gns3-server-2.2.41.tar.gz 10736066 BLAKE2B 
c2ab5c99a67a8cd79a898e244a77eea13477c6030b5b11a63c1747802ff309dc77ee62a6ad7191c7d8bf84d62badecf924379eb58afb4d4f111a9d34380d4aec
 SHA512 
ec34bb81e96034a36f4bc7aeadaf5ae221be23069612477e5af9c908e3764e44029d22115eac602e0a26fedc99d67d4ed64cbf5da12c6a89bf00c3cd99d2ab7b
 DIST gns3-server-2.2.42.tar.gz 10735078 BLAKE2B 
424f73fcb7377a518873b4880b77b6e057d8293fb96073eca59224b0e5e5c1e50114f30c564b861e91769380d9d15b3c2c28a8f4cec3358282902af09eeccd30
 SHA512 
9982fabcdd587b090833b9137124a0accb2990cee91ca5d19d8ee691f807d547670a38b2168d0f71465088a3971eac73e101cc284922732b5132ac47b84d84f6
+DIST gns3-server-2.2.43.tar.gz 10734029 BLAKE2B 
c417557823c94bb62a08ab2401e7d6a6e46ea83961cfee87f5b134139f7f0237ff5c214661a2abd30d62a8806c1ea556db9fa9d7ff1e608cfa84142409315832
 SHA512 
3b086f6c14b4258f4f0eb72e9839c6499530b6f0866ba6adc72a8fd301c99919bf4fc36b7d64e61035d81f193faee8b161c304f1a445a2cab5ca9c42739796f4

diff --git a/net-misc/gns3-server/gns3-server-2.2.43.ebuild 
b/net-misc/gns3-server/gns3-server-2.2.43.ebuild
new file mode 100644
index ..c76329a46375
--- /dev/null
+++ b/net-misc/gns3-server/gns3-server-2.2.43.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_11 )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1 optfeature systemd
+
+DESCRIPTION="GNS3 server to asynchronously manage emulators"
+HOMEPAGE="https://www.gns3.com https://github.com/GNS3/gns3-server;
+SRC_URI="https://github.com/GNS3/gns3-server/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   acct-group/gns3
+   acct-user/gns3
+   app-emulation/dynamips
+   >=dev-python/aiofiles-23.2.1[${PYTHON_USEDEP}]
+   >=dev-python/aiohttp-3.8.5[${PYTHON_USEDEP}]
+   >=dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}]
+   >=dev-python/async-timeout-4.0.2[${PYTHON_USEDEP}]
+   >=dev-python/distro-1.8.0[${PYTHON_USEDEP}]
+   >=dev-python/jinja-3.1.2[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-4.17.3[${PYTHON_USEDEP}]
+   >=dev-python/psutil-5.9.5[${PYTHON_USEDEP}]
+   >=dev-python/py-cpuinfo-9.0.0[${PYTHON_USEDEP}]
+   >=dev-python/sentry-sdk-1.31.0[${PYTHON_USEDEP}]
+   net-misc/ubridge
+   sys-apps/busybox[static]
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   default
+
+   # newer python packages are fine
+   sed -i -e 's/[<>=].*//' requirements.txt || die
+}
+
+python_install() {
+   distutils-r1_python_install
+
+   systemd_dounit init/gns3.service.systemd
+   newinitd init/gns3.service.openrc gns3server
+
+   rm 
"${D}$(python_get_sitedir)/gns3server/compute/docker/resources/bin/busybox" || 
die
+   ln -s /bin/busybox 
"${D}$(python_get_sitedir)/gns3server/compute/docker/resources/bin/busybox" || 
die
+}
+
+pkg_postinst() {
+   elog "net-misc/gns3-server has several optional packages that must be 
merged manually for additional functionality."
+   elog ""
+   optfeature "QEMU Support" "app-emulation/qemu"
+   optfeature "Virtualbox Support" "app-emulation/virtualbox"
+   optfeature "Docker Support" "app-containers/docker"
+   optfeature "Wireshark Support" "net-analyzer/wireshark"
+   elog ""
+   elog "The following packages are currently unsupported:"
+   elog "iouyap and vpcs"
+}



[gentoo-commits] repo/gentoo:master commit in: dev-scheme/guile-ssh/files/

2023-10-04 Thread Conrad Kostecki
commit: da2829f528e9a289bdb73b165b4aaeef426c215c
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Oct  4 15:48:00 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:44:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da2829f5

dev-scheme/guile-ssh: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33188
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../guile-ssh/files/guile-ssh-0.16.0-tests.patch  | 19 ---
 1 file changed, 19 deletions(-)

diff --git a/dev-scheme/guile-ssh/files/guile-ssh-0.16.0-tests.patch 
b/dev-scheme/guile-ssh/files/guile-ssh-0.16.0-tests.patch
deleted file mode 100644
index dc5bfdeaa058..
--- a/dev-scheme/guile-ssh/files/guile-ssh-0.16.0-tests.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --git a/tests/Makefile.am b/tests/Makefile.am
-index 8eaa33f..5eaad69 100644
 a/tests/Makefile.am
-+++ b/tests/Makefile.am
-@@ -23,14 +23,12 @@ if !CROSS_COMPILING
- 
- SCM_TESTS = \
-   log.scm \
--  server.scm \
-   session.scm \
-   client-server.scm \
-   popen.scm \
-   shell.scm \
-   server-client.scm \
-   sssh-ssshd.scm \
--  key.scm \
-   tunnel.scm \
-   dist.scm
- 



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

2023-10-04 Thread Conrad Kostecki
commit: bb6f84dc03496525a2a87ca05b91e72cd560b991
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Oct  4 15:46:33 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:44:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb6f84dc

dev-libs/openssl: remove unused patches

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33190
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/openssl-3.1.1-CVE-2023-2975.patch| 110 ---
 .../files/openssl-3.1.1-CVE-2023-3446.patch| 121 -
 2 files changed, 231 deletions(-)

diff --git a/dev-libs/openssl/files/openssl-3.1.1-CVE-2023-2975.patch 
b/dev-libs/openssl/files/openssl-3.1.1-CVE-2023-2975.patch
deleted file mode 100644
index 5abf60737dbd..
--- a/dev-libs/openssl/files/openssl-3.1.1-CVE-2023-2975.patch
+++ /dev/null
@@ -1,110 +0,0 @@
-https://github.com/openssl/openssl/commit/6a83f0c958811f07e0d11dfc6b5a6a98edfd5bdc
-https://github.com/openssl/openssl/commit/76214c4a8f3374b786811fdfeda3d98690f8faf4
-
-From 6a83f0c958811f07e0d11dfc6b5a6a98edfd5bdc Mon Sep 17 00:00:00 2001
-From: Tomas Mraz 
-Date: Tue, 4 Jul 2023 17:30:35 +0200
-Subject: [PATCH] Do not ignore empty associated data with AES-SIV mode
-
-The AES-SIV mode allows for multiple associated data items
-authenticated separately with any of these being 0 length.
-
-The provided implementation ignores such empty associated data
-which is incorrect in regards to the RFC 5297 and is also
-a security issue because such empty associated data then become
-unauthenticated if an application expects to authenticate them.
-
-Fixes CVE-2023-2975
-
-Reviewed-by: Matt Caswell 
-Reviewed-by: Paul Dale 
-(Merged from https://github.com/openssl/openssl/pull/21384)
-
-(cherry picked from commit c426c281cfc23ab182f7d7d7a35229e7db1494d9)
 a/providers/implementations/ciphers/cipher_aes_siv.c
-+++ b/providers/implementations/ciphers/cipher_aes_siv.c
-@@ -120,14 +120,18 @@ static int siv_cipher(void *vctx, unsigned char *out, 
size_t *outl,
- if (!ossl_prov_is_running())
- return 0;
- 
--if (inl == 0) {
--*outl = 0;
--return 1;
--}
-+/* Ignore just empty encryption/decryption call and not AAD. */
-+if (out != NULL) {
-+if (inl == 0) {
-+if (outl != NULL)
-+*outl = 0;
-+return 1;
-+}
- 
--if (outsize < inl) {
--ERR_raise(ERR_LIB_PROV, PROV_R_OUTPUT_BUFFER_TOO_SMALL);
--return 0;
-+if (outsize < inl) {
-+ERR_raise(ERR_LIB_PROV, PROV_R_OUTPUT_BUFFER_TOO_SMALL);
-+return 0;
-+}
- }
- 
- if (ctx->hw->cipher(ctx, out, in, inl) <= 0)
-
-From 76214c4a8f3374b786811fdfeda3d98690f8faf4 Mon Sep 17 00:00:00 2001
-From: Tomas Mraz 
-Date: Tue, 4 Jul 2023 17:50:37 +0200
-Subject: [PATCH] Add testcases for empty associated data entries with AES-SIV
-
-Reviewed-by: Matt Caswell 
-Reviewed-by: Paul Dale 
-(Merged from https://github.com/openssl/openssl/pull/21384)
-
-(cherry picked from commit 3993bb0c0c87e3ed0ab4274e4688aa814e164cfc)
 a/test/recipes/30-test_evp_data/evpciph_aes_siv.txt
-+++ b/test/recipes/30-test_evp_data/evpciph_aes_siv.txt
-@@ -20,6 +20,19 @@ Tag = 85632d07c6e8f37f950acd320a2ecc93
- Plaintext =  112233445566778899aabbccddee
- Ciphertext = 40c02b9690c4dc04daef7f6afe5c
- 
-+Cipher = aes-128-siv
-+Key = fffefdfcfbfaf9f8f7f6f5f4f3f2f1f0f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff
-+Tag = f1c5fdeac1f15a26779c1501f9fb7588
-+Plaintext =  112233445566778899aabbccddee
-+Ciphertext = 27e946c669088ab06da58c5c831c
-+
-+Cipher = aes-128-siv
-+Key = fffefdfcfbfaf9f8f7f6f5f4f3f2f1f0f0f1f2f3f4f5f6f7f8f9fafbfcfdfeff
-+AAD =
-+Tag = d1022f5b3664e5a4dfaf90f85be6f28a
-+Plaintext =  112233445566778899aabbccddee
-+Ciphertext = b66cff6b8eca0b79f083b39a0901
-+
- Cipher = aes-128-siv
- Key = 7f7e7d7c7b7a79787776757473727170404142434445464748494a4b4c4d4e4f
- AAD = 
00112233445566778899aabbccddeeffdeaddadadeaddadaffeeddccbbaa99887766554433221100
-@@ -29,6 +42,24 @@ Tag = 7bdb6e3b432667eb06f4d14bff2fbd0f
- Plaintext =  
7468697320697320736f6d6520706c61696e7465787420746f20656e6372797074207573696e67205349562d414553
- Ciphertext = 
cb900f2fddbe404326601965c889bf17dba77ceb094fa663b7a3f748ba8af829ea64ad544a272e9c485b62a3fd5c0d
- 
-+Cipher = aes-128-siv
-+Key = 7f7e7d7c7b7a79787776757473727170404142434445464748494a4b4c4d4e4f
-+AAD = 
00112233445566778899aabbccddeeffdeaddadadeaddadaffeeddccbbaa99887766554433221100
-+AAD =
-+AAD = 09f911029d74e35bd84156c5635688c0
-+Tag = 83ce6593a8fa67eb6fcd2819cedfc011
-+Plaintext =  
7468697320697320736f6d6520706c61696e7465787420746f20656e6372797074207573696e67205349562d414553
-+Ciphertext = 
30d937b42f71f71f93fc2d8d702d3eac8dc7651eefcd81120081ff29d626f97f3de17f2969b691c91b69b652bf3a6d
-+
-+Cipher = aes-128-siv
-+Key = 

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

2023-10-04 Thread Conrad Kostecki
commit: 7db0bb7a157466da2b5934675415eb205ed0528f
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Oct  4 15:51:15 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:44:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7db0bb7a

www-client/chromium: remove unused patches

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33192
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/chromium-114-remove-evdev-dep.patch  |  47 -
 .../files/chromium-115-binutils-2.41.patch |  76 ---
 .../chromium/files/chromium-98-gtk4-build.patch|  56 ---
 www-client/chromium/files/chromium-qt6.patch   | 106 -
 4 files changed, 285 deletions(-)

diff --git a/www-client/chromium/files/chromium-114-remove-evdev-dep.patch 
b/www-client/chromium/files/chromium-114-remove-evdev-dep.patch
deleted file mode 100644
index 6c106c33e747..
--- a/www-client/chromium/files/chromium-114-remove-evdev-dep.patch
+++ /dev/null
@@ -1,47 +0,0 @@
-commit e3612e8dcb1a43bc358248845aa4f16f4a2792c7
-Author: Stephan Hartmann 
-Date:   Fri Jun 30 19:15:09 2023 +0200
-
-remoting: remove unused dependency on libevdev
-
-There is only one include, but nothing of libevdev is used. Instead
-linux/input.h (defines BTN_*).
-
-diff --git a/remoting/host/BUILD.gn b/remoting/host/BUILD.gn
-index 9e8dfee8b7d9e..5f46876222fd5 100644
 a/remoting/host/BUILD.gn
-+++ b/remoting/host/BUILD.gn
-@@ -241,10 +241,6 @@ if (is_linux) {
-   pkg_config("xkbcommon") {
- packages = [ "xkbcommon" ]
-   }
--
--  pkg_config("libevdev") {
--packages = [ "libevdev" ]
--  }
- }
- 
- # This must be a static library instead of a source set because
-@@ -576,7 +572,6 @@ static_library("common") {
-   "x11_display_util.cc",
-   "x11_display_util.h",
- ]
--configs += [ ":libevdev" ]
- libs += [ "//third_party/libei/lib64/libei.a" ]
- public_deps += [
-   "//third_party/wayland:wayland_client",
-diff --git a/remoting/host/linux/remote_desktop_portal_injector.cc 
b/remoting/host/linux/remote_desktop_portal_injector.cc
-index f6de2b406a97f..bb40aa00328d4 100644
 a/remoting/host/linux/remote_desktop_portal_injector.cc
-+++ b/remoting/host/linux/remote_desktop_portal_injector.cc
-@@ -7,9 +7,9 @@
- #include 
- #include 
- #include 
-+#include 
- #include 
- 
--#include 
- #include 
- 
- #include "base/check.h"

diff --git a/www-client/chromium/files/chromium-115-binutils-2.41.patch 
b/www-client/chromium/files/chromium-115-binutils-2.41.patch
deleted file mode 100644
index 95f65eb6e33e..
--- a/www-client/chromium/files/chromium-115-binutils-2.41.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-From effadce6c756247ea8bae32dc13bb3e6f464f0eb Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?R=C3=A9mi=20Denis-Courmont?= 
-Date: Sun, 16 Jul 2023 18:18:02 +0300
-Subject: [PATCH] avcodec/x86/mathops: clip constants used with shift
- instructions within inline assembly
-
-Fixes assembling with binutil as >= 2.41
-
-Signed-off-by: James Almer 

- libavcodec/x86/mathops.h | 26 +++---
- 1 file changed, 23 insertions(+), 3 deletions(-)
-
-diff --git a/libavcodec/x86/mathops.h b/libavcodec/x86/mathops.h
-index 6298f5ed19..ca7e2dffc1 100644
 a/third_party/ffmpeg/libavcodec/x86/mathops.h
-+++ b/third_party/ffmpeg/libavcodec/x86/mathops.h
-@@ -35,12 +35,20 @@
- static av_always_inline av_const int MULL(int a, int b, unsigned shift)
- {
- int rt, dummy;
-+if (__builtin_constant_p(shift))
- __asm__ (
- "imull %3   \n\t"
- "shrdl %4, %%edx, %%eax \n\t"
- :"=a"(rt), "=d"(dummy)
--:"a"(a), "rm"(b), "ci"((uint8_t)shift)
-+:"a"(a), "rm"(b), "i"(shift & 0x1F)
- );
-+else
-+__asm__ (
-+"imull %3   \n\t"
-+"shrdl %4, %%edx, %%eax \n\t"
-+:"=a"(rt), "=d"(dummy)
-+:"a"(a), "rm"(b), "c"((uint8_t)shift)
-+);
- return rt;
- }
- 
-@@ -113,19 +121,31 @@ __asm__ volatile(\
- // avoid +32 for shift optimization (gcc should do that ...)
- #define NEG_SSR32 NEG_SSR32
- static inline  int32_t NEG_SSR32( int32_t a, int8_t s){
-+if (__builtin_constant_p(s))
- __asm__ ("sarl %1, %0\n\t"
-  : "+r" (a)
-- : "ic" ((uint8_t)(-s))
-+ : "i" (-s & 0x1F)
- );
-+else
-+__asm__ ("sarl %1, %0\n\t"
-+   : "+r" (a)
-+   : "c" ((uint8_t)(-s))
-+);
- return a;
- }
- 
- #define NEG_USR32 NEG_USR32
- static inline uint32_t NEG_USR32(uint32_t a, int8_t s){
-+if (__builtin_constant_p(s))
- __asm__ ("shrl %1, %0\n\t"
-  : "+r" (a)
-- : "ic" ((uint8_t)(-s))
-+ : "i" (-s & 0x1F)
- );
-+else
-+__asm__ ("shrl %1, %0\n\t"
-+   : "+r" (a)
-+   : "c" ((uint8_t)(-s))
-+);
- 

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

2023-10-04 Thread Conrad Kostecki
commit: 93d1dfca086bd2d4cca9d00d5952c77d38e902c6
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Oct  4 15:47:24 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:44:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93d1dfca

dev-python/shiboken2: remove unused patches

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33189
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/shiboken2-5.15.6-fix-pyside2-compile.patch  | 11 ---
 .../shiboken2/files/shiboken2-5.15.8-py-limited-api.patch | 11 ---
 2 files changed, 22 deletions(-)

diff --git 
a/dev-python/shiboken2/files/shiboken2-5.15.6-fix-pyside2-compile.patch 
b/dev-python/shiboken2/files/shiboken2-5.15.6-fix-pyside2-compile.patch
deleted file mode 100644
index 1af6ad5aef7d..
--- a/dev-python/shiboken2/files/shiboken2-5.15.6-fix-pyside2-compile.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/libshiboken/embed/signature_bootstrap.py 2022-09-08 23:54:19.419724864 
+0200
-+++ b/libshiboken/embed/signature_bootstrap.py 2022-09-08 23:55:04.494277606 
+0200
-@@ -211,7 +211,7 @@
- return self if self._mod2path.get(fullname) else None
- 
- def load_module(self, fullname):
--import importlib
-+import importlib.machinery
- import sys
- 
- filename = self._mod2path.get(fullname)

diff --git a/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch 
b/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch
deleted file mode 100644
index 143eb24a103a..
--- a/dev-python/shiboken2/files/shiboken2-5.15.8-py-limited-api.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 a/libshiboken/pep384impl.cpp   2022-09-23 08:47:20.0 +0200
-+++ b/libshiboken/pep384impl.cpp   2023-01-04 08:07:17.0 +0100
-@@ -751,7 +751,7 @@
- #endif // IS_PY2
- Shiboken::AutoDecRef privateobj(PyObject_GetAttr(
- reinterpret_cast(Py_TYPE(self)), 
Shiboken::PyMagicName::name()));
--#ifndef Py_LIMITED_API
-+#if !defined(Py_LIMITED_API) && PY_VERSION_HEX < 0x0301
- return _Py_Mangle(privateobj, name);
- #else
- // PYSIDE-1436: _Py_Mangle is no longer exposed; implement it always.



[gentoo-commits] repo/gentoo:master commit in: app-forensics/volatility3/files/

2023-10-04 Thread Conrad Kostecki
commit: 604a51a75b94e343cf9133be1741583f513360e1
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:39:55 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=604a51a7

app-forensics/volatility3: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32984
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/volatility3-2.4.0-dont-install-tests.patch   | 14 --
 1 file changed, 14 deletions(-)

diff --git 
a/app-forensics/volatility3/files/volatility3-2.4.0-dont-install-tests.patch 
b/app-forensics/volatility3/files/volatility3-2.4.0-dont-install-tests.patch
deleted file mode 100644
index 7bda65385df0..
--- a/app-forensics/volatility3/files/volatility3-2.4.0-dont-install-tests.patch
+++ /dev/null
@@ -1,14 +0,0 @@
-Don't install test files
-https://bugs.gentoo.org/886031
-
 a/setup.py
-+++ b/setup.py
-@@ -40,7 +40,7 @@ setuptools.setup(name = "volatility3",
-  '': ['development', 'development.*'],
-  'development': ['*']
-  },
-- packages = setuptools.find_namespace_packages(exclude = 
["development", "development.*"]),
-+ packages = setuptools.find_namespace_packages(exclude = 
["development", "development.*", "test", "test.*"]),
-  entry_points = {
-  'console_scripts': [
-  'vol = volatility3.cli:main',



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

2023-10-04 Thread Conrad Kostecki
commit: eb47089a75473e4e40628eb1bf619f0c4ac4537f
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Sep 26 18:50:08 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb47089a

net-misc/gns3-server: remove old

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33074
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-misc/gns3-server/Manifest  |  1 -
 net-misc/gns3-server/gns3-server-2.2.41.ebuild | 71 --
 2 files changed, 72 deletions(-)

diff --git a/net-misc/gns3-server/Manifest b/net-misc/gns3-server/Manifest
index f7562954cd32..1d056bc4280b 100644
--- a/net-misc/gns3-server/Manifest
+++ b/net-misc/gns3-server/Manifest
@@ -1,3 +1,2 @@
-DIST gns3-server-2.2.41.tar.gz 10736066 BLAKE2B 
c2ab5c99a67a8cd79a898e244a77eea13477c6030b5b11a63c1747802ff309dc77ee62a6ad7191c7d8bf84d62badecf924379eb58afb4d4f111a9d34380d4aec
 SHA512 
ec34bb81e96034a36f4bc7aeadaf5ae221be23069612477e5af9c908e3764e44029d22115eac602e0a26fedc99d67d4ed64cbf5da12c6a89bf00c3cd99d2ab7b
 DIST gns3-server-2.2.42.tar.gz 10735078 BLAKE2B 
424f73fcb7377a518873b4880b77b6e057d8293fb96073eca59224b0e5e5c1e50114f30c564b861e91769380d9d15b3c2c28a8f4cec3358282902af09eeccd30
 SHA512 
9982fabcdd587b090833b9137124a0accb2990cee91ca5d19d8ee691f807d547670a38b2168d0f71465088a3971eac73e101cc284922732b5132ac47b84d84f6
 DIST gns3-server-2.2.43.tar.gz 10734029 BLAKE2B 
c417557823c94bb62a08ab2401e7d6a6e46ea83961cfee87f5b134139f7f0237ff5c214661a2abd30d62a8806c1ea556db9fa9d7ff1e608cfa84142409315832
 SHA512 
3b086f6c14b4258f4f0eb72e9839c6499530b6f0866ba6adc72a8fd301c99919bf4fc36b7d64e61035d81f193faee8b161c304f1a445a2cab5ca9c42739796f4

diff --git a/net-misc/gns3-server/gns3-server-2.2.41.ebuild 
b/net-misc/gns3-server/gns3-server-2.2.41.ebuild
deleted file mode 100644
index 174ef962de0c..
--- a/net-misc/gns3-server/gns3-server-2.2.41.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_11 )
-DISTUTILS_USE_PEP517=setuptools
-
-inherit distutils-r1 optfeature systemd
-
-DESCRIPTION="GNS3 server to asynchronously manage emulators"
-HOMEPAGE="https://www.gns3.com https://github.com/GNS3/gns3-server;
-SRC_URI="https://github.com/GNS3/gns3-server/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   acct-group/gns3
-   acct-user/gns3
-   app-emulation/dynamips
-   >=dev-python/aiofiles-22.1.0[${PYTHON_USEDEP}]
-   >=dev-python/aiohttp-3.8.4[${PYTHON_USEDEP}]
-   >=dev-python/aiohttp-cors-0.7.0[${PYTHON_USEDEP}]
-   >=dev-python/async-timeout-4.0.2[${PYTHON_USEDEP}]
-   >=dev-python/distro-1.8.0[${PYTHON_USEDEP}]
-   >=dev-python/jinja-3.1.2[${PYTHON_USEDEP}]
-   >=dev-python/jsonschema-4.17.3[${PYTHON_USEDEP}]
-   >=dev-python/psutil-5.9.4[${PYTHON_USEDEP}]
-   >=dev-python/py-cpuinfo-9.0.0[${PYTHON_USEDEP}]
-   >=dev-python/sentry-sdk-1.17.0[${PYTHON_USEDEP}]
-   net-misc/ubridge
-   sys-apps/busybox[static]
-"
-BDEPEND="
-   test? (
-   dev-python/pytest-aiohttp[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_tests pytest
-
-src_prepare() {
-   default
-
-   # newer python packages are fine
-   sed -i -e 's/[<>=].*//' requirements.txt || die
-}
-
-python_install() {
-   distutils-r1_python_install
-
-   systemd_dounit init/gns3.service.systemd
-   newinitd init/gns3.service.openrc gns3server
-
-   rm 
"${D}$(python_get_sitedir)/gns3server/compute/docker/resources/bin/busybox" || 
die
-   ln -s /bin/busybox 
"${D}$(python_get_sitedir)/gns3server/compute/docker/resources/bin/busybox" || 
die
-}
-
-pkg_postinst() {
-   elog "net-misc/gns3-server has several optional packages that must be 
merged manually for additional functionality."
-   elog ""
-   optfeature "QEMU Support" "app-emulation/qemu"
-   optfeature "Virtualbox Support" "app-emulation/virtualbox"
-   optfeature "Docker Support" "app-containers/docker"
-   optfeature "Wireshark Support" "net-analyzer/wireshark"
-   elog ""
-   elog "The following packages are currently unsupported:"
-   elog "iouyap and vpcs"
-}



[gentoo-commits] repo/gentoo:master commit in: media-libs/zxing-cpp/files/

2023-10-04 Thread Conrad Kostecki
commit: 7e35a11c8721a89f919fd82de007e2978c52907a
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Wed Oct  4 15:48:46 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e35a11c

media-libs/zxing-cpp: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33186
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/zxing-cpp-2.0.0-fix-crash.patch  | 24 --
 1 file changed, 24 deletions(-)

diff --git a/media-libs/zxing-cpp/files/zxing-cpp-2.0.0-fix-crash.patch 
b/media-libs/zxing-cpp/files/zxing-cpp-2.0.0-fix-crash.patch
deleted file mode 100644
index e6b25633e8e9..
--- a/media-libs/zxing-cpp/files/zxing-cpp-2.0.0-fix-crash.patch
+++ /dev/null
@@ -1,24 +0,0 @@
-From 23c19c5f98602a4d69d1667fff99678308b28b5b Mon Sep 17 00:00:00 2001
-From: liule 
-Date: Fri, 6 Jan 2023 22:06:24 +0800
-Subject: [PATCH] fix crash when the source image is less than 3 pixels
- width/height
-

- core/src/ReadBarcode.cpp | 3 ++-
- 1 file changed, 2 insertions(+), 1 deletion(-)
-
-diff --git a/core/src/ReadBarcode.cpp b/core/src/ReadBarcode.cpp
-index 905dd191c..5ac61e250 100644
 a/core/src/ReadBarcode.cpp
-+++ b/core/src/ReadBarcode.cpp
-@@ -76,7 +76,8 @@ class LumImagePyramid
- 
-   layers.push_back(iv);
-   // TODO: if only matrix codes were considered, then using 
std::min would be sufficient (see #425)
--  while (threshold > 0 && std::max(layers.back().width(), 
layers.back().height()) > threshold)
-+  while (threshold > 0 && std::max(layers.back().width(), 
layers.back().height()) > threshold &&
-+ std::min(layers.back().width(), 
layers.back().height()) >= N)
-   addLayer();
- #if 0
-   // Reversing the layers means we'd start with the smallest. 
that can make sense if we are only looking for a



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

2023-10-04 Thread Conrad Kostecki
commit: ec9713d4e8b885392fc50fc7d4d11d666474079d
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Sep 26 18:49:43 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec9713d4

net-misc/gns3-gui: version bump (2.2.43)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 net-misc/gns3-gui/Manifest   |  1 +
 net-misc/gns3-gui/gns3-gui-2.2.43.ebuild | 40 
 2 files changed, 41 insertions(+)

diff --git a/net-misc/gns3-gui/Manifest b/net-misc/gns3-gui/Manifest
index edd110e4f8db..cd51ae43be52 100644
--- a/net-misc/gns3-gui/Manifest
+++ b/net-misc/gns3-gui/Manifest
@@ -1,2 +1,3 @@
 DIST gns3-gui-2.2.41.tar.gz 5046775 BLAKE2B 
8ca83ed58312bd2cf0c0e854cebe6001121bf21e9f26804b779fc81ec06689c154d704b9cf2e7a5d57608519c3fbe724b07437b64c5840dd2ad6119f38669a29
 SHA512 
b86e23808c6158d6811a51901aff3f10c9722ca51389c2d241c6d174992299c83529014e6a098a2d5777fabda212ffb2731025843cc317f8560868bcb8cb2195
 DIST gns3-gui-2.2.42.tar.gz 5048413 BLAKE2B 
19c4f1977797af0a3c2bbed926cc8f9361840658dbdc25ad9a2972bec21749c84d5cdc477079f01b8c354e21e9663b27bcbc09f974c914c188f98ec151b7bd67
 SHA512 
19940857308da3810047cec9285c34b0011e4dc44a1316bf2fe5042e0f255546e8e3d2d4788a1f70baedb498a295223916633f4950ef9dbfa19b8e72c7545176
+DIST gns3-gui-2.2.43.tar.gz 5055465 BLAKE2B 
21e21d1b1e77151d385d210270dc909e3ed938c2220360e038820d9e30a1ca126122ccfe0f582e392143aeac364274bc96dbed1a3ea23cd29e0d9dbc858af5a5
 SHA512 
167961caa13e7bc7abea3753c69e883e864e5fbf543f12117a0653f203ef92d46214f083c715c1fad3ab4a52504fa714a2901d0caa4c0048e26cae9fa7ee5a31

diff --git a/net-misc/gns3-gui/gns3-gui-2.2.43.ebuild 
b/net-misc/gns3-gui/gns3-gui-2.2.43.ebuild
new file mode 100644
index ..0dfa014133d2
--- /dev/null
+++ b/net-misc/gns3-gui/gns3-gui-2.2.43.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_11 )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit distutils-r1 virtualx xdg
+
+DESCRIPTION="Graphical Network Simulator"
+HOMEPAGE="https://www.gns3.com https://github.com/GNS3/gns3-gui;
+SRC_URI="https://github.com/GNS3/gns3-gui/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+#net-misc/gns3-server version should always match gns3-gui version
+RDEPEND="
+   >=dev-python/distro-1.8.0[${PYTHON_USEDEP}]
+   >=dev-python/jsonschema-4.17.3[${PYTHON_USEDEP}]
+   >=dev-python/psutil-5.9.5[${PYTHON_USEDEP}]
+   >=dev-python/sentry-sdk-1.31.0[${PYTHON_USEDEP}]
+   ~net-misc/gns3-server-${PV}[${PYTHON_USEDEP}]
+   dev-python/PyQt5[gui,network,svg,websockets,widgets,${PYTHON_USEDEP}]
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   default
+
+   # newer python packages are fine
+   sed -i -e 's/[<>=].*//' requirements.txt || die
+}
+
+src_test() {
+   virtx distutils-r1_src_test
+}



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

2023-10-04 Thread Conrad Kostecki
commit: a2378b41f08ff695b6817e1f43342a3d8c8b9f3a
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:43:48 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2378b41

sys-cluster/kubectl: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...l-1.28.0-make-gomaxprocs-install-optional.patch | 78 --
 1 file changed, 78 deletions(-)

diff --git 
a/sys-cluster/kubectl/files/kubectl-1.28.0-make-gomaxprocs-install-optional.patch
 
b/sys-cluster/kubectl/files/kubectl-1.28.0-make-gomaxprocs-install-optional.patch
deleted file mode 100644
index 1a8935b31c9c..
--- 
a/sys-cluster/kubectl/files/kubectl-1.28.0-make-gomaxprocs-install-optional.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From cce3f6ffa796ea416021b0d62567a3f52b979567 Mon Sep 17 00:00:00 2001
-From: Jordan Liggitt 
-Date: Wed, 16 Aug 2023 09:33:02 -0400
-Subject: [PATCH 2/2] Make gomaxprocs install optional, limit to tests
-

- hack/lib/golang.sh   | 25 +++--
- hack/make-rules/test-e2e-node.sh |  1 +
- hack/make-rules/test.sh  |  1 +
- 3 files changed, 17 insertions(+), 10 deletions(-)
-
-diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
-index 66772f08a81..983ff368e25 100755
 a/hack/lib/golang.sh
-+++ b/hack/lib/golang.sh
-@@ -556,20 +556,25 @@ kube::golang::setup_env() {
- 
-   # This seems to matter to some tools
-   export GO15VENDOREXPERIMENT=1
-+}
- 
-+kube::golang::setup_gomaxprocs() {
-   # GOMAXPROCS by default does not reflect the number of cpu(s) available
-   # when running in a container, please see 
https://github.com/golang/go/issues/33803
--  if ! command -v ncpu >/dev/null 2>&1; then
--# shellcheck disable=SC2164
--pushd "${KUBE_ROOT}/hack/tools" >/dev/null
--GO111MODULE=on go install ./ncpu
--# shellcheck disable=SC2164
--popd >/dev/null
-+  if [[ -z "${GOMAXPROCS:-}" ]]; then
-+if ! command -v ncpu >/dev/null 2>&1; then
-+  # shellcheck disable=SC2164
-+  pushd "${KUBE_ROOT}/hack/tools" >/dev/null
-+  GO111MODULE=on go install ./ncpu || echo "Will not automatically set 
GOMAXPROCS"
-+  # shellcheck disable=SC2164
-+  popd >/dev/null
-+fi
-+if command -v ncpu >/dev/null 2>&1; then
-+  GOMAXPROCS=$(ncpu)
-+  export GOMAXPROCS
-+  kube::log::status "Set GOMAXPROCS automatically to ${GOMAXPROCS}"
-+fi
-   fi
--
--  GOMAXPROCS=${GOMAXPROCS:-$(ncpu)}
--  export GOMAXPROCS
--  kube::log::status "Setting GOMAXPROCS: ${GOMAXPROCS}"
- }
- 
- # This will take binaries from $GOPATH/bin and copy them to the appropriate
-diff --git a/hack/make-rules/test-e2e-node.sh 
b/hack/make-rules/test-e2e-node.sh
-index 43dde0c740f..49e3e04ac71 100755
 a/hack/make-rules/test-e2e-node.sh
-+++ b/hack/make-rules/test-e2e-node.sh
-@@ -18,6 +18,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
-diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh
-index e9074678a8f..4aa72730d83 100755
 a/hack/make-rules/test.sh
-+++ b/hack/make-rules/test.sh
-@@ -22,6 +22,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
--- 
-2.41.0
-



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

2023-10-04 Thread Conrad Kostecki
commit: e9b979fa20be1d7a468d66bfeef564efcfcff21b
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:44:05 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9b979fa

sys-cluster/kubelet: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...t-1.28.0-make-gomaxprocs-install-optional.patch | 78 --
 1 file changed, 78 deletions(-)

diff --git 
a/sys-cluster/kubelet/files/kubelet-1.28.0-make-gomaxprocs-install-optional.patch
 
b/sys-cluster/kubelet/files/kubelet-1.28.0-make-gomaxprocs-install-optional.patch
deleted file mode 100644
index 1a8935b31c9c..
--- 
a/sys-cluster/kubelet/files/kubelet-1.28.0-make-gomaxprocs-install-optional.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From cce3f6ffa796ea416021b0d62567a3f52b979567 Mon Sep 17 00:00:00 2001
-From: Jordan Liggitt 
-Date: Wed, 16 Aug 2023 09:33:02 -0400
-Subject: [PATCH 2/2] Make gomaxprocs install optional, limit to tests
-

- hack/lib/golang.sh   | 25 +++--
- hack/make-rules/test-e2e-node.sh |  1 +
- hack/make-rules/test.sh  |  1 +
- 3 files changed, 17 insertions(+), 10 deletions(-)
-
-diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
-index 66772f08a81..983ff368e25 100755
 a/hack/lib/golang.sh
-+++ b/hack/lib/golang.sh
-@@ -556,20 +556,25 @@ kube::golang::setup_env() {
- 
-   # This seems to matter to some tools
-   export GO15VENDOREXPERIMENT=1
-+}
- 
-+kube::golang::setup_gomaxprocs() {
-   # GOMAXPROCS by default does not reflect the number of cpu(s) available
-   # when running in a container, please see 
https://github.com/golang/go/issues/33803
--  if ! command -v ncpu >/dev/null 2>&1; then
--# shellcheck disable=SC2164
--pushd "${KUBE_ROOT}/hack/tools" >/dev/null
--GO111MODULE=on go install ./ncpu
--# shellcheck disable=SC2164
--popd >/dev/null
-+  if [[ -z "${GOMAXPROCS:-}" ]]; then
-+if ! command -v ncpu >/dev/null 2>&1; then
-+  # shellcheck disable=SC2164
-+  pushd "${KUBE_ROOT}/hack/tools" >/dev/null
-+  GO111MODULE=on go install ./ncpu || echo "Will not automatically set 
GOMAXPROCS"
-+  # shellcheck disable=SC2164
-+  popd >/dev/null
-+fi
-+if command -v ncpu >/dev/null 2>&1; then
-+  GOMAXPROCS=$(ncpu)
-+  export GOMAXPROCS
-+  kube::log::status "Set GOMAXPROCS automatically to ${GOMAXPROCS}"
-+fi
-   fi
--
--  GOMAXPROCS=${GOMAXPROCS:-$(ncpu)}
--  export GOMAXPROCS
--  kube::log::status "Setting GOMAXPROCS: ${GOMAXPROCS}"
- }
- 
- # This will take binaries from $GOPATH/bin and copy them to the appropriate
-diff --git a/hack/make-rules/test-e2e-node.sh 
b/hack/make-rules/test-e2e-node.sh
-index 43dde0c740f..49e3e04ac71 100755
 a/hack/make-rules/test-e2e-node.sh
-+++ b/hack/make-rules/test-e2e-node.sh
-@@ -18,6 +18,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
-diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh
-index e9074678a8f..4aa72730d83 100755
 a/hack/make-rules/test.sh
-+++ b/hack/make-rules/test.sh
-@@ -22,6 +22,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
--- 
-2.41.0
-



[gentoo-commits] repo/gentoo:master commit in: app-shells/starship/files/

2023-10-04 Thread Conrad Kostecki
commit: 4f51e24469b5c83b75232f799913ada6f161e9d4
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Tue Sep 26 17:56:20 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f51e244

app-shells/starship: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/33067
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../starship/files/starship-1.10.3-no-strip.patch  | 27 --
 1 file changed, 27 deletions(-)

diff --git a/app-shells/starship/files/starship-1.10.3-no-strip.patch 
b/app-shells/starship/files/starship-1.10.3-no-strip.patch
deleted file mode 100644
index f5a548f04a47..
--- a/app-shells/starship/files/starship-1.10.3-no-strip.patch
+++ /dev/null
@@ -1,27 +0,0 @@
-From 637ef935b0a4f60524a0c0ce034317f2dee04b78 Mon Sep 17 00:00:00 2001
-From: Randy Barlow 
-Date: Sat, 1 Oct 2022 13:52:53 -0400
-Subject: [PATCH] Do not strip executable
-
-This should be a choice for the user.
-
-Signed-off-by: Randy Barlow 

- Cargo.toml | 1 -
- 1 file changed, 1 deletion(-)
-
-diff --git a/Cargo.toml b/Cargo.toml
-index 2fccbe11..4595c33f 100644
 a/Cargo.toml
-+++ b/Cargo.toml
-@@ -123,7 +123,6 @@ tempfile = "3.2.0"
- [profile.release]
- codegen-units = 1
- lto = true
--strip = true
- 
- [[bin]]
- name = "starship"
--- 
-2.37.3
-



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

2023-10-04 Thread Conrad Kostecki
commit: ef2901f084f718249e9a6dd085b8765a19767bf6
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:43:20 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef2901f0

sys-cluster/kubeadm: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...m-1.28.0-make-gomaxprocs-install-optional.patch | 78 --
 1 file changed, 78 deletions(-)

diff --git 
a/sys-cluster/kubeadm/files/kubeadm-1.28.0-make-gomaxprocs-install-optional.patch
 
b/sys-cluster/kubeadm/files/kubeadm-1.28.0-make-gomaxprocs-install-optional.patch
deleted file mode 100644
index 1a8935b31c9c..
--- 
a/sys-cluster/kubeadm/files/kubeadm-1.28.0-make-gomaxprocs-install-optional.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From cce3f6ffa796ea416021b0d62567a3f52b979567 Mon Sep 17 00:00:00 2001
-From: Jordan Liggitt 
-Date: Wed, 16 Aug 2023 09:33:02 -0400
-Subject: [PATCH 2/2] Make gomaxprocs install optional, limit to tests
-

- hack/lib/golang.sh   | 25 +++--
- hack/make-rules/test-e2e-node.sh |  1 +
- hack/make-rules/test.sh  |  1 +
- 3 files changed, 17 insertions(+), 10 deletions(-)
-
-diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
-index 66772f08a81..983ff368e25 100755
 a/hack/lib/golang.sh
-+++ b/hack/lib/golang.sh
-@@ -556,20 +556,25 @@ kube::golang::setup_env() {
- 
-   # This seems to matter to some tools
-   export GO15VENDOREXPERIMENT=1
-+}
- 
-+kube::golang::setup_gomaxprocs() {
-   # GOMAXPROCS by default does not reflect the number of cpu(s) available
-   # when running in a container, please see 
https://github.com/golang/go/issues/33803
--  if ! command -v ncpu >/dev/null 2>&1; then
--# shellcheck disable=SC2164
--pushd "${KUBE_ROOT}/hack/tools" >/dev/null
--GO111MODULE=on go install ./ncpu
--# shellcheck disable=SC2164
--popd >/dev/null
-+  if [[ -z "${GOMAXPROCS:-}" ]]; then
-+if ! command -v ncpu >/dev/null 2>&1; then
-+  # shellcheck disable=SC2164
-+  pushd "${KUBE_ROOT}/hack/tools" >/dev/null
-+  GO111MODULE=on go install ./ncpu || echo "Will not automatically set 
GOMAXPROCS"
-+  # shellcheck disable=SC2164
-+  popd >/dev/null
-+fi
-+if command -v ncpu >/dev/null 2>&1; then
-+  GOMAXPROCS=$(ncpu)
-+  export GOMAXPROCS
-+  kube::log::status "Set GOMAXPROCS automatically to ${GOMAXPROCS}"
-+fi
-   fi
--
--  GOMAXPROCS=${GOMAXPROCS:-$(ncpu)}
--  export GOMAXPROCS
--  kube::log::status "Setting GOMAXPROCS: ${GOMAXPROCS}"
- }
- 
- # This will take binaries from $GOPATH/bin and copy them to the appropriate
-diff --git a/hack/make-rules/test-e2e-node.sh 
b/hack/make-rules/test-e2e-node.sh
-index 43dde0c740f..49e3e04ac71 100755
 a/hack/make-rules/test-e2e-node.sh
-+++ b/hack/make-rules/test-e2e-node.sh
-@@ -18,6 +18,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
-diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh
-index e9074678a8f..4aa72730d83 100755
 a/hack/make-rules/test.sh
-+++ b/hack/make-rules/test.sh
-@@ -22,6 +22,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
--- 
-2.41.0
-



[gentoo-commits] repo/gentoo:master commit in: sci-astronomy/cpl/files/

2023-10-04 Thread Conrad Kostecki
commit: f06812800534b1d122f78e185d7373083a0067f7
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:42:53 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0681280

sci-astronomy/cpl: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32982
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../cpl/files/cpl-6.6.1-use-system-ltdl.patch  | 41 --
 1 file changed, 41 deletions(-)

diff --git a/sci-astronomy/cpl/files/cpl-6.6.1-use-system-ltdl.patch 
b/sci-astronomy/cpl/files/cpl-6.6.1-use-system-ltdl.patch
deleted file mode 100644
index 37ef2b550eda..
--- a/sci-astronomy/cpl/files/cpl-6.6.1-use-system-ltdl.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-use system libtdl from libtool instead of bundled one
-see http://www.flameeyes.eu/autotools-mythbuster/libtool/plugins.html
-bicat...@gentoo.org
-
 cpl-7.0.orig/configure.ac  2012-06-04 18:38:01.0 +0100
-+++ cpl-7.0/configure.ac   2012-06-04 22:14:23.0 +0100
-@@ -60,8 +60,9 @@
- AC_ENABLE_STATIC(yes)
- AC_ENABLE_SHARED(yes)
- 
--AC_LIBLTDL_CONVENIENCE
--AC_PROG_LIBTOOL
-+LT_INIT([dlopen])
-+LT_CONFIG_LTDL_DIR([libltdl])
-+AC_LIB_LTDL
- AC_SUBST(INCLTDL)
- AC_SUBST(LIBLTDL)
- AC_SUBST(LIBTOOL_DEPS)
-@@ -131,7 +135,6 @@
- CPL_CONFIG_FUNC
- 
- # Configure subpackages
--AC_CONFIG_SUBDIRS(libltdl)
- 
- if test ! x$"cpl_cv_with_system_cext" = xyes; then
- AC_CONFIG_SUBDIRS([libcext])
 cpl-7.0.orig/Makefile.am
-+++ cpl-7.0/Makefile.am
-@@ -25,11 +25,10 @@
- DISTCLEANFILES = *~
- 
- if GASGANO_SUPPORT
--libltdl = libltdl
- cpljava = cpljava
- endif
- 
--SUBDIRS = $(libltdl) $(libcext) cplcore cplui cpldrs cpldfs $(cpljava)
-+SUBDIRS = $(libcext) cplcore cplui cpldrs cpldfs $(cpljava)
- 
- HTML_SUBDIRS = 
- 



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

2023-10-04 Thread Conrad Kostecki
commit: 404ef1ad996d7a474f214f86ff158877ed2bee98
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Fri Sep 22 05:44:37 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=404ef1ad

sys-cluster/kube-scheduler: remove unused patch

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32986
Signed-off-by: Conrad Kostecki  gentoo.org>

 ...r-1.28.0-make-gomaxprocs-install-optional.patch | 78 --
 1 file changed, 78 deletions(-)

diff --git 
a/sys-cluster/kube-scheduler/files/kube-scheduler-1.28.0-make-gomaxprocs-install-optional.patch
 
b/sys-cluster/kube-scheduler/files/kube-scheduler-1.28.0-make-gomaxprocs-install-optional.patch
deleted file mode 100644
index 1a8935b31c9c..
--- 
a/sys-cluster/kube-scheduler/files/kube-scheduler-1.28.0-make-gomaxprocs-install-optional.patch
+++ /dev/null
@@ -1,78 +0,0 @@
-From cce3f6ffa796ea416021b0d62567a3f52b979567 Mon Sep 17 00:00:00 2001
-From: Jordan Liggitt 
-Date: Wed, 16 Aug 2023 09:33:02 -0400
-Subject: [PATCH 2/2] Make gomaxprocs install optional, limit to tests
-

- hack/lib/golang.sh   | 25 +++--
- hack/make-rules/test-e2e-node.sh |  1 +
- hack/make-rules/test.sh  |  1 +
- 3 files changed, 17 insertions(+), 10 deletions(-)
-
-diff --git a/hack/lib/golang.sh b/hack/lib/golang.sh
-index 66772f08a81..983ff368e25 100755
 a/hack/lib/golang.sh
-+++ b/hack/lib/golang.sh
-@@ -556,20 +556,25 @@ kube::golang::setup_env() {
- 
-   # This seems to matter to some tools
-   export GO15VENDOREXPERIMENT=1
-+}
- 
-+kube::golang::setup_gomaxprocs() {
-   # GOMAXPROCS by default does not reflect the number of cpu(s) available
-   # when running in a container, please see 
https://github.com/golang/go/issues/33803
--  if ! command -v ncpu >/dev/null 2>&1; then
--# shellcheck disable=SC2164
--pushd "${KUBE_ROOT}/hack/tools" >/dev/null
--GO111MODULE=on go install ./ncpu
--# shellcheck disable=SC2164
--popd >/dev/null
-+  if [[ -z "${GOMAXPROCS:-}" ]]; then
-+if ! command -v ncpu >/dev/null 2>&1; then
-+  # shellcheck disable=SC2164
-+  pushd "${KUBE_ROOT}/hack/tools" >/dev/null
-+  GO111MODULE=on go install ./ncpu || echo "Will not automatically set 
GOMAXPROCS"
-+  # shellcheck disable=SC2164
-+  popd >/dev/null
-+fi
-+if command -v ncpu >/dev/null 2>&1; then
-+  GOMAXPROCS=$(ncpu)
-+  export GOMAXPROCS
-+  kube::log::status "Set GOMAXPROCS automatically to ${GOMAXPROCS}"
-+fi
-   fi
--
--  GOMAXPROCS=${GOMAXPROCS:-$(ncpu)}
--  export GOMAXPROCS
--  kube::log::status "Setting GOMAXPROCS: ${GOMAXPROCS}"
- }
- 
- # This will take binaries from $GOPATH/bin and copy them to the appropriate
-diff --git a/hack/make-rules/test-e2e-node.sh 
b/hack/make-rules/test-e2e-node.sh
-index 43dde0c740f..49e3e04ac71 100755
 a/hack/make-rules/test-e2e-node.sh
-+++ b/hack/make-rules/test-e2e-node.sh
-@@ -18,6 +18,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
-diff --git a/hack/make-rules/test.sh b/hack/make-rules/test.sh
-index e9074678a8f..4aa72730d83 100755
 a/hack/make-rules/test.sh
-+++ b/hack/make-rules/test.sh
-@@ -22,6 +22,7 @@ KUBE_ROOT=$(dirname "${BASH_SOURCE[0]}")/../..
- source "${KUBE_ROOT}/hack/lib/init.sh"
- 
- kube::golang::setup_env
-+kube::golang::setup_gomaxprocs
- 
- # start the cache mutation detector by default so that cache mutators will be 
found
- KUBE_CACHE_MUTATION_DETECTOR="${KUBE_CACHE_MUTATION_DETECTOR:-true}"
--- 
-2.41.0
-



[gentoo-commits] repo/gentoo:master commit in: kde-apps/yakuake/files/

2023-10-04 Thread Conrad Kostecki
commit: 2c39b203f775ee2ddbe223f5576c22b2b2bf1f6e
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat Sep 16 15:54:17 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c39b203

kde-apps/yakuake: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32836
Signed-off-by: Conrad Kostecki  gentoo.org>

 kde-apps/yakuake/files/yakuake-23.08.0-cmake.patch | 28 --
 1 file changed, 28 deletions(-)

diff --git a/kde-apps/yakuake/files/yakuake-23.08.0-cmake.patch 
b/kde-apps/yakuake/files/yakuake-23.08.0-cmake.patch
deleted file mode 100644
index 808aa488d0da..
--- a/kde-apps/yakuake/files/yakuake-23.08.0-cmake.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-From 0d0a3639b1c1e33aa49e979879e29064808a0a96 Mon Sep 17 00:00:00 2001
-From: Andreas Sturmlechner 
-Date: Sat, 26 Aug 2023 12:49:24 +0200
-Subject: [PATCH] Fix broken HAVE_KWAYLAND assignment
-
-Fixes up commit 3e58132f2315b99d0d8c8c233a8183079356506a
-
-Signed-off-by: Andreas Sturmlechner 

- CMakeLists.txt | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/CMakeLists.txt b/CMakeLists.txt
-index 2d143f9..bfdcd12 100644
 a/CMakeLists.txt
-+++ b/CMakeLists.txt
-@@ -80,7 +80,7 @@ if(NOT APPLE)
- endif()
- 
- find_package(KF${KF_MAJOR_VERSION}Wayland ${KF_MIN_VERSION} CONFIG)
--set(HAVE_KWAYLAND KF${KF_MAJOR_VERSION}Wayland_FOUND)
-+set(HAVE_KWAYLAND ${KF${KF_MAJOR_VERSION}Wayland_FOUND})
- endif()
- 
- add_subdirectory(app)
--- 
-2.42.0
-



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

2023-10-04 Thread Conrad Kostecki
commit: 5eb0dbec8742e222e85389938d7965ddf71471a7
Author: Michael Mair-Keimberger  levelnine  at>
AuthorDate: Sat Sep 16 15:53:11 2023 +
Commit: Conrad Kostecki  gentoo  org>
CommitDate: Wed Oct  4 21:43:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5eb0dbec

app-admin/augeas: remove unused patch(es)

Signed-off-by: Michael Mair-Keimberger  levelnine.at>
Closes: https://github.com/gentoo/gentoo/pull/32835
Signed-off-by: Conrad Kostecki  gentoo.org>

 .../files/augeas-1.14.0-musl-strerror_r.patch  | 22 --
 1 file changed, 22 deletions(-)

diff --git a/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch 
b/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch
deleted file mode 100644
index 07cda4c4ae02..
--- a/app-admin/augeas/files/augeas-1.14.0-musl-strerror_r.patch
+++ /dev/null
@@ -1,22 +0,0 @@
-https://github.com/hercules-team/augeas/pull/791
-
-From 46ecd3542820604603ab4f046f9fb3e6195f60aa Mon Sep 17 00:00:00 2001
-From: Dimitry Andric 
-Date: Thu, 8 Dec 2022 13:08:53 +0100
-Subject: [PATCH] Only use GNU specific strerror_r() API when __GLIBC__ is
- defined.
-
 a/src/internal.c
-+++ b/src/internal.c
-@@ -431,8 +431,8 @@ char *cleanpath(char *path) {
- 
- const char *xstrerror(int errnum, char *buf, size_t len) {
- #ifdef HAVE_STRERROR_R
--# ifdef __USE_GNU
--/* Annoying linux specific API contract */
-+# if defined(__USE_GNU) && defined(__GLIBC__)
-+/* Annoying GNU specific API contract */
- return strerror_r(errnum, buf, len);
- # else
- strerror_r(errnum, buf, len);
-



[gentoo-commits] repo/gentoo:master commit in: media-plugins/gst-plugins-srt/

2023-10-04 Thread Mart Raudsepp
commit: 823cca9749ccbdcd15c6681bbaac9e906c00e088
Author: Mart Raudsepp  gentoo  org>
AuthorDate: Wed Oct  4 21:22:43 2023 +
Commit: Mart Raudsepp  gentoo  org>
CommitDate: Wed Oct  4 21:22:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=823cca97

media-plugins/gst-plugins-srt: keyword 1.22.3 for ~arm64

Signed-off-by: Mart Raudsepp  gentoo.org>

 media-plugins/gst-plugins-srt/gst-plugins-srt-1.22.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/gst-plugins-srt/gst-plugins-srt-1.22.3.ebuild 
b/media-plugins/gst-plugins-srt/gst-plugins-srt-1.22.3.ebuild
index 6091332689ad..2926ea53abf9 100644
--- a/media-plugins/gst-plugins-srt/gst-plugins-srt-1.22.3.ebuild
+++ b/media-plugins/gst-plugins-srt/gst-plugins-srt-1.22.3.ebuild
@@ -7,7 +7,7 @@ GST_ORG_MODULE=gst-plugins-bad
 inherit gstreamer-meson
 
 DESCRIPTION="Secure reliable transport (SRT) transfer plugin for GStreamer"
-KEYWORDS="~amd64"
+KEYWORDS="~amd64 ~arm64"
 
 RDEPEND="
net-libs/srt:=[${MULTILIB_USEDEP}]



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

2023-10-04 Thread Anna Figueiredo Gomes
commit: 39d4970a0c2ff70ceb35ae2618d252751052c0dd
Author: Anna (navi) Figueiredo Gomes  vlhl  dev>
AuthorDate: Wed Oct  4 20:47:04 2023 +
Commit: Anna Figueiredo Gomes  tutanota  com>
CommitDate: Wed Oct  4 20:52:48 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=39d4970a

games-util/xivlauncher: drop 1.0.4, add 1.0.5

Signed-off-by: Anna (navi) Figueiredo Gomes  vlhl.dev>

 games-util/xivlauncher/Manifest|  30 +--
 games-util/xivlauncher/metadata.xml|   2 -
 games-util/xivlauncher/xivlauncher-1.0.4-r2.ebuild | 278 -
 games-util/xivlauncher/xivlauncher-1.0.5.ebuild| 254 +++
 4 files changed, 260 insertions(+), 304 deletions(-)

diff --git a/games-util/xivlauncher/Manifest b/games-util/xivlauncher/Manifest
index 913967df56..b6deed0f86 100644
--- a/games-util/xivlauncher/Manifest
+++ b/games-util/xivlauncher/Manifest
@@ -1,4 +1,4 @@
-DIST FFXIVQuickLauncher-77115d3f7d920179ce83f0708ec97ba2450ce795.tar.gz 
5288268 BLAKE2B 
9cfad06eeb53d4552ccf656da5f21c5c810abb3ca18e941791532f6b2f99d2449cefba5f6cb850ff1ab66883a97b61b4b2849d29ba34de6d39cf0a27212ddff0
 SHA512 
e7124653828584d53e2ab06b6d766efe2ca5803f7e63c8eadac79d5a9f563e62572650819ee20039f6eb26fadc479ebcc144a92df71f368e55be0b23eac3e2f5
+DIST FFXIVQuickLauncher-5e1022893d0aa52da84680b7c0694bdd5d560b32.tar.gz 
5266640 BLAKE2B 
5e9fb5df090184c0422936d4c62af1f73ea03c447adb7ba00717ce40fe09086713b6be1708158bb0112ea8c9e6324acd2705caaea414c32314c35fb446a2bf5d
 SHA512 
1c7a2790da8e3350ee74ed60935753f971b5166993694d313f31d7b245a7a39bc96c0f33c92d00a3adc6d600dfb4a4fe07e8b16f28e86808d11b9dfbb2b08bf0
 DIST castle.core.4.4.1.nupkg 919111 BLAKE2B 
5ee1245ef79f00b89fd03957b260337b4af242667c10cd9189540853344d062e27dee224989ef6a29544083f9a8416a197b9d97ba38ee1ace4630e89893355e7
 SHA512 
b27c340df07622abda8543a48c057eb936c9b02b7ed2d6f58e09e33bd5a5f70c7a2ee867127a05697e5a4127ba40494a17ea40080482578328aa8a33ae97aa3a
 DIST cheaploc.1.1.6.nupkg 17585 BLAKE2B 
1ed77a02342449f2b20fc97f0dfca7122637beb9f5f08854dc3d6c4f3676340686e49ac46173945f90dc56e7f41bc719d1976b5b4e61f1b25ced0b94cdb6a29d
 SHA512 
ff2d6e19a08b54d288eced17cafe2dca9943bc7b0fab131c477f9ce7d8390762b11949228bc4193e661490432828ea8596ccb3d0d01ce2e990c346caa4cbb8fa
 DIST commandlineparser.2.9.1.nupkg 496069 BLAKE2B 
e2c4b38841f83d6bc10432b8055af90369f1fe0a10105a58b51b44cd48e5d84cb0b5e4b19f444d8c81b38646a62c7c4d11cbd710e92fea68be3ebea6ab98e3f1
 SHA512 
4f364e45c9668c7e7cc6a922b488f3fa523033c20d7a432694f0a6af05ce528ea0481d8375e2f4f1032c6990347b4803ce9a0e48068c6fe15ec46fb1254f085d
@@ -14,43 +14,24 @@ DIST goaaats.veldrid.sdl2.4.9.0-beta1-g70f642e82e.nupkg 
1480273 BLAKE2B a0919921
 DIST goaaats.veldrid.startuputilities.4.9.0-beta1-g70f642e82e.nupkg 27873 
BLAKE2B 
8cf5bcc6841533fcd4cf24410a532b455a8264b105f1863a605ce728be9353a977dac87b9e9d52e906c18e2dafeb87d2ed73e448cd80253f051fd8c3bfdaed78
 SHA512 
18ca2ee4328c369273ff0f89608af4bfd6bf287d13a7498ebd0024ae9de4d6e61018426b64649dbb80a0de9acb903fc61e102636661e7ee3777e142c757ec759
 DIST imgui.net.1.87.2.nupkg 2532510 BLAKE2B 
81afc68d85afb9c3b3995774d2a7d4e82cbdc8dec5c11a865c1386a40479e5703b3df5702784997a9ab439378c1a9f1fea6e48b0b7d33c8be6e2410545bdde8e
 SHA512 
79244d3ee0dbb332452c8a0d7fe7e9ae42dc80945815290acdb1a95d2f43f700ceaaca7b7a937bb82e77310805aeacccb587b5480cdc2b895678fbf317ca1085
 DIST keysharp.1.0.5.nupkg 83058 BLAKE2B 
a5622d01e18e9433ff86fe3287d3caae2fbd81f83ba17bf302d82c8f2e77f1087ba261da7d455b6552d1399577954f6e98bb8c555999bb3b3b74505d4e581df1
 SHA512 
dcdfd91333a299c5c846d34429992bde26d2e03c9c7d6f1a258ca809f409c2d833df5c41e928b07084b63bf661cfff1dd62bef5f90b189c315fdb795bfa4beb4
-DIST microsoft.aspnetcore.app.runtime.linux-arm.6.0.10.nupkg 10089887 BLAKE2B 
88b7d6c875642358253514fa37f39a2ead7243633b77489a4f6f6d9e2e16a6def6ce392fa2dd3bdeddcb9333be29e4dc5996a942cec330657b5855bc0f73
 SHA512 
3b85af7a52c3cf603a45e5bf47934f5671cc5b23c8d4f62d41788f215aeb2f63219951918fe392a8380a2c4891b5c31408e1de653e821de76ea0fe42fc6ac60d
-DIST microsoft.aspnetcore.app.runtime.linux-arm64.6.0.10.nupkg 9858859 BLAKE2B 
9bf86012f62b54d82c85deed67d4db1faadd1093726f8275450d7892b526095c9ca46ca24a2bdf447bc981a592144aec43e6c48869787842af2d44f838c81abd
 SHA512 
8a92c5595028a9ef81fd1ba32f20bd1a8b7dc4d7609b05e7381f15d8777d84952712fb67fc0beb380146007fd71b0575cb258b72e9ff7d1eb4b12821cc557969
-DIST microsoft.aspnetcore.app.runtime.linux-musl-arm.6.0.10.nupkg 10091308 
BLAKE2B 
a356963fd4b6f0b18ec76a63147229c99dea46caaac41c6c8c049436735c04ba5e775ea70c719cc5629dd2f33d2e0a7e2a7d39774bbdbfd5b89b95418e4760c2
 SHA512 
795c63d8222096b20b49e800940d6ce05824d073af9eae35a589db1de6d84ff13c5c96a159f925bbd2d41ac28b0c396a4f119e9c5696c0a99e6ba994ef5bd1c8
-DIST microsoft.aspnetcore.app.runtime.linux-musl-arm64.6.0.10.nupkg 9860220 
BLAKE2B 
68def043eb256be639d8a6600f9059b097fe0469b436294f929ed17ecfc2525073706ceeb1fb78106e3f46d6fe42e3d9a0d316d603f46882cbc2c7115a2a4b13
 SHA512 

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

2023-10-04 Thread Patrick McLean
commit: ca272de78f7e783ad517ce6940797882b27a7b4d
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed Oct  4 20:39:35 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed Oct  4 20:39:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ca272de7

dev-util/cargo-tarpaulin: add 0.27.1, drop 0.27.0

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

 dev-util/cargo-tarpaulin/Manifest  | 14 +++---
 ...rpaulin-0.27.0.ebuild => cargo-tarpaulin-0.27.1.ebuild} | 12 ++--
 2 files changed, 13 insertions(+), 13 deletions(-)

diff --git a/dev-util/cargo-tarpaulin/Manifest 
b/dev-util/cargo-tarpaulin/Manifest
index 3af8af4424be..8b70abac7aaa 100644
--- a/dev-util/cargo-tarpaulin/Manifest
+++ b/dev-util/cargo-tarpaulin/Manifest
@@ -17,11 +17,11 @@ DIST bumpalo-3.12.0.crate 81604 BLAKE2B 
2370094f0c23a3e9b75c8e523e54637189543d9d
 DIST byteorder-1.4.3.crate 22512 BLAKE2B 
d39c546ba7346df315297fc53da4bfc77ecb1f38567ddb788549ee31cae2719a8bc0b7d1f1705abb3cff033aa57af004987d90748f5a31765273b3223a011c0d
 SHA512 
8c8000eb8ecf40351c9ce36a3a8acd7a02f81786d1b11aab85adfeffa0f2267ed74df29b2ca5d1d38128484d1d3cad2b673aa0d0441dcd0620dfd3934bb888fa
 DIST camino-1.1.1.crate 30737 BLAKE2B 
f2403e2f3c4c66f14c298faf582d5ce4f3071be62ecd9ebd4b2d684f0e8d9964e6da14326cd89011c4ec26ede18b26b46f36d04324eb67cda0ebeacf4a18f726
 SHA512 
4709463c158e248a17b3aa1a1d065d397f88f66871a1fcd7389acf2729acb7e6457d60682c7eda3e2654878e428baa8eba48118e2f26650fff641b4a0f84ce48
 DIST cargo-platform-0.1.2.crate 11645 BLAKE2B 
7770acb90e299f71c60bbadceaf894a3100916b7f7458f9c949b683b39157d3e1ec17d850f16dfb04017b01d7734d41872d48cf9f4e1ea7414439cd7031c2330
 SHA512 
c716bf3a4e0942160dbf7be114d1621e1fccc23511e7b0a2b99852b99a851910bfcf8640c2d0d0a03d5a324e1a59fb5d4264ca81bca24e3f1a1ca653bdf2956f
-DIST cargo-tarpaulin-0.27.0.gh.tar.gz 207423 BLAKE2B 
5914c62880941f1671b70c18a7290a84eb2e785e7f04f9ace71d13b3f4a85af8c927ec7a5288843e4c22c829ce3ce18dd9a46a53fe4b0f691433b293243cfdf5
 SHA512 
20179c867604f8e072156aece017d733cca782dd610e45a47669ba6170d28564a5c6637418cd15515b232405acd43170a11c4e1c7fd2d1d36cb7f33ff3b58f8f
+DIST cargo-tarpaulin-0.27.1.gh.tar.gz 207492 BLAKE2B 
f08ff0dedf0bb7cac40dd1fe0ae52a72f839b44a3aebd5de36da3521c84ad8cdad227bdc94e6025c72b7d35cfb3677ec0e2692d87a0cdf5c87570d27769e95c5
 SHA512 
c666d6e0c18e71638cd2131b7048a2caddee34e691c22ababe8d5304ba95855e271aa559e22269bad1dd2a79c13c483eb660b6a930aad6a3745066ebac3c5dbe
 DIST cargo_metadata-0.18.0.crate 22915 BLAKE2B 
43f74dcf3c6e9bf71c712ebfdaf586f1bd7cb5ef3a033d9426252640fecb3aea26f6853b5ea3174e4e46a10d8c4223662076bf20a268b87268866108845b
 SHA512 
9f4c6222496a4e816f81325d0e7dc295fe9aa860016f8256add4d1262891263e681cca999b74fd489136dcac492e0d24b2d2b1a55ffce4c561cfba623a22f3b9
 DIST cc-1.0.73.crate 57880 BLAKE2B 
be8d7a25a54afdd759844e76aec61526fc2bd5ca09480e6cdd3bdcf27e5f9d3a88dc16cbcbf54cd021470a7cc521e1ad468116c112bbd30752bac0d5486939ac
 SHA512 
980f012b90c6410144f6de4995048337e09214f19603076db6d4edb88e9ef9ac9e8c6e25569f66c2be3a47e99298f5886dafc102e1a9122316179aa26bc1c985
 DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
-DIST chrono-0.4.30.crate 212084 BLAKE2B 
27d9ce4aae3ce0278f2c9f4883b6d3a123ae428a14c03f4fa0d90c077e827387df9b2221712e44bb47478de9207d908115d115df967585544dc0cd3aa239e225
 SHA512 
886f064e935220848f966ec2e1e3271849ed20235137836f31ae2aaa8408eaeb657b54b074bdf316914c95ffab9a8c7f53330046e761ef4bfe6ee958d1c7a598
+DIST chrono-0.4.31.crate 214513 BLAKE2B 
2ac43852ea14cb7b129adf68ff62adac1763b3f4802dd3d23c43cb131377b501b4adb22aa93818d7ceded8eb10c17f94a7836257ce2876d0513b063276129c54
 SHA512 
23276daa2c1bc3b7b2327dc84200fb40cc995a8b599d1a537e92e08138ab8a0d1548a510a8155dcdda18820120d7204e89a4686c866fc3a8d2460cdb30ac6089
 DIST clap-4.4.0.crate 54523 BLAKE2B 
0292f888fc6426d4e79fbc82fe382be091c222371d2920cfca93cce9a16b3781d7d9bdddb1be62c4593a18d1bc0be0424139ef26745cb26e2ffbe33e684e30df
 SHA512 
359d61374fe40f00a3b3af0e2962e80829cdd34f91b05c7c2347cf58568913037acda79409e44b25f7529901def008c0da0acf5837f784acc45d14936172f2eb
 DIST clap_builder-4.4.0.crate 162489 BLAKE2B 
0856a43db80c074ee98477a5a83260b56c8fbf73b00855e0120969fb643211955403045c7354878d4774d81df2e3035b9aa361172cd5286adf164565391f6d8b
 SHA512 
2a79dda8d5dc4a0fc7d43f714d003096bacbb6a2c58f5085732f1a9b73d5f8f6346f4d9195a2e5a8d683cc206d59e54e400c9c748c0bc7abb176f6ed62bb3c33
 DIST clap_derive-4.4.0.crate 29055 BLAKE2B 
1cc5364e48025c21dbf72808270ae6c9c1d130307a5e8047335ffc2bb6153a98e55967d11a04fbe2fcb8afb4cca230ec0f637dfb5023309270e62b145bf73ab4
 SHA512 
4c8fc71e2480a93b98c723a1282e68047acace1474fdbd1f6cf76fd6fe95d1564d0929a336da4eed090da0f119f029d087d38e95c05f0f078158c755eabb01a0
@@ -45,7 +45,7 @@ DIST 

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

2023-10-04 Thread Sam James
commit: c1e192a3ea62cc038fcb15ef612f0c37660fd837
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct  4 19:43:36 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct  4 19:43:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1e192a3

net-print/brlaser: don't redefine _FORTIFY_SOURCE

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

 net-print/brlaser/brlaser-6-r1.ebuild | 26 ++
 1 file changed, 26 insertions(+)

diff --git a/net-print/brlaser/brlaser-6-r1.ebuild 
b/net-print/brlaser/brlaser-6-r1.ebuild
new file mode 100644
index ..9870f1912e92
--- /dev/null
+++ b/net-print/brlaser/brlaser-6-r1.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Brother laser printer driver"
+HOMEPAGE="https://github.com/pdewacht/brlaser;
+SRC_URI="https://github.com/pdewacht/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="net-print/cups"
+RDEPEND="
+   ${DEPEND}
+   app-text/ghostscript-gpl"
+
+src_prepare() {
+   # Don't clobber toolchain defaults
+   sed -i -e '/-D_FORTIFY_SOURCE=2/d' CMakeLists.txt || die
+
+   cmake_src_prepare
+}



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

2023-10-04 Thread Sam James
commit: 97e4f3ff50f96bc4b9ec9082de84cdb16478f15d
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct  4 19:50:21 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct  4 19:50:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97e4f3ff

dev-python/jsonschema: Stabilize 4.19.1 x86, #912611

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

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

diff --git a/dev-python/jsonschema/jsonschema-4.19.1.ebuild 
b/dev-python/jsonschema/jsonschema-4.19.1.ebuild
index 5f1744177453..0887437ed98e 100644
--- a/dev-python/jsonschema/jsonschema-4.19.1.ebuild
+++ b/dev-python/jsonschema/jsonschema-4.19.1.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 sparc ~x86"
+KEYWORDS="amd64 arm arm64 ~loong ~ppc ~ppc64 ~riscv ~s390 sparc x86"
 
 RDEPEND="
>=dev-python/attrs-22.2.0[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: x11-plugins/pidgin-otr/files/, x11-plugins/pidgin-otr/

2023-10-04 Thread Sam James
commit: 7e36f7bacb49a0668048fc86cde0b52d571a42a8
Author: Sam James  gentoo  org>
AuthorDate: Wed Oct  4 19:49:55 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Oct  4 19:49:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e36f7ba

x11-plugins/pidgin-otr: don't redefine _FORTIFY_SOURCE

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

 ...gin-otr-4.0.2-dont-clobber-fortify-source.patch | 21 ++
 x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r3.ebuild  | 45 ++
 2 files changed, 66 insertions(+)

diff --git 
a/x11-plugins/pidgin-otr/files/pidgin-otr-4.0.2-dont-clobber-fortify-source.patch
 
b/x11-plugins/pidgin-otr/files/pidgin-otr-4.0.2-dont-clobber-fortify-source.patch
new file mode 100644
index ..e630185cc45f
--- /dev/null
+++ 
b/x11-plugins/pidgin-otr/files/pidgin-otr-4.0.2-dont-clobber-fortify-source.patch
@@ -0,0 +1,21 @@
+Don't clobber our toolchain defaults.
+
+https://bugs.gentoo.org/898526
+--- a/configure.ac
 b/configure.ac
+@@ -141,7 +141,7 @@ AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [
+ ])], have_clang=yes, have_clang=no)
+ 
+ if test x$enable_gcc_hardening != xno; then
+-CFLAGS="$CFLAGS -D_FORTIFY_SOURCE=2"
++CFLAGS="$CFLAGS"
+ if test x$have_clang = xyes; then
+OTR_CHECK_CFLAGS(-Qunused-arguments)
+ fi
+@@ -166,4 +166,6 @@ if test x$enable_linker_hardening != xno; then
+ OTR_CHECK_LDFLAGS(-z relro -z now, "$all_ldflags_for_check", 
"$all_libs_for_check")
+ fi
+ 
++AX_ADD_FORTIFY_SOURCE
++
+ AC_OUTPUT([Makefile po/Makefile.in])

diff --git a/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r3.ebuild 
b/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r3.ebuild
new file mode 100644
index ..f1d7ce738b0f
--- /dev/null
+++ b/x11-plugins/pidgin-otr/pidgin-otr-4.0.2-r3.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="(OTR) Messaging allows you to have private conversations over 
instant messaging"
+HOMEPAGE="http://www.cypherpunks.ca/otr/;
+SRC_URI="http://www.cypherpunks.ca/otr/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   dev-libs/libgcrypt:0
+   net-im/pidgin[gtk]
+   >=net-libs/libotr-4.0.0
+   x11-libs/gtk+:2
+"
+DEPEND="${RDEPEND}"
+# autoconf-archive for F_S patch
+BDEPEND="
+   dev-util/intltool
+   sys-devel/autoconf-archive
+   virtual/pkgconfig
+"
+
+DOCS=( AUTHORS ChangeLog NEWS README )
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.0.2-dont-clobber-fortify-source.patch
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_install() {
+   default
+
+   find "${ED}" -type f -name "*.la" -delete || die
+}



  1   2   3   >