[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-common/

2024-01-28 Thread Sam James
commit: 6d506cce2ed2543b881451f75ce3b898e2c996d8
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Fri Jan 26 23:55:43 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d506cce

sys-devel/clang-common: support llvm prefix on mac

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 .../clang-common/clang-common-16.0.6-r2.ebuild | 29 ++---
 .../clang-common/clang-common-17.0.6-r1.ebuild | 30 --
 .../clang-common/clang-common-18.0.0..ebuild   | 30 --
 .../clang-common-18.0.0_pre20240106.ebuild | 30 --
 .../clang-common-18.0.0_pre20240113.ebuild | 30 --
 .../clang-common-18.0.0_pre20240120.ebuild | 30 --
 .../clang-common/clang-common-19.0.0..ebuild   | 30 --
 sys-devel/clang-common/metadata.xml|  1 +
 8 files changed, 195 insertions(+), 15 deletions(-)

diff --git a/sys-devel/clang-common/clang-common-16.0.6-r2.ebuild 
b/sys-devel/clang-common/clang-common-16.0.6-r2.ebuild
index 88fce05309fd..4385b576d482 100644
--- a/sys-devel/clang-common/clang-common-16.0.6-r2.ebuild
+++ b/sys-devel/clang-common/clang-common-16.0.6-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,8 +12,8 @@ LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
 KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE="
-   default-compiler-rt default-libcxx default-lld llvm-libunwind
-   hardened
+   default-compiler-rt default-libcxx default-lld
+   bootstrap-prefix hardened llvm-libunwind
 "
 
 PDEPEND="
@@ -153,6 +153,29 @@ src_install() {
@gentoo-common.cfg
EOF
done
+
+   if use kernel_Darwin; then
+   cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die
+   # Gentoo Prefix on Darwin
+   -Wl,-search_paths_first
+   -Wl,-rpath,${EPREFIX}/usr/lib
+   -L ${EPREFIX}/usr/lib
+   -isystem ${EPREFIX}/usr/include
+   -isysroot ${EPREFIX}/MacOSX.sdk
+   EOF
+   if use bootstrap-prefix ; then
+   # bootstrap-prefix is only set during stage2 of 
bootstrapping
+   # Prefix, where EPREFIX is set to EPREFIX/tmp.
+   # Here we need to point it at the future lib dir of the 
stage3's
+   # EPREFIX.
+   cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die
+   -Wl,-rpath,${EPREFIX}/../usr/lib
+   EOF
+   fi
+   cat >> "${ED}/etc/clang/clang++.cfg" <<-EOF || die
+   -lc++abi
+   EOF
+   fi
 }
 
 pkg_preinst() {

diff --git a/sys-devel/clang-common/clang-common-17.0.6-r1.ebuild 
b/sys-devel/clang-common/clang-common-17.0.6-r1.ebuild
index 7811c78f5eae..0083e09889b4 100644
--- a/sys-devel/clang-common/clang-common-17.0.6-r1.ebuild
+++ b/sys-devel/clang-common/clang-common-17.0.6-r1.ebuild
@@ -12,8 +12,8 @@ LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
 KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
 IUSE="
-   default-compiler-rt default-libcxx default-lld llvm-libunwind
-   hardened
+   default-compiler-rt default-libcxx default-lld
+   bootstrap-prefix hardened llvm-libunwind
 "
 
 PDEPEND="
@@ -75,6 +75,12 @@ _doclang_cfg() {
EOF
done
 
+   if use kernel_Darwin; then
+   cat >> "${ED}/etc/clang/${triple}-clang++.cfg" <<-EOF || die
+   -lc++abi
+   EOF
+   fi
+
newins - "${triple}-clang-cpp.cfg" <<-EOF
# This configuration file is used by the ${triple}-clang-cpp 
driver.
@gentoo-common.cfg
@@ -241,6 +247,26 @@ src_install() {
local abi_chost=$(get_abi_CHOST "${abi}")
doclang_cfg "${abi_chost}"
done
+
+   if use kernel_Darwin; then
+   cat >> "${ED}/etc/clang/gentoo-common.cfg" <<-EOF || die
+   # Gentoo Prefix on Darwin
+   -Wl,-search_paths_first
+   -Wl,-rpath,${EPREFIX}/usr/lib
+   -L ${EPREFIX}/usr/lib
+   -isystem ${EPREFIX}/usr/include
+   -isysroot ${EPREFIX}/MacOSX.sdk
+   EOF
+   if use bootstrap-prefix ; then
+   # bootstrap-prefix is only set 

[gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm-common/

2024-01-28 Thread Sam James
commit: a93a35fe74394712bb4c592b5a01dca828edabd0
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:03:20 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a93a35fe

sys-devel/llvm-common: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-devel/llvm-common/llvm-common-16.0.6.ebuild | 4 ++--
 sys-devel/llvm-common/llvm-common-17.0.6.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-devel/llvm-common/llvm-common-16.0.6.ebuild 
b/sys-devel/llvm-common/llvm-common-16.0.6.ebuild
index d1ceab13d169..ab2cb092abd1 100644
--- a/sys-devel/llvm-common/llvm-common-16.0.6.ebuild
+++ b/sys-devel/llvm-common/llvm-common-16.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="emacs"
 
 RDEPEND="

diff --git a/sys-devel/llvm-common/llvm-common-17.0.6.ebuild 
b/sys-devel/llvm-common/llvm-common-17.0.6.ebuild
index 73eabf3f9b66..7cc95d08de8a 100644
--- a/sys-devel/llvm-common/llvm-common-17.0.6.ebuild
+++ b/sys-devel/llvm-common/llvm-common-17.0.6.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="emacs"
 
 RDEPEND="



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

2024-01-28 Thread Sam James
commit: 527df027c6924ab1fc1fb6709f38d144cb999b34
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:03:53 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=527df027

sys-devel/clang: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-devel/clang/clang-16.0.6.ebuild | 2 +-
 sys-devel/clang/clang-17.0.6.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/clang/clang-16.0.6.ebuild 
b/sys-devel/clang/clang-16.0.6.ebuild
index 8359b516f713..bd1e86a5edd7 100644
--- a/sys-devel/clang/clang-16.0.6.ebuild
+++ b/sys-devel/clang/clang-16.0.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~arm64-macos ~x64-macos"
 IUSE="debug doc +extra ieee-long-double +pie +static-analyzer test xml"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RESTRICT="!test? ( test )"

diff --git a/sys-devel/clang/clang-17.0.6.ebuild 
b/sys-devel/clang/clang-17.0.6.ebuild
index d0141cfa30da..119385f6d62f 100644
--- a/sys-devel/clang/clang-17.0.6.ebuild
+++ b/sys-devel/clang/clang-17.0.6.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA MIT"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~arm64-macos ~x64-macos"
 IUSE="debug doc +extra ieee-long-double +pie +static-analyzer test xml"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 RESTRICT="!test? ( test )"



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

2024-01-28 Thread Sam James
commit: 6a3903d271f12f46c3bafcef4021fa1bfb16c7a6
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:02:07 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a3903d2

sys-devel/llvm: support llvm prefix on mac

Stop depending on sys-devel/binutils-apple which is required only when
building with gcc, but conflicts when using clang

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-devel/llvm/llvm-16.0.6.ebuild | 3 +--
 sys-devel/llvm/llvm-17.0.6.ebuild | 3 +--
 sys-devel/llvm/llvm-18.0.0..ebuild| 1 -
 sys-devel/llvm/llvm-18.0.0_pre20240106.ebuild | 1 -
 sys-devel/llvm/llvm-18.0.0_pre20240113.ebuild | 1 -
 sys-devel/llvm/llvm-18.0.0_pre20240120.ebuild | 1 -
 sys-devel/llvm/llvm-19.0.0..ebuild| 1 -
 7 files changed, 2 insertions(+), 9 deletions(-)

diff --git a/sys-devel/llvm/llvm-16.0.6.ebuild 
b/sys-devel/llvm/llvm-16.0.6.ebuild
index 37a2e4d59cc3..b3a0f69644fb 100644
--- a/sys-devel/llvm/llvm-16.0.6.ebuild
+++ b/sys-devel/llvm/llvm-16.0.6.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="
+binutils-plugin debug doc exegesis libedit +libffi ncurses test xar
xml z3 zstd
@@ -47,7 +47,6 @@ BDEPEND="
sys-devel/gnuconfig
kernel_Darwin? (
=sys-devel/binutils-apple-5.1
)
doc? ( $(python_gen_any_dep '
dev-python/recommonmark[${PYTHON_USEDEP}]

diff --git a/sys-devel/llvm/llvm-17.0.6.ebuild 
b/sys-devel/llvm/llvm-17.0.6.ebuild
index 7444b297e002..7adb816d2e32 100644
--- a/sys-devel/llvm/llvm-17.0.6.ebuild
+++ b/sys-devel/llvm/llvm-17.0.6.ebuild
@@ -19,7 +19,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA BSD public-domain rc"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="
+binutils-plugin debug debuginfod doc exegesis libedit +libffi
ncurses test xar xml z3 zstd
@@ -51,7 +51,6 @@ BDEPEND="
sys-devel/gnuconfig
kernel_Darwin? (
=sys-devel/binutils-apple-5.1
)
doc? ( $(python_gen_any_dep '
dev-python/recommonmark[${PYTHON_USEDEP}]

diff --git a/sys-devel/llvm/llvm-18.0.0..ebuild 
b/sys-devel/llvm/llvm-18.0.0..ebuild
index 9c1e247877cc..80b458f57415 100644
--- a/sys-devel/llvm/llvm-18.0.0..ebuild
+++ b/sys-devel/llvm/llvm-18.0.0..ebuild
@@ -49,7 +49,6 @@ BDEPEND="
sys-devel/gnuconfig
kernel_Darwin? (
=sys-devel/binutils-apple-5.1
)
doc? ( $(python_gen_any_dep '
dev-python/myst-parser[${PYTHON_USEDEP}]

diff --git a/sys-devel/llvm/llvm-18.0.0_pre20240106.ebuild 
b/sys-devel/llvm/llvm-18.0.0_pre20240106.ebuild
index 9c1e247877cc..80b458f57415 100644
--- a/sys-devel/llvm/llvm-18.0.0_pre20240106.ebuild
+++ b/sys-devel/llvm/llvm-18.0.0_pre20240106.ebuild
@@ -49,7 +49,6 @@ BDEPEND="
sys-devel/gnuconfig
kernel_Darwin? (
=sys-devel/binutils-apple-5.1
)
doc? ( $(python_gen_any_dep '
dev-python/myst-parser[${PYTHON_USEDEP}]

diff --git a/sys-devel/llvm/llvm-18.0.0_pre20240113.ebuild 
b/sys-devel/llvm/llvm-18.0.0_pre20240113.ebuild
index 9c1e247877cc..80b458f57415 100644
--- a/sys-devel/llvm/llvm-18.0.0_pre20240113.ebuild
+++ b/sys-devel/llvm/llvm-18.0.0_pre20240113.ebuild
@@ -49,7 +49,6 @@ BDEPEND="
sys-devel/gnuconfig
kernel_Darwin? (
=sys-devel/binutils-apple-5.1
)
doc? ( $(python_gen_any_dep '
dev-python/myst-parser[${PYTHON_USEDEP}]

diff --git a/sys-devel/llvm/llvm-18.0.0_pre20240120.ebuild 
b/sys-devel/llvm/llvm-18.0.0_pre20240120.ebuild
index 9c1e247877cc..80b458f57415 100644
--- a/sys-devel/llvm/llvm-18.0.0_pre20240120.ebuild
+++ b/sys-devel/llvm/llvm-18.0.0_pre20240120.ebuild
@@ -49,7 +49,6 @@ BDEPEND="
sys-devel/gnuconfig
kernel_Darwin? (
=sys-devel/binutils-apple-5.1
)
doc? ( $(python_gen_any_dep '
dev-python/myst-parser[${PYTHON_USEDEP}]

diff --git a/sys-devel/llvm/llvm-19.0.0..ebuild 
b/sys-devel/llvm/llvm-19.0.0..ebuild
index a0c0d6fa41d6..23646ea90d8a 100644
--- a/sys-devel/llvm/llvm-19.0.0..ebuild
+++ b/sys-devel/llvm/llvm-19.0.0..ebuild
@@ -49,7 +49,6 @@ 

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

2024-01-28 Thread Sam James
commit: 007965a908d3181efef3862cb561d526a1967307
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:04:13 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=007965a9

sys-devel/lld: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-devel/lld/lld-16.0.6.ebuild | 2 +-
 sys-devel/lld/lld-17.0.6.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-devel/lld/lld-16.0.6.ebuild b/sys-devel/lld/lld-16.0.6.ebuild
index d3f55d11c164..9308190da16c 100644
--- a/sys-devel/lld/lld-16.0.6.ebuild
+++ b/sys-devel/lld/lld-16.0.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86 ~arm64-macos"
 IUSE="debug test zstd"
 RESTRICT="!test? ( test )"
 

diff --git a/sys-devel/lld/lld-17.0.6.ebuild b/sys-devel/lld/lld-17.0.6.ebuild
index 20e6d2e4fef4..628ca40e4df2 100644
--- a/sys-devel/lld/lld-17.0.6.ebuild
+++ b/sys-devel/lld/lld-17.0.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions UoI-NCSA"
 SLOT="${LLVM_MAJOR}/${LLVM_SOABI}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~arm64-macos"
 IUSE="debug test zstd"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-toolchain-symlinks/

2024-01-28 Thread Sam James
commit: b64e6494b6060533896d10c58784abe9c59417c3
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:04:27 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b64e6494

sys-devel/clang-toolchain-symlinks: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 .../clang-toolchain-symlinks/clang-toolchain-symlinks-16-r2.ebuild| 4 ++--
 sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-17.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-16-r2.ebuild 
b/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-16-r2.ebuild
index 921554975423..436e2673639f 100644
--- a/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-16-r2.ebuild
+++ b/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-16-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="${PV}"
-KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~arm64-macos ~x64-macos"
 IUSE="gcc-symlinks multilib-symlinks +native-symlinks"
 
 # Blocker for bug #872416

diff --git 
a/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-17.ebuild 
b/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-17.ebuild
index de73063d3b6c..48b2c700fbab 100644
--- a/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-17.ebuild
+++ b/sys-devel/clang-toolchain-symlinks/clang-toolchain-symlinks-17.ebuild
@@ -11,7 +11,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="${PV}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~arm64-macos ~x64-macos"
 IUSE="gcc-symlinks multilib-symlinks +native-symlinks"
 
 # Blocker for bug #872416



[gentoo-commits] repo/gentoo:master commit in: sys-devel/lld-toolchain-symlinks/

2024-01-28 Thread Sam James
commit: d2a7921ce75cd832f21d3a5301a185470b8d3948
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:04:40 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2a7921c

sys-devel/lld-toolchain-symlinks: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-16-r2.ebuild | 4 ++--
 sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-17.ebuild| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-16-r2.ebuild 
b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-16-r2.ebuild
index 44a21b6fb09f..2eb282b65da9 100644
--- a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-16-r2.ebuild
+++ b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-16-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86 ~arm64-macos"
 IUSE="multilib-symlinks +native-symlinks"
 
 RDEPEND="

diff --git a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-17.ebuild 
b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-17.ebuild
index 268740a11d62..6eae2284ab73 100644
--- a/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-17.ebuild
+++ b/sys-devel/lld-toolchain-symlinks/lld-toolchain-symlinks-17.ebuild
@@ -11,7 +11,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="${PV}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv x86 ~arm64-macos"
 IUSE="multilib-symlinks +native-symlinks"
 
 RDEPEND="



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

2024-01-28 Thread Sam James
commit: 8493d856a4537767bce88402b71bae2e89740837
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:06:08 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8493d856

sys-libs/binutils-libs: keyword 2.41-r5 for ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-libs/binutils-libs/binutils-libs-2.41-r5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/binutils-libs/binutils-libs-2.41-r5.ebuild 
b/sys-libs/binutils-libs/binutils-libs-2.41-r5.ebuild
index f237bb30918c..376e1cd8e84a 100644
--- a/sys-libs/binutils-libs/binutils-libs-2.41-r5.ebuild
+++ b/sys-libs/binutils-libs/binutils-libs-2.41-r5.ebuild
@@ -24,7 +24,7 @@ LICENSE="|| ( GPL-3 LGPL-3 )"
 SLOT="0/${PV%_p?}.0"
 
 IUSE="64-bit-bfd cet multitarget nls static-libs test"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~arm64-macos ~x64-macos ~x64-solaris"
 RESTRICT="!test? ( test )"
 
 BDEPEND="



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

2024-01-28 Thread Sam James
commit: 6ecad4bb214700c473eb0446e647e969aa121d45
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:05:24 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ecad4bb

sys-libs/libcxxabi: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-libs/libcxxabi/libcxxabi-16.0.6.ebuild | 4 ++--
 sys-libs/libcxxabi/libcxxabi-17.0.6.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-libs/libcxxabi/libcxxabi-16.0.6.ebuild 
b/sys-libs/libcxxabi/libcxxabi-16.0.6.ebuild
index 3cb62cfef440..b9dcfb43e585 100644
--- a/sys-libs/libcxxabi/libcxxabi-16.0.6.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-16.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~riscv sparc x86 ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ~riscv sparc x86 ~arm64-macos ~x64-macos"
 IUSE="+clang +static-libs test"
 REQUIRED_USE="test? ( clang )"
 RESTRICT="!test? ( test )"

diff --git a/sys-libs/libcxxabi/libcxxabi-17.0.6.ebuild 
b/sys-libs/libcxxabi/libcxxabi-17.0.6.ebuild
index 0d2dccaa2a67..208f0034bf66 100644
--- a/sys-libs/libcxxabi/libcxxabi-17.0.6.ebuild
+++ b/sys-libs/libcxxabi/libcxxabi-17.0.6.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://libcxxabi.llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~riscv ~sparc x86 ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~riscv ~sparc x86 ~arm64-macos ~x64-macos"
 IUSE="+clang +static-libs test"
 REQUIRED_USE="test? ( clang )"
 RESTRICT="!test? ( test )"



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

2024-01-28 Thread Sam James
commit: ef579f90f75b3404ea6f371cc7cb7dbc8a364142
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:05:46 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef579f90

sys-libs/compiler-rt: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-libs/compiler-rt/compiler-rt-16.0.6-r4.ebuild | 2 +-
 sys-libs/compiler-rt/compiler-rt-16.0.6.ebuild| 2 +-
 sys-libs/compiler-rt/compiler-rt-17.0.6.ebuild| 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-libs/compiler-rt/compiler-rt-16.0.6-r4.ebuild 
b/sys-libs/compiler-rt/compiler-rt-16.0.6-r4.ebuild
index 47dad1c02926..6ac04f68fce4 100644
--- a/sys-libs/compiler-rt/compiler-rt-16.0.6-r4.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-16.0.6-r4.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="${LLVM_MAJOR}"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc64 ~riscv ~x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="+abi_x86_32 abi_x86_64 +clang debug test"
 RESTRICT="!test? ( test ) !clang? ( test )"
 

diff --git a/sys-libs/compiler-rt/compiler-rt-16.0.6.ebuild 
b/sys-libs/compiler-rt/compiler-rt-16.0.6.ebuild
index c604f3b75612..4c27d82506bb 100644
--- a/sys-libs/compiler-rt/compiler-rt-16.0.6.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-16.0.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="${LLVM_MAJOR}"
-KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86 ~amd64-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc64 ~riscv x86 ~amd64-linux ~arm64-macos 
~ppc-macos ~x64-macos"
 IUSE="+abi_x86_32 abi_x86_64 +clang debug test"
 RESTRICT="!test? ( test ) !clang? ( test )"
 

diff --git a/sys-libs/compiler-rt/compiler-rt-17.0.6.ebuild 
b/sys-libs/compiler-rt/compiler-rt-17.0.6.ebuild
index 21b2dd5ed1c6..0aeb0b1fdab8 100644
--- a/sys-libs/compiler-rt/compiler-rt-17.0.6.ebuild
+++ b/sys-libs/compiler-rt/compiler-rt-17.0.6.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://llvm.org/;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="${LLVM_MAJOR}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc64 ~riscv x86 ~amd64-linux ~arm64-macos 
~ppc-macos ~x64-macos"
 IUSE="+abi_x86_32 abi_x86_64 +clang debug test"
 RESTRICT="!test? ( test ) !clang? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-devel/clang-runtime/

2024-01-28 Thread Sam James
commit: 334aa419406fda2da409e35acba326cc325f2f2a
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Fri Jan 26 23:59:37 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:36 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=334aa419

sys-devel/clang-runtime: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 sys-devel/clang-runtime/clang-runtime-16.0.6.ebuild | 4 ++--
 sys-devel/clang-runtime/clang-runtime-17.0.6.ebuild | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-devel/clang-runtime/clang-runtime-16.0.6.ebuild 
b/sys-devel/clang-runtime/clang-runtime-16.0.6.ebuild
index a1637424d102..25889f60d661 100644
--- a/sys-devel/clang-runtime/clang-runtime-16.0.6.ebuild
+++ b/sys-devel/clang-runtime/clang-runtime-16.0.6.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ HOMEPAGE="https://clang.llvm.org/;
 
 LICENSE="metapackage"
 SLOT="${PV%%.*}"
-KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="+compiler-rt libcxx openmp +sanitize"
 REQUIRED_USE="sanitize? ( compiler-rt )"
 

diff --git a/sys-devel/clang-runtime/clang-runtime-17.0.6.ebuild 
b/sys-devel/clang-runtime/clang-runtime-17.0.6.ebuild
index 8fdb54de496d..c6a39818cd4e 100644
--- a/sys-devel/clang-runtime/clang-runtime-17.0.6.ebuild
+++ b/sys-devel/clang-runtime/clang-runtime-17.0.6.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://clang.llvm.org/;
 
 LICENSE="metapackage"
 SLOT="${PV%%.*}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="+compiler-rt libcxx openmp +sanitize"
 REQUIRED_USE="sanitize? ( compiler-rt )"
 



[gentoo-commits] repo/gentoo:master commit in: sys-devel/llvm-toolchain-symlinks/

2024-01-28 Thread Sam James
commit: e4f745bd5c2062ebd83fc39050b5c5b6a9636197
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:04:54 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4f745bd

sys-devel/llvm-toolchain-symlinks: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Signed-off-by: Sam James  gentoo.org>

 .../llvm-toolchain-symlinks/llvm-toolchain-symlinks-16-r1.ebuild  | 4 ++--
 sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-17.ebuild   | 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git 
a/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-16-r1.ebuild 
b/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-16-r1.ebuild
index 62b9bc3714f6..c1c22114f553 100644
--- a/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-16-r1.ebuild
+++ b/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-16-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2022-2023 Gentoo Authors
+# Copyright 2022-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="${PV}"
-KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="multilib-symlinks +native-symlinks"
 
 RDEPEND="

diff --git 
a/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-17.ebuild 
b/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-17.ebuild
index 4c9ea68a2f1b..ff384d98373f 100644
--- a/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-17.ebuild
+++ b/sys-devel/llvm-toolchain-symlinks/llvm-toolchain-symlinks-17.ebuild
@@ -11,7 +11,7 @@ S=${WORKDIR}
 
 LICENSE="public-domain"
 SLOT="${PV}"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~arm64-macos ~ppc-macos ~x64-macos"
 IUSE="multilib-symlinks +native-symlinks"
 
 RDEPEND="



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

2024-01-28 Thread Sam James
commit: 12dbee9e68afd185da7cea260722d70710d14315
Author: Alexey Sokolov  asokolov  org>
AuthorDate: Sat Jan 27 00:09:22 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:55:38 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12dbee9e

sys-libs/llvm-libunwind: keyword ~arm64-macos

Bug: https://bugs.gentoo.org/758167
Signed-off-by: Alexey Sokolov  asokolov.org>
Closes: https://github.com/gentoo/gentoo/pull/35031
Signed-off-by: Sam James  gentoo.org>

 sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild | 4 ++--
 sys-libs/llvm-libunwind/llvm-libunwind-17.0.6.ebuild| 2 +-
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild
index 18d5066e295f..e61b9836b074 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-16.0.6-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/docs/ExceptionHandling.html;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv sparc x86 ~x64-macos"
+KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv sparc x86 ~arm64-macos 
~x64-macos"
 IUSE="+clang debug static-libs test"
 REQUIRED_USE="test? ( clang )"
 RESTRICT="!test? ( test )"

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.6.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-17.0.6.ebuild
index 3018bd80dc4f..e5a99b01218b 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-17.0.6.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-17.0.6.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://llvm.org/docs/ExceptionHandling.html;
 
 LICENSE="Apache-2.0-with-LLVM-exceptions || ( UoI-NCSA MIT )"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~x64-macos"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc x86 ~arm64-macos 
~x64-macos"
 IUSE="+clang debug static-libs test"
 REQUIRED_USE="test? ( clang )"
 RESTRICT="!test? ( test )"



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

2024-01-28 Thread Yixun Lan
commit: 071e77401276c1b094a40e6bb8b6ee4d2fc76eb8
Author: Martin Gysel  bearsh  org>
AuthorDate: Sat Jan 27 13:27:31 2024 +
Commit: Yixun Lan  gentoo  org>
CommitDate: Sun Jan 28 10:21:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=071e7740

dev-vcs/git-cola: add 4.5.0

Closes: https://bugs.gentoo.org/923027
Closes: https://github.com/gentoo/gentoo/pull/35043
Signed-off-by: Martin Gysel  bearsh.org>
Signed-off-by: Yixun Lan  gentoo.org>

 dev-vcs/git-cola/Manifest  |  1 +
 dev-vcs/git-cola/git-cola-4.5.0.ebuild | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/dev-vcs/git-cola/Manifest b/dev-vcs/git-cola/Manifest
index 07c8df143593..21d6ba773b12 100644
--- a/dev-vcs/git-cola/Manifest
+++ b/dev-vcs/git-cola/Manifest
@@ -1,3 +1,4 @@
 DIST git-cola-4.1.0.tar.gz 1140393 BLAKE2B 
3236e06f86d23a7311e3cd639cbf2adcecb18810abcae938d1ff7cf25b477d814e614fffa20ce39dd9a2c6ab4f8e6b6b67f3ad3144163abe6530ac227313ca98
 SHA512 
4d2617947d4dbf3273f02c072de5ede10a656981f3653273780e2c1b1d3d613cd359fbb93cfb0a1d5de24b0c90818503cd9041ad3fa1a05b2ecd2db305bbe1a0
 DIST git-cola-4.2.1.tar.gz 1191680 BLAKE2B 
8dd9d4b52672e32deba2f54e7f9141d3364dcbf3a823b05e766f333063a26cc49ea9e5e2f43f9492447b6b7344c930a2a1160653fb2699ff7d23cb22783f4cd1
 SHA512 
1a9d63c985d3566f81edd3ed3debc4d499fa5147650d479f3b1bc833d08836a17d63a8eb23c1cd5c2c31f6f7202219fb77cacb628df8f85dd3d367dcdd110891
 DIST git-cola-4.4.1.tar.gz 1212338 BLAKE2B 
8f95720fa8af0acdecf744f657808b969f914bfd1cb2ccd2ed3af35f2811ab8aca7022ba888e0fc447a685af4c7dba27a0f0305f0b2d07cc31ccd22953d4fa14
 SHA512 
3e4e1cb8cd148b34e663c72c6b3d1e887815b5a86558ffbf13a19a5dfd3fb6b37c123290dc514b6f098893587dc67ca34424aaad5482768795e353f0efe92797
+DIST git-cola-4.5.0.tar.gz 1233372 BLAKE2B 
da9bbe2d1e49b5ebc49ae6ddecf72a73b4b262de2de6c5a9ef77d9946a338bb393154e91e8431dc11fc08f72e3fcfd19d424d68c2b846d05c0a87393f8cc33ac
 SHA512 
99a17bf0398dc3049417b6af6f3fc3bc20682186859879c6fc3d2b8f9a8b3599612c555b40f76dd226323cefab0dec0b4424a566dc74637449743f675cb56817

diff --git a/dev-vcs/git-cola/git-cola-4.5.0.ebuild 
b/dev-vcs/git-cola/git-cola-4.5.0.ebuild
new file mode 100644
index ..198112123abf
--- /dev/null
+++ b/dev-vcs/git-cola/git-cola-4.5.0.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+DISTUTILS_SINGLE_IMPL=true
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 readme.gentoo-r1 virtualx xdg
+
+DESCRIPTION="The highly caffeinated git GUI"
+HOMEPAGE="https://git-cola.github.io/;
+SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   $(python_gen_cond_dep '
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pygments[${PYTHON_USEDEP}]
+   dev-python/PyQt5[${PYTHON_USEDEP},gui,widgets]
+   dev-python/QtPy[gui,network,${PYTHON_USEDEP}]
+   dev-python/send2trash[${PYTHON_USEDEP}]
+   ')
+   dev-vcs/git
+"
+BDEPEND="
+   sys-devel/gettext
+   $(python_gen_cond_dep "
+   dev-python/setuptools-scm[\${PYTHON_USEDEP}]
+   test? (
+   ${VIRTUALX_DEPEND}
+   dev-python/pytest[\${PYTHON_USEDEP}]
+   dev-python/PyQt5[\${PYTHON_USEDEP},gui,widgets]
+   )
+   ")
+"
+
+distutils_enable_sphinx docs \
+   'dev-python/rst-linker'
+distutils_enable_tests pytest
+
+src_prepare() {
+   sed -i "s|doc/git-cola =|doc/${PF} =|" setup.cfg || die
+   distutils-r1_src_prepare
+}
+
+src_test() {
+   virtx distutils-r1_src_test
+}
+
+python_test() {
+   cd "${T}" || die
+   GIT_CONFIG_NOSYSTEM=true LC_ALL="C.utf8" \
+   epytest "${S}"/test
+}
+
+src_compile() {
+   SETUPTOOLS_SCM_PRETEND_VERSION=${PV} distutils-r1_src_compile
+}
+
+src_install() {
+   distutils-r1_src_install
+   readme.gentoo_create_doc
+}



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

2024-01-28 Thread Pacho Ramos
commit: 89e56aebc1c2c7d8c7e632ef2f95c4d887e84305
Author: Guillermo Joandet  gmail  com>
AuthorDate: Fri Jan  5 23:06:47 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 11:45:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=89e56aeb

gnome-extra/zenity: Version bump to 4.0.1

Signed-off-by: Guillermo Joandet  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34664
Signed-off-by: Pacho Ramos  gentoo.org>

 gnome-extra/zenity/Manifest|  1 +
 gnome-extra/zenity/zenity-4.0.1.ebuild | 50 ++
 2 files changed, 51 insertions(+)

diff --git a/gnome-extra/zenity/Manifest b/gnome-extra/zenity/Manifest
index 3d7edae094c1..8530e0935b67 100644
--- a/gnome-extra/zenity/Manifest
+++ b/gnome-extra/zenity/Manifest
@@ -3,3 +3,4 @@ DIST zenity-3.99.2.tar.xz 3084880 BLAKE2B 
a6ae2a465516f2e019ad5bec5a4f5bad42dc49
 DIST zenity-3.99.90.tar.xz 3086228 BLAKE2B 
7254447125019b309ef3466fd6f7fc935968395dbd4d506b69a8b80ea4e8150620f6e0647265dcb2023f9f28bb59a84d174d8563f4a9ba0a3598489931070e79
 SHA512 
7f1dbf9baa6960059eb7e973b175a2b4411b695d211fb3fc290bd393a75cdb201a440adb05fbe7f6a1d162d3b80a409c3b64573abb037b047a9a8c27c981e9a1
 DIST zenity-3.99.91.tar.xz 3086032 BLAKE2B 
fc1bddfbf0462768438a52ab738a921603054a78a139b12fb516e8c9640d1039776614cef266092843b8c14bb856f3d704414dd5e07abe686bf7dbfbf08e4a7a
 SHA512 
face2f4ca11dd9b3ab56995efe6db7bd209494019d1454eab8813a537971eb5b229103374a85e7324229357b7f1723508a0a1e263ec05ac4a99c7c0eb3a9
 DIST zenity-4.0.0.tar.xz 3092552 BLAKE2B 
b9a7f4421fdba9c6d10a7cf0bbdf227c424a144f13efca8472fb6a76d8dbdfaf4603fcdd896f2a7ce086c453ae0aeb275253c3728a844932ec3a308b07fbc2ab
 SHA512 
ae7709e5e8a7d76210e17512bd3509ff7273af59c29b3d9b8210b0a00c538e126b0689adfee1d63775affa8df8480d5c3b75deb8c130e4d596710e9aee51ab9e
+DIST zenity-4.0.1.tar.xz 3093476 BLAKE2B 
47ea26adc69bd302e8c59d2fae9c5647fbbadbfd9c61870d6ab5e85cf2bc62af415236cef782ae6f790a756c265113bb23e5be449447270dc0ec41cae23506a5
 SHA512 
f84e14fd66dbe6bd21d030c1879d8d44250bc8c0661c5ccb6cad7fe8d257e4b01427ce27894cf5a5c27566113587f6b34adc9051826e870e44b836b5c63fb11f

diff --git a/gnome-extra/zenity/zenity-4.0.1.ebuild 
b/gnome-extra/zenity/zenity-4.0.1.ebuild
new file mode 100644
index ..7a45551b4f15
--- /dev/null
+++ b/gnome-extra/zenity/zenity-4.0.1.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit gnome.org gnome2-utils meson xdg
+
+DESCRIPTION="Tool to display dialogs from the commandline and shell scripts"
+HOMEPAGE="https://wiki.gnome.org/Projects/Zenity;
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
+IUSE="man webkit"
+
+# TODO: X11 dependency is automagically enabled
+RDEPEND="
+   >=gui-libs/libadwaita-1.2:1
+   webkit? ( >=net-libs/webkit-gtk-2.40.1:6 )
+   man? ( sys-apps/help2man )
+   x11-libs/gdk-pixbuf:2
+   x11-libs/pango
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-util/itstool
+   >=sys-devel/gettext-0.19.4
+   virtual/pkgconfig
+"
+
+src_configure() {
+   local emesonargs=(
+   $(meson_use webkit webkitgtk)
+   $(meson_use man manpage)
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



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

2024-01-28 Thread Pacho Ramos
commit: 7f8b9583ad89992d8c958e5c1f979b6f23fa845e
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 11:35:52 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 11:45:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7f8b9583

gnome-extra/zenity: update LICENSE

Signed-off-by: Pacho Ramos  gentoo.org>

 gnome-extra/zenity/zenity-4.0.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/zenity/zenity-4.0.1.ebuild 
b/gnome-extra/zenity/zenity-4.0.1.ebuild
index 7a45551b4f15..5aa24919bf45 100644
--- a/gnome-extra/zenity/zenity-4.0.1.ebuild
+++ b/gnome-extra/zenity/zenity-4.0.1.ebuild
@@ -7,7 +7,7 @@ inherit gnome.org gnome2-utils meson xdg
 DESCRIPTION="Tool to display dialogs from the commandline and shell scripts"
 HOMEPAGE="https://wiki.gnome.org/Projects/Zenity;
 
-LICENSE="LGPL-2+"
+LICENSE="LGPL-2.1+"
 SLOT="0"
 KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
 IUSE="man webkit"



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

2024-01-28 Thread Pacho Ramos
commit: c612d41780544f11f1224f0e32043e4327df9189
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 11:36:56 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 11:45:43 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c612d417

gnome-extra/zenity: drop 3.99.2, 3.99.90, 3.99.91

Signed-off-by: Pacho Ramos  gentoo.org>

 gnome-extra/zenity/Manifest|  3 --
 2-Make-help2man-depend-on-manpage-option.patch | 28 ---
 gnome-extra/zenity/zenity-3.99.2.ebuild| 54 --
 gnome-extra/zenity/zenity-3.99.90.ebuild   | 50 
 gnome-extra/zenity/zenity-3.99.91.ebuild   | 50 
 5 files changed, 185 deletions(-)

diff --git a/gnome-extra/zenity/Manifest b/gnome-extra/zenity/Manifest
index 8530e0935b67..4b2bb44755e8 100644
--- a/gnome-extra/zenity/Manifest
+++ b/gnome-extra/zenity/Manifest
@@ -1,6 +1,3 @@
 DIST zenity-3.44.2.tar.xz 3095752 BLAKE2B 
07d5b9aa673ae1e719bbd8d2ff85394ce19b9e77c36c3b6cf73d6b806dbcb0ab6322d13e66a715ebf5aefc14fa289a31367d0f0abd6ceaa9df7e3d7d12049492
 SHA512 
60f139b18db9ddf95a9c3481b08a3b99dd56ce457a49d99dc33f59570837e8498e8819bdd130c915a08e40042b2f3af583bd0fe4498adb8152632bd044137f2f
-DIST zenity-3.99.2.tar.xz 3084880 BLAKE2B 
a6ae2a465516f2e019ad5bec5a4f5bad42dc499f85e5f293804d18c572a3f2dd69224ceb6dfc62156aaff587d8a4e78549e8cc88493c842a6ad056ce58c85920
 SHA512 
6130c01e34e74bd6d068cbd6d3c1e208fce73cbce61851482e0dbc5c24322953899b6de7859ed86fe89850a1650ad28f8815cf709c152c02a685725350260afb
-DIST zenity-3.99.90.tar.xz 3086228 BLAKE2B 
7254447125019b309ef3466fd6f7fc935968395dbd4d506b69a8b80ea4e8150620f6e0647265dcb2023f9f28bb59a84d174d8563f4a9ba0a3598489931070e79
 SHA512 
7f1dbf9baa6960059eb7e973b175a2b4411b695d211fb3fc290bd393a75cdb201a440adb05fbe7f6a1d162d3b80a409c3b64573abb037b047a9a8c27c981e9a1
-DIST zenity-3.99.91.tar.xz 3086032 BLAKE2B 
fc1bddfbf0462768438a52ab738a921603054a78a139b12fb516e8c9640d1039776614cef266092843b8c14bb856f3d704414dd5e07abe686bf7dbfbf08e4a7a
 SHA512 
face2f4ca11dd9b3ab56995efe6db7bd209494019d1454eab8813a537971eb5b229103374a85e7324229357b7f1723508a0a1e263ec05ac4a99c7c0eb3a9
 DIST zenity-4.0.0.tar.xz 3092552 BLAKE2B 
b9a7f4421fdba9c6d10a7cf0bbdf227c424a144f13efca8472fb6a76d8dbdfaf4603fcdd896f2a7ce086c453ae0aeb275253c3728a844932ec3a308b07fbc2ab
 SHA512 
ae7709e5e8a7d76210e17512bd3509ff7273af59c29b3d9b8210b0a00c538e126b0689adfee1d63775affa8df8480d5c3b75deb8c130e4d596710e9aee51ab9e
 DIST zenity-4.0.1.tar.xz 3093476 BLAKE2B 
47ea26adc69bd302e8c59d2fae9c5647fbbadbfd9c61870d6ab5e85cf2bc62af415236cef782ae6f790a756c265113bb23e5be449447270dc0ec41cae23506a5
 SHA512 
f84e14fd66dbe6bd21d030c1879d8d44250bc8c0661c5ccb6cad7fe8d257e4b01427ce27894cf5a5c27566113587f6b34adc9051826e870e44b836b5c63fb11f

diff --git 
a/gnome-extra/zenity/files/3.99.2-Make-help2man-depend-on-manpage-option.patch 
b/gnome-extra/zenity/files/3.99.2-Make-help2man-depend-on-manpage-option.patch
deleted file mode 100644
index 8c9de5f67290..
--- 
a/gnome-extra/zenity/files/3.99.2-Make-help2man-depend-on-manpage-option.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-https://gitlab.gnome.org/GNOME/zenity/-/commit/8a76b35828b7354f042684afa65ea696c7349af7
-https://gitlab.gnome.org/GNOME/zenity/-/merge_requests/33
-
-From 8a76b35828b7354f042684afa65ea696c7349af7 Mon Sep 17 00:00:00 2001
-From: Guillermo Joandet 
-Date: Wed, 13 Sep 2023 17:17:51 +
-Subject: [PATCH] build: Make building manpage dependent upon manpage option.
-

- data/meson.build | 2 +-
- 1 file changed, 1 insertion(+), 1 deletion(-)
-
-diff --git a/data/meson.build b/data/meson.build
-index 41b94add..9042de80 100644
 a/data/meson.build
-+++ b/data/meson.build
-@@ -27,7 +27,7 @@ endif
- help2man = find_program('help2man', required: get_option('manpage'))
- # help2man has to run zenity to generate the man page, which it can't do if
- # we're cross building. We also can't tell help2man what exe wrapper to use.
--if help2man.found() and not meson.is_cross_build()
-+if help2man.found() and not meson.is_cross_build() and get_option('manpage')
-   help2man_opts = [
- '--no-info',
- '--section=1',
--- 
-2.42.0
-

diff --git a/gnome-extra/zenity/zenity-3.99.2.ebuild 
b/gnome-extra/zenity/zenity-3.99.2.ebuild
deleted file mode 100644
index c02ca7307a24..
--- a/gnome-extra/zenity/zenity-3.99.2.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit gnome.org gnome2-utils meson xdg
-
-DESCRIPTION="Tool to display dialogs from the commandline and shell scripts"
-HOMEPAGE="https://wiki.gnome.org/Projects/Zenity;
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86 ~amd64-linux 
~x86-linux"
-IUSE="man webkit"
-
-# TODO: X11 dependency is automagically enabled
-RDEPEND="
-   >=gui-libs/libadwaita-1.2:1
-   

[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-dash-to-panel/

2024-01-28 Thread Pacho Ramos
commit: 772072b92556359d19551ce506d8bc80be930355
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 11:53:40 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 11:53:40 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=772072b9

gnome-extra/gnome-shell-extension-dash-to-panel: add 60

Signed-off-by: Pacho Ramos  gentoo.org>

 .../gnome-shell-extension-dash-to-panel/Manifest   |  1 +
 .../gnome-shell-extension-dash-to-panel-60.ebuild  | 74 ++
 2 files changed, 75 insertions(+)

diff --git a/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest 
b/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest
index 0c4de37d59e6..a0c14d8686e8 100644
--- a/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest
+++ b/gnome-extra/gnome-shell-extension-dash-to-panel/Manifest
@@ -1,3 +1,4 @@
 DIST gnome-shell-extension-dash-to-panel-56.tar.gz 21206272 BLAKE2B 
31ce957b1cc7e57b9c10c1f092a5b8a20b8b9aff2871954df48de584fd42e079cabfc3cf17f25d29f90d8551a3ae4ddc4dad1047659be408133ca0f459edadca
 SHA512 
f11da73e72bb5199e55067dc581c019624db301947460861e56b50488b8da0151a71e82676f03f9283d2931dc15e23b0e7c0a149310951757d21983b216db2e5
 DIST gnome-shell-extension-dash-to-panel-59.tar.gz 21205305 BLAKE2B 
e5cfd058b44c8ca227d3ea58718861601197df536f0441b7df6256434419ae1a52d4b8e38bc0888c939f70452db4d3bfe9fdaac90069011221277e2f8aee399c
 SHA512 
f4824de4a60d8f96f225301599f0525619b297af060c5ff6cf60c615351110009f8920f0cca8a4adba8202b9daa2e0d9f88d8d2d9d1eedde27eef1144e59179a
+DIST gnome-shell-extension-dash-to-panel-60.tar.gz 21206762 BLAKE2B 
09812710837b2c250d3049d2aef8b8ab0944f29f9d08816d3befb85bcb23b07d57aeef48011e9104a2b42c7b4bd337fdd0fcd3f19a000626196d936fefdd9a81
 SHA512 
8dafa4e920a83a22f6cb82818f7360e62a81e8c66c68a6fb5d78f1f4c3b5ff3e3dbf6e7889c793f4a73ba5b87dd50232220aab299ebe5ff7535d7addc66a3dd7
 DIST tango-gentoo-v1.1.tar.gz 29322 BLAKE2B 
83fa2bf37727e60851dd679054fe1b153ebfea58c9a9a40f891f7d68d3b047b02e8effa1d1b4e08d64500a2072ce7200f159c92a352da7124de27e1b05bb6027
 SHA512 
87d47ddab68361db6d99866c51705dcb3e198f8345a1096859acf2c6cca5099dd23c7fb30d124f52c4933ea38fd45fadffbbe6ecbdfa84f5b60938a4824f9045

diff --git 
a/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-60.ebuild
 
b/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-60.ebuild
new file mode 100644
index ..90fe09120b18
--- /dev/null
+++ 
b/gnome-extra/gnome-shell-extension-dash-to-panel/gnome-shell-extension-dash-to-panel-60.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit gnome2-utils
+
+MY_PN="${PN/gnome-shell-extension-/}"
+MY_P="${MY_PN}-${PV}"
+DESCRIPTION="An icon taskbar for the Gnome Shell"
+HOMEPAGE="https://github.com/home-sweet-gnome/dash-to-panel;
+SRC_URI="
+   https://github.com/home-sweet-gnome/${MY_PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz
+   branding? ( 
https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz
 )
+"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="branding"
+
+COMMON_DEPEND="dev-libs/glib:2"
+RDEPEND="${COMMON_DEPEND}
+   app-eselect/eselect-gnome-shell-extensions
+   >=gnome-base/gnome-shell-45
+"
+DEPEND="${COMMON_DEPEND}"
+BDEPEND="
+   dev-util/intltool
+   sys-devel/gettext
+"
+
+S="${WORKDIR}/${MY_P}"
+extension_uuid="dash-to-pa...@jderose9.github.com"
+
+src_prepare() {
+   default
+
+   # Set correct version
+   export VERSION="${PV}"
+
+   # Don't install README and COPYING in unwanted locations
+   sed -i -e 's/COPYING//g' -e 's/README.md//g' Makefile || die
+
+   # Provide fancy Gentoo icon when requested
+   use branding && eapply "${FILESDIR}"/${PN}-26-branding.patch
+}
+
+src_install() {
+   default
+   if use branding; then
+   insinto 
/usr/share/gnome-shell/extensions/dash-to-pa...@jderose9.github.com/img
+   doins "${WORKDIR}/tango-gentoo-v1.1/scalable/gentoo.svg"
+   fi
+
+   # Install schemas system-wide
+   dodir /usr/share/glib-2.0/schemas
+   mv "${ED}/usr/share/gnome-shell/extensions/${extension_uuid}"/schemas/ 
"${ED}/usr/share/glib-2.0" || die
+   rm "${ED}/usr/share/glib-2.0/schemas/gschemas.compiled" || die
+}
+
+pkg_preinst() {
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   gnome2_schemas_update
+   ebegin "Updating list of installed extensions"
+   eselect gnome-shell-extensions update
+   eend $?
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: app-office/grisbi/

2024-01-28 Thread Pacho Ramos
commit: 63276b9ca85aa0eccd2509e88cf98091fe20c3f3
Author: Guillaume Castagnino  xwing  info>
AuthorDate: Mon Jan 22 05:50:43 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 12:23:24 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=63276b9c

app-office/grisbi: add 3.0.3, drop 3.0.0

Signed-off-by: Guillaume Castagnino  xwing.info>
Closes: https://github.com/gentoo/gentoo/pull/34954
Signed-off-by: Pacho Ramos  gentoo.org>

 app-office/grisbi/Manifest | 2 +-
 app-office/grisbi/{grisbi-3.0.0.ebuild => grisbi-3.0.3.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-office/grisbi/Manifest b/app-office/grisbi/Manifest
index af65db5b8d34..33bc216a39c6 100644
--- a/app-office/grisbi/Manifest
+++ b/app-office/grisbi/Manifest
@@ -1,3 +1,3 @@
 DIST grisbi-2.0.5.tar.bz2 7465632 BLAKE2B 
c70fd313660d8fbc0d93d86d89f7470564a0865b8423ae0e8a2f40fc1f4dbe959ed37141963dbc5ab9e6154ff71af3120303bd4c6ccc5554d1da75200c6e8a84
 SHA512 
16535cbdf0647abc60878bc5a21b22d76090d6a5dab89a9e1ff4029eef25f284a627555ec0724977ba01313f33aee06489b908aaa6600a566f86a87b5f33b7f9
-DIST grisbi-3.0.0.tar.bz2 12447582 BLAKE2B 
7e1f2041898811c16eb05f603b7965bea32f6d16ad7b836c1cadfc305e8d794c5ccd82865ed25e3f741b9fad6734b7f9977fcfbf8c73ebd75e84538d3d075248
 SHA512 
08af544378317c5e4bf67b5dc8e796145587970a530cd9d9065532acab317f7c91e9159b299e7903ec4fa0d29a3004dfae58e17b2f4efe304d8fdd3c0fbe8e04
 DIST grisbi-3.0.1.tar.bz2 12448098 BLAKE2B 
ae593b4bf3afab3b377bdd79442b8a7fda7627e39a22780cdbc40b906aeceddaec28196a5484b8e3da67b48103a589016193440dd0331cc086b88543d9597827
 SHA512 
a1bdc10ac4a50f19a5d4d9012f9c3d785782b3fcbc8055e0f60780131cb97d2154dfee05033b7e3a0437bb57d5b7ca3504fae79d4738bd0f2f6f0f0f2861f9ba
+DIST grisbi-3.0.3.tar.bz2 12877828 BLAKE2B 
439bb7f7e4724453b84f6c4ddc28926d9ba528460ea9d09c8d3c69ee1eba448805332eb752b06dc9ca67a4ca2fc17da68b583984f9c75530c2a8768985ed42b4
 SHA512 
7214f1cb7ca9eb0d87c082bd7ba70cf70d1f117c4e021c8e371961ddb7ab07b854986c4a6ab8892e2f7835d46c9814df27411fffc5aeabaf42bcf4fb8dea9dc1

diff --git a/app-office/grisbi/grisbi-3.0.0.ebuild 
b/app-office/grisbi/grisbi-3.0.3.ebuild
similarity index 86%
rename from app-office/grisbi/grisbi-3.0.0.ebuild
rename to app-office/grisbi/grisbi-3.0.3.ebuild
index aa0b4628c5d6..5e1755cddcd0 100644
--- a/app-office/grisbi/grisbi-3.0.0.ebuild
+++ b/app-office/grisbi/grisbi-3.0.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -7,7 +7,7 @@ inherit gnome2
 
 DESCRIPTION="Grisbi is a personal accounting application for Linux"
 HOMEPAGE="http://www.grisbi.org https://github.com/grisbi/grisbi;
-SRC_URI="mirror://sourceforge/${PN}/grisbi%20stable/$(ver_cut 
1-2).x/${P}.tar.bz2"
+SRC_URI="https://downloads.sourceforge.net/${PN}/grisbi%20stable/$(ver_cut 
1-2).x/${P}.tar.bz2"
 IUSE="goffice nls ofx ssl"
 
 LICENSE="GPL-2"



[gentoo-commits] repo/proj/guru:dev commit in: net-news/cliflux/

2024-01-28 Thread Remigiusz Micielski
commit: c1a2adb9bc356145e76cc23d7398c69a1b4061a7
Author: Remigiusz Micielski  purelymail  com>
AuthorDate: Sun Jan 28 13:24:49 2024 +
Commit: Remigiusz Micielski  gmail  com>
CommitDate: Sun Jan 28 13:25:04 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=c1a2adb9

net-news/cliflux: new package, add 1.4.1

Signed-off-by: Remigiusz Micielski  purelymail.com>

 net-news/cliflux/Manifest | 192 ++
 net-news/cliflux/cliflux-1.4.1.ebuild | 215 ++
 net-news/cliflux/metadata.xml |  13 ++
 3 files changed, 420 insertions(+)

diff --git a/net-news/cliflux/Manifest b/net-news/cliflux/Manifest
new file mode 100644
index 00..b7ea3a80e8
--- /dev/null
+++ b/net-news/cliflux/Manifest
@@ -0,0 +1,192 @@
+DIST ahash-0.7.6.crate 38030 BLAKE2B 
aca3661477fcd7822d6d10970151e05c28e1615f8cd7ddaac064b15102027e404b19b0f3f16dd76145048594ea1c22ae27dd08cc05c411efbae9ec7a1ef55ce9
 SHA512 
61354688b6fb096359faefb6f34be958cd2215d56b88c22c737d24183eaad433f811bc9e64f927e4852c87d2799c22fda82b55cfbef2ed6357ff74f0c4ffec68
+DIST aho-corasick-1.0.2.crate 167694 BLAKE2B 
fa5323cbe6cb73594dfa4c327c64676bc1e006dadc0b9def325974c83b9a769beba02d59a4657ec7a2d0cc511a7b7cc6f72cf57b8f9e639206d1c2bf13107a52
 SHA512 
5c75451f96fbbd670e6af0e1f54df2bdb57259dfe6898495ac46a5b2fc04f316a4698fd5cfd4ec31a94c298661937a8de08ce97cab3890fb3c015e4a2a67bb7b
+DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
+DIST base64-0.21.2.crate 76389 BLAKE2B 
6da080dfc31c5b2ebdbfd336be6e71373918f9388c85649133363a60ee1647b6ad67c7dfd461b6ee842c3633e40593b6ac2f313585b3e8e07dbd690739f433f9
 SHA512 
3f85bdf846e2f8a2e0f2335749bab58c904479a29311143580f1de42455799d04606dedbf64d355af580d77867d7b895e1078463c7cc5a5fbd9ded9d7cbf3559
+DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
+DIST bitflags-2.4.1.crate 37043 BLAKE2B 
f61c45b142265e9c2944c7054e01704de47510735e9ee5351cd02b98676cc4eb42d68b1fc4849ad5f54654617a74f20cb533b4207c2fe76516b724ba9318b414
 SHA512 
d3fd7abc95acc1cb5bf16d6acc12dbb8eadd250f069268df13c2e8dc3d5f5c15a929cd17ca931c77393b64dce0516ef8674c469789ed32d78e315b5faada062b
+DIST bumpalo-3.13.0.crate 82114 BLAKE2B 
62a930b165e853aeeb40558079f570c75ed13ff5e8436d99309dc6252aa28ae69d327c4b438913d6c7543bc156f2714f0c1e80d759ea0d44babe24ef0f268ac0
 SHA512 
419368d6ca37474c2867751fe5706d0c747326bebce323d571cfc07ee0f022d8e8a7ef5692091b0fa804995b081998dafc55da19a53e51135a767bc0afdb9605
+DIST bytes-1.4.0.crate 58080 BLAKE2B 
99a9d343424e04649bd209bf2a6c3a089a6cc9fdb799968f8c3a711189328e4499df2e09cc6a2a8ce05d2cc668149b364cf30cb3b09e96e21d50a39519c2f49f
 SHA512 
502c63b9fdcd36ed28ede55a63cd359dc7b28658ecd43020511d17d48d7c34e45aa8ff7e4b17770f12197451040c2b724fe68d2aa3ab4f81c9171d052f2aa000
+DIST cassowary-0.3.0.crate 22876 BLAKE2B 
7e74a08e02050548ade7dd1ebba7ce4e4360d258ea6acf126453889dbf16df433bed7b68789736881c957f4c09eead1f763a0c02f2474157b1650a1e77e6eca9
 SHA512 
0838c0b79ed31f0c514fe4ac82633976e34b0d6cb08616313cda0e00623514fc6498c6c308cfef54ea029f1fdbaafe2991ca8ac3c38437a113ac62e37f9397f8
+DIST cc-1.0.79.crate 62624 BLAKE2B 
b3cbed3bd6fcac1c6ea258ec96cd107f859947a35dc89c3dc8f314741b0f668e61518f896ec32ce10c9a7eb20dd350bc177a71810d53ebea59fda062ed9d27db
 SHA512 
cbf0a25f3a23fc540e9d638fabc23f761f1c240ebb4814e761e90437d71fc559cd155768ab9e78fc192220d8a605c66c3af342ed736b719181656170b98d7bf5
+DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
+DIST cliflux-1.4.1.tar.gz 421412 BLAKE2B 
d371d1c4876d4c9f2be27e608ca681ae9734fe2549186c0dadb7e754a8acb32ff08cb452e7e6e3ee57826eec9a7d156d2ca62c84f00311de597b7439f51c3428
 SHA512 
7b1435b6e6978184441df9eb50c20c42ded426c18aed3ba4891dd13387b892e2579362c4e7ca97a925f36c5a4b2a8ddf273a06873a0462de25972a13eb8ad544
+DIST core-foundation-0.9.3.crate 27059 BLAKE2B 
d94fec51b1b1055c285609f4bba45c5169a8cc775e251eac7fbf0da7ef894e1be9ca9f4236b82b67be0610bdf811366e0c6fd3cdb671a1e83c49717e2c5b2d03
 SHA512 
de07967c4f5e2d2e730b6f21984c228dad2cb2f55187f13074a2200f4ce9f906763ee818267a9c67ea560229db7363473b230670a6dbd224fc335f32ba03d072
+DIST core-foundation-sys-0.8.4.crate 17725 BLAKE2B 

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

2024-01-28 Thread Matthew Smith
commit: 5204c9541e18275ed62cd886c10b287ce46f98db
Author: Matthew Smith  gentoo  org>
AuthorDate: Sun Jan 28 08:28:16 2024 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Sun Jan 28 09:53:08 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5204c954

dev-libs/tree-sitter: prevent stripping

If $STRIP is set, the Makefile will invoke it on the library, which is not
what we want.

Closes: https://bugs.gentoo.org/923068
Signed-off-by: Matthew Smith  gentoo.org>

 .../{tree-sitter-0.20.9.ebuild => tree-sitter-0.20.9-r1.ebuild}  | 5 -
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/dev-libs/tree-sitter/tree-sitter-0.20.9.ebuild 
b/dev-libs/tree-sitter/tree-sitter-0.20.9-r1.ebuild
similarity index 92%
rename from dev-libs/tree-sitter/tree-sitter-0.20.9.ebuild
rename to dev-libs/tree-sitter/tree-sitter-0.20.9-r1.ebuild
index b2522c4480b3..0d557b1d492e 100644
--- a/dev-libs/tree-sitter/tree-sitter-0.20.9.ebuild
+++ b/dev-libs/tree-sitter/tree-sitter-0.20.9-r1.ebuild
@@ -1,6 +1,8 @@
 # Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Bump tree-sitter-cli at the same time.
+
 EAPI=8
 inherit optfeature toolchain-funcs
 
@@ -37,7 +39,8 @@ src_prepare() {
 src_compile() {
emake \
PREFIX="${EPREFIX}/usr" \
-   LIBDIR="${EPREFIX}/usr/$(get_libdir)"
+   LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
+   STRIP=""
 }
 
 src_install() {



[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/

2024-01-28 Thread Mike Pagano
commit: a13d175d9eb9a5e2b34519ff6320460a46013899
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jan 28 14:18:41 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan 28 14:18:41 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a13d175d

net-print/epson-inkjet-printer-escpr: stabilize 1.8.3 for amd64, ppc64

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

 .../epson-inkjet-printer-escpr-1.8.3.ebuild   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.3.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.3.ebuild
index e56f27074520..2b48a70d1ef0 100644
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.3.ebuild
+++ 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -11,7 +11,7 @@ 
SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/15/47/99/379a81c231d0b6b3df
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
+KEYWORDS="amd64 ppc64"
 
 DEPEND="net-print/cups"
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/

2024-01-28 Thread Mike Pagano
commit: 97d60ea96eaa765ac624e24253bfd2ff38047129
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jan 28 14:18:17 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan 28 14:18:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97d60ea9

net-print/epson-inkjet-printer-escpr: stabilize 1.2.9 for amd64

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

 .../epson-inkjet-printer-escpr-1.2.9.ebuild   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.2.9.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.2.9.ebuild
index 847180657333..3474ae512706 100644
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.2.9.ebuild
+++ 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.2.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ DESCRIPTION="Epson Inkjet Printer Driver 2 (ESC/P-R) for 
Linux"
 HOMEPAGE="https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX;
 
SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/15/33/96/607198a4f064daa9e7931913eaf27f3a58125f2b/${MY_P}-1.tar.gz;
 LICENSE="EPSON LGPL-2.1+"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 DEPEND="net-print/cups"
 RDEPEND="${DEPEND}"



[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/

2024-01-28 Thread Mike Pagano
commit: 76fc33e04f3eaafbfca4f36f17676a6bbec45e40
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jan 28 14:18:57 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan 28 14:18:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76fc33e0

net-print/epson-inkjet-printer-escpr: drop 1.8.0

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

 net-print/epson-inkjet-printer-escpr/Manifest  |  1 -
 .../epson-inkjet-printer-escpr-1.8.0.ebuild| 35 --
 2 files changed, 36 deletions(-)

diff --git a/net-print/epson-inkjet-printer-escpr/Manifest 
b/net-print/epson-inkjet-printer-escpr/Manifest
index ad684fccf9da..fab89eae9bb1 100644
--- a/net-print/epson-inkjet-printer-escpr/Manifest
+++ b/net-print/epson-inkjet-printer-escpr/Manifest
@@ -1,4 +1,3 @@
-DIST epson-inkjet-printer-escpr-1.8.0-1.tar.gz 5483956 BLAKE2B 
699f747dfed86391f5e4a492c928ecf4d3e24482c7937a3598d520f1478e721ee044f1658f1de4c82922bf1df82b356f0ad83b69b4a36ff85804db1f461aa32b
 SHA512 
ffdad4690db060f471e5b666920f5b41bf565a42a5e7f2d692e5f04463f416a52c860ce57360a8af712a86b05b30e3443951c627641ef78d1c04daf4a6ee733e
 DIST epson-inkjet-printer-escpr-1.8.2-1.src.rpm 5091114 BLAKE2B 
5c8a86086923a2c439c621bbee11427dcc64b65c4c392fefa4450647afdc6cc84ae073a9c604b67bc6d3e8d8cb8699cc8b2680a9d3e43b6f0bf09cf16a9ec54e
 SHA512 
c0da358bdc9e08c11977397beb7bf2a8506896d8e2f40d85e5ed6aa5195ea5e0213638c9c8a018c5d74b225c55625d111df81ae14edc78a0edcdef93034c323b
 DIST epson-inkjet-printer-escpr-1.8.3-1.src.rpm 5127233 BLAKE2B 
f00ec01459411100c0502afbda4d9b3449af80ac4517e4288c3861558eef6ec946f4a6c04ea4e22818a455befa652d7135a5d2bce5e3941284f16862ebc4546f
 SHA512 
d4cbf8342e5c664c7473c43f00739bc5ea5f6ccdb818893338bab103cee77630aaf33c1714313e4ae79687a152f8389d9a68faff685d63a35888c28d9abce9dc
 DIST epson-inkjet-printer-escpr2-1.2.9-1.tar.gz 5367737 BLAKE2B 
6868569a6bed622e2f50619a36ffb0a0f7e834fd8a794ae3bc906d971db26b0c86386c9545190ec384027d0b8e8f62ddda6cb24f1e3f60b9c535a1eeddff4332
 SHA512 
70ff744d42fac4c79d2994648763b0b3970ee5463a7a310a0721a63735d536cb9a0499c894289d946b30e6f564f9bf60aa61801580ab6635af211d50867921a1

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.0.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.0.ebuild
deleted file mode 100644
index 5372186183b7..
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)"
-HOMEPAGE="https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX;
-SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/14/61/09/b271f0e3ed6b3bc0ea5b5809d16d48ef83e9ab71/${P}-1.tar.gz;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc64"
-
-DEPEND="net-print/cups"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}/1.6.5-warnings.patch"
-   "${FILESDIR}/${PN}-1.7.7-fnocommon.patch"
-)
-
-src_configure() {
-   econf --disable-shared
-
-   # Makefile calls ls to generate a file list which is included in 
Makefile.am
-   # Set the collation to C to avoid automake being called automatically
-   unset LC_ALL
-   export LC_COLLATE=C
-}
-
-src_install() {
-   emake -C ppd DESTDIR="${D}" install
-   emake -C src DESTDIR="${D}" install
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: net-print/epson-inkjet-printer-escpr/

2024-01-28 Thread Mike Pagano
commit: adcf6063a70d482671c7cc49dc24781febb77190
Author: Mike Pagano  gentoo  org>
AuthorDate: Sun Jan 28 14:19:07 2024 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Sun Jan 28 14:19:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adcf6063

net-print/epson-inkjet-printer-escpr: drop 1.8.2

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

 net-print/epson-inkjet-printer-escpr/Manifest  |  1 -
 .../epson-inkjet-printer-escpr-1.8.2.ebuild| 41 --
 2 files changed, 42 deletions(-)

diff --git a/net-print/epson-inkjet-printer-escpr/Manifest 
b/net-print/epson-inkjet-printer-escpr/Manifest
index fab89eae9bb1..77ea85a5943a 100644
--- a/net-print/epson-inkjet-printer-escpr/Manifest
+++ b/net-print/epson-inkjet-printer-escpr/Manifest
@@ -1,3 +1,2 @@
-DIST epson-inkjet-printer-escpr-1.8.2-1.src.rpm 5091114 BLAKE2B 
5c8a86086923a2c439c621bbee11427dcc64b65c4c392fefa4450647afdc6cc84ae073a9c604b67bc6d3e8d8cb8699cc8b2680a9d3e43b6f0bf09cf16a9ec54e
 SHA512 
c0da358bdc9e08c11977397beb7bf2a8506896d8e2f40d85e5ed6aa5195ea5e0213638c9c8a018c5d74b225c55625d111df81ae14edc78a0edcdef93034c323b
 DIST epson-inkjet-printer-escpr-1.8.3-1.src.rpm 5127233 BLAKE2B 
f00ec01459411100c0502afbda4d9b3449af80ac4517e4288c3861558eef6ec946f4a6c04ea4e22818a455befa652d7135a5d2bce5e3941284f16862ebc4546f
 SHA512 
d4cbf8342e5c664c7473c43f00739bc5ea5f6ccdb818893338bab103cee77630aaf33c1714313e4ae79687a152f8389d9a68faff685d63a35888c28d9abce9dc
 DIST epson-inkjet-printer-escpr2-1.2.9-1.tar.gz 5367737 BLAKE2B 
6868569a6bed622e2f50619a36ffb0a0f7e834fd8a794ae3bc906d971db26b0c86386c9545190ec384027d0b8e8f62ddda6cb24f1e3f60b9c535a1eeddff4332
 SHA512 
70ff744d42fac4c79d2994648763b0b3970ee5463a7a310a0721a63735d536cb9a0499c894289d946b30e6f564f9bf60aa61801580ab6635af211d50867921a1

diff --git 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.2.ebuild 
b/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.2.ebuild
deleted file mode 100644
index 3467973e79ef..
--- 
a/net-print/epson-inkjet-printer-escpr/epson-inkjet-printer-escpr-1.8.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit rpm
-
-DESCRIPTION="Epson Inkjet Printer Driver (ESC/P-R)"
-HOMEPAGE="https://download.ebz.epson.net/dsc/search/01/search/?OSC=LX;
-SRC_URI="https://download3.ebz.epson.net/dsc/f/03/00/15/37/34/9823560a4c0a6e4a614c71d2278434b32d147e29/${P}-1.src.rpm;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
-
-DEPEND="net-print/cups"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}/1.6.5-warnings.patch"
-   "${FILESDIR}/${PN}-1.7.7-fnocommon.patch"
-)
-
-src_unpack() {
-   rpm_src_unpack "${A}"
-}
-
-src_configure() {
-   econf --disable-shared
-
-   # Makefile calls ls to generate a file list which is included in 
Makefile.am
-   # Set the collation to C to avoid automake being called automatically
-   unset LC_ALL
-   export LC_COLLATE=C
-}
-
-src_install() {
-   emake -C ppd DESTDIR="${D}" install
-   emake -C src DESTDIR="${D}" install
-   einstalldocs
-}



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

2024-01-28 Thread Sam James
commit: c465affcd56d897d3e69b8bc2f072bb6e9271857
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 08:15:50 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:16:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c465affc

sys-auth/pambase: add 20240128, drop 20240119

Sam James (1):
  system-auth.tpl: fix sssd's pam_deny

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

 sys-auth/pambase/Manifest | 2 +-
 sys-auth/pambase/{pambase-20240119.ebuild => pambase-20240128.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/pambase/Manifest b/sys-auth/pambase/Manifest
index 6a0858584280..14a31170155a 100644
--- a/sys-auth/pambase/Manifest
+++ b/sys-auth/pambase/Manifest
@@ -1,2 +1,2 @@
 DIST pambase-20220214.tar.gz 3372 BLAKE2B 
fc560005c48598d972cf68bfbd33784be7d7e5a12f5ebcd06e708241a169b1bcf7cb7dcd7109f44c2d9802ae0b294eaeb61782640f0b0cb9767f2ecf8c053c7f
 SHA512 
57d037944cf6d9db69d5eb8ce32b087ac4781fae13c1daba1e248a1818dfcbbf2cb66fce79cad7808f2b0f89d3f3dd05455a1c8f3c976561769b056dc8bf7323
-DIST pambase-20240119.tar.bz2 5132 BLAKE2B 
830afd9fe570a8b782a8bf4e0b5f73e50fff59b884a95bf67352de76529f81c2b7482c352b561ece19c662480827a99923df4658049fe857937436b01cf69a98
 SHA512 
8cbf9196a008a575652b95071cef32d7117370887c9194f2c80de6ae725edb3cff5238d09bb1c5492d8f068d17f358f8fdf72d9bd4b4f7743ec3a0c98cc8
+DIST pambase-20240128.tar.bz2 5131 BLAKE2B 
0950fff720f3a9d761a82303eaa7b997bfac635111b6cae772f7d9de2846147dbb4224326e5dba1868cb54a8a76076c2efed6615c861bbfa78256aba4f475da2
 SHA512 
6b4ad390c46f33947436892a5f19111a1c9f4ded406ae8ffe76539c94d541611b74ba697d76522b46da41f53aae45eb67c274fc0d6caec94d40c1691487624e6

diff --git a/sys-auth/pambase/pambase-20240119.ebuild 
b/sys-auth/pambase/pambase-20240128.ebuild
similarity index 100%
rename from sys-auth/pambase/pambase-20240119.ebuild
rename to sys-auth/pambase/pambase-20240128.ebuild



[gentoo-commits] repo/gentoo:master commit in: dev-build/kbuild/

2024-01-28 Thread Viorel Munteanu
commit: 9a55f8e00066af2b16a218a26b123cc22f063b8d
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Sun Jan 28 14:29:13 2024 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Sun Jan 28 14:29:13 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9a55f8e0

dev-build/kbuild: drop 0.1.9998.3572-r4

Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-build/kbuild/Manifest   |  1 -
 dev-build/kbuild/kbuild-0.1.9998.3572-r4.ebuild | 74 -
 2 files changed, 75 deletions(-)

diff --git a/dev-build/kbuild/Manifest b/dev-build/kbuild/Manifest
index aafd921a6413..13279a1ec0d1 100644
--- a/dev-build/kbuild/Manifest
+++ b/dev-build/kbuild/Manifest
@@ -1,4 +1,3 @@
 DIST kbuild-0.1.9998.3499-fix-clang-16.patch.bz2 10271 BLAKE2B 
fe40a3a0afafefa10da6fe675eec72392fe6bcc318d1d8728363b9e855d10e11d0b7189f875cd2d496bf4871f87b96ed2ad6775e6968e044cc107dad23f5fcab
 SHA512 
8f11355f0bfdda431dba4cb4dcd73c5bf0b10d2380495fe91292846b57fb7f80711d711b0b229fb4a865512d90010a181d1e1ab7d2b57d1a1751ce79440b02dc
 DIST kbuild-0.1.9998.3499-src.tar.xz 2371580 BLAKE2B 
847c5c67ded37ca87228ff7164d6c7f2f670a57f2fd94d6d0bf4f8896266e7fe5442666c03dbda016564a52dc91d10be83f0d4b0ef5093db0f5210ac8d5f3aaa
 SHA512 
eebdcd1d2fa71313edd764d45a4aa3580078af22d7c5fed32d3d139a4f41c4e028282fdfdda0ee9b617ed0e8e63b8f5d065b3cf6647f08fe446560938b7577fc
-DIST kbuild-0.1.9998.3572-src.tar.xz 3973848 BLAKE2B 
103e42d719fd77bc5c55aea48bdfd01c8ad136529cc76cc8c1297f87e21e5d4e2e7149f9321c5174808613a84331dbea8bb4c0a7662eb2de9e1045c8ad365047
 SHA512 
96bb5e1759990bf3acaca4b0ba7c02926c6607b0cd94f7fca222b13eee5c3364c64b35e3473c5cee45fa094cb2b851ac9f3a3a9fe60cff894baf46238ccb4006
 DIST kbuild-0.1.9998.3592-src.tar.xz 3975348 BLAKE2B 
4b1862238f6f6c35ba1b586e11e17baca3b66c4ba3a97b17168ced902d7fcc9f1baa9a4b8669489902346b9bab67095f4ff4d008187c36cd2ef4b7841d4134be
 SHA512 
b9ca1723b426db81571b048db5afe4b7c3d2d8a881003812e9a5f9df44c5109b628d77af415cf56eb44a8775c590a6f0e343efccf562ef83213c5525e081e59b

diff --git a/dev-build/kbuild/kbuild-0.1.9998.3572-r4.ebuild 
b/dev-build/kbuild/kbuild-0.1.9998.3572-r4.ebuild
deleted file mode 100644
index 31c91dcacac0..
--- a/dev-build/kbuild/kbuild-0.1.9998.3572-r4.ebuild
+++ /dev/null
@@ -1,74 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit autotools toolchain-funcs
-
-DESCRIPTION="A makefile framework for writing simple makefiles for complex 
tasks"
-HOMEPAGE="https://trac.netlabs.org/kbuild/wiki;
-SRC_URI="
-   https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${P}-src.tar.xz
-   
https://dev.gentoo.org/~ceamac/${CATEGORY}/${PN}/${PN}-0.1.9998.3499-fix-clang-16.patch.bz2
-"
-
-LICENSE="GPL-3+"
-SLOT="0"
-#KEYWORDS="~amd64 ~x86"# for testing only.  This version is buggy
-IUSE=""
-
-BDEPEND="
-   sys-apps/texinfo
-   app-alternatives/lex
-   sys-devel/gettext
-   virtual/pkgconfig
-   app-alternatives/yacc
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-0.1.9998.3407-unknown_configure_opt.patch"
-   "${FILESDIR}/${PN}-0.1.5-gentoo-docdir.patch"
-   "${FILESDIR}/${PN}-0.1.9998_pre20120806-qa.patch"
-   "${FILESDIR}/${PN}-0.1.9998_pre20110817-kash-link-pthread.patch"
-   "${FILESDIR}/${PN}-0.1.9998.3572-fix-bison.patch"
-   "${FILESDIR}/${PN}-0.1.9998.3572-fix-lto.patch"
-   "${FILESDIR}/${PN}-0.1.9998.3499-implicit-function-declaration.patch"
-   "${FILESDIR}/${PN}-0.1.9998.3499-int-conversion.patch"
-   "${FILESDIR}/${PN}-0.1.9998.3499-fix-CC.patch"
-
-   "${WORKDIR}/${PN}-0.1.9998.3499-fix-clang-16.patch"
-)
-
-pkg_setup() {
-   # Package fails with distcc (bug #255371)
-   export DISTCC_DISABLE=1
-}
-
-src_prepare() {
-   default
-
-   # Add a file with the svn revision this package was pulled from
-   printf '%s\n' "KBUILD_SVN_REV := $(ver_cut 4)" \
-   > SvnInfo.kmk || die
-
-   cd "${S}/src/kmk" || die
-   eautoreconf
-   cd "${S}/src/sed" || die
-   eautoreconf
-
-   sed -e "s@_LDFLAGS\.$(tc-arch)*.*=@& ${LDFLAGS}@g" \
-   -e "s@_CFLAGS\.$(tc-arch)*.*=@& ${CFLAGS}@g" \
-   -e "s@_CXXFLAGS\.$(tc-arch)*.*=@& ${CXXFLAGS}@g" \
-   -i "${S}"/Config.kmk || die #332225
-   tc-export CC PKG_CONFIG RANLIB #AR does not work here
-}
-
-src_compile() {
-   kBuild/env.sh --full emake -f bootstrap.gmk AUTORECONF=true 
AR="$(tc-getAR)" \
-   || die "bootstrap failed"
-}
-
-src_install() {
-   kBuild/env.sh kmk NIX_INSTALL_DIR=/usr PATH_INS="${D}" install \
-   || die "install failed"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-build/kbuild/, dev-build/kbuild/files/

2024-01-28 Thread Viorel Munteanu
commit: 7b648e31121b845b1650cfb295760a30d545d4fd
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Sun Jan 28 14:30:28 2024 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Sun Jan 28 14:36:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b648e31

dev-build/kbuild: clean-up old patch

Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-build/kbuild/files/kbuild-0.1.9998.3407-gold.patch | 11 ---
 dev-build/kbuild/kbuild-.ebuild|  3 +--
 2 files changed, 1 insertion(+), 13 deletions(-)

diff --git a/dev-build/kbuild/files/kbuild-0.1.9998.3407-gold.patch 
b/dev-build/kbuild/files/kbuild-0.1.9998.3407-gold.patch
deleted file mode 100644
index 14d5ec7cc422..
--- a/dev-build/kbuild/files/kbuild-0.1.9998.3407-gold.patch
+++ /dev/null
@@ -1,11 +0,0 @@
 kbuild-0.1.9998.3407/src/kmk/Makefile.kmk
-+++ kbuild-0.1.9998.3407/src/kmk/Makefile.kmk
-@@ -60,7 +60,7 @@
- ifneq ($(KBUILD_TARGET),os2)
-  TEMPLATE_BIN-KMK_INCS += glob
- endif
--TEMPLATE_BIN-KMK_LIBS = $(LIB_KUTIL) $(TEMPLATE_BIN-THREADED_LIBS) 
$(kmkmissing_1_TARGET) $(LIB_KUTIL)
-+TEMPLATE_BIN-KMK_LIBS = $(LIB_KUTIL) $(TEMPLATE_BIN-THREADED_LIBS) 
$(kmkmissing_1_TARGET) $(LIB_KUTIL) pthread
- ifdef ELECTRIC_HEAP # for electric heap (see electric.c).
- ifeq ($(KBUILD_TARGET),win)
-  TEMPLATE_BIN-KMK_CFLAGS = $(TEMPLATE_BIN-THREADED_CFLAGS) 
/FI$(kmk_DEFPATH)/electric.h -DELECTRIC_HEAP=1

diff --git a/dev-build/kbuild/kbuild-.ebuild 
b/dev-build/kbuild/kbuild-.ebuild
index 0c7ecee2efa6..bef735b7059a 100644
--- a/dev-build/kbuild/kbuild-.ebuild
+++ b/dev-build/kbuild/kbuild-.ebuild
@@ -18,7 +18,6 @@ else
 fi
 LICENSE="GPL-3+"
 SLOT="0"
-IUSE=""
 
 BDEPEND="
sys-apps/texinfo
@@ -33,7 +32,7 @@ PATCHES=(
"${FILESDIR}/${PN}-0.1.5-gentoo-docdir.patch"
"${FILESDIR}/${PN}-0.1.9998_pre20120806-qa.patch"
"${FILESDIR}/${PN}-0.1.9998_pre20110817-kash-link-pthread.patch"
-   #"${FILESDIR}/${PN}-0.1.9998.3407-gold.patch"
+   "${FILESDIR}/${PN}-0.1.9998.3499-gold.patch"
"${FILESDIR}/${PN}-0.1.9998.3572-fix-bison.patch"
"${FILESDIR}/${PN}-0.1.9998.3572-fix-lto.patch"
"${FILESDIR}/${PN}-0.1.9998.3499-implicit-function-declaration.patch"



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

2024-01-28 Thread Hans de Graaff
commit: ad789ecf45ebab9a20a6a61606fb94d9d5317ffb
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 28 08:21:56 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 28 09:49:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad789ecf

net-analyzer/nagstamon: drop 3.10.1

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

 net-analyzer/nagstamon/Manifest|  1 -
 .../nagstamon/files/nagstamon-3.10.1-setup.patch   | 28 ---
 net-analyzer/nagstamon/nagstamon-3.10.1.ebuild | 56 --
 3 files changed, 85 deletions(-)

diff --git a/net-analyzer/nagstamon/Manifest b/net-analyzer/nagstamon/Manifest
index f90dd49190eb..11d813a5 100644
--- a/net-analyzer/nagstamon/Manifest
+++ b/net-analyzer/nagstamon/Manifest
@@ -1,2 +1 @@
-DIST nagstamon-3.10.1.tar.gz 574520 BLAKE2B 
104d082a610c26af47d61b911094c51e3981947e19ed026bc725e479382bcec2b3d36c36400c379c738c970e1cb36183859e1dd132e1fe78c30be3f20688287f
 SHA512 
83da92cc0d5ceaf7abbf2f2e289a2e83cbcb3bb4239d12f594da7543942a3945cfae68cfa9ecc33aa619967d1d35e1b88d4bb76398364c2f9754174fdd62649c
 DIST nagstamon-3.12.0.tar.gz 581087 BLAKE2B 
1f54decdd6cf1fdba8abd7f97102cd84d9f38e68391c31f413860d7c80410e38ee8929cf4d1bfbf7cca1fa54b9088409a47ba669c6ff78d8edecb3313a7e5690
 SHA512 
029d3dcf5ea5a512940b8e6ed0d3a146e727b3c8ffcbd530fc28f4a896a1a801bb0029a33b62e311c1b0c281810bd001f323c9e3e4c4fc9199bacc7b962ff794

diff --git a/net-analyzer/nagstamon/files/nagstamon-3.10.1-setup.patch 
b/net-analyzer/nagstamon/files/nagstamon-3.10.1-setup.patch
deleted file mode 100644
index 28bb98e1b49a..
--- a/net-analyzer/nagstamon/files/nagstamon-3.10.1-setup.patch
+++ /dev/null
@@ -1,28 +0,0 @@
 a/setup.py 2023-01-29 09:29:13.885165525 +0100
-+++ b/setup.py 2023-01-29 09:30:32.585630680 +0100
-@@ -45,9 +45,9 @@
- else:
- DIST, DIST_VERSION, DIST_NAME = platform.dist()
- NAME = NAME.lower()
--VERSION = AppInfo.VERSION.replace('-', '.') + '.' + DIST + DIST_VERSION
-+VERSION = AppInfo.VERSION.replace('-', '.')
- 
--NAGSTAMON_SCRIPT = 'nagstamon.py'
-+NAGSTAMON_SCRIPT = 'nagstamon'
- 
- from setuptools import setup
- 
-@@ -120,12 +120,7 @@
- 'Nagstamon.Servers',
- 'Nagstamon.Servers.Alertmanager',
- 'Nagstamon.Servers.Centreon',
--'Nagstamon.thirdparty',
--'Nagstamon.thirdparty.Xlib',
--'Nagstamon.thirdparty.Xlib.ext',
--'Nagstamon.thirdparty.Xlib.protocol',
--'Nagstamon.thirdparty.Xlib.support',
--'Nagstamon.thirdparty.Xlib.xobject'],
-+'Nagstamon.thirdparty'],
-   package_dir={'Nagstamon': 'Nagstamon'},
-   package_data={'Nagstamon': ['resources/*.*',
-   'resources/qui/*',

diff --git a/net-analyzer/nagstamon/nagstamon-3.10.1.ebuild 
b/net-analyzer/nagstamon/nagstamon-3.10.1.ebuild
deleted file mode 100644
index b2cdbac64489..
--- a/net-analyzer/nagstamon/nagstamon-3.10.1.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
-
-PYTHON_COMPAT=( python3_{10..11} )
-
-inherit distutils-r1
-
-distutils_enable_tests pytest
-
-MY_PN="Nagstamon"
-MY_P="${MY_PN}-${PV/_p/-}"
-
-DESCRIPTION="systray monitor for displaying realtime status of several 
monitoring systems"
-HOMEPAGE="https://nagstamon.de;
-SRC_URI="https://github.com/HenriWahl/Nagstamon/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-RDEPEND="${PYTHON_DEPS}
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/PyQt5[gui,multimedia,svg,widgets,${PYTHON_USEDEP}]
-   dev-python/PySocks[${PYTHON_USEDEP}]
-   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   dev-python/keyring[${PYTHON_USEDEP}]
-   dev-python/requests[${PYTHON_USEDEP}]
-   dev-python/psutil[${PYTHON_USEDEP}]
-   dev-python/python-dateutil[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   dev-python/secretstorage[${PYTHON_USEDEP}]
-   >=dev-python/python-xlib-0.19[${PYTHON_USEDEP}]
-   dev-python/requests-kerberos[${PYTHON_USEDEP}]"
-DEPEND="${RDEPEND}
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? ( dev-python/pylint[${PYTHON_USEDEP}] )"
-
-PATCHES=( "${FILESDIR}/${PN}-3.10.1-setup.patch" )
-
-src_prepare() {
-   default_src_prepare
-
-   # pre-compressed already
-   rm Nagstamon/resources/nagstamon.1.gz || die
-   sed -i -e 's:\(nagstamon\.1\)\.gz:\1:' setup.py || die
-
-   mv ${PN}.py ${PN} || die
-
-   rm -rf "${S}/Nagstamon/thirdparty/Xlib/" || die
-}



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

2024-01-28 Thread Hans de Graaff
commit: bd2596882811d9ac3a264883133586dc360e0bff
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 28 07:57:26 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 28 09:49:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd259688

dev-ruby/nokogiri: add 1.16.0

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

 dev-ruby/nokogiri/Manifest   |  1 +
 dev-ruby/nokogiri/nokogiri-1.16.0.ebuild | 96 
 2 files changed, 97 insertions(+)

diff --git a/dev-ruby/nokogiri/Manifest b/dev-ruby/nokogiri/Manifest
index e47d50255b26..d68455195357 100644
--- a/dev-ruby/nokogiri/Manifest
+++ b/dev-ruby/nokogiri/Manifest
@@ -1,3 +1,4 @@
 DIST nokogiri-1.15.3-git.tgz 10767496 BLAKE2B 
d9d2abd3f57fd3f9e3e49e38de7559d5d9bad278166b4108d2edf4f90884256c01bf574cec8a15b6f30420c9f4d501707b710e3af0f32dc5cbcc01b4433c6662
 SHA512 
9084e97c81bca52c19cf2cd47dcf0d3377705ceda559399aa1cbf1e112845b2a796e34576f08a073377fb523a7a298254bda91563929535734700c31c473cb49
 DIST nokogiri-1.15.4-git.tgz 10767816 BLAKE2B 
fe35809f62279ded261c655cc589fdb3447514f6525b62d591da58f91cc9dced34f5ac3e8bde180944ce23a67f56b2f93c90ac9cf69699e331dceee1ea259408
 SHA512 
f255a51053c55151c6df8937a979833571e2cbc8a25d032674d71d1303267ed4d3a1226d0995e54d9a152f237b31e7fe85e70fb976578902234eb5a2f4f3ce2b
 DIST nokogiri-1.15.5-git.tgz 10768080 BLAKE2B 
25d24799c69a4271ea5283b264061c05f6907635ed55de196f76684d2db3c6c226e7f09f02f30de049b282c17cdea69154dec9a06813cb4f63adaac4876e160c
 SHA512 
1df3f6bf4508a7c84fa22ce774cb878ca47154e69730f1cedb403fad270df42c580526ac03b47e73bf2267ad50d2999ed1341079b10043b450f51ea6b0565da7
+DIST nokogiri-1.16.0-git.tgz 11010821 BLAKE2B 
5b82e28d7d1e7d74e857a997ea32ba406450588f398fa49590d318b194883b2a247b9389b3930583727a34df425034f3cefc4a5cb00f25945a02623872ac3ffa
 SHA512 
0f6740ce69159f878844f2afdddafcc8c8f3bdabee68e5fcedb1526ae9cc48648c6ebda2a272ab1b8776fbde766bae97046802573908bd908cfb908288607e51

diff --git a/dev-ruby/nokogiri/nokogiri-1.16.0.ebuild 
b/dev-ruby/nokogiri/nokogiri-1.16.0.ebuild
new file mode 100644
index ..0156ef303f1d
--- /dev/null
+++ b/dev-ruby/nokogiri/nokogiri-1.16.0.ebuild
@@ -0,0 +1,96 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby31 ruby32 ruby33"
+
+RUBY_FAKEGEM_EXTRADOC="CHANGELOG.md README.md ROADMAP.md SECURITY.md"
+
+RUBY_FAKEGEM_GEMSPEC="nokogiri.gemspec"
+
+RUBY_FAKEGEM_EXTENSIONS=(ext/nokogiri/extconf.rb)
+
+inherit ruby-fakegem multilib
+
+DESCRIPTION="Nokogiri is an HTML, XML, SAX, and Reader parser"
+HOMEPAGE="https://nokogiri.org/;
+LICENSE="MIT"
+SRC_URI="https://github.com/sparklemotion/nokogiri/archive/v${PV}.tar.gz -> 
${P}-git.tgz"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~arm64-macos"
+SLOT="0"
+IUSE=""
+
+RDEPEND="${RDEPEND}
+   >=dev-libs/libxml2-2.12.3
+   >=dev-libs/libxslt-1.1.39
+   sys-libs/zlib
+   virtual/libiconv"
+DEPEND="${DEPEND}
+   >=dev-libs/libxml2-2.12.3
+   >=dev-libs/libxslt-1.1.39
+   >=sys-libs/zlib-1.2.13
+   virtual/libiconv"
+
+ruby_add_rdepend ">=dev-ruby/racc-1.4:0"
+
+ruby_add_bdepend "
+   dev-ruby/mini_portile2:2.8
+   >=dev-ruby/rexical-1.0.7
+   dev-ruby/rdoc
+   test? ( dev-ruby/minitest dev-ruby/rubyzip )"
+
+all_ruby_prepare() {
+   sed -i \
+   -e '/tasks\/cross_compile/s:^:#:' \
+   -e '/:test.*prerequisites/s:^:#:' \
+   -e '/license/ s:^:#:' \
+   Rakefile || die
+   # Remove the cross compilation options since they interfere with
+   # native building.
+   sed -i -e 's/cross_compile  = true/cross_compile = false/' Rakefile || 
die
+   sed -i -e '/cross_config_options/d' Rakefile || die
+
+   sed -e '/reporters/I s:^:#:' \
+   -i test/helper.rb || die
+
+   # There is no need for mini_portile2 to be a runtime dependency on 
Gentoo
+   sed -i -e '/mini_portile2/ s:^:#:' ${RUBY_FAKEGEM_GEMSPEC} || die
+}
+
+each_ruby_configure() {
+   NOKOGIRI_USE_SYSTEM_LIBRARIES=true \
+   ${RUBY} -Cext/${PN} extconf.rb \
+   --with-zlib-include="${EPREFIX}"/usr/include \
+   --with-zlib-lib="${EPREFIX}"/$(get_libdir) \
+   --with-iconv-include="${EPREFIX}"/usr/include \
+   --with-iconv-lib="${EPREFIX}"/$(get_libdir) \
+   --with-xml2-include="${EPREFIX}"/usr/include/libxml2 \
+   --with-xml2-lib="${EPREFIX}"/usr/$(get_libdir) \
+   --with-xslt-dir="${EPREFIX}"/usr \
+   --with-iconvlib=iconv \
+   || die "extconf.rb failed"
+}
+
+each_ruby_compile() {
+   if ! [[ -f lib/nokogiri/css/tokenizer.rb ]]; then
+   ${RUBY} -S rake lib/nokogiri/css/tokenizer.rb || die "rexical 
failed"
+   fi
+
+   if ! [[ -f lib/nokogiri/css/parser.rb ]]; then
+   

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

2024-01-28 Thread Hans de Graaff
commit: 18d68b04c8abfe837e2a348f5702653654fdaa82
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 28 08:20:52 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 28 09:49:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18d68b04

dev-ruby/capybara: add 3.40.0

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

 dev-ruby/capybara/Manifest   |  1 +
 dev-ruby/capybara/capybara-3.40.0.ebuild | 61 
 2 files changed, 62 insertions(+)

diff --git a/dev-ruby/capybara/Manifest b/dev-ruby/capybara/Manifest
index fae2725e21ce..21f79bafdd5f 100644
--- a/dev-ruby/capybara/Manifest
+++ b/dev-ruby/capybara/Manifest
@@ -1,2 +1,3 @@
 DIST capybara-3.39.0.gem 381952 BLAKE2B 
2b70bfbf930258c2273bf0c6bddc70e455d1d717bd0ed79fc68459c6f40d47ef8149fec161dbaff08e6d8424aebbdf5160033169a6269408b368525218899e23
 SHA512 
0910ecef11a007d10e753887d9016bab4de74e2ddf2fa2c8b8fc32bfe7d71d64a8c0b72a0a606aa7b558922ab02b4368d1c42a0df78ecf3f68a5efc34edc8707
 DIST capybara-3.39.2.gem 381952 BLAKE2B 
ff73035a1942e4e418d50356b977c68ea878a27082b3684b940b69df77bd97c1a628e2346673f9e42bf0592386e470b376ce5b35d673f6fe4e74547023348be1
 SHA512 
498fb3880014d3cff1ec6ed68542f68eb03ebfc86e8c681623ad3549ecf8297a0313abe9dd8db0a104cc0db2a2eec8c66bac4f2e5c0d29e0785237ddfe718c59
+DIST capybara-3.40.0.gem 384000 BLAKE2B 
260e2e20be7cc08410035850d087934f0fbcc8b1d602416b8f1ca1ea2fb15708b606de2db002bb620bcc7c99afb83f162dd5ed1db2109f8a0b436f90258083d1
 SHA512 
91c3fd98bb32359a2e168c3a69efe56f4f4952be36b26961922fe6414888191ec0f79da4cfe2adb05f74a57be03254d14fa9296aa537f419c7081f58af67e0bd

diff --git a/dev-ruby/capybara/capybara-3.40.0.ebuild 
b/dev-ruby/capybara/capybara-3.40.0.ebuild
new file mode 100644
index ..a543648bcc15
--- /dev/null
+++ b/dev-ruby/capybara/capybara-3.40.0.ebuild
@@ -0,0 +1,61 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby31 ruby32"
+
+RUBY_FAKEGEM_EXTRADOC="History.md README.md"
+
+# Rake tasks are not distributed in the gem.
+RUBY_FAKEGEM_TASK_TEST=""
+
+inherit virtualx ruby-fakegem
+
+DESCRIPTION="Capybara aims to simplify the process of integration testing Rack 
applications"
+HOMEPAGE="https://github.com/teamcapybara/capybara;
+LICENSE="MIT"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+SLOT="3"
+IUSE="test"
+
+DEPEND="${DEPEND} test? ( || ( www-client/firefox www-client/firefox-bin ) )"
+
+ruby_add_bdepend "test? (
+   dev-ruby/rspec:3
+   >=dev-ruby/launchy-2.4.0
+   >=dev-ruby/selenium-webdriver-4.8:4
+   dev-ruby/sinatra:3
+   www-servers/puma
+)"
+
+ruby_add_rdepend "
+   dev-ruby/addressable
+   dev-ruby/matrix
+   >=dev-ruby/mini_mime-0.1.3
+   >=dev-ruby/nokogiri-1.11:0
+   >=dev-ruby/rack-1.6.0:*
+   >=dev-ruby/rack-test-0.6.3:*
+   dev-ruby/regexp_parser:2
+   >=dev-ruby/xpath-3.2:3"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/d' -e '/pry/d' -e '1igem "sinatra"' -e 
'/statistics/Id' spec/spec_helper.rb || die
+
+   # Avoid window-manager specific tests (sizes are specific for fluxbox)
+   sed -i -e '/#maximize/,/^  end/ s:^:#:' 
lib/capybara/spec/session/window/window_spec.rb || die
+
+   # Avoid spec that requires unpackaged geckodriver
+   #sed -i -e '/describe.*register_server/,/^  end/ s:^:#:' 
spec/capybara_spec.rb || die
+
+   # Avoid test dependency on puma server for now
+   sed -i -e '/should have :puma registered/,/^end/ s:^:#:' 
spec/capybara_spec.rb || die
+
+   # Update spec to catch the right error code. This seems to have
+   # changed recently across ruby versions.
+   sed -i -e '/raise_error/ s/EOFError/Net::ReadTimeout/' 
spec/server_spec.rb || die
+}
+
+each_ruby_test() {
+   virtx ${RUBY} -Ilib -S rspec-3 spec
+}



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

2024-01-28 Thread Hans de Graaff
commit: 75ea36f8dd2522183ac2f16333dd7130c0efe476
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 28 09:47:58 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 28 09:49:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75ea36f8

net-analyzer/nagstamon: fix desktop files and man page installation

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

 net-analyzer/nagstamon/nagstamon-3.12.0-r1.ebuild | 74 +++
 1 file changed, 74 insertions(+)

diff --git a/net-analyzer/nagstamon/nagstamon-3.12.0-r1.ebuild 
b/net-analyzer/nagstamon/nagstamon-3.12.0-r1.ebuild
new file mode 100644
index ..7745a3ac4a41
--- /dev/null
+++ b/net-analyzer/nagstamon/nagstamon-3.12.0-r1.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+
+inherit desktop distutils-r1 virtualx
+
+distutils_enable_tests pytest
+
+MY_PN="Nagstamon"
+MY_P="${MY_PN}-${PV/_p/-}"
+
+DESCRIPTION="systray monitor for displaying realtime status of several 
monitoring systems"
+HOMEPAGE="https://nagstamon.de;
+SRC_URI="https://github.com/HenriWahl/Nagstamon/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="test"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}"
+
+RDEPEND="${PYTHON_DEPS}
+   dev-python/lxml[${PYTHON_USEDEP}]
+   || (
+  dev-python/PyQt6[gui,multimedia,svg,widgets,${PYTHON_USEDEP}]
+  dev-python/PyQt5[gui,multimedia,svg,widgets,${PYTHON_USEDEP}]
+  )
+   dev-python/PySocks[${PYTHON_USEDEP}]
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/keyring[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/secretstorage[${PYTHON_USEDEP}]
+   >=dev-python/python-xlib-0.19[${PYTHON_USEDEP}]
+   dev-python/requests-kerberos[${PYTHON_USEDEP}]"
+DEPEND="${RDEPEND}
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   test? ( dev-python/pylint[${PYTHON_USEDEP}] )"
+
+PATCHES=( "${FILESDIR}/${PN}-3.12.0-setup.patch" )
+
+src_prepare() {
+   default_src_prepare
+
+   # pre-compressed already
+   rm Nagstamon/resources/nagstamon.1.gz || die
+   sed -e 's:\(nagstamon\.1\)\.gz:\1:' \
+   -e '/share/ s:^:#:' \
+   -i setup.py || die
+
+   mv ${PN}.py ${PN} || die
+
+   rm -rf "${S}/Nagstamon/thirdparty/Xlib/" || die
+}
+
+python_test() {
+   virtx epytest
+}
+
+distutils-r1_python_install_all() {
+   default
+
+   doman Nagstamon/resources/nagstamon.1
+   domenu Nagstamon/resources/nagstamon.desktop
+   doicon Nagstamon/resources/nagstamon.svg
+}



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

2024-01-28 Thread Hans de Graaff
commit: a85894d2ccad88c76a6f22abacc1da02e8667cbe
Author: Hans de Graaff  gentoo  org>
AuthorDate: Sun Jan 28 09:17:47 2024 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Sun Jan 28 09:49:07 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a85894d2

net-analyzer/nagstamon: run tests in a virtual X environment

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

 net-analyzer/nagstamon/nagstamon-3.12.0.ebuild | 8 ++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild 
b/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild
index a162f8f7d2a3..132181cc389e 100644
--- a/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild
+++ b/net-analyzer/nagstamon/nagstamon-3.12.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -6,7 +6,7 @@ EAPI=8
 PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_USE_PEP517=setuptools
 
-inherit distutils-r1
+inherit distutils-r1 virtualx
 
 distutils_enable_tests pytest
 
@@ -58,3 +58,7 @@ src_prepare() {
 
rm -rf "${S}/Nagstamon/thirdparty/Xlib/" || die
 }
+
+python_test() {
+   virtx epytest
+}



[gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox/, app-emulation/virtualbox/files/

2024-01-28 Thread Viorel Munteanu
commit: 449534eed20b415faf59d70b13724a60c8f5e847
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Sun Jan 28 10:36:30 2024 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Sun Jan 28 10:44:44 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=449534ee

app-emulation/virtualbox: fix building with dev-libs/libxml2-2.12

Closes: https://bugs.gentoo.org/922445
Signed-off-by: Viorel Munteanu  gentoo.org>

 .../files/virtualbox-7.0.14-libxml2-2.12.patch | 43 ++
 1.48-r1.ebuild => virtualbox-6.1.48-r2.ebuild} |  5 ++-
 1.50-r1.ebuild => virtualbox-6.1.50-r2.ebuild} |  5 ++-
 0.12-r1.ebuild => virtualbox-7.0.12-r2.ebuild} |  5 ++-
 0.14-r1.ebuild => virtualbox-7.0.14-r2.ebuild} |  5 ++-
 5 files changed, 55 insertions(+), 8 deletions(-)

diff --git 
a/app-emulation/virtualbox/files/virtualbox-7.0.14-libxml2-2.12.patch 
b/app-emulation/virtualbox/files/virtualbox-7.0.14-libxml2-2.12.patch
new file mode 100644
index ..a523bad41a30
--- /dev/null
+++ b/app-emulation/virtualbox/files/virtualbox-7.0.14-libxml2-2.12.patch
@@ -0,0 +1,43 @@
+Bug: https://bugs.gentoo.org/922445
+
+The change in libxml2 is not backwards compatibe.
+A patch like the one in arch does not work with 2.11, so just cast the 
argument to maintain compatibility with both.
+
+The upstream change is in include/libxml/xmlerror.h:
+
+ typedef xmlError *xmlErrorPtr;
+
+-typedef void (*xmlStructuredErrorFunc) (void *userData, xmlErrorPtr error);
++typedef void (*xmlStructuredErrorFunc) (void *userData, const xmlError 
*error);
+
+See also: 
https://gitlab.archlinux.org/archlinux/packaging/packages/virtualbox/-/blob/main/019-libxml-2-12.patch?ref_type=heads
+
+--- a/src/VBox/Runtime/r3/xml.cpp
 b/src/VBox/Runtime/r3/xml.cpp
+@@ -1870,7 +1870,7 @@
+ throw std::bad_alloc();
+ /* per-thread so it must be here */
+ xmlSetGenericErrorFunc(NULL, xmlParserBaseGenericError);
+-xmlSetStructuredErrorFunc(NULL, xmlParserBaseStructuredError);
++xmlSetStructuredErrorFunc(NULL, 
(xmlStructuredErrorFunc)xmlParserBaseStructuredError);
+ }
+ 
+ XmlParserBase::~XmlParserBase()
+@@ -1931,7 +1931,7 @@
+   pcszFilename,
+   NULL,   // encoding = 
auto
+   options)))
+-throw XmlError(xmlCtxtGetLastError(m_ctxt));
++throw XmlError((xmlErrorPtr)xmlCtxtGetLastError(m_ctxt));
+ 
+ doc.refreshInternals();
+ }
+@@ -2191,7 +2191,7 @@
+   pcszFilename,
+   NULL,   // encoding = auto
+   options)))
+-throw XmlError(xmlCtxtGetLastError(m_ctxt));
++throw XmlError((xmlErrorPtr)xmlCtxtGetLastError(m_ctxt));
+ 
+ doc.refreshInternals();
+ }

diff --git a/app-emulation/virtualbox/virtualbox-6.1.48-r1.ebuild 
b/app-emulation/virtualbox/virtualbox-6.1.48-r2.ebuild
similarity index 99%
rename from app-emulation/virtualbox/virtualbox-6.1.48-r1.ebuild
rename to app-emulation/virtualbox/virtualbox-6.1.48-r2.ebuild
index 87034f0a749c..73aee19fe61f 100644
--- a/app-emulation/virtualbox/virtualbox-6.1.48-r1.ebuild
+++ b/app-emulation/virtualbox/virtualbox-6.1.48-r2.ebuild
@@ -36,14 +36,13 @@ IUSE="alsa debug doc dtrace headless java lvm +opus pam 
pax-kernel pch pulseaudi
 
 unset WATCOM #856769
 
-# =dev-libs/libxslt-1.1.19
net-misc/curl
-   

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

2024-01-28 Thread Pacho Ramos
commit: e997b1bcaa938df5428959726732617a4db06a61
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 11:13:15 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 11:13:15 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e997b1bc

net-wireless/bluez: drop 5.71

Signed-off-by: Pacho Ramos  gentoo.org>

 net-wireless/bluez/bluez-5.71.ebuild | 285 ---
 1 file changed, 285 deletions(-)

diff --git a/net-wireless/bluez/bluez-5.71.ebuild 
b/net-wireless/bluez/bluez-5.71.ebuild
deleted file mode 100644
index 657bb53be4c7..
--- a/net-wireless/bluez/bluez-5.71.ebuild
+++ /dev/null
@@ -1,285 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{9..12} )
-
-inherit autotools linux-info python-single-r1 systemd udev multilib-minimal 
#readme.gentoo-r1
-
-DESCRIPTION="Bluetooth Tools and System Daemons for Linux"
-HOMEPAGE="http://www.bluez.org https://github.com/bluez/bluez;
-SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz;
-
-LICENSE="GPL-2+ LGPL-2.1+"
-SLOT="0/3"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
-IUSE="btpclient cups doc debug deprecated extra-tools experimental +mesh midi 
+obex +readline selinux systemd test test-programs +udev"
-
-# Since this release all remaining extra-tools need readline support, but this 
could
-# change in the future, hence, this REQUIRED_USE constraint could be dropped
-# again in the future.
-# btpclient needs mesh, bug #790587
-REQUIRED_USE="
-   btpclient? ( mesh )
-   extra-tools? ( deprecated readline )
-   test? ( ${PYTHON_REQUIRED_USE} )
-   test-programs? ( ${PYTHON_REQUIRED_USE} )
-"
-
-TEST_DEPS="${PYTHON_DEPS}
-   $(python_gen_cond_dep '
-   >=dev-python/dbus-python-1[${PYTHON_USEDEP}]
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   ')
-"
-BDEPEND="
-   dev-python/docutils
-   virtual/pkgconfig
-   test? ( ${TEST_DEPS} )
-"
-DEPEND="
-   >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}]
-   btpclient? ( >=dev-libs/ell-0.39 )
-   cups? ( net-print/cups:= )
-   mesh? (
-   >=dev-libs/ell-0.39
-   >=dev-libs/json-c-0.13:=
-   sys-libs/readline:0=
-   )
-   midi? ( media-libs/alsa-lib )
-   obex? ( dev-libs/libical:= )
-   readline? ( sys-libs/readline:0= )
-   systemd? ( sys-apps/systemd )
-   >=sys-apps/dbus-1.6:=
-   udev? ( >=virtual/udev-172 )
-"
-RDEPEND="${DEPEND}
-   selinux? ( sec-policy/selinux-bluetooth )
-   test-programs? ( ${TEST_DEPS} )
-"
-
-RESTRICT="!test? ( test )"
-
-PATCHES=(
-   # Try both udevadm paths to cover udev/systemd vs. eudev locations 
(#539844)
-   # http://www.spinics.net/lists/linux-bluetooth/msg58739.html
-   # https://bugs.gentoo.org/539844
-   # https://github.com/bluez/bluez/issues/268
-   "${FILESDIR}"/${PN}-udevadm-path-r1.patch
-
-   # Fedora patches
-   # 
https://lore.kernel.org/linux-bluetooth/20220901110719.176944-1-had...@hadess.net/T/#m9c08d004cd5422783ee1d93154f42303bba9169f
-   "${FILESDIR}"/${PN}-5.66-power-state-adapter-property.patch
-)
-
-pkg_setup() {
-   # From http://www.linuxfromscratch.org/blfs/view/svn/general/bluez.html
-   # to prevent bugs like:
-   # https://bugzilla.kernel.org/show_bug.cgi?id=196621
-   CONFIG_CHECK="~NET ~BT ~BT_RFCOMM ~BT_RFCOMM_TTY ~BT_BNEP 
~BT_BNEP_MC_FILTER
-   ~BT_BNEP_PROTO_FILTER ~BT_HIDP ~CRYPTO_USER_API_HASH 
~CRYPTO_USER_API_SKCIPHER
-   ~UHID ~RFKILL"
-   # https://bugzilla.kernel.org/show_bug.cgi?id=196621
-   # https://bugzilla.kernel.org/show_bug.cgi?id=206815
-   if use mesh || use test; then
-   CONFIG_CHECK="${CONFIG_CHECK} ~CRYPTO_USER
-   ~CRYPTO_USER_API ~CRYPTO_USER_API_AEAD ~CRYPTO_AES ~CRYPTO_CCM 
~CRYPTO_AEAD ~CRYPTO_CMAC
-   ~CRYPTO_MD5 ~CRYPTO_SHA1 ~KEY_DH_OPERATIONS"
-   fi
-   linux-info_pkg_setup
-
-   if use test || use test-programs; then
-   python-single-r1_pkg_setup
-   fi
-
-   if ! use udev; then
-   ewarn
-   ewarn "You are installing ${PN} with USE=-udev. This means 
various bluetooth"
-   ewarn "devices and adapters from Apple, Dell, Logitech etc. 
will not work,"
-   ewarn "and hid2hci will not be available."
-   ewarn
-   fi
-}
-
-src_prepare() {
-   default
-
-   # http://www.spinics.net/lists/linux-bluetooth/msg38490.html
-   if ! use systemd; then
-   eapply 
"${FILESDIR}"/0001-Allow-using-obexd-without-systemd-in-the-user-session-r2.patch
-   fi
-
-   eautoreconf
-
-   if use cups; then
-   # Only not .am to not need to run eautoreconf only because of 
this
-   sed -i \
-   

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

2024-01-28 Thread Pacho Ramos
commit: 023fb10b32c19f8aa93c326a466929478179f7d6
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 11:13:01 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 11:13:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=023fb10b

net-wireless/bluez: add 5.72

Signed-off-by: Pacho Ramos  gentoo.org>

 net-wireless/bluez/Manifest  |   1 +
 net-wireless/bluez/bluez-5.72.ebuild | 285 +++
 2 files changed, 286 insertions(+)

diff --git a/net-wireless/bluez/Manifest b/net-wireless/bluez/Manifest
index b316ef9b7427..ad631202f4f3 100644
--- a/net-wireless/bluez/Manifest
+++ b/net-wireless/bluez/Manifest
@@ -1,2 +1,3 @@
 DIST bluez-5.70.tar.xz 2339844 BLAKE2B 
1ba2ddd3bfc6562a07f4e8376e0d537b555f0d36a221f051c4c10dd912c23e73aa2b0d8aa125e0fd911908e4cfa0036429e17250a26b3298bb21f65e4cc5255c
 SHA512 
3a5f8caf7730dcdbbe0bb92154b41651a9d6619038447bf4c25e5e3e5316effcd7242a7a0456d731ce21d55b8daea5212a359acc5e5fc460499b9356b7d364cf
 DIST bluez-5.71.tar.xz 2381208 BLAKE2B 
73e5f08771f821c90a70c553c600c48c4f1adb85aa9cb1a1eaae61a33b2dda73b7825fe769b3ea1ddedc39ad3fb71d84b336408f5ce6963f0373e9f7dcce
 SHA512 
648394bbe470405aa0e2d3914474e95c122f567deaaac20a5dd74bac29fa430dfb64cdb7bdb4fb7510e62fa73e96112a97197fc212b421bf480b8d1bb24cfb5d
+DIST bluez-5.72.tar.xz 2390792 BLAKE2B 
b5d1bc290c9bad5aa32de16433c34d0ac5aed7164077ef941a0bf90eddc5e22a6cf19f972bcae33061b41e3c344f7abeb65a11b6013c13fd53059ac93d83240a
 SHA512 
1c6560f60ac0654d7c25ed8ab2f0f3a3a9ca8688ee28e1c476ffc7ae38737e739d27bbb88789c86b03fc600a8a68496d90a7b395ec393dd2bbf69be62357991a

diff --git a/net-wireless/bluez/bluez-5.72.ebuild 
b/net-wireless/bluez/bluez-5.72.ebuild
new file mode 100644
index ..cf1139d2a7b8
--- /dev/null
+++ b/net-wireless/bluez/bluez-5.72.ebuild
@@ -0,0 +1,285 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{9..12} )
+
+inherit autotools linux-info python-single-r1 systemd udev multilib-minimal 
#readme.gentoo-r1
+
+DESCRIPTION="Bluetooth Tools and System Daemons for Linux"
+HOMEPAGE="http://www.bluez.org https://github.com/bluez/bluez;
+SRC_URI="https://www.kernel.org/pub/linux/bluetooth/${P}.tar.xz;
+
+LICENSE="GPL-2+ LGPL-2.1+"
+SLOT="0/3"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~loong ~mips ~ppc ~ppc64 ~riscv ~x86"
+IUSE="btpclient cups doc debug deprecated extra-tools experimental +mesh midi 
+obex +readline selinux systemd test test-programs +udev"
+
+# Since this release all remaining extra-tools need readline support, but this 
could
+# change in the future, hence, this REQUIRED_USE constraint could be dropped
+# again in the future.
+# btpclient needs mesh, bug #790587
+REQUIRED_USE="
+   btpclient? ( mesh )
+   extra-tools? ( deprecated readline )
+   test? ( ${PYTHON_REQUIRED_USE} )
+   test-programs? ( ${PYTHON_REQUIRED_USE} )
+"
+
+TEST_DEPS="${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   >=dev-python/dbus-python-1[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   ')
+"
+BDEPEND="
+   dev-python/docutils
+   virtual/pkgconfig
+   test? ( ${TEST_DEPS} )
+"
+DEPEND="
+   >=dev-libs/glib-2.28:2[${MULTILIB_USEDEP}]
+   btpclient? ( >=dev-libs/ell-0.39 )
+   cups? ( net-print/cups:= )
+   mesh? (
+   >=dev-libs/ell-0.39
+   >=dev-libs/json-c-0.13:=
+   sys-libs/readline:0=
+   )
+   midi? ( media-libs/alsa-lib )
+   obex? ( dev-libs/libical:= )
+   readline? ( sys-libs/readline:0= )
+   systemd? ( sys-apps/systemd )
+   >=sys-apps/dbus-1.6:=
+   udev? ( >=virtual/udev-172 )
+"
+RDEPEND="${DEPEND}
+   selinux? ( sec-policy/selinux-bluetooth )
+   test-programs? ( ${TEST_DEPS} )
+"
+
+RESTRICT="!test? ( test )"
+
+PATCHES=(
+   # Try both udevadm paths to cover udev/systemd vs. eudev locations 
(#539844)
+   # http://www.spinics.net/lists/linux-bluetooth/msg58739.html
+   # https://bugs.gentoo.org/539844
+   # https://github.com/bluez/bluez/issues/268
+   "${FILESDIR}"/${PN}-udevadm-path-r1.patch
+
+   # Fedora patches
+   # 
https://lore.kernel.org/linux-bluetooth/20220901110719.176944-1-had...@hadess.net/T/#m9c08d004cd5422783ee1d93154f42303bba9169f
+   "${FILESDIR}"/${PN}-5.66-power-state-adapter-property.patch
+)
+
+pkg_setup() {
+   # From http://www.linuxfromscratch.org/blfs/view/svn/general/bluez.html
+   # to prevent bugs like:
+   # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+   CONFIG_CHECK="~NET ~BT ~BT_RFCOMM ~BT_RFCOMM_TTY ~BT_BNEP 
~BT_BNEP_MC_FILTER
+   ~BT_BNEP_PROTO_FILTER ~BT_HIDP ~CRYPTO_USER_API_HASH 
~CRYPTO_USER_API_SKCIPHER
+   ~UHID ~RFKILL"
+   # https://bugzilla.kernel.org/show_bug.cgi?id=196621
+   # https://bugzilla.kernel.org/show_bug.cgi?id=206815
+   if use 

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

2024-01-28 Thread Alexys Jacob
commit: 4925d06e325a5ef3edaab4bfd3b1843b8f2f5e3b
Author: Alexys Jacob  gentoo  org>
AuthorDate: Sun Jan 28 11:28:07 2024 +
Commit: Alexys Jacob  gentoo  org>
CommitDate: Sun Jan 28 11:28:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4925d06e

x11-misc/py3status: add 3.56, drop 3.55

Signed-off-by: Alexys Jacob  gentoo.org>

 x11-misc/py3status/Manifest | 2 +-
 x11-misc/py3status/{py3status-3.55.ebuild => py3status-3.56.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/py3status/Manifest b/x11-misc/py3status/Manifest
index fca54a9cb8d3..694a432a11aa 100644
--- a/x11-misc/py3status/Manifest
+++ b/x11-misc/py3status/Manifest
@@ -1 +1 @@
-DIST py3status-3.55.tar.gz 450426 BLAKE2B 
aead8be7598910657aeee6e58516b39472dd0b375d3aa190ab671165c721840dd55854061904b9b7549d0d1acc131b83165971a7f70e352fe019689a841c1a03
 SHA512 
afa73595334358f7cf1fcc0ec64f671c61408e7ebf66ca059e364fae221ceeffb12615c0cedfbf3a877c7fc82d6b58eb5d6f2e7387d1ccae1420e905856b6cf2
+DIST py3status-3.56.tar.gz 448983 BLAKE2B 
4046d6628691dcba5f70f84d516bb2e0ae40e4681ca2f1a256b09c431b680a7865b92e0d8d18c325ecfca69a77f2ff6939c4c87cff3c648a6ea47e6a9dc267bf
 SHA512 
f5f26442803b1eb52e16102f79ccfa992fa4ae8cdf2901bf3381897a898f3491449deae4ae9217a2901cdfae7d5251ce98eeb4714d713da9751e1b8a35f98036

diff --git a/x11-misc/py3status/py3status-3.55.ebuild 
b/x11-misc/py3status/py3status-3.56.ebuild
similarity index 100%
rename from x11-misc/py3status/py3status-3.55.ebuild
rename to x11-misc/py3status/py3status-3.56.ebuild



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

2024-01-28 Thread Pacho Ramos
commit: d446a5a8d676b7c3ece050e8d05f628a0d46c005
Author: Guillermo Joandet  gmail  com>
AuthorDate: Tue Jan 16 15:20:30 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 12:14:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d446a5a8

sys-apps/osinfo-db: Version bump to 20231215

Signed-off-by: Guillermo Joandet  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34838
Signed-off-by: Pacho Ramos  gentoo.org>

 sys-apps/osinfo-db/Manifest  |  1 +
 sys-apps/osinfo-db/osinfo-db-20231215.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/sys-apps/osinfo-db/Manifest b/sys-apps/osinfo-db/Manifest
index 20727a34187c..13988a0114f5 100644
--- a/sys-apps/osinfo-db/Manifest
+++ b/sys-apps/osinfo-db/Manifest
@@ -1,2 +1,3 @@
 DIST osinfo-db-20230719.tar.xz 144088 BLAKE2B 
2b4297be735da6a9c37f3ccb9164071afd8983740eb6d400d0262f76e27a5bdfde74d35d104ec9487ed4b1ba48306bffe7a3704017cde9429aca9a0f22b881f1
 SHA512 
42751d3c8defea0aec49389354a4b682e1881f6387296e7d1b8d32afe3a1d8b9d7a3093bac33d0dbba359d28f1375f35dee7b0ca89fc7f1ce39276c231deda7b
 DIST osinfo-db-20231027.tar.xz 143660 BLAKE2B 
212abe98a09165fdae9b7069ab00c120f90ccf944242cdb355b6c2cf8085086c29d08779123a2fd6c72abd6b7dad88a6d473368cf659f2682b342692bc04d6f0
 SHA512 
2a0729f99ff840ab29d90b3174da6fa6ebf0665786f17079a592ee4988a95fbf2b1453834139c6f62c491d777eefb1d094dc39b80ac13398e2db32e1033e9900
+DIST osinfo-db-20231215.tar.xz 149836 BLAKE2B 
bbc4cabbb2ef09dd58f0340c250ac9d014dbb7f38e7db96ecdb70bc4f7a6583f4a6c807262a52c5ada0eed7e69888b34bcf09a0041a943d0a3867ab9518e9005
 SHA512 
fed7b1fc28aa625a73242768776c451fc459a71dcda33194e9e0d8d049cdfdfcc354ca4289e1a97f82b23d4ec3a105e23d18438789fe1fe64e7bbb84a6b7

diff --git a/sys-apps/osinfo-db/osinfo-db-20231215.ebuild 
b/sys-apps/osinfo-db/osinfo-db-20231215.ebuild
new file mode 100644
index ..7e40fd5536dc
--- /dev/null
+++ b/sys-apps/osinfo-db/osinfo-db-20231215.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="osinfo database files"
+HOMEPAGE="https://libosinfo.org/ https://gitlab.com/libosinfo/osinfo-db;
+SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz;
+S="${WORKDIR}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+
+BDEPEND="sys-apps/osinfo-db-tools"
+
+# we don't depend on intltool here, contrary to README, as the tarball already
+# contains the processed results with translations in XML files
+
+src_unpack() { :; }
+
+src_install() {
+   osinfo-db-import --root "${D}" --dir "/usr/share/osinfo" 
"${DISTDIR}/${A}"
+}



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

2024-01-28 Thread Pacho Ramos
commit: abc068884b93bf49d4e18ff34ae75f8fc6a9d9f7
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 12:14:50 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 12:14:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=abc06888

sys-apps/osinfo-db: drop 20230719

Signed-off-by: Pacho Ramos  gentoo.org>

 sys-apps/osinfo-db/Manifest  |  1 -
 sys-apps/osinfo-db/osinfo-db-20230719.ebuild | 25 -
 2 files changed, 26 deletions(-)

diff --git a/sys-apps/osinfo-db/Manifest b/sys-apps/osinfo-db/Manifest
index 13988a0114f5..e5d84a6fd9d6 100644
--- a/sys-apps/osinfo-db/Manifest
+++ b/sys-apps/osinfo-db/Manifest
@@ -1,3 +1,2 @@
-DIST osinfo-db-20230719.tar.xz 144088 BLAKE2B 
2b4297be735da6a9c37f3ccb9164071afd8983740eb6d400d0262f76e27a5bdfde74d35d104ec9487ed4b1ba48306bffe7a3704017cde9429aca9a0f22b881f1
 SHA512 
42751d3c8defea0aec49389354a4b682e1881f6387296e7d1b8d32afe3a1d8b9d7a3093bac33d0dbba359d28f1375f35dee7b0ca89fc7f1ce39276c231deda7b
 DIST osinfo-db-20231027.tar.xz 143660 BLAKE2B 
212abe98a09165fdae9b7069ab00c120f90ccf944242cdb355b6c2cf8085086c29d08779123a2fd6c72abd6b7dad88a6d473368cf659f2682b342692bc04d6f0
 SHA512 
2a0729f99ff840ab29d90b3174da6fa6ebf0665786f17079a592ee4988a95fbf2b1453834139c6f62c491d777eefb1d094dc39b80ac13398e2db32e1033e9900
 DIST osinfo-db-20231215.tar.xz 149836 BLAKE2B 
bbc4cabbb2ef09dd58f0340c250ac9d014dbb7f38e7db96ecdb70bc4f7a6583f4a6c807262a52c5ada0eed7e69888b34bcf09a0041a943d0a3867ab9518e9005
 SHA512 
fed7b1fc28aa625a73242768776c451fc459a71dcda33194e9e0d8d049cdfdfcc354ca4289e1a97f82b23d4ec3a105e23d18438789fe1fe64e7bbb84a6b7

diff --git a/sys-apps/osinfo-db/osinfo-db-20230719.ebuild 
b/sys-apps/osinfo-db/osinfo-db-20230719.ebuild
deleted file mode 100644
index f2ac1ce4693f..
--- a/sys-apps/osinfo-db/osinfo-db-20230719.ebuild
+++ /dev/null
@@ -1,25 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="osinfo database files"
-HOMEPAGE="https://libosinfo.org/ https://gitlab.com/libosinfo/osinfo-db;
-SRC_URI="https://releases.pagure.org/libosinfo/${P}.tar.xz;
-S="${WORKDIR}"
-
-LICENSE="GPL-2+"
-SLOT="0"
-
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
-
-BDEPEND="sys-apps/osinfo-db-tools"
-
-# we don't depend on intltool here, contrary to README, as the tarball already
-# contains the processed results with translations in XML files
-
-src_unpack() { :; }
-
-src_install() {
-   osinfo-db-import --root "${D}" --dir "/usr/share/osinfo" 
"${DISTDIR}/${A}"
-}



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

2024-01-28 Thread Pacho Ramos
commit: 7b987b92aa9a24827a465f4d6a11247aa24d47a7
Author: Guillermo Joandet  gmail  com>
AuthorDate: Tue Jan 16 14:52:14 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 12:09:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b987b92

app-text/iso-codes: Version bump to 4.16.0

Signed-off-by: Guillermo Joandet  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34836
Signed-off-by: Pacho Ramos  gentoo.org>

 app-text/iso-codes/Manifest|  1 +
 app-text/iso-codes/iso-codes-4.16.0.ebuild | 79 ++
 2 files changed, 80 insertions(+)

diff --git a/app-text/iso-codes/Manifest b/app-text/iso-codes/Manifest
index 88816039a3a3..302c960ec1c9 100644
--- a/app-text/iso-codes/Manifest
+++ b/app-text/iso-codes/Manifest
@@ -1 +1,2 @@
 DIST iso-codes-v4.15.0.tar.gz 15046318 BLAKE2B 
fc4a9dd6a80fbd7658e0ba30f483a57f7d487f5eb7cc73ac2504d24397f1a8519acf8bf2431b18f969cbe4dd8e386cedd82c9284d405c57c6682af7639b4aacb
 SHA512 
1700c5c24a5a8c278df67539d7d99cae832a72e2fc604394b15af17cad78e36a9280e0a91ecaeade9e14b9f6431967ef2d2e662e73d200773e63455b0e1c5187
+DIST iso-codes-v4.16.0.tar.gz 15163129 BLAKE2B 
8fcdb3c12c502c1e14169765db9c9dd7778fc5d4bb0da37aa6b27efeebd5ce9f3e825e5b1a7ae8d659babf2d6b9124af08b40ed8a2a1235e88df50be9c204ca5
 SHA512 
04d93eb37ff309c850a1af6d4cf6bb92a16e25ee35ee12e16325f6e7b476ba40bbf5d11e2f4c425111220480911b1dbc9e244189ea7487f1f0ea4dbce2307c96

diff --git a/app-text/iso-codes/iso-codes-4.16.0.ebuild 
b/app-text/iso-codes/iso-codes-4.16.0.ebuild
new file mode 100644
index ..91e614fefbbc
--- /dev/null
+++ b/app-text/iso-codes/iso-codes-4.16.0.ebuild
@@ -0,0 +1,79 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+PLOCALES="ab ace ach af ak am an ar as ast ay az ba bar be bg bi bn bn_BD 
bn_IN br bs byn ca ce ch chr ckb crh cs csb cv cy da de dv dz ee el en eo es et 
eu fa ff fi fil fo fr frp fur fy ga gez gl gn gu gv ha haw he hi hr ht hu hy ia 
id io is it iu ja jam ka kab ki kk kl km kmr kn ko kok kv kw ky lo lt lv mai 
mhr mi mk ml mn mr ms mt my na nah nb_NO ne nl nn nso nv oc or pa pa_PK pap pi 
pl ps pt pt_BR ro ro_MD ru rw sc sd si sk sl so son sq sr sr@latin sv sw ta te 
tg th ti tig tk tl tr tt tt@iqtelif tzm ug uk ur uz ve vi wa wal wo xh yo zh_CN 
zh_HK zh_Hans zh_Hant zh_TW zu"
+
+inherit python-any-r1
+
+DESCRIPTION="ISO language, territory, currency, script codes and their 
translations"
+HOMEPAGE="https://salsa.debian.org/iso-codes-team/iso-codes;
+SRC_URI="https://salsa.debian.org/${PN}-team/${PN}/-/archive/v${PV}/${PN}-v${PV}.tar.gz;
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+
+BDEPEND="${PYTHON_DEPS}
+   sys-devel/gettext
+"
+S="${WORKDIR}/${PN}-v${PV}"
+
+# This ebuild does not install any binaries.
+RESTRICT="binchecks strip"
+
+DOCS=( CHANGELOG.md README.md )
+
+# plocale_find_changes doesn't support multiple directories,
+# so need to do the update scan ourselves.
+check_existing_locales() {
+   local std loc all_locales=()
+
+   ebegin "Looking for new locales"
+   for std in "${all_stds[@]}"; do
+   pushd "${std}" >/dev/null || die
+   for loc in *.po; do
+   all_locales+=( "${loc%.po}" )
+   done
+   popd >/dev/null
+   done
+
+   all_locales=$(echo $(printf '%s\n' "${all_locales[@]}" | LC_COLLATE=C 
sort -u))
+   if [[ ${PLOCALES} != "${all_locales}" ]]; then
+   eend 1
+   eerror "There are changes in locales! This ebuild should be 
updated to:"
+   eerror "PLOCALES=\"${all_locales}\""
+   die "Update PLOCALES in the ebuild"
+   else
+   eend 0
+   fi
+}
+
+src_prepare() {
+   default
+
+   local std loc mylinguas
+   local all_stds=( iso_15924 iso_3166-{1,2,3} iso_4217 iso_639-{2,3,5} )
+
+   check_existing_locales
+
+   # Modify the Makefiles so they only install requested locales.
+   for std in "${all_stds[@]}"; do
+   einfo "Preparing ${std} ..."
+   pushd "${std}" >/dev/null || die
+   mylinguas=()
+   for loc in *.po; do
+   if has ${loc%.po} ${LINGUAS-${loc%.po}}; then
+   mylinguas+=( "${loc}" )
+   fi
+   done
+
+   sed \
+   -e "/^pofiles =/s:=.*:= ${mylinguas[*]}:" \
+   -e "/^mofiles =/s:=.*:= ${mylinguas[*]/%.po/.mo}:" \
+   -i Makefile.am Makefile.in || die "sed in ${std} folder 
failed"
+   popd >/dev/null
+   done
+}



[gentoo-commits] repo/gentoo:master commit in: dev-build/kbuild/

2024-01-28 Thread Viorel Munteanu
commit: 6eef543fe0976f6d6aec625e7363abd8406cb683
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Sun Jan 28 14:36:35 2024 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Sun Jan 28 14:36:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6eef543f

dev-build/kbuild: drop empty IUSE

Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-build/kbuild/kbuild-0.1.9998.3499-r4.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-build/kbuild/kbuild-0.1.9998.3499-r4.ebuild 
b/dev-build/kbuild/kbuild-0.1.9998.3499-r4.ebuild
index 1ed4a97698af..83d88bf6772c 100644
--- a/dev-build/kbuild/kbuild-0.1.9998.3499-r4.ebuild
+++ b/dev-build/kbuild/kbuild-0.1.9998.3499-r4.ebuild
@@ -15,7 +15,6 @@ SRC_URI="
 LICENSE="GPL-3+"
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE=""
 
 BDEPEND="
sys-apps/texinfo



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2024-01-28 Thread Sam James
commit: 17939390efcb504b864531338abf6d9082b1f3fb
Author: Alfred Wingate  protonmail  com>
AuthorDate: Tue Jan 23 08:42:47 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 14:50:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17939390

media-tv/kodi: fix issue with bundled java packages

* Kodi wasn't properly building them leading to a build error. Unpack
  and feed this location to the build with -D*_SOURCE_DIR to make sure
  it works.

Closes: https://bugs.gentoo.org/922871
Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-tv/kodi/kodi-.ebuild | 7 +++
 1 file changed, 7 insertions(+)

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 8725fa3fc6f3..66bd223250ee 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -283,6 +283,10 @@ src_unpack() {
else
unpack ${MY_P}.tar.gz
fi
+
+   unpack apache-groovy-binary-${GROOVY_VERSION}.zip
+   unpack commons-lang3-${APACHE_COMMON_LANG_VERSION}-bin.tar.gz
+   unpack commons-text-${APACHE_COMMON_TEXT_VERSION}-bin.tar.gz
 }
 
 src_prepare() {
@@ -399,6 +403,9 @@ src_configure() {
-DTARBALL_DIR="${DISTDIR}"

-Dlibdvdnav_URL="${DISTDIR}/libdvdnav-${LIBDVDNAV_VERSION}.tar.gz"

-Dlibdvdread_URL="${DISTDIR}/libdvdread-${LIBDVDREAD_VERSION}.tar.gz"
+   -Dgroovy_SOURCE_DIR="${WORKDIR}/groovy-${GROOVY_VERSION}"
+   
-Dapache-commons-lang_SOURCE_DIR="${WORKDIR}/commons-lang3-${APACHE_COMMON_LANG_VERSION}"
+   
-Dapache-commons-text_SOURCE_DIR="${WORKDIR}/commons-text-${APACHE_COMMON_TEXT_VERSION}"
)
 
# Separated to avoid "Manually-specified variables were not used by the 
project:"



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2024-01-28 Thread Sam James
commit: e4e9593535fa3475be254a5820bf9945eb499fca
Author: Alfred Wingate  protonmail  com>
AuthorDate: Tue Jan 23 08:40:21 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 14:50:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4e95935

media-tv/kodi: fixup -system-ffmpeg for live

* Enable system-ffmpeg by default as upstream doesn't carry patches
  anymore and is updating their bundled version in a timely manor
  currently.

Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-tv/kodi/Manifest |  1 +
 media-tv/kodi/kodi-.ebuild | 11 ++-
 2 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/media-tv/kodi/Manifest b/media-tv/kodi/Manifest
index 7df357cd443f..a9bf4c214bec 100644
--- a/media-tv/kodi/Manifest
+++ b/media-tv/kodi/Manifest
@@ -1,6 +1,7 @@
 DIST apache-groovy-binary-4.0.16.zip 29793704 BLAKE2B 
30f77c6400c85821cf78f6ba1070da1e68644531f85f71cf7695443b13b81393cc89d4103eb869d1523f0a22a6e1c3428dcabf4f79c8a2c6eb2a6dea74e84e8f
 SHA512 
743698979c801f3cfb36545888b5303e1e25dae5692bb45cab7ebbe102a6eda31f09abc6978349ad90ecaf630416fc87eacba7781244855e7e771a3c44041fa0
 DIST commons-lang3-3.14.0-bin.tar.gz 9442785 BLAKE2B 
2ecdd06f97ac2688220055a08f67da9b859bed3ab00ff41800d5d9a1cebda599db2e816425c10c265dd6827a0ef79fc3dd094a8b3c9b9ae4ceae8f5750a59cf2
 SHA512 
8e7e62418a49ba810512c13a640a8bf35f878fcd54af32fdaabe37817f58b21b475980ba663fba4887e45ef8d88af8ff17796f20d202e929e8e2574546dc
 DIST commons-text-1.11.0-bin.tar.gz 3018564 BLAKE2B 
c32e41c6b8c90dea876caf4c2cedc9358d5e49506bfee7aee42ac6b92dbe8505d5e5d81c860a739bb06214b832cc29e91ddb95f3cfc24515c970302a519a5e43
 SHA512 
2e94877000dd270b69e2e8cbf49f258a90b4c628b6b6b0814e300a2f0e9c391f0816dceb0707e596ae3b7c9532f93e7a4917df47c77f44b3a810e14042ce5f3f
+DIST ffmpeg-6.0.1.tar.gz 15437409 BLAKE2B 
6424e30c6d354abbbea8a807822ae61589413189e9c4ba7aa51c307179287506b9072626e9745861fe83753c0015b50d179f9b4f298fe9abf74bee13936639af
 SHA512 
945e34840092dc0fd3824eb1af2be79868af2afb4fe13159b19a9bcfc464cc4d53243c13ff065199290e9393ddbf4b1c5c8abccf83a31a31d6c7490e499fd1fc
 DIST ffmpeg-kodi-4.3.2-Matrix-19.1.tar.gz 13490949 BLAKE2B 
90007f2c4bac0e0a52b419d9333cf75b00e291f1ea7447cbdc579ee2f860de7c436c924253600f3fbd6e3faaabe97aaf46db083a5bbd2f5f03badcca5d643e89
 SHA512 
d3719253d674b16638b873545583b82fba3176803c81ba8bcb37e90456dd956f1c2ee8996493840cff2d61c6399f06ed0524a759f46e4ce174bce23e9c6eda4a
 DIST ffmpeg-kodi-4.4.1-Nexus-Alpha1.tar.gz 13725564 BLAKE2B 
51d310e7000aeba657d55341c5fdb540474e197b85062228ab4b314c8309ec11985aa7f10519fc6106529e8e58c86eafe268190894be8532d0e0b9065fa6
 SHA512 
8beb04d577b5251e74b0d52f4d130997a8ba94bbd488c7c8309e6b45095c27807e150212888ce3a384b23dff52f8df1a7bde5407bae924ddc363f8125c0616c5
 DIST kodi-19.5-Matrix.tar.gz 53496968 BLAKE2B 
89855e4d59faa5734e945e50267c2ec8d8e8bef91ecfa49ae49dd99f749a59609b55c57821042939082a8f98ea95f7edc3de0fa0494e218d454c67b79807ef87
 SHA512 
b560c068491a7f62894167da99be082f0e6a8a840cbfe1fb0cef5c844cda959bd3b5479a435b58616bb2a8454083ad393a4d49de05fbbdb0817a0fad9726e52f

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 503c3d27ca41..8725fa3fc6f3 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -12,6 +12,7 @@ CODENAME="Omega"
 LIBDVDCSS_VERSION="1.4.3-Next-Nexus-Alpha2-2"
 LIBDVDREAD_VERSION="6.1.3-Next-Nexus-Alpha2-2"
 LIBDVDNAV_VERSION="6.1.1-Next-Nexus-Alpha2-2"
+FFMPEG_VERSION="6.0.1"
 
 # Java bundles from xbmc/interfaces/swig/CMakeLists.txt
 GROOVY_VERSION="4.0.16"
@@ -48,6 +49,9 @@ SRC_URI="

https://github.com/xbmc/libdvdcss/archive/${LIBDVDCSS_VERSION}.tar.gz
-> libdvdcss-${LIBDVDCSS_VERSION}.tar.gz
)
+   !system-ffmpeg? (
+   https://ffmpeg.org/releases/ffmpeg-${FFMPEG_VERSION}.tar.gz
+   )
 "
 if [[ ${PV} == * ]] ; then
EGIT_REPO_URI="https://github.com/xbmc/xbmc.git;
@@ -72,7 +76,7 @@ SLOT="0"
 # use flag is called libusb so that it doesn't fool people in thinking that
 # it is _required_ for USB support. Otherwise they'll disable udev and
 # that's going to be worse.
-IUSE="airplay alsa bluetooth bluray caps cec +css dbus doc eventclients gbm 
gles lcms libusb lirc mariadb mysql nfs +optical pipewire pulseaudio 
raspberry-pi samba system-ffmpeg test udf udev upnp vaapi vdpau wayland 
webserver X +xslt zeroconf ${CPU_FLAGS}"
+IUSE="airplay alsa bluetooth bluray caps cec +css dbus doc eventclients gbm 
gles lcms libusb lirc mariadb mysql nfs +optical pipewire pulseaudio 
raspberry-pi samba +system-ffmpeg test udf udev upnp vaapi vdpau wayland 
webserver X +xslt zeroconf ${CPU_FLAGS}"
 REQUIRED_USE="
${PYTHON_REQUIRED_USE}
^^ ( gbm wayland X )
@@ -374,6 +378,8 @@ src_configure() {
-DENABLE_VDPAU=$(usex vdpau)
-DENABLE_XSLT=$(usex xslt)
 
+   -DWITH_FFMPEG=$(usex system-ffmpeg)
+
  

[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/, media-tv/kodi/files/

2024-01-28 Thread Sam James
commit: 2c5c14ab38b48203ca963170955686b19d400ef7
Author: Alfred Wingate  protonmail  com>
AuthorDate: Sun Jan 28 09:28:36 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 14:50:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c5c14ab

media-tv/kodi: include headers for gcc-14

Closes: https://bugs.gentoo.org/923041
Signed-off-by: Alfred Wingate  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34972
Signed-off-by: Sam James  gentoo.org>

 media-tv/kodi/files/kodi-20.3-gcc-14.patch | 72 ++
 media-tv/kodi/kodi-20.3.ebuild |  1 +
 2 files changed, 73 insertions(+)

diff --git a/media-tv/kodi/files/kodi-20.3-gcc-14.patch 
b/media-tv/kodi/files/kodi-20.3-gcc-14.patch
new file mode 100644
index ..b4c5ee94eb80
--- /dev/null
+++ b/media-tv/kodi/files/kodi-20.3-gcc-14.patch
@@ -0,0 +1,72 @@
+https://github.com/xbmc/xbmc/commit/3dcea03c915f2062d4f8740d66abdf033fba9d6c
+https://bugs.gentoo.org/923041
+
+From 3dcea03c915f2062d4f8740d66abdf033fba9d6c Mon Sep 17 00:00:00 2001
+From: Manuel Lauss 
+Date: Fri, 13 Oct 2023 12:27:15 +0200
+Subject: [PATCH] add missing c++ headers
+
+Add a few missing headers which are no longer indirectly included by
+other headers, fixes build with gcc-14
+--- a/xbmc/addons/AddonUpdateRules.cpp
 b/xbmc/addons/AddonUpdateRules.cpp
+@@ -12,6 +12,7 @@
+ #include "addons/addoninfo/AddonInfo.h"
+ #include "utils/log.h"
+ 
++#include 
+ #include 
+ 
+ using namespace ADDON;
+--- a/xbmc/addons/binary-addons/AddonDll.cpp
 b/xbmc/addons/binary-addons/AddonDll.cpp
+@@ -27,6 +27,7 @@
+ #include "utils/Variant.h"
+ #include "utils/log.h"
+ 
++#include 
+ #include 
+ 
+ using namespace KODI::MESSAGING;
+--- a/xbmc/interfaces/json-rpc/TextureOperations.cpp
 b/xbmc/interfaces/json-rpc/TextureOperations.cpp
+@@ -14,6 +14,8 @@
+ #include "TextureDatabase.h"
+ #include "utils/Variant.h"
+ 
++#include 
++
+ using namespace JSONRPC;
+ 
+ JSONRPC_STATUS CTextureOperations::GetTextures(const std::string , 
ITransportLayer *transport, IClient *client, const CVariant , 
CVariant )
+--- a/xbmc/utils/EGLImage.cpp
 b/xbmc/utils/EGLImage.cpp
+@@ -14,6 +14,7 @@
+ #include "utils/StringUtils.h"
+ #include "utils/log.h"
+ 
++#include 
+ #include 
+ 
+ namespace
+--- a/xbmc/windowing/gbm/drm/DRMConnector.cpp
 b/xbmc/windowing/gbm/drm/DRMConnector.cpp
+@@ -11,6 +11,7 @@
+ #include "utils/XTimeUtils.h"
+ #include "utils/log.h"
+ 
++#include 
+ #include 
+ 
+ using namespace KODI::WINDOWING::GBM;
+--- a/xbmc/windowing/gbm/drm/DRMPlane.cpp
 b/xbmc/windowing/gbm/drm/DRMPlane.cpp
+@@ -13,6 +13,8 @@
+ #include "utils/StringUtils.h"
+ #include "utils/log.h"
+ 
++#include 
++
+ using namespace KODI::WINDOWING::GBM;
+ 
+ CDRMPlane::CDRMPlane(int fd, uint32_t plane) : CDRMObject(fd), 
m_plane(drmModeGetPlane(m_fd, plane))

diff --git a/media-tv/kodi/kodi-20.3.ebuild b/media-tv/kodi/kodi-20.3.ebuild
index 887e7a594f77..f8421e429d8d 100644
--- a/media-tv/kodi/kodi-20.3.ebuild
+++ b/media-tv/kodi/kodi-20.3.ebuild
@@ -271,6 +271,7 @@ Please consider enabling IP_MULTICAST under Networking 
options.
 
 PATCHES=(
"${FILESDIR}"/kodi-20.2-binutils-2.41.patch
+   "${FILESDIR}"/kodi-20.3-gcc-14.patch
 )
 
 pkg_setup() {



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2024-01-28 Thread Sam James
commit: d5608d6070699a8ba2df0f4a7da999282ea55ee0
Author: Alfred Wingate  protonmail  com>
AuthorDate: Tue Jan 23 08:44:51 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 14:50:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5608d60

media-tv/kodi: skip new failing test

* Breaks network-sandbox.

Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-tv/kodi/kodi-.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 66bd223250ee..13ae6f98c30e 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -469,6 +469,8 @@ src_test() {
# bug #779184
# https://github.com/xbmc/xbmc/issues/18594
$(usev x86 TestDateTime.SetFromDBTime)
+   # Tries to ping localhost, naturally breaking network-sandbox
+   TestNetwork.PingHost
)
 
# see https://github.com/xbmc/xbmc/issues/17860#issuecomment-630120213



[gentoo-commits] repo/gentoo:master commit in: media-tv/kodi/

2024-01-28 Thread Sam James
commit: 4e6b05e0d7b406b3cc4be84ed54079d39c96bfcc
Author: Alfred Wingate  protonmail  com>
AuthorDate: Tue Jan 23 09:11:46 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 14:50:20 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e6b05e0

media-tv/kodi: avoid variable not using by project warning

* Doesn't address warnings triggered later with building bundled
  dependencies.

Signed-off-by: Alfred Wingate  protonmail.com>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/media-tv/kodi/kodi-.ebuild b/media-tv/kodi/kodi-.ebuild
index 13ae6f98c30e..45afbd631bb4 100644
--- a/media-tv/kodi/kodi-.ebuild
+++ b/media-tv/kodi/kodi-.ebuild
@@ -385,7 +385,6 @@ src_configure() {
-DWITH_FFMPEG=$(usex system-ffmpeg)
 
#To bundle or not
-   -DENABLE_INTERNAL_CEC=OFF
-DENABLE_INTERNAL_CROSSGUID=OFF
-DENABLE_INTERNAL_DAV1D=OFF
-DENABLE_INTERNAL_FFMPEG="$(usex !system-ffmpeg)"
@@ -409,6 +408,7 @@ src_configure() {
)
 
# Separated to avoid "Manually-specified variables were not used by the 
project:"
+   use cec && mycmakeargs+=( -DENABLE_INTERNAL_CEC=OFF )
use css && mycmakeargs+=( 
-Dlibdvdcss_URL="${DISTDIR}/libdvdcss-${LIBDVDCSS_VERSION}.tar.gz" )
use nfs && mycmakeargs+=( -DENABLE_INTERNAL_NFS=OFF )
use !system-ffmpeg && mycmakeargs+=(



[gentoo-commits] proj/pambase:master commit in: templates/

2024-01-28 Thread Sam James
commit: f6e52e5b96c20426687bc8041b171c9b788d7910
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 08:14:35 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:14:35 2024 +
URL:https://gitweb.gentoo.org/proj/pambase.git/commit/?id=f6e52e5b

system-auth.tpl: fix sssd's pam_deny

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

 templates/system-auth.tpl | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/templates/system-auth.tpl b/templates/system-auth.tpl
index 4065e89..9a274a4 100644
--- a/templates/system-auth.tpl
+++ b/templates/system-auth.tpl
@@ -31,7 +31,7 @@ auth  sufficient  pam_sss.so forward_pass {{ 
debug|default('', true) }}
 auth   optionalpam_cap.so
 {% endif %}
 {% if sssd %}
-auth   sufficient  pam_deny.so
+auth   requiredpam_deny.so
 {% endif %}
 {% if krb5 %}
 account[success=2 default=ignore]  pam_krb5.so {{ 
krb5_params }}



[gentoo-commits] proj/pambase: New tag: pambase-20240128

2024-01-28 Thread Sam James
commit: 
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 08:15:01 2024 +

New tag: pambase-20240128




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

2024-01-28 Thread Sam James
commit: 2a48d347910fca2b15a532e4568cfda3287c7a01
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 09:03:26 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 09:03:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a48d347

net-dns/libidn2: drop obsolete LLD 17 workaround

Upstream commit ecdf25135d20a71ccf274b255f374611cd074bb5.

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

 net-dns/libidn2/libidn2-2.3.7.ebuild | 4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/net-dns/libidn2/libidn2-2.3.7.ebuild 
b/net-dns/libidn2/libidn2-2.3.7.ebuild
index 436d7026ba71..b6e55750538d 100644
--- a/net-dns/libidn2/libidn2-2.3.7.ebuild
+++ b/net-dns/libidn2/libidn2-2.3.7.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit flag-o-matic multilib-minimal toolchain-funcs verify-sig
+inherit multilib-minimal toolchain-funcs verify-sig
 
 DESCRIPTION="An implementation of the IDNA2008 specifications (RFCs 5890, 
5891, 5892, 5893)"
 HOMEPAGE="
@@ -36,8 +36,6 @@ BDEPEND="
 VERIFY_SIG_OPENPGP_KEY_PATH=/usr/share/openpgp-keys/libidn.asc
 
 multilib_src_configure() {
-   append-ldflags $(test-flags-CCLD -Wl,--undefined-version)
-
local myconf=(
CC_FOR_BUILD="$(tc-getBUILD_CC)"
$(use_enable static-libs static)



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

2024-01-28 Thread Pacho Ramos
commit: 764e569807eb71c467c50c65e9b7e0bcb8c7e341
Author: Guillermo Joandet  gmail  com>
AuthorDate: Wed Jan 10 14:08:50 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 11:49:29 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=764e5698

dev-cpp/mm-common: Version bump to 1.0.6

Signed-off-by: Guillermo Joandet  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/34735
Signed-off-by: Pacho Ramos  gentoo.org>

 dev-cpp/mm-common/Manifest   |  1 +
 dev-cpp/mm-common/mm-common-1.0.6.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/dev-cpp/mm-common/Manifest b/dev-cpp/mm-common/Manifest
index 7c99b5fd1186..a96d23566d81 100644
--- a/dev-cpp/mm-common/Manifest
+++ b/dev-cpp/mm-common/Manifest
@@ -1 +1,2 @@
 DIST mm-common-1.0.5.tar.xz 290608 BLAKE2B 
fcd698e8122fbcbcefcc6cce9460216cb3c3eabb17b309a28b964c9cd99b1329f936070f54b888cf0712e4590b8fe99394a110997ff023ff07dd7a30e55d771b
 SHA512 
bf681b4d63d5bf531a9315b0c8841e3815af276828d1828a3eb04dcb805cbbfbaac182f79f5e48688a7eef8666975b9079144e320093e4ee3addff48813e61ad
+DIST mm-common-1.0.6.tar.xz 287832 BLAKE2B 
b633f37a470b558c16ce4a260384913ddc64df2ac94e25e2b7b05300c5c7b51826477bff655154572bd7eafe583b4cb056e7c9dee3d3e699dbf200490da0591f
 SHA512 
2141ce9dabdae153e5708b09d30e7917182888e521ff0c2a4f85c7ec2dd86b2c8753e0513bf9c9f9a00d4e579173ffa859a3efd006e706fdfa2f33b0e77af48b

diff --git a/dev-cpp/mm-common/mm-common-1.0.6.ebuild 
b/dev-cpp/mm-common/mm-common-1.0.6.ebuild
new file mode 100644
index ..76a84d27d557
--- /dev/null
+++ b/dev-cpp/mm-common/mm-common-1.0.6.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..12} )
+inherit gnome.org python-any-r1 meson
+
+DESCRIPTION="Build infrastructure and utilities for GNOME C++ bindings"
+HOMEPAGE="https://www.gtkmm.org/ https://gitlab.gnome.org/GNOME/mm-common;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
+
+BDEPEND="${PYTHON_DEPS}"
+
+src_prepare() {
+   default
+
+   # Include project version in docdir name
+   sed -i -e "s:^install_docdir.*:& + '-' + meson.project_version():" 
meson.build || die
+}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-alphabetical-grid/

2024-01-28 Thread Pacho Ramos
commit: 3a6bd2f69ed50b5856cafe60d5eaa14515fd33a8
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 12:32:25 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 12:35:03 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3a6bd2f6

gnome-extra/gnome-shell-extension-alphabetical-grid: add 38.0

Signed-off-by: Pacho Ramos  gentoo.org>

 .../Manifest   |  1 +
 ...e-shell-extension-alphabetical-grid-38.0.ebuild | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest 
b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest
index a3272926f38c..fdf45545f3ec 100644
--- a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest
+++ b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest
@@ -1,3 +1,4 @@
 DIST gnome-shell-extension-alphabetical-grid-32.0.tar.gz 214580 BLAKE2B 
b3fd0be85c5f74240f25a96b041df6ca0e3cf02b2b025eb2ffa5f1e3ed9f9562dac3ee37b7a32a548b3a8054ad8728a9d93c9bd84d771eadb0c9d56b2366cd97
 SHA512 
8ac96bea822df28cd980179a19d3f7acb8a950b3f1e41e650ff2982cb3b657434a0eb49357ebd206b68de102bb3c89b823f16cbcd379e7807598b923e5a64c6c
 DIST gnome-shell-extension-alphabetical-grid-35.0.tar.gz 215465 BLAKE2B 
981bd47a47ab4c0b4d521a6d48164ae2edd2d883f38e37d3bda5f60eb75f0e3e27d607130e35d5a280593de2ab7955f29d8c0d76ca7bd5de33281a4d175a5d72
 SHA512 
af3641284361587adc6a8a8beefb95da8e35fbe2a505e7e21fd14afebb76175500745c4fe0b1bdbf0482a6c74c5facd6786aa59ec7f8cc2498b64f33aad255e7
 DIST gnome-shell-extension-alphabetical-grid-36.0.tar.gz 215631 BLAKE2B 
339fc9d6fde299b2c989aa135d1eb7f6d95d5c3cedf1e38ed17b1a280cac4092aea361fe44fa957b7ec3a821f7f51514d10dda4ad195734fb92f0278453a02ee
 SHA512 
4c7b5e32b14e59e2d80e84a0d039b0655750e2f1eb75e20a4c903a6a24b813c0378644db449e757e35c6eb27b69598bd614294a3e631853bb3c628b3eac322af
+DIST gnome-shell-extension-alphabetical-grid-38.0.tar.gz 216817 BLAKE2B 
bfb01e647b8545c70ce9e3b65910701ebce38d110a97c15e0413f10c0b68116b4624e98ad0d34961b701b2f2b43c20f1a15e31219edfb14a79321143be3e2c8d
 SHA512 
4736a5e621c58adf635c468032233f54b9a2f93cdec9e65616a7272ee3368fe901401d051ed13674c815b73fdef9f7a4c38bc9e3e4c19ede7adc6782ae91cff1

diff --git 
a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-38.0.ebuild
 
b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-38.0.ebuild
new file mode 100644
index ..50291ca4a9f4
--- /dev/null
+++ 
b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-38.0.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit gnome2-utils
+
+# Useful specially to prevent
+# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4684
+# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3180
+DESCRIPTION="Restore the alphabetical ordering of the app grid"
+HOMEPAGE="https://github.com/stuarthayhurst/alphabetical-grid-extension;
+SRC_URI="https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   app-eselect/eselect-gnome-shell-extensions
+   >=gnome-base/gnome-shell-45
+   gui-libs/libadwaita
+"
+DEPEND="${COMMON_DEPEND}"
+
+S="${WORKDIR}/alphabetical-grid-extension-${PV}"
+extension_uuid="AlphabeticalAppGrid@stuarthayhurst"
+
+# Tests are only useful for upstream
+RESTRICT="test"
+
+# Not useful for us
+src_compile() { :; }
+
+src_install() {
+   einstalldocs
+   mv docs/icon.svg extension || die
+   cd extension || die
+   insinto /usr/share/glib-2.0/schemas
+   doins schemas/*.xml
+   rm -rf schemas || die
+   insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
+   doins -r *
+}
+
+pkg_preinst() {
+   gnome2_schemas_savelist
+}
+
+pkg_postinst() {
+   gnome2_schemas_update
+   ebegin "Updating list of installed extensions"
+   eselect gnome-shell-extensions update
+   eend $?
+}
+
+pkg_postrm() {
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: gnome-extra/gnome-shell-extension-alphabetical-grid/

2024-01-28 Thread Pacho Ramos
commit: d7b08afed0c32354b53d0800f209ab5eef7a28db
Author: Pacho Ramos  gentoo  org>
AuthorDate: Sun Jan 28 12:33:02 2024 +
Commit: Pacho Ramos  gentoo  org>
CommitDate: Sun Jan 28 12:35:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7b08afe

gnome-extra/gnome-shell-extension-alphabetical-grid: drop 35.0

Signed-off-by: Pacho Ramos  gentoo.org>

 .../Manifest   |  1 -
 ...e-shell-extension-alphabetical-grid-35.0.ebuild | 60 --
 2 files changed, 61 deletions(-)

diff --git a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest 
b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest
index fdf45545f3ec..1e73bf251a56 100644
--- a/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest
+++ b/gnome-extra/gnome-shell-extension-alphabetical-grid/Manifest
@@ -1,4 +1,3 @@
 DIST gnome-shell-extension-alphabetical-grid-32.0.tar.gz 214580 BLAKE2B 
b3fd0be85c5f74240f25a96b041df6ca0e3cf02b2b025eb2ffa5f1e3ed9f9562dac3ee37b7a32a548b3a8054ad8728a9d93c9bd84d771eadb0c9d56b2366cd97
 SHA512 
8ac96bea822df28cd980179a19d3f7acb8a950b3f1e41e650ff2982cb3b657434a0eb49357ebd206b68de102bb3c89b823f16cbcd379e7807598b923e5a64c6c
-DIST gnome-shell-extension-alphabetical-grid-35.0.tar.gz 215465 BLAKE2B 
981bd47a47ab4c0b4d521a6d48164ae2edd2d883f38e37d3bda5f60eb75f0e3e27d607130e35d5a280593de2ab7955f29d8c0d76ca7bd5de33281a4d175a5d72
 SHA512 
af3641284361587adc6a8a8beefb95da8e35fbe2a505e7e21fd14afebb76175500745c4fe0b1bdbf0482a6c74c5facd6786aa59ec7f8cc2498b64f33aad255e7
 DIST gnome-shell-extension-alphabetical-grid-36.0.tar.gz 215631 BLAKE2B 
339fc9d6fde299b2c989aa135d1eb7f6d95d5c3cedf1e38ed17b1a280cac4092aea361fe44fa957b7ec3a821f7f51514d10dda4ad195734fb92f0278453a02ee
 SHA512 
4c7b5e32b14e59e2d80e84a0d039b0655750e2f1eb75e20a4c903a6a24b813c0378644db449e757e35c6eb27b69598bd614294a3e631853bb3c628b3eac322af
 DIST gnome-shell-extension-alphabetical-grid-38.0.tar.gz 216817 BLAKE2B 
bfb01e647b8545c70ce9e3b65910701ebce38d110a97c15e0413f10c0b68116b4624e98ad0d34961b701b2f2b43c20f1a15e31219edfb14a79321143be3e2c8d
 SHA512 
4736a5e621c58adf635c468032233f54b9a2f93cdec9e65616a7272ee3368fe901401d051ed13674c815b73fdef9f7a4c38bc9e3e4c19ede7adc6782ae91cff1

diff --git 
a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-35.0.ebuild
 
b/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-35.0.ebuild
deleted file mode 100644
index 3c2e00a566a1..
--- 
a/gnome-extra/gnome-shell-extension-alphabetical-grid/gnome-shell-extension-alphabetical-grid-35.0.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit gnome2-utils
-
-# Useful specially to prevent
-# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/4684
-# https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3180
-DESCRIPTION="Restore the alphabetical ordering of the app grid"
-HOMEPAGE="https://github.com/stuarthayhurst/alphabetical-grid-extension;
-SRC_URI="https://github.com/stuarthayhurst/alphabetical-grid-extension/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-RDEPEND="
-   app-eselect/eselect-gnome-shell-extensions
-   >=gnome-base/gnome-shell-45
-   gui-libs/libadwaita
-"
-DEPEND="${COMMON_DEPEND}"
-BDEPEND=""
-
-S="${WORKDIR}/alphabetical-grid-extension-${PV}"
-extension_uuid="AlphabeticalAppGrid@stuarthayhurst"
-
-# Tests are only useful for upstream
-RESTRICT="test"
-
-# Not useful for us
-src_compile() { :; }
-
-src_install() {
-   einstalldocs
-   mv docs/icon.svg extension || die
-   cd extension || die
-   insinto /usr/share/glib-2.0/schemas
-   doins schemas/*.xml
-   rm -rf schemas || die
-   insinto /usr/share/gnome-shell/extensions/"${extension_uuid}"
-   doins -r *
-}
-
-pkg_preinst() {
-   gnome2_schemas_savelist
-}
-
-pkg_postinst() {
-   gnome2_schemas_update
-   ebegin "Updating list of installed extensions"
-   eselect gnome-shell-extensions update
-   eend $?
-}
-
-pkg_postrm() {
-   gnome2_schemas_update
-}



[gentoo-commits] repo/proj/guru:dev commit in: sys-apps/0xFFFF/

2024-01-28 Thread Takuya Wakazono
commit: 444ee98da331ec15e946b6a1a4ad656c0940b9a4
Author: Takuya Wakazono  gmail  com>
AuthorDate: Sat Jan 27 09:55:06 2024 +
Commit: Takuya Wakazono  gmail  com>
CommitDate: Sun Jan 28 09:37:27 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=444ee98d

sys-apps/0x: add 0.10

Closes: https://bugs.gentoo.org/888001
Signed-off-by: Takuya Wakazono  gmail.com>

 sys-apps/0x/0x-0.10.ebuild | 31 +++
 sys-apps/0x/Manifest   |  1 +
 2 files changed, 32 insertions(+)

diff --git a/sys-apps/0x/0x-0.10.ebuild 
b/sys-apps/0x/0x-0.10.ebuild
new file mode 100644
index 00..0810b547a8
--- /dev/null
+++ b/sys-apps/0x/0x-0.10.ebuild
@@ -0,0 +1,31 @@
+# Copyright 2013-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit toolchain-funcs
+
+DESCRIPTION="0pen Free Fiasco Firmware Flasher for Maemo devices"
+HOMEPAGE="https://github.com/pali/0x;
+SRC_URI="https://github.com/pali/${PN}/releases/download/${PV}/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+DEPEND="virtual/libusb:0"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   sed -i 's/-O2//' src/Makefile || die
+   default
+}
+
+src_compile() {
+   tc-export CC
+   default
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
+}

diff --git a/sys-apps/0x/Manifest b/sys-apps/0x/Manifest
index f6a8d25153..95baaefff7 100644
--- a/sys-apps/0x/Manifest
+++ b/sys-apps/0x/Manifest
@@ -1,2 +1,3 @@
+DIST 0x-0.10.tar.gz 67940 BLAKE2B 
187d2074d3c4dd78582ca3d40da98a338cff807df2745bc893cba42e1eede8ad08d5bbd43751c14357b24540c5a89c38c1f8cb10c07054b9f89ee927f8411967
 SHA512 
3eaa86ea3a56faedd9137f777a0a4deb13655f4689db02a22b489da7c040b45a129d8237268e7c70cd56d333d7a13257368c8c06ddbfa0bdaad4bb9bd4ab5b36
 DIST 0x-0.8.tar.gz 64504 BLAKE2B 
bc650f494c9c485169c6503f28a62a76089b79aa55948eddd70dd88f135541a16de97820845c98843f4419e80d1b24f1cedef0ec46746c44c14839f8c93b
 SHA512 
514104d60561d601628081de44109c89a21e861e2a0c8ad7e5b9b0fef19c068af9ee1b274a55722083f85b0ca9f6a84a8c6cd97b9017d85b4e975974bb73506a
 DIST 0x-0.9.tar.gz 64845 BLAKE2B 
315d08b21edc053e1357a96e30347d2987cb5d7fb18e6faedfc959f44f710df23f803bb5bc36ebfeec6f2145d2f52685952bc0c192d9d18e45d2e47f4ade3f60
 SHA512 
6ec5ccc1ed7c8b4b2b10e641176f2c07bc8d490519571e1c935c501e8351e84de641848a2feb4f815a6a199c852f5eebd459b4009c1abed56772697445650daa



[gentoo-commits] repo/proj/guru:dev commit in: sys-apps/0xFFFF/

2024-01-28 Thread Takuya Wakazono
commit: e18445cd24f610936f4820bc4baf2e74becec9aa
Author: Takuya Wakazono  gmail  com>
AuthorDate: Sat Jan 27 09:55:41 2024 +
Commit: Takuya Wakazono  gmail  com>
CommitDate: Sun Jan 28 09:37:29 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=e18445cd

sys-apps/0x: drop 0.8, 0.9

Signed-off-by: Takuya Wakazono  gmail.com>

 sys-apps/0x/0x-0.8.ebuild | 27 ---
 sys-apps/0x/0x-0.9.ebuild | 27 ---
 sys-apps/0x/Manifest  |  2 --
 3 files changed, 56 deletions(-)

diff --git a/sys-apps/0x/0x-0.8.ebuild 
b/sys-apps/0x/0x-0.8.ebuild
deleted file mode 100644
index ea9c8a543d..00
--- a/sys-apps/0x/0x-0.8.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2013-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="The 0pen Free Fiasco Firmware Flasher"
-HOMEPAGE="https://github.com/pali/0x/;
-SRC_URI="https://github.com/pali/${PN}/releases/download/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="virtual/libusb:0"
-RDEPEND="${DEPEND}"
-
-src_compile() {
-   tc-export CC
-   default
-}
-
-src_install() {
-   emake DESTDIR="${ED}" PREFIX="/usr" install
-}

diff --git a/sys-apps/0x/0x-0.9.ebuild 
b/sys-apps/0x/0x-0.9.ebuild
deleted file mode 100644
index ea9c8a543d..00
--- a/sys-apps/0x/0x-0.9.ebuild
+++ /dev/null
@@ -1,27 +0,0 @@
-# Copyright 2013-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="The 0pen Free Fiasco Firmware Flasher"
-HOMEPAGE="https://github.com/pali/0x/;
-SRC_URI="https://github.com/pali/${PN}/releases/download/${PV}/${P}.tar.gz;
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE=""
-
-DEPEND="virtual/libusb:0"
-RDEPEND="${DEPEND}"
-
-src_compile() {
-   tc-export CC
-   default
-}
-
-src_install() {
-   emake DESTDIR="${ED}" PREFIX="/usr" install
-}

diff --git a/sys-apps/0x/Manifest b/sys-apps/0x/Manifest
index 95baaefff7..a66e5a34f2 100644
--- a/sys-apps/0x/Manifest
+++ b/sys-apps/0x/Manifest
@@ -1,3 +1 @@
 DIST 0x-0.10.tar.gz 67940 BLAKE2B 
187d2074d3c4dd78582ca3d40da98a338cff807df2745bc893cba42e1eede8ad08d5bbd43751c14357b24540c5a89c38c1f8cb10c07054b9f89ee927f8411967
 SHA512 
3eaa86ea3a56faedd9137f777a0a4deb13655f4689db02a22b489da7c040b45a129d8237268e7c70cd56d333d7a13257368c8c06ddbfa0bdaad4bb9bd4ab5b36
-DIST 0x-0.8.tar.gz 64504 BLAKE2B 
bc650f494c9c485169c6503f28a62a76089b79aa55948eddd70dd88f135541a16de97820845c98843f4419e80d1b24f1cedef0ec46746c44c14839f8c93b
 SHA512 
514104d60561d601628081de44109c89a21e861e2a0c8ad7e5b9b0fef19c068af9ee1b274a55722083f85b0ca9f6a84a8c6cd97b9017d85b4e975974bb73506a
-DIST 0x-0.9.tar.gz 64845 BLAKE2B 
315d08b21edc053e1357a96e30347d2987cb5d7fb18e6faedfc959f44f710df23f803bb5bc36ebfeec6f2145d2f52685952bc0c192d9d18e45d2e47f4ade3f60
 SHA512 
6ec5ccc1ed7c8b4b2b10e641176f2c07bc8d490519571e1c935c501e8351e84de641848a2feb4f815a6a199c852f5eebd459b4009c1abed56772697445650daa



[gentoo-commits] repo/gentoo:master commit in: mail-client/claws-mail/files/, mail-client/claws-mail/

2024-01-28 Thread Bernard Cafarelli
commit: e044e81c7698453a7df7359f21fbf42b0998eefb
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Jan 28 09:54:41 2024 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Jan 28 10:00:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e044e81c

mail-client/claws-mail: drop 4.1.0-r2, 4.1.1-r3

Signed-off-by: Bernard Cafarelli  gentoo.org>

 mail-client/claws-mail/Manifest|   1 -
 mail-client/claws-mail/claws-mail-4.1.0-r2.ebuild  | 217 ---
 mail-client/claws-mail/claws-mail-4.1.1-r3.ebuild  | 216 ---
 .../files/claws-mail-4.1.0-disable_gnutls.patch| 641 -
 4 files changed, 1075 deletions(-)

diff --git a/mail-client/claws-mail/Manifest b/mail-client/claws-mail/Manifest
index 10afbbca8ea9..1d802f06ad7f 100644
--- a/mail-client/claws-mail/Manifest
+++ b/mail-client/claws-mail/Manifest
@@ -1,5 +1,4 @@
 DIST claws-mail-3.19.0.tar.xz 6543188 BLAKE2B 
eeb7df2b921dbd7ad40c845804fcabe5ddc2064fcf410e7809004be472bbe2ba8bfd89a868420a1bb76845180856fee8a0b3cde879ae67b1a1aab14442fe5d2d
 SHA512 
88780df55873919197d3c6df5102a8eb89a586e8287419c179e1d0af839435a719814b1e3643aa783a7badeadceafda2dc3cb4a3265432b5ad3a210663922b20
 DIST claws-mail-3.20.0.tar.xz 6687376 BLAKE2B 
9a72e77ea922271fdb947e4f76229c89cb0fb2589921fca6fd161714a3093a137165b84b84db5cece5cb6b06998e237d524104d87078dcba36a94f02e0eb
 SHA512 
66d0087493452cf43357fbfb2338b3716ec45d202f51cce033aa3aec4dac2d6eb9e652efb22bcfcab1e6c00ff650a9926114fb4647f753e44013e607d923
-DIST claws-mail-4.1.0.tar.xz 6471604 BLAKE2B 
30d1725c2679e8a0b44edd6c30b15f28633c0a017935980d1412dabffdfb1f33e1c36bee3506e90af54410db222b64422155be821ba18f5e315ed411d477ed63
 SHA512 
83c7b1a8065628b1dcac58feb4d852b759b3fc376531572e88450b8e9517172a641f710a219b7e16bbc672dbe69853783e4edd1d7647a3f2aacb92e47be9175b
 DIST claws-mail-4.1.1.tar.xz 6523688 BLAKE2B 
7e1b1ae201a67e14821f415d2b51f6eebfc2896699d89f2088fa9f7f21de984f6d8e4e92791c233ec755a15184ff5e562ce96ad9d197acc4e1f8dadb3fd57c30
 SHA512 
4157772fd0e918bae1df11230ce52691ff86181a0c164c0c5116d1ebb91885910e2e24ff18ae5e5ad4ed1c83ef830773de0b4ab40da988607909e0c17efb26b4
 DIST claws-mail-4.2.0.tar.xz 6674872 BLAKE2B 
b3118b45f1d3e8ae31a9c7bfa529fd5c8fda3ff8823e88a5ef078432d38d4150b05791deafff2577378ea17b03d965374755d2536ff6835ed46bcd566fefddaf
 SHA512 
2415f246fc88b76263e1c43860c0638e08c58149a3d846831f26cda21f0f14035a759379031d52e56aef2516bacec147a2cd5a153fc8fecf02ede64077f1

diff --git a/mail-client/claws-mail/claws-mail-4.1.0-r2.ebuild 
b/mail-client/claws-mail/claws-mail-4.1.0-r2.ebuild
deleted file mode 100644
index 0e559de511fe..
--- a/mail-client/claws-mail/claws-mail-4.1.0-r2.ebuild
+++ /dev/null
@@ -1,217 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_10 )
-
-inherit autotools desktop python-any-r1 xdg
-
-DESCRIPTION="An email client (and news reader) based on GTK+"
-HOMEPAGE="https://www.claws-mail.org/;
-
-if [[ "${PV}" == * ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.claws-mail.org/readonly/claws.git;
-else
-   
SRC_URI="https://www.claws-mail.org/download.php?file=releases/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 ~riscv ~sparc x86"
-fi
-
-SLOT="0"
-LICENSE="GPL-3"
-
-IUSE="+appindicator archive bogofilter calendar clamav dbus debug doc gdata 
+gnutls +imap ipv6 ldap +libcanberra +libnotify litehtml networkmanager nls 
nntp +notification pdf perl +pgp rss session sieve smime spamassassin 
spam-report spell startup-notification svg valgrind webkit xface"
-REQUIRED_USE="
-   appindicator? ( notification )
-   libcanberra? ( notification )
-   libnotify? ( notification )
-   networkmanager? ( dbus )
-   smime? ( pgp )
-"
-
-COMMONDEPEND="
-   dev-libs/nettle:=
-   net-mail/ytnef
-   sys-libs/zlib:=
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf:2[jpeg]
-   x11-libs/gtk+:3
-   x11-libs/libX11
-   x11-libs/pango
-   archive? (
-   app-arch/libarchive
-   >=net-misc/curl-7.9.7
-   )
-   bogofilter? ( mail-filter/bogofilter )
-   calendar? (
-   >=dev-libs/libical-2.0.0:=
-   >=net-misc/curl-7.9.7
-   )
-   dbus? (
-   >=dev-libs/dbus-glib-0.60
-   sys-apps/dbus
-   )
-   gdata? ( >=dev-libs/libgdata-0.17.2 )
-   gnutls? ( >=net-libs/gnutls-3.0 )
-   imap? ( >=net-libs/libetpan-0.57 )
-   ldap? ( >=net-nds/openldap-2.0.7:= )
-   litehtml? (
-   >=dev-libs/glib-2.36:2
-   >=dev-libs/gumbo-0.10:=
-   net-misc/curl
-   media-libs/fontconfig
-   )
-   nls? ( >=sys-devel/gettext-0.18 )
-   nntp? ( >=net-libs/libetpan-0.57 )
-   notification? (
-   dev-libs/glib:2
-   appindicator? ( dev-libs/libindicate:3[gtk] 

[gentoo-commits] repo/gentoo:master commit in: mail-client/claws-mail/

2024-01-28 Thread Bernard Cafarelli
commit: 139e18abcb245db9140ca961174b4e624626071c
Author: Bernard Cafarelli  gentoo  org>
AuthorDate: Sun Jan 28 10:00:05 2024 +
Commit: Bernard Cafarelli  gentoo  org>
CommitDate: Sun Jan 28 10:00:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=139e18ab

mail-client/claws-mail: depend on gtk+ with USE=X

Uses some X11-only classes like GtkSocket

Closes: https://bugs.gentoo.org/922657
Signed-off-by: Bernard Cafarelli  gentoo.org>

 mail-client/claws-mail/claws-mail-4.1.1-r4.ebuild | 2 +-
 mail-client/claws-mail/claws-mail-4.2.0-r1.ebuild | 2 +-
 mail-client/claws-mail/claws-mail-.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/mail-client/claws-mail/claws-mail-4.1.1-r4.ebuild 
b/mail-client/claws-mail/claws-mail-4.1.1-r4.ebuild
index d03c5bd0d89f..902c4bdc278a 100644
--- a/mail-client/claws-mail/claws-mail-4.1.1-r4.ebuild
+++ b/mail-client/claws-mail/claws-mail-4.1.1-r4.ebuild
@@ -37,7 +37,7 @@ COMMONDEPEND="
sys-libs/zlib:=
x11-libs/cairo
x11-libs/gdk-pixbuf:2[jpeg]
-   x11-libs/gtk+:3
+   x11-libs/gtk+:3[X]
x11-libs/libX11
x11-libs/pango
archive? (

diff --git a/mail-client/claws-mail/claws-mail-4.2.0-r1.ebuild 
b/mail-client/claws-mail/claws-mail-4.2.0-r1.ebuild
index 5c39b553119e..5851aa86830f 100644
--- a/mail-client/claws-mail/claws-mail-4.2.0-r1.ebuild
+++ b/mail-client/claws-mail/claws-mail-4.2.0-r1.ebuild
@@ -38,7 +38,7 @@ COMMONDEPEND="
sys-libs/zlib:=
x11-libs/cairo
x11-libs/gdk-pixbuf:2[jpeg]
-   x11-libs/gtk+:3
+   x11-libs/gtk+:3[X]
x11-libs/libX11
x11-libs/pango
archive? (

diff --git a/mail-client/claws-mail/claws-mail-.ebuild 
b/mail-client/claws-mail/claws-mail-.ebuild
index ced89451d1f2..4490774ed8e4 100644
--- a/mail-client/claws-mail/claws-mail-.ebuild
+++ b/mail-client/claws-mail/claws-mail-.ebuild
@@ -38,7 +38,7 @@ COMMONDEPEND="
sys-libs/zlib:=
x11-libs/cairo
x11-libs/gdk-pixbuf:2[jpeg]
-   x11-libs/gtk+:3
+   x11-libs/gtk+:3[X]
x11-libs/libX11
x11-libs/pango
archive? (



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

2024-01-28 Thread Matthew Smith
commit: 35e71bb7f213a31a6229448b2001700ee5da41b5
Author: Matthew Smith  gentoo  org>
AuthorDate: Sun Jan 28 10:31:20 2024 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Sun Jan 28 10:32:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35e71bb7

dev-libs/tree-sitter: drop 0.20.6, 0.20.7

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

 dev-libs/tree-sitter/Manifest  |  2 --
 dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild | 43 
 dev-libs/tree-sitter/tree-sitter-0.20.7.ebuild | 46 --
 3 files changed, 91 deletions(-)

diff --git a/dev-libs/tree-sitter/Manifest b/dev-libs/tree-sitter/Manifest
index c960db5475e3..3746d0c9031a 100644
--- a/dev-libs/tree-sitter/Manifest
+++ b/dev-libs/tree-sitter/Manifest
@@ -1,4 +1,2 @@
-DIST tree-sitter-0.20.6.tar.gz 2924556 BLAKE2B 
17348717441497ea7fc91419a0e8796d077b9acda2b584e9c3e1ac4a7a3f1fa3f84d5b749f21144d0593aaa7bf2e7ff9665539e91c6e81cda4359850e0fcdb14
 SHA512 
f0fb1e0073867c2a6e69b230e07e5eec32a2b30d3c711ec188526e287d6a1ef06de266d476482f900ec7c9ff6c11909899fd35a802e96f0befc6e99815502377
-DIST tree-sitter-0.20.7.tar.gz 2928761 BLAKE2B 
280083381ce4f5949ab1ca1412026cac79bcf28b488147150d934b70cdc7804466c8032d50254f1ff4457b55a33fe0dceef66fd053cd32bbf844dc8280e896ab
 SHA512 
dd306f7304cb5f87c05eab3bf5c9c4c13bfed7766a164eafe3159adbc6cca4e66fbdb6880f48dfc668408fbefc14b0147aa2231db085a72f526ac51b681b7c26
 DIST tree-sitter-0.20.8.tar.gz 2941223 BLAKE2B 
158820a88b20cc96252f8bfdd257e910ca4dc79174bb45ee52623c923b8a634714c65be8f9534411865fb03aaf84bf16bf659567a74cd58141ea687fa89601e5
 SHA512 
30fa3f97e1a24d469a7565dc91db629accdfbe081b43d951e9751059a0c7f763d727e95efce5806cd9b1689650773bee1106f4f91ba001da57df3b0d83dda967
 DIST tree-sitter-0.20.9.tar.gz 3041304 BLAKE2B 
a6cf6606f75918eeab7dab0d2758cdba0922b5677cd4c8755982c077ee0a734090c8a87f7dd1fd56525b5864f94f5f19c3fd04e43773877e13968855f976d0c0
 SHA512 
6882c0edf87232d42aa40936c6a2da46e6dbb89d28b3def67e9c5231af19a517fbe22cf0ce9aa25a8ad4252cef6cf4aa94a00f8d0503a8bdd99ce0edd99a392a

diff --git a/dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild 
b/dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild
deleted file mode 100644
index a0ea2efaedea..
--- a/dev-libs/tree-sitter/tree-sitter-0.20.6.ebuild
+++ /dev/null
@@ -1,43 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit optfeature toolchain-funcs
-
-DESCRIPTION="Tree-sitter is a parser generator tool and an incremental parsing 
library"
-HOMEPAGE="https://github.com/tree-sitter/tree-sitter;
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/${PN}/${PN};
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-macos"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-PATCHES=( "${FILESDIR}/${PN}-No-static-libs-gentoo.patch" )
-
-src_prepare() {
-   default
-   tc-export CC
-}
-
-src_compile() {
-   emake \
-   PREFIX="${EPREFIX}/usr" \
-   LIBDIR="${EPREFIX}/usr/$(get_libdir)"
-}
-
-src_install() {
-   emake DESTDIR="${D}" \
- PREFIX="${EPREFIX}/usr" \
- LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
- install
-}
-
-pkg_postinst() {
-   optfeature "building and testing grammars" dev-util/tree-sitter-cli
-}

diff --git a/dev-libs/tree-sitter/tree-sitter-0.20.7.ebuild 
b/dev-libs/tree-sitter/tree-sitter-0.20.7.ebuild
deleted file mode 100644
index f767d8cc3335..
--- a/dev-libs/tree-sitter/tree-sitter-0.20.7.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-inherit optfeature toolchain-funcs
-
-DESCRIPTION="Tree-sitter is a parser generator tool and an incremental parsing 
library"
-HOMEPAGE="https://github.com/tree-sitter/tree-sitter;
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/${PN}/${PN};
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/v${PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-macos"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-
-PATCHES=( "${FILESDIR}/${PN}-No-static-libs-gentoo.patch" )
-
-# see Makefile:1
-QA_PKGCONFIG_VERSION="0.6.3"
-
-src_prepare() {
-   default
-   tc-export CC
-}
-
-src_compile() {
-   emake \
-   PREFIX="${EPREFIX}/usr" \
-   LIBDIR="${EPREFIX}/usr/$(get_libdir)"
-}
-
-src_install() {
-   emake DESTDIR="${D}" \
- PREFIX="${EPREFIX}/usr" \
- LIBDIR="${EPREFIX}/usr/$(get_libdir)" \
- install
-}
-
-pkg_postinst() {
-   optfeature "building and testing grammars" 

[gentoo-commits] repo/gentoo:master commit in: dev-util/tree-sitter-cli/

2024-01-28 Thread Matthew Smith
commit: b80d55f33734466547ed65390e5865e7eb664a86
Author: Matthew Smith  gentoo  org>
AuthorDate: Sun Jan 28 10:29:43 2024 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Sun Jan 28 10:32:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b80d55f3

dev-util/tree-sitter-cli: add 0.20.9

Closes: https://bugs.gentoo.org/923105
Signed-off-by: Matthew Smith  gentoo.org>

 dev-util/tree-sitter-cli/Manifest  | 121 +++
 .../tree-sitter-cli/tree-sitter-cli-0.20.9.ebuild  | 221 +
 2 files changed, 342 insertions(+)

diff --git a/dev-util/tree-sitter-cli/Manifest 
b/dev-util/tree-sitter-cli/Manifest
index bb7dc14bddc6..7d18ca422fdc 100644
--- a/dev-util/tree-sitter-cli/Manifest
+++ b/dev-util/tree-sitter-cli/Manifest
@@ -1,9 +1,13 @@
+DIST ahash-0.8.6.crate 42780 BLAKE2B 
ce2fb8201a484715d42bbd9ca1bfe2d5f541d90e3619ebd437c34a018920b679d5a11f9e96be48fbdabd2e98a379c0395d118616f21eb9004724d8fcb04b2b2b
 SHA512 
46428b27e96be1f30058b9383a94988beeb5064dfb4df04d6959b451d0c77ef69fc51f07fdf9511ab9728295eb6beee7783c31a2297f9e473fc537883e722b73
 DIST aho-corasick-0.7.15.crate 113071 BLAKE2B 
a22743be74f873b9545648db6a994250e3e39b92ac99601580e3b02194d205e921bff0b1952a4cca3399a3a7828555a1abfb0c1466f3930811c6b95c1a07ec5e
 SHA512 
e67816efa7305937a7cbbb0079b91b8afa3fdab52cfb8eeddeee156f18bbeed26f941cd4cb18ab2bdc1da5a9ff1dcbe9d2090deec68c00287bd99ace18ee8b24
 DIST aho-corasick-0.7.20.crate 111440 BLAKE2B 
3f5d54fea2793ce1c2c4d5b3049b910f45a5721e7538cb2557df63dc3069ab3f6b66aceb5e9a48f21c43ae29778fd045428ea103b2a6de81659e605e30e64ca6
 SHA512 
ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5
+DIST aho-corasick-1.1.2.crate 183136 BLAKE2B 
2d4306d8968061b9f7e50190be6a92b3f668169ba1b9f9691de08a57c96185f7a4288d20c64cb8488a260eb18d3ed4b0e8358b0cca47aa44759b2e448049cbaa
 SHA512 
61ef5092673ab5a60bec4e92df28a91fe6171ba59d5829ffe41fc55aff3bfb755533a4ad53dc7bf827a0b789fcce593b17e69d1fcfb3694f06ed3b1bd535d40c
 DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
 DIST anyhow-1.0.40.crate 34534 BLAKE2B 
79a3731153f8e3ace906b9a360521147fd055f7401a99ea2373501ade7e49ecdb280dd59b6a3b9b2f88e90857302e71f772c767e62cb702e32c8343fd4b0f741
 SHA512 
5efc7347a7fa72abce9a8b3b76649abb00d73c16c5125aa4b6faaa7040eb5138d7d9470b66c186825c9651272f5c359578503d0866ce7242ea7ca9dc05087165
 DIST anyhow-1.0.70.crate 43803 BLAKE2B 
574da0e447592c12051deef171850b00ac2347dd336f71915dd21f45cc03439fbcdbaffe261097d53cc11fa0db75b1e3b21ba667f26c08db7125b1c6264973de
 SHA512 
6fd1338e4cbe915cb01fcc5e05e7e0c051868701eeb27f03577a7cfdd59057493922b36e2308f7050608a851112d4d24cff2826456160ac8930fe961640e809b
+DIST anyhow-1.0.75.crate 43901 BLAKE2B 
6353557d7ec2cbfdd001c039fad62c95fea9e02b113149f726fd14bb36b31e637e8609dd5ee20a900e9c11bb783d9958d664b31ba7c467382fa7f51d477ad3aa
 SHA512 
190d6be8ede0af9808210db53e4dc31ce69b126a26b0357220c4705a11e83cab2c2c09c59964a35794f3c434f717eaa6bb669e9e8f16012535c14246b17e8d40
+DIST arbitrary-1.3.1.crate 31941 BLAKE2B 
757356b063ee84ad08e3b38107aa2c70f425e78892f12f499ee379f46fd6c6df08095b170205534274f1a749a175a682eff572971444c5c4819c9f484aa5a994
 SHA512 
6feed6baa69a24c4970e48a1d1de77b96f3cd62f555ff7e049b06bcbd1c279d35942913f14fd45a2f0ec9585bce57bdcfc760b3ad5731da2e118fc4d426d2f5c
 DIST arrayref-0.3.6.crate 10035 BLAKE2B 
88292fa4b3ad4fccd03772c2f0eca04cc13373fe094358bac57d7523c256d89f3087603e5bcb2a0b15d8b2ecd48e904a822b2cb800276a9c47ad6c6b660d9d34
 SHA512 
368341d00706c1250ff081b0d99c36c9af694a62ff4f4d8c837234340295771ca49c5439b24b6e1a4f2c3c5821764e98881dcb22d793f83de632fd5cb457671f
 DIST arrayvec-0.5.2.crate 27838 BLAKE2B 
51e2eacae0ef148f3f52d21ae00794e540e7ce4c013fb496dd1347ad91ffbbca199381fffbb064225f829216f6c5e915edfa64833f91fabdd13c3f011d86491f
 SHA512 
1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004
 DIST ascii-1.0.0.crate 31727 BLAKE2B 
9733e1aa9d41e3b170ac07e63708e7be0f15f9eda73ba371cd239d9c46e881d1e46c2e80b5c5440bf1a1f0b8f6e66199241a455db9a3a535672881bca4e0d13a
 SHA512 
5696e14883d4946c4acbace84ee4c65af527a6b1725a7d16ab5d5b8cc671ff211324f15f3fb0755cb1c9dcd598a054b32cd51c69ad06391e7e147880f5c97a1b
@@ -12,96 +16,152 @@ DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856
 DIST autocfg-1.0.1.crate 12908 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: dev-util/tree-sitter-cli/

2024-01-28 Thread Matthew Smith
commit: 9fb0d8340a43dd5e5e8951c756ffefff2c040c0c
Author: Matthew Smith  gentoo  org>
AuthorDate: Sun Jan 28 10:30:54 2024 +
Commit: Matthew Smith  gentoo  org>
CommitDate: Sun Jan 28 10:32:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fb0d834

dev-util/tree-sitter-cli: drop 0.20.6, 0.20.7

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

 dev-util/tree-sitter-cli/Manifest  |  92 -
 .../tree-sitter-cli/tree-sitter-cli-0.20.6.ebuild  | 144 -
 .../tree-sitter-cli/tree-sitter-cli-0.20.7.ebuild  | 144 -
 3 files changed, 380 deletions(-)

diff --git a/dev-util/tree-sitter-cli/Manifest 
b/dev-util/tree-sitter-cli/Manifest
index 7d18ca422fdc..521f4d027ddb 100644
--- a/dev-util/tree-sitter-cli/Manifest
+++ b/dev-util/tree-sitter-cli/Manifest
@@ -1,65 +1,43 @@
 DIST ahash-0.8.6.crate 42780 BLAKE2B 
ce2fb8201a484715d42bbd9ca1bfe2d5f541d90e3619ebd437c34a018920b679d5a11f9e96be48fbdabd2e98a379c0395d118616f21eb9004724d8fcb04b2b2b
 SHA512 
46428b27e96be1f30058b9383a94988beeb5064dfb4df04d6959b451d0c77ef69fc51f07fdf9511ab9728295eb6beee7783c31a2297f9e473fc537883e722b73
-DIST aho-corasick-0.7.15.crate 113071 BLAKE2B 
a22743be74f873b9545648db6a994250e3e39b92ac99601580e3b02194d205e921bff0b1952a4cca3399a3a7828555a1abfb0c1466f3930811c6b95c1a07ec5e
 SHA512 
e67816efa7305937a7cbbb0079b91b8afa3fdab52cfb8eeddeee156f18bbeed26f941cd4cb18ab2bdc1da5a9ff1dcbe9d2090deec68c00287bd99ace18ee8b24
 DIST aho-corasick-0.7.20.crate 111440 BLAKE2B 
3f5d54fea2793ce1c2c4d5b3049b910f45a5721e7538cb2557df63dc3069ab3f6b66aceb5e9a48f21c43ae29778fd045428ea103b2a6de81659e605e30e64ca6
 SHA512 
ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5
 DIST aho-corasick-1.1.2.crate 183136 BLAKE2B 
2d4306d8968061b9f7e50190be6a92b3f668169ba1b9f9691de08a57c96185f7a4288d20c64cb8488a260eb18d3ed4b0e8358b0cca47aa44759b2e448049cbaa
 SHA512 
61ef5092673ab5a60bec4e92df28a91fe6171ba59d5829ffe41fc55aff3bfb755533a4ad53dc7bf827a0b789fcce593b17e69d1fcfb3694f06ed3b1bd535d40c
-DIST ansi_term-0.11.0.crate 17087 BLAKE2B 
9bd35c045a01ce4c6c4a5db1b4f15e9412bb97426eec19d4421dffbec633de8d13452c13c1dc1b30998690b78d7ed38311aca700087f13a81f66bd1d5d7300c4
 SHA512 
a637466a380748f939b3af090b8c0333f35581925bc03f4dda9b3f95d338836403cf5487ae3af9ff68f8245a837f8ab061aabe57a126a6a2c20f2e972c77d1fa
 DIST ansi_term-0.12.1.crate 24838 BLAKE2B 
f636772c34e2d68cda7b8d3b2b86abda074585a62bd2654812ce92384244655a9197fa66e6939e19a674c0148ca605313d83de262bb18c2339a8a4eb4438a791
 SHA512 
b840e28b3e7700689a69a39659b1e066560078dd4a58326b91a028915819e7af883399ee53e920db68fd974c58d35bb1ddf8d427af5937d5f696f57c4376b671
-DIST anyhow-1.0.40.crate 34534 BLAKE2B 
79a3731153f8e3ace906b9a360521147fd055f7401a99ea2373501ade7e49ecdb280dd59b6a3b9b2f88e90857302e71f772c767e62cb702e32c8343fd4b0f741
 SHA512 
5efc7347a7fa72abce9a8b3b76649abb00d73c16c5125aa4b6faaa7040eb5138d7d9470b66c186825c9651272f5c359578503d0866ce7242ea7ca9dc05087165
 DIST anyhow-1.0.70.crate 43803 BLAKE2B 
574da0e447592c12051deef171850b00ac2347dd336f71915dd21f45cc03439fbcdbaffe261097d53cc11fa0db75b1e3b21ba667f26c08db7125b1c6264973de
 SHA512 
6fd1338e4cbe915cb01fcc5e05e7e0c051868701eeb27f03577a7cfdd59057493922b36e2308f7050608a851112d4d24cff2826456160ac8930fe961640e809b
 DIST anyhow-1.0.75.crate 43901 BLAKE2B 
6353557d7ec2cbfdd001c039fad62c95fea9e02b113149f726fd14bb36b31e637e8609dd5ee20a900e9c11bb783d9958d664b31ba7c467382fa7f51d477ad3aa
 SHA512 
190d6be8ede0af9808210db53e4dc31ce69b126a26b0357220c4705a11e83cab2c2c09c59964a35794f3c434f717eaa6bb669e9e8f16012535c14246b17e8d40
 DIST arbitrary-1.3.1.crate 31941 BLAKE2B 
757356b063ee84ad08e3b38107aa2c70f425e78892f12f499ee379f46fd6c6df08095b170205534274f1a749a175a682eff572971444c5c4819c9f484aa5a994
 SHA512 
6feed6baa69a24c4970e48a1d1de77b96f3cd62f555ff7e049b06bcbd1c279d35942913f14fd45a2f0ec9585bce57bdcfc760b3ad5731da2e118fc4d426d2f5c
-DIST arrayref-0.3.6.crate 10035 BLAKE2B 
88292fa4b3ad4fccd03772c2f0eca04cc13373fe094358bac57d7523c256d89f3087603e5bcb2a0b15d8b2ecd48e904a822b2cb800276a9c47ad6c6b660d9d34
 SHA512 
368341d00706c1250ff081b0d99c36c9af694a62ff4f4d8c837234340295771ca49c5439b24b6e1a4f2c3c5821764e98881dcb22d793f83de632fd5cb457671f
-DIST arrayvec-0.5.2.crate 27838 BLAKE2B 
51e2eacae0ef148f3f52d21ae00794e540e7ce4c013fb496dd1347ad91ffbbca199381fffbb064225f829216f6c5e915edfa64833f91fabdd13c3f011d86491f
 SHA512 
1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004
-DIST ascii-1.0.0.crate 31727 BLAKE2B 
9733e1aa9d41e3b170ac07e63708e7be0f15f9eda73ba371cd239d9c46e881d1e46c2e80b5c5440bf1a1f0b8f6e66199241a455db9a3a535672881bca4e0d13a
 SHA512 
5696e14883d4946c4acbace84ee4c65af527a6b1725a7d16ab5d5b8cc671ff211324f15f3fb0755cb1c9dcd598a054b32cd51c69ad06391e7e147880f5c97a1b
 DIST ascii-1.1.0.crate 36075 BLAKE2B 

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

2024-01-28 Thread Sebastian Pipping
commit: b21ac1359805a6bbc1302d3a1d05aa782b985277
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Sun Jan 28 12:29:37 2024 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Sun Jan 28 12:29:37 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21ac135

app-admin/ttyplot: 1.6.2 (with musl libc fixes)

Closes: https://bugs.gentoo.org/922285
Signed-off-by: Sebastian Pipping  gentoo.org>

 app-admin/ttyplot/Manifest |  1 +
 app-admin/ttyplot/ttyplot-1.6.2.ebuild | 25 +
 2 files changed, 26 insertions(+)

diff --git a/app-admin/ttyplot/Manifest b/app-admin/ttyplot/Manifest
index 187c41f1b253..108e1ef82876 100644
--- a/app-admin/ttyplot/Manifest
+++ b/app-admin/ttyplot/Manifest
@@ -1,3 +1,4 @@
 DIST ttyplot-1.5.1.gh.tar.gz 43629 BLAKE2B 
98c46c27587a6ed98f7ed146b402dcbb6f5835f2f34780ccd706dc56b674dec3792dfb8bf84c8d260c040952ef0431341df09c16d032f32d4621c5f3971857d7
 SHA512 
3eb255375366bc3a773364388dc709f4f5b9961e1c99404dfd192503b20a8eb064f5089811b8c894a8214f84d24e14d040adb0b34712915311eb28972586bf0b
 DIST ttyplot-1.5.2.gh.tar.gz 44023 BLAKE2B 
a8ebf0529f1d3e65ec5887d0fc45c51840ddb26ed982ea5bc2e47d66c03878a642576c7b3052c717f296af9b3fe0fca15080cbf252cb274238e6b664372f219e
 SHA512 
ffdeba5d1ad4a0abbb04d76d914a2f209471ac6f601447c4693de594b0cdb1c162e42b49bb1bf0bb50e2d9b0d9b0452fb9f3d8949c5b9143cc9b6faae50ad28f
 DIST ttyplot-1.6.1.gh.tar.gz 53746 BLAKE2B 
f78c5b7ef53e0bd1921138db965edcb9aff95d359263f1343ad2f33b075ff49ef0147354a7467de8cc5cc3a1f2508f9cf81fcbc6195c600d1fd07d0760de9b42
 SHA512 
cb21b28c86e1364536bdd417a99fa952a8c46623dbca5e6da31bf34763415fa7fcf0ecd6d02a8fc355a483ba64883412d4b448c2cdc1e397b81195c9fb1beffa
+DIST ttyplot-1.6.2.gh.tar.gz 56277 BLAKE2B 
c7a818a69774fc7c5f6b498e5bf2f9c3ec644dc23d54daf59adaf13962f614c23918ca1d84614e27c60e75d1b98b3eb3c548dc14b59b539acceb3327dafabe0c
 SHA512 
7ede447667a0a8f4b164a2a409e1264c36c95c22eeeda348c894678cb8d7209e742bb90f48a8a5260dd457ae7ff0a090a7d8b7eb25b20e20ada575e00cc4eb0b

diff --git a/app-admin/ttyplot/ttyplot-1.6.2.ebuild 
b/app-admin/ttyplot/ttyplot-1.6.2.ebuild
new file mode 100644
index ..1d6a43c8b979
--- /dev/null
+++ b/app-admin/ttyplot/ttyplot-1.6.2.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+DESCRIPTION="Realtime plotting utility with data input from stdin"
+HOMEPAGE="https://github.com/tenox7/ttyplot;
+SRC_URI="https://github.com/tenox7/ttyplot/archive/refs/tags/${PV}.tar.gz -> 
${P}.gh.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="virtual/pkgconfig"
+DEPEND="${RDEPEND}
+   sys-libs/ncurses[tinfo]"
+
+src_install() {
+   local args=(
+   PREFIX=/usr
+   MANPREFIX=/usr/share/man
+   DESTDIR="${D}"
+   )
+   emake "${args[@]}" install
+}



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

2024-01-28 Thread Andreas K. Hüttel
commit: 6e93401d19819f19f02ee663570f7dacf2d0f818
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jan 28 17:21:19 2024 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jan 28 17:23:34 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e93401d

profiles.desc: Add s390 23.0 profiles

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

 profiles/profiles.desc | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/profiles.desc b/profiles/profiles.desc
index d50e77062c2c..1f64033b28a1 100644
--- a/profiles/profiles.desc
+++ b/profiles/profiles.desc
@@ -472,6 +472,12 @@ s390   default/linux/s390/17.0/systemd 
stable
 s390   default/linux/s390/17.0/systemd/merged-usr  
stable
 s390   default/linux/s390/17.0/s390x/systemd   
exp
 s390   default/linux/s390/17.0/s390x/systemd/merged-usr
exp
+s390   default/linux/s390/23.0 
exp
+s390   default/linux/s390/23.0/systemd 
exp
+s390   default/linux/s390/23.0/split-usr   
exp
+s390   default/linux/s390/23.0/split-usr/s390x 
exp
+s390   default/linux/s390/23.0/s390x   
exp
+s390   default/linux/s390/23.0/s390x/systemd   
exp
 
 # SPARC Profiles
 # @MAINTAINER: sp...@gentoo.org



[gentoo-commits] repo/gentoo:master commit in: mail-mta/exim/, mail-mta/exim/files/

2024-01-28 Thread Fabian Groffen
commit: 662e4585eef68252845c897c989764350141
Author: Fabian Groffen  gentoo  org>
AuthorDate: Sun Jan 28 18:18:46 2024 +
Commit: Fabian Groffen  gentoo  org>
CommitDate: Sun Jan 28 18:20:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=662e4585

mail-mta/exim-4.97.1-r2: update upstream patches for pcre2 memory usage

Bug: https://bugs.gentoo.org/922780
Signed-off-by: Fabian Groffen  gentoo.org>

 ...exim-4.97.1-r1.ebuild => exim-4.97.1-r2.ebuild} |   0
 .../files/exim-4.97.1-memory-usage-bug-3047.patch  | 210 +++--
 2 files changed, 190 insertions(+), 20 deletions(-)

diff --git a/mail-mta/exim/exim-4.97.1-r1.ebuild 
b/mail-mta/exim/exim-4.97.1-r2.ebuild
similarity index 100%
rename from mail-mta/exim/exim-4.97.1-r1.ebuild
rename to mail-mta/exim/exim-4.97.1-r2.ebuild

diff --git a/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch 
b/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch
index f141d08bb7b4..75e5d1a42781 100644
--- a/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch
+++ b/mail-mta/exim/files/exim-4.97.1-memory-usage-bug-3047.patch
@@ -1,36 +1,60 @@
-https://bugs.exim.org/show_bug.cgi?id=3047
-https://bugs.gentoo.org/922780
+From b4e7527561f1c68b821d5cf25efe29ae63d1d434 Mon Sep 17 00:00:00 2001
+From: Jeremy Harris 
+Date: Thu, 25 Jan 2024 17:48:43 +
+Subject: [PATCH] Appendfile: release regex-match store every thousand files. 
+ Bug 3047
 
-diff --git a/src/src/transports/appendfile.c b/src/src/transports/appendfile.c
-index ec41ca035..91b353079 100644
 a/src/transports/appendfile.c
-+++ b/src/transports/appendfile.c
-@@ -153,6 +153,10 @@ static const char *mailbox_formats[] = {
-   (!ob->quota_warn_threshold_is_percent || ob->quota_value > 0))
+From 35aacb69f5c839a4b77158464e401d86eb422ed6 Mon Sep 17 00:00:00 2001
+From: Jeremy Harris 
+Date: Fri, 26 Jan 2024 21:58:59 +
+Subject: [PATCH] ACL: in "regex" condition, release store every thousand
+ lines.  Bug 3047
+
+
+diff --git a/src/src/exim.c b/src/src/exim.c
+--- a/src/exim.c
 b/src/exim.c
+@@ -49,6 +49,8 @@ optimize out the tail recursion and so not make them too 
expensive. */
+ static void *
+ function_store_malloc(PCRE2_SIZE size, void * tag)
+ {
++if (size > INT_MAX)
++  log_write(0, LOG_MAIN|LOG_PANIC_DIE, "excessive memory alloc request");
+ return store_malloc((int)size);
+ }
  
+@@ -63,12 +65,15 @@ if (block) store_free(block);
+ static void *
+ function_store_get(PCRE2_SIZE size, void * tag)
+ {
++if (size > INT_MAX)
++  log_write(0, LOG_MAIN|LOG_PANIC_DIE, "excessive memory alloc request");
+ return store_get((int)size, GET_UNTAINTED);   /* loses track of taint */
+ }
+ 
+ static void
+ function_store_nullfree(void * block, void * tag)
+ {
++/* We cannot free memory allocated using store_get() */
+ }
  
-+/* Free memory allocated by PCRE2 every so often, because a recent version
-+is now using 20kB for every match call */
-+
-+#define RESET_STORE_FILECNT   1000
  
- /*
- *  Setup entry point *
+diff --git a/src/src/transports/appendfile.c b/src/src/transports/appendfile.c
+--- a/src/transports/appendfile.c
 b/src/transports/appendfile.c
 @@ -661,13 +665,14 @@ Returns:the sum of the sizes of the stattable 
files
  off_t
  check_dir_size(const uschar * dirname, int * countptr, const pcre2_code * re)
  {
--DIR *dir;
-+DIR * dir;
+ DIR *dir;
  off_t sum = 0;
 -int count = *countptr;
-+int count = *countptr, lcount = RESET_STORE_FILECNT;
++int count = *countptr, lcount = REGEX_LOOPCOUNT_STORE_RESET;
 +rmark reset_point = store_mark();
  
  if (!(dir = exim_opendir(dirname))) return 0;
  
--for (struct dirent *ent; ent = readdir(dir); )
-+for (struct dirent * ent; ent = readdir(dir); )
+ for (struct dirent *ent; ent = readdir(dir); )
{
uschar * path, * name = US ent->d_name;
struct stat statbuf;
@@ -41,7 +65,7 @@ index ec41ca035..91b353079 100644
 +  if (--lcount == 0)
 +{
 +store_reset(reset_point); reset_point = store_mark();
-+lcount = RESET_STORE_FILECNT;
++lcount = REGEX_LOOPCOUNT_STORE_RESET;
 +}
  
/* If there's a regex, try to find the size using it */
@@ -54,3 +78,149 @@ index ec41ca035..91b353079 100644
  *countptr = count;
  return sum;
  }
+diff --git a/src/src/macros.h b/src/src/macros.h
+--- a/src/macros.h
 b/src/macros.h
+@@ -1185,4 +1185,9 @@ typedef enum {
+   sw_mrc_tx_fail, /* transmit failed */
+ } sw_mrc_t;
+ 
++/* Recent versions of PCRE2 are allocating 20kB per match, rather than the 
previous 112 B.
++When doing en extended loop of matching, release store periodically. */
++
++#define   REGEX_LOOPCOUNT_STORE_RESET 1000
++
+ /* End of macros.h */
+diff --git a/src/src/regex.c b/src/src/regex.c
+--- a/src/regex.c
 b/src/regex.c
+@@ -31,12 +31,11 @@ extern uschar *mime_current_boundary;
+ 
+ 
+ static pcre_list *
+-compile(const uschar * list, BOOL 

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

2024-01-28 Thread Eray Aslan
commit: 573a731923d1935f68e3f4ac46702b5cece88475
Author: Eray Aslan  gentoo  org>
AuthorDate: Sun Jan 28 18:32:59 2024 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Sun Jan 28 18:32:59 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=573a7319

sys-auth/pam_krb5: QA: remove empty global assignment

Signed-off-by: Eray Aslan  gentoo.org>

 sys-auth/pam_krb5/pam_krb5-4.11.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-auth/pam_krb5/pam_krb5-4.11.ebuild 
b/sys-auth/pam_krb5/pam_krb5-4.11.ebuild
index 9b8f4a977e1a..cdaa837b4677 100644
--- a/sys-auth/pam_krb5/pam_krb5-4.11.ebuild
+++ b/sys-auth/pam_krb5/pam_krb5-4.11.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ 
SRC_URI="https://archives.eyrie.org/software/kerberos/${P/_/-}.tar.xz;
 LICENSE="|| ( BSD-2 GPL-2 )"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86"
-IUSE=""
+
 # tests fail without a /etc/krb5.conf
 RESTRICT="test"
 



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

2024-01-28 Thread Sam James
commit: 3e0c3df2ef576919d760202bc3a936fbfbbe9aa7
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 18:57:04 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 18:57:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e0c3df2

dev-libs/libverto: Stabilize 0.3.2 ppc, #923167

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

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

diff --git a/dev-libs/libverto/libverto-0.3.2.ebuild 
b/dev-libs/libverto/libverto-0.3.2.ebuild
index 063991ea2032..79f2b0966ac9 100644
--- a/dev-libs/libverto/libverto-0.3.2.ebuild
+++ b/dev-libs/libverto/libverto-0.3.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/latchset/libverto/releases/download/${PV}/${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86"
 IUSE="glib +libev libevent +threads"
 REQUIRED_USE="|| ( glib libev libevent )"
 



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

2024-01-28 Thread Sam James
commit: 280f674a90ff0e4d0f19a5d5f885361928c9efe6
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 18:56:57 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 18:56:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=280f674a

media-libs/musicbrainz: Stabilize 5.1.0-r1 arm, #923127

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

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

diff --git a/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild 
b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
index 1ba3fa5e1879..b7411be960a2 100644
--- a/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
+++ b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/lib${P}"
 
 LICENSE="LGPL-2.1"
 SLOT="5/1" # soname of libmusicbrainz5.so
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="examples test"
 
 RESTRICT="!test? ( test )"



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

2024-01-28 Thread Sam James
commit: 410f1cfa9429e4c62b75edd136afef1ff5fdeab0
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 18:56:56 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 18:56:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=410f1cfa

media-libs/musicbrainz: Stabilize 5.1.0-r1 ppc, #923127

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

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

diff --git a/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild 
b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
index 3c6524070df6..1ba3fa5e1879 100644
--- a/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
+++ b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/lib${P}"
 
 LICENSE="LGPL-2.1"
 SLOT="5/1" # soname of libmusicbrainz5.so
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc 
~x86 ~amd64-linux ~x86-linux"
 IUSE="examples test"
 
 RESTRICT="!test? ( test )"



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

2024-01-28 Thread Sam James
commit: 847f6eae8ef788aefbef7a9b6f26b2a752dcca8d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 18:57:02 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 18:57:02 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=847f6eae

dev-db/lmdb: Stabilize 0.9.31 ppc, #923159

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

 dev-db/lmdb/lmdb-0.9.31.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/lmdb/lmdb-0.9.31.ebuild b/dev-db/lmdb/lmdb-0.9.31.ebuild
index 6f5392881284..75a90bb93cae 100644
--- a/dev-db/lmdb/lmdb-0.9.31.ebuild
+++ b/dev-db/lmdb/lmdb-0.9.31.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://git.openldap.org/openldap/openldap/-/archive/${MY_P}/openldap-$
 
 LICENSE="OPENLDAP"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 IUSE="static-libs"
 
 S="${WORKDIR}/openldap-${MY_P}/libraries/liblmdb"



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

2024-01-28 Thread Sam James
commit: 3f6205982f2e3f6fcfde59867d39fe5bd339744f
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 20:01:48 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 20:01:48 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f620598

dev-libs/xmlsec: Stabilize 1.3.3-r1 amd64, #923120

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

 dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild 
b/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
index 1db707dd4d7a..f4a0c18792b6 100644
--- a/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
+++ b/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}1-${PV}"
 LICENSE="MIT"
 # Upstream consider major version bumps to be changes in either X or Y in X.Y.Z
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="doc gcrypt gnutls http nss +openssl static-libs test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="



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

2024-01-28 Thread Sam James
commit: 3e2cd4d08f6e541c70b244ab482808b4c151266b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 20:01:50 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 20:01:50 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e2cd4d0

media-libs/musicbrainz: Stabilize 5.1.0-r1 x86, #923127

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

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

diff --git a/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild 
b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
index eee9ce0b835e..8767ab4bb185 100644
--- a/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
+++ b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/lib${P}"
 
 LICENSE="LGPL-2.1"
 SLOT="5/1" # soname of libmusicbrainz5.so
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc 
~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux"
 IUSE="examples test"
 
 RESTRICT="!test? ( test )"



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

2024-01-28 Thread Sam James
commit: 5edd5cbec3a72b1e4026a18ba3435cce0a8c2422
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 20:01:49 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 20:01:49 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5edd5cbe

gnome-extra/libgsf: Stabilize 1.14.51 x86, #923121

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

 gnome-extra/libgsf/libgsf-1.14.51.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgsf/libgsf-1.14.51.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
index 3d8e125efc23..02758f857356 100644
--- a/gnome-extra/libgsf/libgsf-1.14.51.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf;
 
 LICENSE="LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
 IUSE="bzip2 gtk +introspection test"
 RESTRICT="!test? ( test )"
 



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

2024-01-28 Thread Arthur Zamarin
commit: 351da57cc6918b9648af7e1af607368e9b0e5c08
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Sun Jan 28 20:02:35 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 28 20:02:35 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=351da57c

app-misc/mime-types: Stabilize 2.1.54 ALLARCHES, #923168

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

 app-misc/mime-types/mime-types-2.1.54.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-misc/mime-types/mime-types-2.1.54.ebuild 
b/app-misc/mime-types/mime-types-2.1.54.ebuild
index 7a8330a53554..0edaa98636d4 100644
--- a/app-misc/mime-types/mime-types-2.1.54.ebuild
+++ b/app-misc/mime-types/mime-types-2.1.54.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ 
SRC_URI="https://pagure.io/mailcap/archive/r${MY_PV}/mailcap-r${MY_PV}.tar.gz;
 
 LICENSE="public-domain MIT"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 IUSE="nginx"
 
 S="${WORKDIR}/mailcap-r${MY_PV}"



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

2024-01-28 Thread Arthur Zamarin
commit: f6ef0fe2b60d4c492dc83818824bd06c3cde0a30
Author: Takuya Wakazono  gmail  com>
AuthorDate: Fri Jan 26 07:56:24 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 28 20:13:08 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6ef0fe2

app-crypt/rpm-sequoia: drop 1.5.0

Signed-off-by: Takuya Wakazono  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35025
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-crypt/rpm-sequoia/Manifest | 107 -
 app-crypt/rpm-sequoia/rpm-sequoia-1.5.0.ebuild | 294 -
 2 files changed, 401 deletions(-)

diff --git a/app-crypt/rpm-sequoia/Manifest b/app-crypt/rpm-sequoia/Manifest
index 7272a9a23e31..3d88b85c7402 100644
--- a/app-crypt/rpm-sequoia/Manifest
+++ b/app-crypt/rpm-sequoia/Manifest
@@ -1,43 +1,30 @@
 DIST aead-0.5.2.crate 15509 BLAKE2B 
0214f3e8ee85a7e18c7d20f9a3fcbdbb9e5af6fdfdcb427e915279b505556dbd2df6d09d5c90561417c56796236a56ab24b2b11389745bc03a0a6da45c0e8636
 SHA512 
61926a615618e64efd0e9342d729a89f80d6e092dda50e018252a06147e2ca0dc2a989136416f57ae02019695757dfa3d3f3cf3799f138e440662744ecab4a44
 DIST aes-0.8.3.crate 124679 BLAKE2B 
7a352a9c5452ed91b32ed82a7450013ba0f0db4d990d37bfa78782e9c031d2a33d0b7680625881566ecc4b7048a44854759163d2e5c962783fffed1ca7d38a78
 SHA512 
89aa691fb6060c37ae8bdc2db8c7ba87a7c5201a776c247bb499fca0fa2b0c062601144af49eb781342a97760a124cc24dbfc38ccecd16493270f47d96282cc0
 DIST aes-gcm-0.10.3.crate 148991 BLAKE2B 
e1376b741386577277a8cb9535c1ad3e15ea383c0f324bc5cedff09a76b11f2c9e29226535688f9431e904bf2800b8e140c4b1cab333e572208eefd19ca897f1
 SHA512 
f9aec1e2609262c30921bf83cdd82117d147905d4ca311f9fef4b9f1734d3a57893ba2586f0ccfd39cf9264d347ba2c2d2c52b4726495eda8fec7fbec42d6db3
-DIST aho-corasick-1.0.4.crate 171175 BLAKE2B 
b3d450533f0799a18fa6ceba41ce841573a3b9fe9bc66745aba9b5a1ef4d86b107aa68c049bd30df7bc86229c71264142e40da8e1d145e776017269a01aed86e
 SHA512 
7cb8feb3289a508b1345b3cc04b59f2f730b80f561b17c7605ce23bf92780b5b3714ec84f5e3c5f4ba0c3abd47ac44fd0064a8bf4c5a7d00bd580774c6a3aee8
 DIST aho-corasick-1.1.2.crate 183136 BLAKE2B 
2d4306d8968061b9f7e50190be6a92b3f668169ba1b9f9691de08a57c96185f7a4288d20c64cb8488a260eb18d3ed4b0e8358b0cca47aa44759b2e448049cbaa
 SHA512 
61ef5092673ab5a60bec4e92df28a91fe6171ba59d5829ffe41fc55aff3bfb755533a4ad53dc7bf827a0b789fcce593b17e69d1fcfb3694f06ed3b1bd535d40c
 DIST android-tzdata-0.1.1.crate 7674 BLAKE2B 
4385a4875aadaacd5284a9ca7d1bf8a7bf14bf8925d1563d52fbabacc3af2c1ea08bfcf77106f3648f4fa052ac295158a21e7a0131d31eb9aecd99ea4ba20055
 SHA512 
4294024c21ddd0090c42c8eedf708d40d917f55ad5a4cb7aa3e64cfb6551b6df60f2e36bc08620c1d2fc8c7ba7207411518ee5c8635f60ed8ad9efdd458a2077
 DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 
86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e
 SHA512 
b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191
-DIST anstyle-1.0.2.crate 13983 BLAKE2B 
4274b101d1cab2b62f9bb7637dab35f4b16e8c08a080355a2ea53e2b7b353ff230aa77fb3a244e0d6ff0dcd27abe5895eb306c630aa0822d0c608f041d4abfea
 SHA512 
09220abfc844192ca698589897845752e02666b4ecd6529af4cde9f260ef36694e6e631c7503fc0e438ac72c88c419043b78399385cb248e789e86404503935a
 DIST anstyle-1.0.4.crate 13998 BLAKE2B 
fb501700855709e53438461c2f4b48d869613e7bb3bb700db8bd0d95082876d3782dc2cfe3ce110bb4a206994de56afe0e90fe89f9ccd07c60fe1c652123ba59
 SHA512 
671c6f57106198bcfc2f9000aacba98fabacfadfce2329dfe8d0e0a2af9404da483d7a844ca2b08e1fc0249371f574c13d0082c9f7a4ed90ff581308257a52d3
-DIST anyhow-1.0.75.crate 43901 BLAKE2B 
6353557d7ec2cbfdd001c039fad62c95fea9e02b113149f726fd14bb36b31e637e8609dd5ee20a900e9c11bb783d9958d664b31ba7c467382fa7f51d477ad3aa
 SHA512 
190d6be8ede0af9808210db53e4dc31ce69b126a26b0357220c4705a11e83cab2c2c09c59964a35794f3c434f717eaa6bb669e9e8f16012535c14246b17e8d40
 DIST anyhow-1.0.79.crate 44931 BLAKE2B 
9270f04c6fbbecb535e3081f4275c3df28f6a893c1dfc0a9f7c009994de2deb8ebced04fe5e6f62931b33c3707f4fbfb0c3b28da1a611b413d40d27149d1fd2f
 SHA512 
ecd6fb1367d494df18c0e274b336a133f3acf7b6a5487d20bdd06e08c7f1f729877086a0966e998221daff120504fadd2be2dc4219ed621f81b0a50c2bbc2011
 DIST ascii-canvas-3.0.0.crate 10575 BLAKE2B 
fc40c40551e3e1b2bec6ae5a85ee8b0a1ab1ef3425cdd19ec6dd47d849205004781a2c8f51470417fe7556cf8524cc63b84a532532c5081604adbcd92d286b44
 SHA512 
216056640604f5faba6d46e2c94ff75234fec83d3bc2dc7cf34dd279706362874e3a513c717b23bc591da07cc3088458913c4e9aa5f280550c93d261095c8703
-DIST assert_cmd-2.0.12.crate 25347 BLAKE2B 
7ff952782a86203c1dd06611f1c644d8eaa6d85c8aa635bb2cac0423050f0af3c3687dcc82235041fb44e748ed06db16ed7c413d0f31305b6e3d208880494fac
 SHA512 
d14783933521ffbcc0bcad8e52e7e0e4fb58cb609123b2a50e20dbee10d7f2df4eb020cdfde386c8cde6b7e0696a3f98e0dbd698c82c99a2c6903c437ec907e4
 DIST assert_cmd-2.0.13.crate 23917 BLAKE2B 

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

2024-01-28 Thread Arthur Zamarin
commit: 7fca561103a39e7289821bd325e50c691b63559e
Author: Takuya Wakazono  gmail  com>
AuthorDate: Fri Jan 26 07:54:20 2024 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Sun Jan 28 20:13:08 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7fca5611

app-crypt/rpm-sequoia: add 1.6.0

Swapping .so and .so.1

Closes: https://bugs.gentoo.org/922296
Signed-off-by: Takuya Wakazono  gmail.com>
Signed-off-by: Arthur Zamarin  gentoo.org>

 app-crypt/rpm-sequoia/Manifest | 110 +
 app-crypt/rpm-sequoia/rpm-sequoia-1.6.0.ebuild | 298 +
 2 files changed, 408 insertions(+)

diff --git a/app-crypt/rpm-sequoia/Manifest b/app-crypt/rpm-sequoia/Manifest
index f8ccda760b83..7272a9a23e31 100644
--- a/app-crypt/rpm-sequoia/Manifest
+++ b/app-crypt/rpm-sequoia/Manifest
@@ -1,31 +1,45 @@
 DIST aead-0.5.2.crate 15509 BLAKE2B 
0214f3e8ee85a7e18c7d20f9a3fcbdbb9e5af6fdfdcb427e915279b505556dbd2df6d09d5c90561417c56796236a56ab24b2b11389745bc03a0a6da45c0e8636
 SHA512 
61926a615618e64efd0e9342d729a89f80d6e092dda50e018252a06147e2ca0dc2a989136416f57ae02019695757dfa3d3f3cf3799f138e440662744ecab4a44
 DIST aes-0.8.3.crate 124679 BLAKE2B 
7a352a9c5452ed91b32ed82a7450013ba0f0db4d990d37bfa78782e9c031d2a33d0b7680625881566ecc4b7048a44854759163d2e5c962783fffed1ca7d38a78
 SHA512 
89aa691fb6060c37ae8bdc2db8c7ba87a7c5201a776c247bb499fca0fa2b0c062601144af49eb781342a97760a124cc24dbfc38ccecd16493270f47d96282cc0
+DIST aes-gcm-0.10.3.crate 148991 BLAKE2B 
e1376b741386577277a8cb9535c1ad3e15ea383c0f324bc5cedff09a76b11f2c9e29226535688f9431e904bf2800b8e140c4b1cab333e572208eefd19ca897f1
 SHA512 
f9aec1e2609262c30921bf83cdd82117d147905d4ca311f9fef4b9f1734d3a57893ba2586f0ccfd39cf9264d347ba2c2d2c52b4726495eda8fec7fbec42d6db3
 DIST aho-corasick-1.0.4.crate 171175 BLAKE2B 
b3d450533f0799a18fa6ceba41ce841573a3b9fe9bc66745aba9b5a1ef4d86b107aa68c049bd30df7bc86229c71264142e40da8e1d145e776017269a01aed86e
 SHA512 
7cb8feb3289a508b1345b3cc04b59f2f730b80f561b17c7605ce23bf92780b5b3714ec84f5e3c5f4ba0c3abd47ac44fd0064a8bf4c5a7d00bd580774c6a3aee8
+DIST aho-corasick-1.1.2.crate 183136 BLAKE2B 
2d4306d8968061b9f7e50190be6a92b3f668169ba1b9f9691de08a57c96185f7a4288d20c64cb8488a260eb18d3ed4b0e8358b0cca47aa44759b2e448049cbaa
 SHA512 
61ef5092673ab5a60bec4e92df28a91fe6171ba59d5829ffe41fc55aff3bfb755533a4ad53dc7bf827a0b789fcce593b17e69d1fcfb3694f06ed3b1bd535d40c
 DIST android-tzdata-0.1.1.crate 7674 BLAKE2B 
4385a4875aadaacd5284a9ca7d1bf8a7bf14bf8925d1563d52fbabacc3af2c1ea08bfcf77106f3648f4fa052ac295158a21e7a0131d31eb9aecd99ea4ba20055
 SHA512 
4294024c21ddd0090c42c8eedf708d40d917f55ad5a4cb7aa3e64cfb6551b6df60f2e36bc08620c1d2fc8c7ba7207411518ee5c8635f60ed8ad9efdd458a2077
 DIST android_system_properties-0.1.5.crate 5243 BLAKE2B 
86f68ec3bdabf8c6ec47881d794970f08a9eefc7417fc8a2bf4fe9faf9bdd2a2024a94adb0cbf96673409f5fbbd4d0111a1ac371339e7a90a277b6cd5003524e
 SHA512 
b09f51339f9772c0e2e4241b36cf51573c6b96b19ffc1fbbc94b1c1d1d2fdfe8eac3134af54174a675ab05d18ef4f6bcb2c7fcc20114bbeef6e17e3692202191
 DIST anstyle-1.0.2.crate 13983 BLAKE2B 
4274b101d1cab2b62f9bb7637dab35f4b16e8c08a080355a2ea53e2b7b353ff230aa77fb3a244e0d6ff0dcd27abe5895eb306c630aa0822d0c608f041d4abfea
 SHA512 
09220abfc844192ca698589897845752e02666b4ecd6529af4cde9f260ef36694e6e631c7503fc0e438ac72c88c419043b78399385cb248e789e86404503935a
+DIST anstyle-1.0.4.crate 13998 BLAKE2B 
fb501700855709e53438461c2f4b48d869613e7bb3bb700db8bd0d95082876d3782dc2cfe3ce110bb4a206994de56afe0e90fe89f9ccd07c60fe1c652123ba59
 SHA512 
671c6f57106198bcfc2f9000aacba98fabacfadfce2329dfe8d0e0a2af9404da483d7a844ca2b08e1fc0249371f574c13d0082c9f7a4ed90ff581308257a52d3
 DIST anyhow-1.0.75.crate 43901 BLAKE2B 
6353557d7ec2cbfdd001c039fad62c95fea9e02b113149f726fd14bb36b31e637e8609dd5ee20a900e9c11bb783d9958d664b31ba7c467382fa7f51d477ad3aa
 SHA512 
190d6be8ede0af9808210db53e4dc31ce69b126a26b0357220c4705a11e83cab2c2c09c59964a35794f3c434f717eaa6bb669e9e8f16012535c14246b17e8d40
+DIST anyhow-1.0.79.crate 44931 BLAKE2B 
9270f04c6fbbecb535e3081f4275c3df28f6a893c1dfc0a9f7c009994de2deb8ebced04fe5e6f62931b33c3707f4fbfb0c3b28da1a611b413d40d27149d1fd2f
 SHA512 
ecd6fb1367d494df18c0e274b336a133f3acf7b6a5487d20bdd06e08c7f1f729877086a0966e998221daff120504fadd2be2dc4219ed621f81b0a50c2bbc2011
 DIST ascii-canvas-3.0.0.crate 10575 BLAKE2B 
fc40c40551e3e1b2bec6ae5a85ee8b0a1ab1ef3425cdd19ec6dd47d849205004781a2c8f51470417fe7556cf8524cc63b84a532532c5081604adbcd92d286b44
 SHA512 
216056640604f5faba6d46e2c94ff75234fec83d3bc2dc7cf34dd279706362874e3a513c717b23bc591da07cc3088458913c4e9aa5f280550c93d261095c8703
 DIST assert_cmd-2.0.12.crate 25347 BLAKE2B 
7ff952782a86203c1dd06611f1c644d8eaa6d85c8aa635bb2cac0423050f0af3c3687dcc82235041fb44e748ed06db16ed7c413d0f31305b6e3d208880494fac
 SHA512 
d14783933521ffbcc0bcad8e52e7e0e4fb58cb609123b2a50e20dbee10d7f2df4eb020cdfde386c8cde6b7e0696a3f98e0dbd698c82c99a2c6903c437ec907e4
+DIST assert_cmd-2.0.13.crate 23917 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: app-arch/libdeflate/files/, app-arch/libdeflate/

2024-01-28 Thread Sam James
commit: 88fe051e9ccff994a9f83464ac9467c3f6403f98
Author: Paul Zander  gmail  com>
AuthorDate: Sat Jan 27 19:41:09 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 21:50:17 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88fe051e

app-arch/libdeflate: 1.19,  update ebuilds

Make tests that depend on `USE="gzip zlib"` conditional.
Add test time dependency on `sys-libs/zlib`.

Bug: https://github.com/gentoo/gentoo/pull/35036
Signed-off-by: Paul Zander  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/35047
Signed-off-by: Sam James  gentoo.org>

 ...bdeflate-1.19-make-gzip-tests-conditional.patch | 37 ++
 app-arch/libdeflate/libdeflate-1.19.ebuild | 25 ---
 app-arch/libdeflate/libdeflate-.ebuild | 25 ---
 app-arch/libdeflate/metadata.xml   |  1 +
 4 files changed, 80 insertions(+), 8 deletions(-)

diff --git 
a/app-arch/libdeflate/files/libdeflate-1.19-make-gzip-tests-conditional.patch 
b/app-arch/libdeflate/files/libdeflate-1.19-make-gzip-tests-conditional.patch
new file mode 100644
index ..ae290f3f69d2
--- /dev/null
+++ 
b/app-arch/libdeflate/files/libdeflate-1.19-make-gzip-tests-conditional.patch
@@ -0,0 +1,37 @@
+Only build these when the user enables zlib and gzip support
+diff --git a/programs/CMakeLists.txt b/programs/CMakeLists.txt
+index e707a25..fcfaf12 100644
+--- a/programs/CMakeLists.txt
 b/programs/CMakeLists.txt
+@@ -80,22 +80,28 @@ if(LIBDEFLATE_BUILD_TESTS)
+ target_link_libraries(libdeflate_test_utils PUBLIC
+   libdeflate_prog_utils ZLIB::ZLIB)
+ 
++if(LIBDEFLATE_GZIP_SUPPORT AND LIBDEFLATE_ZLIB_SUPPORT)
+ # Build the benchmark and checksum programs.
+ add_executable(benchmark benchmark.c)
+ target_link_libraries(benchmark PRIVATE libdeflate_test_utils)
+ add_executable(checksum checksum.c)
+ target_link_libraries(checksum PRIVATE libdeflate_test_utils)
++endif()
+ 
+ # Build the unit test programs and register them with CTest.
+ set(UNIT_TEST_PROGS
+-test_checksums
+ test_custom_malloc
+ test_incomplete_codes
+ test_invalid_streams
+ test_litrunlen_overflow
+ test_overread
+ test_slow_decompression
+-test_trailing_bytes
+ )
++if(LIBDEFLATE_GZIP_SUPPORT AND LIBDEFLATE_ZLIB_SUPPORT)
++  list(APPEND UNIT_TEST_PROGS
++test_checksums
++test_trailing_bytes
++  )
++endif()
+ foreach(PROG ${UNIT_TEST_PROGS})
+ add_executable(${PROG} ${PROG}.c)
+ target_link_libraries(${PROG} PRIVATE libdeflate_test_utils)

diff --git a/app-arch/libdeflate/libdeflate-1.19.ebuild 
b/app-arch/libdeflate/libdeflate-1.19.ebuild
index ef8f83f51db6..2ed3a652def2 100644
--- a/app-arch/libdeflate/libdeflate-1.19.ebuild
+++ b/app-arch/libdeflate/libdeflate-1.19.ebuild
@@ -18,14 +18,31 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="+gzip static-libs +utils +zlib test"
-RESTRICT="!test? ( test )"
+# the zlib USE-flag enables support for zlib
+# the test USE-flag programs depend on sys-libs/zlib for comparison tests
+IUSE="+gzip +utils +zlib test"
+
+RESTRICT="
+   !test? ( test )
+"
+
+REQUIRED_USE="
+   utils? ( gzip )
+"
+
+DEPEND="
+   test? ( sys-libs/zlib )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.19-make-gzip-tests-conditional.patch"
+)
 
 src_configure() {
local mycmakeargs=(
-DLIBDEFLATE_BUILD_SHARED_LIB="yes"
-   -DLIBDEFLATE_BUILD_STATIC_LIB="$(usex static-libs)"
-   -DLIBDEFLATE_USE_SHARED_LIB="$(usex !static-libs)"
+   -DLIBDEFLATE_BUILD_STATIC_LIB="no"
+   -DLIBDEFLATE_USE_SHARED_LIB="yes"
 
-DLIBDEFLATE_COMPRESSION_SUPPORT="yes"
-DLIBDEFLATE_DECOMPRESSION_SUPPORT="yes"

diff --git a/app-arch/libdeflate/libdeflate-.ebuild 
b/app-arch/libdeflate/libdeflate-.ebuild
index ef8f83f51db6..2ed3a652def2 100644
--- a/app-arch/libdeflate/libdeflate-.ebuild
+++ b/app-arch/libdeflate/libdeflate-.ebuild
@@ -18,14 +18,31 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="+gzip static-libs +utils +zlib test"
-RESTRICT="!test? ( test )"
+# the zlib USE-flag enables support for zlib
+# the test USE-flag programs depend on sys-libs/zlib for comparison tests
+IUSE="+gzip +utils +zlib test"
+
+RESTRICT="
+   !test? ( test )
+"
+
+REQUIRED_USE="
+   utils? ( gzip )
+"
+
+DEPEND="
+   test? ( sys-libs/zlib )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.19-make-gzip-tests-conditional.patch"
+)
 
 src_configure() {
local mycmakeargs=(
-DLIBDEFLATE_BUILD_SHARED_LIB="yes"
-   -DLIBDEFLATE_BUILD_STATIC_LIB="$(usex static-libs)"
-   -DLIBDEFLATE_USE_SHARED_LIB="$(usex !static-libs)"
+   -DLIBDEFLATE_BUILD_STATIC_LIB="no"
+   -DLIBDEFLATE_USE_SHARED_LIB="yes"
 

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

2024-01-28 Thread Shaoyu Tseng
commit: 8e79179eed884336b3f062e1e955f1d7c64b8b37
Author: Shaoyu Tseng <1over137  anche  no>
AuthorDate: Sun Jan 28 21:42:24 2024 +
Commit: Shaoyu Tseng  tuta  io>
CommitDate: Sun Jan 28 21:42:24 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8e79179e

dev-python/gevent: new package, add 23.9.1

Signed-off-by: Shaoyu Tseng <1over137  anche.no>

 dev-python/gevent/Manifest |  1 +
 dev-python/gevent/gevent-23.9.1.ebuild | 27 +++
 dev-python/gevent/metadata.xml | 13 +
 3 files changed, 41 insertions(+)

diff --git a/dev-python/gevent/Manifest b/dev-python/gevent/Manifest
new file mode 100644
index 00..3f18a7f865
--- /dev/null
+++ b/dev-python/gevent/Manifest
@@ -0,0 +1 @@
+DIST gevent-23.9.1.tar.gz 5847705 BLAKE2B 
b1d2f95728e545e4970235c7cd352f2a3ed742f01a4f2421423d6e9fd36d7fadae5ffe1dba326535501ec8179c36d83ec5e5c4aeced70673921db85fc9e1b042
 SHA512 
c0600a5f9e50040009c3467ad802dda8a48422dca4e781acc9ca3428446399932da2f07d7345936ef634783611cf664d219f614980ed6b936f4a510e56ea753c

diff --git a/dev-python/gevent/gevent-23.9.1.ebuild 
b/dev-python/gevent/gevent-23.9.1.ebuild
new file mode 100644
index 00..47b82014b3
--- /dev/null
+++ b/dev-python/gevent/gevent-23.9.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..12} pypy3  )
+DISTUTILS_USE_PEP517=standalone
+inherit distutils-r1 pypi
+PYTHON_REQ_USE="ssl(+),threads(+)"
+DESCRIPTION="Coroutine-based network library"
+HOMEPAGE="https://www.gevent.org/ https://pypi.org/project/gevent;
+
+IUSE="monitor recommended test"
+DEPENDENCIES=">=dev-python/greenlet-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/greenlet-3.0[${PYTHON_USEDEP}]
+   dev-python/zope-event[${PYTHON_USEDEP}]
+   dev-python/zope-interface[${PYTHON_USEDEP}]
+   monitor? ( >=dev-python/psutil-5.7.0[${PYTHON_USEDEP}] )
+   recommended? ( >=dev-python/cffi-1.12.2[${PYTHON_USEDEP}] )
+   recommended? ( >=dev-python/psutil-5.7.0[${PYTHON_USEDEP}] )
+   "
+BDEPEND="${DEPENDENCIES}"
+RDEPEND="${DEPENDENCIES}"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"

diff --git a/dev-python/gevent/metadata.xml b/dev-python/gevent/metadata.xml
new file mode 100644
index 00..6d71f9b1dd
--- /dev/null
+++ b/dev-python/gevent/metadata.xml
@@ -0,0 +1,13 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   1over...@anche.no
+   Shaoyu Tseng
+   
+   
+   gevent
+   gevent/pyqtdarktheme
+   https://www.gevent.org/
+   
+



[gentoo-commits] repo/proj/guru:dev commit in: app-misc/vocabsieve/

2024-01-28 Thread Shaoyu Tseng
commit: 1e2e4747e7fef29461b330b02d1404a71a315674
Author: Shaoyu Tseng <1over137  anche  no>
AuthorDate: Sun Jan 28 21:55:46 2024 +
Commit: Shaoyu Tseng  tuta  io>
CommitDate: Sun Jan 28 21:55:46 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e2e4747

app-misc/vocabsieve: add 0.11.1, drop 0.11.0

Signed-off-by: Shaoyu Tseng <1over137  anche.no>

 app-misc/vocabsieve/Manifest| 2 +-
 .../vocabsieve/{vocabsieve-0.11.0.ebuild => vocabsieve-0.11.1.ebuild}   | 2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-misc/vocabsieve/Manifest b/app-misc/vocabsieve/Manifest
index dbf8df02fa..caab0a4058 100644
--- a/app-misc/vocabsieve/Manifest
+++ b/app-misc/vocabsieve/Manifest
@@ -1 +1 @@
-DIST vocabsieve-0.11.0.tar.gz 209015 BLAKE2B 
c96559568b3112242fb2bbe95ac1023358249865562f81c181c63798a3d5b94ab61ac3c3e3c9a668914ad399fb2a11b2b4dc3e5406a65b3a73460025d72d764f
 SHA512 
42bc5c15d25fb9712bdd389eb5f6cd194fe3f9205fe590c79167cc8d74f2f7c3b32d46a6318aa7d63e166787caa5c5561160b0b2c8c23b99c79cc6aab20959ff
+DIST vocabsieve-0.11.1.tar.gz 215480 BLAKE2B 
2be1d39c0b423d76478fea499350a27f3a813fc079be1b7e5c8060837eefbfd409e9986d6c893141ab93fdc7a0c268946bb900545bd7a8697c88b0638ff05d7d
 SHA512 
3b0a5c3587e22ec19c7e0f422dfb3f05f15929dadbb99ace14d3fd59c4a7792a4f82faf3e1e5119ff62f554dd982c774328f37389666bf74164d7802616760c1

diff --git a/app-misc/vocabsieve/vocabsieve-0.11.0.ebuild 
b/app-misc/vocabsieve/vocabsieve-0.11.1.ebuild
similarity index 95%
rename from app-misc/vocabsieve/vocabsieve-0.11.0.ebuild
rename to app-misc/vocabsieve/vocabsieve-0.11.1.ebuild
index bd2f49fe95..7638017eca 100644
--- a/app-misc/vocabsieve/vocabsieve-0.11.0.ebuild
+++ b/app-misc/vocabsieve/vocabsieve-0.11.1.ebuild
@@ -40,4 +40,6 @@ RDEPEND="
dev-python/readmdict[${PYTHON_USEDEP}]
dev-python/python-lzo[${PYTHON_USEDEP}]
dev-python/pyqtgraph[${PYTHON_USEDEP}]
+   dev-python/pynput[${PYTHON_USEDEP}]
+   dev-python/gevent[${PYTHON_USEDEP}]
 "



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

2024-01-28 Thread Shaoyu Tseng
commit: fa6a909bef874dae257217646944505ac1057871
Author: Shaoyu Tseng <1over137  anche  no>
AuthorDate: Sun Jan 28 21:18:51 2024 +
Commit: Shaoyu Tseng  tuta  io>
CommitDate: Sun Jan 28 21:18:51 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=fa6a909b

dev-python/pynput: new package, add 1.7.6

Signed-off-by: Shaoyu Tseng <1over137  anche.no>

 dev-python/pynput/Manifest|  1 +
 dev-python/pynput/metadata.xml| 12 
 dev-python/pynput/pynput-1.7.6.ebuild | 20 
 3 files changed, 33 insertions(+)

diff --git a/dev-python/pynput/Manifest b/dev-python/pynput/Manifest
new file mode 100644
index 00..42a186bc9f
--- /dev/null
+++ b/dev-python/pynput/Manifest
@@ -0,0 +1 @@
+DIST pynput-1.7.6.tar.gz 79501 BLAKE2B 
cb356271ef0688ff6532fb79b858c10fb3a52abc4f6db5f4758948cb16f01e96e9377894ea211952b58f5ff6d997ceeec9ba51a29aef866e65cd83900a9894ae
 SHA512 
66639096a83b7ea7c926bfab67ef6c54b913fc4ffe5814bbc4ace6e4d298237a3623066f4f5c08a2bcf1cc5e40d18dc35b77c18afbd0d00b7b4bf4ed2233d9ff

diff --git a/dev-python/pynput/metadata.xml b/dev-python/pynput/metadata.xml
new file mode 100644
index 00..0637b583bd
--- /dev/null
+++ b/dev-python/pynput/metadata.xml
@@ -0,0 +1,12 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   1over...@anche.no
+   Shaoyu Tseng
+   
+   
+   pynput
+   moses-palmer/pynput
+   
+

diff --git a/dev-python/pynput/pynput-1.7.6.ebuild 
b/dev-python/pynput/pynput-1.7.6.ebuild
new file mode 100644
index 00..f3eb9d1adc
--- /dev/null
+++ b/dev-python/pynput/pynput-1.7.6.ebuild
@@ -0,0 +1,20 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} pypy3  )
+DISTUTILS_USE_PEP517=setuptools
+inherit distutils-r1 pypi
+
+DESCRIPTION="Sends virtual input commands"
+HOMEPAGE="https://github.com/moses-palmer/pynput 
https://pypi.org/project/pynput;
+RDEPEND="
+   dev-python/python-evdev[${PYTHON_USEDEP}]
+   dev-python/python-xlib[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+
+LICENSE="LGPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"



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

2024-01-28 Thread Sam James
commit: 4c235cd832139539270bdd3e96fc8452273d20cf
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 15:52:00 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 15:52:00 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c235cd8

gnome-extra/libgsf: Stabilize 1.14.51 arm64, #923121

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

 gnome-extra/libgsf/libgsf-1.14.51.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgsf/libgsf-1.14.51.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
index cccb6f89466e..f3ed136655e8 100644
--- a/gnome-extra/libgsf/libgsf-1.14.51.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf;
 
 LICENSE="LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
 IUSE="bzip2 gtk +introspection test"
 RESTRICT="!test? ( test )"
 



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

2024-01-28 Thread Sam James
commit: af1a7b6733479c9001caae2d9e133e3879bb848b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 15:52:01 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 15:52:01 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af1a7b67

gnome-extra/libgsf: Stabilize 1.14.51 arm, #923121

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

 gnome-extra/libgsf/libgsf-1.14.51.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgsf/libgsf-1.14.51.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
index f3ed136655e8..3d8e125efc23 100644
--- a/gnome-extra/libgsf/libgsf-1.14.51.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf;
 
 LICENSE="LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
 IUSE="bzip2 gtk +introspection test"
 RESTRICT="!test? ( test )"
 



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

2024-01-28 Thread Sam James
commit: cea74ee69ea808e456284d4d8990e393bfc654a1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 15:51:54 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 15:51:54 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cea74ee6

dev-libs/xmlsec: Stabilize 1.3.3-r1 ppc64, #923120

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

 dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild 
b/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
index 38c3cdc3af96..712502439ec2 100644
--- a/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
+++ b/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}1-${PV}"
 LICENSE="MIT"
 # Upstream consider major version bumps to be changes in either X or Y in X.Y.Z
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="doc gcrypt gnutls http nss +openssl static-libs test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="



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

2024-01-28 Thread Sam James
commit: 1428995464a7fa3e3cf1b7af53a4b45ad41a42e3
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 15:51:57 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 15:51:57 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14289954

gnome-extra/libgsf: Stabilize 1.14.51 ppc, #923121

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

 gnome-extra/libgsf/libgsf-1.14.51.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgsf/libgsf-1.14.51.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
index 2b6a32860cd0..1bafb20a8012 100644
--- a/gnome-extra/libgsf/libgsf-1.14.51.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf;
 
 LICENSE="LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
 IUSE="bzip2 gtk +introspection test"
 RESTRICT="!test? ( test )"
 



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

2024-01-28 Thread Sam James
commit: 3d2bbe89217aaba98f6ea799a548cf302b7dc054
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 15:51:58 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 15:51:58 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d2bbe89

gnome-extra/libgsf: Stabilize 1.14.51 ppc64, #923121

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

 gnome-extra/libgsf/libgsf-1.14.51.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/libgsf/libgsf-1.14.51.ebuild 
b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
index 1bafb20a8012..cccb6f89466e 100644
--- a/gnome-extra/libgsf/libgsf-1.14.51.ebuild
+++ b/gnome-extra/libgsf/libgsf-1.14.51.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libgsf;
 
 LICENSE="LGPL-2.1"
 SLOT="0/114" # libgsf-1.so version
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-solaris"
 IUSE="bzip2 gtk +introspection test"
 RESTRICT="!test? ( test )"
 



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

2024-01-28 Thread Sam James
commit: 9dd6872866771c72672535da71b838578ddbe152
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 15:51:56 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 15:51:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9dd68728

dev-libs/xmlsec: Stabilize 1.3.3-r1 arm64, #923120

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

 dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild 
b/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
index 712502439ec2..1db707dd4d7a 100644
--- a/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
+++ b/dev-libs/xmlsec/xmlsec-1.3.3-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}1-${PV}"
 LICENSE="MIT"
 # Upstream consider major version bumps to be changes in either X or Y in X.Y.Z
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~loong ~ppc ppc64 ~riscv ~sparc ~x86"
 IUSE="doc gcrypt gnutls http nss +openssl static-libs test"
 RESTRICT="!test? ( test )"
 REQUIRED_USE="



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

2024-01-28 Thread Sam James
commit: 1a395c389053493823136109272e5e1bd576c165
Author: Sam James  gentoo  org>
AuthorDate: Sun Jan 28 15:50:55 2024 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jan 28 15:51:21 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a395c38

media-libs/musicbrainz: fix build w/ libxml2-2.12

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

 .../musicbrainz-5.1.0-libxml2-2.12-compat.patch| 21 +++
 .../files/musicbrainz-5.1.0-libxml2-2.12.patch | 69 ++
 media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild | 48 +++
 3 files changed, 138 insertions(+)

diff --git 
a/media-libs/musicbrainz/files/musicbrainz-5.1.0-libxml2-2.12-compat.patch 
b/media-libs/musicbrainz/files/musicbrainz-5.1.0-libxml2-2.12-compat.patch
new file mode 100644
index ..a835ffbb0f2e
--- /dev/null
+++ b/media-libs/musicbrainz/files/musicbrainz-5.1.0-libxml2-2.12-compat.patch
@@ -0,0 +1,21 @@
+Fix build with message = error->message;
+ results->line = error->line;
+ results->code = error->code;
+@@ -72,7 +72,7 @@ XMLNode *XMLRootNode::parseString(const std::string , 
XMLResults* results)
+ 
+ doc = xmlParseMemory(xml.c_str(), xml.length());
+ if ((doc == NULL) && (results != NULL)) {
+-const xmlError *error = xmlGetLastError();
++const xmlError *error = (const xmlError*) xmlGetLastError();
+ results->message = error->message;
+ results->line = error->line;
+ results->code = error->code;

diff --git a/media-libs/musicbrainz/files/musicbrainz-5.1.0-libxml2-2.12.patch 
b/media-libs/musicbrainz/files/musicbrainz-5.1.0-libxml2-2.12.patch
new file mode 100644
index ..41956918bb93
--- /dev/null
+++ b/media-libs/musicbrainz/files/musicbrainz-5.1.0-libxml2-2.12.patch
@@ -0,0 +1,69 @@
+https://bugs.gentoo.org/923011
+https://github.com/metabrainz/libmusicbrainz/commit/9ba00067a15479a52262a5126bcb6889da5884b7
+https://github.com/metabrainz/libmusicbrainz/commit/558c9ba0e6d702d5c877f75be98176f57abf1b02
+
+From 9ba00067a15479a52262a5126bcb6889da5884b7 Mon Sep 17 00:00:00 2001
+From: Christopher Degawa 
+Date: Sun, 8 Oct 2023 11:41:30 -0500
+Subject: [PATCH] libxml: include parser.h
+
+libxml2 removed the inclusion of global.h in a few of its include files,
+so we can no longer rely on transitive includes.
+
+This applies to functions like xmlParseFile.
+
+Signed-off-by: Christopher Degawa 
+---
+ src/xmlParser.cc | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/src/xmlParser.cc b/src/xmlParser.cc
+index e63df55..53dec25 100644
+--- a/src/xmlParser.cc
 b/src/xmlParser.cc
+@@ -30,6 +30,7 @@
+ 
+ #include 
+ #include 
++#include 
+ 
+ XMLResults::XMLResults()
+ : line(0),
+
+
+From 558c9ba0e6d702d5c877f75be98176f57abf1b02 Mon Sep 17 00:00:00 2001
+From: Christopher Degawa 
+Date: Sun, 8 Oct 2023 11:42:55 -0500
+Subject: [PATCH] libxml: constify the storage of xmlGetLastError()
+
+libxml2 recently made it a const return.
+Since nothing is being modified of it, this should have no real effect
+past satisfying the compiler.
+
+Signed-off-by: Christopher Degawa 
+---
+ src/xmlParser.cc | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/src/xmlParser.cc b/src/xmlParser.cc
+index 53dec25..fee684c 100644
+--- a/src/xmlParser.cc
 b/src/xmlParser.cc
+@@ -57,7 +57,7 @@ XMLNode *XMLRootNode::parseFile(const std::string , 
XMLResults* results
+ 
+ doc = xmlParseFile(filename.c_str());
+ if ((doc == NULL) && (results != NULL)) {
+-xmlErrorPtr error = xmlGetLastError();
++const xmlError *error = xmlGetLastError();
+ results->message = error->message;
+ results->line = error->line;
+ results->code = error->code;
+@@ -72,7 +72,7 @@ XMLNode *XMLRootNode::parseString(const std::string , 
XMLResults* results)
+ 
+ doc = xmlParseMemory(xml.c_str(), xml.length());
+ if ((doc == NULL) && (results != NULL)) {
+-xmlErrorPtr error = xmlGetLastError();
++const xmlError *error = xmlGetLastError();
+ results->message = error->message;
+ results->line = error->line;
+ results->code = error->code;

diff --git a/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild 
b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
new file mode 100644
index ..c0ca4e48189b
--- /dev/null
+++ b/media-libs/musicbrainz/musicbrainz-5.1.0-r1.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="Client Library for accessing the latest XML based MusicBrainz web 
service"
+HOMEPAGE="https://musicbrainz.org/doc/libmusicbrainz;
+SRC_URI="https://github.com/metabrainz/lib${PN}/releases/download/release-${PV}/lib${P}.tar.gz;
+S="${WORKDIR}/lib${P}"
+
+LICENSE="LGPL-2.1"
+SLOT="5/1" # soname of libmusicbrainz5.so
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 

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

2024-01-28 Thread Joonas Niilola
commit: 0aac4f2ff757e32913058b2ef96f388967d0be61
Author: Joonas Niilola  gentoo  org>
AuthorDate: Sun Jan 28 16:25:56 2024 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Sun Jan 28 16:25:56 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0aac4f2f

sys-fs/udiskie: fix InvalidDepend on 2.5.2

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

 sys-fs/udiskie/udiskie-2.5.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/udiskie/udiskie-2.5.2.ebuild 
b/sys-fs/udiskie/udiskie-2.5.2.ebuild
index df9a10c868be..685b5edb92a8 100644
--- a/sys-fs/udiskie/udiskie-2.5.2.ebuild
+++ b/sys-fs/udiskie/udiskie-2.5.2.ebuild
@@ -21,7 +21,7 @@ RDEPEND="dev-python/docopt[${PYTHON_USEDEP}]
libnotify? ( x11-libs/libnotify[introspection] )"
 DEPEND="app-text/asciidoc
test? ( dev-python/keyutils[${PYTHON_USEDEP}]
-   dev-python/pyyaml[${PYTHON_USEDEP}])"
+   dev-python/pyyaml[${PYTHON_USEDEP}] )"
 
 distutils_enable_tests pytest
 



[gentoo-commits] repo/gentoo:master commit in: gui-libs/wlroots/

2024-01-28 Thread Matt Turner
commit: 76b554c6c3fc24eee304829ab80650821a5ea041
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan 24 17:51:00 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:34:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76b554c6

gui-libs/wlroots: Drop old versions

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

 gui-libs/wlroots/Manifest |  1 -
 gui-libs/wlroots/wlroots-0.14.1-r1.ebuild | 67 ---
 2 files changed, 68 deletions(-)

diff --git a/gui-libs/wlroots/Manifest b/gui-libs/wlroots/Manifest
index 8f1319dfb5ab..2e1f2226aa8f 100644
--- a/gui-libs/wlroots/Manifest
+++ b/gui-libs/wlroots/Manifest
@@ -1,4 +1,3 @@
-DIST wlroots-0.14.1.tar.gz 505840 BLAKE2B 
fca4d259cdde62da0c196344ce1d0f5dd679d012ff33e3ceb5385b9374667e16d91059a2ba6a318153e79ac2f0a6464e3066e614a13398f8c433f442560d84d2
 SHA512 
4f557c827f9673eccf208a3644954de80e7355b95cc374cc5e851a47087b227f196e0936c0913d21a6c776c29b74de2d028a100931264e41934c747568d8ebe0
 DIST wlroots-0.15.1.tar.gz 565816 BLAKE2B 
09b704a55d8b4a5ab19bb0fcdd041635f8eed94ff6d189ef47f9f86e90178efa8441c7db78839b1145ed79ed016d520d6599e256cdcf49130cda38bc307d
 SHA512 
6228160f2f350a406c612f1048d7075cf2f78206cc84bc16f889d5d0acd614f9e98845fffed03d7067cfdbd7558b77fcc5d8cedc3868d866e476523126a63677
 DIST wlroots-0.16.2.gl.tar.gz 588432 BLAKE2B 
cad2a98b1413ed94270b53af62541d67de1c74d3350be32c2e67aaee1d36d4260738b517d6d41f2013f436276097509a5d2662c531be354f7b4edc1c0204eced
 SHA512 
9d5fbee3b87738de75323a056b83446eb93b81ac3e8a4315918d5daad6ed2f50392d9641039f3f830ec1df94155473a2052689d3c029be7572d8ec9ecc62c0e9
 DIST wlroots-0.17.0.tar.gz 606172 BLAKE2B 
00e5a8eec166e9ce8fbb1bc365deb5eaad66568b197239581e9bf21bec6d2b77d162daa8534057ed02a208ffb8895ea0f562dd1201e9e1ee4e72bfe63e1bbb0c
 SHA512 
ca7314d7dca3ddac3e6970476b4145a0a2566a6632054f406c6e74ea7280a805cdf9b6972cca15c3170a5f41c83677768843b648b6b98ab6428e4ecde43aa4de

diff --git a/gui-libs/wlroots/wlroots-0.14.1-r1.ebuild 
b/gui-libs/wlroots/wlroots-0.14.1-r1.ebuild
deleted file mode 100644
index fff86149dd69..
--- a/gui-libs/wlroots/wlroots-0.14.1-r1.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="Pluggable, composable, unopinionated modules for building a 
Wayland compositor"
-HOMEPAGE="https://github.com/swaywm/wlroots;
-
-if [[ ${PV} ==  ]]; then
-   EGIT_REPO_URI="https://github.com/swaywm/${PN}.git;
-   inherit git-r3
-   SLOT="0/"
-else
-   SRC_URI="https://github.com/swaywm/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm64 ~ppc64 ~riscv x86"
-   SLOT="0/14"
-fi
-
-LICENSE="MIT"
-IUSE="x11-backend X"
-
-DEPEND="
-   >=dev-libs/libinput-1.14.0:0=
-   >=dev-libs/wayland-1.19.0
-   >=dev-libs/wayland-protocols-1.17.0
-   media-libs/mesa[egl(+),gles2,gbm(+)]
-   sys-auth/seatd:=
-   virtual/libudev
-   x11-libs/libdrm
-   x11-libs/libxkbcommon
-   x11-libs/pixman
-   x11-backend? ( x11-libs/libxcb:0= )
-   X? (
-   x11-base/xwayland
-   x11-libs/libxcb:0=
-   x11-libs/xcb-util-image
-   x11-libs/xcb-util-wm
-   )
-"
-RDEPEND="
-   ${DEPEND}
-"
-BDEPEND="
-   >=dev-libs/wayland-protocols-1.17
-   >=dev-build/meson-0.56.0
-   virtual/pkgconfig
-"
-
-src_configure() {
-   # xcb-util-errors is not on Gentoo Repository (and upstream seems 
inactive?)
-   local emesonargs=(
-   "-Dxcb-errors=disabled"
-   "-Dexamples=false"
-   "-Drenderers=gles2"
-   -Dxwayland=$(usex X enabled disabled)
-   -Dx11-backend=$(usex x11-backend enabled disabled)
-   )
-
-   meson_src_configure
-}
-
-pkg_postinst() {
-   elog "You must be in the input group to allow your compositor"
-   elog "to access input devices via libinput."
-}



[gentoo-commits] repo/gentoo:master commit in: net-irc/weechat/files/, net-irc/weechat/

2024-01-28 Thread Matt Turner
commit: a25b2fcc386f75481c6117c09a2b1af7ebd71942
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan 24 17:51:03 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:34:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a25b2fcc

net-irc/weechat: Drop old versions

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

 net-irc/weechat/Manifest   |  12 --
 .../weechat/files/weechat-3.8-gettext-0.22.patch   |  14 --
 net-irc/weechat/weechat-3.8.ebuild | 189 -
 net-irc/weechat/weechat-4.0.5.ebuild   | 186 
 net-irc/weechat/weechat-4.0.6.ebuild   | 186 
 net-irc/weechat/weechat-4.0.7.ebuild   | 186 
 net-irc/weechat/weechat-4.1.0.ebuild   | 187 
 net-irc/weechat/weechat-4.1.1.ebuild   | 187 
 8 files changed, 1147 deletions(-)

diff --git a/net-irc/weechat/Manifest b/net-irc/weechat/Manifest
index 2079d0dfba4c..dcaf8f9b4dd8 100644
--- a/net-irc/weechat/Manifest
+++ b/net-irc/weechat/Manifest
@@ -1,19 +1,7 @@
-DIST weechat-3.8.tar.xz 2777420 BLAKE2B 
46a2c2c5f14f1c47c0ef2c7591549e4568c1777a70c571ab6d0e5938685262a0806c1fd301eb0d840245b7df2c42a69b089d6eac82706ae5b2a8e590a910080a
 SHA512 
f2fe125d03e9c8f8b5b03e2cdd340c6cd65c463187bd213c9128a3df19da56ae38f1a6d20a47c09606d1504448e3d554de042e33cc57b73753ce8491595ef516
-DIST weechat-3.8.tar.xz.asc 833 BLAKE2B 
3db6467d5a47b86df7eca237bf2def812666fed42b9c1b968760e4999f785ba65fe84be61ae152ac5d5a3fa85953b5442f515afc244249fbc15ff94ca2a06147
 SHA512 
61154ef33aeb1155004975ee6688d5dcb427e0670e7463549ed0157de7be61309abb5dbad419bceb596e11f494e41a00b72e6f908ed9f02525660f7155dcc2ec
 DIST weechat-4.0.4.tar.xz 2575788 BLAKE2B 
aa9d2ad5946ddb72a0dc32e58d43f9e6655fb1ceb448dc6f68644dcc760f7531ed275e4d92b121d6873c7bd1c631cd9ee58c476b47581100f64ed907dd88532a
 SHA512 
ddd150dad253cf4d9bc96122d2d3951c696b19f796a7cbf159edc258d4b18f1b2544b7b62362e7b59d6b3ff3e756de3ce4aaff83b02d3fe2d1cb614162965efd
 DIST weechat-4.0.4.tar.xz.asc 833 BLAKE2B 
5eed470b576e7980f67eb649bdaddabf6fad33149b5d93702c11f47b0219b0f983641f4b2e0c8a466b472191b49147f732d361ec563fd9317a7735cae22f5ce1
 SHA512 
7242ae9f71e2b3db19033a522698bf2209651438039aa0aa784b6bcf150e6f6de521b4f84acb11f1208658076c1c97bfb869dacbdf131a438ad68d03e994232d
-DIST weechat-4.0.5.tar.xz 2578236 BLAKE2B 
22025bb2020c3f6b5d92dcfea30cde0689e5eda526726956af07cf5137b52c11b0d2f4192771bbed7e033d10a470fbe5a7c0a8fc8879ffe759fd95e2d6afb50f
 SHA512 
3cf082463c29f8dfe118237ac0d46f5606311634ed1db47f3210a9176020c4f1566a6c4274bd33f5d6b5dd796b169f330a2aacd9928a0feb6181ebf9991177ea
-DIST weechat-4.0.5.tar.xz.asc 833 BLAKE2B 
9a3f71eecffc4ac9a9d56ed56a3740f81415952dbf3d5362eed6dd76e6b74dd23b69f9ce2aca3e32d8c57c2525aed273928751fa3b9937a35c9265e3143810d1
 SHA512 
56a94fec35ffb9612cc999bce1e9c19d2754de20205cb1eb7075e6943cdaf65f128ba8802228c53d70a11cd1b81acd3704a0005b438f356974cb3307e65876b5
-DIST weechat-4.0.6.tar.xz 2578856 BLAKE2B 
bed2bbc13aba307059010a2933982a1afd7a426081c86d80ae8edb57f80db289377a1c1869069e53c59146bf5eb440fb1ad06d5622e107c71db014b6b93fe2d5
 SHA512 
1d35dd9e1cd5da499585b15369121cab2eab39b3912adb28300cf04ad6f67276f38e71dedee62f1d9aa8509f0f4615d72d2c464e4fa1a35efc886e69cb82f1ef
-DIST weechat-4.0.6.tar.xz.asc 833 BLAKE2B 
6704558ec7bd275fd3cdba0b73b693da511e47475ded8e87e032755fccf34b7df131133fc3becbbd8577e8fb2ac456711e3a8cdb207b83ee1f4e51b34698de7c
 SHA512 
0dcc1770ad7ec4010c549074a1b5a9b3094c7f3f3f86fa883caf76998b0b4d068e8f45dd143c4e4bd12fa1b6a0bdae11f02df60ffa2e32d9fc44bfdfa9a18159
-DIST weechat-4.0.7.tar.xz 2579408 BLAKE2B 
af4fabb3f331402000b1e708f5ef77a202c87cfd91efab3c4a88ce2154b1c701273e56f824d0f5c4e0cd0db0eda83f5514c25750d743a3e943f5ba8ede4a7864
 SHA512 
771574ec822bbe70561cd36a61a0d4fe86338ee87b3160e8bc87f078bf13b28263a796f7c589fe3b84e5479d8c0f0e2b9cd050a964edc2a1bc9fe89537cca5cf
-DIST weechat-4.0.7.tar.xz.asc 833 BLAKE2B 
5d21a93ba034af2dfd6ec564d4c662a9e7b5084af93971903cc4dcc271e7c39cef9e50eba459729988db9d6d9eb03598214dadae49089dfd224d087a74b68988
 SHA512 
46993e2360afebc72658fe1c86248f1ab5ac980b4aed6d966628d8e3d85786a4a298facba6cd5f1ceaa4c1471f7c94c5817a5cfc8cab52c2f61f401ca82ae14d
 DIST weechat-4.0.8.tar.xz 2580240 BLAKE2B 
4845307a3c3b80cf77387e49a43875ab8c6c83d21e73902725f7860ed1fbebc5b823a8df0074f3a51e1e11c25058879aa772e424704a69cdc379f566efb8beaf
 SHA512 
d54cf070e1e2d5d987cfd10ab469c7cad730f7c73353d4bd474b91ae0f66c4d53eff4031602a324dd6750e5270b603f1dd60c9beeb4c8d3489c28fa1470f8642
 DIST weechat-4.0.8.tar.xz.asc 833 BLAKE2B 
b25dfe8eb4b257bcd0ca4eceb1736a790672abbd375f7c44400a008cc2072705eb294d65371aa4be99d1deaf8e1bc248189903d38d29e9c1159e337fa0e3c9a7
 SHA512 
7835f2e752bd8d06869639ed844ff4855a187117b3f57358fa6647ea81f0c9f011c8e4532b92d568430108b7d480e94bdda86e6e21c5f90f17a56b3eaa2182bf
-DIST weechat-4.1.0.tar.xz 2634500 BLAKE2B 

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

2024-01-28 Thread Matt Turner
commit: 50f644b88d25a146c640cb6c0165328580c41b9d
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan 24 17:51:04 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:34:26 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50f644b8

sys-apps/eza: Drop old versions

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

 sys-apps/eza/Manifest |  28 -
 sys-apps/eza/eza-0.11.1-r1.ebuild | 164 
 sys-apps/eza/eza-0.14.2.ebuild| 247 
 sys-apps/eza/eza-0.16.3.ebuild| 254 --
 sys-apps/eza/eza-0.17.0.ebuild| 254 --
 sys-apps/eza/eza-0.17.1.ebuild| 254 --
 6 files changed, 1201 deletions(-)

diff --git a/sys-apps/eza/Manifest b/sys-apps/eza/Manifest
index 6ebc5b9dfdaf..00c10d497074 100644
--- a/sys-apps/eza/Manifest
+++ b/sys-apps/eza/Manifest
@@ -19,7 +19,6 @@ DIST byteorder-1.4.3.crate 22512 BLAKE2B 
d39c546ba7346df315297fc53da4bfc77ecb1f3
 DIST cast-0.3.0.crate 11452 BLAKE2B 
fe6e0589fa436cda32342d7beaabe4003afdbdf1d7c5db7e8748adf23b1b2cdcdd286235837c735d2143f29e692c152a5d56fb0458a54961e4dea303b2cb
 SHA512 
4a3e19bc1e9e5ecc03aaef9bcdce01624ac0e6858c065fa1c41693db0ac172b9735ce872064561347cd9e79f00a274129011f6e4ccf9e61d960c8bb684b6d396
 DIST cc-1.0.79.crate 62624 BLAKE2B 
b3cbed3bd6fcac1c6ea258ec96cd107f859947a35dc89c3dc8f314741b0f668e61518f896ec32ce10c9a7eb20dd350bc177a71810d53ebea59fda062ed9d27db
 SHA512 
cbf0a25f3a23fc540e9d638fabc23f761f1c240ebb4814e761e90437d71fc559cd155768ab9e78fc192220d8a605c66c3af342ed736b719181656170b98d7bf5
 DIST cfg-if-1.0.0.crate 7934 BLAKE2B 
e99a5589c11d79d77a4537b34ce0a45d37b981c123b79b807cea836c89fc3926d693458893baca2882448d3d44e3f64e06141f6d916b748daa10b8cc1ae16d1b
 SHA512 
0fb16a8882fd30e86b62c5143b1cb18ab564e84e75bd1f28fd12f24ffdc4a42e0d2e012a99abb606c12efe3c11061ff5bf8e24ab053e550ae083f7d90f6576ff
-DIST chrono-0.4.27.crate 211340 BLAKE2B 
94974f8a82525a1b27d964f98ef1d1d788cad446301cd0b0c0913bd7f0295514579d51d5871caa4ebcb9295b442700a1ac637a0a7d3f55ca707cb97c42654515
 SHA512 
19c86589c11905ca16d68e59b500717329d08a9a431bbb51eabc2e1b15d1ab8902188e05337b0ec6fccc0c268a073c4e280dbd6605e80d4d4fcb17a4fdc5d9f0
 DIST chrono-0.4.31.crate 214513 BLAKE2B 
2ac43852ea14cb7b129adf68ff62adac1763b3f4802dd3d23c43cb131377b501b4adb22aa93818d7ceded8eb10c17f94a7836257ce2876d0513b063276129c54
 SHA512 
23276daa2c1bc3b7b2327dc84200fb40cc995a8b599d1a537e92e08138ab8a0d1548a510a8155dcdda18820120d7204e89a4686c866fc3a8d2460cdb30ac6089
 DIST ciborium-0.2.1.crate 34974 BLAKE2B 
370f4228aa63075cd7a0d41dd83f15211fc69267235905e7f5607f6e6c0baf64db0f6203c97990604de2ae683ca1937acf284c6444702414fe1a685ccfdc12a4
 SHA512 
4403239badcdb5ea6e754e706472e25c4593a1fbdfc5a07e46409ea3dac41151020204167102dbf401a2e5f31b3731267bc3759be59a73880a022e5f4a3064fc
 DIST ciborium-io-0.2.1.crate 6679 BLAKE2B 
1835b1002c2e5f6fb1cc36a6a1f1e3ee10423760646b00a75e5ee5e66dfd2892914705e4456ec440cde27dda04e28329febfbd5c640ec7f86e7c013a9a9d748d
 SHA512 
8860de0a72f07d0d0bb84af3c24635193540c574cc87367c7379222bf97ed68648330511866810265b68076bd1146e0ddb41c269e62db669b1c3390aca679c50
@@ -43,24 +42,14 @@ DIST either-1.9.0.crate 16660 BLAKE2B 
ad61038bfacb16f678fff5dd9ccf8f345e1bef18bd
 DIST equivalent-1.0.1.crate 6615 BLAKE2B 
302d78069d9df05e78b53f0488a9e4eb98fa2bc1e21893dc8a0acf2234347ba7c4df4b9d6b380ae77d8ffb1074b9c790460fe2dae47318aa1c4fe4208244540a
 SHA512 
b2bc60e804c1b02c461dcefcfd60fc37145af710d183ebe65f9a4d63f2b2072d23193f98dc550a9213c7fdc6a2a837af23b04a89294ebbb681a4aaf5d5031140
 DIST errno-0.3.3.crate 10543 BLAKE2B 
958e9d12766533ae9e84a60b121794929b9b3b1a8111aca9a2e914beee5784b64c946e143cd8031335ac9cb51069e51dbc9a6b61073a2ccfd3ff60612a20b619
 SHA512 
9524db39d0c9be287e0d2aed3358a86e961b2868717037212a2e9dc408bc73198ab23196d7923a9ba7e0e9357276075148f582e0325ad36ae1b212a8c674173e
 DIST errno-dragonfly-0.1.2.crate 1810 BLAKE2B 
781fc26dce5c33d83b9a1fd9be2b2ce9ac2559aaa858957ba6777e143b1e44cdfee48e1b47e3c91a95075a51921d1a421d0b45eb3d8de827cf4dd0ad744a7d8c
 SHA512 
f853f1e1b8dd0f359a8f9a0399b3384c1103cd090d96e2b2204f91a40d40a9eb99383d4aa6a11e5470c51557afacf452d4be2049600d4235d27f59870fa3b916
-DIST eza-0.11.1.tar.gz 1221586 BLAKE2B 
e642be77d3402e4b42235cf13767fcef7279bc232c3e0b62bd012026293faae4a6dcaacf19f565f5f4f46f8e412d8f47921f8e1c8192f4bd642d17b1b91e950d
 SHA512 
1bbf7018e00c53981ed049d26ed5c814eeeac1c8ec7455e0f20b5f0492aa6ebcec3260bf7fdd9df49bb9136819c1fa3a1ac719ae0aec5226312416e941640d62
-DIST eza-0.14.2.tar.gz 1217105 BLAKE2B 
9835f66dcd481c8afcde3e9fdac741f67c371f3d58b43a4114789f6a2c5c816b9f131128e010973f7ffe91761b311c421d62e02ab95f80ec957c3e3426bdf441
 SHA512 
e807424814840cfbdc37f12e3b4ee9ea79287e1c9ee2fbd8f681346e5f7ed55523529d75c96eadbc7f1029c07086ce6d47bf6bbc125e7083bb67ae8be139ab7f
 DIST eza-0.15.3-manpages.tar.xz 45528 BLAKE2B 

[gentoo-commits] repo/gentoo:master commit in: media-libs/alsa-ucm-conf/files/, media-libs/alsa-ucm-conf/

2024-01-28 Thread Matt Turner
commit: 6baacacb368f24d6b1a4aa7aec2801e399a4c390
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jan 25 19:04:37 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:35:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6baacacb

media-libs/alsa-ucm-conf: Drop old versions

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

 media-libs/alsa-ucm-conf/Manifest  |  2 --
 .../alsa-ucm-conf/alsa-ucm-conf-1.2.10.ebuild  | 20 --
 .../alsa-ucm-conf/alsa-ucm-conf-1.2.8.ebuild   | 21 ---
 .../alsa-ucm-conf/alsa-ucm-conf-1.2.9.ebuild   | 24 --
 .../alsa-ucm-conf-1.2.9-fix-sof-essx8336.patch | 20 --
 5 files changed, 87 deletions(-)

diff --git a/media-libs/alsa-ucm-conf/Manifest 
b/media-libs/alsa-ucm-conf/Manifest
index 11f144f1cef3..3aa687161c7a 100644
--- a/media-libs/alsa-ucm-conf/Manifest
+++ b/media-libs/alsa-ucm-conf/Manifest
@@ -1,3 +1 @@
 DIST alsa-ucm-conf-1.2.10.tar.bz2 44749 BLAKE2B 
215842f1f59c2dea5e3f3fe880dc49d6263998746a50c2591b8a9786ead3afae2c713e179ff6e8caa518b3a8516a1b031872c1fad2a17fbd3afbb0390a803693
 SHA512 
172956a2c127e9afa5be9c6ada43bfa9fda825823f8f6acbe252edef3381afe3adfa3299c1419f04375599be7721a551c6800be99db44b091611aeb824ffcd72
-DIST alsa-ucm-conf-1.2.8.tar.bz2 37843 BLAKE2B 
f2281a3a5d8b4fcbc4c75ce99a911a4ce3230abfa6f6d0aff8e175fe1b870750f43c087339490ed9f4d5ab314fda391e06e41cbed79239a16326a8f2d02ac262
 SHA512 
a15a9ca52c108ee95a421b91f3fad4329f1e9fb1c004a40d5ff1a57d6701bad19a31d5a296426d26439be9b87d2d543ce51588a98402d24c17f0f92aaf1096ca
-DIST alsa-ucm-conf-1.2.9.tar.bz2 42802 BLAKE2B 
fe71790aa8658ab12378baa55f95a03aaebd3eb0aef2535b65b89884de6cb404a75b44fd238d2089e0a005ca81720f3c44d1912452908e97aa75fcda513908cf
 SHA512 
3aced4d4df76044a5525f1217851e05f7ad177389d2008e3e3dd0fb4d2cf72cd0897b140659a7729cc37d5b737c2d0cf5b607df4f576647044accd560d8cb87b

diff --git a/media-libs/alsa-ucm-conf/alsa-ucm-conf-1.2.10.ebuild 
b/media-libs/alsa-ucm-conf/alsa-ucm-conf-1.2.10.ebuild
deleted file mode 100644
index 81cc728dafd4..
--- a/media-libs/alsa-ucm-conf/alsa-ucm-conf-1.2.10.ebuild
+++ /dev/null
@@ -1,20 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="ALSA ucm configuration files"
-HOMEPAGE="https://alsa-project.org/wiki/Main_Page;
-SRC_URI="https://www.alsa-project.org/files/pub/lib/${P}.tar.bz2;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
-
-RDEPEND="!https://alsa-project.org/wiki/Main_Page;
-SRC_URI="https://www.alsa-project.org/files/pub/lib/${P}.tar.bz2;
-LICENSE="BSD"
-SLOT="0"
-
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv sparc x86"
-IUSE=""
-
-RDEPEND="!https://alsa-project.org/wiki/Main_Page;
-SRC_URI="https://www.alsa-project.org/files/pub/lib/${P}.tar.bz2;
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv sparc x86"
-
-RDEPEND="!https://github.com/alsa-project/alsa-ucm-conf/commit/906f692e4ed84dc136c270c05e1b490a554de99b
-
-From 906f692e4ed84dc136c270c05e1b490a554de99b Mon Sep 17 00:00:00 2001
-From: Jaroslav Kysela 
-Date: Thu, 4 May 2023 14:36:49 +0200
-Subject: [PATCH] sof-essx8336: Dmic is not a valid UCM device identifier, use
- Mic
-
-Signed-off-by: Jaroslav Kysela 
 a/ucm2/Intel/sof-essx8336/sof-essx8336.conf
-+++ b/ucm2/Intel/sof-essx8336/sof-essx8336.conf
-@@ -32,7 +32,7 @@ If.devdmic {
-   Haystack "${CardComponents}"
-   Needle "cfg-dmics:"
-   }
--  True.Define.DeviceDmic "Dmic"
-+  True.Define.DeviceDmic "Mic"
- }
- 
- SectionUseCase."HiFi" {



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

2024-01-28 Thread Matt Turner
commit: 03d7cfe8f4e95fb251bb8079202c48ec08f5
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jan 25 19:04:35 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:35:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=03d7

media-libs/alsa-lib: Drop old versions

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

 media-libs/alsa-lib/Manifest   |   2 -
 media-libs/alsa-lib/alsa-lib-1.2.10-r1.ebuild  | 100 -
 media-libs/alsa-lib/alsa-lib-1.2.8-r1.ebuild   |  97 
 media-libs/alsa-lib/alsa-lib-1.2.9.ebuild  |  98 
 .../files/alsa-lib-1.2.8-clang16-macro.patch   |  31 ---
 5 files changed, 328 deletions(-)

diff --git a/media-libs/alsa-lib/Manifest b/media-libs/alsa-lib/Manifest
index c4404eab1825..d9325967f41a 100644
--- a/media-libs/alsa-lib/Manifest
+++ b/media-libs/alsa-lib/Manifest
@@ -1,3 +1 @@
 DIST alsa-lib-1.2.10.tar.bz2 1107007 BLAKE2B 
b2e4f8431e61f5bb56b2b5d124e67d5a68bbca3c647bebfa93f5e5ff092ec9ef3f6cb6315801fcd93e21151784814ff238d357313b8b44f32d4e7c9ee565388f
 SHA512 
4ccbd1dc5a612044571c26290923009e4c3f7959b30a5d0bed47daa68bbefaff9059c4f0fa3bc16f22c1eed2d36f079139369f40243da5921ae4de02a4541939
-DIST alsa-lib-1.2.8.tar.bz2 1091475 BLAKE2B 
e6171ac557db6265e3f02df7bd269eca62d09afaf2c04dc913d3bb217df23a8e66e808ad453fea5ed90d4d9226feb05065ad5d9b3575241b76675ccd27b9b4d4
 SHA512 
865ff05a8f589996f8d63d43a91c961f1b64144f3e1d17c7074b7ac16f25b3fd1c371d46ed63a8cc20fa01e63c76b75f1a9802b56889ae1073854dd050d27688
-DIST alsa-lib-1.2.9.tar.bz2 1094660 BLAKE2B 
ec0c6966802196016679652292a579c6301cce33a2e887fce79cdb80629b6df047269787445cf0645e6cf43d3d2aae8fa57ddad5ab79fc254ee65a0ed695f449
 SHA512 
8f39c8166c3648d46695a9287d9b9a35e5bfffed11d79e868ff7aba92d0fee792e82784186ebeb2a3e44d6b617c916025c7fce9a802565bb8e0dc8fdcce2311a

diff --git a/media-libs/alsa-lib/alsa-lib-1.2.10-r1.ebuild 
b/media-libs/alsa-lib/alsa-lib-1.2.10-r1.ebuild
deleted file mode 100644
index 98cbaa2d28db..
--- a/media-libs/alsa-lib/alsa-lib-1.2.10-r1.ebuild
+++ /dev/null
@@ -1,100 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{10..11} )
-inherit autotools multilib-minimal flag-o-matic python-single-r1
-
-DESCRIPTION="Advanced Linux Sound Architecture Library"
-HOMEPAGE="https://alsa-project.org/wiki/Main_Page;
-if [[ ${PV} == *_p* ]] ; then
-   # Please set correct commit ID for a snapshot release!
-   COMMIT="abe805ed6c7f38e48002e575535afd1f673b9bcd"
-   
SRC_URI="https://git.alsa-project.org/?p=${PN}.git;a=snapshot;h=${COMMIT};sf=tgz
 -> ${P}.tar.gz"
-   S="${WORKDIR}"/${PN}-${COMMIT:0:7}
-else
-   # TODO: Upstream does publish .sig files, so someone could implement 
verify-sig ;)
-   SRC_URI="https://www.alsa-project.org/files/pub/lib/${P}.tar.bz2;
-fi
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux"
-IUSE="alisp debug doc python"
-REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
-
-RDEPEND="
-   media-libs/alsa-topology-conf
-   media-libs/alsa-ucm-conf
-   python? ( ${PYTHON_DEPS} )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="doc? ( >=app-text/doxygen-1.2.6 )"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.1.6-missing_files.patch" # bug #652422
-   "${FILESDIR}/${P}-musl-string.patch" # bug #913573, backport
-   "${FILESDIR}/${P}-ump-header-detection.patch" # bug #913573, backport
-)
-
-pkg_setup() {
-   use python && python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-
-   find . -name Makefile.am -exec sed -i -e '/CFLAGS/s:-g -O2::' {} + || 
die
-   # bug #545950
-   sed -i -e '5s:^$:\nAM_CPPFLAGS = -I$(top_srcdir)/include:' 
test/lsb/Makefile.am || die
-
-   eautoreconf
-}
-
-multilib_src_configure() {
-   # Broken upstream. Could in theory work with -flto-partitions=none
-   # but it's a hack to workaround the real problem and not strictly safe.
-   # bug #616108, bug #669086, and 
https://github.com/alsa-project/alsa-lib/issues/6.
-   # (This bug is closed as of 1.2.9 but there's been no clear actual fix 
to it.
-   # Let us know if you can identify one.)
-   filter-lto
-
-   local myeconfargs=(
-   --disable-maintainer-mode
-   --disable-resmgr
-   --enable-aload
-   --enable-rawmidi
-   --enable-seq
-   --enable-shared
-   --enable-thread-safety
-
-   $(multilib_native_use_enable python)
-   $(use_enable alisp)
-   $(use_with debug)
-   )
-
-   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
-   emake
-
-   if multilib_is_native_abi && use doc; then
-   emake doc
-   grep 

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

2024-01-28 Thread Matt Turner
commit: 2e3183e661fb7850b782fc3d1aea98070b5d44e9
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jan 25 19:04:41 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:35:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e3183e6

sys-firmware/sof-firmware: Drop old versions

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

 sys-firmware/sof-firmware/Manifest |  1 -
 .../sof-firmware/sof-firmware-2023.09.1.ebuild | 33 --
 2 files changed, 34 deletions(-)

diff --git a/sys-firmware/sof-firmware/Manifest 
b/sys-firmware/sof-firmware/Manifest
index 47afc6bfb1a6..422eab2179c4 100644
--- a/sys-firmware/sof-firmware/Manifest
+++ b/sys-firmware/sof-firmware/Manifest
@@ -1,3 +1,2 @@
-DIST sof-firmware-2023.09.1.tar.gz 5451137 BLAKE2B 
8f52d5855cc58cd03fc9a1c0afa69e00ebbd7ff43a7d02401253cf8340d2722c9cb4e5f96d4d4c593fe160d48d5046bed4f4dc8c7813696b8128c65138365cd8
 SHA512 
74a0de0cfc561a273f2f535239a5e23a3bdd7718c1f70e320cf11b58ff499ff437f98aab3171901165d3da4156b4374f5e4259bee152f7d10755b69e98b8ba51
 DIST sof-firmware-2023.09.2.tar.gz 5454975 BLAKE2B 
c5ac62245abbf2354d109070125c9e25c80d9a66c341a9e34e53b716c1cb4b15f9cc0ff18d005aba673621a5421824f9a8ce3655aaeb12e182b96ac2f1d91c54
 SHA512 
dbf9385c1900f0b0bda7b8b6a9d1a3b4e5556f0570a1b1b794104179a2e1a12f1e896e36062c4179d7ad1a55078cbbfb348eb10667d736ad99b6cd23c4af0832
 DIST sof-firmware-2023.12.tar.gz 5427762 BLAKE2B 
48169378609119555f9b655599cef55e5722be71fdfc8fb71b699188fcb3f62a68e217fc3fec8859cd3e1c252f046208d5123c961dd824bd9b6559bd1fb72325
 SHA512 
ed43e7597c93140b15499ba17bae1866dcf1e2959d910e81b3831e4db2224a1dcff790ef21afcd610d7cc9309251a08351bae1c959ded18e5e28a6b24ae99506

diff --git a/sys-firmware/sof-firmware/sof-firmware-2023.09.1.ebuild 
b/sys-firmware/sof-firmware/sof-firmware-2023.09.1.ebuild
deleted file mode 100644
index f755adebdd3d..
--- a/sys-firmware/sof-firmware/sof-firmware-2023.09.1.ebuild
+++ /dev/null
@@ -1,33 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DESCRIPTION="Sound Open Firmware (SOF) binary files"
-HOMEPAGE="https://www.sofproject.org https://github.com/thesofproject/sof 
https://github.com/thesofproject/sof-bin;
-SRC_URI="https://github.com/thesofproject/sof-bin/releases/download/v${PV}/sof-bin-${PV}.tar.gz
 -> ${P}.tar.gz"
-S="${WORKDIR}"/sof-bin-${PV}
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64"
-
-# Needed for sof-ctl
-RDEPEND="media-libs/alsa-lib"
-
-QA_PREBUILT="usr/bin/sof-ctl
-   usr/bin/sof-logger
-   usr/bin/sof-probes"
-
-src_install() {
-   dodir /lib/firmware/intel
-   dodir /usr/bin
-   FW_DEST="${D}/lib/firmware/intel" TOOLS_DEST="${D}/usr/bin" 
"${S}/install.sh" || die
-}
-
-pkg_preinst() {
-   local sofpath="${EROOT}/lib/firmware/intel/sof"
-   if [[ ! -L "${sofpath}" && -d "${sofpath}" ]] ; then
-   rm -r "${sofpath}" || die
-   fi
-}



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

2024-01-28 Thread Matt Turner
commit: d2add6bf8454e0c43e4ae4e2bb435734b59875b3
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jan 25 19:04:39 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:35:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2add6bf

media-sound/alsa-utils: Drop old versions

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

 media-sound/alsa-utils/Manifest   |  2 -
 media-sound/alsa-utils/alsa-utils-1.2.10.ebuild   | 91 ---
 media-sound/alsa-utils/alsa-utils-1.2.8-r2.ebuild | 91 ---
 media-sound/alsa-utils/alsa-utils-1.2.9.ebuild| 91 ---
 4 files changed, 275 deletions(-)

diff --git a/media-sound/alsa-utils/Manifest b/media-sound/alsa-utils/Manifest
index b23779cf2eb9..e5c18097b42c 100644
--- a/media-sound/alsa-utils/Manifest
+++ b/media-sound/alsa-utils/Manifest
@@ -1,4 +1,2 @@
 DIST alsa-utils-1.2.10-patches.tar.xz 4984 BLAKE2B 
aa46afe25e709905285c3255d80a086b843c078d12385e8787812cb33ec0f16bff5fa1f35867166824978c99354cf74d10f2596e026b3b10b0180049486ea15f
 SHA512 
d26e7276ac6636ac71d8bbaa9978999e13ce36f228c9854e90d29a63fae3cc0c3f8b2fb25effdd461d2b77e91fda3069987fa8355f5ef6f22a37af282e26ff6c
 DIST alsa-utils-1.2.10.tar.bz2 1625707 BLAKE2B 
077b4ad090c1ab40dd4fa22db01ae2a080ca849a5564dfe612654993297c80bd3584541c7e68aaad56c4c05538ba0de449e4677b1c4a9dfe56d8e11706c4ca35
 SHA512 
22adedf6d491d7768d24f054262a9c12bc952049db8374e104c0477ebf84266dcbeb0a2a3a1765b89958073d341f64dedbae63e3cae66f4983a0424e5cb3243f
-DIST alsa-utils-1.2.8.tar.bz2 1560162 BLAKE2B 
4b9676957e775be51076b4798dfd384db4eea440c682899024034d3dd593ba24f1d42b8d742c312e041a37f0dbbc12b16635d79f6e6633a3459cc21f80739b5e
 SHA512 
882e6f67467596ed273bf554fcce87d8ef287806bbdabd6c103de4980981f9e2102fb3800c6e8628ee8e86ffb165c1c92f9370c8145f28a6cb7cca563942330b
-DIST alsa-utils-1.2.9.tar.bz2 1598424 BLAKE2B 
9d75f63c7ff8b0d7ee835a1ad8fc242dee9b59770b1ad0ff9cd233caf50ac844323fb2ebb8e649f03a0a30a161ec72cba472ac79e390c3f0eb6e2a184d8f576c
 SHA512 
f46e13fd57ed05ee38d3fa655e57b14335ecf0664dbe03275808383d87d28df153a81151e2e9d8786625f09929c567c89e145508a706a70eeb91ac1b11fb2fd4

diff --git a/media-sound/alsa-utils/alsa-utils-1.2.10.ebuild 
b/media-sound/alsa-utils/alsa-utils-1.2.10.ebuild
deleted file mode 100644
index 67972bd4c49e..
--- a/media-sound/alsa-utils/alsa-utils-1.2.10.ebuild
+++ /dev/null
@@ -1,91 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd udev
-
-DESCRIPTION="Advanced Linux Sound Architecture Utils (alsactl, alsamixer, 
etc.)"
-HOMEPAGE="https://alsa-project.org/wiki/Main_Page;
-SRC_URI="https://www.alsa-project.org/files/pub/utils/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
-IUSE="bat doc +libsamplerate ieee1394 +ncurses nls selinux"
-
-DEPEND="
-   >=media-libs/alsa-lib-${PV}
-   libsamplerate? ( media-libs/libsamplerate )
-   ieee1394? ( media-libs/libffado )
-   ncurses? ( >=sys-libs/ncurses-5.7-r7:= )
-   bat? ( sci-libs/fftw:= )
-"
-RDEPEND="
-   ${DEPEND}
-   selinux? ( sec-policy/selinux-alsa )
-"
-BDEPEND="
-   virtual/pkgconfig
-   doc? ( app-text/xmlto )
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.1.8-missing_header.patch
-)
-
-src_configure() {
-   export ac_cv_lib_ffado_ffado_streaming_init=$(usex ieee1394)
-
-   local myeconfargs=(
-   # --disable-alsaconf because it doesn't work with 
sys-apps/kmod, bug #456214
-   --disable-alsaconf
-   --disable-maintainer-mode
-   --with-asound-state-dir="${EPREFIX}"/var/lib/alsa
-   --with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
-   --with-udev-rules-dir="${EPREFIX}/$(get_udevdir)"/rules.d
-   $(use_enable bat)
-   $(use_enable libsamplerate alsaloop)
-   $(use_enable ncurses alsamixer)
-   $(use_enable nls)
-   $(usev !doc '--disable-xmlto')
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-   dodoc seq/*/README.*
-
-   newinitd "${FILESDIR}"/alsasound.initd-r8 alsasound
-   newconfd "${FILESDIR}"/alsasound.confd-r4 alsasound
-
-   keepdir /var/lib/alsa
-
-   # ALSA lib parser.c:1266:(uc_mgr_scan_master_configs) error: could not
-   # scan directory /usr/share/alsa/ucm: No such file or directory
-   # alsaucm: unable to obtain card list: No such file or directory
-   keepdir /usr/share/alsa/ucm
-
-   find "${ED}" -type f -name '*.la' -delete || die
-}
-
-pkg_postinst() {
-   udev_reload
-
-   if [[ -z ${REPLACING_VERSIONS} ]] && ! systemd_is_booted ; then
-   elog
-   elog "To take advantage of the init script, and automate the 
process of"
-   elog "saving and 

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

2024-01-28 Thread Matt Turner
commit: a84417a69ec44a16a577198d384df410ca6ea359
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jan 25 19:04:38 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:35:19 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a84417a6

media-sound/alsa-tools: Drop old versions

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

 media-sound/alsa-tools/alsa-tools-1.2.5.ebuild | 152 -
 1 file changed, 152 deletions(-)

diff --git a/media-sound/alsa-tools/alsa-tools-1.2.5.ebuild 
b/media-sound/alsa-tools/alsa-tools-1.2.5.ebuild
deleted file mode 100644
index 00584099dc58..
--- a/media-sound/alsa-tools/alsa-tools-1.2.5.ebuild
+++ /dev/null
@@ -1,152 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic xdg
-
-DESCRIPTION="Advanced Linux Sound Architecture tools"
-HOMEPAGE="https://alsa-project.org/wiki/Main_Page;
-SRC_URI="https://www.alsa-project.org/files/pub/tools/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0.9"
-KEYWORDS="~alpha amd64 ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv sparc x86"
-
-IUSE="fltk gtk alsa_cards_hdsp alsa_cards_hdspm alsa_cards_mixart
-alsa_cards_vx222 alsa_cards_usb-usx2y alsa_cards_sb16 alsa_cards_sbawe
-alsa_cards_emu10k1 alsa_cards_emu10k1x alsa_cards_ice1712
-alsa_cards_rme32 alsa_cards_rme96 alsa_cards_sscape alsa_cards_pcxhr"
-
-DEPEND=">=media-libs/alsa-lib-${PV}
-   >=dev-python/pyalsa-1.0.26
-   fltk? ( >=x11-libs/fltk-1.3.0:1 )
-   gtk? (
-   dev-libs/gobject-introspection
-   x11-libs/gtk+:2
-   x11-libs/gtk+:3
-   )" #468294
-RDEPEND="${DEPEND}
-   gtk? ( media-fonts/font-misc-misc )" #456114
-BDEPEND="
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   "${FILESDIR}"/envy24control-config-dir.patch
-)
-
-pkg_setup() {
-   ALSA_TOOLS=(
-   seq/sbiload
-   us428control
-   hwmixvolume
-   hda-verb
-   $(usex alsa_cards_mixart mixartloader '')
-   $(usex alsa_cards_vx222 vxloader '')
-   $(usex alsa_cards_usb-usx2y usx2yloader '')
-   $(usex alsa_cards_pcxhr pcxhrloader '')
-   $(usex alsa_cards_sscape sscape_ctl '')
-   )
-
-   if use gtk; then
-   ALSA_TOOLS+=(
-   echomixer
-   hdajackretask
-   $(usex alsa_cards_ice1712 envy24control '')
-   )
-   # Perhaps a typo the following && logic?
-   if use alsa_cards_rme32 && use alsa_cards_rme96 ; then
-   ALSA_TOOLS+=( rmedigicontrol )
-   fi
-   fi
-
-   if use alsa_cards_hdsp || use alsa_cards_hdspm ; then
-   ALSA_TOOLS+=(
-   hdsploader
-   $(usex fltk 'hdspconf hdspmixer' '')
-   )
-   fi
-
-   if use alsa_cards_sb16 || use alsa_cards_sbawe ; then
-   ALSA_TOOLS+=( sb16_csp )
-   fi
-
-   if use alsa_cards_emu10k1 || use alsa_cards_emu10k1x; then
-   ALSA_TOOLS+=( as10k1 ld10k1 )
-   fi
-}
-
-src_prepare() {
-   default
-
-   # This block only deals with the tools that still use GTK and the
-   # AM_PATH_GTK macro.
-   for dir in echomixer envy24control rmedigicontrol; do
-   has "${dir}" "${ALSA_TOOLS[*]}" || continue
-   pushd "${dir}" &> /dev/null
-   eautoreconf
-   popd &> /dev/null
-   done
-
-   # This block deals with the tools that are being patched
-   for dir in hdspconf; do
-   has "${dir}" "${ALSA_TOOLS[*]}" || continue
-   pushd "${dir}" &> /dev/null
-   eautoreconf
-   popd &> /dev/null
-   done
-
-   elibtoolize
-}
-
-src_configure() {
-   if use fltk; then
-   # hdspmixer requires fltk
-   append-ldflags "-L$(dirname $(fltk-config --libs))"
-   append-flags "-I$(fltk-config --includedir)"
-   fi
-
-   local f
-   for f in ${ALSA_TOOLS[@]} ; do
-   cd "${S}/${f}" || die
-   case "${f}" in
-   echomixer,envy24control,rmedigicontrol )
-   econf --with-gtk2
-   ;;
-   * )
-   econf
-   ;;
-   esac
-   done
-}
-
-src_compile() {
-   local f
-   for f in ${ALSA_TOOLS[@]} ; do
-   cd "${S}/${f}" || die
-   emake
-   done
-}
-
-src_install() {
-   local f
-   for f in ${ALSA_TOOLS[@]} ; do
-   # Install the main stuff
-   cd "${S}/${f}" || die
-   # hotplugdir is for usx2yloader/Makefile.am
-   emake DESTDIR="${D}" hotplugdir=/lib/firmware install
-
-   # 

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

2024-01-28 Thread Matt Turner
commit: a80461cbf4b319b969e853b971e26975cb21dfe6
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan 24 17:50:59 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:34:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a80461cb

dev-libs/girara: Drop old versions

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

 dev-libs/girara/Manifest|  1 -
 dev-libs/girara/girara-0.3.9.ebuild | 46 -
 dev-libs/girara/girara-0.4.0.ebuild | 46 -
 3 files changed, 93 deletions(-)

diff --git a/dev-libs/girara/Manifest b/dev-libs/girara/Manifest
index ba5e410bd3f6..7db83ba1feba 100644
--- a/dev-libs/girara/Manifest
+++ b/dev-libs/girara/Manifest
@@ -1,3 +1,2 @@
-DIST girara-0.3.9.tar.xz 60832 BLAKE2B 
e577c4273c2d8f4d51e0ee283184ecd2b5b48877996f95aa5cec83ad716efd4946508203d3108d451492ff5d118d965ca98d86f4e0d9b31fcc1cc0b2266b9511
 SHA512 
b5399b26389cff0c6aa6f70687b53a99243d38d66ec401f48de49391c88b31dc3287366819288c405051d14f4f778db952953d48be51ac47d90d9f3604c94708
 DIST girara-0.4.0.tar.xz 60804 BLAKE2B 
4653986945b89c87c597f20425c0009473679578b9a92fd3f4480aa2decc5dcbb2c1a2b0db07bef67c818c2e2940b6c363da0020fa24e7001be13cb68e2ba945
 SHA512 
a8753231cb9de7d60ddaf6e7b19537f23ce447be5885725c982e395068466089fca46980d413cc4ea8e4a8059ccd4615366297600bcf7ef5bddf02d649703dec
 DIST girara-0.4.2.tar.xz 61468 BLAKE2B 
7be287045c269c8a1f2b51b14f0b7f840d7d5929f81c27410a86653943f73b07a1ce16c5a5fe420e7df6f02d4f426b48a622d4cf483dc5065cd8551e273d8fcf
 SHA512 
70dddf8998e37acce25325ddeb5a9b5c5844669b51320733d9d7a572831f28c72207aa6d608b7a856969d7fd0785cbab076596b814eb2e9ef37bf49bb5d476ae

diff --git a/dev-libs/girara/girara-0.3.9.ebuild 
b/dev-libs/girara/girara-0.3.9.ebuild
deleted file mode 100644
index 958363f1019e..
--- a/dev-libs/girara/girara-0.3.9.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson virtualx
-
-DESCRIPTION="UI library that focuses on simplicity and minimalism"
-HOMEPAGE="https://pwmt.org/projects/girara/;
-
-if [[ ${PV} == *999 ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git;
-   EGIT_BRANCH="develop"
-else
-   SRC_URI="https://pwmt.org/projects/girara/download/${P}.tar.xz;
-   KEYWORDS="amd64 arm ~riscv x86"
-fi
-
-LICENSE="ZLIB"
-SLOT="0"
-IUSE="doc libnotify test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="dev-libs/glib:2
-   dev-libs/json-glib:=
-   >=x11-libs/gtk+-3.20:3
-   libnotify? ( x11-libs/libnotify )"
-RDEPEND="${DEPEND}"
-BDEPEND="doc? ( app-text/doxygen )
-   test? ( dev-libs/check )
-   virtual/pkgconfig"
-
-src_configure() {
-   local emesonargs=(
-   -Djson=enabled
-   -Ddocs=$(usex doc enabled disabled)
-   -Dnotify=$(usex libnotify enabled disabled)
-   )
-   meson_src_configure
-}
-
-src_test() {
-   virtx meson_src_test
-}

diff --git a/dev-libs/girara/girara-0.4.0.ebuild 
b/dev-libs/girara/girara-0.4.0.ebuild
deleted file mode 100644
index 958363f1019e..
--- a/dev-libs/girara/girara-0.4.0.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2024 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit meson virtualx
-
-DESCRIPTION="UI library that focuses on simplicity and minimalism"
-HOMEPAGE="https://pwmt.org/projects/girara/;
-
-if [[ ${PV} == *999 ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://git.pwmt.org/pwmt/${PN}.git;
-   EGIT_BRANCH="develop"
-else
-   SRC_URI="https://pwmt.org/projects/girara/download/${P}.tar.xz;
-   KEYWORDS="amd64 arm ~riscv x86"
-fi
-
-LICENSE="ZLIB"
-SLOT="0"
-IUSE="doc libnotify test"
-
-RESTRICT="!test? ( test )"
-
-DEPEND="dev-libs/glib:2
-   dev-libs/json-glib:=
-   >=x11-libs/gtk+-3.20:3
-   libnotify? ( x11-libs/libnotify )"
-RDEPEND="${DEPEND}"
-BDEPEND="doc? ( app-text/doxygen )
-   test? ( dev-libs/check )
-   virtual/pkgconfig"
-
-src_configure() {
-   local emesonargs=(
-   -Djson=enabled
-   -Ddocs=$(usex doc enabled disabled)
-   -Dnotify=$(usex libnotify enabled disabled)
-   )
-   meson_src_configure
-}
-
-src_test() {
-   virtx meson_src_test
-}



[gentoo-commits] repo/gentoo:master commit in: gui-wm/dwl/, gui-wm/dwl/files/

2024-01-28 Thread Matt Turner
commit: f8c2458342f6432f89815c9882dfe318263cc34d
Author: Matt Turner  gentoo  org>
AuthorDate: Wed Jan 24 17:51:02 2024 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Jan 28 17:34:25 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f8c24583

gui-wm/dwl: Drop old versions

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

 gui-wm/dwl/Manifest  |  1 -
 gui-wm/dwl/dwl-0.4-r1.ebuild | 81 
 gui-wm/dwl/files/dwl-0.4-do-not-use-libX11.patch | 60 --
 3 files changed, 142 deletions(-)

diff --git a/gui-wm/dwl/Manifest b/gui-wm/dwl/Manifest
index ed31116f0689..63f268c2d1ec 100644
--- a/gui-wm/dwl/Manifest
+++ b/gui-wm/dwl/Manifest
@@ -1,2 +1 @@
-DIST dwl-0.4.gh.tar.gz 54718 BLAKE2B 
22aac990ed71bcb0be0e2ded7d335c3fb2ffa56d0185e4f15119f54d7dd28ce34c3d320f0d448d66c0dd829c036f22367706c4db1bd4a7e2db2dadf410fd
 SHA512 
8db7e4d9559f57232f9dedc1645458cf504c1d56af93bfe3930ab4734dfe898b0ef7b86c987ec908afa43473fab4bef424abd0036645461dbefeb6ac3e2d0c5f
 DIST dwl-v0.5.tar.gz 57363 BLAKE2B 
6dce89cbfa1aa1946983897bed5ac16619ac237e0f7092b588847315b849392b83643839dc5386c5bd73a36e5da55a281696a6ef13dcaec8345cb4e495c5e3b7
 SHA512 
7bd292559b0ecafc54bf1c1ba0c3b6b0417e8bd03bb0058f492b87295c92b50932e25621cc5f804c38ad06ffadad7bb8017872fade4a04bf617b1d4f1993aae8

diff --git a/gui-wm/dwl/dwl-0.4-r1.ebuild b/gui-wm/dwl/dwl-0.4-r1.ebuild
deleted file mode 100644
index 14e10e810266..
--- a/gui-wm/dwl/dwl-0.4-r1.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 2022-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit savedconfig toolchain-funcs
-
-MY_P="${PN}-v${PV}"
-WLROOTS_SLOT="0/16"
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/djpohly/dwl;
-   inherit git-r3
-
-   # -r0: main (latest stable wlroots release)
-   # -r1: wlroots-next (wlroots-)
-   case ${PVR} in
-   )
-   EGIT_BRANCH=main
-   ;;
-   -r1)
-   EGIT_BRANCH=wlroots-next
-   WLROOTS_SLOT="0/"
-   ;;
-   esac
-else
-   
SRC_URI="https://github.com/djpohly/${PN}/releases/download/v${PV}/${MY_P}.tar.gz
 -> ${P}.gh.tar.gz"
-   S="${WORKDIR}/${MY_P}"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="dwm for Wayland"
-HOMEPAGE="https://github.com/djpohly/dwl;
-
-LICENSE="CC0-1.0 GPL-3+ MIT"
-SLOT="0"
-IUSE="X"
-
-PATCHES=( "${FILESDIR}/${P}-do-not-use-libX11.patch" )
-
-RDEPEND="
-   dev-libs/libinput:=
-   dev-libs/wayland
-   gui-libs/wlroots:${WLROOTS_SLOT}[libinput(+),X?]
-   x11-libs/libxkbcommon
-   X? (
-   x11-libs/libxcb:=
-   x11-libs/xcb-util-wm
-   )
-"
-
-# uses 
-DEPEND="
-   ${RDEPEND}
-   sys-kernel/linux-headers
-"
-BDEPEND="
-   dev-libs/wayland-protocols
-   dev-util/wayland-scanner
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   restore_config config.h
-
-   default
-}
-
-src_compile() {
-   emake PKG_CONFIG="$(tc-getPKG_CONFIG)" CC="$(tc-getCC)" \
-   XWAYLAND="$(usev X -DXWAYLAND)" XLIBS="$(usev X "xcb 
xcb-icccm")" dwl
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" install
-   dodoc README.md
-
-   insinto /usr/share/wayland-session
-   doins "${FILESDIR}/dwl.desktop"
-
-   save_config config.h
-}

diff --git a/gui-wm/dwl/files/dwl-0.4-do-not-use-libX11.patch 
b/gui-wm/dwl/files/dwl-0.4-do-not-use-libX11.patch
deleted file mode 100644
index 65ef8a5b8186..
--- a/gui-wm/dwl/files/dwl-0.4-do-not-use-libX11.patch
+++ /dev/null
@@ -1,60 +0,0 @@
-From 1a1ca779c7d79747dea355d03db74cd1d73787c7 Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Leonardo=20Hern=C3=A1ndez=20Hern=C3=A1ndez?=
- 
-Date: Mon, 9 Oct 2023 21:35:49 -0600
-Subject: [PATCH] use  instead of 
-MIME-Version: 1.0
-Content-Type: text/plain; charset=UTF-8
-Content-Transfer-Encoding: 8bit
-
-Signed-off-by: Leonardo Hernández Hernández 

- dwl.c | 10 +-
- 1 file changed, 5 insertions(+), 5 deletions(-)
-
-diff --git a/dwl.c b/dwl.c
-index 19bb6ce..92a1d3e 100644
 a/dwl.c
-+++ b/dwl.c
-@@ -54,7 +54,7 @@
- #include 
- #ifdef XWAYLAND
- #include 
--#include 
-+#include 
- #include 
- #endif
- 
-@@ -387,14 +387,14 @@ static struct wl_listener session_lock_mgr_destroy = 
{.notify = destroysessionmg
- static void activatex11(struct wl_listener *listener, void *data);
- static void configurex11(struct wl_listener *listener, void *data);
- static void createnotifyx11(struct wl_listener *listener, void *data);
--static Atom getatom(xcb_connection_t *xc, const char *name);
-+static xcb_atom_t getatom(xcb_connection_t *xc, const char *name);
- static void sethints(struct wl_listener *listener, void *data);
- static void sigchld(int unused);
- static void 

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

2024-01-28 Thread Eray Aslan
commit: f79bf2883fc29703782f6fae82c4100d242a5713
Author: Eray Aslan  gentoo  org>
AuthorDate: Sun Jan 28 18:08:04 2024 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Sun Jan 28 18:08:04 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f79bf288

dev-db/lmdb: QA: remove empty global assignment

Signed-off-by: Eray Aslan  gentoo.org>

 dev-db/lmdb/lmdb-0.9.31.ebuild | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/dev-db/lmdb/lmdb-0.9.31.ebuild b/dev-db/lmdb/lmdb-0.9.31.ebuild
index ca2062f8f74a..efab5af6ffc4 100644
--- a/dev-db/lmdb/lmdb-0.9.31.ebuild
+++ b/dev-db/lmdb/lmdb-0.9.31.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2023 Gentoo Authors
+# Copyright 1999-2024 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -15,9 +15,6 @@ SLOT="0/${PV}"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos 
~x64-macos ~x64-solaris"
 IUSE="static-libs"
 
-DEPEND=""
-RDEPEND=""
-
 S="${WORKDIR}/openldap-${MY_P}/libraries/liblmdb"
 
 src_prepare() {



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

2024-01-28 Thread Eray Aslan
commit: c17b02b8657cd104a9f68f9106cf368984396aca
Author: Eray Aslan  gentoo  org>
AuthorDate: Sun Jan 28 19:06:54 2024 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Sun Jan 28 19:07:06 2024 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c17b02b8

app-misc/mime-types: mark ALLARCHES

Signed-off-by: Eray Aslan  gentoo.org>

 app-misc/mime-types/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-misc/mime-types/metadata.xml b/app-misc/mime-types/metadata.xml
index 84a481f19a6b..902d856ebaca 100644
--- a/app-misc/mime-types/metadata.xml
+++ b/app-misc/mime-types/metadata.xml
@@ -9,4 +9,5 @@
   Enable mime-types support for
 www-servers/nginx package
 
+
 



[gentoo-commits] repo/proj/guru:dev commit in: gui-apps/nwg-icon-picker/

2024-01-28 Thread Pascal Jäger
commit: ab510e2c16d54d79096401f7b1b873b357978827
Author: Pascal Jäger  leimstift  de>
AuthorDate: Sun Jan 28 19:00:30 2024 +
Commit: Pascal Jäger  leimstift  de>
CommitDate: Sun Jan 28 19:00:30 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ab510e2c

gui-apps/nwg-icon-picker: add 0.1.1

Signed-off-by: Pascal Jäger  leimstift.de>

 gui-apps/nwg-icon-picker/Manifest  |  1 +
 .../nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild   | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/gui-apps/nwg-icon-picker/Manifest 
b/gui-apps/nwg-icon-picker/Manifest
index c59f042fb8..f667098a44 100644
--- a/gui-apps/nwg-icon-picker/Manifest
+++ b/gui-apps/nwg-icon-picker/Manifest
@@ -1 +1,2 @@
 DIST nwg-icon-picker-0.1.0.tar.gz 5616 BLAKE2B 
e725947cb524ebb74259d99ea46a432773ac25fb7ad4e14fc022c9be0e5a3b138f179943adc85cecd8fcb287ca817fd302b0b155ae6e23caef291d36020db9e5
 SHA512 
5192e8b06340b2ecf6ab5d1a343440f398299451362d63bb75eabd574c44c9c5c08f76122d38c426594bedd24443944b86ceeb9e779a9db2a4610d36b0aff1bb
+DIST nwg-icon-picker-0.1.1.tar.gz 5807 BLAKE2B 
7a11a9231246841d8453f5336108264387ed3216e1cba542f7c58efeec691783cfb7faff4c579a88e7f709c99600cdacd7a1c799b8243a5e009f0be32503da70
 SHA512 
acad6452dc7e6313a0c16519eabd8d1cb71903bdda361fc9fc35352f49207cfa5c838e28e34587492068d8f97491cf436b1a8208c0cf177556a3d82e8d93

diff --git a/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild 
b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild
new file mode 100644
index 00..992d7ee1da
--- /dev/null
+++ b/gui-apps/nwg-icon-picker/nwg-icon-picker-0.1.1.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2024 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=setuptools
+inherit desktop distutils-r1 xdg-utils
+
+if [[ "${PV}" ==  ]]
+then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/nwg-piotr/nwg-icon-picker.git;
+else
+   
SRC_URI="https://github.com/nwg-piotr/nwg-icon-picker/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64"
+fi
+
+DESCRIPTION="GTK icon chooser with a text search option"
+HOMEPAGE="https://github.com/nwg-piotr/nwg-icon-picker;
+LICENSE="MIT"
+
+SLOT="0"
+
+RDEPEND="
+   x11-libs/gtk+:3
+   dev-python/pygobject[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+python_install_all() {
+   distutils-r1_python_install_all
+   domenu nwg-icon-picker.desktop
+   doicon nwg-icon-picker.svg
+}
+
+pkg_postinst() {
+   xdg_desktop_database_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+}



[gentoo-commits] repo/proj/guru:dev commit in: app-misc/nwg-shell-wallpapers/

2024-01-28 Thread Pascal Jäger
commit: 53e439d9ea961e8aa3fc79ebb6beb8adc4321cc2
Author: Pascal Jäger  leimstift  de>
AuthorDate: Sun Jan 28 19:05:17 2024 +
Commit: Pascal Jäger  leimstift  de>
CommitDate: Sun Jan 28 19:05:17 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=53e439d9

app-misc/nwg-shell-wallpapers: drop 1.1

Signed-off-by: Pascal Jäger  leimstift.de>

 app-misc/nwg-shell-wallpapers/Manifest|  1 -
 .../nwg-shell-wallpapers-1.1.ebuild   | 19 ---
 2 files changed, 20 deletions(-)

diff --git a/app-misc/nwg-shell-wallpapers/Manifest 
b/app-misc/nwg-shell-wallpapers/Manifest
index b1c4ad1eca..7908fa2dea 100644
--- a/app-misc/nwg-shell-wallpapers/Manifest
+++ b/app-misc/nwg-shell-wallpapers/Manifest
@@ -1,3 +1,2 @@
-DIST nwg-shell-wallpapers-1.1.tar.gz 18835687 BLAKE2B 
73e6659edfcd1d015717dfbedc85373278b8a7ec78a10592b495117018930dc23a3e36f23885a78625c2bfc98074c2ce7a6a8152c57da46ecadd1534494e49ea
 SHA512 
88e0a1f54b3b55ce9833ab793719d6326bcf8bafd2b84c469b68b6b4be3970ae80dbf45cd444f9cf5fdd89fc3cf6036a7312112fa7fca33bb9eedf9205e32613
 DIST nwg-shell-wallpapers-1.3.tar.gz 14905039 BLAKE2B 
71856c2961cfbbb3b2c86e686df63320ddff9357fadbe00732d1dce33779a4f690d3b3bf3f1188cee20a0608c138e09494954285a7d2ce5da363ae1563a43045
 SHA512 
dc3a72f57dbc288841dbe4d4ebbdb4013d620a18acdb9c3e22e3af06fa481db2aeb98d845a27e86a421b9658f451de99bd4f7e4759b97d32d1124e8014097f90
 DIST nwg-shell-wallpapers-1.4.tar.gz 14905267 BLAKE2B 
a1afec9595f44b64f92e2275df807678ccfc1ddb6157e583bbebdd3e3d01cb1bee3761dadb65c636189f2cd0608ecec59daf4900894b7005ebfd7bf06d35590a
 SHA512 
8cf4f8ee316084f5b1a67b150cd560c29caf845e7359e45f9976fb3f9cd3c7ae22dcb113854f4539e04443a2dc37b5cb134bbad04d090cabedb2c0a9db4d8611

diff --git a/app-misc/nwg-shell-wallpapers/nwg-shell-wallpapers-1.1.ebuild 
b/app-misc/nwg-shell-wallpapers/nwg-shell-wallpapers-1.1.ebuild
deleted file mode 100644
index 6ab9adfad8..00
--- a/app-misc/nwg-shell-wallpapers/nwg-shell-wallpapers-1.1.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-SRC_URI="https://github.com/nwg-piotr/nwg-shell-wallpapers/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
-KEYWORDS="~amd64"
-
-DESCRIPTION="Selection of wallpapers contributed to the nwg-shell project"
-HOMEPAGE="https://github.com/nwg-piotr/nwg-shell-wallpapers;
-LICENSE="MIT"
-SLOT="0"
-
-DEPEND=""
-
-src_install() {
-   insinto /usr/share/backgrounds/nwg-shell
-   doins wallpapers/*
-}



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

2024-01-28 Thread Pascal Jäger
commit: 624ce9ca641d319c2ef351c5d17ad2d5b22df57c
Author: Pascal Jäger  leimstift  de>
AuthorDate: Sun Jan 28 19:12:30 2024 +
Commit: Pascal Jäger  leimstift  de>
CommitDate: Sun Jan 28 19:12:30 2024 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=624ce9ca

gui-apps/nwg-menu: add 0.1.2

Signed-off-by: Pascal Jäger  leimstift.de>

 gui-apps/nwg-menu/Manifest  | 21 +
 gui-apps/nwg-menu/nwg-menu-0.1.2.ebuild | 84 +
 2 files changed, 105 insertions(+)

diff --git a/gui-apps/nwg-menu/Manifest b/gui-apps/nwg-menu/Manifest
index c800dc9932..639b340a5e 100644
--- a/gui-apps/nwg-menu/Manifest
+++ b/gui-apps/nwg-menu/Manifest
@@ -4,22 +4,43 @@ DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.mod 34 
BLAKE2B 7e09c2779bf7a84
 DIST github.com%2Fdavecgh%2Fgo-spew%2F@v%2Fv1.1.0.zip 60546 BLAKE2B 
e775860f49c6ee09a6c48902d38fdf5d2d77af4cd405d8d303902170e46493301d4aa873a48b4d12a16d92dafaa65290de1fd3a42545025fbfc82f15a3881e8d
 SHA512 
53dc5484f488ae1f8d0eb672c3431bbf9fce33dfcee83dda7929103e3650559cf703f601716984a640422f01cc640860dba0b47e16aef04d0d2452a266fefbf9
 DIST 
github.com%2Fdlasky%2Fgotk3-layershell%2F@v%2Fv0.0.0-20210331230524-5cca0b819261.mod
 120 BLAKE2B 
20c762cdf8941a400d33c77d7ac4f800b7598a5003775f4ab459f943f011048ae48db2587af03bfdaed9941d60c6764142d741545057958fe68a8223068d18bd
 SHA512 
de15195276d5a17840e08ca1dc3bd02cb69802d495abd12d81a01c3aa6f8ac540e765204248d7e0a83e99c666e925c003dff3f444f3be6e8a36b6b556bfa9927
 DIST 
github.com%2Fdlasky%2Fgotk3-layershell%2F@v%2Fv0.0.0-20210331230524-5cca0b819261.zip
 3678 BLAKE2B 
a5dbd076df021bc1d7dd8ed4a96ed5184562c45d3296f8ffb9f62da59f7dc8b09a00115e944236f7c55f5091642a71fe73489354f0bb6e302a4f9ad108f9f0e9
 SHA512 
57d5ada5decc9019a20e0df36762f3fffecf77f9d08e7d3de18f9c99154572fb3c5a203c600fd8011f2bcfea8f91c5a2bf39d866c331045120cc0f3dbc52e848
+DIST 
github.com%2Fdlasky%2Fgotk3-layershell%2F@v%2Fv0.0.0-20210827021656-e6ecab2731f7.mod
 90 BLAKE2B 
b8f340b487e8df1c3d35b380cf1d48fda80812d38939d8739a6a0048f8f6d90b03e23c34672edfc744c5d463a5174f25f522fea5fabd7d7a7544700b032e35ad
 SHA512 
973282445fc5252760021848609aa6ac8dbd7571756eff402bd5c705e344e5969ea6a658c0aa21da8a97b9d20b2edf70125eb6013a9c42b01f57e59d4d21ad99
+DIST 
github.com%2Fdlasky%2Fgotk3-layershell%2F@v%2Fv0.0.0-20210827021656-e6ecab2731f7.zip
 2336902 BLAKE2B 
86cac68fbad1ccaf7e5975da9c7edafac80526cfe26f86e4051e3a21b26a46a7de8b7969f20d8d9ba588ab7bbd602069472fc009843d4ebaed9f3bd63bdd8564
 SHA512 
232285f641fbd58b6148638c5cbfe84506839337c064858fb332275587dc207b9a316f8bb180108c0b2495d24cfe6629b1ca0e7a45da657ff76a43753b047f83
+DIST 
github.com%2Fdlasky%2Fgotk3-layershell%2F@v%2Fv0.0.0-20230802002603-b0c42cd8474f.mod
 90 BLAKE2B 
b8f340b487e8df1c3d35b380cf1d48fda80812d38939d8739a6a0048f8f6d90b03e23c34672edfc744c5d463a5174f25f522fea5fabd7d7a7544700b032e35ad
 SHA512 
973282445fc5252760021848609aa6ac8dbd7571756eff402bd5c705e344e5969ea6a658c0aa21da8a97b9d20b2edf70125eb6013a9c42b01f57e59d4d21ad99
+DIST 
github.com%2Fdlasky%2Fgotk3-layershell%2F@v%2Fv0.0.0-20230802002603-b0c42cd8474f.zip
 2402580 BLAKE2B 
2a4599ae9f21a4530ef36d0f2a6dce5d0a0161dbe4c94d4f7bde82a8d1fa298bdb3bde3964207533d1cd5ce4d173e10b02ca8ae0e7ed3607f1d14112bda11f79
 SHA512 
8c555e52570ba25ce9ceef3d27e2be678bfff1d8dde8bd8dcc2cad8a81178319ce2a2687927eadf6ed9c3a21015d1f3c13f833e1ece344a83133733f741929a9
 DIST 
github.com%2Fgotk3%2Fgotk3%2F@v%2Fv0.5.3-0.20210223154815-289cfb6dbf32.mod 39 
BLAKE2B 
4d10be140ba045a068e1a13a1302698ee76f21627f0fdde3d952c82706179fbfd0af3f13737bf8771366298c2e6aec48113682951b81ac9208c88b69cb4836d5
 SHA512 
2e251029136f540fd056077d2b41c7ed820ad3614bf50516ad9a60ba54e1808e18ccfdd91a4454428adcf1426fc2ab93636cc8f9e2a55c14ad07648dd31cc35d
 DIST github.com%2Fgotk3%2Fgotk3%2F@v%2Fv0.6.0.mod 39 BLAKE2B 
4d10be140ba045a068e1a13a1302698ee76f21627f0fdde3d952c82706179fbfd0af3f13737bf8771366298c2e6aec48113682951b81ac9208c88b69cb4836d5
 SHA512 
2e251029136f540fd056077d2b41c7ed820ad3614bf50516ad9a60ba54e1808e18ccfdd91a4454428adcf1426fc2ab93636cc8f9e2a55c14ad07648dd31cc35d
 DIST github.com%2Fgotk3%2Fgotk3%2F@v%2Fv0.6.0.zip 401960 BLAKE2B 
70fec601ae92b3ae0ebca563bef26d6a5619fb8509b7767bed25caaea36ac826fac1ae3067ad8e2dc0606d3bfcff6011da45abf513c5ac44aeb9cabc1153d334
 SHA512 
6a46b089108c36a892b676d89c34b97d4b402d7d4ce02766cefb3e3aa87c7f495588e27b0706c87ba791f34cf41f6e3c5b25c4abc0cc73b91ee454b1c47aaf0e
+DIST github.com%2Fgotk3%2Fgotk3%2F@v%2Fv0.6.1.mod 39 BLAKE2B 
4d10be140ba045a068e1a13a1302698ee76f21627f0fdde3d952c82706179fbfd0af3f13737bf8771366298c2e6aec48113682951b81ac9208c88b69cb4836d5
 SHA512 
2e251029136f540fd056077d2b41c7ed820ad3614bf50516ad9a60ba54e1808e18ccfdd91a4454428adcf1426fc2ab93636cc8f9e2a55c14ad07648dd31cc35d
+DIST github.com%2Fgotk3%2Fgotk3%2F@v%2Fv0.6.1.zip 401975 BLAKE2B 
a1cd9ce75924c05b01d13964f5d6f7a959ed3656fa8293e168f74466c0ee63b06bb8aa168dcf240695cca833e264bcc71ed46776f8bf6a96702af9c918ebb9ec
 SHA512 

  1   2   3   4   >