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

2023-05-09 Thread Miroslav Šulc
commit: a32b5232e59dcd59b233d55be95ce355f63d5d4f
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May 10 05:36:12 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 05:36:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a32b5232

dev-java/jakartaee-migration: bump to 1.0.7

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

 dev-java/jakartaee-migration/Manifest  |  1 +
 .../jakartaee-migration-1.0.7.ebuild   | 89 ++
 2 files changed, 90 insertions(+)

diff --git a/dev-java/jakartaee-migration/Manifest 
b/dev-java/jakartaee-migration/Manifest
index a3a1cf6aa5a0..b392a5f7d49c 100644
--- a/dev-java/jakartaee-migration/Manifest
+++ b/dev-java/jakartaee-migration/Manifest
@@ -1 +1,2 @@
 DIST jakartaee-migration-1.0.6-sources.tar.gz 42167 BLAKE2B 
9252078f3b31e07dab533ca9d1d32812f49571adf942a3f11bf074d2110b5fb0c2500dae244b10597f0d76c18bb153cd577528cb01ff01350abb46d32251293a
 SHA512 
81ecfe561695e4e5cacaed0ef89e5759e357b332f2798ac6f3d89c43c9a5dfed1a684745b7fe3afe6d1e82ac9405fd2de68da599a53bfe5f67397b452753b572
+DIST jakartaee-migration-1.0.7-sources.tar.gz 43381 BLAKE2B 
9a1a6bfd217f77890940240c6c860e21e0b72c758a63426a0c63009213738a9322a758d4525a9a8a8c69883c490edf128d8b70a6120ede431da434c4d1408e19
 SHA512 
f7edd70b997b2ae2a93b14b93c5b6dcb80de04f554125729f89e62eddaecfbfea21b304226887edb029c8a7b255b50a55a38381d017c7d44859f2e56b912f25a

diff --git a/dev-java/jakartaee-migration/jakartaee-migration-1.0.7.ebuild 
b/dev-java/jakartaee-migration/jakartaee-migration-1.0.7.ebuild
new file mode 100644
index ..212872e15d9a
--- /dev/null
+++ b/dev-java/jakartaee-migration/jakartaee-migration-1.0.7.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+MAVEN_ID="org.apache.tomcat:jakartaee-migration:1.0.7"
+JAVA_TESTING_FRAMEWORKS="junit-4"
+
+inherit java-pkg-2 java-pkg-simple
+
+DESCRIPTION="Apache Tomcat tool for migration from Java EE 8 to Jakarta EE 9"
+HOMEPAGE="https://tomcat.apache.org";
+SRC_URI="mirror://apache/tomcat/${PN}/v${PV}/source/${P}-src.tar.gz -> 
${P}-sources.tar.gz"
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64"
+
+# Common dependencies
+# POM: pom.xml
+# commons-io:commons-io:2.11.0 -> >=dev-java/commons-io-2.11.0:1
+# org.apache.bcel:bcel:6.6.0 -> >=dev-java/bcel-6.6.0:0
+# org.apache.commons:commons-compress:1.22 -> 
!!!suitable-mavenVersion-not-found!!!
+
+CDEPEND="
+   dev-java/ant-core:0
+   dev-java/bcel:0
+   dev-java/commons-compress:0
+   dev-java/commons-io:1
+"
+
+# Compile dependencies
+# POM: pom.xml
+# org.apache.ant:ant:1.10.12 -> !!!suitable-mavenVersion-not-found!!!
+# POM: pom.xml
+# test? junit:junit:4.13.2 -> >=dev-java/junit-4.13.2:4
+
+DEPEND="
+   >=virtual/jdk-1.8:*
+   ${CDEPEND}
+"
+
+RDEPEND="
+   >=virtual/jre-1.8:*
+   ${CDEPEND}"
+
+S="${WORKDIR}/${P}"
+
+JAVA_LAUNCHER_FILENAME="${PN}"
+
+JAVA_GENTOO_CLASSPATH="ant-core,bcel,commons-compress,commons-io-1"
+JAVA_SRC_DIR="src/main/java"
+JAVA_MAIN_CLASS="org.apache.tomcat.jakartaee.MigrationCLI"
+JAVA_RESOURCE_DIRS=(
+   "src/main/resources"
+)
+
+JAVA_TEST_GENTOO_CLASSPATH="junit-4"
+JAVA_TEST_SRC_DIR="src/test/java"
+JAVA_TEST_RESOURCE_DIRS=(
+   "src/test/resources"
+)
+JAVA_TEST_EXCLUDES=(
+   "org.apache.tomcat.jakartaee.TesterConstants"
+)
+
+src_prepare() {
+   default
+   sed -i "s/\${project.version}/${PV}/g" 
src/main/resources/info.properties
+}
+
+src_test() {
+   # we need to create jar files for the tests the same way as it's done 
using pom.xml
+   local implementation_version=$(grep Implementation-Version pom.xml | 
grep -oE "[0-9]+\.[0-9]+\.[0-9]+")
+   mkdir -p target/test-classes/META-INF || die
+   pushd target/test-classes || die
+   echo "Implementation-Version: ${implementation_version}" > 
META-INF/MANIFEST.MF
+   ejavac -d . -encoding ${JAVA_ENCODING} $(find 
"${S}/${JAVA_TEST_SRC_DIR}" -name CommonGatewayInterface.java) || die
+   jar cfm cgi-api.jar META-INF/MANIFEST.MF $(find -name 
CommonGatewayInterface.class) || die
+   ejavac -d . -encoding ${JAVA_ENCODING} $(find 
"${S}/${JAVA_TEST_SRC_DIR}" -name HelloCGI.java) || die
+   jar cfm hellocgi.jar META-INF/MANIFEST.MF $(find -name HelloCGI.class) 
|| die
+   for enc in rsa dsa ec; do
+   cp hellocgi.jar hellocgi-signed-${enc}.jar || die
+   jarsigner -keystore "${S}/src/test/resources/keystore.p12" 
-storepass apache hellocgi-signed-${enc}.jar ${enc} || die
+   done
+   popd
+
+   java-pkg-simple_src_test
+}



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

2023-05-09 Thread Miroslav Šulc
commit: b1e56be18ee653048dd45012dee01e0e67a187eb
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May 10 05:24:58 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 05:24:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1e56be1

media-sound/hydrogen: dropped obsolete 1.1.1

Bug: https://bugs.gentoo.org/905988
Closes: https://bugs.gentoo.org/860864
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/hydrogen/Manifest  |  1 -
 media-sound/hydrogen/hydrogen-1.1.1.ebuild | 97 --
 2 files changed, 98 deletions(-)

diff --git a/media-sound/hydrogen/Manifest b/media-sound/hydrogen/Manifest
index 6527063b4adf..93d5a42013e8 100644
--- a/media-sound/hydrogen/Manifest
+++ b/media-sound/hydrogen/Manifest
@@ -1,2 +1 @@
-DIST hydrogen-1.1.1.tar.gz 11417837 BLAKE2B 
52f6f61fc6e247875688dcea2290d92eb7bc85910620f0adcb52506d587b02dcaec6e2ecb72c77cf4eb3134534c75fc64bc4dd76a63f886cc6ea07d9b8812089
 SHA512 
c5e6bd713a0f9ef3b30bf0ae00bc41fea7494c20342c14c9f41ec05d1fdd3be721ffc3ff92bacd011e3b39a68022ea04daf55e60d334f64a00abef17d892cd37
 DIST hydrogen-1.2.0.tar.gz 12911501 BLAKE2B 
606bfd977e67a962933e331bd1d4985a898e14c3d72656aa38fc3d50fa1daeb301a00778114e46a4890af548816befc8deb598bbc65a122e8a36694ce7740776
 SHA512 
610dc292ab26880897030ee7e969caf11e2758e0cccdc15b21711a2114564e12af855b50f0cf13964689b6697255c5f2080e2114c916ea6fbe3909057e7de1df

diff --git a/media-sound/hydrogen/hydrogen-1.1.1.ebuild 
b/media-sound/hydrogen/hydrogen-1.1.1.ebuild
deleted file mode 100644
index 5970af66e1fb..
--- a/media-sound/hydrogen/hydrogen-1.1.1.ebuild
+++ /dev/null
@@ -1,97 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit cmake xdg
-
-DESCRIPTION="Advanced drum machine"
-HOMEPAGE="http://www.hydrogen-music.org/";
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/${PN}-music/${PN}";
-else
-   MY_PV=${PV/_/-}
-   SRC_URI="https://github.com/${PN}-music/${PN}/archive/${MY_PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="amd64 ppc ppc64 x86"
-   S="${WORKDIR}"/${PN}-${MY_PV}
-fi
-
-LICENSE="GPL-2 ZLIB"
-SLOT="0"
-IUSE="alsa +archive doc jack ladspa lash osc oss portaudio portmidi pulseaudio"
-
-REQUIRED_USE="lash? ( alsa )"
-
-BDEPEND="
-   dev-qt/linguist-tools:5
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )
-"
-CDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtxml:5
-   dev-qt/qtxmlpatterns:5
-   >=media-libs/libsndfile-1.0.18
-   alsa? ( media-libs/alsa-lib )
-   archive? ( app-arch/libarchive )
-   !archive? ( >=dev-libs/libtar-1.2.11-r3 )
-   doc? ( dev-texlive/texlive-fontutils )
-   jack? ( virtual/jack )
-   ladspa? ( media-libs/liblrdf )
-   lash? ( media-sound/lash )
-   osc? ( media-libs/liblo )
-   portaudio? ( media-libs/portaudio )
-   portmidi? ( media-libs/portmidi )
-   pulseaudio? ( media-sound/pulseaudio )
-"
-DEPEND="
-   ${CDEPEND}
-   dev-qt/qttest:5
-"
-RDEPEND="${CDEPEND}"
-
-DOCS=( AUTHORS ChangeLog DEVELOPERS README.txt )
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.1.0-gnuinstalldirs.patch"
-)
-
-src_prepare() {
-   cmake_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DWANT_ALSA=$(usex alsa)
-   -DWANT_CPPUNIT=OFF
-   -DWANT_DEBUG=OFF
-   -DWANT_JACK=$(usex jack)
-   -DWANT_LADSPA=$(usex ladspa)
-   -DWANT_LASH=$(usex lash)
-   -DWANT_LIBARCHIVE=$(usex archive)
-   -DWANT_LRDF=$(usex ladspa)
-   -DWANT_OSC=$(usex osc)
-   -DWANT_OSS=$(usex oss)
-   -DWANT_PORTAUDIO=$(usex portaudio)
-   -DWANT_PORTMIDI=$(usex portmidi)
-   -DWANT_PULSEAUDIO=$(usex pulseaudio)
-   -DWANT_RUBBERBAND=OFF
-   )
-
-   cmake_src_configure
-}
-
-src_compile() {
-   cmake_src_compile
-   use doc && cmake_src_compile doc
-}
-
-src_install() {
-   use doc && local HTML_DOCS=( "${BUILD_DIR}"/docs/html/. )
-   cmake_src_install
-}



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

2023-05-09 Thread Miroslav Šulc
commit: daa084f54fc4944db172c6cc21c31fece77dda17
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May 10 05:21:26 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 05:21:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daa084f5

media-plugins/audacious-plugins: dropped obsolete 4.2

Bug: https://bugs.gentoo.org/905915
Closes: https://bugs.gentoo.org/882667
Closes: https://bugs.gentoo.org/867355
Closes: https://bugs.gentoo.org/900052
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-plugins/audacious-plugins/Manifest   |   1 -
 .../audacious-plugins-4.2-r2.ebuild| 162 -
 2 files changed, 163 deletions(-)

diff --git a/media-plugins/audacious-plugins/Manifest 
b/media-plugins/audacious-plugins/Manifest
index 0f18bca76c0b..10922657d2a7 100644
--- a/media-plugins/audacious-plugins/Manifest
+++ b/media-plugins/audacious-plugins/Manifest
@@ -1,3 +1,2 @@
-DIST audacious-plugins-4.2.tar.bz2 1947472 BLAKE2B 
405fe7d30f190590955e66540595059869aed920b5cbaffa84439a336b20e6016c704dd3d3775521bde5c3bef0954aae96d72587d6c383966d63dd955b7a6b4a
 SHA512 
632f1ac90c3a079bb92120e4bc6ef6b13f3f809f150809a64569fae49c908dafeb30e16a34d18bb081e099fe2a252a7ed8b76da129ffa0d51b16216f0b6d1282
 DIST audacious-plugins-4.3.1.tar.bz2 1786114 BLAKE2B 
7d0a88411dc389e9f250ac126c02eff217ab4feb581527789cfe190f0fd997671fe06664d574d531296d884b2ae4f85f31a25f79ef09bd9db39640f17a0a97cf
 SHA512 
ca065b4558406702e4f2aa2ac085ea02d3215e689e09e9c0b6a740970a469297910df52cd222997e8a4206a68d3a064ac3f6d94c6412830ce8bd34a5b42c30da
 DIST audacious-plugins-4.3.tar.bz2 1932184 BLAKE2B 
a62e7e3600b21a8af9248cd1b244dd736693e29f3d5374d68417bd46eb37263109b926beb9aa587ebb98bcea8d03c6d8fdd96f0dcb7e6665199b0b34c9fe
 SHA512 
51ffb38917bc9cf13d433c39843b37cbad6ef2a0db8b5da65ba18f8e547c94cfb979f0c8f4413080c56bc33d4f2ae47f92679ee5c11225aa47d85abfd27c0810

diff --git a/media-plugins/audacious-plugins/audacious-plugins-4.2-r2.ebuild 
b/media-plugins/audacious-plugins/audacious-plugins-4.2-r2.ebuild
deleted file mode 100644
index 761bfed203eb..
--- a/media-plugins/audacious-plugins/audacious-plugins-4.2-r2.ebuild
+++ /dev/null
@@ -1,162 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="${P/_/-}"
-
-DESCRIPTION="Lightweight and versatile audio player"
-HOMEPAGE="https://audacious-media-player.org/";
-SRC_URI="https://distfiles.audacious-media-player.org/${MY_P}.tar.bz2";
-
-KEYWORDS="amd64 ~riscv x86"
-LICENSE="GPL-2"
-SLOT="0"
-IUSE="
-   aac +alsa ampache bs2b cdda cue ffmpeg flac fluidsynth gme http jack
-   openmpt lame libnotify libsamplerate lirc mms modplug mp3 nls opengl
-   pulseaudio scrobbler sdl sid sndfile soxr speedpitch streamtuner vorbis
-   wavpack
-"
-
-REQUIRED_USE="ampache? ( http ) streamtuner? ( http )"
-
-# The following plugins REQUIRE a GUI build of audacious, because non-GUI
-# builds do NOT install the libaudgui library & headers.
-# Plugins without a configure option:
-#   alarm
-#   albumart
-#   delete-files
-#   ladspa
-#   playlist-manager
-#   search-tool
-#   skins
-#   vtx
-# Plugins with a configure option:
-#   glspectrum
-#   gtkui
-#   hotkey
-#   notify
-#   statusicon
-BDEPEND="
-   dev-util/gdbus-codegen
-   virtual/pkgconfig
-   nls? ( dev-util/intltool )
-"
-DEPEND="
-   app-arch/unzip
-   dev-libs/glib:2
-   dev-libs/libxml2:2
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtwidgets:5
-   ~media-sound/audacious-${PV}
-   sys-libs/zlib
-   x11-libs/gdk-pixbuf:2
-   aac? ( >=media-libs/faad2-2.7 )
-   alsa? ( >=media-libs/alsa-lib-1.0.16 )
-   ampache? ( =media-libs/ampache_browser-1*:= )
-   bs2b? ( media-libs/libbs2b )
-   cdda? (
-   dev-libs/libcdio:=
-   dev-libs/libcdio-paranoia:=
-   >=media-libs/libcddb-1.2.1
-   )
-   cue? ( media-libs/libcue:= )
-   ffmpeg? ( >=media-video/ffmpeg-0.7.3 )
-   flac? (
-   >=media-libs/flac-1.2.1-r1:=
-   >=media-libs/libvorbis-1.0
-   )
-   fluidsynth? ( media-sound/fluidsynth:= )
-   http? ( >=net-libs/neon-0.26.4 )
-   jack? (
-   >=media-libs/bio2jack-0.4
-   virtual/jack
-   )
-   lame? ( media-sound/lame )
-   libnotify? ( x11-libs/libnotify )
-   openmpt? ( media-libs/libopenmpt )
-   libsamplerate? ( media-libs/libsamplerate:= )
-   lirc? ( app-misc/lirc )
-   mms? ( >=media-libs/libmms-0.3 )
-   modplug? ( media-libs/libmodplug )
-   mp3? ( >=media-sound/mpg123-1.12.1 )
-   opengl? ( dev-qt/qtopengl:5 )
-   pulseaudio? ( >=media-sound/pulseaudio-0.9.3 )
-   scrobbler? ( net-misc/curl )
-   sdl? ( media-libs/libsdl2[sound] )
-   sid? ( >=media-libs/libsidplayfp-1.0.0 )
-   sndfile? ( >=media-libs

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

2023-05-09 Thread Miroslav Šulc
commit: 8782ef5a11738e6750b2396aaef3182b37fadba9
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May 10 05:20:13 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 05:21:34 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8782ef5a

media-sound/audacious: dropped obsolete 4.2

Bug: https://bugs.gentoo.org/905915
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/audacious/Manifest |  1 -
 media-sound/audacious/audacious-4.2.ebuild | 67 --
 2 files changed, 68 deletions(-)

diff --git a/media-sound/audacious/Manifest b/media-sound/audacious/Manifest
index c67cf6342eaa..ea10d45cb001 100644
--- a/media-sound/audacious/Manifest
+++ b/media-sound/audacious/Manifest
@@ -1,4 +1,3 @@
-DIST audacious-4.2.tar.bz2 612155 BLAKE2B 
04a910288278fa27cb4848663ab74f9e523f3cbea7851e28f5e197035c4ad17281e9b0d5756602efb531a65aeb8e6b7abd7b11274af3353f6ac1d21a0bd4c47c
 SHA512 
814bd865e87cf9bc39df07c9f9898eca1dd94d8b8299b2709f77046669ce12e9c31067d55084371f6797724e79872f7571b575cc766093ee2124b38b0409a853
 DIST audacious-4.3.1.tar.bz2 630820 BLAKE2B 
e8885d25cce4a480ac58c5ee1874a530f4b169f264eaafb13830be17ce7e25933a2fb491ed0b86220fdb2e916ea5d7b13bca8a5ac00695ffd06e1ad8b2a6ff67
 SHA512 
7662a1b136c6ced346ce160a3a6b71ea5941644860466e23248a44168179118202006e8892a5bbd1f6d77730846a4644b6cb4e008af38e1117588b9f4d1521f5
 DIST audacious-4.3.tar.bz2 623855 BLAKE2B 
a00d5f4fafff6eec5aba0374ba41b0521e60814421845d4cad284bb12bc67623d27d2101f5ba3c72bf7ab68d7f53f3c5473fd173bd929c35de51c4d2ff3ccde0
 SHA512 
7e92739ffd6adb62c6efe11b3107fc6d2d45ba5bbb6375227f4c51387e0bbca2a5c1020b25a97933b9f02d3e726b22a21f7566ffac8b08ddfad609c3dc0e
 DIST gentoo_ice-xmms-0.2.tar.bz2 51839 BLAKE2B 
d3bf8dbfee675dd588bc0258f1015c76877b6b0a3835813d8e9621d149b924aaa33544d07f7ad44a01c058d41d7480b3908b0773c124af33b6e020c376b13d54
 SHA512 
e863a8f86073007c47ce8c20739aae4bff22e22a7ddc11556b12ae6ebb68654cec7310fdc9d05f2c47f81cf2591fe601b2eb12a2fd911c0a6118c9f3cc524f05

diff --git a/media-sound/audacious/audacious-4.2.ebuild 
b/media-sound/audacious/audacious-4.2.ebuild
deleted file mode 100644
index 70f5385f84fe..
--- a/media-sound/audacious/audacious-4.2.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-MY_P="${P/_/-}"
-
-inherit xdg
-
-DESCRIPTION="Lightweight and versatile audio player"
-HOMEPAGE="https://audacious-media-player.org/";
-SRC_URI="https://distfiles.audacious-media-player.org/${MY_P}.tar.bz2";
-SRC_URI+=" mirror://gentoo/gentoo_ice-xmms-0.2.tar.bz2"
-
-KEYWORDS="amd64 ~riscv x86"
-LICENSE="BSD-2"
-SLOT="0"
-IUSE="nls"
-
-BDEPEND="
-   virtual/pkgconfig
-   nls? ( dev-util/intltool )
-"
-DEPEND="
-   dev-libs/glib:2
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtwidgets:5
-   virtual/freedesktop-icon-theme
-"
-RDEPEND="${DEPEND}"
-PDEPEND="~media-plugins/audacious-plugins-${PV}"
-
-S="${WORKDIR}/${MY_P}"
-
-src_prepare() {
-   default
-   if ! use nls; then
-   sed -e "/SUBDIRS/s/ po//" -i Makefile || die "failed to sed" # 
bug #512698
-   fi
-}
-
-src_configure() {
-   # D-Bus is a mandatory dependency, remote control,
-   # session management and some plugins depend on this.
-   # Building without D-Bus is *unsupported* and a USE-flag
-   # will not be added due to the bug reports that will result.
-   # Bugs #197894, #199069, #207330, #208606
-   local myeconfargs=(
-   --disable-valgrind
-   --disable-gtk
-   --enable-dbus
-   --enable-qt
-   $(use_enable nls)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-
-   # Gentoo_ice skin installation; bug #109772
-   insinto /usr/share/audacious/Skins/gentoo_ice
-   doins -r "${WORKDIR}"/gentoo_ice/.
-   docinto gentoo_ice
-   dodoc "${WORKDIR}"/README
-}



[gentoo-commits] repo/gentoo:master commit in: app-containers/netavark/

2023-05-09 Thread Zac Medico
commit: d14b67121deae22adcb106f084fa2f0590e7ebaf
Author: Zac Medico  gentoo  org>
AuthorDate: Wed May 10 05:14:18 2023 +
Commit: Zac Medico  gentoo  org>
CommitDate: Wed May 10 05:15:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d14b6712

app-containers/netavark: Update QA_FLAGS_IGNORED

Closes: https://bugs.gentoo.org/905991
Signed-off-by: Zac Medico  gentoo.org>

 app-containers/netavark/netavark-1.6.0.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-containers/netavark/netavark-1.6.0.ebuild 
b/app-containers/netavark/netavark-1.6.0.ebuild
index bffdfff8980c..16bc06246d0a 100644
--- a/app-containers/netavark/netavark-1.6.0.ebuild
+++ b/app-containers/netavark/netavark-1.6.0.ebuild
@@ -268,7 +268,9 @@ KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv"
 BDEPEND="dev-go/go-md2man
dev-libs/protobuf"
 
-QA_FLAGS_IGNORED="usr/bin/${PN}"
+QA_FLAGS_IGNORED="usr/bin/${PN}
+   usr/bin/${PN}-dhcp-proxy-client
+   usr/libexec/podman/${PN}"
 
 src_compile() {
go-md2man -in docs/netavark.1.md -out docs/netavark.1 || die



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

2023-05-09 Thread Miroslav Šulc
commit: 968c958bb47b5e2260fe9eebfbadf65adeb28d67
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed May 10 05:13:13 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 05:13:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=968c958b

media-sound/ncmpc: dropped obsolete 0.47

Bug: https://bugs.gentoo.org/905916
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/ncmpc/Manifest  |  1 -
 media-sound/ncmpc/ncmpc-0.47.ebuild | 67 -
 2 files changed, 68 deletions(-)

diff --git a/media-sound/ncmpc/Manifest b/media-sound/ncmpc/Manifest
index 40c93a97a95d..0ff059364f1a 100644
--- a/media-sound/ncmpc/Manifest
+++ b/media-sound/ncmpc/Manifest
@@ -1,2 +1 @@
-DIST ncmpc-0.47.tar.xz 291400 BLAKE2B 
4b9e5bcc435b6064c054ad84000986942a63e78decb26b73b4f3ec8d261e4e752e11d40ed5bdcbaab260b37f1a59b99708be05ade44973fee3f2b1e6d9d1
 SHA512 
6c9990ca9a0781eef67fae8b20ceec5fc00177b1db2b08cfdf122dd1f61f87a92030baadcaac154d73ddee622c963481d4e37d46f76a4ef21e51d4f18a6f3e6a
 DIST ncmpc-0.48.tar.xz 296320 BLAKE2B 
ee25298af9d50eff646d74aa8908358a3df7b5ca7cf0666b6d3d31027e66d1219c2a48c5097e160d728db2965e2113a0915accac0d97f246d6e75152a2c9a1b3
 SHA512 
71739fefe696402d4a594a0c931bae0d6fc26f2b7203c51b3d6664c703276ad55f32ea247e1100224a3072386b6de067c1c2e43aa8b6cfac564f7f215ec11f7b

diff --git a/media-sound/ncmpc/ncmpc-0.47.ebuild 
b/media-sound/ncmpc/ncmpc-0.47.ebuild
deleted file mode 100644
index 969bcddf6853..
--- a/media-sound/ncmpc/ncmpc-0.47.ebuild
+++ /dev/null
@@ -1,67 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit meson
-
-DESCRIPTION="Ncurses client for the Music Player Daemon (MPD)"
-HOMEPAGE="https://www.musicpd.org/clients/ncmpc/ 
https://github.com/MusicPlayerDaemon/ncmpc";
-SRC_URI="https://www.musicpd.org/download/${PN}/${PV%.*}/${P}.tar.xz";
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 ~sparc x86"
-IUSE="async-connect chat-screen doc +help-screen key-screen +library-screen 
lirc lyrics-screen +mouse nls outputs-screen pcre search-screen +song-screen"
-
-BDEPEND="
-   virtual/pkgconfig
-   doc? ( dev-python/sphinx )
-"
-RDEPEND="
-   media-libs/libmpdclient
-   sys-libs/ncurses:=[unicode(+)]
-   lirc? ( app-misc/lirc )
-   pcre? ( dev-libs/libpcre2 )
-"
-DEPEND="${RDEPEND}"
-
-src_prepare() {
-   default
-
-   # use correct docdir and don't install license file
-   sed -e "/^docdir =/s/meson.project_name()/'${PF}'/" \
-   -e "s/'COPYING', //" \
-   -i meson.build || die
-
-   # use correct (html) docdir
-   sed -e "/install_dir:.*doc/s/meson.project_name()/'${PF}'/" \
-   -i doc/meson.build || die
-}
-
-src_configure() {
-   local emesonargs=(
-   -Dcurses=ncursesw
-   -Dcolors=true
-   -Dmini=false
-   -Dlyrics_plugin_dir="${EPREFIX}/usr/$(get_libdir)/ncmpc/lyrics"
-   -Dasync_connect=$(usex async-connect true false)
-   -Dchat_screen=$(usex chat-screen true false)
-   -Ddocumentation=$(usex doc enabled disabled)
-   -Dhelp_screen=$(usex help-screen true false)
-   -Dkey_screen=$(usex key-screen true false)
-   -Dlibrary_screen=$(usex library-screen true false)
-   -Dlirc=$(usex lirc enabled disabled)
-   -Dlocale=$(usex nls enabled disabled)
-   -Dlyrics_screen=$(usex lyrics-screen true false)
-   -Dmouse=$(usex mouse enabled disabled)
-   -Dmultibyte=$(usex nls true false)
-   -Dnls=$(usex nls enabled disabled)
-   -Doutputs_screen=$(usex outputs-screen true false)
-   -Dregex=$(usex pcre enabled disabled)
-   -Dsearch_screen=$(usex search-screen true false)
-   -Dsong_screen=$(usex song-screen true false)
-   )
-
-   meson_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/jna/, dev-java/jna/files/

2023-05-09 Thread Miroslav Šulc
commit: 534c13da07a4e2dd14c6c2754b22238606db99c9
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Sun May  7 06:38:40 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 04:59:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=534c13da

dev-java/jna: add 5.13.0

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/30953
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/jna/Manifest|   1 +
 dev-java/jna/files/jna-5.13.0-testpath.patch | 103 +++
 dev-java/jna/jna-5.13.0.ebuild   | 191 +++
 3 files changed, 295 insertions(+)

diff --git a/dev-java/jna/Manifest b/dev-java/jna/Manifest
index 8790b86f56df..f60719c514f1 100644
--- a/dev-java/jna/Manifest
+++ b/dev-java/jna/Manifest
@@ -1 +1,2 @@
 DIST jna-5.11.0.tar.gz 107424072 BLAKE2B 
9f79a0b0e643c8213c159785814dffaeee2dc3b332647c5c887aa5a6e707be5241d392e75730b803b21362fcbdcee82d7049bcdfb7956039f1534e3cd8e170cf
 SHA512 
0122b56c24125e5dea541bee71b43f127df50c8f90b2c240271c677a8d598d9640bb920bd3390856124e8b1bc89a9bd41d2b6c569ae7275f68a13c08fd07027d
+DIST jna-5.13.0.tar.gz 116027625 BLAKE2B 
1f2bc7ab28adefa0bbad122957ed2c6ef55ab88e79b30c05f0d2d88e0e05152f7bb5e28097906a7e24f78304dfa2b225587adb0ada205ca3c2ceac1cdbab3f04
 SHA512 
aefd0becc03bb7fd753e8c5cdcbcb20f6d590125a5fb03048bef0024e826ab0254b750e22a8bb26bea38cc89262ad45e5030b666cb2c857b01b15a6a55379a0f

diff --git a/dev-java/jna/files/jna-5.13.0-testpath.patch 
b/dev-java/jna/files/jna-5.13.0-testpath.patch
new file mode 100644
index ..7bd918c4181a
--- /dev/null
+++ b/dev-java/jna/files/jna-5.13.0-testpath.patch
@@ -0,0 +1,103 @@
+This patch solves several test failures on com.sun.jna.LibraryLoadTest like
+"Expected JNA native library at build/native-linux-x86-64/libtestlib.so is 
missing"
+--- a/test/com/sun/jna/Paths.java
 b/test/com/sun/jna/Paths.java
+@@ -47,12 +47,12 @@ public interface Paths {
+  USING_CLOVER
+  ? "build.clover" : "build");
+ String CLASSES = BUILDDIR + (Platform.isWindowsCE() ? "" : "/classes");
+-String JNAJAR = BUILDDIR + "/jna.jar";
++String JNAJAR = "jna.jar";
+ 
+ String TESTPATH = Platform.isWindowsCE()
+ ? "/Storage Card/"
+ : System.getProperty("jna.nativedir",
+- BUILDDIR + "/native-" + Platform.RESOURCE_PREFIX 
+ "/");
++ BUILDDIR + "/native/");
+ String TESTJAR = BUILDDIR + "/jna-test.jar";
+ String TESTJAR2 = BUILDDIR + "/jna-test2.jar";
+ String TESTJAR3 = BUILDDIR + "/jna-test3.jar";
+1) testAvoidJarUnpacking(com.sun.jna.JNALoadTest)
+java.lang.ClassNotFoundException: com.sun.jna.Native
+   at java.net.URLClassLoader.findClass(URLClassLoader.java:387)
+   at com.sun.jna.JNALoadTest$TestLoader.findClass(JNALoadTest.java:64)
+   at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
+   at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
+   at java.lang.Class.forName0(Native Method)
+   at java.lang.Class.forName(Class.java:348)
+   at com.sun.jna.JNALoadTest.testAvoidJarUnpacking(JNALoadTest.java:94)
+2) testLoadAndUnloadFromJar(com.sun.jna.JNALoadTest)
+java.lang.ClassNotFoundException: com.sun.jna.Native
+   at java.net.URLClassLoader.findClass(URLClassLoader.java:387)
+   at com.sun.jna.JNALoadTest$TestLoader.findClass(JNALoadTest.java:64)
+   at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
+   at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
+   at java.lang.Class.forName0(Native Method)
+   at java.lang.Class.forName(Class.java:348)
+   at 
com.sun.jna.JNALoadTest.testLoadAndUnloadFromJar(JNALoadTest.java:128)
+3) testAvoidResourcePathLoading(com.sun.jna.JNALoadTest)
+java.lang.Error: Expected JNA library at 
build/classes/com/sun/jna/linux-x86-64/libjnidispatch.so is missing
+   at com.sun.jna.JNALoadTest.assertLibraryExists(JNALoadTest.java:87)
+   at com.sun.jna.JNALoadTest$TestLoader.(JNALoadTest.java:54)
+   at 
com.sun.jna.JNALoadTest.testAvoidResourcePathLoading(JNALoadTest.java:109)
+4) testLoadFromUnicodePath(com.sun.jna.JNALoadTest)
+java.lang.ClassNotFoundException: com.sun.jna.Native
+   at java.net.URLClassLoader.findClass(URLClassLoader.java:387)
+   at com.sun.jna.JNALoadTest$TestLoader.findClass(JNALoadTest.java:64)
+   at java.lang.ClassLoader.loadClass(ClassLoader.java:418)
+   at java.lang.ClassLoader.loadClass(ClassLoader.java:351)
+   at java.lang.Class.forName0(Native Method)
+   at java.lang.Class.forName(Class.java:348)
+   at com.sun.jna.JNALoadTest.testLoadFromUnicodePath(JNALoadTest.java:255)
+5) testLoadAndUnloadFromResourcePath(com.sun.jna.JNALoadTest)
+java.lang.Error: Expected JNA library at 
build/classes/com/sun/jna/linux-x86-64/libjnidispatch.so is missing
+   at com

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

2023-05-09 Thread Miroslav Šulc
commit: a4618c2843b94f26c42e47af20e1ec09e22051ce
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Tue May  9 06:04:22 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 04:57:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4618c28

dev-java/fop: drop 2.8

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Signed-off-by: Miroslav Šulc  gentoo.org>

 dev-java/fop/fop-2.8.ebuild | 166 
 1 file changed, 166 deletions(-)

diff --git a/dev-java/fop/fop-2.8.ebuild b/dev-java/fop/fop-2.8.ebuild
deleted file mode 100644
index e78205ca474e..
--- a/dev-java/fop/fop-2.8.ebuild
+++ /dev/null
@@ -1,166 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc source test"
-MAVEN_ID="org.apache.xmlgraphics:fop:${PV}"
-JAVA_TESTING_FRAMEWORKS="junit-4"
-
-inherit java-pkg-2 java-pkg-simple
-
-DESCRIPTION="XML Graphics Format Object Processor All-In-One"
-HOMEPAGE="https://xmlgraphics.apache.org/fop/";
-SRC_URI="
-   mirror://apache/xmlgraphics/fop/source/${P}-src.tar.gz
-   https://dev.gentoo.org/~flow/distfiles/fop/fop-2.7-jars.tar.xz
-"
-S="${WORKDIR}/fop-${PV}"
-
-LICENSE="Apache-2.0"
-SLOT="2.8"
-KEYWORDS="amd64 ~arm64 ppc64 x86"
-
-CP_DEPEND="
-   dev-java/batik:1.16
-   dev-java/commons-io:1
-   dev-java/commons-logging:0
-   dev-java/fontbox:0
-   dev-java/qdox:1.12
-   dev-java/xmlgraphics-commons:2
-"
-
-DEPEND="${CP_DEPEND}
-   >=virtual/jdk-1.8:*
-   dev-java/ant-core:0
-   dev-java/javax-servlet-api:2.2
-   dev-java/sun-jai-bin:0
-   test? (
-   dev-java/mockito:4
-   dev-java/pdfbox:0
-   dev-java/xmlunit:1
-   )
-"
-
-RDEPEND="${CP_DEPEND}
-   >=virtual/jre-1.8:*"
-
-BDEPEND="dev-java/xalan:0"
-
-DOCS=( NOTICE README )
-
-JAVA_CLASSPATH_EXTRA="
-   ant-core
-   javax-servlet-api-2.2
-   sun-jai-bin
-"
-
-src_prepare() {
-   java-pkg_clean
-   java-pkg-2_src_prepare
-}
-
-src_compile() {
-   JAVA_SRC_DIR="fop-util/src/main/java"
-   JAVA_JAR_FILENAME="fop-util.jar"
-   java-pkg-simple_src_compile
-   JAVA_GENTOO_CLASSPATH_EXTRA+=":fop-util.jar"
-   rm -r target || die
-
-   JAVA_SRC_DIR="fop-events/src/main/java"
-   JAVA_RESOURCE_DIRS="fop-events/src/main/resources"
-   JAVA_JAR_FILENAME="fop-events.jar"
-   java-pkg-simple_src_compile
-   JAVA_GENTOO_CLASSPATH_EXTRA+=":fop-events.jar"
-   rm -r target || die
-
-   JAVA_SRC_DIR="fop-core/src/main/java"
-   JAVA_RESOURCE_DIRS="fop-core/src/main/resources"
-   JAVA_MAIN_CLASS=$( sed -n 's:.*\(.*\):\1:p' 
fop-core/pom.xml )
-   JAVA_JAR_FILENAME="fop-core.jar"
-   # Code generation according to
-   # 
https://github.com/apache/xmlgraphics-fop/blob/fop-2_8/fop-core/pom.xml#L156-L225
-   pushd fop-core/src/main/codegen/fonts > /dev/null || die
-   local fonts=$(find . -name "Courier*.xml" \
-   -o -name "Helvetica*.xml" \
-   -o -name "Times*.xml" \
-   -o -name "Symbol.xml" \
-   -o -name "ZapfDingbats.xml"
-   )
-   for font in ${fonts}; do \
-   xalan -XSLTC \
-   -IN $font \
-   -XSL font-file.xsl \
-   -OUT 
../../java/org/apache/fop/fonts/base14/${font//.xml}.java || die
-   done
-   xalan -XSLTC \
-   -IN encodings.xml \
-   -XSL code-point-mapping.xsl \
-   -OUT 
../../java/org/apache/fop/fonts/base14/CodePointMapping.java || die
-   popd > /dev/null || die
-   java-pkg-simple_src_compile
-   rm -r target || die
-
-   JAVA_GENTOO_CLASSPATH_EXTRA+=":fop-core.jar"
-
-   # Update "fop-core.jar" with "event-mode.xml" files produced manually
-   # by running "mvn package".
-   mkdir event-model && pushd $_ > /dev/null || die
-   jar -xf "${WORKDIR}/fop-2.7-core-event-models.jar"
-   popd > /dev/null || die
-   jar -uf "fop-core.jar" -C event-model . || die
-   # Upstream does this with maven-antrun-plugin:
-   # 
https://github.com/apache/xmlgraphics-fop/blob/fop-2_8/fop-core/pom.xml#L269-L290
-
-   # public class EventProducerCollectorTask extends Task {
-   #
-   # private List filesets = new 
java.util.ArrayList();
-   # private File destDir;
-   # private File translationFile;
-
-   if use doc; then \
-   JAVA_SRC_DIR=(
-   "fop-util/src/main/java"
-   "fop-events/src/main/java"
-   "fop-core/src/main/java"
-   )
-   JAVA_JAR_FILENAME="ignoreme.jar"
-   java-pk

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

2023-05-09 Thread Miroslav Šulc
commit: 3ba34869d81bda7b57750714d6cbc69abbe03293
Author: Volkmar W. Pogatzki  pogatzki  net>
AuthorDate: Tue May  9 13:30:29 2023 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed May 10 04:57:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ba34869

app-editors/jedit: drop 5.4.0-r2

Signed-off-by: Volkmar W. Pogatzki  pogatzki.net>
Closes: https://github.com/gentoo/gentoo/pull/30945
Signed-off-by: Miroslav Šulc  gentoo.org>

 app-editors/jedit/Manifest  |   1 -
 app-editors/jedit/jedit-5.4.0-r2.ebuild | 116 
 2 files changed, 117 deletions(-)

diff --git a/app-editors/jedit/Manifest b/app-editors/jedit/Manifest
index 7905e60a6daf..f97cbc3f22ea 100644
--- a/app-editors/jedit/Manifest
+++ b/app-editors/jedit/Manifest
@@ -1,2 +1 @@
-DIST jedit5.4.0source.tar.bz2 2535992 BLAKE2B 
1560f680437e89cea789f2b0540225b0cbf92bc22f975c6d1850a7b3aa06a2b95d61a254fd0d4c0e7da916ee9de3a095ab5190ae5df3ad27e55c2f0ccef57db2
 SHA512 
2120370c54f8bd415f90b979c42bfca6101f76ba33f0ec6a8172adeb33173ba9c73cbd7f06b5dc8c12aa3eedf51f007752cdbf0c7423d77a1ac591beb5493112
 DIST jedit5.6.0source.tar.bz2 2572329 BLAKE2B 
d9815feef6fb03cb4a15e7101383944776ca593884de6965aaa3e74a411f8915d0542ab62be8e4551e04dd410c1da4ebedfb8a2c2869d33eb205100d6bd84352
 SHA512 
89e65998ea49b5b3da4f1daad001d7cf763e196e7110b604e99e3fad038ca126cf108a471ee611ef76b5491b91d618f47cdc24b270cabccb6a80858a37720af7

diff --git a/app-editors/jedit/jedit-5.4.0-r2.ebuild 
b/app-editors/jedit/jedit-5.4.0-r2.ebuild
deleted file mode 100644
index 5f66cb999af5..
--- a/app-editors/jedit/jedit-5.4.0-r2.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-JAVA_PKG_IUSE="doc test"
-inherit desktop java-pkg-2 java-ant-2 xdg-utils
-
-DESCRIPTION="Programmer's editor written in Java"
-HOMEPAGE="http://www.jedit.org";
-SRC_URI="mirror://sourceforge/${PN}/${PN}${PV}source.tar.bz2"
-
-LICENSE="BSD GPL-2"
-KEYWORDS="amd64 ppc64 x86"
-SLOT="0"
-
-# Same failure with 5.4.0.ebuild:
-# See reports at 
/var/tmp/portage/app-editors/jedit-5.4.0/work/jEdit/build/test/reports/index.html
-# "Failure" "No tests found in org.jedit.io.Native2ASCIIEncodingTest"
-RESTRICT="test"
-
-CP_DEPEND="dev-java/jsr305:0"
-
-# Restricting to java 1.8 as it fails to compile with newer java versions, 
https://bugs.gentoo.org/828559
-#init:
-# [echo] Buildfile for jedit 
(/var/tmp/portage/app-editors/jedit-5.4.0/work/jEdit/build.xml)
-#Class org.apache.tools.ant.types.resources.selectors.Not loaded from parent 
loader (parentFirst)
-#Class org.apache.tools.ant.taskdefs.condition.Equals loaded from parent 
loader (parentFirst)
-# [fail] failing due to Java 1.8 is needed for jEdit to build, please 
install it and rerun (found Java version: '11')
-RDEPEND="
-   ${CP_DEPEND}
-   virtual/jre:1.8"
-
-DEPEND="
-   ${CP_DEPEND}
-   virtual/jdk:1.8
-   dev-java/ant-contrib:0
-   dev-java/ant-apache-bsf:0
-   dev-java/bsh:0
-   test? (
-   dev-java/ant-junit:0
-   dev-java/hamcrest-library:1.3
-   )"
-
-S="${WORKDIR}/jEdit"
-
-JEDIT_HOME="/usr/share/${PN}"
-
-src_prepare() {
-   mkdir -p lib/{ant-contrib,compile,default-plugins,scripting,test} || die
-
-   eapply "${FILESDIR}"/${P}-build-xml.patch
-
-   java-ant_xml-rewrite -f "${S}/build.xml" -c \
-   -e javadoc \
-   -a failonerror \
-   -v no || die
-
-   java-pkg-2_src_prepare
-}
-
-JAVA_ANT_REWRITE_CLASSPATH="true"
-
-EANT_ANT_TASKS="ant-apache-bsf ant-contrib bsh"
-EANT_TEST_GENTOO_CLASSPATH="hamcrest-library-1.3"
-EANT_EXTRA_ARGS="-Divy.jar.present=true -Divy.done=true"
-EANT_BUILD_TARGET="build"
-# TODO could build more docs, ie generate-doc-faq generate-doc-news
-# generate-doc-users-guide ua.
-EANT_DOC_TARGET="generate-javadoc"
-# in fact needed only for docs, but shouldn't hurt
-EANT_NEEDS_TOOLS="true"
-
-src_test() {
-   java-pkg-2_src_test
-}
-
-src_install() {
-   dodir ${JEDIT_HOME}
-
-   cp -R build/${PN}.jar jars doc keymaps macros modes properties startup \
-   "${D}${JEDIT_HOME}" || die
-
-   java-pkg_regjar "${JEDIT_HOME}/${PN}.jar"
-
-   java-pkg_dolauncher "${PN}" --main org.gjt.sp.jedit.jEdit
-
-   use doc && java-pkg_dojavadoc build/classes/javadoc/api
-
-   make_desktop_entry ${PN} \
-   jEdit \
-   ${JEDIT_HOME}/doc/${PN}.png \
-   "Development;Utility;TextEditor"
-
-   # keep the plugin directory
-   keepdir ${JEDIT_HOME}/jars
-}
-
-pkg_postinst() {
-   xdg_desktop_database_update
-   elog "The system directory for jEdit plugins is"
-   elog "${JEDIT_HOME}/jars"
-   elog "If you get plugin related errors on startup, first try updating 
them."
-}
-
-pkg_postrm() {
-   if [[ -z ${REPLACED_BY_VERSION} ]]; then
-   xd

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

2023-05-09 Thread Michał Górny
commit: 604b5f62896c1feec887f6ff710e2877520c63dd
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 03:08:12 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 03:13:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=604b5f62

dev-python/cliff: Bump to 4.3.0

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

 dev-python/cliff/Manifest   |  1 +
 dev-python/cliff/cliff-4.3.0.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/dev-python/cliff/Manifest b/dev-python/cliff/Manifest
index c628a42d7fc8..6e128e47a28c 100644
--- a/dev-python/cliff/Manifest
+++ b/dev-python/cliff/Manifest
@@ -1 +1,2 @@
 DIST cliff-4.2.0.tar.gz 83168 BLAKE2B 
ac2d288ac3728f4266d61edb9b6aedc897e9020d3f8a74ebba4721530942a27335564c2a95406a4d6b5374df49e38bc0aa303d3aff12f83c91e48c59f13aa45f
 SHA512 
6f0c31b49603be5289e6d4c9b2572862e977264df21dc14d976289c627909102d672ee8ffa5b6cd79b3a349158ff8f36444a2d2061e18eeb7121ce79b2d5719b
+DIST cliff-4.3.0.tar.gz 82652 BLAKE2B 
8d4977e3541fd9de21fb637069abcb92cf38b07f47f0d61d329397ab9d42335f18faa6d7d13862b7f188632af39d46118d0f3ebfcf2475b67c258388aa4bbcc2
 SHA512 
b4ed6fcec05017c999d54188459aa93c9a35660b0ceb505525f22a6bb7632e3548e91d8dc00db381c314a3818be2a457b7aee3307da35915ea7519c1e13091a3

diff --git a/dev-python/cliff/cliff-4.3.0.ebuild 
b/dev-python/cliff/cliff-4.3.0.ebuild
new file mode 100644
index ..3969d97bb918
--- /dev/null
+++ b/dev-python/cliff/cliff-4.3.0.ebuild
@@ -0,0 +1,42 @@
+# 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 pypi
+
+DESCRIPTION="Command Line Interface Formulation Framework"
+HOMEPAGE="
+   https://opendev.org/openstack/cliff/
+   https://github.com/openstack/cliff/
+   https://pypi.org/project/cliff/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc64 ~riscv ~s390 
~sparc ~x86"
+
+RDEPEND="
+   >=dev-python/autopage-0.4.0[${PYTHON_USEDEP}]
+   >=dev-python/cmd2-0.8.0[${PYTHON_USEDEP}]
+   dev-python/prettytable[${PYTHON_USEDEP}]
+   >=dev-python/pyparsing-2.1.0[${PYTHON_USEDEP}]
+   >=dev-python/stevedore-2.0.1[${PYTHON_USEDEP}]
+   >=dev-python/pyyaml-3.12.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib-metadata-4.11.1[${PYTHON_USEDEP}]
+   ' 3.8 3.9)
+"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
+   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest



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

2023-05-09 Thread Michał Górny
commit: 8c125b7a4c717d858e4901fc650acde2dac47eae
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 03:08:58 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 03:13:21 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c125b7a

dev-python/osc-lib: Bump to 2.8.0

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

 dev-python/osc-lib/Manifest |  1 +
 dev-python/osc-lib/osc-lib-2.8.0.ebuild | 51 +
 2 files changed, 52 insertions(+)

diff --git a/dev-python/osc-lib/Manifest b/dev-python/osc-lib/Manifest
index 8fb2dfde45b7..58e55807aa52 100644
--- a/dev-python/osc-lib/Manifest
+++ b/dev-python/osc-lib/Manifest
@@ -1 +1,2 @@
 DIST osc-lib-2.7.0.tar.gz 98224 BLAKE2B 
9b0d34b628ca413641413ccd92e2a712938eed5a7124e9bae78a281b705be9b4dd2e3c9f5e322f10712361b3e09cfd3edae593a1c4fec6108ba0e946546141ff
 SHA512 
edeff7097e8869b9ef4c888043c44eabea281b89cdac26da4a54fac708a6c9b3c10c57ea3bc76b8ed735c9d803edbb52c77c13c97a07614ce102cdac24a8eb5a
+DIST osc-lib-2.8.0.tar.gz 98870 BLAKE2B 
29e312caf968f9a725d114c71a32d4d38ba11c785ac5118fe5dc07633f1d71ba5eb387f6fdbe9d90809088f5a1746ea1aea6cf4e55cc3848fa52462ee7969b0f
 SHA512 
a54e3fa13277808d48f98c46aaf3d90670fe8dce21167816e0a8de21133bb95b87fb8172e0cfa6b1e6076635842569849fcddd9450df7ad2372bc079b37ad519

diff --git a/dev-python/osc-lib/osc-lib-2.8.0.ebuild 
b/dev-python/osc-lib/osc-lib-2.8.0.ebuild
new file mode 100644
index ..6ee6d1efc8c0
--- /dev/null
+++ b/dev-python/osc-lib/osc-lib-2.8.0.ebuild
@@ -0,0 +1,51 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="A package of common support modules for writing OSC plugins"
+HOMEPAGE="
+   https://opendev.org/openstack/osc-lib/
+   https://github.com/openstack/osc-lib/
+   https://pypi.org/project/osc-lib/
+"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="
+   >=dev-python/cliff-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/keystoneauth1-3.14.0[${PYTHON_USEDEP}]
+   >=dev-python/openstacksdk-0.15.0[${PYTHON_USEDEP}]
+   >=dev-python/oslo-i18n-3.15.3[${PYTHON_USEDEP}]
+   >=dev-python/oslo-utils-3.33.0[${PYTHON_USEDEP}]
+   >=dev-python/simplejson-3.5.1[${PYTHON_USEDEP}]
+   >=dev-python/stevedore-1.20.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   >dev-python/pbr-2.1.0[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/fixtures-3.0.0[${PYTHON_USEDEP}]
+   >=dev-python/oslotest-3.2.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-mock-1.2.0[${PYTHON_USEDEP}]
+   >=dev-python/statsd-3.3.0[${PYTHON_USEDEP}]
+   >=dev-python/testscenarios-0.4[${PYTHON_USEDEP}]
+   >=dev-python/testtools-2.2.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests unittest
+
+src_prepare() {
+   # need to skip all tests under TestTagHelps class
+   # checks exact help message, based on another unittest runner
+   sed -e '179,$s/test_add_tag_/_&/' -i osc_lib/tests/utils/test_tags.py 
|| die
+   distutils-r1_src_prepare
+}



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

2023-05-09 Thread Michał Górny
commit: 6e069810fa48f35bcddcf20e70ebd77b16de85af
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 03:04:09 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 03:13:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e069810

dev-python/PyGithub: Bump to 1.58.2

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

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

diff --git a/dev-python/PyGithub/Manifest b/dev-python/PyGithub/Manifest
index eb771d6a76bb..7dae511047b3 100644
--- a/dev-python/PyGithub/Manifest
+++ b/dev-python/PyGithub/Manifest
@@ -1 +1,2 @@
 DIST PyGithub-1.58.1.tar.gz 3171074 BLAKE2B 
e1397db839b2fc194fc67d9ac47adf9faa4a087c9350596e243d8d763a05d50ee1f9b03192bc5b88c0c94893c8d39b798efd07d0c2c8c597072c65306339c03a
 SHA512 
97e316d8bcd47546da2f64afe462b51d183a5385544a57963585a179d844e12865c7b87f08c507c4d3d8c0397a7f98acd84c17f45e9668722459c4c2cc328363
+DIST PyGithub-1.58.2.tar.gz 3171156 BLAKE2B 
251964d542eff68b16a4b56740ed3753f80e56f56458cbc1b909b082b6f5deaf805088a24002e1bb95dae46fc7dcd54da6dbfdbd43c79c097a55f118c0bcc755
 SHA512 
91db0db09c4bfd145013c4b0861d12271a83bce9de7865eaa3e8baeb02bbb262218987556e7df435b50fcd14ea178da7bc23225d4d93ccf1714fa9a894cd46bd

diff --git a/dev-python/PyGithub/PyGithub-1.58.2.ebuild 
b/dev-python/PyGithub/PyGithub-1.58.2.ebuild
new file mode 100644
index ..c22ebb71ed44
--- /dev/null
+++ b/dev-python/PyGithub/PyGithub-1.58.2.ebuild
@@ -0,0 +1,38 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYTHON_COMPAT=( python3_{10..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python library to access the Github API v3"
+HOMEPAGE="
+   https://github.com/PyGithub/PyGithub/
+   https://pypi.org/project/PyGithub/
+"
+
+LICENSE="LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+# cryptography via pyjwt[crypto]
+RDEPEND="
+   dev-python/cryptography[${PYTHON_USEDEP}]
+   dev-python/deprecated[${PYTHON_USEDEP}]
+   >=dev-python/pyjwt-2.4.0[${PYTHON_USEDEP}]
+   >=dev-python/pynacl-1.4.0[${PYTHON_USEDEP}]
+   >=dev-python/requests-2.14.0[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/setuptools-scm[${PYTHON_USEDEP}]
+   test? (
+   >=dev-python/httpretty-0.9.6[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest



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

2023-05-09 Thread Michał Górny
commit: 93456ce4a84c672bb86042cdc10577e54b320d67
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 02:44:28 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 02:51:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=93456ce4

dev-python/hatchling: Bump to 1.15.0

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

 dev-python/hatchling/Manifest|  1 +
 dev-python/hatchling/hatchling-1.15.0.ebuild | 78 
 2 files changed, 79 insertions(+)

diff --git a/dev-python/hatchling/Manifest b/dev-python/hatchling/Manifest
index 8c3d604cab80..a9d71e297459 100644
--- a/dev-python/hatchling/Manifest
+++ b/dev-python/hatchling/Manifest
@@ -1,3 +1,4 @@
 DIST hatch-hatchling-v1.13.0.gh.tar.gz 383610 BLAKE2B 
0a3dc20f6c1c504c94c09897e23e6ade844318488093cf849e332cf08f7be178ddb3ae61d8ff01af93438c01216b056a3566e9d8758a0151e4d7498447a9524f
 SHA512 
fb14e1d088676dfc2b76dda207aa514232c3c5b8472d7332c0d53e0bd4dbd1d0e3bd1ac9f261f72e1a32610c565485f5e382fc7071e80066735a04eb8cade13e
 DIST hatch-hatchling-v1.14.0.gh.tar.gz 378144 BLAKE2B 
e4fe0b22053e5be1ff330e96ad053e0461aa4e2ad1566313f03f265d42c7b63de8e3e7e7a52fa68639c4bdf4815e22e4040e8511eb43185cb3e7c8cf4d85ff92
 SHA512 
79a446c327022337c8c9e090c0aea0471fdad0a6c6d384797832bca09ece66c3b854c9626afccbb4fc49a9204ebb1e59a2ee55ff358b0eb1b10b16ddf7b4952a
 DIST hatch-hatchling-v1.14.1.gh.tar.gz 378265 BLAKE2B 
ce990341dd4e41e98dbcc97af8e91bed37d4a4c08da7c86baeefb08b27b293c2d3e9a60c780338959bbbfe784603b762718aaf8721c85d3c0252170209d51235
 SHA512 
87f01d7bd8cc1be060c73a703cc6fe780ec8ef8ab5f1a883fb2b81a821c1be751bcff2301a21ffaec70a272b05cb47c387edfff97682fab402a142f31439677c
+DIST hatch-hatchling-v1.15.0.gh.tar.gz 382326 BLAKE2B 
14095fc4355baef2bd7ba6156dccb23d21fca4f3942a35fc4341764d4367b94413dc62e3701c43447883137db8261fd5c08ddb3b9688954102ed11c33767d1d4
 SHA512 
e8d9d557ce277063048ef49c58e8230fb021487c5b4ffafde9caa00c834e6e84aae3d0c7b2a8cbdbdfb18a177afc432da692fab8437630df539ca149dc2ebfc7

diff --git a/dev-python/hatchling/hatchling-1.15.0.ebuild 
b/dev-python/hatchling/hatchling-1.15.0.ebuild
new file mode 100644
index ..fb49ea0b336a
--- /dev/null
+++ b/dev-python/hatchling/hatchling-1.15.0.ebuild
@@ -0,0 +1,78 @@
+# Copyright 2022-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=standalone
+PYTHON_TESTED=( pypy3 python3_{9..11} )
+PYTHON_COMPAT=( "${PYTHON_TESTED[@]}" )
+
+inherit distutils-r1
+
+TAG=${P/-/-v}
+MY_P=hatch-${TAG}
+DESCRIPTION="Modern, extensible Python build backend"
+HOMEPAGE="
+   https://pypi.org/project/hatchling/
+   https://github.com/pypa/hatch/
+"
+SRC_URI="
+   https://github.com/pypa/hatch/archive/${TAG}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}/backend
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~arm64-macos ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+
+# deps are listed in backend/src/hatchling/ouroboros.py
+RDEPEND="
+   >=dev-python/editables-0.3[${PYTHON_USEDEP}]
+   >=dev-python/packaging-21.3[${PYTHON_USEDEP}]
+   >=dev-python/pathspec-0.10.1[${PYTHON_USEDEP}]
+   >=dev-python/pluggy-1.0.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/tomli-1.2.2[${PYTHON_USEDEP}]
+   ' 3.8 3.9 3.10)
+   dev-python/trove-classifiers[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   ${RDEPEND}
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/atomicwrites[${PYTHON_USEDEP}]
+   dev-python/click[${PYTHON_USEDEP}]
+   dev-python/httpx[${PYTHON_USEDEP}]
+   dev-python/platformdirs[${PYTHON_USEDEP}]
+   dev-python/rich[${PYTHON_USEDEP}]
+   dev-python/tomli-w[${PYTHON_USEDEP}]
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   ' "${PYTHON_TESTED[@]}")
+   )
+"
+
+distutils_enable_tests pytest
+
+python_test() {
+   if ! has "${EPYTHON}" "${PYTHON_TESTED[@]/_/.}"; then
+   einfo "Skipping tests on ${EPYTHON}"
+   return
+   fi
+
+   local -x EPYTEST_DESELECT=(
+   # these run pip to install stuff
+   tests/backend/dep/test_core.py::test_dependency_found
+   tests/backend/dep/test_core.py::test_extra_met
+   tests/backend/dep/test_core.py::test_extra_no_dependencies
+   tests/backend/dep/test_core.py::test_extra_unmet
+   tests/backend/dep/test_core.py::test_unknown_extra
+   tests/backend/dep/test_core.py::test_version_unmet
+   )
+
+   # top-level "tests" directory contains tests both for hatch
+   # and hatchling
+   cd "${WORKDIR}/${MY_P}" || die
+   local -x PYTHONPAT

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

2023-05-09 Thread Michał Górny
commit: ed3ab0be2c824bc0a18d8ab82b9573196098f6b9
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 02:39:50 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 02:39:50 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed3ab0be

dev-python/ruamel-yaml: Bump to 0.17.26

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

 dev-python/ruamel-yaml/Manifest   |  1 +
 dev-python/ruamel-yaml/ruamel-yaml-0.17.26.ebuild | 58 +++
 2 files changed, 59 insertions(+)

diff --git a/dev-python/ruamel-yaml/Manifest b/dev-python/ruamel-yaml/Manifest
index 25bfa8faf3d8..a2c5e51f9e52 100644
--- a/dev-python/ruamel-yaml/Manifest
+++ b/dev-python/ruamel-yaml/Manifest
@@ -2,3 +2,4 @@ DIST ruamel.yaml-0.17.21.tar.xz 184612 BLAKE2B 
cc7e2a336d3c77a9f2d7e5d7233ceb4d1
 DIST ruamel.yaml-0.17.22.tar.xz 185000 BLAKE2B 
dda8163bfa52b29801d115bc64ef52c35086f186b4795df9dfcd785584e2de338ca055dbf07f3eaac548b14d338ac89bbda4e95196fd113a8fda3ecacb30bc61
 SHA512 
ac1af1c829c0a5dc65a66926d03b50eede405c9dafd811eae1b9567c81b6bb86b7dd91f4b7c6bf84d7c4833f8b17860dcfddaf7992241ac6673d7ffecf15466f
 DIST ruamel.yaml-0.17.23.tar.xz 185900 BLAKE2B 
ff283c979474f14e2f0231d64d0a609f262c4b87764eedb2b6060a66a09388670514f341809e6c5f36b0fbe15412209dbd5da9fc31fd8bda83a4d857beade48e
 SHA512 
1a9c22357d61e31464cdead9d0c7715f156839861b8d93b94fa78f00b8d75e803d5bd74fc7d36e1d20f5927f807c3a9ed6af79746177a1d5da0622729597807e
 DIST ruamel.yaml-0.17.24.tar.xz 186504 BLAKE2B 
d5bd5240c3ad68309ad9382dd076111f554848a71697ac98015e34449a98c101f37cef0fdead279501976cceb235c8b055675eb63aab4c8121dd30ae5740dd90
 SHA512 
32fe95c4927197af4f30bc68d26bff956520d69471f802b58be6a07a0c4b2ed45673cd7890a2f49dc2a13791a2dac2fa66a7e6137f5afe813b6d8d56704d0c16
+DIST ruamel.yaml-0.17.26.tar.xz 186752 BLAKE2B 
ce3d914ac27df2d038a882535f3559b47051a1fb1206a3ab6cab7c2ee0ee9fcfb5fc0babfb3a3488e7d074798bcbdb24d67d2a37a00c9d9210e96f13bb5bcdbb
 SHA512 
40a91002f904621632acaa73b5bd3095f933369d354a8e7579a5afe4c171ceefadb76d5ecbdd3ef6202833874ba19ed518ce5ac5c7dbf15b698dd07b95260d33

diff --git a/dev-python/ruamel-yaml/ruamel-yaml-0.17.26.ebuild 
b/dev-python/ruamel-yaml/ruamel-yaml-0.17.26.ebuild
new file mode 100644
index ..a57faa690df0
--- /dev/null
+++ b/dev-python/ruamel-yaml/ruamel-yaml-0.17.26.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( pypy3 python3_{10..11} )
+
+inherit distutils-r1
+
+MY_P="${P/-/.}"
+DESCRIPTION="YAML parser/emitter that supports roundtrip comment preservation"
+HOMEPAGE="
+   https://pypi.org/project/ruamel.yaml/
+   https://sourceforge.net/projects/ruamel-yaml/
+"
+# PyPI tarballs do not include tests
+SRC_URI="mirror://sourceforge/ruamel-dl-tagged-releases/${MY_P}.tar.xz"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+RDEPEND="
+   dev-python/ruamel-yaml-clib[${PYTHON_USEDEP}]
+   !dev-python/namespace-ruamel
+"
+BDEPEND="
+   test? (
+   dev-python/ruamel-std-pathlib[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_compile() {
+   distutils-r1_python_compile
+   find "${BUILD_DIR}" -name '*.pth' -delete || die
+}
+
+python_test() {
+   local EPYTEST_DESELECT=()
+   [[ ${EPYTHON} == pypy3 ]] && EPYTEST_DESELECT+=(
+   _test/test_deprecation.py::test_collections_deprecation
+   )
+   local EPYTEST_IGNORE=(
+   # Old PyYAML tests from lib/ require special set-up and are
+   # invoked indirectly via test_z_olddata, tell pytest itself
+   # to leave the subdir alone.
+   _test/lib/
+   )
+
+   # this is needed to keep the tests working while
+   # dev-python/namespace-ruamel is still installed
+   distutils_write_namespace ruamel
+   epytest
+}



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

2023-05-09 Thread Michał Górny
commit: 6b6638078d0a6da34b2f6df41d670320d7a3d2b4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 02:40:56 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 02:40:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b663807

dev-python/pyfuse3: Bump to 3.2.3

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

 dev-python/pyfuse3/Manifest |  1 +
 dev-python/pyfuse3/pyfuse3-3.2.3.ebuild | 40 +
 2 files changed, 41 insertions(+)

diff --git a/dev-python/pyfuse3/Manifest b/dev-python/pyfuse3/Manifest
index 09dab2f84912..ca32fce3098c 100644
--- a/dev-python/pyfuse3/Manifest
+++ b/dev-python/pyfuse3/Manifest
@@ -1 +1,2 @@
 DIST pyfuse3-3.2.2.tar.gz 510868 BLAKE2B 
a6f11083a3ddec031fdfe5cb810be526cba26d7bc9599a64d28e9a45281aeb04fca8728ff3788e44f1736475c89e64c3c1fd7cb964ff81fc30ce441a5dda7fae
 SHA512 
91787c4198592ff5f0c022141e6c3cb1701108a6635b4d26347c4f7efff2a83aec206e939b44879ad1fd5c6c85aa6731b7465c998ec55ec032a6db024ffee817
+DIST pyfuse3-3.2.3.tar.gz 512352 BLAKE2B 
1b5826ea42a72fd5d688b4cd7617c2fd08a7f9b69381d52343e8891c90ba51f8c5c79a2b9c7c42944cd20493ea645a00a26e7c04cebec10322f71241b8b12df3
 SHA512 
2f35ea5e0f05af7184fe83458b976742f4f500d09098c68b71982e4b8c089485677bf1e704536e037d6f690fce3006a4fdb71697c68999ed412cc9d73aef8b13

diff --git a/dev-python/pyfuse3/pyfuse3-3.2.3.ebuild 
b/dev-python/pyfuse3/pyfuse3-3.2.3.ebuild
new file mode 100644
index ..9169d6d863df
--- /dev/null
+++ b/dev-python/pyfuse3/pyfuse3-3.2.3.ebuild
@@ -0,0 +1,40 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_EXT=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 pypi
+
+DESCRIPTION="Python 3 bindings for libfuse 3 with asynchronous API"
+HOMEPAGE="
+   https://github.com/libfuse/pyfuse3/
+   https://pypi.org/project/pyfuse3/
+"
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+
+DEPEND="
+   sys-fs/fuse:3
+"
+RDEPEND="
+   ${DEPEND}
+   dev-python/trio[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   dev-python/pytest-trio[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_configure() {
+   esetup.py build_cython
+}



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

2023-05-09 Thread Michał Górny
commit: d9597a6c5b8108c5ac095dce109203250d19d185
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 02:37:00 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 02:37:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d9597a6c

dev-python/pyjwt: Bump to 2.7.0

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

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

diff --git a/dev-python/pyjwt/Manifest b/dev-python/pyjwt/Manifest
index 8e121eb05b2c..3b1b89d004d1 100644
--- a/dev-python/pyjwt/Manifest
+++ b/dev-python/pyjwt/Manifest
@@ -1 +1,2 @@
 DIST PyJWT-2.6.0.tar.gz 72984 BLAKE2B 
d8e9cc85ec80ca8f0414b88bb4bfa4aa93c973e5f3e015dee9433371d8b3c9ba5d701df16073bbacbaca9c9433f8a69259623f2f4e70843dbdf520d4248bb3f3
 SHA512 
c2f797bbb84469db1332bad61807740d859d0e1fa500ba17981d6c1a7a30a6fab345ff241200e24ce1ffe686591642a858e5eb2e9462fa1ceda7fcd00ae55d30
+DIST PyJWT-2.7.0.tar.gz 77902 BLAKE2B 
ff1e1c5dfd301a86a42eb6b4b2d6d900b15acdf60875bac49aee980b75b724292ff48b169cd2b9708388860ea93fd94f3cbf891f4606bfeb544e07a14c328bb8
 SHA512 
0aa886dfdc3c668b45e1c649cc3fbe3c2dec7476f46bd361ff74f6e9c7ea0ad40306a8a8ae84bfd63fe1c1364302b8aa69943013c951b32c9f24e4782b94ca8d

diff --git a/dev-python/pyjwt/pyjwt-2.7.0.ebuild 
b/dev-python/pyjwt/pyjwt-2.7.0.ebuild
new file mode 100644
index ..3c66be91f8bd
--- /dev/null
+++ b/dev-python/pyjwt/pyjwt-2.7.0.ebuild
@@ -0,0 +1,36 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYPI_NO_NORMALIZE=1
+PYPI_PN="PyJWT"
+PYTHON_COMPAT=( python3_{9..11} )
+
+inherit distutils-r1 optfeature pypi
+
+DESCRIPTION="JSON Web Token implementation in Python"
+HOMEPAGE="
+   https://github.com/jpadilla/pyjwt/
+   https://pypi.org/project/PyJWT/
+"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x86-linux"
+
+RDEPEND="
+   !dev-python/python-jwt
+"
+BDEPEND="
+   test? (
+   >=dev-python/cryptography-3.4.0[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+pkg_postinst() {
+   optfeature "cryptography" dev-python/cryptography
+}



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

2023-05-09 Thread Michał Górny
commit: c141787d97fff8155de4edadbe2a67d280cafb2d
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 01:46:57 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 02:31:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c141787d

dev-python/botocore: Bump to 1.29.131

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

 dev-python/botocore/Manifest |  1 +
 dev-python/botocore/botocore-1.29.131.ebuild | 72 
 2 files changed, 73 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index a86090977b49..c07f853ca600 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -3,3 +3,4 @@ DIST botocore-1.29.126.gh.tar.gz 11453877 BLAKE2B 
955931ba40d550a12f4cd16cd7f746
 DIST botocore-1.29.127.gh.tar.gz 11474348 BLAKE2B 
72002e57593e114864bb8d6f0ec30d78fb503a6eee71fd0e61dbe430d976408583e2697db1828e8373bd5ba620b024c2e9bf3e25a69a39625b8ac7f5ae61a63a
 SHA512 
b82f149807970666175222bba27213387782804c41393609011f36564b6a8be209777a575fa088e39440f7bcfe6d47d1183136aa2710ad4315f6f70075cd0ce3
 DIST botocore-1.29.129.gh.tar.gz 11476185 BLAKE2B 
b2601ecd28263e44f4830ccad24402e6c5f62127cd5abbe75fd270bb05fabcc10dee24e6ba8e37629232929990b1f6bd9870eead303642564342da60c3386bda
 SHA512 
c38a8797f7c728755406e334094e0183fd69eb1a7c68e41b065d5d2c48714390a647c68d0373c1d8a7b6d9d91fd950b10527ee88bca08788921903ff9535
 DIST botocore-1.29.130.gh.tar.gz 11473884 BLAKE2B 
13d50cd41f690cf1e45324ca311da65f946396ebe3856ff60c06e35edc290d4e1d1b76e2b3bc72c3c0f8578f4cae16a7812f5c742bd8847cc5dfc5e15e98d12d
 SHA512 
0173113f295019bfd968af0651bde9032baa2ebb2018070db8702adc35d73ac98e03a828fed7637ebc76bf5d1ba66b6fadb87a1d2afdae8a23f6279d7d5f10ad
+DIST botocore-1.29.131.gh.tar.gz 11477200 BLAKE2B 
b82be25b352f8d8192e698e06ed7bb5ed56632a355930fef0d3e75eff3cba4ef3b165ad9d9b98a6d2a862fb0ac73b656494e2c33772a8527ee67fc0321ad7ed3
 SHA512 
b2ebdd6b1abb71a611120413a65b35f27e5962085cb35dc166b7eb04540622e39ef16d2f09f304a41c3692080f4bb8a6593cc60208b7d3f39d01e827a4795067

diff --git a/dev-python/botocore/botocore-1.29.131.ebuild 
b/dev-python/botocore/botocore-1.29.131.ebuild
new file mode 100644
index ..491b6bbc21f2
--- /dev/null
+++ b/dev-python/botocore/botocore-1.29.131.ebuild
@@ -0,0 +1,72 @@
+# 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 multiprocessing
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="
+   https://github.com/boto/botocore/
+   https://pypi.org/project/botocore/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore";
+   inherit git-r3
+else
+   SRC_URI="
+   https://github.com/boto/botocore/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   =dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+
+   # unbundle deps
+   rm -r botocore/vendored || die
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # rely on bundled six
+   tests/functional/test_six_imports.py::test_no_bare_six_imports
+   tests/functional/test_six_threading.py::test_six_thread_safety
+   # fails on unrelated warnings
+   
tests/unit/test_client.py::TestAutoGeneratedClient::test_BOTO_DISABLE_COMMONNAME
+   
tests/unit/test_client.py::TestClientErrors::test_BOTO_DISABLE_COMMONNAME
+   # TODO
+   
tests/functional/test_credentials.py::SSOSessionTest::test_token_chosen_from_provider
+   )
+
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2023-05-09 Thread Michał Górny
commit: 519b6253eb3e84cee3e15cfb8a5c19be88b851a0
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 01:47:32 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 02:31:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=519b6253

app-admin/awscli: Bump to 1.27.131

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

 app-admin/awscli/Manifest   |  1 +
 app-admin/awscli/awscli-1.27.131.ebuild | 80 +
 2 files changed, 81 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 654659b939e7..5570f657dcf7 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -3,3 +3,4 @@ DIST aws-cli-1.27.126.gh.tar.gz 2415804 BLAKE2B 
f6c9c76320ce2bd7c03009d01e569a45
 DIST aws-cli-1.27.127.gh.tar.gz 2416842 BLAKE2B 
6d1917695f9404a0edf1e9d1720606478e904615e46c775a5b65bab207a1b0ebfd1741daa2202e4567c0d4aa0d0eb6bfaf89210a6ccce542c7ee2c556c21c3b3
 SHA512 
32ac6f8e00434047acf46cd0dad80618e7c1926fa02cdc365005eccb3744f8ea2d67e11c7155a0ce88e6388668ec3aa0cd0bad33df8a7540bfd0cc1c9dcd52af
 DIST aws-cli-1.27.129.gh.tar.gz 2417079 BLAKE2B 
d1de37906ba0e541ef968aac5d7a7718167b6b8683d655f9b7ec91ab1e5ed289bff46dbb56c1a6a5c4e0ce56eb4fd9ebeac386d0ec38e855bfbd3076bcac2aa9
 SHA512 
cd3f57c1734d73964d712a7a5d03c83d3168f2197011b014a04088fb05090948463d95c7d9321e1ae1e21992e18013fdd260b640f342681bca70f2e33e423f88
 DIST aws-cli-1.27.130.gh.tar.gz 2418752 BLAKE2B 
5c8ad7c3af4312d2ed37fb36270efd4a5fee676ea956cfb33a90e4714226b3a2e7e8abc3de5d1ce8eb159b94f37bf796a38cf276c1eb66e0ebc061cac04dc682
 SHA512 
2b76d803a646d73d0b63a9c42404c00b98b95b98cf2bc4bba714441b065bbbc41d81a3859a362451512c0936caadae9a06790c56b886e235804a4c962aced622
+DIST aws-cli-1.27.131.gh.tar.gz 2420246 BLAKE2B 
3590493c0707ec80a74acca1a7c103eaa34e81c27cefbdc6b577eed044e553d35f0c727bfda163cf9c8344ab6550758fe69611acdada524d30f96f49fb330eba
 SHA512 
4fb706f1a606c53a940c7c9d9c67cbfc8d9352a6c9d0c2c9dfa0bf9f46e75f1b102a32c38250a31aa3fd29956a099f69a5c2dc0e93777b5f3301e1fca1143174

diff --git a/app-admin/awscli/awscli-1.27.131.ebuild 
b/app-admin/awscli/awscli-1.27.131.ebuild
new file mode 100644
index ..62c19f3a63fb
--- /dev/null
+++ b/app-admin/awscli/awscli-1.27.131.ebuild
@@ -0,0 +1,80 @@
+# 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 bash-completion-r1 distutils-r1 multiprocessing
+
+MY_P=aws-cli-${PV}
+DESCRIPTION="Universal Command Line Environment for AWS"
+HOMEPAGE="
+   https://github.com/aws/aws-cli/
+   https://pypi.org/project/awscli/
+"
+SRC_URI="
+   https://github.com/aws/aws-cli/archive/${PV}.tar.gz
+   -> ${MY_P}.gh.tar.gz
+"
+S=${WORKDIR}/${MY_P}
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+# botocore is x.(y+2).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 2)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+   !app-admin/awscli-bin
+"
+BDEPEND="
+   test? (
+   dev-python/pytest-forked[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+src_prepare() {
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+   # strip overzealous upper bounds on requirements
+   sed -i -e 's:,<[0-9.]*::' -e 's:==:>=:' setup.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local EPYTEST_DESELECT=(
+   # TODO
+   
tests/functional/eks/test_kubeconfig.py::TestKubeconfigLoader::test_load_simple
+   
tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_env_only
+   
tests/unit/customizations/eks/test_update_kubeconfig.py::TestKubeconfigSelector::test_choose_existing
+   
tests/unit/customizations/eks/test_kubeconfig.py::TestKubeconfigValidator::test_valid
+   )
+
+   # integration tests require AWS credentials and Internet access
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)" --forked
+}
+
+python_install_all() {
+   newbashcomp bin/aws_bash_completer aws
+
+   insinto /usr/share/zsh/site-functions
+   newins bin/aws_zsh_completer.sh _aws
+
+   distutils-r1_python_install_all
+
+   rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || 
die
+}



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

2023-05-09 Thread Michał Górny
commit: 25871c9b70025ab87e49c834bd374a244594fd8f
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 01:47:10 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 02:31:12 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25871c9b

dev-python/boto3: Bump to 1.26.131

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

 dev-python/boto3/Manifest  |  1 +
 dev-python/boto3/boto3-1.26.131.ebuild | 66 ++
 2 files changed, 67 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 61ee8828fece..f70edbec34cf 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -3,3 +3,4 @@ DIST boto3-1.26.126.gh.tar.gz 642281 BLAKE2B 
c7a9130cac15843decf4543d6f749040805
 DIST boto3-1.26.127.gh.tar.gz 645245 BLAKE2B 
fb320e064eae4a6755770653f5519e17ea11aa6f7aa566e0a625b1113cc784440c4d519bb2de544340d66c3fe80a510a1dadba3f724395c186ad7ef68b5ce11f
 SHA512 
df6f9082a159e7ae8033ba92652cde9d73fc8b93e6793d3ce021b75135f825f7e4e102467caa179b36959a42b98376e30ada35d4a3259e359fbf417c92a6e487
 DIST boto3-1.26.129.gh.tar.gz 645918 BLAKE2B 
2de3833e60f8a8b91a35c863fc67e1b098b4d51e296a20677ab0e35b62809118dd105cf9338ccef60eef454cbf4b443bf06aa56206a1db4720305bc23ef19d42
 SHA512 
6b97bee6947eb05e972877b8326b83c4fe6fd244c0ef63da3f2aec801a00810083bb5d4998ec262394cd130393c85f4a0f0cc22f58def1a425def2b3780a48bc
 DIST boto3-1.26.130.gh.tar.gz 646289 BLAKE2B 
a93c3806253f1af6cfa385531fc7b9efbaefd403a20155c5033fd4860f19fa845394a73aa5641d21c5a3992abac92245345567c1286370ea7f0029d0159e0ad7
 SHA512 
1bf0f7d682437cd5564515b7da622b10201a4d91358f52c2c4bff9a80f1c082b881b87c53a21a0eef6c5f5c36ae622efd0d80225b402c4bf93019405f31d1a9f
+DIST boto3-1.26.131.gh.tar.gz 646652 BLAKE2B 
c28edab15296d5b12aa8d423cba491f0665c8c3b87187cc7e75c75b16533b7cc10789833559cb39852257cac0d22d08f901d7459ddd53e2642f7ee8a42d73d64
 SHA512 
d7b9a215a895c79c3d8f63c4657d9c9ddf733219a36e7b204edd2602695d92826ba0ce4192fe50037dec672395aaceda3b115bad4d48c3437a1e20f52beaaa3d

diff --git a/dev-python/boto3/boto3-1.26.131.ebuild 
b/dev-python/boto3/boto3-1.26.131.ebuild
new file mode 100644
index ..2a4a7643203e
--- /dev/null
+++ b/dev-python/boto3/boto3-1.26.131.ebuild
@@ -0,0 +1,66 @@
+# 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 multiprocessing
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="
+   https://github.com/boto/boto3/
+   https://pypi.org/project/boto3/
+"
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3";
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="
+   https://github.com/boto/boto3/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz
+   "
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc ~x86 
~amd64-linux ~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.6.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # do not rely on bundled deps in botocore (sic!)
+   find -name '*.py' -exec sed -i \
+   -e 's:from botocore[.]vendored import:import:' \
+   -e 's:from botocore[.]vendored[.]:from :' \
+   {} + || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   epytest tests/{functional,unit} -n "$(makeopts_jobs)"
+}



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

2023-05-09 Thread Sam James
commit: 2b9e776c6676ea7d36afe758ed14d235818f5bda
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 02:29:27 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 02:29:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b9e776c

sys-cluster/glusterfs: destabilize 10.4 for ~ppc64

10.4 had this as stable accidentally.

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

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

diff --git a/sys-cluster/glusterfs/glusterfs-10.4.ebuild 
b/sys-cluster/glusterfs/glusterfs-10.4.ebuild
index b93d5a3ce447..ec87d6ad8ebb 100644
--- a/sys-cluster/glusterfs/glusterfs-10.4.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-10.4.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://download.gluster.org/pub/gluster/${PN}/$(ver_cut 1)/${PV}/${P}.
 
 LICENSE="|| ( GPL-2 LGPL-3+ )"
 SLOT="0/${PV%%.*}"
-KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ~ppc64 ~riscv ~x86"
 
 IUSE="debug emacs +fuse georeplication ipv6 +libtirpc rsyslog selinux 
static-libs tcmalloc test +uring xml"
 



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

2023-05-09 Thread Sam James
commit: 9ac9251dbcac117f8cccf575015fda55447faf86
Author: Jaco Kroon  uls  co  za>
AuthorDate: Tue May  9 19:26:45 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 02:24:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ac9251d

sys-cluster/glusterfs: drop 10.1-r1, 10.2-r1

Signed-off-by: Jaco Kroon  uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/30959
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/glusterfs/Manifest |   1 -
 sys-cluster/glusterfs/glusterfs-10.1-r1.ebuild | 200 -
 sys-cluster/glusterfs/glusterfs-10.2-r1.ebuild | 200 -
 3 files changed, 401 deletions(-)

diff --git a/sys-cluster/glusterfs/Manifest b/sys-cluster/glusterfs/Manifest
index 325b3285ff30..c8eb3773ff2f 100644
--- a/sys-cluster/glusterfs/Manifest
+++ b/sys-cluster/glusterfs/Manifest
@@ -1,3 +1,2 @@
-DIST glusterfs-10.1.tar.gz 8273640 BLAKE2B 
a29eb83fbc3a65e5f5a1db3694e6f46519973256a10f5e16419c832cb308a36961a4e3569fffd3f6e21e47b4b1ff78bcd2e687fce7b9710dfb25d88fca2d622f
 SHA512 
38bec8ae33128641b17c645733589c32d554ebb771bda50a11d35019e71654f3b75ca95d24d0c0d1ec4eb460edd99983e843a7218092d422d2185a227345de42
 DIST glusterfs-10.2.tar.gz 8278598 BLAKE2B 
48e70a244e34cc41a5befbe94635e945c95b87f26e5e1892b099d23a13c6fb70eefb2a66b247a564b03eeb0707ee480b50096b154b3ac5d2a13051e6371995b3
 SHA512 
290c701fbd3f100096ef26b589ee0714449fc620c35e62bcb5fe2fe8de5f64963b40d7d5fe1b97b274ba791fa45f4175305b6a112f184f6ce11a1e0dc9f7ea30
 DIST glusterfs-10.4.tar.gz 8293872 BLAKE2B 
01f8764cc71b7bac2ee0419f3f1069ac1c85e26314828b47f348b9bf88ad0b8aa327be16ccfe9cf820aebb7dd9477a7840c721df4435c895be91fed0b1129b7c
 SHA512 
06c563ab77a29145b1fac44f5a56a91539accb69ba736fe6297aa3f38b128e68ba4f7d0b49ac6eb56397a51950fb4de882ff60037e91c61ad13dd89a18139d82

diff --git a/sys-cluster/glusterfs/glusterfs-10.1-r1.ebuild 
b/sys-cluster/glusterfs/glusterfs-10.1-r1.ebuild
deleted file mode 100644
index 9032719c9b68..
--- a/sys-cluster/glusterfs/glusterfs-10.1-r1.ebuild
+++ /dev/null
@@ -1,200 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit autotools elisp-common python-single-r1 tmpfiles systemd
-
-DESCRIPTION="GlusterFS is a powerful network/cluster filesystem"
-HOMEPAGE="https://www.gluster.org/ https://github.com/gluster/glusterfs/";
-SRC_URI="https://download.gluster.org/pub/gluster/${PN}/$(ver_cut 
1)/${PV}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 LGPL-3+ )"
-SLOT="0/${PV%%.*}"
-KEYWORDS="amd64 ~arm ~arm64 ~loong ~ppc ppc64 ~riscv x86"
-
-IUSE="debug emacs +fuse +georeplication ipv6 +libtirpc rsyslog selinux 
static-libs tcmalloc test +xml"
-
-REQUIRED_USE="georeplication? ( ${PYTHON_REQUIRED_USE} xml )
-   ipv6? ( libtirpc )"
-
-# the tests must be run as root
-RESTRICT="test"
-
-# sys-apps/util-linux is required for libuuid
-RDEPEND="
-   acct-group/gluster
-   acct-user/gluster
-   dev-libs/libaio
-   dev-libs/openssl:=[-bindist(-)]
-   net-libs/rpcsvc-proto
-   dev-libs/userspace-rcu:=
-   sys-apps/util-linux
-   sys-libs/liburing:=
-   sys-libs/readline:=
-   !elibc_glibc? ( sys-libs/argp-standalone )
-   emacs? ( >=app-editors/emacs-23.1:* )
-   fuse? ( >=sys-fs/fuse-2.7.0:0 )
-   georeplication? ( ${PYTHON_DEPS} )
-   libtirpc? ( net-libs/libtirpc:= )
-   !libtirpc? ( elibc_glibc? ( sys-libs/glibc[rpc(-)] ) )
-   selinux? ( sec-policy/selinux-glusterfs )
-   tcmalloc? ( dev-util/google-perftools )
-   xml? ( dev-libs/libxml2 )
-"
-DEPEND="
-   ${RDEPEND}
-   sys-devel/bison
-   sys-devel/flex
-   virtual/acl
-   test? ( >=dev-util/cmocka-1.0.1
-   app-benchmarks/dbench
-   dev-vcs/git
-   net-fs/nfs-utils
-   virtual/perl-Test-Harness
-   dev-libs/yajl
-   sys-fs/xfsprogs
-   sys-apps/attr )
-"
-BDEPEND="
-   virtual/pkgconfig
-"
-
-SITEFILE="50${PN}-mode-gentoo.el"
-
-DOCS=( AUTHORS ChangeLog NEWS README.md THANKS )
-
-# Maintainer notes:
-# * The build system will always configure & build argp-standalone but it'll 
never use it
-#   if the argp.h header is found in the system. Which should be the case with
-#   glibc or if argp-standalone is installed.
-
-pkg_setup() {
-   python_setup "python3*"
-   python-single-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-
-   # build rpc-transport and xlators only once as shared libs
-   find rpc/rpc-transport xlators -name Makefile.am -exec \
-   sed -i 's|.*$(top_srcdir).*\.sym|\0 -shared|' {} + || die
-
-   # fix execution permissions
-   chmod +x libglusterfs/src/gen-defaults.py || die
-
-   eautoreconf
-}
-
-src_configure() {
-   econf \
-   --disable-fusermount \
-   --disable-lto \
-   $(use_

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

2023-05-09 Thread Sam James
commit: 10cb8471a44b68e5c9c698915c75afc358e07d4c
Author: Jaco Kroon  uls  co  za>
AuthorDate: Tue May  9 13:37:52 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 02:24:42 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10cb8471

sys-cluster/glusterfs: add 10.4

Closes: https://bugs.gentoo.org/904360
Closes: https://bugs.gentoo.org/887169
Signed-off-by: Jaco Kroon  uls.co.za>
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/glusterfs/Manifest  |   1 +
 sys-cluster/glusterfs/glusterfs-10.4.ebuild | 205 
 2 files changed, 206 insertions(+)

diff --git a/sys-cluster/glusterfs/Manifest b/sys-cluster/glusterfs/Manifest
index cc6ec08065f8..3c356ac5c2d2 100644
--- a/sys-cluster/glusterfs/Manifest
+++ b/sys-cluster/glusterfs/Manifest
@@ -1,4 +1,5 @@
 DIST glusterfs-10.1.tar.gz 8273640 BLAKE2B 
a29eb83fbc3a65e5f5a1db3694e6f46519973256a10f5e16419c832cb308a36961a4e3569fffd3f6e21e47b4b1ff78bcd2e687fce7b9710dfb25d88fca2d622f
 SHA512 
38bec8ae33128641b17c645733589c32d554ebb771bda50a11d35019e71654f3b75ca95d24d0c0d1ec4eb460edd99983e843a7218092d422d2185a227345de42
 DIST glusterfs-10.2.tar.gz 8278598 BLAKE2B 
48e70a244e34cc41a5befbe94635e945c95b87f26e5e1892b099d23a13c6fb70eefb2a66b247a564b03eeb0707ee480b50096b154b3ac5d2a13051e6371995b3
 SHA512 
290c701fbd3f100096ef26b589ee0714449fc620c35e62bcb5fe2fe8de5f64963b40d7d5fe1b97b274ba791fa45f4175305b6a112f184f6ce11a1e0dc9f7ea30
+DIST glusterfs-10.4.tar.gz 8293872 BLAKE2B 
01f8764cc71b7bac2ee0419f3f1069ac1c85e26314828b47f348b9bf88ad0b8aa327be16ccfe9cf820aebb7dd9477a7840c721df4435c895be91fed0b1129b7c
 SHA512 
06c563ab77a29145b1fac44f5a56a91539accb69ba736fe6297aa3f38b128e68ba4f7d0b49ac6eb56397a51950fb4de882ff60037e91c61ad13dd89a18139d82
 DIST glusterfs-9.4.tar.gz 8173625 BLAKE2B 
c35c63696717bf09f8fbf77dca16a6f45de278253e768c6ffc40c0c097da9ea1b32888233da412a5333281995e89e08d9ed23fd47aba7c506de84b08f9f80cea
 SHA512 
2a17197bd2b425117e34af004a6177b7c5012807cd99b9c6d37a1081e0ab9def6b013bedd0ba4122d149969755e0e2985bef8aed9cf612a27a6452b8719a33bf
 DIST glusterfs-9.5.tar.gz 8174643 BLAKE2B 
d7527b7749b753768bde086e88e146564b461f835bb9108ce24da9626d7d87e7e4da1b2a340c6497da2d8bafe0cd43e87c01d4ba6639635ff96d8788997a8042
 SHA512 
3483068ba6d72a9c63cc6fcb2dbcb38dd5001564d755cc3a30dbf6402eeab9a7c80759a535be1c5c06eae88b61156a336444c89b12bbecdabf56a87f00328a44

diff --git a/sys-cluster/glusterfs/glusterfs-10.4.ebuild 
b/sys-cluster/glusterfs/glusterfs-10.4.ebuild
new file mode 100644
index ..fcb1b45ea7e0
--- /dev/null
+++ b/sys-cluster/glusterfs/glusterfs-10.4.ebuild
@@ -0,0 +1,205 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit autotools elisp-common python-single-r1 tmpfiles systemd
+
+DESCRIPTION="GlusterFS is a powerful network/cluster filesystem"
+HOMEPAGE="https://www.gluster.org/ https://github.com/gluster/glusterfs/";
+SRC_URI="https://download.gluster.org/pub/gluster/${PN}/$(ver_cut 
1)/${PV}/${P}.tar.gz"
+
+LICENSE="|| ( GPL-2 LGPL-3+ )"
+SLOT="0/${PV%%.*}"
+KEYWORDS="~amd64 ~arm ~arm64 ~loong ~ppc ppc64 ~riscv ~x86"
+
+IUSE="debug emacs +fuse georeplication ipv6 +libtirpc rsyslog selinux 
static-libs tcmalloc test +uring xml"
+
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   georeplication? ( xml )
+   ipv6? ( libtirpc )"
+
+# the tests must be run as root
+RESTRICT="test"
+
+# sys-apps/util-linux is required for libuuid
+RDEPEND="
+   acct-group/gluster
+   acct-user/gluster
+   dev-libs/libaio
+   dev-libs/openssl:=[-bindist(-)]
+   net-libs/rpcsvc-proto
+   dev-libs/userspace-rcu:=
+   sys-apps/util-linux
+   sys-libs/readline:=
+   !elibc_glibc? ( sys-libs/argp-standalone )
+   emacs? ( >=app-editors/emacs-23.1:* )
+   fuse? ( >=sys-fs/fuse-2.7.0:0 )
+   georeplication? ( ${PYTHON_DEPS} )
+   libtirpc? ( net-libs/libtirpc:= )
+   !libtirpc? ( elibc_glibc? ( sys-libs/glibc[rpc(-)] ) )
+   selinux? ( sec-policy/selinux-glusterfs )
+   tcmalloc? ( dev-util/google-perftools )
+   uring? ( sys-libs/liburing:= )
+   xml? ( dev-libs/libxml2 )
+"
+DEPEND="
+   ${RDEPEND}
+   virtual/acl
+   test? ( >=dev-util/cmocka-1.0.1
+   app-benchmarks/dbench
+   dev-vcs/git
+   virtual/perl-Test-Harness
+   dev-libs/yajl
+   sys-fs/xfsprogs
+   sys-apps/attr )
+"
+BDEPEND="
+   sys-devel/bison
+   sys-devel/flex
+   virtual/pkgconfig
+"
+
+SITEFILE="50${PN}-mode-gentoo.el"
+
+DOCS=( AUTHORS ChangeLog NEWS README.md THANKS )
+
+QA_PKGCONFIG_VERSION=7.10.2
+
+# Maintainer notes:
+# * The build system will always configure & build argp-standalone but it'll 
never use it
+#   if the argp.h header is found in the system. Which should be the case with
+#   glibc or if argp-standalone is installed.
+
+pkg_setup() {

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

2023-05-09 Thread Sam James
commit: 9fc883f06cfa01c0417057839d7987348401a74d
Author: Jaco Kroon  uls  co  za>
AuthorDate: Tue May  9 19:26:06 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 02:24:43 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fc883f0

sys-cluster/glusterfs: drop 9.4-r1, 9.5-r1

Signed-off-by: Jaco Kroon  uls.co.za>
Signed-off-by: Sam James  gentoo.org>

 sys-cluster/glusterfs/Manifest|   2 -
 sys-cluster/glusterfs/glusterfs-9.4-r1.ebuild | 198 --
 sys-cluster/glusterfs/glusterfs-9.5-r1.ebuild | 198 --
 3 files changed, 398 deletions(-)

diff --git a/sys-cluster/glusterfs/Manifest b/sys-cluster/glusterfs/Manifest
index 3c356ac5c2d2..325b3285ff30 100644
--- a/sys-cluster/glusterfs/Manifest
+++ b/sys-cluster/glusterfs/Manifest
@@ -1,5 +1,3 @@
 DIST glusterfs-10.1.tar.gz 8273640 BLAKE2B 
a29eb83fbc3a65e5f5a1db3694e6f46519973256a10f5e16419c832cb308a36961a4e3569fffd3f6e21e47b4b1ff78bcd2e687fce7b9710dfb25d88fca2d622f
 SHA512 
38bec8ae33128641b17c645733589c32d554ebb771bda50a11d35019e71654f3b75ca95d24d0c0d1ec4eb460edd99983e843a7218092d422d2185a227345de42
 DIST glusterfs-10.2.tar.gz 8278598 BLAKE2B 
48e70a244e34cc41a5befbe94635e945c95b87f26e5e1892b099d23a13c6fb70eefb2a66b247a564b03eeb0707ee480b50096b154b3ac5d2a13051e6371995b3
 SHA512 
290c701fbd3f100096ef26b589ee0714449fc620c35e62bcb5fe2fe8de5f64963b40d7d5fe1b97b274ba791fa45f4175305b6a112f184f6ce11a1e0dc9f7ea30
 DIST glusterfs-10.4.tar.gz 8293872 BLAKE2B 
01f8764cc71b7bac2ee0419f3f1069ac1c85e26314828b47f348b9bf88ad0b8aa327be16ccfe9cf820aebb7dd9477a7840c721df4435c895be91fed0b1129b7c
 SHA512 
06c563ab77a29145b1fac44f5a56a91539accb69ba736fe6297aa3f38b128e68ba4f7d0b49ac6eb56397a51950fb4de882ff60037e91c61ad13dd89a18139d82
-DIST glusterfs-9.4.tar.gz 8173625 BLAKE2B 
c35c63696717bf09f8fbf77dca16a6f45de278253e768c6ffc40c0c097da9ea1b32888233da412a5333281995e89e08d9ed23fd47aba7c506de84b08f9f80cea
 SHA512 
2a17197bd2b425117e34af004a6177b7c5012807cd99b9c6d37a1081e0ab9def6b013bedd0ba4122d149969755e0e2985bef8aed9cf612a27a6452b8719a33bf
-DIST glusterfs-9.5.tar.gz 8174643 BLAKE2B 
d7527b7749b753768bde086e88e146564b461f835bb9108ce24da9626d7d87e7e4da1b2a340c6497da2d8bafe0cd43e87c01d4ba6639635ff96d8788997a8042
 SHA512 
3483068ba6d72a9c63cc6fcb2dbcb38dd5001564d755cc3a30dbf6402eeab9a7c80759a535be1c5c06eae88b61156a336444c89b12bbecdabf56a87f00328a44

diff --git a/sys-cluster/glusterfs/glusterfs-9.4-r1.ebuild 
b/sys-cluster/glusterfs/glusterfs-9.4-r1.ebuild
deleted file mode 100644
index f5753ba588d0..
--- a/sys-cluster/glusterfs/glusterfs-9.4-r1.ebuild
+++ /dev/null
@@ -1,198 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{9..10} )
-
-inherit autotools elisp-common python-single-r1 tmpfiles systemd
-
-DESCRIPTION="GlusterFS is a powerful network/cluster filesystem"
-HOMEPAGE="https://www.gluster.org/ https://github.com/gluster/glusterfs/";
-SRC_URI="https://download.gluster.org/pub/gluster/${PN}/$(ver_cut 
1)/${PV}/${P}.tar.gz"
-
-LICENSE="|| ( GPL-2 LGPL-3+ )"
-SLOT="0/${PV%%.*}"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 x86"
-
-IUSE="debug emacs +fuse +georeplication ipv6 +libtirpc rsyslog selinux 
static-libs +syslog test +xml"
-
-REQUIRED_USE="georeplication? ( ${PYTHON_REQUIRED_USE} xml )
-   ipv6? ( libtirpc )"
-
-# the tests must be run as root
-RESTRICT="test"
-
-# sys-apps/util-linux is required for libuuid
-RDEPEND="
-   acct-group/gluster
-   acct-user/gluster
-   dev-libs/libaio
-   dev-libs/userspace-rcu:=
-   net-libs/rpcsvc-proto
-   sys-apps/util-linux
-   sys-libs/liburing:=
-   sys-libs/readline:=
-   emacs? ( >=app-editors/emacs-23.1:* )
-   fuse? ( >=sys-fs/fuse-2.7.0:0 )
-   georeplication? ( ${PYTHON_DEPS} )
-   selinux? ( sec-policy/selinux-glusterfs )
-   xml? ( dev-libs/libxml2 )
-   !elibc_glibc? ( sys-libs/argp-standalone )
-   libtirpc? ( net-libs/libtirpc:= )
-   !libtirpc? ( elibc_glibc? ( sys-libs/glibc[rpc(-)] ) )
-   dev-libs/openssl:=[-bindist(-)]
-"
-DEPEND="
-   ${RDEPEND}
-   sys-devel/bison
-   sys-devel/flex
-   virtual/acl
-   test? ( >=dev-util/cmocka-1.0.1
-   app-benchmarks/dbench
-   dev-vcs/git
-   net-fs/nfs-utils
-   virtual/perl-Test-Harness
-   dev-libs/yajl
-   sys-fs/xfsprogs
-   sys-apps/attr )
-"
-BDEPEND="
-   virtual/pkgconfig
-"
-
-SITEFILE="50${PN}-mode-gentoo.el"
-
-DOCS=( AUTHORS ChangeLog NEWS README.md THANKS )
-
-# Maintainer notes:
-# * The build system will always configure & build argp-standalone but it'll 
never use it
-#   if the argp.h header is found in the system. Which should be the case with
-#   glibc or if argp-standalone is installed.
-
-pkg_setup() {
-   python_setup "python3*"
-   python-single-r1_pkg_s

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

2023-05-09 Thread Sam James
commit: ea70334a2f9985e9f1e3b37c96e17459faefce29
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 02:25:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 02:25:00 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea70334a

sys-cluster/glusterfs: cleanup obsolete Pythons

3.8 + 3.9 are gone & noops.

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

 sys-cluster/glusterfs/glusterfs-10.2-r2.ebuild | 2 +-
 sys-cluster/glusterfs/glusterfs-10.4.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/glusterfs/glusterfs-10.2-r2.ebuild 
b/sys-cluster/glusterfs/glusterfs-10.2-r2.ebuild
index e4acdddb40e4..85fd17edca5e 100644
--- a/sys-cluster/glusterfs/glusterfs-10.2-r2.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-10.2-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit autotools elisp-common python-single-r1 tmpfiles systemd
 

diff --git a/sys-cluster/glusterfs/glusterfs-10.4.ebuild 
b/sys-cluster/glusterfs/glusterfs-10.4.ebuild
index fcb1b45ea7e0..b93d5a3ce447 100644
--- a/sys-cluster/glusterfs/glusterfs-10.4.ebuild
+++ b/sys-cluster/glusterfs/glusterfs-10.4.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{8..11} )
+PYTHON_COMPAT=( python3_{10..11} )
 
 inherit autotools elisp-common python-single-r1 tmpfiles systemd
 



[gentoo-commits] repo/proj/guru:dev commit in: net-im/mastoposter/, net-im/mastoposter/files/

2023-05-09 Thread Anna Vyalkova
commit: 75d79c8c37bbf4a90156030018a5e4d5dc76717c
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Wed May 10 02:07:33 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Wed May 10 02:07:33 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=75d79c8c

net-im/mastoposter: new package, add 0.1

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 net-im/mastoposter/Manifest  |  1 +
 net-im/mastoposter/files/mastoposter.confd   |  2 ++
 net-im/mastoposter/files/mastoposter.initd   | 16 
 net-im/mastoposter/files/mastoposter.service | 15 +++
 net-im/mastoposter/mastoposter-0.1.ebuild| 38 
 net-im/mastoposter/metadata.xml  | 12 +
 6 files changed, 84 insertions(+)

diff --git a/net-im/mastoposter/Manifest b/net-im/mastoposter/Manifest
new file mode 100644
index 0..e32696a75
--- /dev/null
+++ b/net-im/mastoposter/Manifest
@@ -0,0 +1 @@
+DIST mastoposter-0.1.tar.gz 36352 BLAKE2B 
e0710ce461f3d2b21ea7e3aee0e698a9db90523f9ab598868b602f028951251e6ac69cca9f1dfe9b6a66432a8c0f01d32871327b4e064eed2c3b530ae3c4c153
 SHA512 
77d834503e25f41b4c92ef2538ee8b3a1143d4927e5f96c0ce53d3a3f5c4a004f05c3392d43d8c4af187fc91a044ccec22f9083ccffb31ba5902f254723577ec

diff --git a/net-im/mastoposter/files/mastoposter.confd 
b/net-im/mastoposter/files/mastoposter.confd
new file mode 100644
index 0..1458da339
--- /dev/null
+++ b/net-im/mastoposter/files/mastoposter.confd
@@ -0,0 +1,2 @@
+# Configuration file
+#MASTOPOSTER_CONFIG_FILE="/etc/mastoposter/config.ini"

diff --git a/net-im/mastoposter/files/mastoposter.initd 
b/net-im/mastoposter/files/mastoposter.initd
new file mode 100644
index 0..0057cddc4
--- /dev/null
+++ b/net-im/mastoposter/files/mastoposter.initd
@@ -0,0 +1,16 @@
+#!/sbin/openrc-run
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# shellcheck shell=sh
+
+command="/usr/bin/mastoposter"
+command_args="${MASTOPOSTER_CONFIG_FILE:=/etc/mastoposter/config.ini}"
+command_background=1
+pidfile="/run/${RC_SVCNAME}.pid"
+output_log="/var/log/${RC_SVCNAME}.log"
+error_log="${output_log}"
+
+depend() {
+   need net
+}

diff --git a/net-im/mastoposter/files/mastoposter.service 
b/net-im/mastoposter/files/mastoposter.service
new file mode 100644
index 0..095626e7b
--- /dev/null
+++ b/net-im/mastoposter/files/mastoposter.service
@@ -0,0 +1,15 @@
+[Unit]
+Description=Configurable reposter from Mastodon-compatible Fediverse servers
+After=network.target
+Wants=network-online.target
+
+[Service]
+Type=simple
+ExecStart=/usr/bin/mastoposter /etc/mastoposter/config.ini
+Restart=always
+RestartSec=5
+StandardOutput=journal
+StandardError=inherit
+
+[Install]
+WantedBy=multi-user.target

diff --git a/net-im/mastoposter/mastoposter-0.1.ebuild 
b/net-im/mastoposter/mastoposter-0.1.ebuild
new file mode 100644
index 0..c490eae74
--- /dev/null
+++ b/net-im/mastoposter/mastoposter-0.1.ebuild
@@ -0,0 +1,38 @@
+# Copyright 2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_USE_PEP517=flit
+inherit distutils-r1 pypi systemd
+
+DESCRIPTION="Configurable reposter from Mastodon-compatible Fediverse servers"
+HOMEPAGE="
+   https://pypi.org/project/mastoposter/
+   https://github.com/hatkidchan/mastoposter
+"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   dev-python/beautifulsoup4[${PYTHON_USEDEP}]
+   dev-python/emoji[${PYTHON_USEDEP}]
+   dev-python/httpx[${PYTHON_USEDEP}]
+   dev-python/jinja[${PYTHON_USEDEP}]
+   dev-python/websockets[${PYTHON_USEDEP}]
+"
+
+src_install() {
+   distutils-r1_src_install
+
+   systemd_dounit "${FILESDIR}"/mastoposter.service
+   newinitd "${FILESDIR}"/mastoposter.initd mastoposter
+   newconfd "${FILESDIR}"/mastoposter.confd mastoposter
+
+   insinto /etc/mastoposter
+   insopts --mode 600
+   doins config.ini
+}

diff --git a/net-im/mastoposter/metadata.xml b/net-im/mastoposter/metadata.xml
new file mode 100644
index 0..c23e04d78
--- /dev/null
+++ b/net-im/mastoposter/metadata.xml
@@ -0,0 +1,12 @@
+
+https://www.gentoo.org/dtd/metadata.dtd";>
+
+   
+   cyber+gen...@sysrq.in
+   Anna
+   
+   
+   mastoposter
+   hatkidchan/mastoposter
+   
+



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

2023-05-09 Thread Sam James
commit: 80612d7f47f5560f9f8a7f308619354c325ac07c
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 01:44:11 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:44:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80612d7f

profiles: mask (gone) =sci-libs/metis-5.2.1-r1 too

This version was broken as well, but -r2 is fine. Mask so people don't get 
confusing
errors.

Bug: https://bugs.gentoo.org/905822
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 8eeb87ac6a50..a9f214ed299e 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -75,8 +75,9 @@ www-client/chromium-bin
 
 # Sam James  (2023-05-03)
 # Broken pkgconfig file, please upgrade to -r1.
-# bug #704348, bug #905632.
+# bug #704348, bug #905632, bug #905822
 =sci-libs/metis-5.2.1
+=sci-libs/metis-5.2.1-r1
 =sci-libs/parmetis-4.0.3_p20230326
 
 # Michał Górny  (2023-05-03)



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

2023-05-09 Thread Michał Górny
commit: cadda4a03e09246c90f61d664875de4837dc0c0c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed May 10 01:42:39 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 01:42:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cadda4a0

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

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   7 ++
 .../gentoo-kernel-bin-6.3.1.ebuild | 127 +
 2 files changed, 134 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 38baceaaa285..9c06e767edd5 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -24,6 +24,8 @@ DIST genpatches-6.2-15.base.tar.xz 763032 BLAKE2B 
b933b63ddc6d19f47ba58d5a5884ff
 DIST genpatches-6.2-15.extras.tar.xz 3808 BLAKE2B 
6134125180afd914169eb329f5d9ec8f3f9fbd3ff61a0266200defdae573a62b39ba557c2a815229344ac762786715a6193ce3cb9c3ed08d07a87d83427ab107
 SHA512 
857e513619ab77e79461a337c02e9fa9fbb63ee9a837eef438b1e5af3c8c856867c738b0b28f21a8035a5e1b963eb8c13507223ad6a251f5320da67aeaeb595d
 DIST genpatches-6.2-16.base.tar.xz 768864 BLAKE2B 
e852e0feb635be67bbf0da77ca6c946abb4fdad1b7b6a6e72c350b7705c4c1edeaa152f8b5ab70e4089bec80de805dc4a506ca60f74f53d3572b3ad0214bcec8
 SHA512 
2ea683e51835696d825977f65d93b9c25259f59499669bbddbfadc1573e6510b46e916c4e4922d5c62bd64ecda992615fbdb076f5c50648debfe2f9f05e1974f
 DIST genpatches-6.2-16.extras.tar.xz 3812 BLAKE2B 
ffc7e5852ee193ff8bf364ae77394e10c0d9cf8f21ec4f9886d87803be3f6152e632990be009b68f3910ba3e95d7c2bd30c37d6cbf5c49cccf497dffd12f62a5
 SHA512 
b17df7f12e2c50bfaab0a0a865e1a7687f058e6b4d6fdcd1b107c690e6869e8ad5c127a51ea64b55ce3dc57d74da05fa075f9d99fb3f0b24dbe6dee5d7fb4402
+DIST genpatches-6.3-2.base.tar.xz 8036 BLAKE2B 
754d46f15ab113a1bae41d154b47c4cde2a93df9dbc4333b93e7d3abc424ef19dca2993c25705020096ab9d500f794a852c4cff68f29907e7667edbec7503ff6
 SHA512 
45eb038e9118a2feff7625cefc7bbb96ef4fd8fa29fce118943dbd0685075fbf9c525202879abf6308d7e80e94b8e9704799e3c863105add026c86b97314d580
+DIST genpatches-6.3-2.extras.tar.xz 3808 BLAKE2B 
6eccde5d3591804ef50d800dc7ec4cb8b2192d805832cde3496c519bf4ff0f9eef62a76f1e77677df66a054ed1f1efe341f71b8f86b185b10145de8200bc2c70
 SHA512 
8d79b8c2eed3c962a4c8fda80934720a2ee1436d4e42d762d3f945972537491f415aa6b3615f7a81a727bbb239cd0277ecfb18c83a90ba57252674bf135b35f8
 DIST gentoo-kernel-5.10.177-1.amd64.gpkg.tar 66334720 BLAKE2B 
87d02bab9e9d14388e984b3a712e00b85ae14ee57040acbd9948f64173166337e2939a73cb787d172365fd4f6ebc42677cf3fa52b33f7017549d7de373301527
 SHA512 
f77551f0df9d37befee7f310f05f5e221cab19fe29b21d788c515a4cf55071456d00f232115525e541b94f9a0ce6713f5c764ab49119333d337a043888d61e85
 DIST gentoo-kernel-5.10.177-1.arm64.gpkg.tar 59361280 BLAKE2B 
ab78f801631243a1767abfb1e950206e72d030438bc9d6434900c5795686f9cc9cd7c804bd85153126f4206f2e1b3774f8288b1419d561492c210b030dca5ff4
 SHA512 
83434e8b1d6050e48967abe37e923e16a8111c0ed30773d016b80d34ff6caf52c27e10af9598e653d823a2f89e73a04c7f675ae027c248543cff72f87be04fc4
 DIST gentoo-kernel-5.10.177-1.ppc64le.gpkg.tar 54917120 BLAKE2B 
5a86c6beacd641530e3d1d36b8730ee8c223f9d537922b6cfaf32629bb8ef85074d456536a2f861381398731dba633255372957bf6f79951f4c919f0c160c773
 SHA512 
b9f69167a9d9a74fde75eebf7d645fde1092ef785441ac6b57eaa37fbda9351e8a2e02b1659cf32d08c057f97ee7ca9865c57f014fd2b1e5ecadbdce912edec4
@@ -76,8 +78,13 @@ DIST gentoo-kernel-6.2.14-1.amd64.gpkg.tar 82647040 BLAKE2B 
c895ead21704cdd0d2f2
 DIST gentoo-kernel-6.2.14-1.arm64.gpkg.tar 71802880 BLAKE2B 
bd9f6c0368ca04f3a7512c4678b1d567bb4f7de336dc631639cd3c256b692464d48e1492911c231d907d189f71fff225d0710b1cbb35ba1104127c7027e0
 SHA512 
035ea2e7f7309b1080c58b5490c13bc6908df1ec8f01a286bdea83e15dcfe5f9ce36cb9664e3cf37dbbbd056b85621bda1c42f8ffd91ff77c4d56c392e02d0b8
 DIST gentoo-kernel-6.2.14-1.ppc64le.gpkg.tar 63928320 BLAKE2B 
8287654a4864994f70124132669cb9eda0cc8397150a44950b9ffe0241af535cd8d7556af67b07b6129e62a567be9678220ed34aadb09f2a9678af536604fa1d
 SHA512 
c3dbaef15e020deee482b696a183da22bd1de2ccb4eb27e8fc5b40b3c49d8e5e0a76b3478e75aea064c84cb03823f05d12360682b59f30fc4db66b2a1801763d
 DIST gentoo-kernel-6.2.14-1.x86.gpkg.tar 66519040 BLAKE2B 
68dbd8c39de89dd97e8d29774df725cee0d67b74ce4d3c0860e0d7bbfb6564a7ade3a7b3ffecb079b9edb04b6b59ec8a22b668c86826ee64332e204a084abab4
 SHA512 
8a6b84ac77da67ec74de1a5c95e604d05298beeacf526ce23991c96ae3eeb13714d268d8ece6ee4979967310ebaa8773281c181d1af22cabab87cb6fac0e7549
+DIST gentoo-kernel-6.3.1-1.amd64.gpkg.tar 83415040 BLAKE2B 
25b01c8ce51ae47c9ac32c8eb42b1ba78ed0c889ccc5538f3da96db671b5e4cafac133fb23fec7c2b315e1c5306d68c6c1072189cc6889cd1774ab7ab7a2a241
 SHA512 
f01cafdc3946fb6583d2412892498320a5ce896cbf3f27d1138de6698478522a68edde3610b22f4b8126ac0907d4cf63f602e71643ed06f8a87ddcc894eeefa8
+DIST gentoo-kernel-6.3.1-1.arm64.gpkg.tar 72376320 BLAKE2B 
7bcbf05310a57d5d8417b13f94031f6876aa37108c8077a97c6d9e6ef67

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

2023-05-09 Thread Michał Górny
commit: dc73abce7d75e4d870348f4ae51901d450ea6503
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  9 18:58:35 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 01:39:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc73abce

sys-kernel/vanilla-kernel: Bump to 6.3.1

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

 sys-kernel/vanilla-kernel/Manifest |   6 +
 .../vanilla-kernel/vanilla-kernel-6.3.1.ebuild | 137 +
 2 files changed, 143 insertions(+)

diff --git a/sys-kernel/vanilla-kernel/Manifest 
b/sys-kernel/vanilla-kernel/Manifest
index 27e0cea29097..aad741e2a47f 100644
--- a/sys-kernel/vanilla-kernel/Manifest
+++ b/sys-kernel/vanilla-kernel/Manifest
@@ -6,24 +6,28 @@ DIST kernel-aarch64-fedora.config.5.15.19 242615 BLAKE2B 
94e59440681535e38137b71
 DIST kernel-aarch64-fedora.config.5.19.13-gentoo 246842 BLAKE2B 
4a824d02999749a0404437cae28721576511e06a5eaa9ebb1b1479c74e2b54402c440be7ea9159bf304661d4baaa5381c36b266ac0bba0b9bf3820eb04c6e4e0
 SHA512 
8862cf24b177ef3871f118712ceace2b496b04a488b045bbe3d83ab22942f064995486f5534630321faaa96ce60e5f237c4ded24a5468bea6e365aa3ea9f09c4
 DIST kernel-aarch64-fedora.config.6.1.7-gentoo 252811 BLAKE2B 
f6bad0d23132bf0dfbaa25db928a95f39763b6500fd1df9b4aeca4351e3e75f185891c0df96b111ad840e4bac431d74a9b11e7344e766ab49715663c89e4dbfc
 SHA512 
41ebf195d8b656801d49c6bb693ebe1404b6725d70d88d93a75bc4af230030d65ef0701ea931846b022a3c598dcca068fbc38ecf6d064262b3f5b88e57060437
 DIST kernel-aarch64-fedora.config.6.2.6-gentoo 255386 BLAKE2B 
ecae61e292a9491cadb63a7709c790d25cd74baf4ba8a2b6259105e40e3b6d19a786e032a7f2630c9d6167e1d41a1e42de723a93982aa0087742b40ef29e09aa
 SHA512 
676752fce91f936b12eb079c0d9ebec52ac0b7c1ea2862311faccba83057d64ab8184e30c7d1839c951ba562aea2d5c9eb3f5d98eab87b780f8d15b3c4921e6f
+DIST kernel-aarch64-fedora.config.6.3.1-gentoo 258017 BLAKE2B 
01b1d79b95d084941ab5337e7930ae4cbbf07749e2db303794575c1e2436b60003722ec87d09b045c8731cdb850a6ac059081d08dbc8dfe2271ad23169052055
 SHA512 
6bf350dc7d7ef329a3c073c9156eb03f8ef42f14d85942340f50a04eb86d354fbdb4e959fb81af1a7ee9626e041e89a3c89aec0200c60601d92335846c22e752
 DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 
578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09
 SHA512 
66e9a437beb350fdc59512c17b8f72c5b5bfacf2b35070d810d77e66f49cf7929026cc28ad44b04a016d61e65d9fb4a10af6996ba09b604bf97e9c467d08f8ff
 DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 
92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b
 SHA512 
69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39cc7370cf45f1d3a8bc7f75ec096d6db5ea9ecb28ac6b56702ebb10
 DIST kernel-i686-fedora.config.5.15.19 33 BLAKE2B 
9e0f4dd37058f59610e46a87d3165039e76299d3c186fbfc3312101bac1b8b198de404075f5bbc6f5e2ba04cfd45f9d02bdf94b01c3ed11b9275f37f11ee7617
 SHA512 
49ffc39de86763e707a5c0c07c1367d34e9249615f29fdf97904d7b61a375a86fc4ba37a2f02b5f61e4c76ad65d9ba12716d2523af6faa003f6336d7ae61a953
 DIST kernel-i686-fedora.config.5.19.13-gentoo 223571 BLAKE2B 
d56f8e019b0c58023b08ee358a9af46679ca0f734c075ba6cd65dd6e3277640c0b7683e5707c48f687644d815a3840eb58351c0dee84fe9ec1dcea525fb2e1e8
 SHA512 
0d9fa0592b6a9414f2967677c048a9e014a0e0d43274eea4fe10f8099befae7389bbcd033f4fb36c7c44bd30c2fb197e860151e27c10dc354fe9a86a8bb65e94
 DIST kernel-i686-fedora.config.6.1.7-gentoo 228053 BLAKE2B 
1b06ca68465d7833905b6236a6ccf9a594f44613cbd102990c1667c1ece53ad982fa3abbfe475333e3297331ce1cfadf27c00c3e7de6293e213278e8ca97cd3b
 SHA512 
1ed70eb5254a04d99d28ad901d4556dfa7e8ec8b739a0a33040315718effe9348e75ca8ac19d3b33fa7b3dcad9b4bb0531075692087c0dbe57ec6a4d873a4b27
 DIST kernel-i686-fedora.config.6.2.6-gentoo 229782 BLAKE2B 
454a08b67638042004303e08b8106f46270dd73092fbc6da0251d84251e23dbbc6d608b95c48cde8d0d18ee7ecd202374e8295ebf884e616b307254728ad57e5
 SHA512 
950def3dbda61e6b35f32454e6230144e32cece797b78d9fd0a0afdb4a1c1a55e6f7c30ce3ad9bb5316ff6c95263711a2be6d6c69c5303d62a3cfdfeaf7da391
+DIST kernel-i686-fedora.config.6.3.1-gentoo 231336 BLAKE2B 
67a63eb822a6a3a4b79a5d265bcc26711f757065428bc7513584ebfd8e8a7ed519aa19b00d2d161e4e15e4ad1ee08dfb1e30953a736db914ef31661bbabcb083
 SHA512 
b86718ea9163d1ad857419ae440d135b1c8d8e3ca4e37c5be245f68fd80d75806b03c327180456f47fdd323249c95a706b18f57551ccf787e3221859dcc51328
 DIST kernel-i686.config.5.4.21 183910 BLAKE2B 
185126ffb85718bb73761d01683def80b6f002d7a7a6eddd8e858a30d8eadc863fb378d83a1cd2ed82b3540337fa66ae44475e31fb41ebc46d77005b6f54e5c0
 SHA512 
6307afc2295902e44fe65b1cccaa7a0260b295a5f21f1d67ec66197bd972bd3f5675b624f08d9da8b224cb3ec987d5c21cbd743599aeab9ac6214bc651f43476
 DIST kernel-ppc64le-fedora.config.5.10.12 192105 BLAKE2B 
889141debb0656a358a3381bae14b5216b982acdfce0bc758f9445c16647807a68a788fb290199c2a1a23627bda1ef4c9405b3f5ac2a4176d1d2b55c71fb7db9
 SHA512 
3ab0f1401d9f50a61477c7

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

2023-05-09 Thread Michał Górny
commit: ffe74bc65154ac9c1e8bc228bd4727b19279e602
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  9 18:59:04 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 01:39:10 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffe74bc6

sys-kernel/gentoo-kernel: Bump to 6.3.1

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

 sys-kernel/gentoo-kernel/Manifest  |   7 ++
 .../gentoo-kernel/gentoo-kernel-6.3.1.ebuild   | 140 +
 2 files changed, 147 insertions(+)

diff --git a/sys-kernel/gentoo-kernel/Manifest 
b/sys-kernel/gentoo-kernel/Manifest
index bc600214d77b..e6cca830897e 100644
--- a/sys-kernel/gentoo-kernel/Manifest
+++ b/sys-kernel/gentoo-kernel/Manifest
@@ -22,29 +22,36 @@ DIST genpatches-6.2-15.base.tar.xz 763032 BLAKE2B 
b933b63ddc6d19f47ba58d5a5884ff
 DIST genpatches-6.2-15.extras.tar.xz 3808 BLAKE2B 
6134125180afd914169eb329f5d9ec8f3f9fbd3ff61a0266200defdae573a62b39ba557c2a815229344ac762786715a6193ce3cb9c3ed08d07a87d83427ab107
 SHA512 
857e513619ab77e79461a337c02e9fa9fbb63ee9a837eef438b1e5af3c8c856867c738b0b28f21a8035a5e1b963eb8c13507223ad6a251f5320da67aeaeb595d
 DIST genpatches-6.2-16.base.tar.xz 768864 BLAKE2B 
e852e0feb635be67bbf0da77ca6c946abb4fdad1b7b6a6e72c350b7705c4c1edeaa152f8b5ab70e4089bec80de805dc4a506ca60f74f53d3572b3ad0214bcec8
 SHA512 
2ea683e51835696d825977f65d93b9c25259f59499669bbddbfadc1573e6510b46e916c4e4922d5c62bd64ecda992615fbdb076f5c50648debfe2f9f05e1974f
 DIST genpatches-6.2-16.extras.tar.xz 3812 BLAKE2B 
ffc7e5852ee193ff8bf364ae77394e10c0d9cf8f21ec4f9886d87803be3f6152e632990be009b68f3910ba3e95d7c2bd30c37d6cbf5c49cccf497dffd12f62a5
 SHA512 
b17df7f12e2c50bfaab0a0a865e1a7687f058e6b4d6fdcd1b107c690e6869e8ad5c127a51ea64b55ce3dc57d74da05fa075f9d99fb3f0b24dbe6dee5d7fb4402
+DIST genpatches-6.3-2.base.tar.xz 8036 BLAKE2B 
754d46f15ab113a1bae41d154b47c4cde2a93df9dbc4333b93e7d3abc424ef19dca2993c25705020096ab9d500f794a852c4cff68f29907e7667edbec7503ff6
 SHA512 
45eb038e9118a2feff7625cefc7bbb96ef4fd8fa29fce118943dbd0685075fbf9c525202879abf6308d7e80e94b8e9704799e3c863105add026c86b97314d580
+DIST genpatches-6.3-2.extras.tar.xz 3808 BLAKE2B 
6eccde5d3591804ef50d800dc7ec4cb8b2192d805832cde3496c519bf4ff0f9eef62a76f1e77677df66a054ed1f1efe341f71b8f86b185b10145de8200bc2c70
 SHA512 
8d79b8c2eed3c962a4c8fda80934720a2ee1436d4e42d762d3f945972537491f415aa6b3615f7a81a727bbb239cd0277ecfb18c83a90ba57252674bf135b35f8
 DIST gentoo-kernel-config-g7.tar.gz 4625 BLAKE2B 
72ba0d038ee34ca5eb26d43bd373735aef3a50d02b414993ea05485e49d83d46df98a6cb0f6f3170a8ec0c99b557432fd9a11cbb92ff7c2837625a7f4469831e
 SHA512 
2d74a8ca9f5402b4290ed93cd3ddba04a7f2ff42c8d8d3f2cbbe22fc20daa0fca119368daa8af39b7a26b1b99e4e3187c3c5d95886a651675ad94ff98d686628
 DIST kernel-aarch64-fedora.config.5.10.12 223184 BLAKE2B 
a0246dac2f7a4ad6a55b611538d24382ac87a8960077811a859c9595ac67f961b4bccb7e139a89abc7c0e26e80832da5c94211fc658082f2e7dde984f14dd29d
 SHA512 
7d803b347b136331db1ad6e22e0445fe0224c3e26cd7c034cbe9794915d457b492e05f77664865079874ec001351553652646e2e08d0fee31e30b841b0008f52
 DIST kernel-aarch64-fedora.config.5.15.19 242615 BLAKE2B 
94e59440681535e38137b71814e1ae53f57a347f62cf31e0c1c8571ae43d9ae9be9957743c8cbc9ec74850c964eaabefe6799a28bc311ea7b99ee31391b47fb1
 SHA512 
fb77d3b73a215f97d70cd6d8c96ed20e497786b99ed7d7a7f2ed60cc1251289c1a4c7e058c41b5efac62e4a9b4b3d917dbdb11585955bba2b6584981430f4ddb
 DIST kernel-aarch64-fedora.config.6.1.7-gentoo 252811 BLAKE2B 
f6bad0d23132bf0dfbaa25db928a95f39763b6500fd1df9b4aeca4351e3e75f185891c0df96b111ad840e4bac431d74a9b11e7344e766ab49715663c89e4dbfc
 SHA512 
41ebf195d8b656801d49c6bb693ebe1404b6725d70d88d93a75bc4af230030d65ef0701ea931846b022a3c598dcca068fbc38ecf6d064262b3f5b88e57060437
 DIST kernel-aarch64-fedora.config.6.2.6-gentoo 255386 BLAKE2B 
ecae61e292a9491cadb63a7709c790d25cd74baf4ba8a2b6259105e40e3b6d19a786e032a7f2630c9d6167e1d41a1e42de723a93982aa0087742b40ef29e09aa
 SHA512 
676752fce91f936b12eb079c0d9ebec52ac0b7c1ea2862311faccba83057d64ab8184e30c7d1839c951ba562aea2d5c9eb3f5d98eab87b780f8d15b3c4921e6f
+DIST kernel-aarch64-fedora.config.6.3.1-gentoo 258017 BLAKE2B 
01b1d79b95d084941ab5337e7930ae4cbbf07749e2db303794575c1e2436b60003722ec87d09b045c8731cdb850a6ac059081d08dbc8dfe2271ad23169052055
 SHA512 
6bf350dc7d7ef329a3c073c9156eb03f8ef42f14d85942340f50a04eb86d354fbdb4e959fb81af1a7ee9626e041e89a3c89aec0200c60601d92335846c22e752
 DIST kernel-aarch64.config.5.4.21 199104 BLAKE2B 
578ad451a76204df2a9bbbe34b5cb27051d2ac5e2c33967f562b01338c43f35da6dc33a4c2cc67ea6c3b32b155729360d3748ec28dcaa750f18449245b2e8a09
 SHA512 
66e9a437beb350fdc59512c17b8f72c5b5bfacf2b35070d810d77e66f49cf7929026cc28ad44b04a016d61e65d9fb4a10af6996ba09b604bf97e9c467d08f8ff
 DIST kernel-i686-fedora.config.5.10.12 205412 BLAKE2B 
92c715b7e2cd7dd74da7970c05981f520597d3e403ce82c8cf4eee31c9f1f50b638792a6bdb256ef5bfdc99f1bcd594e819e8f44dc6febb2ad9a854bad817f2b
 SHA512 
69d8db11723ae1b40fdedfaace74d15bb63198cdb0485e0a1e5eba95b31217110c93a93e39

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

2023-05-09 Thread Michał Górny
commit: 46cf371532196dca20ae2bfa1ba24cb27c2c47fa
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  9 18:59:05 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed May 10 01:39:11 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46cf3715

virtual/dist-kernel: Bump to 6.3.1

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

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

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



[gentoo-commits] proj/gcc-patches:master commit in: 13.2.0/musl/

2023-05-09 Thread Sam James
commit: 29d805847dc870c92f705ed9c5e7eac955c7e7d4
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 01:36:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:36:00 2023 +
URL:https://gitweb.gentoo.org/proj/gcc-patches.git/commit/?id=29d80584

13.2.0: musl: fix build w/ musl-1.2.4 LFS changes

Bug: https://bugs.gentoo.org/900871
Signed-off-by: Sam James  gentoo.org>

 13.2.0/musl/50_all_sanitizer_lfs.patch | 197 +
 13.2.0/musl/README.history |   3 +
 2 files changed, 200 insertions(+)

diff --git a/13.2.0/musl/50_all_sanitizer_lfs.patch 
b/13.2.0/musl/50_all_sanitizer_lfs.patch
new file mode 100644
index 000..65baea2
--- /dev/null
+++ b/13.2.0/musl/50_all_sanitizer_lfs.patch
@@ -0,0 +1,197 @@
+https://bugs.gentoo.org/900871
+https://reviews.llvm.org/D141186
+https://gcc.gnu.org/bugzilla/show_bug.cgi?id=109533
+https://github.com/llvm/llvm-project/commit/a5519b99bc73d50f362d6fb306411e9fcb758b53
+--- a/libsanitizer/interception/interception_type_test.cpp
 b/libsanitizer/interception/interception_type_test.cpp
+@@ -24,9 +24,9 @@ COMPILER_CHECK(sizeof(::SSIZE_T) == sizeof(ssize_t));
+ COMPILER_CHECK(sizeof(::PTRDIFF_T) == sizeof(ptrdiff_t));
+ COMPILER_CHECK(sizeof(::INTMAX_T) == sizeof(intmax_t));
+ 
+-#if !SANITIZER_APPLE
++#  if SANITIZER_GLIBC || SANITIZER_ANDROID
+ COMPILER_CHECK(sizeof(::OFF64_T) == sizeof(off64_t));
+-#endif
++#  endif
+ 
+ // The following are the cases when pread (and friends) is used instead of
+ // pread64. In those cases we need OFF_T to match off_t. We don't care about 
the
+--- a/libsanitizer/sanitizer_common/sanitizer_common_syscalls.inc
 b/libsanitizer/sanitizer_common/sanitizer_common_syscalls.inc
+@@ -910,24 +910,26 @@ POST_SYSCALL(statfs)(long res, const void *path, void 
*buf) {
+   }
+ }
+ 
+-PRE_SYSCALL(statfs64)(const void *path, long sz, void *buf) {
+-  if (path)
+-PRE_READ(path, __sanitizer::internal_strlen((const char *)path) + 1);
+-}
++PRE_SYSCALL(fstatfs)(long fd, void *buf) {}
+ 
+-POST_SYSCALL(statfs64)(long res, const void *path, long sz, void *buf) {
++POST_SYSCALL(fstatfs)(long res, long fd, void *buf) {
+   if (res >= 0) {
+ if (buf)
+-  POST_WRITE(buf, struct_statfs64_sz);
++  POST_WRITE(buf, struct_statfs_sz);
+   }
+ }
++#  endif  // !SANITIZER_ANDROID
+ 
+-PRE_SYSCALL(fstatfs)(long fd, void *buf) {}
++#  if SANITIZER_GLIBC
++PRE_SYSCALL(statfs64)(const void *path, long sz, void *buf) {
++  if (path)
++PRE_READ(path, __sanitizer::internal_strlen((const char *)path) + 1);
++}
+ 
+-POST_SYSCALL(fstatfs)(long res, long fd, void *buf) {
++POST_SYSCALL(statfs64)(long res, const void *path, long sz, void *buf) {
+   if (res >= 0) {
+ if (buf)
+-  POST_WRITE(buf, struct_statfs_sz);
++  POST_WRITE(buf, struct_statfs64_sz);
+   }
+ }
+ 
+@@ -939,7 +941,7 @@ POST_SYSCALL(fstatfs64)(long res, long fd, long sz, void 
*buf) {
+   POST_WRITE(buf, struct_statfs64_sz);
+   }
+ }
+-#  endif  // !SANITIZER_ANDROID
++#  endif  // SANITIZER_GLIBC
+ 
+ PRE_SYSCALL(lstat)(const void *filename, void *statbuf) {
+   if (filename)
+@@ -998,7 +1000,7 @@ POST_SYSCALL(newfstat)(long res, long fd, void *statbuf) {
+   }
+ }
+ 
+-#  if !SANITIZER_ANDROID
++#  if SANITIZER_GLIBC
+ PRE_SYSCALL(ustat)(long dev, void *ubuf) {}
+ 
+ POST_SYSCALL(ustat)(long res, long dev, void *ubuf) {
+@@ -1007,7 +1009,7 @@ POST_SYSCALL(ustat)(long res, long dev, void *ubuf) {
+   POST_WRITE(ubuf, struct_ustat_sz);
+   }
+ }
+-#  endif  // !SANITIZER_ANDROID
++#  endif  // SANITIZER_GLIBC
+ 
+ PRE_SYSCALL(stat64)(const void *filename, void *statbuf) {
+   if (filename)
+@@ -2228,7 +2230,7 @@ POST_SYSCALL(setrlimit)(long res, long resource, void 
*rlim) {
+   }
+ }
+ 
+-#  if !SANITIZER_ANDROID
++#  if SANITIZER_GLIBC
+ PRE_SYSCALL(prlimit64)
+ (long pid, long resource, const void *new_rlim, void *old_rlim) {
+   if (new_rlim)
+--- a/libsanitizer/sanitizer_common/sanitizer_platform_interceptors.h
 b/libsanitizer/sanitizer_common/sanitizer_platform_interceptors.h
+@@ -269,7 +269,7 @@
+ #define SANITIZER_INTERCEPT_INET_ATON SI_POSIX
+ #define SANITIZER_INTERCEPT_SYSINFO SI_LINUX
+ #define SANITIZER_INTERCEPT_READDIR SI_POSIX
+-#define SANITIZER_INTERCEPT_READDIR64 SI_LINUX_NOT_ANDROID || SI_SOLARIS32
++#define SANITIZER_INTERCEPT_READDIR64 SI_GLIBC || SI_SOLARIS32
+ #if SI_LINUX_NOT_ANDROID &&\
+ (defined(__i386) || defined(__x86_64) || defined(__mips64) ||  \
+  defined(__powerpc64__) || defined(__aarch64__) || defined(__arm__) || \
+@@ -308,7 +308,7 @@
+ #define SANITIZER_INTERCEPT_XPG_STRERROR_R SI_LINUX_NOT_ANDROID
+ #define SANITIZER_INTERCEPT_SCANDIR \
+   (SI_FREEBSD || SI_NETBSD || SI_LINUX_NOT_ANDROID || SI_SOLARIS)
+-#define SANITIZER_INTERCEPT_SCANDIR64 SI_LINUX_NOT_ANDROID || SI_SOLARIS32
++#define SANITIZER_INTERCEPT_SCANDIR64 SI_GLIBC || SI_SOLARIS32
+ #define SANITIZER_INTERCEPT_GETGROU

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

2023-05-09 Thread Sam James
commit: 597377c1373e7716a4ac2372080cce4947b32e01
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 01:35:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:35:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=597377c1

sys-devel/gcc: fix build w/ musl-1.2.4 for 13

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

 sys-devel/gcc/Manifest   | 1 +
 sys-devel/gcc/gcc-13.1.1_p20230429-r1.ebuild | 2 +-
 sys-devel/gcc/gcc-13.1.1_p20230429.ebuild| 2 +-
 sys-devel/gcc/gcc-13.1.1_p20230506.ebuild| 2 +-
 4 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/sys-devel/gcc/Manifest b/sys-devel/gcc/Manifest
index 376707c1c9d6..a398fd61be95 100644
--- a/sys-devel/gcc/Manifest
+++ b/sys-devel/gcc/Manifest
@@ -16,6 +16,7 @@ DIST gcc-13-20230429.tar.xz 83944828 BLAKE2B 
e939826a8ed126ff5543da048ba0071cca8
 DIST gcc-13-20230506.tar.xz 83939392 BLAKE2B 
439a139f6ef4b4c3afb5d3e4db69f2a4aa24a410c7b9c6689e58b2eec6383388ebbbd8a6f7be1d5cba2aac770ec7758a8b4b6bae80c63475a3b72372d1bef283
 SHA512 
5255500c92a72fe066b110efb20c73da217ddaf38d726b1a8f051dd27b6a613f3b4379762cdf4310823113e9bc75a31d6d72c060b20216a2a6bcd34800a2e1e1
 DIST gcc-13.1.0.tar.xz 87451196 BLAKE2B 
b956a773cffe8b43bd6c9a99fe614f53f665438925a6b320975d301f547923e45d4d6fa577a143467fb03e0a9c1bab2b6719a1011d672367f3e644433a2d7606
 SHA512 
6cf06dfc48f57f5e67f7efe3248019329a14d690c728d9f2f7ef5fa0d58f1816f309586ba7ea2eac20d0b60a2d1b701f68392e9067dd46f827ba0efd7192db33
 DIST gcc-13.2.0-musl-patches-1.tar.xz 3572 BLAKE2B 
a5fd1dd6f94aa9f2b35815e193bdecb9c343874e5181761524abf9db6e796bad6b57eb7de9b7aa41b61c370df526f4fc2b56766eb4b2d430b10785e3c287d544
 SHA512 
d55f0097053ea38ec1e2880059407bf726c5f6282c2abe659646e3af7ac0844c80ffb06e9006f6320e8a19752d90a2b960403239f17f88bdb5ab43fb9d80c1d2
+DIST gcc-13.2.0-musl-patches-2.tar.xz 5292 BLAKE2B 
c057d6574d03c05854edaa9f3fd40e9149662b04f3ac7a7db3eb078d73a7b535726d1bf52e5b12736dedb2f9898ad731f2e48a6421fcfbf7b90f929dee072fcb
 SHA512 
a691da0c87c443a5e9d23731f4005f27871c5b12bc9102873ffa24d374aa7b9fbd187c4f5635d23fa9ffb17e351e76173c2d3fdf40646e355c4cb314b538de69
 DIST gcc-13.2.0-patches-1.tar.xz 15792 BLAKE2B 
2ffa9ac013c0f9a91eb93e87e3bc6c378d02cca32ad3f8a84d1249e257eb02b206ec10fa425738a4bae2ffb7db8506afcee2a8dd855357e4b48636608aa24e50
 SHA512 
917ea178f3696724f9ec08aebb6976f03c5edf8ee21bb4bad7e2d820507452f6dace6e847c4f342a52870642550f34da0346ee635a60ba0c1bff667e0e31d195
 DIST gcc-13.2.0-patches-2.tar.xz 12392 BLAKE2B 
40ca4c230166e39d237e4b939669e51b991f58d0e1787c43f2bf468447de478604d28b6e9b20f5991bd01b9efad4860b30567c8df5d823cf6fc47678f9e6b672
 SHA512 
d00f559b2d6ad98f97a9328d2ce1593553fff727033690dfc13f520775e977b674fe14cc1ec7ab52b246e091a055812eaf4f93306145a4d2ad87a55707a3717b
 DIST gcc-14-20230423.tar.xz 83968044 BLAKE2B 
0ea88ec50e20b6936b6fe56179b8cd254e739c61143b6d80dd6b10b2c063e89a9459bdf5371bf80fddd52dd2bafa79197bd4ccb0728d19382b70938ba87f7069
 SHA512 
ed5955316b2ed5df1300cb3526542cd6adaca0b99692f4dfb6b1c68b5e075b863599eb0ad43aca2b15b535be5a117f5be4ab7823bf810e0fdd8681faa8c7160d

diff --git a/sys-devel/gcc/gcc-13.1.1_p20230429-r1.ebuild 
b/sys-devel/gcc/gcc-13.1.1_p20230429-r1.ebuild
index 9aa2b8645de1..20bf59e32055 100644
--- a/sys-devel/gcc/gcc-13.1.1_p20230429-r1.ebuild
+++ b/sys-devel/gcc/gcc-13.1.1_p20230429-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 TOOLCHAIN_PATCH_DEV="sam"
 PATCH_VER="2"
 PATCH_GCC_VER="13.2.0"
-MUSL_VER="1"
+MUSL_VER="2"
 MUSL_GCC_VER="13.2.0"
 
 if [[ $(ver_cut 3) ==  ]] ; then

diff --git a/sys-devel/gcc/gcc-13.1.1_p20230429.ebuild 
b/sys-devel/gcc/gcc-13.1.1_p20230429.ebuild
index dfbf72276193..10a0c8381b19 100644
--- a/sys-devel/gcc/gcc-13.1.1_p20230429.ebuild
+++ b/sys-devel/gcc/gcc-13.1.1_p20230429.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 TOOLCHAIN_PATCH_DEV="sam"
 PATCH_VER="2"
 PATCH_GCC_VER="13.2.0"
-MUSL_VER="1"
+MUSL_VER="2"
 MUSL_GCC_VER="13.2.0"
 
 if [[ $(ver_cut 3) ==  ]] ; then

diff --git a/sys-devel/gcc/gcc-13.1.1_p20230506.ebuild 
b/sys-devel/gcc/gcc-13.1.1_p20230506.ebuild
index dfbf72276193..10a0c8381b19 100644
--- a/sys-devel/gcc/gcc-13.1.1_p20230506.ebuild
+++ b/sys-devel/gcc/gcc-13.1.1_p20230506.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 TOOLCHAIN_PATCH_DEV="sam"
 PATCH_VER="2"
 PATCH_GCC_VER="13.2.0"
-MUSL_VER="1"
+MUSL_VER="2"
 MUSL_GCC_VER="13.2.0"
 
 if [[ $(ver_cut 3) ==  ]] ; then



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

2023-05-09 Thread Sam James
commit: 0f4739a3ed554449cd54719b7614350b6af08077
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 01:28:18 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:28:18 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4739a3

dev-libs/libxslt: sync live

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

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

diff --git a/dev-libs/libxslt/libxslt-.ebuild 
b/dev-libs/libxslt/libxslt-.ebuild
index cec46e76ee26..827b9edd5507 100644
--- a/dev-libs/libxslt/libxslt-.ebuild
+++ b/dev-libs/libxslt/libxslt-.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 # Note: Please bump this in sync with dev-libs/libxml2.
 
-PYTHON_COMPAT=( python3_{9..11} )
+PYTHON_COMPAT=( python3_{10..11} )
 inherit python-r1 multilib-minimal
 
 DESCRIPTION="XSLT libraries and tools"



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

2023-05-09 Thread Sam James
commit: b0224d3c11b8e044d6cd583ae76c27f4121b9606
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 01:30:59 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:30:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0224d3c

dev-libs/libxslt: fix DOCS

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

 dev-libs/libxslt/libxslt-1.1.38.ebuild | 2 --
 1 file changed, 2 deletions(-)

diff --git a/dev-libs/libxslt/libxslt-1.1.38.ebuild 
b/dev-libs/libxslt/libxslt-1.1.38.ebuild
index 7be6eb4d4a6e..79e567f3d663 100644
--- a/dev-libs/libxslt/libxslt-1.1.38.ebuild
+++ b/dev-libs/libxslt/libxslt-1.1.38.ebuild
@@ -39,8 +39,6 @@ MULTILIB_WRAPPED_HEADERS=(
/usr/include/libxslt/xsltconfig.h
 )
 
-DOCS=( AUTHORS FEATURES NEWS README TODO )
-
 src_prepare() {
default
 



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

2023-05-09 Thread Sam James
commit: 9ec7df322a017e1d3946ce2e8c8a3fcfbeeb2dd2
Author: Guillermo Joandet  gmail  com>
AuthorDate: Mon May  8 13:30:43 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:27:15 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ec7df32

dev-libs/libxslt: Version bump to 1.1.38

Signed-off-by: Guillermo Joandet  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30932
Signed-off-by: Sam James  gentoo.org>

 dev-libs/libxslt/Manifest  |   1 +
 dev-libs/libxslt/libxslt-1.1.38.ebuild | 127 +
 2 files changed, 128 insertions(+)

diff --git a/dev-libs/libxslt/Manifest b/dev-libs/libxslt/Manifest
index a7b594461f4e..4885a6ef3c02 100644
--- a/dev-libs/libxslt/Manifest
+++ b/dev-libs/libxslt/Manifest
@@ -1 +1,2 @@
 DIST libxslt-1.1.37.tar.xz 1588572 BLAKE2B 
096d93dd7178bf4483207514b1435f5bf426eea4952ffab7cc00c3e85aa736534c4acb5377af9647aa77a0cd793205194509d997a7bb5cae692f65e326566cd8
 SHA512 
a4e477d2bb918b7d01945e2c7491c3a4aae799dc1602bbd13de55c8a5052e210a20bc45115347eae44473c8b1d03dbc5e4a2aa18c2218f1fdfd376d87cd501ca
+DIST libxslt-1.1.38.tar.xz 1576676 BLAKE2B 
9397be8b223bd68b326b954fe6a749a269e969b4669747678715728f553916c23475232fc2894a5e4230e15b031981423adeb8f83407f4db8075a784c7e6a55b
 SHA512 
2836bd2990b95680db0960ac4c465d0c6c28a293ad095a224c05021a1c8d2576a45e41da8947a31f4ef3e6ef368cbda65243661e311c9886c19694be5a7c9a8e

diff --git a/dev-libs/libxslt/libxslt-1.1.38.ebuild 
b/dev-libs/libxslt/libxslt-1.1.38.ebuild
new file mode 100644
index ..7be6eb4d4a6e
--- /dev/null
+++ b/dev-libs/libxslt/libxslt-1.1.38.ebuild
@@ -0,0 +1,127 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Note: Please bump this in sync with dev-libs/libxml2.
+
+PYTHON_COMPAT=( python3_{10..11} )
+inherit flag-o-matic python-r1 multilib-minimal
+
+DESCRIPTION="XSLT libraries and tools"
+HOMEPAGE="https://gitlab.gnome.org/GNOME/libxslt";
+if [[ ${PV} ==  ]] ; then
+   EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/libxslt";
+   inherit autotools git-r3
+else
+   inherit libtool gnome.org
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux 
~arm64-macos ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+IUSE="crypt debug examples python static-libs"
+REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
+
+BDEPEND=">=virtual/pkgconfig-1"
+RDEPEND="
+   >=dev-libs/libxml2-2.9.11:2[${MULTILIB_USEDEP}]
+   crypt? ( >=dev-libs/libgcrypt-1.5.3:0=[${MULTILIB_USEDEP}] )
+   python? ( ${PYTHON_DEPS} )
+"
+DEPEND="${RDEPEND}"
+
+MULTILIB_CHOST_TOOLS=(
+   /usr/bin/xslt-config
+)
+
+MULTILIB_WRAPPED_HEADERS=(
+   /usr/include/libxslt/xsltconfig.h
+)
+
+DOCS=( AUTHORS FEATURES NEWS README TODO )
+
+src_prepare() {
+   default
+
+   if [[ ${PV} ==  ]] ; then
+   eautoreconf
+   else
+   # Prefix always needs elibtoolize if not eautoreconf'd.
+   elibtoolize
+   fi
+}
+
+multilib_src_configure() {
+   # Remove this after upstream merge request to add AC_SYS_LARGEFILE 
lands:
+   # https://gitlab.gnome.org/GNOME/libxslt/-/merge_requests/55
+   append-lfs-flags
+
+   libxslt_configure() {
+   ECONF_SOURCE="${S}" econf \
+   --without-python \
+   $(use_with crypt crypto) \
+   $(use_with debug) \
+   $(use_with debug mem-debug) \
+   $(use_enable static-libs static) \
+   "$@"
+   }
+
+   # Build Python bindings separately
+   libxslt_configure --without-python
+
+   if multilib_is_native_abi && use python ; then
+   NATIVE_BUILD_DIR="${BUILD_DIR}"
+   python_foreach_impl run_in_build_dir libxslt_configure 
--with-python
+   fi
+}
+
+libxslt_py_emake() {
+   pushd "${BUILD_DIR}"/python >/dev/null || die
+
+   emake top_builddir="${NATIVE_BUILD_DIR}" "$@"
+
+   popd >/dev/null || die
+}
+
+multilib_src_compile() {
+   default
+
+   if multilib_is_native_abi && use python ; then
+   python_foreach_impl run_in_build_dir libxslt_py_emake all
+   fi
+}
+
+multilib_src_test() {
+   default
+
+   if multilib_is_native_abi && use python ; then
+   python_foreach_impl run_in_build_dir libxslt_py_emake test
+   fi
+}
+
+multilib_src_install() {
+   # "default" does not work here - docs are installed by 
multilib_src_install_all
+   emake DESTDIR="${D}" install
+
+   if multilib_is_native_abi && use python; then
+   python_foreach_impl run_in_build_dir libxslt_py_emake \
+   DESTDIR="${D}" \
+   install
+
+   # Hac

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

2023-05-09 Thread Sam James
commit: 46f7da87b8160cd6d809c568270b2857f67a8d35
Author: Felix Janda  posteo  de>
AuthorDate: Tue May  9 22:40:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:26:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46f7da87

www-client/elinks: fix compilation with USE="-nls"

USE="-nls" indicates no nls/gettext, so we should pass -Dgettext=false
in that case.

Bug: https://bugs.gentoo.org/888952
Signed-off-by: Felix Janda  posteo.de>
Closes: https://github.com/gentoo/gentoo/pull/30963
Signed-off-by: Sam James  gentoo.org>

 www-client/elinks/elinks-0.16.1.1-r1.ebuild | 2 +-
 www-client/elinks/elinks-.ebuild| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/elinks/elinks-0.16.1.1-r1.ebuild 
b/www-client/elinks/elinks-0.16.1.1-r1.ebuild
index 298434da8a24..12588d437631 100644
--- a/www-client/elinks/elinks-0.16.1.1-r1.ebuild
+++ b/www-client/elinks/elinks-0.16.1.1-r1.ebuild
@@ -88,7 +88,7 @@ src_configure() {
$(meson_use ftp)
-Dfsp=false
-Dgemini=false
-   -Dgettext=true
+   $(meson_use nls gettext)
$(meson_use gopher)
$(meson_use gpm)
$(meson_use guile)

diff --git a/www-client/elinks/elinks-.ebuild 
b/www-client/elinks/elinks-.ebuild
index 180537f142e7..9261011bf874 100644
--- a/www-client/elinks/elinks-.ebuild
+++ b/www-client/elinks/elinks-.ebuild
@@ -88,7 +88,7 @@ src_configure() {
$(meson_use ftp)
-Dfsp=false
-Dgemini=false
-   -Dgettext=true
+   $(meson_use nls gettext)
$(meson_use gopher)
$(meson_use gpm)
$(meson_use guile)



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

2023-05-09 Thread Sam James
commit: ec88652cbefa9ce7fffaa1f5ab48ec6b772be106
Author: Ulrich Müller  gentoo  org>
AuthorDate: Tue May  9 20:34:39 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:28:35 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ec88652c

einstall: Make EI_DESTLIBDIR a local variable and rename it

Signed-off-by: Ulrich Müller  gentoo.org>
Closes: https://github.com/gentoo/portage/pull/1033
Signed-off-by: Sam James  gentoo.org>

 bin/phase-helpers.sh | 7 +++
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
index e3fca6757..af96b73e4 100644
--- a/bin/phase-helpers.sh
+++ b/bin/phase-helpers.sh
@@ -757,10 +757,9 @@ einstall() {
fi
 
if [[ -n "${libdir}" && "${CONF_PREFIX:+set}" = set ]]; then
-   EI_DESTLIBDIR="${D%/}/${CONF_PREFIX}/${libdir}"
-   EI_DESTLIBDIR="$(__strip_duplicate_slashes "${EI_DESTLIBDIR}")"
-   LOCAL_EXTRA_EINSTALL="libdir=${EI_DESTLIBDIR} 
${LOCAL_EXTRA_EINSTALL}"
-   unset EI_DESTLIBDIR
+   local destlibdir="${D%/}/${CONF_PREFIX}/${libdir}"
+   destlibdir="$(__strip_duplicate_slashes "${destlibdir}")"
+   LOCAL_EXTRA_EINSTALL="libdir=${destlibdir} 
${LOCAL_EXTRA_EINSTALL}"
fi
 
if [[ -f Makefile || -f GNUmakefile || -f makefile ]] ; then



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

2023-05-09 Thread Sam James
commit: 37860b731a185b464776c611e9a106e4db93beca
Author: Andrew Udvare  gmail  com>
AuthorDate: Mon May  8 22:42:17 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:26:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37860b73

media-tv/kodi: fix build with USE vaapi with GCC 13

Closes: https://bugs.gentoo.org/905644
Signed-off-by: Andrew Udvare  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30943
Signed-off-by: Sam James  gentoo.org>

 media-tv/kodi/files/kodi-19.5-gcc-13.patch | 12 
 1 file changed, 12 insertions(+)

diff --git a/media-tv/kodi/files/kodi-19.5-gcc-13.patch 
b/media-tv/kodi/files/kodi-19.5-gcc-13.patch
index 130c3c225486..268ebc2737f7 100644
--- a/media-tv/kodi/files/kodi-19.5-gcc-13.patch
+++ b/media-tv/kodi/files/kodi-19.5-gcc-13.patch
@@ -56,3 +56,15 @@ Bug: https://bugs.gentoo.org/892503
  #include 
  #include 
  namespace KODI
+diff --git a/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/VaapiEGL.h 
b/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/VaapiEGL.h
+index 66d1bf0200..dcd60698d6 100644
+--- a/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/VaapiEGL.h
 b/xbmc/cores/VideoPlayer/VideoRenderers/HwDecRender/VaapiEGL.h
+@@ -9,6 +9,7 @@
+ #pragma once
+ 
+ #include 
++#include 
+ 
+ #if defined(HAS_GL)
+ // always define GL_GLEXT_PROTOTYPES before include gl headers



[gentoo-commits] repo/gentoo:master commit in: www-apps/prowlarr/

2023-05-09 Thread Craig Andrews
commit: c49ea94cb25afba9bf38f2c48b925ed2d8572e83
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed May 10 01:10:02 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed May 10 01:10:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c49ea94c

www-apps/prowlarr: drop 1.4.1.3258

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

 www-apps/prowlarr/Manifest   |  3 --
 www-apps/prowlarr/prowlarr-1.4.1.3258.ebuild | 57 
 2 files changed, 60 deletions(-)

diff --git a/www-apps/prowlarr/Manifest b/www-apps/prowlarr/Manifest
index fabcb837d86e..c51393aca8a3 100644
--- a/www-apps/prowlarr/Manifest
+++ b/www-apps/prowlarr/Manifest
@@ -1,6 +1,3 @@
 DIST Prowlarr.develop.1.5.0.3300.linux-core-arm.tar.gz 86541972 BLAKE2B 
dd76fa210a66bfc2a5c3455fcefc6b9e4d36768b576e4e732bfb54605936db629df757fdc202af3819bc6fb598079d8906d86c300201a5b791a404b1f8e9cdcb
 SHA512 
f41c615db699048f0a1988900167f8ceb95c6338075c7d9aa96fc4e88b7e9103976817346c232880d6b7bd6b55f8e08ac4cb408482c79e1442cd28fe172d2c4d
 DIST Prowlarr.develop.1.5.0.3300.linux-core-arm64.tar.gz 85802997 BLAKE2B 
a44bf4a71a10c022569abed7a2ed93336f4b1a49fc629ca2cab1aca66886eb34e2680c76f0726bb5acec161db66e85b942a86ee5a90baf716c52bdbb3c648a7d
 SHA512 
55ae76068ba0af2ca27cb5490a6d63614c3d4346a7ca2d8ce96cb952abd5bc7f363e2294ec3e7982efcfc82f9ae441663929e8c925a98c842ec7d53372968eee
 DIST Prowlarr.develop.1.5.0.3300.linux-core-x64.tar.gz 90825950 BLAKE2B 
5c800dcd7d445e0bd79209b47a2e8e9616d7eb3efc44028b3a54171207fcd61999391a52fa1bf1ffbeefcc76c5e3bd1292d768095e46a58c4a565bc899b05e11
 SHA512 
6efa7fcf4eb240e1aa0fb3af8360bb6cc008bb671f3c2fb95993b670462d28588ea357475687496c70e2cf0f85be8fc0d04eab215dea24d0a603df0bffaa65f2
-DIST Prowlarr.master.1.4.1.3258.linux-core-arm.tar.gz 86685247 BLAKE2B 
292bdee87749a2700db9c9bbb6b35446cbdc659d8611e6362edd6a0a8579a32e6647faa116dead364c263961a76038f0ad306380aff17473cd39b8d5b2f0833a
 SHA512 
73d33a648b391235132c6763c79f00de073f81cd9891dd9d5f312261e511a2b06a09cfd5845b02f11b5bcbfefaa394b6c4f3a2657c924d055dcbe7db695f63e1
-DIST Prowlarr.master.1.4.1.3258.linux-core-arm64.tar.gz 85940718 BLAKE2B 
ff86dc85a7d86b932d38f37c82ed064e405fc55be8b1aee925897d87c02fb635f5166844b73f1c4ae10922d816cda6bfd1594308ddeea619c85879271f87ad89
 SHA512 
7e5395354d95221566373b56535e047c324ad40e2528bbaaea18f924ee97ac857637ab69912ca91945d8a787b40d008aba4903724a2bfaac3cf7f075dafb060b
-DIST Prowlarr.master.1.4.1.3258.linux-core-x64.tar.gz 90971160 BLAKE2B 
6f8c9498020fb4661a6a9a4d3f3206730ae88231e4fe005fd897aac0e611b8a50804a9730ebd4ce99823955712f34431ea0a1f5810ca7e280abe8b1f5ace2e85
 SHA512 
e3ce17cb28835fd2d95cdf684a278c53e254c3ffe05b02f05d8ab26dc8d154bfc8dac6cab5d75642ff822140b75b829d7c65a347638743327cd7a5b42063e066

diff --git a/www-apps/prowlarr/prowlarr-1.4.1.3258.ebuild 
b/www-apps/prowlarr/prowlarr-1.4.1.3258.ebuild
deleted file mode 100644
index 57ef13400018..
--- a/www-apps/prowlarr/prowlarr-1.4.1.3258.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit systemd
-
-SRC_URI="
-   amd64? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-x64.tar.gz
 )
-   arm? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-arm.tar.gz
 )
-   arm64? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.master.${PV}.linux-core-arm64.tar.gz
 )
-"
-
-DESCRIPTION="An indexer manager/proxy to integrate with your various PVR apps"
-HOMEPAGE="https://wiki.servarr.com/prowlarr";
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm ~arm64"
-RESTRICT="bindist strip test"
-
-RDEPEND="
-   acct-group/prowlarr
-   acct-user/prowlarr
-   dev-libs/icu
-   dev-util/lttng-ust:0
-   dev-db/sqlite
-   sys-libs/glibc
-"
-
-QA_PREBUILT="*"
-
-S="${WORKDIR}/Prowlarr"
-
-src_prepare() {
-   default
-
-   # https://github.com/dotnet/runtime/issues/57784
-   rm libcoreclrtraceptprovider.so 
Prowlarr.Update/libcoreclrtraceptprovider.so || die
-}
-
-src_install() {
-   newinitd "${FILESDIR}/${PN}.init" ${PN}
-
-   keepdir /var/lib/${PN}
-   fowners -R ${PN}:${PN} /var/lib/${PN}
-
-   insinto /etc/logrotate.d
-   insopts -m0644 -o root -g root
-   newins "${FILESDIR}/${PN}.logrotate" ${PN}
-
-   dodir  "/opt/${PN}"
-   cp -R "${S}/." "${D}/opt/prowlarr" || die "Install failed!"
-
-   systemd_dounit "${FILESDIR}/prowlarr.service"
-   systemd_newunit "${FILESDIR}/prowlarr.service" "${PN}@.service"
-}



[gentoo-commits] repo/gentoo:master commit in: www-apps/prowlarr/

2023-05-09 Thread Craig Andrews
commit: 9931f1aea4eb5122661ac1775f9d92fc38dbfb39
Author: Craig Andrews  gentoo  org>
AuthorDate: Wed May 10 01:09:54 2023 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Wed May 10 01:10:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9931f1ae

www-apps/prowlarr: add 1.5.0.3300

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

 www-apps/prowlarr/Manifest   |  3 ++
 www-apps/prowlarr/prowlarr-1.5.0.3300.ebuild | 57 
 2 files changed, 60 insertions(+)

diff --git a/www-apps/prowlarr/Manifest b/www-apps/prowlarr/Manifest
index 51d54c698283..fabcb837d86e 100644
--- a/www-apps/prowlarr/Manifest
+++ b/www-apps/prowlarr/Manifest
@@ -1,3 +1,6 @@
+DIST Prowlarr.develop.1.5.0.3300.linux-core-arm.tar.gz 86541972 BLAKE2B 
dd76fa210a66bfc2a5c3455fcefc6b9e4d36768b576e4e732bfb54605936db629df757fdc202af3819bc6fb598079d8906d86c300201a5b791a404b1f8e9cdcb
 SHA512 
f41c615db699048f0a1988900167f8ceb95c6338075c7d9aa96fc4e88b7e9103976817346c232880d6b7bd6b55f8e08ac4cb408482c79e1442cd28fe172d2c4d
+DIST Prowlarr.develop.1.5.0.3300.linux-core-arm64.tar.gz 85802997 BLAKE2B 
a44bf4a71a10c022569abed7a2ed93336f4b1a49fc629ca2cab1aca66886eb34e2680c76f0726bb5acec161db66e85b942a86ee5a90baf716c52bdbb3c648a7d
 SHA512 
55ae76068ba0af2ca27cb5490a6d63614c3d4346a7ca2d8ce96cb952abd5bc7f363e2294ec3e7982efcfc82f9ae441663929e8c925a98c842ec7d53372968eee
+DIST Prowlarr.develop.1.5.0.3300.linux-core-x64.tar.gz 90825950 BLAKE2B 
5c800dcd7d445e0bd79209b47a2e8e9616d7eb3efc44028b3a54171207fcd61999391a52fa1bf1ffbeefcc76c5e3bd1292d768095e46a58c4a565bc899b05e11
 SHA512 
6efa7fcf4eb240e1aa0fb3af8360bb6cc008bb671f3c2fb95993b670462d28588ea357475687496c70e2cf0f85be8fc0d04eab215dea24d0a603df0bffaa65f2
 DIST Prowlarr.master.1.4.1.3258.linux-core-arm.tar.gz 86685247 BLAKE2B 
292bdee87749a2700db9c9bbb6b35446cbdc659d8611e6362edd6a0a8579a32e6647faa116dead364c263961a76038f0ad306380aff17473cd39b8d5b2f0833a
 SHA512 
73d33a648b391235132c6763c79f00de073f81cd9891dd9d5f312261e511a2b06a09cfd5845b02f11b5bcbfefaa394b6c4f3a2657c924d055dcbe7db695f63e1
 DIST Prowlarr.master.1.4.1.3258.linux-core-arm64.tar.gz 85940718 BLAKE2B 
ff86dc85a7d86b932d38f37c82ed064e405fc55be8b1aee925897d87c02fb635f5166844b73f1c4ae10922d816cda6bfd1594308ddeea619c85879271f87ad89
 SHA512 
7e5395354d95221566373b56535e047c324ad40e2528bbaaea18f924ee97ac857637ab69912ca91945d8a787b40d008aba4903724a2bfaac3cf7f075dafb060b
 DIST Prowlarr.master.1.4.1.3258.linux-core-x64.tar.gz 90971160 BLAKE2B 
6f8c9498020fb4661a6a9a4d3f3206730ae88231e4fe005fd897aac0e611b8a50804a9730ebd4ce99823955712f34431ea0a1f5810ca7e280abe8b1f5ace2e85
 SHA512 
e3ce17cb28835fd2d95cdf684a278c53e254c3ffe05b02f05d8ab26dc8d154bfc8dac6cab5d75642ff822140b75b829d7c65a347638743327cd7a5b42063e066

diff --git a/www-apps/prowlarr/prowlarr-1.5.0.3300.ebuild 
b/www-apps/prowlarr/prowlarr-1.5.0.3300.ebuild
new file mode 100644
index ..eb3efd28ba1a
--- /dev/null
+++ b/www-apps/prowlarr/prowlarr-1.5.0.3300.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+SRC_URI="
+   amd64? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-x64.tar.gz
 )
+   arm? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-arm.tar.gz
 )
+   arm64? ( 
https://github.com/Prowlarr/Prowlarr/releases/download/v${PV}/Prowlarr.develop.${PV}.linux-core-arm64.tar.gz
 )
+"
+
+DESCRIPTION="An indexer manager/proxy to integrate with your various PVR apps"
+HOMEPAGE="https://wiki.servarr.com/prowlarr";
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="-* ~amd64 ~arm ~arm64"
+RESTRICT="bindist strip test"
+
+RDEPEND="
+   acct-group/prowlarr
+   acct-user/prowlarr
+   dev-libs/icu
+   dev-util/lttng-ust:0
+   dev-db/sqlite
+   sys-libs/glibc
+"
+
+QA_PREBUILT="*"
+
+S="${WORKDIR}/Prowlarr"
+
+src_prepare() {
+   default
+
+   # https://github.com/dotnet/runtime/issues/57784
+   rm libcoreclrtraceptprovider.so 
Prowlarr.Update/libcoreclrtraceptprovider.so || die
+}
+
+src_install() {
+   newinitd "${FILESDIR}/${PN}.init" ${PN}
+
+   keepdir /var/lib/${PN}
+   fowners -R ${PN}:${PN} /var/lib/${PN}
+
+   insinto /etc/logrotate.d
+   insopts -m0644 -o root -g root
+   newins "${FILESDIR}/${PN}.logrotate" ${PN}
+
+   dodir  "/opt/${PN}"
+   cp -R "${S}/." "${D}/opt/prowlarr" || die "Install failed!"
+
+   systemd_dounit "${FILESDIR}/prowlarr.service"
+   systemd_newunit "${FILESDIR}/prowlarr.service" "${PN}@.service"
+}



[gentoo-commits] proj/portage:master commit in: bin/ebuild-helpers/, lib/portage/tests/bin/, bin/

2023-05-09 Thread Sam James
commit: e5fd7ef3aca87539acc278f2b724e7e47fc4ce41
Author: Arfrever Frehtes Taifersar Arahesis  Apache  Org>
AuthorDate: Sun Apr 30 00:00:00 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 01:03:08 2023 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=e5fd7ef3

Delete remnants of CONF_LIBDIR

Support for CONF_LIBDIR was initially added on 2004-08-16 in:
https://gitweb.gentoo.org/archive/proj/portage-cvs.git/commit/?id=ecc2faaa00b1e6250129267ba873bedd2121eac5

Support for LIBDIR_${ABI} was initially added on 2005-02-26 in:
https://gitweb.gentoo.org/archive/proj/portage-cvs.git/commit/?id=64779fdecc8e4ec7d2cb9a6fa70066694f78231d

Since then, CONF_LIBDIR was not used if ABI and LIBDIR_${ABI} were set.

CONF_LIBDIR was set only in 2004.3 profiles:
https://gitweb.gentoo.org/archive/repo/gentoo-2.git/commit/?id=1482b856ad2a301c8eb2245a7c7265350af2691d

LIBDIR_${ABI} was set in profiles starting with 2005.0 profiles:
https://gitweb.gentoo.org/archive/repo/gentoo-2.git/commit/?id=054e484d8717a18622615e019e7cd62495365192
https://gitweb.gentoo.org/archive/repo/gentoo-2.git/commit/?id=a1f9392206c050c2b952c3e1281b731f1c969bc9

Bug: https://bugs.gentoo.org/75420
Bug: https://bugs.gentoo.org/267159
Signed-off-by: Arfrever Frehtes Taifersar Arahesis  Apache.Org>
Closes: https://github.com/gentoo/portage/pull/1032
Signed-off-by: Sam James  gentoo.org>

 bin/ebuild-helpers/dolib  | 12 +---
 bin/phase-helpers.sh  | 25 -
 lib/portage/tests/bin/test_filter_bash_env.py | 22 +-
 3 files changed, 26 insertions(+), 33 deletions(-)

diff --git a/bin/ebuild-helpers/dolib b/bin/ebuild-helpers/dolib
index 44e16f503..d6d21314b 100755
--- a/bin/ebuild-helpers/dolib
+++ b/bin/ebuild-helpers/dolib
@@ -22,15 +22,13 @@ else
 fi
 
 # Setup ABI cruft
-LIBDIR_VAR="LIBDIR_${ABI}"
-if [[ -n ${ABI} && -n ${!LIBDIR_VAR} ]] ; then
-   CONF_LIBDIR=${!LIBDIR_VAR}
+libdir="lib"
+libdir_var="LIBDIR_${ABI}"
+if [[ -n ${ABI} && -n ${!libdir_var} ]] ; then
+   libdir=${!libdir_var}
 fi
-unset LIBDIR_VAR
 
-# We need this to default to lib so that things dont break
-CONF_LIBDIR=${CONF_LIBDIR:-lib}
-libdir="${ED%/}/${__E_DESTTREE#/}/${CONF_LIBDIR}"
+libdir="${ED%/}/${__E_DESTTREE#/}/${libdir}"
 
 if [[ $# -lt 1 ]] ; then
__helpers_die "${0##*/}: at least one argument needed"

diff --git a/bin/phase-helpers.sh b/bin/phase-helpers.sh
index 59f1bd26b..e3fca6757 100644
--- a/bin/phase-helpers.sh
+++ b/bin/phase-helpers.sh
@@ -681,13 +681,13 @@ econf() {
fi
 
# If the profile defines a location to install libs to aside 
from default, pass it on.
-   # If the ebuild passes in --libdir, they're responsible for the 
conf_libdir fun.
-   local CONF_LIBDIR LIBDIR_VAR="LIBDIR_${ABI}"
-   if [[ -n ${ABI} && -n ${!LIBDIR_VAR} ]] ; then
-   CONF_LIBDIR=${!LIBDIR_VAR}
+   # If the ebuild passes in --libdir, they're responsible for the 
libdir fun.
+   local libdir libdir_var="LIBDIR_${ABI}"
+   if [[ -n ${ABI} && -n ${!libdir_var} ]] ; then
+   libdir=${!libdir_var}
fi
 
-   if [[ -n ${CONF_LIBDIR} ]] && ! __hasgq --libdir=\* "$@" ; then
+   if [[ -n ${libdir} ]] && ! __hasgq --libdir=\* "$@" ; then
export CONF_PREFIX=$(__hasg --exec-prefix=\* "$@")
[[ -z ${CONF_PREFIX} ]] && CONF_PREFIX=$(__hasg 
--prefix=\* "$@")
 
@@ -695,10 +695,10 @@ econf() {
CONF_PREFIX=${CONF_PREFIX#*=}
 
[[ ${CONF_PREFIX} != /* ]] && 
CONF_PREFIX="/${CONF_PREFIX}"
-   [[ ${CONF_LIBDIR} != /* ]] && 
CONF_LIBDIR="/${CONF_LIBDIR}"
+   [[ ${libdir} != /* ]] && libdir="/${libdir}"
 
conf_args+=(
-   --libdir="$(__strip_duplicate_slashes 
"${CONF_PREFIX}${CONF_LIBDIR}")"
+   --libdir="$(__strip_duplicate_slashes 
"${CONF_PREFIX}${libdir}")"
)
fi
 
@@ -751,14 +751,13 @@ einstall() {
local ED=${D}
fi
 
-   LIBDIR_VAR="LIBDIR_${ABI}"
-   if [[ -n "${ABI}" && -n "${!LIBDIR_VAR}" ]]; then
-   CONF_LIBDIR="${!LIBDIR_VAR}"
+   local libdir libdir_var="LIBDIR_${ABI}"
+   if [[ -n "${ABI}" && -n "${!libdir_var}" ]]; then
+   libdir="${!libdir_var}"
fi
-   unset LIBDIR_VAR
 
-   if [[ -n "${CONF_LIBDIR}" && "${CONF_PREFIX:+set}" = set ]]; then
-   EI_DESTLIBDIR="${D%/}/${CONF_PREFIX}/${CONF_LIBDIR}"
+   if [[ -n "${libdir}" && "${CONF_PREFIX:+set}" = set ]]; then
+   EI_DESTLIBDIR="${D%/}/${CONF_PREFIX}/${libdir}"
EI_DESTLIBDIR="$(__strip_duplicate_slashes "${EI_DESTLIBDIR}")"
LOCAL

[gentoo-commits] repo/gentoo:master commit in: sys-apps/systemd-utils/, sys-apps/systemd-utils/files/

2023-05-09 Thread Sam James
commit: fc93e053eb3891497a24365d3dd8a0e143e8dd74
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:51:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:51:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc93e053

sys-apps/systemd-utils: fix build w/ musl-1.2.4

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

 .../files/systemd-utils-253.4-musl-lfs.patch   | 52 ++
 sys-apps/systemd-utils/systemd-utils-253.4.ebuild  |  7 ++-
 2 files changed, 58 insertions(+), 1 deletion(-)

diff --git a/sys-apps/systemd-utils/files/systemd-utils-253.4-musl-lfs.patch 
b/sys-apps/systemd-utils/files/systemd-utils-253.4-musl-lfs.patch
new file mode 100644
index ..312232d0b3a5
--- /dev/null
+++ b/sys-apps/systemd-utils/files/systemd-utils-253.4-musl-lfs.patch
@@ -0,0 +1,52 @@
+https://github.com/systemd/systemd/pull/27599
+
+From d096e05c625ea825eb4d781216ded717b7f71cca Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Wed, 10 May 2023 01:47:13 +0100
+Subject: [PATCH] dirent: conditionalize dirent assert based on dirent64
+ existence
+
+>=musl-1.2.4 doesn't define dirent64 and its LFS friends as its "native"
+functions are already LFS-aware.
+
+Check for dirent64 in meson.build and only assert if it exists.
+
+Bug: https://bugs.gentoo.org/905900
+Closes: https://github.com/systemd/systemd/pull/25809
+--- a/meson.build
 b/meson.build
+@@ -544,6 +544,7 @@ assert(long_max > 10)
+ conf.set_quoted('LONG_MAX_STR', '@0@'.format(long_max))
+ 
+ decl_headers = '''
++#include 
+ #include 
+ #include 
+ #include 
+@@ -553,6 +554,7 @@ foreach decl : ['char16_t',
+ 'char32_t',
+ 'struct mount_attr',
+ 'struct statx',
++'struct dirent64',
+]
+ 
+ # We get -1 if the size cannot be determined
+--- a/src/basic/dirent-util.h
 b/src/basic/dirent-util.h
+@@ -36,6 +36,7 @@ struct dirent *readdir_no_dot(DIR *dirp);
+ /* Only if 64bit off_t is enabled struct dirent + struct dirent64 are 
actually the same. We require this, and
+  * we want them to be interchangeable to make getdents64() work, hence verify 
that. */
+ assert_cc(_FILE_OFFSET_BITS == 64);
++#if HAVE_STRUCT_DIRENT64
+ assert_cc(sizeof(struct dirent) == sizeof(struct dirent64));
+ assert_cc(offsetof(struct dirent, d_ino) == offsetof(struct dirent64, d_ino));
+ assert_cc(sizeof_field(struct dirent, d_ino) == sizeof_field(struct dirent64, 
d_ino));
+@@ -47,6 +48,7 @@ assert_cc(offsetof(struct dirent, d_type) == offsetof(struct 
dirent64, d_type));
+ assert_cc(sizeof_field(struct dirent, d_type) == sizeof_field(struct 
dirent64, d_type));
+ assert_cc(offsetof(struct dirent, d_name) == offsetof(struct dirent64, 
d_name));
+ assert_cc(sizeof_field(struct dirent, d_name) == sizeof_field(struct 
dirent64, d_name));
++#endif
+ 
+ #define FOREACH_DIRENT_IN_BUFFER(de, buf, sz)   \
+ for (void *_end = (uint8_t*) ({ (de) = (buf); }) + (sz);\
+

diff --git a/sys-apps/systemd-utils/systemd-utils-253.4.ebuild 
b/sys-apps/systemd-utils/systemd-utils-253.4.ebuild
index 4dc4e15bbe49..ad372c33f20e 100644
--- a/sys-apps/systemd-utils/systemd-utils-253.4.ebuild
+++ b/sys-apps/systemd-utils/systemd-utils-253.4.ebuild
@@ -120,7 +120,12 @@ src_prepare() {
)
 
if use elibc_musl; then
-   PATCHES+=( "${WORKDIR}/${MUSL_PATCHSET}" )
+   PATCHES+=(
+   "${WORKDIR}/${MUSL_PATCHSET}"
+   # The LFS patch should be fine unconditionally but
+   # let's keep it conditional until merged upstream.
+   "${FILESDIR}"/${PN}-253.4-musl-lfs.patch
+   )
fi
default
 



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

2023-05-09 Thread Sam James
commit: 790e14b3e0377f1db4dab56fcbf91b7ec0bf9a7c
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:32:58 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:32:58 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=790e14b3

net-libs/srt: Stabilize 1.5.1 ppc64, #817818

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

 net-libs/srt/srt-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/srt/srt-1.5.1.ebuild b/net-libs/srt/srt-1.5.1.ebuild
index 23c52a4e2c90..443c69eb9a49 100644
--- a/net-libs/srt/srt-1.5.1.ebuild
+++ b/net-libs/srt/srt-1.5.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/Haivision/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ~ppc64 ~riscv 
-sparc x86 ~ppc-macos ~x64-macos"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv 
-sparc x86 ~ppc-macos ~x64-macos"
 fi
 
 LICENSE="MPL-2.0"



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

2023-05-09 Thread Sam James
commit: a404bed3bfd0f1ccd287cecfb5652076fd85c77e
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:07:50 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:29:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a404bed3

app-emulation/spice: add freedesktop-gitlab upstream metadata

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

 app-emulation/spice/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-emulation/spice/metadata.xml b/app-emulation/spice/metadata.xml
index f62aa7298062..ce2f1efd9185 100644
--- a/app-emulation/spice/metadata.xml
+++ b/app-emulation/spice/metadata.xml
@@ -8,4 +8,7 @@

Enable smartcard remoting using 
app-emulation/libcacard

+   
+   spice/spice
+   
 



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

2023-05-09 Thread Sam James
commit: db467947bdd14ac40c44a18e65e29dc124b088f0
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:26:01 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:29:27 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=db467947

sys-apps/flatpak: drop 1.12.3-r1, 1.14.1

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

 sys-apps/flatpak/Manifest |   2 -
 sys-apps/flatpak/flatpak-1.12.3-r1.ebuild | 108 --
 sys-apps/flatpak/flatpak-1.14.1.ebuild| 108 --
 3 files changed, 218 deletions(-)

diff --git a/sys-apps/flatpak/Manifest b/sys-apps/flatpak/Manifest
index 11a23544a987..e1398473899f 100644
--- a/sys-apps/flatpak/Manifest
+++ b/sys-apps/flatpak/Manifest
@@ -1,4 +1,2 @@
-DIST flatpak-1.12.3.tar.xz 1555340 BLAKE2B 
512b3f6abfb06d242aedad2c27c9870750254a9d0a376739f8885bbf1740b649e2a41f2c079532b049fcce8b58529572ea35e930437ed6b62194a73bcbb6
 SHA512 
2f39665457b4c3b99e32ebc88cf5b70202dba6118887617d3d7faa20f688f3f3fc14e343b70c0d11eb15ee743a68d07078e6cda14fd91aa10ca375797cfc95bc
 DIST flatpak-1.12.8.tar.xz 1568984 BLAKE2B 
6db457eba6b5c03ae4b7037e55f0537821152a80cad8746939fe93008922a9a33ff9f08635613e56a84f2d151826130c497c1e9f7f1e41a5b2dc215882f2eb14
 SHA512 
5a37d94e12c18a746b222c1ddbd20bddfb22079af1d3a79dc819cdb25f04774c9e4b3a51f9b5ed64f210317e7ec9fb97324ae38ec3430c6a515ba4042805fc57
-DIST flatpak-1.14.1.tar.xz 1626500 BLAKE2B 
bf33dcd5a0f0289e5bff32794012dcfc45dcdbb11ef0da5c68769c18b1bcd12fcc0308ea275a7532f59998db6afa019746313387b0f9636c7d9b91ceb7d5
 SHA512 
1f22622b9a797b644b5fe9d26c3c4ec3f6b1a3b81a12d498e5aeeecb1a965c9aaa5c1d18843c938f116855bbbed3a8d9866997440f86241abe70eae13be7cdcb
 DIST flatpak-1.14.4.tar.xz 1637484 BLAKE2B 
cf208c581ad76d46489ba473d290c35907da0d1d473bf2b4792fb56c31e7110cd38f1c6fc4ad04aa3675868d17116ba52a84b028d7b7789c1736cfe26f3cabfe
 SHA512 
3f97096affd4f1de184ded353f1ab403d9f1813b199b9a1595596cc7c5d6b46062aa2ef184255823f50ae95ca60d0542d9b9e520f9a605f9bc51091863bf89b0

diff --git a/sys-apps/flatpak/flatpak-1.12.3-r1.ebuild 
b/sys-apps/flatpak/flatpak-1.12.3-r1.ebuild
deleted file mode 100644
index b23df631da31..
--- a/sys-apps/flatpak/flatpak-1.12.3-r1.ebuild
+++ /dev/null
@@ -1,108 +0,0 @@
-# Copyright 2020-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{9,10} )
-
-inherit linux-info python-any-r1
-
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz";
-DESCRIPTION="Linux application sandboxing and distribution framework"
-HOMEPAGE="https://flatpak.org/";
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-IUSE="doc introspection policykit seccomp systemd X"
-RESTRICT+=" test"
-
-RDEPEND="
-   acct-group/flatpak
-   acct-user/flatpak
-   >=app-arch/libarchive-2.8:=
-   app-arch/zstd:=
-   >=app-crypt/gpgme-1.1.8:=
-   >=dev-libs/appstream-glib-0.5.10:=
-   >=dev-libs/glib-2.56:2=
-   >=dev-libs/libxml2-2.4:=
-   dev-libs/json-glib:=
-   dev-libs/libassuan:=
-   >=dev-util/ostree-2020.8:=[gpg(+)]
-   || (
-   dev-util/ostree[curl]
-   dev-util/ostree[soup]
-   )
-   >=gnome-base/dconf-0.26:=
-   gnome-base/gsettings-desktop-schemas
-   >=net-libs/libsoup-2.4:2.4=
-   >=sys-apps/bubblewrap-0.5.0
-   sys-apps/dbus
-   >=sys-fs/fuse-2.9.9:0=
-   sys-apps/xdg-dbus-proxy
-   X? (
-   x11-apps/xauth
-   x11-libs/libXau:=
-   )
-   x11-libs/gdk-pixbuf:2=
-   policykit? ( >=sys-auth/polkit-0.98:= )
-   seccomp? ( sys-libs/libseccomp:= )
-   systemd? ( sys-apps/systemd:= )
-"
-
-DEPEND="${RDEPEND}"
-# pyparsing version pinned for https://bugs.gentoo.org/825230
-BDEPEND="
-   >=sys-devel/automake-1.13.4
-   >=sys-devel/gettext-0.18.2
-   virtual/pkgconfig
-   dev-util/gdbus-codegen
-   sys-devel/bison
-   introspection? ( >=dev-libs/gobject-introspection-1.40 )
-   doc? (
-   >=dev-util/gtk-doc-1.20
-   dev-libs/libxslt
-   )
-   $(python_gen_any_dep 'dev-python/pyparsing[${PYTHON_USEDEP}]')
-"
-
-PDEPEND="sys-apps/xdg-desktop-portal"
-
-python_check_deps() {
-   has_version -b "dev-python/pyparsing[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   local CONFIG_CHECK="~USER_NS"
-   linux-info_pkg_setup
-   python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-   # This line fails because locales are in /usr/lib/locale/locale-archive.
-   sed -i 's:^cp -r /usr/lib/locale/C.*:#\0:' tests/make-test-runtime.sh 
|| die
-}
-
-src_configure() {
-   local myeconfargs=(
-   --enable-sandboxed-triggers
-   --localstatedir="${EPREFIX}"/var
-   --with-system-bubblewrap
-   --with-system-dbus-proxy
-   $(use_enable X xauth)
-   $(use_en

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

2023-05-09 Thread Sam James
commit: 3dd01c1a2b94b4c6532f14100b1083738185f0e4
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:28:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:29:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3dd01c1a

sys-apps/flatpak: switch 1.14.x to fuse3

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

 sys-apps/flatpak/{flatpak-1.14.4-r1.ebuild => flatpak-1.14.4-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/flatpak/flatpak-1.14.4-r1.ebuild 
b/sys-apps/flatpak/flatpak-1.14.4-r2.ebuild
similarity index 99%
rename from sys-apps/flatpak/flatpak-1.14.4-r1.ebuild
rename to sys-apps/flatpak/flatpak-1.14.4-r2.ebuild
index 0ee65341749d..8b4eb2299d25 100644
--- a/sys-apps/flatpak/flatpak-1.14.4-r1.ebuild
+++ b/sys-apps/flatpak/flatpak-1.14.4-r2.ebuild
@@ -35,7 +35,7 @@ RDEPEND="
net-misc/curl:=
>=sys-apps/bubblewrap-0.5.0
sys-apps/dbus
-   >=sys-fs/fuse-2.9.9:0=
+   >=sys-fs/fuse-3.1.1:3=
sys-apps/xdg-dbus-proxy
X? (
x11-apps/xauth



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

2023-05-09 Thread Sam James
commit: 38ceaea36f52c8fb1ccab4f712bb75816a851e63
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:05:02 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:29:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38ceaea3

dev-libs/serdisplib: workaround build failure w/ non-bash

I normally prefer to fix these properly but this looks rather dead and it
affects some generated code (as in files to be compiled).

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

 dev-libs/serdisplib/serdisplib-2.02-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-libs/serdisplib/serdisplib-2.02-r2.ebuild 
b/dev-libs/serdisplib/serdisplib-2.02-r2.ebuild
index 22cb104e7e06..63f9e8620b12 100644
--- a/dev-libs/serdisplib/serdisplib-2.02-r2.ebuild
+++ b/dev-libs/serdisplib/serdisplib-2.02-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2022 Gentoo Authors
+# Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -90,7 +90,7 @@ src_configure() {
--with-drivers="${myeconfargs_lcd_devices#,}"
)
 
-   econf "${myeconfargs[@]}"
+   CONFIG_SHELL="${BROOT}/bin/bash" econf "${myeconfargs[@]}"
 }
 
 src_install() {



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

2023-05-09 Thread Sam James
commit: 88360a4a2ee93735ba87721d2b7452959b4cb3f4
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:08:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:29:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88360a4a

app-emulation/spice: add note why no meson yet

Bug: https://gitlab.freedesktop.org/spice/spice/-/issues/75
Signed-off-by: Sam James  gentoo.org>

 app-emulation/spice/spice-0.15.1-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-emulation/spice/spice-0.15.1-r1.ebuild 
b/app-emulation/spice/spice-0.15.1-r1.ebuild
index b70f059e580a..6e09dc04f683 100644
--- a/app-emulation/spice/spice-0.15.1-r1.ebuild
+++ b/app-emulation/spice/spice-0.15.1-r1.ebuild
@@ -4,6 +4,7 @@
 EAPI=8
 
 PYTHON_COMPAT=( python3_{9,10,11} )
+# Port to meson once https://gitlab.freedesktop.org/spice/spice/-/issues/75 is 
fixed
 inherit autotools python-any-r1 readme.gentoo-r1 xdg-utils
 
 DESCRIPTION="SPICE server"



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

2023-05-09 Thread Sam James
commit: 6b9b4ebfc35ab5c718e21a20def3e7bbfcbc52e3
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:24:32 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:29:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b9b4ebf

dev-util/ostree: unset YACC for bison

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

 dev-util/ostree/ostree-2022.2.ebuild| 5 -
 dev-util/ostree/ostree-2022.5-r1.ebuild | 5 -
 dev-util/ostree/ostree-2022.6.ebuild| 5 -
 dev-util/ostree/ostree-2022.7-r1.ebuild | 3 +++
 dev-util/ostree/ostree-2023.1.ebuild| 3 +++
 5 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/dev-util/ostree/ostree-2022.2.ebuild 
b/dev-util/ostree/ostree-2022.2.ebuild
index ffd7127f1a9e..931a48f9ce06 100644
--- a/dev-util/ostree/ostree-2022.2.ebuild
+++ b/dev-util/ostree/ostree-2022.2.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
@@ -71,6 +71,9 @@ src_prepare() {
 }
 
 src_configure() {
+   # Needs Bison (bug #884289)
+   unset YACC
+
local econfargs=(
--enable-man
--enable-shared

diff --git a/dev-util/ostree/ostree-2022.5-r1.ebuild 
b/dev-util/ostree/ostree-2022.5-r1.ebuild
index 5500d617d7b6..eb443e50cc0b 100644
--- a/dev-util/ostree/ostree-2022.5-r1.ebuild
+++ b/dev-util/ostree/ostree-2022.5-r1.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
@@ -78,6 +78,9 @@ src_prepare() {
 }
 
 src_configure() {
+   # Needs Bison (bug #884289)
+   unset YACC
+
local econfargs=(
--enable-man
--enable-shared

diff --git a/dev-util/ostree/ostree-2022.6.ebuild 
b/dev-util/ostree/ostree-2022.6.ebuild
index f5456a6e416e..030a24150f38 100644
--- a/dev-util/ostree/ostree-2022.6.ebuild
+++ b/dev-util/ostree/ostree-2022.6.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
@@ -77,6 +77,9 @@ src_prepare() {
 }
 
 src_configure() {
+   # Needs Bison (bug #884289)
+   unset YACC
+
local econfargs=(
--enable-man
--enable-shared

diff --git a/dev-util/ostree/ostree-2022.7-r1.ebuild 
b/dev-util/ostree/ostree-2022.7-r1.ebuild
index 0bcffeafb6bb..8affb7d1e501 100644
--- a/dev-util/ostree/ostree-2022.7-r1.ebuild
+++ b/dev-util/ostree/ostree-2022.7-r1.ebuild
@@ -77,6 +77,9 @@ src_prepare() {
 }
 
 src_configure() {
+   # Needs Bison (bug #884289)
+   unset YACC
+
local econfargs=(
--enable-man
--enable-shared

diff --git a/dev-util/ostree/ostree-2023.1.ebuild 
b/dev-util/ostree/ostree-2023.1.ebuild
index 8e2cb1c035f1..94174a9acdaf 100644
--- a/dev-util/ostree/ostree-2023.1.ebuild
+++ b/dev-util/ostree/ostree-2023.1.ebuild
@@ -77,6 +77,9 @@ src_prepare() {
 }
 
 src_configure() {
+   # Needs Bison (bug #884289)
+   unset YACC
+
local econfargs=(
--enable-man
--enable-shared



[gentoo-commits] repo/gentoo:master commit in: dev-util/ostree/, dev-util/ostree/files/

2023-05-09 Thread Sam James
commit: 32cf6e39d4bbceac2d7863f851d7bca27463c17e
Author: Sam James  gentoo  org>
AuthorDate: Wed May 10 00:25:13 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Wed May 10 00:29:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32cf6e39

dev-util/ostree: drop 2022.2, 2022.5-r1

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

 dev-util/ostree/Manifest   |   2 -
 dev-util/ostree/files/ostree-2022.5-bashism.patch  |  35 --
 .../ostree/files/ostree-2022.5-glibc-2.36.patch| 127 -
 dev-util/ostree/ostree-2022.2.ebuild   | 110 --
 dev-util/ostree/ostree-2022.5-r1.ebuild| 117 ---
 5 files changed, 391 deletions(-)

diff --git a/dev-util/ostree/Manifest b/dev-util/ostree/Manifest
index a7eab749bf05..fb9c66791c36 100644
--- a/dev-util/ostree/Manifest
+++ b/dev-util/ostree/Manifest
@@ -1,5 +1,3 @@
-DIST ostree-2022.2.tar.xz 2059592 BLAKE2B 
73bb563be473f3f62ab2d0e1ec6e2b659c8c12aaba828ae6fd5bab4b6bd3a978ffe5d76e17734e40c0569e3e74f13b85aaf9ae467747c5bbb309c73b373e9909
 SHA512 
07be16101aa00f541833dc6123f015ee1af65e40e2c237322a129e944fa19791e7cad6f0b29ced3c128adbe23bdb3c8708688fadd4ed80b160acab584b84abfe
-DIST ostree-2022.5.tar.xz 2072208 BLAKE2B 
be12432c87da82362ceb49b61b0cfc2ab77fdd7e55dfd3ca238d3c0f6fa5e64dd953d709c39727a46f82b99ef07bfbebf83b581f5e96a10a08322854e9a0e1f9
 SHA512 
39abd076491ebab5cd6e23bff6ce0a346fe8d1e6a372abb42626ef5a8643411070b272637513b37393dc37af9b8eaaa42c19e2f1c16b98d441358c2046653654
 DIST ostree-2022.6.tar.xz 2124464 BLAKE2B 
c6ea1f11d08261e8532345ffc18bec9e77d04e63aab0c8e2eb03a4b3d3c2c594bcc9e6c5341e4caefe81fbd06a055cd39b0f2f2b43d3e876837a9bac43c704f5
 SHA512 
03f6b6947a372e36d3a1ae3bbe47543c562113039ce10db9c6f26a7b4015afb41950bd00bd1931937a5fb3043689ca1046eb87afd890571cfedbfa1ef36219a7
 DIST ostree-2022.7.tar.xz 2076728 BLAKE2B 
7308be450e4aa9bebe3e8b86031bf75b7d0cd07a2e36d6d11d01aa8e8d19ed02e8560931a83f18856c7d4fc7ae6045d22b6aa4d7f577f3df9e704ae9d7562d3e
 SHA512 
725eff027b2c4c1aec0c222a5fa6059f3a777f4d0c831b82a4021befba0078692aa5ced2c4c609530c70462b4148a3cc33152e3d9dc4a5d6f8cf98f61ef09c2a
 DIST ostree-2023.1.tar.xz 2079904 BLAKE2B 
993570624cb43684d81fff9f3789a9cee3b998f945a78bc6eb99330eed45739d1e6fb66589cefba10eea608c5cd389cc121a890c27efa773a405a5d8b1f117d9
 SHA512 
a6a6e47d6cb9ec6826d48a50a2abac69e4a040f2b5830d39e8a006c738a163fb15fde8630bf271d92cec9470601281669cd4bf942e4b7c4d42441bd5d1730572

diff --git a/dev-util/ostree/files/ostree-2022.5-bashism.patch 
b/dev-util/ostree/files/ostree-2022.5-bashism.patch
deleted file mode 100644
index 1cf217de744b..
--- a/dev-util/ostree/files/ostree-2022.5-bashism.patch
+++ /dev/null
@@ -1,35 +0,0 @@
-https://github.com/ostreedev/ostree/pull/2702
-
-From c568073d1e6a5e602a6df29eaa5b7392e076f5d6 Mon Sep 17 00:00:00 2001
-From: Sam James 
-Date: Tue, 23 Aug 2022 23:37:06 +0100
-Subject: [PATCH] buildutil/glibtests.m4: fix bashism
-
-configure scripts need to be runnable with a POSIX-compliant /bin/sh.
-
-On many (but not all!) systems, /bin/sh is provided by Bash, so errors
-like this aren't spotted. Notably Debian defaults to /bin/sh provided
-by dash which doesn't tolerate such bashisms as '=='.
-
-This retains compatibility with bash.
-
-Fixes configure warnings/errors like:
-```
-
-checking whether to build static libraries... no
-./configure: 14795: test: unexpected operator
-```
-
-Signed-off-by: Sam James 
 a/buildutil/glibtests.m4
-+++ b/buildutil/glibtests.m4
-@@ -25,7 +25,7 @@ AC_DEFUN([GLIB_TESTS],
-   *) AC_MSG_ERROR([bad value ${enableval} for 
--enable-always-build-tests]) ;;
-  esac])
-   AM_CONDITIONAL([ENABLE_ALWAYS_BUILD_TESTS], test 
"$ENABLE_ALWAYS_BUILD_TESTS" = "1")
--  if test "$ENABLE_INSTALLED_TESTS" == "1"; then
-+  if test "$ENABLE_INSTALLED_TESTS" = "1"; then
- AC_SUBST(installed_test_metadir, 
[${datadir}/installed-tests/]AC_PACKAGE_NAME)
- AC_SUBST(installed_testdir, 
[${libexecdir}/installed-tests/]AC_PACKAGE_NAME)
-   fi
-

diff --git a/dev-util/ostree/files/ostree-2022.5-glibc-2.36.patch 
b/dev-util/ostree/files/ostree-2022.5-glibc-2.36.patch
deleted file mode 100644
index 6d01e96a09c8..
--- a/dev-util/ostree/files/ostree-2022.5-glibc-2.36.patch
+++ /dev/null
@@ -1,127 +0,0 @@
-https://bugs.gentoo.org/863689
-https://github.com/ostreedev/ostree/commit/edba4b33be10c05253bfa94895dfbc8477e44d76
-https://github.com/ostreedev/ostree/commit/0a908a180fcce98c2565b9fb34470e5953918260
-
-From edba4b33be10c05253bfa94895dfbc8477e44d76 Mon Sep 17 00:00:00 2001
-From: Colin Walters 
-Date: Wed, 3 Aug 2022 10:37:40 -0400
-Subject: [PATCH] Remove unused `linux/fs.h` includes
-
-Prep for fixing conflicts introduced by newer glibc.
-cc https://github.com/ostreedev/ostree/issues/2685
 a/src/libostree/ostree-repo-commit.c
-+++ b/src/libostree/ostree-repo-commit.c
-@@ -30,7 +30,6 @@
- #include 
- #include 
- #include 
--#incl

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

2023-05-09 Thread Robin H. Johnson
commit: 5e117e5e5e04de053f606d74da4170d402d77492
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Wed May 10 00:24:44 2023 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Wed May 10 00:25:22 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e117e5e

dev-perl/WWW-Curl: fix compile with curl-7.87+

Closes: https://bugs.gentoo.org/888559
Signed-off-by: Robin H. Johnson  gentoo.org>

 dev-perl/WWW-Curl/Manifest   |  1 +
 dev-perl/WWW-Curl/WWW-Curl-4.170.0-r3.ebuild | 82 
 2 files changed, 83 insertions(+)

diff --git a/dev-perl/WWW-Curl/Manifest b/dev-perl/WWW-Curl/Manifest
index dd04f7a57762..41807eb27a51 100644
--- a/dev-perl/WWW-Curl/Manifest
+++ b/dev-perl/WWW-Curl/Manifest
@@ -1 +1,2 @@
+DIST WWW-Curl-4.17-Work-around-a-macro-bug-in-curl-7.87.0.patch 1375 BLAKE2B 
af3809b0933d127e7f3d9b7992104cdd1334f05d94a0650f60965669c6b750253dc1b936cf7570cb2ab9ddde1820e32fe9553f8f40dd1055455d33d712907e0c
 SHA512 
2d8a32258c12cdc894da31374c751297e0875dd3469a5e9ba2b11efd96a7df3c39e0369eac5749e5f4746d37199440cb1c91e97c51c63c0e9b84850892b3b52f
 DIST WWW-Curl-4.17.tar.gz 50917 BLAKE2B 
6f07570fb0db535b506b8e4a879a05f1901d4c1a2c0fb8c775ae330fb3ea44c523d921494d30f9e02b8eb84e4a006eb53e8594bbce6615ad162090b0d422edfb
 SHA512 
bc7a75d0e23f5a77578fd7244b56a1e1b81d814993b90ac7132926f0d571232c4c95875bc615cb6239e424ae1d5481d27796efc5376bb0845d1da0ff1137c0d6

diff --git a/dev-perl/WWW-Curl/WWW-Curl-4.170.0-r3.ebuild 
b/dev-perl/WWW-Curl/WWW-Curl-4.170.0-r3.ebuild
new file mode 100644
index ..9a0567845594
--- /dev/null
+++ b/dev-perl/WWW-Curl/WWW-Curl-4.170.0-r3.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=SZBALINT
+DIST_VERSION=4.17
+inherit perl-module
+
+DESCRIPTION="Perl extension interface for libcurl"
+
+LICENSE="|| ( MPL-1.0 MPL-1.1 MIT )"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~ppc64 ~x86"
+
+RDEPEND="net-misc/curl"
+DEPEND="${RDEPEND}"
+BDEPEND="${RDEPEND}"
+
+# https://rt.cpan.org/Public/Bug/Display.html?id=145992
+SRC_URI+="
+   
https://rt.cpan.org/Public/Ticket/Attachment/2423633/1093328/WWW-Curl-4.17-Work-around-a-macro-bug-in-curl-7.87.0.patch
+   "
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-4.150.0-curl-7.50.2.patch
+   "${FILESDIR}"/${PN}-4.17-dotinc.patch
+   "${FILESDIR}"/${PN}-4.17-networktests.patch
+   "${FILESDIR}"/${PN}-4.17-RT117793.patch
+   "${FILESDIR}"/${PN}-4.17-RT130591.patch
+   "${FILESDIR}"/${PN}-4.17-RT132197.patch
+   "${DISTDIR}/WWW-Curl-4.17-Work-around-a-macro-bug-in-curl-7.87.0.patch"
+)
+
+src_prepare() {
+   perl-module_src_prepare
+   # Makefile.PL does some creative things parsing macros vs defines from 
curl
+   # build system
+   #
+   # However, it tends to be very fragile and needs lots of patching, so
+   # instead of multiple patches, make it a variable and hoist it to the
+   # ebuild.
+   #
+   # Use the modifier flags aax means we can write an easier to manage 
regex as well.
+   sed -i -r \
+   -e 
'/if.*=~.*(OBSOLETE|CURL_EXTERN|CURL_STRICTER)/s,/[^/]+/,/($ENV{_CURL_BUILD_SYM_EXCLUDE})/aax,g'
 \
+   "${S}/Makefile.PL"
+}
+
+# 
https://src.fedoraproject.org/rpms/perl-WWW-Curl/blob/rawhide/f/WWW-Curl-4.17-Skip-preprocessor-symbol-only-CURL_STRICTER.patch
+# /(OBSOLETE|^CURL_EXTERN|^CURL_STRICTER\z|_LAST\z|_LASTENTRY\z)/
+#
+# files/WWW-Curl-4.17-RT117793.patch
+# 
/(OBSOLETE|^CURL_EXTERN|^CURL_STRICTER\z|^CURL_DID_MEMORY_FUNC_TYPEDEFS\z|_LAST\z|_LASTENTRY\z)/)
+#
+# files/WWW-Curl-4.17-RT130591.patch
+# 
/(OBSOLETE|^CURL_EXTERN|^CURL_STRICTER\z|^CURL_DID_MEMORY_FUNC_TYPEDEFS\z|_LAST\z|_LASTENTRY\z|^CURLINC_)/
+#
+# https://rt.cpan.org/Public/Bug/Display.html?id=132197
+# 
/(OBSOLETE|^CURL_EXTERN|^CURL_STRICTER\z|^CURL_DID_MEMORY_FUNC_TYPEDEFS\z|_LAST\z|_LASTENTRY\z|^CURLINC_|^CURL_WIN32\z|^CURLOPT\z)/
+#
+# 
https://src.fedoraproject.org/rpms/perl-WWW-Curl/blob/rawhide/f/WWW-Curl-4.17-Adapt-to-curl-7.87.0.patch
+# 
/(OBSOLETE|^CURL_DEPRECATED\z|^CURL_EXTERN|^CURL_IGNORE_DEPRECATION\z|^CURL_STRICTER\z|^CURL_WIN32\z|^CURLOPT\z|^CURLOPTDEPRECATED\z|_LAST\z|_LASTENTRY\z)
+#
+# If you change this variable, you should probably be bumping the ebuild rev!
+export _CURL_BUILD_SYM_EXCLUDE='
+__000FORPATCH_WITH_LEADING_SPACE
+|^CURL_DEPRECATED\z
+|^CURL_DID_MEMORY_FUNC_TYPEDEFS\z
+|^CURL_EXTERN
+|^CURL_IGNORE_DEPRECATION\z
+|^CURLINC_
+|^CURLOPTDEPRECATED\z
+|^CURLOPT\z
+|^CURL_STRICTER\z
+|^CURL_WIN32\z
+|_LASTENTRY\z
+|_LAST\z
+|OBSOLETE
+'
+
+PERL_RM_FILES=("t/meta.t" "t/pod-coverage.t" "t/pod.t")



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

2023-05-09 Thread Patrick McLean
commit: 2030fd041438a468fcbf8c1a2510a94c5dd598a2
Author: Patrick McLean  gentoo  org>
AuthorDate: Wed May 10 00:06:59 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Wed May 10 00:06:59 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2030fd04

sys-cluster/ceph: add 16.2.13, drop 16.2.12

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

 sys-cluster/ceph/Manifest | 2 +-
 sys-cluster/ceph/{ceph-16.2.12.ebuild => ceph-16.2.13.ebuild} | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-cluster/ceph/Manifest b/sys-cluster/ceph/Manifest
index dcfb5737a4da..a229700775f4 100644
--- a/sys-cluster/ceph/Manifest
+++ b/sys-cluster/ceph/Manifest
@@ -1,4 +1,4 @@
-DIST ceph-16.2.12.tar.gz 157193570 BLAKE2B 
86ffa8c19f793510ded3d314aa4ea0f51e55049fab66f06141a9b8e524e2e8d473d0f1ab7c1587e30afcd88fbc128338848087ad19fbbdeef2bba70f674ff3fc
 SHA512 
191ce7e302e74831d58db03b7b2346cdb182c33baafc7a4a93b2704431c4db73eb15311e7b67b69f56ff5810f9ec91ebd208ab9215e15b4ab03f12afdf4b
+DIST ceph-16.2.13.tar.gz 157213576 BLAKE2B 
cc319ff67f6320c101341d7bbca0d49630fd6d4a5ed48b34e73a9e780ddf934adc35e3ff09e32115fe4b9a853bff9a85ca2c1e5e62d5596251d2dae535726a28
 SHA512 
39ec2bed1de0276f08bf93241f9fb275893041fd5f20ade75e68728107011ae5d01aed532d5afd8805951d09061a5a3d96c4311701c8897a29668f77126c19ab
 DIST ceph-17.2.5.tar.gz 169004360 BLAKE2B 
b6d8df5f9b58de5e42fed5d16b1c82d2178297f8bb1b6cf9c42ff55d6a5b2e20fe413feeab038738f62342576ef59fff7091b87648c10cf71401377b0ffa5dc8
 SHA512 
10cd3d9eb01c91c148a92f1f7d040bbd78af5bb1ab15d071d93f54b37097dc9e1268eed9e788fe32794d137f6af81abd6a2aeaee39cef44d2c45234a15cc6020
 DIST ceph-17.2.6.tar.gz 168093221 BLAKE2B 
f79efce9bd7f485b43ae1b4da94a1d9fb3753003f34535e93c80e480ffeaaf054d371f75bca72402da5f9dd460aafa820bb2af550d213bdbcca74aa939180431
 SHA512 
dca9aea2ce210c15fcc34cb06a5dc5b4488ffa36d684166d47ebd87e48b54b6fee0882e1c67007a780e1c25754e9bc6e760cc10f60ea1183263f8504ef2dbd9b
 DIST ceph-xsimd-17.2.5.tar.gz 173025 BLAKE2B 
54679c24804c195ae55b9f49589e331dde92c6d89aaa20e827539e9a4e0010c7549cdd5cf02a7ebed83f953ab2a6f1d9cc9a98cf45c3dc7758ae4938c9c43713
 SHA512 
ecc58e7909648aaa22aefbf76ee2c5a2bece4b1b88da9c7eda1b69a46247e619ff99c4366afd6015f95debd68c1a6b89292c677b9049462d0fc0255fbc0c2a33

diff --git a/sys-cluster/ceph/ceph-16.2.12.ebuild 
b/sys-cluster/ceph/ceph-16.2.13.ebuild
similarity index 99%
rename from sys-cluster/ceph/ceph-16.2.12.ebuild
rename to sys-cluster/ceph/ceph-16.2.13.ebuild
index ba1827895dec..d7601aa625d1 100644
--- a/sys-cluster/ceph/ceph-16.2.12.ebuild
+++ b/sys-cluster/ceph/ceph-16.2.13.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-PYTHON_COMPAT=( python3_{9..10} )
+PYTHON_COMPAT=( python3_{9..11} )
 LUA_COMPAT=( lua5-3 )
 
 CMAKE_MAKEFILE_GENERATOR=emake
@@ -93,7 +93,7 @@ DEPEND="
spdk? ( dev-util/cunit )
sqlite? ( dev-db/sqlite:= )
system-boost? ( dev-libs/boost:=[context,python,${PYTHON_USEDEP},zlib] )
-   !system-boost? ( $(python_gen_impl_dep '' 3.10) )
+   !system-boost? ( $(python_gen_impl_dep '' 3.{10..11}) )
uring? ( sys-libs/liburing:= )
xfs? ( sys-fs/xfsprogs:= )
zbd? ( sys-block/libzbd:= )



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

2023-05-09 Thread James Le Cuirot
commit: 8c1a72b13abf46c2f9f5074bb86d98afe4c2d61c
Author: Richard Fröhning  gmx  de>
AuthorDate: Tue May  9 08:14:59 2023 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Tue May  9 22:11:33 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c1a72b1

dev-libs/miniaudio: version bump to 0.11.15 and using tags instead of commits.

Signed-off-by: Richard Fröhning  gmx.de>
Closes: https://github.com/gentoo/gentoo/pull/30950
Signed-off-by: James Le Cuirot  gentoo.org>

 dev-libs/miniaudio/Manifest |  1 +
 dev-libs/miniaudio/miniaudio-0.11.15.ebuild | 17 +
 2 files changed, 18 insertions(+)

diff --git a/dev-libs/miniaudio/Manifest b/dev-libs/miniaudio/Manifest
index 21b03258751b..4c800af084e5 100644
--- a/dev-libs/miniaudio/Manifest
+++ b/dev-libs/miniaudio/Manifest
@@ -1 +1,2 @@
 DIST miniaudio-0.11.11.tar.gz 1419564 BLAKE2B 
63f23637b2a53e5438695b71d60b76ca16fdb63e08fbf17df7701e4c20aaffa7f635368e6bc21e2564da52b3f51127e76145ed8b7492b6f3f8f0b493dd459f05
 SHA512 
396608d8326777adfffb50216322198b9f86d73c6a83c5886dc9eaef93b82a4e8f44f446192990b7b9fabac53fad073546214692a000415307e70812a50fb0c2
+DIST miniaudio-0.11.15.tar.gz 1465008 BLAKE2B 
3c2ddcb765f44b0367462dd5ca466ade3a91e69f2132790fc2a9753ef11bfd2238f221d063d3e76cc0ac18567acb11af537887bac9aaa33adbca65f3882d8587
 SHA512 
1866c14396e9ceefe7e1aa6650a505fb1d4f087a77f71eec933c871dce34fda172da7b31621d88ee1e83410d1089f2d7dd0990a70ce8aab101f796b048fd8dcb

diff --git a/dev-libs/miniaudio/miniaudio-0.11.15.ebuild 
b/dev-libs/miniaudio/miniaudio-0.11.15.ebuild
new file mode 100644
index ..1e2ae697a697
--- /dev/null
+++ b/dev-libs/miniaudio/miniaudio-0.11.15.ebuild
@@ -0,0 +1,17 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="A single file library for audio playback and capture"
+HOMEPAGE="https://miniaudio.io";
+SRC_URI="https://github.com/mackron/miniaudio/archive/refs/tags/${PV}.tar.gz 
-> ${P}.tar.gz"
+
+LICENSE="|| ( public-domain MIT-0 )"
+SLOT="0"
+KEYWORDS="~amd64"
+
+src_install() {
+   insinto /usr/include/${PN}/
+   doins -r *
+}



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

2023-05-09 Thread Andreas K. Hüttel
commit: c7113426ff88c5ca46a432f43b0fc1de1f52b512
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue May  9 21:50:02 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Tue May  9 21:50:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7113426

sys-apps/locale-gen: remove errorneous dependency

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

 sys-apps/locale-gen/locale-gen-2.23.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-apps/locale-gen/locale-gen-2.23.ebuild 
b/sys-apps/locale-gen/locale-gen-2.23.ebuild
index c819b986ee6b..8272f634317c 100644
--- a/sys-apps/locale-gen/locale-gen-2.23.ebuild
+++ b/sys-apps/locale-gen/locale-gen-2.23.ebuild
@@ -21,7 +21,6 @@ RDEPEND="
app-arch/gzip
sys-apps/gentoo-functions
sys-apps/grep
-   >=sys-libs/glibc-2.37-r3
!

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

2023-05-09 Thread Matt Turner
commit: d0319319d46f04f2922692eba757542871890ac0
Author: Matt Turner  gentoo  org>
AuthorDate: Tue May  9 19:25:54 2023 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue May  9 21:03:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0319319

sys-process/gnome-usage: Depend on vala in libhandy and tracker

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

 .../{gnome-usage-3.38.1-r1.ebuild => gnome-usage-3.38.1-r2.ebuild}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-process/gnome-usage/gnome-usage-3.38.1-r1.ebuild 
b/sys-process/gnome-usage/gnome-usage-3.38.1-r2.ebuild
similarity index 90%
rename from sys-process/gnome-usage/gnome-usage-3.38.1-r1.ebuild
rename to sys-process/gnome-usage/gnome-usage-3.38.1-r2.ebuild
index e0fddb06bc33..2093a647313c 100644
--- a/sys-process/gnome-usage/gnome-usage-3.38.1-r1.ebuild
+++ b/sys-process/gnome-usage/gnome-usage-3.38.1-r2.ebuild
@@ -17,8 +17,8 @@ RDEPEND="
>=x11-libs/gtk+-3.20.10:3
>=dev-libs/libdazzle-3.30
>=gnome-base/libgtop-2.34.0:2
-   >=gui-libs/libhandy-1.0.0:1=
-   >=app-misc/tracker-3.0.3:3=
+   >=gui-libs/libhandy-1.0.0:1=[vala(+)]
+   >=app-misc/tracker-3.0.3:3=[vala(+)]
 "
 DEPEND="${RDEPEND}"
 BDEPEND="



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

2023-05-09 Thread Matt Turner
commit: 2ea28f89bbda321c9b35b817a46f8287c98177ac
Author: Matt Turner  gentoo  org>
AuthorDate: Tue May  9 21:15:56 2023 +
Commit: Matt Turner  gentoo  org>
CommitDate: Tue May  9 21:15:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2ea28f89

x11-libs/libxcb: Depend on xorg-proto

xau.pc requires it.

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

 x11-libs/libxcb/libxcb-1.15-r1.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-libs/libxcb/libxcb-1.15-r1.ebuild 
b/x11-libs/libxcb/libxcb-1.15-r1.ebuild
index 8ad8925627e4..a4480b356b98 100644
--- a/x11-libs/libxcb/libxcb-1.15-r1.ebuild
+++ b/x11-libs/libxcb/libxcb-1.15-r1.ebuild
@@ -25,6 +25,7 @@ RDEPEND="
>=x11-libs/libXdmcp-1.1.1-r1[${MULTILIB_USEDEP}]
 "
 DEPEND="${RDEPEND}
+   x11-base/xorg-proto
>=x11-base/xcb-proto-1.15.2
elibc_Darwin? ( dev-libs/libpthread-stubs )
test? ( dev-libs/check[${MULTILIB_USEDEP}] )



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

2023-05-09 Thread Robin H. Johnson
commit: 9275af293499b383b853bd0315f4f276ef93b89b
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Tue May  9 21:03:11 2023 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Tue May  9 21:03:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9275af29

sys-block/libzbd: bump

Closes: https://bugs.gentoo.org/905965
Signed-off-by: Robin H. Johnson  gentoo.org>

 sys-block/libzbd/Manifest|  1 +
 sys-block/libzbd/libzbd-2.0.4.ebuild | 41 
 sys-block/libzbd/metadata.xml|  3 +++
 3 files changed, 45 insertions(+)

diff --git a/sys-block/libzbd/Manifest b/sys-block/libzbd/Manifest
index eed130a2b77b..b84cdae1589b 100644
--- a/sys-block/libzbd/Manifest
+++ b/sys-block/libzbd/Manifest
@@ -1 +1,2 @@
 DIST libzbd-1.2.0.tar.gz 56107 BLAKE2B 
0b20ced5cb0abc6ac5d303a1b583b1a8c0b3c89936cf664dd227832d5a704f6665a82e0d1c7cf80c381400b4edcff6c9e0b192c10deaf00c89009b40edde8676
 SHA512 
d165640331c7a87c4660f3f707c0510fa7a21edd194e66e96abe6ad3698dc4652a6a673ac8ac1929b0f603df49c1621f398cfb81b7ab8f9dba6353fa9f05d94f
+DIST libzbd-2.0.4.tar.gz 97015 BLAKE2B 
a91528bb9d1c56eccd25e7a429aefb0ab32d489179343a01278c179ccead04ca250b2d0b107a85aced256f7629aa15e97160c62c6d916e657b60fbdc12178a6a
 SHA512 
7e8ca0ca6114aa777c1c90073c2ca8e426cdf3bbe5afbb2fc0171b5e165f6daa20bd13436e469af069f8a7162374a49563432cd489ce4483ad13542844c5bf28

diff --git a/sys-block/libzbd/libzbd-2.0.4.ebuild 
b/sys-block/libzbd/libzbd-2.0.4.ebuild
new file mode 100644
index ..bf32df5efe80
--- /dev/null
+++ b/sys-block/libzbd/libzbd-2.0.4.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools
+
+DESCRIPTION="Zoned block device manipulation library and tools"
+HOMEPAGE="https://github.com/westerndigitalcorporation/libzbd";
+SRC_URI="https://github.com/westerndigitalcorporation/${PN}/archive/v${PV}.tar.gz
 -> ${P}.tar.gz"
+
+# Examples/tools are GPL-3+, library is LGPL-3+
+LICENSE="GPL-3+ LGPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+IUSE="gtk"
+
+# PKG_CHECK_MODULES is only for GTK right now
+# 
https://github.com/westerndigitalcorporation/libzbd/blob/master/configure.ac#L71
+BDEPEND="gtk? ( virtual/pkgconfig )"
+DEPEND="
+   >=sys-kernel/linux-headers-4.13
+   gtk? ( x11-libs/gtk+:3 )
+"
+RDEPEND="${DEPEND}"
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable gtk gui) \
+   --disable-static
+}
+
+src_install() {
+   default
+   find "${ED}" -name '*.la' -delete || die
+}

diff --git a/sys-block/libzbd/metadata.xml b/sys-block/libzbd/metadata.xml
index 80d8dd5ae749..ed5be5f1dc61 100644
--- a/sys-block/libzbd/metadata.xml
+++ b/sys-block/libzbd/metadata.xml
@@ -9,4 +9,7 @@
chutz...@gentoo.org
Patrick McLean

+   
+   westerndigitalcorporation/libzbd
+   
 



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

2023-05-09 Thread Andreas K. Hüttel
commit: 04f727a5752329447bfe9576a2769db046b0a95f
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue May  9 20:55:22 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Tue May  9 20:59:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04f727a5

sys-apps/locale-gen: Adjust dependencies

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

 sys-apps/locale-gen/locale-gen-2.23.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-apps/locale-gen/locale-gen-2.23.ebuild 
b/sys-apps/locale-gen/locale-gen-2.23.ebuild
index 4b6dadbfa5d4..c819b986ee6b 100644
--- a/sys-apps/locale-gen/locale-gen-2.23.ebuild
+++ b/sys-apps/locale-gen/locale-gen-2.23.ebuild
@@ -14,15 +14,15 @@ 
SRC_URI="https://gitweb.gentoo.org/proj/locale-gen.git/snapshot/${P}.tar.bz2";
 LICENSE="GPL-2+"
 
 SLOT="0"
-#KEYWORDS="~amd64"
+#KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc 
~ppc64 ~riscv ~s390 ~sparc ~x86"
 
 RDEPEND="
app-alternatives/awk
app-arch/gzip
sys-apps/gentoo-functions
sys-apps/grep
-   >=sys-libs/glibc-2.38
-   !=sys-libs/glibc-2.37-r3
+   !

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

2023-05-09 Thread Andreas K. Hüttel
commit: 9b52c49eec1464787e13aedddcf1b9b999a93c29
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Tue May  9 20:56:23 2023 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Tue May  9 20:59:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b52c49e

sys-libs/glibc: 2.37 patchset 5 bump, other modernization, split out locale-gen

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

 sys-libs/glibc/Manifest| 1 +
 sys-libs/glibc/{glibc-.ebuild => glibc-2.37-r3.ebuild} | 5 +
 sys-libs/glibc/glibc-.ebuild   | 3 ---
 3 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/sys-libs/glibc/Manifest b/sys-libs/glibc/Manifest
index cc31b51d1f5d..404ff5d96519 100644
--- a/sys-libs/glibc/Manifest
+++ b/sys-libs/glibc/Manifest
@@ -19,6 +19,7 @@ DIST glibc-2.36-patches-10.tar.xz 118268 BLAKE2B 
3d1bdb6c1a9e10ba78a344ca8940f68
 DIST glibc-2.36-patches-9.tar.xz 110440 BLAKE2B 
edc1aca9b7bc9ce64683e3bd905c9804b581af2d41191ae85e6f0e73d444672abe56bbb620373d31b20db8f84a2cb9ed4e1026e50ce5f287dac5c24752ee187a
 SHA512 
1f1f85a439983b776229b924f9a8fd9aacf9efc869a212ff15b49e60627f37719b548d20b9ff1b80d88996bce115f44efdbecc6dce378a4247c6078ed7e6e1b4
 DIST glibc-2.36.tar.xz 18610836 BLAKE2B 
f8375e084043f032609e66fd98c234249df57a595c59672acb1bb8c69aed64d339d526611553449492b097cda900ad1d9bae8873d7f5932b10a9a0d8c9210c55
 SHA512 
9ea0bbda32f83a85b7da0c34f169607fb8a102f0a11a914e6bf531be47d1bef4f5307128286cffa1e2dc5879f0e6ccaef527dd353486883fa332a0b44bde8b3e
 DIST glibc-2.37-patches-4.tar.xz 24136 BLAKE2B 
4dc69ed5d5671bc6a865775b86b4227015b7636f00a92b2c4ff07006fb2a288643eb6b5f6012dd34e62f6cf2f6bd63ac1931286b64fdac39e4988b21ca4b94ae
 SHA512 
4bb5f4c3d37f7f028b8920bbda71c32492c1ebdfe4d151cb05e9ab14040d7b16833d4d9da06c5c84a9efde7510650c90a3c188d636e02ede46f8fe5e32b9b11f
+DIST glibc-2.37-patches-5.tar.xz 37640 BLAKE2B 
a87fb239208eb6d65c96bf7687570d8d0919277410fe1e28c293fa7749ffa862417bc1fe6d0819e47a806b20e52d14de84b843fa879fe15b884b2742719caf87
 SHA512 
344276606b7330322df72ee964d3447d02907df92b5a1d20b9aa427e93727be907f915ecd62db45e994c46451bd09d5da95ef7bf1a27d247a57589c568e6cb20
 DIST glibc-2.37.tar.xz 18674604 BLAKE2B 
8139cd977b2ed3bfdbde5ffb1cda8f759763dbb83071167272fef798cfbdc0d17cfd1ec893d126c52c91511b7961f3ad12eed34534b99412dfa04a1cdd5b4ea3
 SHA512 
4fc5932f206bb1b8b54828a28af1a681616b838bbab60c81c82155f3629cbfe1301d271af65511ed917f4c6949a025429221fe6035753282f15346919f15b90c
 DIST glibc-systemd-20210729.tar.gz 1480 BLAKE2B 
37722c7579df782d890e44dbab99c3de52ab466eb9de80d82405e9bb5620bf39ffc8c5f466a435bdb86ef6d36dd7019c0736573916bda6c67d02a2581e0ec979
 SHA512 
efd75af58b50522c28cdac7abd1fc56555bc1bb042512c90d8340c1ec09c5791b3872a305bf83723252bbde5855b75d958c041083457765c4cfd170732d09238
 DIST glibc-systemd-20210814.tar.gz 1469 BLAKE2B 
10fa7bcb46d4fdce9c0ab353cbd30871e9b09a347a13a9c9a3b5777f931aa3c826c158d2e49532c604d4a834f2fab4089b67495fb88d0398945dc50d45ad9ef1
 SHA512 
5346a9ea459a1e6ccf665389f2a294de1e16f1e3e05cdf07e3dd99ed0e4f6f8b52cc333d4bff3c75ac90ab6ce70cd4ab2b3e126f920ce7979abd6dda56315efc

diff --git a/sys-libs/glibc/glibc-.ebuild 
b/sys-libs/glibc/glibc-2.37-r3.ebuild
similarity index 99%
copy from sys-libs/glibc/glibc-.ebuild
copy to sys-libs/glibc/glibc-2.37-r3.ebuild
index f2b018ef4bf1..c6b24c8364c1 100644
--- a/sys-libs/glibc/glibc-.ebuild
+++ b/sys-libs/glibc/glibc-2.37-r3.ebuild
@@ -20,7 +20,7 @@ SLOT="2.2"
 EMULTILIB_PKG="true"
 
 # Gentoo patchset (ignored for live ebuilds)
-PATCH_VER=1
+PATCH_VER=5
 PATCH_DEV=dilfridge
 
 # gcc mulitilib bootstrap files version
@@ -97,9 +97,6 @@ fi
 # Lastly, let's avoid some openssh nastiness, bug 708224, as
 # convenience to our users.
 
-# gzip, grep, awk are needed by locale-gen, bug 740750; depending on the
-# compile-locales useflag either in src_install or in pkg_postinst.
-
 IDEPEND="
!compile-locales? ( sys-apps/locale-gen )
 "

diff --git a/sys-libs/glibc/glibc-.ebuild b/sys-libs/glibc/glibc-.ebuild
index f2b018ef4bf1..54fcf643e2cf 100644
--- a/sys-libs/glibc/glibc-.ebuild
+++ b/sys-libs/glibc/glibc-.ebuild
@@ -97,9 +97,6 @@ fi
 # Lastly, let's avoid some openssh nastiness, bug 708224, as
 # convenience to our users.
 
-# gzip, grep, awk are needed by locale-gen, bug 740750; depending on the
-# compile-locales useflag either in src_install or in pkg_postinst.
-
 IDEPEND="
!compile-locales? ( sys-apps/locale-gen )
 "



[gentoo-commits] repo/gentoo:master commit in: net-libs/rpcsvc-proto/, net-libs/rpcsvc-proto/files/

2023-05-09 Thread Sam James
commit: 9e5eb81267aa903a742d9e63e5fee668a0b0cbdb
Author: Ian Jordan  gmail  com>
AuthorDate: Tue May  9 20:04:10 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 20:49:09 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e5eb812

net-libs/rpcsvc-proto: LFS64 shim fix

The autoconf macro AC_SYS_LARGEFILE defines _FILE_OFFSET_BITS=64
where necessary to ensure that off_t and all interfaces using off_t
are 64bit, even on 32bit systems.

Replace stat64 by equivalent stat struct/func.

Closes: https://bugs.gentoo.org/905985
Signed-off-by: Ian Jordan  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30960
Signed-off-by: Sam James  gentoo.org>

 .../files/rpcsvc-proto-1.4.3-lfs64.patch   | 70 ++
 net-libs/rpcsvc-proto/rpcsvc-proto-1.4.3-r2.ebuild | 50 
 2 files changed, 120 insertions(+)

diff --git a/net-libs/rpcsvc-proto/files/rpcsvc-proto-1.4.3-lfs64.patch 
b/net-libs/rpcsvc-proto/files/rpcsvc-proto-1.4.3-lfs64.patch
new file mode 100644
index ..8d45fac6151b
--- /dev/null
+++ b/net-libs/rpcsvc-proto/files/rpcsvc-proto-1.4.3-lfs64.patch
@@ -0,0 +1,70 @@
+From 
https://github.com/thkukuk/rpcsvc-proto/commit/2527c37f956aa38408e251587556a6c8389af319.patch
 Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Sun, 11 Dec 2022 21:42:59 -0800
+Subject: [PATCH] Use AC_SYS_LARGEFILE macro to control largefile support
+
+The autoconf macro AC_SYS_LARGEFILE defines _FILE_OFFSET_BITS=64
+where necessary to ensure that off_t and all interfaces using off_t
+are 64bit, even on 32bit systems.
+
+replace stat64 by equivalent stat struct/func
+
+Signed-off-by: Khem Raj 
+--- a/configure.ac
 b/configure.ac
+@@ -8,6 +8,7 @@ AC_PREFIX_DEFAULT(/usr)
+ AC_SUBST(PACKAGE)
+ AC_SUBST(VERSION)
+ 
++AC_SYS_LARGEFILE
+ AC_PROG_CC
+ AC_GNU_SOURCE
+ AM_PROG_CC_C_O
+--- a/rpcgen/rpc_main.c
 b/rpcgen/rpc_main.c
+@@ -62,12 +62,6 @@
+ #define EXTEND1   /* alias for TRUE */
+ #define DONT_EXTEND   0   /* alias for FALSE */
+ 
+-#ifdef __APPLE__
+-# if __DARWIN_ONLY_64_BIT_INO_T
+-#  define stat64 stat
+-# endif
+-#endif
+-
+ struct commandline
+   {
+ int cflag;/* xdr C routines */
+@@ -337,9 +331,9 @@ clear_args (void)
+ static void
+ find_cpp (void)
+ {
+-  struct stat64 buf;
++  struct stat buf;
+ 
+-  if (stat64 (CPP, &buf) == 0)
++  if (stat (CPP, &buf) == 0)
+ return;
+ 
+   if (cppDefined) /* user specified cpp but it does not exist */
+@@ -1125,17 +1119,17 @@ putarg (int whereto, const char *cp)
+ static void
+ checkfiles (const char *infile, const char *outfile)
+ {
+-  struct stat64 buf;
++  struct stat buf;
+ 
+   if (infile) /* infile ! = NULL */
+-if (stat64 (infile, &buf) < 0)
++if (stat (infile, &buf) < 0)
+   {
+   perror (infile);
+   crash ();
+   }
+   if (outfile)
+ {
+-  if (stat64 (outfile, &buf) < 0)
++  if (stat (outfile, &buf) < 0)
+   return; /* file does not exist */
+   else
+   {

diff --git a/net-libs/rpcsvc-proto/rpcsvc-proto-1.4.3-r2.ebuild 
b/net-libs/rpcsvc-proto/rpcsvc-proto-1.4.3-r2.ebuild
new file mode 100644
index ..5905665d8edf
--- /dev/null
+++ b/net-libs/rpcsvc-proto/rpcsvc-proto-1.4.3-r2.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="rpcsvc protocol definitions from glibc"
+HOMEPAGE="https://github.com/thkukuk/rpcsvc-proto";
+SRC_URI="https://github.com/thkukuk/rpcsvc-proto/releases/download/v${PV}/${P}.tar.xz";
+
+LICENSE="LGPL-2.1+ BSD"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86"
+
+RDEPEND="!/dev/null; then
+   cpp=${x}
+   break
+   fi
+   done
+   [[ -n ${cpp} ]] || die "Unable to find cpp"
+   sed -i -e "s/CPP = \"cpp\";/CPP = \"${cpp}\";/" rpcgen/rpc_main.c || die
+}
+
+src_install() {
+   default
+
+   # provided by sys-fs/quota[rpc]
+   rm "${ED}"/usr/include/rpcsvc/rquota.{x,h} || die
+}



[gentoo-commits] repo/gentoo:master commit in: sys-libs/efivar/files/, sys-libs/efivar/

2023-05-09 Thread Mike Gilbert
commit: d64ec364c8969acd128144fb878ab64915a40073
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue May  9 20:43:20 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue May  9 20:43:20 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d64ec364

sys-libs/efivar: backport musl fix

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

 sys-libs/efivar/efivar-38.ebuild  |  1 +
 sys-libs/efivar/files/efivar-38-64bit-off_t.patch | 46 +++
 2 files changed, 47 insertions(+)

diff --git a/sys-libs/efivar/efivar-38.ebuild b/sys-libs/efivar/efivar-38.ebuild
index d00381caef83..cf449a8640f7 100644
--- a/sys-libs/efivar/efivar-38.ebuild
+++ b/sys-libs/efivar/efivar-38.ebuild
@@ -37,6 +37,7 @@ src_prepare() {
"${FILESDIR}"/efivar-38-lld-fixes.patch
"${FILESDIR}"/efivar-38-efisecdb-musl.patch
"${FILESDIR}"/efivar-38-efisecdb-optarg.patch
+   "${FILESDIR}"/efivar-38-64bit-off_t.patch
 
# Rejected upstream, keep this for ia64 support
"${FILESDIR}"/efivar-38-ia64-relro.patch

diff --git a/sys-libs/efivar/files/efivar-38-64bit-off_t.patch 
b/sys-libs/efivar/files/efivar-38-64bit-off_t.patch
new file mode 100644
index ..d06868b22587
--- /dev/null
+++ b/sys-libs/efivar/files/efivar-38-64bit-off_t.patch
@@ -0,0 +1,46 @@
+https://bugs.gentoo.org/905930
+
+From 914c686cc54b2405dab08bff77cd60827aab54b1 Mon Sep 17 00:00:00 2001
+From: Khem Raj 
+Date: Wed, 14 Dec 2022 16:55:51 -0800
+Subject: [PATCH] Use off_t instead of off64_t
+
+Pass _FILE_OFFSET_BITS=64 to ensure 64bit off_t
+
+This helps building efivar for 32bit arches on systems using musl C
+library. It works with glibc since _GNU_SOURCE defines
+_LARGEFILE64_SOURCE as well, this feature test macro enables the 64bit
+interfaces which were done as intermediate steps when transition to
+66-bit off_t was done as part olf LFS64 support.
+
+Signed-off-by: Khem Raj 
+---
+ src/error.c | 2 +-
+ src/include/defaults.mk | 1 +
+ 2 files changed, 2 insertions(+), 1 deletion(-)
+
+diff --git a/src/error.c b/src/error.c
+index fcbba0d6..9530e22c 100644
+--- a/src/error.c
 b/src/error.c
+@@ -191,7 +191,7 @@ dbglog_write(void *cookie, const char *buf, size_t size)
+ }
+ 
+ static int
+-dbglog_seek(void *cookie UNUSED, off64_t *offset, int whence)
++dbglog_seek(void *cookie UNUSED, off_t *offset, int whence)
+ {
+   FILE *log = efi_errlog ? efi_errlog : stderr;
+   int rc;
+diff --git a/src/include/defaults.mk b/src/include/defaults.mk
+index 42bd3d6e..bb9c997f 100644
+--- a/src/include/defaults.mk
 b/src/include/defaults.mk
+@@ -34,6 +34,7 @@ CPPFLAGS ?=
+ override _CPPFLAGS := $(CPPFLAGS)
+ override CPPFLAGS = $(_CPPFLAGS) -DLIBEFIVAR_VERSION=$(VERSION) \
+   -D_GNU_SOURCE \
++  -D_FILE_OFFSET_BITS=64 \
+   -I$(TOPDIR)/src/include/
+ CFLAGS ?= $(OPTIMIZE) $(DEBUGINFO) $(WARNINGS) $(ERRORS)
+ CFLAGS_GCC ?= -specs=$(TOPDIR)/src/include/gcc.specs \



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

2023-05-09 Thread Mike Gilbert
commit: 939f10540fec60b4b22708ebd89610d95ff2097d
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue May  9 20:22:13 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue May  9 20:22:13 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=939f1054

sys-boot/grub: backport build fix for RISCV

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

 sys-boot/grub/files/grub-2.06-riscv.patch | 49 +++
 sys-boot/grub/grub-2.06-r6.ebuild |  1 +
 2 files changed, 50 insertions(+)

diff --git a/sys-boot/grub/files/grub-2.06-riscv.patch 
b/sys-boot/grub/files/grub-2.06-riscv.patch
new file mode 100644
index ..83c54375704b
--- /dev/null
+++ b/sys-boot/grub/files/grub-2.06-riscv.patch
@@ -0,0 +1,49 @@
+https://bugs.gentoo.org/905785
+
+From 049efdd72eb7baa7b2bf8884391ee7fe650da5a0 Mon Sep 17 00:00:00 2001
+From: Heinrich Schuchardt 
+Date: Sat, 29 Jan 2022 13:36:55 +0100
+Subject: RISC-V: Adjust -march flags for binutils 2.38
+
+As of version 2.38 binutils defaults to ISA specification version
+2019-12-13. This version of the specification has has separated the
+the csr read/write (csrr*/csrw*) instructions and the fence.i from
+the I extension and put them into separate Zicsr and Zifencei
+extensions.
+
+This implies that we have to adjust the -march flag passed to the
+compiler accordingly.
+
+Signed-off-by: Heinrich Schuchardt 
+Reviewed-by: Daniel Kiper 
+---
+ configure.ac | 8 
+ 1 file changed, 8 insertions(+)
+
+diff --git a/configure.ac b/configure.ac
+index 4f649ed..5c01af0 100644
+--- a/configure.ac
 b/configure.ac
+@@ -870,11 +870,19 @@ if test x"$platform" != xemu ; then
+CFLAGS="$TARGET_CFLAGS -march=rv32imac -mabi=ilp32 -Werror"
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
+[grub_cv_target_cc_soft_float="-march=rv32imac 
-mabi=ilp32"], [])
++   # ISA spec version 20191213 factored out extensions Zicsr and Zifencei
++   CFLAGS="$TARGET_CFLAGS -march=rv32imac_zicsr_zifencei -mabi=ilp32 
-Werror"
++   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
++   
[grub_cv_target_cc_soft_float="-march=rv32imac_zicsr_zifencei -mabi=ilp32"], [])
+ fi
+ if test "x$target_cpu" = xriscv64; then
+CFLAGS="$TARGET_CFLAGS -march=rv64imac -mabi=lp64 -Werror"
+AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
+[grub_cv_target_cc_soft_float="-march=rv64imac 
-mabi=lp64"], [])
++   # ISA spec version 20191213 factored out extensions Zicsr and Zifencei
++   CFLAGS="$TARGET_CFLAGS -march=rv64imac_zicsr_zifencei -mabi=lp64 
-Werror"
++   AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[]], [[]])],
++   
[grub_cv_target_cc_soft_float="-march=rv64imac_zicsr_zifencei -mabi=lp64"], [])
+ fi
+ if test "x$target_cpu" = xia64; then
+CFLAGS="$TARGET_CFLAGS -mno-inline-float-divide -mno-inline-sqrt 
-Werror"
+-- 
+cgit v1.1
+

diff --git a/sys-boot/grub/grub-2.06-r6.ebuild 
b/sys-boot/grub/grub-2.06-r6.ebuild
index ee01fcc6bfeb..707acec900be 100644
--- a/sys-boot/grub/grub-2.06-r6.ebuild
+++ b/sys-boot/grub/grub-2.06-r6.ebuild
@@ -62,6 +62,7 @@ PATCHES=(
"${FILESDIR}"/grub-2.06-grub-mkconfig-restore-umask.patch

"${FILESDIR}"/grub-2.06-gentpl.py-Remove-.interp-section-from-.img-files.patch
"${FILESDIR}"/grub-2.06-fs-ext2-ignore-checksum-seed.patch
+   "${FILESDIR}"/grub-2.06-riscv.patch
 )
 
 DEJAVU=dejavu-sans-ttf-2.37



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

2023-05-09 Thread Mike Gilbert
commit: 2b0cfe49d1b5602616c3d4705ccb0a0b5ce5ad0f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue May  9 20:13:03 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue May  9 20:13:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b0cfe49

sys-boot/grub: drop 2.06-r4

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

 sys-boot/grub/grub-2.06-r4.ebuild | 335 --
 1 file changed, 335 deletions(-)

diff --git a/sys-boot/grub/grub-2.06-r4.ebuild 
b/sys-boot/grub/grub-2.06-r4.ebuild
deleted file mode 100644
index e60b3f92314c..
--- a/sys-boot/grub/grub-2.06-r4.ebuild
+++ /dev/null
@@ -1,335 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# This ebuild uses 3 special global variables:
-# GRUB_BOOTSTRAP: Depend on python and invoke bootstrap (gnulib).
-# GRUB_AUTOGEN: Depend on python and invoke the autogen.sh.
-# GRUB_AUTORECONF: Inherit autotools and invoke eautoreconf.
-#
-# When applying patches:
-# If gnulib is updated, set GRUB_BOOTSTRAP=1
-# If *.def is updated, set GRUB_AUTOGEN=1
-# If gnulib, *.def, or any autotools files are updated, set GRUB_AUTORECONF=1
-#
-# If any of the above applies to a user patch, the user should set the
-# corresponding variable in make.conf or the environment.
-
-if [[ ${PV} ==   ]]; then
-   GRUB_BOOTSTRAP=1
-fi
-
-GRUB_AUTORECONF=1
-PYTHON_COMPAT=( python3_{8..11} )
-WANT_LIBTOOL=none
-
-if [[ -n ${GRUB_AUTOGEN} || -n ${GRUB_BOOTSTRAP} ]]; then
-   inherit python-any-r1
-fi
-
-if [[ -n ${GRUB_AUTORECONF} ]]; then
-   inherit autotools
-fi
-
-inherit bash-completion-r1 flag-o-matic multibuild optfeature toolchain-funcs
-
-if [[ ${PV} !=  ]]; then
-   if [[ ${PV} == *_alpha* || ${PV} == *_beta* || ${PV} == *_rc* ]]; then
-   # The quote style is to work with <=bash-4.2 and >=bash-4.3 
#503860
-   MY_P=${P/_/'~'}
-   SRC_URI="https://alpha.gnu.org/gnu/${PN}/${MY_P}.tar.xz";
-   S=${WORKDIR}/${MY_P}
-   else
-   SRC_URI="mirror://gnu/${PN}/${P}.tar.xz"
-   S=${WORKDIR}/${P%_*}
-   fi
-   KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv sparc x86"
-else
-   inherit git-r3
-   EGIT_REPO_URI="https://git.savannah.gnu.org/git/grub.git";
-fi
-
-SRC_URI+=" https://dev.gentoo.org/~floppym/dist/${P}-backports-r2.tar.xz";
-
-PATCHES=(
-   "${WORKDIR}/${P}-backports"
-   "${FILESDIR}"/gfxpayload.patch
-   "${FILESDIR}"/grub-2.02_beta2-KERNEL_GLOBS.patch
-   "${FILESDIR}"/grub-2.06-test-words.patch
-   "${FILESDIR}"/grub-2.06-grub-mkconfig-restore-umask.patch
-)
-
-DEJAVU=dejavu-sans-ttf-2.37
-UNIFONT=unifont-12.1.02
-SRC_URI+=" fonts? ( mirror://gnu/unifont/${UNIFONT}/${UNIFONT}.pcf.gz )
-   themes? ( mirror://sourceforge/dejavu/${DEJAVU}.zip )"
-
-DESCRIPTION="GNU GRUB boot loader"
-HOMEPAGE="https://www.gnu.org/software/grub/";
-
-# Includes licenses for dejavu and unifont
-LICENSE="GPL-3+ BSD MIT fonts? ( GPL-2-with-font-exception ) themes? ( 
CC-BY-SA-3.0 BitstreamVera )"
-SLOT="2/${PVR}"
-IUSE="device-mapper doc efiemu +fonts mount nls sdl test +themes truetype 
libzfs"
-
-GRUB_ALL_PLATFORMS=( coreboot efi-32 efi-64 emu ieee1275 loongson multiboot
-   qemu qemu-mips pc uboot xen xen-32 xen-pvh )
-IUSE+=" ${GRUB_ALL_PLATFORMS[@]/#/grub_platforms_}"
-
-REQUIRED_USE="
-   grub_platforms_coreboot? ( fonts )
-   grub_platforms_qemu? ( fonts )
-   grub_platforms_ieee1275? ( fonts )
-   grub_platforms_loongson? ( fonts )
-"
-
-BDEPEND="
-   ${PYTHON_DEPS}
-   >=sys-devel/flex-2.5.35
-   sys-devel/bison
-   sys-apps/help2man
-   sys-apps/texinfo
-   fonts? (
-   media-libs/freetype:2
-   virtual/pkgconfig
-   )
-   test? (
-   app-admin/genromfs
-   app-arch/cpio
-   app-arch/lzop
-   app-emulation/qemu
-   dev-libs/libisoburn
-   sys-apps/miscfiles
-   sys-block/parted
-   sys-fs/squashfs-tools
-   )
-   themes? (
-   app-arch/unzip
-   media-libs/freetype:2
-   virtual/pkgconfig
-   )
-   truetype? ( virtual/pkgconfig )
-"
-DEPEND="
-   app-arch/xz-utils
-   >=sys-libs/ncurses-5.2-r5:0=
-   grub_platforms_emu? (
-   sdl? ( media-libs/libsdl )
-   )
-   device-mapper? ( >=sys-fs/lvm2-2.02.45 )
-   libzfs? ( sys-fs/zfs:= )
-   mount? ( sys-fs/fuse:0 )
-   truetype? ( media-libs/freetype:2= )
-   ppc? ( >=sys-apps/ibm-powerpc-utils-1.3.5 )
-   ppc64? ( >=sys-apps/ibm-powerpc-utils-1.3.5 )
-"
-RDEPEND="${DEPEND}
-   kernel_linux? (
-   grub_platforms_efi-32? ( sys-boot/efibootmgr )
-   grub_platforms_efi-64? ( sys-boot/efibootmgr )
-   )
-   !sys-boot/grub:0
-   nls? ( sys-devel/

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

2023-05-09 Thread Mike Gilbert
commit: 58ddb821ec2969c6cadb18471900596a3d82b52f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Tue May  9 19:59:04 2023 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Tue May  9 20:00:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58ddb821

www-client/chromium: require GCC 12

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

 www-client/chromium/chromium-113.0.5672.63.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/www-client/chromium/chromium-113.0.5672.63.ebuild 
b/www-client/chromium/chromium-113.0.5672.63.ebuild
index cdd81cb02473..89980d3b69a2 100644
--- a/www-client/chromium/chromium-113.0.5672.63.ebuild
+++ b/www-client/chromium/chromium-113.0.5672.63.ebuild
@@ -294,8 +294,8 @@ pkg_setup() {
 
if [[ ${MERGE_TYPE} != binary ]]; then
local -x CPP="$(tc-getCXX) -E"
-   if tc-is-gcc && ! ver_test "$(gcc-version)" -ge 10.4; then
-   die "At least gcc 10.4 is required"
+   if tc-is-gcc && ! ver_test "$(gcc-version)" -ge 12; then
+   die "At least gcc 12 is required"
fi
if use pgo && tc-is-cross-compiler; then
die "The pgo USE flag cannot be used when 
cross-compiling"



[gentoo-commits] repo/proj/guru:dev commit in: www-apps/invidious/

2023-05-09 Thread Anna Vyalkova
commit: 3426ef5bf7829115f9fec990591c5743db6078d6
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue May  9 19:29:10 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue May  9 19:30:07 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=3426ef5b

www-apps/invidious: remove custom src_compile

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 www-apps/invidious/invidious-2023.05.08.ebuild | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/www-apps/invidious/invidious-2023.05.08.ebuild 
b/www-apps/invidious/invidious-2023.05.08.ebuild
index 66f80339e..6a8627cb2 100644
--- a/www-apps/invidious/invidious-2023.05.08.ebuild
+++ b/www-apps/invidious/invidious-2023.05.08.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit check-reqs multiprocessing shards systemd
+inherit check-reqs shards systemd
 
 COMMIT="10fee9da618db8ffe6a3952d547d4e85d144877e"
 MOCKS_COMMIT="11ec372f72747c09d48ffef04843f72be67d5b54"
@@ -148,10 +148,6 @@ src_configure() {
shards_src_configure
 }
 
-src_compile() {
-   ecrystal build --verbose --threads=$(makeopts_jobs) src/invidious.cr
-}
-
 src_install() {
dobin invidious
einstalldocs



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

2023-05-09 Thread Anna Vyalkova
commit: 68db6d9b906fc6c0efecfdbc797aa286bc155546
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue May  9 19:28:54 2023 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue May  9 19:30:07 2023 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=68db6d9b

shards.eclass: detect build targets using gshards

Signed-off-by: Anna (cybertailor) Vyalkova  sysrq.in>

 eclass/shards.eclass | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/eclass/shards.eclass b/eclass/shards.eclass
index 5fd9f6c10..0de0deb47 100644
--- a/eclass/shards.eclass
+++ b/eclass/shards.eclass
@@ -28,7 +28,7 @@ inherit crystal-utils multiprocessing toolchain-funcs
 BDEPEND="
${CRYSTAL_DEPS}
${SHARDS_DEPS}
-   dev-util/gshards
+   >=dev-util/gshards-0.2
 "
 IUSE="debug doc"
 
@@ -67,10 +67,15 @@ shards_src_configure() {
 
 # @FUNCTION: shards_src_compile
 # @DESCRIPTION:
-# Function for building the package's documentation.
+# Function for building the package's executables and documentation.
 shards_src_compile() {
debug-print-function ${FUNCNAME} "${@}"
 
+   local args
+   gshards-print-targets | while read -r args; do
+   crystal_build "${@}" ${args}
+   done
+
if use doc; then
ecrystal docs
HTML_DOCS=( docs/. )
@@ -95,14 +100,10 @@ shards_src_test() {
 
 # @FUNCTION: shards_src_install
 # @DESCRIPTION:
-# Function for installing the package.
+# Function for installing the package's source.
 shards_src_install() {
debug-print-function ${FUNCNAME} "${@}"
 
-   if [[ -d "bin" ]]; then
-   dobin bin/*
-   fi
-
if [[ -d "src" ]]; then
insinto $(shards_get_libdir)/$(shards_get_pkgname)
doins -r src



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

2023-05-09 Thread Jimi Huotari
commit: 01603b69fbf5340144c527d9309d8af9760648c5
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue May  9 19:07:42 2023 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue May  9 19:08:26 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01603b69

media-video/obs-studio: drop 29.1.0

Signed-off-by: Jimi Huotari  gentoo.org>

 media-video/obs-studio/Manifest |   2 -
 media-video/obs-studio/obs-studio-29.1.0.ebuild | 269 
 2 files changed, 271 deletions(-)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index 3a92b0130579..57f2294fb885 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -4,10 +4,8 @@ DIST json-a34e011e24beece3b69397a03fdc650546f052c3.tar.gz 
6860722 BLAKE2B 433b49
 DIST obs-browser-1c2264d722f065646b72ac654f6ddbb6843f9bef.tar.gz 110765 
BLAKE2B 
99ceb51dc1a39c5abab26c6e5f1be63eb0cfaeb7e102ed07a4dc6a16d477e46e7499f1e9beca81d479683374d03e3c08c9ceeb34d04a733ae34c0688bb4ad1c0
 SHA512 
bddfa7914559405331c10a9589f46c17013cdbd361423e71763a4d8d4d521c53dc5df4d7581ff7bf0c9136627024e017bfb08b4a996b33e609cddbae41b5c878
 DIST obs-browser-594115a27d40f0916e55db97cb61f7c7130cbe28.tar.gz 116455 
BLAKE2B 
8158bdd9fcc689c3b0024c9da26c3f39b44c9dac7fb031470470a2697f66af122552a19beb389faa96001a8f35bf06580ad3c5e00f616900e7ca960d3e1c1450
 SHA512 
ff1e5cbe76a1a4a7224b1b01f0f45df51dd60c7426a73008a744fb17be3e4c7a96dd3833f237a480dd4ec2dd3e544d847aced2256453919d8442f7857354afb2
 DIST obs-studio-29.0.2.tar.gz 18939072 BLAKE2B 
78a6b7fec520797a5c9d36e7d9a034c29c701d38a745415c3fd0ae3907831584ef4a77b833fa1a7466a23b02a06736afd34720ff3b0d3226dbb0dcab64c72931
 SHA512 
63a832dc6a0a7f07a2f7adf18f1412e8694405d39721144e82dedab8182e17da6f3063f547bc2b33cc7ea053f6dbb8ffda051af5bffdf9773710bd08744faf8f
-DIST obs-studio-29.1.0.tar.gz 26309705 BLAKE2B 
ce39e76adf2c9eadf8f47a41f688610f1dce69470f37bdee09884b7262c96491bdd995a37b6fae3a4e62582cddec9a86386f3cc270100209e7debd708da6ceae
 SHA512 
39978eb1872d8fc3903db654b0f227f9ff6d66283261f4a5d736b3404ab9549708c468f18f98402ad3e2759ed3e937b56a4fb4eae600bd226cf6b3e7dafe6b0d
 DIST obs-studio-29.1.1.tar.gz 26311197 BLAKE2B 
0ea6aab3b58c83ad69010fad8c949d5f93dead5adf61e5faab7e3cf3e1905addb6ebe5833b0c7c4c0b33504d83fbb3a2fe5c1dda61174bef60556eeb380fd1ad
 SHA512 
25779491aaf36ac84134fc5930071acdec2be3fa88bb7717a1e032dcc81e409e6cc55648471f64efbcdbf4ddbdbadbccab5aeaa34b3ae02c69e9285c303ac541
 DIST obs-websocket-31f9845b6132e6c1529401292bc1125401e2a324.tar.gz 238884 
BLAKE2B 
93a41ff9dd33cf2babaef90c961def1ae39d3b4e7d2f2542123973672c2adbd0cff987f58ce72e9c4acd8818c834531e624c376b3d297f4bdfc097e22ee4b293
 SHA512 
11bf28f574ec2a7b128dae53010484610465c94245881fd98eb750b59e00236f656d1ef706187a41cb42eab3e3668440d83f66399f6917e2d93b7ba6c7241ad3
 DIST obs-websocket-57a9c19f2ccf4e5452baeffd78014579622b9f3a.tar.gz 244736 
BLAKE2B 
b78632d2732198d46fcd424ba76c99de3e98e767be1ff01f56557e47443ac88b5bf1628d07b4024ab942b979946b8982cdf1b7bf183cda3b22622503e59ff718
 SHA512 
0dac06ab0b94f70ed597346c577c431c4e5034bbcd82825e5bc8644a6ca4277ef04de9004df307e5270ac98ce2e40ee65c48e202421ce45edb78ad19b9fbaa4e
-DIST obs-websocket-6ef055a369249f6d7b008914fe2bc360c96f23dc.tar.gz 244025 
BLAKE2B 
008532ee88a8b32f3544c330071e04817aad46f421db155140896fe593b0b39753175d433c95254472a08f7e7b558e3a85f8146cca5136132781c5c7cde6ebae
 SHA512 
b6250ef655d8a986907dc7a5e616498736a366f371ef135f798df4c84b391e075f76031dc1239c9afe8fea93e348c8a05670d50809543aa7ce6c426f56bc48ad
 DIST qr-8518684c0f33d004fa93971be2c6a8eca3167d1e.tar.gz 135863 BLAKE2B 
fa6fb9c9e5250b56bdf38f31aa4acaf4ce860c153012984d1266928bd7a62dcf43b271ff53b4322931304670742566dcb016ef65ff2f681bf76224f86eca567c
 SHA512 
ba298de89411fecc8db3dc10850485da01f5183d68b6d91ea91a9e28c1f104eb110adbf143a37e5d1856abbba5d309ab8329a6359ca7225bacb033d8044fa72c
 DIST websocketpp-56123c87598f8b1dd471be83ca841ceae07f95ba.tar.gz 701544 
BLAKE2B 
61680c31309d8f78b27b82e1bde2c7828eae2777df0629355c557dfd8b0daef6de7d202bbcff372351e135bb62366ffc8eec6c72a99df7c46a9197773c46550c
 SHA512 
f185a66e5a7c783254352a6ef87e2e559f681032b7368765d08393ed12bcae76825abed7dcaea73de09df644320409dad46279701f5f469520542a2c9b6a6163

diff --git a/media-video/obs-studio/obs-studio-29.1.0.ebuild 
b/media-video/obs-studio/obs-studio-29.1.0.ebuild
deleted file mode 100644
index 0be8ac7d5048..
--- a/media-video/obs-studio/obs-studio-29.1.0.ebuild
+++ /dev/null
@@ -1,269 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CMAKE_REMOVE_MODULES_LIST=( FindFreetype )
-LUA_COMPAT=( luajit )
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit cmake lua-single optfeature python-single-r1 xdg
-
-CEF_DIR="cef_binary_5060_linux64"
-OBS_BROWSER_COMMIT="594115a27d40f0916e55db97cb61f7c7130cbe28"
-OBS_WEBSOCKET_COMMIT="6ef055a369249f6d7b008914fe2bc360c96f23dc"
-QR_COMMIT="8518684c0f33d004fa93971be2c6a8eca3167d1e"
-
-if [[ ${

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

2023-05-09 Thread Jimi Huotari
commit: f04aac184f695d92607e7d13899ce8c136b80153
Author: Jimi Huotari  gentoo  org>
AuthorDate: Tue May  9 19:05:56 2023 +
Commit: Jimi Huotari  gentoo  org>
CommitDate: Tue May  9 19:08:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f04aac18

media-video/obs-studio: add version 29.1.1

Signed-off-by: Jimi Huotari  gentoo.org>

 media-video/obs-studio/Manifest | 2 ++
 .../obs-studio/{obs-studio-.ebuild => obs-studio-29.1.1.ebuild} | 2 +-
 media-video/obs-studio/obs-studio-.ebuild   | 2 +-
 3 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/media-video/obs-studio/Manifest b/media-video/obs-studio/Manifest
index 3babfd217639..3a92b0130579 100644
--- a/media-video/obs-studio/Manifest
+++ b/media-video/obs-studio/Manifest
@@ -5,7 +5,9 @@ DIST 
obs-browser-1c2264d722f065646b72ac654f6ddbb6843f9bef.tar.gz 110765 BLAKE2B
 DIST obs-browser-594115a27d40f0916e55db97cb61f7c7130cbe28.tar.gz 116455 
BLAKE2B 
8158bdd9fcc689c3b0024c9da26c3f39b44c9dac7fb031470470a2697f66af122552a19beb389faa96001a8f35bf06580ad3c5e00f616900e7ca960d3e1c1450
 SHA512 
ff1e5cbe76a1a4a7224b1b01f0f45df51dd60c7426a73008a744fb17be3e4c7a96dd3833f237a480dd4ec2dd3e544d847aced2256453919d8442f7857354afb2
 DIST obs-studio-29.0.2.tar.gz 18939072 BLAKE2B 
78a6b7fec520797a5c9d36e7d9a034c29c701d38a745415c3fd0ae3907831584ef4a77b833fa1a7466a23b02a06736afd34720ff3b0d3226dbb0dcab64c72931
 SHA512 
63a832dc6a0a7f07a2f7adf18f1412e8694405d39721144e82dedab8182e17da6f3063f547bc2b33cc7ea053f6dbb8ffda051af5bffdf9773710bd08744faf8f
 DIST obs-studio-29.1.0.tar.gz 26309705 BLAKE2B 
ce39e76adf2c9eadf8f47a41f688610f1dce69470f37bdee09884b7262c96491bdd995a37b6fae3a4e62582cddec9a86386f3cc270100209e7debd708da6ceae
 SHA512 
39978eb1872d8fc3903db654b0f227f9ff6d66283261f4a5d736b3404ab9549708c468f18f98402ad3e2759ed3e937b56a4fb4eae600bd226cf6b3e7dafe6b0d
+DIST obs-studio-29.1.1.tar.gz 26311197 BLAKE2B 
0ea6aab3b58c83ad69010fad8c949d5f93dead5adf61e5faab7e3cf3e1905addb6ebe5833b0c7c4c0b33504d83fbb3a2fe5c1dda61174bef60556eeb380fd1ad
 SHA512 
25779491aaf36ac84134fc5930071acdec2be3fa88bb7717a1e032dcc81e409e6cc55648471f64efbcdbf4ddbdbadbccab5aeaa34b3ae02c69e9285c303ac541
 DIST obs-websocket-31f9845b6132e6c1529401292bc1125401e2a324.tar.gz 238884 
BLAKE2B 
93a41ff9dd33cf2babaef90c961def1ae39d3b4e7d2f2542123973672c2adbd0cff987f58ce72e9c4acd8818c834531e624c376b3d297f4bdfc097e22ee4b293
 SHA512 
11bf28f574ec2a7b128dae53010484610465c94245881fd98eb750b59e00236f656d1ef706187a41cb42eab3e3668440d83f66399f6917e2d93b7ba6c7241ad3
+DIST obs-websocket-57a9c19f2ccf4e5452baeffd78014579622b9f3a.tar.gz 244736 
BLAKE2B 
b78632d2732198d46fcd424ba76c99de3e98e767be1ff01f56557e47443ac88b5bf1628d07b4024ab942b979946b8982cdf1b7bf183cda3b22622503e59ff718
 SHA512 
0dac06ab0b94f70ed597346c577c431c4e5034bbcd82825e5bc8644a6ca4277ef04de9004df307e5270ac98ce2e40ee65c48e202421ce45edb78ad19b9fbaa4e
 DIST obs-websocket-6ef055a369249f6d7b008914fe2bc360c96f23dc.tar.gz 244025 
BLAKE2B 
008532ee88a8b32f3544c330071e04817aad46f421db155140896fe593b0b39753175d433c95254472a08f7e7b558e3a85f8146cca5136132781c5c7cde6ebae
 SHA512 
b6250ef655d8a986907dc7a5e616498736a366f371ef135f798df4c84b391e075f76031dc1239c9afe8fea93e348c8a05670d50809543aa7ce6c426f56bc48ad
 DIST qr-8518684c0f33d004fa93971be2c6a8eca3167d1e.tar.gz 135863 BLAKE2B 
fa6fb9c9e5250b56bdf38f31aa4acaf4ce860c153012984d1266928bd7a62dcf43b271ff53b4322931304670742566dcb016ef65ff2f681bf76224f86eca567c
 SHA512 
ba298de89411fecc8db3dc10850485da01f5183d68b6d91ea91a9e28c1f104eb110adbf143a37e5d1856abbba5d309ab8329a6359ca7225bacb033d8044fa72c
 DIST websocketpp-56123c87598f8b1dd471be83ca841ceae07f95ba.tar.gz 701544 
BLAKE2B 
61680c31309d8f78b27b82e1bde2c7828eae2777df0629355c557dfd8b0daef6de7d202bbcff372351e135bb62366ffc8eec6c72a99df7c46a9197773c46550c
 SHA512 
f185a66e5a7c783254352a6ef87e2e559f681032b7368765d08393ed12bcae76825abed7dcaea73de09df644320409dad46279701f5f469520542a2c9b6a6163

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-29.1.1.ebuild
similarity index 99%
copy from media-video/obs-studio/obs-studio-.ebuild
copy to media-video/obs-studio/obs-studio-29.1.1.ebuild
index 0be8ac7d5048..3fc13bf97d2f 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-video/obs-studio/obs-studio-29.1.1.ebuild
@@ -11,7 +11,7 @@ inherit cmake lua-single optfeature python-single-r1 xdg
 
 CEF_DIR="cef_binary_5060_linux64"
 OBS_BROWSER_COMMIT="594115a27d40f0916e55db97cb61f7c7130cbe28"
-OBS_WEBSOCKET_COMMIT="6ef055a369249f6d7b008914fe2bc360c96f23dc"
+OBS_WEBSOCKET_COMMIT="57a9c19f2ccf4e5452baeffd78014579622b9f3a"
 QR_COMMIT="8518684c0f33d004fa93971be2c6a8eca3167d1e"
 
 if [[ ${PV} ==  ]]; then

diff --git a/media-video/obs-studio/obs-studio-.ebuild 
b/media-video/obs-studio/obs-studio-.ebuild
index 0be8ac7d5048..3fc13bf97d2f 100644
--- a/media-video/obs-studio/obs-studio-.ebuild
+++ b/media-

[gentoo-commits] repo/gentoo:master commit in: media-radio/fldigi/

2023-05-09 Thread Arthur Zamarin
commit: 6ef89a113406efc191de5a7bbd9a8cebe743923b
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  9 18:58:32 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  9 18:58:32 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6ef89a11

media-radio/fldigi: Stabilize 4.1.26 x86, #906032

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

 media-radio/fldigi/fldigi-4.1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/fldigi/fldigi-4.1.26.ebuild 
b/media-radio/fldigi/fldigi-4.1.26.ebuild
index e965b327315d..38851abedbb5 100644
--- a/media-radio/fldigi/fldigi-4.1.26.ebuild
+++ b/media-radio/fldigi/fldigi-4.1.26.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="hamlib nls pulseaudio"
 IUSE_CPU_FLAGS=" sse sse2 sse3"
 IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}"



[gentoo-commits] repo/gentoo:master commit in: media-radio/wsjtx/

2023-05-09 Thread Arthur Zamarin
commit: 18b2680e7daf7a8f9378b3f89135129e447f3568
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  9 18:58:37 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  9 18:58:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18b2680e

media-radio/wsjtx: Stabilize 2.6.1 x86, #906034

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

 media-radio/wsjtx/wsjtx-2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/wsjtx/wsjtx-2.6.1.ebuild 
b/media-radio/wsjtx/wsjtx-2.6.1.ebuild
index 5d8fbb34179b..1666b5add2a4 100644
--- a/media-radio/wsjtx/wsjtx-2.6.1.ebuild
+++ b/media-radio/wsjtx/wsjtx-2.6.1.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/wsjtx
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="doc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: media-radio/wsjtx/

2023-05-09 Thread Arthur Zamarin
commit: 949a7a70191e7ac25aecf6771626b69a818dbd1a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  9 18:58:37 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  9 18:58:37 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=949a7a70

media-radio/wsjtx: Stabilize 2.6.1 amd64, #906034

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

 media-radio/wsjtx/wsjtx-2.6.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/wsjtx/wsjtx-2.6.1.ebuild 
b/media-radio/wsjtx/wsjtx-2.6.1.ebuild
index 1666b5add2a4..2ebdfa1289c1 100644
--- a/media-radio/wsjtx/wsjtx-2.6.1.ebuild
+++ b/media-radio/wsjtx/wsjtx-2.6.1.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/wsjtx
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="doc"
 
 RDEPEND="



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

2023-05-09 Thread Michał Górny
commit: adb064088227ded3b2a767e6991b9d711672c561
Author: Michał Górny  gentoo  org>
AuthorDate: Tue May  9 15:53:37 2023 +
Commit: Michał Górny  gentoo  org>
CommitDate: Tue May  9 18:56:39 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adb06408

dev-python/mypy: Remove old

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

 dev-python/mypy/Manifest  |  1 -
 dev-python/mypy/mypy-1.1.1.ebuild | 63 ---
 2 files changed, 64 deletions(-)

diff --git a/dev-python/mypy/Manifest b/dev-python/mypy/Manifest
index 02206a5b82eb..cfe0d7da169e 100644
--- a/dev-python/mypy/Manifest
+++ b/dev-python/mypy/Manifest
@@ -1,2 +1 @@
-DIST mypy-1.1.1.gh.tar.gz 2787425 BLAKE2B 
e72a4dcb41107e6438b360bb342b7ac42778ab3d6bd557d7fe2a9f92f6427d94d782661ff80bee36aafa676d0cc1553bcfd74cf3e413d4afa525fd8e93e9b87e
 SHA512 
fcd50366837d005f255e2e8ecf20c843374a5d7670d714d1f8cfdaef1c6d44e37e7e84ba91fd1d49513e3aeffc8d5c0ab40ddd7bc9fced75082c9fea60d38f6a
 DIST mypy-1.2.0.gh.tar.gz 2815323 BLAKE2B 
d5cdc1bb31d797c49daf5ea0427fdceaf59a131d02a687dc5e72796a03824bff923c6942c6f01ca44025fe153fea02fdaee3959317fda0d4c562c45638e8c380
 SHA512 
5bee7a5ae4ac608cb3b3855c0ad100ea6ba512900aa557a153e1ae5f8e779125a8ef61103a81a9584b0585a6d4eea78c3585af61fa62986f984ac2b63e6b89b6

diff --git a/dev-python/mypy/mypy-1.1.1.ebuild 
b/dev-python/mypy/mypy-1.1.1.ebuild
deleted file mode 100644
index 57be906cefea..
--- a/dev-python/mypy/mypy-1.1.1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{9..11} )
-
-inherit distutils-r1 multiprocessing
-
-DESCRIPTION="Optional static typing for Python"
-HOMEPAGE="
-   https://www.mypy-lang.org/
-   https://github.com/python/mypy/
-   https://pypi.org/project/mypy/
-"
-SRC_URI="
-   https://github.com/python/mypy/archive/v${PV}.tar.gz
-   -> ${P}.gh.tar.gz
-"
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
-
-# stubgen collides with this package: https://bugs.gentoo.org/585594
-RDEPEND="
-   !dev-util/stubgen
-   >=dev-python/psutil-4[${PYTHON_USEDEP}]
-   >=dev-python/typed-ast-1.4.0[${PYTHON_USEDEP}]
-   =dev-python/typing-extensions-3.10[${PYTHON_USEDEP}]
-   >=dev-python/mypy_extensions-1.0.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep '
-   dev-python/tomli[${PYTHON_USEDEP}]
-   ' pypy3 python3_{8..10})
-"
-BDEPEND="
-   test? (
-   >=dev-python/attrs-18.0[${PYTHON_USEDEP}]
-   >=dev-python/filelock-3.3.0[${PYTHON_USEDEP}]
-   >=dev-python/lxml-4.4.0[${PYTHON_USEDEP}]
-   >=dev-python/pytest-6.1.0[${PYTHON_USEDEP}]
-   >=dev-python/pytest-xdist-1.18[${PYTHON_USEDEP}]
-   >=dev-python/py-1.5.2[${PYTHON_USEDEP}]
-   >=dev-python/typed-ast-1.4.0[${PYTHON_USEDEP}]
-   >=dev-python/virtualenv-16.0.0[${PYTHON_USEDEP}]
-   )
-"
-
-distutils_enable_sphinx docs/source \
-   dev-python/furo
-distutils_enable_tests pytest
-
-# this requires packaging a lot of type stubs
-export MYPY_USE_MYPYC=0
-
-python_test() {
-   # Some mypy/test/testcmdline.py::PythonCmdlineSuite tests
-   # fail with high COLUMNS values
-   local -x COLUMNS=80
-   epytest -n "$(makeopts_jobs)"
-}



[gentoo-commits] repo/gentoo:master commit in: media-radio/fldigi/

2023-05-09 Thread Arthur Zamarin
commit: cb3d2bfc8a1866e007ee6c988875fb73798d4bf8
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  9 18:44:19 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  9 18:44:19 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb3d2bfc

media-radio/fldigi: Stabilize 4.1.26 amd64, #906032

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

 media-radio/fldigi/fldigi-4.1.26.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/fldigi/fldigi-4.1.26.ebuild 
b/media-radio/fldigi/fldigi-4.1.26.ebuild
index aacc12ff8a01..e965b327315d 100644
--- a/media-radio/fldigi/fldigi-4.1.26.ebuild
+++ b/media-radio/fldigi/fldigi-4.1.26.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="hamlib nls pulseaudio"
 IUSE_CPU_FLAGS=" sse sse2 sse3"
 IUSE+=" ${IUSE_CPU_FLAGS// / cpu_flags_x86_}"



[gentoo-commits] repo/gentoo:master commit in: media-radio/flrig/

2023-05-09 Thread Arthur Zamarin
commit: 58b3ae906dded20f7778eb5109a552d96e3bbfbd
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  9 18:44:24 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  9 18:44:24 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=58b3ae90

media-radio/flrig: Stabilize 1.4.8 x86, #906033

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

 media-radio/flrig/flrig-1.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/flrig/flrig-1.4.8.ebuild 
b/media-radio/flrig/flrig-1.4.8.ebuild
index 32b20011b1a5..a01469e906f4 100644
--- a/media-radio/flrig/flrig-1.4.8.ebuild
+++ b/media-radio/flrig/flrig-1.4.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/fldigi/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="nls"
 
 DOCS=(AUTHORS ChangeLog README)



[gentoo-commits] repo/gentoo:master commit in: media-radio/flrig/

2023-05-09 Thread Arthur Zamarin
commit: 14644c5c05ab9c239f95be682a63c3ee382025ad
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  9 18:44:25 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  9 18:44:25 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14644c5c

media-radio/flrig: Stabilize 1.4.8 amd64, #906033

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

 media-radio/flrig/flrig-1.4.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-radio/flrig/flrig-1.4.8.ebuild 
b/media-radio/flrig/flrig-1.4.8.ebuild
index a01469e906f4..a07e501860cf 100644
--- a/media-radio/flrig/flrig-1.4.8.ebuild
+++ b/media-radio/flrig/flrig-1.4.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://sourceforge/fldigi/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="nls"
 
 DOCS=(AUTHORS ChangeLog README)



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

2023-05-09 Thread Arthur Zamarin
commit: 9301b0661c664be25356cac29e65a41f365089e1
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Tue May  9 18:31:54 2023 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Tue May  9 18:32:05 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9301b066

app-editors/vscode: add 1.78.1

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

 app-editors/vscode/Manifest |   3 +
 app-editors/vscode/vscode-1.78.1.ebuild | 122 
 2 files changed, 125 insertions(+)

diff --git a/app-editors/vscode/Manifest b/app-editors/vscode/Manifest
index e5571adaa3cc..ee6cd8c68d7f 100644
--- a/app-editors/vscode/Manifest
+++ b/app-editors/vscode/Manifest
@@ -4,3 +4,6 @@ DIST vscode-1.77.3-arm64.tar.gz 121682734 BLAKE2B 
f9428cd9ebf921bee3797e4b3a8169
 DIST vscode-1.78.0-amd64.tar.gz 134687218 BLAKE2B 
f29366cd55661fbdcdeeb5344ff55fa8924fcdd8bb9df77a83caded61dc51999b69effbfc758bde98a04e48c926a6671969d978fd98d5a5c706f54cafc8dbd6e
 SHA512 
214b198f21b663b001667280627a99deca07409220565355eaf21d74ddf0524aec5ceff3cf7f97bf60e12657bd88a394ffcc5b9decb379b8e2323ff37b243b6e
 DIST vscode-1.78.0-arm.tar.gz 119254165 BLAKE2B 
5ddf5372f1ef21e99463d742cb73f2d889f03f5feba6753ea11f5eb48f19772bcdb951a3f291cb6820bfb9892b4ea5c01a73854c202903685f28b28d088b752b
 SHA512 
f1d03a494442e49d591c11f618abaa976e63c2ecb8927d8a45bcde37ee9e9380b2fa621754b4ece0efdf524aabaeedfa6442f476a06edce30a13aeba98d6901c
 DIST vscode-1.78.0-arm64.tar.gz 130765917 BLAKE2B 
8ed333530481ed1067163a8e27bf619e47504429051408d581cdaec8095ba8648c0045f59d8907f5cfec1ac2cc51acdc6022cf97e57a98c68483e8f725f9c89d
 SHA512 
dffe7761eb961e9d2584fb5ca42e56fdcff1dfed858a5a098309c7f9311d79949c9bbc00be94258d052e541b27be2e45b935f2b7a1afc498898e1bfde084e304
+DIST vscode-1.78.1-amd64.tar.gz 134680069 BLAKE2B 
a8e631e9fa6ad49dd0e116558240b60ae626f8f4b40849be5a2c67b129029bd581ef177e6ba4d93bf514779e2048e6ea22b3a4a3f6073fb71608931d17782e53
 SHA512 
af16eff2925c0e39b94ab61e18a6c37e9553cb77477a567db8a1545a6dce13b51ef7f428603cf518b1c733c2856d4050a47b00cc4a7bab614553c46e2546c37f
+DIST vscode-1.78.1-arm.tar.gz 119244941 BLAKE2B 
9657a126e1666e6cb65043d84d182643c94ab61f587c6818fd7e0c7f9f7be773cb2206da5c62cf6dfc2fe5943ddd3fdff918cc31878e99cca8e3706713e9be9b
 SHA512 
6f82501408c1db3339271e90e3ffb4ad604d92760c32311bd4f928f4be140a1a49d8c9033b9287e60a8dfadb41aba11c8f96041872802eb7f3dbbdbcec1dd6df
+DIST vscode-1.78.1-arm64.tar.gz 130770767 BLAKE2B 
9b178f3bfcd88253e22a85787556922ab8f3673216dd90a346c7184f8673b81a8e05f59dff3c2307f673db1e47cbaa7cacd01abb7bf908d56c29f7f0f5868052
 SHA512 
43ecef29ddce595d0ae0f4913570947531cc7a2f5e489e24e3d82ffdf36498272d40e353c12159ae831513817194153ba9900e1d37f75c0414e45809e86b8219

diff --git a/app-editors/vscode/vscode-1.78.1.ebuild 
b/app-editors/vscode/vscode-1.78.1.ebuild
new file mode 100644
index ..eed866455058
--- /dev/null
+++ b/app-editors/vscode/vscode-1.78.1.ebuild
@@ -0,0 +1,122 @@
+# 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: media-libs/lv2/, media-libs/lv2/files/

2023-05-09 Thread Sam James
commit: cedca6fdea3efc1051e872d9ae1c3e0129293601
Author: Sam James  gentoo  org>
AuthorDate: Tue May  9 18:15:34 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 18:15:45 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cedca6fd

media-libs/lv2: wire up tests (and conditionally build them instead)

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

 .../lv2/files/lv2-1.18.10-tests-optional.patch | 53 ++
 media-libs/lv2/lv2-1.18.10.ebuild  | 10 +++-
 2 files changed, 62 insertions(+), 1 deletion(-)

diff --git a/media-libs/lv2/files/lv2-1.18.10-tests-optional.patch 
b/media-libs/lv2/files/lv2-1.18.10-tests-optional.patch
new file mode 100644
index ..dca3540cf171
--- /dev/null
+++ b/media-libs/lv2/files/lv2-1.18.10-tests-optional.patch
@@ -0,0 +1,53 @@
+https://gitlab.com/lv2/lv2/-/commit/8726bffa337e6374b04d0739df2812798b2c8858
+
+From 8726bffa337e6374b04d0739df2812798b2c8858 Mon Sep 17 00:00:00 2001
+From: David Robillard 
+Date: Sat, 19 Nov 2022 17:49:14 -0500
+Subject: [PATCH] Avoid test directory entirely if tests are disabled
+
+--- a/meson.build
 b/meson.build
+@@ -346,7 +346,9 @@ endif
+ subdir('util')
+ 
+ # Data and build tests
+-subdir('test')
++if not get_option('tests').disabled()
++  subdir('test')
++endif
+ 
+ if not meson.is_subproject()
+   summary('Tests', not get_option('tests').disabled(), bool_yn: true)
+--- a/test/meson.build
 b/test/meson.build
+@@ -122,17 +122,15 @@ test_names = [
+ ]
+ 
+ # Build and run tests
+-if not get_option('tests').disabled()
+-  foreach test_name : test_names
+-test(
++foreach test_name : test_names
++  test(
++test_name,
++executable(
+   test_name,
+-  executable(
+-test_name,
+-files('test_@0@.c'.format(test_name)),
+-c_args: c_suppressions,
+-dependencies: lv2_dep,
+-  ),
+-  suite: 'unit',
+-)
+-  endforeach
+-endif
++  files('test_@0@.c'.format(test_name)),
++  c_args: c_suppressions,
++  dependencies: lv2_dep,
++),
++suite: 'unit',
++  )
++endforeach
+-- 
+GitLab

diff --git a/media-libs/lv2/lv2-1.18.10.ebuild 
b/media-libs/lv2/lv2-1.18.10.ebuild
index 4ebd59a52b56..575c13e2e43e 100644
--- a/media-libs/lv2/lv2-1.18.10.ebuild
+++ b/media-libs/lv2/lv2-1.18.10.ebuild
@@ -15,7 +15,8 @@ SRC_URI="https://lv2plug.in/spec/${P}.tar.xz";
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
~sparc x86"
-IUSE="doc plugins"
+IUSE="doc plugins test"
+RESTRICT="!test? ( test )"
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
 BDEPEND="
@@ -24,6 +25,11 @@ BDEPEND="
app-doc/doxygen
dev-python/rdflib
)
+   test? (
+   dev-libs/serd
+   dev-libs/sord[tools]
+   dev-python/rdflib
+   )
 "
 CDEPEND="
${PYTHON_DEPS}
@@ -48,6 +54,7 @@ RDEPEND="
 
 PATCHES=(
"${FILESDIR}/${PN}-1.18.6-add-missing-lv2.h.patch"
+   "${FILESDIR}/${P}-tests-optional.patch"
 )
 
 src_prepare() {
@@ -62,6 +69,7 @@ multilib_src_configure() {
-Dlv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2
$(meson_native_use_feature doc docs)
$(meson_feature plugins)
+   $(meson_feature test tests)
)
 
meson_src_configure



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/nvidia-drivers/

2023-05-09 Thread Ionen Wolkens
commit: a6fbe6b272b6de94cc64258ae4b7285f108941fe
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Tue May  9 17:51:40 2023 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Tue May  9 18:00:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6fbe6b2

x11-drivers/nvidia-drivers: add 525.116.04

Unknown what this release is good for, changelog is identical
to the previous 525.116.03 and diff'ing the open source bits
reveals no changes beside timestamp/version bumps.

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

 x11-drivers/nvidia-drivers/Manifest|   8 +
 .../nvidia-drivers-525.116.04.ebuild   | 633 +
 2 files changed, 641 insertions(+)

diff --git a/x11-drivers/nvidia-drivers/Manifest 
b/x11-drivers/nvidia-drivers/Manifest
index ee079fcb3d30..f3d62b80b24c 100644
--- a/x11-drivers/nvidia-drivers/Manifest
+++ b/x11-drivers/nvidia-drivers/Manifest
@@ -1,6 +1,7 @@
 DIST NVIDIA-Linux-aarch64-515.105.01.run 221114790 BLAKE2B 
d01add008c0dc6b45f951341ad78b5c2da4e080cd3be38eec83c6408af19dec353c3eb40a5bdce2a23ec26b81bc31d7983be0a557760e408b16a0aa516dde43e
 SHA512 
07d8b680e3bc4727727dc00225b42577eff3f00fb45281fb3b75400f66572d8ad67fed1adba36689cf7d28afa6241fe3ccc11789dccfcb5e6705496c5930af2b
 DIST NVIDIA-Linux-aarch64-525.105.17.run 263030663 BLAKE2B 
6a76649f1f4dd5cc9347b91474af899a202218bbea56dd8574e0c1ef286b1e3c5a61ba6723a49295ca4baf90ee2b70adedbe809c16b2d9a6b6328dd57d6c3e6c
 SHA512 
75192acf8448a206a956b94b01b5e1e05cd21c7f172557bd6a2d1f1d92877583734c7e0998cedc3b54a8bdc5c7e869531ddea4161639daf40cbd0bf035252759
 DIST NVIDIA-Linux-aarch64-525.116.03.run 262872796 BLAKE2B 
bd414f79e91b4fcaaf26a8580b61d85b80187298416f6850d13057ea53e6b63b0325b7d4f009643a13cf28a1bba22a3cef8fae691e0a7d102535f4c0f3965ce3
 SHA512 
59ae65f041b61f84bf4f560b4b3bcdba7a69e61990b218d8fd354cb4803c2a105c714757977505703f4bafe841dad1d38dde623dcf78e076e7a7b8baca3911e7
+DIST NVIDIA-Linux-aarch64-525.116.04.run 263223228 BLAKE2B 
40797a46658aa6d1278b5865368e2050f492d95842fe8b80fa90a98739c70b24a32d896f48c8c54b8fdc1ffc3b2f95030d08bdf4b727ef71dbef78464be6b3fc
 SHA512 
819f98fe9a9075de13a4e5e58c965ea91983a6a5fc0cd6538543eed83f0c44f39204535b79eaa571d34c1014a8af32e01037f65f820789a5464260cff68b4bb1
 DIST NVIDIA-Linux-aarch64-530.41.03.run 218674884 BLAKE2B 
5f1e61c43810ae3428c07d27b7a6a80ed2d04e1fe6f2ff8f8da20c615d9d35c494f30c1baf6fd0c6046b7780e621095ff0a61e40ec40295e599acf4727cc45cf
 SHA512 
abb9d33b2cfa57be25d5395d5e9805d401b67375761cd07da0e78cc372d8f424c9a7129966967ed36b2123eafbb0fa99f478deb2c4b6a9d85764bdfb60c1139e
 DIST NVIDIA-Linux-x86-390.157.run 49417041 BLAKE2B 
435b5e0e60468cc74b41cc5d9b5bb0105d29c11a2d408457835212a96519c9334ecf19278b36749d3ff7f498f5b0ae45a2efae2d428703dac21245c62f1efebe
 SHA512 
dae9ac2c12f9ad90f7441e00e01a984147c577892421911d7f67f6a31e616ac1cb7d434bc9c7f58fbd9b8ae909521b5bece607a63c79588c0bb9d99c6bad5fb0
 DIST NVIDIA-Linux-x86_64-390.157.run 85835541 BLAKE2B 
44b855cd11f3b2f231f9fb90492ae2e67a67ea3ea83c413e7c90956d38c9730a8bd0321281ae03c6afce633d102f5b499aed25622b9bfd31bdd2c98f0717e95b
 SHA512 
4780503a4cff0180b1b1f37d20a6ba3438dd78b51fa7f69b98d35521835e5d61099129746929d51d63afa2d47b672b3e145e1e1897584dc3799e7f822c5b3a0a
@@ -8,40 +9,47 @@ DIST NVIDIA-Linux-x86_64-470.182.03.run 271685302 BLAKE2B 
47acdc53dea1698558fea8
 DIST NVIDIA-Linux-x86_64-515.105.01.run 363738348 BLAKE2B 
b78b7e9dbc1450a7d01d9b3b75e0612ce0b71f8647dc5ee084660c9cb12a8ac4b2f278d49b195e0f4600d02f3297af796158cbca9cdaff0d27f78f56153bdefd
 SHA512 
9b9e820754254c70aeab2bcc1cfdae396d3b30fb948198e378f764a6f0d89ad6f6687afffa2d6f48072ab726c6d180dc3c83891eef61f273c0b11f7bc2c9bd67
 DIST NVIDIA-Linux-x86_64-525.105.17.run 414594622 BLAKE2B 
c1db447a2e121fb13a90a26a4086f8759e8ef5e6eb3b355e3f4497cd67169b8b38506e00bdb8cfd0f5f7f25e0cacbe6e5ed05732815dbf4e63f2e800830ae3dd
 SHA512 
1a44a8d92d8434d356dcd6087c8a3277136e0819ffa5e4b6895854811cf63e44ad3dc08e0d248f149f8dc2280ab0993be6ee7fdf3c676fb9a85ff3dce83fd69a
 DIST NVIDIA-Linux-x86_64-525.116.03.run 414602354 BLAKE2B 
f46c88b579901cd4bf0263f046fc2915a8f147af4c4669d849fadd3df1dd6aad913a8cc27f9dde3c5ba9aa3f40df725220d06b590ccf9e185ecd720eb3977836
 SHA512 
684c2eddb621a18dddf047cc7d89521a4841fedbfad674e6ccb0bac7dba141a6e8e3ee77b6f2a692dab6d6e3310a88d38ea14f8198e94b21a299927e69234114
+DIST NVIDIA-Linux-x86_64-525.116.04.run 413341618 BLAKE2B 
f769c72bb38c10e16f88bdf655ef77a480097c31b5856de00858494e1b1708bc243d8d562e37b15c7fc4641c7c4937472cf16f84fc1b3b3dc837ace35a3570de
 SHA512 
8e511e4965f11c849ae0bb3f399bc79eb004bb3a15612b35e6c7b9ec236a73085b58cc4e8cb37b5ffde7e7fe202928a08618b5dd3328235795bb942bde339195
 DIST NVIDIA-Linux-x86_64-525.47.22.run 412530731 BLAKE2B 
d73a76d4319bd21dc44400f22df8e23345c169f2fb976f9048cddf06bd24eef7d98f37e91adf7e41055879040ba808772c06348217d0a0e094f24d7e2a583a2d
 SHA512 
9d2817e323cc13e43b5461421e88f17f9916ce3c3eb471453846f90f9f232e5cabaecb727580e1df957647ab1d33c1f06ebd8dd134a4d4a31633f66026985d2d
 DIST NVIDIA-Linux-x86

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

2023-05-09 Thread Sam James
commit: 7e089a767a22cd700369a10df55ac7cc84ae1080
Author: orbea  riseup  net>
AuthorDate: Sun May  7 14:40:42 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 17:50:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e089a76

x11-misc/spacefm: drop 

No new commits since Mar 4, 2018 when the current release 1.0.6 was
released.

Signed-off-by: orbea  riseup.net>
Closes: https://github.com/gentoo/gentoo/pull/30918
Signed-off-by: Sam James  gentoo.org>

 x11-misc/spacefm/spacefm-.ebuild | 70 
 1 file changed, 70 deletions(-)

diff --git a/x11-misc/spacefm/spacefm-.ebuild 
b/x11-misc/spacefm/spacefm-.ebuild
deleted file mode 100644
index 0e63a546df0d..
--- a/x11-misc/spacefm/spacefm-.ebuild
+++ /dev/null
@@ -1,70 +0,0 @@
-# Copyright 1999-2023 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info optfeature xdg
-
-DESCRIPTION="A multi-panel tabbed file manager"
-HOMEPAGE="https://ignorantguru.github.io/spacefm/";
-
-if [[ ${PV} == ** ]]; then
-   EGIT_REPO_URI="https://github.com/IgnorantGuru/${PN}.git";
-   EGIT_BRANCH="next"
-   inherit git-r3
-else
-   KEYWORDS="amd64 x86"
-   SRC_URI="https://github.com/IgnorantGuru/spacefm/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
-fi
-
-LICENSE="GPL-2 LGPL-2.1"
-SLOT="0"
-IUSE="+startup-notification +video-thumbnails"
-
-RDEPEND="dev-libs/glib:2
-   dev-util/desktop-file-utils
-   virtual/udev
-   virtual/freedesktop-icon-theme
-   x11-libs/cairo
-   x11-libs/gdk-pixbuf
-   x11-libs/gtk+:3
-   x11-libs/pango
-   x11-libs/libX11
-   x11-misc/shared-mime-info
-   startup-notification? ( x11-libs/startup-notification )
-   video-thumbnails? ( media-video/ffmpegthumbnailer )"
-DEPEND="${RDEPEND}"
-BDEPEND="dev-util/intltool
-   sys-devel/gettext
-   virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}--include-sysmacros.patch
-   "${FILESDIR}"/${PN}-fno-common.patch
-)
-
-src_configure() {
-   econf \
-   $(use_enable startup-notification) \
-   $(use_enable video-thumbnails) \
-   --disable-hal \
-   --enable-inotify \
-   --disable-pixmaps \
-   --with-gtk3
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-
-   optfeature "mounting as non-root user" sys-apps/udevil sys-apps/pmount 
sys-fs/udisks
-   optfeature "supporting ftp/nfs/smb/ssh URLs in the path bar" 
sys-apps/udevil
-   optfeature "performing as root" x11-misc/ktsuss 
kde-plasma/kde-cli-tools[kdesu]
-   # sys-apps/util-linux is required for eject
-   optfeature "other optional dependencies" sys-apps/dbus sys-process/lsof 
sys-apps/util-linux
-
-   if ! has_version 'sys-fs/udisks' ; then
-   elog "When using SpaceFM without udisks, and without the 
udisks-daemon running,"
-   elog "you may need to enable kernel polling for device media 
changes to be detected."
-   elog "See 
/usr/share/doc/${PF}/html/spacefm-manual-en.html#devices-kernpoll"
-   fi
-}



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

2023-05-09 Thread Sam James
commit: 10c4bb5c86f630bb889edc4d910c7da1b4ba14a0
Author: Sebastian Parborg  gmail  com>
AuthorDate: Mon May  8 14:31:22 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 17:50:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10c4bb5c

media-gfx/blender: Embree and OpenPGL can only be compiled on amd64 and arm64

Signed-off-by: Sebastian Parborg  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30930
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/profiles/arch/arm/package.use.mask 
b/profiles/arch/arm/package.use.mask
index 88af9d56772f..58074f637ba1 100644
--- a/profiles/arch/arm/package.use.mask
+++ b/profiles/arch/arm/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2023 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sebastian Parborg  (2023-05-08)
+# media-libs/openpgl and media-libs/embree only supports amd64 and arm64
+media-gfx/blender embree openpgl
+
 # Andrew Ammerlaan  (2023-03-07)
 # nbval/nbclassic docs require pandoc which is not keyworded here yet
 dev-python/nbval doc



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

2023-05-09 Thread Sam James
commit: 16849d33698b30b667ff6057e613a56435ed087d
Author: Sebastian Parborg  gmail  com>
AuthorDate: Mon May  8 13:04:30 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 17:50:57 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16849d33

media-libs/openpgl: Fix arches and REQUIRED_USE

OpenPGL does not support anything else than amd64 and arm64.
The other arches will not compile.

Closes: https://bugs.gentoo.org/905661
Signed-off-by: Sebastian Parborg  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-libs/openpgl/openpgl-0.5.0.ebuild | 9 ++---
 1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/media-libs/openpgl/openpgl-0.5.0.ebuild 
b/media-libs/openpgl/openpgl-0.5.0.ebuild
index 81276940fbc2..67870a6bfa63 100644
--- a/media-libs/openpgl/openpgl-0.5.0.ebuild
+++ b/media-libs/openpgl/openpgl-0.5.0.ebuild
@@ -11,11 +11,12 @@ 
SRC_URI="https://github.com/OpenPathGuidingLibrary/openpgl/archive/v${PV}.tar.gz
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="-* ~amd64 ~arm64"
 
 X86_CPU_FLAGS=( sse4_2 avx2 avx512dq )
-CPU_FLAGS=( ${X86_CPU_FLAGS[@]/#/cpu_flags_x86_} )
-IUSE="${CPU_FLAGS[@]%:*} debug"
+CPU_FLAGS=( cpu_flags_arm_neon ${X86_CPU_FLAGS[@]/#/cpu_flags_x86_} )
+IUSE="${CPU_FLAGS[@]} debug"
+REQUIRED_USE="|| ( ${CPU_FLAGS[@]} )"
 
 RDEPEND="
media-libs/embree
@@ -28,6 +29,8 @@ src_configure() {
-DOPENPGL_ISA_AVX2=$(usex cpu_flags_x86_avx2)
-DOPENPGL_ISA_AVX512=$(usex cpu_flags_x86_avx512dq)
-DOPENPGL_ISA_SSE4=$(usex cpu_flags_x86_sse4_2)
+   # TODO look into neon 2x support
+   -DOPENPGL_ISA_NEON=$(usex cpu_flags_arm_neon)
)
 
# Disable asserts



[gentoo-commits] repo/gentoo:master commit in: x11-misc/spacefm/, x11-misc/spacefm/files/

2023-05-09 Thread Sam James
commit: b31f46d29ecff5e3fea842985631f37448a60284
Author: orbea  riseup  net>
AuthorDate: Sun May  7 14:39:12 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 17:50:53 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b31f46d2

x11-misc/spacefm: fix bad substitutions with dash

Also update EAPI 7 -> 8.

Closes: https://bugs.gentoo.org/891181
Upstream-PR: https://github.com/IgnorantGuru/spacefm/pull/813
Signed-off-by: orbea  riseup.net>
Signed-off-by: Sam James  gentoo.org>

 x11-misc/spacefm/files/spacefm-dash.patch | 47 +++
 x11-misc/spacefm/spacefm-1.0.6-r2.ebuild  | 76 +++
 2 files changed, 123 insertions(+)

diff --git a/x11-misc/spacefm/files/spacefm-dash.patch 
b/x11-misc/spacefm/files/spacefm-dash.patch
new file mode 100644
index ..7b99fee4c320
--- /dev/null
+++ b/x11-misc/spacefm/files/spacefm-dash.patch
@@ -0,0 +1,47 @@
+https://github.com/IgnorantGuru/spacefm/pull/813
+
+From 30fc0024a8f023277537db1e168294c21ca3b9b0 Mon Sep 17 00:00:00 2001
+From: orbea 
+Date: Sun, 7 May 2023 07:31:56 -0700
+Subject: [PATCH] configure.ac: fix bad substitutions with dash
+
+Uses POSIX compatible substitutions that is not specific to bash.
+
+Gentoo-Issue: https://bugs.gentoo.org/891181
+---
+ configure.ac | 8 
+ 1 file changed, 4 insertions(+), 4 deletions(-)
+
+diff --git a/configure.ac b/configure.ac
+index 035da60e2..ec080e03f 100644
+--- a/configure.ac
 b/configure.ac
+@@ -40,11 +40,11 @@ bash_path="$withval"
+ # bash v4.  SpaceFM runs bash as root and you WILL open root exploits if you
+ # disable this check, or run bash based on $PATH.
+ if test ! -z "$bash_path"; then
+-if test ! "${bash_path:0:1}" = "/"; then
++if test "${bash_path%"${bash_path#?}"}" != "/"; then
+ AC_MSG_ERROR([Fatal Error: Option --with-bash-path requires absolute 
path.])
+ fi
+ echo "Modifying spacefm-auth to use bash path..."
+-bash_esc="${bash_path//\//\\/}"
++bash_esc="$(printf %s "$bash_path" | sed "s|/|\\\/|g")"
+ sed "s/\(\/bin\/bash\)/$bash_esc/" src/spacefm-auth.bash > 
src/spacefm-auth
+ else
+ cp -pf src/spacefm-auth.bash src/spacefm-auth
+@@ -308,12 +308,12 @@ data/Makefile
+ ])
+ 
+ resolve_datadir="$(eval echo "$datadir")"
+-while [[ "${resolve_datadir:0:1}" == "$" ]]; do
++while test "${resolve_datadir%"${resolve_datadir#?}"}" = "\$"; do
+ resolve_datadir="$(eval echo "$resolve_datadir")"
+ done
+ 
+ resolve_htmldir="$(eval echo "$htmldir")"
+-while [[ "${resolve_htmldir:0:1}" == "$" ]]; do
++while test "${resolve_htmldir%"${resolve_htmldir#?}"}" = "\$"; do
+ resolve_htmldir="$(eval echo "$resolve_htmldir")"
+ done
+ 

diff --git a/x11-misc/spacefm/spacefm-1.0.6-r2.ebuild 
b/x11-misc/spacefm/spacefm-1.0.6-r2.ebuild
new file mode 100644
index ..75f2ba9b252c
--- /dev/null
+++ b/x11-misc/spacefm/spacefm-1.0.6-r2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools linux-info optfeature xdg
+
+DESCRIPTION="A multi-panel tabbed file manager"
+HOMEPAGE="https://ignorantguru.github.io/spacefm/";
+
+if [[ ${PV} == ** ]]; then
+   EGIT_REPO_URI="https://github.com/IgnorantGuru/${PN}.git";
+   EGIT_BRANCH="next"
+   inherit git-r3
+else
+   KEYWORDS="~amd64 ~x86"
+   SRC_URI="https://github.com/IgnorantGuru/spacefm/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+fi
+
+LICENSE="GPL-2 LGPL-2.1"
+SLOT="0"
+IUSE="+startup-notification +video-thumbnails"
+
+RDEPEND="dev-libs/glib:2
+   dev-util/desktop-file-utils
+   virtual/udev
+   virtual/freedesktop-icon-theme
+   x11-libs/cairo
+   x11-libs/gdk-pixbuf
+   x11-libs/gtk+:3
+   x11-libs/pango
+   x11-libs/libX11
+   x11-misc/shared-mime-info
+   startup-notification? ( x11-libs/startup-notification )
+   video-thumbnails? ( media-video/ffmpegthumbnailer )"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-util/intltool
+   sys-devel/gettext
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}--include-sysmacros.patch
+   "${FILESDIR}"/${PN}-fno-common.patch
+   "${FILESDIR}"/${PN}-dash.patch #891181
+)
+
+src_prepare() {
+   default
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   $(use_enable startup-notification) \
+   $(use_enable video-thumbnails) \
+   --disable-hal \
+   --enable-inotify \
+   --disable-pixmaps \
+   --with-gtk3
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+
+   optfeature "mounting as non-root user" sys-apps/udevil sys-apps/pmount 
sys-fs/udisks
+   optfeature "supporting ftp/nfs/smb/ssh URLs in the path bar" 
sys-apps/udevil
+   optfeature "performing as root" x11-misc/ktsuss 
kde-plasma/kde-cli-tools[kdesu]
+   # sys-apps/util-linux is required for eject
+   optfeature "other optional dep

[gentoo-commits] repo/gentoo:master commit in: mate-extra/mate-sensors-applet/, mate-extra/mate-sensors-applet/files/

2023-05-09 Thread Sam James
commit: 2e2f143876b32fbaeae7e1d59e79cbe340612c76
Author: Brahmajit Das  gmail  com>
AuthorDate: Mon May  8 18:09:23 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 17:50:54 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2e2f1438

mate-extra/mate-sensors-applet: fix undeclared function setlocale

Closes: https://bugs.gentoo.org/896200
Signed-off-by: Brahmajit Das  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30937
Signed-off-by: Sam James  gentoo.org>

 ...lang-16-fix-undeclared-function-setlocale.patch | 130 +
 .../mate-sensors-applet-1.26.0-r1.ebuild   |  65 +++
 2 files changed, 195 insertions(+)

diff --git 
a/mate-extra/mate-sensors-applet/files/1.26.0-clang-16-fix-undeclared-function-setlocale.patch
 
b/mate-extra/mate-sensors-applet/files/1.26.0-clang-16-fix-undeclared-function-setlocale.patch
new file mode 100644
index ..a0b83dba38b2
--- /dev/null
+++ 
b/mate-extra/mate-sensors-applet/files/1.26.0-clang-16-fix-undeclared-function-setlocale.patch
@@ -0,0 +1,130 @@
+From 3ff9fb450aa2a28221fcd863bf7913e84eeeb7ba Mon Sep 17 00:00:00 2001
+From: listout 
+Date: Fri, 5 May 2023 11:07:20 +0530
+Subject: [PATCH] unconditionally include stdio.h and locale.h
+
+On musl mate-sensor-applet fails to build with error message saying
+"LC_NUMERIC undeclared". As suggested in issue mate-desktop#123, removing the 
include
+guards around #include  and #include 
+
+Upstream commit: 
https://patch-diff.githubusercontent.com/raw/mate-desktop/mate-sensors-applet/pull/128.patch
+Bug: https://bugs.gentoo.org/896200
+Signed-off-by: Brahmajit Das 
+--- a/configure.ac
 b/configure.ac
+@@ -38,7 +38,6 @@ AC_SUBST(LIBS)
+ AC_CHECK_HEADERS(
+   stdlib.h \
+   string.h \
+-  stdio.h \
+   sys/types.h \
+   sys/socket.h \
+   netinet/in.h \
+--- a/plugins/acpi/acpi-plugin.c
 b/plugins/acpi/acpi-plugin.c
+@@ -21,10 +21,7 @@
+ #include 
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+ #include 
+ #include 
+ #include "acpi-plugin.h"
+--- a/plugins/i2c-proc/i2c-proc-plugin.c
 b/plugins/i2c-proc/i2c-proc-plugin.c
+@@ -21,14 +21,8 @@
+ #include 
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+-#ifdef HAVE_LOCALE_H
+ #include 
+-#endif
+-
+ #include 
+ #include 
+ #include "i2c-proc-plugin.h"
+--- a/plugins/i2c-sys/i2c-sys-plugin.c
 b/plugins/i2c-sys/i2c-sys-plugin.c
+@@ -21,10 +21,7 @@
+ #include 
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+ #include 
+ #include 
+ #include "i2c-sys-plugin.h"
+--- a/plugins/i8k/i8k-plugin.c
 b/plugins/i8k/i8k-plugin.c
+@@ -21,10 +21,7 @@
+ #include 
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+ #include 
+ #include 
+ #include "i8k-plugin.h"
+--- a/plugins/ibm-acpi/ibm-acpi-plugin.c
 b/plugins/ibm-acpi/ibm-acpi-plugin.c
+@@ -21,10 +21,7 @@
+ #include "config.h"
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+ #include 
+ #include 
+ #include "ibm-acpi-plugin.h"
+--- a/plugins/omnibook/omnibook-plugin.c
 b/plugins/omnibook/omnibook-plugin.c
+@@ -21,10 +21,7 @@
+ #include "config.h"
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+ #include 
+ #include 
+ #include "omnibook-plugin.h"
+--- a/plugins/pmu-sys/pmu-sys-plugin.c
 b/plugins/pmu-sys/pmu-sys-plugin.c
+@@ -21,10 +21,7 @@
+ #include "config.h"
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+ #include 
+ #include 
+ #include "pmu-sys-plugin.h"
+--- a/plugins/smu-sys/smu-sys-plugin.c
 b/plugins/smu-sys/smu-sys-plugin.c
+@@ -21,10 +21,7 @@
+ #include "config.h"
+ #endif /* HAVE_CONFIG_H */
+
+-#ifdef HAVE_STDIO_H
+ #include 
+-#endif /* HAVE_STDIO_H */
+-
+ #include 
+ #include 
+ #include "smu-sys-plugin.h"

diff --git 
a/mate-extra/mate-sensors-applet/mate-sensors-applet-1.26.0-r1.ebuild 
b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.26.0-r1.ebuild
new file mode 100644
index ..47853d0d23d7
--- /dev/null
+++ b/mate-extra/mate-sensors-applet/mate-sensors-applet-1.26.0-r1.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+MATE_LA_PUNT="yes"
+
+inherit mate
+
+if [[ ${PV} !=  ]]; then
+   KEYWORDS="~amd64 ~arm ~loong ~riscv ~x86"
+fi
+
+DESCRIPTION="MATE panel applet to display readings from hardware sensors"
+LICENSE="FDL-1.1+ GPL-2+"
+SLOT="0"
+
+IUSE="+dbus hddtemp libnotify lm-sensors video_cards_nvidia"
+
+COMMON_DEPEND="
+   >=dev-libs/glib-2.50:2
+   >=mate-base/mate-panel-1.17.0
+   >=x11-libs/cairo-1.0.4
+   x11-libs/gdk-pixbuf:2
+   >=x11-libs/gtk+-3.22:3
+   hddtemp? ( >=app-admin/hdd

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

2023-05-09 Thread Sam James
commit: 6e16952c578fdc0e662e2986bf8139df0d8c3530
Author: Sebastian Parborg  gmail  com>
AuthorDate: Mon May  8 12:59:51 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 17:50:56 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e16952c

media-libs/embree: Fix arches and REQUIRED_USE

Embree does not support anything else than amd64 and arm64.
The other arches will not compile.

arm64 needs a patch to work on linux in the current 3.x.x release

Closes: https://bugs.gentoo.org/851705
Signed-off-by: Sebastian Parborg  gmail.com>
Signed-off-by: Sam James  gentoo.org>

 media-libs/embree/embree-3.13.5.ebuild | 12 ++---
 .../embree/files/embree-3.13.5-fix-arm64.patch | 53 ++
 2 files changed, 59 insertions(+), 6 deletions(-)

diff --git a/media-libs/embree/embree-3.13.5.ebuild 
b/media-libs/embree/embree-3.13.5.ebuild
index 7b1ffb2691e9..1f94e528f380 100644
--- a/media-libs/embree/embree-3.13.5.ebuild
+++ b/media-libs/embree/embree-3.13.5.ebuild
@@ -11,13 +11,11 @@ 
SRC_URI="https://github.com/embree/embree/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="3"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-X86_CPU_FLAGS=( sse2:sse2 sse4_2:sse4_2 avx:avx avx2:avx2 avx512dq:avx512dq )
+KEYWORDS="-* ~amd64 ~arm64"
+X86_CPU_FLAGS=( sse2 sse4_2 avx avx2 avx512dq )
 CPU_FLAGS=( cpu_flags_arm_neon ${X86_CPU_FLAGS[@]/#/cpu_flags_x86_} )
-IUSE="+compact-polys ispc +raymask ssp +tbb tutorial ${CPU_FLAGS[@]%:*}"
-# Let's be explicit here even though we could simplify it.
-REQUIRED_USE="amd64? ( cpu_flags_x86_sse2 )
-   x86? ( cpu_flags_x86_sse2 )"
+IUSE="+compact-polys ispc +raymask ssp +tbb tutorial ${CPU_FLAGS[@]}"
+REQUIRED_USE="|| ( ${CPU_FLAGS[@]} )"
 
 BDEPEND="
virtual/pkgconfig
@@ -39,6 +37,7 @@ DOCS=( CHANGELOG.md README.md readme.pdf )
 
 PATCHES=(
"${FILESDIR}"/${PN}-3.13.5-fix-openimageio-test.patch
+   "${FILESDIR}"/${PN}-3.13.5-fix-arm64.patch
 )
 
 pkg_setup() {
@@ -106,6 +105,7 @@ src_configure() {
-DEMBREE_ISA_AVX=$(usex cpu_flags_x86_avx)
-DEMBREE_ISA_AVX2=$(usex cpu_flags_x86_avx2)
-DEMBREE_ISA_AVX512=$(usex cpu_flags_x86_avx512dq)
+   # TODO look into neon 2x support
-DEMBREE_ISA_NEON=$(usex cpu_flags_arm_neon)
-DEMBREE_ISA_SSE2=$(usex cpu_flags_x86_sse2)
-DEMBREE_ISA_SSE42=$(usex cpu_flags_x86_sse4_2)

diff --git a/media-libs/embree/files/embree-3.13.5-fix-arm64.patch 
b/media-libs/embree/files/embree-3.13.5-fix-arm64.patch
new file mode 100644
index ..ae6e39c43e75
--- /dev/null
+++ b/media-libs/embree/files/embree-3.13.5-fix-arm64.patch
@@ -0,0 +1,53 @@
+Based on: 
https://github.com/embree/embree/commit/82ca6b5ccb7abe0403a658a0e079926478f04cb1
+Tested in: https://bugs.gentoo.org/851705
+
+Without this patch, it will only build on ARM Mac computers
+
+diff --git a/CMakeLists.txt b/CMakeLists.txt
+index e807351401..e8b08b1247 100644
+--- a/CMakeLists.txt
 b/CMakeLists.txt
+@@ -160,11 +160,13 @@ OPTION(EMBREE_MIN_WIDTH "Enables min-width feature to 
enlarge curve and point th
+ # Platform detection and defaults
+ ##
+ 
+-IF (APPLE)
+-  IF (CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND (CMAKE_SYSTEM_PROCESSOR 
STREQUAL "arm64" OR CMAKE_OSX_ARCHITECTURES MATCHES "arm64"))
+-MESSAGE(STATUS "Building for Apple silicon")
+-SET(EMBREE_ARM ON)
+-  ENDIF()
++# detect ARM compilation
++IF (APPLE AND CMAKE_SYSTEM_NAME STREQUAL "Darwin" AND (CMAKE_SYSTEM_PROCESSOR 
STREQUAL "arm64" OR CMAKE_OSX_ARCHITECTURES MATCHES "arm64"))
++  MESSAGE(STATUS "Building for Apple silicon")
++  SET(EMBREE_ARM ON)
++ELSEIF(CMAKE_SYSTEM_PROCESSOR STREQUAL "aarch64")
++  MESSAGE(STATUS "Building for AArch64")
++  SET(EMBREE_ARM ON)
+ ENDIF()
+ 
+ SET(EMBREE_TASKING_SYSTEM "TBB" CACHE STRING "Selects tasking system")
+diff --git a/common/cmake/gnu.cmake b/common/cmake/gnu.cmake
+index f36d79ca25..365212bdda 100644
+--- a/common/cmake/gnu.cmake
 b/common/cmake/gnu.cmake
+@@ -26,9 +26,12 @@ IF (EMBREE_IGNORE_CMAKE_CXX_FLAGS)
+ ENDIF()
+ 
+ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS}")
++
+ IF (EMBREE_ARM)
+   SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -fsigned-char") # treat 
'char' as 'signed char'
++  SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -flax-vector-conversions")  # allow 
lax vector type conversions
+ ENDIF (EMBREE_ARM)
++
+ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wall")   # 
enables most warnings
+ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wformat -Wformat-security")  # 
enables string format vulnerability warnings
+ SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-class-memaccess")# 
disables clearing an object of type ‘XXX’ with no trivial copy-assignment; use 
assignment or value-initialization instead
+@@ -89,7 +92,6 @@ SET(CMAKE_CXX_FLAGS_RELWITHDEBINFO 
"${CMAKE_CXX_FLAGS_RELWITH

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

2023-05-09 Thread Sam James
commit: 2d23fccf8d1ffc5034d1bffefce1328476d38168
Author: Brahmajit Das  gmail  com>
AuthorDate: Sat May  6 18:39:19 2023 +
Commit: Sam James  gentoo  org>
CommitDate: Tue May  9 17:50:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2d23fccf

dev-libs/argtable: fix call to undeclared library function strcmp

Closes: https://bugs.gentoo.org/885609
Signed-off-by: Brahmajit Das  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/30899
Signed-off-by: Sam James  gentoo.org>

 dev-libs/argtable/argtable-2.13-r4.ebuild  | 49 ++
 ...able-2.13-Fix-undeclared-library-function.patch | 28 +
 2 files changed, 77 insertions(+)

diff --git a/dev-libs/argtable/argtable-2.13-r4.ebuild 
b/dev-libs/argtable/argtable-2.13-r4.ebuild
new file mode 100644
index ..f5b108d4161e
--- /dev/null
+++ b/dev-libs/argtable/argtable-2.13-r4.ebuild
@@ -0,0 +1,49 @@
+# Copyright 1999-2023 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+MY_PV="$(ver_rs 1 '-')"
+MY_P=${PN}${MY_PV}
+
+DESCRIPTION="An ANSI C library for parsing GNU-style command-line options with 
minimal fuss"
+HOMEPAGE="https://argtable.sourceforge.net";
+SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+S="${WORKDIR}"/${MY_P}
+
+LICENSE="LGPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~sparc ~x86"
+IUSE="doc debug examples static-libs"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-2.13-Fix-implicit-function-declaration.patch
+   "${FILESDIR}"/${PN}-2.13-Fix-undeclared-library-function.patch
+)
+
+src_configure() {
+   econf \
+   $(use_enable debug) \
+   $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+
+   rm -rf "${ED}"/usr/share/doc/${PF}/
+
+   if use doc ; then
+   cd "${S}"/doc || die
+   dodoc *.pdf *.ps
+   docinto html
+   dodoc *.html *.gif
+   fi
+
+   if use examples ; then
+   cd "${S}"/example || die
+   docinto examples
+   dodoc Makefile *.[ch] README.txt
+   fi
+
+   find "${ED}" -name "*.la" -delete || die "failed to delete .la files"
+}

diff --git 
a/dev-libs/argtable/files/argtable-2.13-Fix-undeclared-library-function.patch 
b/dev-libs/argtable/files/argtable-2.13-Fix-undeclared-library-function.patch
new file mode 100644
index ..7f42d43727a5
--- /dev/null
+++ 
b/dev-libs/argtable/files/argtable-2.13-Fix-undeclared-library-function.patch
@@ -0,0 +1,28 @@
+From 519609d844f1e5bbf37407de8e43fa2d2be03262 Mon Sep 17 00:00:00 2001
+From: Brahmajit Das 
+Date: Sun, 7 May 2023 00:03:40 +0530
+Subject: [PATCH] Fix undeclared library function strcmp
+
+Bug: https://bugs.gentoo.org/885609
+--- a/tests/fntests.c
 b/tests/fntests.c
+@@ -1,5 +1,6 @@
+ #include "../src/argtable2.h"
+ #include 
++#include 
+
+ /* for memory leak debugging */
+ #ifdef DMALLOC
+--- a/tests/test_file.c
 b/tests/test_file.c
+@@ -21,6 +21,7 @@ USA.
+
+ #include "../src/argtable2.h"
+ #include 
++#include 
+
+ /* for memory leak debugging */
+ #ifdef DMALLOC
+--
+2.40.1
+



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

2023-05-09 Thread Mike Pagano
commit: 048116672ad50d7445e66a515cd8ceb1fd49a20e
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:49:52 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:49:52 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04811667

sys-kernel/gentoo-sources: drop 6.2.11

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 260ab1c2125b..a9cb960df7ef 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -70,9 +70,6 @@ DIST genpatches-6.1-30.extras.tar.xz 3812 BLAKE2B 
8797213e32516d6f5cd88061574201
 DIST genpatches-6.1-31.base.tar.xz 1473456 BLAKE2B 
2bee72cc97ba8a27bab8f69ab11ca7ac3aab81c9d9a00a8cdbe4ab6a50a378d6ea0de3b825ea2acc2fc3cac900b5bb2c3dd7e652a38f804237bb478020be9b5b
 SHA512 
da57c6f5495b0768807c064f7045a19f0d6cb1d90150b6987d6ea0e21756668fb29fdd40329061acfcb923ac3d1dda2144853c33fe5f1bb5d21df05fd30bac65
 DIST genpatches-6.1-31.experimental.tar.xz 82756 BLAKE2B 
bd3d9ad8a93cb1a018a39caf5ee4f4dccde50cd514b977f5b9febd9079cbcda704d0864df154a9791a1a6e88f25747d3c9d0ab94041a5ae26582c444f2333fb2
 SHA512 
810a270c6b05a2c4b10e92821f593ffcde0d05643f30da96423d22ee03a7f8bea2e42bbf9e3d7dc0ea48efa1f70f1994b8612359d527f22391813d15f0eeda62
 DIST genpatches-6.1-31.extras.tar.xz 3812 BLAKE2B 
2d599eba0488cce5ff711080e61cc94aef9265c710c5b68ca7badb4a13147cf8f19e4660988321a0f929a3d3a9dd78adf30f905d4eeb63de4e45f41bc5063fd3
 SHA512 
87db9b58bb212c5182927012b95d04628dec1cb884cf52b83c566fc52262a5684dcea298260233f8a02974b30640f538754893b2c87cb34a71b5d7674b482ae2
-DIST genpatches-6.2-13.base.tar.xz 700552 BLAKE2B 
53187881831a5ee8ac1581d78d89b56d5e6cbd45a1267f294312fbd648818530f029280b6face5c1c7f7c6d2c13c5e3fc6d1747f4abea8b2065f960a42a45d2e
 SHA512 
2ca287f97bb3c01291eb5faa1de40827d014547e2cbb5063e77597e027f58672a262bcc51f1f2111cb5621f75b59c61a3cfa40f30fe8bc923136f8de3dd3e1ca
-DIST genpatches-6.2-13.experimental.tar.xz 72492 BLAKE2B 
4c0b3ba1be0d4e341513bfa935103db49eaf819a673206fd0e92a09afca6fad009bc14a7f69cac56a9d3e94b7010f5bfb4222e00070921dc389f39265b04e6b2
 SHA512 
f7221a4978c42691377bdcfe6a7eb8b36af8805a2d51615ea8b1e540ffc32e1bafcfbaa5b2c4403364c5b4aebe8cdf172c4324ce5d79b1deb8d53a55493b24a8
-DIST genpatches-6.2-13.extras.tar.xz 3812 BLAKE2B 
2e0620c2c03f6775a4ee7d29aeace0ed2474edf371bdea0aff7ec8b11db0804641ba4d2cb1993fdd7936ad6075c1b7de0bca6c055327b25f17a74d4f3a9d5d4c
 SHA512 
5a146e403f04c1b8fec69ff2824f4d0b446fea895126839aacc511b47b4eadcfcf61ced441e3886ad4fc018379b029305d72a99d34d98ef1fdf486e28e888ce2
 DIST genpatches-6.2-14.base.tar.xz 737376 BLAKE2B 
a31157486ed656f479c36a1d728627ba1361656e8a2d8a2dcaee0ee59e6edd6c046ad7799d2458e42990d53ea9893e49f26447a380b0c5bb02f8033e8ed3fc1b
 SHA512 
126b365b3d5dd435e3ce8eac2b030bdeb227c3047d9b7182a289adc3746fd35f6454f08fa9ac323b83544d2ed614d9d1c1da569c74d8c61c50b14ab358ce4115
 DIST genpatches-6.2-14.experimental.tar.xz 72460 BLAKE2B 
90efe91acb08b0a21331bb43b80d103eae1d32e132a1e4f5eb86ec6e63e2671d7cf1bcf2313a103a0692e470de8651fc03faa5c675d3263023d2348861bc851e
 SHA512 
19c626fcef5b1304b366a372e706edc82e67ffc0ebf7dc8e56a1b89f98a9de1dd1126b0954882bbd189bfb570a080448fc5366d34556cdf77fa7646b0298ae75
 DIST genpatches-6.2-14.extras.tar.xz 3812 BLAKE2B 
8ed801102acaade5ee6191264cab8a982a707e6b8419094e044b411a7c042689457c1351299b9ca0676c7223bad8e87b241938059fb1f3fb664be3d8ec31ef70
 SHA512 
f8ee31a4456482e23609797d87822da87940f97925fab08ff8828746fc93ba5023f4b1d4f21dfd76931ac37ac2465accc4e999b631bce6e16c83bad7689432b7

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



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

2023-05-09 Thread Mike Pagano
commit: eec7df454403b659414f2dbb26fa564b94e52cff
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:49:20 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:49:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eec7df45

sys-kernel/gentoo-sources: drop 6.1.24

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index c3fdeb1109e9..260ab1c2125b 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -61,9 +61,6 @@ DIST genpatches-5.4-248.extras.tar.xz 1812 BLAKE2B 
2e95caa558cb93ee161cb9c83f7a5
 DIST genpatches-6.1-23.base.tar.xz 1114724 BLAKE2B 
35cef45469a4e42a736c5e94529a211dfc1b60a44e695243d4b936e85933efd685a6e8617abc4b20cd42f736979bda6b85fb66fe33f1d48ebe2cb53fb672a913
 SHA512 
c7cc6f174e7b1b3c5036b4861da9c5b5110c6857c4bca2585bc4090e84382688fe785ae23c3383246682bcf807368a31793921e160882a1dad5b929501c1001a
 DIST genpatches-6.1-23.experimental.tar.xz 82756 BLAKE2B 
970a577b654f4372be1a71bf10f3a9eeb4c492fc4d63f0a4b67392482760dbeda037b702e8f60488e49c1455b0781cd4dfdda2c6d40ee4e1aee73d9f9c8daefb
 SHA512 
9645e8c7b02a91bed2b0a4f2ea3d711234dbc64fc0786fa1ed7899619699e33c0214309cf335f0eab006cb823009258a74515367592e0d48a5cef235be1ea596
 DIST genpatches-6.1-23.extras.tar.xz 3808 BLAKE2B 
328dc3054c6ce8f31bcef2d682301b7b9b06a6d8b3ae96adcaf187cc6bc85561dccd219bfedffd4171c3e8df9ce998d4e615bcf364223afe8e268198d3a9d403
 SHA512 
74e378f6efe8fcadd39e29aaec0d0cc3b2ae8edf909f06a0395a2732d4af1337a966490ff3986237f98086a8779deb1fa980506fcd6385061742187b9bb89da6
-DIST genpatches-6.1-28.base.tar.xz 1412456 BLAKE2B 
126c74e7558efbfb104e97e993a70b628fe7882d756ef0ef29031b042651a8df3e2e940d31f85556453cd391358421594f9e089ed194e14b107932a8d525ddf2
 SHA512 
b033d8b873b0c8ebdd89b25dd25a814746b1debc0f0944da8fdc2ec9ed1da3d8d45816547119f7548ac30a91003c3c078a193875711d7839e4de71234192ac6d
-DIST genpatches-6.1-28.experimental.tar.xz 82764 BLAKE2B 
89cac269b0adb25ba2c5248f2f5a3f7ecdc8dc0ba61e410e7b64e50e7ff40c45a7575912b228c8c07dc3225b57d48249e31b2ef5802527ac0d12d016cd385ed1
 SHA512 
f501275cdbf1452ce7770dd0e6d237f40ff2059d2508ee6136b78e64e1de88d95cbed51844b9890dc98e2f4c9e2dc0874dc22fb6d359994e6ae1705fab859e35
-DIST genpatches-6.1-28.extras.tar.xz 3808 BLAKE2B 
3bd49fb256420883a267b2513cc9e6928a107b0142c82d9abd20114f733bfcbd474eeb19a7ef833da27ba625db28806ec25a1dd945f5d94f5bd5f729e445a57d
 SHA512 
06c84adf52e36357fd01e8e1989ba8b8cb08bef052da05d261df3e80aac6d2d10a3c39583fad6d92936e19d8c7484786a4d11f64f2dc3fb5f8e1ee90106d6367
 DIST genpatches-6.1-29.base.tar.xz 1445804 BLAKE2B 
fb801efa1f48c9ff3362db22c218faf203dbc4171ee77f4539022c8f86ccbee65bb93c36e9796411dc997531dcb0b6c3cd2420a1b19ab5219fe92bf15ea3926a
 SHA512 
c1797b202639b831fc601b6690fac85b91c1dd5dbb1520b243a5a2ed9bacc0b25f6614289b08cc5338ac8a66f8832a68a07b24ef327281c2e3c27e532a430d41
 DIST genpatches-6.1-29.experimental.tar.xz 82748 BLAKE2B 
b94127e4f634c12e2730348c9c151b3535b867c3845393d1c3628b33ceccfbe8fd5605b64199c40ba004c8981edaa92419afc6e4380d41152ea810695121d228
 SHA512 
6e4a402396fcd9a34d3dbe89bbd1eee7a7c0f72c928151af5ec531df29c88bd0e6180684b98dfdf00e585fe8d1c3de5d40b3411b8c6acfc8303c3aad7fda
 DIST genpatches-6.1-29.extras.tar.xz 3812 BLAKE2B 
d77b52859028d028d6f33f7bdb26589ced57caf84c6ad5c0716f6fa978ff6a1c16518bc4ab06e76281ac486d7a5476878e408288b3ab4c55f8daa0a46a907c31
 SHA512 
3eee3d165bde6fc820307dc7483f228c7774237df8b5ddb0e5089b0f76fd3061a0223f2b1743f38f9facfb41a78deef0256ed4a9514431471265bb86ab64631d

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



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

2023-05-09 Thread Mike Pagano
commit: 7e1bb9db43c44f5481704302ce3a87b1048cfc18
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:49:10 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:49:28 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e1bb9db

sys-kernel/gentoo-sources: drop 6.1.12

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index bdc8e554288b..c3fdeb1109e9 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -58,9 +58,6 @@ DIST genpatches-5.4-247.extras.tar.xz 1812 BLAKE2B 
d41b63d5aded3792a6c5fd922aafe
 DIST genpatches-5.4-248.base.tar.xz 5689960 BLAKE2B 
50714236c3fa565fb097577d8885ea6b0f6448061025221c317df2270877f70093446a79c60baa8247a80a481ee2475720836651cf2a83c31b13e0a59e6e30ed
 SHA512 
0850c79fe4bbb6752e2a9a316204638287107b72ed180d0f417b6d03fd9288305a221d1e085bc4da0fe7ed82790e29525bee72c288f5e6d876c306ef316f8d82
 DIST genpatches-5.4-248.experimental.tar.xz 16892 BLAKE2B 
2aafc33d0796474d1e892a149c49114eb5269a10fc1cf9cc29800d8ecd4e7fd826ce1dc3dd74496824236496aa22c56de07500f31d1d11bed3e0f9effd0e9cea
 SHA512 
cc44f418bb1b5f916125d112c08ba4e0ad48d3cce40e5020fa04786b3d964fc11bc884312d351396fd076b477513d657abff423bd12f26707f2e644eca04f1bb
 DIST genpatches-5.4-248.extras.tar.xz 1812 BLAKE2B 
2e95caa558cb93ee161cb9c83f7a5b403539253c1c74f4b3f1d7433b96c5100504d132bde1d2f1d4d790061720c29fc4c77cafcf0cb4ca80ee8a8826db076670
 SHA512 
194f2797181812b13e25755bb9413821790d953029e322ca5e24c534df56a0fe094ec005e50a761d3968f68d5c9502b27a47c87fc3276472db900f856708abe4
-DIST genpatches-6.1-14.base.tar.xz 774040 BLAKE2B 
8e0866c762e2711b766cc75630d66c7c46221bdc47357a903c7e8506ad122b7b5ba84d102b19743d236ac5579b44d24f77b9f52f3c23695ab6a279cf7875e735
 SHA512 
6a753146013baf0b94d83abd690118517679d4d7dcf6e9f86cf8de35e24f80a792e9c0692f237098671c316d046d6f65f8d3512255e572daf6a8ca81853beca0
-DIST genpatches-6.1-14.experimental.tar.xz 71688 BLAKE2B 
d1a99bf47e60ce6101a0882e28878c358cf2d285faa27ba0ca6f83779d76c3a5189db0218bd88104bfbf0b4853f65c20329ba22b84e034e4f3d9ba38253ae84f
 SHA512 
701183e4831ea295a003340bdc5be1ce934928a37f5b8690aba2fca63a595682881c0b2beb42bce988b557d0a76a4feddd97da34c77a1c93066fd7d5b85c6ccb
-DIST genpatches-6.1-14.extras.tar.xz 3804 BLAKE2B 
7f016579b130c9a4f7a8ec946254dbd682f22e5654ae777d11b265dafe2b177a4c40c5a979a760a5bd6ed3dac057b90a3120c60b958f6b748ea4731b9a5f1ea6
 SHA512 
2807d359459dd11b9d3356fcac609dbfb8487e8c924cc543ef37698667b1c8b74cff7b015839ca0677cf1f96b566e0b5018c057b517275886ab500cd2ca49653
 DIST genpatches-6.1-23.base.tar.xz 1114724 BLAKE2B 
35cef45469a4e42a736c5e94529a211dfc1b60a44e695243d4b936e85933efd685a6e8617abc4b20cd42f736979bda6b85fb66fe33f1d48ebe2cb53fb672a913
 SHA512 
c7cc6f174e7b1b3c5036b4861da9c5b5110c6857c4bca2585bc4090e84382688fe785ae23c3383246682bcf807368a31793921e160882a1dad5b929501c1001a
 DIST genpatches-6.1-23.experimental.tar.xz 82756 BLAKE2B 
970a577b654f4372be1a71bf10f3a9eeb4c492fc4d63f0a4b67392482760dbeda037b702e8f60488e49c1455b0781cd4dfdda2c6d40ee4e1aee73d9f9c8daefb
 SHA512 
9645e8c7b02a91bed2b0a4f2ea3d711234dbc64fc0786fa1ed7899619699e33c0214309cf335f0eab006cb823009258a74515367592e0d48a5cef235be1ea596
 DIST genpatches-6.1-23.extras.tar.xz 3808 BLAKE2B 
328dc3054c6ce8f31bcef2d682301b7b9b06a6d8b3ae96adcaf187cc6bc85561dccd219bfedffd4171c3e8df9ce998d4e615bcf364223afe8e268198d3a9d403
 SHA512 
74e378f6efe8fcadd39e29aaec0d0cc3b2ae8edf909f06a0395a2732d4af1337a966490ff3986237f98086a8779deb1fa980506fcd6385061742187b9bb89da6

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



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

2023-05-09 Thread Patrick McLean
commit: 81a5985a7fdb2fcb371406bc0269de2685a119cf
Author: Patrick McLean  gentoo  org>
AuthorDate: Tue May  9 17:48:16 2023 +
Commit: Patrick McLean  gentoo  org>
CommitDate: Tue May  9 17:49:04 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81a5985a

sys-cluster/ceph: Revbump, fix radosgw in init script (bug #905870)

Closes: https://bugs.gentoo.org/905870
Signed-off-by: Patrick McLean  gentoo.org>

 ...ceph-17.2.5-r4.ebuild => ceph-17.2.5-r6.ebuild} |   2 +-
 ...ceph-17.2.6-r1.ebuild => ceph-17.2.6-r2.ebuild} |   2 +-
 sys-cluster/ceph/files/ceph.initd-r14  | 119 +
 3 files changed, 121 insertions(+), 2 deletions(-)

diff --git a/sys-cluster/ceph/ceph-17.2.5-r4.ebuild 
b/sys-cluster/ceph/ceph-17.2.5-r6.ebuild
similarity index 99%
rename from sys-cluster/ceph/ceph-17.2.5-r4.ebuild
rename to sys-cluster/ceph/ceph-17.2.5-r6.ebuild
index e4046b3b5701..95be155b4526 100644
--- a/sys-cluster/ceph/ceph-17.2.5-r4.ebuild
+++ b/sys-cluster/ceph/ceph-17.2.5-r6.ebuild
@@ -424,7 +424,7 @@ src_install() {
fowners -R ceph:ceph /var/log/ceph
 
newinitd "${FILESDIR}/rbdmap.initd-r1" rbdmap
-   newinitd "${FILESDIR}/${PN}.initd-r13" ${PN}
+   newinitd "${FILESDIR}/${PN}.initd-r14" ${PN}
newconfd "${FILESDIR}/${PN}.confd-r5" ${PN}
 
insinto /etc/sudoers.d

diff --git a/sys-cluster/ceph/ceph-17.2.6-r1.ebuild 
b/sys-cluster/ceph/ceph-17.2.6-r2.ebuild
similarity index 99%
rename from sys-cluster/ceph/ceph-17.2.6-r1.ebuild
rename to sys-cluster/ceph/ceph-17.2.6-r2.ebuild
index 90bd3470f2ff..a28df53b6173 100644
--- a/sys-cluster/ceph/ceph-17.2.6-r1.ebuild
+++ b/sys-cluster/ceph/ceph-17.2.6-r2.ebuild
@@ -424,7 +424,7 @@ src_install() {
fowners -R ceph:ceph /var/log/ceph
 
newinitd "${FILESDIR}/rbdmap.initd-r1" rbdmap
-   newinitd "${FILESDIR}/${PN}.initd-r13" ${PN}
+   newinitd "${FILESDIR}/${PN}.initd-r14" ${PN}
newconfd "${FILESDIR}/${PN}.confd-r5" ${PN}
 
insinto /etc/sudoers.d

diff --git a/sys-cluster/ceph/files/ceph.initd-r14 
b/sys-cluster/ceph/files/ceph.initd-r14
new file mode 100644
index ..04002703d9e7
--- /dev/null
+++ b/sys-cluster/ceph/files/ceph.initd-r14
@@ -0,0 +1,119 @@
+#!/sbin/openrc-run
+
+# make sure /etc/conf.d/ceph gets loaded for ceph-mon etc
+_CONFD_FILE="${RC_SERVICE%/*}/../conf.d/${RC_SVCNAME%-*}"
+if [ -r "${_CONFD_FILE}" ]; then
+   . "${_CONFD_FILE}" || exit 1
+fi
+
+: "${ceph_conf:=/etc/ceph/ceph.conf}"
+daemon_type="${RC_SVCNAME#ceph-}"
+daemon_type="${daemon_type%%.*}"
+daemon_id="${RC_SVCNAME#ceph-*.}"
+daemon_id="${daemon_id:-0}"
+: "${rundir:=/run/ceph}"
+: "${user:=ceph}"
+: "${group:=ceph}"
+: "${rc_ulimit:=-n 1048576 -u 1048576}"
+
+pidfile="${rundir}/supervisor-${daemon_type}.${daemon_id}.pid"
+daemon_pidfile="${rundir}/${daemon_type}.${daemon_id}.pid"
+
+command="/usr/bin/${RC_SVCNAME%%.*}"
+command_args="-i ${daemon_id} --pid-file ${daemon_pidfile} -c ${ceph_conf}"
+extra_commands="${extra_commands} reload"
+command_args_foreground="--foreground"
+
+retry="${CEPH_TERMTIMEOUT:-TERM/120/KILL/5}"
+start_stop_daemon_args="--user ${user} --group ${group}"
+supervise_daemon_args="--user ${user} --group ${group}"
+
+: "${supervisor:=supervise-daemon}"
+: "${stdout:=/var/log/ceph/console/ceph}"
+: "${stderr:=/var/log/ceph/console/ceph}"
+: "${respawn_delay:=10}"
+: "${respawn_max:=5}"
+: "${respawn_period:=1800}"
+
+: "${osd_respawn_delay:=15}"
+: "${osd_respawn_max:=10}"
+
+: "${radosgw_respawn_max:=5}"
+: "${radosgw_respawn_period:=30}"
+
+depend() {
+   use dns logger
+   after net ntpd ntp-client chronyd
+   before netmount
+}
+
+is_type_valid() {
+   case ${daemon_type} in
+   mon|mds|osd|mgr|radosgw) return 0;;
+   *) return 1;;
+   esac
+}
+
+start_pre() {
+   local log_dir
+   export CEPH_CONF="${ceph_conf}"
+
+   checkpath -d -q -o "${user}:${group}" "${rundir}"
+
+   if ! is_type_valid ;then
+   eerror "Please give valid Ceph Server Type: mds, mon, osd"
+   return 1
+
+   elif pgrep -f "[c]eph-${daemon_type} -i ${daemon_id} "; then
+   eerror "${daemon_type}.${daemon_id} is still running, refusing 
to start"
+   return 1
+   fi
+
+   if [ -n "${bluestore_osd_fsid}" ]; then
+   einfo "Mounting Bluestore"
+   ceph-volume lvm activate "${daemon_id}" "${bluestore_osd_fsid}" 
--no-systemd
+   fi
+
+   if [ "${daemon_type}" = radosgw ]; then
+   command="/usr/bin/radosgw"
+
+   if [ "${RADOSGW_WANT_NAME_PARAM}" = y ]; then
+   command_args="${command_args} --name 
client.${daemon_id}"
+   fi
+   fi
+
+   local arg_name arg_val repl_arg_name
+   for arg_name in stdout stderr respawn_delay respawn_max respawn_period; 
do
+   eval arg_val="\${${daemon_type}_${arg_name}}"
+
+   if [ -z "

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

2023-05-09 Thread Mike Pagano
commit: cf7ed29b359acd4cbc73ad5968b00d3467f94972
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:48:29 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:48:29 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf7ed29b

sys-kernel/gentoo-sources: drop 5.15.88

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 24976c4bb9e8..91f03c91ba6f 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -49,9 +49,6 @@ DIST genpatches-5.15-114.extras.tar.xz 3932 BLAKE2B 
17aa4f2062511ba4e8b73a3449fe
 DIST genpatches-5.15-115.base.tar.xz 4432584 BLAKE2B 
a39251400e823a2e2cb5265981a3c243cd5ee5f294f77b23d022ea565ab78d507f64891b1076454aa24082034a89ad76d061fa898763820ea899bd18013a4347
 SHA512 
4e54fd61aaa960d813a7fe53e3669ae5d9e42bcb1b537189c7e03f3f66d72bc87ccd02c6fcb1e77c570168fbed6b1353e1bb5a50a21e41bd4667abdefd40b5c2
 DIST genpatches-5.15-115.experimental.tar.xz 5420 BLAKE2B 
b4a045939ad17f658b36a1a27de34e04184d967bb38345cad14a8f77f0cd460ab248ff4b3fec904550523b8e3ff187166c18893ca8040b2ba67c0c36dd9073a4
 SHA512 
6a04a3599afb4d4e321ea3a82343b2fa616f2a58878eeccaf4850ffb663024c7a2802c40f34fc5dc5578a2e6fbe92d3d09d716e209b3f85d15379a4fa69ed425
 DIST genpatches-5.15-115.extras.tar.xz 3932 BLAKE2B 
2cd277a80fa68517ed5b2494b8289fe24e651c70b85a3ec8badfc8d98b7f0ed487769e53be865bfcd77d4d3eb31519d3cd9d15174d3231d62b81bdc020ab7f62
 SHA512 
01abc3b127db13150b754dca3b891854454e5c907c2eac18761f5b68c7d90dd8fc7d8c44c82d83ac90ec6fcacb56c9363083bd1731ec5cbe0ec66c31fe815c14
-DIST genpatches-5.15-92.base.tar.xz 3843196 BLAKE2B 
1a70c672f4ceda221611ba1bad20fc4e791a51e27f412995308cb7f39962c6e237efc1bb7912c67b8e3dabaffce3bb6ceb55d62f4f12b79671910b70c1e7a8dd
 SHA512 
33390b3e24783405971f2eacb24e715faf841a66e477a03d4055d61694fa72694d7563d799b95d47037ad0d7e7c234e56c894ddd7cd1dba59077efb901bbba26
-DIST genpatches-5.15-92.experimental.tar.xz 5420 BLAKE2B 
9f091fe8429c6479c27819dfe6cd0ac04cc7f35d2af28cd69c6a8f9498664162343ce63de56c77aa3a14e70f638e741e3ffbe08c26a2cbfceca2b9bd6fd852cf
 SHA512 
513f465509cb644e1420161bc909b7a1adc155ae6d7d7af4f0362d4fea4e7dcf5912cadb6737c1d33ed5b5b8dc5ab1b0de15c81bddd4d380b069307d1dc0d4b0
-DIST genpatches-5.15-92.extras.tar.xz 3932 BLAKE2B 
12936d0ac139d69f2e5947436ffd34add80625aa383aa23e51b4419a5e2ad3c38ace4d69c9e7066bfeae32ab727013e602c3a1c3424e128562597c517c7e5903
 SHA512 
6595eca7525db97672a15275228dbb9b14e7e234514b549e0fc17daeda4b48d298f6dbcde46e5862fe02bac9f50ffd7b05d82a174541469456289bdc6eb7f4b1
 DIST genpatches-5.15-98.base.tar.xz 4003192 BLAKE2B 
79d4fb60a5192137571109ffaefdfba23ac589102539cdde89046f627f39e65a52a44a83607232b499509b8bb4c341e2fd26ae971587c9574d4ac87d8b220893
 SHA512 
946a7638d19d5fd610075520e529a6c5a47aaa433b7986493f62571a7dc541278013a5006bf1e745496e4eb98de44af56f61d23679c139a719a8d5bc20c9e734
 DIST genpatches-5.15-98.experimental.tar.xz 5424 BLAKE2B 
9f5f84ced9f97276f62087cf75eaf40fc1cac8ab74f79d30b405f394acc676b5e53d8b5cdb6f80651488577c8faed67ac1282becff5f2d499c6049864f4b15ad
 SHA512 
b4bc747b4ac9eaf89ca073050ecf6c4d64b67cd59aa178198b187aaeeb475eb4db726399415645e01d6d0f1a7e922933cdf5b1d1b7c5d22e0a8a9a4b59015fbb
 DIST genpatches-5.15-98.extras.tar.xz 3932 BLAKE2B 
4e5dd4f8ba6d14764a6546cf7e64dffb3ddcc77678b7d96d2498917f30561792c904c635b0fce7191b7c0c65549fa769e89befffbea5e53a3cef64c673937c20
 SHA512 
337d95159432cba3b85511cf80c350a8a2f67c65b72a90b26ddc98c01d2d8de70d9b6067e0573c5c339a5bf64973d10c06b42001ee19a7add3d672e4577d0622

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



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

2023-05-09 Thread Mike Pagano
commit: 00372d2b474e29eae8483ac2841e5e99831b69dd
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:48:46 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:48:46 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00372d2b

sys-kernel/gentoo-sources: drop 5.15.107

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 7a41a50a5e2f..bdc8e554288b 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -37,9 +37,6 @@ DIST genpatches-5.10-188.extras.tar.xz 3872 BLAKE2B 
bfd4b91944fad6cc5781dae0365b
 DIST genpatches-5.15-107.base.tar.xz 4209440 BLAKE2B 
48fcb9a837d9f13ffa96194e2ec2209decd2d7c50a8d18ce4dadcd15f720496f5a82b821788bc20631b6ca4679cc3f93e48beae4a0c1c515747086476b5c1d5d
 SHA512 
e66a46e0460dc940a021b37f673953d527d87c92f323d3f49d891339bc0040de492193e7415589b47b15ba37fcb05a7c1aeac31d612904afefaf2f748e1ec173
 DIST genpatches-5.15-107.experimental.tar.xz 5420 BLAKE2B 
04391ff2a0f7267f7fc173840e8d1583092c4b3e071345492ae0ff2b1d2c0f1150e2dcbfc936f50adc4a732873fb0e567efec6fc6bef9bd506411d822d94763f
 SHA512 
24442cb4a4b0b9a0b9a87f88550c928bf11e3bf0c947c7115d8f5789ebfa0dd920564013a29fe557849f460051ddec6a174c996be7fdf89b08a8256ea86b2180
 DIST genpatches-5.15-107.extras.tar.xz 3932 BLAKE2B 
59b1279051d08009a8c6e15c5083d7056f7eab8b5beed72dd3421631e9730c7306ce7cae8c3c82f508db261c2a4b2076a2c6c7d3a5fe98419b240e87a0d1e636
 SHA512 
8897cf7b1d42fcb4a0a87417913c624dbc65b9ce5689dee3998b65cba54659e7ecea759c97f4993dca4b928fe7844e025aa8dbe54f5ca492d8f858fdeb9ba3d9
-DIST genpatches-5.15-112.base.tar.xz 4370104 BLAKE2B 
578389e95be1b135fffdbcd598088d07d07ecc764307278c0339351d879594a994a4904500ee1b003ceb5ed928e95b5b07c363d94ff99db3e93568d25234fb26
 SHA512 
3797509bce6dd1949190f0d9bcb4d1c918c9bcd9f528b493b5f3b7e2fcb9265ea42e51e218c0342814e0f55c827ddd1bab130df76f849352e5894225d73bf3e8
-DIST genpatches-5.15-112.experimental.tar.xz 5424 BLAKE2B 
06e2f9467e7ffc2bbf3b7357975dbe83fc1a953249fe78053f4b17b9c46d0087b59ba0968da2a48fed80f59e07451f609c44de2798b141712e492fd7aaeb18e9
 SHA512 
ee92637119e5a9f04d89843d0e2020a6012d91db13b2b43429bc3d273c73303b4ffc587e658bed7898ad02cedaf45337f9ea62bca67e7a3981713b1e89934a78
-DIST genpatches-5.15-112.extras.tar.xz 3932 BLAKE2B 
f76085492bf8b1c1bd9092174460be8ef5e22921f1f7a6282eff9cece01203ca68d0259b94a184161bfabddef1a7e5f1eb29b0da5eb85cc35853e767a2239216
 SHA512 
3e8ea63b9011f782b11e1df144414d9e3f53f24a391829342c872dd4f5b0a3c128dd792f95feab7aca08adf6a08d88e11ec2e2d61e0b0302546f0a55f29b78dc
 DIST genpatches-5.15-113.base.tar.xz 4409644 BLAKE2B 
13570da5dea58b83b150817c0b121a796e5dc4e6416bb4e297ee2a180afa69e67e841787cb6baeeb59484fdf5d7d84603113103ffdf9e8e658da1e6f0a7e20b9
 SHA512 
6bbb567ccc12527598b56946ed20c060b40de4bd229ed146aedb5ab9f252a6d604529f87019198411ec2bf9cc5f3b87a376d5f65955ef30fb83297d4f701f918
 DIST genpatches-5.15-113.experimental.tar.xz 5420 BLAKE2B 
73c714bf706f6ff97bda4394bbb633f5c26144d9fe6ca92a55c3b53c23793e211d330ce80115ad65155c7318643bba63cf64cba5c2ee60816236e8614ac75266
 SHA512 
2c33bda874bab3a8d25900134df7494094539233fb9e7322da67e981c21401a0c64f8346416a351c51ab420a0a1a2468dbf5fd4ac58fb98e29a99a43a45b6262
 DIST genpatches-5.15-113.extras.tar.xz 3932 BLAKE2B 
debd8f36bb718d8c92d5301d00efcfb42c057d22238d010bd17504dfae697b6427411e6a12e628155b25a98b235b95cf94428bb115fbfd0fa5a024ed85a53b7a
 SHA512 
3336827f6273f4c0a39693ca7be1bd11c025031f529c4122014a205253f8ad6c247c51d696037304dff3014dedf82c493f8832d6e86b5d72b6c5b99972acfdc6

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



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

2023-05-09 Thread Mike Pagano
commit: bc796834f238567e6eb40a7ada16b4e0b35add43
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:48:38 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:48:38 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc796834

sys-kernel/gentoo-sources: drop 5.15.94

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 91f03c91ba6f..7a41a50a5e2f 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -49,9 +49,6 @@ DIST genpatches-5.15-114.extras.tar.xz 3932 BLAKE2B 
17aa4f2062511ba4e8b73a3449fe
 DIST genpatches-5.15-115.base.tar.xz 4432584 BLAKE2B 
a39251400e823a2e2cb5265981a3c243cd5ee5f294f77b23d022ea565ab78d507f64891b1076454aa24082034a89ad76d061fa898763820ea899bd18013a4347
 SHA512 
4e54fd61aaa960d813a7fe53e3669ae5d9e42bcb1b537189c7e03f3f66d72bc87ccd02c6fcb1e77c570168fbed6b1353e1bb5a50a21e41bd4667abdefd40b5c2
 DIST genpatches-5.15-115.experimental.tar.xz 5420 BLAKE2B 
b4a045939ad17f658b36a1a27de34e04184d967bb38345cad14a8f77f0cd460ab248ff4b3fec904550523b8e3ff187166c18893ca8040b2ba67c0c36dd9073a4
 SHA512 
6a04a3599afb4d4e321ea3a82343b2fa616f2a58878eeccaf4850ffb663024c7a2802c40f34fc5dc5578a2e6fbe92d3d09d716e209b3f85d15379a4fa69ed425
 DIST genpatches-5.15-115.extras.tar.xz 3932 BLAKE2B 
2cd277a80fa68517ed5b2494b8289fe24e651c70b85a3ec8badfc8d98b7f0ed487769e53be865bfcd77d4d3eb31519d3cd9d15174d3231d62b81bdc020ab7f62
 SHA512 
01abc3b127db13150b754dca3b891854454e5c907c2eac18761f5b68c7d90dd8fc7d8c44c82d83ac90ec6fcacb56c9363083bd1731ec5cbe0ec66c31fe815c14
-DIST genpatches-5.15-98.base.tar.xz 4003192 BLAKE2B 
79d4fb60a5192137571109ffaefdfba23ac589102539cdde89046f627f39e65a52a44a83607232b499509b8bb4c341e2fd26ae971587c9574d4ac87d8b220893
 SHA512 
946a7638d19d5fd610075520e529a6c5a47aaa433b7986493f62571a7dc541278013a5006bf1e745496e4eb98de44af56f61d23679c139a719a8d5bc20c9e734
-DIST genpatches-5.15-98.experimental.tar.xz 5424 BLAKE2B 
9f5f84ced9f97276f62087cf75eaf40fc1cac8ab74f79d30b405f394acc676b5e53d8b5cdb6f80651488577c8faed67ac1282becff5f2d499c6049864f4b15ad
 SHA512 
b4bc747b4ac9eaf89ca073050ecf6c4d64b67cd59aa178198b187aaeeb475eb4db726399415645e01d6d0f1a7e922933cdf5b1d1b7c5d22e0a8a9a4b59015fbb
-DIST genpatches-5.15-98.extras.tar.xz 3932 BLAKE2B 
4e5dd4f8ba6d14764a6546cf7e64dffb3ddcc77678b7d96d2498917f30561792c904c635b0fce7191b7c0c65549fa769e89befffbea5e53a3cef64c673937c20
 SHA512 
337d95159432cba3b85511cf80c350a8a2f67c65b72a90b26ddc98c01d2d8de70d9b6067e0573c5c339a5bf64973d10c06b42001ee19a7add3d672e4577d0622
 DIST genpatches-5.4-242.base.tar.xz 5610464 BLAKE2B 
54d7c2e11a6b21ed8b16d26a56ffd392f35b82e1bd4548f65c40018ee6607eaea37d791734a31abb30ee061ac85089fbaede39f1ac35c2b0f48220f266d2db17
 SHA512 
cf7d24286d88319eb872f14c3907956c1ef9e0cba4d1a86e740e9eba3a450a2060c1f03d519ac49ad97e9afefb2a32fa7e77790387819c4d60d15039c425ef28
 DIST genpatches-5.4-242.experimental.tar.xz 16892 BLAKE2B 
b331aee7d0bc2fe0f101d0548bee00f28107e73dc6904e0c23450fffc29fa062454304b20a47d31cdab55a948334cf93cb72249c6a0e9c7d4ad64c4147b5647f
 SHA512 
eb8c16686d1b80af163e31ad908587bc73cadf59b5f5533ed18620f60f6a95986a80f931757ce026d6e901b4b9ef6474e586a6bd0ef5bae9883889ea9fc26d27
 DIST genpatches-5.4-242.extras.tar.xz 1812 BLAKE2B 
d2b8f6655e540964c1c6fd81a5e74bc2e7001bf86ec8a7e8293b2088ae24ce4bd41d0eb5097011a2c9669b9ff479bc828c2f8425924c920f35193d466b4dba58
 SHA512 
8d76a855216ef7dc89babce2d35a7b6b58b641105c117e246a01a779396fdcdb6cbcf7b599683ecbfeb53df09504244cca5569b08b15a4fbe6b81b10d51c8d86

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



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

2023-05-09 Thread Mike Pagano
commit: bf2523bbbae29f3c38d7b312ffd12b794e8ed2c9
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:47:55 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:47:55 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf2523bb

sys-kernel/gentoo-sources: drop 5.10.167

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 1e8df408da9c..f80fb1f28551 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -22,9 +22,6 @@ DIST genpatches-4.19-281.extras.tar.xz 3664 BLAKE2B 
d10c62c55a5ff5bca84671bff0d8
 DIST genpatches-4.19-282.base.tar.xz 6324592 BLAKE2B 
c5a8bed2ed58ae459eb92743d6030d5ecad62b142a3f3e93b96404ecc11a713672652f6be8828a7f9992cd949ae61535f7bce6ec5780e3dc7cb80d538890b2ee
 SHA512 
3744878c35010f963b87ebd2aa75f33d488049681e51b446eb2dd29c40f6d65ec9907123e909d829c11d669fadde5573a7c35b15f6b9f984577e00f2a3aed9d0
 DIST genpatches-4.19-282.experimental.tar.xz 5456 BLAKE2B 
62bd1202bc909930b6bd3bc24cbffea14f8b0c353d56865396d95f5e1f502e8240426800e42996db1ddb6d78c0dd94893ff94323f6fafdb3fbd99091f0865c08
 SHA512 
8cc77fa808b8447bd70da50dcfea7f7577fe3525ed4345e6bf4a557a70333cc14ee94b559448dcdf5fc4e44669ebd87dc6f486111f8b386a0bfd890fa6002c57
 DIST genpatches-4.19-282.extras.tar.xz 3660 BLAKE2B 
d177e7e1a2b82687575520dd0ccd789caa3bb66040babe40a4cf9c15a91a1fbb2783673f0997416a32c98627c1805af07694c32b4ecad2ec829c8e74fb5d5fc8
 SHA512 
8dee9a252693c7f17127f1b79aefa91a88b1b9957e73069d0884b4bb7cf7b3f3ab73faaf4e1ddb0c5cc6a79b45a0b668ccfbbfefbed533ca910a80e112842a63
-DIST genpatches-5.10-176.base.tar.xz 4910744 BLAKE2B 
119dfaaa5a2212f088f767e3600d748b2bc20a95c8e21b34bb81dc0a6ad6082769da9cc11a89b226c326c0326cb4c7da6fa0fcb1cb4c5e1f04fc353dab01a117
 SHA512 
60632369dc2066789ec8a144080127d7149d9deebb3c9764cd1a13fbe961dd5f88eaf345dbfeaa33c8c8b55d558511d2dafd4bfb631fac2db72110574ccf6c8f
-DIST genpatches-5.10-176.experimental.tar.xz 16872 BLAKE2B 
e31e9f79213a39699d3f3f223b2f7e48442f86be8c4a4a3dbfad15d2301c2a2c22666cd5e914eb0bcbcf4f2544e369868ffaf7878e4f7e10ac8be2b7c718d835
 SHA512 
c86c15501927cea0c1ea1edf8f0636a0369f442c8517d3c93171c8b79df8fb14f161c88440638c54be630abb4b7a2ff302c1dae120bc50a96df8402e10c82dba
-DIST genpatches-5.10-176.extras.tar.xz 3868 BLAKE2B 
a0a3808562dba6540d632b25e3a417f9a2514dddb13cda9692002b253a4d033bb58ffa4d606fd57764024f21a0907a94d93c2130deb9bbe92a60f310179e761c
 SHA512 
847fd0c0ce8bf3aaee9c6aacb527d8590439f44f5e1e19ffda883b5ea7d8bbc502cbe5e126fc181eaad9dfbced8ca664e459b70085bdc6d51e7f001bf4901f2a
 DIST genpatches-5.10-183.base.tar.xz 5092416 BLAKE2B 
d4c674fdd2891051748ab33257ed3dd1e85c7f15ee2cb5e73932752ab31ce6aee4a5a3b7a68767f9c1b5f0274693a140c3911fff7fd4a5587814861010cf0fb2
 SHA512 
bed74ee91b86e61bb2bfd02293a2590d0b5b9a7171c794c768970dcdc8cbd004ac6df87a63cbc9f5f6d1d2372e2960e29d68586b84a077275b61dbf80608a365
 DIST genpatches-5.10-183.experimental.tar.xz 16880 BLAKE2B 
03a60fcedf8540ab6205aff1165a1b5ecc8de1eeac1a019fb0b7c17d1cbb9d07306cb94c16f3c07b7f2e50c29880a63a48d680681fc37631ba2092175b92e101
 SHA512 
23437e86deaeeb162556261344e21f74366bafd4cffacbfe1b169fe5a106b4fa705573dd3311e1f0aeea5b8fdce0db06ea9b5467a579f6242043a0fa40d80c82
 DIST genpatches-5.10-183.extras.tar.xz 3868 BLAKE2B 
4f42863c501d8636ee3d991f2e434123a891446182dfd5c45482e8aa439675f62db9388eac0ab00683001d7a7ae49f576968912a048d4e4a947a5e20f2830ccc
 SHA512 
8c2229286e958d1d88c9d93dc3e6d26d98e91fc67f7040d0a96d35b89da8f15d11b339372a3055eeeb448352372cde839e7fc6fbfb0600d03337d224af4a8178

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



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

2023-05-09 Thread Mike Pagano
commit: 044275e3411bae94ef202a67e2ddc04fc8044c49
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:48:03 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:48:03 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=044275e3

sys-kernel/gentoo-sources: drop 5.10.176

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f80fb1f28551..24976c4bb9e8 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -25,9 +25,6 @@ DIST genpatches-4.19-282.extras.tar.xz 3660 BLAKE2B 
d177e7e1a2b82687575520dd0ccd
 DIST genpatches-5.10-183.base.tar.xz 5092416 BLAKE2B 
d4c674fdd2891051748ab33257ed3dd1e85c7f15ee2cb5e73932752ab31ce6aee4a5a3b7a68767f9c1b5f0274693a140c3911fff7fd4a5587814861010cf0fb2
 SHA512 
bed74ee91b86e61bb2bfd02293a2590d0b5b9a7171c794c768970dcdc8cbd004ac6df87a63cbc9f5f6d1d2372e2960e29d68586b84a077275b61dbf80608a365
 DIST genpatches-5.10-183.experimental.tar.xz 16880 BLAKE2B 
03a60fcedf8540ab6205aff1165a1b5ecc8de1eeac1a019fb0b7c17d1cbb9d07306cb94c16f3c07b7f2e50c29880a63a48d680681fc37631ba2092175b92e101
 SHA512 
23437e86deaeeb162556261344e21f74366bafd4cffacbfe1b169fe5a106b4fa705573dd3311e1f0aeea5b8fdce0db06ea9b5467a579f6242043a0fa40d80c82
 DIST genpatches-5.10-183.extras.tar.xz 3868 BLAKE2B 
4f42863c501d8636ee3d991f2e434123a891446182dfd5c45482e8aa439675f62db9388eac0ab00683001d7a7ae49f576968912a048d4e4a947a5e20f2830ccc
 SHA512 
8c2229286e958d1d88c9d93dc3e6d26d98e91fc67f7040d0a96d35b89da8f15d11b339372a3055eeeb448352372cde839e7fc6fbfb0600d03337d224af4a8178
-DIST genpatches-5.10-185.base.tar.xz 5154772 BLAKE2B 
f7d88f5c6b98dc265fbbabcc5a4590f44eaad5e6a6f250e755be4a9686601ccb2e7b9e791c207fdeb071b518073cdfcfc2de80ffd70f16067c0dcb9fc586
 SHA512 
a13febea3cadb7de762e1a2a46c776f22bbe4bf0e9f471c1e0dbbdc63431692ee7b6812e3eaac9623a4b92d08c64eab3c82f8dac0da5ea8d55d4ad6bc6b95a15
-DIST genpatches-5.10-185.experimental.tar.xz 16868 BLAKE2B 
f2051f336a57d2623466c02a124d0a8b22b446c662052a1f0f7598571bf099778dbaf09fe9263d7c3e8a24db6153a12e4fe75b2d3fa4ed1fe24024e7dd62b2ec
 SHA512 
b6c0336cdb6ae6e8404e5f7c69d01daa298ae3c307ffac3708183200d2bfc8e54da05a9801aa2c12e36727afa2907d29e71d8e129f7b2ce8b5198d02adffe387
-DIST genpatches-5.10-185.extras.tar.xz 3868 BLAKE2B 
d42ae4d95f81771334ab313b01f8282c4e12ae4b89e2c7e60ebddffcc78a53131a4b54874ad914a47bd81d3b9e24f4c072a8d042c824dad8cef209a20d6788d0
 SHA512 
9bb9676480aa5fefe8a5202da3d20a0e2f395fcf4a0b6ecdae2ec62745b5adf4955a56bb1a346b7441162f36108b4c1f02374b248217d99f03d241f5dd51bbd9
 DIST genpatches-5.10-186.base.tar.xz 5195200 BLAKE2B 
80451354985fedc89685d4bc6897aa66833eb2ae3916b89a5884107256f4050e8512194effa5f47123f580e50d2b1c454e178a46255aabb9c84a7d743cca
 SHA512 
267850925d6c4d527cf9e847657d5a7d33d9073444a2a1076b81c0db1ee973b333f99b7c4165688bc2072f8a11447aa35e460039569369091ddf45d457b48839
 DIST genpatches-5.10-186.experimental.tar.xz 16864 BLAKE2B 
bb8c55731b88b0b739e0d1394d9f203dfe024192b0adc2a3c0d127cb66d0f970b7d4b0d52a7a10b674a4776e9b910e907cc2583e4d897514ffeb67d29339ae60
 SHA512 
8902c6999a5edafe9896448ed66c650230ddce19d10b9775a8296cbb4591b0623e9afd0d3290fe57116a6aaa7e0df202ce42a2ecbb91b59a291ce7fd01bfd304
 DIST genpatches-5.10-186.extras.tar.xz 3868 BLAKE2B 
fd83930f87ffab80902b20d931dc9131915e3d6d33f66d7698f5ec7bae211ef1da5d3be0b60a6871b8696e0ad3a60d71dd0b17fb09fb14eaf77a0d570f6e0948
 SHA512 
aa3df46b0a3640310377455592411b3254505b2262ce58f0c3a374077199ec0c7a63262dcba84ef88a553951c786cf6d9ace55a7cacce48d19696ab568c25cc5

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



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

2023-05-09 Thread Mike Pagano
commit: 416b24afa7ac17480f3328447fcfe52f69897fc5
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:47:48 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:47:48 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=416b24af

sys-kernel/gentoo-sources: drop 5.10.163

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index b1ed785ef3fc..1e8df408da9c 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -22,9 +22,6 @@ DIST genpatches-4.19-281.extras.tar.xz 3664 BLAKE2B 
d10c62c55a5ff5bca84671bff0d8
 DIST genpatches-4.19-282.base.tar.xz 6324592 BLAKE2B 
c5a8bed2ed58ae459eb92743d6030d5ecad62b142a3f3e93b96404ecc11a713672652f6be8828a7f9992cd949ae61535f7bce6ec5780e3dc7cb80d538890b2ee
 SHA512 
3744878c35010f963b87ebd2aa75f33d488049681e51b446eb2dd29c40f6d65ec9907123e909d829c11d669fadde5573a7c35b15f6b9f984577e00f2a3aed9d0
 DIST genpatches-4.19-282.experimental.tar.xz 5456 BLAKE2B 
62bd1202bc909930b6bd3bc24cbffea14f8b0c353d56865396d95f5e1f502e8240426800e42996db1ddb6d78c0dd94893ff94323f6fafdb3fbd99091f0865c08
 SHA512 
8cc77fa808b8447bd70da50dcfea7f7577fe3525ed4345e6bf4a557a70333cc14ee94b559448dcdf5fc4e44669ebd87dc6f486111f8b386a0bfd890fa6002c57
 DIST genpatches-4.19-282.extras.tar.xz 3660 BLAKE2B 
d177e7e1a2b82687575520dd0ccd789caa3bb66040babe40a4cf9c15a91a1fbb2783673f0997416a32c98627c1805af07694c32b4ecad2ec829c8e74fb5d5fc8
 SHA512 
8dee9a252693c7f17127f1b79aefa91a88b1b9957e73069d0884b4bb7cf7b3f3ab73faaf4e1ddb0c5cc6a79b45a0b668ccfbbfefbed533ca910a80e112842a63
-DIST genpatches-5.10-172.base.tar.xz 4831748 BLAKE2B 
46acfe58044df90c98057fc25903c1af1ff3baccace354659b79b939ca6b2054488c8823c456620880e4af9221e0d26eadfd355aaccf4679989ce2e6077507e5
 SHA512 
8951a10959454b515269be97e163e73aa7cc8374abc7d0fa73243f67944bd1592051736ec06e2ce29ee01d4e0b79ec783d30b40664105f12aad24c9c4cff0a33
-DIST genpatches-5.10-172.experimental.tar.xz 16880 BLAKE2B 
ffcc645c2f82fa05d2bd07da4be09355a082de32f9192144917c1ec7f32038f07cf08c243087a20acf8efc8cf9b412b95bf9e1dd5e677f9f03e0ad1f9a6a1ae2
 SHA512 
baa241b96a5ff3aeb5db574843065db8714a91d7b3b33fcc83c917e4b092501b3479b05537901a3cebb86b7fedff82dbf5e861ff2d37d8c514131e1959940d44
-DIST genpatches-5.10-172.extras.tar.xz 3868 BLAKE2B 
32ee2c036c224c800ce53fa94d8f6676c70023bb733cef143355ed5907a4815cb252bc43d1660bedd841dffc814c15a9016d8c0d43b80ece58c9f4bf77c472eb
 SHA512 
10372d1ab1d8bd73dc1c7412498cfb5ce91dc74d5e40c6497aeac24fb71d9c007d03cdbe58b2b7d6304af11816a4981cfc4bdefcd39da19009cb2f0bef9ba5ea
 DIST genpatches-5.10-176.base.tar.xz 4910744 BLAKE2B 
119dfaaa5a2212f088f767e3600d748b2bc20a95c8e21b34bb81dc0a6ad6082769da9cc11a89b226c326c0326cb4c7da6fa0fcb1cb4c5e1f04fc353dab01a117
 SHA512 
60632369dc2066789ec8a144080127d7149d9deebb3c9764cd1a13fbe961dd5f88eaf345dbfeaa33c8c8b55d558511d2dafd4bfb631fac2db72110574ccf6c8f
 DIST genpatches-5.10-176.experimental.tar.xz 16872 BLAKE2B 
e31e9f79213a39699d3f3f223b2f7e48442f86be8c4a4a3dbfad15d2301c2a2c22666cd5e914eb0bcbcf4f2544e369868ffaf7878e4f7e10ac8be2b7c718d835
 SHA512 
c86c15501927cea0c1ea1edf8f0636a0369f442c8517d3c93171c8b79df8fb14f161c88440638c54be630abb4b7a2ff302c1dae120bc50a96df8402e10c82dba
 DIST genpatches-5.10-176.extras.tar.xz 3868 BLAKE2B 
a0a3808562dba6540d632b25e3a417f9a2514dddb13cda9692002b253a4d033bb58ffa4d606fd57764024f21a0907a94d93c2130deb9bbe92a60f310179e761c
 SHA512 
847fd0c0ce8bf3aaee9c6aacb527d8590439f44f5e1e19ffda883b5ea7d8bbc502cbe5e126fc181eaad9dfbced8ca664e459b70085bdc6d51e7f001bf4901f2a

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



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

2023-05-09 Thread Mike Pagano
commit: 629b28418499b98ce204b5a99ca3937653024165
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:47:23 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:47:23 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=629b2841

sys-kernel/gentoo-sources: drop 5.4.239

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 452e6d3bb485..b1ed785ef3fc 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -67,9 +67,6 @@ DIST genpatches-5.15-98.extras.tar.xz 3932 BLAKE2B 
4e5dd4f8ba6d14764a6546cf7e64d
 DIST genpatches-5.4-242.base.tar.xz 5610464 BLAKE2B 
54d7c2e11a6b21ed8b16d26a56ffd392f35b82e1bd4548f65c40018ee6607eaea37d791734a31abb30ee061ac85089fbaede39f1ac35c2b0f48220f266d2db17
 SHA512 
cf7d24286d88319eb872f14c3907956c1ef9e0cba4d1a86e740e9eba3a450a2060c1f03d519ac49ad97e9afefb2a32fa7e77790387819c4d60d15039c425ef28
 DIST genpatches-5.4-242.experimental.tar.xz 16892 BLAKE2B 
b331aee7d0bc2fe0f101d0548bee00f28107e73dc6904e0c23450fffc29fa062454304b20a47d31cdab55a948334cf93cb72249c6a0e9c7d4ad64c4147b5647f
 SHA512 
eb8c16686d1b80af163e31ad908587bc73cadf59b5f5533ed18620f60f6a95986a80f931757ce026d6e901b4b9ef6474e586a6bd0ef5bae9883889ea9fc26d27
 DIST genpatches-5.4-242.extras.tar.xz 1812 BLAKE2B 
d2b8f6655e540964c1c6fd81a5e74bc2e7001bf86ec8a7e8293b2088ae24ce4bd41d0eb5097011a2c9669b9ff479bc828c2f8425924c920f35193d466b4dba58
 SHA512 
8d76a855216ef7dc89babce2d35a7b6b58b641105c117e246a01a779396fdcdb6cbcf7b599683ecbfeb53df09504244cca5569b08b15a4fbe6b81b10d51c8d86
-DIST genpatches-5.4-245.base.tar.xz 5632788 BLAKE2B 
bbd772e16968cdd010c71002af87787eececfaeb0ba02d2ccb9a18d046c4c7b05eabc62cdfa2ea05943533ea961a7724deb75b42ce006ce349056ba73a9f1b27
 SHA512 
45373b2cc4da5286a2bf3149cb7ca18aaf475b13e64471506815ff4665aae7e73534f68f13a350b8616631ed6677ca65aee0dccaee436339e24786aed022b09e
-DIST genpatches-5.4-245.experimental.tar.xz 16900 BLAKE2B 
1889281b75a75959044ead1c3323e6ae20f0e5110f5821c5895839b488b48529e9c95e38d2cc8f78f3a8955190ba891a91f6694bf3ae5375da3ccd90c01d8ca5
 SHA512 
0336f935aa9e56d51fe41c0e9431f132b1565f1bdbc9dd999bb68feba52612d47b3612df28c99f197a8a506d112cf4259264fe12816852b087c5f70ff08522c1
-DIST genpatches-5.4-245.extras.tar.xz 1816 BLAKE2B 
fc61841df1540f85577ea31a34b0b352e20dd54b02582e0379d46d93c7ba8b92faa0dc988dd906a8c250c8c325959e326a64188e97b4cb02d393ed8b88f2d03e
 SHA512 
cc468754c82833aaad28e830ab4bce06ca0d2422d91a603149bbabcb012b9d4861f91226dac924407573d0a46df0f03479811be448b2c37971e3e8d757c6f89c
 DIST genpatches-5.4-246.base.tar.xz 5659072 BLAKE2B 
4b3f836c7e9f7f4d1cac0c7357751c0c165c826cbf549033c9e9fb85be3ccf45d480b0c8d80f7d980daaa1fb62265b600e24dee320673434333bec891e0c
 SHA512 
029102ba3170b99836ddf5e4a9a7101826eae3dcced431a7049e4c025ca6057f694c66f67a20d5b08a124275ed91aac3a0e1060ca2946fea54d68b251e61b478
 DIST genpatches-5.4-246.experimental.tar.xz 16908 BLAKE2B 
c7017745dfcdc6326e2a59748dd90e798c3d92f123f1e3cee13c277eb4d8d7f2cf98ea054ac7192f63d9b5d4020130fb369bca5b4b6bb2bd3689049d32921305
 SHA512 
e95779ba0985fe076d510bc0f48aa6b4e5985acf0d2c8f0c20d059768605be4d6e6d2e584ba396ea659568eb0b0aa96aa6c38d0a75aba394d6fb1dad46929723
 DIST genpatches-5.4-246.extras.tar.xz 1812 BLAKE2B 
78297c82519cf71230dc19d674d345cb40d8226adab6af53c0c3af7239f7a1464b8c89b51b62c509b33e8b2eb1a8c102b10146a8a6151ab5f069a1e00f8f6f8c
 SHA512 
13aa1321f559e01257926ef94dd023222c2be9225bb412424a4b4696c1e6d6abe3e7f29c375836e1f9986d496df89051a60c34e8f8070aa0bd556683a387e356

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



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

2023-05-09 Thread Mike Pagano
commit: debe65445431db88349106ee1d275303d0377fc4
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:47:08 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:47:08 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=debe6544

sys-kernel/gentoo-sources: drop 5.4.228

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 6e33a1d77fd1..fd461fc26b77 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -64,9 +64,6 @@ DIST genpatches-5.15-92.extras.tar.xz 3932 BLAKE2B 
12936d0ac139d69f2e5947436ffd3
 DIST genpatches-5.15-98.base.tar.xz 4003192 BLAKE2B 
79d4fb60a5192137571109ffaefdfba23ac589102539cdde89046f627f39e65a52a44a83607232b499509b8bb4c341e2fd26ae971587c9574d4ac87d8b220893
 SHA512 
946a7638d19d5fd610075520e529a6c5a47aaa433b7986493f62571a7dc541278013a5006bf1e745496e4eb98de44af56f61d23679c139a719a8d5bc20c9e734
 DIST genpatches-5.15-98.experimental.tar.xz 5424 BLAKE2B 
9f5f84ced9f97276f62087cf75eaf40fc1cac8ab74f79d30b405f394acc676b5e53d8b5cdb6f80651488577c8faed67ac1282becff5f2d499c6049864f4b15ad
 SHA512 
b4bc747b4ac9eaf89ca073050ecf6c4d64b67cd59aa178198b187aaeeb475eb4db726399415645e01d6d0f1a7e922933cdf5b1d1b7c5d22e0a8a9a4b59015fbb
 DIST genpatches-5.15-98.extras.tar.xz 3932 BLAKE2B 
4e5dd4f8ba6d14764a6546cf7e64dffb3ddcc77678b7d96d2498917f30561792c904c635b0fce7191b7c0c65549fa769e89befffbea5e53a3cef64c673937c20
 SHA512 
337d95159432cba3b85511cf80c350a8a2f67c65b72a90b26ddc98c01d2d8de70d9b6067e0573c5c339a5bf64973d10c06b42001ee19a7add3d672e4577d0622
-DIST genpatches-5.4-233.base.tar.xz 5294692 BLAKE2B 
357046687c6f2797d5d7090dad357e00675eed329ccef44223dd476551cf04e9f711f1020144cfc59796657cb5b1e6d76b607ecb164e27636869a8bc8984f567
 SHA512 
45f6b35dbca12e8b9e6a9f99d12c44e47a6e471e5091ab75c42346f1d8bc12dc454cbb335f1549b497842c2d9f13a5930c80b5000cb86bd3db7b03347dfebcf4
-DIST genpatches-5.4-233.experimental.tar.xz 16900 BLAKE2B 
8f1644021d72c6238a65c57f4bad157aa2599ae864f2de8f9cfa6f712554f7ddf6112b22c61c94e3e25f10e25823d63d62ff76d2c741b782ff40c089986f02a2
 SHA512 
ad9adf48a34c09fb91b0d9d9101dafd2db8680056e03552fcacbda36cdffb6c2e00faa52d16e8ae3867fd34391cb004ea6539c122876f32769aaaea4e6b6f4a7
-DIST genpatches-5.4-233.extras.tar.xz 1812 BLAKE2B 
abedf631da893391a98a98cf48d264f9eaf9f9f7811bf595c36a774c8dde21f105afaf6f4e113e04de472bd6ce0c759bd41fd95aa980b7e05499d8571f3e8a44
 SHA512 
16b09d0a4465123079360ef9f070e0c163f45f9784714e98fe53f7174e836fe7b2562af01e5c2dc932571bb3eafe2d9afedfd60b5c8467bd8410de651ab82473
 DIST genpatches-5.4-236.base.tar.xz 5467512 BLAKE2B 
5c2ec5abee963eda0373e04d4f0da94d7e49b7a1fdc05f7a2f7cafba61771124503f1294289f79629afb62075855c176887f525a95a73bef4247b57915dd4877
 SHA512 
0a3ba2742ab21407ccc9060f37d528cdbe64dade85927aa1908613221973f14765a78ef6a71e157a71defcf1ee9158ffa1c2e7c082f508fc1140792e2311a073
 DIST genpatches-5.4-236.experimental.tar.xz 16892 BLAKE2B 
82ce10b428b088a15c558f24d0fbef6fb5f6921cad4f6791ec0ec79b863e4abdc0115c15e40b3d36a07917f8ecd90503ebb208c05b1fbc7f025cf34528f96e2d
 SHA512 
44d625e488768bf25d75b7542ba2e56a6f7ca0f4bd3b836847b009235dbea9a1e7f89f6b8b5f747489559eb7539b489ac50b8adb5707da5435dfe4e9a790fd3e
 DIST genpatches-5.4-236.extras.tar.xz 1812 BLAKE2B 
acc781fb099315e4716cdddc4a7f7ec88bcfae2228fd63c6f8bc99b3f562baf75339129f6d8e5970f5a812f6523fbe316992e1bb1606d6e06e5ca769ea1b5535
 SHA512 
5d772754922bf7eb2e21eac8fd597ba8c6211565a4d96a7bda6df68e089654b908bc09cd884c6e570836814ee75c84252d26228a20d138577e7717c498edad86

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



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

2023-05-09 Thread Mike Pagano
commit: e7cc3c08bdac939ad23d0696ce313b26cd735109
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:47:16 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:47:16 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7cc3c08

sys-kernel/gentoo-sources: drop 5.4.231

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index fd461fc26b77..452e6d3bb485 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -64,9 +64,6 @@ DIST genpatches-5.15-92.extras.tar.xz 3932 BLAKE2B 
12936d0ac139d69f2e5947436ffd3
 DIST genpatches-5.15-98.base.tar.xz 4003192 BLAKE2B 
79d4fb60a5192137571109ffaefdfba23ac589102539cdde89046f627f39e65a52a44a83607232b499509b8bb4c341e2fd26ae971587c9574d4ac87d8b220893
 SHA512 
946a7638d19d5fd610075520e529a6c5a47aaa433b7986493f62571a7dc541278013a5006bf1e745496e4eb98de44af56f61d23679c139a719a8d5bc20c9e734
 DIST genpatches-5.15-98.experimental.tar.xz 5424 BLAKE2B 
9f5f84ced9f97276f62087cf75eaf40fc1cac8ab74f79d30b405f394acc676b5e53d8b5cdb6f80651488577c8faed67ac1282becff5f2d499c6049864f4b15ad
 SHA512 
b4bc747b4ac9eaf89ca073050ecf6c4d64b67cd59aa178198b187aaeeb475eb4db726399415645e01d6d0f1a7e922933cdf5b1d1b7c5d22e0a8a9a4b59015fbb
 DIST genpatches-5.15-98.extras.tar.xz 3932 BLAKE2B 
4e5dd4f8ba6d14764a6546cf7e64dffb3ddcc77678b7d96d2498917f30561792c904c635b0fce7191b7c0c65549fa769e89befffbea5e53a3cef64c673937c20
 SHA512 
337d95159432cba3b85511cf80c350a8a2f67c65b72a90b26ddc98c01d2d8de70d9b6067e0573c5c339a5bf64973d10c06b42001ee19a7add3d672e4577d0622
-DIST genpatches-5.4-236.base.tar.xz 5467512 BLAKE2B 
5c2ec5abee963eda0373e04d4f0da94d7e49b7a1fdc05f7a2f7cafba61771124503f1294289f79629afb62075855c176887f525a95a73bef4247b57915dd4877
 SHA512 
0a3ba2742ab21407ccc9060f37d528cdbe64dade85927aa1908613221973f14765a78ef6a71e157a71defcf1ee9158ffa1c2e7c082f508fc1140792e2311a073
-DIST genpatches-5.4-236.experimental.tar.xz 16892 BLAKE2B 
82ce10b428b088a15c558f24d0fbef6fb5f6921cad4f6791ec0ec79b863e4abdc0115c15e40b3d36a07917f8ecd90503ebb208c05b1fbc7f025cf34528f96e2d
 SHA512 
44d625e488768bf25d75b7542ba2e56a6f7ca0f4bd3b836847b009235dbea9a1e7f89f6b8b5f747489559eb7539b489ac50b8adb5707da5435dfe4e9a790fd3e
-DIST genpatches-5.4-236.extras.tar.xz 1812 BLAKE2B 
acc781fb099315e4716cdddc4a7f7ec88bcfae2228fd63c6f8bc99b3f562baf75339129f6d8e5970f5a812f6523fbe316992e1bb1606d6e06e5ca769ea1b5535
 SHA512 
5d772754922bf7eb2e21eac8fd597ba8c6211565a4d96a7bda6df68e089654b908bc09cd884c6e570836814ee75c84252d26228a20d138577e7717c498edad86
 DIST genpatches-5.4-242.base.tar.xz 5610464 BLAKE2B 
54d7c2e11a6b21ed8b16d26a56ffd392f35b82e1bd4548f65c40018ee6607eaea37d791734a31abb30ee061ac85089fbaede39f1ac35c2b0f48220f266d2db17
 SHA512 
cf7d24286d88319eb872f14c3907956c1ef9e0cba4d1a86e740e9eba3a450a2060c1f03d519ac49ad97e9afefb2a32fa7e77790387819c4d60d15039c425ef28
 DIST genpatches-5.4-242.experimental.tar.xz 16892 BLAKE2B 
b331aee7d0bc2fe0f101d0548bee00f28107e73dc6904e0c23450fffc29fa062454304b20a47d31cdab55a948334cf93cb72249c6a0e9c7d4ad64c4147b5647f
 SHA512 
eb8c16686d1b80af163e31ad908587bc73cadf59b5f5533ed18620f60f6a95986a80f931757ce026d6e901b4b9ef6474e586a6bd0ef5bae9883889ea9fc26d27
 DIST genpatches-5.4-242.extras.tar.xz 1812 BLAKE2B 
d2b8f6655e540964c1c6fd81a5e74bc2e7001bf86ec8a7e8293b2088ae24ce4bd41d0eb5097011a2c9669b9ff479bc828c2f8425924c920f35193d466b4dba58
 SHA512 
8d76a855216ef7dc89babce2d35a7b6b58b641105c117e246a01a779396fdcdb6cbcf7b599683ecbfeb53df09504244cca5569b08b15a4fbe6b81b10d51c8d86

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



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

2023-05-09 Thread Mike Pagano
commit: 796499e75d2da70078dbe6a0a2312b3587955d68
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:46:13 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:46:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=796499e7

sys-kernel/gentoo-sources: drop 4.19.269

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index f7d317c3733c..d1a0a56f386f 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -10,9 +10,6 @@ DIST genpatches-4.14-324.extras.tar.xz 3652 BLAKE2B 
e5824e069c0f24d06fca7859a888
 DIST genpatches-4.14-325.base.tar.xz 6132956 BLAKE2B 
0305043d047b3472f3863bb45def7715a52b3c5fb5411e6f3b96dfda954ee2492e12c407112cf6e707ffa25cf74baad6eb951285377811bab51f8eda587fbb19
 SHA512 
5e8ef0d45690e888a62c38c87d60ff9566943be774eb795c18e492d82d425b111aa73d147285f007425cd8b60e38d40a459160e69d8ea61049aa12cf048395c8
 DIST genpatches-4.14-325.experimental.tar.xz 5708 BLAKE2B 
e97b8f8f3efe179d642ad92c988810303fe283c83c9fde2bed9a23428e5951434a5767a993d9038e220fd30082e85de7f0891b5424f7fc91a6dabc36e2ae64c6
 SHA512 
c1056ca58fa69d902e3e678aa706adfb7f248a27d005a30c1b4568c4b852908f28b6c8271b55d548f7fde0b6153cab0b1af9580ae3478cdac2dba749bdb888e1
 DIST genpatches-4.14-325.extras.tar.xz 3656 BLAKE2B 
bcdfef41a4a7cd1b75a2b6c9fbba1286f11c51a0c38c015731d3a50bb7e750e403780364a5384f093aab4a56d89e5d13574191d0637cf987d2fc5439cb29658a
 SHA512 
4eb43efbf78a49b0c6d50f68d29b686691a50025dee79322da95f91c9262f0bf172c5abcd92170d2bb13481a79b4e957bcf9edbe47f7e3e28ca534b37f456450
-DIST genpatches-4.19-268.base.tar.xz 5866076 BLAKE2B 
eab0f67b6ddc72c7d9ccd8073bf51ebc3998bbf6177973def77d0241f32e6a204fc14fcd2d58c31ebbb5492fab2aff12f96c64592dc611475c8dffcaba9faa9c
 SHA512 
0e501a12d97dcd8b9408e7c65eaa262d45a23b7db522054744749d219a0938f8306f88b3a11bc0715e29d8742a7168c4c89ba92a5fea03b32c997d582d54a8c3
-DIST genpatches-4.19-268.experimental.tar.xz 5460 BLAKE2B 
ff1b65fd218a0ac88f1f48be2a6f21aaa5a01f0609df74518ba34b42ca724ca7bc2fbe3841c1454db454162e7393a40cfaadefcf0faa150b41a1439ce260a9c2
 SHA512 
1812f45899972d821531843c294b34629396ac08eaac88fd26e229594690ebb64c80b139dde6aef1f3ecd904b7d75c9b56ea00d65f5076dd472dda0cf173f431
-DIST genpatches-4.19-268.extras.tar.xz 3664 BLAKE2B 
9a4401bb3e2d7b14a968af60f9e4a6ae6fb9a75cb76e7de340414de20a11040ddfabf6441f7b40a27df34703a9a6f659797aec3a4a17d75e9ccc404f235073ad
 SHA512 
9b58c6b5d7899443b20a42747f0e5b3b18016eaff75b9014960c5d72bfa93cfb988284a1474d051ac8e26331c8ec75b99c1f84df7b07cadc071d969f9981e77e
 DIST genpatches-4.19-271.base.tar.xz 5989708 BLAKE2B 
9eca4753ae1b6b6afde7b16b99777915d5ca7ad135a3217ef15741bdb2e4fe31bc753c034825d7211cbd20781eb00f9780186ef850099af4eeca6d1bfece79bf
 SHA512 
1ce0b8391208e503d007dbd8a6c5fb405029beb8a608061fb668c54d25fa518c32d1e621d09e51b6e2bb94347de013e688ecb94e9d39b0a80b0863b7aa48bd0c
 DIST genpatches-4.19-271.experimental.tar.xz 5460 BLAKE2B 
d6043d96630852e64fdb198c3aeda233ea4a07460a10f89073c464ad540fd20ec7aba23b61e8e6c3b3ad0006c26354ba4cedeccd11c8d792797170e69aad110d
 SHA512 
966221b204e5c6b6cfcc95fa0a57c5ecb6e5590f83688130df915617eaa9568c0bba5368f3b61fa96dde5fa2ebf7c7587b09e35606e94bba424e9bde0312abd0
 DIST genpatches-4.19-271.extras.tar.xz 3664 BLAKE2B 
0b2b62aadeb139aea2506801470f7d785a9024a2b6d2c8e3ddbfa964f5a55c17aa3c6ea5055773ca8645af8425242ff65fe21d0072c61ec45dbd58a1ba4b7dea
 SHA512 
5ab1aac755ba5bf45fa6fc962283d057bde7350856933e2579df0236a845cc40749a59b14b08c5b0c08289d7c8059d7a64b3dee24e7ee06ad32a89173076

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



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

2023-05-09 Thread Mike Pagano
commit: 0f5068f8b6e8b2dffc3a304ccae1a1d8cd0457d7
Author: Mike Pagano  gentoo  org>
AuthorDate: Tue May  9 17:46:31 2023 +
Commit: Mike Pagano  gentoo  org>
CommitDate: Tue May  9 17:46:36 2023 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f5068f8

sys-kernel/gentoo-sources: drop 4.19.279

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

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

diff --git a/sys-kernel/gentoo-sources/Manifest 
b/sys-kernel/gentoo-sources/Manifest
index 87964fbe7c79..6e33a1d77fd1 100644
--- a/sys-kernel/gentoo-sources/Manifest
+++ b/sys-kernel/gentoo-sources/Manifest
@@ -13,9 +13,6 @@ DIST genpatches-4.14-325.extras.tar.xz 3656 BLAKE2B 
bcdfef41a4a7cd1b75a2b6c9fbba
 DIST genpatches-4.19-276.base.tar.xz 6166728 BLAKE2B 
03ccc9b8686204bd26971c7af290e193bb881f682085ee67d9b749892aae985623d4b2ddc2af72192caac779468d1639146e9374ea0e0484fa6c77be677386f9
 SHA512 
edf8235e6f27c74ef01bb74140574e3bd4724a542613e6d786b47a71afcfebd43118baa5ed3296279757320b4238fe6d09b579b338e557b2e3a4eee1880a7019
 DIST genpatches-4.19-276.experimental.tar.xz 5460 BLAKE2B 
bb20b38dfbc5e292489f51e85f047a2b0e059cb9cf04f58975606d091cb8a9c5a5f7aee8c735343c2dd3a0023a2171afe6a8dc2edaed94b402f49e8b02f49e2f
 SHA512 
79ddc05e3a93380e75a5ba1c9cd7ae5f80af8555a76ad1861fdece808f90b176e5bc18c6aa2dc73cab6fa3efe70559f3226790c659eeff4ad6004c83f527062c
 DIST genpatches-4.19-276.extras.tar.xz 3664 BLAKE2B 
59f4c4945347ec5b7e59f48512231ec9d74d57ba6f44aa7d04bb8906bfbf3606978563fdbe4c33abdfc7f670aba047fae9a9b11ddb9df8e27f8c3371260833fc
 SHA512 
095b910331971efcb56a059977417205d4e3c4c08cb28a5c8f872b64e44e42d977eb5c1ee540acff34a7d62cbbf29076de1e4849a62b8e47bf36aacd07c450f8
-DIST genpatches-4.19-278.base.tar.xz 6179164 BLAKE2B 
c303d6a872bcad21273d8082dc15b3830cc833ce775efb17fb827b0b421589c25617a17fdce414fa80c34d51e306fac393b87db05897d6582abc665fea8d5e9d
 SHA512 
6b9cb26dc37b4f693edfb0ccd72eb128b708396fd6b5c71145f64c715c40cc54aaf0baa20d2ffd7e5f848e2767cb3970dbb32c96043968658b946114cbf47236
-DIST genpatches-4.19-278.experimental.tar.xz 5460 BLAKE2B 
ce8b1928e6d3517e2c91f57e2dcc17ba6046a4cb6c3d0b3ce1974a6bf3ff59aae4073de9050f1edd9c27128d46cfb293fdf879479db05c37b4e9e91ca4fb17c9
 SHA512 
b2ad9f4d90cb33d50daf9712ce70077f2ab8f84c4e231bd804fd8903dc9500ed32814b9bc606bd029af60071fd251a1e73c738b51f9281e710f58fab6afa3c0b
-DIST genpatches-4.19-278.extras.tar.xz 3664 BLAKE2B 
9aacf89a42b370273d665ca13d26249a0fb10d12ec5b66a703c92e2659ad3aac9d7d664853d15055f67f99088f74a7254c24bd676cba24955c667528f66ff776
 SHA512 
eb9cb4578db4fe5ebc1d7b3c03fb265cf02542c8cc7908a7e5eb67bab702e7ec23441c2c9d571c7aa4e6b2a4db8506e6840313c230643e9ad212b32f8bae6e4e
 DIST genpatches-4.19-280.base.tar.xz 6308720 BLAKE2B 
0066f299ffac1bf0be59a1e2f73edbcfe13cb3d053b4039a803bc2eb2038f94585eb5d6b15c986d98fb34352df4d9053bf0e48feee13ba7ac5bf98d360a3bb80
 SHA512 
a78d43dd7aa92847d1520fb171910ba304e182adbe630c2aac256bd116140eb88ebbce2383462e2aaa44b70b7b04c17fd98fb908142d4317f6d923bd8cf95f49
 DIST genpatches-4.19-280.experimental.tar.xz 5460 BLAKE2B 
2cf5f300fd0decdabb8942a9f924314330fcb1305759ea5982bf9e1602d5c04aeeb5c6d9f569e89262d4c803864b49d26686decd705b093c798b100f0f0b559a
 SHA512 
509ae809bb54a9f0b993782406df4f1878a51589a5c9bf3742acb262bbbf9ad94a0d214db93673018811acf1e3d2903901b903c4896941e17b9c18f74fa7906c
 DIST genpatches-4.19-280.extras.tar.xz 3664 BLAKE2B 
61770899b1f723187e8bd891d8552c9d7e6fcb3154564c006e7be7f2488395b10617387e80347dc4560db571db9a182e003a9fdf41477dfa2cab234a3a103e74
 SHA512 
267e9869a4365c815151342005c1232916cc26ab176275ebf93fc0c686d47f30f243dc93f03ae46cde202d1b30265dc9a2d92ae134b82f2796658da84b6fde7a

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



  1   2   3   >