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

2022-10-29 Thread Robin H. Johnson
commit: 4035f35583fab2b3f22c09d2f2894f4b8f20cee0
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Oct 30 03:10:43 2022 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Oct 30 04:35:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4035f355

sys-fs/multipath-tools: bump

Signed-off-by: Robin H. Johnson  gentoo.org>
Reference: https://bugs.gentoo.org/show_bug.cgi?id=878763

 sys-fs/multipath-tools/Manifest|  1 +
 .../multipath-tools/multipath-tools-0.9.3.ebuild   | 83 ++
 2 files changed, 84 insertions(+)

diff --git a/sys-fs/multipath-tools/Manifest b/sys-fs/multipath-tools/Manifest
index 480f8d568d21..da55c0c395c3 100644
--- a/sys-fs/multipath-tools/Manifest
+++ b/sys-fs/multipath-tools/Manifest
@@ -1,2 +1,3 @@
 DIST multipath-tools-0.8.9.tar.gz 534866 BLAKE2B 
b5ebf3c393f6b60e85678ac07378ae07056b6777409fc1bc4f4133cdd3f8c75a3d76f6e9342208df7fed8fe7812b089eba8f6b769e47e1dd6c8b7fd321bdbd30
 SHA512 
25f2a5d436af6a343804988cef45ca1574d4a981655a2b91563ddb89138619158befdf5af92d836a17c95d6dcf901072b614473c2129274e5dcdb1a1d64edb4d
 DIST multipath-tools-0.9.0.tar.gz 537311 BLAKE2B 
e7d4958d24d1e19da2b80be23585ad37f6b0c1b66dc1377014d825ddd2be10ea3b8c30162cb7a23b120427bf0c957c6cad8560018e1cb058c284f37afd5d50d4
 SHA512 
6c417f6d1d116fa43bedb9f77769ece9cbb7b35b78a9b3558c41df2360e52a65a07314b12ab7e4a7bbc867b9755250de9db96a2f7eb4a6a37f0b0b3f0bbc840e
+DIST multipath-tools-0.9.3.tar.gz 552442 BLAKE2B 
e2065119cdd68bd8c2b4420bd0de9ce370601597972dba32c076bfc4df6d0a1a65356454a2f96f95f27cf681387685edcbac2eb41258d4a7049a1ef62cdf0949
 SHA512 
4faa2ee5a96a9d5d752219931ebc885cb70ed6b022d45ede985ad7919c043a3aee166e6f126d32dffd187c5c32d5cbce91747d87d0b7e2f7f68b279583da

diff --git a/sys-fs/multipath-tools/multipath-tools-0.9.3.ebuild 
b/sys-fs/multipath-tools/multipath-tools-0.9.3.ebuild
new file mode 100644
index ..937105680154
--- /dev/null
+++ b/sys-fs/multipath-tools/multipath-tools-0.9.3.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit linux-info systemd toolchain-funcs udev
+
+DESCRIPTION="Device mapper target autoconfig"
+HOMEPAGE="http://christophe.varoqui.free.fr/;
+SRC_URI="https://github.com/opensvc/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~loong ~ppc ~ppc64 ~riscv ~x86"
+IUSE="systemd test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/json-c:=
+   dev-libs/libaio
+   dev-libs/userspace-rcu:=
+   >=sys-fs/lvm2-2.02.45
+   >=virtual/libudev-232-r3
+   sys-libs/readline:=
+   systemd? ( sys-apps/systemd )"
+DEPEND="${RDEPEND}
+   test? ( dev-util/cmocka )"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~DM_MULTIPATH"
+
+PATCHES=( )
+
+src_prepare() {
+   default
+   # life is too short for some trivial patches
+   sed -r -i -e '/^(CPPFLAGS|CFLAGS)/s,:=,+=,' \
+   "${S}"/Makefile.inc || die
+}
+
+src_compile() {
+   tc-export CC
+
+   # LIBDM_API_FLUSH involves grepping files in /usr/include,
+   # so force the test to go the way we want #411337.
+   emake \
+   prefix="${EPREFIX}" \
+   LIB="$(get_libdir)" \
+   LIBDM_API_FLUSH=1 \
+   PKGCONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+   dodir /sbin /usr/share/man/man{3,5,8}
+   emake \
+   DESTDIR="${D}" \
+   prefix="${EPREFIX}" \
+   LIB="$(get_libdir)" \
+   RUN=run \
+   unitdir="$(systemd_get_systemunitdir)" \
+   libudevdir='$(prefix)'/$(get_udevdir) \
+   pkgconfdir='$(prefix)/usr/$(LIB)/pkgconfig' \
+   install
+   einstalldocs
+
+   newinitd "${FILESDIR}"/multipathd-r1.rc multipathd
+   newinitd "${FILESDIR}"/multipath.rc multipath
+
+   find "${ED}" -type f -name '*.la' -delete || die
+}
+
+pkg_postinst() {
+   udev_reload
+
+   if [[ -z ${REPLACING_VERSIONS} ]] ; then
+   elog "If you need multipath on your system, you must"
+   elog "add 'multipath' into your boot runlevel!"
+   fi
+}
+
+pkg_postrm() {
+   udev_reload
+}



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

2022-10-29 Thread Robin H. Johnson
commit: 9199809d660b52e6f4e960fc1bea889bea15cdaa
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Oct 30 04:35:20 2022 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Oct 30 04:35:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9199809d

sys-fs/multipath-tools: bump

Signed-off-by: Robin H. Johnson  gentoo.org>
Reference: https://bugs.gentoo.org/show_bug.cgi?id=878763

 .../multipath-tools/multipath-tools-0.9.3.ebuild   | 27 +++---
 1 file changed, 19 insertions(+), 8 deletions(-)

diff --git a/sys-fs/multipath-tools/multipath-tools-0.9.3.ebuild 
b/sys-fs/multipath-tools/multipath-tools-0.9.3.ebuild
index 937105680154..74c4e010e73a 100644
--- a/sys-fs/multipath-tools/multipath-tools-0.9.3.ebuild
+++ b/sys-fs/multipath-tools/multipath-tools-0.9.3.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit linux-info systemd toolchain-funcs udev
+inherit linux-info systemd toolchain-funcs udev tmpfiles
 
 DESCRIPTION="Device mapper target autoconfig"
 HOMEPAGE="http://christophe.varoqui.free.fr/;
@@ -34,7 +34,7 @@ PATCHES=( )
 src_prepare() {
default
# life is too short for some trivial patches
-   sed -r -i -e '/^(CPPFLAGS|CFLAGS)/s,:=,+=,' \
+   sed -r -i -e 
'/^(CPPFLAGS|CFLAGS)\>/s,^(CPPFLAGS|CFLAGS)\>[[:space:]]+:=,\1 := 
$(GENTOO_\1),' \
"${S}"/Makefile.inc || die
 }
 
@@ -44,23 +44,33 @@ src_compile() {
# LIBDM_API_FLUSH involves grepping files in /usr/include,
# so force the test to go the way we want #411337.
emake \
-   prefix="${EPREFIX}" \
+   prefix="${EPREFIX}/usr" \
LIB="$(get_libdir)" \
LIBDM_API_FLUSH=1 \
-   PKGCONFIG="$(tc-getPKG_CONFIG)"
+   PKGCONFIG="$(tc-getPKG_CONFIG)" \
+   GENTOO_CFLAGS="${CFLAGS}" \
+   GENTOO_CPPFLAGS="${CPPFLAGS}" \
+   FAKEVAR=1
 }
 
 src_install() {
-   dodir /sbin /usr/share/man/man{3,5,8}
+   dodir /sbin
+   # upstream makefile has terrible $(prefix) choices
emake \
-   DESTDIR="${D}" \
+   DESTDIR="${ED}" \
prefix="${EPREFIX}" \
LIB="$(get_libdir)" \
RUN=run \
unitdir="$(systemd_get_systemunitdir)" \
-   libudevdir='$(prefix)'/$(get_udevdir) \
-   pkgconfdir='$(prefix)/usr/$(LIB)/pkgconfig' \
+   libudevdir="${EPREFIX}/$(get_udevdir)" \
+   pkgconfdir="${EPREFIX}/usr/$(get_libdir)/pkgconfig" \
+   GENTOO_CFLAGS="${CFLAGS}" \
+   GENTOO_CPPFLAGS="${CPPFLAGS}" \
install
+   rmdir "${ED}"/usr/include
+   rmdir "${ED}"/usr/share
+   mv "${ED}"/include "${ED}"/usr/include || die
+   mv "${ED}"/share "${ED}"/usr/share || die
einstalldocs
 
newinitd "${FILESDIR}"/multipathd-r1.rc multipathd
@@ -70,6 +80,7 @@ src_install() {
 }
 
 pkg_postinst() {
+   tmpfiles_process /usr/lib/tmpfiles.d/multipath.conf
udev_reload
 
if [[ -z ${REPLACING_VERSIONS} ]] ; then



[gentoo-commits] repo/gentoo:master commit in: kde-misc/bismuth/

2022-10-29 Thread Jakov Smolić
commit: 7e3b09d7f465902c28e4ae5ebeaa489d5208d1ef
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Oct 30 04:12:49 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Oct 30 04:12:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e3b09d7

kde-misc/bismuth: Stabilize 3.1.4 amd64, #878731

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

 kde-misc/bismuth/bismuth-3.1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-misc/bismuth/bismuth-3.1.4.ebuild 
b/kde-misc/bismuth/bismuth-3.1.4.ebuild
index aca8196c528f..d723f4a4350c 100644
--- a/kde-misc/bismuth/bismuth-3.1.4.ebuild
+++ b/kde-misc/bismuth/bismuth-3.1.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="
 
 LICENSE="CC-BY-4.0 LGPL-3+ MIT"
 SLOT="0"
-KEYWORDS="~amd64"
+KEYWORDS="amd64"
 
 QTMIN=5.15.0
 KFMIN=5.78.0



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

2022-10-29 Thread Jakov Smolić
commit: bbfa68619e401feb6f23e35ade9ba0cded1f7c0f
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Oct 30 04:12:39 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Oct 30 04:12:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbfa6861

sys-fs/dd-rescue: Stabilize 1.99.12 amd64, #878583

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

 sys-fs/dd-rescue/dd-rescue-1.99.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/dd-rescue/dd-rescue-1.99.12.ebuild 
b/sys-fs/dd-rescue/dd-rescue-1.99.12.ebuild
index afbbda5929f2..2f9ff9bf50f5 100644
--- a/sys-fs/dd-rescue/dd-rescue-1.99.12.ebuild
+++ b/sys-fs/dd-rescue/dd-rescue-1.99.12.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="http://www.garloff.de/kurt/linux/ddrescue/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
+KEYWORDS="amd64 ~arm ~mips ~ppc ~ppc64 ~sparc x86 ~amd64-linux ~x86-linux 
~ppc-macos"
 IUSE="cpu_flags_x86_avx2 lzo cpu_flags_x86_sse4_2 static xattr"
 
 RDEPEND="lzo? ( dev-libs/lzo )



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

2022-10-29 Thread Jakov Smolić
commit: cc979f4ac627a4cdf3ad00af914bc7f95b3ddcf9
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Oct 30 04:12:32 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Oct 30 04:12:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc979f4a

dev-java/protobuf-java: Stabilize 3.21.9 amd64, #878319

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

 dev-java/protobuf-java/protobuf-java-3.21.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/protobuf-java/protobuf-java-3.21.9.ebuild 
b/dev-java/protobuf-java/protobuf-java-3.21.9.ebuild
index 2e0fd24ef9a9..c393a3769bea 100644
--- a/dev-java/protobuf-java/protobuf-java-3.21.9.ebuild
+++ b/dev-java/protobuf-java/protobuf-java-3.21.9.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/protocolbuffers/protobuf/archive/v${PV}.tar.gz -> pr
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 DEPEND="
>=virtual/jdk-1.8:*



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

2022-10-29 Thread Jakov Smolić
commit: eb45a8de38d1d141f95a65792315adedfe9c8435
Author: Jakov Smolić  gentoo  org>
AuthorDate: Sun Oct 30 04:11:39 2022 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Sun Oct 30 04:11:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb45a8de

dev-libs/libgcrypt: Stabilize 1.10.1-r2 hppa, #878749

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

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

diff --git a/dev-libs/libgcrypt/libgcrypt-1.10.1-r2.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.10.1-r2.ebuild
index ff87bcad8633..5a9ea226fdc5 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.10.1-r2.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.10.1-r2.ebuild
@@ -13,7 +13,7 @@ SRC_URI+=" verify-sig? ( 
mirror://gnupg/${PN}/${P}.tar.bz2.sig )"
 
 LICENSE="LGPL-2.1 MIT"
 SLOT="0/20" # subslot = soname major version
-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"
 IUSE="+asm cpu_flags_arm_neon cpu_flags_arm_aes cpu_flags_arm_sha1 
cpu_flags_arm_sha2 cpu_flags_ppc_altivec cpu_flags_ppc_vsx2 cpu_flags_ppc_vsx3 
cpu_flags_x86_aes cpu_flags_x86_avx cpu_flags_x86_avx2 cpu_flags_x86_padlock 
cpu_flags_x86_sha cpu_flags_x86_sse4_1 doc static-libs"
 
 # Build system only has --disable-arm-crypto-support right now



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

2022-10-29 Thread John Helmert III
commit: 2f0a8066cec1e9356367684a5dffb808f0be6ac8
Author: Jaco Kroon  uls  co  za>
AuthorDate: Thu Oct 27 19:44:42 2022 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sun Oct 30 02:57:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0a8066

net-libs/pjproject: drop 2.12.1-r1

Bug: https://bugs.gentoo.org/875863

Signed-off-by: Jaco Kroon  uls.co.za>
Closes: https://github.com/gentoo/gentoo/pull/27992
Signed-off-by: John Helmert III  gentoo.org>

 net-libs/pjproject/pjproject-2.12.1-r1.ebuild | 140 --
 1 file changed, 140 deletions(-)

diff --git a/net-libs/pjproject/pjproject-2.12.1-r1.ebuild 
b/net-libs/pjproject/pjproject-2.12.1-r1.ebuild
deleted file mode 100644
index e93be1690889..
--- a/net-libs/pjproject/pjproject-2.12.1-r1.ebuild
+++ /dev/null
@@ -1,140 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-# TODO: Figure out a way to disable SRTP from pjproject entirely.
-EAPI=8
-
-inherit autotools flag-o-matic toolchain-funcs
-
-DESCRIPTION="Open source SIP, Media, and NAT Traversal Library"
-HOMEPAGE="https://www.pjsip.org/;
-SRC_URI="https://github.com/pjsip/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 x86"
-
-LICENSE="GPL-2"
-SLOT="0/${PV}"
-
-# g729 not included due to special bcg729 handling.
-CODEC_FLAGS="g711 g722 g7221 gsm ilbc speex l16"
-VIDEO_FLAGS="sdl ffmpeg v4l2 openh264 libyuv vpx"
-SOUND_FLAGS="alsa portaudio"
-IUSE="amr debug epoll examples opus resample silk ssl static-libs webrtc
-   ${CODEC_FLAGS} g729
-   ${VIDEO_FLAGS}
-   ${SOUND_FLAGS}"
-
-RDEPEND=">=net-libs/libsrtp-2.3.0:=
-   alsa? ( media-libs/alsa-lib )
-   amr? ( media-libs/opencore-amr )
-   ffmpeg? ( media-video/ffmpeg:= )
-   g729? ( media-libs/bcg729 )
-   gsm? ( media-sound/gsm )
-   ilbc? ( media-libs/libilbc )
-   openh264? ( media-libs/openh264 )
-   opus? ( media-libs/opus )
-   portaudio? ( media-libs/portaudio )
-   resample? ( media-libs/libsamplerate )
-   sdl? ( media-libs/libsdl )
-   speex? (
-   media-libs/speex
-   media-libs/speexdsp
-   )
-   ssl? (
-   dev-libs/openssl:0=
-   )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="virtual/pkgconfig"
-
-PATCHES=(
-   "${FILESDIR}/pjproject-2.12.1-CVE-2022-31031.patch"
-)
-
-src_prepare() {
-   default
-   rm configure || die "Unable to remove unwanted wrapper"
-   mv aconfigure.ac configure.ac || die "Unable to rename configure script 
source"
-   eautoreconf
-
-   cp "${FILESDIR}/pjproject-2.12.1-config_site.h" 
"${S}/pjlib/include/pj/config_site.h" || die "Unable to create config_site.h"
-}
-
-_pj_enable() {
-   usex "$1" '' "--disable-${2:-$1}"
-}
-
-_pj_get_define() {
-   local r="$(sed -nre "s/^#define[[:space:]]+$1[[:space:]]+//p" 
"${S}/pjlib/include/pj/config_site.h")"
-   [[ -z "${r}" ]] && die "Unable to fine #define $1 in config_site.h"
-   echo "$r"
-}
-
-_pj_set_define() {
-   local c=$(_pj_get_define "$1")
-   [[ "$c" = "$2" ]] && return 0
-   sed -re "s/^#define[[:space:]]+$1[[:space:]].*/#define $1 $2/" -i 
"${S}/pjlib/include/pj/config_site.h" || die "sed failed updating $1 to $2."
-   [[ "$(_pj_get_define "$1")" != "$2" ]] && die "sed failed to perform 
update for $1 to $2."
-}
-
-_pj_use_set_define() {
-   _pj_set_define "$2" $(usex "$1" 1 0)
-}
-
-src_configure() {
-   local myconf=()
-   local videnable="--disable-video"
-   local t
-
-   use debug || append-cflags -DNDEBUG=1
-
-   for t in ${CODEC_FLAGS}; do
-   myconf+=( $(_pj_enable ${t} ${t}-codec) )
-   done
-   myconf+=( $(_pj_enable g729 bcg729) )
-
-   for t in ${VIDEO_FLAGS}; do
-   myconf+=( $(_pj_enable ${t}) )
-   use "${t}" && videnable="--enable-video"
-   done
-
-   [ "${videnable}" = "--enable-video" ] && _pj_set_define 
PJMEDIA_HAS_VIDEO 1 || _pj_set_define PJMEDIA_HAS_VIDEO 0
-
-   LD="$(tc-getCC)" econf \
-   --enable-shared \
-   --with-external-srtp \
-   ${videnable} \
-   $(_pj_enable alsa sound) \
-   $(_pj_enable amr opencore-amr) \
-   $(_pj_enable epoll) \
-   $(_pj_enable opus) \
-   $(_pj_enable portaudio ext-sound) \
-   $(_pj_enable resample libsamplerate) \
-   $(_pj_enable resample resample-dll) \
-   $(_pj_enable resample) \
-   $(_pj_enable silk) \
-   $(_pj_enable speex speex-aec) \
-   $(_pj_enable ssl) \
-   $(_pj_enable webrtc libwebrtc) \
-   $(use_with gsm external-gsm) \
-   $(use_with portaudio external-pa) \
-   $(use_with speex external-speex) \
-   "${myconf[@]}"
-}
-
-src_compile() {
-   emake 

[gentoo-commits] repo/gentoo:master commit in: media-libs/libva-intel-media-driver/

2022-10-29 Thread Robin H. Johnson
commit: a5726db8e032a9c8002fed97fbf7ef33357c17ce
Author: Robin H. Johnson  gentoo  org>
AuthorDate: Sun Oct 30 02:55:27 2022 +
Commit: Robin H. Johnson  gentoo  org>
CommitDate: Sun Oct 30 02:57:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5726db8

media-libs/libva-intel-media-driver: IGFX_ALDERLAKE_N & other symbols added 
after gmmlib 22.0.0

libva-intel-media-driver configure does not check deps properly.

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

 .../libva-intel-media-driver/libva-intel-media-driver-22.4.4.ebuild | 2 +-
 .../libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild   | 2 +-
 .../libva-intel-media-driver/libva-intel-media-driver-22.5.3.ebuild | 2 +-
 .../libva-intel-media-driver/libva-intel-media-driver-22.5.4.ebuild | 2 +-
 .../libva-intel-media-driver/libva-intel-media-driver-.ebuild   | 2 +-
 5 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.4.4.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.4.4.ebuild
index 2a5644f6778d..24fb2ffb188a 100644
--- a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.4.4.ebuild
+++ b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.4.4.ebuild
@@ -29,7 +29,7 @@ IUSE="+redistributable test X"
 
 RESTRICT="!test? ( test )"
 
-DEPEND=">=media-libs/gmmlib-22.0.0:=
+DEPEND=">=media-libs/gmmlib-22.1.8:=
>=media-libs/libva-2.14.0[X?]
 "
 RDEPEND="${DEPEND}"

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild
index 54a280d5f2bf..92a6257bc1b1 100644
--- 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild
+++ 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.1.ebuild
@@ -29,7 +29,7 @@ IUSE="+redistributable test X"
 
 RESTRICT="!test? ( test )"
 
-DEPEND=">=media-libs/gmmlib-22.0.0:=
+DEPEND=">=media-libs/gmmlib-22.1.8:=
>=media-libs/libva-2.14.0[X?]
 "
 RDEPEND="${DEPEND}"

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.ebuild
index 54a280d5f2bf..92a6257bc1b1 100644
--- a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.ebuild
+++ b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.3.ebuild
@@ -29,7 +29,7 @@ IUSE="+redistributable test X"
 
 RESTRICT="!test? ( test )"
 
-DEPEND=">=media-libs/gmmlib-22.0.0:=
+DEPEND=">=media-libs/gmmlib-22.1.8:=
>=media-libs/libva-2.14.0[X?]
 "
 RDEPEND="${DEPEND}"

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.4.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.4.ebuild
index 54a280d5f2bf..92a6257bc1b1 100644
--- a/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.4.ebuild
+++ b/media-libs/libva-intel-media-driver/libva-intel-media-driver-22.5.4.ebuild
@@ -29,7 +29,7 @@ IUSE="+redistributable test X"
 
 RESTRICT="!test? ( test )"
 
-DEPEND=">=media-libs/gmmlib-22.0.0:=
+DEPEND=">=media-libs/gmmlib-22.1.8:=
>=media-libs/libva-2.14.0[X?]
 "
 RDEPEND="${DEPEND}"

diff --git 
a/media-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild 
b/media-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
index a9c6b767ec77..aa9624b21204 100644
--- a/media-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
+++ b/media-libs/libva-intel-media-driver/libva-intel-media-driver-.ebuild
@@ -29,7 +29,7 @@ IUSE="+redistributable test X"
 
 RESTRICT="!test? ( test )"
 
-DEPEND=">=media-libs/gmmlib-22.0.0:=
+DEPEND=">=media-libs/gmmlib-22.1.8:=
>=media-libs/libva-2.14.0[X?]
 "
 RDEPEND="${DEPEND}"



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

2022-10-29 Thread John Helmert III
commit: 870a4b01fffabeb3985f9b9af3b55facd1d4f780
Author: John Helmert III  gentoo  org>
AuthorDate: Sun Oct 30 02:07:36 2022 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sun Oct 30 02:12:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=870a4b01

games-util/xboxdrv: fix binpkg installation, udev_reload, add python3_11

Closes: https://bugs.gentoo.org/776601
Closes: https://bugs.gentoo.org/859325
Signed-off-by: John Helmert III  gentoo.org>

 .../xboxdrv/xboxdrv-0.8.8_p20190118-r2.ebuild  | 83 ++
 1 file changed, 83 insertions(+)

diff --git a/games-util/xboxdrv/xboxdrv-0.8.8_p20190118-r2.ebuild 
b/games-util/xboxdrv/xboxdrv-0.8.8_p20190118-r2.ebuild
new file mode 100644
index ..7b11030a2c5e
--- /dev/null
+++ b/games-util/xboxdrv/xboxdrv-0.8.8_p20190118-r2.ebuild
@@ -0,0 +1,83 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit linux-info python-any-r1 scons-utils toolchain-funcs systemd udev
+
+MY_P="${PN}-v$(ver_cut 1-3)"
+DESCRIPTION="Userspace Xbox 360 Controller driver"
+HOMEPAGE="https://xboxdrv.gitlab.io;
+SRC_URI="https://gitlab.com/xboxdrv/${PN}/-/archive/v$(ver_cut 
1-3)/${MY_P}.tar.bz2"
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-libs/boost:=
+   dev-libs/dbus-glib
+   dev-libs/glib:2
+   sys-apps/dbus
+   virtual/libudev:=
+   virtual/libusb:1
+   x11-libs/libX11
+"
+
+DEPEND="
+   ${RDEPEND}
+"
+
+BDEPEND="
+   dev-util/glib-utils
+   virtual/pkgconfig
+"
+
+PATCHES=(
+   "${FILESDIR}/"xboxdrv-0.8.8-some-boost-fix.patch
+   "${FILESDIR}/"xboxdrv-0.8.8-Update-SConstruct-to-python3.patch
+   "${FILESDIR}/"xboxdrv-0.8.8-Updating-python-code-to-python3.patch
+)
+
+CONFIG_CHECK="~INPUT_EVDEV ~INPUT_JOYDEV ~INPUT_UINPUT ~!JOYSTICK_XPAD"
+
+pkg_setup() {
+   linux-info_pkg_setup
+   python-any-r1_pkg_setup
+}
+
+src_compile() {
+   escons \
+   BUILD=custom \
+   CXX="$(tc-getCXX)" \
+   AR="$(tc-getAR)" \
+   RANLIB="$(tc-getRANLIB)" \
+   CXXFLAGS="-Wall ${CXXFLAGS}" \
+   LINKFLAGS="${LDFLAGS}"
+}
+
+src_install() {
+   dobin xboxdrv
+   doman doc/xboxdrv.1
+   dodoc AUTHORS NEWS PROTOCOL README.md TODO
+
+   newinitd "${FILESDIR}"/xboxdrv.initd xboxdrv
+   newconfd "${FILESDIR}"/xboxdrv.confd xboxdrv
+
+   insinto /etc/dbus-1/system.d
+   doins "${FILESDIR}"/org.seul.Xboxdrv.conf
+
+   udev_newrules "${FILESDIR}"/xboxdrv.udev-rules 99-xbox-controller.rules
+   systemd_dounit "${FILESDIR}"/xboxdrv.service
+}
+
+pkg_postinst() {
+   udev_reload
+}
+
+pkg_postrm() {
+   udev_reload
+}



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

2022-10-29 Thread Ronny Gutbrod
commit: 8f84bafdaed42c9d26929493a3c09c7d5aaa41ae
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sun Oct 30 02:09:50 2022 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sun Oct 30 02:09:50 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8f84bafd

dev-python/i3ipc: fix copyright year

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

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

diff --git a/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild 
b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
index 1a00b25ab..0874c895a 100644
--- a/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
+++ b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8



[gentoo-commits] repo/proj/guru:dev commit in: x11-misc/autotiling/

2022-10-29 Thread Ronny Gutbrod
commit: 915df862170f83ad6d13f504796c3eb88f2444a4
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sun Oct 30 02:05:23 2022 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sun Oct 30 02:05:23 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=915df862

x11-misc/autotiling: use PEP517

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 x11-misc/autotiling/autotiling-1.7.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/x11-misc/autotiling/autotiling-1.7.ebuild 
b/x11-misc/autotiling/autotiling-1.7.ebuild
index fa2c4a915..5040f5f73 100644
--- a/x11-misc/autotiling/autotiling-1.7.ebuild
+++ b/x11-misc/autotiling/autotiling-1.7.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=8
 
+DISTUTILS_USE_PEP517="setuptools"
 PYTHON_COMPAT=( python3_{10..11} )
 DISTUTILS_SINGLE_IMPL=1
 



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

2022-10-29 Thread Ronny Gutbrod
commit: 59389a05773f28139712a374485459facbeaf997
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sun Oct 30 00:22:16 2022 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sun Oct 30 01:59:52 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=59389a05

dev-python/i3ipc: EAPI 8, PEP517, fix deps, add python3_11

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild | 25 +
 1 file changed, 25 insertions(+)

diff --git a/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild 
b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
new file mode 100644
index 0..584d9d7e3
--- /dev/null
+++ b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517="setuptools"
+PYTHON_COMPAT=( python3_{8..11} )
+
+inherit distutils-r1
+
+DESCRIPTION="An improved Python library to control i3wm and sway."
+HOMEPAGE="https://github.com/altdesktop/i3ipc-python;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   ${RDEPEND}
+   dev-python/python-xlib[${PYTHON_USEDEP}]
+"
+DEPEND="${RDEPEND}"
+
+distutils_enable_tests pytest



[gentoo-commits] repo/proj/guru:dev commit in: x11-misc/autotiling/

2022-10-29 Thread Ronny Gutbrod
commit: dc05992a8f380f28cfd9ef59487c05497c9341de
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sun Oct 30 01:59:28 2022 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sun Oct 30 01:59:52 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=dc05992a

x11-misc/autotiling: new package, add 1.7

Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 x11-misc/autotiling/Manifest  |  1 +
 x11-misc/autotiling/autotiling-1.7.ebuild | 21 +
 x11-misc/autotiling/metadata.xml  | 11 +++
 3 files changed, 33 insertions(+)

diff --git a/x11-misc/autotiling/Manifest b/x11-misc/autotiling/Manifest
new file mode 100644
index 0..b944764da
--- /dev/null
+++ b/x11-misc/autotiling/Manifest
@@ -0,0 +1 @@
+DIST autotiling-1.7.tar.gz 17675 BLAKE2B 
e2e220aca96c9d218b96c8dcb98bd37d5b481df11a9513bb1ba8604a268a2b93ffc030f172023b86adca2768597f91ef1d6afb83b65f37c5b4ad192a839b0253
 SHA512 
ea6d84f033d2148cd46d0b754a15bc09847997856a73374d477e4abfd761e0df5e96bc30a24d5b0cd92bc1836a480b4c9fd71734a1707ef8877de66e4120abc7

diff --git a/x11-misc/autotiling/autotiling-1.7.ebuild 
b/x11-misc/autotiling/autotiling-1.7.ebuild
new file mode 100644
index 0..fa2c4a915
--- /dev/null
+++ b/x11-misc/autotiling/autotiling-1.7.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{10..11} )
+DISTUTILS_SINGLE_IMPL=1
+
+inherit distutils-r1
+
+DESCRIPTION="Script for sway and i3 to automatically switch the window split 
orientation"
+HOMEPAGE="https://github.com/nwg-piotr/autotiling;
+SRC_URI="https://github.com/nwg-piotr/${PN}/archive/refs/tags/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="$(python_gen_cond_dep '>=dev-python/i3ipc-2.0.1[${PYTHON_USEDEP}]')"
+DEPEND="${RDEPEND}"
+BDEPEND="$(python_gen_cond_dep 'dev-python/wheel[${PYTHON_USEDEP}]')"

diff --git a/x11-misc/autotiling/metadata.xml b/x11-misc/autotiling/metadata.xml
new file mode 100644
index 0..8e0f8c8a8
--- /dev/null
+++ b/x11-misc/autotiling/metadata.xml
@@ -0,0 +1,11 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   gen...@tastytea.de
+   Ronny (tastytea) Gutbrod
+   
+   
+   nwg-piotr/autotiling
+   
+



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

2022-10-29 Thread Ronny Gutbrod
commit: 244a0037d5bbdc3dafd6fe828d37bf4973bf54b0
Author: Ronny (tastytea) Gutbrod  tastytea  de>
AuthorDate: Sun Oct 30 01:46:56 2022 +
Commit: Ronny Gutbrod  tastytea  de>
CommitDate: Sun Oct 30 01:59:52 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=244a0037

dev-python/i3ipc: fix some of the tests, disable tests

Tests never worked, it seems. Most of the remaining errors are
AttributeError: 'async_generator' object has no attribute 'foo'

Bug: https://bugs.gentoo.org/800269
Signed-off-by: Ronny (tastytea) Gutbrod  tastytea.de>

 dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild | 16 +++-
 1 file changed, 15 insertions(+), 1 deletion(-)

diff --git a/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild 
b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
index 584d9d7e3..1a00b25ab 100644
--- a/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
+++ b/dev-python/i3ipc/i3ipc-2.2.1-r1.ebuild
@@ -6,7 +6,7 @@ EAPI=8
 DISTUTILS_USE_PEP517="setuptools"
 PYTHON_COMPAT=( python3_{8..11} )
 
-inherit distutils-r1
+inherit distutils-r1 virtualx
 
 DESCRIPTION="An improved Python library to control i3wm and sway."
 HOMEPAGE="https://github.com/altdesktop/i3ipc-python;
@@ -21,5 +21,19 @@ RDEPEND="
dev-python/python-xlib[${PYTHON_USEDEP}]
 "
 DEPEND="${RDEPEND}"
+BDEPEND="
+   ${BDEPEND}
+   test? (
+   dev-python/pytest-asyncio[${PYTHON_USEDEP}]
+   dev-python/pytest-timeout[${PYTHON_USEDEP}]
+   x11-wm/i3
+   )
+"
+
+RESTRICT="test"
 
 distutils_enable_tests pytest
+
+src_test() {
+   virtx distutils-r1_src_test
+}



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

2022-10-29 Thread Matt Turner
commit: b0b339fbd049bfe25a3fa2c56f150bf813e70825
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:51 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0b339fb

dev-libs/vala-common: Set remote-id

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

 dev-libs/vala-common/metadata.xml | 15 ---
 1 file changed, 8 insertions(+), 7 deletions(-)

diff --git a/dev-libs/vala-common/metadata.xml 
b/dev-libs/vala-common/metadata.xml
index 645232af59bf..4b1e36254bfb 100644
--- a/dev-libs/vala-common/metadata.xml
+++ b/dev-libs/vala-common/metadata.xml
@@ -1,11 +1,12 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   cpe:/a:gnome:vala
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+cpe:/a:gnome:vala
+GNOME/vala
+  
 



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

2022-10-29 Thread Matt Turner
commit: 0fc13daa4576d7d89488f320425a2aa2ddf55886
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:50 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0fc13daa

dev-libs/template-glib: Set remote-id

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

 dev-libs/template-glib/metadata.xml | 23 ++-
 1 file changed, 14 insertions(+), 9 deletions(-)

diff --git a/dev-libs/template-glib/metadata.xml 
b/dev-libs/template-glib/metadata.xml
index 14cc9d571919..ad978234f469 100644
--- a/dev-libs/template-glib/metadata.xml
+++ b/dev-libs/template-glib/metadata.xml
@@ -1,13 +1,18 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   Template-GLib is a templating library for GLib. It 
includes a simple template
-   format along with integration into GObject-Introspection for 
properties and
-   methods. It separates the parsing of templates and the 
expansion of templates
-   for faster expansion. You can also define scope, custom 
functions, and more
-   with the embedded expression language.
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Template-GLib is a templating library for GLib. It includes a simple
+template format along with integration into GObject-Introspection for
+properties and methods. It separates the parsing of templates and the
+expansion of templates for faster expansion. You can also define scope,
+custom functions, and more with the embedded expression language.
+  
+  
+GNOME/template-glib
+  
 



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

2022-10-29 Thread Matt Turner
commit: 18c6de5bc138681b34e09d2a10d1afaeb52cb058
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:51 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18c6de5b

dev-python/pyatspi: Set remote-id

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

 dev-python/pyatspi/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-python/pyatspi/metadata.xml b/dev-python/pyatspi/metadata.xml
index 7b343b06be8a..21bc65fb46b2 100644
--- a/dev-python/pyatspi/metadata.xml
+++ b/dev-python/pyatspi/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/pyatspi2
+  
 



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

2022-10-29 Thread Matt Turner
commit: ef32eb41d0c496408bb1473ff3a55840f0ab3e65
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:51 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef32eb41

dev-python/nautilus-python: Set remote-id

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

 dev-python/nautilus-python/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-python/nautilus-python/metadata.xml 
b/dev-python/nautilus-python/metadata.xml
index f453528b934f..6bd821e4a103 100644
--- a/dev-python/nautilus-python/metadata.xml
+++ b/dev-python/nautilus-python/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/nautilus-python
+  
 



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

2022-10-29 Thread Matt Turner
commit: a3ddc6fb1f1673e21e9e56fc5ff5ff2c87f8c0fb
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:51 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:12 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3ddc6fb

dev-python/pygobject: Set remote-id

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

 dev-python/pygobject/metadata.xml | 51 ---
 1 file changed, 26 insertions(+), 25 deletions(-)

diff --git a/dev-python/pygobject/metadata.xml 
b/dev-python/pygobject/metadata.xml
index 1088c8b6c284..526be399f23d 100644
--- a/dev-python/pygobject/metadata.xml
+++ b/dev-python/pygobject/metadata.xml
@@ -1,29 +1,30 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   pyt...@gentoo.org
-   Python
-   
-   
-   GObject is a object system used by GTK+, GStreamer and other 
libraries.
-   PyGObject provides a convenient wrapper for use in Python 
programs when
-   accessing GObject libraries. Like the GObject library itself 
PyGObject
-   is licensed under the GNU LGPL, so is suitable for use in both 
free
-   software and proprietary applications. It is already in use in 
many
-   applications ranging from small single purpose scripts up to 
large full
-   featured applications. PyGObject now dynamically accesses any 
GObject
-   libraries that uses GObject Introspection. It replaces the need 
for
-   separate modules such as PyGTK, GIO and python-gnome to build a 
full
-   GNOME 3.0 application. Once new functionality is added to 
gobject
-   library it is instantly available as a Python API without the 
need for
-   intermediate Python glue.
-   
-   
-   PyGObject
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+pyt...@gentoo.org
+Python
+  
+  
+GObject is a object system used by GTK+, GStreamer and other libraries.
+PyGObject provides a convenient wrapper for use in Python programs when
+accessing GObject libraries. Like the GObject library itself PyGObject
+is licensed under the GNU LGPL, so is suitable for use in both free
+software and proprietary applications. It is already in use in many
+applications ranging from small single purpose scripts up to large full
+featured applications. PyGObject now dynamically accesses any GObject
+libraries that uses GObject Introspection. It replaces the need for
+separate modules such as PyGTK, GIO and python-gnome to build a full
+GNOME 3.0 application. Once new functionality is added to gobject
+library it is instantly available as a Python API without the need for
+intermediate Python glue.
+  
+  
+PyGObject
+GNOME/pygobject
+  
 



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

2022-10-29 Thread Matt Turner
commit: 881793c69e1359780ea40c4c8d933bc6c2294d95
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:47 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=881793c6

dev-libs/libgudev: Set remote-id

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

 dev-libs/libgudev/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/dev-libs/libgudev/metadata.xml b/dev-libs/libgudev/metadata.xml
index 18127d6d0a25..3631e95872ff 100644
--- a/dev-libs/libgudev/metadata.xml
+++ b/dev-libs/libgudev/metadata.xml
@@ -1,11 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   syst...@gentoo.org
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+syst...@gentoo.org
+  
+  
+GNOME/libgudev
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/totem-pl-parser/

2022-10-29 Thread Matt Turner
commit: 18fcf99df51bd9530330ede303016da2cb12ac7b
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:50 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=18fcf99d

dev-libs/totem-pl-parser: Set remote-id

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

 dev-libs/totem-pl-parser/metadata.xml | 21 -
 1 file changed, 12 insertions(+), 9 deletions(-)

diff --git a/dev-libs/totem-pl-parser/metadata.xml 
b/dev-libs/totem-pl-parser/metadata.xml
index dbd8e554c94b..6f7ef06ed54d 100644
--- a/dev-libs/totem-pl-parser/metadata.xml
+++ b/dev-libs/totem-pl-parser/metadata.xml
@@ -1,13 +1,16 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Enables ISO detection with 
app-arch/libarchive
-   Support AmazonAMZ decoding with 
dev-libs/libgcrypt
-   Enable charset discovery via 
app-i18n/uchardet
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Enables ISO detection with 
app-arch/libarchive
+Support AmazonAMZ decoding with 
dev-libs/libgcrypt
+Enable charset discovery via 
app-i18n/uchardet
+  
+  
+GNOME/totem-pl-parser
+  
 



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

2022-10-29 Thread Matt Turner
commit: 19d29aec9a4d1719eb7f6f76bb06871048b86d29
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:48 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19d29aec

dev-libs/libmanette: Set remote-id

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

 dev-libs/libmanette/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libmanette/metadata.xml b/dev-libs/libmanette/metadata.xml
index 7b343b06be8a..6fde13aaf331 100644
--- a/dev-libs/libmanette/metadata.xml
+++ b/dev-libs/libmanette/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/libmanette
+  
 



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

2022-10-29 Thread Matt Turner
commit: d4b8ecff7300e15e1b5541bbe7fd4b6bc20a3fca
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:49 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b8ecff

dev-libs/libpeas: Set remote-id

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

 dev-libs/libpeas/metadata.xml | 20 +++-
 1 file changed, 11 insertions(+), 9 deletions(-)

diff --git a/dev-libs/libpeas/metadata.xml b/dev-libs/libpeas/metadata.xml
index 94a2afbb3355..bb79b6b4e7bb 100644
--- a/dev-libs/libpeas/metadata.xml
+++ b/dev-libs/libpeas/metadata.xml
@@ -1,13 +1,15 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Install the glade catalog
-   Build support for loading 
dev-lang/python
-   plugins
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Install the glade catalog
+Build support for loading dev-lang/python 
plugins
+  
+  
+GNOME/libpeas
+  
 



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

2022-10-29 Thread Matt Turner
commit: f1c94a37c1095669b120cabc71c831f472aca563
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:49 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1c94a37

dev-libs/libportal: Set remote-id

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

 dev-libs/libportal/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libportal/metadata.xml b/dev-libs/libportal/metadata.xml
index 7b343b06be8a..5cda5e7a3a83 100644
--- a/dev-libs/libportal/metadata.xml
+++ b/dev-libs/libportal/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+flatpak/libportal
+  
 



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

2022-10-29 Thread Matt Turner
commit: 78d9d9b977f6a76e851890f961068a5e62143436
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:50 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=78d9d9b9

dev-libs/link-grammar: Set remote-id

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

 dev-libs/link-grammar/metadata.xml | 42 ++
 1 file changed, 24 insertions(+), 18 deletions(-)

diff --git a/dev-libs/link-grammar/metadata.xml 
b/dev-libs/link-grammar/metadata.xml
index 3f4b9ddbf83e..cde193a9efa3 100644
--- a/dev-libs/link-grammar/metadata.xml
+++ b/dev-libs/link-grammar/metadata.xml
@@ -1,22 +1,28 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   s...@gentoo.org
-   David Seifert
-   
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   The Link Grammar Parser is a syntactic parser of English, 
Russian, Arabic and Persian (and other languages as well),
-   based on Link Grammar, an original theory of syntax and 
morphology. Given a sentence, the system assigns to it a
-   syntactic structure, which consists of a set of labelled links 
connecting pairs of words. The parser also produces a "constituent" 
-   (HPSG style phrase tree) representation of a sentence (showing 
noun phrases, verb phrases, etc.).
-   
-   
-   Adds support for app-text/aspell 
spell checker
-   Adds support for 
app-text/hunspell spell checker
-   
+  
+s...@gentoo.org
+David Seifert
+  
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+The Link Grammar Parser is a syntactic parser of English, Russian, Arabic
+and Persian (and other languages as well), based on Link Grammar, an
+original theory of syntax and morphology. Given a sentence, the system
+assigns to it a syntactic structure, which consists of a set of labelled
+links connecting pairs of words. The parser also produces a "constituent"
+(HPSG style phrase tree) representation of a sentence (showing noun 
phrases,
+verb phrases, etc.).
+  
+  
+Adds support for app-text/aspell spell 
checker
+Adds support for app-text/hunspell spell 
checker
+  
+  
+opencog/link-grammar
+  
 



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

2022-10-29 Thread Matt Turner
commit: 98d0a69afee74553bd48a92ecc3062615f0bda6d
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:49 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98d0a69a

dev-libs/libsigc++: Set remote-id

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

 dev-libs/libsigc++/metadata.xml | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-libs/libsigc++/metadata.xml b/dev-libs/libsigc++/metadata.xml
index fd36943fe888..2ff708ca60de 100644
--- a/dev-libs/libsigc++/metadata.xml
+++ b/dev-libs/libsigc++/metadata.xml
@@ -1,11 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   libsigc
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+libsigcplusplus/libsigcplusplus
+  
 



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

2022-10-29 Thread Matt Turner
commit: ab7df5197112d11f75f4c340ca06bd394e5a6cbb
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:46 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab7df519

dev-libs/libgee: Set remote-id

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

 dev-libs/libgee/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libgee/metadata.xml b/dev-libs/libgee/metadata.xml
index 7b343b06be8a..deb03f934a19 100644
--- a/dev-libs/libgee/metadata.xml
+++ b/dev-libs/libgee/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/libgee
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/libgnome-games-support/

2022-10-29 Thread Matt Turner
commit: 6869f42036dbc0c5bec77d5f6e35b9b00e79e9c0
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:47 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6869f420

dev-libs/libgnome-games-support: Set remote-id

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

 dev-libs/libgnome-games-support/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libgnome-games-support/metadata.xml 
b/dev-libs/libgnome-games-support/metadata.xml
index 7b343b06be8a..2b249aaf1ba5 100644
--- a/dev-libs/libgnome-games-support/metadata.xml
+++ b/dev-libs/libgnome-games-support/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/libgnome-games-support
+  
 



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

2022-10-29 Thread Matt Turner
commit: 793e168cf7d0a622dd0abc6d3446620edb9c5453
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:48 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=793e168c

dev-libs/libgweather: Set remote-id

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

 dev-libs/libgweather/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/dev-libs/libgweather/metadata.xml 
b/dev-libs/libgweather/metadata.xml
index 08beabc9aa1f..f9ab907e6cd0 100644
--- a/dev-libs/libgweather/metadata.xml
+++ b/dev-libs/libgweather/metadata.xml
@@ -1,11 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Installs catalog files for 
dev-util/glade
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Installs catalog files for 
dev-util/glade
+  
+  
+GNOME/libgweather
+  
 



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

2022-10-29 Thread Matt Turner
commit: 7849f4b4da004b6996d1540bb572f328477d5756
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:49 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:11 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7849f4b4

dev-libs/libpwquality: Set remote-id

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

 dev-libs/libpwquality/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libpwquality/metadata.xml 
b/dev-libs/libpwquality/metadata.xml
index 7b343b06be8a..362c8aacbdb1 100644
--- a/dev-libs/libpwquality/metadata.xml
+++ b/dev-libs/libpwquality/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+libpwquality/libpwquality
+  
 



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

2022-10-29 Thread Matt Turner
commit: 4121bbbdf7784d539cb45dad412f6503821f0a39
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:46 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4121bbbd

dev-libs/libgdata: Set remote-id

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

 dev-libs/libgdata/metadata.xml | 19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/dev-libs/libgdata/metadata.xml b/dev-libs/libgdata/metadata.xml
index 670d43a33227..6a646ad90c56 100644
--- a/dev-libs/libgdata/metadata.xml
+++ b/dev-libs/libgdata/metadata.xml
@@ -1,12 +1,15 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Use app-crypt/gcr for keeping tokens and 
passwords in non-pageable memory for improved security
-   Enable 
net-libs/gnome-online-accounts support
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Use app-crypt/gcr for keeping tokens and 
passwords in non-pageable memory for improved security
+Enable 
net-libs/gnome-online-accounts support
+  
+  
+GNOME/libgdata
+  
 



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

2022-10-29 Thread Matt Turner
commit: 3066c188c1b48489124b2839bd011a0982182cd1
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:47 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3066c188

dev-libs/libgit2-glib: Set remote-id

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

 dev-libs/libgit2-glib/metadata.xml | 25 ++---
 1 file changed, 14 insertions(+), 11 deletions(-)

diff --git a/dev-libs/libgit2-glib/metadata.xml 
b/dev-libs/libgit2-glib/metadata.xml
index 954cf460d078..d755c18f7e38 100644
--- a/dev-libs/libgit2-glib/metadata.xml
+++ b/dev-libs/libgit2-glib/metadata.xml
@@ -1,15 +1,18 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   mgo...@gentoo.org
-   Michał Górny
-   
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Enable SSH transport support
-   
+  
+mgo...@gentoo.org
+Michał Górny
+  
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Enable SSH transport support
+  
+  
+GNOME/libgit2-glib
+  
 



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

2022-10-29 Thread Matt Turner
commit: e3c9b54694ee9d4e77396beefe0a106fb8f5983f
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:47 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sun Oct 30 01:49:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e3c9b546

dev-libs/libglib-testing: Set remote-id

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

 dev-libs/libglib-testing/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/libglib-testing/metadata.xml 
b/dev-libs/libglib-testing/metadata.xml
index f453528b934f..dbd98707d5ef 100644
--- a/dev-libs/libglib-testing/metadata.xml
+++ b/dev-libs/libglib-testing/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+pwithnall/libglib-testing
+  
 



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

2022-10-29 Thread John Helmert III
commit: 7df428f6625d151cac02b434a14c5440c9799b10
Author: John Helmert III  gentoo  org>
AuthorDate: Sun Oct 30 01:46:24 2022 +
Commit: John Helmert III  gentoo  org>
CommitDate: Sun Oct 30 01:47:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7df428f6

x11-wm/i3-gaps: add 4.21.1

Signed-off-by: John Helmert III  gentoo.org>

 x11-wm/i3-gaps/Manifest  |  1 +
 x11-wm/i3-gaps/i3-gaps-4.21.1.ebuild | 85 
 2 files changed, 86 insertions(+)

diff --git a/x11-wm/i3-gaps/Manifest b/x11-wm/i3-gaps/Manifest
index 6bdcaf70fca1..e630aa455874 100644
--- a/x11-wm/i3-gaps/Manifest
+++ b/x11-wm/i3-gaps/Manifest
@@ -1,2 +1,3 @@
 DIST i3-gaps-4.20.1.tar.gz 4199697 BLAKE2B 
b9297f95d8e29f6bcc2fa89ba99c30bd9c4df3549de8b4eff018c0ad1e39e1c5a89281e5a0994596b6af08e8bdf94b8df87042023dc757fa2596770484be
 SHA512 
0f3cab505f5dcd11d4d9ab63aa84d7d90e63ffebe6a867c9592c7979fe57d37db69869d555ea2127b84caa108778a028e03fa8fab1432d897c02723e3c83e6ba
+DIST i3-gaps-4.21.1.tar.gz 4214689 BLAKE2B 
5194a9b148c9909834f70c6cc3aaf771682bf0f1874358ef8c54004fa62fa4a648ccbf42c7e122a8f1d2769773efb3a39378a426506bff59400258ca0d485687
 SHA512 
9ef5bd2b658609907b0f76894508fdf2f9b94b85e5d211489f7b4bf7d98e8a66a670a040c8770f85795d929c8e07239cacc50082c6044ee78cf51633a78b4ce4
 DIST i3-gaps-4.21.tar.gz 4212229 BLAKE2B 
ee871dcb374d3dadbcf3c1b4be230be9b608902c2cc9923a635d2fb8f3896e01361b270c09ec69d5a0bddd4b53181db8e6545346a03a30df53d6dccf6b990514
 SHA512 
5bf423977a92e8d428eb13019bd683948584c876429290b17e118135e8d9cc16545dd62ee07befd54adfc0f3dba3c0f7748e58e3fe4f3aa484e3f00a9af75a16

diff --git a/x11-wm/i3-gaps/i3-gaps-4.21.1.ebuild 
b/x11-wm/i3-gaps/i3-gaps-4.21.1.ebuild
new file mode 100644
index ..c4a28a87b33f
--- /dev/null
+++ b/x11-wm/i3-gaps/i3-gaps-4.21.1.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit meson optfeature
+
+DESCRIPTION="i3 fork with gaps and some more features"
+HOMEPAGE="https://github.com/Airblader/i3;
+SRC_URI="https://github.com/Airblader/i3/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/i3-${PV}"
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="doc test"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="dev-libs/glib:2
+   dev-libs/libev
+   dev-libs/libpcre2
+   dev-libs/yajl:=
+   x11-libs/cairo[X,xcb(+)]
+   x11-libs/libxcb:=
+   x11-libs/libxkbcommon[X]
+   x11-libs/pango[X]
+   x11-libs/startup-notification
+   x11-libs/xcb-util
+   x11-libs/xcb-util-cursor
+   x11-libs/xcb-util-keysyms
+   x11-libs/xcb-util-wm
+   x11-libs/xcb-util-xrm"
+DEPEND="${COMMON_DEPEND}
+   test? (
+   dev-perl/ExtUtils-PkgConfig
+   dev-perl/IPC-Run
+   dev-perl/Inline
+   dev-perl/Inline-C
+   dev-perl/X11-XCB
+   dev-perl/XS-Object-Magic
+   x11-apps/xhost
+   x11-base/xorg-server[xephyr,xvfb]
+   x11-misc/xvfb-run
+   )"
+BDEPEND="app-text/asciidoc
+   app-text/xmlto
+   dev-lang/perl
+   virtual/pkgconfig"
+RDEPEND="${COMMON_DEPEND}
+   dev-lang/perl
+   dev-perl/AnyEvent-I3
+   dev-perl/JSON-XS
+   !x11-wm/i3"
+
+DOCS=( RELEASE-NOTES-$(ver_cut 1-3) )
+
+PATCHES=(
+   "${FILESDIR}/${PN}-4.18-musl.patch"
+)
+
+src_configure() {
+   local emesonargs=(
+   -Ddocdir="/usr/share/doc/${PF}"
+   -Ddocs=$(usex doc true false)
+   -Dmans=true
+   )
+
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+
+   exeinto /etc/X11/Sessions
+   newexe - i3wm <<- EOF
+   #!/usr/bin/env sh
+   exec /usr/bin/i3
+   EOF
+}
+
+pkg_postinst() {
+   optfeature "Application launcher" x11-misc/dmenu
+   optfeature "Simple screen locker" x11-misc/i3lock
+   optfeature "Status bar generator" x11-misc/i3status
+}



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

2022-10-29 Thread Maciej Barć
commit: 657f03a9b31cfd11be0326e9fc96ca6e061d64f7
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Oct 30 01:13:29 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Oct 30 01:14:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657f03a9

sys-apps/razer-cli: fix metadata.xml upstream info

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

 sys-apps/razer-cli/metadata.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/razer-cli/metadata.xml b/sys-apps/razer-cli/metadata.xml
index 46f8e78aef64..2141ca61c288 100644
--- a/sys-apps/razer-cli/metadata.xml
+++ b/sys-apps/razer-cli/metadata.xml
@@ -14,7 +14,7 @@
 Pywal's colors.
   
   
-https://gitlab.com/LoLei/razer-cli/-/issues/
-LoLei/razer-cli
+https://github.com/LoLei/razer-cli/-/issues/
+LoLei/razer-cli
   
 



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

2022-10-29 Thread Maciej Barć
commit: 4dcc7a47101df332b9a15face741c68901d0a525
Author: Maciej Barć  gentoo  org>
AuthorDate: Sun Oct 30 01:12:52 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sun Oct 30 01:14:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4dcc7a47

app-admin/keepassxc: bump to 2.7.4

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

 app-admin/keepassxc/Manifest   |   1 +
 .../keepassxc/files/keepassxc-2.7.4-tests.patch|  13 +++
 app-admin/keepassxc/keepassxc-2.7.4.ebuild | 101 +
 3 files changed, 115 insertions(+)

diff --git a/app-admin/keepassxc/Manifest b/app-admin/keepassxc/Manifest
index b05501f8dc26..40e3c23e67d0 100644
--- a/app-admin/keepassxc/Manifest
+++ b/app-admin/keepassxc/Manifest
@@ -1,2 +1,3 @@
 DIST keepassxc-2.7.1.tar.gz 11168642 BLAKE2B 
4708821c596e8fc736e086a700d5526be6d9c4cfcb270e3a0a8b73395e9ca3544cbb5973494b15d66e0b98264f4e79d9fa122961407211d346275a9aa1bd5cae
 SHA512 
c2f780ba1f464b32f741d1c6e83734ff220de56dce382f3c38d940abf255d689559c13bff6ad565c38c18cfdb1d883aca52650dba0486e3e28bb4ef872253cc9
 DIST keepassxc-2.7.3-src.tar.xz 8963496 BLAKE2B 
7f467960eb618d771e24980caa41ee15ecbb2bbfc6c0d37ddf1c8209e06b81a30b157c9ce00b3fd6c91c39ebaad60cec3513f7c1a64c8b7e0e2f0a116246f080
 SHA512 
29bf067308915d5ac7843eff3bcfb6c4c53a2108e9e2f5349ed03a0b8893f143dcc743cfc175c0831709bafef566d66baa31c5fe3e6fa5fc9c621bf87362e842
+DIST keepassxc-2.7.4-src.tar.xz 8957372 BLAKE2B 
5b8ea105c35956f85779187df624f373f9e6937e1edc454b2a5cbc851ddd2ef0dd556ec74242e3a67c314c1e4b0750987a498d245c3463a5e92254ad0c394ab4
 SHA512 
76b6ba0891d9ba92a5794ba6f25dc8a28f7c1c0f010c31dd49d52ac4c5f186d9c4b51e6f054102b6dfe2d8e766607455829c1994c7ea238efc8f172bbe29b8eb

diff --git a/app-admin/keepassxc/files/keepassxc-2.7.4-tests.patch 
b/app-admin/keepassxc/files/keepassxc-2.7.4-tests.patch
new file mode 100644
index ..ccee26cb5ba9
--- /dev/null
+++ b/app-admin/keepassxc/files/keepassxc-2.7.4-tests.patch
@@ -0,0 +1,13 @@
+--- a/tests/CMakeLists.txt
 b/tests/CMakeLists.txt
+@@ -231,10 +231,6 @@ if(WITH_XC_BROWSER)
+ LIBS ${TEST_LIBRARIES})
+ endif()
+ 
+-add_unit_test(NAME testcli SOURCES TestCli.cpp
+-LIBS testsupport cli ${TEST_LIBRARIES})
+-target_compile_definitions(testcli PRIVATE 
KEEPASSX_CLI_PATH="$")
+-
+ if(WITH_GUI_TESTS)
+ add_subdirectory(gui)
+ endif(WITH_GUI_TESTS)

diff --git a/app-admin/keepassxc/keepassxc-2.7.4.ebuild 
b/app-admin/keepassxc/keepassxc-2.7.4.ebuild
new file mode 100644
index ..eced3151172f
--- /dev/null
+++ b/app-admin/keepassxc/keepassxc-2.7.4.ebuild
@@ -0,0 +1,101 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake flag-o-matic xdg
+
+DESCRIPTION="KeePassXC - KeePass Cross-platform Community Edition"
+HOMEPAGE="https://keepassxc.org/
+   https://github.com/keepassxreboot/keepassxc/;
+
+if [[ "${PV}" != * ]] ; then
+   if [[ "${PV}" == *_beta* ]] ; then
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV/_/-}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/${P/_/-}"
+   else
+   
#SRC_URI="https://github.com/keepassxreboot/keepassxc/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   
SRC_URI="https://github.com/keepassxreboot/keepassxc/releases/download/${PV}/${P}-src.tar.xz;
+   KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
+   fi
+else
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/keepassxreboot/${PN};
+   [[ "${PV}" !=  ]] && EGIT_BRANCH="master"
+fi
+
+LICENSE="LGPL-2.1 GPL-2 GPL-3"
+SLOT="0"
+IUSE="X autotype browser doc keeshare +network test yubikey"
+
+RESTRICT="!test? ( test )"
+REQUIRED_USE="autotype? ( X )"
+
+RDEPEND="
+   app-crypt/argon2:=
+   dev-libs/botan:2=
+   dev-qt/qtconcurrent:5
+   dev-qt/qtcore:5
+   dev-qt/qtdbus:5
+   dev-qt/qtgui:5
+   dev-qt/qtnetwork:5
+   dev-qt/qtsvg:5
+   dev-qt/qtwidgets:5
+   media-gfx/qrencode:=
+   sys-libs/readline:0=
+   sys-libs/zlib:=
+   X? ( dev-qt/qtx11extras:5 )
+   autotype? (
+   x11-libs/libX11
+   x11-libs/libXtst
+   )
+   keeshare? ( sys-libs/zlib:=[minizip] )
+   yubikey? (
+   dev-libs/libusb:1
+   sys-apps/pcsc-lite
+   )
+"
+DEPEND="${RDEPEND}
+   dev-qt/qttest:5
+"
+BDEPEND="
+   dev-qt/linguist-tools:5
+   doc? ( dev-ruby/asciidoctor )
+"
+
+PATCHES=( "${FILESDIR}"/${P}-tests.patch )
+
+src_prepare() {
+   if [[ "${PV}" != *_beta* ]] && [[ "${PV}" != * ]] && [[ ! -f 
.version ]] ; then
+   printf '%s' "${PV}" > .version || die
+   fi
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # https://github.com/keepassxreboot/keepassxc/issues/5801
+   filter-flags -flto*
+
+   local mycmakeargs=(
+   # Gentoo users enable ccache via 

[gentoo-commits] repo/proj/guru:dev commit in: www-client/browsh/

2022-10-29 Thread Anna Vyalkova
commit: 636fc951f36326e1c4e8cd8f0604f43de3f7f309
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Sat Oct 29 23:42:27 2022 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Sun Oct 30 01:10:54 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=636fc951

www-client/browsh: drop myself as a maintainer

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

 www-client/browsh/metadata.xml | 5 +
 1 file changed, 1 insertion(+), 4 deletions(-)

diff --git a/www-client/browsh/metadata.xml b/www-client/browsh/metadata.xml
index 2796c9289..6a49483ee 100644
--- a/www-client/browsh/metadata.xml
+++ b/www-client/browsh/metadata.xml
@@ -1,6 +1,7 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
+   


Tom Buckley-Houston
@@ -9,8 +10,4 @@
https://github.com/browsh-org/browsh/issues
browsh-org/browsh

-   
-   cyber+gen...@sysrq.in
-   Anna
-   
 



[gentoo-commits] repo/gentoo:master commit in: dev-vcs/pre-commit/files/, dev-vcs/pre-commit/

2022-10-29 Thread Marek Szuba
commit: 37fe831d60f51bd1d43c3ff6c34510e78d99ade4
Author: Marek Szuba  gentoo  org>
AuthorDate: Sun Oct 30 00:28:19 2022 +
Commit: Marek Szuba  gentoo  org>
CommitDate: Sun Oct 30 00:31:38 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37fe831d

dev-vcs/pre-commit: drop dependency on dev-python/toml

Backported to 2.20.0 from upstream Git master branch.

Bug: https://bugs.gentoo.org/878677
Signed-off-by: Marek Szuba  gentoo.org>

 dev-vcs/pre-commit/Manifest|  1 +
 .../files/pre-commit-2.20.0-no_toml.patch  | 81 ++
 dev-vcs/pre-commit/pre-commit-2.20.0-r1.ebuild | 54 +++
 3 files changed, 136 insertions(+)

diff --git a/dev-vcs/pre-commit/Manifest b/dev-vcs/pre-commit/Manifest
index 06a74933c9d1..c43c785bb1aa 100644
--- a/dev-vcs/pre-commit/Manifest
+++ b/dev-vcs/pre-commit/Manifest
@@ -1 +1,2 @@
+DIST pre-commit-2.20.0.gh.tar.gz 266604 BLAKE2B 
470f032e6d5bfcdd9ac8ba8f37d4323b601da0c82bcd524ffc575dc688fe81ad326a1f6a8ddd03da6e37130319ee40070c03d9789cd6e0e4b427a1d6e646416e
 SHA512 
b1da558a0e5d8f2f655427089f1d0b11b01ad7513ece7a0b3b67c33529cf3584edba558c78704e6da6ca18876b1d6c0fa8698e01fd7c2439b8d4dc0a93961e52
 DIST pre-commit-2.20.0.tar.gz 266604 BLAKE2B 
470f032e6d5bfcdd9ac8ba8f37d4323b601da0c82bcd524ffc575dc688fe81ad326a1f6a8ddd03da6e37130319ee40070c03d9789cd6e0e4b427a1d6e646416e
 SHA512 
b1da558a0e5d8f2f655427089f1d0b11b01ad7513ece7a0b3b67c33529cf3584edba558c78704e6da6ca18876b1d6c0fa8698e01fd7c2439b8d4dc0a93961e52

diff --git a/dev-vcs/pre-commit/files/pre-commit-2.20.0-no_toml.patch 
b/dev-vcs/pre-commit/files/pre-commit-2.20.0-no_toml.patch
new file mode 100644
index ..f7f335c29e14
--- /dev/null
+++ b/dev-vcs/pre-commit/files/pre-commit-2.20.0-no_toml.patch
@@ -0,0 +1,81 @@
+Backported upstream commit e703982de45ac64492897b25fa4edbdb8da10e62.
+
+--- a/pre_commit/languages/rust.py
 b/pre_commit/languages/rust.py
+@@ -5,8 +5,6 @@
+ from typing import Generator
+ from typing import Sequence
+ 
+-import toml
+-
+ import pre_commit.constants as C
+ from pre_commit.envcontext import envcontext
+ from pre_commit.envcontext import PatchesT
+@@ -38,18 +36,16 @@
+ 
+ 
+ def _add_dependencies(
+-cargo_toml_path: str,
++prefix: Prefix,
+ additional_dependencies: set[str],
+ ) -> None:
+-with open(cargo_toml_path, 'r+') as f:
+-cargo_toml = toml.load(f)
+-cargo_toml.setdefault('dependencies', {})
+-for dep in additional_dependencies:
+-name, _, spec = dep.partition(':')
+-cargo_toml['dependencies'][name] = spec or '*'
+-f.seek(0)
+-toml.dump(cargo_toml, f)
+-f.truncate()
++crates = []
++for dep in additional_dependencies:
++name, _, spec = dep.partition(':')
++crate = f'{name}@{spec or "*"}'
++crates.append(crate)
++
++helpers.run_setup_cmd(prefix, ('cargo', 'add', *crates))
+ 
+ 
+ def install_environment(
+@@ -77,9 +73,6 @@
+ }
+ lib_deps = set(additional_dependencies) - cli_deps
+ 
+-if len(lib_deps) > 0:
+-_add_dependencies(prefix.path('Cargo.toml'), lib_deps)
+-
+ with clean_path_on_failure(directory):
+ packages_to_install: set[tuple[str, ...]] = {('--path', '.')}
+ for cli_dep in cli_deps:
+@@ -90,6 +83,9 @@
+ else:
+ packages_to_install.add((package,))
+ 
++if len(lib_deps) > 0:
++_add_dependencies(prefix, lib_deps)
++
+ for args in packages_to_install:
+ cmd_output_b(
+ 'cargo', 'install', '--bins', '--root', directory, *args,
+--- a/setup.cfg
 b/setup.cfg
+@@ -27,7 +27,6 @@
+ identify>=1.0.0
+ nodeenv>=0.11.1
+ pyyaml>=5.1
+-toml
+ virtualenv>=20.0.8
+ importlib-metadata;python_version<"3.8"
+ python_requires = >=3.7
+--- a/tests/repository_test.py
 b/tests/repository_test.py
+@@ -485,7 +485,7 @@
+ path = make_repo(tempdir_factory, 'rust_hooks_repo')
+ config = make_config_from_repo(path)
+ # A small rust package with no dependencies.
+-deps = ['shellharden:3.1.0']
++deps = ['shellharden:3.1.0', 'git-version']
+ config['hooks'][0]['additional_dependencies'] = deps
+ hook = _get_hook(config, store, 'rust-hook')
+ binaries = os.listdir(

diff --git a/dev-vcs/pre-commit/pre-commit-2.20.0-r1.ebuild 
b/dev-vcs/pre-commit/pre-commit-2.20.0-r1.ebuild
new file mode 100644
index ..5c803594ede5
--- /dev/null
+++ b/dev-vcs/pre-commit/pre-commit-2.20.0-r1.ebuild
@@ -0,0 +1,54 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..11} )
+DISTUTILS_SINGLE_IMPL=1
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_REQ_USE="sqlite"
+
+inherit distutils-r1
+
+DESCRIPTION="A framework for managing and maintaining multi-language Git 
pre-commit hooks"
+HOMEPAGE="https://pre-commit.com/;

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

2022-10-29 Thread Matt Turner
commit: 7b498804356dd72c7ff5ef5183818699ee3b8324
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 23:25:40 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:25:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b498804

app-misc/gnote: Fix remote-id

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

 app-misc/gnote/metadata.xml | 4 
 1 file changed, 4 deletions(-)

diff --git a/app-misc/gnote/metadata.xml b/app-misc/gnote/metadata.xml
index 1a4d262be976..5a6a7a8f19f2 100644
--- a/app-misc/gnote/metadata.xml
+++ b/app-misc/gnote/metadata.xml
@@ -5,10 +5,6 @@
 gn...@gentoo.org
 Gentoo GNOME Desktop
   
-  
-tsuna/boost.m4
-GNOME/gnote
-  
   
 GNOME/gnote
   



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

2022-10-29 Thread Matt Turner
commit: 0c1d9693cdabb0c6a354cb276d8bb30c073c93d7
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:45 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c1d9693

dev-libs/jsonrpc-glib: Set remote-id

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

 dev-libs/jsonrpc-glib/metadata.xml | 19 ---
 1 file changed, 12 insertions(+), 7 deletions(-)

diff --git a/dev-libs/jsonrpc-glib/metadata.xml 
b/dev-libs/jsonrpc-glib/metadata.xml
index a585995a68f3..996a7e66c359 100644
--- a/dev-libs/jsonrpc-glib/metadata.xml
+++ b/dev-libs/jsonrpc-glib/metadata.xml
@@ -1,11 +1,16 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   Jsonrpc-GLib is a JSON-RPC library for GLib. It 
includes support for
-   communicating as both a JSON-RPC client and server. 
Additionally, it
-   supports upgrating connections to use GVariant for less runtime 
overhead.
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Jsonrpc-GLib is a JSON-RPC library for GLib. It includes support for
+communicating as both a JSON-RPC client and server. Additionally, it
+supports upgrating connections to use GVariant for less runtime overhead.
+  
+  
+GNOME/jsonrpc-glib
+  
 



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

2022-10-29 Thread Matt Turner
commit: 9c47998a795d69926fea34ffcd91a65553c118ff
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:45 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9c47998a

dev-libs/json-glib: Set remote-id

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

 dev-libs/json-glib/metadata.xml | 35 +--
 1 file changed, 25 insertions(+), 10 deletions(-)

diff --git a/dev-libs/json-glib/metadata.xml b/dev-libs/json-glib/metadata.xml
index b22a0e7839e3..a753ac3849a1 100644
--- a/dev-libs/json-glib/metadata.xml
+++ b/dev-libs/json-glib/metadata.xml
@@ -1,15 +1,30 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   voyag...@gentoo.org
-   Bernard Cafarelli
-   
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   JSON-GLib is a library providing serialization and 
deserialization support for the JavaScript Object Notation (JSON) format 
described by RFC 4627. Many high-level languages already provide native modules 
for parsing, generating and manipulating JSON data streams. JSON-GLib is a C 
library based on GLib and released under the terms of the GNU Lesser General 
Public License version 2.1. It provides a parser and a generator GObject 
classes and various wrappers for the complex data types employed by JSON, such 
as arrays and objects.
+  
+voyag...@gentoo.org
+Bernard Cafarelli
+  
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+JSON-GLib is a library providing serialization and deserialization support
+for the JavaScript Object Notation (JSON) format described by RFC 4627. 
Many
+high-level languages already provide native modules for parsing, generating
+and manipulating JSON data streams. JSON-GLib is a C library based on GLib
+and released under the terms of the GNU Lesser General Public License
+version 2.1. It provides a parser and a generator GObject classes and
+various wrappers for the complex data types employed by JSON, such as 
arrays
+and objects.
 
-JSON-GLib uses GLib native data types and the generic value container GValue 
for ease of development. It also provides integration with the GObject classes 
for direct serialization into, and deserialization from, JSON data 
streams.
+JSON-GLib uses GLib native data types and the generic value container 
GValue
+for ease of development. It also provides integration with the GObject
+classes for direct serialization into, and deserialization from, JSON data
+streams.
+  
+  
+GNOME/json-glib
+  
 



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

2022-10-29 Thread Matt Turner
commit: c9ea1d39ab31852a53614d37f2b75de792a028fc
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:46 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9ea1d39

dev-libs/libcroco: Set remote-id

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

 dev-libs/libcroco/metadata.xml | 31 +--
 1 file changed, 17 insertions(+), 14 deletions(-)

diff --git a/dev-libs/libcroco/metadata.xml b/dev-libs/libcroco/metadata.xml
index 03f048e38d16..8496381e3f83 100644
--- a/dev-libs/libcroco/metadata.xml
+++ b/dev-libs/libcroco/metadata.xml
@@ -1,19 +1,22 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-The Libcroco project is an effort to build a generic Cascading Style Sheet 
(CSS) parsing and manipulation toolkit that can be used by GNOME applications 
in need of CSS support.
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+The Libcroco project is an effort to build a generic Cascading Style Sheet
+(CSS) parsing and manipulation toolkit that can be used by GNOME
+applications in need of CSS support.
 
-provided is :
-A parser module with : A SAC like api and A CSSOM like api.
-A CSS2 selection engine
-An XML/CSS layout/rendering engine
-
-
-   cpe:/a:gnome:libcroco
-
+provided is:
+A parser module with: A SAC like api and A CSSOM like api.
+A CSS2 selection engine
+An XML/CSS layout/rendering engine
+  
+  
+cpe:/a:gnome:libcroco
+Archive/libcroco
+  
 



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

2022-10-29 Thread Matt Turner
commit: cb04704ca851ac619113906dcc2b0220860665f3
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb04704c

dev-libs/gobject-introspection: Set remote-id

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

 dev-libs/gobject-introspection/metadata.xml | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/dev-libs/gobject-introspection/metadata.xml 
b/dev-libs/gobject-introspection/metadata.xml
index 031ee5f1fb17..ba6ebec84084 100644
--- a/dev-libs/gobject-introspection/metadata.xml
+++ b/dev-libs/gobject-introspection/metadata.xml
@@ -1,12 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Install g-ir-doc-tool for generating documentation
-   from introspected data
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Install g-ir-doc-tool for generating documentation 
from introspected data
+  
+  
+GNOME/gobject-introspection
+  
 



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

2022-10-29 Thread Matt Turner
commit: 73d884f68a9d754b030a0a6ddff5839d5b3902b0
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:46 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=73d884f6

dev-libs/libdazzle: Set remote-id

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

 dev-libs/libdazzle/metadata.xml | 21 +
 1 file changed, 13 insertions(+), 8 deletions(-)

diff --git a/dev-libs/libdazzle/metadata.xml b/dev-libs/libdazzle/metadata.xml
index 01065172e304..6ca5bc16c6d2 100644
--- a/dev-libs/libdazzle/metadata.xml
+++ b/dev-libs/libdazzle/metadata.xml
@@ -1,12 +1,17 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   libdazzle is a collection of fancy features for GLib 
and Gtk+ that aren't quite
-   ready or generic enough for use inside those libraries. This is 
often a proving
-   ground for new widget prototypes. Applications such as Builder 
tend to drive
-   development of this project.
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+libdazzle is a collection of fancy features for GLib and Gtk+ that aren't
+quite ready or generic enough for use inside those libraries. This is
+often a proving ground for new widget prototypes. Applications such as
+Builder tend to drive development of this project.
+  
+  
+GNOME/libdazzle
+  
 



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

2022-10-29 Thread Matt Turner
commit: 8cf41a274e0ceded6b36a5409e938ab38f795427
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf41a27

dev-libs/gjs: Set remote-id

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

 dev-libs/gjs/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-libs/gjs/metadata.xml b/dev-libs/gjs/metadata.xml
index 0cf2f6cd932c..cc6371730cc6 100644
--- a/dev-libs/gjs/metadata.xml
+++ b/dev-libs/gjs/metadata.xml
@@ -8,4 +8,7 @@
   
 Enable profiling data capture support using 
dev-util/sysprof-capture
   
+  
+GNOME/gjs
+  
 



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

2022-10-29 Thread Matt Turner
commit: 53ceb3bcc42f6b9e450fdd8a02b65b24748977a8
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53ceb3bc

dev-libs/glib: Set remote-id

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

 dev-libs/glib/metadata.xml | 71 +++---
 1 file changed, 36 insertions(+), 35 deletions(-)

diff --git a/dev-libs/glib/metadata.xml b/dev-libs/glib/metadata.xml
index 666314897afa..79eb1eaf5706 100644
--- a/dev-libs/glib/metadata.xml
+++ b/dev-libs/glib/metadata.xml
@@ -1,39 +1,40 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   
-   Enable dependencies required by glib libraries
-   using dbus service to manage settings saving
-   
-   
-   Enable support for listing and extracting from
-   ELF resource files with gresource tool
-   
-   
-   Pull in shared MIME database that many glib-based
-   applications require at runtime to detect or open 
files. Warning:
-   do not disable this flag unless installing on a 
headless server.
-   
-   
-   Build support for profiling and tracing using
-   dev-util/systemtap
-   
-   
-   Enable profiling data capture support using
-   dev-util/sysprof-capture
-   
-   
-   Install gtester-report utility to generate test
-   report files for your software; build gresource utility 
with
-   ELF support.
-   
-   
-   
-   cpe:/a:gnome:glib
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+
+  Enable dependencies required by glib libraries
+  using dbus service to manage settings saving
+
+
+  Enable support for listing and extracting from
+  ELF resource files with gresource tool
+
+
+  Pull in shared MIME database that many glib-based
+  applications require at runtime to detect or open files. Warning:
+  do not disable this flag unless installing on a headless server.
+
+
+  Build support for profiling and tracing using
+  dev-util/systemtap
+
+
+  Enable profiling data capture support using
+  dev-util/sysprof-capture
+
+
+  Install gtester-report utility to generate test
+  report files for your software; build gresource utility with
+  ELF support.
+
+  
+  
+cpe:/a:gnome:glib
+GNOME/glib
+  
 



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

2022-10-29 Thread Matt Turner
commit: 40947eac3048d11d3803d08da45c1eccd9056874
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40947eac

dev-libs/gmime: Set remote-id

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

 dev-libs/gmime/metadata.xml | 21 ++---
 1 file changed, 10 insertions(+), 11 deletions(-)

diff --git a/dev-libs/gmime/metadata.xml b/dev-libs/gmime/metadata.xml
index 9c85fe8c3fae..eb5f60282131 100644
--- a/dev-libs/gmime/metadata.xml
+++ b/dev-libs/gmime/metadata.xml
@@ -1,15 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   jstedfast/gmime
-   spruce
-   
-   
-   Enable experimental S/MIME support
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+jstedfast/gmime
+  
+  
+Enable experimental S/MIME support
+  
 



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

2022-10-29 Thread Matt Turner
commit: dd6fe8954b97458de4a0c985790482981005386f
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:42 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd6fe895

dev-cpp/gtkmm: Set remote-id

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

 dev-cpp/gtkmm/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/gtkmm/metadata.xml b/dev-cpp/gtkmm/metadata.xml
index 7b343b06be8a..0cb7765fe8c2 100644
--- a/dev-cpp/gtkmm/metadata.xml
+++ b/dev-cpp/gtkmm/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gtkmm
+  
 



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

2022-10-29 Thread Matt Turner
commit: 957aca204f28c59b87b5c8add59b686943895898
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:45 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=957aca20

dev-libs/gom: Set remote-id

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

 dev-libs/gom/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/gom/metadata.xml b/dev-libs/gom/metadata.xml
index 7b343b06be8a..6bfec25d5bcb 100644
--- a/dev-libs/gom/metadata.xml
+++ b/dev-libs/gom/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gom
+  
 



[gentoo-commits] repo/gentoo:master commit in: dev-libs/gobject-introspection-common/

2022-10-29 Thread Matt Turner
commit: dd28813fbb739b0f998db350f805458aeb144ac4
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:45 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd28813f

dev-libs/gobject-introspection-common: Set remote-id

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

 dev-libs/gobject-introspection-common/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/gobject-introspection-common/metadata.xml 
b/dev-libs/gobject-introspection-common/metadata.xml
index 7b343b06be8a..819a2b39b6f5 100644
--- a/dev-libs/gobject-introspection-common/metadata.xml
+++ b/dev-libs/gobject-introspection-common/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gobject-introspection
+  
 



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

2022-10-29 Thread Matt Turner
commit: 765b87527900fd2d103689d8b6039b207bab2171
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:43 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=765b8752

dev-libs/folks: Set remote-id

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

 dev-libs/folks/metadata.xml | 19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/dev-libs/folks/metadata.xml b/dev-libs/folks/metadata.xml
index 594d5fe04cab..96c6f3f743fd 100644
--- a/dev-libs/folks/metadata.xml
+++ b/dev-libs/folks/metadata.xml
@@ -1,12 +1,15 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Load contacts from the Telepathy framework
-   Build the folks-inspect utility
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Load contacts from the Telepathy framework
+Build the folks-inspect utility
+  
+  
+GNOME/folks
+  
 



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

2022-10-29 Thread Matt Turner
commit: 8664b34bb55ff069bd999de1e8c2fa11d5048bae
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:43 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8664b34b

dev-libs/atk: Set remote-id

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

 dev-libs/atk/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/atk/metadata.xml b/dev-libs/atk/metadata.xml
index 7b343b06be8a..926e1a48f132 100644
--- a/dev-libs/atk/metadata.xml
+++ b/dev-libs/atk/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/atk
+  
 



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

2022-10-29 Thread Matt Turner
commit: 261d3b286ae42e68b59f28ffc8a29db39af7f428
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:43 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=261d3b28

dev-lang/vala: Set remote-id

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

 dev-lang/vala/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/dev-lang/vala/metadata.xml b/dev-lang/vala/metadata.xml
index dd3f3f4b5016..f70d60eaeb64 100644
--- a/dev-lang/vala/metadata.xml
+++ b/dev-lang/vala/metadata.xml
@@ -1,11 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Installs valadoc documentation generation 
tool
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Installs valadoc documentation generation tool
+  
+  
+GNOME/vala
+  
 



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

2022-10-29 Thread Matt Turner
commit: 0dc2d162ed170d5656bd56a6568fe48507613a06
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:44 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0dc2d162

dev-libs/gdl: Set remote-id

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

 dev-libs/gdl/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-libs/gdl/metadata.xml b/dev-libs/gdl/metadata.xml
index 7b343b06be8a..a01ad86d029c 100644
--- a/dev-libs/gdl/metadata.xml
+++ b/dev-libs/gdl/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gdl
+  
 



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

2022-10-29 Thread Matt Turner
commit: a9e998da95d16e8884b3f003fd69f753b9639f47
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:42 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9e998da

dev-cpp/libxmlpp: Set remote-id

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

 dev-cpp/libxmlpp/metadata.xml | 14 +++---
 1 file changed, 7 insertions(+), 7 deletions(-)

diff --git a/dev-cpp/libxmlpp/metadata.xml b/dev-cpp/libxmlpp/metadata.xml
index b5c22b75a1f7..7b0dcfdb7c39 100644
--- a/dev-cpp/libxmlpp/metadata.xml
+++ b/dev-cpp/libxmlpp/metadata.xml
@@ -1,11 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   libxmlplusplus
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+libxmlplusplus/libxmlplusplus
+  
 



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

2022-10-29 Thread Matt Turner
commit: 9290740bf1660d760705f6d0eb8e9d38318cd6b1
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:42 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9290740b

dev-cpp/pangomm: Set remote-id

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

 dev-cpp/pangomm/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/pangomm/metadata.xml b/dev-cpp/pangomm/metadata.xml
index 7b343b06be8a..897bd48f1fa3 100644
--- a/dev-cpp/pangomm/metadata.xml
+++ b/dev-cpp/pangomm/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/pangomm
+  
 



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

2022-10-29 Thread Matt Turner
commit: cb9929d0c742fdb75b118ac11f038a112910a768
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:42 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9929d0

dev-cpp/mm-common: Set remote-id

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

 dev-cpp/mm-common/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/mm-common/metadata.xml b/dev-cpp/mm-common/metadata.xml
index 7b343b06be8a..2c285e4de70a 100644
--- a/dev-cpp/mm-common/metadata.xml
+++ b/dev-cpp/mm-common/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/mm-common
+  
 



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

2022-10-29 Thread Matt Turner
commit: 7654f92a9ea4e2acfaca482dc094c9460ff89f07
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:41 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7654f92a

dev-cpp/cairomm: Set remote-id

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

 dev-cpp/cairomm/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/cairomm/metadata.xml b/dev-cpp/cairomm/metadata.xml
index 7b343b06be8a..04715ff9071f 100644
--- a/dev-cpp/cairomm/metadata.xml
+++ b/dev-cpp/cairomm/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+cairo/cairomm
+  
 



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

2022-10-29 Thread Matt Turner
commit: 90b770da911e548ffc4ceae05853ed060c0e65cc
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:41 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=90b770da

dev-cpp/atkmm: Set remote-id

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

 dev-cpp/atkmm/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/atkmm/metadata.xml b/dev-cpp/atkmm/metadata.xml
index 7b343b06be8a..73dadc014fdd 100644
--- a/dev-cpp/atkmm/metadata.xml
+++ b/dev-cpp/atkmm/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/atkmm
+  
 



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

2022-10-29 Thread Matt Turner
commit: 7998f2cce36bf8aae06978c9a8fad6a3c99fe695
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:41 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7998f2cc

dev-cpp/glibmm: Set remote-id

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

 dev-cpp/glibmm/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/dev-cpp/glibmm/metadata.xml b/dev-cpp/glibmm/metadata.xml
index 7b343b06be8a..ec700d09051c 100644
--- a/dev-cpp/glibmm/metadata.xml
+++ b/dev-cpp/glibmm/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/glibmm
+  
 



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

2022-10-29 Thread Matt Turner
commit: f1ab96d66e644f05ceb7eb425f6060ab215b9cfe
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:42 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1ab96d6

dev-cpp/gtksourceviewmm: Set remote-id

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

 dev-cpp/gtksourceviewmm/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-cpp/gtksourceviewmm/metadata.xml 
b/dev-cpp/gtksourceviewmm/metadata.xml
index c6e394b17a27..df689d1fb575 100644
--- a/dev-cpp/gtksourceviewmm/metadata.xml
+++ b/dev-cpp/gtksourceviewmm/metadata.xml
@@ -5,4 +5,7 @@
 gn...@gentoo.org
 Gentoo GNOME Desktop
   
+  
+GNOME/gtksourceviewmm
+  
 



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

2022-10-29 Thread Matt Turner
commit: 49c9e303493703d7cf71b1fc01c35bbdbeafbffa
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:41 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49c9e303

dev-cpp/gstreamermm: Set remote-id

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

 dev-cpp/gstreamermm/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/dev-cpp/gstreamermm/metadata.xml b/dev-cpp/gstreamermm/metadata.xml
index c6e394b17a27..79ee74f2fa98 100644
--- a/dev-cpp/gstreamermm/metadata.xml
+++ b/dev-cpp/gstreamermm/metadata.xml
@@ -5,4 +5,7 @@
 gn...@gentoo.org
 Gentoo GNOME Desktop
   
+  
+GNOME/gstreamermm
+  
 



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

2022-10-29 Thread Matt Turner
commit: 2445e1d11ef1b2bb5e929109b058c26f3bc4bbc3
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:40 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2445e1d1

app-text/libgxps: Set remote-id

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

 app-text/libgxps/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-text/libgxps/metadata.xml b/app-text/libgxps/metadata.xml
index 7b343b06be8a..d3a4eae54712 100644
--- a/app-text/libgxps/metadata.xml
+++ b/app-text/libgxps/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/libgxps
+  
 



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

2022-10-29 Thread Matt Turner
commit: 786eb40631989fcfeacf5c36687d7883e2ce3824
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:40 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 23:20:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=786eb406

app-text/yelp-tools: Set remote-id

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

 app-text/yelp-tools/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-text/yelp-tools/metadata.xml b/app-text/yelp-tools/metadata.xml
index 7b343b06be8a..ff91c5812f07 100644
--- a/app-text/yelp-tools/metadata.xml
+++ b/app-text/yelp-tools/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/yelp-tools
+  
 



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

2022-10-29 Thread Sergey Torokhov
commit: 379ce8f75a4896a24cbc2a97887809689c91012e
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sat Oct 29 23:07:57 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sat Oct 29 23:07:57 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=379ce8f7

dev-vcs/gitqlient: 1.5.0 update tarball with containing all submodules

After release of 1.5.0 on 25 June 2022 the upstream
prepare tarball of GitQlient that contains all required
submodules within (on 04 July 2022).

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

 dev-vcs/gitqlient/Manifest  |  6 +--
 dev-vcs/gitqlient/gitqlient-1.5.0-r1.ebuild | 49 ++
 dev-vcs/gitqlient/gitqlient-1.5.0.ebuild| 65 -
 3 files changed, 50 insertions(+), 70 deletions(-)

diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 76df10480..9c7aa605c 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1,5 +1 @@
-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
+DIST gitqlient-1.5.0.tar.gz 4969914 BLAKE2B 
9739e333fa20fee724f948cf7a8109b932b7ac8ebfe8465cdc374774f21c105d6467078322012eec8ce82c1b92f9b5e4f32b24885d5ab218b64544a2c2ad6504
 SHA512 
32f838c75314aca67880354127f2cdc00ed6ce0c6b315dd9571d00dbebca4896e975d73ef779dae5c1953f62387992e573ee95f32545e41e59f5066ae8f11662

diff --git a/dev-vcs/gitqlient/gitqlient-1.5.0-r1.ebuild 
b/dev-vcs/gitqlient/gitqlient-1.5.0-r1.ebuild
new file mode 100644
index 0..456f30fd7
--- /dev/null
+++ b/dev-vcs/gitqlient/gitqlient-1.5.0-r1.ebuild
@@ -0,0 +1,49 @@
+# 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"
+
+DESCRIPTION="Multi-platform Git client written with Qt"
+HOMEPAGE="https://github.com/francescmm/GitQlient;
+
+SRC_URI="https://github.com/francescmm/${MY_PN}/releases/download/v${PV}/${PN}_${PV}.tar.gz
 -> ${P}.tar.gz"
+KEYWORDS="~amd64 ~x86"
+S="${WORKDIR}/${PN}_${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() {
+   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
+   # Drop 'fatal' warning on version detection via git command:
+   sed -i -e "/VERSION =/s: \$\$system(git rev-parse --short HEAD)::" 
"${MY_PN}".pro || die
+}
+
+src_configure() {
+   eqmake5 PREFIX=/usr "${MY_PN}".pro
+}
+
+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]
+}

diff --git a/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild 
b/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild
deleted file mode 100644
index 6dd457f67..0
--- a/dev-vcs/gitqlient/gitqlient-1.5.0.ebuild
+++ /dev/null
@@ -1,65 +0,0 @@
-# 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"

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

2022-10-29 Thread Maciej Barć
commit: 025d31daf7b0823d68b1e033dc1067ff9f83a65c
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Oct 29 22:59:03 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Oct 29 23:06:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=025d31da

dev-scheme/guile-hall: new package; add 0.4.1

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

 dev-scheme/guile-hall/Manifest|  1 +
 dev-scheme/guile-hall/guile-hall-0.4.1.ebuild | 34 +++
 dev-scheme/guile-hall/metadata.xml| 19 +++
 3 files changed, 54 insertions(+)

diff --git a/dev-scheme/guile-hall/Manifest b/dev-scheme/guile-hall/Manifest
new file mode 100644
index ..1218810edb91
--- /dev/null
+++ b/dev-scheme/guile-hall/Manifest
@@ -0,0 +1 @@
+DIST guile-hall-0.4.1.tar.bz2 52701 BLAKE2B 
0e6e8f680d1b6e76116c44bd2322d2f2e1e167bae857277d528cffa13079aff6a4dc796fce52c3f46baa737824f711e827b6940d7a30e4c21890154c032db24e
 SHA512 
a7c150cab6df7e181a9eabe8ace8b32c3e70529ee4b2fcd63f34fa193ce64695e6da7a25aafe5bb0c068696e2d5dd0698ad9d62ac559ec350dca7eda5444d10d

diff --git a/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild 
b/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild
new file mode 100644
index ..e1b97e505f3d
--- /dev/null
+++ b/dev-scheme/guile-hall/guile-hall-0.4.1.ebuild
@@ -0,0 +1,34 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Guile tooling to create and publish projects"
+HOMEPAGE="https://gitlab.com/a-sassmannshausen/guile-hall/;
+SRC_URI="https://gitlab.com/a-sassmannshausen/${PN}/-/archive/${PV}/${P}.tar.bz2;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="strip"
+
+RDEPEND="
+   >=dev-scheme/guile-2.0.0:=
+   dev-scheme/guile-config
+"
+DEPEND="${RDEPEND}"
+
+# guile generates ELF files without use of C or machine code
+# It's a portage's false positive. bug #677600
+QA_PREBUILT='*[.]go'
+
+src_prepare() {
+   default
+
+   # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
+   find "${S}" -name "*.scm" -exec touch {} + || die
+
+   eautoreconf
+}

diff --git a/dev-scheme/guile-hall/metadata.xml 
b/dev-scheme/guile-hall/metadata.xml
new file mode 100644
index ..8e2e942bff64
--- /dev/null
+++ b/dev-scheme/guile-hall/metadata.xml
@@ -0,0 +1,19 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+
+  
+sch...@gentoo.org
+Gentoo Scheme Project
+  
+  
+Hall is a command-line application and a set of Guile libraries that allow
+you to quickly create and publish Guile projects. It allows you to
+transparently support the GNU build system, manage a project hierarchy and
+provides tight coupling to Guix.
+  
+  
+
https://gitlab.com/a-sassmannshausen/guile-hall/-/issues/
+a-sassmannshausen/guile-hall
+  
+



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

2022-10-29 Thread Maciej Barć
commit: a4526fa185864c10c378bc2d824b878fa83e03e5
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Oct 29 22:53:05 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Oct 29 23:06:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4526fa1

dev-scheme/guile-config: new package; add 0.5.1

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

 dev-scheme/guile-config/Manifest  |  1 +
 dev-scheme/guile-config/guile-config-0.5.1.ebuild | 31 +++
 dev-scheme/guile-config/metadata.xml  | 22 
 3 files changed, 54 insertions(+)

diff --git a/dev-scheme/guile-config/Manifest b/dev-scheme/guile-config/Manifest
new file mode 100644
index ..3eed67e46419
--- /dev/null
+++ b/dev-scheme/guile-config/Manifest
@@ -0,0 +1 @@
+DIST guile-config-0.5.1.tar.bz2 54872 BLAKE2B 
79c5995410d2af1b4f542eca925a8130cbbfe6c6d58606cdb58e4f3863714f1f7803b253f367b30da1614cc2f86a038760764043e72c50972fb74ad71b8f9f21
 SHA512 
5f7bc95a4c010e14b28f72f980c003caa0b08cca3b5e927dfeb0ad8e6a0751fc51c22e21dee5c0aa1531bc5c40ee26f95960d342647f23db3d54de12518a431a

diff --git a/dev-scheme/guile-config/guile-config-0.5.1.ebuild 
b/dev-scheme/guile-config/guile-config-0.5.1.ebuild
new file mode 100644
index ..45adef20bac6
--- /dev/null
+++ b/dev-scheme/guile-config/guile-config-0.5.1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="Guile application configuration parsing library"
+HOMEPAGE="https://gitlab.com/a-sassmannshausen/guile-config/;
+SRC_URI="https://gitlab.com/a-sassmannshausen/${PN}/-/archive/${PV}/${P}.tar.bz2;
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+RESTRICT="strip"
+
+RDEPEND=">=dev-scheme/guile-2.0.0:="
+DEPEND="${RDEPEND}"
+
+# guile generates ELF files without use of C or machine code
+# It's a portage's false positive. bug #677600
+QA_PREBUILT='*[.]go'
+
+src_prepare() {
+   default
+
+   # http://debbugs.gnu.org/cgi/bugreport.cgi?bug=38112
+   find "${S}" -name "*.scm" -exec touch {} + || die
+
+   eautoreconf
+}

diff --git a/dev-scheme/guile-config/metadata.xml 
b/dev-scheme/guile-config/metadata.xml
new file mode 100644
index ..b8ab9e66b6af
--- /dev/null
+++ b/dev-scheme/guile-config/metadata.xml
@@ -0,0 +1,22 @@
+
+https://www.gentoo.org/dtd/metadata.dtd;>
+
+
+  
+sch...@gentoo.org
+Gentoo Scheme Project
+  
+  
+Guile Config is a library providing a declarative approach to application
+configuration specification. The library provides clean configuration
+declaration forms, and processors that take care of: configuration file
+creation; configuration file parsing; command-line parameter parsing using
+getopt-long; basic GNU command-line parameter generation (--help, --usage,
+--version); automatic output generation for the above command-line
+parameters.
+  
+  
+
https://gitlab.com/a-sassmannshausen/guile-config/-/issues/
+a-sassmannshausen/guile-config
+  
+



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

2022-10-29 Thread Maciej Barć
commit: dd76a2dbc5912761d66cb7ea6e8341ba195579d4
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Oct 29 19:23:00 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Oct 29 23:06:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd76a2db

net-misc/gallery-dl: bump to 1.23.4

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

 net-misc/gallery-dl/Manifest |  1 +
 net-misc/gallery-dl/gallery-dl-1.23.4.ebuild | 39 
 2 files changed, 40 insertions(+)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index 95486dece893..33d98d973381 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -2,3 +2,4 @@ DIST gallery-dl-1.22.4.tar.gz 467129 BLAKE2B 
f2f656b3255d091361bd2c80bb2647de47a
 DIST gallery-dl-1.23.0.gh.tar.gz 473431 BLAKE2B 
1f485477ea150585050f24fbe3605195b9b8ffca3d39d3dde5f2160c2ceb3dd75bb691cc14c178d236c690ff6d2effe147242abcb67feda7b77b829f440e2ac4
 SHA512 
8e17532c094c9516593f9009eca7139e60d7474a56c76bb07a68c03eae4e2e8e31c6bd1f167388d05a1104d5964e2d0b62272c506b2b6988b1832a36a492cbf9
 DIST gallery-dl-1.23.1.gh.tar.gz 477797 BLAKE2B 
abb04762755cc941d3fef31ba2cf21eab4b0afa196a67276d26199a044950cf68607bf7bd4e26bd3631de1e715a7ca25248a658aac1ac56cbb3e2a6ef5b2d71b
 SHA512 
898fd952cc6e590a11e4154449153bd48547c9f21cba6864c95953f9be18ad27391d8033e5350d41714b28ded5711ddefefd4ca0f3c13016972a16b028a0fc1d
 DIST gallery-dl-1.23.3.gh.tar.gz 488200 BLAKE2B 
88482c7f41da00447b6eeb6331d61f6c0f7eebc5c597f16bb197b2f3c431803c15179a27ba66909ca5354d9031667bbe4303653701cae96d9aadecb507f9df00
 SHA512 
ca7bf54ac3244fbf62398981b82094220c6cfe5c548b4a1bacddc67ab8abc87fa8f1f59bdeff4015ce9406ca289fa4ec8965c85b839acb9f218545f28d368d39
+DIST gallery-dl-1.23.4.gh.tar.gz 491268 BLAKE2B 
55606eaab571cb907fa11efd1b0aa8af169f4eda8d3a28a2730b98dbe102a74df5237bf4d0ae32ee4f1703a9a61c0e60031528090bc5c183ab30ca34fdd27b00
 SHA512 
b02f68707432b1d3e0ec225d19fd9b8951c847af2b7213f9255252ea6ad099253945b8e5af18a544135e8f383fa5e30fdcce205e2cb6428469062da6c90f4c12

diff --git a/net-misc/gallery-dl/gallery-dl-1.23.4.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.23.4.ebuild
new file mode 100644
index ..982779112300
--- /dev/null
+++ b/net-misc/gallery-dl/gallery-dl-1.23.4.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+PYTHON_REQ_USE="sqlite,ssl,xml(+)"
+
+inherit distutils-r1 optfeature
+
+DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
+HOMEPAGE="https://github.com/mikf/gallery-dl;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
+else
+   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.gh.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~x86"
+fi
+
+LICENSE="GPL-2"
+SLOT="0"
+# tests require network access
+RESTRICT="test"
+
+RDEPEND=">=dev-python/requests-2.11.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests setup.py
+
+python_compile_all() {
+   emake PYTHON=${EPYTHON} data/completion/{,_}gallery-dl man
+}
+
+pkg_postinst() {
+   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
+   optfeature "video downloads" net-misc/youtube-dl
+}



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

2022-10-29 Thread Maciej Barć
commit: a01127bec2837d75eca44835eb89fb6b730808ee
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Oct 29 19:21:37 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Oct 29 23:06:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a01127be

net-misc/gallery-dl: drop old 1.21.2-r1

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

 net-misc/gallery-dl/Manifest|  1 -
 net-misc/gallery-dl/gallery-dl-1.21.2-r1.ebuild | 39 -
 2 files changed, 40 deletions(-)

diff --git a/net-misc/gallery-dl/Manifest b/net-misc/gallery-dl/Manifest
index db4d8c57701a..95486dece893 100644
--- a/net-misc/gallery-dl/Manifest
+++ b/net-misc/gallery-dl/Manifest
@@ -1,4 +1,3 @@
-DIST gallery-dl-1.21.2.tar.gz 434114 BLAKE2B 
2f1335d0745c3fd3de95f9f3005fc67f079fec16925b7ac8fb3f2e9c8521139e56bf18675e15e7e0edbad2889cd7fa895552e8b40d9f1cf6bc555894c8d1da48
 SHA512 
11615ebb3cab5a6d9e042a94cf802f3781af6166eb199ac22f70a0d3351299bdc82dda212a3a363c323e0edb6707355fe9b6f3d89a851037a8f6ebc12894558f
 DIST gallery-dl-1.22.4.tar.gz 467129 BLAKE2B 
f2f656b3255d091361bd2c80bb2647de47af14c11823fcc0e7e5790ea0b04047195e435a7a4c2b24a645c6e2a27cf53c3ce456a405b97ee014272af1a77ea4a1
 SHA512 
d20535115b464cb51a0fcb6bcd9e64e12fca5a199841cf4e501eae558c842d7d51dda4823b29d7ee2f1e267e59245f8e1cb1a702a96e5c45935918dbf3e6a448
 DIST gallery-dl-1.23.0.gh.tar.gz 473431 BLAKE2B 
1f485477ea150585050f24fbe3605195b9b8ffca3d39d3dde5f2160c2ceb3dd75bb691cc14c178d236c690ff6d2effe147242abcb67feda7b77b829f440e2ac4
 SHA512 
8e17532c094c9516593f9009eca7139e60d7474a56c76bb07a68c03eae4e2e8e31c6bd1f167388d05a1104d5964e2d0b62272c506b2b6988b1832a36a492cbf9
 DIST gallery-dl-1.23.1.gh.tar.gz 477797 BLAKE2B 
abb04762755cc941d3fef31ba2cf21eab4b0afa196a67276d26199a044950cf68607bf7bd4e26bd3631de1e715a7ca25248a658aac1ac56cbb3e2a6ef5b2d71b
 SHA512 
898fd952cc6e590a11e4154449153bd48547c9f21cba6864c95953f9be18ad27391d8033e5350d41714b28ded5711ddefefd4ca0f3c13016972a16b028a0fc1d

diff --git a/net-misc/gallery-dl/gallery-dl-1.21.2-r1.ebuild 
b/net-misc/gallery-dl/gallery-dl-1.21.2-r1.ebuild
deleted file mode 100644
index d9cd4396c21d..
--- a/net-misc/gallery-dl/gallery-dl-1.21.2-r1.ebuild
+++ /dev/null
@@ -1,39 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-DISTUTILS_USE_PEP517=setuptools
-PYTHON_COMPAT=( python3_{8..10} )
-PYTHON_REQ_USE="sqlite,ssl,xml(+)"
-
-inherit distutils-r1 optfeature
-
-DESCRIPTION="Download image galleries and collections from several image 
hosting sites"
-HOMEPAGE="https://github.com/mikf/gallery-dl;
-
-if [[ ${PV} ==  ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/mikf/${PN}.git;
-else
-   SRC_URI="https://github.com/mikf/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~riscv x86"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-# tests require network access
-RESTRICT="test"
-
-RDEPEND=">=dev-python/requests-2.11.0[${PYTHON_USEDEP}]"
-
-distutils_enable_tests setup.py
-
-python_compile_all() {
-   emake PYTHON=${EPYTHON} data/completion/{,_}gallery-dl man
-}
-
-pkg_postinst() {
-   optfeature "Pixiv Ugoira to WebM conversion" media-video/ffmpeg
-   optfeature "video downloads" net-misc/youtube-dl
-}



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

2022-10-29 Thread Maciej Barć
commit: a5e8e5f5a6825154bb29ea0ac2dc4860594eed79
Author: Maciej Barć  gentoo  org>
AuthorDate: Sat Oct 29 19:24:35 2022 +
Commit: Maciej Barć  gentoo  org>
CommitDate: Sat Oct 29 23:06:22 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5e8e5f5

dev-python/spotipy: bump to 2.21.0

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

 dev-python/spotipy/Manifest  |  1 +
 dev-python/spotipy/spotipy-2.21.0.ebuild | 49 
 2 files changed, 50 insertions(+)

diff --git a/dev-python/spotipy/Manifest b/dev-python/spotipy/Manifest
index 6a5da472b855..94171c508e26 100644
--- a/dev-python/spotipy/Manifest
+++ b/dev-python/spotipy/Manifest
@@ -1,2 +1,3 @@
 DIST spotipy-2.19.0.tar.gz 102703 BLAKE2B 
bc132edb972236b43097c0bbc9d86932a3305d8bd3807e44e20767b123455950b8e01060efd83c87b3a162e329f5c48614205f131686af7f9312a44894a7f1e7
 SHA512 
fbaecd1a2cab3ef458d30de46cb89462021dfc3cfc85516d8bfe509af016a0b19af2f8de4f5cae36188b1ce1f5718c75edff0e71af2a87f4d720ee99d4541a6a
 DIST spotipy-2.20.0.tar.gz 103437 BLAKE2B 
78b026b9de04b0115c5621345e4f4c0ee47a51980221c77da8754c54fc8c321a1826983ceb9bcf9c415690906f3b3ea4657243e6b5d351d3edb48084baeca292
 SHA512 
8b5d0704fa84974ea0728dda0fe89d021b7b1550b464026d2b087671102745c7edcab116246399dd97de42d9c0cc7411295297c328b301712b6536aa6a3cd6fd
+DIST spotipy-2.21.0.tar.gz 105500 BLAKE2B 
fa49c31da93efdac23fd5cbaa31b513f48e3a90c56dee8708bf695a20c1f6040c68a22a04d6589b3a890f503d54e7c0fb017f2911ae28abe54a9e7f5bff3b540
 SHA512 
8783261e43962b3e98cb9b680f908d38feecf784ff404352ba16d6bb3d2e4bf1d2308b60f1437c56402e1c2a993a5bba876103f968bb8bdd81be1aef1fe6d058

diff --git a/dev-python/spotipy/spotipy-2.21.0.ebuild 
b/dev-python/spotipy/spotipy-2.21.0.ebuild
new file mode 100644
index ..3409dd977e02
--- /dev/null
+++ b/dev-python/spotipy/spotipy-2.21.0.ebuild
@@ -0,0 +1,49 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DISTUTILS_USE_PEP517=setuptools
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit distutils-r1
+
+DESCRIPTION="A light weight Python library for the Spotify Web API"
+HOMEPAGE="https://spotipy.readthedocs.io;
+SRC_URI="https://github.com/plamere/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~amd64 ~x86"
+SLOT="0"
+IUSE="examples"
+
+RDEPEND="
+   dev-python/redis-py[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/urllib3[${PYTHON_USEDEP}]
+"
+BDEPEND="test? ( dev-python/mock[${PYTHON_USEDEP}] )"
+
+distutils_enable_sphinx docs
+distutils_enable_tests pytest
+
+python_prepare_all() {
+   # Requires user credentials
+   rm tests/integration/test_user_endpoints.py || die
+
+   # Requires a spotify client ID
+   rm tests/integration/test_non_user_endpoints.py || die
+
+   # Needs internet access
+   sed -i -e 's:test_spotify_client_credentials_get_access_token:_&:' \
+   tests/unit/test_oauth.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_install_all() {
+   distutils-r1_python_install_all
+
+   use examples && dodoc -r examples
+}



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

2022-10-29 Thread Sergey Torokhov
commit: bc7ec0a210434e1bafd9a042d1d11c168c8a45e8
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sat Oct 29 22:37:29 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sat Oct 29 22:37:29 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=bc7ec0a2

dev-vcs/gitqlient: drop old 1.4.3

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

 dev-vcs/gitqlient/Manifest   |  1 -
 dev-vcs/gitqlient/gitqlient-1.4.3.ebuild | 48 
 2 files changed, 49 deletions(-)

diff --git a/dev-vcs/gitqlient/Manifest b/dev-vcs/gitqlient/Manifest
index 45a9cfee7..76df10480 100644
--- a/dev-vcs/gitqlient/Manifest
+++ b/dev-vcs/gitqlient/Manifest
@@ -1,4 +1,3 @@
-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

diff --git a/dev-vcs/gitqlient/gitqlient-1.4.3.ebuild 
b/dev-vcs/gitqlient/gitqlient-1.4.3.ebuild
deleted file mode 100644
index f811cc23d..0
--- a/dev-vcs/gitqlient/gitqlient-1.4.3.ebuild
+++ /dev/null
@@ -1,48 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit qmake-utils xdg
-
-MY_PN="GitQlient"
-MY_PV=$(ver_rs 3 -)
-
-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"
-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/qtwebchannel:5
-   dev-qt/qtwebengine:5[widgets]
-   dev-qt/qtwidgets:5
-"
-
-RDEPEND="
-   ${DEPEND}
-   dev-vcs/git
-"
-
-src_prepare() {
-   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 INSTALL_ROOT="${D}" install
-}



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

2022-10-29 Thread Matt Turner
commit: dd86039396ec4987cd416bce9297b55851473ee0
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:36 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dd860393

app-office/abiword: Set remote-id

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

 app-office/abiword/metadata.xml | 43 ++---
 1 file changed, 23 insertions(+), 20 deletions(-)

diff --git a/app-office/abiword/metadata.xml b/app-office/abiword/metadata.xml
index 4cbe5fcc9127..61f8e29b6277 100644
--- a/app-office/abiword/metadata.xml
+++ b/app-office/abiword/metadata.xml
@@ -1,24 +1,27 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   s...@gentoo.org
-   David Seifert
-   
-   
-   Enable collaborative editing plugin
-   Enable goffice plugin
-   Enable grammar checking via 
dev-libs/link-grammar
-   Enable world map support through 
media-libs/libchamplain
-   Enable support for 
x11-libs/gtkmathview
-   Enable Text Summarizer plugin
-   Enable plugins build (see 
http://www.abisource.com/wiki/PluginMatrix for more information). If your file 
cannot be opened due lack of support, try enabling this.
-   Enables support redland and raptor 
libs.
-   Enable thesaurus support
-   Enable wordperfect file support via 
app-text/libwpd
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+s...@gentoo.org
+David Seifert
+  
+  
+Enable collaborative editing plugin
+Enable goffice plugin
+Enable grammar checking via 
dev-libs/link-grammar
+Enable world map support through 
media-libs/libchamplain
+Enable support for x11-libs/gtkmathview
+Enable Text Summarizer plugin
+Enable plugins build (see 
http://www.abisource.com/wiki/PluginMatrix for more information). If your file 
cannot be opened due lack of support, try enabling this.
+Enables support redland and raptor libs.
+Enable thesaurus support
+Enable wordperfect file support via 
app-text/libwpd
+  
+  
+World/abiword
+  
 



[gentoo-commits] repo/gentoo:master commit in: app-editors/gnome-text-editor/

2022-10-29 Thread Matt Turner
commit: 733ada861641269c0c28c9cc883196a495f596b3
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=733ada86

app-editors/gnome-text-editor: Set remote-id

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

 app-editors/gnome-text-editor/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-editors/gnome-text-editor/metadata.xml 
b/app-editors/gnome-text-editor/metadata.xml
index 7b343b06be8a..b96389a37794 100644
--- a/app-editors/gnome-text-editor/metadata.xml
+++ b/app-editors/gnome-text-editor/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gnome-text-editor
+  
 



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

2022-10-29 Thread Matt Turner
commit: eb8c2831582d0636a70e2a52fedecabfc2bba4f8
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:36 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb8c2831

app-misc/tracker: Set remote-id

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

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

diff --git a/app-misc/tracker/metadata.xml b/app-misc/tracker/metadata.xml
index 71d97616a56b..bd542fc2ff01 100644
--- a/app-misc/tracker/metadata.xml
+++ b/app-misc/tracker/metadata.xml
@@ -9,4 +9,7 @@
 Install the app-misc/tracker-miners package 
for actual data mining support for tracker
 Add word stemming via 
dev-libs/snowball-stemmer.
   
+  
+GNOME/tracker
+  
 



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

2022-10-29 Thread Matt Turner
commit: 1b5e0d6ffe876716baaa4c811a8ead758d33ea31
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:35 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b5e0d6f

app-misc/bijiben: Set remote-id

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

 app-misc/bijiben/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-misc/bijiben/metadata.xml b/app-misc/bijiben/metadata.xml
index 7b343b06be8a..4de392269fc0 100644
--- a/app-misc/bijiben/metadata.xml
+++ b/app-misc/bijiben/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gnome-notes
+  
 



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

2022-10-29 Thread Matt Turner
commit: 074be036d4c9e75505130247722fc174aa762a10
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:37 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=074be036

app-office/endeavour: Set remote-id

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

 app-office/endeavour/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-office/endeavour/metadata.xml 
b/app-office/endeavour/metadata.xml
index 7b343b06be8a..407b55270f12 100644
--- a/app-office/endeavour/metadata.xml
+++ b/app-office/endeavour/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+World/endeavour
+  
 



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

2022-10-29 Thread Matt Turner
commit: 5c046db594c1d383c7620170cff2e66b8b37866b
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:36 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5c046db5

app-misc/tracker-miners: Set remote-id

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

 app-misc/tracker-miners/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/app-misc/tracker-miners/metadata.xml 
b/app-misc/tracker-miners/metadata.xml
index ef8b20013172..fd19944d2284 100644
--- a/app-misc/tracker-miners/metadata.xml
+++ b/app-misc/tracker-miners/metadata.xml
@@ -14,4 +14,7 @@
 Add support for playlists
 Add support for XPS file format through 
app-text/libgxps.
   
+  
+GNOME/tracker-miners
+  
 



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

2022-10-29 Thread Matt Turner
commit: 984fab8b096f901cd12c52d79e7f363d0c1433bf
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=984fab8b

app-editors/gnome-latex: Set remote-id

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

 app-editors/gnome-latex/metadata.xml | 21 +++--
 1 file changed, 11 insertions(+), 10 deletions(-)

diff --git a/app-editors/gnome-latex/metadata.xml 
b/app-editors/gnome-latex/metadata.xml
index 6c684e071d5f..eb53c84a44e7 100644
--- a/app-editors/gnome-latex/metadata.xml
+++ b/app-editors/gnome-latex/metadata.xml
@@ -1,14 +1,15 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Install dev-tex/latexmk (used by default
-   for the build tools)
-   Install dev-tex/rubber (can be used for 
the
-   build tools)
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Install dev-tex/latexmk (used by default 
for the build tools)
+Install dev-tex/rubber (can be used for the 
build tools)
+  
+  
+swilmet/gnome-latex
+  
 



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

2022-10-29 Thread Matt Turner
commit: 9e537edbe8ee8b7967bffa55c2e257f25d6a1dce
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:37 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e537edb

app-office/dia: Set remote-id

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

 app-office/dia/metadata.xml | 27 +++
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/app-office/dia/metadata.xml b/app-office/dia/metadata.xml
index 174329ca7d6a..595bd9c2d63f 100644
--- a/app-office/dia/metadata.xml
+++ b/app-office/dia/metadata.xml
@@ -1,16 +1,19 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Dia is a gtk+ based diagram creation program. It can be used to
-   draw many different kinds of diagrams. It currently has special
-   objects to help draw entity relationship diagrams, UML diagrams,
-   flowcharts, network diagrams, and simple circuits. It is also
-   possible to add support for new shapes by writing simple XML
-   files, using a subset of SVG to draw the shape.
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Dia is a gtk+ based diagram creation program. It can be used to
+draw many different kinds of diagrams. It currently has special
+objects to help draw entity relationship diagrams, UML diagrams,
+flowcharts, network diagrams, and simple circuits. It is also
+possible to add support for new shapes by writing simple XML
+files, using a subset of SVG to draw the shape.
+  
+  
+GNOME/dia
+  
 



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

2022-10-29 Thread Matt Turner
commit: bb4dbc2a422269960d2aee4079d81b9d99584ed7
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:36 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb4dbc2a

app-misc/gnote: Set remote-id

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

 app-misc/gnote/metadata.xml | 6 +-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/app-misc/gnote/metadata.xml b/app-misc/gnote/metadata.xml
index 9eb47218781f..1a4d262be976 100644
--- a/app-misc/gnote/metadata.xml
+++ b/app-misc/gnote/metadata.xml
@@ -6,6 +6,10 @@
 Gentoo GNOME Desktop
   
   
-tsuna/boost.m4
+tsuna/boost.m4
+GNOME/gnote
+  
+  
+GNOME/gnote
   
 



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

2022-10-29 Thread Matt Turner
commit: b84e9801399f94be495b709d97e9bfecfb082bad
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:33 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b84e9801

app-crypt/gcr: Set remote-id

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

 app-crypt/gcr/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-crypt/gcr/metadata.xml b/app-crypt/gcr/metadata.xml
index 7b343b06be8a..11816fc8230a 100644
--- a/app-crypt/gcr/metadata.xml
+++ b/app-crypt/gcr/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gcr
+  
 



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

2022-10-29 Thread Matt Turner
commit: ab84d2fa743ded38fd17c6a21f6f4ad3f8587558
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:35 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ab84d2fa

app-misc/geoclue: Set remote-id

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

 app-misc/geoclue/metadata.xml | 19 +++
 1 file changed, 11 insertions(+), 8 deletions(-)

diff --git a/app-misc/geoclue/metadata.xml b/app-misc/geoclue/metadata.xml
index 668d225821c3..e64fa36fc587 100644
--- a/app-misc/geoclue/metadata.xml
+++ b/app-misc/geoclue/metadata.xml
@@ -1,12 +1,15 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Enable geolocation through 3G or GPS enabled 
hardware through net-misc/modemmanager.
-   Enable retrieval of GPS location from Android 
devices with https://wiki.gnome.org/Apps/GeoclueShare
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Enable geolocation through 3G or GPS enabled 
hardware through net-misc/modemmanager.
+Enable retrieval of GPS location from Android 
devices with https://wiki.gnome.org/Apps/GeoclueShare
+  
+  
+geoclue/geoclue
+  
 



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

2022-10-29 Thread Matt Turner
commit: d0f8cd9972573929ebe3999771dec5859faed032
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f8cd99

app-editors/ghex: Set remote-id

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

 app-editors/ghex/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-editors/ghex/metadata.xml b/app-editors/ghex/metadata.xml
index 7b343b06be8a..ffc72ffa12d6 100644
--- a/app-editors/ghex/metadata.xml
+++ b/app-editors/ghex/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/ghex
+  
 



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

2022-10-29 Thread Matt Turner
commit: f81cb265ecf52fd0a80546f102cd876b5c5e7cb9
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f81cb265

app-editors/gedit: Set remote-id

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

 app-editors/gedit/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-editors/gedit/metadata.xml b/app-editors/gedit/metadata.xml
index 7b343b06be8a..25826770e3dd 100644
--- a/app-editors/gedit/metadata.xml
+++ b/app-editors/gedit/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gedit
+  
 



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

2022-10-29 Thread Matt Turner
commit: a1c67ed290ff1b6c0d3d8783ffb420a331e3a872
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:33 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a1c67ed2

app-crypt/seahorse: Set remote-id

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

 app-crypt/seahorse/metadata.xml | 30 +-
 1 file changed, 17 insertions(+), 13 deletions(-)

diff --git a/app-crypt/seahorse/metadata.xml b/app-crypt/seahorse/metadata.xml
index 10379b458c7f..e641ba504704 100644
--- a/app-crypt/seahorse/metadata.xml
+++ b/app-crypt/seahorse/metadata.xml
@@ -1,18 +1,22 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Enable seahorse to manipulate GPG keys on a LDAP 
server.
-
-Seahorse is a GNOME application for managing encryption keys.
-It also integrates with nautilus, gedit and other places for encryption 
operations.
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Enable seahorse to manipulate GPG keys on a LDAP 
server.
+  
+  
+Seahorse is a GNOME application for managing encryption keys.
+It also integrates with nautilus, gedit and other places for encryption 
operations.
 
-With seahorse you can create and manage PGP keys, create and manage SSH keys,
-publish and retrieve keys from key servers, cache your passphrase so you
-don't have to keep typing it and backup your keys and keyring.
-
+With seahorse you can create and manage PGP keys, create and manage SSH 
keys,
+publish and retrieve keys from key servers, cache your passphrase so you
+don't have to keep typing it and backup your keys and keyring.
+  
+  
+GNOME/seahorse
+  
 



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

2022-10-29 Thread Matt Turner
commit: 75dc44fe81a636b09c1d74139f303dfd88498409
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:32 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75dc44fe

app-arch/gnome-autoar: Set remote-id

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

 app-arch/gnome-autoar/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/app-arch/gnome-autoar/metadata.xml 
b/app-arch/gnome-autoar/metadata.xml
index 98b32ae2f3a4..28848d12a0dd 100644
--- a/app-arch/gnome-autoar/metadata.xml
+++ b/app-arch/gnome-autoar/metadata.xml
@@ -1,11 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   gnome-autoar provides functions, widgets, and gschemas for 
GNOME applications which want to use archives as a method to transfer 
directories over the Internet.
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+gnome-autoar provides functions, widgets, and gschemas for GNOME 
applications which want to use archives as a method to transfer directories 
over the Internet.
+  
+  
+GNOME/gnome-autoar
+  
 



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

2022-10-29 Thread Matt Turner
commit: 8db16170bb49f53c51c96ec2ea978b20b6ad9044
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8db16170

app-editors/gedit-plugins: Set remote-id

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

 app-editors/gedit-plugins/metadata.xml | 22 --
 1 file changed, 12 insertions(+), 10 deletions(-)

diff --git a/app-editors/gedit-plugins/metadata.xml 
b/app-editors/gedit-plugins/metadata.xml
index eb35a3df50f2..2695ac239950 100644
--- a/app-editors/gedit-plugins/metadata.xml
+++ b/app-editors/gedit-plugins/metadata.xml
@@ -1,14 +1,16 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Insert special characters just by clicking on
-   them
-   Shows document changes related to git's HEAD
-   Embed a terminal in the bottom pane
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Insert special characters just by clicking on 
them
+Shows document changes related to git's HEAD
+Embed a terminal in the bottom pane
+  
+  
+GNOME/gedit-plugins
+  
 



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

2022-10-29 Thread Matt Turner
commit: 70df87a2752e995873386ffcc017ea08664d3cdc
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:33 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=70df87a2

app-crypt/libsecret: Set remote-id

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

 app-crypt/libsecret/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/app-crypt/libsecret/metadata.xml b/app-crypt/libsecret/metadata.xml
index 7318f81748ab..3d7258d053bc 100644
--- a/app-crypt/libsecret/metadata.xml
+++ b/app-crypt/libsecret/metadata.xml
@@ -1,11 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Enable Trusted Platform Module support via 
app-crypt/tpm2-tss
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Enable Trusted Platform Module support via 
app-crypt/tpm2-tss
+  
+  
+GNOME/libsecret
+  
 



[gentoo-commits] repo/gentoo:master commit in: app-dicts/gnome-dictionary/

2022-10-29 Thread Matt Turner
commit: e5771d9a7487568f9b10233cc924b73a4e2a9a75
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:33 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5771d9a

app-dicts/gnome-dictionary: Set remote-id

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

 app-dicts/gnome-dictionary/metadata.xml | 17 ++---
 1 file changed, 10 insertions(+), 7 deletions(-)

diff --git a/app-dicts/gnome-dictionary/metadata.xml 
b/app-dicts/gnome-dictionary/metadata.xml
index f74c6767f432..38142274dd23 100644
--- a/app-dicts/gnome-dictionary/metadata.xml
+++ b/app-dicts/gnome-dictionary/metadata.xml
@@ -1,11 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   libgdict-1.0 soname version
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+libgdict-1.0 soname version
+  
+  
+GNOME/gnome-dictionary
+  
 



[gentoo-commits] repo/gentoo:master commit in: app-cdr/brasero/

2022-10-29 Thread Matt Turner
commit: 9ce6e6a43956381c859ab4fb718252ab70f8aa18
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:33 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ce6e6a4

app-cdr/brasero: Set remote-id

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

 app-cdr/brasero/metadata.xml | 26 +-
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/app-cdr/brasero/metadata.xml b/app-cdr/brasero/metadata.xml
index 25591ecd5ced..670cc5b16e45 100644
--- a/app-cdr/brasero/metadata.xml
+++ b/app-cdr/brasero/metadata.xml
@@ -1,17 +1,17 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Build the gnome-base/nautilus
-   extension
-   Enable dev-libs/libburn 
backend
-   Enable support for playlists through
-   dev-libs/totem-pl-parser
-   Enable audio playlist search using the
-   app-misc/tracker indexer
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Build the gnome-base/nautilus 
extension
+Enable dev-libs/libburn backend
+Enable support for playlists through 
dev-libs/totem-pl-parser
+Enable audio playlist search using the 
app-misc/tracker indexer
+  
+  
+GNOME/brasero
+  
 



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

2022-10-29 Thread Matt Turner
commit: d493dc188824bd9fc4ee46da334b7b9a258d2ea6
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:32 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d493dc18

app-arch/gcab: Set remote-id

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

 app-arch/gcab/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-arch/gcab/metadata.xml b/app-arch/gcab/metadata.xml
index 7b343b06be8a..ca769f6cf4a9 100644
--- a/app-arch/gcab/metadata.xml
+++ b/app-arch/gcab/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/gcab
+  
 



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

2022-10-29 Thread Matt Turner
commit: 98078836dcbf620cc0268ea68f374d8e5dfff222
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:19:08 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98078836

app-arch/file-roller: Set remote-id

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

 app-arch/file-roller/metadata.xml | 23 +++
 1 file changed, 11 insertions(+), 12 deletions(-)

diff --git a/app-arch/file-roller/metadata.xml 
b/app-arch/file-roller/metadata.xml
index 9f23dc396c05..95e520228548 100644
--- a/app-arch/file-roller/metadata.xml
+++ b/app-arch/file-roller/metadata.xml
@@ -1,16 +1,15 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-   
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-   
-   
-   Build contextual menu extension for
-   gnome-base/nautilus.
-   
-   
-   fileroller
-   cpe:/a:paolo_bacchilega:file_roller
-   
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Build contextual menu extension for 
gnome-base/nautilus.
+  
+  
+cpe:/a:paolo_bacchilega:file_roller
+GNOME/file-roller
+  
 



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

2022-10-29 Thread Matt Turner
commit: b9c808962935ad198b5483d77a072301e88c6282
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:18:03 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9c80896

app-admin/openrc-settingsd: Set remote-id

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

 app-admin/openrc-settingsd/metadata.xml | 18 ++
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/app-admin/openrc-settingsd/metadata.xml 
b/app-admin/openrc-settingsd/metadata.xml
index e9500dd5af81..c24b007e3b95 100644
--- a/app-admin/openrc-settingsd/metadata.xml
+++ b/app-admin/openrc-settingsd/metadata.xml
@@ -1,12 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Use the versions of dbus and polkit files provided 
by
-   sys-apps/systemd
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Use the versions of dbus and polkit files provided by 
sys-apps/systemd
+  
+  
+postmarketOS/openrc-settingsd
+  
 



[gentoo-commits] repo/gentoo:master commit in: app-admin/system-config-printer/

2022-10-29 Thread Matt Turner
commit: ad07412fbdf943837dbcb90fedbc1ccd58de8231
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:16:47 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ad07412f

app-admin/system-config-printer: Set remote-id

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

 app-admin/system-config-printer/metadata.xml | 27 +++
 1 file changed, 15 insertions(+), 12 deletions(-)

diff --git a/app-admin/system-config-printer/metadata.xml 
b/app-admin/system-config-printer/metadata.xml
index b1e4e8c877ae..e34a1cb28469 100644
--- a/app-admin/system-config-printer/metadata.xml
+++ b/app-admin/system-config-printer/metadata.xml
@@ -1,16 +1,19 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   reave...@gentoo.org
-   Maciej Mrozowski
-
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   k...@gentoo.org
-   Gentoo KDE Project
-
+  
+reave...@gentoo.org
+Maciej Mrozowski
+  
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+k...@gentoo.org
+Gentoo KDE Project
+  
+  
+OpenPrinting/system-config-printer
+  
 



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/orca/

2022-10-29 Thread Matt Turner
commit: 1dc79c346ef1e9c852044a392de79fe1989e0184
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:16:52 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc79c34

app-accessibility/orca: Set remote-id

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

 app-accessibility/orca/metadata.xml | 31 +--
 1 file changed, 17 insertions(+), 14 deletions(-)

diff --git a/app-accessibility/orca/metadata.xml 
b/app-accessibility/orca/metadata.xml
index 6697d5324869..576805b0538e 100644
--- a/app-accessibility/orca/metadata.xml
+++ b/app-accessibility/orca/metadata.xml
@@ -1,18 +1,21 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
-
-   Enable braille support
-
-
-   Orca is a flexible, extensible, and powerful assistive technology
-   for people with visual impairments. Using various combinations of
-   speech synthesis, braille, and magnification, Orca helps provide
-   access to applications and toolkits that support the AT-SPI (e.g.,
-   the GNOME desktop).
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+Enable braille support
+  
+  
+Orca is a flexible, extensible, and powerful assistive technology
+for people with visual impairments. Using various combinations of
+speech synthesis, braille, and magnification, Orca helps provide
+access to applications and toolkits that support the AT-SPI (e.g.,
+the GNOME desktop).
+  
+  
+GNOME/orca
+  
 



[gentoo-commits] repo/gentoo:master commit in: app-accessibility/at-spi2-core/

2022-10-29 Thread Matt Turner
commit: 518f794faed40313923f0f7d39dda9f400cd532c
Author: Matt Turner  gentoo  org>
AuthorDate: Sat Oct 29 21:17:01 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Sat Oct 29 22:32:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=518f794f

app-accessibility/at-spi2-core: Set remote-id

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

 app-accessibility/at-spi2-core/metadata.xml | 11 +++
 1 file changed, 7 insertions(+), 4 deletions(-)

diff --git a/app-accessibility/at-spi2-core/metadata.xml 
b/app-accessibility/at-spi2-core/metadata.xml
index 7b343b06be8a..32089b0df716 100644
--- a/app-accessibility/at-spi2-core/metadata.xml
+++ b/app-accessibility/at-spi2-core/metadata.xml
@@ -1,8 +1,11 @@
 
 https://www.gentoo.org/dtd/metadata.dtd;>
 
-
-   gn...@gentoo.org
-   Gentoo GNOME Desktop
-
+  
+gn...@gentoo.org
+Gentoo GNOME Desktop
+  
+  
+GNOME/at-spi2-core
+  
 



[gentoo-commits] repo/proj/guru:dev commit in: x11-libs/gtk-fortran/

2022-10-29 Thread Sergey Torokhov
commit: 0777f0dc276b89703771680de03426ad694b51d8
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sat Oct 29 22:29:56 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sat Oct 29 22:29:56 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=0777f0dc

x11-libs/gtk-fortran: 3.24.31 and 4.2.1 versions bump

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

 x11-libs/gtk-fortran/Manifest   |  2 +
 x11-libs/gtk-fortran/gtk-fortran-3.24.31.ebuild | 71 +
 x11-libs/gtk-fortran/gtk-fortran-4.2.1.ebuild   | 71 +
 3 files changed, 144 insertions(+)

diff --git a/x11-libs/gtk-fortran/Manifest b/x11-libs/gtk-fortran/Manifest
index e7bda029d..a55470946 100644
--- a/x11-libs/gtk-fortran/Manifest
+++ b/x11-libs/gtk-fortran/Manifest
@@ -1,2 +1,4 @@
 DIST gtk-fortran-3.24.30.tar.gz 4276622 BLAKE2B 
4b18d21e0479496caea386450fc16c12d20ad3491932b331890b5d7328c704799f8dd288c4a1d0d2e34f0957f0bdca316f820850b80c4ff8d2b66ce3673fe5ec
 SHA512 
4e1cd522ca80db01a1058d6c58b4a6e3e63e6b1d510e2ee5fd0b8f8aa9f9dc8e433d203781c908065571c4c1a6d9686c22eec879b396352b12fa82b604855c86
+DIST gtk-fortran-3.24.31.tar.gz 4287676 BLAKE2B 
9fe3f83158ea504d492978ddd0b3a6d4aad5f5325df7c6ebbeb6d11ecb48d1097ee3c7b213c8824a5e4adb15da9af1da64c72b9089746dd0bb5d1d91dc76c766
 SHA512 
3d1a62837f4750b5c284a1548ede0ecfe8ad2f2619ca7ee2eb75e4cb7fcc739de90d67ff61d406b1f13fe0a2a9f1e23a1baa50afdc8caaaf1b3866e5640cb3f1
 DIST gtk-fortran-4.1.0.tar.gz 4100843 BLAKE2B 
c11658472c4f2ad9916f8f421f0d1c48b9ec7874e9e4075f2247e7cfb33ed69946e644aa9a460d63ff676c075b76caf4c70bd09532dda53b4d2035c88b3c1c61
 SHA512 
cd4628a56b2a03f7e958d4284c595b573ab84ac6c630cfae4f3ed13bb6d19a66246cb6adac8b05104f562406a467c03841cf350f8482e7e9f8fd596de4f4c873
+DIST gtk-fortran-4.2.1.tar.gz 4111001 BLAKE2B 
9cfeb8ef0fff6ab215cc421107ad643370d96ccfdfaac062af46e1793742d53ffcb11169db88a12711fea5309f2d339c2716be20e3e36fe3cc762864c611e732
 SHA512 
ea2650208f453e8292df1d4e05460b221146ff44e50513702eb5ad4b689d40f6bbd0935d1d617845e3927d25ff3f069a08032b89035d06e5ad688f7d281a2cd9

diff --git a/x11-libs/gtk-fortran/gtk-fortran-3.24.31.ebuild 
b/x11-libs/gtk-fortran/gtk-fortran-3.24.31.ebuild
new file mode 100644
index 0..3fce2073d
--- /dev/null
+++ b/x11-libs/gtk-fortran/gtk-fortran-3.24.31.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_MAKEFILE_GENERATOR="emake"
+FORTRAN_STANDARD=2003
+VIRTUALX_REQUIRED="test"
+
+inherit cmake fortran-2 virtualx
+
+DESCRIPTION="A GTK+ binding to build Graphical User Interfaces in Fortran"
+HOMEPAGE="https://github.com/vmagnin/gtk-fortran;
+SRC_URI="https://github.com/vmagnin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="3"
+KEYWORDS="~amd64 ~x86"
+
+IUSE="examples high-level plplot static-libs test"
+REQUIRED_USE="plplot? ( high-level )"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   x11-libs/gtk+:3
+   plplot? ( >=sci-libs/plplot-5.15.0[cairo,fortran] )
+"
+DEPEND="${RDEPEND}"
+BDEPEND="
+   virtual/fortran
+   virtual/pkgconfig
+"
+
+DOCS=( "README.md" "README-high-level.md" "CHANGELOG.md" )
+
+pkg_setup() {
+   fortran-2_pkg_setup
+}
+
+src_prepare() {
+   default
+   # Fix library installation path, disable 'sketcher' build, pass LDFLAGS
+   sed -i -e "s:CMAKE_INSTALL_LIBDIR lib:CMAKE_INSTALL_LIBDIR 
$(get_libdir):" \
+   -e "s:add_subdirectory(sketcher)::" \
+   -e 's:"-rdynamic":"-rdynamic '"${LDFLAGS}"'":' CMakeLists.txt 
|| die
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   mycmakeargs+=(
+   -DEXCLUDE_PLPLOT=$(usex plplot false true)
+   -DNO_BUILD_HL=$(usex high-level false true)
+   -DINSTALL_EXAMPLES=$(usex examples)
+   -DNO_BUILD_EXAMPLES=true
+   )
+   cmake_src_configure
+}
+
+src_test() {
+   virtx cmake_src_test
+}
+
+src_install() {
+   cmake_src_install
+
+   # Remove static library here as it's used to build additional tools
+   if use !static-libs ; then
+   rm "${ED}/usr/$(get_libdir)/libgtk-${SLOT}-fortran.a" || die
+   fi
+}

diff --git a/x11-libs/gtk-fortran/gtk-fortran-4.2.1.ebuild 
b/x11-libs/gtk-fortran/gtk-fortran-4.2.1.ebuild
new file mode 100644
index 0..01663bcd6
--- /dev/null
+++ b/x11-libs/gtk-fortran/gtk-fortran-4.2.1.ebuild
@@ -0,0 +1,71 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+CMAKE_MAKEFILE_GENERATOR="emake"
+FORTRAN_STANDARD=2003
+VIRTUALX_REQUIRED="test"
+
+inherit cmake fortran-2 virtualx
+
+DESCRIPTION="A GTK+ binding to build Graphical User Interfaces in Fortran"
+HOMEPAGE="https://github.com/vmagnin/gtk-fortran;
+SRC_URI="https://github.com/vmagnin/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
+
+LICENSE="GPL-3"
+SLOT="4"
+KEYWORDS="~amd64 ~x86"
+

[gentoo-commits] repo/proj/guru:dev commit in: x11-libs/gtk-fortran/

2022-10-29 Thread Sergey Torokhov
commit: 20bd1b614f7adad2ebd07754514b524588dedc92
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sat Oct 29 22:17:01 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sat Oct 29 22:17:01 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=20bd1b61

x11-lib/gtk-fortran: fix test fail due to DISPLAY absence

The issue bellow isn't related to 'lto' and was to absence
of virtual DISPLAY while running test.

Closes: https://bugs.gentoo.org/863935

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

 ...ortran-3.24.30.ebuild => gtk-fortran-3.24.30-r1.ebuild} | 14 ++
 ...tk-fortran-4.1.0.ebuild => gtk-fortran-4.1.0-r1.ebuild} | 14 ++
 2 files changed, 20 insertions(+), 8 deletions(-)

diff --git a/x11-libs/gtk-fortran/gtk-fortran-3.24.30.ebuild 
b/x11-libs/gtk-fortran/gtk-fortran-3.24.30-r1.ebuild
similarity index 86%
rename from x11-libs/gtk-fortran/gtk-fortran-3.24.30.ebuild
rename to x11-libs/gtk-fortran/gtk-fortran-3.24.30-r1.ebuild
index f3ead5547..e8bf7a4aa 100644
--- a/x11-libs/gtk-fortran/gtk-fortran-3.24.30.ebuild
+++ b/x11-libs/gtk-fortran/gtk-fortran-3.24.30-r1.ebuild
@@ -1,12 +1,13 @@
-# 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
 
 CMAKE_MAKEFILE_GENERATOR="emake"
 FORTRAN_STANDARD=2003
+VIRTUALX_REQUIRED="test"
 
-inherit cmake fortran-2
+inherit cmake fortran-2 virtualx
 
 DESCRIPTION="A GTK+ binding to build Graphical User Interfaces in Fortran"
 HOMEPAGE="https://github.com/vmagnin/gtk-fortran;
@@ -16,8 +17,9 @@ LICENSE="GPL-3"
 SLOT="3"
 KEYWORDS="~amd64 ~x86"
 
-IUSE="examples high-level plplot static-libs"
+IUSE="examples high-level plplot static-libs test"
 REQUIRED_USE="plplot? ( high-level )"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
x11-libs/gtk+:3
@@ -55,6 +57,10 @@ src_configure() {
cmake_src_configure
 }
 
+src_test() {
+   virtx cmake_src_test
+}
+
 src_install() {
cmake_src_install
 

diff --git a/x11-libs/gtk-fortran/gtk-fortran-4.1.0.ebuild 
b/x11-libs/gtk-fortran/gtk-fortran-4.1.0-r1.ebuild
similarity index 86%
rename from x11-libs/gtk-fortran/gtk-fortran-4.1.0.ebuild
rename to x11-libs/gtk-fortran/gtk-fortran-4.1.0-r1.ebuild
index 3de8bf832..1e6bf531f 100644
--- a/x11-libs/gtk-fortran/gtk-fortran-4.1.0.ebuild
+++ b/x11-libs/gtk-fortran/gtk-fortran-4.1.0-r1.ebuild
@@ -1,12 +1,13 @@
-# 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
 
 CMAKE_MAKEFILE_GENERATOR="emake"
 FORTRAN_STANDARD=2003
+VIRTUALX_REQUIRED="test"
 
-inherit cmake fortran-2
+inherit cmake fortran-2 virtualx
 
 DESCRIPTION="A GTK+ binding to build Graphical User Interfaces in Fortran"
 HOMEPAGE="https://github.com/vmagnin/gtk-fortran;
@@ -16,8 +17,9 @@ LICENSE="GPL-3"
 SLOT="4"
 KEYWORDS="~amd64 ~x86"
 
-IUSE="examples high-level plplot static-libs"
+IUSE="examples high-level plplot static-libs test"
 REQUIRED_USE="plplot? ( high-level )"
+RESTRICT="!test? ( test )"
 
 RDEPEND="
gui-libs/gtk:4
@@ -55,6 +57,10 @@ src_configure() {
cmake_src_configure
 }
 
+src_test() {
+   virtx cmake_src_test
+}
+
 src_install() {
cmake_src_install
 



[gentoo-commits] repo/proj/guru:dev commit in: x11-libs/gtk-fortran/, x11-libs/gtk-fortran/files/

2022-10-29 Thread Sergey Torokhov
commit: f83445e50da9fc1860afcd677f6bac13c3935584
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sat Oct 29 22:13:50 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sat Oct 29 22:13:50 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f83445e5

x11-libs/gtk-fortran: drop 3.24.18; fix 'https' in metadata.xml

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

 x11-libs/gtk-fortran/Manifest  |  1 -
 .../gtk-fortran-3.24.18_skip-static-build.patch| 32 
 x11-libs/gtk-fortran/gtk-fortran-3.24.18.ebuild| 60 --
 x11-libs/gtk-fortran/metadata.xml  |  2 +-
 4 files changed, 1 insertion(+), 94 deletions(-)

diff --git a/x11-libs/gtk-fortran/Manifest b/x11-libs/gtk-fortran/Manifest
index 010a18a62..e7bda029d 100644
--- a/x11-libs/gtk-fortran/Manifest
+++ b/x11-libs/gtk-fortran/Manifest
@@ -1,3 +1,2 @@
-DIST gtk-fortran-3.24.18.tar.gz 4066185 BLAKE2B 
45a84dfd27b5f0495da55526262e3ba888f1d7eaa685336aaafae726dab63d047d71901a07eafc08c2f51d1e24a087e85f7b2a172323a8f1608c5ff64193f31c
 SHA512 
b8ebf9e129c95c7aa2cf67d41f16915a18f05bd4cce4001ed56148b6d4e4ae3fe2b2e2080f35a1db4be8256bc3d5992061bf0c0e55e332f9a75a4a03e52cded5
 DIST gtk-fortran-3.24.30.tar.gz 4276622 BLAKE2B 
4b18d21e0479496caea386450fc16c12d20ad3491932b331890b5d7328c704799f8dd288c4a1d0d2e34f0957f0bdca316f820850b80c4ff8d2b66ce3673fe5ec
 SHA512 
4e1cd522ca80db01a1058d6c58b4a6e3e63e6b1d510e2ee5fd0b8f8aa9f9dc8e433d203781c908065571c4c1a6d9686c22eec879b396352b12fa82b604855c86
 DIST gtk-fortran-4.1.0.tar.gz 4100843 BLAKE2B 
c11658472c4f2ad9916f8f421f0d1c48b9ec7874e9e4075f2247e7cfb33ed69946e644aa9a460d63ff676c075b76caf4c70bd09532dda53b4d2035c88b3c1c61
 SHA512 
cd4628a56b2a03f7e958d4284c595b573ab84ac6c630cfae4f3ed13bb6d19a66246cb6adac8b05104f562406a467c03841cf350f8482e7e9f8fd596de4f4c873

diff --git 
a/x11-libs/gtk-fortran/files/gtk-fortran-3.24.18_skip-static-build.patch 
b/x11-libs/gtk-fortran/files/gtk-fortran-3.24.18_skip-static-build.patch
deleted file mode 100644
index fb7cdd2cc..0
--- a/x11-libs/gtk-fortran/files/gtk-fortran-3.24.18_skip-static-build.patch
+++ /dev/null
@@ -1,32 +0,0 @@
-diff -Naur a/src/CMakeLists.txt b/src/CMakeLists.txt
 a/src/CMakeLists.txt
-+++ b/src/CMakeLists.txt
-@@ -73,17 +73,16 @@
- endif()
- 
- #==
--# Defining the static and shared gtk-fortran libraries:
-+# Defining the shared gtk-fortran libraries:
- #==
- add_library(gtk-fortran_object OBJECT ${sources})
- # To build position independent shared libraries:
- set_property(TARGET gtk-fortran_object PROPERTY POSITION_INDEPENDENT_CODE 
TRUE)
- 
--add_library(gtk-fortran_static STATIC $)
- add_library(gtk-fortran_shared SHARED $)
- target_link_libraries(gtk-fortran_shared ${GTK_LIBRARIES})
- 
--set_target_properties(gtk-fortran_static gtk-fortran_shared PROPERTIES 
-+set_target_properties(gtk-fortran_shared PROPERTIES 
-   OUTPUT_NAME ${gtk_V_fortran}
-   VERSION "0.1"
-   SOVERSION "0.1")
-@@ -131,7 +130,7 @@
- #==
- # Files to install:
- #==
--install(TARGETS gtk-fortran_static gtk-fortran_shared
-+install(TARGETS gtk-fortran_shared
-   ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR}
-   LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR}
-   RUNTIME DESTINATION ${CMAKE_INSTALL_BINDIR}

diff --git a/x11-libs/gtk-fortran/gtk-fortran-3.24.18.ebuild 
b/x11-libs/gtk-fortran/gtk-fortran-3.24.18.ebuild
deleted file mode 100644
index b83521beb..0
--- a/x11-libs/gtk-fortran/gtk-fortran-3.24.18.ebuild
+++ /dev/null
@@ -1,60 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-CMAKE_MAKEFILE_GENERATOR="emake"
-FORTRAN_STANDARD=2003
-
-inherit cmake fortran-2
-
-DESCRIPTION="A GTK+ binding to build Graphical User Interfaces in Fortran"
-HOMEPAGE="https://github.com/vmagnin/gtk-fortran;
-SRC_URI="https://github.com/vmagnin/${PN}/archive/v20.04.gtk${PV}.tar.gz -> 
${P}.tar.gz"
-
-S="${WORKDIR}/${PN}-20.04.gtk${PV}"
-
-LICENSE="GPL-3"
-SLOT="3"
-KEYWORDS="~amd64 ~x86"
-
-IUSE="examples high-level plplot static-libs"
-REQUIRED_USE="plplot? ( high-level )"
-
-RDEPEND="
-   x11-libs/gtk+:3
-   plplot? ( >=sci-libs/plplot-5.13.0[cairo,fortran] )
-"
-DEPEND="${RDEPEND}"
-BDEPEND="
-   virtual/fortran
-   virtual/pkgconfig
-"
-
-DOCS=( "README.md" "README-high-level.md" "CHANGELOG.md" )
-
-pkg_setup() {
-   fortran-2_pkg_setup
-}
-
-src_prepare() {
-   default
-   # Fix library installation path, disable 'sketcher' build, pass LDFLAGS
-   sed -i -e "s:CMAKE_INSTALL_LIBDIR lib:CMAKE_INSTALL_LIBDIR 
$(get_libdir):" \
-   -e "s:add_subdirectory(sketcher)::" \
-   -e 's:"-rdynamic":"-rdynamic '"${LDFLAGS}"'":' CMakeLists.txt 
|| die
-
-   use !static-libs && eapply "${FILESDIR}/${P}_skip-static-build.patch"
-
-

[gentoo-commits] repo/proj/guru:dev commit in: dev-util/eclipse-parallel-bin/

2022-10-29 Thread Sergey Torokhov
commit: d990cc16ac9bdb8f96b47edb11b77af13ee145d7
Author: Sergey Torokhov  yandex  ru>
AuthorDate: Sat Oct 29 22:05:04 2022 +
Commit: Sergey Torokhov  yandex  ru>
CommitDate: Sat Oct 29 22:05:04 2022 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d990cc16

dev-util/eclipse-parallel-bin: drop old 4.22

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

 dev-util/eclipse-parallel-bin/Manifest |  2 -
 .../eclipse-parallel-bin-4.22.ebuild   | 50 --
 2 files changed, 52 deletions(-)

diff --git a/dev-util/eclipse-parallel-bin/Manifest 
b/dev-util/eclipse-parallel-bin/Manifest
index 826cd37aa..2ee337c57 100644
--- a/dev-util/eclipse-parallel-bin/Manifest
+++ b/dev-util/eclipse-parallel-bin/Manifest
@@ -1,5 +1,3 @@
-DIST eclipse-parallel-2021-12-R-linux-gtk-aarch64.tar.gz 322857025 BLAKE2B 
4bfcfff5ba39199a434c123de98d087ba452e520e450b4621a947c97ca60815622ed20f7b11027992a9549bb218870fdbce8dddbc0b4b86e7ce35afe5eb0d8db
 SHA512 
c5c8d39fda3d10bb80cf2b0ca3a918b00c5df1541e0258839b976b6fd7830ba929ffce1587fbeaf43082303ca19d0a9881ebe374db84cc91883f50c15ace9105
-DIST eclipse-parallel-2021-12-R-linux-gtk-x86_64.tar.gz 322889015 BLAKE2B 
71fd13913965d677a1402df61371f838ec75449f43c43d4a2db6efa1b9ac3ca147895e7dabe85d47f9be060a2695380f1244f5d0d61b47b1ccf41ac508a1b956
 SHA512 
58996bf346e774386056124c8b7b4d8562f9766f873d088d922d33d40b4dc60ffbea919c2a88a2f16fc357ea7383c81de45f14c0dd93a594a773d7aa8bca66ec
 DIST eclipse-parallel-2022-03-R-linux-gtk-aarch64.tar.gz 445580573 BLAKE2B 
30eb4d69f06e93d9f0065f1a97c798bb789fa4b2d73c430ef884f96c8eb1d3f0d12640b6e40c591f106e81c6d19ad487ed82091ede3e0ec797183afb26371083
 SHA512 
4bd02b24f84ad57728abc3f818a7c60d7e0913fe2415f8260546bcbc78f24aa259b876478353586df37d1e6d0d0bde43de15de0d20cc327b4c169c0abc295530
 DIST eclipse-parallel-2022-03-R-linux-gtk-x86_64.tar.gz 446729867 BLAKE2B 
9ea786dc649333a5995224baae1229229718376c51d459f271457d6994666303638ab51d842c58fc9fa3dae56661a0634d029b01ee1a4f32694c000bf22631a5
 SHA512 
c6a656cf2322db721f60a8253deb70233c05f8c730681b50ebc772addfb414be97c67896b8bab7840dc805e64fca6d126aa67a8b8e9074bb82cbb096c3a62ceb
 DIST eclipse-parallel-2022-09-R-linux-gtk-aarch64.tar.gz 458827728 BLAKE2B 
3cbf6157b54e415cb4da1d27c9b5145c5a7ea3108d9b54defab86c6c42acdc2a642fb848f485bb58508f4924a66ec1d763f866d2b1adabf3f017370a8c4bde1b
 SHA512 
afdad4f8c81110f0cd5eae75c8dcb218bfa58b094ac0b180b91e6d7eef2def58f4a857367f8b9e96a6e1d0b223a0350c2be1ca9d9edf1d434a0a24f7383caf48

diff --git a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild 
b/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
deleted file mode 100644
index 4be4eadc7..0
--- a/dev-util/eclipse-parallel-bin/eclipse-parallel-bin-4.22.ebuild
+++ /dev/null
@@ -1,50 +0,0 @@
-# Copyright 1999-2022 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-inherit desktop wrapper xdg
-
-MY_PN="eclipse"
-MY_PV="2021-12"
-SRC_BASE="https://www.eclipse.org/downloads/download.php?r=1=/technology/epp/downloads/release/${MY_PV}/R/eclipse-parallel-${MY_PV}-R-linux-gtk;
-
-DESCRIPTION="Eclipse IDE for Scientific Computing (C, C++, Fortran)"
-HOMEPAGE="https://www.eclipse.org/;
-SRC_URI="
-   amd64? ( ${SRC_BASE}-x86_64.tar.gz )
-   arm64? ( ${SRC_BASE}-aarch64.tar.gz )
-"
-
-S="${WORKDIR}/${MY_PN}"
-
-LICENSE="EPL-2.0"
-SLOT="0"
-KEYWORDS="-* ~amd64 ~arm64"
-RESTRICT="mirror"
-
-RDEPEND="
-   || (
-   dev-java/openjdk:11 dev-java/openjdk:17
-   dev-java/openjdk-bin:11 dev-java/openjdk-bin:17
-   dev-java/openjdk-jre-bin:11
-   )
-   x11-libs/gtk+:3
-"
-
-QA_FLAGS_IGNORED="
-   /opt/eclipse-parallel-bin/eclipse
-   
/opt/eclipse-parallel-bin/plugins/org.eclipse.equinox.launcher.gtk.linux[.].*/eclipse_.*[.]so
-"
-
-src_install() {
-   insinto "/opt/${PN}"
-   doins -r "${S}/."
-
-   exeinto "/opt/${PN}"
-   doexe "${S}/${MY_PN}"
-   make_wrapper ${PN%-*} "/opt/${PN}/${MY_PN} -vm /opt/openjdk*/bin/java" 
"" "/opt/${PN}" "/opt/bin"
-
-   doicon -s 48 
plugins/org.eclipse.platform_4.22.0.v20211124-1800/eclipse48.png
-   make_desktop_entry eclipse-parallel "Eclipse IDE Parallel ${MY_PV}" 
eclipse48 "Development;" || die "Failed making desktop entry!"
-}



  1   2   3   4   5   >