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

2021-08-18 Thread Miroslav Šulc
commit: ec2916a4a2dd5fa8c2a12ad5b77f82f5ee1eb44f
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Aug 19 05:51:09 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Aug 19 05:51:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec2916a4

media-sound/fluidsynth: removed obsolete 2.2.0-r1 & 2.2.1

Closes: https://bugs.gentoo.org/801253
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/fluidsynth/Manifest   |   2 -
 media-sound/fluidsynth/fluidsynth-2.2.0-r1.ebuild | 115 -
 media-sound/fluidsynth/fluidsynth-2.2.1.ebuild| 119 --
 3 files changed, 236 deletions(-)

diff --git a/media-sound/fluidsynth/Manifest b/media-sound/fluidsynth/Manifest
index 58d9518b911..6574eab670f 100644
--- a/media-sound/fluidsynth/Manifest
+++ b/media-sound/fluidsynth/Manifest
@@ -1,3 +1 @@
-DIST fluidsynth-2.2.0.tar.gz 1507709 BLAKE2B 
4ec162ecf461f3fbc80d1b5c1a4bc0624d8274dedcfa32addfd79d7270811e532bccee46b90181bca504183e092176652f6c9d0ae8eccfb5617b9176b8bc511e
 SHA512 
fa08c6d6914accbb5a99bb912066d97ded26ab3c706e663e76a4f1b024f610f676d2e1f7c30872d00e0fe86b5c494dcea581ecd0770977d235962a845c074bd6
-DIST fluidsynth-2.2.1.tar.gz 1594153 BLAKE2B 
9a297859ae90e3dba21a3923059c081596d2a5ff107219b829f75e2067bea315364c9b4a9a4e6563c5a9f9ded92efff2c58d1aef9840b308fe69f546797c83ae
 SHA512 
a42728f179fd2583a292d18d9b7d98498b42574aff6559e8e3762329893dd18c451b5611517aa9aa7ee6ba9fc0db3c83e127d097c68769c5d8562a49dc427ee9
 DIST fluidsynth-2.2.2.tar.gz 1741567 BLAKE2B 
78fe02ae37db70e7aa92071aa609ff6f3dc6217827f89091ded1a8e2d30e84f3d7a095e101fcccfe720e9c3445f58e15da588cfcd7063388ab642649536b8fa0
 SHA512 
208956e367725de4b1faeba7d4125a6a85bb4191ef0354a7087809e93d93b8986cdc30b78c135a743104851d15f3bb09776855fa02a686de0810dd14c97851c3

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

[gentoo-commits] repo/gentoo:master commit in: media-plugins/qmmp-plugin-pack/

2021-08-18 Thread Miroslav Šulc
commit: 322e4668aba5f3de4ed97466e386cde2a03d3485
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Aug 19 05:49:16 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Aug 19 05:49:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=322e4668

media-plugins/qmmp-plugin-pack: removed obsolete 1.5.0

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-plugins/qmmp-plugin-pack/Manifest|  1 -
 .../qmmp-plugin-pack/qmmp-plugin-pack-1.5.0.ebuild | 35 --
 2 files changed, 36 deletions(-)

diff --git a/media-plugins/qmmp-plugin-pack/Manifest 
b/media-plugins/qmmp-plugin-pack/Manifest
index becf0adc07b..ac14641bffd 100644
--- a/media-plugins/qmmp-plugin-pack/Manifest
+++ b/media-plugins/qmmp-plugin-pack/Manifest
@@ -1,2 +1 @@
-DIST qmmp-plugin-pack-1.5.0.tar.bz2 227931 BLAKE2B 
5d036ed0627f6d42187c9d4055185cae2945f99d835694937e2e32ea00063aeecb4ecb4ab494bea151fa7112cc8f604175129e99fc999b2cba4d0ca95074ab12
 SHA512 
ccc62290f5ce45e6f6743c495800641865f07b0abbc40f8eb2e50319407c85f088c93f952905356b695b57e3b7341096faeaa3153e0635722d62c32bbd3bf7b3
 DIST qmmp-plugin-pack-1.5.1.tar.bz2 226034 BLAKE2B 
804e18c538119bfe89700f1975ff717c20bb65c2b956c30dae91d1ab2a06baf716a07809d1391f1844dadc3e8524fb6d37106b33091b91109a19f323b0942306
 SHA512 
0242754fdea26fc7c48a18edf77d35820af86643079c729465d9e4ddacb22470686e9d2771abe52e30441f97db5f1546ab984e941396d4cc67e7a0a1450328f3

diff --git a/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.0.ebuild 
b/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.0.ebuild
deleted file mode 100644
index df779d96ad3..000
--- a/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.0.ebuild
+++ /dev/null
@@ -1,35 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake flag-o-matic
-
-DESCRIPTION="A set of extra plugins for Qmmp"
-HOMEPAGE="http://qmmp.ylsoftware.com/;
-SRC_URI="http://qmmp.ylsoftware.com/files/plugins/${P}.tar.bz2;
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 x86"
-IUSE=""
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtwidgets:5
-   media-libs/libsamplerate
-   >=media-libs/taglib-1.10
-   =media-sound/qmmp-$(ver_cut 1-2)*
-   media-video/ffmpeg
-"
-DEPEND="${RDEPEND}
-   dev-lang/yasm
-   dev-qt/linguist-tools:5
-"
-
-src_configure() {
-   append-ldflags -Wl,-z,noexecstack
-   cmake_src_configure
-}



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

2021-08-18 Thread Miroslav Šulc
commit: cee913d50b7a6606245e5e144f6c2d844bbb4544
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Aug 19 05:48:20 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Aug 19 05:48:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cee913d5

media-sound/qmmp: removed obsolete 1.5.0

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/qmmp/Manifest  |   1 -
 media-sound/qmmp/qmmp-1.5.0.ebuild | 159 -
 2 files changed, 160 deletions(-)

diff --git a/media-sound/qmmp/Manifest b/media-sound/qmmp/Manifest
index 30119fa5a0a..f993c875b2f 100644
--- a/media-sound/qmmp/Manifest
+++ b/media-sound/qmmp/Manifest
@@ -1,2 +1 @@
-DIST qmmp-1.5.0.tar.bz2 1337043 BLAKE2B 
71da332bb125ddcc37cdc159e155af2e185cfef8f70348484ca6099666a4715258fadb8a7db68329a009e0d727b1d7b000553e34eb56552c229b6cc1a5f3dd45
 SHA512 
b8a29bf6b2f6da08e1ff2801c973821663570de436562ba79b40212b8b8522f0e25ea79c941bfacf252904851ed477cbfa66d7f145b172f93a105127894d5e04
 DIST qmmp-1.5.1.tar.bz2 1363593 BLAKE2B 
7c344ce2d9c1bc419b17c8d3727afa6f95273e7487f539b0e2f8cb5328f0185a7aab184d9df01a023f896e8b516135fd58ebe0e2204fb1f5ca283f4e0c04d78f
 SHA512 
4b866e7b53ea1757a94e028730dd99bab3b56917e6835b46284cce148e779e00a5fe0a396667283aa13c980a9ee33d0fe76df0198320f1897ec3b73bcd1f275e

diff --git a/media-sound/qmmp/qmmp-1.5.0.ebuild 
b/media-sound/qmmp/qmmp-1.5.0.ebuild
deleted file mode 100644
index 3f6f68e35de..000
--- a/media-sound/qmmp/qmmp-1.5.0.ebuild
+++ /dev/null
@@ -1,159 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit cmake xdg
-[[ ${PV} =  ]] && inherit subversion
-
-DESCRIPTION="Qt5-based audio player with winamp/xmms skins support"
-HOMEPAGE="http://qmmp.ylsoftware.com;
-if [[ ${PV} !=  ]]; then
-   SRC_URI="http://qmmp.ylsoftware.com/files/${P}.tar.bz2
-   mirror://sourceforge/${PN}-dev/files/${P}.tar.bz2"
-   KEYWORDS="amd64 x86"
-else
-   QMMP_DEV_BRANCH="1.3"
-   
ESVN_REPO_URI="svn://svn.code.sf.net/p/${PN}-dev/code/branches/${PN}-${QMMP_DEV_BRANCH}"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-# KEYWORDS further up
-IUSE="aac +alsa analyzer archive bs2b cdda cover crossfade cue curl +dbus enca
-ffmpeg flac game gnome jack ladspa lyrics +mad midi mms modplug mplayer 
musepack
-notifier opus oss pipewire projectm pulseaudio qsui qtmedia scrobbler shout sid
-sndfile soxr stereo tray udisks +vorbis wavpack"
-
-REQUIRED_USE="
-   gnome? ( dbus )
-   shout? ( soxr vorbis )
-   udisks? ( dbus )
-"
-
-RDEPEND="
-   dev-qt/qtcore:5
-   dev-qt/qtgui:5
-   dev-qt/qtnetwork:5
-   dev-qt/qtsql:5
-   dev-qt/qtwidgets:5
-   dev-qt/qtx11extras:5
-   media-libs/taglib
-   x11-libs/libX11
-   aac? ( media-libs/faad2 )
-   alsa? ( media-libs/alsa-lib )
-   archive? ( app-arch/libarchive )
-   bs2b? ( media-libs/libbs2b )
-   cdda? (
-   dev-libs/libcdio:=
-   dev-libs/libcdio-paranoia
-   )
-   curl? ( net-misc/curl )
-   dbus? ( dev-qt/qtdbus:5 )
-   enca? ( app-i18n/enca )
-   ffmpeg? ( media-video/ffmpeg:= )
-   flac? ( media-libs/flac )
-   game? ( media-libs/game-music-emu )
-   jack? (
-   media-libs/libsamplerate
-   virtual/jack
-   )
-   ladspa? ( media-plugins/cmt-plugins )
-   mad? (
-   media-libs/libmad:=
-   media-sound/mpg123:=
-   )
-   midi? ( media-sound/wildmidi )
-   mms? ( media-libs/libmms )
-   modplug? ( >=media-libs/libmodplug-0.8.4 )
-   mplayer? ( media-video/mplayer )
-   musepack? ( >=media-sound/musepack-tools-444 )
-   opus? ( media-libs/opusfile )
-   pipewire? ( media-video/pipewire )
-   projectm? (
-   dev-qt/qtgui:5[-gles2-only]
-   dev-qt/qtopengl:5
-   media-libs/libprojectm:=
-   )
-   pulseaudio? ( >=media-sound/pulseaudio-0.9.9 )
-   qtmedia? ( dev-qt/qtmultimedia:5 )
-   scrobbler? ( net-misc/curl )
-   shout? ( media-libs/libshout )
-   sid? ( >=media-libs/libsidplayfp-1.1.0 )
-   sndfile? ( media-libs/libsndfile )
-   soxr? ( media-libs/soxr )
-   udisks? ( sys-fs/udisks:2 )
-   vorbis? (
-   media-libs/libogg
-   media-libs/libvorbis
-   )
-   wavpack? ( media-sound/wavpack )
-"
-DEPEND="${RDEPEND}
-   dev-qt/linguist-tools:5
-"
-
-DOCS=( AUTHORS ChangeLog README )
-
-src_prepare() {
-   if has_version dev-libs/libcdio-paranoia ; then
-   sed -i \
-   -e 's:cdio/cdda.h:cdio/paranoia/cdda.h:' \
-   src/plugins/Input/cdaudio/decoder_cdaudio.cpp || die
-   fi
-
-   cmake_src_prepare
-}
-
-src_configure() {
-   local mycmakeargs=(
-   -DUSE_AAC="$(usex aac)"
- 

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

2021-08-18 Thread Miroslav Šulc
commit: ea45bf522d2a61d8634a8cb405d261873047186e
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Aug 19 05:47:00 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Aug 19 05:47:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea45bf52

media-sound/abcm2ps: removed obsolete 8.14.11

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/abcm2ps/Manifest   |  1 -
 media-sound/abcm2ps/abcm2ps-8.14.11.ebuild | 49 --
 2 files changed, 50 deletions(-)

diff --git a/media-sound/abcm2ps/Manifest b/media-sound/abcm2ps/Manifest
index 587df44be0c..3dbd2d14721 100644
--- a/media-sound/abcm2ps/Manifest
+++ b/media-sound/abcm2ps/Manifest
@@ -1,2 +1 @@
-DIST abcm2ps-8.14.11.tar.gz 259453 BLAKE2B 
a5b2b4142b9d3190fdedd3b560f8baa582293badd90fd380ddb9991871b2e08050d07c3c97f908529be715bce62b9cda242487f3d6a7885ecf802318a64b7df8
 SHA512 
b156c84cfa929aa5999a42b23564af5bac399dccbf116342891b5e5ed2e34e81b4658fab9f3c51f5de084cc96d8ea0965a2bdf81de14de6eb324b8998dbb8b98
 DIST abcm2ps-8.14.12.tar.gz 259618 BLAKE2B 
d0efa0b8a624447791a56591b4a2c0d775c3c3f628dab437a0cb02d49614e21e587d13467f7fa72955a2846704dde0a0da28ae6888faa0032edcb6d026365f47
 SHA512 
a9bd26b21ed057be11f0de6c89e76615820c476b18e521fb7f478e6f685fb768824879d441d616b3de1bbb4a4335ec169aa819a609bea295e0d522d1466e42ed

diff --git a/media-sound/abcm2ps/abcm2ps-8.14.11.ebuild 
b/media-sound/abcm2ps/abcm2ps-8.14.11.ebuild
deleted file mode 100644
index 1af8b60d3f2..000
--- a/media-sound/abcm2ps/abcm2ps-8.14.11.ebuild
+++ /dev/null
@@ -1,49 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-DESCRIPTION="Program to convert abc files to Postscript files"
-HOMEPAGE="https://github.com/leesavide/abcm2ps;
-SRC_URI="https://github.com/leesavide/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="examples pango"
-
-BDEPEND="virtual/pkgconfig"
-DEPEND="
-   pango? (
-   media-libs/freetype:2
-   x11-libs/pango
-   )"
-RDEPEND="${DEPEND}"
-
-src_configure() {
-   econf \
-   --enable-a4 \
-   --enable-deco-is-roll \
-   $(use_enable pango)
-}
-
-src_compile() {
-   emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}"
-}
-
-src_install() {
-   dobin abcm2ps
-
-   insinto /usr/share/${PN}
-   doins *.fmt
-
-   dodoc README.md
-
-   if use examples ; then
-   docinto examples
-   dodoc sample*.*
-   docompress -x /usr/share/doc/${PF}/examples
-   fi
-}



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

2021-08-18 Thread Miroslav Šulc
commit: fa34a068761de8604dd68a10e80e63221bb0f7f5
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Aug 19 05:45:42 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Aug 19 05:45:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa34a068

media-plugins/x42-plugins: removed obsolete 20210409

Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-plugins/x42-plugins/Manifest |  1 -
 .../x42-plugins/x42-plugins-20210409.ebuild| 46 --
 2 files changed, 47 deletions(-)

diff --git a/media-plugins/x42-plugins/Manifest 
b/media-plugins/x42-plugins/Manifest
index 031fcb3ac49..0736b086236 100644
--- a/media-plugins/x42-plugins/Manifest
+++ b/media-plugins/x42-plugins/Manifest
@@ -1,2 +1 @@
-DIST x42-plugins-20210409.tar.xz 3442288 BLAKE2B 
d6d4e6e20935b400b96a944b9e8aea7797129f09be79313092760a32b69913c94a7b3ea0b434e35052adc9b348a03788e73bd22556941315f39c15c7d66c0dd4
 SHA512 
4f551af86904368b2cf13367bb0ea47055c1bff43f32d4e846a1758dc014bb83b69a6612cae30357a734195bbb3802b943d3c64f6f5a264403c4dbcb14b467a6
 DIST x42-plugins-20210714.tar.xz 3443752 BLAKE2B 
8e871ba52a83139ace41ae68c09a99bcfc4402c76614f8b9afbd47177e9bb8f0f146e21edb00efaf8648dc4105ac9c5acb1336f7e64764424b162b8f48af11a8
 SHA512 
9ee50cd389b573044e36d903c6468dc3470ca2d6a0aeee9cc9c52c6caeb3f7a4e7855d5e7defcfb6908111a31bb91ed1f4fc90270b09aefa158c864d8e23f2ea

diff --git a/media-plugins/x42-plugins/x42-plugins-20210409.ebuild 
b/media-plugins/x42-plugins/x42-plugins-20210409.ebuild
deleted file mode 100644
index 1902a6a9dea..000
--- a/media-plugins/x42-plugins/x42-plugins-20210409.ebuild
+++ /dev/null
@@ -1,46 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-DESCRIPTION="Collection of LV2 plugins"
-HOMEPAGE="https://github.com/x42/x42-plugins;
-
-if [[ ${PV} == * ]]; then
-   inherit git-r3
-   EGIT_REPO_URI="https://github.com/x42/x42-plugins.git;
-else
-   SRC_URI="http://gareus.org/misc/x42-plugins/${P}.tar.xz;
-   KEYWORDS="amd64"
-fi
-
-LICENSE="GPL-2"
-SLOT="0"
-RESTRICT="mirror"
-
-RDEPEND="dev-libs/glib
-   media-fonts/dejavu
-   media-libs/ftgl
-   media-libs/glu
-   media-libs/liblo
-   media-libs/libsamplerate
-   media-libs/libsndfile
-   media-libs/libltc
-   media-libs/lv2
-   media-libs/zita-convolver
-   sci-libs/fftw:3.0
-   virtual/jack
-   virtual/opengl
-   x11-libs/cairo[X]
-   x11-libs/pango
-"
-DEPEND="${RDEPEND}
-   sys-apps/help2man"
-
-src_compile() {
-   emake STRIP="#" FONTFILE="/usr/share/fonts/dejavu/DejaVuSans-Bold.ttf"
-}
-
-src_install() {
-   emake DESTDIR="${D}" PREFIX="/usr" LV2DIR="/usr/$(get_libdir)/lv2" 
install
-}



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

2021-08-18 Thread Miroslav Šulc
commit: 30a556d78f537426ed666e0a8515c96777386e41
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Thu Aug 19 05:44:02 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Thu Aug 19 05:44:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=30a556d7

media-sound/sonata: removed obsolete 1.7_beta1_p20200212

Closes: https://bugs.gentoo.org/772215
Package-Manager: Portage-3.0.22, Repoman-3.0.3
Signed-off-by: Miroslav Šulc  gentoo.org>

 media-sound/sonata/Manifest|  1 -
 .../sonata/sonata-1.7_beta1_p20200212.ebuild   | 40 --
 2 files changed, 41 deletions(-)

diff --git a/media-sound/sonata/Manifest b/media-sound/sonata/Manifest
index f9092b8ba59..4a125c990e6 100644
--- a/media-sound/sonata/Manifest
+++ b/media-sound/sonata/Manifest
@@ -1,2 +1 @@
 DIST sonata-1.7.0.tar.gz 2258617 BLAKE2B 
704f673737095351f88f64bc858db465b26d8e0fdb34cbb4d3917abe65ec276ec3e6419edd41d9e8b193a886c8dfd178b5fc94daa4a178aae817c2d3024c266b
 SHA512 
c60c16b6cca439c2063069ceea62afdb9f09c9735d36ba42e2b5b1caf07506f15d722d75c68e355db4615b937a728679aeae1619527ac8267feec111635c27f5
-DIST sonata-1.7_beta1_p20200212.tar.gz 2259353 BLAKE2B 
78befe6896d75033649e4f7333bc1487cc7462a66564860d93b4770cb7e86a6cc4656377b6e13defb07591b0a81cbd22653f01c5e9f20d75fcbf28a84551f7fb
 SHA512 
bdff3ee3ec4d94a18604409efbca398f94633a510780f33d449921b69787521ad5d68285aa0fe7252191c1227435c42cf60bca0fe7764e1a8b3d887ff4be4ae6

diff --git a/media-sound/sonata/sonata-1.7_beta1_p20200212.ebuild 
b/media-sound/sonata/sonata-1.7_beta1_p20200212.ebuild
deleted file mode 100644
index 5a0ee03e22a..000
--- a/media-sound/sonata/sonata-1.7_beta1_p20200212.ebuild
+++ /dev/null
@@ -1,40 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-COMMIT=0c807e593f7571a654ad055cb126652d7f3a698d
-PYTHON_COMPAT=( python3_{8..9} )
-DISTUTILS_SINGLE_IMPL="true"
-DISTUTILS_USE_SETUPTOOLS="rdepend"
-inherit desktop distutils-r1
-
-DESCRIPTION="Elegant GTK+ music client for the Music Player Daemon (MPD)"
-HOMEPAGE="https://www.nongnu.org/sonata/;
-SRC_URI="https://github.com/multani/${PN}/archive/${COMMIT}.tar.gz -> 
${P}.tar.gz"
-
-LICENSE="GPL-3"
-SLOT="0"
-KEYWORDS="amd64 ~ppc x86"
-IUSE="dbus taglib"
-
-BDEPEND="
-   virtual/pkgconfig"
-RDEPEND="
-   $(python_gen_cond_dep '
-   dev-python/pygobject:3[${PYTHON_USEDEP}]
-   dev-python/python-mpd[${PYTHON_USEDEP}]
-   dbus? ( dev-python/dbus-python[${PYTHON_USEDEP}] )
-   taglib? ( dev-python/tagpy[${PYTHON_USEDEP}] )
-   ')
-"
-
-S="${WORKDIR}/${PN}-${COMMIT}"
-
-distutils_enable_tests unittest
-
-src_install() {
-   distutils-r1_src_install
-   doicon -s 128 sonata/pixmaps/sonata.png
-   rm -r "${ED}"/usr/share/sonata || die
-}



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

2021-08-18 Thread Agostino Sarubbo
commit: 326069ba65003b217a5e873038f3a3a06ef5614e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 05:16:45 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 05:16:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=326069ba

dev-python/eventlet: ppc stable wrt bug #808288

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/eventlet/eventlet-0.31.1.ebuild 
b/dev-python/eventlet/eventlet-0.31.1.ebuild
index 0b3e89e1d1e..15b13332070 100644
--- a/dev-python/eventlet/eventlet-0.31.1.ebuild
+++ b/dev-python/eventlet/eventlet-0.31.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/e/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~s390 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 768a925b53230b0239f1666515983e2f158c9db3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 05:16:15 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 05:16:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768a925b

dev-python/cffi: amd64 stable wrt bug #808279

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/cffi/cffi-1.14.6.ebuild 
b/dev-python/cffi/cffi-1.14.6.ebuild
index 9c4adb7f327..ef58485f445 100644
--- a/dev-python/cffi/cffi-1.14.6.ebuild
+++ b/dev-python/cffi/cffi-1.14.6.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 DEPEND="dev-libs/libffi:="
 RDEPEND="${DEPEND}



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

2021-08-18 Thread Sam James
commit: b6fafad574853efaae61286ed215db1ab4e1191d
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:59:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 03:27:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6fafad5

media-sound/gmpc: add missing dependencies (libICE, libSM)

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

 .../gmpc/{gmpc-11.8.16-r1.ebuild => gmpc-11.8.16-r2.ebuild} | 13 -
 1 file changed, 8 insertions(+), 5 deletions(-)

diff --git a/media-sound/gmpc/gmpc-11.8.16-r1.ebuild 
b/media-sound/gmpc/gmpc-11.8.16-r2.ebuild
similarity index 84%
rename from media-sound/gmpc/gmpc-11.8.16-r1.ebuild
rename to media-sound/gmpc/gmpc-11.8.16-r2.ebuild
index 0fcbc8fbc67..911dcb5e0a5 100644
--- a/media-sound/gmpc/gmpc-11.8.16-r1.ebuild
+++ b/media-sound/gmpc/gmpc-11.8.16-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,14 +17,17 @@ IUSE="nls +unique xspf"
 RDEPEND="
dev-db/sqlite:3=
dev-libs/glib:2
-   dev-libs/libxml2:2=
+   dev-libs/libxml2:2
media-libs/libmpd:=
-   net-libs/libsoup:2.4=
+   net-libs/libsoup:2.4
+   sys-libs/zlib
x11-libs/gtk+:2
+   x11-libs/libICE
+   x11-libs/libSM
x11-libs/libX11
x11-themes/hicolor-icon-theme
-   unique? ( dev-libs/libunique:1= )
-   xspf? ( media-libs/libxspf:= )"
+   unique? ( dev-libs/libunique:1 )
+   xspf? ( media-libs/libxspf )"
 DEPEND="${RDEPEND}"
 BDEPEND="
$(vala_depend)



[gentoo-commits] repo/gentoo:master commit in: app-i18n/cstools/

2021-08-18 Thread Sam James
commit: 2b56b28b73f975a88fd51cd0e47a184b0fed3b8a
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 03:24:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 03:27:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2b56b28b

app-i18n/cstools: add 3.44

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

 app-i18n/cstools/Manifest|  1 +
 app-i18n/cstools/cstools-3.44.ebuild | 23 +++
 2 files changed, 24 insertions(+)

diff --git a/app-i18n/cstools/Manifest b/app-i18n/cstools/Manifest
index 6eef0d40f8c..49d251999cf 100644
--- a/app-i18n/cstools/Manifest
+++ b/app-i18n/cstools/Manifest
@@ -1 +1,2 @@
 DIST Cstools-3.42.tar.gz 30650 BLAKE2B 
bf67d60b2373bed444086a8866695ee861f473fde5a623b7813659fda5dc905bffc968fefb479bd76e8345a1d9f47d3094c55a683a939a45e9a5fffd402ad33c
 SHA512 
78f2f95b5cfde77d23249550085a895abc35965b02ff26382b248d4e713c90c113ad7909b916713dff55c9ee210f13672d609d794b3caf9985fcb207a071f19f
+DIST Cstools-3.44.tar.gz 31924 BLAKE2B 
193d1d85746bf028833416bdb3e6c3b220498affb0162bd688fcc7ac4c406c618c53c2d2e7a4cb2fc799469246e1366f8c3f43f6f834220d2719b753c1511630
 SHA512 
9843eefb5f9a4edb33767162cb4beb24709d61903ccda8552cc9d914ef27ca6705a14e98cfb52a00c37f0428d937237044f96c0ba1673e6e67ad98f027032922

diff --git a/app-i18n/cstools/cstools-3.44.ebuild 
b/app-i18n/cstools/cstools-3.44.ebuild
new file mode 100644
index 000..660b2ec472e
--- /dev/null
+++ b/app-i18n/cstools/cstools-3.44.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+# Fails in parallel
+# bug #707888
+DIST_TEST="do"
+inherit perl-module
+
+MY_P="Cstools-${PV}"
+DESCRIPTION="A charset conversion tool cstocs and two Perl modules for Czech 
language"
+SRC_URI="https://www.adelton.com/perl/Cstools/${MY_P}.tar.gz;
+HOMEPAGE="https://www.adelton.com/perl/Cstools/;
+S="${WORKDIR}/${MY_P}"
+
+LICENSE="Artistic"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="dev-perl/MIME-tools"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker"



[gentoo-commits] repo/gentoo:master commit in: gui-apps/waybar/

2021-08-18 Thread Ionen Wolkens
commit: 5294c412ea26643eeb5d286b9465e556f3033551
Author: Haelwenn (lanodan) Monnier  hacktivis  me>
AuthorDate: Mon Aug 16 13:39:01 2021 +
Commit: Ionen Wolkens  gentoo  org>
CommitDate: Thu Aug 19 03:24:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5294c412

gui-apps/waybar: Add support for sndio

Signed-off-by: Haelwenn (lanodan) Monnier  hacktivis.me>
Closes: https://github.com/gentoo/gentoo/pull/22004
Signed-off-by: Ionen Wolkens  gentoo.org>

 gui-apps/waybar/metadata.xml   | 1 +
 gui-apps/waybar/waybar-0.9.5-r1.ebuild | 5 +++--
 gui-apps/waybar/waybar-0.9.7-r1.ebuild | 5 +++--
 gui-apps/waybar/waybar-.ebuild | 5 +++--
 4 files changed, 10 insertions(+), 6 deletions(-)

diff --git a/gui-apps/waybar/metadata.xml b/gui-apps/waybar/metadata.xml
index dcceb3fa3b5..cd0c464d767 100644
--- a/gui-apps/waybar/metadata.xml
+++ b/gui-apps/waybar/metadata.xml
@@ -13,6 +13,7 @@
Enable support for the Music Player 
Daemon
Enable libnl support for network related 
features
Enable popup support with 
gtk-layer-shell
+   Enable support for volume control via 
sndio
Enable support for volume control via 
PulseAudio
Enable support for tray
Enable support for wifi/rfkill

diff --git a/gui-apps/waybar/waybar-0.9.5-r1.ebuild 
b/gui-apps/waybar/waybar-0.9.5-r1.ebuild
index 9bc5d7b989d..fe2a849be6c 100644
--- a/gui-apps/waybar/waybar-0.9.5-r1.ebuild
+++ b/gui-apps/waybar/waybar-0.9.5-r1.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/${PN^}-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="mpd network popups pulseaudio tray +udev wifi"
+IUSE="mpd network popups pulseaudio sndio tray +udev wifi"
 
 BDEPEND="
>=app-text/scdoc-1.9.2
@@ -41,6 +41,7 @@ DEPEND="
network? ( dev-libs/libnl:3 )
popups? ( gui-libs/gtk-layer-shell )
pulseaudio? ( media-sound/pulseaudio )
+   sndio? ( media-sound/sndio:= )
tray? (
dev-libs/libdbusmenu[gtk3]
dev-libs/libappindicator
@@ -60,10 +61,10 @@ src_configure() {
$(meson_feature network libnl)
$(meson_feature popups gtk-layer-shell)
$(meson_feature pulseaudio)
+   $(meson_feature sndio)
$(meson_feature tray dbusmenu-gtk)
$(meson_feature udev libudev)
$(meson_feature wifi rfkill)
-   -Dsndio=disabled
)
meson_src_configure
 }

diff --git a/gui-apps/waybar/waybar-0.9.7-r1.ebuild 
b/gui-apps/waybar/waybar-0.9.7-r1.ebuild
index aeaa8117b73..7113f77a874 100644
--- a/gui-apps/waybar/waybar-0.9.7-r1.ebuild
+++ b/gui-apps/waybar/waybar-0.9.7-r1.ebuild
@@ -19,7 +19,7 @@ S="${WORKDIR}/${PN^}-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="mpd network popups pulseaudio tray +udev wifi"
+IUSE="mpd network popups pulseaudio sndio tray +udev wifi"
 
 BDEPEND="
>=app-text/scdoc-1.9.2
@@ -41,6 +41,7 @@ DEPEND="
network? ( dev-libs/libnl:3 )
popups? ( gui-libs/gtk-layer-shell )
pulseaudio? ( media-sound/pulseaudio )
+   sndio? ( media-sound/sndio:= )
tray? (
dev-libs/libdbusmenu[gtk3]
dev-libs/libappindicator
@@ -60,10 +61,10 @@ src_configure() {
$(meson_feature network libnl)
$(meson_feature popups gtk-layer-shell)
$(meson_feature pulseaudio)
+   $(meson_feature sndio)
$(meson_feature tray dbusmenu-gtk)
$(meson_feature udev libudev)
$(meson_feature wifi rfkill)
-   -Dsndio=disabled
)
meson_src_configure
 }

diff --git a/gui-apps/waybar/waybar-.ebuild 
b/gui-apps/waybar/waybar-.ebuild
index d7a4fe437b9..d30504c323d 100644
--- a/gui-apps/waybar/waybar-.ebuild
+++ b/gui-apps/waybar/waybar-.ebuild
@@ -18,7 +18,7 @@ fi
 
 LICENSE="MIT"
 SLOT="0"
-IUSE="mpd network popups pulseaudio tray +udev wifi"
+IUSE="mpd network popups pulseaudio sndio tray +udev wifi"
 
 BDEPEND="
>=app-text/scdoc-1.9.2
@@ -40,6 +40,7 @@ DEPEND="
network? ( dev-libs/libnl:3 )
popups? ( gui-libs/gtk-layer-shell )
pulseaudio? ( media-sound/pulseaudio )
+   sndio? ( media-sound/sndio:= )
tray? (
dev-libs/libdbusmenu[gtk3]
dev-libs/libappindicator
@@ -55,10 +56,10 @@ src_configure() {
$(meson_feature network libnl)
$(meson_feature popups gtk-layer-shell)
$(meson_feature pulseaudio)
+   $(meson_feature sndio)
$(meson_feature tray dbusmenu-gtk)
$(meson_feature udev libudev)
$(meson_feature wifi rfkill)
-   -Dsndio=disabled
)
meson_src_configure
 }



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

2021-08-18 Thread Matt Turner
commit: 8741b4499f9c826bf6c904f130d2bda0bc9e6f38
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 02:41:24 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 03:01:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8741b449

x11-wm/mutter: Version bump to 40.4

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

 x11-wm/mutter/Manifest   |   1 +
 x11-wm/mutter/mutter-40.4.ebuild | 166 +++
 2 files changed, 167 insertions(+)

diff --git a/x11-wm/mutter/Manifest b/x11-wm/mutter/Manifest
index eccfa0e3641..099e68d5b87 100644
--- a/x11-wm/mutter/Manifest
+++ b/x11-wm/mutter/Manifest
@@ -1,2 +1,3 @@
 DIST mutter-40.2.1.tar.xz 2681780 BLAKE2B 
b273bc9979e285bd6c48afb367f0973114dbc9af086b5aadf41e6dc1cca54f7ca25975a4e2fe5b4acb020fa8f5fc136f0661be2b06deaacf25c363a187567b73
 SHA512 
f9b50b10f6a4ee8ba3d8d721734d25184675c2af1f14cb8da8cac6a6a60397c36bf39e87db06ac0ed8a0f3cbf78859e57fa965ac0d2593ed9c6aa9692d90d5b2
 DIST mutter-40.3.tar.xz 2682460 BLAKE2B 
41e505adc9aa6ca53d1f43d71051bc09c0f4f528803f10c8f4ad8fe2cf28f5a02a3d3dca1a4a02b702a40177501663e20b68415295805b6c0503690dbb5e53fc
 SHA512 
beb9cb1b8dee153fe204aa5d799e4ba44380c8483362ab4f7b149c715be6fa929345386b78af73ca6ae7e864dd2923e5c0de88404f8ffe5d22f2ae9238bcc074
+DIST mutter-40.4.tar.xz 2682648 BLAKE2B 
fe3ed2edc20b4502db17bf3e6413159047eaa9812baa01b49f64ca2e3f05fe6f2e922a8e84ffd01636e8b6e5e31381653311153db5910f2dd1c84431d1892f6b
 SHA512 
a38fe7c1ba2c65cb4510ee3ecd9b3e726cf3cb35922977e55f8b49f5ab847601277e1efaec63e7068ce0f924b38085adfe6d26b6d0af148a8f87400b31aba805

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

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

2021-08-18 Thread Matt Turner
commit: f1da32fdebfb81c7f24e0545dcef8056ec8b52f8
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 02:43:35 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 03:01:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f1da32fd

x11-libs/pango: Version bump to 1.48.9

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

 x11-libs/pango/Manifest|  1 +
 x11-libs/pango/pango-1.48.9.ebuild | 75 ++
 2 files changed, 76 insertions(+)

diff --git a/x11-libs/pango/Manifest b/x11-libs/pango/Manifest
index b45d44b0798..3232eefc54a 100644
--- a/x11-libs/pango/Manifest
+++ b/x11-libs/pango/Manifest
@@ -3,3 +3,4 @@ DIST pango-1.42.4.tar.xz 833876 BLAKE2B 
7de1094a29750b9e59ea1e5c92644fa5d6b83582
 DIST pango-1.48.5.tar.xz 1819476 BLAKE2B 
8529e8cbcf0f33be56cf09229abe45fb3525e12a9c2a6ad7cca416ff67a92eb010abc2ce814fa4d19a924186369eede4a576efdd2f4c64b39e31c9821c5e414a
 SHA512 
2c758e649af5b9f9fa960c26a6f4dcf5abd8035101fdfe4a02fe02cb892250b615584b02d63aaa06f3da5cbe7bb848459ac969f43437c34cec084b51bcf48cab
 DIST pango-1.48.7.tar.xz 2050880 BLAKE2B 
2ee048d9713aed0972ffdf3feb96c7c0683ffa1494ac2b798a4f6b1f5797d689b0e0c06bcc3f4a10130d23279ed295a3a59141c75bd3a0f2da7facf62d6c3baa
 SHA512 
e5680d628f531bea7633945bd74dc51a93c4c881dec58fcf9f6271043e77b82a4805e311355cb4d9f8cdfcdf52785a5a6391517a264b62416c26e82dff4aca39
 DIST pango-1.48.8.tar.xz 2061300 BLAKE2B 
0a7fc00e15ce5c0362c6d6e115c46037e8f92c181db35bdc048fbd4ebf0c8983be81b5d9f751afe00436e8ab50013153be7851854fdb81954352099e229633d0
 SHA512 
172beb06b0bba2c06449c3117e69ae58c17ea2e501ab2ee33258129c04ff045d2e71b80ff2c1dbd405b758085d657c201d19a845dddefc0a61261037e861cd36
+DIST pango-1.48.9.tar.xz 2063756 BLAKE2B 
d1610aaac783b95a35ad3e083b4bab33f3d4beff533386817addcb5eb9022de242087ffe4e62c043870b4aac1fbc0fe3e1c5d18744909a5a05015a702dfea2e3
 SHA512 
e3bba743bb596b0a34cedc893f9af0216bcc9fec521c2da09cfdeec9ad80a05b5c53c3fce1a225ab27536e9335725cffb87c66867d0522fd4632df00b1d4c056

diff --git a/x11-libs/pango/pango-1.48.9.ebuild 
b/x11-libs/pango/pango-1.48.9.ebuild
new file mode 100644
index 000..31ec4a4021c
--- /dev/null
+++ b/x11-libs/pango/pango-1.48.9.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit flag-o-matic gnome2-utils meson-multilib toolchain-funcs xdg
+
+DESCRIPTION="Internationalized text layout and rendering library"
+HOMEPAGE="https://www.pango.org/ https://gitlab.gnome.org/GNOME/pango;
+SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/pango/$(ver_cut 
1-2)/${P}.tar.xz"
+
+LICENSE="LGPL-2+"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+IUSE="debug +introspection sysprof X"
+
+RDEPEND="
+   >=dev-libs/glib-2.62.2:2[${MULTILIB_USEDEP}]
+   >=dev-libs/fribidi-1.0.6[${MULTILIB_USEDEP}]
+   
>=media-libs/harfbuzz-2.2.0:=[glib(+),introspection?,truetype(+),${MULTILIB_USEDEP}]
+   >=media-libs/fontconfig-2.12.92:1.0=[${MULTILIB_USEDEP}]
+   >=x11-libs/cairo-1.12.10:=[X?,${MULTILIB_USEDEP}]
+   >=media-libs/freetype-2.5.0.1:2=[harfbuzz,png,${MULTILIB_USEDEP}]
+   introspection? ( >=dev-libs/gobject-introspection-0.9.5:= )
+   X? (
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXft-2.3.1-r1[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrender-0.9.8[${MULTILIB_USEDEP}]
+   )
+"
+DEPEND="${RDEPEND}
+   sysprof? ( >=dev-util/sysprof-capture-3.40.1:4[${MULTILIB_USEDEP}] )
+   X? ( x11-base/xorg-proto )
+"
+BDEPEND="
+   dev-util/glib-utils
+   sys-apps/help2man
+   virtual/pkgconfig
+"
+
+src_prepare() {
+   xdg_src_prepare
+   gnome2_environment_reset
+}
+
+multilib_src_configure() {
+   if use debug; then
+   append-cflags -DPANGO_ENABLE_DEBUG
+   else
+   append-cflags -DG_DISABLE_CAST_CHECKS
+   fi
+
+   local emesonargs=(
+   # Never use gi-docgen subproject
+   --wrap-mode nofallback
+
+   -Dgtk_doc=false # we ship pregenerated docs
+   $(meson_native_use_feature introspection)
+   -Dinstall-tests=false
+   -Dfontconfig=enabled
+   $(meson_feature sysprof)
+   -Dlibthai=disabled
+   -Dcairo=enabled
+   $(meson_feature X xft)
+   -Dfreetype=enabled
+   )
+   meson_src_configure
+}
+
+multilib_src_install_all() {
+   insinto /usr/share/gtk-doc/html
+   # This will install PangoXft API docs regardless of USE=-X, but this is 
intentional
+   doins -r "${S}"/docs/Pango*
+}



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

2021-08-18 Thread Matt Turner
commit: 9e1d7fb29c6eae42f7b892c9b8b67e16a149e817
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 02:50:40 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 03:01:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e1d7fb2

gnome-extra/gnome-weather: Version bump to 40.1

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

 gnome-extra/gnome-weather/Manifest |  1 +
 .../gnome-weather/gnome-weather-40.1.ebuild| 52 ++
 2 files changed, 53 insertions(+)

diff --git a/gnome-extra/gnome-weather/Manifest 
b/gnome-extra/gnome-weather/Manifest
index 239f542bcda..f5c3285a164 100644
--- a/gnome-extra/gnome-weather/Manifest
+++ b/gnome-extra/gnome-weather/Manifest
@@ -1 +1,2 @@
 DIST gnome-weather-40.0.tar.xz 938732 BLAKE2B 
bc46da61e9620278f5abc7964b869520da85837739923618b2ade114c8561fc6125e7dca2f2aef5715fec7dfa0561c693f75278d050900cb948f8d1ea42f58ba
 SHA512 
c4560c1a1535a0c2889c8cd934926217a7caceb1b646fa4bb961c7cbde38b9b545a567f24fb81e47c61a2ac3e456a5432e8979591eb5a169fe5849bbd99d6333
+DIST gnome-weather-40.1.tar.xz 941636 BLAKE2B 
110b972eb3eb6319632d00592f9bf50220bb6976bb27f814606758fd6ce98ad9dfdfabcb0e2d4a68f8005aa3cb92538e4820c8add8f7f8cb94a96f7df9453cf8
 SHA512 
47086225a2f0212665e53f053d46b54792d4daebff841bb751a7ed8ca7e2e1d60f0247d890011a03cab4104b0461b71316ff9b6eaea671c68bc1713c38e447dc

diff --git a/gnome-extra/gnome-weather/gnome-weather-40.1.ebuild 
b/gnome-extra/gnome-weather/gnome-weather-40.1.ebuild
new file mode 100644
index 000..ddc78bc521b
--- /dev/null
+++ b/gnome-extra/gnome-weather/gnome-weather-40.1.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit gnome.org gnome2-utils meson xdg
+
+DESCRIPTION="A weather application for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Design/Apps/Weather;
+
+LICENSE="GPL-2+ LGPL-2+ MIT CC-BY-3.0 CC-BY-SA-3.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+
+DEPEND="
+   >=dev-libs/glib-2.32:2
+   >=dev-libs/gobject-introspection-1.56:=
+   >=x11-libs/gtk+-3.20:3
+   >=dev-libs/gjs-1.50
+   >=app-misc/geoclue-2.3.1:2.0
+   >=dev-libs/libgweather-40.0:=
+   >=gui-libs/libhandy-1.1.90:1=
+"
+RDEPEND="${DEPEND}
+   gnome-base/gsettings-desktop-schemas
+"
+# libxml2 required for glib-compile-resources
+BDEPEND="
+   dev-libs/appstream-glib
+   dev-libs/libxml2:2
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+# Tests have a lot of issues, starting with reliance on a system installation,
+# accessing the network and other intermittent failures with network-sandbox 
disabled
+# https://gitlab.gnome.org/GNOME/gnome-weather/issues/67 (and rest not filed)
+# test dep: $(python_gen_any_dep 'dev-util/dogtail[${PYTHON_USEDEP}]')
+# With 3.34, this is now behind a dogtail option we can pass (and have data 
validation)
+
+src_configure() {
+   meson_src_configure -Dprofile=default -Ddogtail=false
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



[gentoo-commits] repo/gentoo:master commit in: media-gfx/shotwell/

2021-08-18 Thread Matt Turner
commit: 4ba5e19abe9cc8b4cf546286b48dfd7a8a11df87
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 02:49:45 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 03:01:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ba5e19a

media-gfx/shotwell: Version bump to 0.30.14

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

 media-gfx/shotwell/Manifest|  1 +
 media-gfx/shotwell/shotwell-0.30.14.ebuild | 82 ++
 2 files changed, 83 insertions(+)

diff --git a/media-gfx/shotwell/Manifest b/media-gfx/shotwell/Manifest
index b3adaa59920..7eaa2793828 100644
--- a/media-gfx/shotwell/Manifest
+++ b/media-gfx/shotwell/Manifest
@@ -1 +1,2 @@
 DIST shotwell-0.30.12.tar.xz 6519996 BLAKE2B 
7417f1bf0057b4974b45be675b177f6fba232d60d56c3d98cc6d5a7a95a31281add5190a04eab965739759aa7d826515996f2fd62350352a54ebf969dc732d95
 SHA512 
3274f15969be7f75ad2fa44e78773b76e11ee6cf8d4990c7f658fa8ce7e84a8fa5f06542fbab4b585c70e41c097c7b07ba702540102e4d0dfca8e927e00180cf
+DIST shotwell-0.30.14.tar.xz 6524680 BLAKE2B 
321406d3731a4baa333c3820ee46e8dc12ca9a340c7f1ac3824ee894fa2826b7efa3ee7a27f551d62043e5f22199042befb5063cc67cefd27830e19db7d7f661
 SHA512 
bd899ac099ec4760f6119804812ef9314c9261c18273309abfb1dccc675b9e4a561c0abea1c46ea0dbbab9f5c00301d840b52714f97ec06548c180a77871db7c

diff --git a/media-gfx/shotwell/shotwell-0.30.14.ebuild 
b/media-gfx/shotwell/shotwell-0.30.14.ebuild
new file mode 100644
index 000..3397e5e6867
--- /dev/null
+++ b/media-gfx/shotwell/shotwell-0.30.14.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+VALA_MIN_API_VERSION="0.40"
+
+inherit gnome.org gnome2-utils meson vala xdg
+
+DESCRIPTION="Open source photo manager for GNOME"
+HOMEPAGE="https://wiki.gnome.org/Apps/Shotwell;
+
+LICENSE="LGPL-2.1"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~sparc ~x86"
+IUSE="opencv udev"
+
+DEPEND="
+   >=x11-libs/gtk+-3.22.0:3
+   >=dev-libs/glib-2.40.0:2
+   >=dev-libs/libgee-0.8.5:0.8
+   >=net-libs/webkit-gtk-2.26:4
+   >=dev-libs/json-glib-0.7.6
+   >=dev-libs/libxml2-2.6.32:2
+   x11-libs/gdk-pixbuf:2
+   >=dev-db/sqlite-3.5.9:3
+   media-libs/gstreamer:1.0
+   media-libs/gst-plugins-base:1.0
+   >=media-libs/libgphoto2-2.5:=
+   udev? ( >=dev-libs/libgudev-145:= )
+   >=media-libs/gexiv2-0.10.4
+   >=media-libs/libraw-0.13.2:=
+   >=media-libs/libexif-0.6.16:=
+   dev-libs/libgdata
+   >=app-crypt/gcr-3:=[gtk]
+   x11-libs/cairo
+   opencv? ( >=media-libs/opencv-2.3.0:= )
+"
+RDEPEND="${DEPEND}
+   media-plugins/gst-plugins-gdkpixbuf:1.0
+   media-plugins/gst-plugins-meta:1.0
+"
+BDEPEND="
+   $(vala_depend)
+   dev-libs/appstream-glib
+   dev-util/itstool
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+   net-libs/libsoup:2.4[vala]
+   media-libs/gexiv2[vala]
+   app-crypt/gcr[vala]
+"
+
+src_prepare() {
+   xdg_src_prepare
+   vala_src_prepare
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dunity-support=false
+   # -Dpublishers # In 0.30.2 all get compiled in anyways, even if 
restricted list, affects only runtime support
+   -Dextra-plugins=true
+   #trace
+   #measure
+   -Ddupe-detection=true
+   $(meson_use udev)
+   -Dinstall-apport-hook=false
+   $(meson_use opencv face-detection)
+   -Dfatal_warnings=false
+   )
+   meson_src_configure
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   gnome2_schemas_update
+}
+
+pkg_postrm() {
+   xdg_pkg_postrm
+   gnome2_schemas_update
+}



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

2021-08-18 Thread Matt Turner
commit: f90ddd009057b245d19a307c03d9e069fee94c6f
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 02:45:46 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 03:01:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f90ddd00

net-libs/gupnp-av: Version bump to 0.13.1

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

 net-libs/gupnp-av/Manifest   |  1 +
 net-libs/gupnp-av/gupnp-av-0.13.1.ebuild | 42 
 2 files changed, 43 insertions(+)

diff --git a/net-libs/gupnp-av/Manifest b/net-libs/gupnp-av/Manifest
index 26eefab1c13..5a13aeb0795 100644
--- a/net-libs/gupnp-av/Manifest
+++ b/net-libs/gupnp-av/Manifest
@@ -1,2 +1,3 @@
 DIST gupnp-av-0.12.11.tar.xz 373052 BLAKE2B 
3c324f790f0ffbcbd6cbf3b95dfdaf9dce51c6bf7bea3051fd5ded31b930dd6ff7b77b16a297cf54a49e738c195fd208dd4e83961f5ee3d302dc84f37b36924c
 SHA512 
f6fb8897ccdb589446d8c83c5fe66918f0f569a624287881aaf41d928e429e41f3306443e24ef4d43d3ddffb24da2ad2c058cd39211176558c9cd7acd7af0ff7
 DIST gupnp-av-0.13.0.tar.xz 91584 BLAKE2B 
96f4a452f199d48c72cf65a7fa0ef6eb59488862f87a7bf7d1eaaa79289e89bab43718c4a4e94f1d6a71ddf65071c1c1b3aa49c180ba068928b1740bb7a3c8d1
 SHA512 
8ff5dcacaa5893290c263ba8be2613da6853e074e2afcbc3e111dbff8c9b9d7edbd3772341bc370a1db06b4ba815fd6071158f61a832e2e8f2a51d66d5d8f230
+DIST gupnp-av-0.13.1.tar.xz 93040 BLAKE2B 
31901d8e15afdb789aa71cdc114e3472870526dd221ed18d503f43a9590235e5f2af896d87ac2747f8d9dac8b7f27f8b055bd0d5d18838add87162ae9c6289df
 SHA512 
e99485d5d232227f57156cafdfb8a30dab135a0d88eb7d041e475d45e1ab4329d25c50f5528a4ba33e0ceb792fd1de3ec2b8ead597d5720fd0827bce42dcd312

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



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

2021-08-18 Thread Matt Turner
commit: 71f9ed120a8fd60fb46dfce8d246167c7006c56a
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 02:52:45 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 03:01:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71f9ed12

gnome-extra/gnome-shell-extensions: Version bump to 40.4

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

 gnome-extra/gnome-shell-extensions/Manifest|  1 +
 .../gnome-shell-extensions-40.4.ebuild | 67 ++
 2 files changed, 68 insertions(+)

diff --git a/gnome-extra/gnome-shell-extensions/Manifest 
b/gnome-extra/gnome-shell-extensions/Manifest
index 4ce782cfaa4..6a132a52500 100644
--- a/gnome-extra/gnome-shell-extensions/Manifest
+++ b/gnome-extra/gnome-shell-extensions/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-shell-extensions-40.2.tar.xz 218032 BLAKE2B 
f4b8daf2fcd62eaef0ad0960c930fc9368bd426b867a31351b39a2a628dfe9c0631419a5f067b4ac1eb03d2df931ba3a8ea99d4e72043459463b86eb00f6787b
 SHA512 
f02a02a8410e77e8c8b0a764bb7949727974e9a4c0125ac2b6e68c1b20b663ef2de82ddaaed882dd5ffb3a6fd9898b372b6201d53da33f11677c32e82272d2aa
 DIST gnome-shell-extensions-40.3.tar.xz 218108 BLAKE2B 
33174ef4c80caf375d48f11b7678ec78bfbe60a9d4456e21856b09a0a83e99ee7b68598c719a6913a29d9686317015fbc8d8bfae856e433414889e59e82e5ca3
 SHA512 
3773b0a5ec81b6663a3b2c5f5d1f8e7619fdba49ce67b25ee0fd17ea7c9740c3698b7a4e4f7fa78241c8738663c602cb5ed1ff9874b8ad2321fec0dbc737
+DIST gnome-shell-extensions-40.4.tar.xz 218088 BLAKE2B 
f992c98fa5ceec84c774881468e0c9736d24f1834b9d6976f7cddc2dce455393fad0ad055c1e02b308135914029874c4d87d3a09733a7b4686308e9052cef21a
 SHA512 
79f087c9fbc7764241751441190819b3e768530257ffe3a7b39b1004f8997de9c8ea381338ec0544a39b8cc6866137d315e56f3f058c9b66a9ed566ec40712ef

diff --git 
a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.4.ebuild 
b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.4.ebuild
new file mode 100644
index 000..f5bc021adca
--- /dev/null
+++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-40.4.ebuild
@@ -0,0 +1,67 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+inherit gnome.org readme.gentoo-r1 meson xdg
+
+DESCRIPTION="JavaScript extensions for GNOME Shell"
+HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions;
+
+LICENSE="GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+
+DEPEND="
+   >=dev-libs/glib-2.26:2
+   >=gnome-base/libgtop-2.28.3[introspection]
+   >=app-eselect/eselect-gnome-shell-extensions-20111211
+"
+RDEPEND="${DEPEND}
+   >=dev-libs/gjs-1.29
+   dev-libs/gobject-introspection:=
+   dev-libs/atk[introspection]
+   gnome-base/gnome-menus:3[introspection]
+   =gnome-base/gnome-shell-$(ver_cut 1-2)*
+   media-libs/clutter:1.0[introspection]
+   net-libs/telepathy-glib[introspection]
+   x11-libs/gdk-pixbuf:2[introspection]
+   x11-libs/gtk+:3[introspection]
+   x11-libs/pango[introspection]
+   x11-themes/adwaita-icon-theme
+   >=x11-wm/mutter-3.32[introspection]
+"
+BDEPEND="
+   >=sys-devel/gettext-0.19.8
+   virtual/pkgconfig
+"
+
+DISABLE_AUTOFORMATTING="yes"
+DOC_CONTENTS="Installed extensions installed are initially disabled by default.
+To change the system default and enable some extensions, you can use
+# eselect gnome-shell-extensions
+
+Alternatively, to enable/disable extensions on a per-user basis,
+you can use the https://extensions.gnome.org/ web interface, the
+gnome-extra/gnome-tweaks GUI, or modify the org.gnome.shell
+enabled-extensions gsettings key from the command line or a script."
+
+src_configure() {
+   meson_src_configure \
+   -Dextension_set=all \
+   -Dclassic_mode=true
+}
+
+src_install() {
+   meson_src_install
+   readme.gentoo_create_doc
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+
+   ebegin "Updating list of installed extensions"
+   eselect gnome-shell-extensions update
+   eend $?
+
+   readme.gentoo_print_elog
+}



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

2021-08-18 Thread Matt Turner
commit: 052ac82a82873538565a652ac5ec739171ea0b7d
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Aug 19 02:53:37 2021 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Aug 19 03:01:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=052ac82a

gnome-base/gnome-shell: Version bump to 40.4

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

 gnome-base/gnome-shell/Manifest|   1 +
 gnome-base/gnome-shell/gnome-shell-40.4.ebuild | 191 +
 2 files changed, 192 insertions(+)

diff --git a/gnome-base/gnome-shell/Manifest b/gnome-base/gnome-shell/Manifest
index e9ecf7ad01e..7698c830a94 100644
--- a/gnome-base/gnome-shell/Manifest
+++ b/gnome-base/gnome-shell/Manifest
@@ -1,2 +1,3 @@
 DIST gnome-shell-40.2.tar.xz 1869600 BLAKE2B 
6081930c4fe564980659bfeb7f7f59c5b95ce56e158096f14d8f85b28f4b45b1697eebdd88f7daf331aa1f7d087ec3dab55543d9a82d9d26bc5d8aee7e7c0085
 SHA512 
0df0a68a0e2440f73dfc147045ac2f003e5f133950cdbec7fb07b92e71aa53e2e4f3ce75510552f1043404850623fc84c08aad215b39ce9d33862994ae35ba87
 DIST gnome-shell-40.3.tar.xz 1869724 BLAKE2B 
b6a663c97f5ad9239e608e16805074f9695f90b110514d202cc799818321d258417ce4e7841fa3256ae664e2bcba12201ac035737720a37f4eb3e84a26418ad9
 SHA512 
05d47e1b0f8ec27f0ae7564476012f21dcb2ec8e6da61a589b7fe17df1a23035cb6e261805250a410737502b9bdbb25f56432a618de1d7e15b6432e52770
+DIST gnome-shell-40.4.tar.xz 1870468 BLAKE2B 
78b0a749850e5df18beabd25cc35214b2d1f9a254dd095b9e783b2acdc9bac30edd7ffae3e6b15dd14d5b0877e8453c17548298e29b57642353e80ed505e556d
 SHA512 
305d12cc7273f23e4a0c294f532cbf951816fd2de81959bef769048f4d5717e9e1886b64fe17b2f5ef6ee216ea67a6b913293a8903ec5dc5214bd29fbb1d3b32

diff --git a/gnome-base/gnome-shell/gnome-shell-40.4.ebuild 
b/gnome-base/gnome-shell/gnome-shell-40.4.ebuild
new file mode 100644
index 000..008ace54f8a
--- /dev/null
+++ b/gnome-base/gnome-shell/gnome-shell-40.4.ebuild
@@ -0,0 +1,191 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit gnome.org gnome2-utils meson python-single-r1 virtualx xdg
+
+DESCRIPTION="Provides core UI functions for the GNOME desktop"
+HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell;
+
+LICENSE="GPL-2+ LGPL-2+"
+SLOT="0"
+IUSE="+bluetooth +browser-extension elogind gtk-doc +ibus +networkmanager 
systemd telepathy"
+REQUIRED_USE="${PYTHON_REQUIRED_USE}
+   ?? ( elogind systemd )"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
+
+# libXfixes-5.0 needed for pointer barriers and #include 

+# FIXME:
+#  * gstreamer/pipewire support is currently automagic
+DEPEND="
+   >=gnome-extra/evolution-data-server-3.33.1:=
+   >=app-crypt/gcr-3.7.5[introspection]
+   >=dev-libs/glib-2.57.2:2
+   >=dev-libs/gobject-introspection-1.49.1:=
+   >=dev-libs/gjs-1.65.1
+   >=x11-libs/gtk+-3.15.0:3[introspection]
+   >=x11-wm/mutter-40.0:0/8[introspection]
+   >=sys-auth/polkit-0.100[introspection]
+   >=gnome-base/gsettings-desktop-schemas-3.33.1
+   >=x11-libs/startup-notification-0.11
+   >=app-i18n/ibus-1.5.2
+   >=gnome-base/gnome-desktop-3.35.90:3=[introspection]
+   bluetooth? ( >=net-wireless/gnome-bluetooth-3.9[introspection] )
+   >=media-libs/gstreamer-0.11.92:1.0
+   media-libs/gst-plugins-base:1.0
+   >=media-video/pipewire-0.3.0:0/0.3
+   networkmanager? (
+   >=net-misc/networkmanager-1.10.4:=[introspection]
+   net-libs/libnma[introspection]
+   >=app-crypt/libsecret-0.18
+   dev-libs/dbus-glib )
+   systemd? ( >=sys-apps/systemd-242
+   >=gnome-base/gnome-desktop-3.34.2:3=[systemd] )
+   elogind? ( >=sys-auth/elogind-237 )
+
+   app-arch/gnome-autoar
+   dev-libs/json-glib
+
+   >=app-accessibility/at-spi2-atk-2.5.3
+   x11-libs/gdk-pixbuf:2[introspection]
+   dev-libs/libxml2:2
+   x11-libs/libX11
+
+   >=media-sound/pulseaudio-2[glib]
+   >=dev-libs/atk-2[introspection]
+   dev-libs/libical:=
+   >=x11-libs/libXfixes-5.0
+
+   gui-libs/gtk:4[introspection]
+
+   ${PYTHON_DEPS}
+   $(python_gen_cond_dep '
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   ')
+   media-libs/mesa[X(+)]
+"
+# Runtime-only deps are probably incomplete and approximate.
+# Introspection deps generated using:
+#  grep -roe "imports.gi.*" gnome-shell-* | cut -f2 -d: | sort | uniq
+# Each block:
+# 1. Introspection stuff needed via imports.gi.*
+# 2. gnome-session needed for shutdown/reboot/inhibitors/etc
+# 3. Control shell settings
+# 4. logind interface needed for suspending support
+# 5. xdg-utils needed for xdg-open, used by extension tool
+# 6. adwaita-icon-theme needed for various icons & arrows (3.26 for new 
video-joined-displays-symbolic and co icons; review for 3.28+)
+# 7. mobile-broadband-provider-info, timezone-data for 
shell-mobile-providers.c  # 

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

2021-08-18 Thread Sam James
commit: fa05345540e33508d93f924e2b34c12e831c0bc9
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:24:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:24:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fa053455

Revert "sys-apps/plocate: add version 1.1.9"

Didn't mean to push! This reverts commit 
f86f7acf1b4cb919a762e1595dea1011463099c7.

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

 sys-apps/plocate/Manifest  |  1 -
 .../files/plocate-1.1.9-no-systemd-check.patch | 38 --
 sys-apps/plocate/plocate-1.1.9.ebuild  | 82 --
 3 files changed, 121 deletions(-)

diff --git a/sys-apps/plocate/Manifest b/sys-apps/plocate/Manifest
index 381cb363f74..4d4a1d480d4 100644
--- a/sys-apps/plocate/Manifest
+++ b/sys-apps/plocate/Manifest
@@ -1,2 +1 @@
 DIST plocate-1.1.8.tar.gz 71569 BLAKE2B 
06ad0e9535b76bf0102cdeeb6014e2d84f85f51f5926520566e9c6871f04ac09651bb0674ed679d2a4c0d4e516e55dfef35a7021112fad3549bf76993554aeb5
 SHA512 
a685347df64ac1a3eb7789cb7023b4d0ffed5fb7435a4bd88c3943991e145a387829532ec0c01d30d851b97b8d3173ff4c7c274775e639b75f0b1b45e5bca2a6
-DIST plocate-1.1.9.tar.gz 71973 BLAKE2B 
c761735ee54c6f8430839dee1582b10e7eaf15e29cefed94d59221d0111d002cac88d86050099b6cdf0130b71a995c0d26fe57cbd9eccdf00b3489f5bd1ae432
 SHA512 
2a2bffa338add760e598ac14b68d063cb0cc7df244b6af84f70166294a0c0b66acdedce432d0573e8f2d8dcd3ddba597baa407e93cddc5c58a0b492a1e031135

diff --git a/sys-apps/plocate/files/plocate-1.1.9-no-systemd-check.patch 
b/sys-apps/plocate/files/plocate-1.1.9-no-systemd-check.patch
deleted file mode 100644
index 677f20fc799..000
--- a/sys-apps/plocate/files/plocate-1.1.9-no-systemd-check.patch
+++ /dev/null
@@ -1,38 +0,0 @@
-From 0b1e568bc66df9fdb0bfd6f54b4ff2e540769dbe Mon Sep 17 00:00:00 2001
-From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= 
-Date: Thu, 19 Aug 2021 02:36:54 +0200
-Subject: [PATCH] unconditionally configure systemd service
-

- meson.build | 15 +++
- 1 file changed, 3 insertions(+), 12 deletions(-)
-
-diff --git a/meson.build b/meson.build
-index dc14eb1..9a3b3fe 100644
 a/meson.build
-+++ b/meson.build
-@@ -76,18 +76,9 @@ updatedb_conf_man = configure_file(input: 
'updatedb.conf.5.in',
-configuration: conf_data)
- install_man(updatedb_conf_man)
- 
--if get_option('install_systemd')
--  unitdir = get_option('systemunitdir')
--  if unitdir == ''
--  unitdir = 
dependency('systemd').get_pkgconfig_variable('systemdsystemunitdir')
--  endif
--
--  updatedb_service = configure_file(input: 'plocate-updatedb.service.in',
--  output: 'plocate-updatedb.service',
--  configuration: conf_data)
--  install_data(updatedb_service, install_dir: unitdir)
--  install_data('plocate-updatedb.timer', install_dir: unitdir)
--endif
-+updatedb_service = configure_file(input: 'plocate-updatedb.service.in',
-+  output: 'plocate-updatedb.service',
-+  configuration: conf_data)
- 
- # Requires having TurboPFor checked out, so not built by default.
- # Unless you have a recent Meson, there's no apparently good way
--- 
-2.31.1
-

diff --git a/sys-apps/plocate/plocate-1.1.9.ebuild 
b/sys-apps/plocate/plocate-1.1.9.ebuild
deleted file mode 100644
index 8153e282f37..000
--- a/sys-apps/plocate/plocate-1.1.9.ebuild
+++ /dev/null
@@ -1,82 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit linux-info meson systemd
-
-DESCRIPTION="Posting locate is a much faster locate"
-HOMEPAGE="https://plocate.sesse.net/;
-SRC_URI="https://plocate.sesse.net/download/${P}.tar.gz;
-
-# GPL-2 for updatedb
-# GPL-2+ for plocate itself
-LICENSE="GPL-2 GPL-2+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm64"
-IUSE="+io-uring"
-
-RDEPEND="
-   acct-group/locate
-   app-arch/zstd:=
-   io-uring? ( sys-libs/liburing:= )
-   !sys-apps/mlocate
-"
-DEPEND="${RDEPEND}"
-
-CONFIG_CHECK="~IO_URING"
-ERROR_IO_URING="required for USE=io-uring"
-
-PATCHES=(
-   "${FILESDIR}"/${PN}-1.1.9-no-systemd-check.patch
-)
-
-src_prepare() {
-   # Pretend liburing dep doesn't exist when USE flag off
-   if ! use io-uring; then
-   sed -i "s/dependency('liburing/dependency('/" meson.build || die
-   fi
-
-   # We'll install the manpage ourself to locate.1
-   sed -i "/install_man('plocate.1')/d" meson.build || die
-
-   default
-}
-
-src_configure() {
-   local emesonargs=(
-   -Dlocategroup=locate
-   )
-   meson_src_configure
-}
-
-src_install() {
-   meson_src_install
-   dodoc README NEWS
-   newman "${S}"/${PN}.1 locate.1
-   dosym plocate /usr/bin/locate
-
-   insinto /etc
-   doins "${FILESDIR}"/updatedb.conf
-   doins "${FILESDIR}"/plocate-cron.conf
-   fperms 0644 /etc/{updatedb,plocate-cron}.conf
-
-   insinto /etc/cron.daily
-   

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

2021-08-18 Thread Sam James
commit: da3cd3671d9eed66d49511ecc01940d96d9b4069
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:24:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:24:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=da3cd367

sys-devel/gcc: Stabilize 9.4.0 arm64, #800767

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

 sys-devel/gcc/gcc-9.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-9.4.0.ebuild b/sys-devel/gcc/gcc-9.4.0.ebuild
index 2d86fd45bf3..702b52a1006 100644
--- a/sys-devel/gcc/gcc-9.4.0.ebuild
+++ b/sys-devel/gcc/gcc-9.4.0.ebuild
@@ -7,7 +7,7 @@ PATCH_VER="1"
 
 inherit toolchain
 
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



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

2021-08-18 Thread Sam James
commit: f86f7acf1b4cb919a762e1595dea1011463099c7
Author: Arsen Arsenović  aarsen  me>
AuthorDate: Thu Aug 19 00:40:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:15:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f86f7acf

sys-apps/plocate: add version 1.1.9

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Arsen Arsenović  aarsen.me>
Closes: https://github.com/gentoo/gentoo/pull/22022
Signed-off-by: Sam James  gentoo.org>

 sys-apps/plocate/Manifest  |  1 +
 .../files/plocate-1.1.9-no-systemd-check.patch | 38 ++
 sys-apps/plocate/plocate-1.1.9.ebuild  | 82 ++
 3 files changed, 121 insertions(+)

diff --git a/sys-apps/plocate/Manifest b/sys-apps/plocate/Manifest
index 4d4a1d480d4..381cb363f74 100644
--- a/sys-apps/plocate/Manifest
+++ b/sys-apps/plocate/Manifest
@@ -1 +1,2 @@
 DIST plocate-1.1.8.tar.gz 71569 BLAKE2B 
06ad0e9535b76bf0102cdeeb6014e2d84f85f51f5926520566e9c6871f04ac09651bb0674ed679d2a4c0d4e516e55dfef35a7021112fad3549bf76993554aeb5
 SHA512 
a685347df64ac1a3eb7789cb7023b4d0ffed5fb7435a4bd88c3943991e145a387829532ec0c01d30d851b97b8d3173ff4c7c274775e639b75f0b1b45e5bca2a6
+DIST plocate-1.1.9.tar.gz 71973 BLAKE2B 
c761735ee54c6f8430839dee1582b10e7eaf15e29cefed94d59221d0111d002cac88d86050099b6cdf0130b71a995c0d26fe57cbd9eccdf00b3489f5bd1ae432
 SHA512 
2a2bffa338add760e598ac14b68d063cb0cc7df244b6af84f70166294a0c0b66acdedce432d0573e8f2d8dcd3ddba597baa407e93cddc5c58a0b492a1e031135

diff --git a/sys-apps/plocate/files/plocate-1.1.9-no-systemd-check.patch 
b/sys-apps/plocate/files/plocate-1.1.9-no-systemd-check.patch
new file mode 100644
index 000..677f20fc799
--- /dev/null
+++ b/sys-apps/plocate/files/plocate-1.1.9-no-systemd-check.patch
@@ -0,0 +1,38 @@
+From 0b1e568bc66df9fdb0bfd6f54b4ff2e540769dbe Mon Sep 17 00:00:00 2001
+From: =?UTF-8?q?Arsen=20Arsenovi=C4=87?= 
+Date: Thu, 19 Aug 2021 02:36:54 +0200
+Subject: [PATCH] unconditionally configure systemd service
+
+---
+ meson.build | 15 +++
+ 1 file changed, 3 insertions(+), 12 deletions(-)
+
+diff --git a/meson.build b/meson.build
+index dc14eb1..9a3b3fe 100644
+--- a/meson.build
 b/meson.build
+@@ -76,18 +76,9 @@ updatedb_conf_man = configure_file(input: 
'updatedb.conf.5.in',
+configuration: conf_data)
+ install_man(updatedb_conf_man)
+ 
+-if get_option('install_systemd')
+-  unitdir = get_option('systemunitdir')
+-  if unitdir == ''
+-  unitdir = 
dependency('systemd').get_pkgconfig_variable('systemdsystemunitdir')
+-  endif
+-
+-  updatedb_service = configure_file(input: 'plocate-updatedb.service.in',
+-  output: 'plocate-updatedb.service',
+-  configuration: conf_data)
+-  install_data(updatedb_service, install_dir: unitdir)
+-  install_data('plocate-updatedb.timer', install_dir: unitdir)
+-endif
++updatedb_service = configure_file(input: 'plocate-updatedb.service.in',
++  output: 'plocate-updatedb.service',
++  configuration: conf_data)
+ 
+ # Requires having TurboPFor checked out, so not built by default.
+ # Unless you have a recent Meson, there's no apparently good way
+-- 
+2.31.1
+

diff --git a/sys-apps/plocate/plocate-1.1.9.ebuild 
b/sys-apps/plocate/plocate-1.1.9.ebuild
new file mode 100644
index 000..8153e282f37
--- /dev/null
+++ b/sys-apps/plocate/plocate-1.1.9.ebuild
@@ -0,0 +1,82 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit linux-info meson systemd
+
+DESCRIPTION="Posting locate is a much faster locate"
+HOMEPAGE="https://plocate.sesse.net/;
+SRC_URI="https://plocate.sesse.net/download/${P}.tar.gz;
+
+# GPL-2 for updatedb
+# GPL-2+ for plocate itself
+LICENSE="GPL-2 GPL-2+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE="+io-uring"
+
+RDEPEND="
+   acct-group/locate
+   app-arch/zstd:=
+   io-uring? ( sys-libs/liburing:= )
+   !sys-apps/mlocate
+"
+DEPEND="${RDEPEND}"
+
+CONFIG_CHECK="~IO_URING"
+ERROR_IO_URING="required for USE=io-uring"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-1.1.9-no-systemd-check.patch
+)
+
+src_prepare() {
+   # Pretend liburing dep doesn't exist when USE flag off
+   if ! use io-uring; then
+   sed -i "s/dependency('liburing/dependency('/" meson.build || die
+   fi
+
+   # We'll install the manpage ourself to locate.1
+   sed -i "/install_man('plocate.1')/d" meson.build || die
+
+   default
+}
+
+src_configure() {
+   local emesonargs=(
+   -Dlocategroup=locate
+   )
+   meson_src_configure
+}
+
+src_install() {
+   meson_src_install
+   dodoc README NEWS
+   newman "${S}"/${PN}.1 locate.1
+   dosym plocate /usr/bin/locate
+
+   insinto /etc
+   doins "${FILESDIR}"/updatedb.conf
+   doins "${FILESDIR}"/plocate-cron.conf
+   fperms 0644 

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

2021-08-18 Thread Sam James
commit: bbb6d19226e9f1942f9981633cab6635a5a8fbd8
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Aug 19 02:11:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:12:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bbb6d192

mail-mta/notqmail: put virtuals in PDEPEND

One provider of virtual/checkpassword is vpopmail, which in turn depends on
virtual/qmail, which may form a circular dependency.

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 .../notqmail/{notqmail-1.08-r3.ebuild => notqmail-1.08-r4.ebuild} | 8 +---
 mail-mta/notqmail/notqmail-.ebuild| 6 --
 2 files changed, 9 insertions(+), 5 deletions(-)

diff --git a/mail-mta/notqmail/notqmail-1.08-r3.ebuild 
b/mail-mta/notqmail/notqmail-1.08-r4.ebuild
similarity index 99%
rename from mail-mta/notqmail/notqmail-1.08-r3.ebuild
rename to mail-mta/notqmail/notqmail-1.08-r4.ebuild
index 6afc55ac3bd..e9e36f9d913 100644
--- a/mail-mta/notqmail/notqmail-1.08-r3.ebuild
+++ b/mail-mta/notqmail/notqmail-1.08-r4.ebuild
@@ -1,7 +1,7 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
 GENQMAIL_PV=20200817
 QMAIL_SPP_PV=0.42
@@ -78,8 +78,6 @@ RDEPEND="${DEPEND}
acct-user/qmailr
acct-user/qmails
sys-apps/ucspi-tcp
-   virtual/checkpassword
-   virtual/daemontools
authcram? ( >=net-mail/cmd5checkpw-0.30 )
ssl? (
pop3? ( sys-apps/ucspi-ssl )
@@ -96,6 +94,10 @@ RDEPEND="${DEPEND}
!mail-mta/sendmail
!mail-mta/ssmtp[mta]
 "
+PDEPEND="
+   virtual/checkpassword
+   virtual/daemontools
+"
 
 src_unpack() {
genqmail_src_unpack

diff --git a/mail-mta/notqmail/notqmail-.ebuild 
b/mail-mta/notqmail/notqmail-.ebuild
index 224aaed0628..baec765a78d 100644
--- a/mail-mta/notqmail/notqmail-.ebuild
+++ b/mail-mta/notqmail/notqmail-.ebuild
@@ -75,8 +75,6 @@ RDEPEND="${DEPEND}
acct-user/qmailr
acct-user/qmails
sys-apps/ucspi-tcp
-   virtual/checkpassword
-   virtual/daemontools
authcram? ( >=net-mail/cmd5checkpw-0.30 )
ssl? (
pop3? ( sys-apps/ucspi-ssl )
@@ -93,6 +91,10 @@ RDEPEND="${DEPEND}
!mail-mta/sendmail
!mail-mta/ssmtp[mta]
 "
+PDEPEND="
+   virtual/checkpassword
+   virtual/daemontools
+"
 
 src_unpack() {
genqmail_src_unpack



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

2021-08-18 Thread Sam James
commit: 1fe6fe6f2307625b9285cff2dd740afcf96a2b99
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Thu Aug 19 02:11:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:12:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fe6fe6f

mail-mta/netqmail: put virtuals in PDEPEND

One provider of virtual/checkpassword is vpopmail, which in turn depends on
virtual/qmail, which may form a circular dependency.

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 mail-mta/netqmail/netqmail-1.06-r15.ebuild | 187 +
 1 file changed, 187 insertions(+)

diff --git a/mail-mta/netqmail/netqmail-1.06-r15.ebuild 
b/mail-mta/netqmail/netqmail-1.06-r15.ebuild
new file mode 100644
index 000..093af57c515
--- /dev/null
+++ b/mail-mta/netqmail/netqmail-1.06-r15.ebuild
@@ -0,0 +1,187 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+GENQMAIL_PV=20200817
+QMAIL_SPP_PV=0.42
+
+QMAIL_TLS_PV=20190114
+QMAIL_TLS_F=${PN}-1.05-tls-smtpauth-${QMAIL_TLS_PV}.patch
+QMAIL_TLS_CVE=vu555316.patch
+
+QMAIL_BIGTODO_PV=103
+QMAIL_BIGTODO_F=big-todo.${QMAIL_BIGTODO_PV}.patch
+
+QMAIL_LARGE_DNS='qmail-103.patch'
+
+QMAIL_SMTPUTF8='qmail-smtputf8.patch'
+
+inherit qmail
+
+DESCRIPTION="qmail -- a secure, reliable, efficient, simple message transfer 
agent"
+HOMEPAGE="
+   http://netqmail.org
+   https://cr.yp.to/qmail.html
+   http://qmail.org
+"
+SRC_URI="mirror://qmail/${P}.tar.gz
+   
https://github.com/DerDakon/genqmail/releases/download/genqmail-${GENQMAIL_PV}/${GENQMAIL_F}
+   https://www.ckdhr.com/ckd/${QMAIL_LARGE_DNS}
+   !vanilla? (
+   highvolume? ( mirror://qmail/${QMAIL_BIGTODO_F} )
+   qmail-spp? ( mirror://sourceforge/qmail-spp/${QMAIL_SPP_F} )
+   ssl? (
+   https://mirror.alexh.name/qmail/netqmail/${QMAIL_TLS_F}
+   http://inoa.net/qmail-tls/${QMAIL_TLS_CVE}
+   
https://arnt.gulbrandsen.priv.no/qmail/qmail-smtputf8.patch
+   )
+   )
+"
+
+LICENSE="public-domain"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="authcram gencertdaily highvolume pop3 qmail-spp ssl vanilla"
+REQUIRED_USE="vanilla? ( !ssl !qmail-spp !highvolume )"
+RESTRICT="test"
+
+DEPEND="
+   acct-group/nofiles
+   acct-group/qmail
+   acct-user/alias
+   acct-user/qmaild
+   acct-user/qmaill
+   acct-user/qmailp
+   acct-user/qmailq
+   acct-user/qmailr
+   acct-user/qmails
+   net-dns/libidn2
+   net-mail/queue-repair
+   sys-apps/gentoo-functions
+   sys-apps/groff
+   ssl? ( >=dev-libs/openssl-1.1:0= )
+"
+RDEPEND="${DEPEND}
+   sys-apps/ucspi-tcp
+   authcram? ( >=net-mail/cmd5checkpw-0.30 )
+   ssl? (
+   pop3? ( sys-apps/ucspi-ssl )
+   )
+   !mail-mta/courier
+   !mail-mta/esmtp
+   !mail-mta/exim
+   !mail-mta/mini-qmail
+   !mail-mta/msmtp[mta]
+   !mail-mta/nullmailer
+   !mail-mta/opensmtpd
+   !mail-mta/postfix
+   !mail-mta/qmail-ldap
+   !mail-mta/sendmail
+   !mail-mta/ssmtp[mta]
+"
+PDEPEND="
+   virtual/checkpassword
+   virtual/daemontools
+"
+
+src_unpack() {
+   genqmail_src_unpack
+   use qmail-spp && qmail_spp_src_unpack
+
+   unpack ${P}.tar.gz
+}
+
+PATCHES=(
+   "${FILESDIR}/${PV}-exit.patch"
+   "${FILESDIR}/${PV}-readwrite.patch"
+   "${DISTDIR}/${QMAIL_LARGE_DNS}"
+   "${FILESDIR}/${PV}-fbsd-utmpx.patch"
+   "${FILESDIR}/${P}-ipme-multiple.patch"
+   "${FILESDIR}/${P}-any-to-cname.patch"
+   "${FILESDIR}/${P}-CVE-2005-1513.patch"
+   "${FILESDIR}/${P}-CVE-2005-1514.patch"
+   "${FILESDIR}/${P}-CVE-2005-1515.patch"
+   "${FILESDIR}/${P}-overflows.patch"
+)
+
+src_prepare() {
+   if ! use vanilla; then
+   if use ssl; then
+   # This patch contains relative paths and needs to be 
cleaned up.
+   sed 's~^--- \.\./\.\./~--- ~g' \
+   < "${DISTDIR}"/${QMAIL_TLS_F} \
+   > "${T}"/${QMAIL_TLS_F} || die
+   PATCHES+=( "${T}/${QMAIL_TLS_F}"
+   "${DISTDIR}/${QMAIL_TLS_CVE}"
+   "${FILESDIR}/qmail-smtputf8.patch"
+   "${FILESDIR}/qmail-smtputf8-crlf-fix.patch"
+   )
+   fi
+   if use highvolume; then
+   PATCHES+=( "${DISTDIR}/${QMAIL_BIGTODO_F}" )
+   fi
+
+   if use qmail-spp; then
+   if use ssl; then
+   
SPP_PATCH="${QMAIL_SPP_S}/qmail-spp-smtpauth-tls-20060105.diff"
+   else
+   

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

2021-08-18 Thread Sam James
commit: 39ee8b4c97d1e30296404c17c596d85ae96c0280
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Aug 18 17:24:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:12:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39ee8b4c

virtual/checkpassword: drop removed qmail-ldap

Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 .../checkpassword/{checkpassword-0.ebuild => checkpassword-0-r1.ebuild}  | 1 -
 1 file changed, 1 deletion(-)

diff --git a/virtual/checkpassword/checkpassword-0.ebuild 
b/virtual/checkpassword/checkpassword-0-r1.ebuild
similarity index 94%
rename from virtual/checkpassword/checkpassword-0.ebuild
rename to virtual/checkpassword/checkpassword-0-r1.ebuild
index cf0062c682e..cc4c3cc4558 100644
--- a/virtual/checkpassword/checkpassword-0.ebuild
+++ b/virtual/checkpassword/checkpassword-0-r1.ebuild
@@ -13,5 +13,4 @@ RDEPEND="|| (
net-mail/checkpassword-pam
net-mail/cmd5checkpw
net-mail/vpopmail
-   mail-mta/qmail-ldap
 )"



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

2021-08-18 Thread Sam James
commit: 9b7bbe8aeae23b46d5c44b87203c53fdb2fe85d3
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:09:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:09:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b7bbe8a

x11-libs/pango: Stabilize 1.48.7-r1 arm, #806322

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

 x11-libs/pango/pango-1.48.7-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-libs/pango/pango-1.48.7-r1.ebuild 
b/x11-libs/pango/pango-1.48.7-r1.ebuild
index cd7f94bf78d..9d926ade697 100644
--- a/x11-libs/pango/pango-1.48.7-r1.ebuild
+++ b/x11-libs/pango/pango-1.48.7-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="http://ftp.gnome.org/pub/GNOME/sources/pango/$(ver_cut 1-2)/${P}.tar.xz
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 IUSE="debug +introspection sysprof X"
 



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

2021-08-18 Thread Sam James
commit: 3e5b79a297f777c3f9bd1f3101f22a4fa6716789
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:09:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:09:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3e5b79a2

net-misc/networkmanager: Stabilize 1.32.4 arm, #806322

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

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

diff --git a/net-misc/networkmanager/networkmanager-1.32.4.ebuild 
b/net-misc/networkmanager/networkmanager-1.32.4.ebuild
index 8e97a43..46bd58d8025 100644
--- a/net-misc/networkmanager/networkmanager-1.32.4.ebuild
+++ b/net-misc/networkmanager/networkmanager-1.32.4.ebuild
@@ -27,7 +27,7 @@ REQUIRED_USE="
?? ( elogind systemd )
 "
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~ppc ~ppc64 ~sparc x86"
 
 # gobject-introspection-0.10.3 is needed due to gnome bug 642300
 # wpa_supplicant-0.7.3-r3 is needed due to bug 359271



[gentoo-commits] repo/gentoo:master commit in: virtual/secret-service/

2021-08-18 Thread Sam James
commit: 88f165e6d2b45e97fe7699e9d8c236cf7b14fcdc
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:09:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:09:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88f165e6

virtual/secret-service: Stabilize 0 arm, #806322

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

 virtual/secret-service/secret-service-0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/secret-service/secret-service-0.ebuild 
b/virtual/secret-service/secret-service-0.ebuild
index f143ff68b12..df2e66d53fd 100644
--- a/virtual/secret-service/secret-service-0.ebuild
+++ b/virtual/secret-service/secret-service-0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for a freedesktop.org Secret Service API provider"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 
 RDEPEND="|| (
gnome-base/gnome-keyring



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

2021-08-18 Thread Sam James
commit: f3b1ec2aeb89e117793a1fb6aa9b283a5d22c61d
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:09:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:09:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3b1ec2a

net-misc/modemmanager: Stabilize 1.16.8 arm, #806322

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

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

diff --git a/net-misc/modemmanager/modemmanager-1.16.8.ebuild 
b/net-misc/modemmanager/modemmanager-1.16.8.ebuild
index a413448146f..169081ef7ad 100644
--- a/net-misc/modemmanager/modemmanager-1.16.8.ebuild
+++ b/net-misc/modemmanager/modemmanager-1.16.8.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.freedesktop.org/software/ModemManager/ModemManager-${PV}.ta
 
 LICENSE="GPL-2+"
 SLOT="0/1" # subslot = dbus interface version, i.e. N in 
org.freedesktop.ModemManager${N}
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
 
 IUSE="elogind +introspection mbim policykit +qmi systemd +udev vala"
 REQUIRED_USE="



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

2021-08-18 Thread Sam James
commit: b28e3fd76b21a966979c6067c1ca6c0cceb82b25
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:09:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:09:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b28e3fd7

media-libs/harfbuzz: Stabilize 2.8.2-r1 arm, #806322

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

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

diff --git a/media-libs/harfbuzz/harfbuzz-2.8.2-r1.ebuild 
b/media-libs/harfbuzz/harfbuzz-2.8.2-r1.ebuild
index 789b5303c5d..9943e3c459c 100644
--- a/media-libs/harfbuzz/harfbuzz-2.8.2-r1.ebuild
+++ b/media-libs/harfbuzz/harfbuzz-2.8.2-r1.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} =  ]] ; then
inherit git-r3
 else
SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~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 ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="Old-MIT ISC icu"



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

2021-08-18 Thread Sam James
commit: d86eab4b3ab9945f5e882422f7416f3094596ad3
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:09:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:09:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d86eab4b

app-crypt/libsecret: Stabilize 0.20.4-r1 arm, #806322

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

 app-crypt/libsecret/libsecret-0.20.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/libsecret/libsecret-0.20.4-r1.ebuild 
b/app-crypt/libsecret/libsecret-0.20.4-r1.ebuild
index e241a93256d..9a7b892864f 100644
--- a/app-crypt/libsecret/libsecret-0.20.4-r1.ebuild
+++ b/app-crypt/libsecret/libsecret-0.20.4-r1.ebuild
@@ -20,7 +20,7 @@ REQUIRED_USE="
gtk-doc? ( crypt )
 "
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc x86"
 
 DEPEND="
>=dev-libs/glib-2.44:2[${MULTILIB_USEDEP}]



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

2021-08-18 Thread Sam James
commit: bc21992667dc53e8d7160e356805000e30adff28
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 02:09:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:09:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc219926

app-accessibility/at-spi2-core: Stabilize 2.40.3 arm, #806322

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

 app-accessibility/at-spi2-core/at-spi2-core-2.40.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-accessibility/at-spi2-core/at-spi2-core-2.40.3.ebuild 
b/app-accessibility/at-spi2-core/at-spi2-core-2.40.3.ebuild
index afdd68b2a4b..ce310b26b7c 100644
--- a/app-accessibility/at-spi2-core/at-spi2-core-2.40.3.ebuild
+++ b/app-accessibility/at-spi2-core/at-spi2-core-2.40.3.ebuild
@@ -12,7 +12,7 @@ LICENSE="LGPL-2.1+"
 SLOT="2"
 IUSE="X gtk-doc +introspection"
 REQUIRED_USE="gtk-doc? ( X )"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~x64-macos"
 
 RDEPEND="
>=sys-apps/dbus-1.5[${MULTILIB_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: games-strategy/s25rttr/files/, games-strategy/s25rttr/

2021-08-18 Thread Sam James
commit: f0f6de3c704ea0849ed8b41e1cf7d7222ccb6193
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:52:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 02:00:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0f6de3c

games-strategy/s25rttr: fix build with Boost 1.77

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

 ...r-0.9.0_pre20200723-boost-1.77-missing-include.patch | 17 +
 .../s25rttr/s25rttr-0.9.0_pre20200723-r100.ebuild   |  3 +++
 2 files changed, 20 insertions(+)

diff --git 
a/games-strategy/s25rttr/files/s25rttr-0.9.0_pre20200723-boost-1.77-missing-include.patch
 
b/games-strategy/s25rttr/files/s25rttr-0.9.0_pre20200723-boost-1.77-missing-include.patch
new file mode 100644
index 000..9a69797ea27
--- /dev/null
+++ 
b/games-strategy/s25rttr/files/s25rttr-0.9.0_pre20200723-boost-1.77-missing-include.patch
@@ -0,0 +1,17 @@
+https://github.com/Return-To-The-Roots/s25client/pull/1431
+
+From: Sam James 
+Date: Thu, 19 Aug 2021 02:41:42 +0100
+Subject: [PATCH] Fix build with Boost 1.77 (missing  include)
+
+Closes: https://bugs.gentoo.org/808767
+--- a/libs/s25main/convertSounds.cpp
 b/libs/s25main/convertSounds.cpp
+@@ -20,6 +20,7 @@
+ #include 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/games-strategy/s25rttr/s25rttr-0.9.0_pre20200723-r100.ebuild 
b/games-strategy/s25rttr/s25rttr-0.9.0_pre20200723-r100.ebuild
index dc54ef2deaf..f15c62bc0c1 100644
--- a/games-strategy/s25rttr/s25rttr-0.9.0_pre20200723-r100.ebuild
+++ b/games-strategy/s25rttr/s25rttr-0.9.0_pre20200723-r100.ebuild
@@ -60,6 +60,7 @@ BDEPEND="
 PATCHES=(
"${FILESDIR}"/${PN}-0.9.0_pre20200723-cmake_lua_version.patch
"${FILESDIR}"/${P}-gcc11-include.patch
+   "${FILESDIR}"/${P}-boost-1.77-missing-include.patch
 )
 
 S="${WORKDIR}/s25client-${COMMIT}"
@@ -98,6 +99,8 @@ src_configure() {
-DRTTR_INCLUDE_DEVTOOLS=OFF
-DRTTR_LIBDIR="$(get_libdir)/${PN}"
-DRTTR_REVISION="${COMMIT}"
+   -DRTTR_USE_SYSTEM_LIBS=ON
+   # Just to be ultra explicit.
-DRTTR_USE_SYSTEM_LIBSAMPLERATE=ON
-DRTTR_VERSION="${PV##*_pre}" # Tests expect a date.
-DLUA_VERSION=$(lua_get_version)



[gentoo-commits] repo/proj/guru:dev commit in: sys-cluster/nanox/

2021-08-18 Thread Alessandro Barbieri
commit: ddd6349ae23ab711c101d24879642bce37670497
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Thu Aug 19 01:12:15 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Thu Aug 19 01:12:15 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ddd6349a

sys-cluster/nanox: fix useflag constraint

Signed-off-by: Alessandro Barbieri  gmail.com>

 sys-cluster/nanox/nanox-0.15_p20210818.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-cluster/nanox/nanox-0.15_p20210818.ebuild 
b/sys-cluster/nanox/nanox-0.15_p20210818.ebuild
index 775997847..7de8d150e 100644
--- a/sys-cluster/nanox/nanox-0.15_p20210818.ebuild
+++ b/sys-cluster/nanox/nanox-0.15_p20210818.ebuild
@@ -52,7 +52,7 @@ DEPEND="
 
 PATCHES=( "${FILESDIR}/${PN}-no-Werror.patch" )
 REQUIRED_USE="
-   ^^ ( ${IUSE_NANOX//+/} )
+   || ( ${IUSE_NANOX//+/} )
nanox-instrumentation? ( extrae )
nanox-instrumentation-debug? ( extrae )
 "



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

2021-08-18 Thread Michael Orlitzky
commit: ccf184341a42a7238db73c0309d908ad56ae0573
Author: Michael Orlitzky  gentoo  org>
AuthorDate: Thu Aug 19 01:34:56 2021 +
Commit: Michael Orlitzky  gentoo  org>
CommitDate: Thu Aug 19 01:36:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ccf18434

net-analyzer/nagios-core: remove "unused" nagios-core-4.4.6.ebuild.

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Michael Orlitzky  gentoo.org>

 net-analyzer/nagios-core/nagios-core-4.4.6.ebuild | 252 --
 1 file changed, 252 deletions(-)

diff --git a/net-analyzer/nagios-core/nagios-core-4.4.6.ebuild 
b/net-analyzer/nagios-core/nagios-core-4.4.6.ebuild
deleted file mode 100644
index e0fac4bf5eb..000
--- a/net-analyzer/nagios-core/nagios-core-4.4.6.ebuild
+++ /dev/null
@@ -1,252 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-inherit toolchain-funcs
-
-MY_P="${PN/-core}-${PV}"
-DESCRIPTION="Nagios core - monitoring daemon, web GUI, and documentation"
-HOMEPAGE="https://www.nagios.org/;
-
-# The name of the directory into which our Gentoo icons will be
-# extracted, and also the basename of the archive containing it.
-GENTOO_ICONS="${PN}-gentoo-icons-20141125"
-SRC_URI="mirror://sourceforge/nagios/${MY_P}.tar.gz
-   web? ( https://dev.gentoo.org/~mjo/distfiles/${GENTOO_ICONS}.tar )"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ppc ppc64 sparc x86"
-IUSE="apache2 classicui lighttpd perl +web vim-syntax"
-
-# In pkg_postinst(), we change the group of the Nagios configuration
-# directory to that of the web server user. It can't belong to both
-# apache/lighttpd groups at the same time, so we block this combination
-# for our own sanity.
-#
-# This could be made to work, but we would need a better way to allow
-# the web user read-only access to Nagios's configuration directory.
-#
-REQUIRED_USE="apache2? ( !lighttpd )"
-
-#
-# Note, we require one of the apache2 CGI modules:
-#
-#   * mod_cgi (USE=apache2_modules_cgi)
-#   * mod_cgid (USE=apache2_modules_cgid)
-#   * mod_fcgid (www-apache/mod_fcgid)
-#
-# We just don't care /which/ one. And of course PHP supports both CGI
-# (USE=cgi) and FastCGI (USE=fpm). We're pretty lenient with the
-# dependencies, and expect the user not to do anything /too/
-# stupid. (For example, installing Apache with only FastCGI support, and
-# PHP with only CGI support.)
-#
-# Another annoyance is that the upstream Makefile uses app-arch/unzip to
-# extract a snapshot of AngularJS, but that's only needed when USE=web.
-#
-MOD_ALIAS=apache2_modules_alias
-
-# The dependencies checked by the configure script. All of these are
-# also runtime dependencies; that's why ./configure checks for them.
-CONFIGURE_DEPEND="acct-group/nagios
-   acct-user/nagios
-   virtual/mailx
-   perl? ( dev-lang/perl:= )"
-
-# In addition to the things that the ./configure script checks for,
-# we also need to be able to unzip stuff on the build host.
-BDEPEND="${CONFIGURE_DEPEND} web? ( app-arch/unzip )"
-
-# This is linked into /usr/bin/nagios{,tats}
-DEPEND="dev-libs/libltdl:0"
-
-RDEPEND="${CONFIGURE_DEPEND}
-   ${DEPEND}
-   web? (
-   media-libs/gd[jpeg,png]
-   lighttpd? ( www-servers/lighttpd[php] )
-   apache2? (
-   || (
-   
www-servers/apache[${MOD_ALIAS},apache2_modules_cgi]
-   
www-servers/apache[${MOD_ALIAS},apache2_modules_cgid]
-   ( www-servers/apache[${MOD_ALIAS}] 
www-apache/mod_fcgid ) )
-   || (
-   dev-lang/php:*[apache2]
-   dev-lang/php:*[cgi]
-   dev-lang/php:*[fpm] )
-   )
-   )
-   vim-syntax? ( app-vim/nagios-syntax )"
-
-S="${WORKDIR}/${MY_P}"
-
-src_configure() {
-   local myconf
-
-   if use perl; then
-   myconf="${myconf} --enable-embedded-perl --with-perlcache"
-   fi
-
-   if use !apache2 && use !lighttpd ; then
-   myconf="${myconf} --with-command-group=nagios"
-   else
-   if use apache2 ; then
-   myconf="${myconf} --with-command-group=apache"
-   myconf="${myconf} --with-httpd-conf=/etc/apache2/conf.d"
-   elif use lighttpd ; then
-   myconf="${myconf} --with-command-group=lighttpd"
-   fi
-   fi
-
-   econf ${myconf} \
-   --prefix="${EPREFIX}/usr" \
-   --bindir="${EPREFIX}/usr/sbin" \
-   --localstatedir="${EPREFIX}/var/lib/nagios" \
-   --sysconfdir="${EPREFIX}/etc/nagios" \
-   --libexecdir="${EPREFIX}/usr/$(get_libdir)/nagios/plugins" \
-   --with-cgibindir="${EPREFIX}/usr/$(get_libdir)/nagios/cgi-bin" \
-   

[gentoo-commits] repo/gentoo:master commit in: metadata/install-qa-check.d/

2021-08-18 Thread Sam James
commit: c6fc517e4bc5649e01af9d10a445338805a0cdfc
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:34:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:34:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6fc517e

metadata/install-qa-check.d: skip some checks when TMPFILES_OPTIONAL is set

This is a good enough proxy for "this package has a complicated
relationship with tmpfiles" and replaces the hardcoded list of
exemptions.

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

 metadata/install-qa-check.d/60tmpfiles-paths | 12 ++--
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/metadata/install-qa-check.d/60tmpfiles-paths 
b/metadata/install-qa-check.d/60tmpfiles-paths
index aa666dfb7ce..1d46cab6ecc 100644
--- a/metadata/install-qa-check.d/60tmpfiles-paths
+++ b/metadata/install-qa-check.d/60tmpfiles-paths
@@ -28,12 +28,12 @@ tmpfiles_check() {
# We're now going to check for whether we install files to 
/usr/lib/tmpfiles.d without
# inheriting the eclass (weak catch for ebuilds not calling 
tmpfiles_process in pkg_postinst)
 
-   # It's okay for some packages to do this because of circular 
dependencies and such
-   # See: 
https://archives.gentoo.org/gentoo-dev/message/0a96793036a4fdd9ac311a46950d7e7b
-   # TODO: Standardize some way of allowing ebuilds to opt-out of checks 
like this
-   local package=${CATEGORY}/${PN}
-
-   if [[ ${package} == "sys-apps/systemd" || ${package} == "sys-libs/pam" 
]] ; then
+   if [[ -n ${TMPFILES_OPTIONAL} ]] ; then
+   # While imperfect, using ${TMPFILES_OPTIONAL} is good enough to 
allow opting out
+   # for e.g. sys-apps/portage, sys-apps/systemd, sys-libs/pam, 
etc. We may want
+   # a better/more standardised way to opt out from QA checks in 
future.
+   # It's okay for some packages to do this because of circular 
dependencies and such
+   # See: 
https://archives.gentoo.org/gentoo-dev/message/0a96793036a4fdd9ac311a46950d7e7b
return
fi
 



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

2021-08-18 Thread Agostino Sarubbo
commit: 6e3d2b93f454f86e5a838cf6dacd90c8e831afeb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:29:18 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:29:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e3d2b93

dev-python/cffi: x86 stable wrt bug #808279

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/cffi/cffi-1.14.6.ebuild 
b/dev-python/cffi/cffi-1.14.6.ebuild
index 53f70e6e54c..9c4adb7f327 100644
--- a/dev-python/cffi/cffi-1.14.6.ebuild
+++ b/dev-python/cffi/cffi-1.14.6.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 DEPEND="dev-libs/libffi:="
 RDEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: sci-biology/bioperl-db/

2021-08-18 Thread Agostino Sarubbo
commit: a2c2ac5583c3dd790d5a92f8b2a01d8a8e54607a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:28:59 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:28:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2c2ac55

sci-biology/bioperl-db: x86 stable wrt bug #808198

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild 
b/sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild
index ad90650b3c5..b36c22532f3 100644
--- a/sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild
+++ b/sci-biology/bioperl-db/bioperl-db-1.6.9-r1.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Perl tools for bioinformatics - Perl API that 
accesses the BioSQL s
 HOMEPAGE="http://www.bioperl.org/;
 
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 RESTRICT="test"
 IUSE="test"
 



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

2021-08-18 Thread Agostino Sarubbo
commit: 02b3c45a16cce9334ad177251cb520a9d208408c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:29:12 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:29:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02b3c45a

app-admin/awscli: amd64/x86 stable (ALLARCHES policy) wrt bug #808270

Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/app-admin/awscli/awscli-1.20.7.ebuild 
b/app-admin/awscli/awscli-1.20.7.ebuild
index ff429f8d3a3..4221a0155f5 100644
--- a/app-admin/awscli/awscli-1.20.7.ebuild
+++ b/app-admin/awscli/awscli-1.20.7.ebuild
@@ -15,7 +15,7 @@ S="${WORKDIR}/aws-cli-${PV}"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 
 # botocore is x.(y+1).z
 BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 1)).$(ver_cut 3-)"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/qmmp-plugin-pack/

2021-08-18 Thread Agostino Sarubbo
commit: 0566564697ea603ab524b94449434925e556b7e4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:28:27 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:28:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05665646

media-plugins/qmmp-plugin-pack: x86 stable wrt bug #807951

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.1.ebuild 
b/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.1.ebuild
index 9d9812cc812..16ab2fbd527 100644
--- a/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.1.ebuild
+++ b/media-plugins/qmmp-plugin-pack/qmmp-plugin-pack-1.5.1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://qmmp.ylsoftware.com/files/${PN}/$(ver_cut 
1-2)/${P}.tar.bz2"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 0e0631e2ce346eb5fbe764a383733b5339631e18
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:28:52 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:28:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e0631e2

media-sound/fluidsynth: x86 stable wrt bug #808108

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/fluidsynth/fluidsynth-2.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/fluidsynth/fluidsynth-2.2.2.ebuild 
b/media-sound/fluidsynth/fluidsynth-2.2.2.ebuild
index 62719380897..755381adc06 100644
--- a/media-sound/fluidsynth/fluidsynth-2.2.2.ebuild
+++ b/media-sound/fluidsynth/fluidsynth-2.2.2.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/FluidSynth/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="LGPL-2.1+"
 SLOT="0/3"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ppc ppc64 sparc x86"
 IUSE="alsa dbus debug examples ipv6 jack ladspa lash network oss portaudio 
pulseaudio +readline sdl +sndfile systemd threads"
 
 BDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 9367b9f7cd5c44a0920433aecae6ba89d82d24c4
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:28:40 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:28:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9367b9f7

dev-libs/libxdg-basedir: x86 stable wrt bug #808073

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-libs/libxdg-basedir/libxdg-basedir-1.2.3.ebuild 
b/dev-libs/libxdg-basedir/libxdg-basedir-1.2.3.ebuild
index e7b57849122..0179d9e5b5c 100644
--- a/dev-libs/libxdg-basedir/libxdg-basedir-1.2.3.ebuild
+++ b/dev-libs/libxdg-basedir/libxdg-basedir-1.2.3.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN}-${P}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 ~x86 ~amd64-linux ~x64-macos 
~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ppc ppc64 x86 ~amd64-linux ~x64-macos 
~x86-solaris"
 IUSE="doc"
 
 BDEPEND="doc? ( app-doc/doxygen )"



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

2021-08-18 Thread Agostino Sarubbo
commit: 28f7125cbb1dce4c3ccb9ff3a4ff972698ec110c
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:28:34 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:28:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=28f7125c

media-sound/qmmp: x86 stable wrt bug #807951

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/qmmp/qmmp-1.5.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/qmmp/qmmp-1.5.1.ebuild 
b/media-sound/qmmp/qmmp-1.5.1.ebuild
index b5d8a08df43..3f6f68e35de 100644
--- a/media-sound/qmmp/qmmp-1.5.1.ebuild
+++ b/media-sound/qmmp/qmmp-1.5.1.ebuild
@@ -11,7 +11,7 @@ HOMEPAGE="http://qmmp.ylsoftware.com;
 if [[ ${PV} !=  ]]; then
SRC_URI="http://qmmp.ylsoftware.com/files/${P}.tar.bz2
mirror://sourceforge/${PN}-dev/files/${P}.tar.bz2"
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
 else
QMMP_DEV_BRANCH="1.3"

ESVN_REPO_URI="svn://svn.code.sf.net/p/${PN}-dev/code/branches/${PN}-${QMMP_DEV_BRANCH}"



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

2021-08-18 Thread Agostino Sarubbo
commit: 337b2d90d1f71b15ca89de0623ecf512fb660a9b
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:28:46 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:28:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=337b2d90

sys-apps/tcp-wrappers: x86 stable wrt bug #808075

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="x86"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-apps/tcp-wrappers/tcp-wrappers-7.6.31.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/tcp-wrappers/tcp-wrappers-7.6.31.ebuild 
b/sys-apps/tcp-wrappers/tcp-wrappers-7.6.31.ebuild
index a6351d4ea22..e83e2c9dec1 100644
--- a/sys-apps/tcp-wrappers/tcp-wrappers-7.6.31.ebuild
+++ b/sys-apps/tcp-wrappers/tcp-wrappers-7.6.31.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="tcp_wrappers_license"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 IUSE="ipv6 netgroups"
 
 RDEPEND="netgroups? ( net-libs/libnsl:= )"



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

2021-08-18 Thread Agostino Sarubbo
commit: a86b6f648abae8c2930d735e763b57b1e875f6b9
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:27:56 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:27:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a86b6f64

net-fs/cifs-utils: sparc stable wrt bug #808851

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/net-fs/cifs-utils/cifs-utils-6.13.ebuild 
b/net-fs/cifs-utils/cifs-utils-6.13.ebuild
index 08574e12a81..18941f359b9 100644
--- a/net-fs/cifs-utils/cifs-utils-6.13.ebuild
+++ b/net-fs/cifs-utils/cifs-utils-6.13.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://ftp.samba.org/pub/linux-cifs/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc ~x86 ~x86-linux"
 IUSE="+acl +ads +caps creds pam systemd"
 
 RDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 3561e9384bb936a8fd293739fc967b334e8791b3
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:28:04 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:28:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3561e938

sys-fs/udev: sparc stable wrt bug #808889

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="sparc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-fs/udev/udev-249-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/udev/udev-249-r2.ebuild b/sys-fs/udev/udev-249-r2.ebuild
index 1b3cf3b0c03..d389b6730b9 100644
--- a/sys-fs/udev/udev-249-r2.ebuild
+++ b/sys-fs/udev/udev-249-r2.ebuild
@@ -29,7 +29,7 @@ else

https://dev.gentoo.org/~soap/distfiles/systemd-musl-patches-${PV}.1-r1.tar.xz
)"
 
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 sparc ~x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



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

2021-08-18 Thread Agostino Sarubbo
commit: 42ba303388b1a9fb6c462be52c0c50f650f64d32
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:27:19 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:27:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42ba3033

net-fs/cifs-utils: ppc64 stable wrt bug #808851

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/net-fs/cifs-utils/cifs-utils-6.13.ebuild 
b/net-fs/cifs-utils/cifs-utils-6.13.ebuild
index 259d2e0f622..08574e12a81 100644
--- a/net-fs/cifs-utils/cifs-utils-6.13.ebuild
+++ b/net-fs/cifs-utils/cifs-utils-6.13.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://ftp.samba.org/pub/linux-cifs/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~x86-linux"
 IUSE="+acl +ads +caps creds pam systemd"
 
 RDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 489deb6c9a030fac4e3ea9774c24301203c185bb
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:27:11 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:27:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=489deb6c

dev-python/eventlet: ppc64 stable wrt bug #808288

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/eventlet/eventlet-0.31.1.ebuild 
b/dev-python/eventlet/eventlet-0.31.1.ebuild
index 125f0d615c1..0b3e89e1d1e 100644
--- a/dev-python/eventlet/eventlet-0.31.1.ebuild
+++ b/dev-python/eventlet/eventlet-0.31.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/e/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~s390 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~s390 ~sparc ~x86"
 IUSE="examples"
 
 RDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 52892e1ff66760914bb2c929feebb0d85f8c3dd7
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:27:29 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:27:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52892e1f

sys-fs/udev: ppc64 stable wrt bug #808889

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 sys-fs/udev/udev-249-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/udev/udev-249-r2.ebuild b/sys-fs/udev/udev-249-r2.ebuild
index 31df73b39f9..1b3cf3b0c03 100644
--- a/sys-fs/udev/udev-249-r2.ebuild
+++ b/sys-fs/udev/udev-249-r2.ebuild
@@ -29,7 +29,7 @@ else

https://dev.gentoo.org/~soap/distfiles/systemd-musl-patches-${PV}.1-r1.tar.xz
)"
 
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sparc ~x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



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

2021-08-18 Thread Agostino Sarubbo
commit: d5743439ecdde3d66639c5a5d5018373b0179862
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:26:50 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:26:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d5743439

net-fs/cifs-utils: ppc stable wrt bug #808851

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="ppc"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/net-fs/cifs-utils/cifs-utils-6.13.ebuild 
b/net-fs/cifs-utils/cifs-utils-6.13.ebuild
index b8bb90ac654..259d2e0f622 100644
--- a/net-fs/cifs-utils/cifs-utils-6.13.ebuild
+++ b/net-fs/cifs-utils/cifs-utils-6.13.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://ftp.samba.org/pub/linux-cifs/${PN}/${P}.tar.bz2;
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x86-linux"
 IUSE="+acl +ads +caps creds pam systemd"
 
 RDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: ace21e7e98c099fd411e3654d1f10290c50e736f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:25:43 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:25:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ace21e7e

net-vpn/tor: amd64 stable wrt bug #808681

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-vpn/tor/tor-0.4.5.10.ebuild | 2 +-
 net-vpn/tor/tor-0.4.6.7.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-vpn/tor/tor-0.4.5.10.ebuild b/net-vpn/tor/tor-0.4.5.10.ebuild
index d02a7cd5885..7ffede47e2d 100644
--- a/net-vpn/tor/tor-0.4.5.10.ebuild
+++ b/net-vpn/tor/tor-0.4.5.10.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PF}"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~mips ppc ppc64 x86 ~ppc-macos"
+KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 x86 ~ppc-macos"
 IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening 
test zstd"
 VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc
 

diff --git a/net-vpn/tor/tor-0.4.6.7.ebuild b/net-vpn/tor/tor-0.4.6.7.ebuild
index 39a52ca677b..2a8eecb5613 100644
--- a/net-vpn/tor/tor-0.4.6.7.ebuild
+++ b/net-vpn/tor/tor-0.4.6.7.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_PF}"
 LICENSE="BSD GPL-2"
 SLOT="0"
 if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then
-   KEYWORDS="~amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~ppc-macos"
+   KEYWORDS="amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~ppc-macos"
 fi
 IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening 
test zstd"
 VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc



[gentoo-commits] repo/gentoo:master commit in: net-proxy/mitmproxy/

2021-08-18 Thread Agostino Sarubbo
commit: 964b311c6fdfa65aa170827d5743c9caedc53dfd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:25:24 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:25:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=964b311c

net-proxy/mitmproxy: amd64 stable wrt bug #808570

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-proxy/mitmproxy/mitmproxy-7.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-proxy/mitmproxy/mitmproxy-7.0.0.ebuild 
b/net-proxy/mitmproxy/mitmproxy-7.0.0.ebuild
index 1476b80c35f..07d70bd2058 100644
--- a/net-proxy/mitmproxy/mitmproxy-7.0.0.ebuild
+++ b/net-proxy/mitmproxy/mitmproxy-7.0.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/mitmproxy/mitmproxy/archive/v${PV}.tar.gz -> ${P}.ta
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 ~x86"
 
 RDEPEND="
>=app-arch/brotli-1.0.0[python,${PYTHON_USEDEP}]



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

2021-08-18 Thread Agostino Sarubbo
commit: e0cd769799e6f66f24f9bb5bedcf7f2069e2992e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:25:49 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:25:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0cd7697

dev-util/dialog: amd64 stable wrt bug #808683

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 dev-util/dialog/dialog-1.3.20210621-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/dialog/dialog-1.3.20210621-r1.ebuild 
b/dev-util/dialog/dialog-1.3.20210621-r1.ebuild
index 3cc749ead41..073ee6126f9 100644
--- a/dev-util/dialog/dialog-1.3.20210621-r1.ebuild
+++ b/dev-util/dialog/dialog-1.3.20210621-r1.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}"/${MY_P}
 
 LICENSE="GPL-2"
 SLOT="0/15"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="examples minimal nls unicode"
 
 RDEPEND=">=sys-libs/ncurses-5.2-r5:=[unicode(+)?]"



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

2021-08-18 Thread Agostino Sarubbo
commit: c7ce878ba0decae3231bfd1accc5cc2b06b488f2
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:24:57 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:24:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7ce878b

media-sound/jack2: amd64 stable wrt bug #808552

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/jack2/jack2-1.9.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/jack2/jack2-1.9.19.ebuild 
b/media-sound/jack2/jack2-1.9.19.ebuild
index a45b1284e82..9fac7723205 100644
--- a/media-sound/jack2/jack2-1.9.19.ebuild
+++ b/media-sound/jack2/jack2-1.9.19.ebuild
@@ -18,7 +18,7 @@ else
MY_P="${PN}-${MY_PV}"
S="${WORKDIR}/${MY_P}"

SRC_URI="https://github.com/jackaudio/jack2/archive/v${MY_PV}/v${MY_PV}.tar.gz 
-> ${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ppc ppc64 ~riscv x86"
+   KEYWORDS="amd64 ~arm ~arm64 ppc ppc64 ~riscv x86"
 fi
 
 LICENSE="GPL-2"



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

2021-08-18 Thread Agostino Sarubbo
commit: 7eb8a00d0d8dabadc728a955a9d6c4f0ad5d045f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:24:49 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:24:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7eb8a00d

dev-python/pyzmq: amd64 stable wrt bug #808339

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/pyzmq/pyzmq-22.1.0.ebuild 
b/dev-python/pyzmq/pyzmq-22.1.0.ebuild
index 2f3a6cea21d..83e0338cc76 100644
--- a/dev-python/pyzmq/pyzmq-22.1.0.ebuild
+++ b/dev-python/pyzmq/pyzmq-22.1.0.ebuild
@@ -19,7 +19,7 @@ SRC_URI="
 
 LICENSE="LGPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux"
 IUSE="+draft"
 
 DEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 66fce764db4ca2f249c709dcd203d1be31fe9823
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:25:12 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:25:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=66fce764

media-sound/abcm2ps: amd64 stable wrt bug #808558

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/abcm2ps/abcm2ps-8.14.12.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/abcm2ps/abcm2ps-8.14.12.ebuild 
b/media-sound/abcm2ps/abcm2ps-8.14.12.ebuild
index 8ebb8699e66..1af8b60d3f2 100644
--- a/media-sound/abcm2ps/abcm2ps-8.14.12.ebuild
+++ b/media-sound/abcm2ps/abcm2ps-8.14.12.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/leesavide/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="examples pango"
 
 BDEPEND="virtual/pkgconfig"



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

2021-08-18 Thread Agostino Sarubbo
commit: 4773127336769d8cf961e520ea0005b77d08c705
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:25:32 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:25:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=47731273

net-analyzer/nagios-core: amd64 stable wrt bug #808642

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild 
b/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild
index 931542109b6..6cbbe87c684 100644
--- a/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild
+++ b/net-analyzer/nagios-core/nagios-core-4.4.6-r2.ebuild
@@ -17,7 +17,7 @@ SRC_URI="mirror://sourceforge/nagios/${MY_P}.tar.gz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ppc ppc64 sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ppc ppc64 sparc x86"
 IUSE="apache2 classicui lighttpd perl +web vim-syntax"
 
 # In pkg_postinst(), we change the group of the Nagios configuration



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

2021-08-18 Thread Agostino Sarubbo
commit: 83c759f2bb06858afc7dca247de3ccc6fb78b890
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:24:42 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:24:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=83c759f2

media-sound/sonata: amd64 stable wrt bug #808685

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-sound/sonata/sonata-1.7.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/sonata/sonata-1.7.0.ebuild 
b/media-sound/sonata/sonata-1.7.0.ebuild
index 0be0bd2f5a5..c413149a5e0 100644
--- a/media-sound/sonata/sonata-1.7.0.ebuild
+++ b/media-sound/sonata/sonata-1.7.0.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/multani/sonata/archive/refs/tags/v${PV}.tar.gz -> ${
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE="dbus taglib"
 
 BDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: ec4e025ff0d007bbd5d2718f8924115eedf92e3f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:24:34 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:24:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec4e025f

dev-python/networkx: amd64 stable wrt bug #808312

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

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

diff --git a/dev-python/networkx/networkx-2.6.2.ebuild 
b/dev-python/networkx/networkx-2.6.2.ebuild
index 51a49fc1b85..9a58afcb477 100644
--- a/dev-python/networkx/networkx-2.6.2.ebuild
+++ b/dev-python/networkx/networkx-2.6.2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos"
+KEYWORDS="amd64 ~arm ~arm64 ~riscv ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x64-macos"
 IUSE="examples extras xml yaml"
 
 RDEPEND="



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

2021-08-18 Thread Agostino Sarubbo
commit: 81bfcd9692399ad627abb1dbc88659dbda621a81
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Thu Aug 19 01:25:06 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Thu Aug 19 01:25:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81bfcd96

media-plugins/x42-plugins: amd64 stable wrt bug #808555

Package-Manager: Portage-3.0.20, Repoman-3.0.2
RepoMan-Options: --include-arches="amd64"
Signed-off-by: Agostino Sarubbo  gentoo.org>

 media-plugins/x42-plugins/x42-plugins-20210714.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-plugins/x42-plugins/x42-plugins-20210714.ebuild 
b/media-plugins/x42-plugins/x42-plugins-20210714.ebuild
index 62be7c10ec2..1902a6a9dea 100644
--- a/media-plugins/x42-plugins/x42-plugins-20210714.ebuild
+++ b/media-plugins/x42-plugins/x42-plugins-20210714.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} == * ]]; then
EGIT_REPO_URI="https://github.com/x42/x42-plugins.git;
 else
SRC_URI="http://gareus.org/misc/x42-plugins/${P}.tar.xz;
-   KEYWORDS="~amd64"
+   KEYWORDS="amd64"
 fi
 
 LICENSE="GPL-2"



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

2021-08-18 Thread Sam James
commit: 2f0d75e6b178e4ad6ad88051ce63ca47c137ee7e
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:09:19 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:09:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f0d75e6

dev-python/sphinx: Stabilize 4.1.2 ALLARCHES, #808351

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

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

diff --git a/dev-python/sphinx/sphinx-4.1.2.ebuild 
b/dev-python/sphinx/sphinx-4.1.2.ebuild
index 3d9abeccb55..03135e27897 100644
--- a/dev-python/sphinx/sphinx-4.1.2.ebuild
+++ b/dev-python/sphinx/sphinx-4.1.2.ebuild
@@ -17,7 +17,7 @@ S=${WORKDIR}/${P^}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris"
 IUSE="doc latex"
 
 RDEPEND="



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

2021-08-18 Thread Sam James
commit: 561f6ef12c79c98fdd070619f613f2d7a2229c47
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:08:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:08:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=561f6ef1

sys-fs/udev: Stabilize 249-r2 ppc, #808889

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

 sys-fs/udev/udev-249-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/udev/udev-249-r2.ebuild b/sys-fs/udev/udev-249-r2.ebuild
index 08a32a5d3c7..31df73b39f9 100644
--- a/sys-fs/udev/udev-249-r2.ebuild
+++ b/sys-fs/udev/udev-249-r2.ebuild
@@ -29,7 +29,7 @@ else

https://dev.gentoo.org/~soap/distfiles/systemd-musl-patches-${PV}.1-r1.tar.xz
)"
 
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 
~s390 ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ~ppc64 
~s390 ~sparc ~x86"
 fi
 
 DESCRIPTION="Linux dynamic and persistent device naming support (aka userspace 
devfs)"



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

2021-08-18 Thread Sam James
commit: 9d7cd0b8c7f36e06513bbf33b0874ca22680ded6
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:08:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:08:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d7cd0b8

sys-cluster/glusterfs: Stabilize 8.5-r1 ppc64, #808923

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

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

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



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

2021-08-18 Thread Sam James
commit: af685ca549d7d1abd85f993954061144d01fe1d6
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:05:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:05:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af685ca5

net-vpn/tor: Stabilize 0.4.5.10 arm64, #808681

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

 net-vpn/tor/tor-0.4.5.10.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/tor/tor-0.4.5.10.ebuild b/net-vpn/tor/tor-0.4.5.10.ebuild
index 98eb4a6432d..d02a7cd5885 100644
--- a/net-vpn/tor/tor-0.4.5.10.ebuild
+++ b/net-vpn/tor/tor-0.4.5.10.ebuild
@@ -16,7 +16,7 @@ S="${WORKDIR}/${MY_PF}"
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 arm ~arm64 ~mips ppc ppc64 x86 ~ppc-macos"
+KEYWORDS="~amd64 arm arm64 ~mips ppc ppc64 x86 ~ppc-macos"
 IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening 
test zstd"
 VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc
 



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

2021-08-18 Thread Sam James
commit: cabc42340fc3bad651c150b6dafb960974bfd556
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cabc4234

mail-filter/opendmarc: Stabilize 1.4.1.1-r2 x86, #797214

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

 mail-filter/opendmarc/opendmarc-1.4.1.1-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-filter/opendmarc/opendmarc-1.4.1.1-r2.ebuild 
b/mail-filter/opendmarc/opendmarc-1.4.1.1-r2.ebuild
index 646a63994a6..cfe99fa1b28 100644
--- a/mail-filter/opendmarc/opendmarc-1.4.1.1-r2.ebuild
+++ b/mail-filter/opendmarc/opendmarc-1.4.1.1-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/trusteddomainproject/OpenDMARC/archive/rel-${PN}-${P
 
 LICENSE="BSD"
 SLOT="0/3"  # 1.4 has API breakage with 1.3, yet uses same soname
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc ~x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ppc ppc64 sparc x86"
 IUSE="spf +reports static-libs"
 
 DEPEND="reports? ( dev-perl/DBI )



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

2021-08-18 Thread Sam James
commit: 8cf09d2389e7c61fbba74ea7655a42b9fefbce8d
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8cf09d23

media-tv/channeleditor: Stabilize 1.9.2.1-r3 x86, #795978

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

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

diff --git a/media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild 
b/media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild
index e648beb2140..24336334fa6 100644
--- a/media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild
+++ b/media-tv/channeleditor/channeleditor-1.9.2.1-r3.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P/-/_}_src.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 RDEPEND=">=virtual/jre-1.8:*"



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

2021-08-18 Thread Sam James
commit: 376a6568c8515e53b773f4c58bbe7183af23d334
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:08:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:08:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=376a6568

sys-cluster/glusterfs: Stabilize 8.5-r1 ppc, #808923

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

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

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



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

2021-08-18 Thread Sam James
commit: 330a68244ecfffb4f6e067687e3576e588903ca5
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=330a6824

net-libs/mbedtls: Stabilize 2.27.0-r1 x86, #801376

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

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

diff --git a/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild 
b/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild
index 1a1cbe6257f..8d801e18f8f 100644
--- a/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.27.0-r1.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="Apache-2.0"
 SLOT="0/7.13.1" # ffmpeg subslot naming: SONAME tuple of 
{libmbedcrypto.so,libmbedtls.so,libmbedx509.so}
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86"
 IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib"
 RESTRICT="!test? ( test )"
 



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

2021-08-18 Thread Sam James
commit: b0a683b312ea3b5e5b2939d9c3cf5421a41dca80
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0a683b3

media-video/projectx: Stabilize 0.91.0.10-r3 x86, #795978

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

 media-video/projectx/projectx-0.91.0.10-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-video/projectx/projectx-0.91.0.10-r3.ebuild 
b/media-video/projectx/projectx-0.91.0.10-r3.ebuild
index d8f6c92c8c2..a6df47e09cb 100644
--- a/media-video/projectx/projectx-0.91.0.10-r3.ebuild
+++ b/media-video/projectx/projectx-0.91.0.10-r3.ebuild
@@ -18,7 +18,7 @@ SRC_URI="https://dev.gentoo.org/~billie/distfiles/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ppc64 ~x86"
+KEYWORDS="amd64 ppc64 x86"
 IUSE="X cpu_flags_x86_mmx cpu_flags_x86_sse"
 
 COMMON_DEPEND="



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

2021-08-18 Thread Sam James
commit: a917f789cbee42036a2d58d088df4c6320eb8e81
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a917f789

sys-auth/nss_ldap: Stabilize 265-r9 x86, #777633

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

 sys-auth/nss_ldap/nss_ldap-265-r9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-auth/nss_ldap/nss_ldap-265-r9.ebuild 
b/sys-auth/nss_ldap/nss_ldap-265-r9.ebuild
index 0b8cf160acc..b111e7f4dcc 100644
--- a/sys-auth/nss_ldap/nss_ldap-265-r9.ebuild
+++ b/sys-auth/nss_ldap/nss_ldap-265-r9.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://www.padl.com/download/${P}.tar.gz;
 
 SLOT="0"
 LICENSE="LGPL-2"
-KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc ~x86 ~amd64-linux"
+KEYWORDS="~alpha amd64 arm ~hppa ~ia64 ~mips ppc ppc64 sparc x86 ~amd64-linux"
 IUSE="debug kerberos ssl sasl split-usr"
 
 DEPEND="



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

2021-08-18 Thread Sam James
commit: 799291aa01d87650eeccc2b1d12b3dddfb3202c9
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=799291aa

dev-libs/libuv: Stabilize 1.41.1 x86, #800986

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

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

diff --git a/dev-libs/libuv/libuv-1.41.1.ebuild 
b/dev-libs/libuv/libuv-1.41.1.ebuild
index 86f0c58d17f..06bc1a0b9d0 100644
--- a/dev-libs/libuv/libuv-1.41.1.ebuild
+++ b/dev-libs/libuv/libuv-1.41.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} = * ]]; then
inherit git-r3
 else
SRC_URI="https://github.com/libuv/libuv/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 fi
 
 LICENSE="BSD BSD-2 ISC MIT"



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

2021-08-18 Thread Sam James
commit: 6fe81838c429dc97a7371c565b9e472036c21d7f
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fe81838

net-libs/mbedtls: Stabilize 2.16.11 x86, #801376

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

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

diff --git a/net-libs/mbedtls/mbedtls-2.16.11.ebuild 
b/net-libs/mbedtls/mbedtls-2.16.11.ebuild
index 70ecf3f4951..5a85c374c54 100644
--- a/net-libs/mbedtls/mbedtls-2.16.11.ebuild
+++ b/net-libs/mbedtls/mbedtls-2.16.11.ebuild
@@ -12,7 +12,7 @@ S=${WORKDIR}/${PN}-${P}
 
 LICENSE="Apache-2.0"
 SLOT="0/3.12.0" # ffmpeg subslot naming: SONAME tuple of 
{libmbedcrypto.so,libmbedtls.so,libmbedx509.so}
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~s390 
sparc x86"
 IUSE="cpu_flags_x86_sse2 doc havege programs static-libs test threads zlib"
 RESTRICT="!test? ( test )"
 



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

2021-08-18 Thread Sam James
commit: bc59f95a9de5ad151c644b76b1b16be82e6b29e1
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc59f95a

app-misc/sphinx: Stabilize 2.2.11-r2 x86, #783645

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

 app-misc/sphinx/sphinx-2.2.11-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/sphinx/sphinx-2.2.11-r2.ebuild 
b/app-misc/sphinx/sphinx-2.2.11-r2.ebuild
index 4275fa3b36b..9eae6cfef42 100644
--- a/app-misc/sphinx/sphinx-2.2.11-r2.ebuild
+++ b/app-misc/sphinx/sphinx-2.2.11-r2.ebuild
@@ -16,7 +16,7 @@ SRC_URI="http://sphinxsearch.com/files/${MY_P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc ~x86 ~amd64-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris"
+KEYWORDS="~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~s390 ~sparc x86 ~amd64-linux 
~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris"
 IUSE="debug +id64 mariadb mysql odbc postgres re2 stemmer syslog xml"
 
 REQUIRED_USE="mysql? ( !mariadb ) mariadb? ( !mysql )"



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

2021-08-18 Thread Sam James
commit: a294d6f163fd5d7a08abfd8be76f075e9331a74f
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:06:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:06:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a294d6f1

dev-python/cffi: Stabilize 1.14.6 arm64, #808279

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

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

diff --git a/dev-python/cffi/cffi-1.14.6.ebuild 
b/dev-python/cffi/cffi-1.14.6.ebuild
index bc62383e4d0..53f70e6e54c 100644
--- a/dev-python/cffi/cffi-1.14.6.ebuild
+++ b/dev-python/cffi/cffi-1.14.6.ebuild
@@ -15,7 +15,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0/${PV}"
-KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 DEPEND="dev-libs/libffi:="
 RDEPEND="${DEPEND}



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

2021-08-18 Thread Sam James
commit: b7f2e0a00e05eeb5d6ef14ad8cdfb16c065cf3cd
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:05:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:05:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b7f2e0a0

net-vpn/tor: Stabilize 0.4.6.7 arm64, #808681

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

 net-vpn/tor/tor-0.4.6.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-vpn/tor/tor-0.4.6.7.ebuild b/net-vpn/tor/tor-0.4.6.7.ebuild
index 8bb9a5158a7..39a52ca677b 100644
--- a/net-vpn/tor/tor-0.4.6.7.ebuild
+++ b/net-vpn/tor/tor-0.4.6.7.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}/${MY_PF}"
 LICENSE="BSD GPL-2"
 SLOT="0"
 if [[ ${PV} != *_alpha* && ${PV} != *_beta* && ${PV} != *_rc* ]]; then
-   KEYWORDS="~amd64 arm ~arm64 ~mips ppc ppc64 ~riscv x86 ~ppc-macos"
+   KEYWORDS="~amd64 arm arm64 ~mips ppc ppc64 ~riscv x86 ~ppc-macos"
 fi
 IUSE="caps doc lzma +man scrypt seccomp selinux +server systemd tor-hardening 
test zstd"
 VERIFY_SIG_OPENPGP_KEY_PATH=${BROOT}/usr/share/openpgp-keys/torproject.org.asc



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

2021-08-18 Thread Sam James
commit: 356995085bea467d32c6f01ee69861b15b33d3c1
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:06:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:06:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=35699508

dev-libs/libbsd: Stabilize 0.11.3 arm, #808489

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

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

diff --git a/dev-libs/libbsd/libbsd-0.11.3.ebuild 
b/dev-libs/libbsd/libbsd-0.11.3.ebuild
index 582ffda04f8..aed34a9369f 100644
--- a/dev-libs/libbsd/libbsd-0.11.3.ebuild
+++ b/dev-libs/libbsd/libbsd-0.11.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://${PN}.freedesktop.org/releases/${P}.tar.xz;
 
 LICENSE="BSD BSD-2 BSD-4 ISC"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 IUSE="static-libs"
 
 RDEPEND="app-crypt/libmd[${MULTILIB_USEDEP}]"



[gentoo-commits] repo/gentoo:master commit in: app-emulation/virtualbox-guest-additions/

2021-08-18 Thread Sam James
commit: b672369f3727b9f8dc27ec743b25cdbc255b1884
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:06:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:06:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b672369f

app-emulation/virtualbox-guest-additions: Stabilize 6.1.24 x86, #803134

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

 .../virtualbox-guest-additions/virtualbox-guest-additions-6.1.24.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-6.1.24.ebuild
 
b/app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-6.1.24.ebuild
index d767c7658dd..92c060741b1 100644
--- 
a/app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-6.1.24.ebuild
+++ 
b/app-emulation/virtualbox-guest-additions/virtualbox-guest-additions-6.1.24.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://download.virtualbox.org/virtualbox/${DIR_PV:-${MY_PV}}/${MY_P}.
 LICENSE="GPL-2"
 SLOT="0/$(ver_cut 1-2)"
 [[ "${PV}" == *_beta* ]] || [[ "${PV}" == *_rc* ]] || \
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="X"
 
 # automount Error: VBoxServiceAutoMountWorker: Group "vboxsf" does not exist



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

2021-08-18 Thread Sam James
commit: 5405c6c0d9a26e6ec46f609f7c0922b5b027b65f
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:07:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:07:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5405c6c0

net-misc/rabbitmq-server: Stabilize 3.8.19-r1 x86, #799416

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

 net-misc/rabbitmq-server/rabbitmq-server-3.8.19-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/rabbitmq-server/rabbitmq-server-3.8.19-r1.ebuild 
b/net-misc/rabbitmq-server/rabbitmq-server-3.8.19-r1.ebuild
index 3aa80d95460..2410ca43590 100644
--- a/net-misc/rabbitmq-server/rabbitmq-server-3.8.19-r1.ebuild
+++ b/net-misc/rabbitmq-server/rabbitmq-server-3.8.19-r1.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/rabbitmq/rabbitmq-server/releases/download/v${PV}/ra
 
 LICENSE="GPL-2 MPL-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~x86"
+KEYWORDS="amd64 ~arm64 x86"
 RESTRICT="test"
 
 RDEPEND="



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

2021-08-18 Thread Sam James
commit: 2144cfb243f76c8dde60c028f5cbcc2e1058271e
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 01:06:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 01:06:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2144cfb2

app-crypt/libmd: Stabilize 1.0.3-r2 arm, #808489

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

 app-crypt/libmd/libmd-1.0.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/libmd/libmd-1.0.3-r2.ebuild 
b/app-crypt/libmd/libmd-1.0.3-r2.ebuild
index 1e7e8312cf1..d4479ea5bc0 100644
--- a/app-crypt/libmd/libmd-1.0.3-r2.ebuild
+++ b/app-crypt/libmd/libmd-1.0.3-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://archive.hadrons.org/software/libmd/${P}.tar.xz;
 
 LICENSE="|| ( BSD BSD-2 ISC BEER-WARE public-domain )"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~mips ppc ppc64 ~s390 sparc x86 
~amd64-linux ~x86-linux"
 
 PATCHES=( "${FILESDIR}"/${P}-out-of-source.patch )
 



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

2021-08-18 Thread Sam James
commit: c5d49f5f6b9ae2c87a58a634d837623aa64703c7
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:57:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:57:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c5d49f5f

sys-devel/gcc: Stabilize 9.4.0 arm, #800767

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

 sys-devel/gcc/gcc-9.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-devel/gcc/gcc-9.4.0.ebuild b/sys-devel/gcc/gcc-9.4.0.ebuild
index 32d5ca3f1f3..2d86fd45bf3 100644
--- a/sys-devel/gcc/gcc-9.4.0.ebuild
+++ b/sys-devel/gcc/gcc-9.4.0.ebuild
@@ -7,7 +7,7 @@ PATCH_VER="1"
 
 inherit toolchain
 
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 
 RDEPEND=""
 DEPEND="${RDEPEND}



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

2021-08-18 Thread Sam James
commit: be052e2ac899f3e7f91aa72536f4415ecbe59e1b
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:48:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:48:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be052e2a

profiles: last-rite net-analyzer/netwag too

Needs last-rited net-analyzer/netwox.

Fixes: 62d46f26456a3c4d1ba8753a28d2210a3f841751
Signed-off-by: Sam James  gentoo.org>

 profiles/package.mask | 1 +
 1 file changed, 1 insertion(+)

diff --git a/profiles/package.mask b/profiles/package.mask
index 6f14ce0e2ba..8e96f8a7272 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -38,6 +38,7 @@
 # bugs open. Removal on 2021-09-19.
 # bug #711088, bug #775944, bug #790680, bug #806953.
 net-analyzer/netwox
+net-analyzer/netwag
 
 # Sam James  (2021-08-17)
 # Fails to build with >= Boost 1.73, so broken for well over a year.



[gentoo-commits] repo/gentoo:master commit in: games-arcade/opentyrian/

2021-08-18 Thread Sam James
commit: 3737c602ff7a723945d0eb800fb65e2b3ed329a1
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:46:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:46:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3737c602

games-arcade/opentyrian: revbump for changed dependency

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

 ...pentyrian-2.1.20130907-r2.ebuild => opentyrian-2.1.20130907-r3.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-arcade/opentyrian/opentyrian-2.1.20130907-r2.ebuild 
b/games-arcade/opentyrian/opentyrian-2.1.20130907-r3.ebuild
similarity index 100%
rename from games-arcade/opentyrian/opentyrian-2.1.20130907-r2.ebuild
rename to games-arcade/opentyrian/opentyrian-2.1.20130907-r3.ebuild



[gentoo-commits] repo/gentoo:master commit in: games-arcade/moleinvasion/

2021-08-18 Thread Sam James
commit: 37768cd6a6e3bf8437e496a93a2703bbac3874be
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:47:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:47:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=37768cd6

games-arcade/moleinvasion: revbump for changed dependency

Fixes: 5e459c5041f172d65a0011b378d2228a323d5621
Signed-off-by: Sam James  gentoo.org>

 .../{moleinvasion-0.4-r2.ebuild => moleinvasion-0.4-r3.ebuild}| 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-arcade/moleinvasion/moleinvasion-0.4-r2.ebuild 
b/games-arcade/moleinvasion/moleinvasion-0.4-r3.ebuild
similarity index 100%
rename from games-arcade/moleinvasion/moleinvasion-0.4-r2.ebuild
rename to games-arcade/moleinvasion/moleinvasion-0.4-r3.ebuild



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/mures/

2021-08-18 Thread Sam James
commit: 154ed07c85f8878dfc04708f2d5c8d8f66fb075f
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:46:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:46:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=154ed07c

games-puzzle/mures: revbump for changed dependency

Fixes: 502d496db8c81d52f292789d201451a0e8fdb4e1
Signed-off-by: Sam James  gentoo.org>

 games-puzzle/mures/{mures-0.5-r1.ebuild => mures-0.5-r2.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-puzzle/mures/mures-0.5-r1.ebuild 
b/games-puzzle/mures/mures-0.5-r2.ebuild
similarity index 100%
rename from games-puzzle/mures/mures-0.5-r1.ebuild
rename to games-puzzle/mures/mures-0.5-r2.ebuild



[gentoo-commits] repo/gentoo:master commit in: games-fps/worldofpadman/

2021-08-18 Thread Sam James
commit: 939b3cb7a742549da1b0b5a74334c412597cb8bb
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:47:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:47:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=939b3cb7

games-fps/worldofpadman: revbump for changed dependency

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

 .../{worldofpadman-1.6-r1.ebuild => worldofpadman-1.6-r2.ebuild}  | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-fps/worldofpadman/worldofpadman-1.6-r1.ebuild 
b/games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild
similarity index 100%
rename from games-fps/worldofpadman/worldofpadman-1.6-r1.ebuild
rename to games-fps/worldofpadman/worldofpadman-1.6-r2.ebuild



[gentoo-commits] repo/gentoo:master commit in: games-arcade/cosmosmash/

2021-08-18 Thread Sam James
commit: 09c8b7695dc34c5d1d4986a1925564d7e216913c
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:45:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:45:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=09c8b769

games-arcade/cosmosmash: revbump for changed dependency

Fixes: 2b42600abaa0ff0969717b6e2e27ad083adde1e8
Signed-off-by: Sam James  gentoo.org>

 .../cosmosmash/{cosmosmash-1.4.8.ebuild => cosmosmash-1.4.8-r1.ebuild}| 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-arcade/cosmosmash/cosmosmash-1.4.8.ebuild 
b/games-arcade/cosmosmash/cosmosmash-1.4.8-r1.ebuild
similarity index 100%
rename from games-arcade/cosmosmash/cosmosmash-1.4.8.ebuild
rename to games-arcade/cosmosmash/cosmosmash-1.4.8-r1.ebuild



[gentoo-commits] repo/gentoo:master commit in: games-arcade/fishsupper/

2021-08-18 Thread Sam James
commit: a2b47ec996ee2a155796c025b76951a6eb232d79
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:43:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:43:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2b47ec9

games-arcade/fishsupper: revbump for changed dependency

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

 .../fishsupper/{fishsupper-0.1.6-r1.ebuild => fishsupper-0.1.6-r2.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild 
b/games-arcade/fishsupper/fishsupper-0.1.6-r2.ebuild
similarity index 100%
rename from games-arcade/fishsupper/fishsupper-0.1.6-r1.ebuild
rename to games-arcade/fishsupper/fishsupper-0.1.6-r2.ebuild



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

2021-08-18 Thread Sam James
commit: 657692f8e4291e5916f675bd667e1ede8a7cf33e
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:45:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:45:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=657692f8

games-emulation/gnuboy: revbump for changed dependency

Fixes: 91aff97f2dac6a7897dff1da831d3d9243955307
Signed-off-by: Sam James  gentoo.org>

 games-emulation/gnuboy/{gnuboy-1.0.3-r2.ebuild => gnuboy-1.0.3-r3.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild 
b/games-emulation/gnuboy/gnuboy-1.0.3-r3.ebuild
similarity index 100%
rename from games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
rename to games-emulation/gnuboy/gnuboy-1.0.3-r3.ebuild



[gentoo-commits] repo/gentoo:master commit in: games-arcade/openmortal/

2021-08-18 Thread Sam James
commit: 67dc02967fedefcb83b9bfbcb3699c86bacbce4c
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:44:06 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:44:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67dc0296

games-arcade/openmortal: revbump for changed dependency

Fixes: 2cc8300fe0b1887194c6c4ce26d48f1fb3c5525a
Signed-off-by: Sam James  gentoo.org>

 .../openmortal/{openmortal-0.7-r2.ebuild => openmortal-0.7-r3.ebuild} | 0
 1 file changed, 0 insertions(+), 0 deletions(-)

diff --git a/games-arcade/openmortal/openmortal-0.7-r2.ebuild 
b/games-arcade/openmortal/openmortal-0.7-r3.ebuild
similarity index 100%
rename from games-arcade/openmortal/openmortal-0.7-r2.ebuild
rename to games-arcade/openmortal/openmortal-0.7-r3.ebuild



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

2021-08-18 Thread Sam James
commit: 6b300bdd707152ea4e23f00e5faf1a4ceec01402
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:44:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:44:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b300bdd

games-emulation/gnuboy: sort IUSE

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

 games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild 
b/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
index 90d25310151..9fd915b37c0 100644
--- a/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
+++ b/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="X +sdl"
+IUSE="+sdl X"
 REQUIRED_USE="!X? ( sdl )"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: games-simulation/searchandrescue/

2021-08-18 Thread Sam James
commit: 1e9f3a4e1fdfc235dc42e4639a077bbb5595b338
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:42:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:42:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e9f3a4e

games-simulation/searchandrescue: add libsdl[joystick] dependency

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

 ...handrescue-1.7.0.ebuild => searchandrescue-1.7.0-r1.ebuild} | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/games-simulation/searchandrescue/searchandrescue-1.7.0.ebuild 
b/games-simulation/searchandrescue/searchandrescue-1.7.0-r1.ebuild
similarity index 92%
rename from games-simulation/searchandrescue/searchandrescue-1.7.0.ebuild
rename to games-simulation/searchandrescue/searchandrescue-1.7.0-r1.ebuild
index a6949977970..0d86fc160b7 100644
--- a/games-simulation/searchandrescue/searchandrescue-1.7.0.ebuild
+++ b/games-simulation/searchandrescue/searchandrescue-1.7.0-r1.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+
 inherit desktop flag-o-matic prefix toolchain-funcs xdg
 
 MY_PN=SearchAndRescue
@@ -10,13 +11,14 @@ HOMEPAGE="http://searchandrescue.sourceforge.net/;
 SRC_URI="mirror://sourceforge/searchandrescue/${MY_PN}-${PV}.tar.gz -> 
${MY_PN}-${PV}.tar
mirror://sourceforge/searchandrescue/${MY_PN}-data-${PV}.tar.gz -> 
${MY_PN}-data-${PV}.tar

mirror://sourceforge/searchandrescue/${MY_PN}-data-guadarrama-${PV}.tar.gz -> 
${MY_PN}-data-guadarrama-${PV}.tar"
+S="${WORKDIR}"/${PN}_${PV}
 
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
 RDEPEND="
-   media-libs/libsdl
+   media-libs/libsdl[joystick]
media-libs/sdl-mixer
virtual/glu
virtual/opengl
@@ -31,8 +33,6 @@ RDEPEND="
 DEPEND="${RDEPEND}
x11-base/xorg-proto"
 
-S=${WORKDIR}/${PN}_${PV}
-
 src_unpack() {
unpack ${MY_PN}-${PV}.tar
mkdir data || die
@@ -52,7 +52,7 @@ src_prepare() {
 }
 
 src_configure() {
-   export CC="$(tc-getCC) ${CFLAGS} ${LDFLAGS}" \
+   export CC="$(tc-getCC) ${CFLAGS} ${CPPFLAGS} ${LDFLAGS}" \
   CPP="$(tc-getCXX) ${LDFLAGS}"
 
append-flags -DNEW_GRAPHICS -DHAVE_SDL_MIXER



[gentoo-commits] repo/gentoo:master commit in: games-emulation/gnuboy/files/, games-emulation/gnuboy/

2021-08-18 Thread Sam James
commit: a833125f7240f9764fcca9da36bbf4dc5cdcb2c0
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:41:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:41:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a833125f

games-emulation/gnuboy: add missing patch

Fixes: 9ed5fb34a77d5d488a7252f4041edaeff7da26a8
Signed-off-by: Sam James  gentoo.org>

 .../gnuboy-1.0.3-fix-implicit-decl-sprintf.patch   | 25 ++
 games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild  |  2 +-
 2 files changed, 26 insertions(+), 1 deletion(-)

diff --git 
a/games-emulation/gnuboy/files/gnuboy-1.0.3-fix-implicit-decl-sprintf.patch 
b/games-emulation/gnuboy/files/gnuboy-1.0.3-fix-implicit-decl-sprintf.patch
new file mode 100644
index 000..5b4cbfd1cc7
--- /dev/null
+++ b/games-emulation/gnuboy/files/gnuboy-1.0.3-fix-implicit-decl-sprintf.patch
@@ -0,0 +1,25 @@
+From 2c881f1ec456bab7deb4163a2f96814b479a81d7 Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Thu, 19 Aug 2021 01:19:30 +0100
+Subject: [PATCH] Fix implicit declaration of sprintf
+
+--- a/exports.c
 b/exports.c
+@@ -1,6 +1,7 @@
+ 
+ 
+ #include 
++#include 
+ 
+ #include "rc.h"
+ 
+--- a/sys/linux/fbdev.c
 b/sys/linux/fbdev.c
+@@ -9,6 +9,7 @@
+ 
+ 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 

diff --git a/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild 
b/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
index 9a20207a60e..90d25310151 100644
--- a/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
+++ b/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://gentoo/${P}.tar.gz"
 LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="X sdl"
+IUSE="X +sdl"
 REQUIRED_USE="!X? ( sdl )"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: games-arcade/moleinvasion/

2021-08-18 Thread Sam James
commit: afcd416a1e2f6f6da190c69f4e8bd32019f12cfa
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:40:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:40:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afcd416a

games-arcade/moleinvasion: fix IncorrectCopyright

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

 games-arcade/moleinvasion/moleinvasion-0.4-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/games-arcade/moleinvasion/moleinvasion-0.4-r2.ebuild 
b/games-arcade/moleinvasion/moleinvasion-0.4-r2.ebuild
index 069bc9688e3..3bd4d5e3512 100644
--- a/games-arcade/moleinvasion/moleinvasion-0.4-r2.ebuild
+++ b/games-arcade/moleinvasion/moleinvasion-0.4-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7



[gentoo-commits] repo/gentoo:master commit in: games-emulation/gnuboy/, games-emulation/gnuboy/files/

2021-08-18 Thread Sam James
commit: 91aff97f2dac6a7897dff1da831d3d9243955307
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:17:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=91aff97f

games-emulation/gnuboy: update EAPI 6 -> 7, add libsdl[joystick]

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

 .../gnuboy/files/gnuboy-1.0.3-include.patch|  5 ++---
 games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild  | 25 +++---
 2 files changed, 14 insertions(+), 16 deletions(-)

diff --git a/games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch 
b/games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch
index 15573000511..61b776f0008 100644
--- a/games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch
+++ b/games-emulation/gnuboy/files/gnuboy-1.0.3-include.patch
@@ -1,6 +1,5 @@
-diff -ru gnuboy-1.0.3.orig/defs.h gnuboy-1.0.3/defs.h
 gnuboy-1.0.3.orig/defs.h   2001-01-23 07:04:22.0 -0500
-+++ gnuboy-1.0.3/defs.h2014-07-04 03:56:46.685149736 -0400
+--- a/defs.h
 b/defs.h
 @@ -4,6 +4,10 @@
  #ifndef __DEFS_H__
  #define __DEFS_H__

diff --git a/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild 
b/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
index 177799b9c23..f48d05c9305 100644
--- a/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
+++ b/games-emulation/gnuboy/gnuboy-1.0.3-r2.ebuild
@@ -1,7 +1,8 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
 inherit autotools
 
 DESCRIPTION="Gameboy emulator with multiple renderers"
@@ -12,22 +13,24 @@ LICENSE="GPL-2"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="X sdl"
+REQUIRED_USE="!X? ( sdl )"
 
 RDEPEND="
sdl? ( media-libs/libsdl )
-   !X? ( media-libs/libsdl )
X? ( x11-libs/libXext )
 "
 DEPEND="${RDEPEND}
X? ( x11-base/xorg-proto )
 "
 
+PATCHES=(
+   "${FILESDIR}"/${P}-exec-stack.patch
+   "${FILESDIR}"/${P}-linux-headers.patch
+   "${FILESDIR}"/${P}-include.patch
+)
+
 src_prepare() {
default
-   eapply \
-   "${FILESDIR}"/${P}-exec-stack.patch \
-   "${FILESDIR}"/${P}-linux-headers.patch \
-   "${FILESDIR}"/${P}-include.patch
 
mv configure.in configure.ac || die
eautoreconf
@@ -36,10 +39,6 @@ src_prepare() {
 src_configure() {
local myconf
 
-   if ! use X ; then
-   myconf="--with-sdl"
-   fi
-
econf \
$(use_with X x) \
$(use_with sdl) \
@@ -50,11 +49,11 @@ src_configure() {
 }
 
 src_install() {
-   for f in sdlgnuboy xgnuboy
-   do
+   for f in sdlgnuboy xgnuboy; do
if [[ -f ${f} ]] ; then
dobin ${f}
fi
done
+
dodoc README docs/{CHANGES,CONFIG,CREDITS,FAQ,HACKING,WHATSNEW}
 }



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

2021-08-18 Thread Sam James
commit: c84301a2f08f94fe74fac62811cac8fd1749bc6e
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:37:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c84301a2

games-fps/worldofpadman: update EAPI 6 -> 7, add libsdl[joystick] dependency

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

 .../worldofpadman/files/worldofpadman-1.6-gentoo.patch |  4 ++--
 games-fps/worldofpadman/worldofpadman-1.6-r1.ebuild| 18 ++
 2 files changed, 12 insertions(+), 10 deletions(-)

diff --git a/games-fps/worldofpadman/files/worldofpadman-1.6-gentoo.patch 
b/games-fps/worldofpadman/files/worldofpadman-1.6-gentoo.patch
index d55e43ffcf5..a8b46098eb7 100644
--- a/games-fps/worldofpadman/files/worldofpadman-1.6-gentoo.patch
+++ b/games-fps/worldofpadman/files/worldofpadman-1.6-gentoo.patch
@@ -1,5 +1,5 @@
 a/Makefile.old 2012-04-26 21:40:25.277417417 +0200
-+++ b/Makefile 2012-04-26 21:43:34.300835150 +0200
+--- a/Makefile
 b/Makefile
 @@ -344,11 +344,11 @@
endif


diff --git a/games-fps/worldofpadman/worldofpadman-1.6-r1.ebuild 
b/games-fps/worldofpadman/worldofpadman-1.6-r1.ebuild
index 523ca7b597b..a958dfcfe87 100644
--- a/games-fps/worldofpadman/worldofpadman-1.6-r1.ebuild
+++ b/games-fps/worldofpadman/worldofpadman-1.6-r1.ebuild
@@ -1,13 +1,15 @@
-# Copyright 1999-2018 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
 inherit desktop
 
 DESCRIPTION="A cartoon style multiplayer first-person shooter"
 HOMEPAGE="https://worldofpadman.net/;
 SRC_URI="mirror://sourceforge/${PN}/wop-1.5-unified.zip
mirror://sourceforge/${PN}/wop-1.5.x-to-1.6-patch-unified.zip"
+S="${WORKDIR}/${P}_svn2178-src"
 
 LICENSE="GPL-2 worldofpadman"
 SLOT="0"
@@ -19,7 +21,7 @@ RDEPEND="sys-libs/zlib
>=media-libs/speex-1.2.0
media-libs/speexdsp
virtual/jpeg:0
-   media-libs/libsdl[opengl,video,X]
+   media-libs/libsdl[joystick,opengl,video,X]
virtual/opengl
virtual/glu
openal? ( media-libs/openal )
@@ -31,11 +33,8 @@ RDEPEND="sys-libs/zlib
)
)
 "
-DEPEND="${RDEPEND}
-   app-arch/unzip
-"
-
-S="${WORKDIR}/${P}_svn2178-src"
+DEPEND="${RDEPEND}"
+BDEPEND="app-arch/unzip"
 
 src_unpack() {
unpack ${A}
@@ -79,11 +78,13 @@ src_compile() {
 
 src_install() {
newbin build/release-*/wopded.* ${PN}-ded
+
if ! use dedicated ; then
newbin build/release-*/wop.* ${PN}
newicon misc/quake3.png ${PN}.png
make_desktop_entry ${PN} "World of Padman"
fi
+
insinto /usr/share/${PN}
doins -r ../wop
 
@@ -92,5 +93,6 @@ src_install() {
voip-readme.txt \
../XTRAS/changelog.txt \
../XTRAS/sounds_readme.txt
+
HTML_DOCS="../XTRAS/readme ../XTRAS/readme.html" einstalldocs
 }



[gentoo-commits] repo/gentoo:master commit in: games-arcade/opentyrian/, games-arcade/opentyrian/files/

2021-08-18 Thread Sam James
commit: f2ec3cbe2eed9382c90e01e43c9563b419c38b34
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:30:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2ec3cbe

games-arcade/opentyrian: fix libsdl[joystick] dependency

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

 .../opentyrian/files/2.1.20130907-datapath.diff| 26 --
 ...y.diff => opentyrian-2.1.20130907-cflags.patch} |  5 ++---
 .../files/opentyrian-2.1.20130907-datapath.patch   | 24 
 ...0.patch => opentyrian-2.1.20130907-gcc10.patch} |  9 
 .../opentyrian/opentyrian-2.1.20130907-r2.ebuild   | 11 -
 5 files changed, 32 insertions(+), 43 deletions(-)

diff --git a/games-arcade/opentyrian/files/2.1.20130907-datapath.diff 
b/games-arcade/opentyrian/files/2.1.20130907-datapath.diff
deleted file mode 100644
index 5b0143ed9a5..000
--- a/games-arcade/opentyrian/files/2.1.20130907-datapath.diff
+++ /dev/null
@@ -1,26 +0,0 @@
-diff -uNr opentyrian-2.1.20130907.ORIG/Makefile 
opentyrian-2.1.20130907/Makefile
 opentyrian-2.1.20130907.ORIG/Makefile  2013-12-08 17:40:23.470846371 
+
-+++ opentyrian-2.1.20130907/Makefile   2013-12-08 17:40:49.355847165 +
-@@ -49,6 +49,10 @@
- ALL_LDFLAGS += $(LDFLAGS)
- LDLIBS += $(EXTRA_LDLIBS) $(SDL_LDLIBS)
- 
-+ifneq ($(DATA_PATH), )
-+  CFLAGS += -DDATA_PATH=\"$(DATA_PATH)\"
-+endif
-+
- # RULES 
- 
- .PHONY : all release clean
-diff -uNr opentyrian-2.1.20130907.ORIG/src/file.c 
opentyrian-2.1.20130907/src/file.c
 opentyrian-2.1.20130907.ORIG/src/file.c2013-12-08 17:40:23.468846371 
+
-+++ opentyrian-2.1.20130907/src/file.c 2013-12-08 17:40:49.355847165 +
-@@ -34,7 +34,7 @@
- #ifdef TARGET_MACOSX
-   tyrian_game_folder(),
- #endif
--  "/usr/share/opentyrian/data"
-+  DATA_PATH
-   };
-   
-   static const char *dir = NULL;

diff --git a/games-arcade/opentyrian/files/2.1.20130907-cflag-idiocy.diff 
b/games-arcade/opentyrian/files/opentyrian-2.1.20130907-cflags.patch
similarity index 60%
rename from games-arcade/opentyrian/files/2.1.20130907-cflag-idiocy.diff
rename to games-arcade/opentyrian/files/opentyrian-2.1.20130907-cflags.patch
index 39ccf1c79f6..3654e22ef45 100644
--- a/games-arcade/opentyrian/files/2.1.20130907-cflag-idiocy.diff
+++ b/games-arcade/opentyrian/files/opentyrian-2.1.20130907-cflags.patch
@@ -1,6 +1,5 @@
-diff -uNr opentyrian-2.1.20130907.ORIG/Makefile 
opentyrian-2.1.20130907/Makefile
 opentyrian-2.1.20130907.ORIG/Makefile  2013-12-08 17:38:06.982842189 
+
-+++ opentyrian-2.1.20130907/Makefile   2013-12-08 17:38:26.843842798 +
+--- a/Makefile
 b/Makefile
 @@ -21,11 +21,6 @@
  
  # FLAGS 

diff --git 
a/games-arcade/opentyrian/files/opentyrian-2.1.20130907-datapath.patch 
b/games-arcade/opentyrian/files/opentyrian-2.1.20130907-datapath.patch
new file mode 100644
index 000..8ebf427d079
--- /dev/null
+++ b/games-arcade/opentyrian/files/opentyrian-2.1.20130907-datapath.patch
@@ -0,0 +1,24 @@
+--- a/Makefile
 b/Makefile
+@@ -49,6 +49,10 @@
+ ALL_LDFLAGS += $(LDFLAGS)
+ LDLIBS += $(EXTRA_LDLIBS) $(SDL_LDLIBS)
+ 
++ifneq ($(DATA_PATH), )
++  CFLAGS += -DDATA_PATH=\"$(DATA_PATH)\"
++endif
++
+ # RULES 
+ 
+ .PHONY : all release clean
+--- a/src/file.c
 b/src/file.c
+@@ -34,7 +34,7 @@
+ #ifdef TARGET_MACOSX
+   tyrian_game_folder(),
+ #endif
+-  "/usr/share/opentyrian/data"
++  DATA_PATH
+   };
+   
+   static const char *dir = NULL;

diff --git a/games-arcade/opentyrian/files/2.1.20130907-gcc10.patch 
b/games-arcade/opentyrian/files/opentyrian-2.1.20130907-gcc10.patch
similarity index 97%
rename from games-arcade/opentyrian/files/2.1.20130907-gcc10.patch
rename to games-arcade/opentyrian/files/opentyrian-2.1.20130907-gcc10.patch
index 5b0c911a2ac..6f0bfcf64cf 100644
--- a/games-arcade/opentyrian/files/2.1.20130907-gcc10.patch
+++ b/games-arcade/opentyrian/files/opentyrian-2.1.20130907-gcc10.patch
@@ -4,13 +4,6 @@ Date: Sun, 14 Jun 2020 14:11:00 -0600
 Subject: [PATCH] Move definitions that don't need to be exposed from opl.h to
  opl.c
 

- src/opl.c | 153 +++-
- src/opl.h | 157 ++
- 2 files changed, 154 insertions(+), 156 deletions(-)
-
-diff --git a/src/opl.c b/src/opl.c
-index a4071c5..f15474c 100644
 --- a/src/opl.c
 +++ b/src/opl.c
 @@ -23,12 +23,161 @@
@@ -177,8 +170,6 @@ index a4071c5..f15474c 100644
  
  static Bit32u generator_add;  // should be a chip parameter
  
-diff --git a/src/opl.h b/src/opl.h
-index c8e643b..cbb56ad 100644
 --- a/src/opl.h
 +++ 

[gentoo-commits] repo/gentoo:master commit in: media-gfx/tuxpaint/

2021-08-18 Thread Sam James
commit: 8800e2e1f492de9ce1fd42cda0407cb9c80d9655
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:31:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8800e2e1

media-gfx/tuxpaint: fix libsdl[joystick] dependency

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

 .../tuxpaint/{tuxpaint-0.9.24.ebuild => tuxpaint-0.9.24-r1.ebuild} | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/media-gfx/tuxpaint/tuxpaint-0.9.24.ebuild 
b/media-gfx/tuxpaint/tuxpaint-0.9.24-r1.ebuild
similarity index 98%
rename from media-gfx/tuxpaint/tuxpaint-0.9.24.ebuild
rename to media-gfx/tuxpaint/tuxpaint-0.9.24-r1.ebuild
index b17d98b9288..95da9599811 100644
--- a/media-gfx/tuxpaint/tuxpaint-0.9.24.ebuild
+++ b/media-gfx/tuxpaint/tuxpaint-0.9.24-r1.ebuild
@@ -19,7 +19,7 @@ RDEPEND="
gnome-base/librsvg:2
>=media-libs/libpng-1.2:0=
>=media-libs/freetype-2:2
-   media-libs/libsdl
+   media-libs/libsdl[joystick]
media-libs/sdl-image[png]
media-libs/sdl-mixer
media-libs/sdl-pango
@@ -35,6 +35,7 @@ BDEPEND="
 
 src_prepare() {
xdg_src_prepare
+
sed -i \
-e 's|linux_ARCH_INSTALL:=install-xdg|linux_ARCH_INSTALL:=|' \
-e "s|linux_PREFIX:=/usr/local|linux_PREFIX:=/usr|" \



[gentoo-commits] repo/gentoo:master commit in: games-action/rrootage/, games-action/rrootage/files/

2021-08-18 Thread Sam James
commit: 2a5c0c46e3051cc42c3299eae20fb77ce6d10e7e
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:34:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a5c0c46

games-action/rrootage: respect CC/CXX, fix libsdl[joystick] dependency

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

 games-action/rrootage/files/rrootage-0.23a-gcc41.patch   |  8 
 .../{rrootage-0.23a-r1.ebuild => rrootage-0.23a-r2.ebuild}   | 12 +++-
 2 files changed, 11 insertions(+), 9 deletions(-)

diff --git a/games-action/rrootage/files/rrootage-0.23a-gcc41.patch 
b/games-action/rrootage/files/rrootage-0.23a-gcc41.patch
index 1e6e50e683f..00926f9b75d 100644
--- a/games-action/rrootage/files/rrootage-0.23a-gcc41.patch
+++ b/games-action/rrootage/files/rrootage-0.23a-gcc41.patch
@@ -1,5 +1,5 @@
 src/foecommand.h.old   2006-04-21 23:26:03.0 +0200
-+++ src/foecommand.h   2006-04-21 23:26:26.0 +0200
+--- a/foecommand.h
 b/foecommand.h
 @@ -39,10 +39,10 @@

virtual void doChangeDirection(double d);
@@ -15,8 +15,8 @@

   private:
struct foe *foe;
 src/screen.c.old   2006-04-21 23:50:01.0 +0200
-+++ src/screen.c   2006-04-21 23:50:30.0 +0200
+--- a/screen.c
 b/screen.c
 @@ -73,7 +73,7 @@
  void loadGLTexture(char *fileName, GLuint *texture) {
SDL_Surface *surface;

diff --git a/games-action/rrootage/rrootage-0.23a-r1.ebuild 
b/games-action/rrootage/rrootage-0.23a-r2.ebuild
similarity index 92%
rename from games-action/rrootage/rrootage-0.23a-r1.ebuild
rename to games-action/rrootage/rrootage-0.23a-r2.ebuild
index 7fbee7b1a76..0defc88d532 100644
--- a/games-action/rrootage/rrootage-0.23a-r1.ebuild
+++ b/games-action/rrootage/rrootage-0.23a-r2.ebuild
@@ -1,7 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
+
+inherit toolchain-funcs
 
 MY_PN="rRootage"
 MY_P="${MY_PN}-${PV}"
@@ -9,11 +11,11 @@ DESCRIPTION="Abstract shooter - defeat auto-created huge 
battleships"
 HOMEPAGE="http://www.asahi-net.or.jp/~cs8k-cyu/windows/rr_e.html
http://rrootage.sourceforge.net/;
 SRC_URI="mirror://sourceforge/${PN}/${MY_P}.tar.gz"
+S="${WORKDIR}"/${MY_PN}/src
 
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE=""
 
 DEPEND="
>=dev-libs/libbulletml-0.0.3
@@ -21,9 +23,7 @@ DEPEND="
media-libs/sdl-mixer[vorbis]
virtual/glu
virtual/opengl"
-RDEPEND=${DEPEND}
-
-S=${WORKDIR}/${MY_PN}/src
+RDEPEND="${DEPEND}"
 
 PATCHES=(
"${FILESDIR}/${P}"-gcc41.patch
@@ -50,6 +50,8 @@ src_prepare() {
 
 src_compile() {
emake \
+   CC=$(tc-getCC) \
+   CXX=$(tc-getCXX) \
MORE_CFLAGS="-DLINUX ${CFLAGS}" \
MORE_CXXFLAGS="-DLINUX ${CXXFLAGS}"
 }



[gentoo-commits] repo/gentoo:master commit in: games-arcade/sdlroids/

2021-08-18 Thread Sam James
commit: 12920b7e75c6f7ce8686c3ffaf67d9108a534e02
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:26:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=12920b7e

games-arcade/sdlroids: add missing libsdl[joystick] dependency

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

 .../sdlroids/{sdlroids-1.3.4-r4.ebuild => sdlroids-1.3.4-r5.ebuild}   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-arcade/sdlroids/sdlroids-1.3.4-r4.ebuild 
b/games-arcade/sdlroids/sdlroids-1.3.4-r5.ebuild
similarity index 90%
rename from games-arcade/sdlroids/sdlroids-1.3.4-r4.ebuild
rename to games-arcade/sdlroids/sdlroids-1.3.4-r5.ebuild
index 30d2f85a7f3..fef465d97c2 100644
--- a/games-arcade/sdlroids/sdlroids-1.3.4-r4.ebuild
+++ b/games-arcade/sdlroids/sdlroids-1.3.4-r5.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -14,7 +14,7 @@ SLOT="0"
 KEYWORDS="~alpha ~amd64 ~x86"
 
 RDEPEND="
-   media-libs/libsdl
+   media-libs/libsdl[joystick]
media-libs/sdl-mixer"
 DEPEND="${RDEPEND}"
 



[gentoo-commits] repo/gentoo:master commit in: games-puzzle/mures/

2021-08-18 Thread Sam James
commit: 502d496db8c81d52f292789d201451a0e8fdb4e1
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:27:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=502d496d

games-puzzle/mures: add missing libsdl[joystick] dependency

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

 games-puzzle/mures/mures-0.5-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/games-puzzle/mures/mures-0.5-r1.ebuild 
b/games-puzzle/mures/mures-0.5-r1.ebuild
index 6a16b35658b..b99486c241b 100644
--- a/games-puzzle/mures/mures-0.5-r1.ebuild
+++ b/games-puzzle/mures/mures-0.5-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -15,7 +15,7 @@ KEYWORDS="~amd64 ~x86"
 IUSE="opengl"
 
 DEPEND="
-   media-libs/libsdl
+   media-libs/libsdl[joystick]
media-libs/sdl-image
media-libs/sdl-net
media-libs/sdl-ttf



[gentoo-commits] repo/gentoo:master commit in: games-arcade/burgerspace/

2021-08-18 Thread Sam James
commit: 9754a20225d1db31e9d77ecdf66d665ad6b7590e
Author: Sam James  gentoo  org>
AuthorDate: Thu Aug 19 00:23:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Aug 19 00:39:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9754a202

games-arcade/burgerspace: add missing dependencies

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

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

diff --git a/games-arcade/burgerspace/burgerspace-1.9.3.ebuild 
b/games-arcade/burgerspace/burgerspace-1.9.3-r1.ebuild
similarity index 85%
rename from games-arcade/burgerspace/burgerspace-1.9.3.ebuild
rename to games-arcade/burgerspace/burgerspace-1.9.3-r1.ebuild
index 8e1c711405c..20885e388a6 100644
--- a/games-arcade/burgerspace/burgerspace-1.9.3.ebuild
+++ b/games-arcade/burgerspace/burgerspace-1.9.3-r1.ebuild
@@ -15,7 +15,10 @@ KEYWORDS="~amd64 ~x86"
 IUSE="network"
 RESTRICT="test" # doesn't really test anything
 
-RDEPEND=">=dev-games/flatzebra-0.1.7"
+RDEPEND=">=dev-games/flatzebra-0.1.7
+   media-libs/libsdl[joystick]
+   media-libs/sdl-image
+   media-libs/sdl-mixer"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"
 



  1   2   3   4   >