[gentoo-commits] repo/proj/guru:dev commit in: media-sound/tenacity/

2021-09-19 Thread Ryan Fox
commit: d7cdcb0d126551a092d67e29ed7822f22338ff8d
Author: Ryan Fox  2a03  party>
AuthorDate: Mon Sep 20 05:47:39 2021 +
Commit: Ryan Fox  2a03  party>
CommitDate: Mon Sep 20 05:47:39 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d7cdcb0d

media-sound/tenacity: Fix libnyquist install

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ryan Fox  2a03.party>

 media-sound/tenacity/tenacity-.ebuild | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/media-sound/tenacity/tenacity-.ebuild 
b/media-sound/tenacity/tenacity-.ebuild
index a4f7bfa2f..7f13fd04a 100644
--- a/media-sound/tenacity/tenacity-.ebuild
+++ b/media-sound/tenacity/tenacity-.ebuild
@@ -80,6 +80,5 @@ src_install() {
# TODO: Improve installation upstream
rm "${ED}/usr/tenacity" || die
mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}" || die
-   into "/usr/$(get_libdir)/${PN}"
-   dolib.so "${BUILD_DIR}/lib-src/libnyquist/liblibnyquist.so"
+   mv "${BUILD_DIR}/lib-src/libnyquist/liblibnyquist.so" 
"${ED}/usr/$(get_libdir)/${PN}/liblibnyquist.so" || die
 }



[gentoo-commits] proj/portage:master commit in: lib/portage/util/futures/_asyncio/

2021-09-19 Thread Zac Medico
commit: 631bedffe29124d693de3b539fc908d9feec1420
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Sep 20 05:05:38 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep 20 05:08:47 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=631bedff

_safe_loop: fix python3.10 DeprecationWarning

DeprecationWarning: There is no current event loop

Signed-off-by: Zac Medico  gentoo.org>

 lib/portage/util/futures/_asyncio/__init__.py | 10 +++---
 1 file changed, 7 insertions(+), 3 deletions(-)

diff --git a/lib/portage/util/futures/_asyncio/__init__.py 
b/lib/portage/util/futures/_asyncio/__init__.py
index c1229528a..ccf800c66 100644
--- a/lib/portage/util/futures/_asyncio/__init__.py
+++ b/lib/portage/util/futures/_asyncio/__init__.py
@@ -280,10 +280,14 @@ def _safe_loop():
 loop = _thread_weakrefs.loops[thread_key]
 except KeyError:
 try:
-_real_asyncio.get_event_loop()
+try:
+_loop = _real_asyncio.get_running_loop()
+except AttributeError:
+_loop = _real_asyncio.get_event_loop()
 except RuntimeError:
-_real_asyncio.set_event_loop(_real_asyncio.new_event_loop())
-loop = _thread_weakrefs.loops[thread_key] = _AsyncioEventLoop()
+_loop = _real_asyncio.new_event_loop()
+_real_asyncio.set_event_loop(_loop)
+loop = _thread_weakrefs.loops[thread_key] = 
_AsyncioEventLoop(loop=_loop)
 
 if (
 _thread_weakrefs.mainloop is None



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

2021-09-19 Thread Zac Medico
commit: 7225cfb6d7d03e1bd0bd7f5506fd902bb05f1488
Author: Zac Medico  gentoo  org>
AuthorDate: Mon Sep 20 05:03:41 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep 20 05:04:35 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=7225cfb6

.editorconfig: *.py indent_style = space

Signed-off-by: Zac Medico  gentoo.org>

 .editorconfig | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.editorconfig b/.editorconfig
index 355129b9b..80046d2f6 100644
--- a/.editorconfig
+++ b/.editorconfig
@@ -10,7 +10,7 @@ indent_size = 4
 tab_width = 4
 insert_final_newline = true
 
-[*.{yaml,yml}]
+[*.{py,yaml,yml}]
 indent_style = space
 
 [pylintrc]



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

2021-09-19 Thread Jakov Smolić
commit: e388679ed34a7d763520b3628be39ea22be112d3
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Sep 20 05:15:01 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Sep 20 05:15:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e388679e

dev-util/bpftool: Remove old 5.14.1

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

 dev-util/bpftool/Manifest  |   1 -
 dev-util/bpftool/bpftool-5.14.1.ebuild | 117 -
 2 files changed, 118 deletions(-)

diff --git a/dev-util/bpftool/Manifest b/dev-util/bpftool/Manifest
index 2f2681339e5..6f8e745483f 100644
--- a/dev-util/bpftool/Manifest
+++ b/dev-util/bpftool/Manifest
@@ -1,3 +1,2 @@
 DIST linux-5.14.tar.xz 120669872 BLAKE2B 
0047f5aaa3940dff97f4055ef544faafbbb5282128e6afe21d2f47d8dc8c395806a17016febfa050117d16f59e74b882cb8b9c5011d68f119c230d0a4d120524
 SHA512 
8e4f3ec3d36f774280f75dc7b004a43e09417af58f12e9c9f8348976659d4cfda7ad905f306f43fed66a27922e5c45db22e46bbfa7a0b9f365012380de3b6f64
-DIST patch-5.14.1.xz 4708 BLAKE2B 
334d56ba26abc0d29432c27a31fefff332d9b134899b6f0d5fdeadaf68c3bf95eaeba37a9500eb3c245ae2eea70786c55056586ce747277e9f2be16697ceab73
 SHA512 
409108139ba2842d100d69e47d88eee87bea58c210a84e242c82aae48fe4bc57ccd0a507c4a0ecb791d0a2962f46cda3ba900f728a9b6856e986bff018a2d19c
 DIST patch-5.14.2.xz 8376 BLAKE2B 
0fd1b718801661f5fe70866b0301bdcdaa4c2c0ca75aefcc20d4edb7439326cbc2aa1a0f78dd105bc7939f52107aca032f0e6e43d39c077e4f784220d0a8f752
 SHA512 
b8f181cf5d19e5206e4e0524a1bef5639346b71d002523bfd65e3a2fc2b914fa979c381c8a613c062503160510f31c003f712773cb6945497aa3eba71595c697

diff --git a/dev-util/bpftool/bpftool-5.14.1.ebuild 
b/dev-util/bpftool/bpftool-5.14.1.ebuild
deleted file mode 100644
index e3fa3487cfe..000
--- a/dev-util/bpftool/bpftool-5.14.1.ebuild
+++ /dev/null
@@ -1,117 +0,0 @@
-# Copyright 2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8..10} )
-inherit estack linux-info optfeature python-any-r1 toolchain-funcs
-
-MY_PV="${PV/_/-}"
-MY_PV="${MY_PV/-pre/-git}"
-
-DESCRIPTION="Tool for inspection and simple manipulation of eBPF programs and 
maps"
-HOMEPAGE="https://kernel.org/;
-
-LINUX_V="${PV:0:1}.x"
-LINUX_VER=$(ver_cut 1-2)
-LINUX_PATCH=patch-${PV}.xz
-SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH};
-
-LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
-SRC_URI+=" 
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES};
-
-S_K="${WORKDIR}/linux-${LINUX_VER}"
-S="${S_K}/tools/bpf/bpftool"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="~amd64 ~x86"
-IUSE="caps"
-
-RDEPEND="
-   sys-libs/binutils-libs:=
-   sys-libs/zlib:=
-   virtual/libelf:=
-   caps? ( sys-libs/libcap:= )
-"
-DEPEND="
-   ${RDEPEND}
-   >=sys-kernel/linux-headers-5.8
-"
-BDEPEND="
-   ${LINUX_PATCH+dev-util/patchutils}
-   ${PYTHON_DEPS}
-   dev-python/docutils
-"
-
-CONFIG_CHECK="~DEBUG_INFO_BTF"
-
-# src_unpack and src_prepare are copied from dev-util/perf since
-# it's building from the same tarball, please keep it in sync with perf
-src_unpack() {
-   local paths=(
-   tools/bpf kernel/bpf
-   tools/{arch,build,include,lib,perf,scripts} 
{scripts,include,lib} "arch/*/lib"
-   )
-
-   # We expect the tar implementation to support the -j option (both
-   # GNU tar and libarchive's tar support that).
-   echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}"
-   tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \
-   "${paths[@]/#/linux-${LINUX_VER}/}" || die
-
-   if [[ -n ${LINUX_PATCH} ]] ; then
-   eshopts_push -o noglob
-   ebegin "Filtering partial source patch"
-   filterdiff -p1 ${paths[@]/#/-i } -z "${DISTDIR}"/${LINUX_PATCH} 
\
-   > ${P}.patch
-   eend $? || die "filterdiff failed"
-   eshopts_pop
-   fi
-
-   local a
-   for a in ${A}; do
-   [[ ${a} == ${LINUX_SOURCES} ]] && continue
-   [[ ${a} == ${LINUX_PATCH} ]] && continue
-   unpack ${a}
-   done
-}
-
-src_prepare() {
-   default
-
-   if [[ -n ${LINUX_PATCH} ]] ; then
-   pushd "${S_K}" >/dev/null || die
-   eapply "${WORKDIR}"/${P}.patch
-   popd || die
-   fi
-
-   # dev-python/docutils installs rst2man.py, not rst2man
-   sed -i -e 's/rst2man/rst2man.py/g' Documentation/Makefile || die
-}
-
-bpftool_make() {
-   local arch=$(tc-arch-kernel)
-   tc-export AR CC LD
-
-   emake V=1 VF=1 \
-   HOSTCC="$(tc-getBUILD_CC)" HOSTLD="$(tc-getBUILD_LD)" \
-   EXTRA_CFLAGS="${CFLAGS}" ARCH="${arch}" 
BPFTOOL_VERSION="${MY_PV}" \
-   prefix="${EPREFIX}"/usr \
-   feature-libcap="$(usex caps 1 0)" \
-   "$@"
-}
-
-src_compile() {
-   bpftool_make
- 

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

2021-09-19 Thread Jakov Smolić
commit: 52188e6b0079b400bfa3708f18c3c4d7bdc40a5b
Author: Jakov Smolić  gentoo  org>
AuthorDate: Mon Sep 20 05:06:56 2021 +
Commit: Jakov Smolić  gentoo  org>
CommitDate: Mon Sep 20 05:06:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52188e6b

dev-util/bpftool: Version bump to 5.14.2

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

 dev-util/bpftool/Manifest  |   1 +
 dev-util/bpftool/bpftool-5.14.2.ebuild | 117 +
 2 files changed, 118 insertions(+)

diff --git a/dev-util/bpftool/Manifest b/dev-util/bpftool/Manifest
index 80bec3892c0..2f2681339e5 100644
--- a/dev-util/bpftool/Manifest
+++ b/dev-util/bpftool/Manifest
@@ -1,2 +1,3 @@
 DIST linux-5.14.tar.xz 120669872 BLAKE2B 
0047f5aaa3940dff97f4055ef544faafbbb5282128e6afe21d2f47d8dc8c395806a17016febfa050117d16f59e74b882cb8b9c5011d68f119c230d0a4d120524
 SHA512 
8e4f3ec3d36f774280f75dc7b004a43e09417af58f12e9c9f8348976659d4cfda7ad905f306f43fed66a27922e5c45db22e46bbfa7a0b9f365012380de3b6f64
 DIST patch-5.14.1.xz 4708 BLAKE2B 
334d56ba26abc0d29432c27a31fefff332d9b134899b6f0d5fdeadaf68c3bf95eaeba37a9500eb3c245ae2eea70786c55056586ce747277e9f2be16697ceab73
 SHA512 
409108139ba2842d100d69e47d88eee87bea58c210a84e242c82aae48fe4bc57ccd0a507c4a0ecb791d0a2962f46cda3ba900f728a9b6856e986bff018a2d19c
+DIST patch-5.14.2.xz 8376 BLAKE2B 
0fd1b718801661f5fe70866b0301bdcdaa4c2c0ca75aefcc20d4edb7439326cbc2aa1a0f78dd105bc7939f52107aca032f0e6e43d39c077e4f784220d0a8f752
 SHA512 
b8f181cf5d19e5206e4e0524a1bef5639346b71d002523bfd65e3a2fc2b914fa979c381c8a613c062503160510f31c003f712773cb6945497aa3eba71595c697

diff --git a/dev-util/bpftool/bpftool-5.14.2.ebuild 
b/dev-util/bpftool/bpftool-5.14.2.ebuild
new file mode 100644
index 000..e3fa3487cfe
--- /dev/null
+++ b/dev-util/bpftool/bpftool-5.14.2.ebuild
@@ -0,0 +1,117 @@
+# Copyright 2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit estack linux-info optfeature python-any-r1 toolchain-funcs
+
+MY_PV="${PV/_/-}"
+MY_PV="${MY_PV/-pre/-git}"
+
+DESCRIPTION="Tool for inspection and simple manipulation of eBPF programs and 
maps"
+HOMEPAGE="https://kernel.org/;
+
+LINUX_V="${PV:0:1}.x"
+LINUX_VER=$(ver_cut 1-2)
+LINUX_PATCH=patch-${PV}.xz
+SRC_URI="https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_PATCH};
+
+LINUX_SOURCES="linux-${LINUX_VER}.tar.xz"
+SRC_URI+=" 
https://www.kernel.org/pub/linux/kernel/v${LINUX_V}/${LINUX_SOURCES};
+
+S_K="${WORKDIR}/linux-${LINUX_VER}"
+S="${S_K}/tools/bpf/bpftool"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="caps"
+
+RDEPEND="
+   sys-libs/binutils-libs:=
+   sys-libs/zlib:=
+   virtual/libelf:=
+   caps? ( sys-libs/libcap:= )
+"
+DEPEND="
+   ${RDEPEND}
+   >=sys-kernel/linux-headers-5.8
+"
+BDEPEND="
+   ${LINUX_PATCH+dev-util/patchutils}
+   ${PYTHON_DEPS}
+   dev-python/docutils
+"
+
+CONFIG_CHECK="~DEBUG_INFO_BTF"
+
+# src_unpack and src_prepare are copied from dev-util/perf since
+# it's building from the same tarball, please keep it in sync with perf
+src_unpack() {
+   local paths=(
+   tools/bpf kernel/bpf
+   tools/{arch,build,include,lib,perf,scripts} 
{scripts,include,lib} "arch/*/lib"
+   )
+
+   # We expect the tar implementation to support the -j option (both
+   # GNU tar and libarchive's tar support that).
+   echo ">>> Unpacking ${LINUX_SOURCES} (${paths[*]}) to ${PWD}"
+   tar --wildcards -xpf "${DISTDIR}"/${LINUX_SOURCES} \
+   "${paths[@]/#/linux-${LINUX_VER}/}" || die
+
+   if [[ -n ${LINUX_PATCH} ]] ; then
+   eshopts_push -o noglob
+   ebegin "Filtering partial source patch"
+   filterdiff -p1 ${paths[@]/#/-i } -z "${DISTDIR}"/${LINUX_PATCH} 
\
+   > ${P}.patch
+   eend $? || die "filterdiff failed"
+   eshopts_pop
+   fi
+
+   local a
+   for a in ${A}; do
+   [[ ${a} == ${LINUX_SOURCES} ]] && continue
+   [[ ${a} == ${LINUX_PATCH} ]] && continue
+   unpack ${a}
+   done
+}
+
+src_prepare() {
+   default
+
+   if [[ -n ${LINUX_PATCH} ]] ; then
+   pushd "${S_K}" >/dev/null || die
+   eapply "${WORKDIR}"/${P}.patch
+   popd || die
+   fi
+
+   # dev-python/docutils installs rst2man.py, not rst2man
+   sed -i -e 's/rst2man/rst2man.py/g' Documentation/Makefile || die
+}
+
+bpftool_make() {
+   local arch=$(tc-arch-kernel)
+   tc-export AR CC LD
+
+   emake V=1 VF=1 \
+   HOSTCC="$(tc-getBUILD_CC)" HOSTLD="$(tc-getBUILD_LD)" \
+   EXTRA_CFLAGS="${CFLAGS}" ARCH="${arch}" 
BPFTOOL_VERSION="${MY_PV}" \
+   prefix="${EPREFIX}"/usr \
+   feature-libcap="$(usex caps 1 0)" \
+   "$@"
+}
+
+src_compile() {
+   bpftool_make
+   

[gentoo-commits] proj/pax-utils:master commit in: /

2021-09-19 Thread Sam James
commit: c31c7fef7febeb4606d5b0cd22006c4dc7c11b06
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 04:51:03 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 04:51:03 2021 +
URL:https://gitweb.gentoo.org/proj/pax-utils.git/commit/?id=c31c7fef

README.md: solar@ is long-retired

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

 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 7e6dc99..6f2a3e7 100644
--- a/README.md
+++ b/README.md
@@ -42,7 +42,7 @@ If you include pax-utils in your distro, feel free to send an 
update for this.
 # Gentoo
  * https://wiki.gentoo.org/wiki/Hardened/PaX_Utilities
  * https://gitweb.gentoo.org/proj/pax-utils.git/
- * Maintainer: Mike Frysinger , Ned Ludd 
+ * Maintainer: Mike Frysinger , Toolchain Project 

 
 # openSUSE
  * 
https://build.opensuse.org/package/show?package=pax-utils=openSUSE%3AFactory



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

2021-09-19 Thread Sam James
commit: a71d4395773257f18b8b61624bf006097b072c92
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 04:12:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 04:12:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a71d4395

sys-fs/multipath-tools: add 0.8.7

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

 sys-fs/multipath-tools/Manifest|  1 +
 .../multipath-tools-0.8.7-respect-flags.patch  | 14 
 .../multipath-tools/multipath-tools-0.8.7.ebuild   | 89 ++
 3 files changed, 104 insertions(+)

diff --git a/sys-fs/multipath-tools/Manifest b/sys-fs/multipath-tools/Manifest
index 8ccd861e78f..0a206de7b65 100644
--- a/sys-fs/multipath-tools/Manifest
+++ b/sys-fs/multipath-tools/Manifest
@@ -1 +1,2 @@
 DIST multipath-tools-0.8.6.tar.gz 519405 BLAKE2B 
5aed36550c76bbde0e874e37356b6c5a80a80b876b56dadb69ce09f0fb049a7097fd1c0aca5076f816848e2c2660f96680d7f16d56918a25299017b39f76f777
 SHA512 
82e5b7307e599ba6b059679c3987a442fb5be4885f0a27c260a99a07cb336b88d48e314b4ec951944e0200e4731522d8da043d98fa566857ecc6d100791c0e38
+DIST multipath-tools-0.8.7.tar.gz 523535 BLAKE2B 
3f59af86f5b9f9ea524bf0c36e4a4bc3e01f557f2e18486b5278fe10e3bcf10dbc7568768c0e95529885bcdca6bcf04021ad5261bd1e6a3aeae5eb95b9d54801
 SHA512 
c01aea837b13429d17688455b813947342ca1cabba19b22e13ce640c77e68335a6d410280a8298595e239131e6fcbb655fa6de5ff9857eac99aa175046a450cd

diff --git 
a/sys-fs/multipath-tools/files/multipath-tools-0.8.7-respect-flags.patch 
b/sys-fs/multipath-tools/files/multipath-tools-0.8.7-respect-flags.patch
new file mode 100644
index 000..43c03883ee0
--- /dev/null
+++ b/sys-fs/multipath-tools/files/multipath-tools-0.8.7-respect-flags.patch
@@ -0,0 +1,14 @@
+--- a/Makefile.inc
 b/Makefile.inc
+@@ -101,8 +101,9 @@ OPTFLAGS   := -O2 -g $(STACKPROT) --param=ssp-buffer-size=4
+ WARNFLAGS := -Werror -Wall -Wextra -Wformat=2 $(WFORMATOVERFLOW) 
-Werror=implicit-int \
+ -Werror=implicit-function-declaration -Werror=format-security 
\
+ $(WNOCLOBBERED) -Werror=cast-qual 
$(ERROR_DISCARDED_QUALIFIERS)
+-CPPFLAGS  := -Wp,-D_FORTIFY_SOURCE=2
+-CFLAGS:= --std=gnu99 $(CFLAGS) $(OPTFLAGS) $(WARNFLAGS) -pipe 
\
++CPPFLAGS  ?= -Wp,-D_FORTIFY_SOURCE=2
++CFLAGS?= --std=gnu99 $(CFLAGS) $(OPTFLAGS) $(WARNFLAGS) -pipe
++CFLAGS+= --std=gnu99 \
+  -DBIN_DIR=\"$(bindir)\" -DLIB_STRING=\"${LIB}\" 
-DRUN_DIR=\"${RUN}\" \
+  -MMD -MP
+ BIN_CFLAGS= -fPIE -DPIE

diff --git a/sys-fs/multipath-tools/multipath-tools-0.8.7.ebuild 
b/sys-fs/multipath-tools/multipath-tools-0.8.7.ebuild
new file mode 100644
index 000..b078cc97d9d
--- /dev/null
+++ b/sys-fs/multipath-tools/multipath-tools-0.8.7.ebuild
@@ -0,0 +1,89 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+inherit linux-info systemd toolchain-funcs udev
+
+DESCRIPTION="Device mapper target autoconfig"
+HOMEPAGE="http://christophe.varoqui.free.fr/;
+SRC_URI="https://github.com/opensvc/${PN}/archive/refs/tags/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~x86"
+IUSE="systemd rbd test"
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   dev-libs/json-c:=
+   dev-libs/libaio
+   dev-libs/userspace-rcu:=
+   >=sys-fs/lvm2-2.02.45
+   >=virtual/libudev-232-r3
+   sys-libs/readline:0=
+   rbd? ( sys-cluster/ceph )
+   systemd? ( sys-apps/systemd )
+"
+DEPEND="${RDEPEND}
+   test? ( dev-util/cmocka )"
+BDEPEND="virtual/pkgconfig"
+
+CONFIG_CHECK="~DM_MULTIPATH"
+
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.8.7-respect-flags.patch
+   "${FILESDIR}"/${PN}-0.8.6-no-compress-man-pages.patch
+)
+
+src_prepare() {
+   default
+
+   # The upstream lacks any way to configure the build at present
+   # and ceph is a huge dependency, so we're using sed to make it
+   # optional until the upstream has a proper configure system
+   if ! use rbd ; then
+   sed \
+   -e "s/libcheckrbd.so/# libcheckrbd.so/" \
+   -e "s/-lrados//" \
+   -i libmultipath/checkers/Makefile \
+   || die
+   fi
+}
+
+src_compile() {
+   tc-export CC
+
+   # LIBDM_API_FLUSH involves grepping files in /usr/include,
+   # so force the test to go the way we want #411337.
+   emake \
+   LIB="${EPREFIX}/$(get_libdir)" \
+   LIBDM_API_FLUSH=1 \
+   PKGCONFIG="$(tc-getPKG_CONFIG)"
+}
+
+src_install() {
+   dodir /sbin /usr/share/man/man{3,5,8}
+   emake \
+   DESTDIR="${D}" \
+   LIB="${EPREFIX}/$(get_libdir)" \
+   RUN=run \
+   unitdir="$(systemd_get_systemunitdir)" \
+   libudevdir='${prefix}'/"$(get_udevdir)" \
+ 

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

2021-09-19 Thread Sam James
commit: 02c6bfa75e2a5db175115f994cb982e93157a257
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 04:02:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 04:02:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=02c6bfa7

app-misc/pax-utils: Stabilize 1.3.3 arm, #813753

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

 app-misc/pax-utils/pax-utils-1.3.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-misc/pax-utils/pax-utils-1.3.3.ebuild 
b/app-misc/pax-utils/pax-utils-1.3.3.ebuild
index 82f8cf8eb0c..d833142989b 100644
--- a/app-misc/pax-utils/pax-utils-1.3.3.ebuild
+++ b/app-misc/pax-utils/pax-utils-1.3.3.ebuild
@@ -18,7 +18,7 @@ SRC_URI="mirror://gentoo/${P}.tar.xz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="caps debug kernel_linux python seccomp"
 
 RDEPEND="caps? ( >=sys-libs/libcap-2.24 )



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

2021-09-19 Thread Sam James
commit: 6cb8335e2859baaef2f35eecd571c73e69b2aef0
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 04:01:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 04:01:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cb8335e

sys-fs/mtools: Stabilize 4.0.35 arm, #813699

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

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

diff --git a/sys-fs/mtools/mtools-4.0.35.ebuild 
b/sys-fs/mtools/mtools-4.0.35.ebuild
index 4f0795d13a3..2afd2e2310a 100644
--- a/sys-fs/mtools/mtools-4.0.35.ebuild
+++ b/sys-fs/mtools/mtools-4.0.35.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.bz2"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x64-macos 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 sparc x86 ~x64-macos 
~x64-solaris"
 IUSE="X elibc_glibc"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-lua/luasec/

2021-09-19 Thread Sam James
commit: 990b61669b219fdd26b399c9c4489f8569f35124
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 04:02:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 04:02:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=990b6166

dev-lua/luasec: Stabilize 1.0.2 arm, #813723

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

 dev-lua/luasec/luasec-1.0.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lua/luasec/luasec-1.0.2.ebuild 
b/dev-lua/luasec/luasec-1.0.2.ebuild
index 6b790de841b..bac04b01882 100644
--- a/dev-lua/luasec/luasec-1.0.2.ebuild
+++ b/dev-lua/luasec/luasec-1.0.2.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/brunoos/luasec/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~sparc x86"
 REQUIRED_USE="${LUA_REQUIRED_USE}"
 
 RDEPEND="



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

2021-09-19 Thread Sam James
commit: e5035f4ef27dd41c1632d31f588e02be7712592e
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 04:00:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 04:00:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e5035f4e

net-im/profanity: fix unicode dep on ncurses

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

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

diff --git a/net-im/profanity/profanity-0.11.0.ebuild 
b/net-im/profanity/profanity-0.11.0-r1.ebuild
similarity index 96%
rename from net-im/profanity/profanity-0.11.0.ebuild
rename to net-im/profanity/profanity-0.11.0-r1.ebuild
index 1625e5b0c0a..1ca09eb3993 100644
--- a/net-im/profanity/profanity-0.11.0.ebuild
+++ b/net-im/profanity/profanity-0.11.0-r1.ebuild
@@ -22,7 +22,7 @@ COMMON_DEPEND="
dev-libs/openssl:0=
net-misc/curl
sys-apps/util-linux
-   sys-libs/ncurses:=[unicode]
+   sys-libs/ncurses:=[unicode(+)]
virtual/libcrypt:=
gpg? ( app-crypt/gpgme:= )
libnotify? ( x11-libs/libnotify )



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

2021-09-19 Thread Zac Medico
commit: 58c1b364419ffef8aeb1cb383a2d433314cacd09
Author: Wolfgang E. Sanyer  gmail  com>
AuthorDate: Mon Sep 20 02:55:56 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep 20 03:57:59 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=58c1b364

Added rev ignore file, to make git blame more usable

Closes: https://github.com/gentoo/portage/pull/745
Signed-off-by: Wolfgang E. Sanyer  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 .gitignorerevs | 2 ++
 README.md  | 7 +++
 2 files changed, 9 insertions(+)

diff --git a/.gitignorerevs b/.gitignorerevs
new file mode 100644
index 0..9381d12ad
--- /dev/null
+++ b/.gitignorerevs
@@ -0,0 +1,2 @@
+# Run entire repository through black. Also, change tabs to spaces
+1bb64ff4520354688a82f4b267b028db913798f4

diff --git a/README.md b/README.md
index c176e8a3f..e75b430c6 100644
--- a/README.md
+++ b/README.md
@@ -30,6 +30,13 @@ editor integration. Something like this:
 black --check --diff .
 ```
 
+To ignore commit 1bb64ff452 - which is a massive commit that simply formatted
+the code base using black - you can do the following:
+
+```sh
+git config blame.ignoreRevsFile .gitignorerevs
+```
+
 Dependencies
 
 



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

2021-09-19 Thread Zac Medico
commit: 71dbd16c41e68bc31a1c7d2e7ba90c7eee5138b7
Author: Wolfgang E. Sanyer  gmail  com>
AuthorDate: Mon Sep 20 02:38:20 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep 20 03:57:30 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=71dbd16c

Add github action to check black formatting

Signed-off-by: Wolfgang E. Sanyer  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 .github/workflows/black.yml | 10 ++
 1 file changed, 10 insertions(+)

diff --git a/.github/workflows/black.yml b/.github/workflows/black.yml
new file mode 100644
index 0..b04fb15cb
--- /dev/null
+++ b/.github/workflows/black.yml
@@ -0,0 +1,10 @@
+name: Lint
+
+on: [push, pull_request]
+
+jobs:
+  lint:
+runs-on: ubuntu-latest
+steps:
+  - uses: actions/checkout@v2
+  - uses: psf/black@stable



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

2021-09-19 Thread Zac Medico
commit: 0971f2e89390058a1b35a6288a2f2c396a2ad038
Author: Wolfgang E. Sanyer  gmail  com>
AuthorDate: Mon Sep 20 02:36:19 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Mon Sep 20 03:57:25 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=0971f2e8

Change README to markdown. Also add badge and info for black formatting.

Signed-off-by: Wolfgang E. Sanyer  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 README => README.md | 42 ++
 man/make.conf.5 |  2 +-
 setup.py|  4 ++--
 3 files changed, 37 insertions(+), 11 deletions(-)

diff --git a/README b/README.md
similarity index 59%
rename from README
rename to README.md
index d2bc9fdda..c176e8a3f 100644
--- a/README
+++ b/README.md
@@ -1,3 +1,5 @@
+[![CI](https://github.com/gentoo/portage/actions/workflows/ci.yml/badge.svg)](https://github.com/gentoo/portage/actions/workflows/ci.yml)
+
 About Portage
 =
 
@@ -6,6 +8,27 @@ Package Manager Specification Project (PMS) standardises and 
documents
 the behaviour of Portage so that ebuild repositories can be used by
 other package managers.
 
+Contributing
+
+
+Contributions are always welcome! We've started using
+[black](https://pypi.org/project/black/) to format the code base. Please make
+sure you run it against any PR's prior to submitting (otherwise we'll probably
+reject it).
+
+There are [ways to
+integrate](https://black.readthedocs.io/en/stable/integrations/editors.html)
+black into your text editor and/or IDE.
+
+You can also set up a git hook to check your commits, in case you don't want
+editor integration. Something like this:
+
+```sh
+# .git/hooks/pre-commit (don't forget to chmod +x)
+
+#!/bin/bash
+black --check --diff .
+```
 
 Dependencies
 
@@ -25,8 +48,10 @@ The following setup.cfg settings can be used to enable 
building of
 native extensions for all invocations of the build_ext command (the
 build_ext command is invoked automatically by other build commands):
 
+```
[build_ext]
portage_ext_modules=true
+```
 
 Currently, the native extensions only include libc bindings which are
 used to validate LC_CTYPE and LC_COLLATE behavior for EAPI 6. If the
@@ -54,15 +79,16 @@ Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
MA
 More information
 
 
--DEVELOPING contains some code guidelines.
--LICENSE contains the GNU General Public License version 2.
--NEWS contains new features/major bug fixes for each version.
--RELEASE NOTES contains mainly upgrade information for each version.
--TEST-NOTES contains Portage unit test information.
+- DEVELOPING contains some code guidelines.
+- LICENSE contains the GNU General Public License version 2.
+- NEWS contains new features/major bug fixes for each version.
+- RELEASE NOTES contains mainly upgrade information for each version.
+- TEST-NOTES contains Portage unit test information.
 
 
 Links
 =
-Gentoo project page: 
-PMS: 
-PMS git repo: 
+
+- Gentoo project page: https://wiki.gentoo.org/wiki/Project:Portage
+- PMS: https://dev.gentoo.org/~ulm/pms/head/pms.html
+- PMS git repo: https://gitweb.gentoo.org/proj/pms.git/

diff --git a/man/make.conf.5 b/man/make.conf.5
index 0790933f7..43e70803f 100644
--- a/man/make.conf.5
+++ b/man/make.conf.5
@@ -815,7 +815,7 @@ INSTALL_MASK="/usr/share/doc/*/*.pdf"
 
 # Watch out! This will be interpreted as two patterns, and
 # prevent both "README" AND all PDF files from being installed.
-INSTALL_MASK="README\\ *.pdf"
+INSTALL_MASK="README.md\\ *.pdf"
 .fi
 .TP
 .B LDFLAGS

diff --git a/setup.py b/setup.py
index 718c05f9d..77fa0808c 100755
--- a/setup.py
+++ b/setup.py
@@ -47,7 +47,7 @@ autodetect_pip = os.path.basename(os.environ.get("_", "")) == 
"pip" or os.path.b
 ).startswith("pip-")
 venv_prefix = "" if sys.prefix == sys.base_prefix else sys.prefix
 create_entry_points = bool(autodetect_pip or venv_prefix)
-with open(os.path.join(os.path.dirname(__file__), "README"), "rt") as f:
+with open(os.path.join(os.path.dirname(__file__), "README.md"), "rt") as f:
 long_description = f.read()
 
 # TODO:
@@ -816,7 +816,7 @@ setup(
 description="Portage is the package management and distribution system for 
Gentoo",
 license="GPLV2",
 long_description=long_description,
-long_description_content_type="text/plain",
+long_description_content_type="text/markdown",
 package_dir={"": "lib"},
 packages=list(find_packages()),
 # something to cheat build & install commands



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

2021-09-19 Thread Sam James
commit: 138bba575b0816bfd58294e97f84febbed54b13b
Author: Jonathan Davies  protonmail  com>
AuthorDate: Wed Jul 14 23:25:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 03:57:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=138bba57

net-im/profanity: Version updated to 0.11.0

* Added dep on virtual/libcrypt.

Signed-off-by: Jonathan Davies  protonmail.com>
Bug: https://bugs.gentoo.org/802702
Closes: https://bugs.gentoo.org/789840
Closes: https://github.com/gentoo/gentoo/pull/21647
Signed-off-by: Sam James  gentoo.org>

 net-im/profanity/Manifest|  1 +
 net-im/profanity/profanity-0.11.0.ebuild | 50 
 2 files changed, 51 insertions(+)

diff --git a/net-im/profanity/Manifest b/net-im/profanity/Manifest
index 3bc881c2e23..10964d81786 100644
--- a/net-im/profanity/Manifest
+++ b/net-im/profanity/Manifest
@@ -1 +1,2 @@
 DIST profanity-0.9.5.tar.gz 830966 BLAKE2B 
fc1b755b1a92dbde62aacb31cb5d9190cea951e98501a5b48495dbd31266f343cf436de1fa0f69caec34324cd1f781d0bd4f5f7ebdd984324c5d1d6edb91452a
 SHA512 
79305ee488d3a9b87bb422d6525bfaae62c4969d466b968c86941ed5bf0c0080e349758f2e1ead144693513b5d19a635372e73aa1fe9e362836b9245e1d2b898
+DIST profanity-0.11.0.tar.gz 887566 BLAKE2B 
373b49670d00aa741e1957a8d3ca0282f6e7215c53c6c89088268d92fa6bd8f396e6c8e69f17aeb65f9183f620376613672c7f71c879ece31b97382df5d7a781
 SHA512 
14164921e151a9201728afc3835e08649036702d1fcdef6e37f83de6da4b9bd9c5e9ba54db69e3a9e16fb7e360369b4e92b6b771bc5e005e343a9a526738a268

diff --git a/net-im/profanity/profanity-0.11.0.ebuild 
b/net-im/profanity/profanity-0.11.0.ebuild
new file mode 100644
index 000..1625e5b0c0a
--- /dev/null
+++ b/net-im/profanity/profanity-0.11.0.ebuild
@@ -0,0 +1,50 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+DESCRIPTION="A console based XMPP client inspired by Irssi"
+HOMEPAGE="https://profanity-im.github.io;
+SRC_URI="https://profanity-im.github.io/${P}.tar.gz;
+
+LICENSE="GPL-3"
+SLOT="0"
+KEYWORDS="~amd64"
+
+IUSE="libnotify omemo otr gpg test xscreensaver"
+RESTRICT="!test? ( test )"
+
+COMMON_DEPEND="
+   dev-db/sqlite
+   dev-libs/expat
+   dev-libs/glib
+   dev-libs/libstrophe:=
+   dev-libs/openssl:0=
+   net-misc/curl
+   sys-apps/util-linux
+   sys-libs/ncurses:=[unicode]
+   virtual/libcrypt:=
+   gpg? ( app-crypt/gpgme:= )
+   libnotify? ( x11-libs/libnotify )
+   omemo? (
+   net-libs/libsignal-protocol-c
+   dev-libs/libgcrypt
+   )
+   otr? ( net-libs/libotr )
+   xscreensaver? (
+   x11-libs/libXScrnSaver
+   x11-libs/libX11 )
+   "
+DEPEND="${COMMON_DEPEND}
+   test? ( dev-util/cmocka )
+"
+RDEPEND="${COMMON_DEPEND}"
+
+src_configure() {
+   econf \
+   $(use_enable libnotify notifications) \
+   $(use_enable omemo) \
+   $(use_enable otr) \
+   $(use_enable gpg pgp) \
+   $(use_with xscreensaver)
+}



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

2021-09-19 Thread Jory Pratt
commit: 55ff1b9285c344a6eaa96dfb7d51628c4eca8430
Author: Jory Pratt  gentoo  org>
AuthorDate: Mon Sep 20 02:54:51 2021 +
Commit: Jory Pratt  gentoo  org>
CommitDate: Mon Sep 20 02:55:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55ff1b92

sys-kernel/zen-sources: version bump 5.14.6

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

 sys-kernel/zen-sources/Manifest  | 5 -
 .../{zen-sources-5.13.10.ebuild => zen-sources-5.14.6.ebuild}| 0
 2 files changed, 4 insertions(+), 1 deletion(-)

diff --git a/sys-kernel/zen-sources/Manifest b/sys-kernel/zen-sources/Manifest
index 0ed1239946a..65f4d350abd 100644
--- a/sys-kernel/zen-sources/Manifest
+++ b/sys-kernel/zen-sources/Manifest
@@ -1,5 +1,8 @@
 DIST genpatches-5.13-1.base.tar.xz 3840 BLAKE2B 
5843b75d53225fb5f3ad278a69884c70d3eda165faeec7895dac661d035324c69fb32ec4ca729a025bc8e73b81a17f085f60294b621a646dcdf8bb389fc37e41
 SHA512 
62f49080e44895da1ecf0dd4d88dbcf3fc1f6b227c09aebf7b4acd407655e0a7627cfaf870b26ec5ab508ab2e9ce36e86ca92bceb19566c8e4a2c509a7c459af
 DIST genpatches-5.13-1.extras.tar.xz 3412 BLAKE2B 
a93dc7964a3b26817e6a561b314e93958d887a08a519a8a8b1bf2e4bb78790ed03a217a54cb6d9b2af6f7a2f4e78f8a0fbebe2aac0c34c1c9b0ed884db37
 SHA512 
f4470e1f4d72ef0d54b6b0bd6c427f722ffac8de9e8b0a29b69e032ce71d9c18ae447fa855bf4e9e45cd2084f0b7837d0514aebfd18f6a04a7a88a191e966435
+DIST genpatches-5.14-1.base.tar.xz 3920 BLAKE2B 
2311aecf34c5c7854822b75517933c4572f67ae1d139d3f67ed7c9d15afecbfa34f1ade1ca53ab89deaf12bb852eb3162ff653236c777b5b5a5cc85110c1652f
 SHA512 
cad0a1e132185feb2635bd953a2517959490d326e945cf2c80e31ef320e4dd38c2455c1c0a999181b258672e103dbbef808ad1f59df2ffb2b9005c25f9dd29b6
+DIST genpatches-5.14-1.extras.tar.xz 3852 BLAKE2B 
87ebdc80e85c112fa8e7cc16d8ab3738f08faf558aa691f5429845910fd7cedba1d49976d6ba4652d328ea74aa7da9618a8bf6532ab2947477e27d5c1a6a6b33
 SHA512 
2d72f170d444ce1098f1f8e7522de8c34ce7d89997fce4590d553ca2be90663c9abaf0e353d99bd704a53e9edc82c69309458c458e1b07cf83805c69ec8918ad
 DIST linux-5.13.tar.xz 119297284 BLAKE2B 
9c4c12e2394dec064adff51f7ccdf389192eb27ba7906db5eda543afe3d04afca6b9ea0848a057571bf2534eeb98e1e3a67734deff82c0d3731be205ad995668
 SHA512 
a8edf97e9d38a49f1be2bde1e29ad96274bb2c6f7e8a2bebaa1161dd4df9cabcbaec4ff644c45bee94f86ae47725087d6deed0cd954209cec717621d137db85e
-DIST v5.13.10-zen1.patch.xz 881200 BLAKE2B 
f30aca841555010095ee02b33d875dc54ab3650d916606bd1467c5dbbc571e08f34a0aa913e52771140b3760ec4cb504d3440ad92b8be5b7a7e88ebb65dafe8b
 SHA512 
be0154cfb833a829c7d35f1bc6ed12d8a0ea324824bf8653045a2965597cba4202e911f3914f7200290dd7f254ef068ba15ce975edc0357ad2c3988a8e65faf5
+DIST linux-5.14.tar.xz 120669872 BLAKE2B 
0047f5aaa3940dff97f4055ef544faafbbb5282128e6afe21d2f47d8dc8c395806a17016febfa050117d16f59e74b882cb8b9c5011d68f119c230d0a4d120524
 SHA512 
8e4f3ec3d36f774280f75dc7b004a43e09417af58f12e9c9f8348976659d4cfda7ad905f306f43fed66a27922e5c45db22e46bbfa7a0b9f365012380de3b6f64
 DIST v5.13.13-zen1.patch.xz 959708 BLAKE2B 
41d26a1c258b39f509400058d530002e46d69b15de6d9422c315c8d4da6f0fc2469c11e81d76c110ccf4735a20ca5ca23e1836800131d5eac84a0670f374
 SHA512 
738d88ef395b45319ca04000f0fdafcf2d1efd409fbbe33902925cd8246acd14f9ca0472fb127222e5d9574693ad0a2b15d6b41ab0f6a2ede5e607158850
+DIST v5.14.6-zen1.patch.xz 458684 BLAKE2B 
4cc7129c65b3fe1ff743d4b4be4a39683d0ea1e7b76bcf64015aef805da47a19e62dc07e4eac7e764b983375839b4c9fd92bae0a617e6087436a5361ec65e246
 SHA512 
eac9cc421a8c0ea1808d52e5170febb63bdbe08591f57886d73f00f8ba910ecac217b504d552c4cd0c039f8bcadf64141cc29542e9027e075ba64c5cc5cb3cb3

diff --git a/sys-kernel/zen-sources/zen-sources-5.13.10.ebuild 
b/sys-kernel/zen-sources/zen-sources-5.14.6.ebuild
similarity index 100%
rename from sys-kernel/zen-sources/zen-sources-5.13.10.ebuild
rename to sys-kernel/zen-sources/zen-sources-5.14.6.ebuild



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

2021-09-19 Thread Sam James
commit: 607a329f819cc9ac4a81fc2bf12e220043412d17
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 02:37:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 02:37:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=607a329f

media-video/pipewire: restore keywords

I was perhaps a bit too conservative given
the libfreeaptx/libopenaptx codebases are
almost identical.

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

 media-video/pipewire/pipewire-0.3.36.ebuild | 2 +-
 media-video/pipewire/pipewire-.ebuild   | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/pipewire/pipewire-0.3.36.ebuild 
b/media-video/pipewire/pipewire-0.3.36.ebuild
index 4ee9a00e2b6..b1db40cb817 100644
--- a/media-video/pipewire/pipewire-0.3.36.ebuild
+++ b/media-video/pipewire/pipewire-0.3.36.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else

SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~riscv"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 DESCRIPTION="Multimedia processing graphs"

diff --git a/media-video/pipewire/pipewire-.ebuild 
b/media-video/pipewire/pipewire-.ebuild
index cb74826ef0c..d20512a9507 100644
--- a/media-video/pipewire/pipewire-.ebuild
+++ b/media-video/pipewire/pipewire-.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else

SRC_URI="https://gitlab.freedesktop.org/${PN}/${PN}/-/archive/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~riscv"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 DESCRIPTION="Multimedia processing graphs"



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

2021-09-19 Thread Sam James
commit: 22477bc0642af3bdb07957201a221fada7728293
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 02:35:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 02:35:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=22477bc0

media-video/pipewire: tweak postinst messages

Acked-by: Mart Raudsepp  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 media-video/pipewire/pipewire-0.3.36.ebuild | 25 ++---
 media-video/pipewire/pipewire-.ebuild   | 25 ++---
 2 files changed, 28 insertions(+), 22 deletions(-)

diff --git a/media-video/pipewire/pipewire-0.3.36.ebuild 
b/media-video/pipewire/pipewire-0.3.36.ebuild
index 255220766c0..4ee9a00e2b6 100644
--- a/media-video/pipewire/pipewire-0.3.36.ebuild
+++ b/media-video/pipewire/pipewire-0.3.36.ebuild
@@ -230,25 +230,27 @@ pkg_postinst() {
fi
 
if use systemd; then
-   elog "To use PipeWire for audio, the user units must be 
manually enabled:"
+   elog "To use PipeWire for audio, the user units must be 
manually enabled"
+   elog "by running this command as each user you use for desktop 
activities:"
elog
-   elog "  systemctl --user enable pipewire.socket 
pipewire-pulse.socket"
+   elog "  systemctl --user enable --now pipewire.socket 
pipewire-pulse.socket"
elog
-   elog "When switching from PulseAudio, do not forget to disable 
PulseAudio:"
+   elog "When switching from PulseAudio, do not forget to disable 
PulseAudio likewise:"
elog
-   elog "  systemctl --user disable pulseaudio.service 
pulseaudio.socket"
+   elog "  systemctl --user disable --now pulseaudio.service 
pulseaudio.socket"
elog
elog "A reboot is recommended to avoid interferences from still 
running"
elog "PulseAudio daemon."
elog
-   elog "Both, new users and those upgrading, need to enable 
pipewire-media-session:"
+   elog "Both, new users and those upgrading, need to enable 
pipewire-media-session"
+   elog "for relevant users:"
elog
-   elog "  systemctl --user enable pipewire-media-session.service"
+   elog "  systemctl --user enable --now 
pipewire-media-session.service"
elog
else
elog "This ebuild auto-enables PulseAudio replacement. Because 
of that, users"
-   elog "are recommended to edit: ${EROOT}/etc/pulse/client.conf 
and disable "
-   elog "autospawn'ing of the original daemon by setting:"
+   elog "are recommended to edit: ${EROOT}/etc/pulse/client.conf 
and disable"
+   elog "autospawning of the original daemon by setting:"
elog
elog "  autospawn = no"
elog
@@ -261,10 +263,10 @@ pkg_postinst() {
elog "#\"/usr/bin/pipewire\" = { args = \"-c 
pipewire-pulse.conf\" }"
elog
elog "NOTE:"
-   elog "Starting with PipeWire-0.3.30, package is no longer 
installing config"
+   elog "Starting with PipeWire-0.3.30, this package is no longer 
installing its config"
elog "into ${EROOT}/etc/pipewire by default. In case you need 
to change"
-   elog "config, please start by copying default config from 
${EROOT}/usr/share/pipewire"
-   elog "and just override sections you want to change."
+   elog "its config, please start by copying default config from 
${EROOT}/usr/share/pipewire"
+   elog "and just override the sections you want to change."
fi
 
elog "For latest tips and tricks, troubleshooting information and 
documentation"
@@ -273,6 +275,7 @@ pkg_postinst() {
 
optfeature_header "The following can be installed for optional runtime 
features:"
optfeature "restricted realtime capabilities via D-Bus" sys-auth/rtkit
+
# Once hsphfpd lands in tree, both it and ofono will need to be checked 
for presence here!
if use bluetooth; then
optfeature "better BT headset support (daemon startup 
required)" net-misc/ofono

diff --git a/media-video/pipewire/pipewire-.ebuild 
b/media-video/pipewire/pipewire-.ebuild
index 0fa096afe77..cb74826ef0c 100644
--- a/media-video/pipewire/pipewire-.ebuild
+++ b/media-video/pipewire/pipewire-.ebuild
@@ -227,25 +227,27 @@ pkg_postinst() {
fi
 
if use systemd; then
-   elog "To use PipeWire for audio, the user units must be 
manually enabled:"
+   elog "To use PipeWire for audio, the user units must be 
manually enabled"
+   elog "by running this command as each user you use for desktop 
activities:"
elog
-   elog "  systemctl --user 

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

2021-09-19 Thread Sam James
commit: 4ceef02360f49a8bad06d35351088403d9aea40d
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 02:15:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 02:15:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4ceef023

sys-apps/moreutils: add 0.66

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

 sys-apps/moreutils/Manifest  |  1 +
 sys-apps/moreutils/moreutils-0.66.ebuild | 73 
 2 files changed, 74 insertions(+)

diff --git a/sys-apps/moreutils/Manifest b/sys-apps/moreutils/Manifest
index 3a4d6185ba9..74618f04f56 100644
--- a/sys-apps/moreutils/Manifest
+++ b/sys-apps/moreutils/Manifest
@@ -1 +1,2 @@
 DIST moreutils-0.65.tar.gz 93180 BLAKE2B 
2105cc281b9f4c9598bb0cdd5a4b9b8042e77eb14de323ba889c182c956b00d7b8a899c4112542e0a3d513fd961ee0ed6c82dd2dbefffe50e1d4fd326919ef4f
 SHA512 
dcad2a3b6d9621da6d2f860f39acb04c80d42cc2123e12a6ec84524f6a1fc7f5ae4bd5d00e698fe14d4c5e7d491d790970ce4370c9abd1f63318d1c512f596b9
+DIST moreutils-0.66.tar.gz 93387 BLAKE2B 
783ed558f0f77c2b384a1aa8852243242ce24e44e40b58f92e2179308df9cc3a27142820a7743c25ba4529a4b7ea7ae20c1fc02b86324638a7d13ad7536c6b21
 SHA512 
6c5f8b677d9912cf4e7aabf442361c89d23767f2a5df0a2c29ab72314e1ed3767a0a7a7abaa5044cf73ef877184d16e1d58e340780971e9e1299857756aca6a3

diff --git a/sys-apps/moreutils/moreutils-0.66.ebuild 
b/sys-apps/moreutils/moreutils-0.66.ebuild
new file mode 100644
index 000..2a560831194
--- /dev/null
+++ b/sys-apps/moreutils/moreutils-0.66.ebuild
@@ -0,0 +1,73 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit toolchain-funcs
+
+DESCRIPTION="A collection of tools that nobody thought to write when Unix was 
young"
+HOMEPAGE="https://joeyh.name/code/moreutils/ 
https://git.joeyh.name/index.cgi/moreutils.git/;
+# Not available at time of release
+#SRC_URI="mirror://debian/pool/main/${PN:0:1}/${PN}/${PN}_${PV}.orig.tar.xz"
+SRC_URI="https://git.joeyh.name/index.cgi/moreutils.git/snapshot/${P}.tar.gz;
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~x86 ~x86-linux 
~x64-macos"
+IUSE="+doc +perl"
+
+RDEPEND="
+   app-admin/eselect
+   perl? (
+   dev-lang/perl
+   dev-perl/IPC-Run
+   dev-perl/Time-Duration
+   dev-perl/TimeDate
+   )
+"
+DEPEND="
+   doc? (
+   >=app-text/docbook2X-0.8.8-r2
+   app-text/docbook-xml-dtd:4.4
+   dev-lang/perl
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.64-respect-env.patch"
+)
+
+src_prepare() {
+   # don't build manpages
+   if ! use doc ; then
+   sed -i -e '/^all:/s/$(MANS)//' -e '/man1/d' Makefile || die
+   fi
+
+   # don't install perl scripts
+   if ! use perl ; then
+   sed -i -e '/PERLSCRIPTS/d' Makefile || die
+   fi
+
+   default
+}
+
+src_compile() {
+   tc-export CC
+   emake CFLAGS="${CFLAGS}" 
DOCBOOKXSL="${EPREFIX}"/usr/share/sgml/docbook/xsl-stylesheets 
PREFIX="${EPREFIX}/usr"
+}
+
+src_install() {
+   emake DESTDIR="${D}" PREFIX="${EPREFIX}/usr" INSTALL_BIN=install install
+
+   # sys-process is more advanced than parallel from moreutils, rename it
+   if use doc; then
+   mv "${ED}"/usr/share/man/man1/{,${PN}_}parallel.1 || die
+   fi
+
+   mv "${ED}"/usr/bin/{,${PN}_}parallel || die
+}
+
+pkg_postinst() {
+   # Try to make sure $EDITOR is valid for vipe (bug #604630)
+   eselect editor update
+}



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

2021-09-19 Thread Sam James
commit: 6429b5e7384691babcf1316c48db9615b1167ff0
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 02:38:49 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 02:39:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6429b5e7

media-libs/libfreeaptx: copy media-libs/libopenaptx keywords

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

 media-libs/libfreeaptx/libfreeaptx-0.1.1.ebuild | 2 +-
 media-libs/libfreeaptx/libfreeaptx-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/libfreeaptx/libfreeaptx-0.1.1.ebuild 
b/media-libs/libfreeaptx/libfreeaptx-0.1.1.ebuild
index 1672154abe8..db0223a7362 100644
--- a/media-libs/libfreeaptx/libfreeaptx-0.1.1.ebuild
+++ b/media-libs/libfreeaptx/libfreeaptx-0.1.1.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/iamthehorker/${PN};
 else
SRC_URI="https://github.com/iamthehorker/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~riscv"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1+"

diff --git a/media-libs/libfreeaptx/libfreeaptx-.ebuild 
b/media-libs/libfreeaptx/libfreeaptx-.ebuild
index f849a9cc545..d8ca8e91d1b 100644
--- a/media-libs/libfreeaptx/libfreeaptx-.ebuild
+++ b/media-libs/libfreeaptx/libfreeaptx-.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == "" ]] ; then
EGIT_REPO_URI="https://github.com/iamthehorker/${PN};
 else
SRC_URI="https://github.com/iamthehorker/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~riscv ~x86"
 fi
 
 LICENSE="LGPL-2.1+"



[gentoo-commits] repo/proj/guru:dev commit in: media-libs/portsmf/

2021-09-19 Thread Ryan Fox
commit: 1e578c6558bd6f2e98e2d9f7cb4e1a12318aa2e4
Author: Ryan Fox  2a03  party>
AuthorDate: Sun Sep 19 22:11:20 2021 +
Commit: Ryan Fox  2a03  party>
CommitDate: Mon Sep 20 01:48:26 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=1e578c65

media-libs/portsmf: New package

Dependency for media-sound/tenacity.

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ryan Fox  2a03.party>

 media-libs/portsmf/Manifest|  1 +
 media-libs/portsmf/metadata.xml| 11 +++
 media-libs/portsmf/portsmf-239.ebuild  | 23 +++
 media-libs/portsmf/portsmf-.ebuild | 23 +++
 4 files changed, 58 insertions(+)

diff --git a/media-libs/portsmf/Manifest b/media-libs/portsmf/Manifest
new file mode 100644
index 0..8d3f29c1c
--- /dev/null
+++ b/media-libs/portsmf/Manifest
@@ -0,0 +1 @@
+DIST portsmf-239.tar.gz 82769 BLAKE2B 
7596c3c66c15a5daa51c4962f785375568c35093a293bba48ec2742c6409c72ba3ff2f10c2b0a38969a0c14510ef06b94c6ed52429d5c55f05635637b5acbb37
 SHA512 
5908ef79043b44f90da8286d639a0693334f160454d206f4a212fe958a7a2e19cbc18e4240e191c1678690f34976c5e0d34dcb030d7bab007ee528fbb5e19486

diff --git a/media-libs/portsmf/metadata.xml b/media-libs/portsmf/metadata.xml
new file mode 100644
index 0..807b7136a
--- /dev/null
+++ b/media-libs/portsmf/metadata.xml
@@ -0,0 +1,11 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   flewkey@2a03.party
+   Ryan Fox
+   
+   
+   tenacityteam/portsmf
+   
+

diff --git a/media-libs/portsmf/portsmf-239.ebuild 
b/media-libs/portsmf/portsmf-239.ebuild
new file mode 100644
index 0..3bec77ff8
--- /dev/null
+++ b/media-libs/portsmf/portsmf-239.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+if [[ ${PV} != ** ]]; then
+   SRC_URI="https://github.com/tenacityteam/portsmf/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64"
+else
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/tenacityteam/portsmf.git;
+fi
+
+DESCRIPTION="C++ library for Standard Midi Files (SMF)"
+HOMEPAGE="https://github.com/tenacityteam/portsmf;
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""

diff --git a/media-libs/portsmf/portsmf-.ebuild 
b/media-libs/portsmf/portsmf-.ebuild
new file mode 100644
index 0..3bec77ff8
--- /dev/null
+++ b/media-libs/portsmf/portsmf-.ebuild
@@ -0,0 +1,23 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit cmake
+
+if [[ ${PV} != ** ]]; then
+   SRC_URI="https://github.com/tenacityteam/portsmf/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
+   KEYWORDS="~amd64"
+else
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/tenacityteam/portsmf.git;
+fi
+
+DESCRIPTION="C++ library for Standard Midi Files (SMF)"
+HOMEPAGE="https://github.com/tenacityteam/portsmf;
+LICENSE="MIT"
+SLOT="0"
+
+DEPEND=""
+RDEPEND="${DEPEND}"
+BDEPEND=""



[gentoo-commits] repo/proj/guru:dev commit in: media-sound/tenacity/

2021-09-19 Thread Ryan Fox
commit: 8bd110a3b6bad270a0b6af49e712e090e8931398
Author: Ryan Fox  2a03  party>
AuthorDate: Mon Sep 20 01:38:30 2021 +
Commit: Ryan Fox  2a03  party>
CommitDate: Mon Sep 20 01:48:26 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=8bd110a3

media-sound/tenacity: New package

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Ryan Fox  2a03.party>

 media-sound/tenacity/metadata.xml | 22 
 media-sound/tenacity/tenacity-.ebuild | 85 +++
 2 files changed, 107 insertions(+)

diff --git a/media-sound/tenacity/metadata.xml 
b/media-sound/tenacity/metadata.xml
new file mode 100644
index 0..f14033f0a
--- /dev/null
+++ b/media-sound/tenacity/metadata.xml
@@ -0,0 +1,22 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+   
+   flewkey@2a03.party
+   Ryan Fox
+   
+   
+   Enables MIDI support
+   Enables ID3 tagging with id3tag 
library
+   Enables MP3 decoding support
+   Enables MP2 encoding support
+   Enables SBSMS timestretching support
+   Enables SoundTouch timestretching 
support
+   Enables VAMP plugin support
+   Enables LV2 plugin support
+   Enables VST2 plugin support
+   
+   
+   tenacityteam/tenacity
+   
+

diff --git a/media-sound/tenacity/tenacity-.ebuild 
b/media-sound/tenacity/tenacity-.ebuild
new file mode 100644
index 0..a4f7bfa2f
--- /dev/null
+++ b/media-sound/tenacity/tenacity-.ebuild
@@ -0,0 +1,85 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+WX_GTK_VER="3.0-gtk3"
+
+inherit git-r3 cmake wxwidgets xdg
+
+EGIT_REPO_URI="https://github.com/tenacityteam/tenacity.git;
+
+DESCRIPTION="Audio editor for Linux"
+HOMEPAGE="https://tenacityaudio.org/;
+LICENSE="GPL-2"
+SLOT="0"
+IUSE="midi id3tag +mp3 mp2 +ogg +vorbis +flac sbsms soundtouch ffmpeg vamp 
+lv2 vst2"
+
+DEPEND="
+   dev-db/sqlite
+   dev-libs/serd
+   dev-libs/sord
+   x11-libs/wxGTK:${WX_GTK_VER}
+   media-libs/libsndfile
+   media-libs/portaudio
+   media-libs/soxr
+   media-sound/lame
+   sys-libs/zlib
+   ffmpeg? ( media-video/ffmpeg )
+   flac? ( media-libs/flac )
+   id3tag? ( media-libs/libid3tag )
+   lv2? (
+   media-libs/lv2
+   media-libs/lilv
+   media-libs/suil
+   )
+   midi? (
+   media-libs/portmidi
+   media-libs/portsmf
+   )
+   mp2? ( media-sound/twolame )
+   mp3? ( media-libs/libmad )
+   ogg? ( media-libs/libogg )
+   sbsms? ( media-libs/libsbsms )
+   soundtouch? ( media-libs/libsoundtouch )
+   vamp? ( media-libs/vamp-plugin-sdk )
+   vorbis? ( media-libs/libvorbis )
+   vst2? ( x11-libs/gtk+[X] )
+"
+RDEPEND="${DEPEND}"
+BDEPEND=""
+
+src_prepare() {
+   sed -i 's/set( CMAKE_BUILD_WITH_INSTALL_RPATH FALSE )/set( 
CMAKE_BUILD_WITH_INSTALL_RPATH TRUE )/' "${S}/CMakeLists.txt" || die
+   cmake_src_prepare
+}
+
+src_configure() {
+   setup-wxwidgets
+   local mycmakeargs=(
+   "-DVCPKG=OFF"
+   "-DMIDI=$(usex midi ON OFF)"
+   "-DID3TAG=$(usex id3tag ON OFF)"
+   "-DMP3_DECODING=$(usex mp3 ON OFF)"
+   "-DMP2_ENCODING=$(usex mp2 ON OFF)"
+   "-DOGG=$(usex ogg ON OFF)"
+   "-DVORBIS=$(usex vorbis ON OFF)"
+   "-DFLAC=$(usex flac ON OFF)"
+   "-DSBSMS=$(usex sbsms ON OFF)"
+   "-DSOUNDTOUCH=$(usex soundtouch ON OFF)"
+   "-DFFMPEG=$(usex ffmpeg ON OFF)"
+   "-DVAMP=$(usex vamp ON OFF)"
+   "-DLV2=$(usex lv2 ON OFF)"
+   "-DVST2=$(usex vst2 ON OFF)"
+   )
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+   # TODO: Improve installation upstream
+   rm "${ED}/usr/tenacity" || die
+   mv "${ED}/usr/share/doc/${PN}" "${ED}/usr/share/doc/${PF}" || die
+   into "/usr/$(get_libdir)/${PN}"
+   dolib.so "${BUILD_DIR}/lib-src/libnyquist/liblibnyquist.so"
+}



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

2021-09-19 Thread Sam James
commit: 81c8b7aa8ce7aaeef28c7c84a0aacb9e46b69996
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 19 09:41:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:50:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=81c8b7aa

dev-lang/python: stable 3.7.11_p1 for hppa, bug #811222

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-3.7.11_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.7.11_p1.ebuild 
b/dev-lang/python/python-3.7.11_p1.ebuild
index 418b6a1875b..84d00b68ff8 100644
--- a/dev-lang/python/python-3.7.11_p1.ebuild
+++ b/dev-lang/python/python-3.7.11_p1.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-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="bluetooth build examples gdbm hardened +ncurses +readline +sqlite +ssl 
test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-09-19 Thread Sam James
commit: d10e779c0b5e4de75ec9d7f4e977a6f49e8de3b3
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 19 09:41:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:50:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d10e779c

dev-lang/python: stable 3.8.12 for hppa, bug #811219

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

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

diff --git a/dev-lang/python/python-3.8.12.ebuild 
b/dev-lang/python/python-3.8.12.ebuild
index ed092f85be9..b6e8bbaeae4 100644
--- a/dev-lang/python/python-3.8.12.ebuild
+++ b/dev-lang/python/python-3.8.12.ebuild
@@ -23,7 +23,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}"
-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="bluetooth build examples gdbm hardened +ncurses +readline +sqlite +ssl 
test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-09-19 Thread Sam James
commit: 7480becff2a182715d8534e3899c728c2c405d7b
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Sun Sep 19 09:42:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:50:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7480becf

dev-lang/python: stable 3.6.14_p1 for hppa, bug #811225

Package-Manager: Portage-3.0.20, Repoman-3.0.3
RepoMan-Options: --include-arches="hppa"
Signed-off-by: Rolf Eike Beer  sf-mail.de>
Signed-off-by: Sam James  gentoo.org>

 dev-lang/python/python-3.6.14_p1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-lang/python/python-3.6.14_p1.ebuild 
b/dev-lang/python/python-3.6.14_p1.ebuild
index 6a33e827019..6f6ec7f4e53 100644
--- a/dev-lang/python/python-3.6.14_p1.ebuild
+++ b/dev-lang/python/python-3.6.14_p1.ebuild
@@ -22,7 +22,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="PSF-2"
 SLOT="${PYVER}/${PYVER}m"
-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="bluetooth build examples gdbm hardened +ncurses +readline +sqlite +ssl 
test tk wininst +xml"
 RESTRICT="!test? ( test )"
 



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

2021-09-19 Thread Matthew Thode
commit: 1f82303abaa815de24c260813d0e0628292e23d6
Author: Matthew Thode  gentoo  org>
AuthorDate: Mon Sep 20 00:41:58 2021 +
Commit: Matthew Thode  gentoo  org>
CommitDate: Mon Sep 20 00:42:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1f82303a

gui-libs/wlroots: fix dep on wayland-protocols

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

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

diff --git a/gui-libs/wlroots/wlroots-.ebuild 
b/gui-libs/wlroots/wlroots-.ebuild
index 02a319816c5..fb102820e42 100644
--- a/gui-libs/wlroots/wlroots-.ebuild
+++ b/gui-libs/wlroots/wlroots-.ebuild
@@ -24,7 +24,7 @@ IUSE="x11-backend X"
 DEPEND="
>=dev-libs/libinput-1.14.0:0=
>=dev-libs/wayland-1.19.0
-   >=dev-libs/wayland-protocols-1.22.0
+   >=dev-libs/wayland-protocols-1.22
media-libs/mesa[egl,gles2,gbm]
sys-auth/seatd:=
virtual/libudev



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

2021-09-19 Thread Sam James
commit: 7896dac390ff69ad3aa7a80b6f87227321c0a81f
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7896dac3

sys-block/buffer: Stabilize 1.19-r4 arm, #813693

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

 sys-block/buffer/buffer-1.19-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/buffer/buffer-1.19-r4.ebuild 
b/sys-block/buffer/buffer-1.19-r4.ebuild
index 79b369312ef..dcc5c14f961 100644
--- a/sys-block/buffer/buffer-1.19-r4.ebuild
+++ b/sys-block/buffer/buffer-1.19-r4.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc sparc x86"
+KEYWORDS="amd64 arm ~ppc sparc x86"
 
 src_prepare() {
local f



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

2021-09-19 Thread Sam James
commit: dedbac4855ffa8063a761d633b7de892ccd6d543
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dedbac48

sys-devel/automake: Stabilize 1.16.4 arm, #813696

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

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

diff --git a/sys-devel/automake/automake-1.16.4.ebuild 
b/sys-devel/automake/automake-1.16.4.ebuild
index c30bb529871..0893d8ef3a1 100644
--- a/sys-devel/automake/automake-1.16.4.ebuild
+++ b/sys-devel/automake/automake-1.16.4.ebuild
@@ -11,7 +11,7 @@ if [[ ${PV} ==  ]] ; then
 
inherit git-r3
 else
-   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"
if [[ ${PV/_beta} == ${PV} ]]; then
MY_P="${P}"
SRC_URI="mirror://gnu/${PN}/${P}.tar.xz



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

2021-09-19 Thread Sam James
commit: 5b6de33d54d2a67c22ef1b68b61d2d134b5e4804
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b6de33d

app-text/po4a: Stabilize 0.63-r1 arm, #813648

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

 app-text/po4a/po4a-0.63-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/po4a/po4a-0.63-r1.ebuild 
b/app-text/po4a/po4a-0.63-r1.ebuild
index 10f1044b824..ebc4d3ca064 100644
--- a/app-text/po4a/po4a-0.63-r1.ebuild
+++ b/app-text/po4a/po4a-0.63-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mquinson/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-09-19 Thread Sam James
commit: f30052e88de843a664662682fd26ead9d84e81ff
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f30052e8

sys-apps/rng-tools: Stabilize 6.14-r1 arm, #813663

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

 sys-apps/rng-tools/rng-tools-6.14-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/rng-tools/rng-tools-6.14-r1.ebuild 
b/sys-apps/rng-tools/rng-tools-6.14-r1.ebuild
index 616c0152a4b..0a660c3a4be 100644
--- a/sys-apps/rng-tools/rng-tools-6.14-r1.ebuild
+++ b/sys-apps/rng-tools/rng-tools-6.14-r1.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/nhorman/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ppc64 ~riscv x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~ia64 ~mips ~ppc ppc64 ~riscv x86"
 IUSE="jitterentropy nistbeacon pkcs11 rtlsdr selinux"
 
 DEPEND="



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

2021-09-19 Thread Sam James
commit: 5de117aa3cda4f8f85cd16b8fabd09004ecb40db
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5de117aa

sys-apps/usbutils: Stabilize 014 arm, #813690

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

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

diff --git a/sys-apps/usbutils/usbutils-014.ebuild 
b/sys-apps/usbutils/usbutils-014.ebuild
index 4eaf8ceb2ec..2bba3c4defc 100644
--- a/sys-apps/usbutils/usbutils-014.ebuild
+++ b/sys-apps/usbutils/usbutils-014.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/utils/usb/${PN}/${P}.tar.xz;
 
 LICENSE="GPL-2"
 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="python"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2021-09-19 Thread Sam James
commit: 7b88b63881a6b57138db1f5c98d7c034d2c6a75c
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b88b638

net-misc/iputils: Stabilize 20210722 arm, #813681

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

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

diff --git a/net-misc/iputils/iputils-20210722.ebuild 
b/net-misc/iputils/iputils-20210722.ebuild
index ec969a5e9c9..bf57bb009a0 100644
--- a/net-misc/iputils/iputils-20210722.ebuild
+++ b/net-misc/iputils/iputils-20210722.ebuild
@@ -20,7 +20,7 @@ if [[ ${PV} == "" ]] ; then
 else
SRC_URI="https://github.com/iputils/iputils/archive/${PV}.tar.gz -> 
${P}.tar.gz

https://dev.gentoo.org/~whissi/dist/iputils/${PN}-manpages-${PV}.tar.xz;
-   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"
 fi
 
 DESCRIPTION="Network monitoring tools including ping and ping6"



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

2021-09-19 Thread Sam James
commit: 6010d94582bcd457a66f6aec3ce93947ca311b82
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6010d945

sys-apps/shadow: Stabilize 4.9-r2 arm, #813687

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

 sys-apps/shadow/shadow-4.9-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/shadow/shadow-4.9-r2.ebuild 
b/sys-apps/shadow/shadow-4.9-r2.ebuild
index 0d6eb6dc7c5..3528a192e6d 100644
--- a/sys-apps/shadow/shadow-4.9-r2.ebuild
+++ b/sys-apps/shadow/shadow-4.9-r2.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/shadow-maint/shadow/releases/download/v${PV}/${P}.ta
 
 LICENSE="BSD GPL-2"
 SLOT="0"
-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="acl audit bcrypt cracklib nls pam selinux skey split-usr +su xattr"
 # Taken from the man/Makefile.am file.
 LANGS=( cs da de es fi fr hu id it ja ko pl pt_BR ru sv tr zh_CN zh_TW )



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

2021-09-19 Thread Sam James
commit: aa67834d5439c25dfe3149c29a7c5d4b4bb448b1
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa67834d

dev-libs/libfido2: Stabilize 1.8.0 arm, #813666

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

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

diff --git a/dev-libs/libfido2/libfido2-1.8.0.ebuild 
b/dev-libs/libfido2/libfido2-1.8.0.ebuild
index 188dc92c26a..9ce1f06bdcd 100644
--- a/dev-libs/libfido2/libfido2-1.8.0.ebuild
+++ b/dev-libs/libfido2/libfido2-1.8.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/Yubico/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="BSD-2"
 SLOT="0/1"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
x86"
 IUSE="nfc static-libs"
 
 DEPEND="



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

2021-09-19 Thread Sam James
commit: 24ddf76ef27696c1849bf93acee9b39332698570
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=24ddf76e

dev-util/byacc: Stabilize 20210808 arm, #813678

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

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

diff --git a/dev-util/byacc/byacc-20210808.ebuild 
b/dev-util/byacc/byacc-20210808.ebuild
index 3ff312c7312..b9bb5e8c003 100644
--- a/dev-util/byacc/byacc-20210808.ebuild
+++ b/dev-util/byacc/byacc-20210808.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://invisible-mirror.net/archives/byacc/${P}.tgz;
 
 LICENSE="public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc-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 ~sparc-solaris ~x64-solaris 
~x86-solaris"
 
 DOCS=( ACKNOWLEDGEMENTS AUTHORS CHANGES NEW_FEATURES NOTES README )
 



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

2021-09-19 Thread Sam James
commit: b6706b261c8a4212c40f6e6b371bc652bbe04ae1
Author: Sam James  gentoo  org>
AuthorDate: Mon Sep 20 00:26:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Sep 20 00:26:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6706b26

dev-libs/userspace-rcu: Stabilize 0.13.0 arm, #813675

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

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

diff --git a/dev-libs/userspace-rcu/userspace-rcu-0.13.0.ebuild 
b/dev-libs/userspace-rcu/userspace-rcu-0.13.0.ebuild
index b9582364233..0bea2c6b5f4 100644
--- a/dev-libs/userspace-rcu/userspace-rcu-0.13.0.ebuild
+++ b/dev-libs/userspace-rcu/userspace-rcu-0.13.0.ebuild
@@ -9,7 +9,7 @@ SRC_URI="https://lttng.org/files/urcu/${P}.tar.bz2;
 
 LICENSE="LGPL-2.1"
 SLOT="0/8" # subslot = soname version
-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="static-libs regression-test test"
 RESTRICT="!test? ( test )"
 



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

2021-09-19 Thread Sam James
commit: fe8437d0490377fc23c02c522517fdc1becceea3
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 23:45:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 23:45:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe8437d0

sys-kernel/gentoo-kernel-bin: add 5.14.6-r1 for arm64

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

 sys-kernel/gentoo-kernel-bin/Manifest  |   1 +
 .../gentoo-kernel-bin-5.14.6-r1.ebuild | 113 +
 2 files changed, 114 insertions(+)

diff --git a/sys-kernel/gentoo-kernel-bin/Manifest 
b/sys-kernel/gentoo-kernel-bin/Manifest
index 22acdb8cc20..4577466a64e 100644
--- a/sys-kernel/gentoo-kernel-bin/Manifest
+++ b/sys-kernel/gentoo-kernel-bin/Manifest
@@ -91,6 +91,7 @@ DIST gentoo-kernel-5.13.19-1.amd64.xpak 67338326 BLAKE2B 
d9e718a94bf9a341f5b5706
 DIST gentoo-kernel-5.13.19-1.arm64.xpak 62747957 BLAKE2B 
1981ddb4e35d2210e1c678856ac58e088cd100ecbd70d2b5c88ffe8eb25b56f3f0c90e45d12adb74c7a0fb881dfd36b1d46d6fdfb837dbdff1881ded066b906d
 SHA512 
d8c1e524a3e58def5352b3faae07c42074a2d67015cc62b9601e20bb9b7f29d44d2843e7771e0399e9150be1de2be2b28776f96f7fe75ba7ec4e8f2c31e1f715
 DIST gentoo-kernel-5.13.19-1.x86.xpak 58517020 BLAKE2B 
1dcd347af7693696f93f7a28326aff4c7936c4b71238500b6dd2a4b7cd2b88891436c7c8b7c6a56f638182b722ba5e75f52a1befc74eef4bfe9e6f6fd7d8ef8e
 SHA512 
7bf1cf45d06cf4c6331d8d0c0378d253f6760dbd2f564cac6f7e53d30748ea01ea2d96a6c409a0d653ed74366d319e28ae1e2924b07f4ce7899c5bae121a3630
 DIST gentoo-kernel-5.14.6-1.amd64.xpak 68042594 BLAKE2B 
e65f4a2fc48c0d5989e6b5eebfb6d26d97ca0772fa40cdae0591d264544fcc7ef8575a230bc4a74277dc3136cbb5ad9f95fbf7c1dbaeb2615022c43fc505
 SHA512 
36cb5b165c29e1dff1cc6ec062f99a5e566050dfe83d696384d43f93767bb1a8b2914d92f2a1bcf8dc5b61947bf2b2586ba05f37833f8666ec6849509aac8bbc
+DIST gentoo-kernel-5.14.6-1.arm64.xpak 63383231 BLAKE2B 
f3aaf70951c5d4e67d4488fe762db4750a6c212638625c5b10ef075711ceb32f0f43a3011ccc11c5e1d3937616d9ba285f21ac6d1dcef02071c6bff62d0286b4
 SHA512 
b5a0d0740f408c1db8ffdd5ff546457148e7472fa93f56814a51a2dab85a24753aae5c96b8d4e01abc812d1544a502efcffe0e8b5d93feca2fb5743ac9f098f7
 DIST gentoo-kernel-5.14.6-1.x86.xpak 59165165 BLAKE2B 
b376b096789549da8fb39bd6d0fd294e09d1c23b83dec963c14a1fc45ae81bd296d7de91721ff7722af12feb3547d2d8d415025d5c573a8ae35b7edee61f9937
 SHA512 
1c5ec62b7de43a8337496868781d44be96b846c159e7f14a382a442fbb2dd6cc49a95686302705d5d8e30eb92aea397dd18eb0da4c1183692bdc159c07502b72
 DIST gentoo-kernel-5.4.142-1.amd64.xpak 61382010 BLAKE2B 
5753309c6f0e98adf348b332ef8acad749f0501b5a0641f2436c7ca7a48c6e57d9f2b316f06d82b5e362cbdf91aa253ba69c7425b6eda0db46531e04929ac6de
 SHA512 
c8433c79fde6bc7b31ff2d93b24e5b327166dcf00157ef91057b006b071f6c7293940285c54f282d40a09957f91831dac9f622dd477be62ec8fea713b0a6b68e
 DIST gentoo-kernel-5.4.142-1.arm64.xpak 58037550 BLAKE2B 
f2f047abcfc83ed15154c617a10810c3d608106d47e8ddd7f5a70e8b3d5a77e6df34b56efeacbcd14fd479db3f7c5574026bdf4d2c6910dd8e9bb5940f4443c7
 SHA512 
8a9f109738071ae08ea7231964d1fda529aa5bb0810e96c19b3b82c1743868545eb254fc0604586c10645583012baaa0d2a2e930e460ba0697102b081d277521

diff --git a/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.14.6-r1.ebuild 
b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.14.6-r1.ebuild
new file mode 100644
index 000..c4534b7e4c4
--- /dev/null
+++ b/sys-kernel/gentoo-kernel-bin/gentoo-kernel-bin-5.14.6-r1.ebuild
@@ -0,0 +1,113 @@
+# Copyright 2020-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit kernel-install toolchain-funcs
+
+MY_P=linux-${PV%.*}
+GENPATCHES_P=genpatches-${PV%.*}-$(( ${PV##*.} + 1 ))
+BINPKG=${P/-bin/}-1
+
+DESCRIPTION="Pre-built Linux kernel with genpatches"
+HOMEPAGE="https://www.kernel.org/;
+SRC_URI+="
+   https://cdn.kernel.org/pub/linux/kernel/v$(ver_cut 1).x/${MY_P}.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.base.tar.xz
+   
https://dev.gentoo.org/~mpagano/dist/genpatches/${GENPATCHES_P}.extras.tar.xz
+   arm64? (
+   
https://dev.gentoo.org/~sam/binpkg/arm64/kernel/sys-kernel/gentoo-kernel/${BINPKG}.xpak
+   -> ${BINPKG}.arm64.xpak
+   )"
+S=${WORKDIR}
+
+LICENSE="GPL-2"
+KEYWORDS="~arm64"
+
+RDEPEND="
+   !sys-kernel/gentoo-kernel:${SLOT}"
+PDEPEND="
+   >=virtual/dist-kernel-${PV}"
+BDEPEND="
+   sys-devel/bc
+   sys-devel/flex
+   virtual/libelf
+   virtual/yacc"
+
+QA_PREBUILT='*'
+
+KV_LOCALVERSION='-gentoo-dist'
+KPV=${PV}${KV_LOCALVERSION}
+
+src_unpack() {
+   default
+   ebegin "Unpacking ${BINPKG}.${ARCH}.xpak"
+   tar -x < <(xz -c -d --single-stream "${DISTDIR}/${BINPKG}.${ARCH}.xpak")
+   eend ${?} || die "Unpacking ${BINPKG} failed"
+}
+
+src_prepare() {
+   local PATCHES=(
+   # meh, genpatches have no directory
+   "${WORKDIR}"/*.patch
+   )
+   cd "${MY_P}" || die
+   default
+}
+

[gentoo-commits] repo/proj/guru:dev commit in: app-text/komikku/

2021-09-19 Thread Maciej Barć
commit: 702cb157a335f8971ba6d7b80dba21e9e049c984
Author: Maciej Barć  riseup  net>
AuthorDate: Sun Sep 19 20:24:53 2021 +
Commit: Maciej Barć  riseup  net>
CommitDate: Sun Sep 19 20:26:48 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=702cb157

app-text/komikku: fix src_install

Reported by: Maria Keating maria  mariakeating.com
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Maciej Barć  riseup.net>

 app-text/komikku/komikku-0.28.1.ebuild   | 5 ++---
 app-text/komikku/{komikku-0.29.2.ebuild => komikku-0.29.2-r1.ebuild} | 2 +-
 app-text/komikku/{komikku-0.30.0.ebuild => komikku-0.30.0-r1.ebuild} | 4 ++--
 3 files changed, 5 insertions(+), 6 deletions(-)

diff --git a/app-text/komikku/komikku-0.28.1.ebuild 
b/app-text/komikku/komikku-0.28.1.ebuild
index d027499ca..254fc8cf5 100644
--- a/app-text/komikku/komikku-0.28.1.ebuild
+++ b/app-text/komikku/komikku-0.28.1.ebuild
@@ -52,9 +52,8 @@ src_install() {
meson_src_install
python_optimize
 
-   # Dirty hack (python_doscript doesn't work)
-   echo "#!/usr/bin/${EPYTHON}
-   $(cat ${D}/usr/bin/${PN})" > "${D}/usr/bin/${PN}"
+   sed -i "s|#!.*|#!/usr/bin/${EPYTHON}|" "${D}/usr/bin/${PN}"  ||
+   die "Failed to fix ${D}/usr/bin/${PN} interpreter"
 }
 
 pkg_preinst() {

diff --git a/app-text/komikku/komikku-0.29.2.ebuild 
b/app-text/komikku/komikku-0.29.2-r1.ebuild
similarity index 95%
rename from app-text/komikku/komikku-0.29.2.ebuild
rename to app-text/komikku/komikku-0.29.2-r1.ebuild
index ca0fd8483..ecb528cb7 100644
--- a/app-text/komikku/komikku-0.29.2.ebuild
+++ b/app-text/komikku/komikku-0.29.2-r1.ebuild
@@ -52,7 +52,7 @@ src_install() {
meson_src_install
python_optimize
 
-   sed -i "s/#!.*/#!${EPYTHON}/" "${D}/usr/bin/${PN}"  ||
+   sed -i "s|#!.*|#!/usr/bin/${EPYTHON}|" "${D}/usr/bin/${PN}"  ||
die "Failed to fix ${D}/usr/bin/${PN} interpreter"
 }
 

diff --git a/app-text/komikku/komikku-0.30.0.ebuild 
b/app-text/komikku/komikku-0.30.0-r1.ebuild
similarity index 95%
rename from app-text/komikku/komikku-0.30.0.ebuild
rename to app-text/komikku/komikku-0.30.0-r1.ebuild
index cdf9e0c10..776414599 100644
--- a/app-text/komikku/komikku-0.30.0.ebuild
+++ b/app-text/komikku/komikku-0.30.0-r1.ebuild
@@ -30,12 +30,12 @@ DEPEND="
dev-python/dateparser[${PYTHON_USEDEP}]
dev-python/keyring[${PYTHON_USEDEP}]
dev-python/lxml[${PYTHON_USEDEP}]
+   dev-python/natsort[${PYTHON_USEDEP}]
dev-python/pillow[${PYTHON_USEDEP}]
dev-python/pure-protobuf[${PYTHON_USEDEP}]
dev-python/pygobject[${PYTHON_USEDEP}]
dev-python/python-magic[${PYTHON_USEDEP}]
dev-python/unidecode[${PYTHON_USEDEP}]
-   dev-python/natsort[${PYTHON_USEDEP}]
')
 "
 RDEPEND="
@@ -53,7 +53,7 @@ src_install() {
meson_src_install
python_optimize
 
-   sed -i "s/#!.*/#!${EPYTHON}/" "${D}/usr/bin/${PN}"  ||
+   sed -i "s|#!.*|#!/usr/bin/${EPYTHON}|" "${D}/usr/bin/${PN}"  ||
die "Failed to fix ${D}/usr/bin/${PN} interpreter"
 }
 



[gentoo-commits] repo/proj/guru:dev commit in: net-im/discord-canary-bin/

2021-09-19 Thread Marcin Woźniak
commit: 2c446a7982be1dd4bb6a3eaea7599e69cdad169b
Author: Marcin Woźniak  aol  com>
AuthorDate: Sun Sep 19 18:33:38 2021 +
Commit: Marcin Woźniak  aol  com>
CommitDate: Sun Sep 19 18:33:38 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=2c446a79

net-im/discord-canary-bin: Version bump to 0.0.130

Signed-off-by: Marcin Woźniak  aol.com>

 net-im/discord-canary-bin/Manifest  | 2 +-
 ...cord-canary-bin-0.0.129.ebuild => discord-canary-bin-0.0.130.ebuild} | 0
 2 files changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-im/discord-canary-bin/Manifest 
b/net-im/discord-canary-bin/Manifest
index e9aa92bfb..7b698ee50 100644
--- a/net-im/discord-canary-bin/Manifest
+++ b/net-im/discord-canary-bin/Manifest
@@ -1 +1 @@
-DIST discord-canary-0.0.129.deb 77158544 BLAKE2B 
969b9a1c8d60a0ee8267d1baaa799547e5831aad62a6cc696a87daffeddb136a37d977e9dd38e227d9ec5f887c05d2d37892d937ca68015c533a5a53dd681a8f
 SHA512 
7710f35b30f7be3f110d63c708db92a549f72c2cf1528ac75c8b1fd7b189d391440c3d9d972c586cb9eaaf6f240442d4926a4508a08d7411a123e81b99e033da
+DIST discord-canary-0.0.130.deb 77159476 BLAKE2B 
8fcb4f1222bd1788f31106a5d29ba0f625174ee2f4a08d6a4c927d76afd4ad621c4ad1a8ffdd697bbe68b31a289c8b16c691a5e26dca251fc79eab32f1a8acc6
 SHA512 
7259902edc97183f57dc1ad3502fa98c6f4ad5c26200e57f49f18cda101481569253393db3a7bf122d6c8dd986b50f6696aaf17bd584c769607f3dedc5fba046

diff --git a/net-im/discord-canary-bin/discord-canary-bin-0.0.129.ebuild 
b/net-im/discord-canary-bin/discord-canary-bin-0.0.130.ebuild
similarity index 100%
rename from net-im/discord-canary-bin/discord-canary-bin-0.0.129.ebuild
rename to net-im/discord-canary-bin/discord-canary-bin-0.0.130.ebuild



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

2021-09-19 Thread Sam James
commit: 32238552a72d81154722097e469bf0a9e079faff
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:12:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:12:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=32238552

media-libs/sdl-net: Stabilize 1.2.8-r2 sparc, #813771

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

 media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild 
b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
index d75e6f718fa..68cd2d22b07 100644
--- a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
+++ b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
 
 RDEPEND="media-libs/libsdl[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"



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

2021-09-19 Thread Sam James
commit: cfb0c322ca9a843fe0e2a7beb4e0bf0969e99d44
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:12:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:12:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cfb0c322

dev-ruby/mocha: Stabilize 1.13.0 ppc64, #813798

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

 dev-ruby/mocha/mocha-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/mocha/mocha-1.13.0.ebuild 
b/dev-ruby/mocha/mocha-1.13.0.ebuild
index 53976fc8476..b5bb0f7bf1f 100644
--- a/dev-ruby/mocha/mocha-1.13.0.ebuild
+++ b/dev-ruby/mocha/mocha-1.13.0.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/freerange/mocha/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="1.0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ppc64 ~riscv ~sparc ~x86"
 IUSE=""
 
 ruby_add_bdepend "



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

2021-09-19 Thread Sam James
commit: cd7850ca4a3443f1f23beb4b629003fa1e0ec41d
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:12:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:12:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cd7850ca

media-libs/smpeg: Stabilize 0.4.4-r11 sparc, #813777

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

 media-libs/smpeg/smpeg-0.4.4-r11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild 
b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
index 9e2c1070856..0b26454c577 100644
--- a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
+++ b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://mirrors.dotsrc.org/lokigames/open-source/smpeg/${P}.tar.gz
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="cpu_flags_x86_mmx opengl"
 
 RDEPEND="



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

2021-09-19 Thread Sam James
commit: 6601b2f3581cc8549444f3299b7dd1c6dadc9c69
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:12:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:12:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6601b2f3

media-libs/quesoglc: Stabilize 0.7.2-r1 sparc, #813774

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

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

diff --git a/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild 
b/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
index fbf767e4880..25361aaf211 100644
--- a/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
+++ b/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}-free.tar.bz2"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc x86"
+KEYWORDS="amd64 ~ppc sparc x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-09-19 Thread Sam James
commit: 8822b5327ccaf55bf073409ec566781cbf1482f7
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:12:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:12:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8822b532

media-libs/smpeg2: Stabilize 2.0.0-r4 sparc, #813780

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

 media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild 
b/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild
index 3a72a9b68b9..fd604af340f 100644
--- a/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild
+++ b/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 sparc x86"
 IUSE="cpu_flags_x86_mmx"
 
 DEPEND="media-libs/libsdl2[${MULTILIB_USEDEP}]"



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

2021-09-19 Thread Sam James
commit: 559327401a3406ed9fab6e0f9d414745fd519074
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:10:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:10:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55932740

app-editors/scite: Stabilize 5.1.1 x86, #786447

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

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

diff --git a/app-editors/scite/scite-5.1.1.ebuild 
b/app-editors/scite/scite-5.1.1.ebuild
index d206fb1266d..4a6987556a2 100644
--- a/app-editors/scite/scite-5.1.1.ebuild
+++ b/app-editors/scite/scite-5.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.scintilla.org/${PN}${PV//./}.tgz -> 
${P}.tgz"
 
 LICENSE="HPND lua? ( MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="lua"
 
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"



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

2021-09-19 Thread Sam James
commit: 3f28c2513bba2e84d6af5f9a815a90370704cbae
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:11:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:11:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f28c251

app-editors/scite: Stabilize 5.1.1 amd64, #786447

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

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

diff --git a/app-editors/scite/scite-5.1.1.ebuild 
b/app-editors/scite/scite-5.1.1.ebuild
index 4a6987556a2..b7bd1bf0877 100644
--- a/app-editors/scite/scite-5.1.1.ebuild
+++ b/app-editors/scite/scite-5.1.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="https://www.scintilla.org/${PN}${PV//./}.tgz -> 
${P}.tgz"
 
 LICENSE="HPND lua? ( MIT )"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc x86 ~amd64-linux ~arm-linux ~x86-linux"
+KEYWORDS="amd64 ~ppc x86 ~amd64-linux ~arm-linux ~x86-linux"
 IUSE="lua"
 
 REQUIRED_USE="lua? ( ${LUA_REQUIRED_USE} )"



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

2021-09-19 Thread Sam James
commit: 19d284e5053ebebe92017c8eec9a500c6fc492c5
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:12:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:12:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=19d284e5

media-libs/smpeg: Stabilize 0.4.4-r11 ppc64, #813777

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

 media-libs/smpeg/smpeg-0.4.4-r11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild 
b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
index 926fc511f6a..9e2c1070856 100644
--- a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
+++ b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://mirrors.dotsrc.org/lokigames/open-source/smpeg/${P}.tar.gz
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="cpu_flags_x86_mmx opengl"
 
 RDEPEND="



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

2021-09-19 Thread Sam James
commit: c9951cd17762a69c39fe7be52239cb02e6aad41a
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:11:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:11:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9951cd1

net-analyzer/net-snmp: Stabilize 5.9.1-r1 arm, #813177

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

 net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild 
b/net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild
index f173658ddca..7294dbd87bd 100644
--- a/net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild
+++ b/net-analyzer/net-snmp/net-snmp-5.9.1-r1.ebuild
@@ -21,7 +21,7 @@ SRC_URI="
 # GPL-2 for the init scripts
 LICENSE="HPND BSD GPL-2"
 SLOT="0/40"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
sparc x86"
 IUSE="
X bzip2 doc elf kmem ipv6 lm-sensors mfd-rewrites minimal mysql
netlink pcap pci perl python rpm selinux smux ssl tcpd ucd-compat zlib



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

2021-09-19 Thread Sam James
commit: 0c9a5b8f8db3cdf85d40623ec73006e27e054498
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:10:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:10:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c9a5b8f

app-dicts/verbiste: Stabilize 0.1.47 x86, #813897

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

 app-dicts/verbiste/verbiste-0.1.47.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-dicts/verbiste/verbiste-0.1.47.ebuild 
b/app-dicts/verbiste/verbiste-0.1.47.ebuild
index dc372435661..f5a3c35e71b 100644
--- a/app-dicts/verbiste/verbiste-0.1.47.ebuild
+++ b/app-dicts/verbiste/verbiste-0.1.47.ebuild
@@ -11,7 +11,7 @@ SRC_URI="http://sarrazip.com/dev/${P}.tar.gz;
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="~amd64 ~ppc x86"
 IUSE="gtk"
 
 RDEPEND="



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

2021-09-19 Thread Sam James
commit: 43dc87f3077631395999b9fe82faa0f2d7b68e8b
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:12:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:12:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43dc87f3

media-libs/sdl-net: Stabilize 1.2.8-r2 ppc64, #813771

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

 media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild 
b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
index 229cf37ecdb..d75e6f718fa 100644
--- a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
+++ b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
 
 RDEPEND="media-libs/libsdl[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"



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

2021-09-19 Thread Sam James
commit: e1974b65061abbbff836f560bf49de8d039db6db
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:09:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:09:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1974b65

media-libs/smpeg2: Stabilize 2.0.0-r4 x86, #813780

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

 media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild 
b/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild
index af36e827c1c..3a72a9b68b9 100644
--- a/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild
+++ b/media-libs/smpeg2/smpeg2-2.0.0-r4.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86"
 IUSE="cpu_flags_x86_mmx"
 
 DEPEND="media-libs/libsdl2[${MULTILIB_USEDEP}]"



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

2021-09-19 Thread Sam James
commit: 1ec78e2c5ffe9c9fe7026392ece435094df753c9
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:09:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:09:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec78e2c

app-text/po4a: Stabilize 0.63-r1 x86, #813648

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

 app-text/po4a/po4a-0.63-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/po4a/po4a-0.63-r1.ebuild 
b/app-text/po4a/po4a-0.63-r1.ebuild
index 3c2eda30c17..10f1044b824 100644
--- a/app-text/po4a/po4a-0.63-r1.ebuild
+++ b/app-text/po4a/po4a-0.63-r1.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mquinson/${PN}/releases/download/v${PV}/${P}.tar.gz;
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="test"
 RESTRICT="!test? ( test )"
 



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

2021-09-19 Thread Sam James
commit: 0daf3b9a2f9d4b31552475b5ef866e0924bd3b12
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:10:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:10:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0daf3b9a

x11-wm/pekwm: Stabilize 0.1.18 amd64, #813885

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

 x11-wm/pekwm/pekwm-0.1.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/pekwm/pekwm-0.1.18.ebuild b/x11-wm/pekwm/pekwm-0.1.18.ebuild
index 92cac859913..77f6ac79f10 100644
--- a/x11-wm/pekwm/pekwm-0.1.18.ebuild
+++ b/x11-wm/pekwm/pekwm-0.1.18.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}"/${PN}-release-${PV}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc x86"
+KEYWORDS="amd64 ~mips ~ppc x86"
 IUSE="contrib debug themes truetype xinerama"
 
 RDEPEND="media-libs/libpng:0=



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

2021-09-19 Thread Sam James
commit: bb3491a37804b3738635a93bf3964d869cce5cee
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:11:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:11:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb3491a3

dev-libs/libinput: Stabilize 1.18.1 arm, #813456

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

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

diff --git a/dev-libs/libinput/libinput-1.18.1.ebuild 
b/dev-libs/libinput/libinput-1.18.1.ebuild
index 5c87acb2d00..2a118f9c8fc 100644
--- a/dev-libs/libinput/libinput-1.18.1.ebuild
+++ b/dev-libs/libinput/libinput-1.18.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://www.freedesktop.org/software/${PN}/${P}.tar.xz;
 LICENSE="MIT"
 SLOT="0/10"
 [[ "$(ver_cut 3)" -gt 900 ]] || \
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
x86"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~ppc ppc64 ~riscv ~s390 sparc 
x86"
 IUSE="doc input_devices_wacom test"
 RESTRICT="!test? ( test )"
 



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

2021-09-19 Thread Sam James
commit: 75d640bb38848f86b972ec3796cab88629defba4
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:09:51 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:09:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=75d640bb

media-libs/quesoglc: Stabilize 0.7.2-r1 x86, #813774

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

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

diff --git a/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild 
b/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
index 7930d179e54..fbf767e4880 100644
--- a/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
+++ b/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}-free.tar.bz2"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-09-19 Thread Sam James
commit: 42cf240513dc3de733963b5602504bf7d9f7e00c
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:10:02 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:10:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42cf2405

x11-wm/pekwm: Stabilize 0.1.18 x86, #813885

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

 x11-wm/pekwm/pekwm-0.1.18.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-wm/pekwm/pekwm-0.1.18.ebuild b/x11-wm/pekwm/pekwm-0.1.18.ebuild
index 9902fd4f3dc..92cac859913 100644
--- a/x11-wm/pekwm/pekwm-0.1.18.ebuild
+++ b/x11-wm/pekwm/pekwm-0.1.18.ebuild
@@ -18,7 +18,7 @@ S="${WORKDIR}"/${PN}-release-${PV}
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~amd64 ~mips ~ppc ~x86"
+KEYWORDS="~amd64 ~mips ~ppc x86"
 IUSE="contrib debug themes truetype xinerama"
 
 RDEPEND="media-libs/libpng:0=



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

2021-09-19 Thread Sam James
commit: 6cff2c31e1c092f6c9a31251ea5faffc8e7b207f
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:09:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:09:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6cff2c31

media-sound/xmms2: Stabilize 0.8_p20201016 x86, #813765

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

 media-sound/xmms2/xmms2-0.8_p20201016.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/xmms2/xmms2-0.8_p20201016.ebuild 
b/media-sound/xmms2/xmms2-0.8_p20201016.ebuild
index f33b0e4d64f..10e43217535 100644
--- a/media-sound/xmms2/xmms2-0.8_p20201016.ebuild
+++ b/media-sound/xmms2/xmms2-0.8_p20201016.ebuild
@@ -20,7 +20,7 @@ S="${WORKDIR}/${PN}-devel-${XMMS2_COMMIT}"
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~ppc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ppc x86"
 
 # IUSE static map to be passed to --with-{optionals,plugins}=opt1,opt2,...
 # flag:opt = `usev flag opt`, opt = `usev opt`, :opt = `echo opt`



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

2021-09-19 Thread Sam James
commit: 0b399ff59f98268beb78188a04945c573d25380d
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:09:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:09:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0b399ff5

media-libs/sdl-net: Stabilize 1.2.8-r2 x86, #813771

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

 media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild 
b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
index 73616e2803a..229cf37ecdb 100644
--- a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
+++ b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
 
 RDEPEND="media-libs/libsdl[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"



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

2021-09-19 Thread Sam James
commit: cc2776d0d6f1bc5fe01174369acab3271998bf3c
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 22:09:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 22:09:55 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc2776d0

media-libs/smpeg: Stabilize 0.4.4-r11 x86, #813777

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

 media-libs/smpeg/smpeg-0.4.4-r11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild 
b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
index 6c6b4f52b87..926fc511f6a 100644
--- a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
+++ b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://mirrors.dotsrc.org/lokigames/open-source/smpeg/${P}.tar.gz
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="cpu_flags_x86_mmx opengl"
 
 RDEPEND="



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

2021-09-19 Thread Sam James
commit: 6319eff1ae6b5dc389bf9b8f5abf2b7daffc3f3b
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6319eff1

dev-util/lttng-modules: Stabilize 2.12.5 x86, #763564

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

 dev-util/lttng-modules/lttng-modules-2.12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild 
b/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild
index 3c1c2eeb04b..9ea9002311e 100644
--- a/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild
+++ b/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE=""
 
 BUILD_TARGETS="default"



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

2021-09-19 Thread Sam James
commit: 6a6d9635a9645416857b2d59befd0b789c64c069
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6a6d9635

dev-util/lttng-tools: Stabilize 2.12.3 x86, #763564

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

 dev-util/lttng-tools/lttng-tools-2.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
index 10a3868eca0..5c899953074 100644
--- a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="+ust"
 
 DEPEND="dev-libs/userspace-rcu:=



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

2021-09-19 Thread Sam James
commit: 3f0afa3e2d8c3656856418a4e25ea1cfd3123f49
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3f0afa3e

dev-util/lttng-ust: Stabilize 2.12.1 x86, #763564

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

 dev-util/lttng-ust/lttng-ust-2.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild 
b/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
index d6cade0d3c1..4f1983b6b98 100644
--- a/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
+++ b/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-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="examples numa"
 
 DEPEND="



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

2021-09-19 Thread Sam James
commit: 067011809553efebe90cd0289ea1706d0644556f
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=06701180

dev-util/lttng-modules: Stabilize 2.12.5 amd64, #763564

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

 dev-util/lttng-modules/lttng-modules-2.12.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild 
b/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild
index 2936f980647..3c1c2eeb04b 100644
--- a/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild
+++ b/dev-util/lttng-modules/lttng-modules-2.12.5.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE=""
 
 BUILD_TARGETS="default"



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

2021-09-19 Thread Sam James
commit: d389a30895f81122284421f64d47a212f35137b5
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d389a308

dev-util/lttng-ust: Stabilize 2.12.1 amd64, #763564

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

 dev-util/lttng-ust/lttng-ust-2.12.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild 
b/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
index efe9ff12201..d6cade0d3c1 100644
--- a/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
+++ b/dev-util/lttng-ust/lttng-ust-2.12.1.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-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="examples numa"
 
 DEPEND="



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

2021-09-19 Thread Sam James
commit: b07123fdce8f71349d06f12ea0f65a683b456d00
Author: Sam James  gentoo  org>
AuthorDate: Sun Sep 19 21:53:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Sep 19 21:53:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b07123fd

dev-util/lttng-tools: Stabilize 2.12.3 amd64, #763564

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

 dev-util/lttng-tools/lttng-tools-2.12.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild 
b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
index ba3e986df0b..10a3868eca0 100644
--- a/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
+++ b/dev-util/lttng-tools/lttng-tools-2.12.3.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://lttng.org/files/${PN}/${MY_P}.tar.bz2;
 
 LICENSE="GPL-2"
 SLOT="0/${MY_SLOT}"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="amd64 ~x86"
 IUSE="+ust"
 
 DEPEND="dev-libs/userspace-rcu:=



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

2021-09-19 Thread Zac Medico
commit: fe4eb579dd11b777fb59aa67d965df1d55c872f1
Author: Zac Medico  gentoo  org>
AuthorDate: Sun Sep 19 21:14:34 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Sep 19 21:52:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe4eb579

dev-util/ostree: Bump to version 2021.4

Also enable http2 by default as suggested in bug #801037.

Closes: https://bugs.gentoo.org/801037
Package-Manager: Portage-3.0.23, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 dev-util/ostree/Manifest |   1 +
 dev-util/ostree/ostree-2021.4.ebuild | 105 +++
 2 files changed, 106 insertions(+)

diff --git a/dev-util/ostree/Manifest b/dev-util/ostree/Manifest
index cb2f4fc7ecd..42a0a3d6b6b 100644
--- a/dev-util/ostree/Manifest
+++ b/dev-util/ostree/Manifest
@@ -3,3 +3,4 @@ DIST ostree-2020.6.tar.xz 2014456 BLAKE2B 
97d84c6838993edfbabb598bce800332ab1c8b
 DIST ostree-2020.7.tar.xz 2022004 BLAKE2B 
2113117ce8553b7ffcfea17e1cb3a9c697d39b4933b48c30729af72fc833bb00f39e7e3a327efeebaac1df307b1f62ccf16a7772e12ad77737e2219c87623824
 SHA512 
f42dca3c9e1810c0421ab99588f27c625733b71ef811534b66e0c0c4afafbad5bf475e08feaf87c2f8414c38f127fd344adbb57a4b75001077aedbfe92af3706
 DIST ostree-2020.8.tar.xz 2081080 BLAKE2B 
e856f9642db9fd16e96d6bdc9b3f3be93989458d72258c4586e5a49e67c197d0b7b20cefd0b5a28d77dee986db42ae5584d2894005ede654b8320402aa3af367
 SHA512 
2523f5742c4472f8e64614bb99edc5aec1a8f8a837b54f67efba9760aefc3385014e1296c9246ac81b361f4588deb4794768a231bf8f338c24a14255ab63da04
 DIST ostree-2021.3.tar.xz 2089804 BLAKE2B 
5df33b676173b1ec08ac7592d4ddf8e3bfdcd84df1b3ce19e2f24c85780fed1f210b8adce1baf4ec87869c72984502276bf6e5a72268daaae6ce9b3d6dc6f88b
 SHA512 
0df0d8f9bd82b16562dd5146997eddfb7cb6cffc1886601307d97a1cb1dc926bda7d0c899db26c974ed0dff1012dee11937e47c11c4d03307fa3d2d430adc60e
+DIST ostree-2021.4.tar.xz 2048424 BLAKE2B 
386ed38f6dc8035a429505d8392682f739bc9a57a8cf9d7960942cd0ff0b61eee314116866c3b520d802a3f16f6dfecd1ea45a7b1d44cac8d065ad56a1ed2c2f
 SHA512 
9bde7281afa456b30253149639854f579c1f1bdf6c429059eeb69042515b5ebfdf6426b4c9780ca8e700a11f0ec05cfc03e48baa8d0858ddbca7d3942aab9bbd

diff --git a/dev-util/ostree/ostree-2021.4.ebuild 
b/dev-util/ostree/ostree-2021.4.ebuild
new file mode 100644
index 000..4914f0692b9
--- /dev/null
+++ b/dev-util/ostree/ostree-2021.4.ebuild
@@ -0,0 +1,105 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit autotools systemd
+
+DESCRIPTION="Operating system and container binary deployment and upgrades"
+HOMEPAGE="https://ostreedev.github.io/ostree/;
+SRC_URI="https://github.com/ostreedev/ostree/releases/download/v${PV}/lib${P}.tar.xz
 -> ${P}.tar.xz"
+
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+LICENSE="LGPL-2+"
+SLOT="0"
+
+IUSE="archive +curl doc dracut gnutls +gpg grub +http2 httpd introspection 
libmount selinux sodium ssl +soup systemd zeroconf"
+RESTRICT+=" test"
+REQUIRED_USE="
+   http2? ( curl )
+   httpd? ( || ( curl soup ) )
+"
+
+COMMON_DEPEND="
+   app-arch/xz-utils
+   dev-libs/libassuan
+   dev-libs/glib:2
+   >=sys-fs/fuse-2.9.2:0
+   sys-libs/zlib
+   archive? ( app-arch/libarchive:= )
+   curl? ( net-misc/curl )
+   dracut? ( sys-kernel/dracut )
+   gpg? (
+   app-crypt/gpgme
+   dev-libs/libgpg-error
+   )
+   grub? ( sys-boot/grub:2= )
+   introspection? ( dev-libs/gobject-introspection )
+   libmount? ( sys-apps/util-linux )
+   selinux? ( sys-libs/libselinux )
+   sodium? ( >=dev-libs/libsodium-1.0.14:= )
+   soup? ( net-libs/libsoup:2.4 )
+   ssl? (
+   gnutls? ( net-libs/gnutls:= )
+   !gnutls? (
+   dev-libs/openssl:0=
+   )
+   )
+   systemd? ( sys-apps/systemd:0= )
+   zeroconf? ( net-dns/avahi[dbus] )"
+
+DEPEND="${COMMON_DEPEND}
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt
+   doc? ( dev-util/gtk-doc )"
+
+RDEPEND="${COMMON_DEPEND}"
+BDEPEND="
+   dev-util/glib-utils
+   sys-devel/flex
+   sys-devel/bison
+   virtual/pkgconfig"
+
+S="${WORKDIR}/lib${P}"
+
+src_prepare() {
+   sed -Ee 's:(XSLT_STYLESHEET = 
).*:\1/usr/share/sgml/docbook/xsl-stylesheets/manpages/docbook.xsl:' \
+   -i Makefile.in Makefile-man.am || die
+   eautoreconf
+   default
+}
+
+src_configure() {
+   local econfargs=(
+   --enable-man
+   --enable-shared
+   $(use_with archive libarchive)
+   $(use_with curl)
+   $(use_with dracut)
+   $(use_enable doc gtk-doc)
+   $(usex introspection --enable-introspection={,} yes no)
+   $(use_with gpg gpgme)
+   $(use_enable http2)
+   $(use_enable httpd trivial-httpd-cmdline)
+   $(use_with selinux )
+   

[gentoo-commits] repo/gentoo:master commit in: sci-libs/gts/

2021-09-19 Thread James Le Cuirot
commit: ef7d4fed7d426a6ef0f10b0833328ff41b6fc41f
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Sep 19 21:42:40 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Sep 19 21:43:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ef7d4fed

sci-libs/gts: Keyword 20121130 for ~m68k

Signed-off-by: James Le Cuirot  gentoo.org>

 sci-libs/gts/gts-20121130.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/gts/gts-20121130.ebuild b/sci-libs/gts/gts-20121130.ebuild
index 2ce0a8b48a5..3a6449d4a08 100644
--- a/sci-libs/gts/gts-20121130.ebuild
+++ b/sci-libs/gts/gts-20121130.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="LGPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 hppa ~mips ppc ppc64 ~riscv x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm64 hppa ~m68k ~mips ppc ppc64 ~riscv x86 ~amd64-linux 
~x86-linux"
 IUSE="doc test"
 RESTRICT="test" # bug #277165
 



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

2021-09-19 Thread James Le Cuirot
commit: f0cbf9416c0d23731112df9b0560f1b6d5b46e7a
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Sep 19 21:29:55 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Sep 19 21:43:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f0cbf941

media-libs/netpbm: Keyword 10.86.22 for ~m68k

The tests pass, except for ppmcie.test, but this is sensitive to
system factors.

Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/media-libs/netpbm/netpbm-10.86.22.ebuild 
b/media-libs/netpbm/netpbm-10.86.22.ebuild
index 4fd56a25b07..402cbd40216 100644
--- a/media-libs/netpbm/netpbm-10.86.22.ebuild
+++ b/media-libs/netpbm/netpbm-10.86.22.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/ceamac/netpbm-make-dist/releases/download/v${PV}/${P
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~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="doc jbig jpeg png postscript rle cpu_flags_x86_sse2 static-libs svga 
tiff X xml zlib"
 
 BDEPEND="



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

2021-09-19 Thread James Le Cuirot
commit: 1198c8af390959bac6eb6ba785b7fa2dc79c2ac6
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Sep 19 21:06:13 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Sep 19 21:43:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1198c8af

profiles: Mask media-gfx/graphviz[lefty,pdf] on m68k

Avoid having to keyword Poppler and X11 libraries for now.

Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/profiles/arch/m68k/package.use.mask 
b/profiles/arch/m68k/package.use.mask
index 0f46f4297df..77548a42cb2 100644
--- a/profiles/arch/m68k/package.use.mask
+++ b/profiles/arch/m68k/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# James Le Cuirot  (2021-09-19)
+# Avoid having to keyword Poppler and X11 libraries for now.
+media-gfx/graphviz lefty pdf
+
 # James Le Cuirot  (2021-09-19)
 # Requires Rust, which is currently unavailable on m68k.
 media-gfx/graphviz svg



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

2021-09-19 Thread James Le Cuirot
commit: 42d933a41586e63225e52c83f8682da0eb846273
Author: James Le Cuirot  gentoo  org>
AuthorDate: Sun Sep 19 21:05:29 2021 +
Commit: James Le Cuirot  gentoo  org>
CommitDate: Sun Sep 19 21:43:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42d933a4

profiles: Mask media-gfx/graphviz[svg] on m68k

It requires Rust, which is currently unavailable on m68k.

Signed-off-by: James Le Cuirot  gentoo.org>

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

diff --git a/profiles/arch/m68k/package.use.mask 
b/profiles/arch/m68k/package.use.mask
index 122a64163d1..0f46f4297df 100644
--- a/profiles/arch/m68k/package.use.mask
+++ b/profiles/arch/m68k/package.use.mask
@@ -1,6 +1,10 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# James Le Cuirot  (2021-09-19)
+# Requires Rust, which is currently unavailable on m68k.
+media-gfx/graphviz svg
+
 # James Le Cuirot  (2021-09-19)
 # Requires Ruby, which is broken on m68k.
 app-text/htmltidy test



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

2021-09-19 Thread Agostino Sarubbo
commit: 487383431d55330af65b19bb17c26de5b507f940
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:55 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=48738343

dev-ruby/rspec-its: x86 stable wrt bug #813627

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

 dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild 
b/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild
index 699b7939023..51771bbc057 100644
--- a/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild
+++ b/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rspec/rspec-its;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/rspec-core-3.0.0 
>=dev-ruby/rspec-expectations-3.0.0"



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

2021-09-19 Thread Agostino Sarubbo
commit: 211bcaf451dec750fc8d61b9d1378f567a36ddbd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:39:03 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=211bcaf4

net-libs/webkit-gtk: x86 stable wrt bug #813657

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

 net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild
index 5f9eb15ecb1..0a147824495 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="4/37" # soname version of libwebkit2gtk-4.0
-KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~sparc x86"
 
 IUSE="aqua +egl examples gamepad +geolocation gles2-only gnome-keyring 
+gstreamer gtk-doc +introspection +jpeg2k +jumbo-build libnotify +opengl 
seccomp spell systemd wayland +X"
 



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

2021-09-19 Thread Agostino Sarubbo
commit: 6af5203394bd53f5943e2d45aac9fe4ff2097f9e
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:37 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6af52033

dev-python/zeep: x86 stable wrt bug #813615

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

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

diff --git a/dev-python/zeep/zeep-4.1.0.ebuild 
b/dev-python/zeep/zeep-4.1.0.ebuild
index 237bb99c3aa..7735af371f3 100644
--- a/dev-python/zeep/zeep-4.1.0.ebuild
+++ b/dev-python/zeep/zeep-4.1.0.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 IUSE="async"
 
 RDEPEND="



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

2021-09-19 Thread Agostino Sarubbo
commit: 230a8016af799ec8b2704c6ed2e34cea7eca2baf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:46 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=230a8016

dev-ruby/crack: x86 stable wrt bug #813627

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

 dev-ruby/crack/crack-0.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/crack/crack-0.4.4.ebuild 
b/dev-ruby/crack/crack-0.4.4.ebuild
index bbfd0b1250f..cf34e5d092d 100644
--- a/dev-ruby/crack/crack-0.4.4.ebuild
+++ b/dev-ruby/crack/crack-0.4.4.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/jnunemaker/crack/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( dev-ruby/minitest )"



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

2021-09-19 Thread Agostino Sarubbo
commit: 1887e45eea5ba18d47ee146a0546b3cf61f883fc
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:48 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1887e45e

dev-ruby/hocon: x86 stable wrt bug #813627

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

 dev-ruby/hocon/hocon-1.3.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/hocon/hocon-1.3.1.ebuild 
b/dev-ruby/hocon/hocon-1.3.1.ebuild
index 7954069da55..b7768a518f8 100644
--- a/dev-ruby/hocon/hocon-1.3.1.ebuild
+++ b/dev-ruby/hocon/hocon-1.3.1.ebuild
@@ -21,4 +21,4 @@ RUBY_S="ruby-hocon-${PV}"
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""
-KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc x86"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-http-persistent/

2021-09-19 Thread Agostino Sarubbo
commit: 2466710c7bd5bb9ad0a133ed0821aca1123e25ad
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:52 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2466710c

dev-ruby/net-http-persistent: x86 stable wrt bug #813627

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

 dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild 
b/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild
index e44f91fc3a3..13fed6f70af 100644
--- a/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild
+++ b/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/drbrain/net-http-persistent;
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-solaris"
 IUSE="doc test"
 
 ruby_add_rdepend ">=dev-ruby/connection_pool-2.2:0"



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

2021-09-19 Thread Agostino Sarubbo
commit: 703954f28cdb9d86c2fe09e877514412ec6ae749
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:29 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=703954f2

dev-python/python-xmlsec: x86 stable wrt bug #813615

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

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

diff --git a/dev-python/python-xmlsec/python-xmlsec-1.3.11.ebuild 
b/dev-python/python-xmlsec/python-xmlsec-1.3.11.ebuild
index 57fefe304ed..7ae6f52563c 100644
--- a/dev-python/python-xmlsec/python-xmlsec-1.3.11.ebuild
+++ b/dev-python/python-xmlsec/python-xmlsec-1.3.11.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/mehcode/python-xmlsec/archive/${PV}.tar.gz -> ${P}.t
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~ppc64 x86"
 
 DEPEND="
dev-libs/xmlsec:=



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

2021-09-19 Thread Agostino Sarubbo
commit: 836f749e817408e7eda9e34292b2f82bec09c379
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:12 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=836f749e

sci-geosciences/qgis: x86 stable wrt bug #813171

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

 sci-geosciences/qgis/qgis-3.20.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-geosciences/qgis/qgis-3.20.2.ebuild 
b/sci-geosciences/qgis/qgis-3.20.2.ebuild
index c9e0381c5f2..51cd2ec672e 100644
--- a/sci-geosciences/qgis/qgis-3.20.2.ebuild
+++ b/sci-geosciences/qgis/qgis-3.20.2.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} = ** ]]; then
 else
SRC_URI="https://qgis.org/downloads/${P}.tar.bz2
examples? ( 
https://qgis.org/downloads/data/qgis_sample_data.tar.gz -> 
qgis_sample_data-2.8.14.tar.gz )"
-   KEYWORDS="amd64 ~x86"
+   KEYWORDS="amd64 x86"
 fi
 inherit cmake desktop python-single-r1 qmake-utils xdg
 



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

2021-09-19 Thread Agostino Sarubbo
commit: 5f216dc689b7bb6375afc234c97c5fceac615716
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:25 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5f216dc6

dev-python/pytest-httpx: x86 stable wrt bug #813615

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

 dev-python/pytest-httpx/pytest-httpx-0.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-python/pytest-httpx/pytest-httpx-0.13.0.ebuild 
b/dev-python/pytest-httpx/pytest-httpx-0.13.0.ebuild
index 4b833ecdca4..b655394efae 100644
--- a/dev-python/pytest-httpx/pytest-httpx-0.13.0.ebuild
+++ b/dev-python/pytest-httpx/pytest-httpx-0.13.0.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_PN}-${PV}"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
=dev-python/httpx-0.19*[${PYTHON_USEDEP}]



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

2021-09-19 Thread Agostino Sarubbo
commit: 98206a320caa4cd218a82ab7261a16af96a359bf
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:22 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=98206a32

dev-python/aioresponses: x86 stable wrt bug #813615

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

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

diff --git a/dev-python/aioresponses/aioresponses-0.7.2.ebuild 
b/dev-python/aioresponses/aioresponses-0.7.2.ebuild
index cdfed14150c..97031db4a06 100644
--- a/dev-python/aioresponses/aioresponses-0.7.2.ebuild
+++ b/dev-python/aioresponses/aioresponses-0.7.2.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="dev-python/aiohttp[${PYTHON_USEDEP}]"
 BDEPEND="



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

2021-09-19 Thread Agostino Sarubbo
commit: 9d27ba09eaf3b7f9c4b58eaa1f8221870037da09
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:38:33 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:39:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d27ba09

dev-python/requests-file: x86 stable wrt bug #813615

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

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

diff --git a/dev-python/requests-file/requests-file-1.5.1-r1.ebuild 
b/dev-python/requests-file/requests-file-1.5.1-r1.ebuild
index b7fbcc9559c..64b3b87dd7f 100644
--- a/dev-python/requests-file/requests-file-1.5.1-r1.ebuild
+++ b/dev-python/requests-file/requests-file-1.5.1-r1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~x86"
+KEYWORDS="amd64 x86"
 
 RDEPEND="
dev-python/requests[${PYTHON_USEDEP}]



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

2021-09-19 Thread Mike Gilbert
commit: 8c1e17dde18dc56831b368d66429b1b4760ec895
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep 18 14:16:09 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 19 21:38:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8c1e17dd

sys-apps/gentoo-systemd-integration: pass systemd dirs to configure

This prevents install paths from being prefixed with SYSROOT by
pkg-config.

Bug: https://bugs.gentoo.org/813639
Signed-off-by: Mike Gilbert  gentoo.org>

 .../gentoo-systemd-integration-8.ebuild  | 10 ++
 .../gentoo-systemd-integration-9.ebuild  | 12 +++-
 .../gentoo-systemd-integration-.ebuild   | 12 +++-
 3 files changed, 32 insertions(+), 2 deletions(-)

diff --git 
a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild 
b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild
index d6fa26516aa..c5acec8fc6d 100644
--- a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild
+++ b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-8.ebuild
@@ -3,6 +3,8 @@
 
 EAPI=7
 
+inherit systemd
+
 if [[ ${PV} ==  ]]; then

EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gentoo-systemd-integration.git;
inherit autotools git-r3
@@ -30,3 +32,11 @@ src_prepare() {
default
[[ ${PV} !=  ]] || eautoreconf
 }
+
+src_configure() {
+   local myconf=(
+   
--with-systemdsystemgeneratordir="$(systemd_get_systemgeneratordir)"
+   --with-systemdsystempresetdir="$(systemd_get_systempresetdir)"
+   )
+   econf "${myconf[@]}"
+}

diff --git 
a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-9.ebuild 
b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-9.ebuild
index 7983540e726..0d5b07883d9 100644
--- a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-9.ebuild
+++ b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-9.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
+inherit systemd
+
 if [[ ${PV} ==  ]]; then

EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gentoo-systemd-integration.git;
inherit autotools git-r3
@@ -28,3 +30,11 @@ src_prepare() {
default
[[ ${PV} !=  ]] || eautoreconf
 }
+
+src_configure() {
+   local myconf=(
+   
--with-systemdsystemgeneratordir="$(systemd_get_systemgeneratordir)"
+   --with-systemdsystempresetdir="$(systemd_get_systempresetdir)"
+   )
+   econf "${myconf[@]}"
+}

diff --git 
a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-.ebuild 
b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-.ebuild
index 7983540e726..0d5b07883d9 100644
--- a/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-.ebuild
+++ b/sys-apps/gentoo-systemd-integration/gentoo-systemd-integration-.ebuild
@@ -1,8 +1,10 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
+inherit systemd
+
 if [[ ${PV} ==  ]]; then

EGIT_REPO_URI="https://anongit.gentoo.org/git/proj/gentoo-systemd-integration.git;
inherit autotools git-r3
@@ -28,3 +30,11 @@ src_prepare() {
default
[[ ${PV} !=  ]] || eautoreconf
 }
+
+src_configure() {
+   local myconf=(
+   
--with-systemdsystemgeneratordir="$(systemd_get_systemgeneratordir)"
+   --with-systemdsystempresetdir="$(systemd_get_systempresetdir)"
+   )
+   econf "${myconf[@]}"
+}



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

2021-09-19 Thread Mike Gilbert
commit: 3fc8be35607dc65897279f666c8171b174dd2bf2
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep 18 14:10:53 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 19 21:38:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fc8be35

udev.eclass: set PKG_CONFIG_FDO_SYSROOT_RULES

This prevents pkgconf from prepending install paths with SYSROOT.

Bug: https://bugs.gentoo.org/813639
Signed-off-by: Mike Gilbert  gentoo.org>

 eclass/udev.eclass | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/eclass/udev.eclass b/eclass/udev.eclass
index 7f9415914cd..073e5d8acbc 100644
--- a/eclass/udev.eclass
+++ b/eclass/udev.eclass
@@ -49,6 +49,8 @@ fi
 # @DESCRIPTION:
 # Get unprefixed udevdir.
 _udev_get_udevdir() {
+   # https://github.com/pkgconf/pkgconf/issues/205
+   local -x PKG_CONFIG_FDO_SYSROOT_RULES=1
if $($(tc-getPKG_CONFIG) --exists udev); then
local udevdir="$($(tc-getPKG_CONFIG) --variable=udevdir udev)"
echo "${udevdir#${EPREFIX%/}}"



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

2021-09-19 Thread Mike Gilbert
commit: 3037b9ea3bc955792dedef480efc27ce493dfe7b
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep 18 14:22:51 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 19 21:38:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3037b9ea

sys-apps/dbus: pass systemduserunitdir to configure

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

 sys-apps/dbus/dbus-1.12.20-r3.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-apps/dbus/dbus-1.12.20-r3.ebuild 
b/sys-apps/dbus/dbus-1.12.20-r3.ebuild
index f175a20c1ae..d108b73feed 100644
--- a/sys-apps/dbus/dbus-1.12.20-r3.ebuild
+++ b/sys-apps/dbus/dbus-1.12.20-r3.ebuild
@@ -135,6 +135,7 @@ multilib_src_configure() {
--with-system-pid-file="${EPREFIX}${rundir}"/dbus.pid

--with-system-socket="${EPREFIX}${rundir}"/dbus/system_bus_socket
--with-systemdsystemunitdir="$(systemd_get_systemunitdir)"
+   --with-systemduserunitdir="$(systemd_get_userunitdir)"
--with-dbus-user=messagebus
$(use_with X x)
)



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

2021-09-19 Thread Mike Gilbert
commit: b6a14ebec15b54b109f93b9d330d2083a663aa1c
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep 18 14:09:34 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 19 21:38:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b6a14ebe

systemd.eclass: set PKG_CONFIG_FDO_SYSROOT_RULES

This prevents pkgconf from prepending install paths with SYSROOT.

Bug: https://bugs.gentoo.org/813639
Signed-off-by: Mike Gilbert  gentoo.org>

 eclass/systemd.eclass | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/eclass/systemd.eclass b/eclass/systemd.eclass
index 27e4dcae1ff..c80c4c43f31 100644
--- a/eclass/systemd.eclass
+++ b/eclass/systemd.eclass
@@ -48,6 +48,9 @@ _systemd_get_dir() {
[[ ${#} -eq 2 ]] || die "Usage: ${FUNCNAME}  
"
local variable=${1} fallback=${2} d
 
+   # https://github.com/pkgconf/pkgconf/issues/205
+   local -x PKG_CONFIG_FDO_SYSROOT_RULES=1
+
if $(tc-getPKG_CONFIG) --exists systemd; then
d=$($(tc-getPKG_CONFIG) --variable="${variable}" systemd) || die
d=${d#${EPREFIX}}



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

2021-09-19 Thread Mike Gilbert
commit: b8f91fee6a8314dc58c1da011b65d9b857ef963f
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sat Sep 18 14:35:51 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 19 21:38:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b8f91fee

systemd.eclass: introduce systemd_get_systempresetdir

Bug: https://bugs.gentoo.org/813639
Signed-off-by: Mike Gilbert  gentoo.org>

 eclass/systemd.eclass | 18 ++
 1 file changed, 18 insertions(+)

diff --git a/eclass/systemd.eclass b/eclass/systemd.eclass
index c80c4c43f31..7731bede094 100644
--- a/eclass/systemd.eclass
+++ b/eclass/systemd.eclass
@@ -145,6 +145,24 @@ systemd_get_systemgeneratordir() {
echo "${EPREFIX}$(_systemd_get_systemgeneratordir)"
 }
 
+# @FUNCTION: _systemd_get_systempresetdir
+# @INTERNAL
+# @DESCRIPTION:
+# Get unprefixed systempresetdir.
+_systemd_get_systempresetdir() {
+   _systemd_get_dir systemdsystempresetdir /lib/systemd/system-preset
+}
+
+# @FUNCTION: systemd_get_systempresetdir
+# @DESCRIPTION:
+# Output the path for the systemd system preset directory (not including
+# ${D}). This function always succeeds, even if systemd is not installed.
+systemd_get_systempresetdir() {
+   debug-print-function ${FUNCNAME} "${@}"
+
+   echo "${EPREFIX}$(_systemd_get_systempresetdir)"
+}
+
 # @FUNCTION: systemd_dounit
 # @USAGE: ...
 # @DESCRIPTION:



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

2021-09-19 Thread Mike Gilbert
commit: 04a50e4a47279a8d7af6cf50665820a21fbc9116
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Sep 19 21:37:23 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 19 21:37:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04a50e4a

sys-fs/lvm2: drop multilib eclass

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

 sys-fs/lvm2/lvm2-2.02.188-r2.ebuild | 2 +-
 sys-fs/lvm2/lvm2-2.03.13-r2.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild 
b/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild
index 2ed5a5019a9..dcba617a604 100644
--- a/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 TMPFILES_OPTIONAL=1
-inherit autotools linux-info multilib systemd toolchain-funcs tmpfiles udev 
flag-o-matic
+inherit autotools linux-info systemd toolchain-funcs tmpfiles udev flag-o-matic
 
 DESCRIPTION="User-land utilities for LVM2 (device-mapper) software"
 HOMEPAGE="https://sourceware.org/lvm2/;

diff --git a/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild 
b/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild
index 416cccb8fd2..f23621e8619 100644
--- a/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild
+++ b/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 TMPFILES_OPTIONAL=1
-inherit autotools linux-info multilib systemd toolchain-funcs tmpfiles udev 
flag-o-matic
+inherit autotools linux-info systemd toolchain-funcs tmpfiles udev flag-o-matic
 
 DESCRIPTION="User-land utilities for LVM2 (device-mapper) software"
 HOMEPAGE="https://sourceware.org/lvm2/;



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

2021-09-19 Thread Mike Gilbert
commit: 9b09f0646011091f3a3af4259e12dfdafcfbceed
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Sep 19 21:35:46 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Sep 19 21:36:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9b09f064

sys-fs/lvm2: skip tmpfiles when USE=device-mapper-only

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

 sys-fs/lvm2/lvm2-2.02.188-r2.ebuild | 6 +-
 sys-fs/lvm2/lvm2-2.03.13-r2.ebuild  | 6 +-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild 
b/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild
index a6c786adcc2..2ed5a5019a9 100644
--- a/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.188-r2.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+TMPFILES_OPTIONAL=1
 inherit autotools linux-info multilib systemd toolchain-funcs tmpfiles udev 
flag-o-matic
 
 DESCRIPTION="User-land utilities for LVM2 (device-mapper) software"
@@ -36,6 +37,7 @@ RDEPEND="${DEPEND_COMMON}
!!sys-fs/lvm-user
>=sys-apps/util-linux-2.16
lvm2create_initrd? ( sys-apps/makedev )
+   !device-mapper-only? ( virtual/tmpfiles )
thin? ( >=sys-block/thin-provisioning-tools-0.3.0 )"
 # note: thin- 0.3.0 is required to avoid --disable-thin_check_needs_check
 DEPEND="${DEPEND_COMMON}
@@ -265,7 +267,9 @@ src_install() {
 }
 
 pkg_postinst() {
-   tmpfiles_process lvm2.conf
+   if ! use device-mapper-only; then
+   tmpfiles_process lvm2.conf
+   fi
 
if [[ -z "${REPLACING_VERSIONS}" ]]; then
# This is a new installation

diff --git a/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild 
b/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild
index f6c64e6f5d1..416cccb8fd2 100644
--- a/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild
+++ b/sys-fs/lvm2/lvm2-2.03.13-r2.ebuild
@@ -2,6 +2,7 @@
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
+TMPFILES_OPTIONAL=1
 inherit autotools linux-info multilib systemd toolchain-funcs tmpfiles udev 
flag-o-matic
 
 DESCRIPTION="User-land utilities for LVM2 (device-mapper) software"
@@ -36,6 +37,7 @@ RDEPEND="${DEPEND_COMMON}
!!sys-fs/lvm-user
>=sys-apps/util-linux-2.16
lvm2create_initrd? ( sys-apps/makedev )
+   !device-mapper-only? ( virtual/tmpfiles )
thin? ( >=sys-block/thin-provisioning-tools-0.3.0 )"
 # note: thin- 0.3.0 is required to avoid --disable-thin_check_needs_check
 DEPEND="${DEPEND_COMMON}
@@ -253,7 +255,9 @@ src_install() {
 }
 
 pkg_postinst() {
-   tmpfiles_process lvm2.conf
+   if ! use device-mapper-only; then
+   tmpfiles_process lvm2.conf
+   fi
 
if [[ -z "${REPLACING_VERSIONS}" ]]; then
# This is a new installation



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

2021-09-19 Thread Agostino Sarubbo
commit: a362e1c1e801a7c21c4b6a1718dd1eb600e42182
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:32 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a362e1c1

media-sound/xmms2: amd64 stable wrt bug #813765

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

 media-sound/xmms2/xmms2-0.8_p20201016.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/xmms2/xmms2-0.8_p20201016.ebuild 
b/media-sound/xmms2/xmms2-0.8_p20201016.ebuild
index db8da4f3182..f33b0e4d64f 100644
--- a/media-sound/xmms2/xmms2-0.8_p20201016.ebuild
+++ b/media-sound/xmms2/xmms2-0.8_p20201016.ebuild
@@ -20,7 +20,7 @@ S="${WORKDIR}/${PN}-devel-${XMMS2_COMMIT}"
 
 LICENSE="GPL-2+ LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~ppc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~ppc ~x86"
 
 # IUSE static map to be passed to --with-{optionals,plugins}=opt1,opt2,...
 # flag:opt = `usev flag opt`, opt = `usev opt`, :opt = `echo opt`



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

2021-09-19 Thread Agostino Sarubbo
commit: 1b67c91ac010d28e457e5e27add86483c34e6127
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:00 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b67c91a

dev-ruby/hocon: amd64 stable wrt bug #813627

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

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

diff --git a/dev-ruby/hocon/hocon-1.3.1.ebuild 
b/dev-ruby/hocon/hocon-1.3.1.ebuild
index ce808c13ff2..7954069da55 100644
--- a/dev-ruby/hocon/hocon-1.3.1.ebuild
+++ b/dev-ruby/hocon/hocon-1.3.1.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
@@ -21,4 +21,4 @@ RUBY_S="ruby-hocon-${PV}"
 LICENSE="Apache-2.0"
 SLOT="0"
 IUSE=""
-KEYWORDS="~amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~hppa ~ppc ~ppc64 ~sparc ~x86"



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

2021-09-19 Thread Agostino Sarubbo
commit: d389fc8ea57536b2cfbf6d1bb12a8e72d1c466dd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:46 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d389fc8e

media-libs/quesoglc: amd64 stable wrt bug #813774

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

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

diff --git a/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild 
b/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
index 6f4fe15c6eb..7930d179e54 100644
--- a/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
+++ b/media-libs/quesoglc/quesoglc-0.7.2-r1.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/${PN}/${P}-free.tar.bz2"
 
 LICENSE="LGPL-2.1+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+KEYWORDS="amd64 ~ppc ~sparc ~x86"
 IUSE="doc"
 
 RDEPEND="



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

2021-09-19 Thread Agostino Sarubbo
commit: b2b72450bb5553114c9d30e7d460927f5159da03
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:18 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b2b72450

net-libs/webkit-gtk: amd64 stable wrt bug #813657

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

 net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild 
b/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild
index 8bd28124e98..5f9eb15ecb1 100644
--- a/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild
+++ b/net-libs/webkit-gtk/webkit-gtk-2.32.4.ebuild
@@ -14,7 +14,7 @@ SRC_URI="https://www.webkitgtk.org/releases/${MY_P}.tar.xz;
 
 LICENSE="LGPL-2+ BSD"
 SLOT="4/37" # soname version of libwebkit2gtk-4.0
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ppc ppc64 ~riscv ~sparc ~x86"
 
 IUSE="aqua +egl examples gamepad +geolocation gles2-only gnome-keyring 
+gstreamer gtk-doc +introspection +jpeg2k +jumbo-build libnotify +opengl 
seccomp spell systemd wayland +X"
 



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

2021-09-19 Thread Agostino Sarubbo
commit: ceef4ebe07cb503ab1c846aabacc35aa9c1afb80
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:53 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ceef4ebe

media-libs/smpeg: amd64 stable wrt bug #813777

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

 media-libs/smpeg/smpeg-0.4.4-r11.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild 
b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
index e79dae9392a..6c6b4f52b87 100644
--- a/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
+++ b/media-libs/smpeg/smpeg-0.4.4-r11.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://mirrors.dotsrc.org/lokigames/open-source/smpeg/${P}.tar.gz
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86 
~amd64-linux ~x86-linux ~x86-solaris"
 IUSE="cpu_flags_x86_mmx opengl"
 
 RDEPEND="



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

2021-09-19 Thread Agostino Sarubbo
commit: d0406e0a9eeedfc965136a350c3bdccc8946e627
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:34:21 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:34:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0406e0a

dev-ruby/mocha: amd64 stable wrt bug #813798

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

 dev-ruby/mocha/mocha-1.13.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/mocha/mocha-1.13.0.ebuild 
b/dev-ruby/mocha/mocha-1.13.0.ebuild
index dfce767b69a..53976fc8476 100644
--- a/dev-ruby/mocha/mocha-1.13.0.ebuild
+++ b/dev-ruby/mocha/mocha-1.13.0.ebuild
@@ -20,7 +20,7 @@ 
SRC_URI="https://github.com/freerange/mocha/archive/v${PV}.tar.gz -> ${P}.tar.gz
 
 LICENSE="MIT"
 SLOT="1.0"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE=""
 
 ruby_add_bdepend "



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

2021-09-19 Thread Agostino Sarubbo
commit: 1fda109d3f68b119364a66c36738130a710b6c37
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:08 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fda109d

dev-ruby/rspec-its: amd64 stable wrt bug #813627

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

 dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild 
b/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild
index b225eebf1cb..699b7939023 100644
--- a/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild
+++ b/dev-ruby/rspec-its/rspec-its-1.3.0-r1.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://github.com/rspec/rspec-its;
 
 LICENSE="MIT"
 SLOT="1"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86"
 IUSE=""
 
 ruby_add_rdepend ">=dev-ruby/rspec-core-3.0.0 
>=dev-ruby/rspec-expectations-3.0.0"



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

2021-09-19 Thread Agostino Sarubbo
commit: 572f3ffd062821a8a00fc6389125996a987e9e37
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:34:57 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:34:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=572f3ffd

dev-ruby/crack: amd64 stable wrt bug #813627

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

 dev-ruby/crack/crack-0.4.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/crack/crack-0.4.4.ebuild 
b/dev-ruby/crack/crack-0.4.4.ebuild
index f7aefc450c0..bbfd0b1250f 100644
--- a/dev-ruby/crack/crack-0.4.4.ebuild
+++ b/dev-ruby/crack/crack-0.4.4.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://github.com/jnunemaker/crack/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~riscv ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
 IUSE=""
 
 ruby_add_bdepend "test? ( dev-ruby/minitest )"



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

2021-09-19 Thread Agostino Sarubbo
commit: 6fbd3451635d3a09eb9533398783806467e80a9a
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:39 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6fbd3451

media-libs/sdl-net: amd64 stable wrt bug #813771

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

 media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild 
b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
index c84784f7165..73616e2803a 100644
--- a/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
+++ b/media-libs/sdl-net/sdl-net-1.2.8-r2.ebuild
@@ -14,7 +14,7 @@ S="${WORKDIR}/${MY_P}"
 
 LICENSE="ZLIB"
 SLOT="0"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
 
 RDEPEND="media-libs/libsdl[${MULTILIB_USEDEP}]"
 DEPEND="${RDEPEND}"



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/net-http-persistent/

2021-09-19 Thread Agostino Sarubbo
commit: 798ad82bb48aea4580e86d3d9cdf4a60bf3bdadd
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:35:04 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:35:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=798ad82b

dev-ruby/net-http-persistent: amd64 stable wrt bug #813627

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

 dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild 
b/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild
index 62081ec9a12..e44f91fc3a3 100644
--- a/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild
+++ b/dev-ruby/net-http-persistent/net-http-persistent-3.1.0.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://github.com/drbrain/net-http-persistent;
 
 LICENSE="MIT"
 SLOT="3"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-solaris"
+KEYWORDS="amd64 ~arm ~ppc ~ppc64 ~x86 ~amd64-linux ~x86-linux ~ppc-macos 
~x86-solaris"
 IUSE="doc test"
 
 ruby_add_rdepend ">=dev-ruby/connection_pool-2.2:0"



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

2021-09-19 Thread Agostino Sarubbo
commit: 4edd7dffce1a236baf0996f7041b599f10aa6013
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:34:47 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:34:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4edd7dff

dev-python/dask: amd64/x86 stable (ALLARCHES policy) wrt bug #813540

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

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

diff --git a/dev-python/dask/dask-2021.8.1.ebuild 
b/dev-python/dask/dask-2021.8.1.ebuild
index a7f474643d2..3389d398716 100644
--- a/dev-python/dask/dask-2021.8.1.ebuild
+++ b/dev-python/dask/dask-2021.8.1.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~amd64-linux ~x86-linux"
+KEYWORDS="amd64 ~arm ~arm64 x86 ~amd64-linux ~x86-linux"
 
 RDEPEND="
>=dev-python/cloudpickle-0.2.2[${PYTHON_USEDEP}]



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

2021-09-19 Thread Agostino Sarubbo
commit: 8bd5a0a0b749728ddcc43214e7ccced54844654f
Author: Agostino Sarubbo  gentoo  org>
AuthorDate: Sun Sep 19 21:33:34 2021 +
Commit: Agostino Sarubbo  gentoo  org>
CommitDate: Sun Sep 19 21:33:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bd5a0a0

dev-libs/libgcrypt: amd64 stable wrt bug #795480

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

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

diff --git a/dev-libs/libgcrypt/libgcrypt-1.8.8.ebuild 
b/dev-libs/libgcrypt/libgcrypt-1.8.8.ebuild
index 020f9e8c745..1e3113cc888 100644
--- a/dev-libs/libgcrypt/libgcrypt-1.8.8.ebuild
+++ b/dev-libs/libgcrypt/libgcrypt-1.8.8.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/${PN}/${P}.tar.bz2"
 
 LICENSE="LGPL-2.1 MIT"
 SLOT="0/20" # subslot = soname major version
-KEYWORDS="~alpha ~amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc o-flag-munging static-libs"
 
 RDEPEND=">=dev-libs/libgpg-error-1.25[${MULTILIB_USEDEP}]"



  1   2   3   >