[gentoo-commits] repo/gentoo:master commit in: games-emulation/mgba/

2022-07-20 Thread Ionen Wolkens
commit: 5a0aeb73d527c2d2974a6277e7ee8c31d533cb9b
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:07:55 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5a0aeb73

games-emulation/mgba: drop 0.9.2

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

 games-emulation/mgba/Manifest  |   1 -
 games-emulation/mgba/mgba-0.9.2.ebuild | 128 -
 2 files changed, 129 deletions(-)

diff --git a/games-emulation/mgba/Manifest b/games-emulation/mgba/Manifest
index 66f20622393a..04860f9d3a06 100644
--- a/games-emulation/mgba/Manifest
+++ b/games-emulation/mgba/Manifest
@@ -1,2 +1 @@
-DIST mgba-0.9.2.tar.gz 12761919 BLAKE2B 
f0f3ca5f47d38c8018541426a229d52a2ebc9e47dc07fe4b739bde3f7ef2a4d75e6db5ca5f8dfaee01ae9648035f24c9d02556078b0b5eb51aefecfc9305432d
 SHA512 
ea9868c104996c44a2fcfdf9d3f4d6177b853dec478ab7a2dd19a0f127b597a887150200bfbf14de593328217ff5493ca675bfcb4f0b2ee6a5097e0cdf0e2997
 DIST mgba-0.9.3.tar.gz 12763090 BLAKE2B 
7d9ff6fc7bdff5d734540b74893a888d400b4bb6e1ce5b3b2a856239db8798ac76b8535dc770330d0451e2568a6d402558eeef27d643c0d5d3454441f45cf09b
 SHA512 
da65b3c7ec32d732163f129c4fd38949ae2da2980beb3257bf6def5e35534a27b6d30309bb3c9a8d651642f99e1a45db7a8577c8dbf5472153d4551167471b3a

diff --git a/games-emulation/mgba/mgba-0.9.2.ebuild 
b/games-emulation/mgba/mgba-0.9.2.ebuild
deleted file mode 100644
index 971993505d7e..
--- a/games-emulation/mgba/mgba-0.9.2.ebuild
+++ /dev/null
@@ -1,128 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake desktop xdg
-
-DESCRIPTION="Game Boy Advance emulator written in C"
-HOMEPAGE="https://mgba.io;
-if [[ "${PV}" ==  ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/mgba-emu/mgba.git;
-else
-   MY_PV="${PV/_beta/-b}"
-   SRC_URI="https://github.com/${PN}-emu/${PN}/archive/${MY_PV}.tar.gz -> 
${P}.tar.gz"
-   [[ "${PV}" == *_beta* ]] || \
-   KEYWORDS="amd64 ~arm64 x86"
-   S="${WORKDIR}/${PN}-${MY_PV}"
-fi
-LICENSE="MPL-2.0"
-SLOT="0"
-IUSE="debug discord elf ffmpeg gles2 gles3 opengl qt5 +sdl sqlite"
-REQUIRED_USE="|| ( qt5 sdl )
-   qt5? ( opengl )"
-
-RDEPEND="
-   media-libs/libpng:0=
-   sys-libs/zlib[minizip]
-   debug? ( dev-libs/libedit )
-   elf? ( dev-libs/elfutils )
-   ffmpeg? ( media-video/ffmpeg:= )
-   opengl? ( media-libs/libglvnd )
-   qt5? (
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtmultimedia:5
-   dev-qt/qtwidgets:5
-   opengl? ( dev-qt/qtopengl:5 )
-   )
-   sdl? ( media-libs/libsdl2[X,sound,joystick,video,opengl?] )
-   sqlite? ( dev-db/sqlite:3 )
-"
-DEPEND="${RDEPEND}
-   gles2? ( media-libs/libglvnd )
-   gles3? ( media-libs/libglvnd )
-"
-
-src_prepare() {
-   xdg_environment_reset
-   cmake_src_prepare
-
-   # Get rid of any bundled stuff we don't want
-   local pkg
-   for pkg in libpng lzma sqlite3 zlib ; do
-   rm -r src/third-party/${pkg} || die
-   done
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DCMAKE_SKIP_RPATH=ON
-   -DBUILD_GL="$(usex opengl)"
-   -DBUILD_GLES2="$(usex gles2)"
-   -DBUILD_GLES3="$(usex gles3)"
-   -DBUILD_PYTHON=OFF
-   -DBUILD_QT="$(usex qt5)"
-   -DBUILD_SDL="$(usex sdl)"
-   -DBUILD_SHARED=ON
-   # test suite fails to build (>=0.6.0)
-   -DBUILD_SUITE=OFF
-   -DBUILD_TEST=OFF
-   -DM_CORE_GB=ON
-   -DM_CORE_GBA=ON
-   -DUSE_DEBUGGERS="$(usex debug)"
-   -DUSE_DISCORD_RPC="$(usex discord)"
-   -DUSE_EDITLINE="$(usex debug)"
-   -DUSE_ELF="$(usex elf)"
-   -DUSE_EPOXY=OFF
-   -DUSE_FFMPEG="$(usex ffmpeg)"
-   -DUSE_GDB_STUB="$(usex debug)"
-   -DUSE_LIBZIP=OFF
-   -DUSE_LZMA=OFF
-   -DUSE_MINIZIP=ON
-   -DUSE_PNG=ON
-   -DUSE_SQLITE3="$(usex sqlite)"
-   -DUSE_ZLIB=ON
-   )
-   cmake_src_configure
-}
-
-src_compile() {
-   cmake_src_compile
-}
-
-src_install() {
-   if use qt5 ; then
-   dobin "${BUILD_DIR}"/qt/${PN}-qt
-   doman doc/${PN}-qt.6
-   domenu res/${PN}-qt.desktop
-   for size in 16 24 32 48 64 96 128 256 ; do
-   newicon -s ${size} res/${PN}-${size}.png ${PN}.png
-   done
-   fi
-   if use sdl ; then
-   doman doc/${PN}.6
-   newbin "${BUILD_DIR}"/sdl/${PN} ${PN}-sdl
-   fi
-
-   dolib.so "${BUILD_DIR}"/lib${PN}.so*
-}
-
-pkg_preinst() {
-   if use qt5 ; then
-   

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

2022-07-20 Thread Ionen Wolkens
commit: f45f5656a0deef670b6ee3e53223b518765ae59d
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:09:24 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f45f5656

dev-libs/d0_blind_id: drop 1.0

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

 dev-libs/d0_blind_id/Manifest   |  1 -
 dev-libs/d0_blind_id/d0_blind_id-1.0.ebuild | 54 -
 2 files changed, 55 deletions(-)

diff --git a/dev-libs/d0_blind_id/Manifest b/dev-libs/d0_blind_id/Manifest
index 0ced04afd21a..91bcca828edd 100644
--- a/dev-libs/d0_blind_id/Manifest
+++ b/dev-libs/d0_blind_id/Manifest
@@ -1,2 +1 @@
-DIST d0_blind_id-1.0.tar.gz 49110 BLAKE2B 
1977bb9c71d6655e8a84aab9daf5aee470ac3f3e140e7beff3555a41a81baebab5e4e5019b0550594b8c6e8b936706bb9790e5e3171c1348abf3212349d07109
 SHA512 
dbee0bec44a008a6843ec367211e4cdfa25f6c4577b48d942d19301d5ff885d4fde8d40ea304a114d349d8e90283a50854afb2fb322bf19640842ded025849f2
 DIST d0_blind_id-1.0_p20201124.tar.gz 49380 BLAKE2B 
7ab544c512a720165d26b637e63825c09e5a8628f84eaf43663cef0f9b0a8655437438560da288179141bb7314e89f53c7e4725957b2b4b5973174340527b33a
 SHA512 
72cec41e88302cb8ea8bc5b2e115e4b2939475ca2c6e1e3cf8e90d2fde99c8ab1c1ae7c18e804b9c19549e4d331fda8c46a1e6ca4d0057742c6d71298dca96f8

diff --git a/dev-libs/d0_blind_id/d0_blind_id-1.0.ebuild 
b/dev-libs/d0_blind_id/d0_blind_id-1.0.ebuild
deleted file mode 100644
index f44ecf9b3de1..
--- a/dev-libs/d0_blind_id/d0_blind_id-1.0.ebuild
+++ /dev/null
@@ -1,54 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="Blind-ID library for user identification using RSA blind 
signatures"
-HOMEPAGE="http://git.xonotic.org/?p=xonotic/d0_blind_id.git;a=summary;
-SRC_URI="https://github.com/divVerent/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="BSD"
-SLOT="0"
-KEYWORDS="amd64 ~arm64 x86"
-IUSE="static-libs"
-
-RDEPEND="dev-libs/gmp:0"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-"
-
-DOCS=( d0_blind_id.txt )
-
-PATCHES=(
-   "${FILESDIR}/${P}-slibtool.patch"
-)
-
-src_prepare() {
-   default
-
-   # fix out-of-source build
-   sed -i \
-   -e 's, d0_rijndael.c, "$srcdir/d0_rijndael.c",' \
-   configure.ac || die
-
-   eautoreconf
-}
-
-src_configure() {
-   local myeconfargs=(
-   --enable-rijndael
-   --without-openssl
-   --without-tfm
-   --without-tommath
-   $(use_enable static-libs static)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-   find "${ED}" -name "*.la" -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: games-emulation/hatari/

2022-07-20 Thread Ionen Wolkens
commit: a2933bed270adb50aa175545b95a39fafb76cf89
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:05:59 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2933bed

games-emulation/hatari: drop 2.3.1-r1

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

 games-emulation/hatari/Manifest   |  1 -
 games-emulation/hatari/hatari-2.3.1-r1.ebuild | 95 ---
 games-emulation/hatari/metadata.xml   |  1 -
 3 files changed, 97 deletions(-)

diff --git a/games-emulation/hatari/Manifest b/games-emulation/hatari/Manifest
index f7f9aabf405e..f7f6ebc198a6 100644
--- a/games-emulation/hatari/Manifest
+++ b/games-emulation/hatari/Manifest
@@ -1,2 +1 @@
-DIST hatari-2.3.1.tar.bz2 4334129 BLAKE2B 
f309a31cbf181135b02858ebefa4d70116e66d252ef5de03cffa8254c0e86e4eeebfbf626613103790fb803d08028b318721020b292ea748c79e4d008e6d503d
 SHA512 
78a6c7d80bfcd9b3a85a82754f4180cfd906eb95c6a44c8fbb92c2a648dc9c21c74c9dd18db4783d87259a3061b39e639c54cdd6c033d83de1252afef811382f
 DIST hatari-2.4.0.tar.bz2 4452205 BLAKE2B 
fe53b4dac688720372386fc83a83996e2cc83d74fd20f71db5e60f773561dc51d33f3560c1625913a896a9592650460604e821c9f7f07e5bd50d1775b49dfea5
 SHA512 
8ec542b2f7e27cd185ff8725e8d31ba7f1de709fa638b6162d17b6f1163158cbd16fc2738aa6b073a71cd990a72f305b5322f754faef34399cdca8685a7bf08c

diff --git a/games-emulation/hatari/hatari-2.3.1-r1.ebuild 
b/games-emulation/hatari/hatari-2.3.1-r1.ebuild
deleted file mode 100644
index 874bf6b1be3e..
--- a/games-emulation/hatari/hatari-2.3.1-r1.ebuild
+++ /dev/null
@@ -1,95 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit cmake python-single-r1 xdg
-
-DESCRIPTION="Atari ST emulator"
-HOMEPAGE="https://hatari.tuxfamily.org/;
-SRC_URI="https://download.tuxfamily.org/hatari/${PV}/${P}.tar.bz2;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="X capsimage gui microphone png portmidi readline udev zlib"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-COMMON_DEPEND="
-   media-libs/libsdl2[X?,joystick,sound,video]
-   X? ( x11-libs/libX11 )
-   capsimage? ( >=dev-libs/spsdeclib-5.1-r1 )
-   microphone? ( media-libs/portaudio )
-   png? ( media-libs/libpng:= )
-   portmidi? ( media-libs/portmidi )
-   readline? ( sys-libs/readline:= )
-   udev? ( virtual/udev )
-   zlib? ( sys-libs/zlib:= )"
-RDEPEND="
-   ${PYTHON_DEPS}
-   ${COMMON_DEPEND}
-   gui? (
-   $(python_gen_cond_dep 
'dev-python/pygobject:3[${PYTHON_USEDEP}]')
-   x11-libs/gtk+:3[introspection]
-   )
-   >=games-emulation/emutos-1.1.1"
-DEPEND="
-   ${COMMON_DEPEND}
-   X? ( x11-base/xorg-proto )"
-BDEPEND="${PYTHON_DEPS}"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-caps5-include-path.patch
-   "${FILESDIR}"/${P}-cmake-include-checksym.patch
-)
-
-DOCS=(
-   readme.txt
-   doc/{bugs,changelog,scsi-driver,thanks,video-recording}.txt
-)
-
-src_prepare() {
-   cmake_src_prepare
-
-   sed -i "s/\.1\.gz\b/.1/g;T;s/gzip[^\$]*/cat /g" {*/,}*/CMakeLists.txt 
|| die
-   sed -i "s:doc/${PN}:doc/${PF}:" python-ui/uihelpers.py || die
-   # Note: >2.3.1 renames /python/ to /python3/, update accordingly
-   sed -i "s/python/${EPYTHON}/;s/dosfs/fs.fat/" tools/atari-hd-image.sh 
|| die
-
-   # Use emutos package rather than bundled ROM.
-   rm src/tos.img || die
-   cat <<-EOF > hatari.cfg || die
-   [ROM]
-   szTosImageFileName = ${EPREFIX}/usr/share/emutos/etos1024k.img
-   EOF
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DBUILD_SHARED_LIBS=OFF
-   -DDOCDIR="${EPREFIX}"/usr/share/doc/${PF}
-   -DETCDIR="${EPREFIX}"/etc
-   $(cmake_use_find_package X X11)
-   $(cmake_use_find_package capsimage CapsImage)
-   $(cmake_use_find_package microphone PortAudio)
-   $(cmake_use_find_package png PNG)
-   $(cmake_use_find_package portmidi PortMidi)
-   $(cmake_use_find_package readline Readline)
-   $(cmake_use_find_package udev Udev)
-   $(cmake_use_find_package zlib ZLIB)
-   $(usev !gui -DPYTHON_EXECUTABLE=false) # disables python-ui/
-   )
-
-   cmake_src_configure
-}
-
-src_install() {
-   cmake_src_install
-
-   insinto /etc
-   doins hatari.cfg
-
-   python_fix_shebang "${ED}"/usr/bin
-   use gui && python_fix_shebang "${ED}"/usr/share/${PN}/${PN}ui
-}

diff --git a/games-emulation/hatari/metadata.xml 
b/games-emulation/hatari/metadata.xml
index e85494419618..8f24f9114b50 100644
--- a/games-emulation/hatari/metadata.xml
+++ b/games-emulation/hatari/metadata.xml
@@ -7,7 +7,6 @@


Use dev-libs/spsdeclib to 
read 

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

2022-07-20 Thread Ionen Wolkens
commit: 055069a7dbe30fe471760e969ec4caf454e1b705
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:07:18 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=055069a7

sys-fs/inotify-tools: drop 3.20.2.2

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

 sys-fs/inotify-tools/Manifest  |  1 -
 sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild | 41 --
 2 files changed, 42 deletions(-)

diff --git a/sys-fs/inotify-tools/Manifest b/sys-fs/inotify-tools/Manifest
index ddce5122eb32..f30e8b03f648 100644
--- a/sys-fs/inotify-tools/Manifest
+++ b/sys-fs/inotify-tools/Manifest
@@ -1,2 +1 @@
-DIST inotify-tools-3.20.2.2.tar.gz 81006 BLAKE2B 
7dd29985f68096fe2146a3ad84d619b3d1238b0db25eeb125f2fe9591fa678078351f00c7e09b526cf2251e4736201d5625ff0e477523cae370a307ccb667730
 SHA512 
72d6fdcc216d8083cd384c71c02dc8e800d3a9702613568b3c571f704aee3d42bf084c52f2141c9afb8d28e8b87ebb6391ed3d825b3d664ed51c552debeb1881
 DIST inotify-tools-3.22.6.0.tar.gz 92918 BLAKE2B 
601d3ac6896e445d297a04498c63df4f81c59699ba2d5b2eee2e8c499332913ce2783d13c9906d577ff0b6d7ef91ca826d48b01674adeb3d3569dfc1fbc0df63
 SHA512 
cda445add4b9d80b70eff9189ed50d05f4b5593a755159d0354431166c6fe6fdb33f7bf37fd50bc09aad3ed0a6e3763b9c74f65e554400f2596b8d492f1d0a21

diff --git a/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild 
b/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild
deleted file mode 100644
index 22720914efb2..
--- a/sys-fs/inotify-tools/inotify-tools-3.20.2.2.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools
-
-DESCRIPTION="a set of command-line programs providing a simple interface to 
inotify"
-HOMEPAGE="https://github.com/inotify-tools/inotify-tools;
-SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~mips sparc x86"
-IUSE="doc"
-
-BDEPEND="doc? ( app-doc/doxygen )"
-
-src_prepare() {
-   default
-
-   # Remove -Werror from CFLAGS (#745069)
-   find -name "Makefile.am" -print0 \
-   | xargs --null sed 's@ -Werror@@' -i || die
-
-   eautoreconf
-}
-
-src_configure() {
-   # only docs installed are doxygen ones, so use /html
-   local myeconfargs=(
-   --docdir='$(datarootdir)'/doc/${PF}/html
-   $(use_enable doc doxygen)
-   )
-   econf "${myeconfargs[@]}"
-}
-
-src_install() {
-   default
-   find "${ED}" \( -name '*.a*' -o -name '*.la' \) -delete || die
-}



[gentoo-commits] repo/gentoo:master commit in: games-engines/devilutionx/files/, games-engines/devilutionx/

2022-07-20 Thread Ionen Wolkens
commit: 9646f579b1acb2f1a089800dafd997cac7587aaa
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:04:39 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9646f579

games-engines/devilutionx: drop 1.2.1-r1

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

 games-engines/devilutionx/Manifest |  1 -
 .../devilutionx/devilutionx-1.2.1-r1.ebuild| 72 --
 .../devilutionx-1.2.0_pre-no_bundled_font.patch| 40 
 .../files/devilutionx-1.2.1-disable-ccache.patch   | 16 -
 games-engines/devilutionx/metadata.xml |  1 -
 5 files changed, 130 deletions(-)

diff --git a/games-engines/devilutionx/Manifest 
b/games-engines/devilutionx/Manifest
index c0aa8501e30f..f2549f29e76a 100644
--- a/games-engines/devilutionx/Manifest
+++ b/games-engines/devilutionx/Manifest
@@ -1,2 +1 @@
-DIST devilutionx-1.2.1.tar.gz 3573200 BLAKE2B 
c3055bfa8ae0a670e21561673e23277fb76e2b24d269fdd86d13510f68a0e841ec96ab06cf98739913870884d82037b5297ce168e6cba1f8795de6ea72620649
 SHA512 
9327b127d0ad22d640b1a13fad9bfa00ba0fc512dd7ed362a9e84a80278d84634cd039cba7c98f15425715b11a35dc6ac07d75c816c3cbc818e6ab8c4437cf18
 DIST devilutionx-1.4.0.tar.xz 19752052 BLAKE2B 
3a79e9d88cc2f5623dfd7d4ad2a0a547361cde8d95197be36dc7076e0b56fa1a915c57bf5537f5e4508201c3b5a283ab90d13db93b3836b0f12c6108abf1578a
 SHA512 
9519c0bd52798f35fc986fab867b0005010f089b35200b5d54b7ed94145c2df54270a570cd3b0ff1c260f645d624a145e3581d744b48ae513919eb2258331bcf

diff --git a/games-engines/devilutionx/devilutionx-1.2.1-r1.ebuild 
b/games-engines/devilutionx/devilutionx-1.2.1-r1.ebuild
deleted file mode 100644
index 2a2abba3eba0..
--- a/games-engines/devilutionx/devilutionx-1.2.1-r1.ebuild
+++ /dev/null
@@ -1,72 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# Sometimes build with ninja fails.
-# Please check occasionally if we can revert back to ninja.
-# Latest known issue:
-#
-#CMAKE_MAKEFILE_GENERATOR="emake"
-
-inherit cmake
-
-DESCRIPTION="Diablo engine for modern operating systems"
-HOMEPAGE="https://github.com/diasurgical/devilutionX;
-if [[ "${PV}" ==  ]] ; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/diasurgical/devilutionX.git;
-else
-   
SRC_URI="https://github.com/diasurgical/devilutionX/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
-   S="${WORKDIR}/devilutionX-${PV}"
-fi
-
-LICENSE="public-domain"
-SLOT="0"
-
-IUSE="debug lto"
-
-RDEPEND="
-   dev-libs/libsodium:=
-   media-fonts/sil-charis
-   media-libs/libsdl2[haptic]
-   media-libs/sdl2-mixer
-   media-libs/sdl2-ttf
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   "${FILESDIR}/${PN}-1.2.0_pre-no_bundled_font.patch" #704508
-   "${FILESDIR}/${PN}-1.2.1-disable-ccache.patch" #813768
-)
-
-DOCS=( docs/CHANGELOG.md )
-
-src_configure() {
-   local mycmakeargs=(
-   -DASAN="OFF"
-   -DDEBUG="$(usex debug)"
-   -DDISABLE_LTO="$(usex !lto)"
-   # Must be off to force dynamic linking.
-   # See bug #791031
-   -DDIST="OFF"
-   -DUBSAN="OFF"
-   )
-
-   if [[ "${PV}" !=  ]] ; then
-   mycmakeargs+=( -DVERSION_NUM="${PV}" )
-   fi
-
-   cmake_src_configure
-}
-
-pkg_postinst() {
-   einfo "In order to play the game you need to install the file"
-   einfo "  diabdat.mpq"
-   einfo "from the original game CD into the following directory:"
-   einfo "  \${HOME}/.local/share/diasurgical/devilution/"
-}

diff --git 
a/games-engines/devilutionx/files/devilutionx-1.2.0_pre-no_bundled_font.patch 
b/games-engines/devilutionx/files/devilutionx-1.2.0_pre-no_bundled_font.patch
deleted file mode 100644
index 01f4006dd13f..
--- 
a/games-engines/devilutionx/files/devilutionx-1.2.0_pre-no_bundled_font.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 6e75bb9550bd8b4c6249fcfc0cd488224336060e Mon Sep 17 00:00:00 2001
-From: Lars Wendler 
-Date: Wed, 31 Mar 2021 17:55:03 +0200
-Subject: [PATCH] Fix font location
-
-https://bugs.gentoo.org/704508

- SourceS/paths.cpp  | 2 +-
- SourceX/DiabloUI/fonts.cpp | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/SourceS/paths.cpp b/SourceS/paths.cpp
-index dd60fcb5..1c4f9d69 100644
 a/SourceS/paths.cpp
-+++ b/SourceS/paths.cpp
-@@ -11,7 +11,7 @@
- #endif
- 
- #ifndef TTF_FONT_NAME
--#define TTF_FONT_NAME "CharisSILB.ttf"
-+#define TTF_FONT_NAME "sil-charis/CharisSIL-B.ttf"
- #endif
- 
- namespace dvl {
-diff --git a/SourceX/DiabloUI/fonts.cpp b/SourceX/DiabloUI/fonts.cpp
-index 178dcbe9..5f825886 100644
 a/SourceX/DiabloUI/fonts.cpp
-+++ b/SourceX/DiabloUI/fonts.cpp
-@@ -66,7 +66,7 @@ void LoadTtfFont()
-   std::string 

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

2022-07-20 Thread Ionen Wolkens
commit: dbef965151affea4ce357235a1034758bc2475bf
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:10:03 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dbef9651

app-emulation/ruffle: drop 0_p20220630

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

 app-emulation/ruffle/Manifest  |   2 -
 app-emulation/ruffle/ruffle-0_p20220630.ebuild | 507 -
 2 files changed, 509 deletions(-)

diff --git a/app-emulation/ruffle/Manifest b/app-emulation/ruffle/Manifest
index d2b58f6b1958..183278ff7428 100644
--- a/app-emulation/ruffle/Manifest
+++ b/app-emulation/ruffle/Manifest
@@ -324,7 +324,6 @@ DIST rfd-0.9.1.crate 37569 BLAKE2B 
5bf6f5f4ac833fc4113fbc218c16e1bfab31320c83097
 DIST rle-decode-fast-1.0.3.crate 62086 BLAKE2B 
402d56595936734f36597c18e816a798ade6a8636b27e79acdedd4069da38e22e6ded5f2358ef0f0d509ea752e828fa294a4a9ac6d99cf26472fe21a505302c9
 SHA512 
f647cfd9ae0bbaca4a189cd1f8d1f8531f6dc0ffa1fd296c75cfe405fc9060e25be74581558a9195364ea90e32c7ccd60e066d21704cae836d41606b5799301a
 DIST ron-0.7.0.crate 45492 BLAKE2B 
adff53e8db8fc8c2288c0803b22cf064334596697a8278e51a5f0d1d2e48e69e02e377a735b30dec78a0b896ff55dffd8b4748cb305f06b08a64ddd2e319e8dc
 SHA512 
1d690def70a47df838c69c042fd183037ca1b6becf2e013d9c30944e2d77b89249c22fdcb286a720c0ee181051b8ea19f62971ef3762f63fc121570d8fdd7fbf
 DIST ruffle-nightly-2022-05-16.tar.gz 8422146 BLAKE2B 
045084aa8fa6c67084b54712e82c82505533b1ffacefd8c000208a3cd8ea2869d070f1baa68079e72a2e6f13c56a11fee4449755a75021690f424a2a3ebe2a2c
 SHA512 
8b50325a7f0fbe8546e10abef1d802f75ef0328699e2112b59c11f42642f3f596a0e4278f9a749170998ec194c45f61d5f48d8237def05820bf70df445a3b544
-DIST ruffle-nightly-2022-06-30.tar.gz 9700086 BLAKE2B 
9817be087c9cc48045748b7cc5730a0d142e0e179eb1aad488bc05d86b868690781a6cac2744c44a8994dfce89ea71b2f20392209310d3e501ee91faeea52723
 SHA512 
988995852946cc3cc6b0832083ea2007f6debbb50bce161491ff7bc8993c78d0b3027c1acce5cfd9c92cd0d3ac2e33f37708737727a6b0726104831d0bd9958a
 DIST ruffle-nightly-2022-07-16.tar.gz 9719082 BLAKE2B 
251c5baa7131c0dd7dd760b89314b1993c9f68a154b05f3fefd9051d48aaa4983e4ff8a27dee341e1c9bc32a8acae225b6fee6b78f5b8147444c00811ceffbfe
 SHA512 
4f92b6e4bf07266a2ec58e9408eecf6aa4ebb0d0ccb8287f7d045489dff79b66774cb9123a0be80c619d5a26ea6e712c38d02e2b2dd40867e51af21acfe260b0
 DIST rust-flash-lso-19fecd07b9888c4bdaa66771c468095783b52bed.tar.gz 676612 
BLAKE2B 
3c2ff3edef1aad8e6276758fd3bac85106fa9a445180c9c7d954d5b4e469751b9a14e1cc8c3bc4736a410f5e1478eb821395b8f0a1acb0e5dca1082155b0690f
 SHA512 
6f668066999d3454d255d227167ef92e8fcf5755017617439fc227d53c5b8169a7c585857bed4879991e8cab0a6efb4ee04eca3e1b7e01bfaaa4cab70af30d3a
 DIST rustc-hash-1.1.0.crate 9331 BLAKE2B 
16ac56622897f47a06b661fb59a196b08d48e782ab87549c8bd5c6fe92f374c9bfd44dcb36588512bd9b6125c2fd79a12d648aaa308fd9694bcca3a7c1b49ac9
 SHA512 
84e673ea9b046f7b989d47f2c4505557fbd5de991e6fc9f56a03605d40e0b4ba5427cd566954890153cc033ccbec6c984306634571935bfe0d4cdfbe56f39544
@@ -353,7 +352,6 @@ DIST slice-deque-0.3.0.crate 56827 BLAKE2B 
62971bffbb7ea9f9de069ea6af1d1f41e5288
 DIST slotmap-1.0.6.crate 58954 BLAKE2B 
b00f328a8ac4738bfa4f0bc25ac7ef91fba9d5006d4806a351d21119f23c98d39c5120c2fee0a622b8229abea6dd9a08a3ebd7a34a8a64ba172c2d6f9c53b2cc
 SHA512 
1e0fad77d39cf937fbbf32913595e836b9d8067a81e8ad9a6653cdea023f2c8ce511c0216a1222c056e57419cdfd56977af7a6e83a9cc8b5708310a17353b145
 DIST sluice-0.5.5.crate 6960 BLAKE2B 
0a1ed02c2e0f3f8a90afa1e851cbd6e352881ba00fd4ef824b0768b6ec19a9eca959fa7c215ad4d6ebc8f103f5508766648004bbd897706bb44b98884627af4a
 SHA512 
d0a85db370a921f0591d63a5a78fffedc4c97e5a68915c86753dfb7798cf120542b1fc3193e093655442b34502ce6cadc799b25e39e26c122683e26ebd0383b3
 DIST smallvec-1.8.0.crate 27992 BLAKE2B 
d02897eb4d3901805be86cafd5d3dc6768b31c2ee4d0a9d7eb455e2a21be2864ea83589f4ffde102dbbafb66e3c197707af770b5ef184b8e244d992189644b84
 SHA512 
17687cfa6aaf95a1df063adc3a412a7c41918a0d003eaac90f7d9e859fb8fa1d652eedee17a4cb3aaae9b33a2043f89e796519e3a7a3992b292f04049bf80b0c
-DIST smallvec-1.8.1.crate 28295 BLAKE2B 
c776b37e8cda81fe1df6ace794739b7e0cb1e3c5d5c1ffa57656ef0c0d0aec354c2c93ae23ff895996ab50a26ced28b913fab89ced27cb2f1d15568ab45957c7
 SHA512 
e93cbce48b81fe1a26d6016ad15b27ede8ae7162933e8923d3eb9c93f61910fee177c1aff16a1dd60c9917e41f8b7e474601a60c6d6d6867ef33c6d2e5fdf688
 DIST smallvec-1.9.0.crate 28396 BLAKE2B 
b04100f0a8db9e7c34a425e665242772c9857c5a4c5f34468a3f1b14f669d5cd21de2d54dc5295a22f52032370e8e989fc61cea3f4e6574ccca5be639c645e74
 SHA512 
e7158393d4257564eeb8fa53a630fdfc13edb33f3c555e41606edcfdbe9189e5c59c25d255dd21d02d4abad1ab2931e21744ec6c2f91ad4db66f87e748a45e56
 DIST smithay-client-toolkit-0.15.3.crate 129366 BLAKE2B 
ba3930acdb67116aa2c4027d16cf58ef34852a9452e40a240ee30033a02172d21e9355ba7cc678220f24da7c653daffe8cdbb700fce8c1f82b404dfccc610548
 SHA512 

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

2022-07-20 Thread Ionen Wolkens
commit: 1a2e8f89eb5f602f1381f5aab7dc849bc36a306c
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:01:36 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a2e8f89

dev-libs/ncnn: add 20220721

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

 dev-libs/ncnn/Manifest |  1 +
 dev-libs/ncnn/ncnn-20220721.ebuild | 48 ++
 2 files changed, 49 insertions(+)

diff --git a/dev-libs/ncnn/Manifest b/dev-libs/ncnn/Manifest
index 44746ed474a8..174e06e9d5c7 100644
--- a/dev-libs/ncnn/Manifest
+++ b/dev-libs/ncnn/Manifest
@@ -1 +1,2 @@
 DIST ncnn-20220701.tar.gz 12220010 BLAKE2B 
3038500683c9ea1634777cb4158aea0d6c6e640cb4a31302b99c546f000fb91f5d75d01328cf35896b7579dc3172512d120612f973ae9881b4f95d101607adcb
 SHA512 
4b7f539213c8f06a426d1633e881ceeabee84b5419e890eaa95447868a511cad8a4528d1e311c87ed322ccabbcfb38cc1725592fb6299ef9be7e068c43bbd0b2
+DIST ncnn-20220721.tar.gz 12235249 BLAKE2B 
5d164a1f8531395e6bdbbb1ace07d5c7ef08db9afe62155126297b4911621aad4c5f71ccb3343207450dc4ea055f6da07aeb93f230098ab407eaa05ee31db8b9
 SHA512 
0d6c037661e8e6f9eebcfa58e306c8a6cf94a3739f04ab863209857adc4e8d01e19ba5d67b81d1e85bf2f8c9d6318a3a49acc989b5b014c6e68041dca23bb78c

diff --git a/dev-libs/ncnn/ncnn-20220721.ebuild 
b/dev-libs/ncnn/ncnn-20220721.ebuild
new file mode 100644
index ..3fc052ceb245
--- /dev/null
+++ b/dev-libs/ncnn/ncnn-20220721.ebuild
@@ -0,0 +1,48 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+DESCRIPTION="High-performance neural network inference framework"
+HOMEPAGE="https://github.com/Tencent/ncnn/;
+SRC_URI="https://github.com/Tencent/ncnn/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="BSD ZLIB"
+SLOT="0/${PV}" # currently has unstable ABI that often requires rebuilds
+KEYWORDS="~amd64 ~x86"
+IUSE="tools +vulkan"
+
+# Need the static library to run tests + skip vulkan / GPU:
+# -DNCNN_BUILD_TESTS=ON -DNCNN_SHARED_LIB=OFF -DNCNN_VULKAN=OFF
+RESTRICT="test"
+
+RDEPEND="
+   tools? ( dev-libs/protobuf:= )
+   vulkan? (
+   dev-util/glslang
+   media-libs/vulkan-loader
+   )"
+DEPEND="
+   ${RDEPEND}
+   vulkan? ( dev-util/vulkan-headers )"
+
+QA_PKGCONFIG_VERSION="1.0.${PV}"
+
+DOCS=( README.md docs/. )
+
+src_configure() {
+   local mycmakeargs=(
+   -DGLSLANG_TARGET_DIR="${ESYSROOT}"/usr/$(get_libdir)/cmake
+   -DNCNN_BUILD_EXAMPLES=OFF
+   -DNCNN_BUILD_TOOLS=$(usex tools)
+   -DNCNN_PYTHON=OFF # todo if something needs it
+   -DNCNN_SHARED_LIB=ON
+   -DNCNN_SYSTEM_GLSLANG=ON
+   -DNCNN_VERSION=${PV} # avoids libncnn.so.*.%Y%m%d using build 
date
+   -DNCNN_VULKAN=$(usex vulkan)
+   )
+
+   cmake_src_configure
+}



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

2022-07-20 Thread Ionen Wolkens
commit: e95020885e78bb656bdeaf125b0f646588aa3b2a
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:02:20 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9502088

app-text/mdbook: drop 0.4.19

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

 app-text/mdbook/Manifest |   1 -
 app-text/mdbook/mdbook-0.4.19.ebuild | 251 ---
 2 files changed, 252 deletions(-)

diff --git a/app-text/mdbook/Manifest b/app-text/mdbook/Manifest
index 77036e4da0b7..b05f0a06f0c7 100644
--- a/app-text/mdbook/Manifest
+++ b/app-text/mdbook/Manifest
@@ -96,7 +96,6 @@ DIST markup5ever-0.10.1.crate 34668 BLAKE2B 
a13f39ba93a26a558a8f03ebbbaa98bf2c7c
 DIST markup5ever_rcdom-0.1.0.crate 25165 BLAKE2B 
4123ee804991e9be31e6a4dbcb7dcce12bb776d22e4409ad388678a92965834acb9b1b2fa51e6472ee2c0db156e4a75e5b6db5f6b6d4220159ab93b056d0418c
 SHA512 
7c21836fcdd45bfdef7305327255291c92d75d3329798d31abab26297de8c381e41b4419fb7ac631310835d590b63751a63bdd87e2697ea3dfdd6599033433c7
 DIST matches-0.1.9.crate 2246 BLAKE2B 
de155202636c6a03ed68cdb21e8ef96e19b45be040a82943d2d7e5192c0ab5c253ab6d65f0b30b2689e21da79cba684af5be6e63c48266681aceba356f6eea41
 SHA512 
6a2809687d30ff04ea97bf9d1610d746e097699a4c3625ffd1b7b1e4a9673ece9d559058c9f760b99d6ab509024f7b338e7cfa6fe767499c983efa98bfb98305
 DIST mdbook-0.4.18.tar.gz 1510868 BLAKE2B 
4b47b41fc03fb923891b419098bf553dbbfb0066b1d51bfd58e3cc69e1e686f7bdb5210b6b4cb19f09c35cd6e926ede3378e49debd5a54d838c2028d44186aaa
 SHA512 
f209d8882ff317deb3356a5de0d39c71fe0c51cf80874f0edc56c7ddf46b537c7194c58172dd5f704554bf0724cb0899ecb61b1eeea467226fa83c0679c336f5
-DIST mdbook-0.4.19.tar.gz 1513125 BLAKE2B 
dfc658659f04c24a3c04e89154a25221f2ac983469b868aa20d81c22caaae6aaf6e2a363429cace45b1b2d1fbcdc816f233b4379c94767798da169323fbd4a87
 SHA512 
ab95515da85db59220927882acfc44a16a0610764ea6d411f772f0be4f393ca61a825969e5702023f6b9f859534da5b1caaf4f2f8da23bc0f2623f367eb898b1
 DIST mdbook-0.4.20.tar.gz 1513187 BLAKE2B 
7d7b7d37f0ec4af07aa72b2264792977fc6e005fb3d15e5d76507e9d081349406f85e1c6d90ed7d9e1cd9c18e94388f5c04c4bb0530bf32fad89e563792a018a
 SHA512 
be2a7514a8e5c37832cc8846b92089030b6a89666e7c311993e204ceb899c261d526a1d38bb795fb3e8e454a9018c5e40f80b07d89ee404f103ce23361cf
 DIST memchr-2.4.1.crate 64977 BLAKE2B 
31479718c118093b684bed946eae0706d77d9d275bd49f5aeff4de490f479abd60c7dc462150eafffc6d6fc1da0853123b78be038826b775d2a41a4c39d93ab5
 SHA512 
d8912e3902a2126f86159bdc998532a2890b882cbb7d59b5a470fffcad4c32281e045f2fff48a235aa4189f1928866bf3d33b699d50866ad6b6c272bba7adb11
 DIST mime-0.3.16.crate 15206 BLAKE2B 
9a599ca82fd0dd6d3d2dea68a47b8441b1024d016ee1fb23cc6431b39ead20c9b3fe1ff3397af79c2c1b2cd277c440d4fff69f6b28c550ddbe15f680923c834b
 SHA512 
cb1d691610cb82720e553247336fc5eab63407ad37febf2eb50aaa4e329cca70959ecd8bb8c7af5753acec2c8e86fc9a0f8ad9ad2de93fe9295ce84033d6054c

diff --git a/app-text/mdbook/mdbook-0.4.19.ebuild 
b/app-text/mdbook/mdbook-0.4.19.ebuild
deleted file mode 100644
index 4c482cac94f8..
--- a/app-text/mdbook/mdbook-0.4.19.ebuild
+++ /dev/null
@@ -1,251 +0,0 @@
-# Copyright 2021-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-CRATES="
-   aho-corasick-0.7.18
-   ammonia-3.1.2
-   ansi_term-0.12.1
-   anyhow-1.0.43
-   assert_cmd-1.0.7
-   atty-0.2.14
-   autocfg-1.0.1
-   base64-0.13.0
-   bit-set-0.5.2
-   bit-vec-0.6.3
-   bitflags-1.3.2
-   block-buffer-0.7.3
-   block-buffer-0.9.0
-   block-padding-0.1.5
-   bstr-0.2.17
-   byte-tools-0.3.1
-   byteorder-1.4.3
-   bytes-1.0.1
-   cfg-if-0.1.10
-   cfg-if-1.0.0
-   chrono-0.4.19
-   clap-3.0.10
-   clap_complete-3.0.4
-   cpufeatures-0.1.5
-   ctor-0.1.20
-   diff-0.1.12
-   difflib-0.4.0
-   digest-0.8.1
-   digest-0.9.0
-   doc-comment-0.3.3
-   either-1.6.1
-   elasticlunr-rs-3.0.0
-   env_logger-0.9.0
-   fake-simd-0.1.2
-   filetime-0.2.15
-   float-cmp-0.9.0
-   fnv-1.0.7
-   form_urlencoded-1.0.1
-   fsevent-0.4.0
-   fsevent-sys-2.0.1
-   fuchsia-zircon-0.3.3
-   fuchsia-zircon-sys-0.3.3
-   futf-0.1.4
-   futures-channel-0.3.21
-   futures-core-0.3.21
-   futures-macro-0.3.16
-   futures-sink-0.3.21
-   futures-task-0.3.16
-   futures-util-0.3.16
-   generic-array-0.12.4
-   generic-array-0.14.4
-   getrandom-0.1.16
-   getrandom-0.2.3
-   gitignore-1.0.7
-   glob-0.3.0
-   h2-0.3.4
-   handlebars-4.1.2
-   hashbrown-0.11.2
-   headers-0.3.4
-   headers-core-0.2.0
-   hermit-abi-0.1.19
-   html5ever-0.25.1
-   http-0.2.4
-   http-body-0.4.3
-   httparse-1.5.1
-   httpdate-1.0.1
-   humantime-2.1.0
-   hyper-0.14.11
-   idna-0.2.3
-   

[gentoo-commits] repo/gentoo:master commit in: games-fps/xonotic/, games-fps/xonotic/files/

2022-07-20 Thread Ionen Wolkens
commit: 4b6330276c6204988e56992c99234d468c8ec7d0
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:05:39 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b633027

games-fps/xonotic: drop 0.8.2

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

 games-fps/xonotic/Manifest |   1 -
 games-fps/xonotic/files/xonotic-0.8.2-gcc-11.patch |  41 
 games-fps/xonotic/xonotic-0.8.2.ebuild | 116 -
 3 files changed, 158 deletions(-)

diff --git a/games-fps/xonotic/Manifest b/games-fps/xonotic/Manifest
index e854cb4d25f8..1e1cdbcaa3e9 100644
--- a/games-fps/xonotic/Manifest
+++ b/games-fps/xonotic/Manifest
@@ -1,2 +1 @@
-DIST xonotic-0.8.2.zip 991045679 BLAKE2B 
3005473da954492bb7387f9e0e13c2415e638877fa8b83e14872f3b04ed0fc21b82e18f51aa6c68e8bf02d09d4a73f290cbcaebdfa8c0a12ceb6582309baee8a
 SHA512 
0787fcf326827ae0292e5917c7ff2c7fd79947209d4b62e7f83b8b828bec15b575da304e0631f9f163c9b0bd93bed13616e142398ff08cbdaaea890a939dfca5
 DIST xonotic-0.8.5.zip 1228561792 BLAKE2B 
3f1391ff6522c8f6b7b4f717aecd6ffe852142d70e7c9cb5a602a69142c59850636cc1450aade5ae39088354170b819f696427ba8829bf7c375029f2430a
 SHA512 
4ffc4b73eeb5f580d178a98419d5b44cbff0c56e356a62baa729b5b7a6c3d43b2b425b123428c9b1bf3f4718eaf61bcf5d62914521cc061c7563a253440c807e

diff --git a/games-fps/xonotic/files/xonotic-0.8.2-gcc-11.patch 
b/games-fps/xonotic/files/xonotic-0.8.2-gcc-11.patch
deleted file mode 100644
index f6a9569e0163..
--- a/games-fps/xonotic/files/xonotic-0.8.2-gcc-11.patch
+++ /dev/null
@@ -1,41 +0,0 @@
-https://bugs.gentoo.org/788616
-
-Attach alignment annotation to strict, not it's typedef alias.
 a/source/darkplaces/dpsoftrast.c
-+++ b/source/darkplaces/dpsoftrast.c
-@@ -177,7 +177,7 @@ typedef ALIGN(struct DPSOFTRAST_State_Triangle_s
-   float w[3];
-   ALIGN(float attribs[DPSOFTRAST_ARRAY_TOTAL][3][4]);
- }
--DPSOFTRAST_State_Triangle);
-+) DPSOFTRAST_State_Triangle;
- 
- #define DPSOFTRAST_CALCATTRIB(triangle, span, data, slope, arrayindex) { \
-   slope = _mm_load_ps((triangle)->attribs[arrayindex][0]); \
-@@ -209,7 +209,7 @@ typedef ALIGN(struct DPSOFTRAST_State_Span_s
-   int depthbase; // depthbuffer value at x (add depthslope*startx to get 
first pixel's depthbuffer value)
-   int depthslope; // depthbuffer value pixel delta
- }
--DPSOFTRAST_State_Span);
-+) DPSOFTRAST_State_Span;
- 
- #define DPSOFTRAST_DRAW_MAXSPANS 1024
- #define DPSOFTRAST_DRAW_MAXTRIANGLES 128
-@@ -300,7 +300,7 @@ typedef ALIGN(struct DPSOFTRAST_State_Thread_s
-   DPSOFTRAST_State_Triangle triangles[DPSOFTRAST_DRAW_MAXTRIANGLES];
-   unsigned char pixelmaskarray[DPSOFTRAST_DRAW_MAXSPANLENGTH+4]; // 
LordHavoc: padded to allow some termination bytes
- }
--DPSOFTRAST_State_Thread);
-+) DPSOFTRAST_State_Thread;
- 
- typedef ALIGN(struct DPSOFTRAST_State_s
- {
-@@ -358,7 +358,7 @@ typedef ALIGN(struct DPSOFTRAST_State_s
- 
-   DPSOFTRAST_State_Command_Pool commandpool;
- }
--DPSOFTRAST_State);
-+) DPSOFTRAST_State;
- 
- DPSOFTRAST_State dpsoftrast;
- 

diff --git a/games-fps/xonotic/xonotic-0.8.2.ebuild 
b/games-fps/xonotic/xonotic-0.8.2.ebuild
deleted file mode 100644
index 98e1317eb329..
--- a/games-fps/xonotic/xonotic-0.8.2.ebuild
+++ /dev/null
@@ -1,116 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit desktop check-reqs toolchain-funcs
-
-MY_PN="${PN^}"
-DESCRIPTION="Fork of Nexuiz, Deathmatch FPS based on DarkPlaces, an advanced 
Quake 1 engine"
-HOMEPAGE="https://www.xonotic.org/;
-SRC_URI="https://dl.xonotic.org/${P}.zip;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
-IUSE="alsa debug dedicated doc ode sdl"
-
-UIRDEPEND="
-   media-libs/libogg
-   media-libs/libtheora
-   media-libs/libvorbis
-   media-libs/libmodplug
-   x11-libs/libX11
-   x11-libs/libXau
-   x11-libs/libXpm
-   x11-libs/libXext
-   x11-libs/libXdmcp
-   x11-libs/libXxf86dga
-   x11-libs/libXxf86vm
-   virtual/opengl
-   media-libs/freetype:2
-   alsa? ( media-libs/alsa-lib )
-   ode? ( dev-games/ode[double-precision] )
-   sdl? ( media-libs/libsdl2[X,sound,joystick,opengl,video,alsa?] )"
-UIDEPEND="
-   x11-base/xorg-proto"
-RDEPEND="
-   sys-libs/zlib
-   virtual/jpeg:0
-   media-libs/libpng:0
-   net-misc/curl
-   ~dev-libs/d0_blind_id-1.0
-   !dedicated? ( ${UIRDEPEND} )"
-DEPEND="${RDEPEND}
-   !dedicated? ( ${UIDEPEND} )"
-BDEPEND="app-arch/unzip"
-
-PATCHES=("${FILESDIR}"/${P}-gcc-11.patch)
-
-DOCS="Docs/*.txt"
-
-CHECKREQS_DISK_BUILD="1200M"
-CHECKREQS_DISK_USR="950M"
-
-S="${WORKDIR}/${MY_PN}"
-
-pkg_pretend() {
-   check-reqs_pkg_pretend
-}
-
-pkg_setup() {
-   check-reqs_pkg_setup
-}
-
-src_prepare() {
-   default
-
-   sed -i \

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

2022-07-20 Thread Ionen Wolkens
commit: 0d3e4fb3341f42ccee056e0cb2a4df31fd28b160
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 05:02:46 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:37:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d3e4fb3

app-text/mdbook: stabilize 0.4.20 for amd64

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

 app-text/mdbook/mdbook-0.4.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/mdbook/mdbook-0.4.20.ebuild 
b/app-text/mdbook/mdbook-0.4.20.ebuild
index 4c482cac94f8..33b66c0d9afe 100644
--- a/app-text/mdbook/mdbook-0.4.20.ebuild
+++ b/app-text/mdbook/mdbook-0.4.20.ebuild
@@ -225,7 +225,7 @@ S="${WORKDIR}/${P/b/B}"
 # CC-BY-4.0/OFL-1.1: embeds fonts inside the executable
 LICENSE="Apache-2.0 BSD CC-BY-4.0 CC0-1.0 ISC MIT MPL-2.0 OFL-1.1"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86"
 IUSE="doc"
 
 QA_FLAGS_IGNORED="usr/bin/${PN}"



[gentoo-commits] repo/gentoo:master commit in: games-strategy/naev/

2022-07-20 Thread Ionen Wolkens
commit: 616cc6dd2f5654ff35851b8951ff0c90396fa607
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 04:46:07 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 05:36:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=616cc6dd

games-strategy/naev: add 0.9.4

Swapped virtual/opengl for libglvnd, but kept [X] because src/glad.c
looks for libGL.so.1 and uses GLX symbols (albeit this is known to
work on proper wayland, so it may be possible to do without).

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

 games-strategy/naev/Manifest  |  1 +
 games-strategy/naev/naev-0.9.4.ebuild | 93 +++
 2 files changed, 94 insertions(+)

diff --git a/games-strategy/naev/Manifest b/games-strategy/naev/Manifest
index 609d3dd7ae65..8bb1bc86a06f 100644
--- a/games-strategy/naev/Manifest
+++ b/games-strategy/naev/Manifest
@@ -1 +1,2 @@
 DIST naev-0.9.3-source.tar.xz 394876456 BLAKE2B 
9648ee9a93a02ec5ace552b25033cae16c38a48a869763bc381050f2724445fd5cf08708053ad4c939cdc99a27244126819e9416bc61d8d6148078eeea26e50e
 SHA512 
150091f10ce05cbd5b2c4c434abe83124db56618b80f727994c135d1331c594406c9e8f03596feddb5739061c866e19b115fd0a86a19ea306cc811bb3dd944aa
+DIST naev-0.9.4-source.tar.xz 395461576 BLAKE2B 
cbfdc443ecb8cb27694769d054f7162c3d1d2bcd8dc28045696d6891abfb46e4a3518ce265c97b55a96b8d000c9900e4bc49ae7b45a16db75f9de48ea0cb702b
 SHA512 
e8efb115d8d623ea92d348854d98ee22e8863aaf6555efa058d6160210f000186ae39f054f5b4f0fa8d92949de83defa35d4acd8216398157a1a42886745ddab

diff --git a/games-strategy/naev/naev-0.9.4.ebuild 
b/games-strategy/naev/naev-0.9.4.ebuild
new file mode 100644
index ..737c5df6c89a
--- /dev/null
+++ b/games-strategy/naev/naev-0.9.4.ebuild
@@ -0,0 +1,93 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+LUA_COMPAT=( lua5-1 luajit )
+PYTHON_COMPAT=( python3_{8..11} )
+inherit lua-single meson python-any-r1 virtualx xdg
+
+DESCRIPTION="2D space trading and combat game, in a similar vein to Escape 
Velocity"
+HOMEPAGE="https://naev.org/;
+SRC_URI="https://github.com/naev/naev/releases/download/v${PV}/${P}-source.tar.xz;
+
+LICENSE="
+   GPL-3+ BSD BSD-2 CC-BY-2.0 CC-BY-3.0 CC-BY-4.0 CC-BY-SA-2.0
+   CC-BY-SA-3.0 CC-BY-SA-4.0 CC0-1.0 MIT public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="doc"
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+
+RDEPEND="
+   ${LUA_DEPS}
+   dev-games/physfs
+   dev-libs/libunibreak:=
+   dev-libs/libxml2
+   media-libs/freetype:2
+   media-libs/libglvnd[X]
+   media-libs/libsdl2[joystick,opengl,video]
+   media-libs/libvorbis
+   media-libs/openal
+   media-libs/sdl2-image[png,webp]
+   sci-libs/cholmod
+   sci-libs/cxsparse
+   sci-libs/openblas
+   sci-libs/suitesparse
+   sci-mathematics/glpk:=
+   virtual/libintl"
+DEPEND="
+   ${RDEPEND}
+   test? (
+   dev-games/physfs[zip]
+   media-libs/libsdl2[X]
+   media-libs/mesa[llvm]
+   )"
+BDEPEND="
+   $(python_gen_any_dep 'dev-python/pyyaml[${PYTHON_USEDEP}]')
+   sys-devel/gettext
+   doc? (
+   app-doc/doxygen[dot]
+   dev-lua/ldoc
+   )"
+
+python_check_deps() {
+   python_has_version "dev-python/pyyaml[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   lua-single_pkg_setup
+   python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+
+   sed -i "s/'lua51'/'lua'/" meson.build || die
+}
+
+src_configure() {
+   local emesonargs=(
+   $(meson_feature doc docs_c)
+   $(meson_feature doc docs_lua)
+   $(meson_feature lua_single_target_luajit luajit)
+   )
+
+   meson_src_configure
+}
+
+src_test() {
+   virtx meson_src_test
+}
+
+src_install() {
+   local DOCS=( CHANGELOG Readme.md )
+   meson_src_install
+
+   if use doc; then
+   dodir /usr/share/doc/${PF}/html
+   mv "${ED}"/usr/{doc/naev/{c,lua},share/doc/${PF}/html} || die
+   rm -r "${ED}"/usr/doc || die
+   fi
+   rm -r "${ED}"/usr/share/doc/naev || die
+}



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

2022-07-20 Thread Ionen Wolkens
commit: 0e7d20b21b0de27e137cc6e0007e8117ed498a7c
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 04:21:37 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 04:21:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e7d20b2

x11-drivers/nvidia-drivers: add 515.49.10:0/vulkan, drop 515.49.06

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

 x11-drivers/nvidia-drivers/Manifest   | 4 ++--
 ...vidia-drivers-515.49.06.ebuild => nvidia-drivers-515.49.10.ebuild} | 4 +++-
 2 files changed, 5 insertions(+), 3 deletions(-)

diff --git a/x11-drivers/nvidia-drivers/Manifest 
b/x11-drivers/nvidia-drivers/Manifest
index 9b2a67fca493..e93ce333b551 100644
--- a/x11-drivers/nvidia-drivers/Manifest
+++ b/x11-drivers/nvidia-drivers/Manifest
@@ -4,7 +4,7 @@ DIST NVIDIA-Linux-x86-390.151.run 50757681 BLAKE2B 
48821fd918b858167f4f6bda123b1
 DIST NVIDIA-Linux-x86_64-390.151.run 86025677 BLAKE2B 
8f78ee00d15ffac9f371e8302541eee8b033670953850dd770c6615eb674fcda2adcea52582284c59a9d7e32943a445d65515b1cacd6f8e5fcbe6c9e94080fb0
 SHA512 
aad962e4132c8ab031b5f72e47fbd4b5c49824bc175f13fd2c6fb3e539d41ff9829835ce4928bbfa56aba2ffa43fbe3d8049e9246e29b19abcea0ac89bdae5d4
 DIST NVIDIA-Linux-x86_64-470.129.06.run 272145574 BLAKE2B 
9eb75456f3aa6cea13a66b9e161677e06ab3a3e12d960df3973adfa7ded4aefc5336761398f92e91a304786e48c1cc0a34675ad18d416297a177d677668ec4a2
 SHA512 
6f61f01b3840e30b3cd195ecb81826c37200e27b79d555808c873d5381fd55868bddf16a53f15cb51646af067705a6ce289c4cef514908b1b4b2d2e765907252
 DIST NVIDIA-Linux-x86_64-510.73.05.run 329250752 BLAKE2B 
dd79ad5a7c94cd50a832a224a5dcab7cb24368453417962ac63cb7dca6f7d9bfe0a41460df90f9793b9c8c2e42d1e3666c940cf9f869e18b201df385a66c7dd8
 SHA512 
c2ce41ee8112ad5450d6aa18f910da0870ac08a1ad0ab0d82a256b191c7826057afb3477e7a842244034c9eb9de37c6af919b0dd055bb90dd2a32d7e97a8c72c
-DIST NVIDIA-Linux-x86_64-515.49.06.run 363184836 BLAKE2B 
2b6c5bb54e63eb5b5fb9cfa57461cb9e919a6deadd0fab27db766cc15b0a51c01a8228a2326e98b1f769b534a8f534ba7fe14278da43159a1e8c23486f14af77
 SHA512 
2292d042206e4cab06125b719c832d95565e11b2da5636ccbb9371c3c1e12b98d3ba7267de6012622f58424d27f6cb3e364609e505f9c257acd677551474bf5d
+DIST NVIDIA-Linux-x86_64-515.49.10.run 362743485 BLAKE2B 
a97490c588c4a0abaa23b889204f39ff6f39da9105170860d6bb85255e23a601168c295b2a68a4b0110782ca911cde8b8db3ca1e54f2aa62e8a0322e7c60967a
 SHA512 
0c9e51d01152294b890675ffe39cb246e9b7ac221534a6f1a895cff1e83e4785d82a93a39011277debedfdb51b3979e7a56258b5c8d54f065b7a90a5ca627e2a
 DIST NVIDIA-Linux-x86_64-515.57.run 363365091 BLAKE2B 
13bd4d4cbfbfe99a9841d82e6ae86600ba93a5db1a87d8a3372fde2fb86b104adf31e345ec7ffd6bc076cda962521f64213bbc5ebe46077c6d457c2676b5f8c4
 SHA512 
6c6ff830dfdf9fb7d127cddc1d72b54e78dc14aeb07596413e82ffa62e065272781d2c487ffd25d153bdbeedb9b26d6fd80380304f736a47fa628aded0e817d6
 DIST nvidia-installer-390.151.tar.bz2 150160 BLAKE2B 
373c0f26ca258d6e274891ec49f8ae768b3ba50cc1079b697e310c52fac7710b221591074497803b3e65a8fc9c2f49a493126de0907a117d6af1101d190b2b38
 SHA512 
027676209d1ba5fa3bf63d716562beb308c28b083f9411461112493f006afa69bcad7c95c479724a841f2790548924a3cf4b11ae95b70e33854ce0b2eff4b8f8
 DIST nvidia-installer-470.129.06.tar.bz2 146297 BLAKE2B 
d09351edc3b90bb401ced3cf883c18dfbd83b9a1f2d4b5595adc8a593357e848ad7d588ef2283ab11ee520860ba8786684e177d84156d75f78c8f312848255c4
 SHA512 
b49963d7c4fde2354f64e77373d0e1c9fdd71927b43101b5663be31d3b36bd3c652ae983286dc406b080fce6f2f2ff0151254ee833a39c81b44524d0b79090b6
@@ -31,5 +31,5 @@ DIST nvidia-xconfig-470.129.06.tar.bz2 108704 BLAKE2B 
71ead889bca8503e987bc00c71
 DIST nvidia-xconfig-510.73.05.tar.bz2 109809 BLAKE2B 
4554555b543073281f7b2e3f2d3463f7b4e8a7c8a734663af0d6a3110d432dd8f9e14e4e0efbd93902ae1e8cd1afefd35838f0bf70a5a619b05119acef25aa1a
 SHA512 
bc992cd75e9e757f2e3edf35b38106362de0900085dec059b3b609bca3bc02fcac4a39a1481a7c9ca0e704fe0355e8f9620a1e8cc867e1c341d2b0df2cf47bf0
 DIST nvidia-xconfig-515.48.07.tar.bz2 110220 BLAKE2B 
54283c809f4d50337279727c70bed11e98b1422751663a1c77afb250917c28f269cecf6d75c1458051ed09bd826d9fdc7329b332d8e2118e6b3529f6a4e34bc1
 SHA512 
417bcb829fe578ccecea713780e5d3cbe79798d974ef66741c2b0fe3a87c6a236c719e369af44b297f0c42d82b33af76a61a0e205ad939684b56d258a0d37b0b
 DIST nvidia-xconfig-515.57.tar.gz 144062 BLAKE2B 
5f927b1fbbcfc5b5c9d8c166eaed6baeef24c432b5a8d5c1e1033bb92371ecb298cce66a8374eee59fbfdeaef4c0330a6f866735b54066fefed69ed839c7b549
 SHA512 
380cffbb63a926f9fc23c5924faef9cd026adc162fc6c645854da2a5525ef68fad6a7cdef82f504d413c042e9020e970f37aa9c59d9baf3feddfeddcd4e5761b
-DIST open-gpu-kernel-modules-515.49.06.tar.gz 7409836 BLAKE2B 
6404af70e227cd63d7b7f3a2b5c59db0c0b8ea99b49834ea35982c38ff109fd669d2ebae0f8f4e84835201017952af95fad7168182bee581f06b60208e2e7cfe
 SHA512 
be7efc60a90ce37348624795e5f7a34f4c58e3105ba054165cd560572177e432af01708ed24e549aad134434526133878376ca9b1cc8e06ee4453a110bb73047
+DIST open-gpu-kernel-modules-515.49.10.tar.gz 7409383 BLAKE2B 

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

2022-07-20 Thread Miroslav Šulc
commit: adc257c8a108cc6044dc85b98fcf45ffa0af19e8
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Jul 21 03:37:53 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Jul 21 03:37:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adc257c8

media-libs/lv2: removed obsolete 1.18.2

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

 media-libs/lv2/Manifest  |  1 -
 media-libs/lv2/lv2-1.18.2.ebuild | 62 
 2 files changed, 63 deletions(-)

diff --git a/media-libs/lv2/Manifest b/media-libs/lv2/Manifest
index 4c416390f82e..7ba010202b57 100644
--- a/media-libs/lv2/Manifest
+++ b/media-libs/lv2/Manifest
@@ -1,2 +1 @@
-DIST lv2-1.18.2.tar.bz2 538345 BLAKE2B 
824c7bc2ce62de858308d856d0f89c6285c183764be3727eba5074f42543a1bb8a5e1cdd8a85bf0a4ba1103e1243c843013bd516d2d6e7ade09c46380bca3cee
 SHA512 
d5bdcf94d3cf9a569e29964002a038ae73cd6ae7f09f7d973f8fd74858c8cf9d01bbed85ae8bf0a00efcb2b3611357a64571222a89972091941449c36d76b0ef
 DIST lv2-1.18.4.tar.bz2 540611 BLAKE2B 
84bcb5578110ff933b37b398029ed062c9393e17f17ddaa6329638f3c71e2b17b424f84987c00bc2c5699ffc15649362b98d5b238521e593c578c67450ecfeec
 SHA512 
8095a1f3dcf70cf8cefff18c40b52c1dffeab0fe1f6bfb083c9f0e48a9617d3c8647b3f4db567ac1f5f33564399ffe1023774ad9bacb1bb0133f182422f22d6a

diff --git a/media-libs/lv2/lv2-1.18.2.ebuild b/media-libs/lv2/lv2-1.18.2.ebuild
deleted file mode 100644
index 515e321d0440..
--- a/media-libs/lv2/lv2-1.18.2.ebuild
+++ /dev/null
@@ -1,62 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE='threads(+)'
-
-inherit python-single-r1 waf-utils multilib-build multilib-minimal
-
-DESCRIPTION="A simple but extensible successor of LADSPA"
-HOMEPAGE="https://lv2plug.in/;
-SRC_URI="https://lv2plug.in/spec/${P}.tar.bz2;
-
-LICENSE="MIT"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
-IUSE="doc plugins"
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-BDEPEND="
-   plugins? ( virtual/pkgconfig )
-   doc? ( app-doc/doxygen dev-python/rdflib )
-"
-CDEPEND="
-   ${PYTHON_DEPS}
-   plugins? ( x11-libs/gtk+:2 media-libs/libsndfile )
-"
-DEPEND="
-   ${CDEPEND}
-   doc? ( dev-python/markdown )
-"
-RDEPEND="
-   ${CDEPEND}
-   $(python_gen_cond_dep '
-   dev-python/lxml[${PYTHON_USEDEP}]
-   dev-python/pygments[${PYTHON_USEDEP}]
-   dev-python/rdflib[${PYTHON_USEDEP}]
-   ')
-"
-DOCS=( "README.md" "NEWS" )
-
-src_prepare() {
-   default
-   multilib_copy_sources
-}
-
-multilib_src_configure() {
-   waf-utils_src_configure \
-   --docdir="${EPREFIX}"/usr/share/doc/${PF} \
-   --lv2dir="${EPREFIX}"/usr/$(get_libdir)/lv2 \
-   $(use plugins || echo " --no-plugins") \
-   $(multilib_native_usex doc --docs "")
-}
-
-multilib_src_install() {
-   waf-utils_src_install
-}
-
-multilib_src_install_all() {
-   python_fix_shebang "${D}"
-}



[gentoo-commits] repo/gentoo:master commit in: dev-java/tomcat-servlet-api/

2022-07-20 Thread Miroslav Šulc
commit: edf59fdcfbf1086a8360e86ff058cc2c165e2292
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Jul 21 03:32:39 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Jul 21 03:33:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=edf59fdc

dev-java/tomcat-servlet-api: bump to 9.0.65

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

 dev-java/tomcat-servlet-api/Manifest   |  1 +
 .../tomcat-servlet-api-9.0.65.ebuild   | 99 ++
 2 files changed, 100 insertions(+)

diff --git a/dev-java/tomcat-servlet-api/Manifest 
b/dev-java/tomcat-servlet-api/Manifest
index 6875b9fdc893..b9293c943e1b 100644
--- a/dev-java/tomcat-servlet-api/Manifest
+++ b/dev-java/tomcat-servlet-api/Manifest
@@ -5,3 +5,4 @@ DIST apache-tomcat-6.0.53-src.tar.gz 3522914 BLAKE2B 
054b097c16861abaa8bdbeba713
 DIST apache-tomcat-7.0.109-src.tar.gz 5314401 BLAKE2B 
56583caea6879bf8ca5cc02a886de3d7af413032f88d367653e709dc1c8f590e78620c788317bbff4b6e65dd3e242cc26863164ac8e7c87334a22636f3ed0703
 SHA512 
ecf9c0bee0e3e1aa24f299fe633705c5a2f6aa264d9e4968cfc96aa5d0a425c2b0ff07765a8b6c67221766733bdfaed6e6c6377a8d0870d889e7063ce90a46ce
 DIST apache-tomcat-8.5.81-src.tar.gz 5988747 BLAKE2B 
569e1564cf6f5419aaa0d66a2497852021a244af1a858ad943b45e1c36939011a78edd83c717f346e4327278b95b95535e5c57bdd71af5662e052abc02528f49
 SHA512 
a9261e2a92e122f0f7f547d0b4e083d6c15cdb4d1ad750bdb3c9e3a597a1c4c1bb0f5dd7ad92f41ce18d15ac7fee47acc2cdd59e588b872f173467864120e581
 DIST apache-tomcat-9.0.64-src.tar.gz 6174208 BLAKE2B 
3ec55872dc73279202faae10b4825ca8cd4f5d2763c43778445b2f1aee27ed1cd765e7345276735359e3a40779eaf2ef8f9120eaca8d38af07cbbcd0584078b4
 SHA512 
7e01a979d41f7d73204b7a7ae5a85b0094626bf64bcfa3a52f1fc46989369d504b6dd49718084ee0a10af775cab488aae1e18ce05eb2b527800e2a693c7b6386
+DIST apache-tomcat-9.0.65-src.tar.gz 6195265 BLAKE2B 
13ca956b58e9f1831700f67d1fa8883f6471ab6b700b2af169bf284552658a4e9ad4130451b36976af4dd366cc987e228e0b0f98e688cccf577c626dfc78aae7
 SHA512 
3ff344370cc36f5bed389ed198054783a4f5bc86476a751cda280618457a06bae38c1e764b0c110c2f68efe2d34243a4e24596e8b90e8fbd171bf584a22fd3bc

diff --git a/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.65.ebuild 
b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.65.ebuild
new file mode 100644
index ..09fffd263372
--- /dev/null
+++ b/dev-java/tomcat-servlet-api/tomcat-servlet-api-9.0.65.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="source"
+
+inherit java-pkg-2 java-pkg-simple
+
+MY_A="apache-${PN}-${PV}-src"
+MY_P="${MY_A/-servlet-api/}"
+DESCRIPTION="Tomcat's Servlet API 4.0/JSP API 2.3/EL API 3.0 implementation"
+HOMEPAGE="https://tomcat.apache.org/;
+SRC_URI="mirror://apache/tomcat/tomcat-9/v${PV}/src/${MY_P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="4.0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86 ~amd64-linux ~x86-linux ~x64-solaris 
~x86-solaris"
+IUSE=""
+
+DEPEND=">=virtual/jdk-1.8:*"
+RDEPEND=">=virtual/jre-1.8:*"
+
+S="${WORKDIR}/${MY_P}/"
+
+JAVA_TEST_SRC_DIR="src/test"
+
+SERVLET_API_JAR="servlet-api.jar"
+SERVLET_API_SRC="src/main/servlet-api"
+SERVLET_API_RESOURCES="src/resources/servlet-api"
+EL_API_JAR="el-api.jar"
+EL_API_SRC="src/main/el-api"
+EL_API_RESOURCES="src/resources/el-api"
+JSP_API_JAR="jsp-api.jar"
+JSP_API_SRC="src/main/jsp-api"
+JSP_API_RESOURCES="src/resources/jsp-api"
+
+src_prepare() {
+   default
+
+   # The sources and also resources are mixed together so we first give it 
a structure to make it easier to compila and package
+
+   mkdir -p ${SERVLET_API_SRC} ${SERVLET_API_RESOURCES} \
+   ${EL_API_SRC} ${EL_API_RESOURCES} \
+   ${JSP_API_SRC}/javax/servlet ${JSP_API_RESOURCES} \
+   ${JAVA_TEST_SRC_DIR} || die "Failed to create source directory"
+
+   pushd java || die "Failed to cd to java dir"
+
+   cp --parents -R javax/servlet "${S}/${SERVLET_API_SRC}/" || die "Failed 
to copy servlet-api sources"
+   mv "${S}/${SERVLET_API_SRC}/javax/servlet/jsp" 
"${S}/${JSP_API_SRC}/javax/servlet" || die "Failed to copy jsp-api sources"
+   cp --parents -R javax/el "${S}/${EL_API_SRC}/" || die "Failed to copy 
el-api sources"
+
+   popd
+
+   for file in $(find src -type f | grep -vE "\.java$"); do
+   target_dir=$(dirname $file | sed "s%src/main/%src/resources/%g")
+   mkdir -p ${target_dir} || die "Failed to create resource 
directory"
+   mv $file ${target_dir} || die "Failed to move resource file"
+   done
+
+   mv test/javax ${JAVA_TEST_SRC_DIR} || die "Failed to copy test sources"
+
+   java-pkg-2_src_prepare
+}
+
+src_compile() {
+   JAVA_SRC_DIR="${SERVLET_API_SRC}"
+   JAVA_RESOURCE_DIRS="${SERVLET_API_RESOURCES}"
+   JAVA_JAR_FILENAME="${SERVLET_API_JAR}"
+   java-pkg-simple_src_compile
+   rm -fr target || die "Failed to remove 

[gentoo-commits] repo/gentoo:master commit in: www-servers/tomcat/

2022-07-20 Thread Miroslav Šulc
commit: 5751812bf9042cfd2a4129cef26a56c931205e1c
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Jul 21 03:33:17 2022 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Jul 21 03:33:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5751812b

www-servers/tomcat: bump to 9.0.65

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

 www-servers/tomcat/Manifest |   1 +
 www-servers/tomcat/tomcat-9.0.65.ebuild | 190 
 2 files changed, 191 insertions(+)

diff --git a/www-servers/tomcat/Manifest b/www-servers/tomcat/Manifest
index 3fdbc6ad44c2..dfbc54a06f56 100644
--- a/www-servers/tomcat/Manifest
+++ b/www-servers/tomcat/Manifest
@@ -2,5 +2,6 @@ DIST apache-tomcat-10.0.22-src.tar.gz 6115322 BLAKE2B 
6a9d2e6896fa266b4d75627f85
 DIST apache-tomcat-7.0.109-src.tar.gz 5314401 BLAKE2B 
56583caea6879bf8ca5cc02a886de3d7af413032f88d367653e709dc1c8f590e78620c788317bbff4b6e65dd3e242cc26863164ac8e7c87334a22636f3ed0703
 SHA512 
ecf9c0bee0e3e1aa24f299fe633705c5a2f6aa264d9e4968cfc96aa5d0a425c2b0ff07765a8b6c67221766733bdfaed6e6c6377a8d0870d889e7063ce90a46ce
 DIST apache-tomcat-8.5.81-src.tar.gz 5988747 BLAKE2B 
569e1564cf6f5419aaa0d66a2497852021a244af1a858ad943b45e1c36939011a78edd83c717f346e4327278b95b95535e5c57bdd71af5662e052abc02528f49
 SHA512 
a9261e2a92e122f0f7f547d0b4e083d6c15cdb4d1ad750bdb3c9e3a597a1c4c1bb0f5dd7ad92f41ce18d15ac7fee47acc2cdd59e588b872f173467864120e581
 DIST apache-tomcat-9.0.64-src.tar.gz 6174208 BLAKE2B 
3ec55872dc73279202faae10b4825ca8cd4f5d2763c43778445b2f1aee27ed1cd765e7345276735359e3a40779eaf2ef8f9120eaca8d38af07cbbcd0584078b4
 SHA512 
7e01a979d41f7d73204b7a7ae5a85b0094626bf64bcfa3a52f1fc46989369d504b6dd49718084ee0a10af775cab488aae1e18ce05eb2b527800e2a693c7b6386
+DIST apache-tomcat-9.0.65-src.tar.gz 6195265 BLAKE2B 
13ca956b58e9f1831700f67d1fa8883f6471ab6b700b2af169bf284552658a4e9ad4130451b36976af4dd366cc987e228e0b0f98e688cccf577c626dfc78aae7
 SHA512 
3ff344370cc36f5bed389ed198054783a4f5bc86476a751cda280618457a06bae38c1e764b0c110c2f68efe2d34243a4e24596e8b90e8fbd171bf584a22fd3bc
 DIST biz.aQute.bnd-6.2.0.jar 16669843 BLAKE2B 
290aec26cb4e2248488038e6cb0919728ca0cc802b16de3f390d549d135bc1177053b75e500b9f74e47c996d20b231404d57965a3f412662730cc4c938d90a4f
 SHA512 
ad51dc9a04fc117cd01b604559989dd7c7db776761ef6000eccdcfdab825dedc615297af60c778044e46867972a74840d90eebea9b0ff826bdbd10f4d2ec5d6f
 DIST biz.aQute.bndlib-6.2.0.jar 3156015 BLAKE2B 
922b9bc78e47968bad73a26f4df475d84d8a2bca3773473b1f8c147737e652728df4e90a49d09a20943f418a91fd5acfe18e51137e85850796d95b7415bcf684
 SHA512 
7b7b366467b71c6dd67b3d7a7bc63d476c4aca479153bbc1506435168b0b4c792152fb5b44e2b1f916cd67f482d15956d2c38182fdfaf9679dff65b1b109a16a

diff --git a/www-servers/tomcat/tomcat-9.0.65.ebuild 
b/www-servers/tomcat/tomcat-9.0.65.ebuild
new file mode 100644
index ..e151500fc704
--- /dev/null
+++ b/www-servers/tomcat/tomcat-9.0.65.ebuild
@@ -0,0 +1,190 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+JAVA_PKG_IUSE="doc source test"
+
+inherit java-pkg-2 java-ant-2 prefix
+
+MY_P="apache-${PN}-${PV}-src"
+
+# Currently we bundle binary versions of bnd.jar and bndlib.jar
+# See bugs #203080 and #676116
+BND_VERSION="6.2.0"
+BND="biz.aQute.bnd-${BND_VERSION}.jar"
+BNDLIB="biz.aQute.bndlib-${BND_VERSION}.jar"
+
+DESCRIPTION="Tomcat Servlet-4.0/JSP-2.3/EL-3.0/WebSocket-1.1/JASPIC-1.1 
Container"
+HOMEPAGE="https://tomcat.apache.org/;
+SRC_URI="mirror://apache/${PN}/tomcat-9/v${PV}/src/${MY_P}.tar.gz
+   
https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bnd/${BND_VERSION}/${BND}
+   
https://repo.maven.apache.org/maven2/biz/aQute/bnd/biz.aQute.bndlib/${BND_VERSION}/${BNDLIB};
+
+LICENSE="Apache-2.0"
+SLOT="9"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux ~x86-solaris"
+IUSE="extra-webapps"
+
+RESTRICT="test" # can we run them on a production system?
+
+# though it could work with 4.22 and upstream uses 4.20,
+# we still use 4.15 because 4.20+ is currently built with java 11
+# and it would force Tomcat to use at least java 11 too
+ECJ_SLOT="4.15"
+SAPI_SLOT="4.0"
+
+COMMON_DEP="dev-java/eclipse-ecj:${ECJ_SLOT}
+   dev-java/glassfish-xmlrpc-api:0
+   ~dev-java/tomcat-servlet-api-${PV}:${SAPI_SLOT}
+   dev-java/wsdl4j:0"
+RDEPEND="${COMMON_DEP}
+   acct-group/tomcat
+   acct-user/tomcat
+   >=virtual/jre-1.8:*"
+DEPEND="${COMMON_DEP}
+   app-admin/pwgen
+   >=dev-java/ant-core-1.9.13
+   >=virtual/jdk-1.8:*
+   test? (
+   >=dev-java/ant-junit-1.9:0
+   dev-java/easymock:3.2
+   )"
+
+S=${WORKDIR}/${MY_P}
+
+PATCHES=(
+   "${FILESDIR}/${PN}-9.0.50-insufficient-ecj.patch"
+)
+
+BND_HOME="${S}/tomcat-build-libs/bnd"
+BNDLIB_HOME="${S}/tomcat-build-libs/bndlib"
+BND_JAR="${BND_HOME}/${BND}"
+BNDLIB_JAR="${BNDLIB_HOME}/${BND_LIB}"
+
+src_unpack() {
+   

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

2022-07-20 Thread William Hubbs
commit: 84e4bb9853fb4555e65114be1787770358a6b8d3
Author: William Hubbs  gentoo  org>
AuthorDate: Thu Jul 21 03:03:35 2022 +
Commit: William Hubbs  gentoo  org>
CommitDate: Thu Jul 21 03:04:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=84e4bb98

app-admin/helm: add 3.9.1

Closes: https://bugs.gentoo.org/857078
Signed-off-by: William Hubbs  gentoo.org>

 app-admin/helm/Manifest  |  2 ++
 app-admin/helm/helm-3.9.1.ebuild | 41 
 2 files changed, 43 insertions(+)

diff --git a/app-admin/helm/Manifest b/app-admin/helm/Manifest
index 77c7b8b6c9f3..8565f3e1a34e 100644
--- a/app-admin/helm/Manifest
+++ b/app-admin/helm/Manifest
@@ -1,2 +1,4 @@
 DIST helm-3.8.1-deps.tar.xz 374838312 BLAKE2B 
13700d77faef89828a98b0410f1539c4370848d3f741881dfff4fb6d08b50d152052b4c1fa7ce4fe19d1d08583530c89f9e8ca35ede178b08c05dbecbdf36fbb
 SHA512 
5686ca6c3f9b114032dda78842c3e3d2012f97d5721455aedc204ffae8a6bdafcb5191beaaca0e89cb827a7846fe65658d4440c2982b36b008e8aa235be41736
+DIST helm-3.9.1-deps.tar.xz 126714520 BLAKE2B 
139903532e2e2bc8e4a1609416e543cc3105f831c1182fc35afdc96c9dbb5a893328c05855891e5a5d2953a5ee3f9dc6903ff4cbe85c1a7db203b370dd45650d
 SHA512 
9f10f66e0ea5989978ae397773b90fe4336165bb92ab4ac13a9811ec598033e57456266a5dbfafb53b413e22ce5c659cf0c3e29249155b11876f888dd388f45a
 DIST k8s-helm-3.8.1.tar.gz 715683 BLAKE2B 
2b0fc2a844f848e2a696be54224c1ca6027bf461c0885b3e082b57a09117b6ebc2500b35f1e6ad03cdc7ad4d0f18b3b6c24a1e79782b1b0492effc6a80031a93
 SHA512 
c4c3c8272ac4d83fad7dcdd41f81e9123ee71b01b6ebf352c3f3836048d7d240e144a52fd78e156c1957020bb1e4a868059486a4a4c3d37e4be150203a1e6158
+DIST k8s-helm-3.9.1.tar.gz 704718 BLAKE2B 
688b15dcd104bb0c95feaaa63292cbb56c7d30d136ec8cc5ba5b380718eb42ef3d7b94a08317f80811eafd7bf68de7af2fc5b7849126f45502913af88c7e49a8
 SHA512 
3d96673bdbd4d6337841b9a12d623c7ab132028b01e594bfc289209f5f6c04c8f6e6e9212435ae1438793412764eb0e74e4c54f4e480ce813dbc646b3b75ccaf

diff --git a/app-admin/helm/helm-3.9.1.ebuild b/app-admin/helm/helm-3.9.1.ebuild
new file mode 100644
index ..557eb2d3d47e
--- /dev/null
+++ b/app-admin/helm/helm-3.9.1.ebuild
@@ -0,0 +1,41 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+inherit bash-completion-r1 go-module
+GIT_COMMIT=a7c043acb5ff905c261cfdc923a35776ba5e66e4
+GIT_SHA=a7c043ac
+MY_PV=${PV/_rc/-rc.}
+
+DESCRIPTION="Kubernetes Package Manager"
+HOMEPAGE="https://github.com/helm/helm https://helm.sh;
+SRC_URI="https://github.com/helm/helm/archive/v${MY_PV}.tar.gz -> 
k8s-${P}.tar.gz"
+SRC_URI+=" https://dev.gentoo.org/~williamh/dist/${P}-deps.tar.xz;
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+
+RESTRICT=" test"
+
+src_compile() {
+   emake \
+   GOFLAGS="${GOFLAGS}" \
+   LDFLAGS="" \
+   GIT_COMMIT=${GIT_COMMIT} \
+   GIT_SHA=${GIT_SHA} \
+   GIT_TAG=v${MY_PV} \
+   GIT_DIRTY=clean \
+   build
+   bin/${PN} completion bash > ${PN}.bash || die
+   bin/${PN} completion zsh > ${PN}.zsh || die
+}
+
+src_install() {
+   newbashcomp ${PN}.bash ${PN}
+   insinto /usr/share/zsh/site-functions
+   newins ${PN}.zsh _${PN}
+
+   dobin bin/${PN}
+   dodoc README.md
+}



[gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/files/, media-video/ffmpeg/

2022-07-20 Thread Matt Turner
commit: 9e35ba5a1cac5c8fc188bd2effd5772ed2361067
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 02:51:18 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:51:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e35ba5a

media-video/ffmpeg: Drop old versions

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

 media-video/ffmpeg/Manifest|   2 -
 media-video/ffmpeg/ffmpeg-4.3.2-r1.ebuild  | 560 
 media-video/ffmpeg/ffmpeg-4.4.1-r5.ebuild  | 583 -
 .../files/ffmpeg-4.3-altivec-novsx-yuv2rgb.patch   |  23 -
 .../files/ffmpeg-4.3-fix-build-without-SSSE3.patch |  22 -
 5 files changed, 1190 deletions(-)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 26c660276496..66f6b189237a 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -1,8 +1,6 @@
 DIST ffmpeg-4.2.2-ppc64-altivec.patch.gz 7171 BLAKE2B 
6676dadb22d2ab4b0f5c19b418448c5b9b54fd8c803c3f0ab517c6fa7990be08098dd6f6a2b1b3e77a1bed31a069c702366aba79ef9141ff9e23cd8c1b6e2885
 SHA512 
6653975017de3f7bde420860419fbdddb50ae41dbb811b819f4b5b13807bf885a4c01736f05a684515f97b0d63bd8896d5951a3276af90cc74abfe32dc2e2407
 DIST ffmpeg-4.2.2-ppc64-gcc.patch.gz 750 BLAKE2B 
3a9cc7f0135e077c77179a7ca3da917bca3995d99d53b58221b23181a075f330132f83ea90a6110e89f90c7c3b5b2a7837559c5df414d9bd52dbb3ec166b1545
 SHA512 
701b0635e0819484a31de2062ba52d95ee03883ab56547cd75c3646a9b32bf3ecc7f719690b93f29202cfed0fdeecd26b51b9f3c66e72a999a3e8d9e97389275
 DIST ffmpeg-4.2.4.tar.bz2 10959430 BLAKE2B 
932bc0046edab5587063bbc04d6ef0149876bd1001ad185384fcabb3d0ae196c9ba591e680823b3c7b6e0ef9a0a9e9575a8b08439fdd89ef0e4dabb9d4a7f4e6
 SHA512 
5c74e3fe77ddf8ffede0e4692d574858dd0626e542380a819ab79c0f669c6c1329ffbccb872502f60306e561f10aa8bc1e61d09b2bea829870fe4a48b76460c6
-DIST ffmpeg-4.3.2.tar.bz2 11307134 BLAKE2B 
97e1e598e4abe397b06298d545c3073ea2303e11c01e98343fe09d99174e02ca94f52c4df0d389fbefe7814686221446d30f107092f00cb0b69275c8747d6f32
 SHA512 
ec5566f8684f0ceb18184d59786ea1fc166ab28c46260ebcca5b919ad53137ba7317fd0c537e97df28553572a0d5e42c558773c808cf76995d67985aec2d6d4d
-DIST ffmpeg-4.4.1.tar.bz2 11494996 BLAKE2B 
050b0501cb21f44451d59bf3b20b18d55234636b5a69a4962103d63f80ce9af172cc2cecb1e33b92334fcf635b283afddbdfa20cbd6deb526008cdb34ae01c16
 SHA512 
c41e63ffa9f5465ea3a7f4a8b255b299a2f49d5868ada4310a2344b8fea02476365c44871defd5609da55c805cbb58f34063dbdd4b203ade932cba8b3cfefc72
 DIST ffmpeg-4.4.2.tar.xz 9562968 BLAKE2B 
be044e9895acdd71a237a343a8d047c56db845c693b8c07877fc8049b630eb254e3430b6e9916330e6b3d53cbdc9f06680d80307a1fea1377bb818f4168bb276
 SHA512 
abce847c607ac6d63fe32ceff8bf8724888acf2b7db9a083cba50e3235590cdcb27feb7e0a314133d0030809fb54d474f64001fc9ab7d896a819159869c09d5a
 DIST ffmpeg-4.4.2.tar.xz.asc 520 BLAKE2B 
1ff4a886c7703a05a19499ae5b2b6207df24e05844861cb52f2c56a97f47ab4fefa5011de46a385bab9684964470697ec5e74553098392877f7521a04ffe0fc4
 SHA512 
a4df97a6328fc076b5611023bd61254f1a5043db1ec2f3426bee305206b2b0937047ede9cb51db31a3387a16218fe95a7a40296770574fa32660118938a9d301
 DIST ffmpeg-5.0.1.tar.xz 9812524 BLAKE2B 
0a37d425780f7e15836848048214411829bceb0de12bb7089803feb3dda07a077be9c8e8174b72792558ed86d92224bee9d4db20cc74690ea54312fbf2f10e83
 SHA512 
e5810c7379748a6bbe1a903bf36b4372b67cb3973179727b6af6f0118eef46f4c990155961cc37255e08a5bafdc4b4683503ad410ebb7afe7a35b891c01fa602

diff --git a/media-video/ffmpeg/ffmpeg-4.3.2-r1.ebuild 
b/media-video/ffmpeg/ffmpeg-4.3.2-r1.ebuild
deleted file mode 100644
index 297bd22c24ca..
--- a/media-video/ffmpeg/ffmpeg-4.3.2-r1.ebuild
+++ /dev/null
@@ -1,560 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# Subslot: libavutil major.libavcodec major.libavformat major
-# Since FFmpeg ships several libraries, subslot is kind of limited here.
-# Most consumers will use those three libraries, if a "less used" library
-# changes its soname, consumers will have to be rebuilt the old way
-# (preserve-libs).
-# If, for example, a package does not link to libavformat and only libavformat
-# changes its ABI then this package will be rebuilt needlessly. Hence, such a
-# package is free _not_ to := depend on FFmpeg but I would strongly encourage
-# doing so since such a case is unlikely.
-FFMPEG_SUBSLOT=56.58.58
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_MIN_CLONE_TYPE="single"
-   EGIT_REPO_URI="https://git.ffmpeg.org/ffmpeg.git;
-fi
-
-inherit flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
-
-DESCRIPTION="Complete solution to record/convert/stream audio and video. 
Includes libavcodec"
-HOMEPAGE="https://ffmpeg.org/;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
-   SRC_URI="mirror://gentoo/${P}.tar.bz2"
-else # Release
-   

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

2022-07-20 Thread Matt Turner
commit: 70f63a2251edf85bb7b34e01e207b9c91a1b3f36
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 02:53:04 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:53:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70f63a22

media-video/ffmpeg: Drop multilib dep on nv-codec-headers

Bug: https://bugs.gentoo.org/836244
Signed-off-by: Matt Turner  gentoo.org>

 media-video/ffmpeg/{ffmpeg-4.2.4-r1.ebuild => ffmpeg-4.2.4-r2.ebuild} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild 
b/media-video/ffmpeg/ffmpeg-4.2.4-r2.ebuild
similarity index 99%
rename from media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild
rename to media-video/ffmpeg/ffmpeg-4.2.4-r2.ebuild
index 8253e2d5..02b20c3dc611 100644
--- a/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild
+++ b/media-video/ffmpeg/ffmpeg-4.2.4-r2.ebuild
@@ -250,7 +250,7 @@ RDEPEND="
svg? ( gnome-base/librsvg:2=[${MULTILIB_USEDEP}] )
truetype? ( >=media-libs/freetype-2.5.0.1:2[${MULTILIB_USEDEP}] )
vaapi? ( >=x11-libs/libva-1.2.1-r1:0=[${MULTILIB_USEDEP}] )
-   nvenc? ( >=media-libs/nv-codec-headers-9.0.18.0[${MULTILIB_USEDEP}] )
+   nvenc? ( >=media-libs/nv-codec-headers-9.0.18.0 )
vdpau? ( >=x11-libs/libvdpau-0.7[${MULTILIB_USEDEP}] )
vidstab? ( >=media-libs/vidstab-1.1.0[${MULTILIB_USEDEP}] )
vorbis? (



[gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/, media-video/ffmpeg/files/

2022-07-20 Thread Matt Turner
commit: 2c52b57df8765a1d6a9fadabc6826de0cb701245
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 02:50:35 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:50:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2c52b57d

Revert "media-video/ffmpeg: Drop old versions"

This reverts commit eeca71e786b6fdc384121c61019a13ff77be8f0f.

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

 media-video/ffmpeg/Manifest|   5 +
 media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild  | 555 
 media-video/ffmpeg/ffmpeg-4.3.2-r1.ebuild  | 560 
 media-video/ffmpeg/ffmpeg-4.4.1-r5.ebuild  | 583 +
 .../files/ffmpeg-4.3-altivec-novsx-yuv2rgb.patch   |  23 +
 .../files/ffmpeg-4.3-fix-build-without-SSSE3.patch |  22 +
 6 files changed, 1748 insertions(+)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index a359d8f1a2cb..26c660276496 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -1,3 +1,8 @@
+DIST ffmpeg-4.2.2-ppc64-altivec.patch.gz 7171 BLAKE2B 
6676dadb22d2ab4b0f5c19b418448c5b9b54fd8c803c3f0ab517c6fa7990be08098dd6f6a2b1b3e77a1bed31a069c702366aba79ef9141ff9e23cd8c1b6e2885
 SHA512 
6653975017de3f7bde420860419fbdddb50ae41dbb811b819f4b5b13807bf885a4c01736f05a684515f97b0d63bd8896d5951a3276af90cc74abfe32dc2e2407
+DIST ffmpeg-4.2.2-ppc64-gcc.patch.gz 750 BLAKE2B 
3a9cc7f0135e077c77179a7ca3da917bca3995d99d53b58221b23181a075f330132f83ea90a6110e89f90c7c3b5b2a7837559c5df414d9bd52dbb3ec166b1545
 SHA512 
701b0635e0819484a31de2062ba52d95ee03883ab56547cd75c3646a9b32bf3ecc7f719690b93f29202cfed0fdeecd26b51b9f3c66e72a999a3e8d9e97389275
+DIST ffmpeg-4.2.4.tar.bz2 10959430 BLAKE2B 
932bc0046edab5587063bbc04d6ef0149876bd1001ad185384fcabb3d0ae196c9ba591e680823b3c7b6e0ef9a0a9e9575a8b08439fdd89ef0e4dabb9d4a7f4e6
 SHA512 
5c74e3fe77ddf8ffede0e4692d574858dd0626e542380a819ab79c0f669c6c1329ffbccb872502f60306e561f10aa8bc1e61d09b2bea829870fe4a48b76460c6
+DIST ffmpeg-4.3.2.tar.bz2 11307134 BLAKE2B 
97e1e598e4abe397b06298d545c3073ea2303e11c01e98343fe09d99174e02ca94f52c4df0d389fbefe7814686221446d30f107092f00cb0b69275c8747d6f32
 SHA512 
ec5566f8684f0ceb18184d59786ea1fc166ab28c46260ebcca5b919ad53137ba7317fd0c537e97df28553572a0d5e42c558773c808cf76995d67985aec2d6d4d
+DIST ffmpeg-4.4.1.tar.bz2 11494996 BLAKE2B 
050b0501cb21f44451d59bf3b20b18d55234636b5a69a4962103d63f80ce9af172cc2cecb1e33b92334fcf635b283afddbdfa20cbd6deb526008cdb34ae01c16
 SHA512 
c41e63ffa9f5465ea3a7f4a8b255b299a2f49d5868ada4310a2344b8fea02476365c44871defd5609da55c805cbb58f34063dbdd4b203ade932cba8b3cfefc72
 DIST ffmpeg-4.4.2.tar.xz 9562968 BLAKE2B 
be044e9895acdd71a237a343a8d047c56db845c693b8c07877fc8049b630eb254e3430b6e9916330e6b3d53cbdc9f06680d80307a1fea1377bb818f4168bb276
 SHA512 
abce847c607ac6d63fe32ceff8bf8724888acf2b7db9a083cba50e3235590cdcb27feb7e0a314133d0030809fb54d474f64001fc9ab7d896a819159869c09d5a
 DIST ffmpeg-4.4.2.tar.xz.asc 520 BLAKE2B 
1ff4a886c7703a05a19499ae5b2b6207df24e05844861cb52f2c56a97f47ab4fefa5011de46a385bab9684964470697ec5e74553098392877f7521a04ffe0fc4
 SHA512 
a4df97a6328fc076b5611023bd61254f1a5043db1ec2f3426bee305206b2b0937047ede9cb51db31a3387a16218fe95a7a40296770574fa32660118938a9d301
 DIST ffmpeg-5.0.1.tar.xz 9812524 BLAKE2B 
0a37d425780f7e15836848048214411829bceb0de12bb7089803feb3dda07a077be9c8e8174b72792558ed86d92224bee9d4db20cc74690ea54312fbf2f10e83
 SHA512 
e5810c7379748a6bbe1a903bf36b4372b67cb3973179727b6af6f0118eef46f4c990155961cc37255e08a5bafdc4b4683503ad410ebb7afe7a35b891c01fa602

diff --git a/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild 
b/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild
new file mode 100644
index ..8253e2d5
--- /dev/null
+++ b/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild
@@ -0,0 +1,555 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Subslot: libavutil major.libavcodec major.libavformat major
+# Since FFmpeg ships several libraries, subslot is kind of limited here.
+# Most consumers will use those three libraries, if a "less used" library
+# changes its soname, consumers will have to be rebuilt the old way
+# (preserve-libs).
+# If, for example, a package does not link to libavformat and only libavformat
+# changes its ABI then this package will be rebuilt needlessly. Hence, such a
+# package is free _not_ to := depend on FFmpeg but I would strongly encourage
+# doing so since such a case is unlikely.
+FFMPEG_SUBSLOT=56.58.58
+
+SCM=""
+if [ "${PV#}" != "${PV}" ] ; then
+   SCM="git-r3"
+   EGIT_MIN_CLONE_TYPE="single"
+   EGIT_REPO_URI="https://git.ffmpeg.org/ffmpeg.git;
+fi
+
+inherit flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
+
+DESCRIPTION="Complete solution to record/convert/stream audio and video. 
Includes libavcodec"
+HOMEPAGE="https://ffmpeg.org/;
+if [ "${PV#}" != "${PV}" ] ; then
+   SRC_URI=""
+elif [ 

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

2022-07-20 Thread Matt Turner
commit: fd69b0661147eff7524c8bbcce385965e8361675
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 02:31:10 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:31:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd69b066

Revert "dev-libs/libgit2: Drop old versions"

This reverts commit 9c274cc0a2fc2297a82030f2335756e994c3bac4.

dev-util/geany-plugins still depends on this.

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

 dev-libs/libgit2/Manifest |  1 +
 dev-libs/libgit2/libgit2-1.3.2.ebuild | 76 +++
 2 files changed, 77 insertions(+)

diff --git a/dev-libs/libgit2/Manifest b/dev-libs/libgit2/Manifest
index 5d393f4b03b2..3e4085a0fb76 100644
--- a/dev-libs/libgit2/Manifest
+++ b/dev-libs/libgit2/Manifest
@@ -1,2 +1,3 @@
+DIST libgit2-1.3.2.tar.gz 5824473 BLAKE2B 
521512721d5959274898046e4341e000c3d0bb28cffde9c1c5f9640f73c74fb3b5330a2329b57a92490acd93f6b59f9b53d9940b50a1056c15f52632db9fdfe6
 SHA512 
580ad6f3e2cb992014d7fecef4d834dd0fda169c4439ec5d566322edb457b2173910b25a49ba50d5bd05518ad771ee2f42e47ab48ce417c297b6a93dd0cb502d
 DIST libgit2-1.4.4.tar.gz 5855349 BLAKE2B 
2668e351521e1cd9d2998c45c65e2a8c30f3436d94f86ebaa10382d01afb136bbde28c71d359fb57757ebbd44b1cef1bacd302023d0803a23697aee10f03ebac
 SHA512 
8f4cc43de9b92866ac12e01613efe0ff808deca29ff82b6da98a38c814bb711ff3133145d0219210af7015955fbe381be6f1cb98915811d3c37e92b01eb522e9
 DIST libgit2-1.5.0.tar.gz 5893437 BLAKE2B 
4108de0e8fc6a02e4172f47cb69cdfe8c85a0a72235432ca58b02d94e0bcb8390caf0c710060772551cc3a392291778ae14b561256c6d88058d0ae5a277f2fbf
 SHA512 
7a32b27cd32bd03ce7be6c127317f82a4ac6f16615c3234699676781f4858d057edb0410b2fe36fd2e634b00748a8b0be17f23809e09a7602ba48185134300f7

diff --git a/dev-libs/libgit2/libgit2-1.3.2.ebuild 
b/dev-libs/libgit2/libgit2-1.3.2.ebuild
new file mode 100644
index ..6b1791d917a0
--- /dev/null
+++ b/dev-libs/libgit2/libgit2-1.3.2.ebuild
@@ -0,0 +1,76 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit cmake python-any-r1
+
+DESCRIPTION="A linkable library for Git"
+HOMEPAGE="https://libgit2.org/;
+SRC_URI="
+   https://github.com/${PN}/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
+"
+S=${WORKDIR}/${P/_/-}
+
+LICENSE="GPL-2-with-linking-exception"
+SLOT="0/$(ver_cut 1-2)"
+KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86 ~ppc-macos"
+IUSE="examples gssapi +ssh test +threads trace"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/libpcre:=
+   net-libs/http-parser:=
+   sys-libs/zlib
+   dev-libs/openssl:0=
+   gssapi? ( virtual/krb5 )
+   ssh? ( net-libs/libssh2 )
+"
+DEPEND="
+   ${RDEPEND}
+"
+BDEPEND="
+   ${PYTHON_DEPS}
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   cmake_src_prepare
+   # relying on forked http-parser to support some obscure URI form
+   sed -i -e '/empty_port/s:test:_&:' tests/network/url/parse.c || die
+}
+
+src_configure() {
+   local mycmakeargs=(
+   -DBUILD_CLAR=$(usex test)
+   -DENABLE_TRACE=$(usex trace ON OFF)
+   -DUSE_GSSAPI=$(usex gssapi ON OFF)
+   -DUSE_SSH=$(usex ssh)
+   -DTHREADSAFE=$(usex threads)
+   -DUSE_HTTP_PARSER=system
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   if [[ ${EUID} -eq 0 ]] ; then
+   # repo::iterator::fs_preserves_error fails if run as root
+   # since root can still access dirs with  perms
+   ewarn "Skipping tests: non-root privileges are required for all 
tests to pass"
+   else
+   local TEST_VERBOSE=1
+   cmake_src_test -R offline
+   fi
+}
+
+src_install() {
+   cmake_src_install
+   dodoc docs/*.{md,txt}
+
+   if use examples ; then
+   find examples -name '.gitignore' -delete || die
+   dodoc -r examples
+   docompress -x /usr/share/doc/${PF}/examples
+   fi
+}



[gentoo-commits] repo/gentoo:master commit in: media-video/ffmpeg/, media-video/ffmpeg/files/

2022-07-20 Thread Matt Turner
commit: eeca71e786b6fdc384121c61019a13ff77be8f0f
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 02:30:16 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:30:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eeca71e7

media-video/ffmpeg: Drop old versions

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

 media-video/ffmpeg/Manifest|   5 -
 media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild  | 555 
 media-video/ffmpeg/ffmpeg-4.3.2-r1.ebuild  | 560 
 media-video/ffmpeg/ffmpeg-4.4.1-r5.ebuild  | 583 -
 .../files/ffmpeg-4.3-altivec-novsx-yuv2rgb.patch   |  23 -
 .../files/ffmpeg-4.3-fix-build-without-SSSE3.patch |  22 -
 6 files changed, 1748 deletions(-)

diff --git a/media-video/ffmpeg/Manifest b/media-video/ffmpeg/Manifest
index 26c660276496..a359d8f1a2cb 100644
--- a/media-video/ffmpeg/Manifest
+++ b/media-video/ffmpeg/Manifest
@@ -1,8 +1,3 @@
-DIST ffmpeg-4.2.2-ppc64-altivec.patch.gz 7171 BLAKE2B 
6676dadb22d2ab4b0f5c19b418448c5b9b54fd8c803c3f0ab517c6fa7990be08098dd6f6a2b1b3e77a1bed31a069c702366aba79ef9141ff9e23cd8c1b6e2885
 SHA512 
6653975017de3f7bde420860419fbdddb50ae41dbb811b819f4b5b13807bf885a4c01736f05a684515f97b0d63bd8896d5951a3276af90cc74abfe32dc2e2407
-DIST ffmpeg-4.2.2-ppc64-gcc.patch.gz 750 BLAKE2B 
3a9cc7f0135e077c77179a7ca3da917bca3995d99d53b58221b23181a075f330132f83ea90a6110e89f90c7c3b5b2a7837559c5df414d9bd52dbb3ec166b1545
 SHA512 
701b0635e0819484a31de2062ba52d95ee03883ab56547cd75c3646a9b32bf3ecc7f719690b93f29202cfed0fdeecd26b51b9f3c66e72a999a3e8d9e97389275
-DIST ffmpeg-4.2.4.tar.bz2 10959430 BLAKE2B 
932bc0046edab5587063bbc04d6ef0149876bd1001ad185384fcabb3d0ae196c9ba591e680823b3c7b6e0ef9a0a9e9575a8b08439fdd89ef0e4dabb9d4a7f4e6
 SHA512 
5c74e3fe77ddf8ffede0e4692d574858dd0626e542380a819ab79c0f669c6c1329ffbccb872502f60306e561f10aa8bc1e61d09b2bea829870fe4a48b76460c6
-DIST ffmpeg-4.3.2.tar.bz2 11307134 BLAKE2B 
97e1e598e4abe397b06298d545c3073ea2303e11c01e98343fe09d99174e02ca94f52c4df0d389fbefe7814686221446d30f107092f00cb0b69275c8747d6f32
 SHA512 
ec5566f8684f0ceb18184d59786ea1fc166ab28c46260ebcca5b919ad53137ba7317fd0c537e97df28553572a0d5e42c558773c808cf76995d67985aec2d6d4d
-DIST ffmpeg-4.4.1.tar.bz2 11494996 BLAKE2B 
050b0501cb21f44451d59bf3b20b18d55234636b5a69a4962103d63f80ce9af172cc2cecb1e33b92334fcf635b283afddbdfa20cbd6deb526008cdb34ae01c16
 SHA512 
c41e63ffa9f5465ea3a7f4a8b255b299a2f49d5868ada4310a2344b8fea02476365c44871defd5609da55c805cbb58f34063dbdd4b203ade932cba8b3cfefc72
 DIST ffmpeg-4.4.2.tar.xz 9562968 BLAKE2B 
be044e9895acdd71a237a343a8d047c56db845c693b8c07877fc8049b630eb254e3430b6e9916330e6b3d53cbdc9f06680d80307a1fea1377bb818f4168bb276
 SHA512 
abce847c607ac6d63fe32ceff8bf8724888acf2b7db9a083cba50e3235590cdcb27feb7e0a314133d0030809fb54d474f64001fc9ab7d896a819159869c09d5a
 DIST ffmpeg-4.4.2.tar.xz.asc 520 BLAKE2B 
1ff4a886c7703a05a19499ae5b2b6207df24e05844861cb52f2c56a97f47ab4fefa5011de46a385bab9684964470697ec5e74553098392877f7521a04ffe0fc4
 SHA512 
a4df97a6328fc076b5611023bd61254f1a5043db1ec2f3426bee305206b2b0937047ede9cb51db31a3387a16218fe95a7a40296770574fa32660118938a9d301
 DIST ffmpeg-5.0.1.tar.xz 9812524 BLAKE2B 
0a37d425780f7e15836848048214411829bceb0de12bb7089803feb3dda07a077be9c8e8174b72792558ed86d92224bee9d4db20cc74690ea54312fbf2f10e83
 SHA512 
e5810c7379748a6bbe1a903bf36b4372b67cb3973179727b6af6f0118eef46f4c990155961cc37255e08a5bafdc4b4683503ad410ebb7afe7a35b891c01fa602

diff --git a/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild 
b/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild
deleted file mode 100644
index 8253e2d5..
--- a/media-video/ffmpeg/ffmpeg-4.2.4-r1.ebuild
+++ /dev/null
@@ -1,555 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-# Subslot: libavutil major.libavcodec major.libavformat major
-# Since FFmpeg ships several libraries, subslot is kind of limited here.
-# Most consumers will use those three libraries, if a "less used" library
-# changes its soname, consumers will have to be rebuilt the old way
-# (preserve-libs).
-# If, for example, a package does not link to libavformat and only libavformat
-# changes its ABI then this package will be rebuilt needlessly. Hence, such a
-# package is free _not_ to := depend on FFmpeg but I would strongly encourage
-# doing so since such a case is unlikely.
-FFMPEG_SUBSLOT=56.58.58
-
-SCM=""
-if [ "${PV#}" != "${PV}" ] ; then
-   SCM="git-r3"
-   EGIT_MIN_CLONE_TYPE="single"
-   EGIT_REPO_URI="https://git.ffmpeg.org/ffmpeg.git;
-fi
-
-inherit flag-o-matic multilib multilib-minimal toolchain-funcs ${SCM}
-
-DESCRIPTION="Complete solution to record/convert/stream audio and video. 
Includes libavcodec"
-HOMEPAGE="https://ffmpeg.org/;
-if [ "${PV#}" != "${PV}" ] ; then
-   SRC_URI=""
-elif [ "${PV%_p*}" != "${PV}" ] ; then # Snapshot
-   

[gentoo-commits] repo/gentoo:master commit in: x11-themes/zuki-themes/

2022-07-20 Thread Matt Turner
commit: dee558e1e7ae87f62cfd364a6f602465a55ae6ec
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:53 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:03:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dee558e1

x11-themes/zuki-themes: Drop old versions

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

 x11-themes/zuki-themes/Manifest  |  1 -
 x11-themes/zuki-themes/metadata.xml  |  1 -
 x11-themes/zuki-themes/zuki-themes-3.32.2.ebuild | 49 
 3 files changed, 51 deletions(-)

diff --git a/x11-themes/zuki-themes/Manifest b/x11-themes/zuki-themes/Manifest
index 2ec36112c546..0037b27663b4 100644
--- a/x11-themes/zuki-themes/Manifest
+++ b/x11-themes/zuki-themes/Manifest
@@ -1,2 +1 @@
-DIST zuki-themes-3.32.2.tar.gz 915367 BLAKE2B 
bfb19a85628daae10043d62e5f63560dd16a01fe78e59dc7adf2443a3c6ee9400e60d63b4e08d326553e580232ad9d29968fb94bd4793a1094764725c3354cf1
 SHA512 
4c335a72d357c8a610f9a6aea8b82f3836d1d99f64324ecb30345f7487863b8839c28ee215c9c9efa2ba61b5c5f1945e3e03dd652e0d94c0d5dcf1bf0965e90b
 DIST zuki-themes-4.0.tar.gz 585870 BLAKE2B 
d8a11c9193dc4b97cd05296d6cc08a75e3dab85b2b8330b14fb8e0bdbaf0ed188c38a7e872a92a161332ac288afd7178d9cee760f242aaa120286c4d72859f1f
 SHA512 
0640613de612821035c9ebdbbe8c03f2c500e0ab80369b87be61483c2fe38b2a38b4909c3525daff0c41dad2ee5da060c3b4d7a6ccb7cbd27d7154a131f3aef6

diff --git a/x11-themes/zuki-themes/metadata.xml 
b/x11-themes/zuki-themes/metadata.xml
index 94c104e1926a..15bfe35b950c 100644
--- a/x11-themes/zuki-themes/metadata.xml
+++ b/x11-themes/zuki-themes/metadata.xml
@@ -11,7 +11,6 @@

Install theme for 
gnome-base/gnome-shell
Install GTK+2 theme
-   Install Metacity theme for 
mate-base/mate
Install theme for 
xfce-base/xfwm4

 

diff --git a/x11-themes/zuki-themes/zuki-themes-3.32.2.ebuild 
b/x11-themes/zuki-themes/zuki-themes-3.32.2.ebuild
deleted file mode 100644
index 80aca3959d59..
--- a/x11-themes/zuki-themes/zuki-themes-3.32.2.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit eapi7-ver
-
-MY_PV="$(ver_rs 2 -)"
-DESCRIPTION="Zuki themes for GTK, gnome-shell and more"
-HOMEPAGE="https://github.com/lassekongo83/zuki-themes;
-SRC_URI="https://github.com/lassekongo83/${PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gnome-shell mate xfce"
-
-RDEPEND="
-   >=x11-themes/gnome-themes-standard-3.6
-   >=x11-themes/gtk-engines-murrine-0.98.1.1
-   gnome-shell? ( media-fonts/roboto )
-   !

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

2022-07-20 Thread Matt Turner
commit: 72d342c57e66639aeb0e0776a860939d459e66ef
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:37 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:03:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=72d342c5

x11-misc/alacarte: Drop old versions

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

 x11-misc/alacarte/Manifest   |  1 -
 x11-misc/alacarte/alacarte-3.44.1.ebuild | 36 
 2 files changed, 37 deletions(-)

diff --git a/x11-misc/alacarte/Manifest b/x11-misc/alacarte/Manifest
index 645bbbe9..635e21745e23 100644
--- a/x11-misc/alacarte/Manifest
+++ b/x11-misc/alacarte/Manifest
@@ -1,2 +1 @@
-DIST alacarte-3.44.1.tar.xz 253364 BLAKE2B 
ebd542430f909291d06c1094aac52f87760547013f012167fa5616609251a6cb48b258122424a119b3ab10e6e2289d9a282dd66da3dcf5590b09d9c686a8934b
 SHA512 
84b1cebdcbb53e2cca5a1425829b00db0b2a11e308584ea96179c2d0451d8c77fa6a995ae4671a024fab72869c7d2e9986dc310bfab38fe8b7b2f54d383501ca
 DIST alacarte-3.44.2.tar.xz 253580 BLAKE2B 
206eea28b50ef6d0cf228031ff72c16c6ebd130dfa623b96eb727ef62aad3db0003f3a97bc188f4b8a0e9d18cc184a9230fb332131d37afb0abe71dc3d13ee1e
 SHA512 
b62c15ca37717e988b1d64f0ab565970ae15a4bc11a3f31da8574a0b4f10a9cf8b94d0a85be34d871c106ab34c63b2dfbf535b46eb630829e73c14023b99053e

diff --git a/x11-misc/alacarte/alacarte-3.44.1.ebuild 
b/x11-misc/alacarte/alacarte-3.44.1.ebuild
deleted file mode 100644
index bd4396e3b88b..
--- a/x11-misc/alacarte/alacarte-3.44.1.ebuild
+++ /dev/null
@@ -1,36 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="xml"
-
-inherit gnome2 python-single-r1
-
-DESCRIPTION="Simple GNOME menu editor"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/alacarte;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~ia64 ~ppc ~ppc64 ~sparc x86"
-IUSE=""
-REQUIRED_USE="${PYTHON_REQUIRED_USE}"
-
-DEPEND="
-   ${PYTHON_DEPS}
-   $(python_gen_cond_dep 'dev-python/pygobject:3[${PYTHON_USEDEP}]')
-   >=gnome-base/gnome-menus-3.5.3:3[introspection]
-"
-RDEPEND="${DEPEND}
-   x11-libs/gdk-pixbuf:2[introspection]
-   x11-libs/gtk+:3[introspection]
-"
-BDEPEND="
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-src_install() {
-   gnome2_src_install
-   python_optimize
-}



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

2022-07-20 Thread Matt Turner
commit: 4e339e3ecd4cc83732bbaa60acb0d1a1ed06357a
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:03:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4e339e3e

x11-libs/libnotify: Drop old versions

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

 x11-libs/libnotify/Manifest  |  2 -
 x11-libs/libnotify/libnotify-0.7.9-r1.ebuild | 63 
 x11-libs/libnotify/libnotify-0.8.0.ebuild| 63 
 3 files changed, 128 deletions(-)

diff --git a/x11-libs/libnotify/Manifest b/x11-libs/libnotify/Manifest
index 5147622da10c..c51194202d64 100644
--- a/x11-libs/libnotify/Manifest
+++ b/x11-libs/libnotify/Manifest
@@ -1,4 +1,2 @@
 DIST libnotify-0.7.12.tar.xz 102032 BLAKE2B 
fc0c0f377bf86cb9a7d3e080cf0aa23fa287a9199656d403624925208d86390e96f62d4c41f4b457efd403139f1bad52ff5fdd2c0cb3270c0abc82957b2634cf
 SHA512 
1ddbdc2ea7ba653ea54169db9ed3d471f6e3421ef29e486c9b8d36837a655bcd613d0f07a8cf1253b87c42a2651e2f1634145622d8624d91e4223452deb99f1b
-DIST libnotify-0.7.9.tar.xz 98148 BLAKE2B 
4728d00a204cd1003e8171a54c23bb975c0477c245c1175558f27555763113ec8bd7abd7ef81f6bad2b98604efe436d843958e77473436e68560775804473383
 SHA512 
8a842b50777279efdb7d96a836a546c47decad158a4f03f7ffc818860d1f6276a657619e4f4a19a4e2f5ad55e0371c793420d50d802983700e8c342273b73874
-DIST libnotify-0.8.0.tar.xz 105288 BLAKE2B 
fc1897896d0f0d1bc13c63717ea050eb05da98979257970d57f780b9602b43b3449211424ee5e116eae957438ccb43a3dfa78935eeca9bc27a729be9e2b4e804
 SHA512 
17fc2e8bb9a61560e796b9e4258ebb56e303e285fa0c5a58f5dbddc0a5493e6f8474d24c1f0a34178810385e9f1d33ddba027b9c0f4364d83ddb57d4f5d78f56
 DIST libnotify-0.8.1.tar.xz 105368 BLAKE2B 
840b56941e9773b4db5ce1ffba7ca3fc04e76877349c53ed1c985acf7405a575bc9709e0255edf4562b5596de97fcd7e9dbef32d99bc853b94b203a7da0c03e4
 SHA512 
464b7ff9f2f6268919f336bd9c6f8c243c29282ba6ada7e491ab514b3630977a319dfa522705c68e17fff2d87effc75e009d656bc46c5e92917ad64e66b25320

diff --git a/x11-libs/libnotify/libnotify-0.7.9-r1.ebuild 
b/x11-libs/libnotify/libnotify-0.7.9-r1.ebuild
deleted file mode 100644
index 34fa5a648bbb..
--- a/x11-libs/libnotify/libnotify-0.7.9-r1.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnome.org meson-multilib xdg-utils
-
-DESCRIPTION="A library for sending desktop notifications"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/libnotify;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
-IUSE="gtk-doc +introspection test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-libs/glib-2.26:2[${MULTILIB_USEDEP}]
-   x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-1.54:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   >=dev-libs/gobject-introspection-common-1.32
-   dev-util/glib-utils
-   virtual/pkgconfig
-   app-text/docbook-xsl-ns-stylesheets
-   dev-libs/libxslt
-   gtk-doc? ( dev-util/gtk-doc
-   app-text/docbook-xml-dtd:4.1.2 )
-   test? ( x11-libs/gtk+:3[${MULTILIB_USEDEP}] )
-"
-IDEPEND="app-eselect/eselect-notify-send"
-PDEPEND="virtual/notification-daemon"
-
-src_prepare() {
-   default
-   xdg_environment_reset
-}
-
-multilib_src_configure() {
-   local emesonargs=(
-   $(meson_use test tests)
-   $(meson_native_use_feature introspection)
-   $(meson_native_use_bool gtk-doc gtk_doc)
-   -Ddocbook_docs=disabled
-   )
-   meson_src_configure
-}
-
-multilib_src_install() {
-   meson_src_install
-
-   mv "${ED}"/usr/bin/{,libnotify-}notify-send || die #379941
-}
-
-pkg_postinst() {
-   eselect notify-send update ifunset
-}
-
-pkg_postrm() {
-   eselect notify-send update ifunset
-}

diff --git a/x11-libs/libnotify/libnotify-0.8.0.ebuild 
b/x11-libs/libnotify/libnotify-0.8.0.ebuild
deleted file mode 100644
index f91fcaa55488..
--- a/x11-libs/libnotify/libnotify-0.8.0.ebuild
+++ /dev/null
@@ -1,63 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnome.org meson-multilib xdg-utils
-
-DESCRIPTION="A library for sending desktop notifications"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/libnotify;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~mips ~ppc ~ppc64 ~riscv 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
-IUSE="gtk-doc +introspection test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-libs/glib-2.38:2[${MULTILIB_USEDEP}]
-   x11-libs/gdk-pixbuf:2[${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-1.54:= )
-"
-DEPEND="${RDEPEND}"

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

2022-07-20 Thread Matt Turner
commit: 5c8c03521b00648f1121c476456ebb6d15162ba3
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:19 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c8c0352

sys-apps/osinfo-db: Drop old versions

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

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

diff --git a/sys-apps/osinfo-db/Manifest b/sys-apps/osinfo-db/Manifest
index d9bdd6aa26a8..41214037213c 100644
--- a/sys-apps/osinfo-db/Manifest
+++ b/sys-apps/osinfo-db/Manifest
@@ -1,2 +1 @@
-DIST osinfo-db-20220214.tar.xz 127528 BLAKE2B 
7e0076d3f844e52744dd6086404504831c7ed625003bc789103919a140a5a281c1a44773f7decf0825cad845274417b3cb510f3bd62e840f84b972358755dc34
 SHA512 
d8823b3928d2648a759c4c15b57b57cfd79a406813ec375b02bf2c382c1b22ee0177e520ef04cf334af3b08cc810867472c35a73555f1fdb8855a1b8679c183c
 DIST osinfo-db-20220516.tar.xz 129272 BLAKE2B 
47f6eb2e1ae0cad277be71fb0955415c4afdb27e3b80e36c98ce5b7c8d22efcab91047e93c586045baa233ac61dc08113a5aedb626db4f24bf0472455826e481
 SHA512 
44c56824c774e68bd79633c415c71155e814c1f928fceba845ab649f8cb0dd325ad06b91a2d720cb25fd62e67d7ea17774cc395995b4f201527c4a6aa447a744

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



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

2022-07-20 Thread Matt Turner
commit: 041a21aa7cb8a9cadaa140aed9d7cf7150f4c083
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:23 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:03:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=041a21aa

sys-block/gparted: Drop old versions

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

 sys-block/gparted/gparted-1.4.0.ebuild | 94 --
 1 file changed, 94 deletions(-)

diff --git a/sys-block/gparted/gparted-1.4.0.ebuild 
b/sys-block/gparted/gparted-1.4.0.ebuild
deleted file mode 100644
index f459c427b2ad..
--- a/sys-block/gparted/gparted-1.4.0.ebuild
+++ /dev/null
@@ -1,94 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit gnome2 optfeature virtualx
-
-DESCRIPTION="Partition editor for graphically managing your disk partitions"
-HOMEPAGE="https://gparted.org/ https://gitlab.gnome.org/GNOME/gparted/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-2+ FDL-1.2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86"
-IUSE="kde policykit wayland"
-
-DEPEND="
-   !policykit? (
-   kde? ( >=kde-plasma/kde-cli-tools-5.8.6-r1[kdesu] ) )
-   policykit? ( >=sys-auth/polkit-0.102 )
-   >=dev-cpp/glibmm-2.56.1:2
-   >=dev-cpp/gtkmm-3.24:3.0
-   >=dev-libs/glib-2.58.3-r1:2
-   >=sys-block/parted-3.2:=
-   >=dev-libs/libsigc++-2.10.1:2
-"
-RDEPEND="${DEPEND}
-   >=sys-apps/util-linux-2.33.2
-   wayland? ( x11-apps/xhost )
-"
-BDEPEND="
-   app-text/docbook-xml-dtd:4.1.2
-   >=dev-util/intltool-0.51.0-r2
-   dev-util/itstool
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.3.1-musl-nullptr.patch
-)
-
-src_configure() {
-   gnome2_src_configure \
-   --enable-doc \
-   --enable-online-resize \
-   $(use_enable wayland xhost-root) \
-   GKSUPROG=kdesu \
-   ac_cv_prog_have_scrollkeeper_update=no
-}
-
-src_install() {
-   gnome2_src_install
-
-   local _ddir="${D}"/usr/share/applications
-   local _bdir="${D}"/usr/bin
-
-   if ! use policykit; then
-   if use kde; then
-   cp "${_ddir}"/gparted{,-kde}.desktop || die
-   cp "${_bdir}"/gparted{,-kde} || die
-   sed -i -e '/Exec/ s:gparted:gparted-kde:' 
"${_ddir}"/gparted-kde.desktop || die
-   echo 'OnlyShowIn=KDE;' >> 
"${_ddir}"/gparted-kde.desktop || die
-   fi
-   else
-   sed -i -e 's:kdesu::' "${_bdir}"/gparted || die
-   fi
-
-   mv "${ED}"/usr/share/{appdata,metainfo}
-}
-
-src_test() {
-   virtx emake check
-}
-
-pkg_postinst() {
-   gnome2_pkg_postinst
-
-   optfeature_header
-   optfeature "BTRFS support"   sys-fs/btrfs-progs
-   optfeature "DMRAID support"  sys-fs/dmraid 
sys-fs/multipath-tools
-   optfeature "Encrypted device / LUKS support" sys-fs/cryptsetup
-   optfeature "exFAT support"   sys-fs/exfatprogs
-   optfeature "EXT2/EXT3/EXT4 support"  sys-fs/e2fsprogs
-   optfeature "F2FS support"sys-fs/f2fs-tools
-   optfeature "FAT support" sys-fs/dosfstools 
sys-fs/mtools
-   optfeature "HFS support" sys-fs/diskdev_cmds 
sys-fs/hfsutils virtual/udev
-   optfeature "JFS support" sys-fs/jfsutils
-   optfeature "MDADM support"   sys-fs/mdadm
-   optfeature "NTFS support"sys-fs/ntfs3g[ntfsprogs]
-   optfeature "Reiser4 support" sys-fs/reiser4progs
-   optfeature "ReiserFS support"sys-fs/reiserfsprogs
-   optfeature "UDF support" sys-fs/udftools
-   optfeature "XFS support" sys-fs/xfsprogs 
sys-fs/xfsdump
-}



[gentoo-commits] repo/gentoo:master commit in: x11-themes/adwaita-icon-theme/

2022-07-20 Thread Matt Turner
commit: 8ae6a6d7312b9a367477842950a9183866c08c67
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:40 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:03:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8ae6a6d7

x11-themes/adwaita-icon-theme: Drop old versions

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

 .../adwaita-icon-theme-42.0.ebuild | 56 --
 1 file changed, 56 deletions(-)

diff --git a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-42.0.ebuild 
b/x11-themes/adwaita-icon-theme/adwaita-icon-theme-42.0.ebuild
deleted file mode 100644
index 62ef41bf3703..
--- a/x11-themes/adwaita-icon-theme/adwaita-icon-theme-42.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome2
-
-DESCRIPTION="GNOME default icon theme"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/adwaita-icon-theme;
-
-SRC_URI="${SRC_URI}
-   branding? ( 
https://www.mail-archive.com/tango-artists@lists.freedesktop.org/msg00043/tango-gentoo-v1.1.tar.gz
 )
-"
-LICENSE="
-   || ( LGPL-3 CC-BY-SA-3.0 )
-   branding? ( CC-BY-SA-4.0 )
-"
-SLOT="0"
-IUSE="branding"
-KEYWORDS="amd64 arm arm64 ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
-
-# gtk+:3 is needed for build for the gtk-encode-symbolic-svg utility
-# librsvg is needed for gtk-encode-symbolic-svg to be able to read the source 
SVG via its pixbuf loader and at runtime for rendering scalable icons shipped 
by the theme
-DEPEND=">=x11-themes/hicolor-icon-theme-0.10"
-RDEPEND="${DEPEND}
-   >=gnome-base/librsvg-2.48:2
-"
-BDEPEND="
-   >=gnome-base/librsvg-2.48:2
-   sys-devel/gettext
-   virtual/pkgconfig
-   x11-libs/gtk+:3
-"
-# This ebuild does not install any binaries
-RESTRICT="binchecks strip"
-
-src_prepare() {
-   if use branding; then
-   for i in 16 22 24 32 48; do
-   cp "${WORKDIR}"/tango-gentoo-v1.1/${i}x${i}/gentoo.png \
-   "${S}"/Adwaita/${i}x${i}/places/start-here.png \
-   || die "Copying gentoo logos failed"
-   done
-   fi
-
-   # Install cursors in the right place used in Gentoo
-   sed -e 's:^\(cursordir.*\)icons\(.*\):\1cursors/xorg-x11\2:' \
-   -i "${S}"/Makefile.am \
-   -i "${S}"/Makefile.in || die
-
-   gnome2_src_prepare
-}
-
-src_configure() {
-   gnome2_src_configure GTK_UPDATE_ICON_CACHE=$(type -P true)
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-desktop-portal-gnome/

2022-07-20 Thread Matt Turner
commit: bf5d7cb6d0841f36ddbacd854bc58b291e70c787
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:21 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf5d7cb6

sys-apps/xdg-desktop-portal-gnome: Drop old versions

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

 sys-apps/xdg-desktop-portal-gnome/Manifest |  1 -
 .../xdg-desktop-portal-gnome-42.1.ebuild   | 41 --
 2 files changed, 42 deletions(-)

diff --git a/sys-apps/xdg-desktop-portal-gnome/Manifest 
b/sys-apps/xdg-desktop-portal-gnome/Manifest
index 0ab8800747ad..7970daea9ad6 100644
--- a/sys-apps/xdg-desktop-portal-gnome/Manifest
+++ b/sys-apps/xdg-desktop-portal-gnome/Manifest
@@ -1,2 +1 @@
-DIST xdg-desktop-portal-gnome-42.1.tar.xz 117932 BLAKE2B 
c0c6dc7e4efbfda8996d63c191228ebf867e3fe11a0ae031b5bfd4298a33ab3b9cb9d9cecc36c1b41eeb33c54bd3bca17149e641c1131f0be7dcb2dbdf42eda8
 SHA512 
6843fd10e7e70f3d09c2a9b1397288f553fb44bcae30e7992790fddbc92d6c5cc966c27b7f294e2de1a139d3893c009f1480855d66c873a13861f3fe4abecee7
 DIST xdg-desktop-portal-gnome-42.3.tar.xz 119228 BLAKE2B 
1cafeda9e9ad5431eb52520db19350e9ee4c9f65e0923f6f320561893a29e32fc5033f3da540dd492c3341a8cb6bf29687cbf04b027e68ee388d102ac7023cac
 SHA512 
0704eb29af5464fa0598cb4a05451866c8bacc20ad0638f7e799e7abdb4bbd86c41efbad963c493767190ae55f9d9c5d28360ee5fbbe1c42881969d03c7e84f5

diff --git 
a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-42.1.ebuild 
b/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-42.1.ebuild
deleted file mode 100644
index 405d9ea7195b..
--- a/sys-apps/xdg-desktop-portal-gnome/xdg-desktop-portal-gnome-42.1.ebuild
+++ /dev/null
@@ -1,41 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnome.org meson systemd xdg
-
-DESCRIPTION="Backend implementation for xdg-desktop-portal using GNOME"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/xdg-desktop-portal-gnome;
-
-LICENSE="LGPL-2.1"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~loong ~ppc ~ppc64 ~riscv ~x86"
-IUSE="wayland X"
-
-BDEPEND="
-   dev-util/gdbus-codegen
-   sys-devel/gettext
-   virtual/pkgconfig
-"
-
-DEPEND="
-   dev-libs/glib:2
-   gnome-base/gnome-desktop:4=
-   gui-libs/libadwaita:1
-   media-libs/fontconfig
-   sys-apps/dbus
-   >=sys-apps/xdg-desktop-portal-1.7
-   >=sys-apps/xdg-desktop-portal-gtk-1.14.0
-   gui-libs/gtk:4[wayland?,X?]
-"
-
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   local emesonargs=(
-   -Dsystemduserunitdir="$(systemd_get_userunitdir)"
-   )
-
-   meson_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-dbus-proxy/

2022-07-20 Thread Matt Turner
commit: 76c2f1dd4c903d2f9d5717a5bfb3896cc37a3139
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:20 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=76c2f1dd

sys-apps/xdg-dbus-proxy: Drop old versions

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

 sys-apps/xdg-dbus-proxy/Manifest   |  1 -
 .../xdg-dbus-proxy/xdg-dbus-proxy-0.1.3.ebuild | 30 --
 2 files changed, 31 deletions(-)

diff --git a/sys-apps/xdg-dbus-proxy/Manifest b/sys-apps/xdg-dbus-proxy/Manifest
index 8415c4f59ee3..2290afccae01 100644
--- a/sys-apps/xdg-dbus-proxy/Manifest
+++ b/sys-apps/xdg-dbus-proxy/Manifest
@@ -1,2 +1 @@
-DIST xdg-dbus-proxy-0.1.3.tar.xz 119896 BLAKE2B 
c789ad697c1cda84a4cde2c84b90370869bdaeb76736c2891270a58834296e3acbf83b311ba153a0d1e9f3266de0cc1eda63866e2808dcbb4aeac451f90da7f6
 SHA512 
bb730366efca9d0d199983063dd5cd7b8a8aac8d9efd8e3d6b6090166e5e09a74ef241a07388cfbb2f108e66b3a29114671a6d955324626aebefa1d6c2423632
 DIST xdg-dbus-proxy-0.1.4.tar.xz 122112 BLAKE2B 
c7d2898b703c51d6b53838996a0ae74e7a4e163b9611e28dfded54ab1a44c0473fa25daa13e94977c918544e0741bf0dd4747dfcae858468bc4abd288613cb8b
 SHA512 
d50fa916d07f23e080ab53cf290b5d6db73cfd8262253a48b9f012ce6c182e201d0a67efaeb7f28a844d3ef146aa48936dfbe4279a59b909a6dc4419d5f15b04

diff --git a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.3.ebuild 
b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.3.ebuild
deleted file mode 100644
index 772eacd203d8..
--- a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.3.ebuild
+++ /dev/null
@@ -1,30 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Filtering proxy for D-Bus connections"
-HOMEPAGE="https://github.com/flatpak/xdg-dbus-proxy;
-SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="
-   >=dev-libs/glib-2.40:2
-"
-DEPEND="${RDEPEND}
-   test? ( sys-apps/dbus )
-"
-BDEPEND="
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   virtual/pkgconfig
-"
-
-src_configure() {
-   econf --enable-man
-}



[gentoo-commits] repo/gentoo:master commit in: x11-terms/gnome-terminal/

2022-07-20 Thread Matt Turner
commit: 9bed130b5a972d389fff65d405fe8c1b0f5a3601
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:39 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:03:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bed130b

x11-terms/gnome-terminal: Drop old versions

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

 x11-terms/gnome-terminal/Manifest  |  1 -
 .../gnome-terminal/gnome-terminal-3.44.0.ebuild| 93 --
 2 files changed, 94 deletions(-)

diff --git a/x11-terms/gnome-terminal/Manifest 
b/x11-terms/gnome-terminal/Manifest
index 2199c60f8d38..e14e2a8469bf 100644
--- a/x11-terms/gnome-terminal/Manifest
+++ b/x11-terms/gnome-terminal/Manifest
@@ -1,3 +1,2 @@
 DIST gnome-terminal-3.44.0-cntr-ntfy-autottl-ts.patch.xz 37248 BLAKE2B 
b3599386e7272fc5b742c11663f09bbfafa84cc855bd13fd602d679601fbb4126f36cdb157db37db335bf9edfe7d2b85e534baf837c5817984ec17baa4cdbb6c
 SHA512 
6422a774abfee18b2681115344f508b72ead1bb9f27b5b1596b419a9ce5a137d41e2d749b6d784170225e7f21f15c109f7eb74cc3164371d53dee7790bf99187
-DIST gnome-terminal-3.44.0.tar.xz 1810124 BLAKE2B 
041aa7400cbf0f075c37f6276d06dbffb0b87da13d8bcb9d13e62b13a1e16ae612970d1ec6462c7c257f7bcf2da222b48df1d8d28ce24b216ae3d11c76f05341
 SHA512 
0cf039c0aa364a9ac63d9f24d466506a919cf733f2ee8dc1c6f42459e6c742bad678f7ad7cec3721e9512b8f414dc4c4c1f29057c73e5e4a870a04d6bcd98ed6
 DIST gnome-terminal-3.44.1.tar.xz 1813032 BLAKE2B 
3e001139aa0516bd27f7215c692c048393d6ad41737b8817f212529d3c530f6417d05601f63e6265e3fb84e788322341c25784a0a26ee7434f1d4bccd31c1eea
 SHA512 
afaa9a1b4fa86fea853a242f167d1ba3438efe4e049336bae138cb800d43c3325f624849463f16c9d4e34360916377c4edbfd2f3977212b51e35a41cca88b283

diff --git a/x11-terms/gnome-terminal/gnome-terminal-3.44.0.ebuild 
b/x11-terms/gnome-terminal/gnome-terminal-3.44.0.ebuild
deleted file mode 100644
index de2616fb840b..
--- a/x11-terms/gnome-terminal/gnome-terminal-3.44.0.ebuild
+++ /dev/null
@@ -1,93 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
-inherit gnome.org gnome2-utils meson python-any-r1 readme.gentoo-r1 xdg
-
-DESCRIPTION="A terminal emulator for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Terminal/ 
https://gitlab.gnome.org/GNOME/gnome-terminal;
-
-LICENSE="GPL-3+"
-SLOT="0"
-IUSE="debug +gnome-shell +nautilus vanilla"
-SRC_URI+=" !vanilla? ( 
https://dev.gentoo.org/~mattst88/distfiles/${PN}-3.44.0-cntr-ntfy-autottl-ts.patch.xz
 )"
-
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux"
-
-# FIXME: automagic dependency on gtk+[X], just transitive but needs proper 
control, bug 624960
-RDEPEND="
-   >=dev-libs/glib-2.52:2
-   >=x11-libs/gtk+-3.22.27:3
-   >=x11-libs/vte-0.68.0:2.91[!vanilla?]
-   >=dev-libs/libpcre2-10
-   >=gnome-base/dconf-0.14
-   >=gnome-base/gsettings-desktop-schemas-0.1.0
-   sys-apps/util-linux
-   gnome-shell? ( gnome-base/gnome-shell )
-   nautilus? ( >=gnome-base/nautilus-3.28.0 )
-"
-DEPEND="${RDEPEND}"
-# itstool required for help/* with non-en LINGUAS, see bug #549358
-# xmllint required for glib-compile-resources, see bug #549304
-BDEPEND="
-   ${PYTHON_DEPS}
-   dev-libs/libxml2:2
-   dev-libs/libxslt
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   dev-util/itstool
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-DOC_CONTENTS="To get previous working directory inherited in new opened tab, or
-   notifications of long-running commands finishing, you will need
-   to add the following line to your ~/.bashrc:\n
-   . /etc/profile.d/vte-2.91.sh"
-
-src_prepare() {
-   if ! use vanilla; then
-   # https://bugzilla.gnome.org/show_bug.cgi?id=695371
-   # Fedora patches:
-   # Restore transparency support (with compositing WMs only)
-   # OSC 777 desktop notification support (notifications on tabs 
for long-running commands completing)
-   # Restore "Set title" support
-   # Automatic title updating based on currently running 
foreground process
-   # 
https://src.fedoraproject.org/rpms/gnome-terminal/raw/f31/f/gnome-terminal-cntr-ntfy-autottl-ts.patch
-   # Depends on vte[-vanilla] for OSC 777 and the 
preexec/precmd/etc patches in VTE
-   eapply "${WORKDIR}"/${PN}-3.44.0-cntr-ntfy-autottl-ts.patch
-   fi
-   default
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use debug dbg)
-   -Ddocs=false
-   $(meson_use nautilus nautilus_extension)
-   $(meson_use gnome-shell search_provider)
-   )
-   meson_src_configure
-}
-
-src_install() {
-   meson_src_install
-   if ! use vanilla; then
-   # Separate "New Window/Tab" menu entries by 

[gentoo-commits] repo/gentoo:master commit in: x11-wm/mutter/

2022-07-20 Thread Matt Turner
commit: 0be01a32ac96593f1e7014f5deb92ccec0e64657
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:56 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 02:03:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0be01a32

x11-wm/mutter: Drop old versions

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

 x11-wm/mutter/Manifest   |   1 -
 x11-wm/mutter/mutter-42.1.ebuild | 188 ---
 2 files changed, 189 deletions(-)

diff --git a/x11-wm/mutter/Manifest b/x11-wm/mutter/Manifest
index 1bfbf125ce14..bb0b55f7d149 100644
--- a/x11-wm/mutter/Manifest
+++ b/x11-wm/mutter/Manifest
@@ -1,3 +1,2 @@
-DIST mutter-42.1.tar.xz 2747056 BLAKE2B 
7973e6178e3a61078c37c593a8ffabbd002b791b8251fdf9aa7c90b40efa76591f9946cdd31dd6f274c2a4455157c8661d63714619f3966250eeca5ddae34689
 SHA512 
b7c7011f1c3c4361ddfdcffc61057f8821c37cfb602d7f7ec97fdd1f0ab19dd331f396ca4f61c83253d003d1d866b0d2ff1e7f34bbc9e98b48aacb973aabd6d5
 DIST mutter-42.2.tar.xz 2747612 BLAKE2B 
39d83283dc04473e47263d463849030c1076bb5b8d6fbc37f03e1936cb999ab554784f02ad9a04cdbfa2f35ad95c74c0899ee44e9710e435e66de613628cc683
 SHA512 
e43bdc7c9183b2578ae1f777fdf84bfde550a26bfc28fd4a1a183c7f310d852110f3dcabd50a2fabdafba4cfb8aa6577aec4c65775075f0afff7bd1bb4dde957
 DIST mutter-42.3.tar.xz 2746756 BLAKE2B 
818b2ac8cd264c6b8e30b6731ef2641dbcbba6dce7628d0a934c3f49a5857874d9e6a97cd53ec689c2a9ae7f52d49ed98b7cc551eafbb32b74cbebbe027d9f43
 SHA512 
f346d2299143ceb6c9164977df2e23655b1c204f3a2d1f713377f3cc2f3609c56914c5e8a0b940d4fdd3d040a9af210f724350bb4f74ffac293e6a82e2b0785b

diff --git a/x11-wm/mutter/mutter-42.1.ebuild b/x11-wm/mutter/mutter-42.1.ebuild
deleted file mode 100644
index 3edf61ef69c1..
--- a/x11-wm/mutter/mutter-42.1.ebuild
+++ /dev/null
@@ -1,188 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
-inherit gnome.org gnome2-utils meson python-any-r1 udev xdg
-
-DESCRIPTION="GNOME compositing window manager based on Clutter"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/mutter/;
-
-LICENSE="GPL-2+"
-SLOT="0/$(($(ver_cut 1) - 32))" # 0/libmutter_api_version - ONLY gnome-shell 
(or anything using mutter-clutter-.pc) should use the subslot
-
-IUSE="doc elogind gnome input_devices_wacom +introspection screencast sysprof 
systemd test udev wayland video_cards_nvidia"
-# native backend requires gles3 for hybrid graphics blitting support, udev and 
a logind provider
-REQUIRED_USE="
-   wayland? ( ^^ ( elogind systemd ) udev )
-   test? ( wayland )"
-RESTRICT="!test? ( test )"
-
-KEYWORDS="amd64 ~arm arm64 ~ppc64 ~riscv x86"
-
-# gnome-settings-daemon is build checked, but used at runtime only for 
org.gnome.settings-daemon.peripherals.keyboard gschema
-# xorg-server is needed at build and runtime with USE=wayland for Xwayland
-# v3.32.2 has many excessive or unused *_req variables declared, thus 
currently the dep order ignores those and goes via dependency() call order
-DEPEND="
-   >=x11-libs/libX11-1.7.0
-   >=media-libs/graphene-1.10.2[introspection?]
-   >=x11-libs/gtk+-3.19.8:3[X,introspection?]
-   x11-libs/gdk-pixbuf:2
-   >=x11-libs/pango-1.46[introspection?]
-   >=dev-libs/fribidi-1.0.0
-   >=x11-libs/cairo-1.14[X]
-   >=gnome-base/gsettings-desktop-schemas-42.0[introspection?]
-   >=dev-libs/glib-2.69.0:2
-   gnome-base/gnome-settings-daemon
-   >=dev-libs/json-glib-0.12.0[introspection?]
-   >=x11-libs/libXcomposite-0.4
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   >=x11-libs/libXfixes-3
-   >=x11-libs/libXi-1.7.4
-   x11-libs/libXtst
-   x11-libs/libxkbfile
-   x11-misc/xkeyboard-config
-   >=x11-libs/libxkbcommon-0.4.3[X]
-   x11-libs/libXrender
-   >=x11-libs/libXrandr-1.5.0
-   x11-libs/libxcb
-   x11-libs/libXinerama
-   x11-libs/libXau
-   x11-libs/libICE
-   >=dev-libs/atk-2.5.3[introspection?]
-   >=media-libs/libcanberra-0.26
-   sys-apps/dbus
-   gnome? ( gnome-base/gnome-desktop:3= )
-   media-libs/mesa[X(+),egl(+)]
-   sysprof? ( >=dev-util/sysprof-capture-3.40.1:4 )
-   systemd? ( sys-apps/systemd )
-   wayland? (
-   >=dev-libs/wayland-protocols-1.21
-   >=dev-libs/wayland-1.18.0
-   x11-libs/libdrm:=
-   >=media-libs/mesa-17.3[egl(+),gbm(+),wayland,gles2]
-   >=dev-libs/libinput-1.18.0
-   elogind? ( sys-auth/elogind )
-   x11-base/xwayland
-   video_cards_nvidia? ( gui-libs/egl-wayland )
-   )
-   udev? ( >=dev-libs/libgudev-232:=
-   >=virtual/libudev-232-r1:= )
-   x11-libs/libSM
-   input_devices_wacom? ( >=dev-libs/libwacom-0.13 )
-   >=x11-libs/startup-notification-0.7
-   screencast? ( >=media-video/pipewire-0.3.21:= )
-   

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

2022-07-20 Thread Matt Turner
commit: 10bc3b030c14088075e1f5e4291355d814f2184d
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:12 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10bc3b03

net-wireless/gnome-bluetooth: Drop old versions

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

 net-wireless/gnome-bluetooth/Manifest  |  1 -
 .../gnome-bluetooth/gnome-bluetooth-42.0-r2.ebuild | 69 --
 2 files changed, 70 deletions(-)

diff --git a/net-wireless/gnome-bluetooth/Manifest 
b/net-wireless/gnome-bluetooth/Manifest
index 74bd24270c35..d5683fa9c9fe 100644
--- a/net-wireless/gnome-bluetooth/Manifest
+++ b/net-wireless/gnome-bluetooth/Manifest
@@ -1,4 +1,3 @@
 DIST gnome-bluetooth-3.34.5.tar.xz 353936 BLAKE2B 
40300752830f71d436591e22a64a282745d8419ee46de534f76c4871a86a4c8f7b2203e3ddc4ca08d26348b97bf4a68315802ffa09c69265c55001e4806c7f1e
 SHA512 
48431b3d19083705a6623442c5cd2d6c14962cdf30fc599ba47dceb6612b80142af77e1b6df142b530cb1015638081a06de38a3034177e0d05a354c40f19d9e5
-DIST gnome-bluetooth-42.0.tar.xz 302440 BLAKE2B 
f7e02efe04b1dddee365b9c316368d92428099d6d1191d9c785018bc4bebc19942e7216bd7e6e824cd132a53b6750b1f41393d270e99718312c96da7f6a4ad5b
 SHA512 
769bd9300fa1d830240e84257230425fe7f2e871cbd6c8fa6416514487a26326601a21c16075a66cf886850bab17f5c8e2235463f3695ea194c9230d6e50337c
 DIST gnome-bluetooth-42.1.tar.xz 302148 BLAKE2B 
480456f3944ffdc4a6a10b099f4e2ec04b8e0c916dbe1e595733e45b0b781fa22852646d1e6def69cc86efa66020fa2d845027d6f7e2f137c10478cfd9b6af5a
 SHA512 
05fc7076e707c447cd786fbaf8536c754b00972c450f8743dcd79f73f747e16eb0c9321dafc1deeef8d2bdcbfcbcbbf15156543d7b3bc696cb34d57ce5bb24fb
 DIST gnome-bluetooth-42.2.tar.xz 302248 BLAKE2B 
7ba16f86dd05bd4db2b02767f7a02b0f8c8154f28834795eba1dd3e45493b7cf26e0417fabe44dedb363abd94b62a40b1e2ab97c32e9ff9e0881b863a1954112
 SHA512 
79c1846eb084fa8a80b070e2c5731040d23bc9c4cdd2c6f36d4acba9b9eb5cb828a61540b82e3bb993befa8fde1704f089d539c82291f1a6a16444182dd97f73

diff --git a/net-wireless/gnome-bluetooth/gnome-bluetooth-42.0-r2.ebuild 
b/net-wireless/gnome-bluetooth/gnome-bluetooth-42.0-r2.ebuild
deleted file mode 100644
index 16063fda9f67..
--- a/net-wireless/gnome-bluetooth/gnome-bluetooth-42.0-r2.ebuild
+++ /dev/null
@@ -1,69 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
-inherit gnome.org meson python-any-r1 xdg
-
-DESCRIPTION="Bluetooth graphical utilities integrated with GNOME"
-HOMEPAGE="https://wiki.gnome.org/Projects/GnomeBluetooth;
-
-LICENSE="GPL-2+ LGPL-2.1+ FDL-1.1+"
-SLOT="3/13" # subslot = libgnome-bluetooth-3 soname version
-IUSE="gtk-doc +introspection sendto test"
-RESTRICT="!test? ( test )"
-KEYWORDS="amd64 ~arm arm64 ~ppc ~ppc64 ~riscv x86"
-
-DEPEND="
-   >=dev-libs/glib-2.44:2
-   >=gui-libs/gtk-4.4:4[introspection?]
-   media-libs/gsound
-   >=gui-libs/libadwaita-1.1:1
-   >=x11-libs/libnotify-0.7.0
-   virtual/libudev
-   >=sys-power/upower-0.99.14
-   introspection? ( >=dev-libs/gobject-introspection-1.54:= )
-"
-RDEPEND="${DEPEND}
-   acct-group/plugdev
-   virtual/udev
-   >=net-wireless/bluez-5
-   sendto? ( !net-wireless/gnome-bluetooth:2 )
-"
-BDEPEND="
-   dev-libs/libxml2:2
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   gtk-doc? ( >=dev-util/gtk-doc-1.9 )
-   virtual/pkgconfig
-   test? (
-   $(python_gen_any_dep '
-   >=dev-python/python-dbusmock-0.26.0[${PYTHON_USEDEP}]
-   dev-python/dbus-python[${PYTHON_USEDEP}]
-   ')
-   )
-"
-
-python_check_deps() {
-   if use test; then
-   has_version -b "dev-python/python-dbusmock[${PYTHON_USEDEP}]" &&
-   has_version -b "dev-python/dbus-python[${PYTHON_USEDEP}]"
-   fi
-}
-
-pkg_setup() {
-   use test && python-any-r1_pkg_setup
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use sendto)
-   $(meson_use gtk-doc gtk_doc)
-   $(meson_use introspection)
-   )
-   meson_src_configure
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-}



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

2022-07-20 Thread Matt Turner
commit: 98edfcca0f4b2cc82ffa58167a2560e03ac1d322
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:05 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98edfcca

net-misc/networkmanager: Drop old versions

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

 net-misc/networkmanager/Manifest   |   2 -
 .../networkmanager/networkmanager-1.36.4.ebuild| 412 
 .../networkmanager/networkmanager-1.38.0.ebuild| 414 -
 3 files changed, 828 deletions(-)

diff --git a/net-misc/networkmanager/Manifest b/net-misc/networkmanager/Manifest
index caa483d34842..ded03dc6e506 100644
--- a/net-misc/networkmanager/Manifest
+++ b/net-misc/networkmanager/Manifest
@@ -1,3 +1 @@
-DIST NetworkManager-1.36.4.tar.xz 5433152 BLAKE2B 
2bb625381bc5a816a9fdc51498721f9bc1e85fe2e83d114c8897f99f90af6924a0a07fddf0099f8e52c0df2f3353834129b99b4bb487b413cee503da7c680035
 SHA512 
17b2d39ed2584fb8b805e7b9950f9c4e6d657380881e9e78a1aa85dc58615e0a3896413a6902086f516dee2f373155f69042b4a229f3b9e15fb3c0f958cd8149
-DIST NetworkManager-1.38.0.tar.xz 5431664 BLAKE2B 
adc298681e339d6cfac9c7310a94a1b11bc7f5044a0b2a129d5ab764bd5f29ccc604bbc27c49d52ceab9e2e6dbd923a686fbaf96cf20c73438d680fa5659e5ff
 SHA512 
0f1532b4ea1aeb9d5dd922ee005eef325d39ba3526884793aaaed2eae61737f6a6e95644077f2b45ace569df79246d3d6404272cce02ca7e02b3632aee882940
 DIST NetworkManager-1.38.2.tar.xz 5526780 BLAKE2B 
54e9746d3bf41146bb2bbc1ec273c4e2ca0a458e1a488eba7e5f17572e6e8db02ccfcd5b884e00162e505512b24a38de77447944d979fbe40d20d4af4c688a71
 SHA512 
0da3294bec659e6742c2b941eb6cb2464df1018e801148ac37cce0a0612c4468701add13659c18b1c08b51556c7e3e2782ad2353804fdf2a094e97d531da964b

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

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

2022-07-20 Thread Matt Turner
commit: bfa75e12fd616e613b645361fa65f23e13d9d9c0
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:37:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bfa75e12

net-libs/gupnp-av: Drop old versions

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

 net-libs/gupnp-av/Manifest   |  1 -
 net-libs/gupnp-av/gupnp-av-0.14.0.ebuild | 42 
 2 files changed, 43 deletions(-)

diff --git a/net-libs/gupnp-av/Manifest b/net-libs/gupnp-av/Manifest
index affcedc7cbad..3da7d24d6f55 100644
--- a/net-libs/gupnp-av/Manifest
+++ b/net-libs/gupnp-av/Manifest
@@ -1,2 +1 @@
-DIST gupnp-av-0.14.0.tar.xz 93128 BLAKE2B 
d66ba820aabf82be37a8c19a64adbacc863b495cb6a68849ee236cbe6956cc94fc992a3d4f351d165efaa8257ece2f3173dd845d2a9313bc9ff1a97a178d9632
 SHA512 
b357b5413d3e01e4ecaf9dbdf5f5f1506aed662154d03c6232f0c82c4a49543deddf34350a204d467c1a33fed04e406500fd51d6e412d32ac909e974e041
 DIST gupnp-av-0.14.1.tar.xz 93484 BLAKE2B 
5e4c070bc7f0dd1a1b67f58fb178ee575df5f9f3920c8c40f8975ac79c61f707df39a243d4783ff79f691dd42553c3a6eb89715be79bb7683910785afdd83b19
 SHA512 
b17b38c32fe068b0b74a7ee357be5f3a0df3320fd04338b5f6b04231c601d6cc57d2770c6e6ca42ded5e1be28a6b2746d16417eb322889ffe6a975ec58205655

diff --git a/net-libs/gupnp-av/gupnp-av-0.14.0.ebuild 
b/net-libs/gupnp-av/gupnp-av-0.14.0.ebuild
deleted file mode 100644
index 46ae3f74a272..
--- a/net-libs/gupnp-av/gupnp-av-0.14.0.ebuild
+++ /dev/null
@@ -1,42 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-VALA_USE_DEPEND="vapigen"
-
-inherit gnome.org meson vala
-
-DESCRIPTION="Utility library aiming to ease the handling UPnP A/V profiles"
-HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP 
https://gitlab.gnome.org/GNOME/gupnp-av;
-
-LICENSE="LGPL-2"
-SLOT="0/3" # subslot: soname version
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
-IUSE="gtk-doc +introspection"
-
-RDEPEND="
-   >=dev-libs/glib-2.58:2
-   >=net-libs/libsoup-2.28.2:2.4[introspection?]
-   dev-libs/libxml2
-   introspection? ( >=dev-libs/gobject-introspection-1.36:= )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/pkgconfig
-   gtk-doc? ( dev-util/gtk-doc )
-   introspection? ( $(vala_depend) )
-"
-
-src_prepare() {
-   use introspection && vala_src_prepare
-   default
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use introspection)
-   $(meson_use introspection vapi)
-   $(meson_use gtk-doc gtk_doc)
-   )
-   meson_src_configure
-}



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

2022-07-20 Thread Matt Turner
commit: 7c7bfc19de13093eaa76f344a99d00a7e7a0aaa2
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:02 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c7bfc19

net-misc/gupnp-tools: Drop old versions

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

 net-misc/gupnp-tools/Manifest  |  1 -
 net-misc/gupnp-tools/gupnp-tools-0.10.2.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/net-misc/gupnp-tools/Manifest b/net-misc/gupnp-tools/Manifest
index 505141681c59..0cdc469b0661 100644
--- a/net-misc/gupnp-tools/Manifest
+++ b/net-misc/gupnp-tools/Manifest
@@ -1,2 +1 @@
-DIST gupnp-tools-0.10.2.tar.xz 181020 BLAKE2B 
aed0876cfa57df56720b178d4b9bb492d9dbc82582ecaa09d178e20f55b3d045085b20965af2a9efd30fb9de0155f29b824ef004dd67309ed2be0a1fe487
 SHA512 
acb48b6081851345a01bd4604f4c83beca0fcff627e9d282efd807f5c98739ca4967a428456487e27196d1be6d65dd9482a12267da146e4efe0f61fa5a43c7a2
 DIST gupnp-tools-0.10.3.tar.xz 180596 BLAKE2B 
26140962cc24cda867465a4f94d251a26849db544fe1cb017ca86e6208f037b09e772109bfac150a9f6db845d1212af5a5c624d81958816349b3c60e45b80933
 SHA512 
a95a169c65e50d9953b79b96b92abbad709adc0bf74db47abaa529bd7989ebe2d41ae30ab340d09e5a727b61200d55a6d34b04d6981327b920d23a7c916babbe

diff --git a/net-misc/gupnp-tools/gupnp-tools-0.10.2.ebuild 
b/net-misc/gupnp-tools/gupnp-tools-0.10.2.ebuild
deleted file mode 100644
index 7aa84c55de64..
--- a/net-misc/gupnp-tools/gupnp-tools-0.10.2.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit gnome.org meson xdg
-
-DESCRIPTION="Collection of developer-oriented UPnP tools"
-HOMEPAGE="https://wiki.gnome.org/Projects/GUPnP;
-
-LICENSE="GPL-2+ LGPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-
-RDEPEND="
-   >=net-libs/gssdp-1.2.0:=
-   >=net-libs/gupnp-1.2.0:=
-   >=net-libs/libsoup-2.42:2.4
-   >=net-libs/gupnp-av-0.5.5:0=
-   >=x11-libs/gtk+-3.10:3
-   >=dev-libs/glib-2.24:2
-   >=dev-libs/libxml2-2.4:2
-   x11-libs/gtksourceview:4
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local emesonargs=(
-   -Dav-tools=true
-   )
-   meson_src_configure
-}



[gentoo-commits] repo/gentoo:master commit in: net-misc/gnome-remote-desktop/

2022-07-20 Thread Matt Turner
commit: 970f187f667bd5d2807782ed949829935ec847f4
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:01 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=970f187f

net-misc/gnome-remote-desktop: Drop old versions

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

 net-misc/gnome-remote-desktop/Manifest |  1 -
 .../gnome-remote-desktop-42.2.ebuild   | 64 --
 2 files changed, 65 deletions(-)

diff --git a/net-misc/gnome-remote-desktop/Manifest 
b/net-misc/gnome-remote-desktop/Manifest
index ee541ac50bb0..e0fcfb6aa286 100644
--- a/net-misc/gnome-remote-desktop/Manifest
+++ b/net-misc/gnome-remote-desktop/Manifest
@@ -1,2 +1 @@
-DIST gnome-remote-desktop-42.2.tar.xz 165452 BLAKE2B 
110d456dd6f91e00584755425b8dbad1e02ad9a0cef7a7325fcf8438c2e5cd64238fff7da17c6724f6b17ae24be4456e8470a2b519968d044386d3bf4cb36ab4
 SHA512 
620f2119bec845bf93226b1b873519c5609b7b6212232b33de2d1c420160378ad917c7b593b00c3e15a3b3c3788f3300ef89a226952afb6dae40f9fcc6782e16
 DIST gnome-remote-desktop-42.3.tar.xz 165424 BLAKE2B 
43ff645dfcc75d0c97ab43840631f3c47337ed89c848fa65fb6c23b74f4ab2b9ada383c1cf17592e6a9382aac28f008d34c06d90f341731d1221ac86182ac666
 SHA512 
3545ec6b3f7f80315546d03ecb0c30ed554e879c743e1d7031ac65cf10e6d9d510553049393221be0be203a79b8be8bc96c0d3fe600be1ac3c0a1e24431ba945

diff --git a/net-misc/gnome-remote-desktop/gnome-remote-desktop-42.2.ebuild 
b/net-misc/gnome-remote-desktop/gnome-remote-desktop-42.2.ebuild
deleted file mode 100644
index b7ff4b497493..
--- a/net-misc/gnome-remote-desktop/gnome-remote-desktop-42.2.ebuild
+++ /dev/null
@@ -1,64 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{8..11} )
-inherit gnome.org gnome2-utils meson python-any-r1 systemd xdg
-
-DESCRIPTION="Remote desktop daemon for GNOME using pipewire"
-HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-remote-desktop;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64"
-IUSE="+rdp systemd +vnc"
-REQUIRED_USE="|| ( rdp vnc )"
-RESTRICT="test" # Tests run xvfb-run directly
-
-DEPEND="
-   x11-libs/cairo
-   >=dev-libs/glib-2.68:2
-   >=media-video/pipewire-0.3.0:=
-   app-crypt/libsecret
-   x11-libs/libnotify
-   media-libs/libepoxy
-   x11-libs/libdrm
-   rdp? (
-   >=media-libs/nv-codec-headers-11.1.5.0
-   >=net-misc/freerdp-2.5.0:=[server]
-   >=sys-fs/fuse-3.9.1
-   >=x11-libs/libxkbcommon-1.0.0
-   )
-   vnc? (
-   net-libs/libvncserver
-   )
-"
-RDEPEND="${DEPEND}
-   x11-wm/mutter[screencast]
-"
-BDEPEND="
-   ${PYTHON_DEPS}
-   dev-util/gdbus-codegen
-   dev-util/glib-utils
-   virtual/pkgconfig
-"
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use rdp)
-   $(meson_use vnc)
-   $(meson_use systemd)
-   -Dsystemd_user_unit_dir="$(systemd_get_userunitdir)"
-   )
-   meson_src_configure
-}
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}



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

2022-07-20 Thread Matt Turner
commit: bf5823d6af15209bf914adea6200678b5e97ffda
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:37:56 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bf5823d6

net-libs/sofia-sip: Drop old versions

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

 net-libs/sofia-sip/Manifest |  1 -
 net-libs/sofia-sip/sofia-sip-1.12.11.ebuild | 37 -
 2 files changed, 38 deletions(-)

diff --git a/net-libs/sofia-sip/Manifest b/net-libs/sofia-sip/Manifest
index bedb883e4c10..0f045034c438 100644
--- a/net-libs/sofia-sip/Manifest
+++ b/net-libs/sofia-sip/Manifest
@@ -1,2 +1 @@
-DIST sofia-sip-1.12.11.tar.gz 2927808 BLAKE2B 
2723aef491b5f85c047cc54a191fdd2ae63b23445f24b6ee9910af88e2daa684eded6e44cee50c3a52bec2901b5310f34c09e7cf4efce714210755046ceaecd7
 SHA512 
48bef0223ecf5a31267773c8e2491c1990b4419be67154e350cc9e5644a98e55409d635d7828824de3e0e1658caebe5b61e44d613615beb709ecbe8180be131c
 DIST sofia-sip-1.13.8.tar.gz 2551359 BLAKE2B 
505d3cdac29b00589f63782c296b68f36ba9247ef87bcbda7b2765c0079aa2313ac72c0062ada5ba29e07faa892a991722c53468756ce8ef4cd385b90afda564
 SHA512 
f857eb9cf25d3306476bc6d0bda786385529021d498cf0c2c779cdbae31295af4ed59a67fb0c882b09bac738623d273a94ebbda360c7a2b3d7da140852ccc6fa

diff --git a/net-libs/sofia-sip/sofia-sip-1.12.11.ebuild 
b/net-libs/sofia-sip/sofia-sip-1.12.11.ebuild
deleted file mode 100644
index 5ef2784fddd4..
--- a/net-libs/sofia-sip/sofia-sip-1.12.11.ebuild
+++ /dev/null
@@ -1,37 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="RFC3261 compliant SIP User-Agent library"
-HOMEPAGE="http://sofia-sip.sourceforge.net/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
-
-LICENSE="LGPL-2.1+ BSD public-domain" # See COPYRIGHT
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ~ppc64 sparc x86 ~x86-linux"
-IUSE="ssl"
-# tests are broken, see bugs 304607 and 330261
-RESTRICT="test"
-
-RDEPEND="
-   dev-libs/glib:2
-   ssl? (
-   dev-libs/openssl:0=
-   )"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-src_configure() {
-   econf \
-   --disable-static \
-   $(use_with ssl openssl)
-}
-
-src_install() {
-   default
-   dodoc RELEASE
-
-   # no static archives
-   find "${D}" -name '*.la' -delete || die
-}



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

2022-07-20 Thread Matt Turner
commit: 474413b71ba64c5b78646697455f70c3ed2060c3
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:37:53 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=474413b7

net-libs/libsoup: Drop old versions

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

 net-libs/libsoup/Manifest |  1 -
 net-libs/libsoup/libsoup-3.0.6.ebuild | 92 ---
 2 files changed, 93 deletions(-)

diff --git a/net-libs/libsoup/Manifest b/net-libs/libsoup/Manifest
index a1f82371d03a..0fca2992aa60 100644
--- a/net-libs/libsoup/Manifest
+++ b/net-libs/libsoup/Manifest
@@ -1,3 +1,2 @@
 DIST libsoup-2.74.2.tar.xz 1497356 BLAKE2B 
b05e5d06e20a95042334c79e3a633ec43db0e7444b425f8577045fbdee7b78bd697e743f4283ed79265bbe538145a541ef2ef55636ae235667a89d00910d5bf2
 SHA512 
6f9da3296364e210103093cef9ef34fb40f694a8ef90966fc1fbd834c11f3db1031784a0901e9181bf3124e0682708148bd3598a31d60f1cce61eaae2e19ba7a
-DIST libsoup-3.0.6.tar.xz 1527232 BLAKE2B 
28a2aec2323686af692bfcee3126c76b8506c7721b81bd3beb276b488ec6c26498e4b1396ea6d3537cf00a203cbca2798ea414c4d2227f9c520660fc61459804
 SHA512 
4de84b3c251b6fe75903b1cd2647ac22055f799382a186efe6f45d3f75bf6c82040f0aaceb40d0019769cf1c0295511eb0afbbc7236e93b168ed70c2ae975a89
 DIST libsoup-3.0.7.tar.xz 1525104 BLAKE2B 
d9a8fddce286691f58901052f484c7a81e46e5c4625514609fc319c8a383b459631fbee95a0f3cfcbe296eb96907571c8fa57cf5c1b9cd742453d366057640fd
 SHA512 
bb48b2475ec4b073de144ad91459843946ba902fc0849b88c548ccb774fc3854451239267dd097a3da4e40f025ae746609b669ec0caffdb15e7b07118e881cfd

diff --git a/net-libs/libsoup/libsoup-3.0.6.ebuild 
b/net-libs/libsoup/libsoup-3.0.6.ebuild
deleted file mode 100644
index 84e2cca340d9..
--- a/net-libs/libsoup/libsoup-3.0.6.ebuild
+++ /dev/null
@@ -1,92 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-VALA_MIN_API_VERSION="0.54" # requires gio-2.0.vapi generated from glib-2.70+
-
-inherit gnome.org meson-multilib vala xdg
-
-DESCRIPTION="HTTP client/server library for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Projects/libsoup;
-
-LICENSE="LGPL-2.1+"
-SLOT="3.0"
-
-IUSE="+brotli gssapi gtk-doc +introspection samba ssl sysprof test +vala"
-RESTRICT="!test? ( test )"
-REQUIRED_USE="vala? ( introspection )"
-
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
-
-DEPEND="
-   >=dev-libs/glib-2.69.1:2[${MULTILIB_USEDEP}]
-   net-libs/nghttp2:=[${MULTILIB_USEDEP}]
-   >=dev-db/sqlite-3.8.2:3[${MULTILIB_USEDEP}]
-   brotli? ( >=app-arch/brotli-1.0.6-r1:=[${MULTILIB_USEDEP}] )
-   >=net-libs/libpsl-0.20[${MULTILIB_USEDEP}]
-   sysprof? ( >=dev-util/sysprof-capture-3.40.1:4[${MULTILIB_USEDEP}] )
-   sys-libs/zlib
-   gssapi? ( virtual/krb5[${MULTILIB_USEDEP}] )
-   introspection? ( >=dev-libs/gobject-introspection-1.54:= )
-   samba? ( net-fs/samba )
-"
-RDEPEND="${DEPEND}
-   >=net-libs/glib-networking-2.70_alpha[ssl?,${MULTILIB_USEDEP}]
-"
-BDEPEND="
-   dev-libs/glib
-   dev-util/glib-utils
-   gtk-doc? ( >=dev-util/gtk-doc-1.20
-   app-text/docbook-xml-dtd:4.1.2 )
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-   test? ( >=net-libs/gnutls-3.6.0[pkcs11] )
-"
-#  test? ( 
www-servers/apache[ssl,apache2_modules_auth_digest,apache2_modules_alias,apache2_modules_auth_basic,
-#  
apache2_modules_authn_file,apache2_modules_authz_host,apache2_modules_authz_user,apache2_modules_dir,
-#  
apache2_modules_mime,apache2_modules_proxy,apache2_modules_proxy_http,apache2_modules_proxy_connect]
-#  dev-lang/php[apache2,xmlrpc]
-#  net-misc/curl
-#  net-libs/glib-networking[ssl])"
-
-PATCHES=(
-   # Disable apache tests until they are usable on Gentoo, bug #326957
-   "${FILESDIR}"/disable-apache-tests.patch
-)
-
-src_prepare() {
-   default
-   use vala && vala_setup
-   xdg_environment_reset
-   # https://gitlab.gnome.org/GNOME/libsoup/issues/159 - could work with 
libnss-myhostname
-   sed -e '/hsts/d' -i tests/meson.build || die
-}
-
-src_configure() {
-   # FIXME: we need addpredict to workaround bug #324779 until
-   # root cause (bug #249496) is solved
-   # But unnecessary while apache tests are disabled
-   #addpredict /usr/share/snmp/mibs/.index
-
-   multilib-minimal_src_configure
-}
-
-multilib_src_configure() {
-   local emesonargs=(
-   $(meson_feature gssapi)
-   -Dkrb5_config="${CHOST}-krb5-config"
-   $(meson_feature samba ntlm)
-   $(meson_feature brotli)
-   -Dntlm_auth="${EPREFIX}/usr/bin/ntlm_auth"
-   -Dtls_check=false # disables check, we still rdep on 
glib-networking
-   

[gentoo-commits] repo/gentoo:master commit in: net-misc/mobile-broadband-provider-info/

2022-07-20 Thread Matt Turner
commit: d0330b8c8a25d1b8cddb370bcc6a9c3f792408cf
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:03 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0330b8c

net-misc/mobile-broadband-provider-info: Drop old versions

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

 net-misc/mobile-broadband-provider-info/Manifest   |  1 -
 .../mobile-broadband-provider-info-20220315.ebuild | 22 --
 2 files changed, 23 deletions(-)

diff --git a/net-misc/mobile-broadband-provider-info/Manifest 
b/net-misc/mobile-broadband-provider-info/Manifest
index c9bc8e2720d8..3bc548a0476d 100644
--- a/net-misc/mobile-broadband-provider-info/Manifest
+++ b/net-misc/mobile-broadband-provider-info/Manifest
@@ -1,2 +1 @@
-DIST mobile-broadband-provider-info-20220315.tar.xz 84068 BLAKE2B 
69b1805cdac393d733c7c4bd033f623d01260abe9be97108b1f7525a1e96935dd6b6582cd647e415a4f6329988cc105a220fbd3672b0d8c719e298ac53e0bcac
 SHA512 
92da9e03f48d1a3e5807cab616627d0d31539dfee5c9650f78c5eb4371748366700ffe26f922ac061f877cd1bd5c3fb766e71fea0677eee007e68873c39c597c
 DIST mobile-broadband-provider-info-20220511.tar.xz 85064 BLAKE2B 
7abb1d493cc39b9988a188edf260b5440bc8cb9e0879897df550ee63cb46c52721ee75dee304bbc93add3173a7ff56bd17bccf8dd062590ae583cee67e9093ab
 SHA512 
7b3a9c0a2e618ef3ef0e29b947ab9f0a55f30bd738f0e976529e8f3ddbb60a738f623e718ea67fa6e6008275dbbe78ce3ed9852c005748a266f04e3dd65179a6

diff --git 
a/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20220315.ebuild
 
b/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20220315.ebuild
deleted file mode 100644
index 25252b03f4f6..
--- 
a/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20220315.ebuild
+++ /dev/null
@@ -1,22 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome.org
-
-DESCRIPTION="Database of mobile broadband service providers"
-HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband;
-
-LICENSE="CC-PD"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-BDEPEND="
-   dev-libs/libxslt
-   test? ( dev-libs/libxml2 )
-"
-
-DOCS=( README )



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

2022-07-20 Thread Matt Turner
commit: e8e3c23248373619357b56766b4efafb082ee40a
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:06 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8e3c232

net-misc/rygel: Drop old versions

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

 net-misc/rygel/Manifest|  1 -
 net-misc/rygel/rygel-0.40.3.ebuild | 82 --
 2 files changed, 83 deletions(-)

diff --git a/net-misc/rygel/Manifest b/net-misc/rygel/Manifest
index 161383c734d5..770e17f0fb88 100644
--- a/net-misc/rygel/Manifest
+++ b/net-misc/rygel/Manifest
@@ -1,2 +1 @@
-DIST rygel-0.40.3.tar.xz 1696424 BLAKE2B 
90e3da7c4dcfe4b0789dc7cf64fb2b49f00d2892b18a2ea1bad1da4e2ac5c1684992177fcac9adb99785f0e5ec68ffa08ee3ba37a8694c47cb69a9e080e2f773
 SHA512 
b50613b49bfde656b587192b20b6aebd49bba176149e1adcc13b00f7a6bc525237fc74a2af5afe37704758df8d9446ddb01f1338472cc6626d30765df991f69d
 DIST rygel-0.40.4.tar.xz 1696492 BLAKE2B 
9e22390b379b2e09abb2685b0c2a00bc03ae3668d4c6d5ed432dd9c5cefdf07a00370bc5a9a96bc542d14f48dfdcdf4db3647365833942d1d81dc377d0440705
 SHA512 
5e4003af9c0dc8a4b948cc63a12ec3f61c9e9f4f8007b196f9ce988c85e2fea7ec0a6c1e4217c59a770ca179b4ad8bba2e01aa99459a4e1179b9bc5db22ea0f8

diff --git a/net-misc/rygel/rygel-0.40.3.ebuild 
b/net-misc/rygel/rygel-0.40.3.ebuild
deleted file mode 100644
index 782f36a2a7a4..
--- a/net-misc/rygel/rygel-0.40.3.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-VALA_MIN_API_VERSION="0.42"
-inherit gnome.org meson systemd vala xdg
-
-DESCRIPTION="Rygel is an open source UPnP/DLNA MediaServer"
-HOMEPAGE="https://wiki.gnome.org/Projects/Rygel;
-
-LICENSE="LGPL-2.1+ CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE="gtk gtk-doc +introspection +sqlite tracker test transcode"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   >=dev-libs/glib-2.56.0:2
-   >=dev-libs/libgee-0.8:0.8
-   >=dev-libs/libxml2-2.7:2
-   >=media-libs/gstreamer-1.12:1.0
-   >=media-libs/gst-plugins-base-1.12:1.0
-   media-libs/gstreamer-editing-services:1.0
-   >=media-libs/gupnp-dlna-0.9.4:2.0=
-   >=media-libs/libmediaart-0.7:2.0[vala]
-   media-plugins/gst-plugins-soup:1.0
-   >=net-libs/gssdp-1.1.0:0=[vala]
-   >=net-libs/gupnp-1.1.0:0=[vala]
-   >=net-libs/gupnp-av-0.12.8:=
-   >=net-libs/libsoup-2.44:2.4
-   >=sys-apps/util-linux-2.20
-   x11-misc/shared-mime-info
-   introspection? ( >=dev-libs/gobject-introspection-1.33.4:= )
-   sqlite? (
-   >=dev-db/sqlite-3.5:3
-   dev-libs/libunistring:=
-   x11-libs/gdk-pixbuf:2
-   )
-   tracker? ( app-misc/tracker:3= )
-   transcode? (
-   media-libs/gst-plugins-bad:1.0
-   media-plugins/gst-plugins-twolame:1.0
-   media-plugins/gst-plugins-libav:1.0
-   )
-   gtk? ( >=x11-libs/gtk+-3.22:3 )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="
-   $(vala_depend)
-   >=sys-devel/gettext-0.19.7
-   virtual/pkgconfig
-"
-# Maintainer only
-#   app-text/docbook-xsl-stylesheets
-#  >=dev-lang/vala-0.36
-#   dev-libs/libxslt
-
-src_prepare() {
-   vala_src_prepare
-   default
-   # Disable test triggering call to gst-plugins-scanner which causes
-   # sandbox issues when plugins such as clutter are installed
-   #sed -e 's/return rygel_playbin_renderer_test_main (argv, argc);/return 
0;/' \
-   #   -i tests/rygel-playbin-renderer-test.c || die
-
-   #default
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_use gtk-doc api-docs)
-   -Dsystemd-user-units-dir=$(systemd_get_userunitdir)
-   -Dplugins=gst-launch$(use sqlite && echo 
",lms,media-export")$(use tracker && echo ",tracker3")
-   -Dengines=gstreamer
-   -Dexamples=false
-   $(meson_use test tests)
-   -Dgstreamer=enabled
-   $(meson_feature gtk)
-   $(meson_feature introspection)
-   )
-   meson_src_configure
-}



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

2022-07-20 Thread Matt Turner
commit: 81e5a51c61a84e7b6fa1b64a9c897d36bf48514a
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:17 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81e5a51c

sys-apps/bubblewrap: Drop old versions

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

 sys-apps/bubblewrap/Manifest|  1 -
 sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild | 61 -
 2 files changed, 62 deletions(-)

diff --git a/sys-apps/bubblewrap/Manifest b/sys-apps/bubblewrap/Manifest
index 94ed97f4abee..fc964394d9ab 100644
--- a/sys-apps/bubblewrap/Manifest
+++ b/sys-apps/bubblewrap/Manifest
@@ -1,2 +1 @@
-DIST bubblewrap-0.6.1.tar.xz 145500 BLAKE2B 
8f8f69c5314843be1ac8c52d462ce2b17fc88760274b71837793a3e8dbf87623b80b7ae094131cee896644b53f4761388638d21b1575d1887eb755880bb05845
 SHA512 
68e07812ff5e01de2b7a0ce66e8386ca3662fd071d4e9b4c4afa611c1589c0ed116e0ebb4c03eae3f707f908d86945e157f8b26ff872c2814889dde92df9c60b
 DIST bubblewrap-0.6.2.tar.xz 146312 BLAKE2B 
bf02e9095cd1e80b84e0439d14ce57fc9bb08f9f0d3596a19eb34a55bd03b9d371368eda75f2b2106d47db29d1c2d9845fe2a12f5d0c554bbb532c9e0e53d368
 SHA512 
235da019cb370ea6d9328352acb38e6ff368f02f71db1ae85f2dd37655757975bd5b57bbe15f7b419b53a26b8ec3edd81b55893b420d5f42d6a9dab3471d0096

diff --git a/sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild 
b/sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild
deleted file mode 100644
index edb084d8d17a..
--- a/sys-apps/bubblewrap/bubblewrap-0.6.1.ebuild
+++ /dev/null
@@ -1,61 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit bash-completion-r1 linux-info meson
-
-DESCRIPTION="Unprivileged sandboxing tool, namespaces-powered chroot-like 
solution"
-HOMEPAGE="https://github.com/containers/bubblewrap/;
-SRC_URI="https://github.com/containers/${PN}/releases/download/v${PV}/${P}.tar.xz;
-
-LICENSE="LGPL-2+"
-SLOT="0"
-KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
-IUSE="selinux +suid"
-
-RDEPEND="
-   sys-libs/libseccomp
-   sys-libs/libcap
-   selinux? ( >=sys-libs/libselinux-2.1.9 )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   app-text/docbook-xml-dtd:4.3
-   app-text/docbook-xsl-stylesheets
-   dev-libs/libxslt
-   virtual/pkgconfig
-"
-
-# tests require root priviledge
-RESTRICT="test"
-
-PATCHES=(
-   "${FILESDIR}"/${P}-clang-printf.patch
-)
-
-pkg_setup() {
-   if [[ ${MERGE_TYPE} != buildonly ]]; then
-   CONFIG_CHECK="~UTS_NS ~IPC_NS ~USER_NS ~PID_NS ~NET_NS"
-   linux-info_pkg_setup
-   fi
-}
-
-src_configure() {
-   local emesonargs=(
-   '-Dbash_completion=enabled'
-   '-Dman=enabled'
-   '-Dzsh_completion=enabled'
-   "$(meson_feature selinux)"
-   )
-
-   meson_src_configure
-}
-
-src_install() {
-   meson_src_install
-
-   if use suid; then
-   chmod u+s "${ED}"/usr/bin/bwrap
-   fi
-}



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

2022-07-20 Thread Matt Turner
commit: 78c38931f5df0d00a466948574848f492fc78a28
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:37:51 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78c38931

net-libs/libnma: Drop old versions

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

 net-libs/libnma/Manifest |  1 -
 net-libs/libnma/libnma-1.8.38.ebuild | 71 
 2 files changed, 72 deletions(-)

diff --git a/net-libs/libnma/Manifest b/net-libs/libnma/Manifest
index e80be6ac4526..7c4064d004c8 100644
--- a/net-libs/libnma/Manifest
+++ b/net-libs/libnma/Manifest
@@ -1,2 +1 @@
-DIST libnma-1.8.38.tar.xz 1347004 BLAKE2B 
108fc7d0a01ca72c84a738f831d442d82990f7b82301de3a47d8331af1e080a33c10806fb75830463fbfb8a4a1f556cdf5272ee52dbc4616ea3dbca1959cd128
 SHA512 
0421c598ccb6e3659f182b596eec76ffd695e51c11fd11b8325c2d08cb259536d7e74c11bbaac3ccb841016a0bc69a87f1c682b934a9eb569a74116e677eba63
 DIST libnma-1.8.40.tar.xz 1350560 BLAKE2B 
9c5124a1dcaa801c7d0135ef64dedccd098988fdd199938e2409e80bee86df71bf368cada113dceae4046a5c2c5fe954aa9fc0c19519721a4e8ec7b8f7ea8d44
 SHA512 
28f4704f97941308f43b27a309fd14050e8ac7e0c6665cada3cc08a759e140f043a80b21ccfe02ce348f8490cad8107b4fe27026dbaafed46ec1c7c46824e3b8

diff --git a/net-libs/libnma/libnma-1.8.38.ebuild 
b/net-libs/libnma/libnma-1.8.38.ebuild
deleted file mode 100644
index 0809254e3bec..
--- a/net-libs/libnma/libnma-1.8.38.ebuild
+++ /dev/null
@@ -1,71 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit gnome.org gnome2-utils meson xdg vala
-
-DESCRIPTION="NetworkManager GUI library"
-HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager;
-
-LICENSE="GPL-2+"
-SLOT="0"
-# pkcs11 default enabled as it's a small dep often already present by libnma 
users, and it was default enabled as IUSE=+gcr in nm-applet before
-IUSE="gtk-doc +introspection +pkcs11 vala"
-REQUIRED_USE="vala? ( introspection )"
-KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~sparc x86"
-
-DEPEND="
-   >=gui-libs/gtk-4.0:4
-   app-text/iso-codes
-   net-misc/mobile-broadband-provider-info
-   >=dev-libs/glib-2.38:2
-   >=x11-libs/gtk+-3.12:3[introspection?]
-   >=net-misc/networkmanager-1.7[introspection?]
-   pkcs11? ( >=app-crypt/gcr-3.14:= )
-   introspection? ( >=dev-libs/gobject-introspection-1.56:= )
-"
-RDEPEND="${DEPEND}
-   !

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

2022-07-20 Thread Matt Turner
commit: 6595b4246f6fbfe1e040fadc9d012ac82740bdd9
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:38:15 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6595b424

sci-geosciences/gnome-maps: Drop old versions

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

 sci-geosciences/gnome-maps/Manifest   |  1 -
 sci-geosciences/gnome-maps/gnome-maps-42.1.ebuild | 56 ---
 2 files changed, 57 deletions(-)

diff --git a/sci-geosciences/gnome-maps/Manifest 
b/sci-geosciences/gnome-maps/Manifest
index 59af4a95d983..2af7c3da6c24 100644
--- a/sci-geosciences/gnome-maps/Manifest
+++ b/sci-geosciences/gnome-maps/Manifest
@@ -1,3 +1,2 @@
-DIST gnome-maps-42.1.tar.xz 2315924 BLAKE2B 
a2bf6eb8bef69c80febeffc29294840b701a207d5b6479dabae4daa13de4b5325319314bb755d44fa5ec41bae397af1e642950553b6c36be29f8a68109c15b3f
 SHA512 
a01bf5eefa541542930e53750ac216cd93e4b409a171b57ed18525020cd2dc55db596ab68885ab9d607999c971f8e4ec2b746507157aab32b863a17a222a6fc2
 DIST gnome-maps-42.2.tar.xz 2317216 BLAKE2B 
2a485c15ad203fb4518541a60231a0ed756ca3cf7abc524911a2294b3503077d0974ecc8690073e3967241a8769687a1524506a42bea8c473192128cd2ae9bb7
 SHA512 
87da3b6850d1a7ca4d90781089800f082026406555773ea1a9bac376b41e480eb4b5a10ec3f0a2f85de521e847489f4e761117a08e7125447aab7acf05720c1f
 DIST gnome-maps-42.3.tar.xz 2317328 BLAKE2B 
365eb5cb8f7b20e2069338249418f5fad1abd47a1ab7ecda2d671dc97dfa45fb9f5687ae01fd605613c7ecf6eb9048aef6ab121cac0f455a42df9156581c87e2
 SHA512 
e52509603914de8f345a874f931beb68d11f718827b956a48464fe804c42559d977eacb0bbd5d4346b6329ab3f9169ac9afa8ef681f040c5b6a82b440b9786cb

diff --git a/sci-geosciences/gnome-maps/gnome-maps-42.1.ebuild 
b/sci-geosciences/gnome-maps/gnome-maps-42.1.ebuild
deleted file mode 100644
index 1a317dee669c..
--- a/sci-geosciences/gnome-maps/gnome-maps-42.1.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-PYTHON_COMPAT=( python3_{8..10} )
-inherit gnome.org gnome2-utils meson python-any-r1 xdg
-
-DESCRIPTION="A map application for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Maps;
-
-LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
-
-# Pure introspection dependencies found by grepping imports.gi in ${S}
-RDEPEND="
-   >=dev-libs/glib-2.66.0:2
-   x11-libs/pango[introspection]
-   >=dev-libs/gjs-1.66.0
-   >=dev-libs/gobject-introspection-0.10.1:=
-   >=x11-libs/gtk+-3.22:3[introspection]
-   >=app-misc/geoclue-0.12.99:2.0[introspection]
-   >=gui-libs/libhandy-1.5.0:1=
-   >=dev-libs/libgee-0.16:0.8[introspection]
-   >=dev-libs/folks-0.10:=
-   >=sci-geosciences/geocode-glib-3.15.2[introspection]
-   >=media-libs/libchamplain-0.12.14:0.12[gtk,introspection]
-   dev-libs/libxml2:2
-   >=net-libs/rest-0.7.90:0.7[introspection]
-
-   app-crypt/libsecret[introspection]
-   dev-libs/libgweather:4=[introspection]
-   media-libs/clutter-gtk:1.0[introspection]
-   media-libs/clutter:1.0[introspection]
-   net-libs/gnome-online-accounts[introspection]
-   net-libs/libgfbgraph[introspection]
-   net-libs/libsoup:2.4[introspection]
-   net-libs/webkit-gtk:4[introspection]
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   ${PYTHON_DEPS}
-   dev-util/glib-utils
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-"
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postinst() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}



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

2022-07-20 Thread Matt Turner
commit: f42548b8ab73ddee5e9c4f5cf457b4756b16d6b2
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:37:36 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f42548b8

net-irc/polari: Drop old versions

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

 net-irc/polari/Manifest|  1 -
 .../files/40.0-fix-build-with-meson-0.61.1.patch   | 45 -
 net-irc/polari/polari-40.0.ebuild  | 58 --
 3 files changed, 104 deletions(-)

diff --git a/net-irc/polari/Manifest b/net-irc/polari/Manifest
index 7eb1fcdab30e..c69054076f10 100644
--- a/net-irc/polari/Manifest
+++ b/net-irc/polari/Manifest
@@ -1,2 +1 @@
-DIST polari-40.0.tar.xz 1051416 BLAKE2B 
ea6aea087ff3ba74e2cf16e848c228c0984eb7e5b7cc16579bbe8ceeb3655babb5dfbf3adbe245b66b590999c5b7e0077630b659d0db00e2da6ce0ac8b0281da
 SHA512 
267eb904286f33e6ac510357de072285889d1c72ca832eb6a8520a20b1c2487708eaa0187d4c91b46b3b8019866f37a9ac036a71dee9cd9c9ad83443df0f146c
 DIST polari-42.0.tar.xz 1125160 BLAKE2B 
e4edeb2023c2df2e1ad855ceea4dc9e646eca18da61643698410724d1fbe031ee609a30e139b2ab2ad6ddf22d1a4ea0b408b4b93d7ac8874c35c9d49f96f16bd
 SHA512 
a64e1841d91809389af4b1f7eebd1b1e187f9e5f7058a84ab3b50bbbdc3786a7ec89bd4ccc4935473d1de1c40f6dbd6daf30b6bff48dd132e28a4be3e8bfb114

diff --git a/net-irc/polari/files/40.0-fix-build-with-meson-0.61.1.patch 
b/net-irc/polari/files/40.0-fix-build-with-meson-0.61.1.patch
deleted file mode 100644
index 2decad2dc23f..
--- a/net-irc/polari/files/40.0-fix-build-with-meson-0.61.1.patch
+++ /dev/null
@@ -1,45 +0,0 @@
-https://gitlab.gnome.org/GNOME/polari/-/commit/0f0a4b54142d8b424969f0b6ace6fc8b53b1d05d
-https://bugs.gentoo.org/831922
-
-From: Jan Beich 
-Date: Mon, 24 Jan 2022 12:32:00 +
-Subject: [PATCH] meson: Drop unused argument for i18n.merge_file()
-
-Ignored in Meson < 0.60.0, deprecated since 0.60.1 and fatal since 0.61.0.
-
-data/appdata/meson.build:2:0: ERROR: Function does not take positional 
arguments.
-data/meson.build:5:0: ERROR: Function does not take positional arguments.
-
-Part-of: 

- data/appdata/meson.build | 2 +-
- data/meson.build | 2 +-
- 2 files changed, 2 insertions(+), 2 deletions(-)
-
-diff --git a/data/appdata/meson.build b/data/appdata/meson.build
-index 88b4a0be..781ba22f 100644
 a/data/appdata/meson.build
-+++ b/data/appdata/meson.build
-@@ -1,5 +1,5 @@
- appdata_name = app_id + '.appdata.xml'
--appdata = i18n.merge_file(appdata_name,
-+appdata = i18n.merge_file(
-   input: appdata_name + '.in',
-   output: appdata_name,
-   po_dir: '../../po',
-diff --git a/data/meson.build b/data/meson.build
-index cedfd57b..655ae700 100644
 a/data/meson.build
-+++ b/data/meson.build
-@@ -2,7 +2,7 @@ subdir('appdata')
- subdir('icons')
- 
- desktop_filename = app_id + '.desktop'
--desktop_file = i18n.merge_file(desktop_filename,
-+desktop_file = i18n.merge_file(
-   input: desktop_filename + '.in',
-   output: desktop_filename,
-   po_dir: '../po',
--- 
-GitLab
-

diff --git a/net-irc/polari/polari-40.0.ebuild 
b/net-irc/polari/polari-40.0.ebuild
deleted file mode 100644
index fca653dc7065..
--- a/net-irc/polari/polari-40.0.ebuild
+++ /dev/null
@@ -1,58 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit gnome.org gnome2-utils meson xdg
-
-DESCRIPTION="An IRC client for GNOME"
-HOMEPAGE="https://wiki.gnome.org/Apps/Polari 
https://gitlab.gnome.org/GNOME/polari;
-
-LICENSE="GPL-2+"
-SLOT="0"
-KEYWORDS="amd64 ~arm x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-DEPEND="
-   >=dev-libs/glib-2.43.4:2
-   >=x11-libs/gtk+-3.21.6:3[introspection]
-   net-libs/telepathy-glib[introspection]
-   >=dev-libs/gobject-introspection-1.50:=
-   >=dev-libs/gjs-1.67.2
-
-   x11-libs/gdk-pixbuf:2[introspection]
-   >=app-text/gspell-1.4.0[introspection]
-   x11-libs/pango[introspection]
-   app-crypt/libsecret[introspection]
-   net-libs/libsoup:2.4[introspection]
-   net-im/telepathy-logger[introspection]
-"
-RDEPEND="${DEPEND}
-   >=net-irc/telepathy-idle-0.2
-"
-BDEPEND="
-   dev-libs/appstream-glib
-   dev-libs/libxml2:2
-   dev-util/itstool
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-   test? (
-   dev-lang/spidermonkey:78
-   dev-libs/json-glib
-   )
-"
-
-PATCHES=(
-   "${FILESDIR}/${PV}"-fix-build-with-meson-0.61.1.patch
-)
-
-pkg_postinst() {
-   xdg_pkg_postinst
-   gnome2_schemas_update
-}
-
-pkg_postrm() {
-   xdg_pkg_postrm
-   gnome2_schemas_update
-}



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

2022-07-20 Thread Matt Turner
commit: 490fb37de24c5dd93ad67b987e88fbfa800d07de
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:37:50 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=490fb37d

net-libs/libnice: Drop old versions

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

 net-libs/libnice/Manifest  |  1 -
 net-libs/libnice/libnice-0.1.18.ebuild | 48 --
 2 files changed, 49 deletions(-)

diff --git a/net-libs/libnice/Manifest b/net-libs/libnice/Manifest
index 7324eb4d3f18..7bfe013e0ae3 100644
--- a/net-libs/libnice/Manifest
+++ b/net-libs/libnice/Manifest
@@ -1,2 +1 @@
-DIST libnice-0.1.18.tar.gz 439791 BLAKE2B 
6bb68bb1484b4a622a580bc9c66b8be260d2615b211cf7991cb50a9f692df525cd0c3c9fc54ef86534426f396f8d2201966cdacfd3f69ff27193971f95886540
 SHA512 
08bac05874708f7e7a669d28727d8951a10c464b22dd6fada1a4644850bcf5c4cc022cce46bb24c806086a7869b274c4c7d3d6ddaa9ed0ce0bc2c47f72933227
 DIST libnice-0.1.19.tar.gz 453407 BLAKE2B 
7bffde82a3e55d9aeeaadd159d944346a5192871e7f574e278dc43e8171e5fde472cd28186777a0b6cddd8bde34e035794b1c6b8f152c7fb4fae5202025bfdac
 SHA512 
1c63cc0b7655186fd6f83da4dd607183d6ccfab9b7ad7189c1bea2ba7413183f24076aba5d6c7231d2ab3fbd471827256729a8a0c0d1bda48803586e68b3778b

diff --git a/net-libs/libnice/libnice-0.1.18.ebuild 
b/net-libs/libnice/libnice-0.1.18.ebuild
deleted file mode 100644
index 7dcd67787313..
--- a/net-libs/libnice/libnice-0.1.18.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-inherit meson-multilib xdg
-
-DESCRIPTION="An implementation of the Interactice Connectivity Establishment 
standard (ICE)"
-HOMEPAGE="https://nice.freedesktop.org/wiki/;
-SRC_URI="https://nice.freedesktop.org/releases/${P}.tar.gz;
-
-LICENSE="|| ( MPL-1.1 LGPL-2.1 )"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
-IUSE="+gnutls +introspection +upnp"
-
-RDEPEND="
-   >=dev-libs/glib-2.54:2[${MULTILIB_USEDEP}]
-   introspection? ( >=dev-libs/gobject-introspection-1.30.0:= )
-   gnutls? ( >=net-libs/gnutls-2.12.0:0=[${MULTILIB_USEDEP}] )
-   !gnutls? (
-   dev-libs/openssl:0=[${MULTILIB_USEDEP}] )
-   upnp? ( >=net-libs/gupnp-igd-0.2.4:=[${MULTILIB_USEDEP}] )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   dev-util/glib-utils
-   virtual/pkgconfig
-"
-
-multilib_src_configure() {
-   # gstreamer plugin split off into media-plugins/gst-plugins-libnice
-   local emesonargs=(
-   -Dgstreamer=disabled
-   -Dcrypto-library=$(usex gnutls gnutls openssl)
-   $(meson_native_use_feature introspection)
-   $(meson_feature upnp gupnp)
-   )
-
-   meson_src_configure
-
-   #if multilib_is_native_abi; then
-   #   ln -s {"${S}"/,}docs/reference/libnice/html || die
-   #fi
-}
-
-multilib_src_install_all() {
-   einstalldocs
-}



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

2022-07-20 Thread Matt Turner
commit: 696b7be053604de2facbe85fdfc19b8949d402d1
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jul 21 01:37:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jul 21 01:58:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=696b7be0

net-libs/gtk-vnc: Drop old versions

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

 net-libs/gtk-vnc/gtk-vnc-1.3.0.ebuild | 57 ---
 1 file changed, 57 deletions(-)

diff --git a/net-libs/gtk-vnc/gtk-vnc-1.3.0.ebuild 
b/net-libs/gtk-vnc/gtk-vnc-1.3.0.ebuild
deleted file mode 100644
index 92a3dcb57940..
--- a/net-libs/gtk-vnc/gtk-vnc-1.3.0.ebuild
+++ /dev/null
@@ -1,57 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-PYTHON_COMPAT=( python3_{8..10} )
-
-inherit gnome.org vala meson python-any-r1 xdg
-
-DESCRIPTION="VNC viewer widget for GTK"
-HOMEPAGE="https://wiki.gnome.org/Projects/gtk-vnc;
-
-LICENSE="LGPL-2.1+"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
-IUSE="+introspection pulseaudio sasl +vala"
-REQUIRED_USE="vala? ( introspection )"
-
-RDEPEND="
-   >=dev-libs/glib-2.56.0:2
-   >=x11-libs/gdk-pixbuf-2.36.0:2
-   >=dev-libs/libgcrypt-1.8.0:0=
-   >=net-libs/gnutls-3.6.0:0=
-   >=sys-libs/zlib-1.2.11
-   sasl? ( >=dev-libs/cyrus-sasl-2.1.27 )
-   >=x11-libs/gtk+-3.22.0:3[introspection?]
-   >=x11-libs/cairo-1.15.0
-   >=x11-libs/libX11-1.6.5
-   pulseaudio? ( >=media-sound/pulseaudio-11.0 )
-   introspection? ( >=dev-libs/gobject-introspection-1.56.0:= )
-"
-# Keymap databases code is generated with python3; configure picks up $PYTHON 
exported from python-any-r1_pkg_setup
-# perl for pod2man
-DEPEND="${RDEPEND}"
-BDEPEND="
-   ${PYTHON_DEPS}
-   >=dev-lang/perl-5
-   dev-util/glib-utils
-   >=sys-devel/gettext-0.19.8
-   virtual/pkgconfig
-   vala? ( $(vala_depend) )
-"
-
-src_prepare() {
-   vala_src_prepare
-   xdg_src_prepare
-}
-
-src_configure() {
-   local emesonargs=(
-   $(meson_feature introspection)
-   $(meson_feature pulseaudio)
-   $(meson_feature sasl)
-   -Dwith-coroutine=auto # gthread on windows, libc ucontext 
elsewhere; neither has extra deps
-   $(meson_feature vala with-vala)
-   )
-   meson_src_configure
-}



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

2022-07-20 Thread Sam James
commit: 117900f0567edb6affb950565d449516581f41df
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:24:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:24:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=117900f0

dev-perl/rename: fix MismatchedPerlVersion

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

 .../{rename-1.1100.0.ebuild => rename-1.110.0-r1.ebuild}   | 10 --
 1 file changed, 4 insertions(+), 6 deletions(-)

diff --git a/dev-perl/rename/rename-1.1100.0.ebuild 
b/dev-perl/rename/rename-1.110.0-r1.ebuild
similarity index 51%
rename from dev-perl/rename/rename-1.1100.0.ebuild
rename to dev-perl/rename/rename-1.110.0-r1.ebuild
index 6343fd88ce77..65fed45dcc89 100644
--- a/dev-perl/rename/rename-1.1100.0.ebuild
+++ b/dev-perl/rename/rename-1.110.0-r1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 DIST_AUTHOR=PEDERST
 DIST_VERSION=1.11
@@ -9,14 +9,12 @@ inherit perl-module
 
 DESCRIPTION="A filename renaming utility based on perl regular expression"
 
-HOMEPAGE="https://metacpan.org/source/PEDERST/rename-1.11;
 SLOT="0"
 KEYWORDS="amd64 x86"
-IUSE=""
 
 src_install() {
perl-module_src_install
 
-   mv -vf "${D}"/usr/bin/rename "${D}"/usr/bin/perl-rename || die
-   mv -vf "${D}"/usr/share/man/man1/rename.1 
"${D}"/usr/share/man/man1/perl-rename.1 || die
+   mv -vf "${ED}"/usr/bin/rename "${ED}"/usr/bin/perl-rename || die
+   mv -vf "${ED}"/usr/share/man/man1/rename.1 
"${ED}"/usr/share/man/man1/perl-rename.1 || die
 }



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

2022-07-20 Thread Sam James
commit: adf08563ae49237c433bbf81092fa0a13b80b05c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:21:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:21:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=adf08563

dev-vcs/gitolite-gentoo: fix UnusedLocalUse

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

 dev-vcs/gitolite-gentoo/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-vcs/gitolite-gentoo/metadata.xml 
b/dev-vcs/gitolite-gentoo/metadata.xml
index 2999e4b2c5d0..c81a22a1305b 100644
--- a/dev-vcs/gitolite-gentoo/metadata.xml
+++ b/dev-vcs/gitolite-gentoo/metadata.xml
@@ -6,7 +6,6 @@
Robin H. Johnson


-   Install user-contributed files
Install tools to e.g. convert a Gitosis 
config to
gitolite or one to check if your setup is gitolite 
= 3.x compatible




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

2022-07-20 Thread Sam James
commit: a33f0b55fd183d9015d9b1a988ea0e8d261fb5c5
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:21:39 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:21:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33f0b55

sys-devel/llvm: fix UnusedLocalUse

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

 sys-devel/llvm/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/sys-devel/llvm/metadata.xml b/sys-devel/llvm/metadata.xml
index c10c45dd8f21..fa838ec85ac6 100644
--- a/sys-devel/llvm/metadata.xml
+++ b/sys-devel/llvm/metadata.xml
@@ -14,7 +14,6 @@
Build and install the HTML documentation and 
regenerate the man pages
Enable performance counter support for 
llvm-exegesis tool
that can be used to measure host machine instruction 
characteristics
-   Build the binutils plugin
Support querying terminal properties using 
ncurses' terminfo
Support dumping LLVM bitcode sections in 
Mach-O files
(uses app-arch/xar)



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

2022-07-20 Thread Sam James
commit: 30fe0f59121b59217854f2189ca7b0a4cb8bc419
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:22:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:22:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30fe0f59

media-libs/libdc1394: drop 2.2.5-r1

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

 media-libs/libdc1394/Manifest  |  1 -
 media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild | 55 --
 2 files changed, 56 deletions(-)

diff --git a/media-libs/libdc1394/Manifest b/media-libs/libdc1394/Manifest
index eb0f127a118e..97e2ae9b07d7 100644
--- a/media-libs/libdc1394/Manifest
+++ b/media-libs/libdc1394/Manifest
@@ -1,3 +1,2 @@
-DIST libdc1394-2.2.5.tar.gz 611918 BLAKE2B 
64a5e156bfcef1f7a0ab2ec9be6cab65cf47bdc79ec3387d183778287ea1f72234325f7df5b67745289d68aea0105f24d7c55a4f13e913a60d43e3d74fcd4979
 SHA512 
4a02560b7b2db7199b91c35786cb9d5af51398795fc1b7f0cb577d3563b27c0d03d407fa472d9756a2f87b658350a55d29c16fef401a74f835ba86e25214d13c
 DIST libdc1394-2.2.6.tar.gz 612067 BLAKE2B 
bf2c5f1ce86220229d66db0549a637efeeb2bf80880fefc830510c65d7a63090b79f1c40df7a12f655808263b7ac5166391a5de63b2158a804e30edee35e89e9
 SHA512 
2d60ed1054da67d8518e870193b60c1d79778858f48cc6487e252de00cc57a08548515d41914a37d0227d29e158d68892c290f83930ffd95f4a483dce5aa3d25
 DIST sdl.m4-20140620.tar.xz 2420 BLAKE2B 
2057bd14817809fc4ce8188971e846d70deda495c25dc3e1e87499f61b67373870c4b3f171edd9e5cf20e29c5d4c1eb11858001c67658e06715be3550668a61d
 SHA512 
d8844d0967809241b642e0b6aaf45f2a5e94567d239d338aee45aaeb0e38765bcae419660562b7064d91afec63cc6ade0878fc7d6f36c61c083d136098a9af55

diff --git a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild 
b/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild
deleted file mode 100644
index 8481c927ffe9..
--- a/media-libs/libdc1394/libdc1394-2.2.5-r1.ebuild
+++ /dev/null
@@ -1,55 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit autotools multilib-minimal
-
-DESCRIPTION="Library to interface with IEEE 1394 cameras following the IIDC 
specification"
-HOMEPAGE="https://sourceforge.net/projects/libdc1394/;
-SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
-   https://dev.gentoo.org/~ssuominen/sdl.m4-20140620.tar.xz;
-
-LICENSE="LGPL-2.1"
-SLOT="2"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
-IUSE="doc static-libs"
-
-RDEPEND="
-   >=sys-libs/libraw1394-2.1.0-r1[${MULTILIB_USEDEP}]
-   >=virtual/libusb-1-r1:1[${MULTILIB_USEDEP}]"
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( app-doc/doxygen )"
-
-PATCHES=( "${FILESDIR}"/${PN}-2.2.1-pthread.patch )
-
-src_prepare() {
-   default
-   AT_M4DIR=${WORKDIR}/aclocal eautoreconf
-}
-
-multilib_src_configure() {
-   local myeconfargs=(
-   $(use_enable doc doxygen-html)
-   $(use_enable static-libs static)
-   --disable-examples
-   --program-suffix=2
-   --without-x # only useful for (disabled) examples
-   )
-
-   multilib_is_native_abi || myeconfargs+=( --disable-doxygen-html )
-
-   ECONF_SOURCE="${S}" econf "${myeconfargs[@]}"
-}
-
-multilib_src_compile() {
-   default
-   multilib_is_native_abi && use doc && emake doc
-}
-
-multilib_src_install() {
-   multilib_is_native_abi && use doc && local HTML_DOCS=( doc/html/. )
-   default
-   find "${ED}" -name '*.la' -delete || die
-}



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

2022-07-20 Thread Sam James
commit: 9817fc451cbe35c8f274acb56fa91da391e59e18
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:20:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9817fc45

net-dns/bind-tools: drop no-op USE=ipv6

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

 net-dns/bind-tools/bind-tools-9.16.31.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-dns/bind-tools/bind-tools-9.16.31.ebuild 
b/net-dns/bind-tools/bind-tools-9.16.31.ebuild
index acc05183782f..4a9cc94b8e64 100644
--- a/net-dns/bind-tools/bind-tools-9.16.31.ebuild
+++ b/net-dns/bind-tools/bind-tools-9.16.31.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://downloads.isc.org/isc/bind9/${PV}/${MY_P}.tar.xz;
 LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="+caps doc gssapi idn ipv6 libedit readline test xml"
+IUSE="+caps doc gssapi idn libedit readline test xml"
 # no PKCS11 currently as it requires OpenSSL to be patched, also see bug 
#409687
 RESTRICT="!test? ( test )"
 



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

2022-07-20 Thread Sam James
commit: d085c1ff471463cc4f6941ee24b2b060a8d8e15d
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:14:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:14:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d085c1ff

net-dns/bind-tools: drop versions

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

 net-dns/bind-tools/Manifest  |   5 -
 net-dns/bind-tools/bind-tools-9.16.15.ebuild | 148 --
 net-dns/bind-tools/bind-tools-9.16.18.ebuild | 148 --
 net-dns/bind-tools/bind-tools-9.16.21.ebuild | 148 --
 net-dns/bind-tools/bind-tools-9.16.22.ebuild | 148 --
 net-dns/bind-tools/bind-tools-9.16.25.ebuild | 148 --
 net-dns/bind-tools/bind-tools-9.16.29.ebuild | 152 ---
 7 files changed, 897 deletions(-)

diff --git a/net-dns/bind-tools/Manifest b/net-dns/bind-tools/Manifest
index 591f35fc9da8..f013801f067d 100644
--- a/net-dns/bind-tools/Manifest
+++ b/net-dns/bind-tools/Manifest
@@ -1,8 +1,3 @@
-DIST bind-9.16.15.tar.xz 5025688 BLAKE2B 
8b0723d46f812793f5a52b1ddacf21fe28e183ef8cd166eadf0af163280021fce7c0a6a560d28dacbc6dd4642e41eb5424b4de2c5ff1049a5cfa5d52e3df5beb
 SHA512 
30dad6e2144b3ac53ef0a2d1ed3c8342120f148fc0eb6409113a6d5ed3444eecb917915fdf39c26fd223396fc1e873410a50da305f0b870864f7fbbdccec8033
-DIST bind-9.16.18.tar.xz 5023512 BLAKE2B 
7766c1e6ab30ae42f0ba49d96fe0e2675e79aa01c48569d3cf5c122944319fbb88299a193ce06cc0aa67f6085fd80e29472fc7adc845e4bbb7ff6896dae87ed6
 SHA512 
6ba2f14324ebdc66d2a6d60e929fb47e170dd7662cf4b18ef3ad9da30a61b43c7d5539e931c483ab36e63ae0398aeed255fd672489fb332dccf182df9aa102f9
-DIST bind-9.16.21.tar.xz 5057816 BLAKE2B 
bc7de285b45084a4904aee7c5c3042c7a2075968f19ed76b932c976f86f60bc8bf0d6cce8889a9adf7e807c8151bd6088ef1b2b00460a4d1cff7a74bb2221d43
 SHA512 
2cb71e50600fd7409ca7b7e2e9cf4ef6668b07faad7980ac8060e6a76f30a315182d75534ad1dcfb740c225cdf727b2bd6aa9ceb24ab7709b7b5d6eaca2d
-DIST bind-9.16.22.tar.xz 5059000 BLAKE2B 
c4853a8be268f9666f3677adf2e64c6d74f7df44d2dc05df544cead38c6c3b86489d25a66ccea6ce8ca89fa525a1848fe93a8aaa6bb1ee090aa189bf6aad40f3
 SHA512 
586fb4d5a656d6539033dcdfdd230b36465a2d2e6ada651c1f1548d062a9050e7a962af87e2a56931fe24c65586d29012d4a041dcddbb28f42b4d01fe291d9d1
-DIST bind-9.16.25.tar.xz 5086780 BLAKE2B 
cb62d0d4e25f508f1a77fae6a11ff144d2436346c45a936d572df4c843cd72ec81cffacd0a81dcb74eb73b8bca7d0762a5746baadda36f260b79b72eade24d18
 SHA512 
e43c0e59159d3a5642db051f3982d8767fb726426380c32960fefe4b9afd05708ed8f7e80a98b803a580b048e1a368c888e2dd5695fa5fcd7b8b75574a27cb62
 DIST bind-9.16.27.tar.xz 5084340 BLAKE2B 
37b49ce81aa5122493a4feb2bb7be53c5d46ff2ce28456aec31ce1332520a09c10bb2293c736bffe7badbc2bc3d156c05f83367678bd101e17b99ca3ff69bebf
 SHA512 
5c71f228db83aa8cc9e65466d6e5afca4a9f80c693358111a003fe09e1a14522175eb2b6a0f11e2a2cd4fdba01f2ae315de52e394a441b3861ca2a011e02af62
 DIST bind-9.16.29.tar.xz 5088348 BLAKE2B 
17ee1443926327c30f1d5820110b01a193c53eb24e23385b713217a4e49d9c2b5ddb6e1c49cb80d2c9083c71ce7872a26fe3597209f2e3215e6cc7e930e68004
 SHA512 
b4acbafed370438ac53e73468ccb5ea5745a1c8f764dd96f9c9a027594a3b7ce0d486e7f01138b39795b456265e0e6116cd76e44f5a3329687cd718550ca79fb
 DIST bind-9.16.30.tar.xz 5086288 BLAKE2B 
35fe14b58a018df25563e58a9632b4431f740bc7a708eb823117541548d23b1855e43058cf7323361ca904d5e59d687e282abb73dc8b617e4eb25ef113168e93
 SHA512 
cc9bcbedf63c2efe0a23f14db3e57fdae46f0509aac58e5840a6805ce4fbd76cad5bfde4d461442adb88c4d947f8d79bf979aeb24aeb9303b6adc8d169b7118c

diff --git a/net-dns/bind-tools/bind-tools-9.16.15.ebuild 
b/net-dns/bind-tools/bind-tools-9.16.15.ebuild
deleted file mode 100644
index 892235add429..
--- a/net-dns/bind-tools/bind-tools-9.16.15.ebuild
+++ /dev/null
@@ -1,148 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit autotools flag-o-matic toolchain-funcs
-
-MY_PN=${PN//-tools}
-MY_PV=${PV/_p/-P}
-MY_PV=${MY_PV/_rc/rc}
-MY_P="${MY_PN}-${MY_PV}"
-
-DESCRIPTION="bind tools: dig, nslookup, host, nsupdate, dnssec-keygen"
-HOMEPAGE="https://www.isc.org/software/bind;
-SRC_URI="https://downloads.isc.org/isc/bind9/${PV}/${MY_P}.tar.xz;
-
-LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
-SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
-IUSE="+caps doc gssapi idn ipv6 libedit readline xml"
-# no PKCS11 currently as it requires OpenSSL to be patched, also see bug 409687
-
-COMMON_DEPEND="
-   dev-libs/libuv:=
-   caps? ( sys-libs/libcap )
-   dev-libs/openssl:=
-   xml? ( dev-libs/libxml2 )
-   idn? ( net-dns/libidn2:= )
-   gssapi? ( virtual/krb5 )
-   libedit? ( dev-libs/libedit )
-   !libedit? (
-   readline? ( 

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

2022-07-20 Thread Sam James
commit: f5103b909eb5aadfed78a514036a67ac90f8d2e0
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:13:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:13:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5103b90

net-dns/bind-tools: add 9.16.31

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

 net-dns/bind-tools/Manifest  |   1 +
 net-dns/bind-tools/bind-tools-9.16.31.ebuild | 157 +++
 2 files changed, 158 insertions(+)

diff --git a/net-dns/bind-tools/Manifest b/net-dns/bind-tools/Manifest
index fbe38e638629..591f35fc9da8 100644
--- a/net-dns/bind-tools/Manifest
+++ b/net-dns/bind-tools/Manifest
@@ -6,3 +6,4 @@ DIST bind-9.16.25.tar.xz 5086780 BLAKE2B 
cb62d0d4e25f508f1a77fae6a11ff144d243634
 DIST bind-9.16.27.tar.xz 5084340 BLAKE2B 
37b49ce81aa5122493a4feb2bb7be53c5d46ff2ce28456aec31ce1332520a09c10bb2293c736bffe7badbc2bc3d156c05f83367678bd101e17b99ca3ff69bebf
 SHA512 
5c71f228db83aa8cc9e65466d6e5afca4a9f80c693358111a003fe09e1a14522175eb2b6a0f11e2a2cd4fdba01f2ae315de52e394a441b3861ca2a011e02af62
 DIST bind-9.16.29.tar.xz 5088348 BLAKE2B 
17ee1443926327c30f1d5820110b01a193c53eb24e23385b713217a4e49d9c2b5ddb6e1c49cb80d2c9083c71ce7872a26fe3597209f2e3215e6cc7e930e68004
 SHA512 
b4acbafed370438ac53e73468ccb5ea5745a1c8f764dd96f9c9a027594a3b7ce0d486e7f01138b39795b456265e0e6116cd76e44f5a3329687cd718550ca79fb
 DIST bind-9.16.30.tar.xz 5086288 BLAKE2B 
35fe14b58a018df25563e58a9632b4431f740bc7a708eb823117541548d23b1855e43058cf7323361ca904d5e59d687e282abb73dc8b617e4eb25ef113168e93
 SHA512 
cc9bcbedf63c2efe0a23f14db3e57fdae46f0509aac58e5840a6805ce4fbd76cad5bfde4d461442adb88c4d947f8d79bf979aeb24aeb9303b6adc8d169b7118c
+DIST bind-9.16.31.tar.xz 5087424 BLAKE2B 
75c9038c00fe289161a15a8e4fdadaef5a6a7f3ca03068ec24e82aa9f30ac82d0ded9cf73df83219058cd81b198ea8f561211a323e31b41407294f6932dc61d3
 SHA512 
8577b4d021a5a763b8669d59ef6c3499238e87657ca94ccfc530cb9a7a215ee3682002aa6141f5731154cbc43e0e6094372961468811a68bbd2a37e20e287c7e

diff --git a/net-dns/bind-tools/bind-tools-9.16.31.ebuild 
b/net-dns/bind-tools/bind-tools-9.16.31.ebuild
new file mode 100644
index ..acc05183782f
--- /dev/null
+++ b/net-dns/bind-tools/bind-tools-9.16.31.ebuild
@@ -0,0 +1,157 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic multiprocessing toolchain-funcs
+
+MY_PN=${PN//-tools}
+MY_PV=${PV/_p/-P}
+MY_PV=${MY_PV/_rc/rc}
+MY_P="${MY_PN}-${MY_PV}"
+
+DESCRIPTION="bind tools: dig, nslookup, host, nsupdate, dnssec-keygen"
+HOMEPAGE="https://www.isc.org/software/bind 
https://gitlab.isc.org/isc-projects/bind9;
+SRC_URI="https://downloads.isc.org/isc/bind9/${PV}/${MY_P}.tar.xz;
+
+LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+caps doc gssapi idn ipv6 libedit readline test xml"
+# no PKCS11 currently as it requires OpenSSL to be patched, also see bug 
#409687
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   dev-libs/libuv:=
+   dev-libs/openssl:=
+   caps? ( sys-libs/libcap )
+   xml? ( dev-libs/libxml2 )
+   idn? ( net-dns/libidn2:= )
+   gssapi? ( virtual/krb5 )
+   libedit? ( dev-libs/libedit )
+   !libedit? (
+   readline? ( sys-libs/readline:= )
+   )
+"
+DEPEND="${COMMON_DEPEND}"
+RDEPEND="${COMMON_DEPEND}"
+
+# sphinx required for man-page and html creation
+BDEPEND="
+   virtual/pkgconfig
+   doc? ( dev-python/sphinx )
+   test? (
+   dev-util/cmocka
+   dev-util/kyua
+   )
+"
+
+S="${WORKDIR}/${MY_P}"
+
+src_prepare() {
+   default
+
+   append-ldflags "-L${ESYSROOT}/usr/$(get_libdir)"
+
+   # Do not disable thread local storage on Solaris, it works with our
+   # toolchain, and it breaks further configure checks
+   sed -i -e '/LDFLAGS=/s/-zrelax=transtls//' configure.ac configure || die
+
+   # bug #220361
+   rm aclocal.m4 || die
+   rm -rf libtool.m4/ || die
+
+   eautoreconf
+}
+
+src_configure() {
+   local myeconfargs=(
+   --localstatedir="${EPREFIX}"/var
+   --without-python
+   --without-libjson
+   --without-zlib
+   --without-lmdb
+   --without-maxminddb
+   --disable-geoip
+   --with-openssl="${ESYSROOT}"/usr
+   $(use_with idn libidn2 "${ESYSROOT}"/usr)
+   $(use_with xml libxml2)
+   $(use_with gssapi)
+   $(use_with readline)
+   $(use_enable caps linux-caps)
+   AR="$(type -P $(tc-getAR))"
+   )
+
+   # bug 607400
+   if use libedit ; then
+   myeconfargs+=( 

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

2022-07-20 Thread Sam James
commit: 249ddd70349465236778910680b42bd9d9efb15f
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 01:07:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 01:07:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=249ddd70

net-dns/bind: add 9.16.31

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

 net-dns/bind/Manifest|   1 +
 net-dns/bind/bind-9.16.31.ebuild | 382 +++
 2 files changed, 383 insertions(+)

diff --git a/net-dns/bind/Manifest b/net-dns/bind/Manifest
index 10179e658fcf..5f6d74ad9fac 100644
--- a/net-dns/bind/Manifest
+++ b/net-dns/bind/Manifest
@@ -1,4 +1,5 @@
 DIST bind-9.16.27.tar.xz 5084340 BLAKE2B 
37b49ce81aa5122493a4feb2bb7be53c5d46ff2ce28456aec31ce1332520a09c10bb2293c736bffe7badbc2bc3d156c05f83367678bd101e17b99ca3ff69bebf
 SHA512 
5c71f228db83aa8cc9e65466d6e5afca4a9f80c693358111a003fe09e1a14522175eb2b6a0f11e2a2cd4fdba01f2ae315de52e394a441b3861ca2a011e02af62
 DIST bind-9.16.29.tar.xz 5088348 BLAKE2B 
17ee1443926327c30f1d5820110b01a193c53eb24e23385b713217a4e49d9c2b5ddb6e1c49cb80d2c9083c71ce7872a26fe3597209f2e3215e6cc7e930e68004
 SHA512 
b4acbafed370438ac53e73468ccb5ea5745a1c8f764dd96f9c9a027594a3b7ce0d486e7f01138b39795b456265e0e6116cd76e44f5a3329687cd718550ca79fb
 DIST bind-9.16.30.tar.xz 5086288 BLAKE2B 
35fe14b58a018df25563e58a9632b4431f740bc7a708eb823117541548d23b1855e43058cf7323361ca904d5e59d687e282abb73dc8b617e4eb25ef113168e93
 SHA512 
cc9bcbedf63c2efe0a23f14db3e57fdae46f0509aac58e5840a6805ce4fbd76cad5bfde4d461442adb88c4d947f8d79bf979aeb24aeb9303b6adc8d169b7118c
+DIST bind-9.16.31.tar.xz 5087424 BLAKE2B 
75c9038c00fe289161a15a8e4fdadaef5a6a7f3ca03068ec24e82aa9f30ac82d0ded9cf73df83219058cd81b198ea8f561211a323e31b41407294f6932dc61d3
 SHA512 
8577b4d021a5a763b8669d59ef6c3499238e87657ca94ccfc530cb9a7a215ee3682002aa6141f5731154cbc43e0e6094372961468811a68bbd2a37e20e287c7e
 DIST dyndns-samples.tbz2 22866 BLAKE2B 
409890653c6536cb9c0e3ba809d2bfde0e0ae73a2a101b4f229b46c01568466bc022bbbc37712171adbd08c572733e93630feab95a0fcd1ac50a7d37da1d1108
 SHA512 
83b0bf99f8e9ff709e8e9336d8c5231b98a4b5f0c60c10792f34931e32cc638d261967dfa5a83151ec3740977d94ddd6e21e9ce91267b3e279b88affdbc18cac

diff --git a/net-dns/bind/bind-9.16.31.ebuild b/net-dns/bind/bind-9.16.31.ebuild
new file mode 100644
index ..010d5b56b5d2
--- /dev/null
+++ b/net-dns/bind/bind-9.16.31.ebuild
@@ -0,0 +1,382 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+# Re dlz/mysql and threads, needs to be verified..
+# MySQL uses thread local storage in its C api. Thus MySQL
+# requires that each thread of an application execute a MySQL
+# thread initialization to setup the thread local storage.
+# This is impossible to do safely while staying within the DLZ
+# driver API. This is a limitation caused by MySQL, and not the DLZ API.
+# Because of this BIND MUST only run with a single thread when
+# using the MySQL driver.
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit python-r1 autotools multiprocessing toolchain-funcs flag-o-matic 
db-use systemd tmpfiles
+
+MY_PV="${PV/_p/-P}"
+MY_PV="${MY_PV/_rc/rc}"
+MY_P="${PN}-${MY_PV}"
+
+SDB_LDAP_VER="1.1.0-fc14"
+
+RRL_PV="${MY_PV}"
+
+# SDB-LDAP: http://bind9-ldap.bayour.com/
+
+DESCRIPTION="Berkeley Internet Name Domain - Name Server"
+HOMEPAGE="https://www.isc.org/software/bind 
https://gitlab.isc.org/isc-projects/bind9;
+SRC_URI="https://downloads.isc.org/isc/bind9/${PV}/${P}.tar.xz
+   doc? ( mirror://gentoo/dyndns-samples.tbz2 )"
+
+LICENSE="Apache-2.0 BSD BSD-2 GPL-2 HPND ISC MPL-2.0"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
+# -berkdb by default re bug #602682
+IUSE="berkdb +caps +dlz dnstap doc dnsrps fixed-rrset geoip geoip2 gssapi
+json ldap lmdb mysql odbc postgres python selinux static-libs test xml +zlib"
+# sdb-ldap - patch broken
+# no PKCS11 currently as it requires OpenSSL to be patched, also see bug 409687
+RESTRICT="!test? ( test )"
+
+# Upstream dropped the old geoip library, but the BIND configuration for using
+# GeoIP remained the same.
+REQUIRED_USE="
+   postgres? ( dlz )
+   berkdb? ( dlz )
+   mysql? ( dlz )
+   odbc? ( dlz )
+   ldap? ( dlz )
+   dnsrps? ( dlz )
+   python? ( ${PYTHON_REQUIRED_USE} )
+"
+
+DEPEND="
+   acct-group/named
+   acct-user/named
+   berkdb? ( sys-libs/db:= )
+   dev-libs/openssl:=[-bindist(-)]
+   mysql? ( dev-db/mysql-connector-c:0= )
+   odbc? ( >=dev-db/unixODBC-2.2.6 )
+   ldap? ( net-nds/openldap:= )
+   postgres? ( dev-db/postgresql:= )
+   caps? ( >=sys-libs/libcap-2.1.0 )
+   xml? ( dev-libs/libxml2 )
+   geoip? ( dev-libs/libmaxminddb:= )
+   geoip2? ( dev-libs/libmaxminddb:= )
+   gssapi? ( virtual/krb5 )
+   json? ( dev-libs/json-c:= )
+   lmdb? ( dev-db/lmdb:= )
+   zlib? ( 

[gentoo-commits] proj/grs:desktop-amd64-musl-hardened commit in: /, scripts/

2022-07-20 Thread Anthony G. Basile
commit: 2b4f1efa1b6268100b688a339327c0101d62897a
Author: Anthony G. Basile  gentoo  org>
AuthorDate: Thu Jul 21 00:58:17 2022 +
Commit: Anthony G. Basile  gentoo  org>
CommitDate: Thu Jul 21 00:58:29 2022 +
URL:https://gitweb.gentoo.org/proj/grs.git/commit/?id=2b4f1efa

scripts/kernel-config: remove CONFIG_DEBUG_INFO_BTF

Signed-off-by: Anthony G. Basile  gentoo.org>

 scripts/kernel-config |  3 ++-
 world | 69 ---
 2 files changed, 2 insertions(+), 70 deletions(-)

diff --git a/scripts/kernel-config b/scripts/kernel-config
index 355ffa8..049298e 100644
--- a/scripts/kernel-config
+++ b/scripts/kernel-config
@@ -10349,7 +10349,8 @@ CONFIG_DEBUG_INFO=y
 # CONFIG_DEBUG_INFO_SPLIT is not set
 # CONFIG_DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT is not set
 CONFIG_DEBUG_INFO_DWARF4=y
-CONFIG_DEBUG_INFO_BTF=y
+# CONFIG_DEBUG_INFO_DWARF5 is not set
+# CONFIG_DEBUG_INFO_BTF is not set
 # CONFIG_GDB_SCRIPTS is not set
 CONFIG_FRAME_WARN=2048
 CONFIG_STRIP_ASM_SYMS=y

diff --git a/world b/world
deleted file mode 100644
index 96294d7..000
--- a/world
+++ /dev/null
@@ -1,69 +0,0 @@
-app-admin/sudo
-app-admin/syslog-ng
-app-arch/file-roller
-app-editors/gedit
-app-editors/nano
-app-editors/vim
-app-misc/tmux
-app-portage/gentoolkit
-app-portage/grs
-app-portage/layman
-app-portage/repoman
-app-text/evince
-app-text/tree
-dev-lang/python
-dev-lang/tcl
-dev-libs/gmp
-dev-util/strace
-dev-vcs/git
-gnome-extra/gnome-system-monitor
-mail-client/claws-mail
-mail-mta/postfix
-media-gfx/eog
-media-gfx/gimp
-media-sound/alsa-utils
-media-video/mplayer
-media-video/smplayer
-net-analyzer/tcpdump
-net-dns/avahi
-net-dns/bind-tools
-net-fs/samba
-net-ftp/lftp
-net-irc/hexchat
-net-mail/dovecot
-net-misc/dhcpcd
-net-misc/ntp
-net-misc/rdate
-net-misc/tigervnc
-net-p2p/transmission
-net-print/cups
-net-vpn/tor
-net-wireless/wireless-tools
-net-wireless/wpa_supplicant
-sys-apps/dbus
-sys-apps/elfix
-sys-apps/gradm
-sys-apps/less
-sys-apps/paxctl
-sys-apps/pciutils
-sys-block/parted
-sys-boot/grub
-sys-boot/lilo
-sys-devel/gdb
-sys-fs/cryptsetup
-sys-kernel/genkernel
-sys-kernel/linux-firmware
-sys-libs/argp-standalone
-sys-libs/cracklib
-sys-libs/db
-sys-libs/gdbm
-sys-process/fcron
-sys-process/lsof
-x11-base/xorg-server
-x11-misc/slim
-x11-terms/xfce4-terminal
-x11-terms/xterm
-xfce-base/xfce4-appfinder
-xfce-base/xfce4-meta
-xfce-extra/thunar-archive-plugin
-xfce-extra/thunar-shares-plugin



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

2022-07-20 Thread Sam James
commit: 4b2b3633e83f07ced3a4a647b9c2ce05d8b0c729
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:45:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:49:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4b2b3633

www-client/chromium: add 104.0.5112.57

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

 www-client/chromium/Manifest  |1 +
 www-client/chromium/chromium-104.0.5112.57.ebuild | 1193 +
 2 files changed, 1194 insertions(+)

diff --git a/www-client/chromium/Manifest b/www-client/chromium/Manifest
index 2e35755a8b77..431429d63b84 100644
--- a/www-client/chromium/Manifest
+++ b/www-client/chromium/Manifest
@@ -4,4 +4,5 @@ DIST chromium-103.0.5060.134.tar.xz 1488286096 BLAKE2B 
5750317f9998fa42d01a245ce
 DIST chromium-104-patchset-2.tar.xz 6168 BLAKE2B 
57e9f2090315d2fa9baa0d285e40fd7809b35a897fba7684672d04850c2b59ea1bc11383654a8178ece2d4baa9bb2e248898d2435618b9e8a995461d6e92ac53
 SHA512 
f23effc604051c18acfad3bfb974efd4aa675b84135f4eb95e0dd97261dcc9099f283a8015854c375499370f4155bb9fad51fca59555ec2f41f2d7ab90be7208
 DIST chromium-104.0.5112.12.tar.xz 1482002228 BLAKE2B 
128b711ff49b7c1155568d00bc4d8a1aba4ff8f61043560a7e771be80f5a3af9ca20b1eaf5ae7fb1034a13a32c3bc6d41e03ee82e70aae392abce504c772936c
 SHA512 
058fb4b1016225fd8a10f7b4693207cca5fdb7aa2d8d0563cb597fb886472ab475e69b6c5fe1e5b7188a7cef6583dd454f45b3fec07be8b4924454a0eb379ba6
 DIST chromium-104.0.5112.48.tar.xz 1509278672 BLAKE2B 
74f667f85bbe992969fc70320217eeb64fe7ba4cef783bfe4b9e82b08b7fc1411ec37ccd57543354009fa09b071b4a969840f2e8eaf257d1841d1a0ad74c84b3
 SHA512 
7cd51c476bd55abd430863435747c6919e7d2f335e32003e19837a9302b506f1d430364eb5b1efcdd175a909cc419c578fb41f32413199260e92437aebd0502f
+DIST chromium-104.0.5112.57.tar.xz 1509289272 BLAKE2B 
d9b7be2cf55c34d244f11232f6471599e35bd107b44a1ee9c37a90a9148048ea5a6959066cbd822e3b3f96b3d388ebf16033dabf560749753f1fc3e9863158da
 SHA512 
4d6426475d9af5f6d99c83eb8e99ac27ca8305e367fb5feb0617bc51dc66146d72c41bcbf342988d76f3b430518c30a2037adedf5da0289a9b12c16e8cd926a4
 DIST chromium-profiler-0.1.tar 269066240 BLAKE2B 
6897387b63ff9a724b67f2e8799fe803dc75da376da809e752d19d6f5cf98bd84ac24161d07ac4a967577279e9ad5a8a46f0825332a7ee933a27693d6dc95611
 SHA512 
3fb6132599d28455d1b5c04d856ea7623e49b0b0b96f021c31d0952c4ba57d69d0a1cae6f0b91470a235221c89cc0d3bb38303ff02594ed0739712e6e2f8dbcc

diff --git a/www-client/chromium/chromium-104.0.5112.57.ebuild 
b/www-client/chromium/chromium-104.0.5112.57.ebuild
new file mode 100644
index ..c7f5e104a472
--- /dev/null
+++ b/www-client/chromium/chromium-104.0.5112.57.ebuild
@@ -0,0 +1,1193 @@
+# Copyright 2009-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="xml"
+LLVM_MAX_SLOT=14
+
+CHROMIUM_LANGS="af am ar bg bn ca cs da de el en-GB es es-419 et fa fi fil fr 
gu he
+   hi hr hu id it ja kn ko lt lv ml mr ms nb nl pl pt-BR pt-PT ro ru sk sl 
sr
+   sv sw ta te th tr uk ur vi zh-CN zh-TW"
+
+VIRTUALX_REQUIRED="pgo"
+
+inherit check-reqs chromium-2 desktop flag-o-matic llvm ninja-utils pax-utils 
python-any-r1 readme.gentoo-r1 toolchain-funcs virtualx xdg-utils
+
+DESCRIPTION="Open-source version of Google Chrome web browser"
+HOMEPAGE="https://chromium.org/;
+PATCHSET="2"
+PATCHSET_NAME="chromium-$(ver_cut 1)-patchset-${PATCHSET}"
+SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}.tar.xz
+   
https://github.com/stha09/chromium-patches/releases/download/${PATCHSET_NAME}/${PATCHSET_NAME}.tar.xz
+   pgo? ( https://blackhole.sk/~kabel/src/chromium-profiler-0.1.tar )"
+
+LICENSE="BSD"
+SLOT="0/beta"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+X component-build cups cpu_flags_arm_neon debug gtk4 +hangouts headless 
+js-type-check kerberos libcxx lto +official pgo pic +proprietary-codecs 
pulseaudio screencast selinux +suid +system-ffmpeg +system-harfbuzz +system-icu 
+system-png vaapi wayland widevine"
+REQUIRED_USE="
+   component-build? ( !suid !libcxx )
+   screencast? ( wayland )
+   !headless? ( || ( X wayland ) )
+   pgo? ( X !wayland )
+"
+
+COMMON_X_DEPEND="
+   x11-libs/libXcomposite:=
+   x11-libs/libXcursor:=
+   x11-libs/libXdamage:=
+   x11-libs/libXfixes:=
+   >=x11-libs/libXi-1.6.0:=
+   x11-libs/libXrandr:=
+   x11-libs/libXrender:=
+   x11-libs/libXtst:=
+   x11-libs/libxshmfence:=
+"
+
+COMMON_SNAPSHOT_DEPEND="
+   system-icu? ( >=dev-libs/icu-71.1:= )
+   >=dev-libs/libxml2-2.9.4-r3:=[icu]
+   dev-libs/nspr:=
+   >=dev-libs/nss-3.26:=
+   !libcxx? ( >=dev-libs/re2-0.2019.08.01:= )
+   dev-libs/libxslt:=
+   media-libs/fontconfig:=
+   >=media-libs/freetype-2.11.0-r1:=
+   system-harfbuzz? ( >=media-libs/harfbuzz-3:0=[icu(-)] )
+   media-libs/libjpeg-turbo:=
+   system-png? ( media-libs/libpng:=[-apng] )
+   

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

2022-07-20 Thread Sam James
commit: 6bdf02fdebd64ac228fbb47addf45a45080e0b74
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:29:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:29:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6bdf02fd

dev-libs/libzip: Stabilize 1.9.2 hppa, #856823

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

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

diff --git a/dev-libs/libzip/libzip-1.9.2.ebuild 
b/dev-libs/libzip/libzip-1.9.2.ebuild
index 455be6358249..0212f9c81975 100644
--- a/dev-libs/libzip/libzip-1.9.2.ebuild
+++ b/dev-libs/libzip/libzip-1.9.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.nih.at/libzip/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0/5"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="bzip2 gnutls lzma mbedtls ssl static-libs test tools zstd"
 REQUIRED_USE="test? ( tools )"
 



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

2022-07-20 Thread Sam James
commit: 1e3aeff22c8c5f600344571e27f239701c5364fa
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:25:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:25:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e3aeff2

dev-libs/libzip: Stabilize 1.9.2 ppc, #856823

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

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

diff --git a/dev-libs/libzip/libzip-1.9.2.ebuild 
b/dev-libs/libzip/libzip-1.9.2.ebuild
index 20517344615c..5773e2fc9290 100644
--- a/dev-libs/libzip/libzip-1.9.2.ebuild
+++ b/dev-libs/libzip/libzip-1.9.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.nih.at/libzip/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0/5"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="bzip2 gnutls lzma mbedtls ssl static-libs test tools zstd"
 REQUIRED_USE="test? ( tools )"
 



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

2022-07-20 Thread Sam James
commit: f08c9efcfc19eebb70f85c9542df6fa0d10a788c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:25:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:25:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f08c9efc

dev-libs/libzip: Stabilize 1.9.2 ppc64, #856823

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

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

diff --git a/dev-libs/libzip/libzip-1.9.2.ebuild 
b/dev-libs/libzip/libzip-1.9.2.ebuild
index 5773e2fc9290..455be6358249 100644
--- a/dev-libs/libzip/libzip-1.9.2.ebuild
+++ b/dev-libs/libzip/libzip-1.9.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://www.nih.at/libzip/${P}.tar.xz;
 
 LICENSE="BSD"
 SLOT="0/5"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ~ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~sparc ~x86 ~amd64-linux ~x86-linux ~x64-macos"
 IUSE="bzip2 gnutls lzma mbedtls ssl static-libs test tools zstd"
 REQUIRED_USE="test? ( tools )"
 



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

2022-07-20 Thread Sam James
commit: 08d0fa5976e7e4bed71f77495e766ea7e9f7698b
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:16:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:16:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=08d0fa59

media-libs/libdc1394: Stabilize 2.2.6 x86, #833740

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

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

diff --git a/media-libs/libdc1394/libdc1394-2.2.6.ebuild 
b/media-libs/libdc1394/libdc1394-2.2.6.ebuild
index 63af5aa285cb..dceac3705bf8 100644
--- a/media-libs/libdc1394/libdc1394-2.2.6.ebuild
+++ b/media-libs/libdc1394/libdc1394-2.2.6.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz
 
 LICENSE="LGPL-2.1"
 SLOT="2/25"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86"
 IUSE="doc static-libs"
 
 RDEPEND="



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

2022-07-20 Thread Ionen Wolkens
commit: 1116a3506008948831a89beee42095efc0a0bd61
Author: Ionen Wolkens  gentoo  org>
AuthorDate: Thu Jul 21 00:11:26 2022 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Jul 21 00:14:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1116a350

dev-util/maturin: disable rustls on arches where ring is broken

Upstream already disables for some but this doesn't
carry over to tests.

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

 dev-util/maturin/maturin-0.13.0.ebuild | 13 +
 1 file changed, 13 insertions(+)

diff --git a/dev-util/maturin/maturin-0.13.0.ebuild 
b/dev-util/maturin/maturin-0.13.0.ebuild
index b02807a0ef99..64d1038971fb 100644
--- a/dev-util/maturin/maturin-0.13.0.ebuild
+++ b/dev-util/maturin/maturin-0.13.0.ebuild
@@ -381,6 +381,19 @@ src_prepare() {
use !debug || sed -i "s/^cargo_args = \[/&'--profile','dev',/" setup.py 
|| die
 
filter-lto # undefined references with ring crate
+
+   # ensure rustls is disabled on arches where ring crate is problematic,
+   # keep in sync with src_configure below (bug #859577)
+   if use ppc64 || use s390; then
+   sed -i '/^if platform.machine/s/^if/if True or/' setup.py || die
+   fi
+}
+
+src_configure() {
+   if use ppc64 || use s390; then
+   local myfeatures=( upload log human-panic ) # sync with setup.py
+   cargo_src_configure --no-default-features
+   fi
 }
 
 python_compile_all() {



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

2022-07-20 Thread Sam James
commit: 4f58bf5ecec0ef1ff4018d909884eb016565
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:02 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:02 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4f58bf5e

net-libs/libnma: Stabilize 1.8.40 ppc, #853958

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

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

diff --git a/net-libs/libnma/libnma-1.8.40.ebuild 
b/net-libs/libnma/libnma-1.8.40.ebuild
index ecc2782a1c42..0809254e3bec 100644
--- a/net-libs/libnma/libnma-1.8.40.ebuild
+++ b/net-libs/libnma/libnma-1.8.40.ebuild
@@ -13,7 +13,7 @@ SLOT="0"
 # pkcs11 default enabled as it's a small dep often already present by libnma 
users, and it was default enabled as IUSE=+gcr in nm-applet before
 IUSE="gtk-doc +introspection +pkcs11 vala"
 REQUIRED_USE="vala? ( introspection )"
-KEYWORDS="amd64 arm arm64 ~ia64 ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ppc ppc64 ~riscv ~sparc x86"
 
 DEPEND="
>=gui-libs/gtk-4.0:4



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

2022-07-20 Thread Sam James
commit: 3f14026802e3e50dfc5d51485cd1e36f0ede5f44
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f140268

net-misc/networkmanager: Stabilize 1.38.2 ppc, #853958

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

 net-misc/networkmanager/networkmanager-1.38.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/networkmanager/networkmanager-1.38.2.ebuild 
b/net-misc/networkmanager/networkmanager-1.38.2.ebuild
index 7e73e5df35c6..697765c019e4 100644
--- a/net-misc/networkmanager/networkmanager-1.38.2.ebuild
+++ b/net-misc/networkmanager/networkmanager-1.38.2.ebuild
@@ -29,7 +29,7 @@ REQUIRED_USE="
?? ( syslog systemd )
 "
 
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
 
 COMMON_DEPEND="
sys-apps/util-linux[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: net-misc/mobile-broadband-provider-info/

2022-07-20 Thread Sam James
commit: f7c2c37477065607524835ffe943fc56de7e4874
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f7c2c374

net-misc/mobile-broadband-provider-info: Stabilize 20220511 ppc, #853958

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

 .../mobile-broadband-provider-info-20220511.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20220511.ebuild
 
b/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20220511.ebuild
index 96121672a7b9..c852b0dcbc9a 100644
--- 
a/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20220511.ebuild
+++ 
b/net-misc/mobile-broadband-provider-info/mobile-broadband-provider-info-20220511.ebuild
@@ -10,7 +10,7 @@ 
HOMEPAGE="https://wiki.gnome.org/Projects/NetworkManager/MobileBroadband;
 
 LICENSE="CC-PD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv sparc 
x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-07-20 Thread Sam James
commit: 1e1fccf00f5e44bc257d561da6e159f0dd17c2c3
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:03 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e1fccf0

net-libs/sofia-sip: Stabilize 1.13.8 ppc, #853958

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

 net-libs/sofia-sip/sofia-sip-1.13.8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/sofia-sip/sofia-sip-1.13.8.ebuild 
b/net-libs/sofia-sip/sofia-sip-1.13.8.ebuild
index 931af5ce0497..e3653d9e6c32 100644
--- a/net-libs/sofia-sip/sofia-sip-1.13.8.ebuild
+++ b/net-libs/sofia-sip/sofia-sip-1.13.8.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/freeswitch/${PN}/archive/refs/tags/v${PV}.tar.gz ->
 
 LICENSE="LGPL-2.1+ BSD public-domain" # See COPYRIGHT
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ~ppc ~ppc64 sparc x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm arm64 ~ia64 ppc ~ppc64 sparc x86 ~x86-linux"
 IUSE="ssl test"
 RESTRICT="!test? ( test )"
 



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

2022-07-20 Thread Sam James
commit: 607469b38eecdf66fb058da483b285f0afe0074f
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:03 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:03 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607469b3

sys-apps/bubblewrap: Stabilize 0.6.2 ppc, #853958

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

 sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild 
b/sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild
index 92cde53fde67..a9f2860b3fd1 100644
--- a/sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild
+++ b/sys-apps/bubblewrap/bubblewrap-0.6.2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/containers/${PN}/releases/download/v${PV}/${P}.tar.x
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~loong ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ~loong ppc ppc64 ~riscv x86"
 IUSE="selinux +suid"
 
 RDEPEND="



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

2022-07-20 Thread Sam James
commit: b9b290cf183d5694ee663ea592c13565603c3a46
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9b290cf

net-libs/libnice: Stabilize 0.1.19 ppc, #853958

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

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

diff --git a/net-libs/libnice/libnice-0.1.19.ebuild 
b/net-libs/libnice/libnice-0.1.19.ebuild
index 2ce8b73a1e54..0fbb4c68460e 100644
--- a/net-libs/libnice/libnice-0.1.19.ebuild
+++ b/net-libs/libnice/libnice-0.1.19.ebuild
@@ -10,7 +10,7 @@ SRC_URI="https://nice.freedesktop.org/releases/${P}.tar.gz;
 
 LICENSE="|| ( MPL-1.1 LGPL-2.1 )"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
 IUSE="+gnutls gtk-doc +introspection +upnp"
 
 RDEPEND="



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

2022-07-20 Thread Sam James
commit: 07cb18614600dc61b0852700de28d109afc800ab
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07cb1861

net-ftp/gftp: Stabilize 2.9.1b ppc, #853958

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

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

diff --git a/net-ftp/gftp/gftp-2.9.1b.ebuild b/net-ftp/gftp/gftp-2.9.1b.ebuild
index 0e1764a2b2a4..331582efd380 100644
--- a/net-ftp/gftp/gftp-2.9.1b.ebuild
+++ b/net-ftp/gftp/gftp-2.9.1b.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://github.com/masneyb/gftp;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm64 ~ppc ppc64 ~riscv sparc x86"
+KEYWORDS="~alpha amd64 ~arm64 ppc ppc64 ~riscv sparc x86"
 IUSE="gtk ssl"
 
 RDEPEND="



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

2022-07-20 Thread Sam James
commit: fd704627a05d7d62e8499500bc44755d5fe29063
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd704627

sys-block/gparted: Stabilize 1.4.0-r1 ppc, #853958

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

 sys-block/gparted/gparted-1.4.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/gparted/gparted-1.4.0-r1.ebuild 
b/sys-block/gparted/gparted-1.4.0-r1.ebuild
index 2131845ad18d..4afb483a97e0 100644
--- a/sys-block/gparted/gparted-1.4.0-r1.ebuild
+++ b/sys-block/gparted/gparted-1.4.0-r1.ebuild
@@ -10,7 +10,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-2+ FDL-1.2+"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86"
 IUSE="kde policykit wayland"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: sys-apps/xdg-dbus-proxy/

2022-07-20 Thread Sam James
commit: d3e37def7505575be31935d1a487e302f485046f
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:13:04 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:13:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d3e37def

sys-apps/xdg-dbus-proxy: Stabilize 0.1.4 ppc, #853958

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

 sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild 
b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild
index d97687aeeeda..01cad990b64b 100644
--- a/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild
+++ b/sys-apps/xdg-dbus-proxy/xdg-dbus-proxy-0.1.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/flatpak/${PN}/releases/download/${PV}/${P}.tar.xz;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~ppc ppc64 ~riscv x86"
+KEYWORDS="amd64 arm arm64 ppc ppc64 ~riscv x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2022-07-20 Thread Sam James
commit: 1bcdbfca7c8bc6b46048c2cc0a58910713b32d06
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:59 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:59 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bcdbfca

media-plugins/gst-plugins-libnice: Stabilize 0.1.19 ppc, #853958

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

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

diff --git 
a/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.19.ebuild 
b/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.19.ebuild
index d8dd5cfcca35..b133f3a69125 100644
--- a/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.19.ebuild
+++ b/media-plugins/gst-plugins-libnice/gst-plugins-libnice-0.1.19.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://nice.freedesktop.org/releases/${MY_P}.tar.gz;
 
 LICENSE="|| ( MPL-1.1 LGPL-2.1 )"
 SLOT="1.0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos"
 IUSE=""
 
 RDEPEND="



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

2022-07-20 Thread Sam James
commit: e96764593ee5ec15f2e6285a7c92594cb471fffc
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9676459

app-text/iso-codes: Stabilize 4.10.0 ppc, #853958

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

 app-text/iso-codes/iso-codes-4.10.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/iso-codes/iso-codes-4.10.0.ebuild 
b/app-text/iso-codes/iso-codes-4.10.0.ebuild
index 30c1a123904d..ea78d3608c3c 100644
--- a/app-text/iso-codes/iso-codes-4.10.0.ebuild
+++ b/app-text/iso-codes/iso-codes-4.10.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://salsa.debian.org/${PN}-team/${PN}/-/archive/v${PV}/${PN}-v${PV}
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ~ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~mips ppc ppc64 ~riscv 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x86-solaris"
 
 BDEPEND="${PYTHON_DEPS}
sys-devel/gettext



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

2022-07-20 Thread Sam James
commit: ef128d8029d4d3b38de313966bce9f5e8b06f39b
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef128d80

gui-libs/gtk: Stabilize 4.6.5 ppc, #853958

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

 gui-libs/gtk/gtk-4.6.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gui-libs/gtk/gtk-4.6.5.ebuild b/gui-libs/gtk/gtk-4.6.5.ebuild
index ab3514d58d06..08ff61a93cb5 100644
--- a/gui-libs/gtk/gtk-4.6.5.ebuild
+++ b/gui-libs/gtk/gtk-4.6.5.ebuild
@@ -17,7 +17,7 @@ REQUIRED_USE="
test? ( introspection )
 "
 
-KEYWORDS="amd64 arm arm64 ~ia64 ~loong ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="amd64 arm arm64 ~ia64 ~loong ppc ppc64 ~riscv ~sparc x86"
 
 COMMON_DEPEND="
>=dev-libs/fribidi-0.19.7



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gnome-keyring/

2022-07-20 Thread Sam James
commit: 1b42a8fd87166afc3e0cddc2ff5fea883dba5c0e
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b42a8fd

gnome-base/gnome-keyring: Stabilize 42.1 ppc, #853958

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

 gnome-base/gnome-keyring/gnome-keyring-42.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/gnome-keyring/gnome-keyring-42.1.ebuild 
b/gnome-base/gnome-keyring/gnome-keyring-42.1.ebuild
index 1b744637b9b1..1d0950fba608 100644
--- a/gnome-base/gnome-keyring/gnome-keyring-42.1.ebuild
+++ b/gnome-base/gnome-keyring/gnome-keyring-42.1.ebuild
@@ -13,7 +13,7 @@ LICENSE="GPL-2+ LGPL-2+"
 SLOT="0"
 IUSE="pam selinux +ssh-agent systemd test"
 RESTRICT="!test? ( test )"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ~ppc ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
 
 # Replace gkd gpg-agent with pinentry[gnome-keyring] one, bug #547456
 RDEPEND="



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

2022-07-20 Thread Sam James
commit: 588eb50249014cc3b878ffd68229f4143a124799
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=588eb502

dev-libs/libinput: Stabilize 1.21.0-r1 ppc, #853958

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

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

diff --git a/dev-libs/libinput/libinput-1.21.0-r1.ebuild 
b/dev-libs/libinput/libinput-1.21.0-r1.ebuild
index 700a7b3ca189..6663d8303e6a 100644
--- a/dev-libs/libinput/libinput-1.21.0-r1.ebuild
+++ b/dev-libs/libinput/libinput-1.21.0-r1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz;
 LICENSE="MIT"
 SLOT="0/10"
 [[ "$(ver_cut 3)" -gt 900 ]] || \
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ~ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~loong ~m68k ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="doc input_devices_wacom test"
 RESTRICT="!test? ( test )"
 



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

2022-07-20 Thread Sam James
commit: 853fdd0526147643755a8c749abe0f39dc6c5abb
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=853fdd05

app-misc/geoclue: Stabilize 2.6.0 ppc, #853958

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

 app-misc/geoclue/geoclue-2.6.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/geoclue/geoclue-2.6.0.ebuild 
b/app-misc/geoclue/geoclue-2.6.0.ebuild
index 15e859fd746b..7f5425d4334e 100644
--- a/app-misc/geoclue/geoclue-2.6.0.ebuild
+++ b/app-misc/geoclue/geoclue-2.6.0.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://gitlab.freedesktop.org/geoclue/${PN}/-/archive/${PV}/${P}.tar.b
 
 LICENSE="LGPL-2.1+ GPL-2+"
 SLOT="2.0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ~ppc ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~mips ppc ppc64 ~riscv ~sparc x86"
 IUSE="+introspection gtk-doc modemmanager vala zeroconf"
 REQUIRED_USE="vala? ( introspection )"
 



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

2022-07-20 Thread Sam James
commit: 2531e88e6c6b5f99d38a91d23fef6073a0cae37c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:56 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:56 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2531e88e

dev-util/umockdev: Stabilize 0.17.13 ppc, #853958

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

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

diff --git a/dev-util/umockdev/umockdev-0.17.13.ebuild 
b/dev-util/umockdev/umockdev-0.17.13.ebuild
index 8107b2e6cb12..828c98c13e9e 100644
--- a/dev-util/umockdev/umockdev-0.17.13.ebuild
+++ b/dev-util/umockdev/umockdev-0.17.13.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/martinpitt/umockdev/releases/download/${PV}/${P}.tar
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ~ppc ppc64 ~riscv ~s390 sparc x86"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~loong ppc ppc64 ~riscv ~s390 sparc x86"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: gnome-base/gvfs/

2022-07-20 Thread Sam James
commit: b8e07fd3c5873a947bbb7baa935b335ba1f8bc75
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8e07fd3

gnome-base/gvfs: Stabilize 1.50.2 ppc, #853958

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

 gnome-base/gvfs/gvfs-1.50.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-base/gvfs/gvfs-1.50.2.ebuild 
b/gnome-base/gvfs/gvfs-1.50.2.ebuild
index 96bf0d8ee57f..4d4fa0a03a8f 100644
--- a/gnome-base/gvfs/gvfs-1.50.2.ebuild
+++ b/gnome-base/gvfs/gvfs-1.50.2.ebuild
@@ -23,7 +23,7 @@ REQUIRED_USE="
mtp? ( udev )
udisks? ( udev )
 "
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ~ppc ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
 
 RDEPEND="
>=dev-libs/glib-2.70.0:2



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

2022-07-20 Thread Sam James
commit: 1e3547d3a4db3c941ec02db13421aaff4eeab57d
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:55 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:55 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e3547d3

dev-libs/gmime: Stabilize 3.2.12 ppc, #853958

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

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

diff --git a/dev-libs/gmime/gmime-3.2.12.ebuild 
b/dev-libs/gmime/gmime-3.2.12.ebuild
index 4f07cc0bbcc9..9609447b48d4 100644
--- a/dev-libs/gmime/gmime-3.2.12.ebuild
+++ b/dev-libs/gmime/gmime-3.2.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/jstedfast/${PN}/releases/download/${PV}/${P}.tar.xz;
 
 SLOT="3.0"
 LICENSE="LGPL-2.1+"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 IUSE="crypt doc idn test +vala"
 RESTRICT="!test? ( test )"
 



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

2022-07-20 Thread Sam James
commit: b2265d2e329f0c0c27b4168562420845b4224dc4
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2265d2e

media-libs/harfbuzz: Stabilize 4.3.0 ppc, #853958

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

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

diff --git a/media-libs/harfbuzz/harfbuzz-4.3.0.ebuild 
b/media-libs/harfbuzz/harfbuzz-4.3.0.ebuild
index 70031eadc134..52a16186c47d 100644
--- a/media-libs/harfbuzz/harfbuzz-4.3.0.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-4.3.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc 
ppc64 ~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



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

2022-07-20 Thread Sam James
commit: 8b451a82216dc59d46aa5ee3aed7d09bb4fe139a
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:53 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8b451a82

x11-libs/libnotify: Stabilize 0.7.12 ppc, #853958

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

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

diff --git a/x11-libs/libnotify/libnotify-0.7.12.ebuild 
b/x11-libs/libnotify/libnotify-0.7.12.ebuild
index eb43c6bbedce..f538d6ab8280 100644
--- a/x11-libs/libnotify/libnotify-0.7.12.ebuild
+++ b/x11-libs/libnotify/libnotify-0.7.12.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/libnotify;
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ~ppc ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 IUSE="gtk-doc +introspection test"
 RESTRICT="!test? ( test )"
 



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

2022-07-20 Thread Sam James
commit: 164942e2bf48c4b97255e2e582b13a6fe8da65f2
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=164942e2

dev-util/glib-utils: Stabilize 2.72.2 ppc, #853958

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

 dev-util/glib-utils/glib-utils-2.72.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/glib-utils/glib-utils-2.72.2.ebuild 
b/dev-util/glib-utils/glib-utils-2.72.2.ebuild
index 655d697fb1d9..fb40867171aa 100644
--- a/dev-util/glib-utils/glib-utils-2.72.2.ebuild
+++ b/dev-util/glib-utils/glib-utils-2.72.2.ebuild
@@ -14,7 +14,7 @@ LICENSE="LGPL-2.1+"
 SLOT="0" # /usr/bin utilities that can't be parallel installed by their nature
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris ~x86-winnt"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"



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

2022-07-20 Thread Sam James
commit: f78b1586a299a3f1e9cdd51eba1d0beffcbcce7e
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f78b1586

dev-util/gdbus-codegen: Stabilize 2.72.2 ppc, #853958

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

 dev-util/gdbus-codegen/gdbus-codegen-2.72.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/gdbus-codegen/gdbus-codegen-2.72.2.ebuild 
b/dev-util/gdbus-codegen/gdbus-codegen-2.72.2.ebuild
index 4c1548972dbd..111476eb0a49 100644
--- a/dev-util/gdbus-codegen/gdbus-codegen-2.72.2.ebuild
+++ b/dev-util/gdbus-codegen/gdbus-codegen-2.72.2.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://www.gtk.org/;
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 RDEPEND="${PYTHON_DEPS}"
 DEPEND="${RDEPEND}"



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

2022-07-20 Thread Sam James
commit: c6e18ea11d3a6d030a090fce6bcfe8f07e47e3b8
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:52 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:52 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6e18ea1

app-editors/ghex: Stabilize 42.3 ppc, #853958

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

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

diff --git a/app-editors/ghex/ghex-42.3.ebuild 
b/app-editors/ghex/ghex-42.3.ebuild
index 3d897b3769b9..af0a9aa90029 100644
--- a/app-editors/ghex/ghex-42.3.ebuild
+++ b/app-editors/ghex/ghex-42.3.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://gitlab.gnome.org/GNOME/ghex.git;
SRC_URI=""
 else
-   KEYWORDS="amd64 ~arm ~ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="amd64 ~arm ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
 fi
 
 LICENSE="GPL-2+ FDL-1.1+"



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

2022-07-20 Thread Sam James
commit: 5b9ae6d30c521e499c10120fecf3eb6310a8ccfb
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:50 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b9ae6d3

app-crypt/gcr: Stabilize 3.41.0 ppc, #853958

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

 app-crypt/gcr/gcr-3.41.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/gcr/gcr-3.41.0.ebuild b/app-crypt/gcr/gcr-3.41.0.ebuild
index c51ce5fe27da..94edd14c2573 100644
--- a/app-crypt/gcr/gcr-3.41.0.ebuild
+++ b/app-crypt/gcr/gcr-3.41.0.ebuild
@@ -16,7 +16,7 @@ IUSE="gtk gtk-doc +introspection systemd test +vala"
 REQUIRED_USE="vala? ( introspection )"
 RESTRICT="!test? ( test )"
 
-KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ~ppc ppc64 ~riscv sparc 
x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~ia64 ~loong ~mips ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~sparc-solaris ~x86-solaris"
 
 DEPEND="
>=dev-libs/glib-2.44.0:2



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

2022-07-20 Thread Sam James
commit: c2bf2597d7d3f3686061bacb52903eacd5ccc466
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:12:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:12:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c2bf2597

dev-libs/glib: Stabilize 2.72.2 ppc, #853958

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

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

diff --git a/dev-libs/glib/glib-2.72.2.ebuild b/dev-libs/glib/glib-2.72.2.ebuild
index 3a5fb0f84273..68cfcda45393 100644
--- a/dev-libs/glib/glib-2.72.2.ebuild
+++ b/dev-libs/glib/glib-2.72.2.ebuild
@@ -16,7 +16,7 @@ IUSE="dbus debug +elf fam gtk-doc +mime selinux static-libs 
sysprof systemtap te
 RESTRICT="!test? ( test )"
 REQUIRED_USE="gtk-doc? ( test )" # Bug #777636
 
-KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ~ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~loong ~m68k ~mips ppc ppc64 
~riscv ~s390 sparc x86 ~amd64-linux ~x86-linux"
 
 # * elfutils (via libelf) does not build on Windows. gresources are not 
embedded
 # within ELF binaries on that platform anyway and inspecting ELF binaries from



[gentoo-commits] proj/musl:master commit in: .github/workflows/

2022-07-20 Thread Sam James
commit: e25dc84347e444f74432d9c96a4b205acfbeb9e5
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:09:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:09:27 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=e25dc843

.github: drop deprecated repoman

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

 .github/workflows/repoman.yml | 34 --
 1 file changed, 34 deletions(-)

diff --git a/.github/workflows/repoman.yml b/.github/workflows/repoman.yml
deleted file mode 100644
index b6414409..
--- a/.github/workflows/repoman.yml
+++ /dev/null
@@ -1,34 +0,0 @@
-name: repoman
-
-on:
-  push:
-branches: [ master ]
-  pull_request:
-branches: [ master ]
-
-jobs:
-  build:
-runs-on: ubuntu-latest
-steps:
-- uses: actions/checkout@v2
-- name: Set up Python 3.9
-  uses: actions/setup-python@v2
-  with:
-python-version: 3.9
-- name: Setup repoman
-  run: |
-python -m pip install --upgrade pip
-pip install lxml pyyaml
-wget -qO - 
"https://github.com/gentoo/portage/archive/portage-3.0.22.tar.gz; | tar xz
-sudo groupadd -g 250 portage
-sudo useradd -g portage -d /var/tmp/portage -s /bin/false -u 250 
portage
-- name: Setup master gentoo repository
-  run: |
-sudo mkdir -p /var/db/repos/gentoo /etc/portage /var/cache/distfiles
-wget -qO - 
"https://github.com/gentoo-mirror/gentoo/archive/master.tar.gz; | sudo tar xz 
-C /var/db/repos/gentoo --strip-components=1
-sudo wget "https://www.gentoo.org/dtd/metadata.dtd; -O 
/var/cache/distfiles/metadata.dtd
-sudo wget 
"https://gitweb.gentoo.org/proj/portage.git/plain/cnf/repos.conf; -O 
/etc/portage/repos.conf
-sudo ln -s /var/db/repos/gentoo/profiles/default/linux/amd64/17.0/musl 
/etc/portage/make.profile
-- name: Test with repoman
-  run: |
-python3 portage-*/repoman/bin/repoman full -dx



[gentoo-commits] proj/musl:master commit in: app-emulation/qemu/

2022-07-20 Thread Sam James
commit: 87ec4c7859e6901342ac21aa74c6de985623801f
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:04:28 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:04:28 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=87ec4c78

app-emulation/qemu: fix fabric/infiniband dep

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

 app-emulation/qemu/{qemu-6.0.0-r54.ebuild => qemu-6.0.0-r55.ebuild} | 6 +-
 1 file changed, 1 insertion(+), 5 deletions(-)

diff --git a/app-emulation/qemu/qemu-6.0.0-r54.ebuild 
b/app-emulation/qemu/qemu-6.0.0-r55.ebuild
similarity index 99%
rename from app-emulation/qemu/qemu-6.0.0-r54.ebuild
rename to app-emulation/qemu/qemu-6.0.0-r55.ebuild
index 3e8e235a..ecfcef8f 100644
--- a/app-emulation/qemu/qemu-6.0.0-r54.ebuild
+++ b/app-emulation/qemu/qemu-6.0.0-r55.ebuild
@@ -160,11 +160,7 @@ SOFTMMU_TOOLS_DEPEND="
x11-libs/gtk+:3
vte? ( x11-libs/vte:2.91 )
)
-   infiniband? (
-   sys-fabric/libibumad:=[static-libs(+)]
-   sys-fabric/libibverbs:=[static-libs(+)]
-   sys-fabric/librdmacm:=[static-libs(+)]
-   )
+   infiniband? ( sys-cluster/rdma-core[static-libs(+)] )
iscsi? ( net-libs/libiscsi )
io-uring? ( sys-libs/liburing:=[static-libs(+)] )
jack? ( virtual/jack )



[gentoo-commits] proj/musl:master commit in: net-fs/nfs-utils/

2022-07-20 Thread Sam James
commit: 489e31e2948b443f7bb8bc08205be2dc2cfdb792
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:02:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:02:33 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=489e31e2

net-fs/nfs-utils: fix e2fsprogs dep

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

 .../nfs-utils/{nfs-utils-2.5.3-r1.ebuild => nfs-utils-2.5.3-r2.ebuild}  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/nfs-utils/nfs-utils-2.5.3-r1.ebuild 
b/net-fs/nfs-utils/nfs-utils-2.5.3-r2.ebuild
similarity index 99%
rename from net-fs/nfs-utils/nfs-utils-2.5.3-r1.ebuild
rename to net-fs/nfs-utils/nfs-utils-2.5.3-r2.ebuild
index 60ec5330..a256c9f1 100644
--- a/net-fs/nfs-utils/nfs-utils-2.5.3-r1.ebuild
+++ b/net-fs/nfs-utils/nfs-utils-2.5.3-r2.ebuild
@@ -32,7 +32,7 @@ DEPEND="
dev-libs/libxml2
net-libs/libtirpc:=
>=net-nds/rpcbind-0.2.4
-   sys-libs/e2fsprogs-libs
+   sys-fs/e2fsprogs
caps? ( sys-libs/libcap )
ldap? ( net-nds/openldap )
libmount? ( sys-apps/util-linux )



[gentoo-commits] proj/musl:master commit in: app-emulation/libvirt/

2022-07-20 Thread Sam James
commit: 5403db00dd522d1cf514f9609190605000116bc4
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:00:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:00:25 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=5403db00

app-emulation/libvirt: fix iptables dep

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

 .../libvirt/{libvirt-6.8.0-r2.ebuild => libvirt-6.8.0-r3.ebuild}| 2 +-
 .../libvirt/{libvirt-7.0.0-r1.ebuild => libvirt-7.0.0-r2.ebuild}| 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-emulation/libvirt/libvirt-6.8.0-r2.ebuild 
b/app-emulation/libvirt/libvirt-6.8.0-r3.ebuild
similarity index 99%
rename from app-emulation/libvirt/libvirt-6.8.0-r2.ebuild
rename to app-emulation/libvirt/libvirt-6.8.0-r3.ebuild
index bf4b9d6b..c542d7ad 100644
--- a/app-emulation/libvirt/libvirt-6.8.0-r2.ebuild
+++ b/app-emulation/libvirt/libvirt-6.8.0-r3.ebuild
@@ -104,7 +104,7 @@ RDEPEND="
virt-network? (
net-dns/dnsmasq[script]
net-firewall/ebtables
-   >=net-firewall/iptables-1.4.10[ipv6]
+   >=net-firewall/iptables-1.4.10[ipv6(+)]
net-misc/radvd
sys-apps/iproute2[-minimal]
)

diff --git a/app-emulation/libvirt/libvirt-7.0.0-r1.ebuild 
b/app-emulation/libvirt/libvirt-7.0.0-r2.ebuild
similarity index 99%
rename from app-emulation/libvirt/libvirt-7.0.0-r1.ebuild
rename to app-emulation/libvirt/libvirt-7.0.0-r2.ebuild
index 2370f97a..afbae9fc 100644
--- a/app-emulation/libvirt/libvirt-7.0.0-r1.ebuild
+++ b/app-emulation/libvirt/libvirt-7.0.0-r2.ebuild
@@ -106,7 +106,7 @@ RDEPEND="
virt-network? (
net-dns/dnsmasq[dhcp,ipv6,script]
net-firewall/ebtables
-   >=net-firewall/iptables-1.4.10[ipv6]
+   >=net-firewall/iptables-1.4.10[ipv6(+)]
net-misc/radvd
sys-apps/iproute2[-minimal]
)



[gentoo-commits] proj/musl:master commit in: app-emulation/libvirt/

2022-07-20 Thread Sam James
commit: c0c15311cb5f10a4ce9fa8a829b0644cd7a94081
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:00:48 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:00:48 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=c0c15311

app-emulation/libvirt: fix PkgMetadataXmlInvalidPkgRef

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

 app-emulation/libvirt/metadata.xml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-emulation/libvirt/metadata.xml 
b/app-emulation/libvirt/metadata.xml
index 5151b9df..a6995056 100644
--- a/app-emulation/libvirt/metadata.xml
+++ b/app-emulation/libvirt/metadata.xml
@@ -33,7 +33,7 @@



-   Support management of Linux Containers virtualisation 
(app-emulation/lxc)
+   Support management of Linux Containers virtualisation 
(app-containers/lxc)


Support management of OpenVZ virtualisation (openvz-sources)



[gentoo-commits] proj/musl:master commit in: sys-apps/policycoreutils/

2022-07-20 Thread Sam James
commit: f4ee0f494ea94849dc37674f1341c47b0d5a989c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:03:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:03:38 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=f4ee0f49

sys-apps/policycoreutils: fix ipy dep

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

 .../{policycoreutils-3.1-r1.ebuild => policycoreutils-3.1-r2.ebuild}| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/policycoreutils/policycoreutils-3.1-r1.ebuild 
b/sys-apps/policycoreutils/policycoreutils-3.1-r2.ebuild
similarity index 99%
rename from sys-apps/policycoreutils/policycoreutils-3.1-r1.ebuild
rename to sys-apps/policycoreutils/policycoreutils-3.1-r2.ebuild
index 174cea8a..04c73ff6 100644
--- a/sys-apps/policycoreutils/policycoreutils-3.1-r1.ebuild
+++ b/sys-apps/policycoreutils/policycoreutils-3.1-r2.ebuild
@@ -46,7 +46,7 @@ 
DEPEND=">=sys-libs/libselinux-${SELNX_VER}:=[python,${PYTHON_USEDEP}]
sys-libs/libcap-ng:=
>=sys-libs/libsepol-${SEPOL_VER}:=
>=app-admin/setools-4.2.0[${PYTHON_USEDEP}]
-   dev-python/ipy[${PYTHON_USEDEP}]
+   dev-python/IPy[${PYTHON_USEDEP}]
dbus? (
sys-apps/dbus
dev-libs/dbus-glib:=



[gentoo-commits] proj/musl:master commit in: net-fs/cifs-utils/

2022-07-20 Thread Sam James
commit: d0ec2d5fec7a5072b756ffefb73d85c53f319e58
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:03:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:03:07 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=d0ec2d5f

net-fs/cifs-utils: drop to ~ppc

Like in ::gentoo, because of sys-apps/keyutils

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

 net-fs/cifs-utils/cifs-utils-6.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-fs/cifs-utils/cifs-utils-6.7.ebuild 
b/net-fs/cifs-utils/cifs-utils-6.7.ebuild
index 7cea99b9..10890bb9 100644
--- a/net-fs/cifs-utils/cifs-utils-6.7.ebuild
+++ b/net-fs/cifs-utils/cifs-utils-6.7.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://ftp.samba.org/pub/linux-cifs/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~mips ppc x86"
+KEYWORDS="amd64 arm arm64 ~mips ~ppc x86"
 IUSE="+acl +ads +caps +caps-ng creds pam"
 
 RDEPEND="



[gentoo-commits] proj/musl:master commit in: net-libs/libnfsidmap/

2022-07-20 Thread Sam James
commit: 667a4b30b7676b23e3c686391680eb70d0f883ae
Author: Sam James  gentoo  org>
AuthorDate: Thu Jul 21 00:01:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jul 21 00:01:53 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=667a4b30

net-libs/libnfsidmap: s390 -> ~s390

s390 is pure ~arch

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

 net-libs/libnfsidmap/libnfsidmap-0.27-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/libnfsidmap/libnfsidmap-0.27-r1.ebuild 
b/net-libs/libnfsidmap/libnfsidmap-0.27-r1.ebuild
index 790deea6..d2f5bfe4 100644
--- a/net-libs/libnfsidmap/libnfsidmap-0.27-r1.ebuild
+++ b/net-libs/libnfsidmap/libnfsidmap-0.27-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://fedorapeople.org/~steved/${PN}/${PV}/${P}.tar.bz2;
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 s390 sparc 
x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 sparc 
x86"
 IUSE="ldap static-libs"
 
 DEPEND="ldap? ( net-nds/openldap )"



[gentoo-commits] proj/musl:master commit in: x11-apps/sessreg/files/, x11-apps/sessreg/

2022-07-20 Thread Sam James
commit: 3621965ceaa1d511e0fd20a02154d35faa07d920
Author: Alfred Persson Forsberg  catcream  org>
AuthorDate: Wed Jul 20 20:47:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 20 23:58:52 2022 +
URL:https://gitweb.gentoo.org/proj/musl.git/commit/?id=3621965c

x11-apps/sessreg: in tree version 1.1.2 works

It's merged upstream:
https://gitlab.freedesktop.org/xorg/app/sessreg/-/commits/sessreg-1.1.2 (Fix 
missing defines ...)
https://gitlab.freedesktop.org/xorg/app/sessreg/-/commit/5b403d124c32c20fddc73bc5ae3c7e1febdf1bc4

Signed-off-by: Alfred Persson Forsberg  catcream.org>
Closes: https://github.com/gentoo/musl/pull/464
Signed-off-by: Sam James  gentoo.org>

 x11-apps/sessreg/Manifest |  1 -
 .../files/sessreg-1.1.0-missing_path_wtmpx.patch  | 17 -
 x11-apps/sessreg/metadata.xml |  8 
 x11-apps/sessreg/sessreg-1.1.2.ebuild | 19 ---
 4 files changed, 45 deletions(-)

diff --git a/x11-apps/sessreg/Manifest b/x11-apps/sessreg/Manifest
deleted file mode 100644
index 932f4756..
--- a/x11-apps/sessreg/Manifest
+++ /dev/null
@@ -1 +0,0 @@
-DIST sessreg-1.1.2.tar.bz2 137612 BLAKE2B 
0fe6484b83255bc2b917645ea841ad43b927131a8ef3fa9a47e7864984259140579c462c8d03645928ffd4667e7c46f36c5eb1aa35ce916ab65126c55f6bdde1
 SHA512 
7e3c2bdcadb7133aace463b58d8c6108d315ec95d2a42509073eeddc7f02644092a4b3168bd3b426c041736a016291092e0bf8368acd620dbeff96d53d12f98c

diff --git a/x11-apps/sessreg/files/sessreg-1.1.0-missing_path_wtmpx.patch 
b/x11-apps/sessreg/files/sessreg-1.1.0-missing_path_wtmpx.patch
deleted file mode 100644
index 721891f9..
--- a/x11-apps/sessreg/files/sessreg-1.1.0-missing_path_wtmpx.patch
+++ /dev/null
@@ -1,17 +0,0 @@
-diff -Naur sessreg-1.1.0.orig/sessreg.h sessreg-1.1.0/sessreg.h
 sessreg-1.1.0.orig/sessreg.h   2015-01-20 05:00:27.0 +
-+++ sessreg-1.1.0/sessreg.h2016-02-23 11:54:42.05700 +
-@@ -103,6 +103,13 @@
- # define TTYS_FILE"/etc/ttys"
- #endif
- 
-+#ifndef _PATH_WTMPX
-+# define _PATH_WTMPX  _PATH_WTMP
-+#endif
-+#ifndef _PATH_UTMPX
-+# define _PATH_UTMPX  _PATH_UTMP
-+#endif
-+
- #ifndef WTMPX_FILE
- # define WTMPX_FILE   _PATH_WTMPX
- #endif

diff --git a/x11-apps/sessreg/metadata.xml b/x11-apps/sessreg/metadata.xml
deleted file mode 100644
index e943b72b..
--- a/x11-apps/sessreg/metadata.xml
+++ /dev/null
@@ -1,8 +0,0 @@
-
-http://www.gentoo.org/dtd/metadata.dtd;>
-
-
-   x...@gentoo.org
-   X11
-
-

diff --git a/x11-apps/sessreg/sessreg-1.1.2.ebuild 
b/x11-apps/sessreg/sessreg-1.1.2.ebuild
deleted file mode 100644
index dfd13883..
--- a/x11-apps/sessreg/sessreg-1.1.2.ebuild
+++ /dev/null
@@ -1,19 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit xorg-3
-
-DESCRIPTION="manage utmp/wtmp entries for non-init clients"
-
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86"
-IUSE=""
-
-RDEPEND=""
-DEPEND="${RDEPEND}
-   x11-base/xorg-proto"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.1.0-missing_path_wtmpx.patch
-)



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

2022-07-20 Thread Sam James
commit: 7603c56774a26b9468ce6ac152cfee9d175984c4
Author: Sam James  gentoo  org>
AuthorDate: Wed Jul 20 23:36:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 20 23:36:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7603c567

flag-o-matic.eclass: fix @DESCRIPTION tag

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

 eclass/flag-o-matic.eclass | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
index 503f23a141a1..b0c30f81c956 100644
--- a/eclass/flag-o-matic.eclass
+++ b/eclass/flag-o-matic.eclass
@@ -957,7 +957,8 @@ _test-compile-PROG() {
 
 # @FUNCTION: append-atomic-flags
 # @USAGE: [bytes]
-# @DESCRIPTION: Attempts to detect if appending -latomic is required to use
+# @DESCRIPTION:
+# Attempts to detect if appending -latomic is required to use
 # a specific-sized atomic intrinsic, and if so, appends it.  If the bytesize
 # is not specified, then check the four most common byte sizes (1, 2, 4, 8).
 # >=16-byte atomics are not included in this default set and must be explicitly



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

2022-07-20 Thread Sam James
commit: 29cf769f4de6550851e74829c2011c2e23554cc7
Author: matoro  users  noreply  github  com>
AuthorDate: Sun Jul 10 22:41:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Jul 20 23:35:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=29cf769f

flag-o-matic.eclass: implement append-atomic-flags

My take on implementing bug 820101 as conservatively as possible. This
will append -latomic only when absolutely necessary (even though it's
probably not required to be that conservative due to our use of
--as-needed).

This will take flags into account when testing as well. For example, if
you compile with -march=i386, this would require linking libatomic even
if the same toolchain with a higher -march level would not require it.
So rebuilding the same package with the same flags may change whether
-latomic is linked at build time if the CFLAGS change. Another instance
might be switching from GCC to clang - the former requires explicitly
linking -latomic, while the latter does not even HAVE libatomic (see bug
820095) as all atomic intrinsics are built-in internally. This function
would safely detect this and not append -latomic.

There is an optional parameter [bytes]. You can use this if you want to
be specific about what size atomic support is required. For example,
there are several platforms like MIPS where the 32-bit version has 1-,
2-, and 4-byte atomics builtin but requires libatomic linkage for 8-byte
atomics. If your program only requires, say, 4-byte atomics, you can use
append-atomic-flags 4 and this will then not attempt to link libatomic
on 32-bit MIPS.

I tested using this to solve bug 688574 on 32-bit SPARC.

Bug: https://bugs.gentoo.org/688574
Bug: https://bugs.gentoo.org/820095
Closes: https://bugs.gentoo.org/820101
Closes: https://github.com/gentoo/gentoo/pull/26334
Signed-off-by: Sam James  gentoo.org>

 eclass/flag-o-matic.eclass | 145 +
 1 file changed, 145 insertions(+)

diff --git a/eclass/flag-o-matic.eclass b/eclass/flag-o-matic.eclass
index 0dd2c1191273..503f23a141a1 100644
--- a/eclass/flag-o-matic.eclass
+++ b/eclass/flag-o-matic.eclass
@@ -875,4 +875,149 @@ no-as-needed() {
esac
 }
 
+# @FUNCTION: _test-compile-PROG
+# @USAGE:  
+# @INTERNAL
+# @DESCRIPTION:
+# Attempts to compile (and possibly link) the given program.  The first
+#  parameter corresponds to the standard -x compiler argument.
+# If the program should additionally be attempted to be linked, the string
+# "+ld" should be added to the  parameter.
+_test-compile-PROG() {
+   local lang=$1
+   local code=$2
+   shift 2
+
+   [[ -z "${lang}" ]] && return 1
+   [[ -z "${code}" ]] && return 1
+
+   local compiler filename_in filename_out args=() libs=()
+   case "${lang}" in
+   c)
+   compiler="$(tc-getCC)"
+   filename_in="${T}/test.c"
+   filename_out="${T}/test.o"
+   args+=(${CFLAGS[@]} -xc -c)
+   ;;
+   c++)
+   compiler="$(tc-getCXX)"
+   filename_in="${T}/test.cc"
+   filename_out="${T}/test.o"
+   args+=(${CXXFLAGS[@]} -xc++ -c)
+   ;;
+   f77)
+   compiler="$(tc-getF77)"
+   filename_in="${T}/test.f"
+   filename_out="${T}/test.o"
+   args+=(${FFFLAGS[@]} -xf77 -c)
+   ;;
+   f95)
+   compiler="$(tc-getFC)"
+   filename_in="${T}/test.f90"
+   filename_out="${T}/test.o"
+   args+=(${FCFLAGS[@]} -xf95 -c)
+   ;;
+   c+ld)
+   compiler="$(tc-getCC)"
+   filename_in="${T}/test.c"
+   filename_out="${T}/test.exe"
+   args+=(${CFLAGS[@]} ${LDFLAGS[@]} -xc)
+   libs+=(${LIBS[@]})
+   ;;
+   c+++ld)
+   compiler="$(tc-getCXX)"
+   filename_in="${T}/test.cc"
+   filename_out="${T}/test.exe"
+   args+=(${CXXFLAGS[@]} ${LDFLAGS[@]} -xc++)
+   libs+=(${LIBS[@]})
+   ;;
+   f77+ld)
+   compiler="$(tc-getF77)"
+   filename_in="${T}/test.f"
+   filename_out="${T}/test.exe"
+   args+=(${FFLAGS[@]} ${LDFLAGS[@]} -xf77)
+   libs+=(${LIBS[@]})
+   ;;
+   f95+ld)
+   compiler="$(tc-getFC)"
+   filename_in="${T}/test.f90"
+   filename_out="${T}/test.exe"
+   args+=(${FCFLAGS[@]} 

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

2022-07-20 Thread Sergey Torokhov
commit: 61b9458776c228b16e2019fabfe9f7f0042e2070
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Wed Jul 20 23:25:42 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Wed Jul 20 23:25:42 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=61b94587

dev-vcs/gitqlient: .ebuild update

Signed-off-by: Sergey Torokhov  yandex.ru>

 dev-vcs/gitqlient/gitqlient-.ebuild | 16 +++-
 1 file changed, 7 insertions(+), 9 deletions(-)

diff --git a/dev-vcs/gitqlient/gitqlient-.ebuild 
b/dev-vcs/gitqlient/gitqlient-.ebuild
index 0b7f70742..478fc453f 100644
--- a/dev-vcs/gitqlient/gitqlient-.ebuild
+++ b/dev-vcs/gitqlient/gitqlient-.ebuild
@@ -1,16 +1,14 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-inherit git-r3 qmake-utils xdg
+inherit git-r3 optfeature qmake-utils xdg
 
 MY_PN="GitQlient"
 
 DESCRIPTION="Multi-platform Git client written with Qt"
 HOMEPAGE="https://github.com/francescmm/GitQlient;
-
-#EGIT_BRANCH="develop"
 EGIT_REPO_URI="https://github.com/francescmm/${MY_PN}.git;
 
 LICENSE="LGPL-2.1"
@@ -20,11 +18,8 @@ DEPEND="
dev-qt/qtcore:5
dev-qt/qtgui:5
dev-qt/qtnetwork:5
-   dev-qt/qtwebchannel:5
-   dev-qt/qtwebengine:5[widgets]
dev-qt/qtwidgets:5
 "
-
 RDEPEND="
${DEPEND}
dev-vcs/git
@@ -33,7 +28,6 @@ RDEPEND="
 src_prepare() {
default
sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" "${MY_PN}".pro || die
-
sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop" || 
die
 }
 
@@ -44,3 +38,7 @@ src_configure() {
 src_install() {
emake INSTALL_ROOT="${D}" install
 }
+
+pkg_postinst() {
+   optfeature "Jenkins and/or GitServer plugins support" 
dev-qt/qtwebchannel:5 dev-qt/qtwebengine:5[widgets]
+}



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

2022-07-20 Thread Sergey Torokhov
commit: 0b369b5c110f88d6d076da97e8f7423cebd371c4
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Wed Jul 20 23:22:53 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Wed Jul 20 23:22:53 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0b369b5c

dev-vcs/gitqlient: 1.5.0 version bump

Signed-off-by: Sergey Torokhov  yandex.ru>

 dev-vcs/gitqlient/Manifest   |  5 +++
 dev-vcs/gitqlient/gitqlient-1.5.0.ebuild | 65 
 2 files changed, 70 insertions(+)

diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 262b77dc1..45a9cfee7 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1 +1,6 @@
 DIST gitqlient-1.4.3.tar.gz 4477433 BLAKE2B 
859d75f7e88aa6e4944dedf3b5b3b84a72d4b37bcf980cf5281849f79ccbd526959ce11e28c7f19ebaf602887eda373146503e573fbbb76f0a5ac874aaf7a571
 SHA512 
81e54e5bc39066379d650042287e1ff9fd4c86ca9229f1459a20d2bdde0fd60b060409c25461b77343ad6cc4759c28e997b8fea3c4b447004eaf9fbd095f6dcd
+DIST gitqlient-1.5.0.tar.gz 4452568 BLAKE2B 
fcbe8f9f9f176d4c68ddc89796d6362264734d0f30ae4a82f494dfd96d5bbb121f74e9ea0aa54b7aacb8aec0d948ce5a1d5240b0c60ed7976092eaa30dcc9aea
 SHA512 
3e8573d16b346c45b3026d8c5cc0e2f25b9ec42d43120c56ac5e57417119724dd0c949a582ced218e8cb0775957494cb82a27b15a36f9c2e111d56acafc4f13e
+DIST gitqlient-1.5.0_AuxiliarCustomWidgets.tar.gz 438731 BLAKE2B 
2b5b9dcd700a92e13cc9655183da2472c77dbf4bc68d9fe30cf615bae57f827296a33d223e7477a5dabc9e973a8afa97ecf8f416e5c7825add87c18222851a9a
 SHA512 
5937a52ab6c3d023c39d7ef64b02e7f2870538076b63ef9bf77ceecd87d3eb1334940de2d8086a25070307e26424c262994298d87ae16ff1bf8c7dad69d7ffa2
+DIST gitqlient-1.5.0_QLogger.tar.gz 20307 BLAKE2B 
0c5f4cc8a19ec6ca2508d80d02b5fd6ba759049116bad4883d0bc62ed06a6d1278eea9864a4001312d54f5ec2813c5348c3c2a91a80547fb27224d70dce46b21
 SHA512 
be6a0a5a2c334ac798eea2f2dfd3154b06e17040883b8309de2158fd118bc2a3cab20276d6a36a21018f850c43bd5bd834744f5911aabd771c2f43530a0a3553
+DIST gitqlient-1.5.0_QPinnableTabWidget.tar.gz 13299 BLAKE2B 
9c8fce7c955963b97c5337bacfa8032f761bc763bb56a56ad34ff68cc3ece1aad75f279edec78e6770a7598caa5372049ffbe8d16b5ade07350166893035656a
 SHA512 
ea0bc7c023fdf792c0aaab5feb10eb2551581a0fcd32ebac779e358f198057d282a1f9de7004cde8eaa6aa2b0e0028966f948362b335e3288b650a4830cee1db
+DIST gitqlient-1.5.0_git.tar.gz 28824 BLAKE2B 
302aede313f1c2be044854089fc80c004df9660c527addafc984f514eb57c676d2fef15f1ed5d9443fc239242ec196d81e12b253db47f4882de8df661c0ee2ff
 SHA512 
94d1a267cd49f0a2ea68a5cdc014a1b63b1ae659e27f21d2104cd689ede8fab7b85de6a6e3af514f7ec28ac468264126c076b0dce84c77f62472fd6b120eda38

diff --git a/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild 
b/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild
new file mode 100644
index 0..6dd457f67
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild
@@ -0,0 +1,65 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit optfeature qmake-utils xdg
+
+MY_PN="GitQlient"
+MY_PV=$(ver_rs 3 -)
+
+# subprojects on GitQlient 1.5 release:
+AuxiliarCustomWidgets_SHA="835f538b4a79e4d6bb70eef37a32103e7b2a1fd1"
+QLogger_SHA="d1ed24e080521a239d5d5e2c2347fe211f0f3e4f"
+QPinnableTabWidget_SHA="cc937794e910d0452f0c07b4961c6014a7358831"
+git_SHA="b62750f4da4b133faff49e6f53950d659b18c948"
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient;
+
+SRC_URI="
+   https://github.com/francescmm/${MY_PN}/archive/v${MY_PV}.tar.gz -> 
${P}.tar.gz
+   
https://github.com/francescmm/AuxiliarCustomWidgets/archive/${AuxiliarCustomWidgets_SHA}.tar.gz
 -> ${P}_AuxiliarCustomWidgets.tar.gz
+   https://github.com/francescmm/QLogger/archive/${QLogger_SHA}.tar.gz -> 
${P}_QLogger.tar.gz
+   
https://github.com/francescmm/QPinnableTabWidget/archive/${QPinnableTabWidget_SHA}.tar.gz
 -> ${P}_QPinnableTabWidget.tar.gz
+   https://github.com/francescmm/git/archive/${git_SHA}.tar.gz -> 
${P}_git.tar.gz
+   "
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${MY_PN}-${MY_PV}"
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+
+DEPEND="
+   dev-qt/qtcore:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtwidgets:5
+"
+RDEPEND="
+   ${DEPEND}
+   dev-vcs/git
+"
+
+src_prepare() {
+   mv -T "${WORKDIR}"/AuxiliarCustomWidgets-"${AuxiliarCustomWidgets_SHA}" 
"${S}"/src/AuxiliarCustomWidgets || die
+   mv -T "${WORKDIR}"/QLogger-"${QLogger_SHA}" "${S}"/src/QLogger || die
+   mv -T "${WORKDIR}"/QPinnableTabWidget-"${QPinnableTabWidget_SHA}" 
"${S}"/src/QPinnableTabWidget || die
+   mv -T "${WORKDIR}"/git-"${git_SHA}" "${S}"/src/git || die
+
+   default
+   sed -i -e "/QMAKE_CXXFLAGS/s:-Werror::" -e "/^GQ_SHA/d" "${MY_PN}".pro 
|| die
+   sed -i -e "s:Office:Development:" "${S}/src/resources/${PN}.desktop" || 
die
+}
+
+src_configure() {
+   eqmake5 PREFIX=/usr "${MY_PN}".pro
+}
+
+src_install() {
+   emake 

[gentoo-commits] repo/gentoo:master commit in: dev-dotnet/dotnet-sdk-bin/

2022-07-20 Thread Maciej Barć
commit: a990931de535384d4d29cb8f48af828b12fa8ad8
Author: Maciej Barć  gentoo  org>
AuthorDate: Wed Jul 20 23:26:14 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Wed Jul 20 23:26:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a990931d

dev-dotnet/dotnet-sdk-bin: fix location of the workloads file

Closes: https://bugs.gentoo.org/841896
Signed-off-by: Maciej Barć  gentoo.org>

 ...t-sdk-bin-6.0.301.ebuild => dotnet-sdk-bin-6.0.301-r1.ebuild} | 9 -
 ...t-sdk-bin-6.0.302.ebuild => dotnet-sdk-bin-6.0.302-r1.ebuild} | 9 -
 2 files changed, 8 insertions(+), 10 deletions(-)

diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.301.ebuild 
b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.301-r1.ebuild
similarity index 85%
rename from dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.301.ebuild
rename to dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.301-r1.ebuild
index 5983f350bfe8..bfdeb499a7c5 100644
--- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.301.ebuild
+++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.301-r1.ebuild
@@ -40,12 +40,11 @@ src_install() {
local dest="opt/${PN}-${SLOT}"
dodir "${dest%/*}"
 
-   # 6.0.100 is SDK feature band which will not change between minor 
increases, so 6.0.101, 6.102
-   # will still have same 6.0.100 SDK feature band in the name. Thus I 
have to hard code this
-   # https://github.com/dotnet/sdk/pull/18823#issuecomment-915603684
-   local workloads="metadata/workloads/${SLOT}.100"
-
+   # Create a magic workloads file, bug #841896
+   local featureband="$(ver_cut 3 | sed "s/[0-9]/0/2g")"
+   local workloads="metadata/workloads/${SLOT}.${featureband}"
{ mkdir -p "${S}/${workloads}" && touch "${S}/${workloads}/userlocal"; 
} || die
+
{ mv "${S}" "${ED}/${dest}" && mkdir "${S}" && fperms 0755 "/${dest}"; 
} || die
dosym "../../${dest}/dotnet" "/usr/bin/dotnet-bin-${SLOT}"
 

diff --git a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.302.ebuild 
b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.302-r1.ebuild
similarity index 85%
rename from dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.302.ebuild
rename to dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.302-r1.ebuild
index 5983f350bfe8..bfdeb499a7c5 100644
--- a/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.302.ebuild
+++ b/dev-dotnet/dotnet-sdk-bin/dotnet-sdk-bin-6.0.302-r1.ebuild
@@ -40,12 +40,11 @@ src_install() {
local dest="opt/${PN}-${SLOT}"
dodir "${dest%/*}"
 
-   # 6.0.100 is SDK feature band which will not change between minor 
increases, so 6.0.101, 6.102
-   # will still have same 6.0.100 SDK feature band in the name. Thus I 
have to hard code this
-   # https://github.com/dotnet/sdk/pull/18823#issuecomment-915603684
-   local workloads="metadata/workloads/${SLOT}.100"
-
+   # Create a magic workloads file, bug #841896
+   local featureband="$(ver_cut 3 | sed "s/[0-9]/0/2g")"
+   local workloads="metadata/workloads/${SLOT}.${featureband}"
{ mkdir -p "${S}/${workloads}" && touch "${S}/${workloads}/userlocal"; 
} || die
+
{ mv "${S}" "${ED}/${dest}" && mkdir "${S}" && fperms 0755 "/${dest}"; 
} || die
dosym "../../${dest}/dotnet" "/usr/bin/dotnet-bin-${SLOT}"
 



  1   2   3   4   >