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

2023-04-03 Thread Viorel Munteanu
commit: 2f4f14af2d5b96d2aff4a0f6cf05118e5fc60f39
Author: Bernd Waibel  posteo  net>
AuthorDate: Sun Mar  5 12:44:51 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 07:04:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f4f14af

dev-libs/imath: add 3.1.7

Closes: https://bugs.gentoo.org/899562
Signed-off-by: Bernd Waibel  posteo.net>
Closes: https://github.com/gentoo/gentoo/pull/29936
Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-libs/imath/Manifest   |  1 +
 dev-libs/imath/imath-3.1.7.ebuild | 74 +++
 2 files changed, 75 insertions(+)

diff --git a/dev-libs/imath/Manifest b/dev-libs/imath/Manifest
index b782847d7470..4bf4962b7f9d 100644
--- a/dev-libs/imath/Manifest
+++ b/dev-libs/imath/Manifest
@@ -1 +1,2 @@
 DIST imath-3.1.6.tar.gz 573255 BLAKE2B 
c4d5a785a2aed9c5b9b1441ab016a5cf47abeb1d44c0625f0654e8c4d1e47dd62c61f83fd7b160beae8aaf5db9350d2a3bc43754e795fe75b10c4836a1b8
 SHA512 
c099a291ed7fd7702a7609575f2f3d2ed7f95256c23c2180e2ef1f76ceb07734365f57da5244b1d6cec81ca9859864eb4c9236df02a64aa783af6639a3b59acd
+DIST imath-3.1.7.tar.gz 583049 BLAKE2B 
54619339f349a944e1d72fcea4438d7bd2ef6c9655ba0e16ac608934a8df30c97a2f3cf5c75adaeb8a6fe6bf19ec3240c11439550b452571d0a8cbf75d6bd83e
 SHA512 
e298454cb845cadde28f7881fdaa4739c3942f941278a07ec912459ac376c2ee7858cb3b2d2047b9afb4d4dacae7a8a52ffef4c104f8499b4e0a1f0ed46cc0f0

diff --git a/dev-libs/imath/imath-3.1.7.ebuild 
b/dev-libs/imath/imath-3.1.7.ebuild
new file mode 100644
index ..dcbddf244ce4
--- /dev/null
+++ b/dev-libs/imath/imath-3.1.7.ebuild
@@ -0,0 +1,74 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit cmake python-single-r1
+
+MY_PN="${PN^}"
+
+DESCRIPTION="Imath basic math package"
+HOMEPAGE="https://imath.readthedocs.io";
+SRC_URI="https://github.com/AcademySoftwareFoundation/${MY_PN}/archive/refs/tags/v${PV}.tar.gz
 -> ${P}.tar.gz"
+# re-keywording needed for (according to ilmbase keywords): ~x64-macos 
~x86-solaris
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux"
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+LICENSE="BSD"
+SLOT="3/30"
+IUSE="large-stack python test"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+RESTRICT="!test? ( test )"
+
+# blocker due to file collision #803347
+RDEPEND="
+   !dev-libs/imath:0
+   !media-libs/ilmbase
+   sys-libs/zlib
+   python? (
+   !dev-python/pyilmbase
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-libs/boost:=[python,${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   ')
+   )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/pkgconfig
+   python? ( ${PYTHON_DEPS} )
+"
+
+DOCS=( CHANGES.md CONTRIBUTORS.md README.md SECURITY.md 
docs/PortingGuide2-3.md )
+
+pkg_setup() {
+   use python && python-single-r1_pkg_setup
+}
+
+src_configure() {
+   local mycmakeargs=(
+   # requires press theme, not available in ::gentoo
+   -DBUILD_DOCS=OFF
+   -DIMATH_ENABLE_LARGE_STACK=$(usex large-stack)
+   # the following options are at their default value
+   -DIMATH_HALF_USE_LOOKUP_TABLE=ON
+   -DIMATH_INSTALL_PKG_CONFIG=ON
+   -DIMATH_USE_CLANG_TIDY=OFF
+   -DIMATH_USE_DEFAULT_VISIBILITY=OFF
+   -DIMATH_USE_NOEXCEPT=ON
+   )
+   if use python; then
+   mycmakeargs+=(
+   -DBoost_NO_BOOST_CMAKE=OFF
+   -DPYTHON=ON
+   -DPython3_EXECUTABLE="${PYTHON}"
+   -DPython3_INCLUDE_DIR=$(python_get_includedir)
+   -DPython3_LIBRARY=$(python_get_library_path)
+   )
+   fi
+
+   cmake_src_configure
+}



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

2023-04-03 Thread Viorel Munteanu
commit: 2c6bee7578e491bff24698eb72441829b7d8bdf3
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Mon Apr  3 07:03:33 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 07:04:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c6bee75

dev-libs/imath: remove nonexistent blockers

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

 dev-libs/imath/imath-3.1.7.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-libs/imath/imath-3.1.7.ebuild 
b/dev-libs/imath/imath-3.1.7.ebuild
index dcbddf244ce4..a2c62d82af0a 100644
--- a/dev-libs/imath/imath-3.1.7.ebuild
+++ b/dev-libs/imath/imath-3.1.7.ebuild
@@ -25,10 +25,8 @@ RESTRICT="!test? ( test )"
 # blocker due to file collision #803347
 RDEPEND="
!dev-libs/imath:0
-   !media-libs/ilmbase
sys-libs/zlib
python? (
-   !dev-python/pyilmbase
${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-libs/boost:=[python,${PYTHON_USEDEP}]



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

2023-04-03 Thread Miroslav Šulc
commit: 96f1b92f7ecb57d5405be9b1549ce3e9463b86a1
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sat Apr  1 11:00:47 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Apr  3 07:08:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f1b92f

dev-java/batik: avoid file collisions

Bug: https://bugs.gentoo.org/872689
Closes: https://bugs.gentoo.org/903641
Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/30431
Signed-off-by: Miroslav Šulc  gentoo.org>

 .../batik/{batik-1.16.ebuild => batik-1.16-r1.ebuild}  | 18 --
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/dev-java/batik/batik-1.16.ebuild 
b/dev-java/batik/batik-1.16-r1.ebuild
similarity index 93%
rename from dev-java/batik/batik-1.16.ebuild
rename to dev-java/batik/batik-1.16-r1.ebuild
index aef311523b6a..1b2a6dfc4602 100644
--- a/dev-java/batik/batik-1.16.ebuild
+++ b/dev-java/batik/batik-1.16-r1.ebuild
@@ -96,6 +96,18 @@ src_prepare() {
# We drop support for jython due to bug #825486.
rm 
batik-script/src/main/java/org/apache/batik/script/jpython/JPythonInterpreter.java
 || die
rm 
batik-script/src/main/java/org/apache/batik/script/jpython/JPythonInterpreterFactory.java
 || die
+
+   cat > "batik-squiggle-${SLOT}.desktop" <<-EOF || die
+   [Desktop Entry]
+   Name=Squiggle
+   Comment=SVG browser
+   Exec=batik-squiggle-${SLOT}
+   Icon=init
+   Terminal=false
+   Type=Application
+   Categories=Graphics;VectorGraphics;
+   MimeType=image/svg+xml
+   EOF
 }
 
 src_compile() {
@@ -181,8 +193,10 @@ src_test() {
 
 src_install() {
einstalldocs
-   domenu "${FILESDIR}"/batik-squiggle.desktop
-   doicon 
batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/init.svg
+   domenu "batik-squiggle-${SLOT}.desktop"
+   newicon -s scalable \
+   
batik-svgbrowser/src/main/resources/org/apache/batik/apps/svgbrowser/resources/init.svg
 \
+   squiggle-${SLOT}.svg
 
for module in "${BATIK_MODULES[@]}"; do
JAVA_MAIN_CLASS=$( sed -n 
's:.*\(.*\):\1:p' "${module}/pom.xml" )



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

2023-04-03 Thread Viorel Munteanu
commit: c167e1cd93b476121c4cab97ec19e11f35432b32
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Mon Apr  3 07:09:43 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 07:12:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c167e1cd

dev-libs/imath: Revert "dev-libs/imath: remove nonexistent blockers"

This reverts commit 2c6bee7578e491bff24698eb72441829b7d8bdf3.

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

 dev-libs/imath/imath-3.1.7.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/dev-libs/imath/imath-3.1.7.ebuild 
b/dev-libs/imath/imath-3.1.7.ebuild
index a2c62d82af0a..dcbddf244ce4 100644
--- a/dev-libs/imath/imath-3.1.7.ebuild
+++ b/dev-libs/imath/imath-3.1.7.ebuild
@@ -25,8 +25,10 @@ RESTRICT="!test? ( test )"
 # blocker due to file collision #803347
 RDEPEND="
!dev-libs/imath:0
+   !media-libs/ilmbase
sys-libs/zlib
python? (
+   !dev-python/pyilmbase
${PYTHON_DEPS}
$(python_gen_cond_dep '
dev-libs/boost:=[python,${PYTHON_USEDEP}]



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

2023-04-03 Thread Miroslav Šulc
commit: 133c5daa266c6de0cc17cb4e34158e0e37ec247c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Apr  3 07:16:27 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Apr  3 07:17:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=133c5daa

media-sound/fluidsynth: bump to 2.3.2

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

 media-sound/fluidsynth/Manifest|   1 +
 media-sound/fluidsynth/fluidsynth-2.3.2.ebuild | 121 +
 2 files changed, 122 insertions(+)

diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
index 095c1d857a46..1ebe5359b18a 100644
--- a/media-sound/fluidsynth/Manifest
+++ b/media-sound/fluidsynth/Manifest
@@ -1,2 +1,3 @@
 DIST fluidsynth-2.3.0.tar.gz 1757143 BLAKE2B 
845f4b1d00b743edf7ef8a5660c239c2924ca51306fbd8f45c0c965198ed2d5267bacf8333a44720beb3f283e9a75bbb8b497dcb0b004153d5f8a9d9ed4f5224
 SHA512 
621a54f7d9845a9350381e9aa99f342b28050e1dd80983e69828acc685ace39ee5376f8e40d7a93ddb247718e4bcfb3f196cbd4027343251f8c0fbe3c0d219ed
 DIST fluidsynth-2.3.1.tar.gz 1758632 BLAKE2B 
a1501303e02b3ea64d87be5cff08d5f2f2be170b38faedc8e6bc4fd18c0dafe268fa6110708664ef0659df9f0e9680551ac483d30364977e768af60dfdff7e83
 SHA512 
1633294bf6c714361c381151b62d9dd2c8f388490153e7964bfa14fd647a681db9ebfe1de0a06279972d6c5b30377f67361feb4db186b1faa235600f0ae02b22
+DIST fluidsynth-2.3.2.tar.gz 1773755 BLAKE2B 
2d88e52223ff9c6bc5bcbcd8b15f30abb12632202b9a5c5eecc5eb95620aeaa2d7d9b80b76e6b26eef95ca92521bdc9e6d539f8235d90ca0429b12bb72db1a6f
 SHA512 
21798b5a80a7edd8ef02b983d9b230af45cc66b98b32d593228e12dbec15b12c6cf6c0f3692c12af66de1ba2049fa9d6ad2b68c7d1579347eec14d24870b0025

diff --git a/media-sound/fluidsynth/fluidsynth-2.3.2.ebuild 
b/media-sound/fluidsynth/fluidsynth-2.3.2.ebuild
new file mode 100644
index ..525e8257e307
--- /dev/null
+++ b/media-sound/fluidsynth/fluidsynth-2.3.2.ebuild
@@ -0,0 +1,121 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake-multilib systemd toolchain-funcs
+
+DESCRIPTION="Software real-time synthesizer based on the Soundfont 2 
specifications"
+HOMEPAGE="https://www.fluidsynth.org";
+SRC_URI="https://github.com/FluidSynth/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="LGPL-2.1+"
+SLOT="0/3"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+IUSE="alsa dbus debug examples ipv6 jack ladspa lash network oss pipewire 
portaudio pulseaudio +readline sdl +sndfile systemd threads"
+
+BDEPEND="
+   virtual/pkgconfig
+"
+DEPEND="
+   dev-libs/glib:2[${MULTILIB_USEDEP}]
+   alsa? (
+   media-libs/alsa-lib[${MULTILIB_USEDEP}]
+   lash? ( media-sound/lash[${MULTILIB_USEDEP}] )
+   )
+   dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
+   jack? ( virtual/jack[${MULTILIB_USEDEP}] )
+   ladspa? (
+   media-libs/ladspa-sdk[${MULTILIB_USEDEP}]
+   media-plugins/cmt-plugins[${MULTILIB_USEDEP}]
+   )
+   pipewire? (
+   media-video/pipewire:0=[${MULTILIB_USEDEP}]
+   )
+   portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] )
+   pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
+   readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
+   sdl? ( media-libs/libsdl2[${MULTILIB_USEDEP}] )
+   sndfile? ( media-libs/libsndfile[${MULTILIB_USEDEP}] )
+"
+RDEPEND="${DEPEND}"
+
+DOCS=( AUTHORS ChangeLog README.md THANKS TODO doc/fluidsynth-v20-devdoc.txt )
+
+src_configure() {
+   local mycmakeargs=(
+   -DCMAKE_C_COMPILER="$(tc-getCC)"
+   -Denable-alsa=$(usex alsa)
+   -Denable-aufile=ON
+   -Denable-dbus=$(usex dbus)
+   -Denable-dsound=OFF # Windows
+   -Denable-floats=OFF # loat instead of double for DSP samples
+   -Denable-fpe-check=$(usex debug)
+   -Denable-ipv6=$(usex ipv6)
+   -Denable-jack=$(usex jack)
+   -Denable-ladspa=$(usex ladspa)
+   -Denable-libinstpatch=ON # https://github.com/swami/libinstpatch
+   -Denable-midishare=OFF # http://midishare.sourceforge.net/
+   -Denable-network=$(usex network)
+   -Denable-opensles=OFF
+   -Denable-oboe=OFF # requires OpenSLES and/or AAudio
+   -Denable-oss=$(usex oss)
+   -Denable-libsndfile=$(usex sndfile)
+   -Denable-portaudio=$(usex portaudio)
+   -Denable-profiling=$(usex debug)
+   -Denable-pulseaudio=$(usex pulseaudio)
+   -Denable-pipewire=$(usex pipewire)
+   -Denable-readline=$(usex readline)
+   -Denable-sdl2=$(usex sdl)
+   -Denable-systemd=$(usex systemd)
+   -Denable-threads=$(usex threads)
+   -Denable-trap-on-fpe=$(usex debug)
+   -Denable-ubsan=OF

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

2023-04-03 Thread Miroslav Šulc
commit: 14e0d4c9025a1bf81e5af1af2d7fc9b71cf50962
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Mon Apr  3 07:16:54 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Mon Apr  3 07:17:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14e0d4c9

media-sound/fluidsynth: dropped obsolete 2.3.0

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

 media-sound/fluidsynth/Manifest|   1 -
 media-sound/fluidsynth/fluidsynth-2.3.0.ebuild | 121 -
 2 files changed, 122 deletions(-)

diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
index 1ebe5359b18a..720e95a19d9b 100644
--- a/media-sound/fluidsynth/Manifest
+++ b/media-sound/fluidsynth/Manifest
@@ -1,3 +1,2 @@
-DIST fluidsynth-2.3.0.tar.gz 1757143 BLAKE2B 
845f4b1d00b743edf7ef8a5660c239c2924ca51306fbd8f45c0c965198ed2d5267bacf8333a44720beb3f283e9a75bbb8b497dcb0b004153d5f8a9d9ed4f5224
 SHA512 
621a54f7d9845a9350381e9aa99f342b28050e1dd80983e69828acc685ace39ee5376f8e40d7a93ddb247718e4bcfb3f196cbd4027343251f8c0fbe3c0d219ed
 DIST fluidsynth-2.3.1.tar.gz 1758632 BLAKE2B 
a1501303e02b3ea64d87be5cff08d5f2f2be170b38faedc8e6bc4fd18c0dafe268fa6110708664ef0659df9f0e9680551ac483d30364977e768af60dfdff7e83
 SHA512 
1633294bf6c714361c381151b62d9dd2c8f388490153e7964bfa14fd647a681db9ebfe1de0a06279972d6c5b30377f67361feb4db186b1faa235600f0ae02b22
 DIST fluidsynth-2.3.2.tar.gz 1773755 BLAKE2B 
2d88e52223ff9c6bc5bcbcd8b15f30abb12632202b9a5c5eecc5eb95620aeaa2d7d9b80b76e6b26eef95ca92521bdc9e6d539f8235d90ca0429b12bb72db1a6f
 SHA512 
21798b5a80a7edd8ef02b983d9b230af45cc66b98b32d593228e12dbec15b12c6cf6c0f3692c12af66de1ba2049fa9d6ad2b68c7d1579347eec14d24870b0025

diff --git a/media-sound/fluidsynth/fluidsynth-2.3.0.ebuild 
b/media-sound/fluidsynth/fluidsynth-2.3.0.ebuild
deleted file mode 100644
index f27a88cd649f..
--- a/media-sound/fluidsynth/fluidsynth-2.3.0.ebuild
+++ /dev/null
@@ -1,121 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake-multilib systemd toolchain-funcs
-
-DESCRIPTION="Software real-time synthesizer based on the Soundfont 2 
specifications"
-HOMEPAGE="https://www.fluidsynth.org";
-SRC_URI="https://github.com/FluidSynth/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="LGPL-2.1+"
-SLOT="0/3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~loong ppc ppc64 ~riscv sparc x86"
-IUSE="alsa dbus debug examples ipv6 jack ladspa lash network oss pipewire 
portaudio pulseaudio +readline sdl +sndfile systemd threads"
-
-BDEPEND="
-   virtual/pkgconfig
-"
-DEPEND="
-   dev-libs/glib:2[${MULTILIB_USEDEP}]
-   alsa? (
-   media-libs/alsa-lib[${MULTILIB_USEDEP}]
-   lash? ( media-sound/lash[${MULTILIB_USEDEP}] )
-   )
-   dbus? ( sys-apps/dbus[${MULTILIB_USEDEP}] )
-   jack? ( virtual/jack[${MULTILIB_USEDEP}] )
-   ladspa? (
-   media-libs/ladspa-sdk[${MULTILIB_USEDEP}]
-   media-plugins/cmt-plugins[${MULTILIB_USEDEP}]
-   )
-   pipewire? (
-   media-video/pipewire:0=[${MULTILIB_USEDEP}]
-   )
-   portaudio? ( media-libs/portaudio[${MULTILIB_USEDEP}] )
-   pulseaudio? ( media-sound/pulseaudio[${MULTILIB_USEDEP}] )
-   readline? ( sys-libs/readline:0=[${MULTILIB_USEDEP}] )
-   sdl? ( media-libs/libsdl2[${MULTILIB_USEDEP}] )
-   sndfile? ( media-libs/libsndfile[${MULTILIB_USEDEP}] )
-"
-RDEPEND="${DEPEND}"
-
-DOCS=( AUTHORS ChangeLog README.md THANKS TODO doc/fluidsynth-v20-devdoc.txt )
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_C_COMPILER="$(tc-getCC)"
-   -Denable-alsa=$(usex alsa)
-   -Denable-aufile=ON
-   -Denable-dbus=$(usex dbus)
-   -Denable-dsound=OFF # Windows
-   -Denable-floats=OFF # loat instead of double for DSP samples
-   -Denable-fpe-check=$(usex debug)
-   -Denable-ipv6=$(usex ipv6)
-   -Denable-jack=$(usex jack)
-   -Denable-ladspa=$(usex ladspa)
-   -Denable-libinstpatch=ON # https://github.com/swami/libinstpatch
-   -Denable-midishare=OFF # http://midishare.sourceforge.net/
-   -Denable-network=$(usex network)
-   -Denable-opensles=OFF
-   -Denable-oboe=OFF # requires OpenSLES and/or AAudio
-   -Denable-oss=$(usex oss)
-   -Denable-libsndfile=$(usex sndfile)
-   -Denable-portaudio=$(usex portaudio)
-   -Denable-profiling=$(usex debug)
-   -Denable-pulseaudio=$(usex pulseaudio)
-   -Denable-pipewire=$(usex pipewire)
-   -Denable-readline=$(usex readline)
-   -Denable-sdl2=$(usex sdl)
-   -Denable-systemd=$(usex systemd)
-   -Denable-threads=$(usex threads)
-   -Denable-trap-on-fpe=$(usex debug)
-   -Denable-ubsa

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

2023-04-03 Thread Jakov Smolić
commit: 77f58c10d277c49ffb660a5f79f7774b4d001b51
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:23:58 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:23:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77f58c10

dev-python/hatchling: Keyword 1.14.0 riscv, #903715

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

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

diff --git a/dev-python/hatchling/hatchling-1.14.0.ebuild 
b/dev-python/hatchling/hatchling-1.14.0.ebuild
index 059af9b522dd..d0719a953da8 100644
--- a/dev-python/hatchling/hatchling-1.14.0.ebuild
+++ b/dev-python/hatchling/hatchling-1.14.0.ebuild
@@ -24,7 +24,7 @@ S=${WORKDIR}/${MY_P}/backend
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
 
 # deps are listed in backend/src/hatchling/ouroboros.py
 RDEPEND="



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

2023-04-03 Thread Jakov Smolić
commit: 3fb5a646447c65a2f3cb2cc8d1bd538c01a01490
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:23:52 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:23:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fb5a646

dev-python/calver: Keyword 2022.06.26 riscv, #903715

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

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

diff --git a/dev-python/calver/calver-2022.06.26.ebuild 
b/dev-python/calver/calver-2022.06.26.ebuild
index 9f29d1ffad09..a638e4f4bea2 100644
--- a/dev-python/calver/calver-2022.06.26.ebuild
+++ b/dev-python/calver/calver-2022.06.26.ebuild
@@ -20,7 +20,7 @@ SRC_URI="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
 
 BDEPEND="
test? (



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

2023-04-03 Thread Jakov Smolić
commit: 240040efda4635f3874a0f949e7ebadf38474df0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:23:58 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:23:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=240040ef

dev-python/trove-classifiers: Keyword 2023.3.9 riscv, #903715

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

 dev-python/trove-classifiers/trove-classifiers-2023.3.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/trove-classifiers/trove-classifiers-2023.3.9.ebuild 
b/dev-python/trove-classifiers/trove-classifiers-2023.3.9.ebuild
index 15ca75c67b76..2b46fcabbe00 100644
--- a/dev-python/trove-classifiers/trove-classifiers-2023.3.9.ebuild
+++ b/dev-python/trove-classifiers/trove-classifiers-2023.3.9.ebuild
@@ -17,7 +17,7 @@ HOMEPAGE="
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc"
 
 BDEPEND="
dev-python/calver[${PYTHON_USEDEP}]



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

2023-04-03 Thread Jakov Smolić
commit: fa6b744234f1106700be269926cb1652016ced74
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:33:08 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:33:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa6b7442

net-misc/frr: drop 8.4.1

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

 net-misc/frr/Manifest |   1 -
 net-misc/frr/frr-8.4.1.ebuild | 149 --
 2 files changed, 150 deletions(-)

diff --git a/net-misc/frr/Manifest b/net-misc/frr/Manifest
index 8a218a181e80..52fa8bf498c2 100644
--- a/net-misc/frr/Manifest
+++ b/net-misc/frr/Manifest
@@ -1,2 +1 @@
-DIST frr-8.4.1.tar.gz 9886182 BLAKE2B 
be270f34e9ffdbf87a10c7bbd73e9f244128821f1c014060880015e4e7e06165dbc1dc3253894bda5dc1a0607a5bdbad21a70532e9019f1e06d0abd24be1
 SHA512 
69f936580d2e7838e1f15fdfa71a4fa00e7acaa93df4cdbd6129560fbcd45f3754cf5d03b4c9331bf4850477560d63d5509d185098583d19fa93d9e960e1483a
 DIST frr-8.4.2.tar.gz 9893223 BLAKE2B 
670fb131c2959b0ce4f3133ef38caeb7832275844b16f8582a693033f5466ad0eb98ab45ed9615e0a121ab80bf034edafe7ee816c47d767bd8a13b52f3138eac
 SHA512 
1ee9d17ef3b85c5c10df624a6560bcacb2b5daa3d6231e457f06d9eb6e5ccf375064a46e809d851c23cb6daf7a4299d1f25be589992ef729e80f9bad41a8d7f7

diff --git a/net-misc/frr/frr-8.4.1.ebuild b/net-misc/frr/frr-8.4.1.ebuild
deleted file mode 100644
index 1edebad2d2fe..
--- a/net-misc/frr/frr-8.4.1.ebuild
+++ /dev/null
@@ -1,149 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..11} )
-inherit autotools pam python-single-r1 systemd
-
-DESCRIPTION="The FRRouting Protocol Suite"
-HOMEPAGE="https://frrouting.org/";
-SRC_URI="https://github.com/FRRouting/frr/archive/${P}.tar.gz";
-# FRR tarballs have weird format.
-S="${WORKDIR}/frr-${P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="doc fpm grpc ipv6 nhrp ospfapi pam rpki snmp test"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-COMMON_DEPEND="
-   ${PYTHON_DEPS}
-   acct-user/frr
-   dev-libs/json-c:0=
-   >=net-libs/libyang-2.0.0
-   sys-libs/libcap
-   sys-libs/readline:0=
-   virtual/libcrypt:=
-   grpc? ( net-libs/grpc:= )
-   nhrp? ( net-dns/c-ares:0= )
-   pam? ( sys-libs/pam )
-   rpki? ( >=net-libs/rtrlib-0.8.0[ssh] )
-   snmp? ( net-analyzer/net-snmp:= )
-"
-BDEPEND="
-   ~dev-util/clippy-${PV}
-   sys-devel/flex
-   app-alternatives/yacc
-   doc? ( dev-python/sphinx )
-"
-DEPEND="
-   ${COMMON_DEPEND}
-   elibc_musl? ( sys-libs/queue-standalone )
-   test? ( $(python_gen_cond_dep 'dev-python/pytest[${PYTHON_USEDEP}]') )
-"
-RDEPEND="
-   ${COMMON_DEPEND}
-   $(python_gen_cond_dep 'dev-python/ipaddr[${PYTHON_USEDEP}]')
-   !net-misc/quagga
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-7.5-ipctl-forwarding.patch
-   "${FILESDIR}"/${PN}-8.4.1-logrotate.patch
-)
-
-src_prepare() {
-   default
-
-   python_fix_shebang tools
-   eautoreconf
-}
-
-src_configure() {
-   local myconf=(
-   --disable-static
-   --with-pkg-extra-version="-gentoo"
-   --enable-configfile-mask=0640
-   --enable-logfile-mask=0640
-   --prefix="${EPREFIX}"/usr
-   --libdir="${EPREFIX}"/usr/lib/frr
-   --sbindir="${EPREFIX}"/usr/lib/frr
-   --libexecdir="${EPREFIX}"/usr/lib/frr
-   --sysconfdir="${EPREFIX}"/etc/frr
-   --localstatedir="${EPREFIX}"/run/frr
-   --with-moduledir="${EPREFIX}"/usr/lib/frr/modules
-   --with-clippy="${BROOT}"/usr/bin/clippy
-   --enable-user=frr
-   --enable-group=frr
-   --enable-vty-group=frr
-   --enable-multipath=64
-   $(use_enable doc)
-   $(use_enable fpm)
-   $(use_enable grpc)
-   $(use_enable ipv6 ospf6d)
-   $(use_enable ipv6 ripngd)
-   $(use_enable ipv6 rtadv)
-   $(use_enable kernel_linux realms)
-   $(use_enable nhrp nhrpd)
-   $(usex ospfapi '--enable-ospfclient' '' '' '')
-   $(use_enable rpki)
-   $(use_enable snmp)
-   )
-
-   econf "${myconf[@]}"
-}
-
-src_compile() {
-   default
-
-   use doc && emake -C doc html
-}
-
-src_install() {
-   default
-   find "${ED}" -name '*.la' -delete || die
-
-   # Install user documentation if asked
-   use doc && dodoc -r doc/user/_build/html
-
-   # Create configuration directory with correct permissions
-   keepdir /etc/frr
-   fowners frr:frr /etc/frr
-   fperms 775 /etc/frr
-
-   # Create logs directory with the correct permissions
-   keepdir /var/log/frr
-   fowners frr:frr /var/log/frr
-   fperms 775 /var/log/frr
-
-   #

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

2023-04-03 Thread Jakov Smolić
commit: 295760fe6250481091bfefcde460b769b2f836ea
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:32:13 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:32:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=295760fe

dev-libs/libbpf: drop 1.0.0-r1, 1.0.1

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

 dev-libs/libbpf/Manifest   |  2 --
 dev-libs/libbpf/libbpf-1.0.0-r1.ebuild | 53 -
 dev-libs/libbpf/libbpf-1.0.1.ebuild| 54 --
 3 files changed, 109 deletions(-)

diff --git a/dev-libs/libbpf/Manifest b/dev-libs/libbpf/Manifest
index 52c1f7444cac..ae5886aad84e 100644
--- a/dev-libs/libbpf/Manifest
+++ b/dev-libs/libbpf/Manifest
@@ -1,4 +1,2 @@
 DIST libbpf-0.8.1.tar.gz 942702 BLAKE2B 
084be7d4258500fa894560ed2e52821addcc5d150dcd77fd646271b614d788b7931271be9c3e46fdbc4ed93d053ea3e09023158a8e4a31f9452d10dcb0677b58
 SHA512 
e3bb602f55215a4f030e564af7321ba6338937c426fcaee478b607f88b0c773c40a0c3f59a2b345bda951a19e79061733f8a3fdc10a6292e92782e65754b584a
-DIST libbpf-1.0.0.tar.gz 917108 BLAKE2B 
5bde5a9147330f11dcf1e37aace971624293aae3914459a6b8be327530fa2c2774edaf1b798225ade2771edd88bddc2a74d7f523791f83558417b759eb417f7a
 SHA512 
e99aea1ff477114549b41c272a975169a79ffc1daf4bcaba586cd13d0fc0b23c336cb406fd8e64b73350fe16e2d423fa68a29601d15e2477955c7a92358fb7f8
-DIST libbpf-1.0.1.tar.gz 917269 BLAKE2B 
24e43f9a2b20e6f708b74ff50c8ce243546681201b1d72d6b35a95dd85b59032069814792739d3b2a6adaa007958a142a687e901e36a193fd02cdca69926d08f
 SHA512 
2ee6d85c0a33f723e5b93f97118e67754c9e44ca0449ceb49126820f89fea9ddc282a5add764dc4da090af6164cc6641b497489253d192ed01bc397df9be
 DIST libbpf-1.1.0.tar.gz 2337951 BLAKE2B 
70bee4e94c3b372501e1697cec6573fb3292e61236ed210bde4c3a838494cc951571d7c47720c28a47b8e038331775d66d3f4ad24423f5102e1ee708d1981f88
 SHA512 
751126893883c68e5472724988327e03f7f52becd472f7d6239fa838762f857e54a0347f8f824b8c32ca93b8f419310a86e1d75e3646dae72c2d2992d093b828

diff --git a/dev-libs/libbpf/libbpf-1.0.0-r1.ebuild 
b/dev-libs/libbpf/libbpf-1.0.0-r1.ebuild
deleted file mode 100644
index a3309d26fe8d..
--- a/dev-libs/libbpf/libbpf-1.0.0-r1.ebuild
+++ /dev/null
@@ -1,53 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic toolchain-funcs
-
-if [[ ${PV} =~ [9]{4,} ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/libbpf/libbpf.git";
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-S="${WORKDIR}/${P}/src"
-
-DESCRIPTION="Stand-alone build of libbpf from the Linux kernel"
-HOMEPAGE="https://github.com/libbpf/libbpf";
-
-LICENSE="GPL-2 LGPL-2.1 BSD-2"
-SLOT="0/$(ver_cut 1-2)"
-IUSE="static-libs"
-
-DEPEND="
-   sys-kernel/linux-headers
-   virtual/libelf"
-RDEPEND="${DEPEND}"
-
-PATCHES=(
-   "${FILESDIR}"/libbpf--paths.patch
-)
-
-src_configure() {
-   append-cflags -fPIC
-   tc-export CC AR
-   export LIBSUBDIR="$(get_libdir)"
-   export PREFIX="${EPREFIX}/usr"
-   export V=1
-}
-
-src_install() {
-   emake \
-   DESTDIR="${D}" \
-   LIBSUBDIR="${LIBSUBDIR}" \
-   install install_uapi_headers
-
-   if ! use static-libs; then
-   find "${ED}" -name '*.a' -delete || die
-   fi
-
-   insinto /usr/$(get_libdir)/pkgconfig
-   doins ${PN}.pc
-}

diff --git a/dev-libs/libbpf/libbpf-1.0.1.ebuild 
b/dev-libs/libbpf/libbpf-1.0.1.ebuild
deleted file mode 100644
index 4bc4f9eafffd..
--- a/dev-libs/libbpf/libbpf-1.0.1.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 2019-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit flag-o-matic toolchain-funcs
-
-if [[ ${PV} =~ [9]{4,} ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/libbpf/libbpf.git";
-else
-   SRC_URI="https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
-fi
-S="${WORKDIR}/${P}/src"
-
-DESCRIPTION="Stand-alone build of libbpf from the Linux kernel"
-HOMEPAGE="https://github.com/libbpf/libbpf";
-
-LICENSE="GPL-2 LGPL-2.1 BSD-2"
-SLOT="0/$(ver_cut 1-2)"
-IUSE="static-libs"
-
-DEPEND="
-   sys-kernel/linux-headers
-   virtual/libelf"
-RDEPEND="${DEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}"/libbpf--paths.patch
-)
-
-src_configure() {
-   append-cflags -fPIC
-   tc-export CC AR PKG_CONFIG
-   export LIBSUBDIR="$(get_libdir)"
-   export PREFIX="${EPREFIX}/usr"
-   export V=1
-}
-
-src_install() {
-   emake \
-   DESTDIR="${D}" \
-  

[gentoo-commits] repo/gentoo:master commit in: dev-embedded/u-boot-tools/

2023-04-03 Thread Jakov Smolić
commit: d2c159a90729fc47d1e809acbb4ec8ac79d543d3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:31:02 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:31:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2c159a9

dev-embedded/u-boot-tools: drop 2022.10

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

 dev-embedded/u-boot-tools/Manifest |  1 -
 .../u-boot-tools/u-boot-tools-2022.10.ebuild   | 81 --
 2 files changed, 82 deletions(-)

diff --git a/dev-embedded/u-boot-tools/Manifest 
b/dev-embedded/u-boot-tools/Manifest
index cf31e2af8253..a521291f8f5c 100644
--- a/dev-embedded/u-boot-tools/Manifest
+++ b/dev-embedded/u-boot-tools/Manifest
@@ -1,2 +1 @@
-DIST u-boot-2022.10.tar.bz2 18365430 BLAKE2B 
42aa7a6f131735888939982e579de4342e3909e064ab896b0df6f1ff56c20ed6cb11d25286da7c052a5f67dcef6fa7a746944d8df6dd504586f5a71502d157e1
 SHA512 
95bc1f915a3349f6045e59f46d8514485ca0de1d62303f7026b8e59f3ac539b9545895e0dd736ed7b26f28239db31672ecad2accc3fd99356a55269697039147
 DIST u-boot-2023.01.tar.bz2 18560442 BLAKE2B 
9412da6c7c8da8be64e470347d150ea2ba9a33b84f463c8ff3109e3db6c2dbcf13c8ab2e02bf3a2c412ff57c91987da922e4dde6a26e317e7b9e65101f7a6d62
 SHA512 
417a28267eb7875820d08fafc7316f164663609378637539e71648b0b9b7d28796b6c381717f31b0ab6472805fefd32628ef7d1b2e7b9f3c51c8ad122993f679

diff --git a/dev-embedded/u-boot-tools/u-boot-tools-2022.10.ebuild 
b/dev-embedded/u-boot-tools/u-boot-tools-2022.10.ebuild
deleted file mode 100644
index 5c8bda198ccf..
--- a/dev-embedded/u-boot-tools/u-boot-tools-2022.10.ebuild
+++ /dev/null
@@ -1,81 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit toolchain-funcs
-
-MY_P="u-boot-${PV/_/-}"
-DESCRIPTION="utilities for working with Das U-Boot"
-HOMEPAGE="https://www.denx.de/wiki/U-Boot/WebHome";
-SRC_URI="https://ftp.denx.de/pub/u-boot/${MY_P}.tar.bz2";
-S="${WORKDIR}/${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
-IUSE="envtools"
-
-RDEPEND="dev-libs/openssl:="
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-lang/swig
-   sys-devel/bison
-   sys-devel/flex
-   virtual/pkgconfig
-"
-
-src_prepare() {
-   default
-   sed -i 's:\bpkg-config\b:${PKG_CONFIG}:g' \
-   scripts/kconfig/{g,m,n,q}conf-cfg.sh \
-   scripts/kconfig/Makefile \
-   tools/Makefile || die
-}
-
-src_configure() {
-   tc-export AR BUILD_CC CC PKG_CONFIG
-   tc-export_build_env
-}
-
-src_compile() {
-   # Unset a few KBUILD variables. Bug #540476
-   unset KBUILD_OUTPUT KBUILD_SRC
-
-   local myemakeargs=(
-   V=1
-   AR="${AR}"
-   CC="${CC}"
-   HOSTCC="${BUILD_CC}"
-   HOSTCFLAGS="${BUILD_CFLAGS} ${BUILD_CPPFLAGS}"' $(HOSTCPPFLAGS)'
-   HOSTLDFLAGS="${BUILD_LDFLAGS}"
-   )
-
-   emake "${myemakeargs[@]}" tools-only_defconfig
-
-   emake "${myemakeargs[@]}" \
-   NO_SDL=1 \
-   HOSTSTRIP=: \
-   STRIP=: \
-   CONFIG_ENV_OVERWRITE=y \
-   $(usex envtools envtools tools-all)
-}
-
-src_test() { :; }
-
-src_install() {
-   cd tools || die
-
-   if ! use envtools; then
-   dobin bmp_logo dumpimage fdtgrep gen_eth_addr img2srec 
mkenvimage mkimage
-   fi
-
-   dobin env/fw_printenv
-
-   dosym fw_printenv /usr/bin/fw_setenv
-
-   insinto /etc
-   doins env/fw_env.config
-
-   doman ../doc/mkimage.1
-}



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

2023-04-03 Thread Jakov Smolić
commit: d82df9d85d563b35f8f4243abf7a2e0b3a7a4925
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:33:27 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:33:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d82df9d8

dev-util/clippy: drop 8.2.2-r1, 8.4.1

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

 dev-util/clippy/Manifest   |  2 --
 dev-util/clippy/clippy-8.2.2-r1.ebuild | 46 --
 dev-util/clippy/clippy-8.4.1.ebuild| 46 --
 3 files changed, 94 deletions(-)

diff --git a/dev-util/clippy/Manifest b/dev-util/clippy/Manifest
index 3b5111416c32..20ebf292b770 100644
--- a/dev-util/clippy/Manifest
+++ b/dev-util/clippy/Manifest
@@ -1,3 +1 @@
-DIST clippy-8.2.2.tar.gz 9439460 BLAKE2B 
7ea4b44e3d167677e087ac8767c470b91c485e52f9e45513fb6da8498ff3c56e84dd90257eff3b0067c061e7596578968017cbec7de7ea951b6f80134332e1bf
 SHA512 
52d8e82979823f61ec6f117db1eb41b23fd8ad3197ae3f9d2cfa3ad9d96636a3d2f0b36720b2041a9261c8b639ddd48e46a2351ce41cb596f7dc432cddf29256
-DIST clippy-8.4.1.tar.gz 9886182 BLAKE2B 
be270f34e9ffdbf87a10c7bbd73e9f244128821f1c014060880015e4e7e06165dbc1dc3253894bda5dc1a0607a5bdbad21a70532e9019f1e06d0abd24be1
 SHA512 
69f936580d2e7838e1f15fdfa71a4fa00e7acaa93df4cdbd6129560fbcd45f3754cf5d03b4c9331bf4850477560d63d5509d185098583d19fa93d9e960e1483a
 DIST clippy-8.4.2.tar.gz 9893223 BLAKE2B 
670fb131c2959b0ce4f3133ef38caeb7832275844b16f8582a693033f5466ad0eb98ab45ed9615e0a121ab80bf034edafe7ee816c47d767bd8a13b52f3138eac
 SHA512 
1ee9d17ef3b85c5c10df624a6560bcacb2b5daa3d6231e457f06d9eb6e5ccf375064a46e809d851c23cb6daf7a4299d1f25be589992ef729e80f9bad41a8d7f7

diff --git a/dev-util/clippy/clippy-8.2.2-r1.ebuild 
b/dev-util/clippy/clippy-8.2.2-r1.ebuild
deleted file mode 100644
index 598c35e3c381..
--- a/dev-util/clippy/clippy-8.2.2-r1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="frr-${PV}"
-PYTHON_COMPAT=( python3_{9..10} )
-inherit autotools python-single-r1
-
-DESCRIPTION="Standalone clippy tool built from FRR sources"
-HOMEPAGE="https://frrouting.org/";
-SRC_URI="https://github.com/FRRouting/frr/archive/${MY_P}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/frr-${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# standalone clippy does not have any tests
-# restrict to prevent bug 811753
-RESTRICT="test"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   virtual/libelf:=
-"
-RDEPEND="${DEPEND}"
-BDEPEND="sys-devel/flex"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf --enable-clippy-only
-}
-
-src_install() {
-   # 830087
-   find "lib" -type f -name "clippy" -print0 |
-   xargs -0 file | grep executable | grep ELF | cut -f 1 -d : |
-   xargs -I '{}' dobin '{}' ||
-   die "Failed to install 'lib/clippy'"
-}

diff --git a/dev-util/clippy/clippy-8.4.1.ebuild 
b/dev-util/clippy/clippy-8.4.1.ebuild
deleted file mode 100644
index dd93150f5df8..
--- a/dev-util/clippy/clippy-8.4.1.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="frr-${PV}"
-PYTHON_COMPAT=( python3_{9..11} )
-inherit autotools python-single-r1
-
-DESCRIPTION="Standalone clippy tool built from FRR sources"
-HOMEPAGE="https://frrouting.org/";
-SRC_URI="https://github.com/FRRouting/frr/archive/${MY_P}.tar.gz -> 
${P}.tar.gz"
-S="${WORKDIR}/frr-${MY_P}"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-# standalone clippy does not have any tests
-# restrict to prevent bug 811753
-RESTRICT="test"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   virtual/libelf:=
-"
-RDEPEND="${DEPEND}"
-BDEPEND="sys-devel/flex"
-
-src_prepare() {
-   default
-   eautoreconf
-}
-
-src_configure() {
-   econf --enable-clippy-only
-}
-
-src_install() {
-   # 830087
-   find "lib" -type f -name "clippy" -print0 |
-   xargs -0 file | grep executable | grep ELF | cut -f 1 -d : |
-   xargs -I '{}' dobin '{}' ||
-   die "Failed to install 'lib/clippy'"
-}



[gentoo-commits] repo/gentoo:master commit in: media-sound/snapcast/files/, media-sound/snapcast/

2023-04-03 Thread Jakov Smolić
commit: 646dce408a86412bc43f60aab1f1c6bed2253a04
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 07:30:40 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 07:30:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=646dce40

media-sound/snapcast: drop 0.26.0-r2

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

 media-sound/snapcast/Manifest  |  1 -
 .../files/snapcast-0.26.0-boost-1.81.patch | 51 ---
 media-sound/snapcast/snapcast-0.26.0-r2.ebuild | 73 --
 3 files changed, 125 deletions(-)

diff --git a/media-sound/snapcast/Manifest b/media-sound/snapcast/Manifest
index 4a3bb3e7997b..d45a494a4445 100644
--- a/media-sound/snapcast/Manifest
+++ b/media-sound/snapcast/Manifest
@@ -1,2 +1 @@
-DIST snapcast-0.26.0.tar.gz 1537036 BLAKE2B 
f6ef4393f3601c749140a9505f57515582147aacf25072d9114491aafb108c202c3631142171858d2b8f914be8105bbd9c66054c6d36d0b4a443e5b9a642cf51
 SHA512 
fc7885e42a11794e33314544083251ffbb91a0cf160c6d4b854c56f57ffe9f38f75c7594478c9edabfe9076959938cd8de891dd456e66202692de664a75cde71
 DIST snapcast-0.27.0.tar.gz 1566337 BLAKE2B 
77183cd2496beaf6808f8c1ff030cdb1e483c86ebafd57d0c75daa2dfe31030f0dd9704db40e2c0780b85c2b346e121ccd16c1cb75dea1f80e9834d3ae100fb8
 SHA512 
fd86f5b0d38bf308eb9cc1f3024676471176355a8cc91ee8c8d2dfe1aa0cde99fc7636133071b50304fe66ea42dee996e0088e013be7fa703f21c5bc2a35cfdd

diff --git a/media-sound/snapcast/files/snapcast-0.26.0-boost-1.81.patch 
b/media-sound/snapcast/files/snapcast-0.26.0-boost-1.81.patch
deleted file mode 100644
index d9d691060b42..
--- a/media-sound/snapcast/files/snapcast-0.26.0-boost-1.81.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-https://bugs.gentoo.org/886585
-https://github.com/badaix/snapcast/commit/853c3f622ff2262b56681ee04dd20b4266c72493
-https://github.com/badaix/snapcast/issues/1082
-
-From 853c3f622ff2262b56681ee04dd20b4266c72493 Mon Sep 17 00:00:00 2001
-From: Rudi Heitbaum 
-Date: Wed, 21 Dec 2022 11:31:29 +
-Subject: [PATCH] server/control_session_http: update for boost 1.81.0
-
-Signed-off-by: Rudi Heitbaum 
 a/server/control_session_http.cpp
-+++ b/server/control_session_http.cpp
-@@ -127,8 +127,8 @@ boost::beast::string_view 
mime_type(boost::beast::string_view path)
- std::string path_cat(boost::beast::string_view base, 
boost::beast::string_view path)
- {
- if (base.empty())
--return path.to_string();
--std::string result = base.to_string();
-+return static_cast(path);
-+std::string result = static_cast(base);
- char constexpr path_separator = '/';
- if (result.back() == path_separator)
- result.resize(result.size() - 1);
-@@ -171,7 +171,7 @@ void 
ControlSessionHttp::handle_request(http::request(why);
- res.prepare_payload();
- return res;
- };
-@@ -182,7 +182,7 @@ void 
ControlSessionHttp::handle_request(http::request(target) + "' 
was not found.";
- res.prepare_payload();
- return res;
- };
-@@ -204,7 +204,7 @@ void 
ControlSessionHttp::handle_request(http::request(what) 
+ "'";
- res.prepare_payload();
- return res;
- };
-

diff --git a/media-sound/snapcast/snapcast-0.26.0-r2.ebuild 
b/media-sound/snapcast/snapcast-0.26.0-r2.ebuild
deleted file mode 100644
index ff1b0b44e885..
--- a/media-sound/snapcast/snapcast-0.26.0-r2.ebuild
+++ /dev/null
@@ -1,73 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-DESCRIPTION="Synchronous multi-room audio player"
-HOMEPAGE="https://github.com/badaix/snapcast";
-SRC_URI="https://github.com/badaix/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ppc ppc64 ~riscv x86"
-IUSE="+client +expat +flac +opus +server tremor +vorbis +zeroconf"
-REQUIRED_USE="|| ( server client )"
-
-RDEPEND="
-   dev-libs/boost:=
-   media-libs/alsa-lib
-   client? ( acct-user/snapclient )
-   expat? ( dev-libs/expat )
-   flac? ( media-libs/flac:= )
-   opus? ( media-libs/opus )
-   server? (
-   acct-group/snapserver
-   acct-user/snapserver
-   )
-   tremor? ( media-libs/tremor )
-   vorbis? ( media-libs/libvorbis )
-   zeroconf? ( net-dns/avahi[dbus] )
-"
-DEPEND="
-   ${RDEPEND}
-   >=dev-cpp/aixlog-1.2.1
-   >=dev-cpp/asio-1.12.1
-   >=dev-cpp/popl-1.2.0
-"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-boost-1.81.patch
-)
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_CLIENT=$(usex client)
-   -DBUILD_WITH_EXPAT=$(usex expat)
-   -DBUILD_WITH_FLAC=$(usex flac)
-   -DBUILD_WITH_OPUS=$(usex opus)
-   -DBUILD_SERVER=$(usex server)
-   -DBUILD_STATIC_LIBS=no
-   -DBUILD_TESTS=no
-   -DBUILD_WITH_TREMOR=$(usex tremor)
-   -DBUILD_WITH_VORBIS

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

2023-04-03 Thread Joonas Niilola
commit: d6299b554ca9f0682978196d088a1562b579fa58
Author: Joonas Niilola  gentoo  org>
AuthorDate: Mon Apr  3 07:37:27 2023 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Mon Apr  3 07:38:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6299b55

www-client/firefox: add patches for 111.0 to fix build with arm & x86

Closes: https://bugs.gentoo.org/901501
Signed-off-by: Joonas Niilola  gentoo.org>

 www-client/firefox/Manifest | 2 +-
 www-client/firefox/firefox-111.0.ebuild | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 6d51d4d365b9..d0c6d75ddebf 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -196,7 +196,7 @@ DIST firefox-110.0.1-xh.xpi 416890 BLAKE2B 
a9dc27bf5848f9f8d4513398b633d1d17ae6e
 DIST firefox-110.0.1-zh-CN.xpi 599824 BLAKE2B 
aa00d351216e606dc79e0e81dc2d32b7e465e3877b2410f19c9cc864e33b84a36f9b44b45a32689bd45a0250a5fb205cf7c6607d74dbe63b477bdb106cc31aa5
 SHA512 
f8afe4451da1b47ba4be65fdcd42770fab9e86ffa870722316b645b9301778fe6c2dc1ced395dd5a4c23f6972d4f4ffa2ea4e26d97acc1a524171fc5539e51c9
 DIST firefox-110.0.1-zh-TW.xpi 602201 BLAKE2B 
b7c64c74c480fd9459765e578d7c07ca656392a35317ca8a40e633df793176c307abac230498dfa704b1e88c4478b7f7ba39e8078370bc935c4c9528d74f30dc
 SHA512 
3375915a30562cbf4ecf6aac3a1083135bc8afda22f17ac0f4edd9013f749de0e06c685fb85f7b59364e242a8d86a49f0c3a5e46248f7f576cf56a31ec9bad5d
 DIST firefox-110.0.1.source.tar.xz 494223300 BLAKE2B 
ff196016e0271f7828163b8f767f3321b5ee08ef6bd0b03b134e17a1e5b62666f10ae80a14569438f6ac1c995a7a8422265eaabbc505b6a86e95a66b5db07209
 SHA512 
42c6a99a3874a0f60121188c43788fb35577734d9366c3f89ad41b8328cc542ce172ec81ca35b9ea551eaa698197ccdb43922ec3215d311e077059625d21
-DIST firefox-111-patches-01j.tar.xz 16316 BLAKE2B 
9efb439e34f6173d9be90d9ea4596e857b99965d5e05eb099c4afbd1bd080109b8a89f24b9e56c2a4c546d3f813dc8ad187692bf5c3e8110a6ea4b52fe182b6f
 SHA512 
5b51f979329575becb5a40d4ad1d447994adca3ded996a0dcc7d73366480927438142f52260e312d159fcb047025ad478f7dfa34c20845e68a41929eb4ea97a3
+DIST firefox-111-patches-02j.tar.xz 19880 BLAKE2B 
0f70645a301ad6e8392e9770fc9154a54f6bfc9f5cd944bf5f7a73a272a07f73ec6c38ec7c5fb5cbae1e73fbaa1daa03f66a3eaf828a0f70d00ad4c8b3bc3571
 SHA512 
77e0c0fea1ce80f48dba6e1c4cb13af78ac821905c0626fdaff05d95fdb3d3f264b0c3836eee61f194a69483c21b2232648db20e7f62e28ed8e1c70722af2a0f
 DIST firefox-111.0-ach.xpi 458698 BLAKE2B 
910de79c8018a2dd8129e46b76fa33f4936776a1b8479c94301cd8daa1d60fcd363a29745f85f0e505640553c2a66aca08a15a31690e6b1ee8002d0826e874a1
 SHA512 
231f8436d8072d93e05cb558ca19f53bff78ace23e2dd57419d8e16d0bec774d19e818838d93cb72a8ccc1bebf53b370174dd8c5690a8bcb8dfe3a7342e42ca8
 DIST firefox-111.0-af.xpi 422434 BLAKE2B 
e5509373625681a2ba33bf091758c3825d8389a0ebaa7a509394266f0c23117da2acf7d8b964ad92f2f5cb2598ae25e4cf063494d28210cfa6fd7713667b3234
 SHA512 
c4709dda0a0f64aa05b120b7e8a487999170bd0cc6b3bcd0bd30ef2c6a80506c112a9f624e31617d89b1e6545ca93c00a8ab6ba0cf548a157105efbf069f325e
 DIST firefox-111.0-an.xpi 502996 BLAKE2B 
47c91b7d18907a21721b655e80a392c9d96ebc2181eaafdd99107ff243883b05f3d66e8a499bacf31811e05632fc2663bb3264f8316a205ae6d9c0fc70b9031e
 SHA512 
c8fe2758c84a94e921f328059b65be93aa31e21bfe4534eebff899e95d0bab57b4f5aca53f5d7a0dae4f762fa192f91e8f633929e47285edf9693028d6b4becc

diff --git a/www-client/firefox/firefox-111.0.ebuild 
b/www-client/firefox/firefox-111.0.ebuild
index 4a7b64b5dbd8..30dc71c3c437 100644
--- a/www-client/firefox/firefox-111.0.ebuild
+++ b/www-client/firefox/firefox-111.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-FIREFOX_PATCHSET="firefox-111-patches-01j.tar.xz"
+FIREFOX_PATCHSET="firefox-111-patches-02j.tar.xz"
 
 LLVM_MAX_SLOT=15
 



[gentoo-commits] repo/gentoo:master commit in: app-backup/mkstage4/

2023-04-03 Thread Viorel Munteanu
commit: dda296dd4c47f03f09f652493e61d672fc45af44
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Mar 12 09:42:33 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 07:41:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dda296dd

app-backup/mkstage4: add 0.4.2

Signed-off-by: Horea Christian  chymera.eu>
Signed-off-by: Viorel Munteanu  gentoo.org>

 app-backup/mkstage4/Manifest  |  1 +
 app-backup/mkstage4/mkstage4-0.4.2.ebuild | 30 ++
 2 files changed, 31 insertions(+)

diff --git a/app-backup/mkstage4/Manifest b/app-backup/mkstage4/Manifest
index baf46e664f8e..9433a680bacd 100644
--- a/app-backup/mkstage4/Manifest
+++ b/app-backup/mkstage4/Manifest
@@ -1,3 +1,4 @@
 DIST mkstage4-0.3.1.tar.gz 19416 BLAKE2B 
d9d2ec0d9c3aba6331e2500f927cdeace8b728a535f9cc4b4cb8ea93fb7dea2bc5f95be5dbea76c9948836f35bea832a9fdb2acea34518f9a4b5a456507973e0
 SHA512 
f58c89d0d9cc3a65cfa62cc18b0c5f172a69d4b4582e839e98ecd52cafd584395a91e5531ceb171dacd5e4975d6858ae91c5f97a26b62dab0f4ab809f7bcd4c0
 DIST mkstage4-0.3.tar.gz 18648 BLAKE2B 
3a881bc1ec14f5c9795d49306966b586c30a8b415542fb500b5a2af7735008832ebc64f0a166ea4e2fdb48a555bd789b352784f1b05118116ae3f634937beed6
 SHA512 
6971bf4b43a2fdef0b54802b010c99e95caf896c8e109c54f5a6beb4db1714ea5639e0859ba3f958eed92b9fc6a3bb613bb82de440729e71e53543d60549d2db
+DIST mkstage4-0.4.2.tar.gz 19860 BLAKE2B 
d5ab8c0bfd79796ec0f5310a52ed3ba6290b6cc11272a3d69408617f84758981b912628c5f796c1db5129a23db26049e14bf289e6f63f95e2877ab983e568c87
 SHA512 
2b481950f443e8f62ba837fe3d4238db79299776f3a115696e999a484ff6bb664bc54c74e61d31ff8d827c8c9c1174225d613d39ab5d93e0106725889990bd6d
 DIST mkstage4-0.4.tar.gz 19769 BLAKE2B 
833b343f8d8deba2914c24aad07b802f551102f598fa6b149ad2aa8df3b96d189b8a29be8904e510cc4200609b4a2a19d83c510c58745b734898a119ae259313
 SHA512 
13f867c45fe9891754e62f2204e35260ce9c6a756eddea807800cce5cb5d9e7a1b21c27dd0d5142a13bc8b88c441cf618ba5ce6827a0644f6468759062a9e34c

diff --git a/app-backup/mkstage4/mkstage4-0.4.2.ebuild 
b/app-backup/mkstage4/mkstage4-0.4.2.ebuild
new file mode 100644
index ..5430aad023b7
--- /dev/null
+++ b/app-backup/mkstage4/mkstage4-0.4.2.ebuild
@@ -0,0 +1,30 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Bash Utility for Creating Stage 4 Tarballs"
+HOMEPAGE="https://github.com/TheChymera/mkstage4";
+SRC_URI="https://github.com/TheChymera/mkstage4/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( dev-util/bats )"
+RDEPEND="
+   app-shells/bash
+   app-arch/tar
+"
+
+src_install() {
+   newbin mkstage4.sh mkstage4
+   newbin exstage4.sh exstage4
+   einstalldocs
+}
+
+src_test() {
+   bats -r tests/* || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/mkstage4/

2023-04-03 Thread Viorel Munteanu
commit: 5bafb2216eeac9e45071cbc19403d037ca48c5c3
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Mar 12 09:44:18 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 07:41:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bafb221

app-backup/mkstage4: updated tests, EAPI bump

Signed-off-by: Horea Christian  chymera.eu>
Closes: https://github.com/gentoo/gentoo/pull/30076
Signed-off-by: Viorel Munteanu  gentoo.org>

 app-backup/mkstage4/mkstage4-0.3.1.ebuild | 6 +++---
 app-backup/mkstage4/mkstage4-0.4.ebuild   | 2 +-
 app-backup/mkstage4/mkstage4-.ebuild  | 4 
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/app-backup/mkstage4/mkstage4-0.3.1.ebuild 
b/app-backup/mkstage4/mkstage4-0.3.1.ebuild
index 30dce56e4216..c860d58880b0 100644
--- a/app-backup/mkstage4/mkstage4-0.3.1.ebuild
+++ b/app-backup/mkstage4/mkstage4-0.3.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DESCRIPTION="Bash Utility for Creating Stage 4 Tarballs"
 HOMEPAGE="https://github.com/TheChymera/mkstage4";
@@ -25,5 +25,5 @@ src_install() {
 }
 
 src_test() {
-   bats tests/* || die
+   bats -r tests/* || die
 }

diff --git a/app-backup/mkstage4/mkstage4-0.4.ebuild 
b/app-backup/mkstage4/mkstage4-0.4.ebuild
index 5a7ce8f650e8..5430aad023b7 100644
--- a/app-backup/mkstage4/mkstage4-0.4.ebuild
+++ b/app-backup/mkstage4/mkstage4-0.4.ebuild
@@ -26,5 +26,5 @@ src_install() {
 }
 
 src_test() {
-   bats tests/* || die
+   bats -r tests/* || die
 }

diff --git a/app-backup/mkstage4/mkstage4-.ebuild 
b/app-backup/mkstage4/mkstage4-.ebuild
index 62421b82d7eb..526fffe40f9f 100644
--- a/app-backup/mkstage4/mkstage4-.ebuild
+++ b/app-backup/mkstage4/mkstage4-.ebuild
@@ -23,3 +23,7 @@ src_install() {
newbin exstage4.sh exstage4
einstalldocs
 }
+
+src_test() {
+   bats -r tests/* || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-backup/mkstage4/

2023-04-03 Thread Viorel Munteanu
commit: 6bb41f1ec11ae4752b97cd5e069e1408359a992a
Author: Horea Christian  chymera  eu>
AuthorDate: Sun Mar 12 09:42:51 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 07:41:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bb41f1e

app-backup/mkstage4: drop 0.3

Signed-off-by: Horea Christian  chymera.eu>
Signed-off-by: Viorel Munteanu  gentoo.org>

 app-backup/mkstage4/Manifest|  1 -
 app-backup/mkstage4/mkstage4-0.3.ebuild | 29 -
 2 files changed, 30 deletions(-)

diff --git a/app-backup/mkstage4/Manifest b/app-backup/mkstage4/Manifest
index 9433a680bacd..7622d7dd58f1 100644
--- a/app-backup/mkstage4/Manifest
+++ b/app-backup/mkstage4/Manifest
@@ -1,4 +1,3 @@
 DIST mkstage4-0.3.1.tar.gz 19416 BLAKE2B 
d9d2ec0d9c3aba6331e2500f927cdeace8b728a535f9cc4b4cb8ea93fb7dea2bc5f95be5dbea76c9948836f35bea832a9fdb2acea34518f9a4b5a456507973e0
 SHA512 
f58c89d0d9cc3a65cfa62cc18b0c5f172a69d4b4582e839e98ecd52cafd584395a91e5531ceb171dacd5e4975d6858ae91c5f97a26b62dab0f4ab809f7bcd4c0
-DIST mkstage4-0.3.tar.gz 18648 BLAKE2B 
3a881bc1ec14f5c9795d49306966b586c30a8b415542fb500b5a2af7735008832ebc64f0a166ea4e2fdb48a555bd789b352784f1b05118116ae3f634937beed6
 SHA512 
6971bf4b43a2fdef0b54802b010c99e95caf896c8e109c54f5a6beb4db1714ea5639e0859ba3f958eed92b9fc6a3bb613bb82de440729e71e53543d60549d2db
 DIST mkstage4-0.4.2.tar.gz 19860 BLAKE2B 
d5ab8c0bfd79796ec0f5310a52ed3ba6290b6cc11272a3d69408617f84758981b912628c5f796c1db5129a23db26049e14bf289e6f63f95e2877ab983e568c87
 SHA512 
2b481950f443e8f62ba837fe3d4238db79299776f3a115696e999a484ff6bb664bc54c74e61d31ff8d827c8c9c1174225d613d39ab5d93e0106725889990bd6d
 DIST mkstage4-0.4.tar.gz 19769 BLAKE2B 
833b343f8d8deba2914c24aad07b802f551102f598fa6b149ad2aa8df3b96d189b8a29be8904e510cc4200609b4a2a19d83c510c58745b734898a119ae259313
 SHA512 
13f867c45fe9891754e62f2204e35260ce9c6a756eddea807800cce5cb5d9e7a1b21c27dd0d5142a13bc8b88c441cf618ba5ce6827a0644f6468759062a9e34c

diff --git a/app-backup/mkstage4/mkstage4-0.3.ebuild 
b/app-backup/mkstage4/mkstage4-0.3.ebuild
deleted file mode 100644
index 34da72a2c4b5..
--- a/app-backup/mkstage4/mkstage4-0.3.ebuild
+++ /dev/null
@@ -1,29 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Bash Utility for Creating Stage 4 Tarballs"
-HOMEPAGE="https://github.com/TheChymera/mkstage4";
-SRC_URI="https://github.com/TheChymera/mkstage4/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="test? ( dev-util/bats )"
-RDEPEND="
-   app-shells/bash
-   app-arch/tar
-"
-
-src_install() {
-   newbin mkstage4.sh mkstage4
-   einstalldocs
-}
-
-src_test() {
-   bats tests/* || die
-}



[gentoo-commits] repo/gentoo:master commit in: app-cdr/cdrdao/files/, app-cdr/cdrdao/

2023-04-03 Thread Viorel Munteanu
commit: 5ca93095d379c8afdbf4bb5f2ae23c4ee32e9b25
Author: Martin Dummer  gmx  net>
AuthorDate: Sun Mar 12 20:00:50 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 08:00:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5ca93095

app-cdr/cdrdao: add 1.2.5

Signed-off-by: Martin Dummer  gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/30082
Signed-off-by: Viorel Munteanu  gentoo.org>

 app-cdr/cdrdao/Manifest|  1 +
 app-cdr/cdrdao/cdrdao-1.2.5.ebuild | 53 ++
 .../files/cdrdao-1.2.5-remove-gconf-dep.patch  | 10 
 3 files changed, 64 insertions(+)

diff --git a/app-cdr/cdrdao/Manifest b/app-cdr/cdrdao/Manifest
index ee9143b59282..c66587c5f8c2 100644
--- a/app-cdr/cdrdao/Manifest
+++ b/app-cdr/cdrdao/Manifest
@@ -1 +1,2 @@
 DIST cdrdao-1.2.4.tar.gz 1603363 BLAKE2B 
9c22d21a391b6b1b6ded19f88506acd22e681a43ed91b1c71d20de27ce93cc74381d4efe8574adc929a189143c81f5838ca8d8227ec0e2e05a593f0df9547964
 SHA512 
decdc9d83fe380a4a05443ac26366eb3288d24bd7ed6c16d006707abb616dab91858a59af6638f2d7a72bc7bb6425dbfddd119ca492d18f07afbb27341b23d0b
+DIST cdrdao-1.2.5.tar.gz 858440 BLAKE2B 
6b7f11968335f3c07df2bfc8cbfd53d65a42413026206c47f9bdc792d30faa91f3e9285fd36d884ee42cb31103f666097fb55c8f382202f4e9d2d4ddd4685527
 SHA512 
790468a28e5ba96421c83c2101f61f479099782bc28677c7f52b94990de258e3caf7f77d3105e3e826d848b9488182880857335b1bcfbfca033d9e1fc56d193b

diff --git a/app-cdr/cdrdao/cdrdao-1.2.5.ebuild 
b/app-cdr/cdrdao/cdrdao-1.2.5.ebuild
new file mode 100644
index ..126b1c4d9a3d
--- /dev/null
+++ b/app-cdr/cdrdao/cdrdao-1.2.5.ebuild
@@ -0,0 +1,53 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic
+
+MY_PV="rel_${PV//./_}"
+DESCRIPTION="Burn CDs in disk-at-once mode with a command line interface"
+HOMEPAGE="https://github.com/cdrdao/cdrdao/";
+SRC_URI="https://github.com/${PN}/${PN}/archive/refs/tags/${MY_PV}.tar.gz -> 
${P}.tar.gz"
+S="${WORKDIR}/${PN}-${MY_PV}"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc 
~x86"
+IUSE="encode mad vorbis"
+
+DEPEND="app-cdr/cdrtools
+   encode? ( >=media-sound/lame-3.99 )
+   mad? (
+   media-libs/libao
+   media-libs/libmad
+   )
+   vorbis? (
+   media-libs/libao
+   media-libs/libvorbis
+   )"
+RDEPEND="${DEPEND}
+   !app-cdr/cue2toc"
+BDEPEND="virtual/pkgconfig"
+PATCHES=(
+   "${FILESDIR}/${P}-remove-gconf-dep.patch"
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   append-cxxflags -std=c++11
+
+   filter-lto # https://bugs.gentoo.org/854219
+
+   local myeconfargs=(
+   --without-gcdmaster
+   $(use_with vorbis ogg-support)
+   $(use_with mad mp3-support)
+   $(use_with encode lame)
+   )
+   econf "${myeconfargs[@]}"
+}

diff --git a/app-cdr/cdrdao/files/cdrdao-1.2.5-remove-gconf-dep.patch 
b/app-cdr/cdrdao/files/cdrdao-1.2.5-remove-gconf-dep.patch
new file mode 100644
index ..fc493abc71f2
--- /dev/null
+++ b/app-cdr/cdrdao/files/cdrdao-1.2.5-remove-gconf-dep.patch
@@ -0,0 +1,10 @@
+--- a/configure.ac
 b/configure.ac
+@@ -9,7 +9,6 @@
+ AC_CONFIG_HEADERS(config.h)
+ AM_MAINTAINER_MODE
+ AC_CANONICAL_HOST
+-AM_GCONF_SOURCE_2
+ AM_ICONV
+ 
+ AC_ARG_WITH(pcctsbin,[  --with-pcctsbin=dir set directory of PCCTS parser 
generator executables],[pcctsbin=$withval],[pcctsbin=default])



[gentoo-commits] repo/gentoo:master commit in: dev-java/jakarta-mail-api/

2023-04-03 Thread Jakov Smolić
commit: a7cc1f07af0b5491333c506efd536b91314a55a7
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 08:11:00 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 08:11:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7cc1f07

dev-java/jakarta-mail-api: Stabilize 2.1.1 arm64, #903719

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

 dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild 
b/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
index 11bc903425a9..369577498266 100644
--- a/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
+++ b/dev-java/jakarta-mail-api/jakarta-mail-api-2.1.1.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/mail-api-${PV}/api"
 
 LICENSE="EPL-1.0 EPL-2.0 GPL-2-with-classpath-exception"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
 
 DEPEND="
dev-java/jakarta-activation-api:2



[gentoo-commits] repo/gentoo:master commit in: dev-java/jakarta-activation-api/

2023-04-03 Thread Jakov Smolić
commit: 3bb662bf7922ad8ce593c92c52fc6d2a06c819ac
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 08:10:59 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 08:10:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bb662bf

dev-java/jakarta-activation-api: Stabilize 2.1.1 arm64, #903719

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

 dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild 
b/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
index bf58d5636275..bfe2c0fb17c4 100644
--- a/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
+++ b/dev-java/jakarta-activation-api/jakarta-activation-api-2.1.1.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/jaf-api-${PV}/api"
 
 LICENSE="EPL-1.0"
 SLOT="2"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
 
 DEPEND=">=virtual/jdk-11:*"
 RDEPEND=">=virtual/jre-1.8:*"



[gentoo-commits] repo/gentoo:master commit in: dev-java/byte-buddy/

2023-04-03 Thread Jakov Smolić
commit: 2e00bfb7370bc733e07e1ea54e6da43fe000a207
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 08:11:02 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 08:11:02 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e00bfb7

dev-java/byte-buddy: Stabilize 1.14.0 arm64, #903720

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

 dev-java/byte-buddy/byte-buddy-1.14.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild 
b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
index f1f274b658eb..a47a10e15c2f 100644
--- a/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
+++ b/dev-java/byte-buddy/byte-buddy-1.14.0.ebuild
@@ -18,7 +18,7 @@ 
SRC_URI="https://github.com/raphw/byte-buddy/archive/${P}.tar.gz";
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm arm64 ~ppc64 ~x86"
 
 DEPEND="
>=virtual/jdk-11:*



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

2023-04-03 Thread Rui Huang
commit: af6a8a2927f13d9ba671ba49183a05daa24b443e
Author: Huang Rui  gmail  com>
AuthorDate: Mon Apr  3 09:01:19 2023 +
Commit: Rui Huang  gmail  com>
CommitDate: Mon Apr  3 09:01:19 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=af6a8a29

sci-electronics/verible: update SRC_URI

Signed-off-by: Huang Rui  gmail.com>

 sci-electronics/verible/Manifest| 3 ---
 sci-electronics/verible/verible-0.0.3124.ebuild | 3 ---
 2 files changed, 6 deletions(-)

diff --git a/sci-electronics/verible/Manifest b/sci-electronics/verible/Manifest
index a630c5cc9..3d397eb97 100644
--- a/sci-electronics/verible/Manifest
+++ b/sci-electronics/verible/Manifest
@@ -1,7 +1,6 @@
 DIST 1fb480bc76bc0e331564d672e60b97a388aa3f76.zip 900568 BLAKE2B 
10aed49f61c35ab6b5d15e918939eb1d327f06408e9500a39314bad343fd5476d73aad1a73f6a004386a6a5cfd448893b9746786f4d81eff27207c042a944120
 SHA512 
1c51198f8854f31b413143e7880270925e66aeddf677b49e3610bcdd3b7df460b017a228ef1bd38f9a58af7001d918c111c455bd91e25a0a7638841e300063c7
 DIST 2.8.0.tar.gz 186963 BLAKE2B 
dcdbbf47c8c20b36d7ec72f29c09447c7f3d31366980ca588e082936d3ba2c4c7b0cf6b42747e373a238cd4a10a31ac2894ccf32fc44e11052b59a28b71fd1e3
 SHA512 
73ad57960c25d9fd31b001a5ff2f0e67c4d45db00ff2f9aec090c7a3c4028630b0242f5ae18e58a8374f4aacb4f0bad24ce61cc97fc573aaca623a0b64a85894
 DIST 215bf4aa0bdc081862590463bc98a00bb2be48f2.zip 370899 BLAKE2B 
9d369be804ba80d8280b738943ced195b2bf4279d09d9ce9e0957bf3ee70d2d27bc6b44926ee2d60f5f975747fa505a90ca97533a93d2a9e67f9b5a87c3a0a4a
 SHA512 
97573cf9dad9c3274d4933c113b382265c6731dc15ec1c5a49f80c9453994c8483b09471b90528fecedddecb20603464ef7e15f189be87114614d3012d7a6b09
-DIST 31 174282 BLAKE2B 
6e1d09823c8aea09743b13e86c750154e5807cf9728b3a3615bf66c4229d81e3a5cfedcb9107fe8ac4e93fd17a22ef8c318fe7bf8d974fb55d0c05469aac0f99
 SHA512 
b65d4ca5f8e16259b662b5714bef5fcbd14e3f37dd3d61df4de5b775db49620680a1e5f32244681ad622ffb52a83b7db71c6cec5b2a1e609065323dd1766b8e0
 DIST 35e8e3f7a2c6972d4c591448e8bbe4f9ed9f815a.zip 3123748 BLAKE2B 
dc242904e848c3c014cb2e830dd371695222c7529d2771434e2de5a6540bf3d76af5d7fec21f9cc8965c0199fb74cd07274a1b1f073f2f28be8625ff20ec1582
 SHA512 
6540514e7f0b2c4573e67d22147a6ccb7b4191653e199ec0c52142e9135bc44ba8bfdc2ff57fad25fedc844a1f28a961707d90fe83fba597ae73fe551aabd4f2
 DIST 4.0.0-3.20.0.tar.gz 14434 BLAKE2B 
1aedaa93d673a067731468f62f7e217d28bb8562c7190b122c5cfdfdb3623fad3379275e80485e2fbdb7d54a6a35124c6600092f0995a919aa5da5b66237c162
 SHA512 
39235a1e144d836fdcef901b87d9b57a0f97f39803624ae55d397e22815f81368ba4281464b6ffc55e9ead08ae725e5fe3c4e56d52d117380391e71d2c81cc1b
 DIST 5ae7c2a8d22de2558098e3872fc7f3f7edc61fb4.zip 37860 BLAKE2B 
62163639d8eb9dd6c661447bad3918448800aad56416dd5cfc3e81db4e030d3512ae0e06d1d454bed34ec5057265c9de865ec248044ccfa34386047e8d60b20d
 SHA512 
7951c94c5971a0689e0b1dd16ded14c76dbe8c97b348a81d7eee6f38799623f10741dae4b0a94b9d68a5d0e132aa571ba5784b9e09fd982ffd15832829141510
@@ -9,7 +8,6 @@ DIST 5cf6ff74161d7f985b9bf86bb3c5fb16cef6337b.zip 2524551 
BLAKE2B 4aeec8dec52d0e
 DIST 912a5051f51581784fd64094f6bdabf93f6d698f.zip 493137 BLAKE2B 
dea5e288d74a63498e811588ae38dfe7cdc78b639a8c567b4fb91fc947e6a045bc4a7c82aee488070696fb34aac957d0a63bcc974e463ef07c4c0d9760eb551c
 SHA512 
c77f3453b3f8e1f289fc9aceced3d8ee875725b089011aa2429c3b0f5a6c16302e11b68ae40e338b76ed3a8ade65783635178f15eb69c04201af36a66031238f
 DIST 940cedacdb8a1acbce42093bf67f3a5ca8b265f7.tar.gz 16117 BLAKE2B 
c7fc4892a70d01de9a2c3bd3f173713a85c116293cdec5c747f2238d08bec2049ba2a6d4d443c39283a86086b190fb38e40ff661024c085e35431474e77ac10f
 SHA512 
a56ac33925de1ee41ef3200e098e273547a3a9b31b1489d1c4d142c11caf203ac3ce922ac90f147cc24d2e7d1d73396742887737829e7fa546cc4d11bf70a3b2
 DIST 981f06c3d2bd10225e85209904090eb7b5fb26bd.zip 9908 BLAKE2B 
7f26f14ad26253cb1b8b7e9663a4c76771146c9e0fe8ead3223c3266f5be1515d489dc24addd73d0817a50e79eed67f56db984287ff87d6c00ef9df76d43
 SHA512 
968641bd53c4ef4d2760a979498cda29189fd6e8ccd150eeda587c6f96e9a38c3fc1c1ecc19446ed63950b5e6a29cad5251f3e66219c94774a546ca0f626be08
-DIST abseil 209006 BLAKE2B 
140061097ba2165f33e8cfac69a3be1b6d8ae19deac8fecea2e83c8a5dc6b2705fda12f77f0ac7f5619cfbb33e87d2b25700f1346c77b669d2bed07757a84763
 SHA512 
ce582f4021d2663baacfcf3dc8519fefe3a9bc33844e0cc676d5a7be4976ee66d937d668eb4f50381572f2a3a53957a732f66593ea75f0c7c6869de52259018f
 DIST abseil-cpp-20220623.0.zip 2779034 BLAKE2B 
6a8e3e22de7bd3a14cf0659acaef4040916bb650d6f0cb2f84ecdb3309b4e62e99f686f47c554b123e2f683e3752b42fedbf8a2bc1f5c6356874b7856e325260
 SHA512 
468c6c8092f1eaeb83ec5ce191a61605eac654fca6c25839642c69a2a27de47484bf5d5b2d0db49eb37b807e1ee5fc9bdd4609e02075dd4d2f5b5d35b5eda5b9
 DIST abseil-py-1.2.0.tar.gz 219456 BLAKE2B 
ec7d878692dcf0cbe879cd7df51bc1b8ceeae945b053419b4a024a637e726064128af69fe077a26413f8562dd4a35830b340d000a6c9d520c7674b81a7e417ae
 SHA512 
f363814ed65a68ae4bfd833dc095491349349e70327c0a87ad68ddc3b8429dacc78aaa16d2ff0d733487a12a2ab09094d4ccd1c1133981f65c12d3715cee410d
 DIST anytree-

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

2023-04-03 Thread Viorel Munteanu
commit: e4a18580f55175a327527cbee57cd13921585c9e
Author: Cristian Othón Martínez Vera  cfuga  mx>
AuthorDate: Thu Mar 16 18:23:16 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 09:32:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e4a18580

app-admin/ccze: update HOMEPAGE

Signed-off-by: Cristian Othón Martínez Vera  cfuga.mx>
Closes: https://github.com/gentoo/gentoo/pull/30161
Signed-off-by: Viorel Munteanu  gentoo.org>

 app-admin/ccze/ccze-0.2.1-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-admin/ccze/ccze-0.2.1-r4.ebuild 
b/app-admin/ccze/ccze-0.2.1-r4.ebuild
index b85ce3b6ab6a..b2374ea76464 100644
--- a/app-admin/ccze/ccze-0.2.1-r4.ebuild
+++ b/app-admin/ccze/ccze-0.2.1-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -6,7 +6,7 @@ EAPI=6
 inherit autotools fixheadtails toolchain-funcs
 
 DESCRIPTION="A flexible and fast logfile colorizer"
-HOMEPAGE="https://github.com/madhouse/ccze/releases";
+HOMEPAGE="https://git.madhouse-project.org/archive/ccze";
 SRC_URI="mirror://gentoo/${P}.tar.gz"
 
 LICENSE="GPL-2"



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/esptool/

2023-04-03 Thread Viorel Munteanu
commit: 6976e937453671550442e7a341beb4d7cb69d3bb
Author: Martin Dummer  gmx  net>
AuthorDate: Fri Mar 17 22:43:38 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 09:54:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6976e937

dev-embedded/esptool: add 3.3.3

Signed-off-by: Martin Dummer  gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/30197
Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-embedded/esptool/Manifest |  1 +
 dev-embedded/esptool/esptool-3.3.3.ebuild | 47 +++
 2 files changed, 48 insertions(+)

diff --git a/dev-embedded/esptool/Manifest b/dev-embedded/esptool/Manifest
index da8b9ac2ec63..a748b3d6dfdb 100644
--- a/dev-embedded/esptool/Manifest
+++ b/dev-embedded/esptool/Manifest
@@ -1,3 +1,4 @@
 DIST esptool-3.3.2.tar.gz 7263375 BLAKE2B 
8a24a94c5d8acaa9647a5057cbacb57bdf292651529572d7084dbee1013b6174a383bebacccd75bb08e6de94054f28303d5a9b182f0d30dad9081fd8d61d1c4d
 SHA512 
9f31ab5b702c8aede2062a27943fa655d7fbb07fb4c4c377f2ab5552e5453e7c8126bacc5b8e1e859ee6b81e21a75ed1343639815e395b974cc1aaa005367d84
+DIST esptool-3.3.3.tar.gz 7264378 BLAKE2B 
8c993bd4ccffaf417599daebcb08c6d0b0aa9a360af8c014156812a8236751a51c81f5fd4637e1bbe1cf44f9ab815e7502a67b522857ed6c72ca13d69d1993b6
 SHA512 
1d6b85a4a2911c20243f4aa8fe399edc848d540598765df68c83afcd30bd591e7100089e53ccd1bec21aac0be5d8021d6f90a8a0b563612fcfd01a3bd190a9c6
 DIST esptool-4.4.tar.gz 7213588 BLAKE2B 
a88269ff1bfe2e865dab73cafe2bb567fab027f0679c078a9b7c03b8705763390e3e774ff20ebec0d3dbee5a29d1b1e3d2c1931a3a18ff59b82321a6d0ee0da7
 SHA512 
97d44a5553be380a2d26469bea42b6995c0d97fa3d50e0f6c1673548801983243d204d140ecfc17ee6c9f9c6580e6c6c42a6e953655a06053fa56064af650cf8
 DIST esptool-4.5.1.tar.gz 6971407 BLAKE2B 
8ffc102f5ee854f06156547a46777678df389afbea1229afd1673b26e021a9ec03161e5a1c7fc6fb9b28f6b6a12078c94d9247e351bb46f70b899392aa374d67
 SHA512 
4b665018eb38796cf785ba0caa20435a1bfa5ad5a50f57207d84242307d354405224ccf216b2cfd8b72602d1f04caa4af38feedc7eb7d8984a1e9e308f8789c4

diff --git a/dev-embedded/esptool/esptool-3.3.3.ebuild 
b/dev-embedded/esptool/esptool-3.3.3.ebuild
new file mode 100644
index ..4c1b59d3dce1
--- /dev/null
+++ b/dev-embedded/esptool/esptool-3.3.3.ebuild
@@ -0,0 +1,47 @@
+# Copyright 2021-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{9..11} )
+DISTUTILS_USE_PEP517=setuptools
+DISTUTILS_SINGLE_IMPL=1
+
+inherit distutils-r1
+
+DESCRIPTION="Utility to communicate with the ROM bootloader in Espressif 
ESP8266 and ESP32"
+HOMEPAGE="https://github.com/espressif/esptool";
+SRC_URI="https://github.com/espressif/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   $(python_gen_cond_dep '
+   dev-python/bitstring[${PYTHON_USEDEP}]
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   >=dev-python/ecdsa-0.16.0[${PYTHON_USEDEP}]
+   dev-python/pyserial[${PYTHON_USEDEP}]
+   dev-python/reedsolomon[${PYTHON_USEDEP}]
+   ')
+"
+BDEPEND="
+   $(python_gen_cond_dep '
+   dev-python/wheel[${PYTHON_USEDEP}]
+   ')
+   test? ( $(python_gen_cond_dep '
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/pyelftools[${PYTHON_USEDEP}]
+   ') )
+"
+
+python_test() {
+   "${EPYTHON}" test/test_imagegen.py || die "imagegen test failed with 
${EPYTHON}"
+   "${EPYTHON}" test/test_espsecure.py || die "espsecure test failed with 
${EPYTHON}"
+   "${EPYTHON}" test/test_espefuse_host.py || die "espefuse_host test 
failed with ${EPYTHON}"
+   "${EPYTHON}" test/test_merge_bin.py || die "espefuse_host test failed 
with ${EPYTHON}"
+   # test/test_esptool.py and test/test_espefuse.py need real hardware 
connected
+}



[gentoo-commits] repo/gentoo:master commit in: dev-embedded/esptool/

2023-04-03 Thread Viorel Munteanu
commit: afccdaed14d3d1ab74d889687664c96e1f0b8813
Author: Martin Dummer  gmx  net>
AuthorDate: Fri Mar 17 22:35:18 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 09:54:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afccdaed

dev-embedded/esptool: drop 4.5

Signed-off-by: Martin Dummer  gmx.net>
Signed-off-by: Viorel Munteanu  gentoo.org>

 dev-embedded/esptool/Manifest   |  1 -
 dev-embedded/esptool/esptool-4.5.ebuild | 64 -
 2 files changed, 65 deletions(-)

diff --git a/dev-embedded/esptool/Manifest b/dev-embedded/esptool/Manifest
index 08b759431224..da8b9ac2ec63 100644
--- a/dev-embedded/esptool/Manifest
+++ b/dev-embedded/esptool/Manifest
@@ -1,4 +1,3 @@
 DIST esptool-3.3.2.tar.gz 7263375 BLAKE2B 
8a24a94c5d8acaa9647a5057cbacb57bdf292651529572d7084dbee1013b6174a383bebacccd75bb08e6de94054f28303d5a9b182f0d30dad9081fd8d61d1c4d
 SHA512 
9f31ab5b702c8aede2062a27943fa655d7fbb07fb4c4c377f2ab5552e5453e7c8126bacc5b8e1e859ee6b81e21a75ed1343639815e395b974cc1aaa005367d84
 DIST esptool-4.4.tar.gz 7213588 BLAKE2B 
a88269ff1bfe2e865dab73cafe2bb567fab027f0679c078a9b7c03b8705763390e3e774ff20ebec0d3dbee5a29d1b1e3d2c1931a3a18ff59b82321a6d0ee0da7
 SHA512 
97d44a5553be380a2d26469bea42b6995c0d97fa3d50e0f6c1673548801983243d204d140ecfc17ee6c9f9c6580e6c6c42a6e953655a06053fa56064af650cf8
 DIST esptool-4.5.1.tar.gz 6971407 BLAKE2B 
8ffc102f5ee854f06156547a46777678df389afbea1229afd1673b26e021a9ec03161e5a1c7fc6fb9b28f6b6a12078c94d9247e351bb46f70b899392aa374d67
 SHA512 
4b665018eb38796cf785ba0caa20435a1bfa5ad5a50f57207d84242307d354405224ccf216b2cfd8b72602d1f04caa4af38feedc7eb7d8984a1e9e308f8789c4
-DIST esptool-4.5.tar.gz 7263652 BLAKE2B 
7d77a61159e2fbd7abd4897202c1a1c6622a12ac30e453e74258cf1151f2ae2e2332c79abb81fbc9a2ee897db01006afa86ce4f9ef9a700f12a04a13ef932597
 SHA512 
b55cb334ee82048195c60afe0a86e1a9952e3e91aa3c5c97b1b44709cf24c793ed0da4607b1ecefc87ed5f5f16951f9e4db68bc33a8f96d193479e7f73964763

diff --git a/dev-embedded/esptool/esptool-4.5.ebuild 
b/dev-embedded/esptool/esptool-4.5.ebuild
deleted file mode 100644
index 68ef41735cdc..
--- a/dev-embedded/esptool/esptool-4.5.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 2021-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..11} )
-DISTUTILS_USE_PEP517=setuptools
-DISTUTILS_SINGLE_IMPL=1
-
-inherit distutils-r1
-
-DESCRIPTION="Utility to communicate with the ROM bootloader in Espressif 
ESP8266 and ESP32"
-HOMEPAGE="https://github.com/espressif/esptool";
-SRC_URI="https://github.com/espressif/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
-
-RDEPEND="
-   $(python_gen_cond_dep '
-   dev-python/bitstring[${PYTHON_USEDEP}]
-   dev-python/cryptography[${PYTHON_USEDEP}]
-   >=dev-python/ecdsa-0.16.0[${PYTHON_USEDEP}]
-   dev-python/pyserial[${PYTHON_USEDEP}]
-   dev-python/reedsolomon[${PYTHON_USEDEP}]
-   ')
-"
-BDEPEND="
-   $(python_gen_cond_dep '
-   dev-python/wheel[${PYTHON_USEDEP}]
-   ')
-   test? ( $(python_gen_cond_dep '
-   dev-python/cffi[${PYTHON_USEDEP}]
-   dev-python/pyelftools[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-   ') )
-"
-
-distutils_enable_tests pytest
-
-EPYTEST_DESELECT=(
-   # test/test_esptool.py and test/test_espefuse.py need real hardware 
connected
-   test/test_esptool.py
-   test/test_espefuse.py
-)
-
-src_prepare() {
-   default
-
-   # test_espsecure_hsm.py calls unavailable python modules and is broken 
anyway
-   rm test/test_espsecure_hsm.py || die
-}
-
-pkg_postinst() {
-   if ver_test ${REPLACING_VERSIONS} -lt 4; then
-   ewarn "${P} - new 4.x release with breaking changes:"
-   ewarn "  - Public API has been defined by limiting access to 
internals that have been refactored into multiple source files"
-   ewarn "  - If active security features are detected, the 
default behavior changes to prevent unintentional bricking"
-   ewarn "  - Flash parameters in an image header can now be 
changed only when no SHA256 digest is appended"
-   ewarn "  - The ESP8684 alias has been removed, ESP32-C2 has to 
be used"
-   ewarn "  - Megabit flash sizes have been deprecated, use 
megabyte units from now on"
-   fi
-}



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

2023-04-03 Thread Viorel Munteanu
commit: 4531114f7ea59e0f4a3c22a5c191e257cdbb5b09
Author: Randy Barlow  electronsweatshop  com>
AuthorDate: Sat Mar 18 18:38:51 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 10:50:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4531114f

app-misc/rpick: Add 0.8.13

Signed-off-by: Randy Barlow  electronsweatshop.com>
Closes: https://github.com/gentoo/gentoo/pull/30216
Signed-off-by: Viorel Munteanu  gentoo.org>

 app-misc/rpick/Manifest|  55 +++
 app-misc/rpick/rpick-0.8.13.ebuild | 138 +
 2 files changed, 193 insertions(+)

diff --git a/app-misc/rpick/Manifest b/app-misc/rpick/Manifest
index 630be4734048..bfda96e21e59 100644
--- a/app-misc/rpick/Manifest
+++ b/app-misc/rpick/Manifest
@@ -1,17 +1,26 @@
 DIST aho-corasick-0.7.19.crate 113070 BLAKE2B 
5ddaa0d415d19cf9922b5723bf3480750634ea68cb66fd05bfa2bf57607eb6383ba86d8c55f70adb87b71b98caa73d8f6ebd075c006493530c81979032899b60
 SHA512 
0d63d29079650bde4e8a9f8529716b9d8c42db076a1d74715116240c2628173f1e86fb29c08a25ad07a0148e48789ab20de0c186a8b3dfb193cbfeb0d76ae78c
+DIST aho-corasick-0.7.20.crate 111440 BLAKE2B 
3f5d54fea2793ce1c2c4d5b3049b910f45a5721e7538cb2557df63dc3069ab3f6b66aceb5e9a48f21c43ae29778fd045428ea103b2a6de81659e605e30e64ca6
 SHA512 
ad31f3d1b3fe41e593d4ca7e721bbad62936f2e6a17fd1e0997353edb6fc906d1bef2b79f0ac7c7676abe637bbabb23ff22059947be379a2441011f8178983c5
 DIST approx-0.5.1.crate 15100 BLAKE2B 
8fe84d52263521c0b72a1d1e82ed283828f680b8b56f532df2c14ea86ca09e793686d823c5d58ecfd7a829948543bb375e85223c866cf036e9432be5d6aa7399
 SHA512 
c6d768496c974b6ff4cf7ad8e65f3fc9faf29a1957da497968ee112c6a0b9d7a0ff9a2579206e864976c0f65ed2190bc9d2b63b31a09ced7b57879e207c46407
 DIST assert_cmd-2.0.6.crate 22701 BLAKE2B 
9c56c1e17c00995aac776d7f476fa38795dd4a831e0c43455d79335eb6ef578a2e94c56247bb5d0214835aa89262659554302ad56287271ffb040931e4687303
 SHA512 
939651675ca59f5f414d15774b4eb6138179a9a3e43095678cb453fbd6e098c0b837c398d849fcb22b6dedcd37d21ce7f3227ca86deeac169ea5c18dfed5d947
+DIST assert_cmd-2.0.8.crate 24347 BLAKE2B 
b69beb301a11e893ee1c7b59a08ac7860c16a598dc404d7bfd38b2554790898cfb82d1e602750e9b720b4122154e4da140c7b077645786f0a788796d5dafe272
 SHA512 
886d789af9fe7f8155d393e2742c7982d5c0bb8d44a09f66e5552faed2effcedd000d567f9f00e08ad6d7c17fac9374d7a234ba001f38c9cf444ee41dbe07428
 DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab
 SHA512 
d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
 DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
 DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
 DIST bstr-0.2.17.crate 330350 BLAKE2B 
90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192
 SHA512 
883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2
 DIST bstr-1.0.1.crate 340636 BLAKE2B 
5c5c67fd6ac1d7219eb0b47fab4a32dcaca91218316a0151e8cdcda0c94dbec06623cb1ac1cc8a2203bd77bfeaaed57042b2dfb401f5f4bd8d397d64a34d9e56
 SHA512 
b4896364458074cf478c8df412619860858f5eb96e2228e5d083f074dd11b49ec1076df314c5d593dd4f8da1a286305793cdfecbcd9aa5f417706e545c4e8585
+DIST bstr-1.3.0.crate 340998 BLAKE2B 
cb965b9fc3f2e6906308eac7a99f1920423646fdce3221df0d532167239c4195a7b8f4451c34914c4a8ea99a79f847b6c8d0bf1f392044120ee27e02fd3418a1
 SHA512 
bacb9d8ef907853810bfa67efb670a98f76116af74161664ef11fc875f0b9f5f80423ee8af7db6a483f2c7cf70c13be3a36cbc1354698ea55405c684e9604253
 DIST bytemuck-1.12.3.crate 39835 BLAKE2B 
70bb0459b80fceec7f3c16c70a251f3d0e77069d77468e80c8ab2c3fcb7596dfd072c2214008d78ed1bd1a19332ed312b50a77b9f57c4230f2815768497fabcd
 SHA512 
4bd87ace983d659877792e4f463d7ccf16e5a524f2c9698728bd688bf9d0cc5651cf641f4d6d987c8c26be5e56d11d22537389ac76a8d49b4d6e25b6a2284c1e
+DIST bytemuck-1.13.1.crate 42309 BLAKE2B 
055e031a677823c110e6e1e371632a0a5a8227ef7053e964bd3f9967705bdedf96b14178818021ffc09182ead805a68813a8a2b9cf7a70b6e8daf733eac4
 SHA512 
eb0a7e423a3f903fb831369e0c6d1e5fbffd7eff1b56bb7d1ffe4e5e18850cdfb9a7f9bdcfd53ce10b1c659dff11c59190b7b85ad89ca60485878548621f01c0
+DIST cc-1.0.79.crate 62624 BLAKE2B 
b3cbed3bd6fcac1c6ea258ec96cd107f859947a35dc89c3dc8f314741b0f668e61518f896ec32ce10c9a7eb20dd350bc177a718

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

2023-04-03 Thread Viorel Munteanu
commit: 9e8a9d1d2cdde216d78487ebba0c7d3122e1cc80
Author: Randy Barlow  electronsweatshop  com>
AuthorDate: Sat Mar 18 18:25:10 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 10:50:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e8a9d1d

app-misc/rpick: Drop 0.8.11

Signed-off-by: Randy Barlow  electronsweatshop.com>
Signed-off-by: Viorel Munteanu  gentoo.org>

 app-misc/rpick/Manifest|  59 
 app-misc/rpick/rpick-0.8.11.ebuild | 134 -
 2 files changed, 193 deletions(-)

diff --git a/app-misc/rpick/Manifest b/app-misc/rpick/Manifest
index 6a4e695ec5dc..630be4734048 100644
--- a/app-misc/rpick/Manifest
+++ b/app-misc/rpick/Manifest
@@ -1,70 +1,44 @@
-DIST aho-corasick-0.7.18.crate 112923 BLAKE2B 
4f6947d1aacf89ccfab0592cdc55fa61ef09cea38231d3f758765dbce328a810c0b588be4ba96e81d64955379ee005722d22a7aec39caea6e72342245d7ca34f
 SHA512 
7a23b16231a90d23ee60ad4c81bc225410599a4560d33d3a203138fc540c39cf1000100fed3aed40dcc371c3635656a3792545dca5dd1aefbde00d8774eebd00
 DIST aho-corasick-0.7.19.crate 113070 BLAKE2B 
5ddaa0d415d19cf9922b5723bf3480750634ea68cb66fd05bfa2bf57607eb6383ba86d8c55f70adb87b71b98caa73d8f6ebd075c006493530c81979032899b60
 SHA512 
0d63d29079650bde4e8a9f8529716b9d8c42db076a1d74715116240c2628173f1e86fb29c08a25ad07a0148e48789ab20de0c186a8b3dfb193cbfeb0d76ae78c
 DIST approx-0.5.1.crate 15100 BLAKE2B 
8fe84d52263521c0b72a1d1e82ed283828f680b8b56f532df2c14ea86ca09e793686d823c5d58ecfd7a829948543bb375e85223c866cf036e9432be5d6aa7399
 SHA512 
c6d768496c974b6ff4cf7ad8e65f3fc9faf29a1957da497968ee112c6a0b9d7a0ff9a2579206e864976c0f65ed2190bc9d2b63b31a09ced7b57879e207c46407
-DIST arrayref-0.3.6.crate 10035 BLAKE2B 
88292fa4b3ad4fccd03772c2f0eca04cc13373fe094358bac57d7523c256d89f3087603e5bcb2a0b15d8b2ecd48e904a822b2cb800276a9c47ad6c6b660d9d34
 SHA512 
368341d00706c1250ff081b0d99c36c9af694a62ff4f4d8c837234340295771ca49c5439b24b6e1a4f2c3c5821764e98881dcb22d793f83de632fd5cb457671f
-DIST arrayvec-0.5.2.crate 27838 BLAKE2B 
51e2eacae0ef148f3f52d21ae00794e540e7ce4c013fb496dd1347ad91ffbbca199381fffbb064225f829216f6c5e915edfa64833f91fabdd13c3f011d86491f
 SHA512 
1896b5f64b4dbdcff8ad234bda4ea8129bcacf87839347304717e94ee9f369cf5f4371755e453ff7d72817edb8f7fdbc726d77cc4f28ed05148dc89c7714b004
-DIST assert_cmd-2.0.4.crate 22581 BLAKE2B 
7fc9fe4577e486f26d07b2b4419c331022ca61923d0664f4e8a25abbe6d6305600b47c739f9f065ef778bdeb59b6309ab73df2be11e5f8387cac2e7e8c70a4a2
 SHA512 
c389e0210153e9a6ccbba4dbc6a6c7a23533e5fe76e717dbc36415be2adbabfbc0de33a2e6d05e3d70779b7a278580edba400c688c9a6b446403b59a78d93720
 DIST assert_cmd-2.0.6.crate 22701 BLAKE2B 
9c56c1e17c00995aac776d7f476fa38795dd4a831e0c43455d79335eb6ef578a2e94c56247bb5d0214835aa89262659554302ad56287271ffb040931e4687303
 SHA512 
939651675ca59f5f414d15774b4eb6138179a9a3e43095678cb453fbd6e098c0b837c398d849fcb22b6dedcd37d21ce7f3227ca86deeac169ea5c18dfed5d947
 DIST atty-0.2.14.crate 5470 BLAKE2B 
2db856a9e898a430258f059aeaf7c844a153293e8856d90ac81f7d91a888c89198768ad5cb09303c23241fe85c560a55148fa56a303651a82b0edb895616bfab
 SHA512 
d7b6c4b9a0f898d91ddbc41a5ee45bbf45d1d269508c8cc87ee3e3990500e41e0ec387afb1f3bc7db55bedac396dd86c6509f4bf9e5148d809c3802edcc5e1d9
 DIST autocfg-1.1.0.crate 13272 BLAKE2B 
7724055c337d562103f191f4e36cab469e578f0c51cc24d33624dea155d108a07578703766341fd6a4cc1ef52acda406e7dba1650d59115f18261281e5b40203
 SHA512 
df972c09abbdc0b6cb6bb55b1e29c7fed706ece38a62613d9e275bac46a19574a7f96f0152cccb0239efea04ee90083a146b58b15307696c4c81878cd12de28f
-DIST base64-0.13.0.crate 62070 BLAKE2B 
b957f65cdb1e28baeca0cefc92fa98be797409b7dabd15e0e88db6cdfb89779b662cba9f2270fbf3b7b66948fdc46c118b8040a78ab72049c48a928fa802bee0
 SHA512 
991a72999839daa232f508c5b24e7d3225e8a26db8d1d0e747881b115af9e408b92374e163b31e0b0d324c1c2e57e8e38d66861b61eb0a1dba87bb5871940151
 DIST bitflags-1.3.2.crate 23021 BLAKE2B 
eb990bb27b2bdeb66fd7212ce582cb36e1c616debbac85df642d0c82b25439e6bf9b1e811fac76b59e58ea3c1bbea6170d03a61e8f9a395e4334a0e2e2987eda
 SHA512 
3c698f757b5cc62f815f9a1cce365c3d2dd88e4db71f331dff8bba86c2865f755b81cb4c9bfc59bd86b7643b0943f9e09a7c4f8ad75eb2ab0e714803d0129f62
-DIST blake2b_simd-0.5.11.crate 34096 BLAKE2B 
480fc200ce3fa3bb364ae05590fe26f59efb6f81fc2fcb7ae1593671677daa6f1b526d800099d002239e2ad435b919e9b32778021c0790954383079a49a90965
 SHA512 
4a7657db637869465637cb9a65cb82e7a119c554bd4d532aaf84f9cc77a494fda07d07db89c73e92e5bf4844bb1be53062fc61120e839e414e938e487e7f2257
 DIST bstr-0.2.17.crate 330350 BLAKE2B 
90c3a48d78b73d7e36a3da9fda0beae6e91ce534d17198ea8ceee0b613d03297f9dd8bca30e1ec5da01d1da359a1da72b2c2771b77c82bebab5006cafd665192
 SHA512 
883eac8210d14f89517b4dd5e25d02c97cf31602ec74498b5e186112ba0f154d47de8d1c41a8f4e5503f3b53c064e2c976b60bbfd63fc28b186bc006e00f20c2
 DIST bstr-1.0.1.crate 340636 BLAKE2B 
5c5c67fd6ac1d7219eb0b47fab4a32dcaca91218316a0151e8cdcda0c94dbec06623cb1ac1cc8a2203bd77bfeaaed57042b2dfb401f5f4bd8d397d64a34d9e56
 SHA512 
b48963

[gentoo-commits] data/api:master commit in: files/overlays/

2023-04-03 Thread Florian Schmaus
commit: eb6498a58f5dda83d33b597d4e58e43cc7bc0775
Author: luxifr  gmail  com>
AuthorDate: Tue Mar 28 14:46:49 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Apr  3 12:12:03 2023 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=eb6498a5

repositories: Remove luxifer-overlay

Closes: https://bugs.gentoo.org/903572x
Closes: https://github.com/gentoo/api-gentoo-org/pull/596
Signed-off-by: Florian Schmaus  gentoo.org>

 files/overlays/repositories.xml | 12 
 1 file changed, 12 deletions(-)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index ca62bf2..72bc5e0 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -2357,18 +2357,6 @@
 
 https://scm.dashjr.org/scmroot/git/portage-overlays/luke-jr
   
-  
-luxifer
-Personal Overlay, contains stoken 
ebuilds
-https://github.com/luxifr/olgentoo
-
-  dher...@gmail.com
-  Dominik Keil
-
-https://github.com/luxifr/olgentoo.git
-git+ssh://g...@github.com/luxifr/olgentoo.git
-https://github.com/luxifr/olgentoo/commits/master.atom
-  
   
 maekke
 Markus Meier developer overlay



[gentoo-commits] data/api:master commit in: files/overlays/

2023-04-03 Thread Florian Schmaus
commit: 8631f705f8b55fae3c15fcbe11c647646c874561
Author: Gabriel Sanches  gsr  dev>
AuthorDate: Thu Mar  2 16:01:22 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Apr  3 12:15:22 2023 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=8631f705

repositories: Add gbrlsnchs

Closes: https://github.com/gentoo/api-gentoo-org/pull/594
Signed-off-by: Florian Schmaus  gentoo.org>

 files/overlays/repositories.xml | 12 
 1 file changed, 12 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 72bc5e0..65d6c42 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -1537,6 +1537,18 @@
 https://cgit.gentoo.org/proj/gamerlay.git/atom/
 
   
+  
+gbrlsnchs
+Gabriel Sanches's personal ebuild 
repository
+https://sr.ht/~gbrlsnchs/ebuilds
+
+  gabr...@gsr.dev
+  Gabriel Sanches
+
+https://git.sr.ht/~gbrlsnchs/ebuilds
+ssh://g...@git.sr.ht:~gbrlsnchs/ebuilds
+https://git.sr.ht/~gbrlsnchs/ebuilds/log/trunk/rss.xml
+  
   
 gentoo
 Official Gentoo ebuild repository



[gentoo-commits] data/api:master commit in: files/overlays/

2023-04-03 Thread Florian Schmaus
commit: 89abf7438c1b7229584f370184b1e4d4263e84e9
Author: ShyPixie  lara  monster>
AuthorDate: Fri Jan 13 15:21:37 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Apr  3 12:15:40 2023 +
URL:https://gitweb.gentoo.org/data/api.git/commit/?id=89abf743

Add calendulish overlay

Closes: https://github.com/gentoo/api-gentoo-org/pull/595
Signed-off-by: Florian Schmaus  gentoo.org>

 files/overlays/repositories.xml | 12 
 1 file changed, 12 insertions(+)

diff --git a/files/overlays/repositories.xml b/files/overlays/repositories.xml
index 65d6c42..bb50a66 100644
--- a/files/overlays/repositories.xml
+++ b/files/overlays/repositories.xml
@@ -716,6 +716,18 @@
 
 git://git.calculate-linux.org/calculate/calculate-overlay.git
   
+  
+calendulish
+calendulish Gentoo Overlay
+https://github.com/calendulish/Overlays
+
+  dev@lara.monster
+  Lara Maia
+
+https://github.com/calendulish/Overlays.git
+git+ssh://g...@github.com/calendulish/Overlays.git
+https://github.com/calendulish/Overlays/commits/master.atom
+  
   
 canutethegreat-overlay
 Overlay for personal projects, forks, and 
customizations



[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/zw3d/

2023-04-03 Thread Rui Huang
commit: a6b8653d459ad23223a8c38b4fcf9e35880b3a81
Author: Huang Rui  gmail  com>
AuthorDate: Mon Apr  3 12:46:37 2023 +
Commit: Rui Huang  gmail  com>
CommitDate: Mon Apr  3 12:46:37 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=a6b8653d

media-gfx/zw3d: add 2023.0.3.1

Signed-off-by: Huang Rui  gmail.com>

 media-gfx/zw3d/Manifest   |   1 +
 media-gfx/zw3d/zw3d-2023.0.3.1.ebuild | 163 ++
 2 files changed, 164 insertions(+)

diff --git a/media-gfx/zw3d/Manifest b/media-gfx/zw3d/Manifest
index 996f78c91..0a0ae2334 100644
--- a/media-gfx/zw3d/Manifest
+++ b/media-gfx/zw3d/Manifest
@@ -1 +1,2 @@
 DIST zw3d-2022.0.3.1.deb 830137436 BLAKE2B 
d2f5976ec8e00ab31f2e34b690b5f8e2c637500ea7a599d2409ebe07db2c36bb1bb0c98b17b3515672dbfe26d9ddf05e36f0f91a5c0a535a7b87ffaaf389fa6b
 SHA512 
fba4aa4b3752895bbc644b77624a1548dbea0449c13f31ded12cb213feec26ba28b205c13b77fa99fce7cf93d082583865d67d12775b94e9e46585b71214f5f0
+DIST zw3d-2023.0.3.1.deb 502969732 BLAKE2B 
f20034be406e132ffbc17020f10ec53eadc9c816c80b19f63ab42a714b1acb4848f087ce4fde2d05472e61e5c9a8f79794bbd5018f283f987d85869f7afa19e7
 SHA512 
3719b758706546f255aedd5e407e054fb765c90d8f9b99cac200f0e482203de1384c12684178c257d3771085c22b185a8c4af10295f178d9518cac8b8a4adb27

diff --git a/media-gfx/zw3d/zw3d-2023.0.3.1.ebuild 
b/media-gfx/zw3d/zw3d-2023.0.3.1.ebuild
new file mode 100644
index 0..ff1cdd0c6
--- /dev/null
+++ b/media-gfx/zw3d/zw3d-2023.0.3.1.ebuild
@@ -0,0 +1,163 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PGK_NAME="com.zwsoft.zw3dprofessional"
+inherit unpacker xdg
+
+DESCRIPTION="CAD/CAM software for 3D design and processing"
+HOMEPAGE="https://www.zwsoft.cn/product/zw3d/linux";
+SRC_URI="https://home-store-packages.uniontech.com/appstore/pool/appstore/c/${MY_PGK_NAME}/${MY_PGK_NAME}_${PV}_amd64.deb
 -> ${P}.deb"
+
+LICENSE="all-rights-reserved"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+
+RESTRICT="strip mirror bindist"
+
+RDEPEND="
+   app-arch/bzip2
+   app-arch/xz-utils
+   app-text/djvu
+   dev-db/sqlite:3
+   dev-libs/glib:2
+   dev-libs/libpcre
+   dev-libs/libxml2
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtprintsupport:5
+   dev-qt/qtsvg:5
+   media-fonts/noto-cjk
+   media-gfx/imagemagick
+   media-libs/jbigkit
+   media-libs/libglvnd
+   media-libs/libpng
+   media-libs/opencollada
+   media-libs/tiff
+   media-libs/tiff-compat:4
+   net-libs/zeromq
+   sys-libs/zlib
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXcomposite
+   x11-libs/libXext
+   x11-libs/libxkbcommon
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   x11-libs/pango
+"
+
+DEPEND="${RDEPEND}"
+
+BDEPEND="
+   dev-util/bbe
+   dev-util/patchelf
+"
+
+S=${WORKDIR}
+
+QA_PREBUILT="*"
+
+src_compile() {
+   default
+   # Fix zw3d coredump when run
+cat >> "${T}"/zw3d.c <<- EOF || die
+#include 
+extern int DiModuleEntryPoint(uint64_t argc, uint64_t argv, uint64_t envp);
+int main(int argc, char* argv[], char* envp[])
+{
+return DiModuleEntryPoint((uint64_t)(uintptr_t)&argc, 
(uint64_t)(uintptr_t)argv, (uint64_t)(uintptr_t)envp);
+}
+   EOF
+
+TAB=$'\t'
+cat >> "${T}"/Makefile <<- EOF || die
+.PHONY: all
+all:
+${TAB}\$(CC) \$(LDFLAGS) \
+-o "\$(S)/opt/apps/\$(MY_PGK_NAME)/files/zw3d" \
+zw3d.c \
+-L"\$(S)/opt/apps/\$(MY_PGK_NAME)/files/lib" \
+-lDrawingInstance \
+-lstdc++ \
+-lm \
+-lgcc_s \
+-Wl,--unresolved-symbols=ignore-all
+   EOF
+
+   emake S="${S}" MY_PGK_NAME="${MY_PGK_NAME}" -C "${T}" || die
+}
+
+src_install() {
+   # Install scalable icons, desktop files, mimes
+   mkdir -p "${S}"/usr/share || die
+   mv "${S}"/opt/apps/${MY_PGK_NAME}/entries/* "${S}"/usr/share || die
+
+   # Set RPATH for preserve-libs handling
+   pushd "${S}"/opt/apps/${MY_PGK_NAME}/files || die
+   local x
+   for x in $(find) ; do
+   # Use \x7fELF header to separate ELF executables and libraries
+   [[ -f ${x} && $(od -t x1 -N 4 "${x}") == *"7f 45 4c 46"* ]] || 
continue
+   local RPATH_ROOT="/opt/apps/${MY_PGK_NAME}/files"
+   local 
RPATH_S="${RPATH_ROOT}/:${RPATH_ROOT}/lib/:${RPATH_ROOT}/lib/xlator/:${RPATH_ROOT}/lib/xlator/InterOp/:${RPATH_ROOT}/libqt/:${RPATH_ROOT}/libqt/plugins/designer/:${RPATH_ROOT}/lib3rd/:/usr/lib64/"
+   patchelf --set-rpath "${RPATH_S}" "${x}" || \
+   die "patchelf failed on ${x}"
+   # patchelf --replace-needed libMagickCore-6.Q16.so.7 
libMagickCore-7.Q16.so "${x}" || \
+   #   die "patchelf failed on ${x}"
+   patchelf --replace-needed libjbig.so.0 libjbig.so "${x}" || \
+

[gentoo-commits] repo/proj/guru:dev commit in: media-gfx/zw3d/

2023-04-03 Thread Rui Huang
commit: f3298a092ba5eaeb8dacaf0518d5f7ee808dc4e5
Author: Huang Rui  gmail  com>
AuthorDate: Mon Apr  3 12:47:28 2023 +
Commit: Rui Huang  gmail  com>
CommitDate: Mon Apr  3 12:47:28 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f3298a09

media-gfx/zw3d: rev bump due to RDEPEND changed

Signed-off-by: Huang Rui  gmail.com>

 .../zw3d/{zw3d-2022.0.3.1-r2.ebuild => zw3d-2022.0.3.1-r3.ebuild}  | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-gfx/zw3d/zw3d-2022.0.3.1-r2.ebuild 
b/media-gfx/zw3d/zw3d-2022.0.3.1-r3.ebuild
similarity index 98%
rename from media-gfx/zw3d/zw3d-2022.0.3.1-r2.ebuild
rename to media-gfx/zw3d/zw3d-2022.0.3.1-r3.ebuild
index e5729f799..7aa3a55b2 100644
--- a/media-gfx/zw3d/zw3d-2022.0.3.1-r2.ebuild
+++ b/media-gfx/zw3d/zw3d-2022.0.3.1-r3.ebuild
@@ -35,7 +35,8 @@ RDEPEND="
media-libs/libglvnd
media-libs/libpng
media-libs/opencollada
-   || ( media-libs/tiff:0/0 media-libs/tiff-compat:4 )
+   media-libs/tiff
+   media-libs/tiff-compat:4
net-libs/zeromq
sys-libs/zlib
x11-libs/cairo



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

2023-04-03 Thread Ben Kohler
commit: 76a805aa12edcc6c854adb550054d93da9845fe0
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Apr  3 13:01:09 2023 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Apr  3 13:10:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76a805aa

dev-libs/libcpuid: add 0.6.3

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

 dev-libs/libcpuid/Manifest  |  1 +
 dev-libs/libcpuid/libcpuid-0.6.3.ebuild | 37 +
 2 files changed, 38 insertions(+)

diff --git a/dev-libs/libcpuid/Manifest b/dev-libs/libcpuid/Manifest
index 9b777e15e851..82ef880e0764 100644
--- a/dev-libs/libcpuid/Manifest
+++ b/dev-libs/libcpuid/Manifest
@@ -1 +1,2 @@
 DIST libcpuid-0.6.2.tar.gz 265896 BLAKE2B 
27f7c6c6a8bce6f27ca2f537c0255d8e8efa4ca5a7a278deecdb7b5c122830cc49e7e4524a2b2c0c39c0a43b3d05649c5e95a1bee843b6ddd981e3bee33383ab
 SHA512 
36175387ae86e6f602544c516a875ac7fe0a3bde52e3e3c09f8852a804dd252694e17c638723aa3d36219d4588981cfd2261086bcf561d175e7c038e3a69e2ff
+DIST libcpuid-0.6.3.tar.gz 279969 BLAKE2B 
c789ed211dfea9741536ba651973e0fa16315b174a3d3a77cdeb5d8e7734fae6891cdc2ff8f697cde4efd9ffe991ea59dae3431bc5990af08df27a1eabb67c4a
 SHA512 
5351a5b86c8d06d18392649f9834f80fb7500252a5e5bf22f96f86e014e6695ef1da6fdc27251839352ce35837eebaac5f20570f8cb1b95adec816db7ee413f5

diff --git a/dev-libs/libcpuid/libcpuid-0.6.3.ebuild 
b/dev-libs/libcpuid/libcpuid-0.6.3.ebuild
new file mode 100644
index ..75cb5bcb7074
--- /dev/null
+++ b/dev-libs/libcpuid/libcpuid-0.6.3.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=(python3_{9..11})
+
+inherit autotools python-any-r1
+
+DESCRIPTION="A small C library for x86 (and x86_64) CPU detection and feature 
extraction"
+HOMEPAGE="http://libcpuid.sourceforge.net/";
+SRC_URI="https://github.com/anrieff/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+LICENSE="BSD-2"
+SLOT="0/16"
+KEYWORDS="~amd64"
+IUSE="static-libs test"
+RESTRICT="!test? ( test )"
+
+DEPEND="test? ( ${PYTHON_DEPS} )"
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf "$(use_enable static-libs static)"
+}
+
+src_install() {
+   default
+   find "${ED}" -name "*.la" -delete || die
+}



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

2023-04-03 Thread Ben Kohler
commit: 363cfa28eadb5804fcbb255a01346a48d9c9337e
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Apr  3 13:09:17 2023 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Apr  3 13:10:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=363cfa28

sys-apps/cpu-x: USE description for vulkan flag

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

 sys-apps/cpu-x/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-apps/cpu-x/metadata.xml b/sys-apps/cpu-x/metadata.xml
index 52d661f4aca7..2dbac098c827 100644
--- a/sys-apps/cpu-x/metadata.xml
+++ b/sys-apps/cpu-x/metadata.xml
@@ -25,6 +25,7 @@
Use the media-libs/glfw library for 
GPU info
Use the sys-apps/pciutils library 
for PCI info
Use the virtual/opencl 
library
+   Enable vulkan support


Intégrer bandwidth



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

2023-04-03 Thread Ben Kohler
commit: 645fa056a5416220786936a474d2348a701a03de
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Apr  3 13:07:06 2023 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Apr  3 13:10:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=645fa056

sys-apps/cpu-x: add 4.5.3

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

 sys-apps/cpu-x/Manifest   |  1 +
 sys-apps/cpu-x/cpu-x-4.5.3.ebuild | 80 +++
 2 files changed, 81 insertions(+)

diff --git a/sys-apps/cpu-x/Manifest b/sys-apps/cpu-x/Manifest
index da2a55e560d7..b2bc123ec5aa 100644
--- a/sys-apps/cpu-x/Manifest
+++ b/sys-apps/cpu-x/Manifest
@@ -1,2 +1,3 @@
 DIST cpu-x-4.5.1.tar.gz 1916681 BLAKE2B 
cf0e14050a884cbd763fb5bfe56a93db4c3e4bf0322f55304d6fe09d5b38210ee4139641654aee205761d3327f1b498d0dc88640c6432c4a9b0c62193c0671da
 SHA512 
25b2d51ae093c5cb607aa77e05be0f62df3dc1d2022d96a2cfe935fedcbe2f5f85d9da16e1df05377a7e02280365c165ee93a2c22d1e4364d008bd669a69b2ec
 DIST cpu-x-4.5.2.tar.gz 1919087 BLAKE2B 
d4f1564496f2aded5b40f1cce0ca3e5213486b266b4375035294d5564b9a4a59a2cb3ff87fd27280b2f32a3fe233a2f5dcc09d9a1acbefd16d270c0ff871b96e
 SHA512 
a1700293930d7030f5240296f98c40d0e3e7e228678ebb3f87eebaa1939eec9905171ea3716968cad117dc6e4f173ebabe66c5f175b55e45b42b3d373a6f30e5
+DIST cpu-x-4.5.3.tar.gz 1910854 BLAKE2B 
98bb905e24d11ba4f599badd8f9de272fc0b8cd63cd000b7e0e09d7b98da7663d34abe62451aa8d617520fb62d43ae29cae049a14cdf840330be8b404ed7b61a
 SHA512 
3f3e4f1d31e4e84bdeb68e448a1dabd2e22965caed1668300945a1d9150f77422b685a7a0bad997371ba08a3b0ac7fe3eab3aa1d0b485942347a72eb81d21b4f

diff --git a/sys-apps/cpu-x/cpu-x-4.5.3.ebuild 
b/sys-apps/cpu-x/cpu-x-4.5.3.ebuild
new file mode 100644
index ..9de59f506105
--- /dev/null
+++ b/sys-apps/cpu-x/cpu-x-4.5.3.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="CPU-X"
+
+inherit cmake gnome2-utils xdg
+
+DESCRIPTION="A Free software that gathers information on CPU, motherboard and 
more"
+HOMEPAGE="https://thetumultuousunicornofdarkness.github.io/CPU-X/";
+SRC_URI="https://github.com/TheTumultuousUnicornOfDarkness/${MY_PN}/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="-* ~amd64"
+IUSE="+cpu force-libstatgrab +gpu +gui +ncurses +nls opencl +pci test vulkan"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   dev-libs/glib:2
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/pango
+   force-libstatgrab? ( sys-libs/libstatgrab )
+   !force-libstatgrab? ( sys-process/procps:= )
+   gui? ( >=x11-libs/gtk+-3.12:3 )
+   cpu? ( >=dev-libs/libcpuid-0.6.0:= )
+   gpu? ( >=media-libs/glfw-3.3
+   media-libs/libglvnd )
+   pci? ( sys-apps/pciutils )
+   ncurses? ( sys-libs/ncurses:=[tinfo] )
+   opencl? ( virtual/opencl )
+   vulkan? ( media-libs/vulkan-loader )
+"
+
+DEPEND="
+   test? (
+   sys-apps/mawk
+   sys-apps/nawk
+   )
+
+   ${COMMON_DEPEND}
+"
+
+BDEPEND="
+   dev-lang/nasm
+   nls? ( sys-devel/gettext )
+"
+
+RDEPEND="${COMMON_DEPEND}"
+
+S="${WORKDIR}/${MY_PN}-${PV}"
+
+src_configure() {
+   local mycmakeargs=(
+   -DFORCE_LIBSTATGRAB=$(usex force-libstatgrab)
+   -DWITH_GETTEXT=$(usex nls)
+   -DWITH_GTK=$(usex gui)
+   -DWITH_LIBCPUID=$(usex cpu)
+   -DWITH_LIBGLFW=$(usex gpu)
+   -DWITH_LIBPCI=$(usex pci)
+   -DWITH_LIBSTATGRAB=OFF
+   -DWITH_NCURSES=$(usex ncurses)
+   -DWITH_OPENCL=$(usex opencl)
+   -DWITH_VULKAN=$(usex vulkan)
+   )
+   use gui && mycmakeargs+=( -DGSETTINGS_COMPILE=OFF )
+
+   cmake_src_configure
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



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

2023-04-03 Thread Ben Kohler
commit: b31ff093697073ae1e41adb8f0833d0c61468512
Author: Ben Kohler  gentoo  org>
AuthorDate: Mon Apr  3 13:14:44 2023 +
Commit: Ben Kohler  gentoo  org>
CommitDate: Mon Apr  3 13:14:44 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b31ff093

sys-apps/cpu-x: don't default-enable gui

Let desktop profiles do this

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

 sys-apps/cpu-x/cpu-x-4.5.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/cpu-x/cpu-x-4.5.3.ebuild 
b/sys-apps/cpu-x/cpu-x-4.5.3.ebuild
index 9de59f506105..bcd8a36360ce 100644
--- a/sys-apps/cpu-x/cpu-x-4.5.3.ebuild
+++ b/sys-apps/cpu-x/cpu-x-4.5.3.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/TheTumultuousUnicornOfDarkness/${MY_PN}/archive/v${P
 LICENSE="GPL-3"
 SLOT="0"
 KEYWORDS="-* ~amd64"
-IUSE="+cpu force-libstatgrab +gpu +gui +ncurses +nls opencl +pci test vulkan"
+IUSE="+cpu force-libstatgrab +gpu gui +ncurses +nls opencl +pci test vulkan"
 RESTRICT="!test? ( test )"
 
 COMMON_DEPEND="



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

2023-04-03 Thread Viorel Munteanu
commit: 65d5f4bb15f3e07f2516abac4e69947f76e9529c
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Mon Apr  3 13:33:22 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 13:34:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65d5f4bb

media-sound/klick: update HOMEPAGE, SRC_URI

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

 media-sound/klick/klick-0.12.2-r4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/klick/klick-0.12.2-r4.ebuild 
b/media-sound/klick/klick-0.12.2-r4.ebuild
index d862a9f6e1c7..29bd9c9b86be 100644
--- a/media-sound/klick/klick-0.12.2-r4.ebuild
+++ b/media-sound/klick/klick-0.12.2-r4.ebuild
@@ -8,8 +8,8 @@ PYTHON_COMPAT=( python3_{9..11} )
 inherit python-any-r1 scons-utils toolchain-funcs
 
 DESCRIPTION="An advanced command-line based metronome for JACK"
-HOMEPAGE="http://das.nasophon.de/klick";
-SRC_URI="http://das.nasophon.de/download/${P}.tar.gz";
+HOMEPAGE="https://das.nasophon.de/klick/";
+SRC_URI="https://das.nasophon.de/download/${P}.tar.gz";
 
 LICENSE="GPL-2+"
 SLOT="0"



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

2023-04-03 Thread Viorel Munteanu
commit: 17b55496aa5be41094413590c1b3c49460bb400a
Author: Alexander Tsoy  tsoy  me>
AuthorDate: Sun Mar  5 20:18:35 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 13:34:35 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17b55496

media-sound/klick: EAPI 8 and py3.11

Closes: https://bugs.gentoo.org/897034
Signed-off-by: Alexander Tsoy  tsoy.me>
Closes: https://github.com/gentoo/gentoo/pull/29945
Signed-off-by: Viorel Munteanu  gentoo.org>

 media-sound/klick/{klick-0.12.2-r3.ebuild => klick-0.12.2-r4.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/klick/klick-0.12.2-r3.ebuild 
b/media-sound/klick/klick-0.12.2-r4.ebuild
similarity index 96%
rename from media-sound/klick/klick-0.12.2-r3.ebuild
rename to media-sound/klick/klick-0.12.2-r4.ebuild
index 9f64b7f52ac1..d862a9f6e1c7 100644
--- a/media-sound/klick/klick-0.12.2-r3.ebuild
+++ b/media-sound/klick/klick-0.12.2-r4.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit python-any-r1 scons-utils toolchain-funcs
 



[gentoo-commits] repo/gentoo:master commit in: mail-mta/postfix/

2023-04-03 Thread Eray Aslan
commit: 72914f7f3daaf2212ca9337dfd29b17709cbf81c
Author: Eray Aslan  gentoo  org>
AuthorDate: Mon Apr  3 14:20:59 2023 +
Commit: Eray Aslan  gentoo  org>
CommitDate: Mon Apr  3 14:20:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72914f7f

mail-mta/postfix: add 3.8_pre20230402, drop 3.8_pre20230314

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

 mail-mta/postfix/Manifest   | 2 +-
 .../{postfix-3.8_pre20230314.ebuild => postfix-3.8_pre20230402.ebuild}  | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-mta/postfix/Manifest b/mail-mta/postfix/Manifest
index dd959913125b..a62c7c581869 100644
--- a/mail-mta/postfix/Manifest
+++ b/mail-mta/postfix/Manifest
@@ -1,2 +1,2 @@
 DIST postfix-3.7.4.tar.gz 4833834 BLAKE2B 
edb716ef4576d339189f11b535a62f3c6f8f28613723d916f13cdd2d37228aa8768dacdb9d8616c83f0ded3a3c801c45747375ea6cfa505b668a7163c4637128
 SHA512 
972738291b960c90fe83861d55b1288900416167adb353418956e69bcc709a6daf84fbfde11d573eebba030654d27abc8d55f90661a2b880ccfb3a334064c236
-DIST postfix-3.8-20230314.tar.gz 4822429 BLAKE2B 
b4c15da78c5691a39878bc96f8432b411f29089a20cd86bbc6e3ebdee0c8df7699320b642a4cbc315e8a5275acf439b00f6fc4b1cece048ef3326a9ce1717232
 SHA512 
bc5ee2e88d2485068a40c3724e07729c90282b87f4f1dc8ca87dc39fb589b8983a2186c45f5d0bdbad8085851f29c478a3c0cd9a3246987304125878a4c2f90f
+DIST postfix-3.8-20230402.tar.gz 4823221 BLAKE2B 
a47d795f23401771f8e2b20c71444d31eebcd74495426855496bc0516a0d017b58def971ed36919bd2c2e8711266008c93852092bc326cbe80f1a5778ed7dbd1
 SHA512 
d8755036d901b9c731ab1b5fddaf0a4c725a69fca447e99142bc4ebb4c7d5e40f5cbacdd1374f864ba9615daef93c271bd7184a360f1c2d727548e35f451299e

diff --git a/mail-mta/postfix/postfix-3.8_pre20230314.ebuild 
b/mail-mta/postfix/postfix-3.8_pre20230402.ebuild
similarity index 100%
rename from mail-mta/postfix/postfix-3.8_pre20230314.ebuild
rename to mail-mta/postfix/postfix-3.8_pre20230402.ebuild



[gentoo-commits] repo/gentoo:master commit in: app-crypt/debian-archive-keyring/

2023-04-03 Thread Sebastian Pipping
commit: 8cca487e23ee0775316567c7083ca720222f1dcd
Author: Sebastian Pipping  gentoo  org>
AuthorDate: Mon Apr  3 14:21:54 2023 +
Commit: Sebastian Pipping  gentoo  org>
CommitDate: Mon Apr  3 14:22:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cca487e

app-crypt/debian-archive-keyring: 2023.3

Signed-off-by: Sebastian Pipping  gentoo.org>

 app-crypt/debian-archive-keyring/Manifest  |  1 +
 .../debian-archive-keyring-2023.3.ebuild   | 26 ++
 2 files changed, 27 insertions(+)

diff --git a/app-crypt/debian-archive-keyring/Manifest 
b/app-crypt/debian-archive-keyring/Manifest
index 617f5164696a..3f582ff3ceed 100644
--- a/app-crypt/debian-archive-keyring/Manifest
+++ b/app-crypt/debian-archive-keyring/Manifest
@@ -3,3 +3,4 @@ DIST debian-archive-keyring_2021.1.1_all.deb 93592 BLAKE2B 
8e17e16b2f0c670a1c486
 DIST debian-archive-keyring_2021.1_all.deb 93572 BLAKE2B 
0566017cc02c9ddc03e6ba7a0fdb62856e8a8d5f31508b6fdba8c206288a8c4c0165f88bfaa3515897e8b88fa16ee459a5fca67e2f6364f1048c465b128e8d96
 SHA512 
20aeb3460bdfaa47aad0c069c5d39a2e385b0394d39db9ea76ad5a7e6fa6421c8603eb2241d2cf4ba82754291097ae416b1ec2a04c16a6065c5f0d04eb8d8946
 DIST debian-archive-keyring_2023.1_all.deb 143932 BLAKE2B 
72adb14999d4ead23a79d610bde0dd50e0370a68da0be379556da56589f9f493a5e5cc5d77dd597fdb417fae6c3a0d1f882209086e9312816f63efd59408c001
 SHA512 
b9645b6ccc07c38b8187cd4169006f4231ab08c70305f28f40a3fba9a93e9f9f05e9e2ac3fde2423d28b99313d631afcdccadcd20d7237de49bc22709e646c39
 DIST debian-archive-keyring_2023.2_all.deb 160616 BLAKE2B 
36b0dd0c518632eae0111fdc1adef069a3dc14d1d7904298665eec2bbd27044e04c600df9a635f82e986c4c401358d94d356fa75503b18b2b83253097101b063
 SHA512 
f1628233a9430762690db62b7329aefbdd24d4ebc5518ed6ab39c0155365ca2d82e4f5282f6f57990102770c8c97c4df05d9cbc3dedbb905a54fbb16f85e9ba4
+DIST debian-archive-keyring_2023.3_all.deb 160696 BLAKE2B 
f674b1e713355423e9f8a05bdad60c4bd5cc4e523ba9110468f043fe2f919b9c260c8ba612f45cc3331231fd44c38da0e29e8643c650206d0068114763e8f4df
 SHA512 
c7f93756270b102bf1a6539e15bfc3ef65377b150f8258b7f994802e17518a468d2514739257aad1ce29be0113671fa31823a94a0b88f96f9925f88682429ac7

diff --git 
a/app-crypt/debian-archive-keyring/debian-archive-keyring-2023.3.ebuild 
b/app-crypt/debian-archive-keyring/debian-archive-keyring-2023.3.ebuild
new file mode 100644
index ..00b2e3a5b143
--- /dev/null
+++ b/app-crypt/debian-archive-keyring/debian-archive-keyring-2023.3.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit unpacker
+
+DESCRIPTION="GnuPG archive keys of the Debian archive"
+HOMEPAGE="https://packages.debian.org/sid/debian-archive-keyring";
+SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}_all.deb"
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE=""
+
+S="${WORKDIR}"
+
+src_install() {
+   doins -r .
+
+   # https://bugs.gentoo.org/729142
+   gunzip "${D}"/usr/share/doc/${PN}/changelog.gz || die
+
+   mv "${D}"/usr/share/doc/{${PN},${PF}} || die
+}



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

2023-04-03 Thread Mike Gilbert
commit: aa84b3d87d46bc0aa6c35ac52bcfa49f8cc31687
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Apr  3 14:22:19 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Apr  3 14:47:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa84b3d8

dev-util/meson: add 1.1.0_rc2, drop 1.1.0_rc1

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

 dev-util/meson/Manifest   | 2 +-
 dev-util/meson/{meson-1.1.0_rc1.ebuild => meson-1.1.0_rc2.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/meson/Manifest b/dev-util/meson/Manifest
index 705873be38cd..7ff713e8e0ca 100644
--- a/dev-util/meson/Manifest
+++ b/dev-util/meson/Manifest
@@ -1,2 +1,2 @@
 DIST meson-1.0.1.tar.gz 2104183 BLAKE2B 
23b47a2231da966de8da3032887a81458b795d5c0c1d35cf9e3ea1499f7ddbc28d1cc3ca469052c4b33c51fcf9f92a36dab44da0133d748afdbf4e5b260427f1
 SHA512 
3d2e2630f9eacf2fd999d5068d82b2a719400a55cfdea5d38253410a3ee74def638ac09622bceb72edf7bc867ae3de6a5f48c1846601e7e4b5afdf3ac9339ebc
-DIST meson-1.1.0rc1.tar.gz 2123774 BLAKE2B 
83ba979a5e3ca82f3bdfff3d317482a8d08fb6c6a13122cb135666fba7349eda23122799c45b05a6033a7d6a19156fd231af960ae061d4fa1495caec5a8e7b5f
 SHA512 
651c2976a5a63e93cf7f444ed889cf8a26551627694f013f2b803a3ce68f2733a36445f192e2684459d5124013870e4fd07eeaabbfecd1acdfc4ec6be0364dd2
+DIST meson-1.1.0rc2.tar.gz 2121953 BLAKE2B 
a76dd31b65e833315d2be484a041ccdf799f959b78e8b937601cd15c6c2f823789c97c066f4d57f20aa091c03a87639591725f6bbf6dd411b101d990818df5bd
 SHA512 
fde87b2eb2cd3910fe577931919e7e16bac9f2945f20c56f63d2297068f5aca47d750f32ccbf9c30cc993bfc44984d33e35e1a99734051bec7dce86050a7e248

diff --git a/dev-util/meson/meson-1.1.0_rc1.ebuild 
b/dev-util/meson/meson-1.1.0_rc2.ebuild
similarity index 100%
rename from dev-util/meson/meson-1.1.0_rc1.ebuild
rename to dev-util/meson/meson-1.1.0_rc2.ebuild



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

2023-04-03 Thread Mike Gilbert
commit: c4d457bd94c24853e0f6fe5ad3551f9407edde79
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Apr  3 14:47:14 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Apr  3 14:47:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c4d457bd

dev-libs/libgcrypt: enable munging of -Oz

Closes: https://bugs.gentoo.org/902765
Signed-off-by: Mike Gilbert  gentoo.org>

 .../libgcrypt-1.10-build-Allow-build-with-Oz.patch | 50 ++
 dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild  |  1 +
 2 files changed, 51 insertions(+)

diff --git 
a/dev-libs/libgcrypt/files/libgcrypt-1.10-build-Allow-build-with-Oz.patch 
b/dev-libs/libgcrypt/files/libgcrypt-1.10-build-Allow-build-with-Oz.patch
new file mode 100644
index ..c54499e15dba
--- /dev/null
+++ b/dev-libs/libgcrypt/files/libgcrypt-1.10-build-Allow-build-with-Oz.patch
@@ -0,0 +1,50 @@
+https://bugs.gentoo.org/902765
+https://dev.gnupg.org/T6432
+https://dev.gnupg.org/rC7edf1abb9a0d892a80cbf7ab42f64b2720671ee9
+
+From 7edf1abb9a0d892a80cbf7ab42f64b2720671ee9 Mon Sep 17 00:00:00 2001
+From: NIIBE Yutaka 
+Date: Mon, 3 Apr 2023 14:00:15 +0900
+Subject: [PATCH] build: Allow build with -Oz.
+
+* cipher/Makefile.am [ENABLE_O_FLAG_MUNGING]: Support -Oz.
+* random/Makefile.am [ENABLE_O_FLAG_MUNGING]: Support -Oz.
+
+--
+
+GnuPG-bug-id: 6432
+Signed-off-by: NIIBE Yutaka 
+---
+ cipher/Makefile.am | 2 +-
+ random/Makefile.am | 2 +-
+ 2 files changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/cipher/Makefile.am b/cipher/Makefile.am
+index cf1fbe85..e67b1ee2 100644
+--- a/cipher/Makefile.am
 b/cipher/Makefile.am
+@@ -165,7 +165,7 @@ gost-s-box$(EXEEXT_FOR_BUILD): gost-s-box.c
+ 
+ 
+ if ENABLE_O_FLAG_MUNGING
+-o_flag_munging = sed -e 's/-O\([2-9sg][2-9sg]*\)/-O1/' -e 's/-Ofast/-O1/g'
++o_flag_munging = sed -e 's/-O\([2-9sgz][2-9sgz]*\)/-O1/' -e 's/-Ofast/-O1/g'
+ else
+ o_flag_munging = cat
+ endif
+diff --git a/random/Makefile.am b/random/Makefile.am
+index af978570..0c935a05 100644
+--- a/random/Makefile.am
 b/random/Makefile.am
+@@ -56,7 +56,7 @@ jitterentropy-base.c jitterentropy.h 
jitterentropy-base-user.h
+ 
+ # The rndjent module needs to be compiled without optimization.  */
+ if ENABLE_O_FLAG_MUNGING
+-o_flag_munging = sed -e 's/-O\([1-9sg][1-9sg]*\)/-O0/g' -e 's/-Ofast/-O0/g'
++o_flag_munging = sed -e 's/-O\([1-9sgz][1-9sgz]*\)/-O0/g' -e 's/-Ofast/-O0/g'
+ else
+ o_flag_munging = cat
+ endif
+-- 
+2.40.0
+

diff --git a/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild
index 2d2497903a5b..d21cd0309fdb 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild
@@ -47,6 +47,7 @@ PATCHES=(
"${FILESDIR}"/${PN}-1.10.1-fix-no-asm-hppa.patch
"${FILESDIR}"/${PN}-1.9.4-no-fgrep-libgcrypt-config.patch
"${FILESDIR}"/${PN}-1.10.1-configure-clang16.patch
+   "${FILESDIR}"/libgcrypt-1.10-build-Allow-build-with-Oz.patch
 )
 
 MULTILIB_CHOST_TOOLS=(



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

2023-04-03 Thread Mike Gilbert
commit: 47b1080247f56473cf78481e860bfbc3c4205902
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Apr  3 14:50:28 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Apr  3 14:50:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47b10802

dev-libs/libgcrypt: wrap long line

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

 dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild
index d21cd0309fdb..f813838f223c 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.10.1-r3.ebuild
@@ -103,7 +103,8 @@ multilib_src_configure() {
# 
https://git.gnupg.org/cgi-bin/gitweb.cgi?p=libgcrypt.git;a=commitdiff;h=0b399721ce9709ae25f9d2050360c5ab2115ae29
# https://dev.gnupg.org/T5581
# https://gcc.gnu.org/bugzilla/show_bug.cgi?id=102124
-   if use arm64 && tc-is-gcc && (($(gcc-major-version) == 11)) && 
(($(gcc-minor-version) <= 2)) && (($(gcc-micro-version) == 0)) ; then
+   if use arm64 && tc-is-gcc && (($(gcc-major-version) == 11)) &&
+   (($(gcc-minor-version) <= 2)) && (($(gcc-micro-version) == 0)) 
; then
append-flags -fno-tree-loop-vectorize
fi
 



[gentoo-commits] repo/gentoo:master commit in: net-im/mattermost-desktop-bin/

2023-04-03 Thread Viorel Munteanu
commit: 1aaeb5d0b54e2f9c33c89130313f7da8dd7ae7d6
Author: Viorel Munteanu  gentoo  org>
AuthorDate: Mon Apr  3 15:20:18 2023 +
Commit: Viorel Munteanu  gentoo  org>
CommitDate: Mon Apr  3 15:20:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1aaeb5d0

net-im/mattermost-desktop-bin: add 5.3.1_rc1

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

 net-im/mattermost-desktop-bin/Manifest |  2 +
 .../mattermost-desktop-bin-5.3.1_rc1.ebuild| 94 ++
 2 files changed, 96 insertions(+)

diff --git a/net-im/mattermost-desktop-bin/Manifest 
b/net-im/mattermost-desktop-bin/Manifest
index 24eda109408c..a41bb6c532f9 100644
--- a/net-im/mattermost-desktop-bin/Manifest
+++ b/net-im/mattermost-desktop-bin/Manifest
@@ -2,3 +2,5 @@ DIST mattermost-desktop-5.2.2-linux-arm64.tar.gz 116257022 
BLAKE2B 42019e849b415
 DIST mattermost-desktop-5.2.2-linux-x64.tar.gz 115646636 BLAKE2B 
f3d01c913205dcf2c14cfcfcfc8eba06909c36446a8d6f450270f50328adaf585c5eefa68de212fcc61d012d74b69053790ba9494ee291a90c2b382b530e2e23
 SHA512 
5ef578c2af8afcd55b75f93904eead8257c0f1e9614de34a13705da2c8ce8f0da2ea57cc62b1fffb12b8effa2a2a98bb200c43a7f43635dc910fa91f7e629f35
 DIST mattermost-desktop-5.3.0-rc.7-linux-arm64.tar.gz 99876187 BLAKE2B 
65e3b197ae8518fe4b30009471473c7b39aa4e0bf6f74e0bd0ad0b44dbca551fb195aaf5357828037d791c716a69b713cf9f787eb7456ff6ae126328eb89bc61
 SHA512 
0903015f786e712c5bcdf3268966161c8efe8e7bc5b75934a885655457112229bc40e466c0b146621416c336f6bde8d4de15769258d486376382f0db28d95f4f
 DIST mattermost-desktop-5.3.0-rc.7-linux-x64.tar.gz 99666928 BLAKE2B 
7a41fd359d47a109f5e54729a582215228dcd1e0466672a13278b9efc90d8a8b2d849dc07f29443c6655a0a5f45e934ea0c5064655fbd7cb76e9604d2dd56e0e
 SHA512 
b4a6f08c2c95e09087f2eb34e3ba0600d2f5dca24bd419cb20ae47eb55f6810195bf0fea46b4b17782453348da148c2814018cd68f3935d42bfcc65a318cdb17
+DIST mattermost-desktop-5.3.1-rc.1-linux-arm64.tar.gz 99877655 BLAKE2B 
2687bf25445c57c22f640cc112b7aaeffa44e0d2f23d94df7acc48fa008f7f00a8e7d584a627a3e53d638f599084def76db2528e194ec42fb8774dc484f143c3
 SHA512 
4ec2ea132893139bdf0d70e66533a080c92a78cdd3633d7b2ad569a31103eb5aaacb13a7ae2d7ee2806793fd242e5816aaf6c2e5b8eb9aee7ecdc179385e8a57
+DIST mattermost-desktop-5.3.1-rc.1-linux-x64.tar.gz 99666860 BLAKE2B 
ded28bc1229723572b8419549a8c8707629da9f27d817fdd595f42a21749ad89bdaef3679f8af29f4d14bbd9dfec702686af1dea929907c3be8365e5d9fa5b5d
 SHA512 
5d532e756b4331ffb88fadbf422faa9831828da1ad5061557cdf4c63c7d5425203d21fa57699de22863730a79ed1e243042b1070ad44363a20517b89d00648ba

diff --git 
a/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.1_rc1.ebuild 
b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.1_rc1.ebuild
new file mode 100644
index ..6239ac543889
--- /dev/null
+++ b/net-im/mattermost-desktop-bin/mattermost-desktop-bin-5.3.1_rc1.ebuild
@@ -0,0 +1,94 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PN="${PN%-*}"
+MY_PV="${PV/_rc/-rc.}"
+
+inherit desktop xdg
+
+DESCRIPTION="Mattermost Desktop application"
+HOMEPAGE="https://mattermost.com/";
+
+SRC_URI="
+   amd64? ( 
https://releases.mattermost.com/desktop/${MY_PV}/mattermost-desktop-${MY_PV}-linux-x64.tar.gz
 )
+   arm64? ( 
https://releases.mattermost.com/desktop/${MY_PV}/mattermost-desktop-${MY_PV}-linux-arm64.tar.gz
 )
+"
+
+LICENSE="Apache-2.0 GPL-2+ LGPL-2.1+ MIT"
+SLOT="0"
+# Starting with 5.2.0 upstream dropped x86 for their binary release #879519
+if [[ ${PV} != *rc* ]]; then
+   KEYWORDS="~amd64 ~arm64"
+fi
+
+RDEPEND="
+   >=app-accessibility/at-spi2-core-2.46.0:2[X]
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   dev-libs/wayland
+   media-libs/alsa-lib
+   media-libs/mesa
+   net-print/cups
+   sys-apps/dbus
+   sys-libs/glibc
+   x11-libs/cairo
+   x11-libs/gtk+:3[X]
+   x11-libs/libX11
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libXrandr
+   x11-libs/libdrm
+   x11-libs/libxcb
+   x11-libs/libxkbcommon
+   x11-libs/pango
+"
+
+QA_PREBUILT="
+   opt/mattermost-desktop/mattermost-desktop
+   opt/mattermost-desktop/libnode.so
+   opt/mattermost-desktop/libffmpeg.so
+   opt/mattermost-desktop/libGLESv2.so
+   opt/mattermost-desktop/libEGL.so
+   opt/mattermost-desktop/libvk_swiftshader.so
+   opt/mattermost-desktop/libvulkan.so.1
+   opt/mattermost-desktop/resources/*
+"
+
+DOCS=(
+   NOTICE.txt
+)
+
+S="${WORKDIR}"
+
+src_install() {
+   if use amd64; then
+   cd mattermost-desktop-${MY_PV}-linux-x64 || die
+   elif use arm64; then
+   cd mattermost-desktop-${MY_PV}-linux-arm64 || die
+   fi
+   newicon app_icon.png ${MY_PN}.png
+
+   insinto "/opt/${MY_PN}/locales"
+   doins locales/*.pak
+
+   in

[gentoo-commits] repo/gentoo:master commit in: sci-physics/geant4_vmc/

2023-04-03 Thread Guilherme Amadio
commit: f9e9f7e1fb2d8dc2c68262d19e6415637a44b2da
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Sat Mar 25 20:13:41 2023 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Mon Apr  3 15:24:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9e9f7e1

sci-physics/geant4_vmc: drop 6.1_p2

Signed-off-by: Oliver Freyermuth  googlemail.com>
Signed-off-by: Guilherme Amadio  gentoo.org>

 sci-physics/geant4_vmc/Manifest |  1 -
 sci-physics/geant4_vmc/geant4_vmc-6.1_p2.ebuild | 79 -
 2 files changed, 80 deletions(-)

diff --git a/sci-physics/geant4_vmc/Manifest b/sci-physics/geant4_vmc/Manifest
index c36bb4647817..7f5e751a4673 100644
--- a/sci-physics/geant4_vmc/Manifest
+++ b/sci-physics/geant4_vmc/Manifest
@@ -1,4 +1,3 @@
-DIST geant4_vmc-6.1_p2.tar.gz 5606450 BLAKE2B 
943398e4cf9a8f4d6e44687f89eff6e6f09e4904b8a57684e202719162d861d5b370c1fc9bcf40de43aa607cfa89db1d1a740046a1ad9744ba2c538dbc8103f8
 SHA512 
97f825a32958d7da8d4086e87397c358b0331ac8f6630b83c1a8142f02be21093bed65c0841a24c0db5548adb611f52f2c5e05e92f39a67f13c70d76f901d47e
 DIST geant4_vmc-6.1_p3.tar.gz 5605174 BLAKE2B 
80d7936534d4102b545a4285b8ddba4eb7c9ec31b1343194da922a6c79730c1f779cc9719b1d2e5b4bcf02a681c371157057d727c5fa86633e6c7497d64206e0
 SHA512 
ccb568c2ce004300c7c6ad908aa8d97319f3c0d4add0da3ace418231906cf91ef9f73b5c774fbadd6e4473dcc1b49071023d7fa159b5864f03b28dae407074c6
 DIST geant4_vmc-6.1_p4.tar.gz 5606731 BLAKE2B 
441a3398b472db13c5cb5219004c4d32c8ff07041e0c6335d40e6db8df23bc35d67ca2e6920a1b575f0fcb224b2d47ffa573dc5f9d23dac771ddf579b5bd9a2a
 SHA512 
8751899e2db863017b6c14fc87fc172492dbcf26c089c4cea4b262b75e22ae7767d47e3019a3676315c0eb6052e99b6acd10a39135cd51e3ce0f9ea816c09ce6
 DIST geant4_vmc-6.2.tar.gz 5743487 BLAKE2B 
062fece07714f255eddd13c6bda660ea6737772fe7a43413df07c9ed221c0f80a872fe72614e5e4ad18396c72aae2c2000cdf6e3b1c2436f9419933ac32704bb
 SHA512 
72651ab5261a398feb6f37271a41a5770334a20dc61be2046b19ca8ff4780cf7649136314e4a8597023d14782996d7ee0d047579b33a983c4dea9c21b32b4551

diff --git a/sci-physics/geant4_vmc/geant4_vmc-6.1_p2.ebuild 
b/sci-physics/geant4_vmc/geant4_vmc-6.1_p2.ebuild
deleted file mode 100644
index 69faaa95b781..
--- a/sci-physics/geant4_vmc/geant4_vmc-6.1_p2.ebuild
+++ /dev/null
@@ -1,79 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake
-
-if [[ ${PV} == ** ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git";
-else
-   MY_PV=$(ver_rs 1-2 -)
-   SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz 
-> ${P}.tar.gz"
-   S="${WORKDIR}/${PN}-${MY_PV}"
-   KEYWORDS="~amd64 ~x86"
-fi
-
-DESCRIPTION="Virtual Monte Carlo Geant4 implementation"
-HOMEPAGE="https://github.com/vmc-project/geant4_vmc";
-
-LICENSE="GPL-3"
-SLOT="4"
-IUSE="doc examples geant3 +g4root vgm test"
-
-RDEPEND="
-   >=sci-physics/geant-4.11[c++17,opengl,geant3?]
-   sci-physics/root:=[c++17,-vmc(-)]
-   >=sci-physics/vmc-2.0:=[c++17]
-   vgm? ( sci-physics/vgm:= )"
-DEPEND="${RDEPEND}
-   test? ( >=sci-physics/geant-4.11[gdml] )"
-BDEPEND="doc? ( app-doc/doxygen[dot] )"
-RESTRICT="
-   !examples? ( test )
-   !geant3? ( test )
-   !g4root? ( test )
-   !test? ( test )
-   !vgm? ( test )"
-
-DOCS=(history README.md)
-
-src_configure() {
-   local mycmakeargs=(
-   -DGeant4VMC_USE_VGM="$(usex vgm)"
-   -DGeant4VMC_USE_GEANT4_G3TOG4="$(usex geant3)"
-   -DGeant4VMC_USE_G4Root="$(usex g4root)"
-   -DGeant4VMC_BUILD_EXAMPLES="$(usex test)"
-   -DGeant4VMC_INSTALL_EXAMPLES="$(usex examples)"
-   -DGeant4VMC_BUILD_G4Root_TEST="$(usex test)"
-   )
-   cmake_src_configure
-}
-
-src_compile() {
-   cmake_src_compile
-   if use doc ; then
-   local dirs=(
-   source
-   $(usev g4root)
-   $(usev examples)
-   )
-   local d
-   for d in "${dirs[@]}"; do
-   doxygen "${d}"/Doxyfile || die
-   done
-   fi
-}
-
-src_test() {
-   cd examples || die
-   ./test_suite.sh --debug --g3=off --garfield=off 
--builddir="${BUILD_DIR}" || die
-   ./test_suite_exe.sh --g3=off --garfield=off --garfield=off 
--builddir="${BUILD_DIR}" || die
-}
-
-src_install() {
-   cmake_src_install
-   use doc && local HTML_DOCS=(doc/.)
-   einstalldocs
-}



[gentoo-commits] repo/gentoo:master commit in: sci-physics/geant4_vmc/

2023-04-03 Thread Guilherme Amadio
commit: ac1abcac0ffe2618b39f0e4b981442aae22edb2d
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Sat Mar 25 20:13:07 2023 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Mon Apr  3 15:24:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ac1abcac

sci-physics/geant4_vmc: add 6.1_p4, 6.3

Signed-off-by: Oliver Freyermuth  googlemail.com>
Signed-off-by: Guilherme Amadio  gentoo.org>

 sci-physics/geant4_vmc/Manifest |  2 +
 sci-physics/geant4_vmc/geant4_vmc-6.1_p4.ebuild | 80 +
 sci-physics/geant4_vmc/geant4_vmc-6.3.ebuild| 79 
 3 files changed, 161 insertions(+)

diff --git a/sci-physics/geant4_vmc/Manifest b/sci-physics/geant4_vmc/Manifest
index 2247d3b867c6..c36bb4647817 100644
--- a/sci-physics/geant4_vmc/Manifest
+++ b/sci-physics/geant4_vmc/Manifest
@@ -1,3 +1,5 @@
 DIST geant4_vmc-6.1_p2.tar.gz 5606450 BLAKE2B 
943398e4cf9a8f4d6e44687f89eff6e6f09e4904b8a57684e202719162d861d5b370c1fc9bcf40de43aa607cfa89db1d1a740046a1ad9744ba2c538dbc8103f8
 SHA512 
97f825a32958d7da8d4086e87397c358b0331ac8f6630b83c1a8142f02be21093bed65c0841a24c0db5548adb611f52f2c5e05e92f39a67f13c70d76f901d47e
 DIST geant4_vmc-6.1_p3.tar.gz 5605174 BLAKE2B 
80d7936534d4102b545a4285b8ddba4eb7c9ec31b1343194da922a6c79730c1f779cc9719b1d2e5b4bcf02a681c371157057d727c5fa86633e6c7497d64206e0
 SHA512 
ccb568c2ce004300c7c6ad908aa8d97319f3c0d4add0da3ace418231906cf91ef9f73b5c774fbadd6e4473dcc1b49071023d7fa159b5864f03b28dae407074c6
+DIST geant4_vmc-6.1_p4.tar.gz 5606731 BLAKE2B 
441a3398b472db13c5cb5219004c4d32c8ff07041e0c6335d40e6db8df23bc35d67ca2e6920a1b575f0fcb224b2d47ffa573dc5f9d23dac771ddf579b5bd9a2a
 SHA512 
8751899e2db863017b6c14fc87fc172492dbcf26c089c4cea4b262b75e22ae7767d47e3019a3676315c0eb6052e99b6acd10a39135cd51e3ce0f9ea816c09ce6
 DIST geant4_vmc-6.2.tar.gz 5743487 BLAKE2B 
062fece07714f255eddd13c6bda660ea6737772fe7a43413df07c9ed221c0f80a872fe72614e5e4ad18396c72aae2c2000cdf6e3b1c2436f9419933ac32704bb
 SHA512 
72651ab5261a398feb6f37271a41a5770334a20dc61be2046b19ca8ff4780cf7649136314e4a8597023d14782996d7ee0d047579b33a983c4dea9c21b32b4551
+DIST geant4_vmc-6.3.tar.gz 5737268 BLAKE2B 
0de8b6eabd7aceebb8047daa2642bb5d41945abbbe751709fa7a8f4063dd1049676f5243eae17c2d572d232a28bf2f268d64fae72183d886a64af8a761679203
 SHA512 
4ca9d4593a10a25947eadc27de4460e2522077c499c73a59824f363b75922ae1d2695365fc941c60a7aa83f9b0ec030ac435926a729e764b88c768668b3c5671

diff --git a/sci-physics/geant4_vmc/geant4_vmc-6.1_p4.ebuild 
b/sci-physics/geant4_vmc/geant4_vmc-6.1_p4.ebuild
new file mode 100644
index ..d345df0c65eb
--- /dev/null
+++ b/sci-physics/geant4_vmc/geant4_vmc-6.1_p4.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake virtualx
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git";
+else
+   MY_PV=$(ver_rs 1-2 -)
+   SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${MY_PV}"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Virtual Monte Carlo Geant4 implementation"
+HOMEPAGE="https://github.com/vmc-project/geant4_vmc";
+
+LICENSE="GPL-3"
+SLOT="4"
+IUSE="doc examples geant3 +g4root vgm test"
+
+RDEPEND="
+   >=sci-physics/geant-4.11[c++17,opengl,geant3?]
+   sci-physics/root:=[c++17,-vmc(-)]
+   >=sci-physics/vmc-2.0:=[c++17]
+   vgm? ( <=sci-physics/vgm-5.0:= )"
+DEPEND="${RDEPEND}
+   test? ( >=sci-physics/geant-4.11[gdml] )"
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
+RESTRICT="
+   !examples? ( test )
+   !geant3? ( test )
+   !g4root? ( test )
+   !test? ( test )
+   !vgm? ( test )"
+
+DOCS=(history README.md)
+
+src_configure() {
+   local mycmakeargs=(
+   -DGeant4VMC_USE_VGM="$(usex vgm)"
+   -DGeant4VMC_USE_GEANT4_G3TOG4="$(usex geant3)"
+   -DGeant4VMC_USE_G4Root="$(usex g4root)"
+   -DGeant4VMC_BUILD_EXAMPLES="$(usex test)"
+   -DGeant4VMC_INSTALL_EXAMPLES="$(usex examples)"
+   -DGeant4VMC_BUILD_G4Root_TEST="$(usex test)"
+   )
+   cmake_src_configure
+}
+
+src_compile() {
+   cmake_src_compile
+   if use doc ; then
+   local dirs=(
+   source
+   $(usev g4root)
+   $(usev examples)
+   )
+   local d
+   for d in "${dirs[@]}"; do
+   doxygen "${d}"/Doxyfile || die
+   done
+   fi
+}
+
+src_test() {
+   export QT_DEBUG_PLUGINS=1
+   cd examples || die
+   virtx ./test_suite.sh --debug --g3=off --garfield=off 
--builddir="${BUILD_DIR}" || die
+   virtx ./test_suite_exe.sh --g3=off --garfield=off --garfield=off 
--builddir="${BUILD_DIR}" || die
+}
+
+src_install() {
+   cmake_sr

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

2023-04-03 Thread Guilherme Amadio
commit: d763434200679ab9ba080b2ddf0ba327f17676fb
Author: Guilherme Amadio  gentoo  org>
AuthorDate: Mon Apr  3 15:22:06 2023 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Mon Apr  3 15:24:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7634342

sys-cluster/lmod: drop 8.5.6, 8.6.14

Signed-off-by: Guilherme Amadio  gentoo.org>

 sys-cluster/lmod/Manifest   |   1 -
 sys-cluster/lmod/lmod-8.5.6.ebuild  | 131 
 sys-cluster/lmod/lmod-8.6.14.ebuild | 131 
 3 files changed, 263 deletions(-)

diff --git a/sys-cluster/lmod/Manifest b/sys-cluster/lmod/Manifest
index 1ecdab3c9fe5..19f9a0fedbe0 100644
--- a/sys-cluster/lmod/Manifest
+++ b/sys-cluster/lmod/Manifest
@@ -1,3 +1,2 @@
-DIST lmod-8.5.6.tar.gz 20986562 BLAKE2B 
49a8062f92beb40ce364281f452d221df73ad540f4a510998a909d5733446c45e2cc017901ce5d2384b37a570b8dddcb16d0dc229209137e3a6483e29b97c8bf
 SHA512 
652c678907740c89d6a86f1e403a3e8370e3e4666c03795340b4e70fab8c67a2e705c31fba84f05fd1bf15eb9868808896c73627e87617d2f2c0b5142c48fa97
 DIST lmod-8.6.14.tar.gz 15804818 BLAKE2B 
5a5f076cb7121d073de456da3ad2937127c013cc47d0f389eaf00f9923b571bc4c941f8efd5cc527628d14d328d696e27e062629b4eede2f4c0273cc7015293e
 SHA512 
b14acf4a008ccfe04d12352664bc6d4afe87a677803534ea7ccf9c3adb012a3df83edfb205e39f3d0e65db418f16dbce70871932d90b837924b889dc1829e672
 DIST lmod-8.7.23.tar.gz 20609950 BLAKE2B 
20b2028c15a602f7b165eae342a83a238313d37ea4669e08c5ff22c47ae4e18e3190c83739bc6e39178b60d9e3ed19c7ade20466a65833e28677ca56799aa065
 SHA512 
029be9c08dbe3f3f8fd5c034eaab94746679b8403d8c401bc76b18b800f4f72d21f14b0a71fe20d2c1546b8b9d6f2e032226ea3528992ea6cdab8f02c2a5d99d

diff --git a/sys-cluster/lmod/lmod-8.5.6.ebuild 
b/sys-cluster/lmod/lmod-8.5.6.ebuild
deleted file mode 100644
index 9d9f762ccb43..
--- a/sys-cluster/lmod/lmod-8.5.6.ebuild
+++ /dev/null
@@ -1,131 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-LUA_COMPAT=( lua5-{1..3} )
-inherit autotools lua-single prefix
-
-DESCRIPTION="Environment Module System based on Lua"
-HOMEPAGE="https://lmod.readthedocs.io/en/latest https://github.com/TACC/Lmod";
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/TACC/Lmod";
-else
-   SRC_URI="https://github.com/TACC/Lmod/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   S="${WORKDIR}"/Lmod-${PV}
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
-fi
-
-LICENSE="MIT"
-SLOT="0"
-IUSE="+auto-swap +cache duplicate-paths test"
-REQUIRED_USE="${LUA_REQUIRED_USE}"
-RESTRICT="!test? ( test )"
-
-RDEPEND="${LUA_DEPS}
-   dev-lang/tcl
-   dev-lang/tk
-   $(lua_gen_cond_dep '
-   >=dev-lua/luafilesystem-1.8.0[${LUA_USEDEP}]
-   dev-lua/luajson[${LUA_USEDEP}]
-   dev-lua/luaposix[${LUA_USEDEP}]
-   dev-lua/lua-term[${LUA_USEDEP}]
-   ')
-   virtual/pkgconfig
-"
-DEPEND="${RDEPEND}"
-BDEPEND="${RDEPEND}
-   test? (
-   $(lua_gen_cond_dep '
-   dev-util/hermes[${LUA_SINGLE_USEDEP}]
-   ')
-   app-shells/tcsh
-   )
-"
-
-PATCHES=( "${FILESDIR}"/${PN}-8.4.19-no-libsandbox.patch )
-
-pkg_pretend() {
-   elog "You can control the siteName and syshost settings by"
-   elog "using the variables LMOD_SITENAME and LMOD_SYSHOST, during"
-   elog "build time, which are both set to 'Gentoo' by default."
-   elog "There are a lot of options for this package, especially"
-   elog "for run time behaviour. Remember to use the EXTRA_ECONF variable."
-   elog "To see full list of options visit:"
-   elog "\t 
https://lmod.readthedocs.io/en/latest/090_configuring_lmod.html";
-}
-
-src_prepare() {
-   default
-   rm -r pkgs/{luafilesystem,term} || die
-   rm -r rt/{ck_mtree_syntax,colorize,end2end,help,ifur,settarg} || die
-   hprefixify -w '/#\!\/bin\/tcsh/' rt/csh_swap/csh_swap.tdesc || die
-   eautoreconf
-}
-
-src_configure() {
-   local LMOD_SITENAME="${LMOD_SITENAME:-Gentoo}"
-   local LMOD_SYSHOST="${LMOD_SYSHOST:-Gentoo}"
-
-   local LUAC="${LUA%/*}/luac${LUA#*lua}"
-
-   local myconf=(
-   --with-tcl
-   --with-fastTCLInterp
-   --with-colorize
-   --with-supportKsh
-   --without-useBuiltinPkgs
-   --with-siteControlPrefix
-   --with-siteName="${LMOD_SITENAME}"
-   --with-syshost="${LMOD_SYSHOST}"
-   --with-lua_include="$(lua_get_include_dir)"
-   --with-lua="${LUA}"
-   --with-luac="${LUAC}"
-   --with-module-root-path="${EPREFIX}/etc/modulefiles"
-   --with-spiderCacheDir="${EPREFIX}/etc/lmod_cache/spider_cache"
-   --with-updateSystemFn="${EPREFIX}/etc/lmod_cache/system.txt"
-

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

2023-04-03 Thread Guilherme Amadio
commit: 5d4b5fcd035f4b48316524a480a93e8576c0c68b
Author: Guilherme Amadio  gentoo  org>
AuthorDate: Mon Apr  3 15:21:07 2023 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Mon Apr  3 15:24:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5d4b5fcd

sys-cluster/lmod: add 8.7.23

Signed-off-by: Guilherme Amadio  gentoo.org>

 sys-cluster/lmod/Manifest   |   1 +
 sys-cluster/lmod/lmod-8.7.23.ebuild | 135 
 2 files changed, 136 insertions(+)

diff --git a/sys-cluster/lmod/Manifest b/sys-cluster/lmod/Manifest
index 115a2a9dd8ec..1ecdab3c9fe5 100644
--- a/sys-cluster/lmod/Manifest
+++ b/sys-cluster/lmod/Manifest
@@ -1,2 +1,3 @@
 DIST lmod-8.5.6.tar.gz 20986562 BLAKE2B 
49a8062f92beb40ce364281f452d221df73ad540f4a510998a909d5733446c45e2cc017901ce5d2384b37a570b8dddcb16d0dc229209137e3a6483e29b97c8bf
 SHA512 
652c678907740c89d6a86f1e403a3e8370e3e4666c03795340b4e70fab8c67a2e705c31fba84f05fd1bf15eb9868808896c73627e87617d2f2c0b5142c48fa97
 DIST lmod-8.6.14.tar.gz 15804818 BLAKE2B 
5a5f076cb7121d073de456da3ad2937127c013cc47d0f389eaf00f9923b571bc4c941f8efd5cc527628d14d328d696e27e062629b4eede2f4c0273cc7015293e
 SHA512 
b14acf4a008ccfe04d12352664bc6d4afe87a677803534ea7ccf9c3adb012a3df83edfb205e39f3d0e65db418f16dbce70871932d90b837924b889dc1829e672
+DIST lmod-8.7.23.tar.gz 20609950 BLAKE2B 
20b2028c15a602f7b165eae342a83a238313d37ea4669e08c5ff22c47ae4e18e3190c83739bc6e39178b60d9e3ed19c7ade20466a65833e28677ca56799aa065
 SHA512 
029be9c08dbe3f3f8fd5c034eaab94746679b8403d8c401bc76b18b800f4f72d21f14b0a71fe20d2c1546b8b9d6f2e032226ea3528992ea6cdab8f02c2a5d99d

diff --git a/sys-cluster/lmod/lmod-8.7.23.ebuild 
b/sys-cluster/lmod/lmod-8.7.23.ebuild
new file mode 100644
index ..db3d54599e43
--- /dev/null
+++ b/sys-cluster/lmod/lmod-8.7.23.ebuild
@@ -0,0 +1,135 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-{1..3} )
+inherit autotools lua-single prefix
+
+DESCRIPTION="Environment Module System based on Lua"
+HOMEPAGE="https://lmod.readthedocs.io/en/latest https://github.com/TACC/Lmod";
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/TACC/Lmod";
+else
+   SRC_URI="https://github.com/TACC/Lmod/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   S="${WORKDIR}"/Lmod-${PV}
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="+auto-swap +cache duplicate-paths test"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+RESTRICT="!test? ( test )"
+
+RDEPEND="${LUA_DEPS}
+   dev-lang/tcl
+   dev-lang/tk
+   $(lua_gen_cond_dep '
+   >=dev-lua/luafilesystem-1.8.0[${LUA_USEDEP}]
+   dev-lua/luajson[${LUA_USEDEP}]
+   dev-lua/luaposix[${LUA_USEDEP}]
+   dev-lua/lua-term[${LUA_USEDEP}]
+   ')
+   virtual/pkgconfig
+"
+DEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}
+   test? (
+   $(lua_gen_cond_dep '
+   dev-util/hermes[${LUA_SINGLE_USEDEP}]
+   ')
+   app-shells/tcsh
+   )
+"
+
+PATCHES=( "${FILESDIR}"/${PN}-8.4.19-no-libsandbox.patch )
+
+pkg_pretend() {
+   elog "You can control the siteName and syshost settings by"
+   elog "using the variables LMOD_SITENAME and LMOD_SYSHOST, during"
+   elog "build time, which are both set to 'Gentoo' by default."
+   elog "There are a lot of options for this package, especially"
+   elog "for run time behaviour. Remember to use the EXTRA_ECONF variable."
+   elog "To see full list of options visit:"
+   elog "\t 
https://lmod.readthedocs.io/en/latest/090_configuring_lmod.html";
+}
+
+src_prepare() {
+   default
+   rm -r pkgs/{luafilesystem,term} || die
+   rm -r rt/{ck_mtree_syntax,colorize,end2end,help,ifur,settarg} || die
+   hprefixify -w '/#\!\/bin\/tcsh/' rt/csh_swap/csh_swap.tdesc || die
+   eautoreconf
+}
+
+src_configure() {
+   local LMOD_SITENAME="${LMOD_SITENAME:-Gentoo}"
+   local LMOD_SYSHOST="${LMOD_SYSHOST:-Gentoo}"
+
+   local LUAC="${LUA%/*}/luac${LUA#*lua}"
+
+   local myconf=(
+   --with-tcl
+   --with-fastTCLInterp
+   --with-colorize
+   --with-supportKsh
+   --without-useBuiltinPkgs
+   --with-siteControlPrefix
+   --with-siteName="${LMOD_SITENAME}"
+   --with-syshost="${LMOD_SYSHOST}"
+   --with-lua_include="$(lua_get_include_dir)"
+   --with-lua="${LUA}"
+   --with-luac="${LUAC}"
+   --with-module-root-path="${EPREFIX}/etc/modulefiles"
+   --with-spiderCacheDir="${EPREFIX}/etc/lmod_cache/spider_cache"
+   --with-updateSystemFn="${EPREFIX}/etc/lmod_cache/system.txt"
+   --prefix="${EPREFIX}/usr/share/Lmod"
+   --with-caseIndependentSo

[gentoo-commits] repo/gentoo:master commit in: sci-physics/geant4_vmc/

2023-04-03 Thread Guilherme Amadio
commit: a8286edeacb2057c9cf983350ab437e31e2065e6
Author: Oliver Freyermuth  googlemail  com>
AuthorDate: Thu Mar 30 20:23:43 2023 +
Commit: Guilherme Amadio  gentoo  org>
CommitDate: Mon Apr  3 15:24:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a8286ede

sci-physics/geant4_vmc: add 6.1_p5, 6.3_p1

Signed-off-by: Oliver Freyermuth  googlemail.com>
Closes: https://github.com/gentoo/gentoo/pull/30344
Signed-off-by: Guilherme Amadio  gentoo.org>

 sci-physics/geant4_vmc/Manifest |  2 +
 sci-physics/geant4_vmc/geant4_vmc-6.1_p5.ebuild | 80 +
 sci-physics/geant4_vmc/geant4_vmc-6.3_p1.ebuild | 79 
 3 files changed, 161 insertions(+)

diff --git a/sci-physics/geant4_vmc/Manifest b/sci-physics/geant4_vmc/Manifest
index 7f5e751a4673..546cb69b 100644
--- a/sci-physics/geant4_vmc/Manifest
+++ b/sci-physics/geant4_vmc/Manifest
@@ -1,4 +1,6 @@
 DIST geant4_vmc-6.1_p3.tar.gz 5605174 BLAKE2B 
80d7936534d4102b545a4285b8ddba4eb7c9ec31b1343194da922a6c79730c1f779cc9719b1d2e5b4bcf02a681c371157057d727c5fa86633e6c7497d64206e0
 SHA512 
ccb568c2ce004300c7c6ad908aa8d97319f3c0d4add0da3ace418231906cf91ef9f73b5c774fbadd6e4473dcc1b49071023d7fa159b5864f03b28dae407074c6
 DIST geant4_vmc-6.1_p4.tar.gz 5606731 BLAKE2B 
441a3398b472db13c5cb5219004c4d32c8ff07041e0c6335d40e6db8df23bc35d67ca2e6920a1b575f0fcb224b2d47ffa573dc5f9d23dac771ddf579b5bd9a2a
 SHA512 
8751899e2db863017b6c14fc87fc172492dbcf26c089c4cea4b262b75e22ae7767d47e3019a3676315c0eb6052e99b6acd10a39135cd51e3ce0f9ea816c09ce6
+DIST geant4_vmc-6.1_p5.tar.gz 5606990 BLAKE2B 
27f1071f72816ade025ba955432cdc931350388450902993468466c9860d8213e31b5e749bc6ae01d09832682ac836b477fae18d0600de33eda35c4ad4e616b4
 SHA512 
e769151751cf3f81fdfe9e6d0b8c33117dffbaa893c686fd3f68474dfd1adc299a7cf1c1fb14fd66bc909d34e7a66cf37308e697d32874fc4425834f9cef6d56
 DIST geant4_vmc-6.2.tar.gz 5743487 BLAKE2B 
062fece07714f255eddd13c6bda660ea6737772fe7a43413df07c9ed221c0f80a872fe72614e5e4ad18396c72aae2c2000cdf6e3b1c2436f9419933ac32704bb
 SHA512 
72651ab5261a398feb6f37271a41a5770334a20dc61be2046b19ca8ff4780cf7649136314e4a8597023d14782996d7ee0d047579b33a983c4dea9c21b32b4551
 DIST geant4_vmc-6.3.tar.gz 5737268 BLAKE2B 
0de8b6eabd7aceebb8047daa2642bb5d41945abbbe751709fa7a8f4063dd1049676f5243eae17c2d572d232a28bf2f268d64fae72183d886a64af8a761679203
 SHA512 
4ca9d4593a10a25947eadc27de4460e2522077c499c73a59824f363b75922ae1d2695365fc941c60a7aa83f9b0ec030ac435926a729e764b88c768668b3c5671
+DIST geant4_vmc-6.3_p1.tar.gz 5737383 BLAKE2B 
9f99f8367da47b15e195fd94463d2131babd268e4297e85f496c7f34dac60fe720259692d41e0ed54bd7452ece564900211edd7ef87d3d9a8acfa950c016ffbd
 SHA512 
d2ac7881b343e7ecf0d5db42df79fbb26df6331da40db9513afa4b5b093571fd4e4f9ba22cc023d6f9f6827c3120d7d5a182cb88a0978e6aff6501b2c7abd0c6

diff --git a/sci-physics/geant4_vmc/geant4_vmc-6.1_p5.ebuild 
b/sci-physics/geant4_vmc/geant4_vmc-6.1_p5.ebuild
new file mode 100644
index ..d345df0c65eb
--- /dev/null
+++ b/sci-physics/geant4_vmc/geant4_vmc-6.1_p5.ebuild
@@ -0,0 +1,80 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake virtualx
+
+if [[ ${PV} == ** ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/vmc-project/${PN}.git";
+else
+   MY_PV=$(ver_rs 1-2 -)
+   SRC_URI="https://github.com/vmc-project/${PN}/archive/v${MY_PV}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${PN}-${MY_PV}"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+DESCRIPTION="Virtual Monte Carlo Geant4 implementation"
+HOMEPAGE="https://github.com/vmc-project/geant4_vmc";
+
+LICENSE="GPL-3"
+SLOT="4"
+IUSE="doc examples geant3 +g4root vgm test"
+
+RDEPEND="
+   >=sci-physics/geant-4.11[c++17,opengl,geant3?]
+   sci-physics/root:=[c++17,-vmc(-)]
+   >=sci-physics/vmc-2.0:=[c++17]
+   vgm? ( <=sci-physics/vgm-5.0:= )"
+DEPEND="${RDEPEND}
+   test? ( >=sci-physics/geant-4.11[gdml] )"
+BDEPEND="doc? ( app-doc/doxygen[dot] )"
+RESTRICT="
+   !examples? ( test )
+   !geant3? ( test )
+   !g4root? ( test )
+   !test? ( test )
+   !vgm? ( test )"
+
+DOCS=(history README.md)
+
+src_configure() {
+   local mycmakeargs=(
+   -DGeant4VMC_USE_VGM="$(usex vgm)"
+   -DGeant4VMC_USE_GEANT4_G3TOG4="$(usex geant3)"
+   -DGeant4VMC_USE_G4Root="$(usex g4root)"
+   -DGeant4VMC_BUILD_EXAMPLES="$(usex test)"
+   -DGeant4VMC_INSTALL_EXAMPLES="$(usex examples)"
+   -DGeant4VMC_BUILD_G4Root_TEST="$(usex test)"
+   )
+   cmake_src_configure
+}
+
+src_compile() {
+   cmake_src_compile
+   if use doc ; then
+   local dirs=(
+   source
+   $(usev g4root)
+   $(usev examples)
+   )
+   local d
+   for d in "${dirs[@]}"; do
+   doxygen "${d}"

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

2023-04-03 Thread Florian Schmaus
commit: 17c44c168bdc07b86a0c6a622c43144169d5783c
Author: Florian Schmaus  gentoo  org>
AuthorDate: Mon Apr  3 16:02:22 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Apr  3 16:04:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=17c44c16

dev-python/pdoc3: Add DISTUTILS_USE_PEP517=setuptools

Signed-off-by: Florian Schmaus  gentoo.org>

 dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild 
b/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild
index 53eb83946604..ce0475966b35 100644
--- a/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild
+++ b/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=8
 
+DISTUTILS_USE_PEP517=setuptools
 PYTHON_COMPAT=( python3_{9..11} )
 
 inherit distutils-r1 pypi



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

2023-04-03 Thread Florian Schmaus
commit: c453d7a6b85bdd87125923662537fb4f89805a1f
Author: Florian Schmaus  gentoo  org>
AuthorDate: Mon Apr  3 16:00:09 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Apr  3 16:00:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c453d7a6

dev-python/pdoc3: fix tests and bump to EAPI 8

Closes: https://bugs.gentoo.org/834773
Signed-off-by: Florian Schmaus  gentoo.org>

 .../pdoc3/files/pdoc3-0.10.0-update-tests.patch| 114 +
 ...{pdoc3-0.10.0.ebuild => pdoc3-0.10.0-r1.ebuild} |   3 +-
 2 files changed, 116 insertions(+), 1 deletion(-)

diff --git a/dev-python/pdoc3/files/pdoc3-0.10.0-update-tests.patch 
b/dev-python/pdoc3/files/pdoc3-0.10.0-update-tests.patch
new file mode 100644
index ..bd68ea2d8368
--- /dev/null
+++ b/dev-python/pdoc3/files/pdoc3-0.10.0-update-tests.patch
@@ -0,0 +1,114 @@
+From 80af5d40d3ca39e2701c44941c1003ae6a280799 Mon Sep 17 00:00:00 2001
+From: Kernc 
+Date: Sat, 29 Oct 2022 18:55:46 +0200
+Subject: [PATCH] CI: Bump min Python 3.7+ and update tests for Python 3.10
+
+Fix https://github.com/pdoc3/pdoc/issues/400
+Thanks @tjni
+--- a/pdoc/__init__.py
 b/pdoc/__init__.py
+@@ -1275,7 +1275,7 @@ def _formatannotation(annot):
+ `typing.Optional`, `nptyping.NDArray` and other types.
+ 
+ >>> _formatannotation(NewType('MyType', str))
+-'MyType'
++'pdoc.MyType'
+ >>> _formatannotation(Optional[Tuple[Optional[int], None]])
+ 'Optional[Tuple[Optional[int], None]]'
+ """
+--- a/pdoc/documentation.md
 b/pdoc/documentation.md
+@@ -353,7 +353,7 @@ modified templates into the `directories` list of the
+ 
+ Compatibility
+ -
+-`pdoc` requires Python 3.6+.
++`pdoc` requires Python 3.7+.
+ The last version to support Python 2.x is [pdoc3 0.3.x].
+ 
+ [pdoc3 0.3.x]: https://pypi.org/project/pdoc3/0.3.13/
+--- a/pdoc/test/__init__.py
 b/pdoc/test/__init__.py
+@@ -126,7 +126,8 @@ class CliTest(unittest.TestCase):
+ def setUp(self):
+ pdoc.reset()
+ 
+-@unittest.skipIf(sys.version_info < (3, 7), 'pdoc._formatannotation fails 
on Py3.6')
++@unittest.skipIf(sys.version_info < (3, 10),
++ 'HACK: _formatannotation() changed return value in 
Py3.10')
+ def test_project_doctests(self):
+ doctests = doctest.testmod(pdoc)
+ assert not doctests.failed and doctests.attempted, doctests
+@@ -185,8 +186,12 @@ def test_html(self):
+ '_private',
+ ' class="ident">_Private',
+-'non_callable_routine',
+ ]
++if sys.version_info >= (3, 10):
++include_patterns.append('non_callable_routine')
++else:
++exclude_patterns.append('non_callable_routine')
++
+ package_files = {
+ '': self.PUBLIC_FILES,
+ '.subpkg2': [f for f in self.PUBLIC_FILES
+@@ -356,8 +361,11 @@ def test_text(self):
+ '_Private',
+ 'subprocess',
+ 'Hidden',
+-'non_callable_routine',
+ ]
++if sys.version_info >= (3, 10):
++include_patterns.append('non_callable_routine')
++else:
++exclude_patterns.append('non_callable_routine')
+ 
+ with self.subTest(package=EXAMPLE_MODULE):
+ with redirect_streams() as (stdout, _):
+@@ -543,8 +551,9 @@ class C:
+ self.assertEqual(doc.doc['vars_dont'].docstring, '')
+ self.assertIn('integer', doc.doc['but_clss_have_doc'].docstring)
+ 
++@unittest.skipIf(sys.version_info >= (3, 10), 'No builtin module "parser" 
in Py3.10')
+ def test_builtin_methoddescriptors(self):
+-import parser
++import parser  # TODO: replace with another public binary builtin
+ with self.assertWarns(UserWarning):
+ c = pdoc.Class('STType', pdoc.Module(parser), parser.STType)
+ self.assertIsInstance(c.doc['compile'], pdoc.Function)
+@@ -906,9 +915,13 @@ def bug130_str_annotation(a: "str"):
+ def bug253_newtype_annotation(a: CustomType):
+ return
+ 
++expected = CustomType.__name__
++if sys.version_info > (3, 10):
++expected = f'{__name__}.{CustomType.__name__}'
++
+ self.assertEqual(
+ pdoc.Function('bug253', mod, 
bug253_newtype_annotation).params(annotate=True),
+-['a:\N{NBSP}CustomType'])
++[f'a:\N{NBSP}{expected}'])
+ 
+ # typing.Callable bug
+ def f(a: typing.Callable):
+--- a/setup.py
 b/setup.py
+@@ -2,8 +2,8 @@
+ import sys
+ from setuptools import setup, find_packages
+ 
+-if sys.version_info < (3, 6):
+-sys.exit('ERROR: pdoc requires Python 3.6+')
++if sys.version_info < (3, 7):
++sys.exit('ERROR: pdoc requires Python 3.7+')
+ 
+ 
+ def _discover_tests():
+@@ -58,5 +58,5 @@ def _discover_tests():
+ 'write_to': os.path.join('pdoc', '_version.py'),
+ },
+ test_suite="setup._discover_tests",
+-python_re

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

2023-04-03 Thread Florian Schmaus
commit: 29ba3e6a8abd38bc90041456fc782234015842be
Author: Florian Schmaus  gentoo  org>
AuthorDate: Mon Apr  3 16:01:20 2023 +
Commit: Florian Schmaus  gentoo  org>
CommitDate: Mon Apr  3 16:04:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29ba3e6a

dev-python/pdoc3: stabilize 0.10.0-r1 for amd64

Signed-off-by: Florian Schmaus  gentoo.org>

 dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild 
b/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild
index ce0475966b35..9dd52ae79fd7 100644
--- a/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild
+++ b/dev-python/pdoc3/pdoc3-0.10.0-r1.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://pdoc3.github.io/pdoc/";
 
 SLOT="0"
 LICENSE="AGPL-3+"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 
 RDEPEND="
dev-python/mako[${PYTHON_USEDEP}]



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

2023-04-03 Thread Andreas K. Hüttel
commit: 408989cb26bb1afc2d47939962427027fffd5ee1
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Mon Apr  3 16:04:03 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Mon Apr  3 16:05:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=408989cb

net-im/zoom: add 5.14.2.2046

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

 net-im/zoom/Manifest|   1 +
 net-im/zoom/zoom-5.14.2.2046.ebuild | 192 
 2 files changed, 193 insertions(+)

diff --git a/net-im/zoom/Manifest b/net-im/zoom/Manifest
index 886e95e8605c..fd11c6e5db7f 100644
--- a/net-im/zoom/Manifest
+++ b/net-im/zoom/Manifest
@@ -1,2 +1,3 @@
 DIST zoom-5.13.10.1208_x86_64.tar.xz 166970460 BLAKE2B 
58d1bda480345a77a1fc466bb1af3429a63d1959ee4aada608f7ea6d55a537afb2840c497951c8030fb78836a3bb671debc6e4cbae82fe870eed9383e111c207
 SHA512 
dc29e626d6bfe565519822249324510e9e2719beaaf0f9382187f3d3467ce24a7d81e0473d4af22485a28932a6727b368a1d13a3322cb970b69b44155b1d6a30
 DIST zoom-5.14.0.1720_x86_64.tar.xz 167563744 BLAKE2B 
f1e097866d3c6e89ce6fdfbad49eb9d7b2fc02a56322ac07ca922de0a77161797475b949236555241954cd844531ba026dff32a8330e639c72d6e16c55df8f29
 SHA512 
dc0b43ff498b3d3ce2bd2d161e2bcf60f84a11537a4778ff218d9d5b73e554715e819c7318973ac623b0af39e75b2864e99e00bddd329b836fd36a81d884b70f
+DIST zoom-5.14.2.2046_x86_64.tar.xz 167565808 BLAKE2B 
1e2ecbac52fa88ed7d068be8edcaa65b33643045e5cbed6d1af31e560df520723541fb1c61133073edb27068cd9a1ed66dfacdd3184b18ab7b26f71513f3855c
 SHA512 
416ffd9bf48b7519302f87847efc6ac2086ae47b9a2083e9cad7b42ee2549e0b91d27edfbd1a0afd06cc02b1d0d0db8443ab294b0e863878c6533a143b4088be

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

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

2023-04-03 Thread Jakov Smolić
commit: 25fac359d14ad1fd7701fdfb59e643bef1365693
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:14:45 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:14:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25fac359

app-admin/rsyslog: Stabilize 8.2302.0 arm64, #903737

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

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

diff --git a/app-admin/rsyslog/rsyslog-8.2302.0.ebuild 
b/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
index 0d3d01886462..862d4e3f782f 100644
--- a/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
+++ b/app-admin/rsyslog/rsyslog-8.2302.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == "" ]]; then
 
inherit git-r3
 else
-   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
+   KEYWORDS="~amd64 ~arm arm64 ~hppa ~ia64 ~ppc64 ~riscv ~sparc ~x86"
 
SRC_URI="
https://www.rsyslog.com/files/download/${PN}/${P}.tar.gz



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

2023-04-03 Thread Jakov Smolić
commit: bfbfb9b5a6acb370d40b6920fcf107be952de861
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:14:50 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:14:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfbfb9b5

app-arch/dtrx: Keyword 8.5.0 arm64, #903743

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

 app-arch/dtrx/dtrx-8.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/dtrx/dtrx-8.5.0.ebuild b/app-arch/dtrx/dtrx-8.5.0.ebuild
index 4443c0ba9462..26e356be4fe2 100644
--- a/app-arch/dtrx/dtrx-8.5.0.ebuild
+++ b/app-arch/dtrx/dtrx-8.5.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == ** ]] ; then
EGIT_REPO_URI="https://github.com/${PN}-py/${PN}.git";
 else
inherit pypi
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~x86"
 fi
 
 LICENSE="GPL-3+"



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

2023-04-03 Thread Georgy Yakovlev
commit: 6c205769c95f5cf3a79be6c7c9f1513bcf6faf7b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Apr  3 17:14:17 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Apr  3 17:15:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c205769

sys-apps/opal-utils: enable py3.11

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

 sys-apps/opal-utils/opal-utils-7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/opal-utils/opal-utils-7.0.ebuild 
b/sys-apps/opal-utils/opal-utils-7.0.ebuild
index 5864578f225c..231e4fdcf567 100644
--- a/sys-apps/opal-utils/opal-utils-7.0.ebuild
+++ b/sys-apps/opal-utils/opal-utils-7.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit linux-info python-single-r1 systemd toolchain-funcs
 



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

2023-04-03 Thread Jakov Smolić
commit: d1117f9f4ff885b7f847443472644143ae113396
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:16:38 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:16:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d1117f9f

dev-ruby/instance_storage: Keyword 2.0.0 riscv, #903714

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

 dev-ruby/instance_storage/instance_storage-2.0.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-ruby/instance_storage/instance_storage-2.0.0.ebuild 
b/dev-ruby/instance_storage/instance_storage-2.0.0.ebuild
index cbb5d0331daa..1eb61fc345f3 100644
--- a/dev-ruby/instance_storage/instance_storage-2.0.0.ebuild
+++ b/dev-ruby/instance_storage/instance_storage-2.0.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ HOMEPAGE="https://rubygems.org/gems/instance_storage/";
 
 LICENSE="MIT"
 SLOT="$(ver_cut 1)"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 ~riscv ~x86"
 IUSE=""
 
 all_ruby_prepare() {



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

2023-04-03 Thread Jakov Smolić
commit: 406c7e8501fa954d9c677cf44d3ee4fb44ea1099
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:18:55 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:18:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=406c7e85

net-vpn/headscale: drop 0.16.2

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

 net-vpn/headscale/Manifest|  2 --
 net-vpn/headscale/headscale-0.16.2.ebuild | 49 ---
 2 files changed, 51 deletions(-)

diff --git a/net-vpn/headscale/Manifest b/net-vpn/headscale/Manifest
index 90ab2fca7de4..e0310737c946 100644
--- a/net-vpn/headscale/Manifest
+++ b/net-vpn/headscale/Manifest
@@ -1,4 +1,2 @@
-DIST headscale-0.16.2-deps.tar.xz 246778024 BLAKE2B 
7c2beff2b18ca87aa4d496332d6b521f31d7b496227950204d9efe35f8259fdf1f3519fce951827f3698b5c166148db3ef69225acf16ce2e659b70017ac9e0f2
 SHA512 
5bc9b1b6bf1c3c70a7e033c2820c9fc05df45d19855e8050687072f0394920d77416640eb9af100027a96646df285b5a3d09bab4c959d4475e8b2b304f01a4ef
-DIST headscale-0.16.2.tar.gz 391683 BLAKE2B 
c75835e7f15847236b357988cdb66c65c3e2cb6ac2328e4fb5cb07da9c132b664afe69fcaf3fa9f6a70951e76a91ddf8fda2ea74c1af9055daca30f3efb593ab
 SHA512 
bad885866855211d43b45dcc7b958595967241af4c2a1b370532fef7c751b85002138cd3742e4046603af383c123b66afd7de9aba59e8eee600d7ffdd70ff12c
 DIST headscale-0.20.0-deps.tar.xz 199890824 BLAKE2B 
4b96f22d2cd1c4156bb730cc476dbf65b969b64b857cbdc0d91714b031ca8df4993327a2e31bf8dec51b5309790bf8e606117b7c49a96654914551a9081df3cf
 SHA512 
2394e5e995d8fae72b9561e98c1d2576309a37583441a42eee1d74fd123340dba8615c78beb581633aea15b234d213cbfcd97701c8cbf6dc85381d7dca4252a7
 DIST headscale-0.20.0.tar.gz 581431 BLAKE2B 
07def2a4e6509759a1b7a18c8faa426e420a17b42290e3162540c8115316012cc83a5cbd9e8918940244591ebfca4a9225e5a0475554e52f54bd791904d6407e
 SHA512 
e201c63f3646501229b114b48c3603945272b79390f4ab8d3f9bc557cdf02b1c404cd18ba85aaf1a5038ec41361746177278a51d6075db5944d3edf1efdcc4be

diff --git a/net-vpn/headscale/headscale-0.16.2.ebuild 
b/net-vpn/headscale/headscale-0.16.2.ebuild
deleted file mode 100644
index 494f2589a5c2..
--- a/net-vpn/headscale/headscale-0.16.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit go-module systemd
-
-DESCRIPTION="An open source, self-hosted implementation of the Tailscale 
control server"
-HOMEPAGE="https://github.com/juanfont/headscale";
-DEPS_URIS=( 
https://dev.gentoo.org/~{dlan,jsmolic}/distfiles/net-vpn/headscale/${P}-deps.tar.xz
 )
-SRC_URI="https://github.com/juanfont/headscale/archive/v${PV}.tar.gz -> 
${P}.tar.gz
-   ${DEPS_URIS[@]}"
-
-LICENSE="BSD Apache-2.0 MIT"
-SLOT="0"
-KEYWORDS="~amd64 ~riscv"
-
-DEPEND="
-   acct-group/headscale
-   acct-user/headscale
-"
-RDEPEND="
-   ${DEPEND}
-   net-firewall/iptables
-"
-
-PATCHES=(
-   "${FILESDIR}"/config-socket.patch
-)
-
-src_compile() {
-   emake version=v${PV}
-}
-
-src_install() {
-   dobin headscale
-   dodoc -r docs/* config-example.yaml
-   keepdir /etc/headscale /var/lib/headscale
-   systemd_dounit "${FILESDIR}"/headscale.service
-   newconfd "${FILESDIR}"/headscale.confd headscale
-   newinitd "${FILESDIR}"/headscale.initd headscale
-   fowners -R ${PN}:${PN} /etc/headscale /var/lib/headscale
-}
-
-pkg_postinst() {
-   [[ -f "${EROOT}"/etc/headscale/config.yaml ]] && return
-   elog "Please create ${EROOT}/etc/headscale/config.yaml before starting 
the service"
-   elog "An example is in ${EROOT}/usr/share/doc/${PV}/config-example.yaml"
-}



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

2023-04-03 Thread Georgy Yakovlev
commit: 28d9dae9681c193eb61d7defeb40bc4fc4aea9a5
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Apr  3 17:24:27 2023 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Apr  3 17:25:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28d9dae9

sys-fs/zfs: enable py3.11

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

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

diff --git a/sys-fs/zfs/zfs-2.1.9.ebuild b/sys-fs/zfs/zfs-2.1.9.ebuild
index 32dd02992aaf..29308460bcd7 100644
--- a/sys-fs/zfs/zfs-2.1.9.ebuild
+++ b/sys-fs/zfs/zfs-2.1.9.ebuild
@@ -4,7 +4,7 @@
 EAPI=8
 
 DISTUTILS_OPTIONAL=1
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 
 inherit autotools bash-completion-r1 dist-kernel-utils distutils-r1 
flag-o-matic linux-info pam systemd udev usr-ldscript
 



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

2023-04-03 Thread Mike Gilbert
commit: 807cb87fc6bf6a6d76ad504a412306dc8b97a60e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Apr  3 17:32:12 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Apr  3 17:32:40 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=807cb87f

www-client/chromium: restore InkDropHost-crash patch

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

 ...10.ebuild => chromium-111.0.5563.110-r1.ebuild} |  1 +
 .../files/chromium-111-InkDropHost-crash.patch | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/www-client/chromium/chromium-111.0.5563.110.ebuild 
b/www-client/chromium/chromium-111.0.5563.110-r1.ebuild
similarity index 99%
rename from www-client/chromium/chromium-111.0.5563.110.ebuild
rename to www-client/chromium/chromium-111.0.5563.110-r1.ebuild
index d41b4c6b4d15..d83cbb6b2169 100644
--- a/www-client/chromium/chromium-111.0.5563.110.ebuild
+++ b/www-client/chromium/chromium-111.0.5563.110-r1.ebuild
@@ -342,6 +342,7 @@ src_prepare() {
"${FILESDIR}/chromium-109-system-zlib.patch"
"${FILESDIR}/chromium-109-system-openh264.patch"
"${FILESDIR}/chromium-111-ozone-platform.patch"
+   "${FILESDIR}/chromium-111-InkDropHost-crash.patch"

"${FILESDIR}/chromium-use-oauth2-client-switches-as-default.patch"
"${FILESDIR}/chromium-cross-compile.patch"
)

diff --git a/www-client/chromium/files/chromium-111-InkDropHost-crash.patch 
b/www-client/chromium/files/chromium-111-InkDropHost-crash.patch
new file mode 100644
index ..21dd8e41b8c8
--- /dev/null
+++ b/www-client/chromium/files/chromium-111-InkDropHost-crash.patch
@@ -0,0 +1,25 @@
+https://chromium-review.googlesource.com/c/chromium/src/+/2959890
+
+--- a/ui/views/animation/ink_drop_host.h
 b/ui/views/animation/ink_drop_host.h
+@@ -238,6 +238,11 @@ class VIEWS_EXPORT InkDropHost {
+   // Used to observe View and inform the InkDrop of host-transform changes.
+   ViewLayerTransformObserver host_view_transform_observer_;
+ 
++  // Declared before |ink_drop_|, because InkDropImpl may call
++  // RemoveInkDropLayer on partly destructed InkDropHost. In
++  // that case |ink_drop_mask_| must be still valid.
++  std::unique_ptr ink_drop_mask_;
++
+   // Should not be accessed directly. Use GetInkDrop() instead.
+   std::unique_ptr ink_drop_;
+ 
+@@ -261,8 +266,6 @@ class VIEWS_EXPORT InkDropHost {
+   int ink_drop_small_corner_radius_ = 2;
+   int ink_drop_large_corner_radius_ = 4;
+ 
+-  std::unique_ptr ink_drop_mask_;
+-
+   base::RepeatingCallback()> 
create_ink_drop_callback_;
+   base::RepeatingCallback()>
+   create_ink_drop_ripple_callback_;



[gentoo-commits] repo/gentoo:master commit in: app-office/upwork/, app-office/upwork/files/, profiles/

2023-04-03 Thread Jakov Smolić
commit: a516abd7dcc7672e059858a234384900ae9639bb
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:20:54 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:38:47 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a516abd7

app-office/upwork: treeclean

Closes: https://bugs.gentoo.org/873856
Closes: https://bugs.gentoo.org/809551
Closes: https://bugs.gentoo.org/891237
Signed-off-by: Jakov Smolić  gentoo.org>

 app-office/upwork/Manifest  |  2 -
 app-office/upwork/files/upwork-desktop-r2.patch |  8 
 app-office/upwork/metadata.xml  | 16 ---
 app-office/upwork/upwork-5.4.5.1-r1.ebuild  | 61 -
 profiles/package.mask   |  6 ---
 5 files changed, 93 deletions(-)

diff --git a/app-office/upwork/Manifest b/app-office/upwork/Manifest
deleted file mode 100644
index 72fb20028cf6..
--- a/app-office/upwork/Manifest
+++ /dev/null
@@ -1,2 +0,0 @@
-DIST upwork-5.4.5.1_i386.rpm 52638856 BLAKE2B 
95e598f96a9a8165875cc0f94bcddf80138ef1f9281434d33e3eec997e6df6b96c6bffc3de57163b6c4dcf6261b74e593dd801dfc38706d6644d3bd87f4141d5
 SHA512 
bf2a18cdb563aca8155ddd1f5844e6726d38df8207999d6f64be47e9c0a636e64cf5012eb6b31682c272d3584c1a067aebdf1ce4b11f8927cc58a569168b2449
-DIST upwork-5.4.5.1_x86_64.rpm 50954566 BLAKE2B 
1547cc49a9029f65942398088786e9261812ce7a9a32e212199f5e0c56ebef5188988715f2f1a88d1ad2b426b78dc299ad5921d8df729666d5a8ab295b20456c
 SHA512 
dd000abd53c79d5655c71aad3e566d4baf09cfb5e4f3a5c83806c61bc7e9a5ef8513b8553cf04049e8b7bbbeffc90ef388f09b620f85113efc4586aadf23555a

diff --git a/app-office/upwork/files/upwork-desktop-r2.patch 
b/app-office/upwork/files/upwork-desktop-r2.patch
deleted file mode 100644
index 1e3f0f1a580a..
--- a/app-office/upwork/files/upwork-desktop-r2.patch
+++ /dev/null
@@ -1,8 +0,0 @@
 a/usr/share/applications/upwork.desktop2020-03-10 21:47:46.928089982 
-0600
-+++ b/usr/share/applications/upwork.desktop2020-03-10 21:48:36.989429456 
-0600
-@@ -8,4 +8,4 @@
- StartupNotify=false
- Encoding=UTF-8
- Comment=Upwork Desktop Application
--Categories=Utility;
-+Categories=GTK;Network;X-Project Management

diff --git a/app-office/upwork/metadata.xml b/app-office/upwork/metadata.xml
deleted file mode 100644
index 1977d17ec03e..
--- a/app-office/upwork/metadata.xml
+++ /dev/null
@@ -1,16 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd";>
-
-
-titanof...@gentoo.org
-Aaron W. Swenson
-
-
-stefantalpal...@yahoo.com
-Ștefan Talpalaru
-
-
-Upwork's desktop application enabling visibility, connectivity,
-collaboration and guaranteed payment for guaranteed work.
-
-

diff --git a/app-office/upwork/upwork-5.4.5.1-r1.ebuild 
b/app-office/upwork/upwork-5.4.5.1-r1.ebuild
deleted file mode 100644
index 6962a09184ac..
--- a/app-office/upwork/upwork-5.4.5.1-r1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop pax-utils rpm xdg-utils
-
-DESCRIPTION="Project collaboration and tracking software for upwork.com"
-HOMEPAGE="https://www.upwork.com/";
-SRC_URI="
-   amd64? ( 
https://updates-desktopapp.upwork.com/binaries/v${PV//./_}_941af939eff74e21/${P}-1fc24.x86_64.rpm
 -> ${P}_x86_64.rpm )
-   x86? ( 
https://updates-desktopapp.upwork.com/binaries/v${PV//./_}_941af939eff74e21/${P}-1fc24.i386.rpm
 -> ${P}_i386.rpm )"
-
-LICENSE="ODESK"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-RESTRICT="bindist mirror"
-
-RDEPEND="
-   dev-libs/expat
-   dev-libs/nspr
-   dev-libs/nss
-   gnome-base/gconf
-   media-libs/alsa-lib
-   media-libs/freetype
-   sys-apps/dbus
-   sys-libs/libcap
-   x11-libs/gtk+:3[cups]
-   x11-libs/libXinerama
-   x11-libs/libXScrnSaver
-   x11-libs/libXtst
-"
-
-S="${WORKDIR}"
-
-PATCHES=( "${FILESDIR}/${PN}-desktop-r2.patch" )
-
-# Binary only distribution
-QA_PREBUILT="*"
-
-src_install() {
-   pax-mark m opt/Upwork/upwork
-
-   insinto /opt
-   doins -r opt/Upwork
-   fperms 0755 /opt/Upwork/upwork
-
-   insinto /usr/share
-   doins -r usr/share/icons
-
-   domenu usr/share/applications/upwork.desktop
-   doicon usr/share/icons/hicolor/128x128/apps/upwork.png
-}
-
-pkg_postinst() {
-   xdg_icon_cache_update
-}
-
-pkg_postrm() {
-   xdg_icon_cache_update
-}

diff --git a/profiles/package.mask b/profiles/package.mask
index 77c48019dc60..f91fc1d2cd5c 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -367,12 +367,6 @@ x11-apps/xf86dga
 gnome-base/gconf
 gnome-extra/gconf-editor
 
-# Matt Turner  (2023-03-03)
-# No commits from maintainer in more than two years. Downloads are broken for
-# 18 months (bug #809551), depends on deprecated gconf (bug #873856)
-# Removal on 2023-04-03. Bug #873856
-app-of

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

2023-04-03 Thread Jakov Smolić
commit: 2b813ca9ff02f10fdf1adc6a127aaf6f90213cbd
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:35:26 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:38:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b813ca9

sys-power/apcupsd: Remove USE=gnome

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

 sys-power/apcupsd/apcupsd-3.14.14-r3.ebuild | 11 +++
 1 file changed, 3 insertions(+), 8 deletions(-)

diff --git a/sys-power/apcupsd/apcupsd-3.14.14-r3.ebuild 
b/sys-power/apcupsd/apcupsd-3.14.14-r3.ebuild
index 39033efdfbe7..a80e424729c5 100644
--- a/sys-power/apcupsd/apcupsd-3.14.14-r3.ebuild
+++ b/sys-power/apcupsd/apcupsd-3.14.14-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -12,16 +12,11 @@ SRC_URI="mirror://sourceforge/apcupsd/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 ppc ~riscv x86"
-IUSE="snmp +usb +modbus cgi gnome"
+IUSE="snmp +usb +modbus cgi"
 
 DEPEND=">=sys-apps/util-linux-2.23[tty-helpers(-)]
cgi? ( >=media-libs/gd-1.8.4 )
modbus? ( usb? ( virtual/libusb:0 ) )
-   gnome? (
-   >=x11-libs/gtk+-2.4.0:2
-   dev-libs/glib:2
-   >=gnome-base/gconf-2.0
-   )
snmp? ( >=net-analyzer/net-snmp-5.7.2 )"
 
 RDEPEND="${DEPEND}
@@ -75,7 +70,7 @@ src_configure() {
--enable-net --enable-pcnet \
--with-distname=gentoo \
$(use_enable snmp) \
-   $(use_enable gnome gapcmon) \
+   --disable-gapcmon \
${myconf} \
APCUPSD_MAIL=$(type -p mail)
 }



[gentoo-commits] repo/gentoo:master commit in: profiles/, gnome-extra/gconf-editor/files/, gnome-extra/gconf-editor/

2023-04-03 Thread Jakov Smolić
commit: 018f402dc46105a74a6eed8c2b606d9f58be2a28
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:21:40 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:38:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=018f402d

gnome-extra/gconf-editor: treeclean

Closes: https://bugs.gentoo.org/645320
Signed-off-by: Jakov Smolić  gentoo.org>

 gnome-extra/gconf-editor/Manifest  |  1 -
 .../files/gconf-editor-3.0.1-assertion-crash.patch | 34 ---
 .../files/gconf-editor-3.0.1-drop-accel.patch  | 66 --
 .../gconf-editor/gconf-editor-3.0.1-r1.ebuild  | 34 ---
 gnome-extra/gconf-editor/metadata.xml  | 11 
 profiles/package.deprecated|  3 +-
 profiles/package.mask  |  1 -
 7 files changed, 1 insertion(+), 149 deletions(-)

diff --git a/gnome-extra/gconf-editor/Manifest 
b/gnome-extra/gconf-editor/Manifest
deleted file mode 100644
index 89dc68b16958..
--- a/gnome-extra/gconf-editor/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gconf-editor-3.0.1.tar.xz 1452468 BLAKE2B 
775072c69f3350b009c07553d178e83885379292159ea9025831bab0f6b91f2e95e341d4f654a0fd8896c560ba99e635b68f3ff825e337ec5b7d558a366fce52
 SHA512 
faaf237233d94730902d7c8e231545841862451f5998ef06bc3d51f6cdf0bc16bd1cecfc6b6a9e0ccc5197a06bb4f89068bfb478f900f3272ba03a2d94ec2f49

diff --git 
a/gnome-extra/gconf-editor/files/gconf-editor-3.0.1-assertion-crash.patch 
b/gnome-extra/gconf-editor/files/gconf-editor-3.0.1-assertion-crash.patch
deleted file mode 100644
index b7df8f51007d..
--- a/gnome-extra/gconf-editor/files/gconf-editor-3.0.1-assertion-crash.patch
+++ /dev/null
@@ -1,34 +0,0 @@
-From 25d823099337f7ede4782f46fea46f251646dc3e Mon Sep 17 00:00:00 2001
-From: Edward Sheldrake 
-Date: Wed, 11 Apr 2012 07:27:16 +
-Subject: Fix assertion failed crash
-
-Fix "assertion failed: (last_slash != NULL)" crash while navigating the
-left tree view, fixed by having the model for the right list view emit
-all the row deleted signals before deleting any of its data.
-
-Fixes https://bugzilla.gnome.org/show_bug.cgi?id=670586

-diff --git a/src/gconf-list-model.c b/src/gconf-list-model.c
-index 27e1af6..4fc60f8 100644
 a/src/gconf-list-model.c
-+++ b/src/gconf-list-model.c
-@@ -133,11 +133,14 @@ gconf_list_model_set_root_path (GConfListModel *model, 
const gchar *root_path)
- 
-   if (model->root_path != NULL) {
-   for (list = model->values; list; list = list->next) {
-+  model->stamp++;
-+  gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), 
path);
-+  }
-+
-+  for (list = model->values; list; list = list->next) {
-   GConfEntry *entry = list->data;
- 
-   g_hash_table_remove (model->key_hash, 
gconf_entry_get_key (entry));
--  model->stamp++;
--  gtk_tree_model_row_deleted (GTK_TREE_MODEL (model), 
path);
- 
-   gconf_entry_unref (entry);
-   }
---
-cgit v0.9.2

diff --git a/gnome-extra/gconf-editor/files/gconf-editor-3.0.1-drop-accel.patch 
b/gnome-extra/gconf-editor/files/gconf-editor-3.0.1-drop-accel.patch
deleted file mode 100644
index 0d79ec56c396..
--- a/gnome-extra/gconf-editor/files/gconf-editor-3.0.1-drop-accel.patch
+++ /dev/null
@@ -1,66 +0,0 @@
-From 62e68d8e2f6e2c473820113fbf46ced9f77111d4 Mon Sep 17 00:00:00 2001
-From: William Jon McCann 
-Date: Thu, 03 May 2012 18:10:53 +
-Subject: Drop use GTK accel maps
-
-They are confusing, weird, and stored in an obsolete location.
-
-https://bugzilla.gnome.org/show_bug.cgi?id=675392

-diff --git a/src/main.c b/src/main.c
-index 8da5ccc..9bce4b8 100644
 a/src/main.c
-+++ b/src/main.c
-@@ -26,34 +26,6 @@
- #include "gconf-stock-icons.h"
- #include "gconf-editor-window.h"
- 
--static char *
--build_accel_filename (void)
--{
--  return g_build_filename (g_get_home_dir (), ".gnome2", "accels", 
PACKAGE, NULL);
--}
--
--static void
--load_accel_map (void)
--{
--  char *map;
--
--  map = build_accel_filename ();
--  gtk_accel_map_load (map);
--
--  g_free (map);
--}
--
--static void
--save_accel_map (void)
--{
--  char *map;
--
--  map = build_accel_filename ();
--  gtk_accel_map_save (map);
--
--  g_free (map);
--}
--
- gint
- main (gint argc, gchar **argv)
- {
-@@ -92,7 +64,6 @@ main (gint argc, gchar **argv)
-   /* Register our stock icons */
- gtk_icon_theme_append_search_path (gtk_icon_theme_get_default (), 
ICONDIR);
-   gconf_stock_icons_register ();
--  load_accel_map ();
- 
- gtk_window_set_default_icon_name ("gconf-editor");
- 
-@@ -107,7 +78,6 @@ main (gint argc, gchar **argv)
-   
-   gtk_main ();
- 
--  save_accel_map ();
-   g_strfreev (remaining_args);
- 
-   return 0;
---
-cgit v0.9.2

[gentoo-commits] repo/gentoo:master commit in: x11-apps/xf86dga/, profiles/, profiles/base/

2023-04-03 Thread Jakov Smolić
commit: 466a2bfe1ee7b4d54dca9d56f62f80279d7e367d
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:37:32 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:38:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=466a2bfe

x11-apps/xf86dga: treeclean

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

 profiles/base/package.use.mask   |  4 
 profiles/package.mask|  1 -
 x11-apps/xf86dga/Manifest|  1 -
 x11-apps/xf86dga/metadata.xml| 11 ---
 x11-apps/xf86dga/xf86dga-1.0.3-r1.ebuild | 16 
 5 files changed, 33 deletions(-)

diff --git a/profiles/base/package.use.mask b/profiles/base/package.use.mask
index ad2cc7f835a9..086a3717b696 100644
--- a/profiles/base/package.use.mask
+++ b/profiles/base/package.use.mask
@@ -17,10 +17,6 @@ kde-apps/kdesdk-meta ruby
 # which is how it appears now. See bug #900895.
 ~net-misc/wget-1.21.3 verify-sig
 
-# Matt Turner  (2023-03-03)
-# Depends on deprecated gnome-base/gconf and gtk+:2
-sys-power/apcupsd gnome
-
 # Michał Górny  (2023-02-20)
 # dev-python/colorspacious is masked for removal.
  (2023-02-27)
 # Mask =www-servers/nginx-unit-1.29.0-r1 for testing

diff --git a/x11-apps/xf86dga/Manifest b/x11-apps/xf86dga/Manifest
deleted file mode 100644
index 98ec63947c85..
--- a/x11-apps/xf86dga/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xf86dga-1.0.3.tar.bz2 104935 BLAKE2B 
ec294d1d1d49b57479d52e9bee834ad15eb15758d50da3d894c5236e9d94a37e2383258e2c2456ef6a6cf9f73d1332b594fc663a48dd0241cfc02be1b9157480
 SHA512 
18dbf9b5bbe1bb9c993c742e04e132ee22e376148a499ee159418435477221b00904f36c1a6b1063df788079a4ff5520b4d604abcafaad3b5fd391a3b2c1ec07

diff --git a/x11-apps/xf86dga/metadata.xml b/x11-apps/xf86dga/metadata.xml
deleted file mode 100644
index 75fd2070dc8a..
--- a/x11-apps/xf86dga/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd";>
-
-  
-x...@gentoo.org
-X11
-  
-  
-xorg/app/xf86dga
-  
-

diff --git a/x11-apps/xf86dga/xf86dga-1.0.3-r1.ebuild 
b/x11-apps/xf86dga/xf86dga-1.0.3-r1.ebuild
deleted file mode 100644
index 31b0dfc6a00c..
--- a/x11-apps/xf86dga/xf86dga-1.0.3-r1.ebuild
+++ /dev/null
@@ -1,16 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xorg-3
-
-DESCRIPTION="Test program for the XFree86-DGA extension"
-
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
-
-RDEPEND="
-   x11-libs/libX11
-   >=x11-libs/libXxf86dga-1.1"
-DEPEND="${RDEPEND}
-   x11-base/xorg-proto"



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gconf/files/, gnome-base/gconf/, profiles/

2023-04-03 Thread Jakov Smolić
commit: cd78a4851eee945c54b1cac478bce13851fa91b2
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:34:01 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:38:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd78a485

gnome-base/gconf: treeclean

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

 gnome-base/gconf/Manifest  |   1 -
 .../gconf/files/gconf-2.24.0-no-gconfd.patch   |  19 ---
 .../gconf-2.28.0-entry-set-value-sigsegv.patch |  18 ---
 .../gconf-3.2.6-gsettings-data-convert-paths.patch |  41 --
 .../gconf/files/gconf-3.2.6-mconvert-crasher.patch |  45 --
 gnome-base/gconf/files/gconf-3.2.6-python3.patch   | 164 -
 .../files/gconf-3.2.6-spew-console-error.patch |  83 ---
 gnome-base/gconf/gconf-3.2.6-r6.ebuild | 148 ---
 gnome-base/gconf/metadata.xml  |  14 --
 profiles/package.deprecated|   1 -
 profiles/package.mask  |   5 -
 11 files changed, 539 deletions(-)

diff --git a/gnome-base/gconf/Manifest b/gnome-base/gconf/Manifest
deleted file mode 100644
index b4e612dbd4a6..
--- a/gnome-base/gconf/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST GConf-3.2.6.tar.xz 1559904 BLAKE2B 
dc71bfc6e334b0a3545b6009fc1a592f3ba6adb1471aacc98aaa1ded9e89676f97415c26a3d17e297a846a7efca7ee695107c136ea28b2431f90dc966a3d64cc
 SHA512 
35f5f659f9d03f7531a7102adacbda0eb310d8a55a831c768c91a82e07dae21247726e00e0e411f63b1de9ade0f042ded572a3ea4a4b2ad3135231f344540b58

diff --git a/gnome-base/gconf/files/gconf-2.24.0-no-gconfd.patch 
b/gnome-base/gconf/files/gconf-2.24.0-no-gconfd.patch
deleted file mode 100644
index 8ca6a0d4fc09..
--- a/gnome-base/gconf/files/gconf-2.24.0-no-gconfd.patch
+++ /dev/null
@@ -1,19 +0,0 @@
-diff --exclude-from=/home/dang/.scripts/diffrc -up -ruN 
GConf-2.23.2.old/gconf/gconftool.c GConf-2.23.2/gconf/gconftool.c
 GConf-2.23.2.old/gconf/gconftool.c 2008-06-28 05:27:33.0 -0400
-+++ GConf-2.23.2/gconf/gconftool.c 2008-09-23 10:20:00.0 -0400
-@@ -856,6 +856,7 @@ main (int argc, char** argv)
- {
-   g_print (_("GCONF_DISABLE_MAKEFILE_SCHEMA_INSTALL is set, not 
installing schemas\n"));
-   makefile_install_mode = FALSE;
-+return 0;
- }
- 
-   if (makefile_uninstall_mode &&
-@@ -863,6 +864,7 @@ main (int argc, char** argv)
- {
-   g_print (_("GCONF_DISABLE_MAKEFILE_SCHEMA_UNINSTALL is set, not 
uninstalling schemas\n"));
-   makefile_uninstall_mode = FALSE;
-+return 0;
- }
- 
-   if (makefile_install_mode || makefile_uninstall_mode)

diff --git a/gnome-base/gconf/files/gconf-2.28.0-entry-set-value-sigsegv.patch 
b/gnome-base/gconf/files/gconf-2.28.0-entry-set-value-sigsegv.patch
deleted file mode 100644
index 680b1a159b4a..
--- a/gnome-base/gconf/files/gconf-2.28.0-entry-set-value-sigsegv.patch
+++ /dev/null
@@ -1,18 +0,0 @@
-From: Romain Perier 
-Date: Wed, 4 Nov 2009 11:58:25 +0100
-Subject: Do not segfault when entry is NULL
-

- gconf/gconf-value.c |1 +
- 1 files changed, 1 insertions(+), 0 deletions(-)
-
 a/gconf/gconf-value.c
-+++ b/gconf/gconf-value.c
-@@ -1609,6 +1609,7 @@ void
- gconf_entry_set_value (GConfEntry  *entry,
-const GConfValue  *val)
- {
-+  g_return_if_fail (entry != NULL);
-   gconf_entry_set_value_nocopy (entry,
- val ? gconf_value_copy (val) : NULL);
- }

diff --git 
a/gnome-base/gconf/files/gconf-3.2.6-gsettings-data-convert-paths.patch 
b/gnome-base/gconf/files/gconf-3.2.6-gsettings-data-convert-paths.patch
deleted file mode 100644
index dc6c66b1c644..
--- a/gnome-base/gconf/files/gconf-3.2.6-gsettings-data-convert-paths.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-From 405f865c07261a95c8c9a09a84ab679c6dd0a330 Mon Sep 17 00:00:00 2001
-From: Colin Walters 
-Date: Thu, 24 Oct 2013 16:27:24 -0400
-Subject: gsettings-data-convert: Warn (and fix) invalid schema paths
-
-See https://bugzilla.gnome.org/show_bug.cgi?id=704802
-
-https://bugzilla.gnome.org/show_bug.cgi?id=710836
-
-diff --git a/gsettings/gsettings-data-convert.c 
b/gsettings/gsettings-data-convert.c
-index 9b2d1d0..160ed41 100644
 a/gsettings/gsettings-data-convert.c
-+++ b/gsettings/gsettings-data-convert.c
-@@ -182,7 +182,23 @@ handle_file (const gchar *filename)
- }
- 
-   if (schema_path[1] != NULL)
--settings = g_settings_new_with_path (schema_path[0], schema_path[1]);
-+  {
-+char *compat_path_alloced = NULL; 
-+char *compat_path;
-+/* Work around broken .convert files:
-+   https://bugzilla.gnome.org/show_bug.cgi?id=704802
-+*/
-+if (!g_str_has_suffix (schema_path[1], "/"))
-+  {
-+g_warning ("Schema file '%s' has missing trailing / in '%s'",
-+   filename, schema_path[1]);
-+co

[gentoo-commits] repo/gentoo:master commit in: profiles/, x11-apps/xdbedizzy/

2023-04-03 Thread Jakov Smolić
commit: eed03616637d59135ead6fd7419f2621ffda2ac0
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:37:57 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:38:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eed03616

x11-apps/xdbedizzy: treeclean

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

 profiles/package.mask |  5 -
 x11-apps/xdbedizzy/Manifest   |  1 -
 x11-apps/xdbedizzy/metadata.xml   | 11 ---
 x11-apps/xdbedizzy/xdbedizzy-1.1.0.ebuild | 17 -
 4 files changed, 34 deletions(-)

diff --git a/profiles/package.mask b/profiles/package.mask
index 3b12bef5821c..e57ab875bf8b 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -355,11 +355,6 @@ x11-plugins/purple-hangouts
 # Removal on 2023-04-04.
 app-admin/gixy
 
-# Matt Turner  (2023-03-04)
-# Test applications that don't really have any business being packaged.
-# Removal on 2023-04-04.
-x11-apps/xdbedizzy
-
 # Mike Pagano  (2023-02-27)
 # Mask =www-servers/nginx-unit-1.29.0-r1 for testing
 =www-servers/nginx-unit-1.29.0-r1

diff --git a/x11-apps/xdbedizzy/Manifest b/x11-apps/xdbedizzy/Manifest
deleted file mode 100644
index 1b1340dccb6b..
--- a/x11-apps/xdbedizzy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST xdbedizzy-1.1.0.tar.bz2 110340 BLAKE2B 
2245ee691441e72e22a71ce482d97f7a24c230fae23779f6a496f8f82f962e7a0875b136b2a2308ac3e4940835b129e7641bebc895be02e2d32fff890d42489f
 SHA512 
58b9c88b09772008fe18921c0b63972a65ee5833f96edbbd2e1dc335e5f20ca9a241728b9a225e3b0f3eb392a7941cc1ab6e3c871b9463ff21bb23e38557e9fa

diff --git a/x11-apps/xdbedizzy/metadata.xml b/x11-apps/xdbedizzy/metadata.xml
deleted file mode 100644
index d3ae46c21fc9..
--- a/x11-apps/xdbedizzy/metadata.xml
+++ /dev/null
@@ -1,11 +0,0 @@
-
-https://www.gentoo.org/dtd/metadata.dtd";>
-
-  
-x...@gentoo.org
-X11
-  
-  
-xorg/app/xdbedizzy
-  
-

diff --git a/x11-apps/xdbedizzy/xdbedizzy-1.1.0.ebuild 
b/x11-apps/xdbedizzy/xdbedizzy-1.1.0.ebuild
deleted file mode 100644
index ee6090474c3e..
--- a/x11-apps/xdbedizzy/xdbedizzy-1.1.0.ebuild
+++ /dev/null
@@ -1,17 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xorg-3
-
-DESCRIPTION="X.Org xdbedizzy application"
-
-KEYWORDS="amd64 arm ~arm64 ~mips ppc ppc64 ~s390 ~sparc x86"
-
-RDEPEND="
-   x11-libs/libXext
-   x11-libs/libX11"
-DEPEND="
-   ${RDEPEND}
-   x11-base/xorg-proto"



[gentoo-commits] repo/gentoo:master commit in: app-admin/gixy/, app-admin/gixy/files/, profiles/

2023-04-03 Thread Jakov Smolić
commit: 14409377a35ddb8f64f317ae6e2b03e186446a32
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:38:41 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:38:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14409377

app-admin/gixy: treeclean

Closes: https://bugs.gentoo.org/896468
Closes: https://bugs.gentoo.org/825062
Closes: https://bugs.gentoo.org/865269
Closes: https://bugs.gentoo.org/878685
Signed-off-by: Jakov Smolić  gentoo.org>

 app-admin/gixy/Manifest  |  1 -
 app-admin/gixy/files/gixy-0.1.20-backports.patch | 76 
 app-admin/gixy/gixy-0.1.20-r1.ebuild | 28 -
 app-admin/gixy/metadata.xml  | 11 
 profiles/package.mask|  7 ---
 5 files changed, 123 deletions(-)

diff --git a/app-admin/gixy/Manifest b/app-admin/gixy/Manifest
deleted file mode 100644
index 76808251a8df..
--- a/app-admin/gixy/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST gixy-0.1.20.tar.gz 710691 BLAKE2B 
09043925d950a9a35de4df91ef3c2f9e5ca4458227320555a109e50d0838fb10ae22d086cdfc39c0d76bcd051c1a7e1d5e291354cc457cff398be8d164cbfde6
 SHA512 
d666e758c2746c201a11b67b4b99cee1bd3406085eb1c0aa9ae520b72d3a1273e09e3475226a6e54fbfbcefe65b3be0fc877e66cbaa81f384f757767852bc08e

diff --git a/app-admin/gixy/files/gixy-0.1.20-backports.patch 
b/app-admin/gixy/files/gixy-0.1.20-backports.patch
deleted file mode 100644
index 36c9cb693577..
--- a/app-admin/gixy/files/gixy-0.1.20-backports.patch
+++ /dev/null
@@ -1,76 +0,0 @@
-diff --git a/gixy/core/regexp.py b/gixy/core/regexp.py
-index 7a96187..f360604 100644
 a/gixy/core/regexp.py
-+++ b/gixy/core/regexp.py
-@@ -3,7 +3,11 @@ import logging
- import re
- import random
- import itertools
--from cached_property import cached_property
-+
-+try:
-+from functools import cached_property
-+except ImportError:
-+from cached_property import cached_property
- 
- import gixy.core.sre_parse.sre_parse as sre_parse
- 
-diff --git a/gixy/directives/block.py b/gixy/directives/block.py
-index 5e5b1ed..cc9bcb0 100644
 a/gixy/directives/block.py
-+++ b/gixy/directives/block.py
-@@ -1,4 +1,7 @@
--from cached_property import cached_property
-+try:
-+from functools import cached_property
-+except ImportError:
-+from cached_property import cached_property
- 
- from gixy.directives.directive import Directive
- from gixy.core.variable import Variable
-diff --git a/gixy/parser/raw_parser.py b/gixy/parser/raw_parser.py
-index 6a30b7f..0f43308 100644
 a/gixy/parser/raw_parser.py
-+++ b/gixy/parser/raw_parser.py
-@@ -1,7 +1,11 @@
- import logging
- import codecs
- import six
--from cached_property import cached_property
-+
-+try:
-+from functools import cached_property
-+except ImportError:
-+from cached_property import cached_property
- 
- from pyparsing import (
- Literal, Suppress, White, Word, alphanums, Forward, Group, Optional, 
Combine,
-diff --git a/requirements.txt b/requirements.txt
-index dbf6d5f..47a1b54 100644
 a/requirements.txt
-+++ b/requirements.txt
-@@ -1,6 +1,6 @@
- pyparsing>=1.5.5
--cached-property>=1.2.0
-+cached-property>=1.2.0;python_version<"3.8"
- argparse>=1.4.0
- six>=1.1.0
- Jinja2>=2.8
--ConfigArgParse>=0.11.0
-\ No newline at end of file
-+ConfigArgParse>=0.11.0
-diff --git a/setup.py b/setup.py
-index e4314a6..e57842b 100644
 a/setup.py
-+++ b/setup.py
-@@ -18,8 +18,8 @@ setup(
- url='https://github.com/yandex/gixy',
- install_requires=[
- 'pyparsing>=1.5.5',
--'cached-property>=1.2.0',
--'argparse>=1.4.0',
-+'cached-property>=1.2.0;python_version<"3.8"',
-+'argparse>=1.4.0;python_version<"3.2"',
- 'six>=1.1.0',
- 'Jinja2>=2.8',
- 'ConfigArgParse>=0.11.0'

diff --git a/app-admin/gixy/gixy-0.1.20-r1.ebuild 
b/app-admin/gixy/gixy-0.1.20-r1.ebuild
deleted file mode 100644
index 57fe1ddc0203..
--- a/app-admin/gixy/gixy-0.1.20-r1.ebuild
+++ /dev/null
@@ -1,28 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{9..10} )
-inherit distutils-r1
-
-DESCRIPTION="Nginx configuration static analyzer"
-HOMEPAGE="https://github.com/yandex/gixy";
-# Use GitHub source insted PyPi to get tarball with tests
-SRC_URI="https://github.com/yandex/gixy/archive/v${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="MPL-2.0"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-
-RDEPEND="
-   >=dev-python/pyparsing-1.5.5[${PYTHON_USEDEP}]
-   >=dev-python/ConfigArgParse-0.11.0[${PYTHON_USEDEP}]
-   >=dev-python/jinja-2.8[${PYTHON_USEDEP}]
-   >=dev-python/six-1.1.0[${PYTHON_USEDEP}]"
-
-distutils_enable_tests nose
-
-PATCHES=(
-   "${FILESDIR}"/${P}-backports.patch
-)

diff --git a/app-admin/gixy/metadata.xml b/app-admin/gixy/metadata.xml
deleted file mode 100644
index 90dabf33f4e3..00

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

2023-04-03 Thread Jakov Smolić
commit: 9b25410ad7a92abecb492178710922a6c5bf02c9
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Apr  3 17:40:53 2023 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Apr  3 17:40:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b25410a

app-arch/dtrx: Keyword 8.5.0 riscv, #903743

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

 app-arch/dtrx/dtrx-8.5.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-arch/dtrx/dtrx-8.5.0.ebuild b/app-arch/dtrx/dtrx-8.5.0.ebuild
index 26e356be4fe2..069c58105f09 100644
--- a/app-arch/dtrx/dtrx-8.5.0.ebuild
+++ b/app-arch/dtrx/dtrx-8.5.0.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} == ** ]] ; then
EGIT_REPO_URI="https://github.com/${PN}-py/${PN}.git";
 else
inherit pypi
-   KEYWORDS="amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~riscv ~x86"
 fi
 
 LICENSE="GPL-3+"



[gentoo-commits] proj/pkgcore/pkgcheck:master commit in: testdata/repos/python/PythonFetchableCheck/PythonInlinePyPIURL/, ...

2023-04-03 Thread Arthur Zamarin
commit: 7ca3a4bd98b64c1a62ad8e9f2b174fe73d6e9ce2
Author: Michał Górny  gentoo  org>
AuthorDate: Sat Mar 25 17:24:51 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:26:35 2023 +
URL:
https://gitweb.gentoo.org/proj/pkgcore/pkgcheck.git/commit/?id=7ca3a4bd

python: Restore filename check in pypi.eclass default case

Restore the check for renamed distfile that was accidentally removed
while refactoring the code.  This prevents suggesting removing SRC_URI
when it would cause the distfile rename to be reverted.

Fixes: 5704c77f5cabed06be363df78ca03b6e66566a97
Signed-off-by: Michał Górny  gentoo.org>
Closes: https://github.com/pkgcore/pkgcheck/pull/572
Signed-off-by: Arthur Zamarin  gentoo.org>

 src/pkgcheck/checks/python.py   |  7 ++-
 .../PythonInlinePyPIURI/expected.json   |  1 +
 .../PythonInlinePyPIURI/fix.patch   | 21 +
 .../PythonInlinePyPIURL/Manifest|  1 +
 .../PythonInlinePyPIURL-2_p4-r2.ebuild  | 15 +++
 5 files changed, 44 insertions(+), 1 deletion(-)

diff --git a/src/pkgcheck/checks/python.py b/src/pkgcheck/checks/python.py
index 0cd5d229..ae448360 100644
--- a/src/pkgcheck/checks/python.py
+++ b/src/pkgcheck/checks/python.py
@@ -820,7 +820,12 @@ class PythonFetchableCheck(Check):
 
 if source_match := PYPI_SDIST_URI_RE.match(uri):
 pn, filename_pn, pv, suffix = source_match.groups()
-if pv == self.translate_version(pkg.version) and suffix == 
".tar.gz":
+translated_version = self.translate_version(pkg.version)
+if (
+pv == translated_version
+and suffix == ".tar.gz"
+and filename == 
f"{filename_pn}-{translated_version}.tar.gz"
+):
 append = len(uris) > 1
 normalize = filename_pn == 
self.normalize_distribution_name(pn)
 if not normalize and filename_pn != pn:

diff --git 
a/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/expected.json
 
b/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/expected.json
index 45757750..dfe74895 100644
--- 
a/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/expected.json
+++ 
b/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/expected.json
@@ -20,3 +20,4 @@
 {"__class__": "PythonInlinePyPIURI", "category": "PythonFetchableCheck", 
"package": "python-inline-pypi-url", "version": "1000-r200", "url": 
"https://files.pythonhosted.org/packages/source/P/Python-inline-pypi-url/python_inline_pypi_url-1000.tar.gz";,
 "replacement": null, "normalize": true, "append": false, "pypi_pn": 
"\"${PN^}\""}
 {"__class__": "PythonInlinePyPIURI", "category": "PythonFetchableCheck", 
"package": "python-inline-pypi-url", "version": "2000", "url": 
"https://files.pythonhosted.org/packages/source/p/python.inline-pypi-url/python_inline_pypi_url-2000.tar.gz";,
 "replacement": ["pypi_sdist_url", "\"${PN/-/.}\""], "normalize": null, 
"append": null, "pypi_pn": null}
 {"__class__": "PythonInlinePyPIURI", "category": "PythonFetchableCheck", 
"package": "python-inline-pypi-url", "version": "2000", "url": 
"https://files.pythonhosted.org/packages/source/p/python.inline-pypi-url_vectors/python.inline-pypi-url_vectors-151.tar.gz";,
 "replacement": ["pypi_sdist_url", "--no-normalize", 
"python.inline-pypi-url_vectors", "151"], "normalize": null, "append": null, 
"pypi_pn": null}
+{"__class__": "PythonInlinePyPIURI", "category": "PythonFetchableCheck", 
"package": "PythonInlinePyPIURL", "version": "2_p4-r2", "url": 
"https://files.pythonhosted.org/packages/source/P/PythonInlinePyPIURL/pythoninlinepypiurl-2.post4.tar.gz";,
 "replacement": ["pypi_sdist_url", "\"${PN}\"", "2.post4"], "normalize": null, 
"append": null, "pypi_pn": null}

diff --git 
a/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/fix.patch 
b/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/fix.patch
index 28e27b9e..09bbcd62 100644
--- 
a/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/fix.patch
+++ 
b/testdata/data/repos/python/PythonFetchableCheck/PythonInlinePyPIURI/fix.patch
@@ -341,3 +341,24 @@ diff -Naur 
python/PythonFetchableCheck/PythonInlinePyPIURL/PythonInlinePyPIURL-4
  "
  S=${WORKDIR}/${MY_P}
  
+diff -Naur 
python/PythonFetchableCheck/PythonInlinePyPIURL/PythonInlinePyPIURL-2_p4-r2.ebuild
 
fixed/PythonFetchableCheck/PythonInlinePyPIURL/PythonInlinePyPIURL-2_p4-r2.ebuild
+--- 
python/PythonFetchableCheck/PythonInlinePyPIURL/PythonInlinePyPIURL-2_p4-r2.ebuild
 2023-03-25 18:33:03.235669903 +0100
 
fixed/PythonFetchableCheck/PythonInlinePyPIURL/PythonInlinePyPIURL-2_p4-r2.ebuild
  2023-03-25 18:37:09.307850231 +0100
+@@ -3,13 +3,14 @@
+ 
+ EAPI=8
+ 
+-MY_P=${PN,,}-${PV/_p/.post}
++PYPI_PN=${PN,,}
++inherit pypi
++
+ 

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

2023-04-03 Thread Arthur Zamarin
commit: 9bcb528870add60aaa047ffe76351e9d8fca6d6e
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:02:27 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:02:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bcb5288

app-editors/vscode: add 1.77.0

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

 app-editors/vscode/Manifest |   3 +
 app-editors/vscode/vscode-1.77.0.ebuild | 128 
 2 files changed, 131 insertions(+)

diff --git a/app-editors/vscode/Manifest b/app-editors/vscode/Manifest
index 77d83e3ceba4..c74a0ca16a37 100644
--- a/app-editors/vscode/Manifest
+++ b/app-editors/vscode/Manifest
@@ -7,3 +7,6 @@ DIST vscode-1.76.1-arm64.tar.gz 123125455 BLAKE2B 
ae3e4772afc19855a1ef0f415a6621
 DIST vscode-1.76.2-amd64.tar.gz 133943122 BLAKE2B 
a688262565aa9f7096139fd0545ee497480e2ec928d2d57b693e52baed9d08adb2027545a4c2728b834936378d4812ba138530d081e9af123ab4d49eb22b3285
 SHA512 
4087dae3a567d99e6bd1bec1dcef41b824118ce4004b6f70226b0c3b96ead3f685c7a9b00fda2bcd5ada3cfcdaf39856be0345209cf30fd31d2826d1114f207b
 DIST vscode-1.76.2-arm.tar.gz 113666270 BLAKE2B 
7d600529125b06dcf2d8bdd26bcc941828c06682aa83f571f802049a3381afd86e9dd71246d67a3ea16289ee7c2719530daca859dbbd951ec6bdcbf0567cfa54
 SHA512 
185daa71f0e32be43cc57b41ae4e3e22cd78a769ee1974c3d7be99396a3254dcb21964ebc93d6a5157852dcf28a94fcd0dfc41611ac1a659787248ab4cde22d3
 DIST vscode-1.76.2-arm64.tar.gz 123093592 BLAKE2B 
13ddee4fd48570a049ded9e9d5b0a130d78f8e66218b7a8c133985bfc106f9ef6a2a5168a640683618e3e33838b21525f01802df6db5f9cf6f9d3e75c2c093e5
 SHA512 
b0696534c94e0618a565e621efe2defcb8fffcbb68d4f9bf1f1587c680e2a601d726c47bca4eef464344d65956957048aab63cce93ea41c82ef5a35f208d8714
+DIST vscode-1.77.0-amd64.tar.gz 125008638 BLAKE2B 
545f8eb3d8961526885acb5250152e31f8f96315c3ab715002b021146506fff61e3daeb46bc369e02611617d0276356558b42c80ed0f147723b48e4d38e0
 SHA512 
56442a9cdffcbfcade75d09b92bf1730507a71aef7813e4ef5edbd97cca640e0f5dee505be60895c42f15aaf926621f2e277bbe3e57fac25cc9a2728c5d366b4
+DIST vscode-1.77.0-arm.tar.gz 112127072 BLAKE2B 
289a92169267235f2d59313de251d6aea99bef9b58e5a8b9cb1b71f09a30c1f5102dde7dbecaef26698cbfcf92c4aea0758b6d887c92e41b7b89a57216e2
 SHA512 
b7d2a7ae9ba228d44d65177c7cd0923de4848bd5d06243ec4ac11133362259271322e07e5c9485786ac6508fc06f3f9239c25f32b5cc872fde58443866c45900
+DIST vscode-1.77.0-arm64.tar.gz 121710946 BLAKE2B 
3e37925b306e92b533f4a7f61b058825c586e8217eb402f0bceff02a5ae783d71229fa578b2530eb95bdae38123524a6807d5316450a240d290ee02e86eb02e9
 SHA512 
a3c16cebd8d77c0c5196004c618211251a142a992929f788bf14be0e23c16a5d8dcc9ba2c21ba67b5080546ed221c8552d35b991cff237818d1afbe8709ca04b

diff --git a/app-editors/vscode/vscode-1.77.0.ebuild 
b/app-editors/vscode/vscode-1.77.0.ebuild
new file mode 100644
index ..593a70028957
--- /dev/null
+++ b/app-editors/vscode/vscode-1.77.0.ebuild
@@ -0,0 +1,128 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop pax-utils xdg optfeature
+
+DESCRIPTION="Multiplatform Visual Studio Code from Microsoft"
+HOMEPAGE="https://code.visualstudio.com";
+SRC_URI="
+   amd64? ( https://update.code.visualstudio.com/${PV}/linux-x64/stable -> 
${P}-amd64.tar.gz )
+   arm? ( https://update.code.visualstudio.com/${PV}/linux-armhf/stable -> 
${P}-arm.tar.gz )
+   arm64? ( https://update.code.visualstudio.com/${PV}/linux-arm64/stable 
-> ${P}-arm64.tar.gz )
+"
+S="${WORKDIR}"
+
+RESTRICT="mirror strip bindist"
+
+LICENSE="
+   Apache-2.0
+   BSD
+   BSD-1
+   BSD-2
+   BSD-4
+   CC-BY-4.0
+   ISC
+   LGPL-2.1+
+   Microsoft-vscode
+   MIT
+   MPL-2.0
+   openssl
+   PYTHON
+   TextMate-bundle
+   Unlicense
+   UoI-NCSA
+   W3C
+"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64"
+
+RDEPEND="
+   >=app-accessibility/at-spi2-core-2.46.0:2
+   app-crypt/libsecret[crypt]
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/mesa
+   net-print/cups
+   sys-apps/util-linux
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3
+   x11-libs/libdrm
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libxkbcommon
+   x11-libs/libxkbfile
+   x11-libs/libXrandr
+   x11-libs/libxshmfence
+   x11-libs/pango
+"
+
+QA_PREBUILT="
+   /opt/vscode/bin/code-tunnel
+   /opt/vscode/chrome_crashpad_handler
+   /opt/vscode/chrome-sandbox
+   /opt/vscode/code
+   /opt/vscode/libEGL.so
+   /opt/vscode/libffmpeg.so
+   /opt/vscode/libGLESv2.so
+   /opt/vscode/libvk_swiftshader.so
+   /opt/vscode/libvulkan.so*
+   /opt/vscode/resources/a

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

2023-04-03 Thread Arthur Zamarin
commit: b0eb4607e4dd13ee858e1d5a4c4a85565bf733e3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:05:42 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:05:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0eb4607

app-editors/vscodium: add 1.77.0.23093

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

 app-editors/vscodium/Manifest |   3 +
 app-editors/vscodium/vscodium-1.77.0.23093.ebuild | 119 ++
 2 files changed, 122 insertions(+)

diff --git a/app-editors/vscodium/Manifest b/app-editors/vscodium/Manifest
index f4d81ec54985..56051fb41184 100644
--- a/app-editors/vscodium/Manifest
+++ b/app-editors/vscodium/Manifest
@@ -7,3 +7,6 @@ DIST vscodium-1.76.1.23069-arm64.tar.gz 113874748 BLAKE2B 
8dd6d97571dd084ffa4066
 DIST vscodium-1.76.2.23074-amd64.tar.gz 120804173 BLAKE2B 
9f730a8cc1130c076d12317cd0038e38b9a7529d3a1947cbf24958ccc2d5ff4ef0a85d4561645777888ca9514c7403bd86c858ac858c8568bfe6597c588adc7b
 SHA512 
3abcdb1c0f189920b32accc892c2e88695b87448f052896f15472874576ae432a829cdf641df6680c27c3e1846c149cecbdc846473f166f98003c81d599486a1
 DIST vscodium-1.76.2.23074-arm.tar.gz 102835702 BLAKE2B 
6ca9ff6353b7396d8d2d906a2415cf0f14e9f0a94bcc5607479c38436963e76ac55ebca8a8983bc36003834f4237006f03f7c49fc49e5da82755322cd9457b5e
 SHA512 
1b05dc5741c5381060492f90583bfa56120562489b814dac9f607589deef15c43dba3681a66167c5506adbfc802fe893155d77b5454040ae31c05f9b88a27e2e
 DIST vscodium-1.76.2.23074-arm64.tar.gz 113874910 BLAKE2B 
bb517ac6b7d41a392fec6722b895c0035ee146497f6b7ca9a52118081a9d0647a48e3e10fe48cab7a2094db70e664af2a7282587a466216e91156f23f7c1119f
 SHA512 
80f8ed673bbe52838da20a0d5077aac060e8ba334609e8a5088fb30c88bf9813b7b91316b9eb5662587a4c4ea038ac0645ea4104150f78ce3df3a43e1ad845bb
+DIST vscodium-1.77.0.23093-amd64.tar.gz 111008654 BLAKE2B 
b53d8c9c27b05244a6b52bc9cba0daf79f405d3fd9ac05b954fc5d1534758c5e05298dd7d6d4a474e806932a5921e7049de6ea32824a6f3fdd27bb08cdbe73a9
 SHA512 
148002f0a0467c0f704c268738994f16ca4f85efbc7ef1bb87f3f5b2c1c14f47487d1ff3e188963c1cee3e72f99a5de8d5a5d20fd19fd5466c809cafb22d4838
+DIST vscodium-1.77.0.23093-arm.tar.gz 100637834 BLAKE2B 
29e696742ceb83a9620740ca17a5cb1d0b58bc47147f1882a843f97aff29d8c9606df6e8e25dc3b09e699b1c8b4b2844efe871726b6bff40e1f50589d4620d74
 SHA512 
5a1a42901e98892ca1db28b914531c4c83bc5be6e4d7ddc950d1f04a4f3b6ae555b36e864a2ab03a41d850adc87b376f8637842dbf64d02b021953aec0e2d470
+DIST vscodium-1.77.0.23093-arm64.tar.gz 111842188 BLAKE2B 
38a671476162a63124268c71e32ab3dfbcb43f77daab69491a6c88d436e03684a7c4b5b0ba55823175f31163821237dff1b72cc8706d2aa977ad291f2af04e64
 SHA512 
139cd1cb5b29fb7c8c7d0c4c51c568ad9ae738be7bea603455178e8f960ce88d473583e312d4ef710897317af02fcf6c92415ae2e8ceba271b68616bab49039b

diff --git a/app-editors/vscodium/vscodium-1.77.0.23093.ebuild 
b/app-editors/vscodium/vscodium-1.77.0.23093.ebuild
new file mode 100644
index ..5c5cdb4f3682
--- /dev/null
+++ b/app-editors/vscodium/vscodium-1.77.0.23093.ebuild
@@ -0,0 +1,119 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit desktop pax-utils xdg optfeature
+
+DESCRIPTION="A community-driven, freely-licensed binary distribution of 
Microsoft's VSCode"
+HOMEPAGE="https://vscodium.com/";
+SRC_URI="
+   amd64? ( 
https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-x64-${PV}.tar.gz
 -> ${P}-amd64.tar.gz )
+   arm? ( 
https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-armhf-${PV}.tar.gz
 -> ${P}-arm.tar.gz )
+   arm64? ( 
https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-arm64-${PV}.tar.gz
 -> ${P}-arm64.tar.gz )
+"
+
+RESTRICT="strip bindist"
+
+LICENSE="
+   Apache-2.0
+   BSD
+   BSD-1
+   BSD-2
+   BSD-4
+   CC-BY-4.0
+   ISC
+   LGPL-2.1+
+   MIT
+   MPL-2.0
+   openssl
+   PYTHON
+   TextMate-bundle
+   Unlicense
+   UoI-NCSA
+   W3C
+"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64"
+IUSE=""
+
+RDEPEND="
+   >=app-accessibility/at-spi2-core-2.46.0:2
+   app-crypt/libsecret[crypt]
+   dev-libs/expat
+   dev-libs/glib:2
+   dev-libs/nspr
+   dev-libs/nss
+   media-libs/alsa-lib
+   media-libs/mesa
+   net-print/cups
+   sys-apps/util-linux
+   sys-apps/dbus
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf:2
+   x11-libs/gtk+:3
+   x11-libs/libdrm
+   x11-libs/libX11
+   x11-libs/libxcb
+   x11-libs/libXcomposite
+   x11-libs/libXdamage
+   x11-libs/libXext
+   x11-libs/libXfixes
+   x11-libs/libxkbcommon
+   x11-libs/libxkbfile
+   x11-libs/libXrandr
+   x11-libs/libxshmfence
+   x11-libs/pango
+"
+
+QA_PREBUILT="
+   /opt/vscode/bin/code-tunnel
+   /opt/vscodium/chrome_crashpad_handler
+   /opt/vscodium/chrome-sandbox
+   /opt/vscodium/codium
+   /opt/

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

2023-04-03 Thread Arthur Zamarin
commit: f05eee287bfd3ca7f65f5faaf5d860cb355a56c3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:08:41 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:08:41 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f05eee28

dev-python/aws-xray-sdk-python: add 2.12.0

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

 dev-python/aws-xray-sdk-python/Manifest|  1 +
 .../aws-xray-sdk-python-2.12.0.ebuild  | 82 ++
 2 files changed, 83 insertions(+)

diff --git a/dev-python/aws-xray-sdk-python/Manifest 
b/dev-python/aws-xray-sdk-python/Manifest
index 31d38d10493a..ae7bae43d8f9 100644
--- a/dev-python/aws-xray-sdk-python/Manifest
+++ b/dev-python/aws-xray-sdk-python/Manifest
@@ -1 +1,2 @@
 DIST aws-xray-sdk-python-2.11.0.gh.tar.gz 275430 BLAKE2B 
1c1d3b56629dbd822b4f9fcb1e7ba5b43fbbff55fbe7ac02d75e0bb50629c4a0e5baed2b4c14c4c8a7775d60da5b285f96bca68b68b64ddf03aeec0c6094c74c
 SHA512 
62035db955ce3d60e6d75088b7255dec83b21b4fd02353146b34bc48bdacff805b711b5caaca7adbbb5c5a3632a97910907d04681f36c198c99fbb4ef1cc4f85
+DIST aws-xray-sdk-python-2.12.0.gh.tar.gz 275773 BLAKE2B 
a78ac201524e70a342100c2e76e93bb02ed76e183dfca2e8737230061182d94c9a7f4eba183bc731d2ed79a8e4dda486ea09cb304f4cd58da56d712b8e6c5749
 SHA512 
0616369f95bf0de710ab5fb868d1a84280bcc1180cc205e6a6e0c405eae131fb861de75fea00c9c1be4e163b9d292cc27e08f624c7b6981ba4a3b8d99dbbb63c

diff --git a/dev-python/aws-xray-sdk-python/aws-xray-sdk-python-2.12.0.ebuild 
b/dev-python/aws-xray-sdk-python/aws-xray-sdk-python-2.12.0.ebuild
new file mode 100644
index ..610caf67ed1f
--- /dev/null
+++ b/dev-python/aws-xray-sdk-python/aws-xray-sdk-python-2.12.0.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="AWS X-Ray SDK for Python"
+HOMEPAGE="
+   https://github.com/aws/aws-xray-sdk-python/
+   https://pypi.org/project/aws-xray-sdk/
+"
+SRC_URI="
+   https://github.com/aws/aws-xray-sdk-python/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/botocore-1.12.122[${PYTHON_USEDEP}]
+   dev-python/wrapt[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/bottle[${PYTHON_USEDEP}]
+   =dev-python/sqlalchemy-1.4[${PYTHON_USEDEP}]
+   

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

2023-04-03 Thread Arthur Zamarin
commit: 8c47574171692a7902b4fcff77fadaf9f8801b8f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:15:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:15:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c475741

dev-python/astroid: add 2.15.2

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

 dev-python/astroid/Manifest  |  1 +
 dev-python/astroid/astroid-2.15.2.ebuild | 63 
 2 files changed, 64 insertions(+)

diff --git a/dev-python/astroid/Manifest b/dev-python/astroid/Manifest
index de7c914342e6..8ab45fc8fc0e 100644
--- a/dev-python/astroid/Manifest
+++ b/dev-python/astroid/Manifest
@@ -4,3 +4,4 @@ DIST astroid-2.14.1.gh.tar.gz 452889 BLAKE2B 
f6cee61825d2c86bbf02ba6cc9f48076692
 DIST astroid-2.14.2.gh.tar.gz 453109 BLAKE2B 
cb4b0795bde841e98712a719ba0870a3f0c616fc777cb3afc1ebbb0f5e49b763241825072d7915df87e778649a5632fec8f48e125cfa67de0b70618e34509157
 SHA512 
2dad27c0a3ddad5747a021c0700b831fe9f7a557238a2f52d87722c637120d49796a0a8e9e6f27d42ab4bee1c91541b7b5b5fa93dc3ec8a47197f35569a64a3a
 DIST astroid-2.15.0.gh.tar.gz 460733 BLAKE2B 
cc80ffd9b5804a1a0c94598f75363088dcb971ee322b556e150799a5e18aa16d20c58d9bf7725c2697d34152daa72a20d845e7c56a524d58354913eed338010f
 SHA512 
7ec121b3c7d60e2d48f738fbc4eeae3e32c7135a77fb778db9479d730a757818f549d8bd35facdd67d411d777d57ec620a2448de1f4da23754863cae18717bce
 DIST astroid-2.15.1.gh.tar.gz 460960 BLAKE2B 
ec08cc53027323a70291adc888b3621dc139783e6f72859eac05a2c6da0150cc5d19dc6a7278b6a846f985cf44c7d868df1ba11d0c6e3b7a5d3c71a38603743e
 SHA512 
26f85aff9de08d4b413c40951f2aefd2c19304c077b502774b253e3fcced42173bc7e996fac82b3462c6915625ff48fd80dd1ab5e3425aefa103347f821f7df4
+DIST astroid-2.15.2.gh.tar.gz 461132 BLAKE2B 
1e4d5fa174c7893743ebe9a17b28bdee68fefd35a69802358eb4448402a00622ec56a7ba18a8cdae8cafd9e75bbee9cd18f39bbb44fbcc061c893fc24e308376
 SHA512 
aea2a55780f81893d8dad4acb572883017e3d6270d48a8f0d3b4520279bc4d79e9d04192479d5aad453ab7bda6d29edf1f56c92d86c04a8ef07bd4561bf908c4

diff --git a/dev-python/astroid/astroid-2.15.2.ebuild 
b/dev-python/astroid/astroid-2.15.2.ebuild
new file mode 100644
index ..9ad352280874
--- /dev/null
+++ b/dev-python/astroid/astroid-2.15.2.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="Abstract Syntax Tree for logilab packages"
+HOMEPAGE="
+   https://github.com/PyCQA/astroid/
+   https://pypi.org/project/astroid/
+"
+SRC_URI="
+   https://github.com/PyCQA/astroid/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+# Version specified in pyproject.toml
+RDEPEND="
+   >=dev-python/lazy-object-proxy-1.4.0[${PYTHON_USEDEP}]
+   dev-python/setuptools[${PYTHON_USEDEP}]
+   =dev-python/typing-extensions-4.0.0[${PYTHON_USEDEP}]
+   ' 3.9 3.10)
+"
+BDEPEND="
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # no clue why they're broken
+   
tests/test_modutils.py::GetModulePartTest::test_known_values_get_builtin_module_part
+   tests/test_regrtest.py::NonRegressionTests::test_numpy_distutils
+   
tests/brain/test_regex.py::TestRegexBrain::test_regex_pattern_and_match_subscriptable
+   # some problem with warnings (our options?)
+   
tests/test_decorators.py::TestDeprecationDecorators::test_deprecated_default_argument_values_one_arg
+   
tests/test_decorators.py::TestDeprecationDecorators::test_deprecated_default_argument_values_two_args
+   tests/test_scoped_nodes.py::test_deprecation_of_doc_attribute
+   # requires six bundled in urllib3, sigh
+   
tests/test_modutils.py::test_file_info_from_modpath__SixMetaPathImporter
+   )
+
+   # Faker causes sys.path_importer_cache keys to be overwritten
+   # with PosixPaths
+   epytest -p no:faker
+}



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

2023-04-03 Thread Arthur Zamarin
commit: c9f12b432b38e7ec7e052534b5639497807694de
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:33:14 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:33:14 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9f12b43

dev-python/hypothesis: add 6.70.2

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

 dev-python/hypothesis/Manifest |  1 +
 dev-python/hypothesis/hypothesis-6.70.2.ebuild | 77 ++
 2 files changed, 78 insertions(+)

diff --git a/dev-python/hypothesis/Manifest b/dev-python/hypothesis/Manifest
index 33cea99472c9..2db8b6f07487 100644
--- a/dev-python/hypothesis/Manifest
+++ b/dev-python/hypothesis/Manifest
@@ -2,3 +2,4 @@ DIST hypothesis-6.68.2.gh.tar.gz 9350253 BLAKE2B 
5f98aac845a2f4e1dd9f54809d3e7e1
 DIST hypothesis-6.69.0.gh.tar.gz 9350681 BLAKE2B 
e28bca5be08809d7f10723186957ab72a650d93403fc0c5ed91b329ca3c68b084a69aba093e8dc7fdc742316287dc585b7b8794403e0b3fa29adfc7bf2d76ee7
 SHA512 
b6a263a10f78841706f6fa58a237f2f1e7ef5efd4d859e0fb79bae0ad3eff86774bc0cb7bb581af89605f80514a08386b5f501a6154bcc5ae1f56e7eb2ba61b4
 DIST hypothesis-6.70.0.gh.tar.gz 9351669 BLAKE2B 
04e6739a1e6cf5907486c5fc6e09d17996831fe7967df4a24e6fb3c3ab992ef0c1ade9f250a1776eed4d6880893db1e8f284df60465a81a9f14f4aa64b0b0fc9
 SHA512 
6fb15addd86f8737b5a99a5c4ae5f2899133772e25426cc8a9bd086ddc0246b8fd323a10213df45d5b13c0740df19597a2b7ee7566611d5d01e6897954ac0f4c
 DIST hypothesis-6.70.1.gh.tar.gz 9351685 BLAKE2B 
99488f4caae4da403ebe28c2c18829d493ea76515f4a503ece0063dad2638cc5d05f9b55372d5c457b0dfc3af31d3422c44d647ea0c2a92a83b20d64c70c4b2f
 SHA512 
a858df7d469604b2d43d003c76f43e40931f6024f6cf164c9b427a449cd0d843df401052e3312c529fd4467d80e0870810ad6863812ec53a47dcf9ec82336472
+DIST hypothesis-6.70.2.gh.tar.gz 9351849 BLAKE2B 
074003592741cd89ae9ae44b3857daa3f5d1c8cbb0ab3513f3930b27fcc4e27417994c4240fbbba4649cb04716820db0e9c4f4ac745c194535a81b8a6197f7c3
 SHA512 
20f812ca8e005877893eacde1bac796495f8697ecbbd6da5f807a9ce6d7e310682030323a8b7bb3e646040253968d2f15cb6fcc858f47be631ef62af4924ac78

diff --git a/dev-python/hypothesis/hypothesis-6.70.2.ebuild 
b/dev-python/hypothesis/hypothesis-6.70.2.ebuild
new file mode 100644
index ..ccd35ad36fe8
--- /dev/null
+++ b/dev-python/hypothesis/hypothesis-6.70.2.ebuild
@@ -0,0 +1,77 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+CLI_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( "${CLI_COMPAT[@]}" python3_11 pypy3 )
+PYTHON_REQ_USE="threads(+),sqlite"
+
+inherit distutils-r1 multiprocessing optfeature
+
+TAG=hypothesis-python-${PV}
+MY_P=hypothesis-${TAG}
+DESCRIPTION="A library for property based testing"
+HOMEPAGE="
+   https://github.com/HypothesisWorks/hypothesis/
+   https://pypi.org/project/hypothesis/
+"
+SRC_URI="
+   https://github.com/HypothesisWorks/hypothesis/archive/${TAG}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+S="${WORKDIR}/${MY_P}/hypothesis-python"
+
+LICENSE="MPL-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="cli"
+
+RDEPEND="
+   >=dev-python/attrs-19.2.0[${PYTHON_USEDEP}]
+   >=dev-python/sortedcontainers-2.1.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/exceptiongroup-1.0.0_rc8[${PYTHON_USEDEP}]
+   ' 3.9 3.10)
+   cli? (
+   $(python_gen_cond_dep '
+   dev-python/black[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   ' "${CLI_COMPAT[@]}")
+   )
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pexpect[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   !!

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

2023-04-03 Thread Arthur Zamarin
commit: 0d21e1b16e0c74e63931964e896684b3127d9dae
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:36:20 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:36:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d21e1b1

dev-python/nbclient: add 0.7.3

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

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

diff --git a/dev-python/nbclient/Manifest b/dev-python/nbclient/Manifest
index 06a41d563a40..6b76d74feb4e 100644
--- a/dev-python/nbclient/Manifest
+++ b/dev-python/nbclient/Manifest
@@ -1 +1,2 @@
 DIST nbclient-0.7.2.gh.tar.gz 76883 BLAKE2B 
d90b9dd7b15757a44c86084b68b916aab663c0e20a5c1012bda9f86a0ec1104a01cd78d27bc6e510ec12f2356a312d8080e1568e4c54dd2e916af85dc304
 SHA512 
17f1bfbfa156688e895ab1a0d0f74903f43c62a373a40cfcc50a654d86ebbaeb5ed101562716140a3878a9667bb131c49e06caf2e3127160700baf181cd1c29b
+DIST nbclient-0.7.3.gh.tar.gz 77997 BLAKE2B 
613c06596ea0cc970d57115950248cbb052babccec397a9aa543b0058cdb94f797a7c5cf554a9122927a4138f0f06827a77f535fc83a858519873bda0c389230
 SHA512 
bdd093cafbe6a101de779de2e51d7e2e9abce80fa8ef5b5340b4cb8fb53d0051f6f677006cadaa3a69e727634043b7ab5416777e7cf8e0507d5d1d163016f8d5

diff --git a/dev-python/nbclient/nbclient-0.7.3.ebuild 
b/dev-python/nbclient/nbclient-0.7.3.ebuild
new file mode 100644
index ..1f8c2146f764
--- /dev/null
+++ b/dev-python/nbclient/nbclient-0.7.3.ebuild
@@ -0,0 +1,56 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=hatchling
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="A client library for executing Jupyter notebooks"
+HOMEPAGE="
+   https://nbclient.readthedocs.io/en/latest/
+   https://github.com/jupyter/nbclient/
+   https://pypi.org/project/nbclient/
+"
+SRC_URI="
+   https://github.com/jupyter/nbclient/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/jupyter_client-6.1.12[${PYTHON_USEDEP}]
+   >=dev-python/jupyter_core-5.1.0[${PYTHON_USEDEP}]
+   >=dev-python/nbformat-5.0[${PYTHON_USEDEP}]
+   >=dev-python/traitlets-5.3[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/ipykernel[${PYTHON_USEDEP}]
+   dev-python/ipywidgets[${PYTHON_USEDEP}]
+   dev-python/nbconvert[${PYTHON_USEDEP}]
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   dev-python/testpath[${PYTHON_USEDEP}]
+   dev-python/xmltodict[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+EPYTEST_DESELECT=(
+   nbclient/tests/test_client.py::test_many_parallel_notebooks
+   
'nbclient/tests/test_client.py::test_run_all_notebooks[Interrupt.ipynb-opts6]'
+)
+
+python_test() {
+   # The tests run the pydevd debugger, the debugger prints a warning
+   # in python3.11 when frozen modules are being used.
+   # This warning makes the tests fail, silence it.
+   PYDEVD_DISABLE_FILE_VALIDATION=1 epytest
+}



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

2023-04-03 Thread Arthur Zamarin
commit: 6f25c82740a3293529c1f756e75ed289aab7cfa8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:01:17 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:01:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f25c827

dev-python/pychromecast: add 13.0.7

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

 dev-python/pychromecast/Manifest   |  1 +
 dev-python/pychromecast/pychromecast-13.0.7.ebuild | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/pychromecast/Manifest b/dev-python/pychromecast/Manifest
index 2b2a3fdba898..ec4ca3bbf746 100644
--- a/dev-python/pychromecast/Manifest
+++ b/dev-python/pychromecast/Manifest
@@ -1,2 +1,3 @@
 DIST PyChromecast-13.0.4.tar.gz 51996 BLAKE2B 
11dad948443e9e5957de6b22cf6c1d33d19030d53cecddd9be5595dc82bb108e4746c382bae5c6d22d5219bcb90ed5bed7ca94c714ec7bbe7ad1330a1ee3cf2f
 SHA512 
2f9bd925e452448a387a04babc0d71a35fc83edd30142cdd129479b5b20cf7aa9691a8d46f45edf5f12fd6f3052564c2956dd241eaf1a1c468b8399b065286ec
 DIST PyChromecast-13.0.6.tar.gz 52068 BLAKE2B 
f1ac2885106221f9dc2b4ec78b33a5664458e08b8b63588183ecc6a6365fa5baeedda86cbc803dbcc5ce5b7c9b1f0323309ef6cebb3a0a5c7326dc970967176d
 SHA512 
9ab70b1c47b1bb67b9d6d95395c8cb0bff9920e0ac371133d7121f86ad4f392b97009b502a05c19f4d169f28c09b8f7e391c6b6c0be6fffd8015753eb1df47de
+DIST PyChromecast-13.0.7.tar.gz 52074 BLAKE2B 
4e67ce21bf91c52cd83b8a17d86cd321d937c1f55b567d4df7a5548ad02aacb4c269b9d29030a7e41f9f310d53313b6b287032c1d5f1448b415c3896b168b783
 SHA512 
dc63c901287ae31ce278c9978701ad335715f1daaab1b2683aa7b02ddb38e3e207f2527ae144f6836b65c4ddb4b1fdd62c40005bf776e0655e647ab40634857e

diff --git a/dev-python/pychromecast/pychromecast-13.0.7.ebuild 
b/dev-python/pychromecast/pychromecast-13.0.7.ebuild
new file mode 100644
index ..1c1b32308cfc
--- /dev/null
+++ b/dev-python/pychromecast/pychromecast-13.0.7.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2020-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN=PyChromecast
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python module to talk to Google Chromecast"
+HOMEPAGE="
+   https://github.com/home-assistant-libs/pychromecast/
+   https://pypi.org/project/PyChromecast/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/casttube-0.2.0[${PYTHON_USEDEP}]
+   >=dev-python/protobuf-python-3.19.1[${PYTHON_USEDEP}]
+   >=dev-python/zeroconf-0.25.1[${PYTHON_USEDEP}]
+"



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

2023-04-03 Thread Arthur Zamarin
commit: 11f3f7da0f77ce7743d3d617d921e26e6844fe3a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:26:17 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:26:17 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11f3f7da

dev-python/pylint: add 2.17.2

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

 dev-python/pylint/Manifest |  1 +
 dev-python/pylint/pylint-2.17.2.ebuild | 87 ++
 2 files changed, 88 insertions(+)

diff --git a/dev-python/pylint/Manifest b/dev-python/pylint/Manifest
index 99ae8165d10d..b8fb1bcc3515 100644
--- a/dev-python/pylint/Manifest
+++ b/dev-python/pylint/Manifest
@@ -3,3 +3,4 @@ DIST pylint-2.16.3.gh.tar.gz 1382318 BLAKE2B 
67e2e7b6facde79268267e44081e1b71e39
 DIST pylint-2.16.4.gh.tar.gz 1382902 BLAKE2B 
515078d2677e4374041de563ec2a98cf877848a0f1042c26f331a21335e030e15a3d6ba4eb539c18cc3835fc9505270c540b9c64f61c037759171deec41f5f10
 SHA512 
144a7b048340c65082f02f34d511e0066019ac08d28eb5f8c114086b66a471355631355b24f291916fa2e6b9db8e0e69a4649ad9ce036bbf2418fd6a73089fc5
 DIST pylint-2.17.0.gh.tar.gz 1406740 BLAKE2B 
55176ca794f182886c93eb1461599792df90f948c09a8c4084138a7319f8127d9037d9b4535be90d5ad19227b1ce36ae07f5aaf532298aa92be97832baaba64e
 SHA512 
2796cf670b2aa6cc448e5e26b4899804ebfdea6df3730cab06f2c72fdf57ee07b08e63f0748bce991175c67c22d040ededa19c967a2f74e14d44e54323aff945
 DIST pylint-2.17.1.gh.tar.gz 1408063 BLAKE2B 
0d4ab42ea4465787ff0bb6768b20800797d76caeddda475a08372a6b174975fec36a48acecea80898b3ba1c36ad6eb6c540678338c84ce48b78e0f6f9553e190
 SHA512 
e467c48349f49c2a9ef68d6a70748bf9144ff589adc1d04eb1822b28511d5a1a0027536fc61a5d33955fb0e7ffbbdecea47e8196844f33985a43e8c1886af21e
+DIST pylint-2.17.2.gh.tar.gz 1408818 BLAKE2B 
678fc98ac583e86e98856713bbfbf975be9f3c51ec1516d2a2df54369af1bba76db6c53d43a09494d08409bb3829df958037ba716ed6880460c2cbbc2ca4b38b
 SHA512 
9c3063332ffc102ba4a7177cca4c440ce89a8ba6fa4252eb1fa401a6e6c10e49afcbbe76127aedccc30dfe5f0dfe7b19cd9aadf4f5ffaa2494a4743d2e0d6a33

diff --git a/dev-python/pylint/pylint-2.17.2.ebuild 
b/dev-python/pylint/pylint-2.17.2.ebuild
new file mode 100644
index ..3c8fa613f2fc
--- /dev/null
+++ b/dev-python/pylint/pylint-2.17.2.ebuild
@@ -0,0 +1,87 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE="threads(+)"
+
+inherit distutils-r1
+
+DESCRIPTION="Python code static checker"
+HOMEPAGE="
+   https://pypi.org/project/pylint/
+   https://github.com/PyCQA/pylint/
+"
+SRC_URI="
+   https://github.com/pycqa/pylint/archive/v${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+IUSE="examples"
+
+# Make sure to check 
https://github.com/PyCQA/pylint/blob/main/pyproject.toml#L34 on bumps
+# Adjust dep bounds!
+RDEPEND="
+   =dev-python/astroid-2.15.2[${PYTHON_USEDEP}]
+   >=dev-python/dill-0.3.6[${PYTHON_USEDEP}]
+   >=dev-python/isort-4.2.5[${PYTHON_USEDEP}]
+   =dev-python/mccabe-0.6[${PYTHON_USEDEP}]
+   =dev-python/platformdirs-2.2.0[${PYTHON_USEDEP}]
+   >=dev-python/tomlkit-0.10.1[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+   ' 3.9)
+   $(python_gen_cond_dep '
+   >=dev-python/tomli-1.1.0[${PYTHON_USEDEP}]
+   ' 3.9 3.10)
+"
+BDEPEND="
+   test? (
+   >=dev-python/GitPython-3[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   dev-python/typing-extensions[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   rm -rf pylint || die
+
+   local EPYTEST_DESELECT=(
+   # TODO
+   
'tests/test_functional.py::test_functional[forgotten_debug_statement_py37]'
+   
'tests/test_functional.py::test_functional[dataclass_with_field]'
+   'tests/test_functional.py::test_functional[no_name_in_module]'
+   'tests/test_functional.py::test_functional[shadowed_import]'
+   
tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_error_msg
+   
tests/checkers/unittest_typecheck.py::TestTypeChecker::test_nomember_on_c_extension_info_msg
+   
tests/config/pylint_config/test_run_pylint_config.py::test_invocation_of_pylint_config
+
+   # apparently fragile, needs unpickleable plugin
+   
tests/test_check_parallel.py::TestCheckParallelFramework::test_linter_with_unpickleable_plugins_is_pickleable
+   )
+   local EPYTEST_IGNORE=(
+   # No need to run the benchmarks
+   tests/benchmark/test_baseline_benchmarks.py
+   )
+   epytest
+}
+
+python_ins

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

2023-04-03 Thread Arthur Zamarin
commit: 97a4b3ae13d9744f01802b5c80d0ef1e8ddbc856
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:18:23 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:18:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=97a4b3ae

dev-python/django: add 4.2

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

 dev-python/django/Manifest  |   2 +
 dev-python/django/django-4.2.ebuild | 100 
 2 files changed, 102 insertions(+)

diff --git a/dev-python/django/Manifest b/dev-python/django/Manifest
index 4d6a46736d91..5a92f88a9263 100644
--- a/dev-python/django/Manifest
+++ b/dev-python/django/Manifest
@@ -4,3 +4,5 @@ DIST Django-4.0.10.checksum.txt 2563 BLAKE2B 
1ec93751204e80d75f5f4f15086cfd9aabe
 DIST Django-4.0.10.tar.gz 10430363 BLAKE2B 
d36aefd5d00023e5c4e34dda2b283e9a82d9e3b82576ce00cef7d9b75837ffdbf56327ad21ccefb02b79e8db93f12cf850541f4cb1d01b3dd28bdea0c73cb9d6
 SHA512 
04d1b207af21067c22c120486ff57ea602b3436adf1871f691735825afb30c3ed62f1cbc98d92fa70e9a818bcf50db70d949ab0c460f48f6027b75df9eba56c7
 DIST Django-4.1.7.checksum.txt 2554 BLAKE2B 
5a82eca5edb5b5d90c629c6d42414725b32ed55fc137cfb3fc9c5bfd392dc0fcc3f6b99eea64a16a88002a521bf910464a6fe11d9079d68e056acded3432be38
 SHA512 
4244abf4e81aec1f8daa7815f57483963e94cf67571f0c2f6ab67507515c7f6f72f86412a17c8e1e73170e1ed7d3d4503c5adba36c66d0b8f015350c81348116
 DIST Django-4.1.7.tar.gz 10520415 BLAKE2B 
88b66fea737f6fb1661a6987b9d6cecb84d58d675655a0ea5bed60ee28252edd11d8025498b7bc854b9c0c4814148bdc3bcdf59014dd040b5c424c3cd1711e46
 SHA512 
e34b0b05209297164d6cb84e7edf4740a2d638496c3107c06c0e773db292e9b02e6abbd8c3da347addaf17d9c9a56ef4873eb9edc5f1164e3d13d7f3ef083844
+DIST Django-4.2.checksum.txt 2530 BLAKE2B 
06ebf87ce44d32fd2491d600cbf4a74b32426dadc0096fe3a34933ba55ddcfed082e85021c9c4e525122e6be8aa3ff6a2bb282fa24fb29a732ea744d4fa1dd1a
 SHA512 
6078fe14d8b356477bd163eca67ca9038b24f78b706bdd8fc2c4ebdbda5024c5014b333a820910dbfb075ff944b78789f7c745eec3a2724898b7b2620f40a6dd
+DIST Django-4.2.tar.gz 10415665 BLAKE2B 
05faa1476f9bbbea93f33c0f35914b0893006ebbdfac98e347f886db0a39b263046dc149cbf41982ef46138b835379f8384b5f8eb7ef77e16d338307830e
 SHA512 
22a61943eb99cae81a99d84795155d5fecf5e1ec5d76be145b86d5ae1d4fb6a71be8bb62e58b935dedc846c8fd3f1e6fe68cbcc7fa1603a3c4753e69d61b7af4

diff --git a/dev-python/django/django-4.2.ebuild 
b/dev-python/django/django-4.2.ebuild
new file mode 100644
index ..b1adedc95829
--- /dev/null
+++ b/dev-python/django/django-4.2.ebuild
@@ -0,0 +1,100 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_REQ_USE='sqlite?,threads(+)'
+
+inherit bash-completion-r1 distutils-r1 optfeature verify-sig
+
+DESCRIPTION="High-level Python web framework"
+HOMEPAGE="
+   https://www.djangoproject.com/
+   https://github.com/django/django/
+   https://pypi.org/project/Django/
+"
+SRC_URI="
+   https://media.djangoproject.com/releases/$(ver_cut 1-2)/${P^}.tar.gz
+   verify-sig? ( https://media.djangoproject.com/pgp/${P^}.checksum.txt )
+"
+S="${WORKDIR}/${P^}"
+
+LICENSE="BSD"
+# admin fonts: Roboto (media-fonts/roboto)
+LICENSE+=" Apache-2.0"
+# admin icons, jquery, xregexp.js
+LICENSE+=" MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86 ~x64-macos"
+IUSE="doc sqlite test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   =dev-python/asgiref-3.6.0[${PYTHON_USEDEP}]
+   >=dev-python/sqlparse-0.3.1[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   $(python_gen_impl_dep sqlite)
+   ${RDEPEND}
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/numpy[${PYTHON_USEDEP}]
+   dev-python/pillow[webp,${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   dev-python/selenium[${PYTHON_USEDEP}]
+   dev-python/tblib[${PYTHON_USEDEP}]
+   sys-devel/gettext
+   !!=sec-keys/openpgp-keys-django-20201201 )
+"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.0-bashcomp.patch
+)
+
+distutils_enable_sphinx docs --no-autodoc
+
+VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/django.asc
+
+src_unpack() {
+   if use verify-sig; then
+   cd "${DISTDIR}" || die
+   verify-sig_verify_signed_checksums \
+   "${P^}.checksum.txt" sha256 "${P^}.tar.gz"
+   cd "${WORKDIR}" || die
+   fi
+
+   default
+}
+
+python_test() {
+   # Tests have non-standard assumptions about PYTHONPATH,
+   # and don't work with ${BUILD_DIR}/lib.
+   PYTHONPATH=. "${EPYTHON}" tests/runtests.py --settings=test_sqlite -v2 
||
+   die "Tests fail with ${EPYTHON}"
+}
+
+python_install_all() {
+   newbashcomp extras/django_ba

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

2023-04-03 Thread Arthur Zamarin
commit: f90139cdcdc25def8b64ec6eaefb6d810d77fba4
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:06:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:06:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90139cd

app-editors/vscodium: drop 1.75.1.23040-r1, 1.76.1.23069

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

 app-editors/vscodium/Manifest  |   6 --
 .../vscodium/vscodium-1.75.1.23040-r1.ebuild   | 119 -
 app-editors/vscodium/vscodium-1.76.1.23069.ebuild  | 119 -
 3 files changed, 244 deletions(-)

diff --git a/app-editors/vscodium/Manifest b/app-editors/vscodium/Manifest
index 56051fb41184..82a6b532c8bb 100644
--- a/app-editors/vscodium/Manifest
+++ b/app-editors/vscodium/Manifest
@@ -1,9 +1,3 @@
-DIST vscodium-1.75.1.23040-amd64.tar.gz 121851555 BLAKE2B 
827942e3a6b903e943fbd7200c8ae1e10e2ee3e8a05592a5dbe6677171935499bdb497aa1d76b175c0a8a4dc699ee2559c8768d83b2133ab3e337313bcbe70ec
 SHA512 
9192915d87d55b5835dee70d10e03f6ad110075b1b32809f78cd18a7d9fefb36b3440e14c0c17dd826995a04789517c21e08e0d72a0418923f1dadf2d5ce6d22
-DIST vscodium-1.75.1.23040-arm.tar.gz 103879786 BLAKE2B 
2f9d0cbdc474a248a7dbd3339a9af87f88ad477a14934a2c4ca3ae5235607a79dbf9d797b669df7a8127dbfb3081bc1612b4d899d69e95faa8a7a011a1030b21
 SHA512 
373c7097582d4540ac1479bbb9da53b6b13288dc5ce61fd11d952f7eb289d456bf57f8c2e16d1a3532738d082857e9abebbded1142ad36f6c6ac67e25cd1a6e7
-DIST vscodium-1.75.1.23040-arm64.tar.gz 114920913 BLAKE2B 
9758ce3c71621eeb9d4975d7e1c57cb079f15b6794c320df682e2748d7fd5cc4ec5dd2dbe94e16e2c6f6e7617e333dfb08d0a80dfcd9c78b01ec9c38e800491c
 SHA512 
3baf3abd004c67c197204e92de50fc6d056926686dd921368d63c90d216c83ae15529f3f25ddc6c20deb812823f9181ddbae3b80936ff2a441a1d51e42678a03
-DIST vscodium-1.76.1.23069-amd64.tar.gz 120798858 BLAKE2B 
d499b75a5c24e9aa68a5fc358bcb98fb67a67b2383cfebe0b9ae4170876fd675cde66d855f581f6cd5b4c745a03a15e345af7532510d640b4ac65b0af2413906
 SHA512 
a2e37eba3ec70e35f344c2cb552cd75c5d5e67ec9159ac48709d631e5324d19e9cab08f69ffc8ae1fa782aad515be6af661464dfa72ea1f18da752d1d0b48127
-DIST vscodium-1.76.1.23069-arm.tar.gz 102842431 BLAKE2B 
9ede508310c87948a67c8f07f4f15f4b2e2466c3f659c1a291cb20a76a784964d7174a1003b10523779c75eb0850e2e272aa7e3a02497937136f32c138b8ebd1
 SHA512 
f5b99f1bd9338c69c69b9643a5c5e6ade5a3df237ac042a9fc7fdbba402244516e54ab636235a1867c6594a52a33b4af32622e70511491caac7d014b42c8e51d
-DIST vscodium-1.76.1.23069-arm64.tar.gz 113874748 BLAKE2B 
8dd6d97571dd084ffa40662ce6f3788cb7f09bdc8fefdce15d2987f3819ffdf42762e4b2106b71c3fc4e02943be9c62ab12355a8e30ad405848cdc7b115780cf
 SHA512 
92ba83d125f8d28ccbf06f3dd7219c08ab1d40630ae32f0620aee731340d957cf79b7e5c4068745d77d1d425e9ff64ec0cc859016882edc93cd553fd59fc9983
 DIST vscodium-1.76.2.23074-amd64.tar.gz 120804173 BLAKE2B 
9f730a8cc1130c076d12317cd0038e38b9a7529d3a1947cbf24958ccc2d5ff4ef0a85d4561645777888ca9514c7403bd86c858ac858c8568bfe6597c588adc7b
 SHA512 
3abcdb1c0f189920b32accc892c2e88695b87448f052896f15472874576ae432a829cdf641df6680c27c3e1846c149cecbdc846473f166f98003c81d599486a1
 DIST vscodium-1.76.2.23074-arm.tar.gz 102835702 BLAKE2B 
6ca9ff6353b7396d8d2d906a2415cf0f14e9f0a94bcc5607479c38436963e76ac55ebca8a8983bc36003834f4237006f03f7c49fc49e5da82755322cd9457b5e
 SHA512 
1b05dc5741c5381060492f90583bfa56120562489b814dac9f607589deef15c43dba3681a66167c5506adbfc802fe893155d77b5454040ae31c05f9b88a27e2e
 DIST vscodium-1.76.2.23074-arm64.tar.gz 113874910 BLAKE2B 
bb517ac6b7d41a392fec6722b895c0035ee146497f6b7ca9a52118081a9d0647a48e3e10fe48cab7a2094db70e664af2a7282587a466216e91156f23f7c1119f
 SHA512 
80f8ed673bbe52838da20a0d5077aac060e8ba334609e8a5088fb30c88bf9813b7b91316b9eb5662587a4c4ea038ac0645ea4104150f78ce3df3a43e1ad845bb

diff --git a/app-editors/vscodium/vscodium-1.75.1.23040-r1.ebuild 
b/app-editors/vscodium/vscodium-1.75.1.23040-r1.ebuild
deleted file mode 100644
index 5c5cdb4f3682..
--- a/app-editors/vscodium/vscodium-1.75.1.23040-r1.ebuild
+++ /dev/null
@@ -1,119 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop pax-utils xdg optfeature
-
-DESCRIPTION="A community-driven, freely-licensed binary distribution of 
Microsoft's VSCode"
-HOMEPAGE="https://vscodium.com/";
-SRC_URI="
-   amd64? ( 
https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-x64-${PV}.tar.gz
 -> ${P}-amd64.tar.gz )
-   arm? ( 
https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-armhf-${PV}.tar.gz
 -> ${P}-arm.tar.gz )
-   arm64? ( 
https://github.com/VSCodium/${PN}/releases/download/${PV}/VSCodium-linux-arm64-${PV}.tar.gz
 -> ${P}-arm64.tar.gz )
-"
-
-RESTRICT="strip bindist"
-
-LICENSE="
-   Apache-2.0
-   BSD
-   BSD-1
-   BSD-2
-   BSD-4
-   CC-BY-4.0
-   ISC
-   LGPL-2.1+
-   MIT
-   MPL-2.0
-   openssl
-   PYTHON
-   Te

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

2023-04-03 Thread Arthur Zamarin
commit: c529821d1f1a3a917b818578d0955678dc0a3109
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:02:43 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:02:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c529821d

app-editors/vscode: drop 1.76.0, 1.76.1

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

 app-editors/vscode/Manifest |   6 --
 app-editors/vscode/vscode-1.76.0.ebuild | 128 
 app-editors/vscode/vscode-1.76.1.ebuild | 128 
 3 files changed, 262 deletions(-)

diff --git a/app-editors/vscode/Manifest b/app-editors/vscode/Manifest
index c74a0ca16a37..4a1aa49de680 100644
--- a/app-editors/vscode/Manifest
+++ b/app-editors/vscode/Manifest
@@ -1,9 +1,3 @@
-DIST vscode-1.76.0-amd64.tar.gz 133931108 BLAKE2B 
ab2c5dc571b631fd19cb5457eb74de1c56a83f4e0d65d53b26747a3ef99cdeb164f04f2577bb9f345cd1e88d52c73c21eedb73bbd5d996d161a40d414838475d
 SHA512 
2c1baca4d84dcd1abb5f7e74e1e6c9faa4cc3df83014bae94b2e5c8a1a3909decbc75f707b43562b994e50b08cb00ac1ba5bbb5aee0c26f227b43a590b93529d
-DIST vscode-1.76.0-arm.tar.gz 113679844 BLAKE2B 
d7b8d828285ead72c4dc7d297ebd1cc5957696d0a156f9ceb82e58efef8bd4fba46b38691b0190d9625548549b30fdfb3e2d837ebe682119d3369e69f964dd22
 SHA512 
b15ff5cece6773e908834779b8fe8bd42d06cf2b8b41c6acf8819d4972b2f31e6953067bce5141ba1e5fdceca22881fc4c1751c5a25b9342da97ab4e47a3
-DIST vscode-1.76.0-arm64.tar.gz 123109503 BLAKE2B 
141f1de84a64805ed88b003db5ac8d8c603c13fcde94cf3aa3f2dfe8ab6b962d4d106ebb39945490315f4680ea774f530d1dd42a825e6a6bc218238e3aba8670
 SHA512 
7b602a1f9ca4b29cbf737b550e7befc9a19fc7bf9225b690793987224645d12a7526a2a853e600e766390f857b9fe14b3dc064373f3e66119a37c1079fe42487
-DIST vscode-1.76.1-amd64.tar.gz 133945909 BLAKE2B 
d6549d58f97490fcaa3a40a2e999123e27d142b626f959061b87da9827e615023b100a3c280ce256e9703aff9cef42eea4f1bf56f9e2942059a0c31322f0
 SHA512 
c0160ff9d243a50267cf142839ae3583b4e6fc721f6a1b3541a3203c5c66c098c5469d360590f68bb0a17ee4aba3b54a0d856e550aee492a996b7b4f6044e0b8
-DIST vscode-1.76.1-arm.tar.gz 113670868 BLAKE2B 
f9846bf5b8fd8d972e95ef9152b36794beba59d3536b21d55a8c0986d5ae5e11f588985242e0eeb4d24f771a00ecf71ecdb272e06d2b6cb2f9091065e80dc9ad
 SHA512 
cff9ee94a0cdf793a2a6052952f299355f37d20550b809b6796e5bde58e6dcf4bcc8249388b60c93e348ef969a1cb110472252cd122a429dbb3eb83efa0b208f
-DIST vscode-1.76.1-arm64.tar.gz 123125455 BLAKE2B 
ae3e4772afc19855a1ef0f415a6621c21f9abdb7994a9fb45f62eb22499a08142f1cec6d91ca1c16700c431cfcb1a2f61f53c579f187cb1c93c2ca921e987366
 SHA512 
9e4c44f092efb200a0602655499d6b8185de65bca4d318204bfd9aeea219a9b546f2d16eb44dd3ef66c3eeef804750ab9c708f7338d955964dfc4c48e7aa779a
 DIST vscode-1.76.2-amd64.tar.gz 133943122 BLAKE2B 
a688262565aa9f7096139fd0545ee497480e2ec928d2d57b693e52baed9d08adb2027545a4c2728b834936378d4812ba138530d081e9af123ab4d49eb22b3285
 SHA512 
4087dae3a567d99e6bd1bec1dcef41b824118ce4004b6f70226b0c3b96ead3f685c7a9b00fda2bcd5ada3cfcdaf39856be0345209cf30fd31d2826d1114f207b
 DIST vscode-1.76.2-arm.tar.gz 113666270 BLAKE2B 
7d600529125b06dcf2d8bdd26bcc941828c06682aa83f571f802049a3381afd86e9dd71246d67a3ea16289ee7c2719530daca859dbbd951ec6bdcbf0567cfa54
 SHA512 
185daa71f0e32be43cc57b41ae4e3e22cd78a769ee1974c3d7be99396a3254dcb21964ebc93d6a5157852dcf28a94fcd0dfc41611ac1a659787248ab4cde22d3
 DIST vscode-1.76.2-arm64.tar.gz 123093592 BLAKE2B 
13ddee4fd48570a049ded9e9d5b0a130d78f8e66218b7a8c133985bfc106f9ef6a2a5168a640683618e3e33838b21525f01802df6db5f9cf6f9d3e75c2c093e5
 SHA512 
b0696534c94e0618a565e621efe2defcb8fffcbb68d4f9bf1f1587c680e2a601d726c47bca4eef464344d65956957048aab63cce93ea41c82ef5a35f208d8714

diff --git a/app-editors/vscode/vscode-1.76.0.ebuild 
b/app-editors/vscode/vscode-1.76.0.ebuild
deleted file mode 100644
index 593a70028957..
--- a/app-editors/vscode/vscode-1.76.0.ebuild
+++ /dev/null
@@ -1,128 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop pax-utils xdg optfeature
-
-DESCRIPTION="Multiplatform Visual Studio Code from Microsoft"
-HOMEPAGE="https://code.visualstudio.com";
-SRC_URI="
-   amd64? ( https://update.code.visualstudio.com/${PV}/linux-x64/stable -> 
${P}-amd64.tar.gz )
-   arm? ( https://update.code.visualstudio.com/${PV}/linux-armhf/stable -> 
${P}-arm.tar.gz )
-   arm64? ( https://update.code.visualstudio.com/${PV}/linux-arm64/stable 
-> ${P}-arm64.tar.gz )
-"
-S="${WORKDIR}"
-
-RESTRICT="mirror strip bindist"
-
-LICENSE="
-   Apache-2.0
-   BSD
-   BSD-1
-   BSD-2
-   BSD-4
-   CC-BY-4.0
-   ISC
-   LGPL-2.1+
-   Microsoft-vscode
-   MIT
-   MPL-2.0
-   openssl
-   PYTHON
-   TextMate-bundle
-   Unlicense
-   UoI-NCSA
-   W3C
-"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64"
-
-RDEPEND="
-   >=app-accessibility/at-spi2-core-2.46.0:2
-   app-crypt/libsecret[crypt]
-   d

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

2023-04-03 Thread Arthur Zamarin
commit: f002c3f863b4c902e6c5ce07459bd9fb2867e167
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:38:06 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:38:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f002c3f8

net-firewall/iptables: Stabilize 1.8.9 x86, #899338

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

 net-firewall/iptables/iptables-1.8.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/iptables/iptables-1.8.9.ebuild 
b/net-firewall/iptables/iptables-1.8.9.ebuild
index aee6fe01ea5e..f863e763ccfc 100644
--- a/net-firewall/iptables/iptables-1.8.9.ebuild
+++ b/net-firewall/iptables/iptables-1.8.9.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 # Subslot reflects PV when libxtables and/or libip*tc was changed
 # the last time.
 SLOT="0/1.8.3"
-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="conntrack netlink nftables pcap static-libs"
 
 COMMON_DEPEND="



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

2023-04-03 Thread Arthur Zamarin
commit: 7834435ca628dd886d8ecaad2113c22bb22bdbc3
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:37:58 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:37:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7834435c

net-firewall/iptables: Stabilize 1.8.9 arm64, #899338

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

 net-firewall/iptables/iptables-1.8.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/iptables/iptables-1.8.9.ebuild 
b/net-firewall/iptables/iptables-1.8.9.ebuild
index 6ccd3190a76a..bbd583c9c4cb 100644
--- a/net-firewall/iptables/iptables-1.8.9.ebuild
+++ b/net-firewall/iptables/iptables-1.8.9.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 # Subslot reflects PV when libxtables and/or libip*tc was changed
 # the last time.
 SLOT="0/1.8.3"
-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="conntrack netlink nftables pcap static-libs"
 
 COMMON_DEPEND="



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

2023-04-03 Thread Arthur Zamarin
commit: ad0b621aea19b9273748d8396cef1181b7250e81
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:38:01 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:38:01 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad0b621a

net-firewall/iptables: Stabilize 1.8.9 arm, #899338

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

 net-firewall/iptables/iptables-1.8.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/iptables/iptables-1.8.9.ebuild 
b/net-firewall/iptables/iptables-1.8.9.ebuild
index bbd583c9c4cb..aee6fe01ea5e 100644
--- a/net-firewall/iptables/iptables-1.8.9.ebuild
+++ b/net-firewall/iptables/iptables-1.8.9.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2"
 # Subslot reflects PV when libxtables and/or libip*tc was changed
 # the last time.
 SLOT="0/1.8.3"
-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="conntrack netlink nftables pcap static-libs"
 
 COMMON_DEPEND="



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

2023-04-03 Thread Arthur Zamarin
commit: f85f62d191dc5daabca230d9974197f04d81bb2c
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:38:33 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:38:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f85f62d1

sys-fs/mdadm: Stabilize 4.2-r1 hppa, #899352

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

 sys-fs/mdadm/mdadm-4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mdadm/mdadm-4.2-r1.ebuild b/sys-fs/mdadm/mdadm-4.2-r1.ebuild
index c73efa5d3292..b2a145cd12f0 100644
--- a/sys-fs/mdadm/mdadm-4.2-r1.ebuild
+++ b/sys-fs/mdadm/mdadm-4.2-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/utils/raid/mdadm/${P/_/-}.tar.xz
 LICENSE="GPL-2"
 SLOT="0"
 [[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc x86"
 IUSE="static systemd +udev"
 
 # Only sys-fs/eudev provides static-libs right now, so if you have systemd,



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

2023-04-03 Thread Arthur Zamarin
commit: dcc17f2457a52e7d1e1e318e09cb7bcd02038aad
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 18:38:36 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 18:38:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dcc17f24

sys-fs/mdadm: Stabilize 4.2-r1 ppc, #899352

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

 sys-fs/mdadm/mdadm-4.2-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/mdadm/mdadm-4.2-r1.ebuild b/sys-fs/mdadm/mdadm-4.2-r1.ebuild
index b2a145cd12f0..fe1e3a8ea8aa 100644
--- a/sys-fs/mdadm/mdadm-4.2-r1.ebuild
+++ b/sys-fs/mdadm/mdadm-4.2-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/utils/raid/mdadm/${P/_/-}.tar.xz
 LICENSE="GPL-2"
 SLOT="0"
 [[ "${PV}" = *_rc* ]] || \
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86"
 IUSE="static systemd +udev"
 
 # Only sys-fs/eudev provides static-libs right now, so if you have systemd,



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

2023-04-03 Thread Mike Gilbert
commit: e0b7d24e4ede3433e7216c70ac6872a92d990ec3
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Apr  3 18:48:11 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Apr  3 19:06:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b7d24e

sys-libs/musl: use dosym8 -r for /usr/bin/ldd symlink

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

 sys-libs/musl/musl-1.2.3-r8.ebuild | 8 
 sys-libs/musl/musl-.ebuild | 8 
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/sys-libs/musl/musl-1.2.3-r8.ebuild 
b/sys-libs/musl/musl-1.2.3-r8.ebuild
index 4073f5c246b7..9d815eafd4f6 100644
--- a/sys-libs/musl/musl-1.2.3-r8.ebuild
+++ b/sys-libs/musl/musl-1.2.3-r8.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit flag-o-matic toolchain-funcs prefix
+inherit eapi8-dosym flag-o-matic toolchain-funcs prefix
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://git.musl-libc.org/musl"
inherit git-r3
@@ -141,10 +141,10 @@ src_install() {
just_headers && return 0
 
# musl provides ldd via a sym link to its ld.so
-   local sysroot
+   local sysroot=
is_crosscompile && sysroot=/usr/${CTARGET}
-   local ldso=$(basename "${ED}"${sysroot}/lib/ld-musl-*)
-   dosym "${EPREFIX}${sysroot}/lib/${ldso}" ${sysroot}/usr/bin/ldd
+   local ldso=$(basename "${ED}${sysroot}"/lib/ld-musl-*)
+   dosym8 -r "${sysroot}/lib/${ldso}" "${sysroot}/usr/bin/ldd"
 
if ! use crypt ; then
# Allow sys-libs/libxcrypt[system] to provide it instead

diff --git a/sys-libs/musl/musl-.ebuild b/sys-libs/musl/musl-.ebuild
index 4073f5c246b7..9d815eafd4f6 100644
--- a/sys-libs/musl/musl-.ebuild
+++ b/sys-libs/musl/musl-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit flag-o-matic toolchain-funcs prefix
+inherit eapi8-dosym flag-o-matic toolchain-funcs prefix
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://git.musl-libc.org/musl"
inherit git-r3
@@ -141,10 +141,10 @@ src_install() {
just_headers && return 0
 
# musl provides ldd via a sym link to its ld.so
-   local sysroot
+   local sysroot=
is_crosscompile && sysroot=/usr/${CTARGET}
-   local ldso=$(basename "${ED}"${sysroot}/lib/ld-musl-*)
-   dosym "${EPREFIX}${sysroot}/lib/${ldso}" ${sysroot}/usr/bin/ldd
+   local ldso=$(basename "${ED}${sysroot}"/lib/ld-musl-*)
+   dosym8 -r "${sysroot}/lib/${ldso}" "${sysroot}/usr/bin/ldd"
 
if ! use crypt ; then
# Allow sys-libs/libxcrypt[system] to provide it instead



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

2023-04-03 Thread Mike Gilbert
commit: 6de834d0aba32a86de1aee8806f8c03a815ad98e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Apr  3 18:13:02 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Apr  3 19:06:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6de834d0

sys-libs/musl: fix ld-musl.so symlink with merged-usr

To create a symlink relative to /lib/ld-musl.so, we must know if ${ROOT}
will have /lib symlinked to /usr/lib. We rely on the split-usr USE flag to
determine this.

Closes: https://bugs.gentoo.org/903703
Signed-off-by: Mike Gilbert  gentoo.org>

 .../musl/{musl-.ebuild => musl-1.2.3-r8.ebuild}| 18 +++---
 sys-libs/musl/musl-.ebuild | 18 +++---
 2 files changed, 22 insertions(+), 14 deletions(-)

diff --git a/sys-libs/musl/musl-.ebuild b/sys-libs/musl/musl-1.2.3-r8.ebuild
similarity index 92%
copy from sys-libs/musl/musl-.ebuild
copy to sys-libs/musl/musl-1.2.3-r8.ebuild
index 9cd55f813a6c..cc84710e0176 100644
--- a/sys-libs/musl/musl-.ebuild
+++ b/sys-libs/musl/musl-1.2.3-r8.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit eapi8-dosym flag-o-matic toolchain-funcs prefix
+inherit flag-o-matic toolchain-funcs prefix
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://git.musl-libc.org/musl"
inherit git-r3
@@ -38,7 +38,7 @@ HOMEPAGE="https://musl.libc.org";
 
 LICENSE="MIT LGPL-2 GPL-2"
 SLOT="0"
-IUSE="crypt headers-only"
+IUSE="crypt headers-only split-usr"
 
 QA_SONAME="usr/lib/libc.so"
 QA_DT_NEEDED="usr/lib/libc.so"
@@ -164,11 +164,15 @@ src_install() {
# During cross or within prefix, there's no guarantee that the 
host is
# using musl so that file may not exist. Use a relative symlink 
within
# ${D} instead.
-   rm -f "${ED}"/lib/ld-musl-${arch}.so.1 || die
-   dosym8 -r /usr/lib/libc.so /lib/ld-musl-${arch}.so.1
-
-   # If it's still a dead symlnk, OK, we really do need to abort.
-   [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
+   rm "${ED}"/lib/ld-musl-${arch}.so.1 || die
+   if use split-usr; then
+   dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1
+   # If it's still a dead symlnk, OK, we really do need to 
abort.
+   [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
+   else
+   dosym libc.so /usr/lib/ld-musl-${arch}.so.1
+   [[ -e "${ED}"/usr/lib/ld-musl-${arch}.so.1 ]] || die
+   fi
 
cp "${FILESDIR}"/ldconfig.in-r3 "${T}"/ldconfig.in || die
sed -e "s|@@ARCH@@|${arch}|" "${T}"/ldconfig.in > 
"${T}"/ldconfig || die

diff --git a/sys-libs/musl/musl-.ebuild b/sys-libs/musl/musl-.ebuild
index 9cd55f813a6c..cc84710e0176 100644
--- a/sys-libs/musl/musl-.ebuild
+++ b/sys-libs/musl/musl-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit eapi8-dosym flag-o-matic toolchain-funcs prefix
+inherit flag-o-matic toolchain-funcs prefix
 if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="git://git.musl-libc.org/musl"
inherit git-r3
@@ -38,7 +38,7 @@ HOMEPAGE="https://musl.libc.org";
 
 LICENSE="MIT LGPL-2 GPL-2"
 SLOT="0"
-IUSE="crypt headers-only"
+IUSE="crypt headers-only split-usr"
 
 QA_SONAME="usr/lib/libc.so"
 QA_DT_NEEDED="usr/lib/libc.so"
@@ -164,11 +164,15 @@ src_install() {
# During cross or within prefix, there's no guarantee that the 
host is
# using musl so that file may not exist. Use a relative symlink 
within
# ${D} instead.
-   rm -f "${ED}"/lib/ld-musl-${arch}.so.1 || die
-   dosym8 -r /usr/lib/libc.so /lib/ld-musl-${arch}.so.1
-
-   # If it's still a dead symlnk, OK, we really do need to abort.
-   [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
+   rm "${ED}"/lib/ld-musl-${arch}.so.1 || die
+   if use split-usr; then
+   dosym ../usr/lib/libc.so /lib/ld-musl-${arch}.so.1
+   # If it's still a dead symlnk, OK, we really do need to 
abort.
+   [[ -e "${ED}"/lib/ld-musl-${arch}.so.1 ]] || die
+   else
+   dosym libc.so /usr/lib/ld-musl-${arch}.so.1
+   [[ -e "${ED}"/usr/lib/ld-musl-${arch}.so.1 ]] || die
+   fi
 
cp "${FILESDIR}"/ldconfig.in-r3 "${T}"/ldconfig.in || die
sed -e "s|@@ARCH@@|${arch}|" "${T}"/ldconfig.in > 
"${T}"/ldconfig || die



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

2023-04-03 Thread Mike Gilbert
commit: de2bc56756fb3a7322c7f28a0cb50d2e392cfdd1
Author: Mike Gilbert  gentoo  org>
AuthorDate: Mon Apr  3 18:38:15 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Mon Apr  3 19:06:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de2bc567

sys-libs/musl: quote EPREFIX

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

 sys-libs/musl/musl-1.2.3-r8.ebuild | 6 +++---
 sys-libs/musl/musl-.ebuild | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/sys-libs/musl/musl-1.2.3-r8.ebuild 
b/sys-libs/musl/musl-1.2.3-r8.ebuild
index cc84710e0176..4073f5c246b7 100644
--- a/sys-libs/musl/musl-1.2.3-r8.ebuild
+++ b/sys-libs/musl/musl-1.2.3-r8.ebuild
@@ -111,8 +111,8 @@ src_configure() {
is_crosscompile && sysroot=/usr/${CTARGET}
./configure \
--target=${CTARGET} \
-   --prefix=${EPREFIX}${sysroot}/usr \
-   --syslibdir=${EPREFIX}${sysroot}/lib \
+   --prefix="${EPREFIX}${sysroot}/usr" \
+   --syslibdir="${EPREFIX}${sysroot}/lib" \
--disable-gcc-wrapper || die
 }
 
@@ -144,7 +144,7 @@ src_install() {
local sysroot
is_crosscompile && sysroot=/usr/${CTARGET}
local ldso=$(basename "${ED}"${sysroot}/lib/ld-musl-*)
-   dosym ${EPREFIX}${sysroot}/lib/${ldso} ${sysroot}/usr/bin/ldd
+   dosym "${EPREFIX}${sysroot}/lib/${ldso}" ${sysroot}/usr/bin/ldd
 
if ! use crypt ; then
# Allow sys-libs/libxcrypt[system] to provide it instead

diff --git a/sys-libs/musl/musl-.ebuild b/sys-libs/musl/musl-.ebuild
index cc84710e0176..4073f5c246b7 100644
--- a/sys-libs/musl/musl-.ebuild
+++ b/sys-libs/musl/musl-.ebuild
@@ -111,8 +111,8 @@ src_configure() {
is_crosscompile && sysroot=/usr/${CTARGET}
./configure \
--target=${CTARGET} \
-   --prefix=${EPREFIX}${sysroot}/usr \
-   --syslibdir=${EPREFIX}${sysroot}/lib \
+   --prefix="${EPREFIX}${sysroot}/usr" \
+   --syslibdir="${EPREFIX}${sysroot}/lib" \
--disable-gcc-wrapper || die
 }
 
@@ -144,7 +144,7 @@ src_install() {
local sysroot
is_crosscompile && sysroot=/usr/${CTARGET}
local ldso=$(basename "${ED}"${sysroot}/lib/ld-musl-*)
-   dosym ${EPREFIX}${sysroot}/lib/${ldso} ${sysroot}/usr/bin/ldd
+   dosym "${EPREFIX}${sysroot}/lib/${ldso}" ${sysroot}/usr/bin/ldd
 
if ! use crypt ; then
# Allow sys-libs/libxcrypt[system] to provide it instead



[gentoo-commits] repo/gentoo:master commit in: dev-ml/findlib/

2023-04-03 Thread Arthur Zamarin
commit: f0dd0fceaa5ca87266209b446bbcda830bcdabee
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:08:30 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:08:30 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0dd0fce

dev-ml/findlib: Stabilize 1.9.6-r1 arm, #901661

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

 dev-ml/findlib/findlib-1.9.6-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/findlib/findlib-1.9.6-r1.ebuild 
b/dev-ml/findlib/findlib-1.9.6-r1.ebuild
index 0e671bd12158..265ac12c7f5c 100644
--- a/dev-ml/findlib/findlib-1.9.6-r1.ebuild
+++ b/dev-ml/findlib/findlib-1.9.6-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="http://download.camlcity.org/download/${P}.tar.gz";
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv x86 
~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="doc +ocamlopt tk"
 
 DEPEND=">=dev-lang/ocaml-4.02.3-r1:=[ocamlopt?]



[gentoo-commits] repo/gentoo:master commit in: dev-ml/parmap/

2023-04-03 Thread Arthur Zamarin
commit: 319bbd26648f660d9fbae3fefcfb9f32de85dfa7
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:08:51 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:08:51 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=319bbd26

dev-ml/parmap: Stabilize 1.2.5 x86, #901659

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

 dev-ml/parmap/parmap-1.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/parmap/parmap-1.2.5.ebuild 
b/dev-ml/parmap/parmap-1.2.5.ebuild
index 50a1fbe3daba..8bddaebdb9aa 100644
--- a/dev-ml/parmap/parmap-1.2.5.ebuild
+++ b/dev-ml/parmap/parmap-1.2.5.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV/+/-}"
 
 LICENSE="LGPL-2-with-linking-exception"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
 IUSE="+ocamlopt"
 
 BDEPEND="dev-ml/dune-configurator:="



[gentoo-commits] repo/gentoo:master commit in: dev-ml/parmap/

2023-04-03 Thread Arthur Zamarin
commit: 77abfad0a2b033f333c9ac248150a999f638a085
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:08:49 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:08:49 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77abfad0

dev-ml/parmap: Stabilize 1.2.5 arm, #901659

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

 dev-ml/parmap/parmap-1.2.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/parmap/parmap-1.2.5.ebuild 
b/dev-ml/parmap/parmap-1.2.5.ebuild
index 0864edbdda32..50a1fbe3daba 100644
--- a/dev-ml/parmap/parmap-1.2.5.ebuild
+++ b/dev-ml/parmap/parmap-1.2.5.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/${PN}-${MY_PV/+/-}"
 
 LICENSE="LGPL-2-with-linking-exception"
 SLOT="0/${PV}"
-KEYWORDS="amd64 ~arm arm64 ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv ~x86"
 IUSE="+ocamlopt"
 
 BDEPEND="dev-ml/dune-configurator:="



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

2023-04-03 Thread Arthur Zamarin
commit: d0f5af7afc8c6d2bd8f11877754a4b8eeb190caf
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:09:26 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:09:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f5af7a

dev-lang/ocaml: Stabilize 4.05.0-r9 arm, #901711

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

 dev-lang/ocaml/ocaml-4.05.0-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild 
b/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild
index e6811e268de7..caa25a4b6e68 100644
--- a/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild
+++ b/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild
@@ -17,7 +17,7 @@ LICENSE="QPL-1.0 LGPL-2"
 # Everytime ocaml is updated to a new version, everything ocaml must be 
rebuilt,
 # so here we go with the subslot.
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="emacs flambda latex ncurses +ocamlopt spacetime X xemacs"
 
 RDEPEND="



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

2023-04-03 Thread Arthur Zamarin
commit: c0b9f984c27b26bdfe719ae1158ae944d0c8807d
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:09:29 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:09:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c0b9f984

dev-lang/ocaml: Stabilize 4.05.0-r9 arm64, #901711

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

 dev-lang/ocaml/ocaml-4.05.0-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild 
b/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild
index caa25a4b6e68..f793a8387363 100644
--- a/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild
+++ b/dev-lang/ocaml/ocaml-4.05.0-r9.ebuild
@@ -17,7 +17,7 @@ LICENSE="QPL-1.0 LGPL-2"
 # Everytime ocaml is updated to a new version, everything ocaml must be 
rebuilt,
 # so here we go with the subslot.
 SLOT="0/$(ver_cut 1-2)"
-KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 x86 ~amd64-linux 
~x86-linux ~ppc-macos ~sparc-solaris ~x86-solaris"
 IUSE="emacs flambda latex ncurses +ocamlopt spacetime X xemacs"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Net-IMAP-Simple/

2023-04-03 Thread Arthur Zamarin
commit: 3d53a250c418ff86d8661b84bd525ed01d568a5b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:03 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d53a250

dev-perl/Net-IMAP-Simple: Stabilize 1.221.200 ppc, #901801

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

 dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild 
b/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild
index 6fbd09506fdc..4bf0a82368e7 100644
--- a/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild
+++ b/dev-perl/Net-IMAP-Simple/Net-IMAP-Simple-1.221.200.ebuild
@@ -12,7 +12,7 @@ inherit perl-module
 DESCRIPTION="Perl extension for simple IMAP account handling"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="
virtual/perl-IO



[gentoo-commits] repo/gentoo:master commit in: mail-filter/spamassassin/

2023-04-03 Thread Arthur Zamarin
commit: 2eb586fd8c454739d557ae2edd6802aee3f9b4c5
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:00 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2eb586fd

mail-filter/spamassassin: Stabilize 4.0.0-r1 arm, #901801

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

 mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild 
b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
index 269fe8044e7b..6a6b2900bf5b 100644
--- a/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
+++ b/mail-filter/spamassassin/spamassassin-4.0.0-r1.ebuild
@@ -17,7 +17,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="Apache-2.0 GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86 
~amd64-linux ~x86-linux"
 IUSE="berkdb cron ipv6 ldap mysql postgres qmail sqlite ssl test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Throwable/

2023-04-03 Thread Arthur Zamarin
commit: 073dbc49141978e53bad887bf2a78a84248861f0
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:05 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=073dbc49

dev-perl/Throwable: Stabilize 1.0.0 ppc, #901801

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

 dev-perl/Throwable/Throwable-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Throwable/Throwable-1.0.0.ebuild 
b/dev-perl/Throwable/Throwable-1.0.0.ebuild
index ad26b3b99e59..ec5fbdc47e09 100644
--- a/dev-perl/Throwable/Throwable-1.0.0.ebuild
+++ b/dev-perl/Throwable/Throwable-1.0.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A role for classes that can be thrown"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: dev-perl/DBIx-Simple/

2023-04-03 Thread Arthur Zamarin
commit: 78655ef27d41cbfaab3f82cf56c4251e1aae541f
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:04 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78655ef2

dev-perl/DBIx-Simple: Stabilize 1.370.0 ppc, #901801

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

 dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild 
b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
index a576d1b25eb9..8c61b44ffe0b 100644
--- a/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
+++ b/dev-perl/DBIx-Simple/DBIx-Simple-1.370.0.ebuild
@@ -16,7 +16,7 @@ LICENSE="|| ( AFL-3.0 AGPL-3 APL-1.0 Apache-2.0 BSD-2 
Boost-1.0 CDDL CPAL-1.0
QPL-1.0 OFL-1.1 Sleepycat Watcom-1.0 W3C wxWinLL-3 ZLIB libpng
 )"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="test minimal"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Mail-DMARC/

2023-04-03 Thread Arthur Zamarin
commit: 734a7bf815fe39d5ee552786d3bcd042b0385373
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:06 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:06 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=734a7bf8

dev-perl/Mail-DMARC: Stabilize 1.202.109.270-r1 ppc, #901801

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

 dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild 
b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild
index b44a00511ad0..ca031765b1f2 100644
--- a/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild
+++ b/dev-perl/Mail-DMARC/Mail-DMARC-1.202.109.270-r1.ebuild
@@ -9,7 +9,7 @@ inherit perl-module
 
 DESCRIPTION="Perl implementation of DMARC"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 IUSE="minimal"
 
 PERL_RM_FILES=(



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Email-Sender/

2023-04-03 Thread Arthur Zamarin
commit: 8a66e088edb55a54461ce2f60703b55ab22e8245
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Mon Apr  3 19:10:05 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Mon Apr  3 19:10:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a66e088

dev-perl/Email-Sender: Stabilize 2.500.0 ppc, #901801

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

 dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild 
b/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
index d5849d91f566..4f569184a11f 100644
--- a/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
+++ b/dev-perl/Email-Sender/Email-Sender-2.500.0.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="A library for sending email"
 
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="
virtual/perl-Carp



  1   2   >