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

2021-07-04 Thread Michał Górny
commit: 25cb8d050c81a4afc69c10bdd5049eecfe6b8524
Author: Alex R  gmail  com>
AuthorDate: Sun Jul  4 22:57:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul  5 05:40:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=25cb8d05

sys-libs/llvm-libunwind: use compiler-rt if possible

Signed-off-by: Alex Revin  gmail.com>
Signed-off-by: Michał Górny  gentoo.org>

 sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild | 16 +++-
 .../llvm-libunwind/llvm-libunwind-12.0.1..ebuild | 16 +++-
 sys-libs/llvm-libunwind/llvm-libunwind-12.0.1_rc2.ebuild | 16 +++-
 .../llvm-libunwind/llvm-libunwind-13.0.0..ebuild | 16 +++-
 4 files changed, 60 insertions(+), 4 deletions(-)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild
index 0f82c1251fa..7d7b9833902 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.0.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_ECLASS=cmake
 PYTHON_COMPAT=( python3_{7..9} )
-inherit cmake-multilib llvm llvm.org python-any-r1
+inherit cmake-multilib llvm llvm.org python-any-r1 toolchain-funcs
 
 DESCRIPTION="C++ runtime stack unwinder from LLVM"
 HOMEPAGE="https://github.com/llvm-mirror/libunwind;
@@ -38,8 +38,19 @@ pkg_setup() {
 }
 
 multilib_src_configure() {
+   local use_compiler_rt=OFF
local libdir=$(get_libdir)
 
+   # link to compiler-rt
+   # https://github.com/gentoo/gentoo/pull/21516
+   if tc-is-clang; then
+   local compiler-rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
+  ${LD_FLAGS} -print-libgcc-file-name)
+   if [[ ${compiler_rt} == *libclang_rt* ]]; then
+   use_compiler_rt=ON
+   fi
+   fi
+
local mycmakeargs=(
-DLLVM_LIBDIR_SUFFIX=${libdir#lib}
-DLIBUNWIND_ENABLE_ASSERTIONS=$(usex debug)
@@ -49,6 +60,9 @@ multilib_src_configure() {
# support non-native unwinding; given it's small enough,
# enable it unconditionally
-DLIBUNWIND_ENABLE_CROSS_UNWINDING=ON
+
+   # avoid dependency on libgcc_s if compiler-rt is used
+   -DLIBUNWIND_USE_COMPILER_RT=${use_compiler_rt}
)
if use test; then
local clang_path=$(type -P "${CHOST:+${CHOST}-}clang" 
2>/dev/null)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1..ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1..ebuild
index bf538b66689..4f13111b557 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1..ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1..ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_ECLASS=cmake
 PYTHON_COMPAT=( python3_{7..9} )
-inherit cmake-multilib llvm llvm.org python-any-r1
+inherit cmake-multilib llvm llvm.org python-any-r1 toolchain-funcs
 
 DESCRIPTION="C++ runtime stack unwinder from LLVM"
 HOMEPAGE="https://github.com/llvm-mirror/libunwind;
@@ -38,8 +38,19 @@ pkg_setup() {
 }
 
 multilib_src_configure() {
+   local use_compiler_rt=OFF
local libdir=$(get_libdir)
 
+   # link to compiler-rt
+   # https://github.com/gentoo/gentoo/pull/21516
+   if tc-is-clang; then
+   local compiler-rt=$($(tc-getCC) ${CFLAGS} ${CPPFLAGS} \
+  ${LD_FLAGS} -print-libgcc-file-name)
+   if [[ ${compiler_rt} == *libclang_rt* ]]; then
+   use_compiler_rt=ON
+   fi
+   fi
+
local mycmakeargs=(
-DLLVM_LIBDIR_SUFFIX=${libdir#lib}
-DLIBUNWIND_ENABLE_ASSERTIONS=$(usex debug)
@@ -49,6 +60,9 @@ multilib_src_configure() {
# support non-native unwinding; given it's small enough,
# enable it unconditionally
-DLIBUNWIND_ENABLE_CROSS_UNWINDING=ON
+
+   # avoid dependency on libgcc_s if compiler-rt is used
+   -DLIBUNWIND_USE_COMPILER_RT=${use_compiler_rt}
)
if use test; then
local clang_path=$(type -P "${CHOST:+${CHOST}-}clang" 
2>/dev/null)

diff --git a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1_rc2.ebuild 
b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1_rc2.ebuild
index bf538b66689..4f13111b557 100644
--- a/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1_rc2.ebuild
+++ b/sys-libs/llvm-libunwind/llvm-libunwind-12.0.1_rc2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_ECLASS=cmake
 PYTHON_COMPAT=( python3_{7..9} )
-inherit cmake-multilib llvm llvm.org python-any-r1
+inherit cmake-multilib llvm llvm.org python-any-r1 toolchain-funcs
 
 DESCRIPTION="C++ runtime stack unwinder from LLVM"
 HOMEPAGE="https://github.com/llvm-mirror/libunwind;
@@ -38,8 +38,19 @@ pkg_setup() {
 }
 
 multilib_src_configure() {
+   local use_compiler_rt=OFF
local libdir=$(get_libdir)
 
+   # link to 

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

2021-07-04 Thread Michał Górny
commit: 23b2077468a0700e77d305f3437655de7f5ea0c9
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul  5 05:48:18 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul  5 05:48:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=23b20774

dev-python/iminuit: Bump to 2.7.0

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

 dev-python/iminuit/Manifest |  1 +
 dev-python/iminuit/iminuit-2.7.0.ebuild | 31 +++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/iminuit/Manifest b/dev-python/iminuit/Manifest
index 6b7d5b10e48..b47629446c8 100644
--- a/dev-python/iminuit/Manifest
+++ b/dev-python/iminuit/Manifest
@@ -3,3 +3,4 @@ DIST iminuit-2.4.0.tar.gz 372122 BLAKE2B 
f6590bb67d8c79cb8398345a76a7af7e95bec83
 DIST iminuit-2.5.0.tar.gz 375912 BLAKE2B 
422bb8ec8f6a763ff010bd28f695a1b26ef3b3c44e324ffc2f4592d224ba5380d29b47b99d9f8b3f9dd8a5d81ed45197b6f89eb2d2fa599d8d1fdf9e50358e58
 SHA512 
25ce217ded4f9a142cf0522d9e66efeee4c3bcc16cd1f324a5008c1b64477b2a37a9655ea939c74bc60f9222cae8045bf7a77a5807b09cb3e3e61da4f41e3c91
 DIST iminuit-2.6.0.tar.gz 376846 BLAKE2B 
5c5c8ec223ede39ea3c02d3df0639e52047f897eed7b441d567ed3f88656c6ae5740efffb234bbf29ecfa4578bce38a6a5ff4983d738ad1321df35efd0c14acf
 SHA512 
6f413e11d8be3a823a7d12bf1e9197abb27561a15ec29127f6bf4c2339dfc67344b0900522d10e59dbbe1eb08bafb931950b2edb5f5679e06459bdf52abc1170
 DIST iminuit-2.6.1.tar.gz 376846 BLAKE2B 
bec73b182a24c242fe5c8931e7cb745728b8f492c8989c9d58615b71bcc705e5c36195e28158b550e06b9356235d5a89f9e170da62b808dd89a1083f705e0650
 SHA512 
5a600842c8e4ae0d2c1ec4b24d5f5a33dae6d0e7659b1908b4215289f82974d97a932366817c7af257d63bf5418080884c01936d84b55942f6149b05db7ab03f
+DIST iminuit-2.7.0.tar.gz 384016 BLAKE2B 
857df47e8f4779c41b32e624ce3c5dfe16f39f57441f1f32367c9170bfe6f74fb84eb67a54b773690ce5fdde762d3383adbaf97e81d917a17e2995b9e69623be
 SHA512 
c4f5ba80024e87e57087175b012d043df65079e5b8f0376ff7254ebb256ca845460b3c330043aacd960092178ce8fd4d8bd3cccd93ebe3515f7a9896b756c629

diff --git a/dev-python/iminuit/iminuit-2.7.0.ebuild 
b/dev-python/iminuit/iminuit-2.7.0.ebuild
new file mode 100644
index 000..10e6b9207df
--- /dev/null
+++ b/dev-python/iminuit/iminuit-2.7.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
+
+# forced implicitly
+CMAKE_MAKEFILE_GENERATOR=emake
+inherit cmake distutils-r1 virtualx
+
+DESCRIPTION="Minuit numerical function minimization in Python"
+HOMEPAGE="https://github.com/scikit-hep/iminuit/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT LGPL-2.1"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+
+RDEPEND="dev-python/numpy[${PYTHON_USEDEP}]"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   test? (
+   dev-python/ipython[${PYTHON_USEDEP}]
+   dev-python/matplotlib[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+python_test() {
+   virtx epytest
+}



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

2021-07-04 Thread Michał Górny
commit: a76f0ce6a17ca3ff3d03420f11c586267a569950
Author: Michał Górny  gentoo  org>
AuthorDate: Mon Jul  5 05:26:27 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul  5 05:26:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a76f0ce6

dev-python/setuptools: Bump to 57.1.0

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

 dev-python/setuptools/Manifest |  1 +
 dev-python/setuptools/setuptools-57.1.0.ebuild | 75 ++
 2 files changed, 76 insertions(+)

diff --git a/dev-python/setuptools/Manifest b/dev-python/setuptools/Manifest
index dde946c5829..6b60439279d 100644
--- a/dev-python/setuptools/Manifest
+++ b/dev-python/setuptools/Manifest
@@ -1 +1,2 @@
 DIST setuptools-57.0.0.tar.gz 2144749 BLAKE2B 
e1fc99503ee5de425b70bf2733b1c489693e38cd256bf95cb321671bdaf87745eaaf40c43bcd03756a4cefa408dd1414f8c30af274963e3a0ae57f7b95d3f9c0
 SHA512 
5277d8630367d6b16a49e36ed84d8cc6abfaedf87dac3f795b204626a8f15ca9fd80d158a465d8bcabe9c074c76b87c3378d82a4ba5feee1ac6a5f2c91db061e
+DIST setuptools-57.1.0.tar.gz 2144012 BLAKE2B 
148eb7b5e432461f692faeb3fd4eaafb99bb9fcd2c430cbde40fb16b365ed011ce49966a8923337a860b63cdc6d8f3a26efdd138cf4c40c99e72f7d714fce57c
 SHA512 
dfcf75584b3d7ae07e0f58ce8f596d7e9cbe3a0c178411053b066fb4362226bcf6467a79aed0853acd0b9f6a3371c47ddb07d77cbd780fe9782b8c19bce2e5fb

diff --git a/dev-python/setuptools/setuptools-57.1.0.ebuild 
b/dev-python/setuptools/setuptools-57.1.0.ebuild
new file mode 100644
index 000..df9cd63bcbe
--- /dev/null
+++ b/dev-python/setuptools/setuptools-57.1.0.ebuild
@@ -0,0 +1,75 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+# Set to 'manual' to avoid triggering install QA check
+DISTUTILS_USE_SETUPTOOLS=manual
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+PYTHON_REQ_USE="xml(+)"
+
+inherit distutils-r1 multiprocessing
+
+DESCRIPTION="Collection of extensions to Distutils"
+HOMEPAGE="https://github.com/pypa/setuptools 
https://pypi.org/project/setuptools/;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+IUSE="test"
+RESTRICT="!test? ( test )"
+
+BDEPEND="
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/jaraco-envs[${PYTHON_USEDEP}]
+   >=dev-python/jaraco-path-3.2.0[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pip[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   dev-python/pytest[${PYTHON_USEDEP}]
+   dev-python/pytest-fixture-config[${PYTHON_USEDEP}]
+   dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
+   dev-python/pytest-xdist[${PYTHON_USEDEP}]
+   >=dev-python/virtualenv-20[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   ' python3_{7..10} pypy3)
+   )
+"
+PDEPEND="
+   >=dev-python/certifi-2016.9.26[${PYTHON_USEDEP}]
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]"
+
+# Force in-source build because build system modifies sources.
+DISTUTILS_IN_SOURCE_BUILD=1
+
+DOCS=( {CHANGES,README}.rst )
+
+python_test() {
+   # keep in sync with python_gen_cond_dep above!
+   has "${EPYTHON}" python3.{7..10} pypy3 || continue
+
+   distutils_install_for_testing
+   local deselect=(
+   # network
+   
'setuptools/tests/test_virtualenv.py::test_pip_upgrade_from_source[None]'
+   setuptools/tests/test_distutils_adoption.py
+   # TODO
+   
setuptools/tests/test_easy_install.py::TestSetupRequires::test_setup_requires_with_allow_hosts
+   )
+   [[ ${EPYTHON} == pypy3 ]] && deselect+=(
+   
setuptools/tests/test_develop.py::TestDevelop::test_2to3_user_mode
+   )
+
+   # test_easy_install raises a SandboxViolation due to 
${HOME}/.pydistutils.cfg
+   # It tries to sandbox the test in a tempdir
+   HOME="${PWD}" epytest ${deselect[@]/#/--deselect } \
+   -n "$(makeopts_jobs "${MAKEOPTS}" "$(get_nproc)")" \
+   setuptools
+}
+
+python_install() {
+   export DISTRIBUTE_DISABLE_VERSIONED_EASY_INSTALL_SCRIPT=1
+   distutils-r1_python_install
+}



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

2021-07-04 Thread Michał Górny
commit: 46a2a8d90efe4cf8f29649263ecc4a13d542fe5d
Author: Alex R  gmail  com>
AuthorDate: Sun Jul  4 22:58:46 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Mon Jul  5 05:40:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=46a2a8d9

sys-libs/libcxx: use gcc libatomic only with libgcc_s

Signed-off-by: Alex Revin  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21516
Signed-off-by: Michał Górny  gentoo.org>

 sys-libs/libcxx/libcxx-12.0.0.ebuild  | 1 +
 sys-libs/libcxx/libcxx-12.0.1..ebuild | 1 +
 sys-libs/libcxx/libcxx-12.0.1_rc2.ebuild  | 1 +
 sys-libs/libcxx/libcxx-13.0.0..ebuild | 1 +
 4 files changed, 4 insertions(+)

diff --git a/sys-libs/libcxx/libcxx-12.0.0.ebuild 
b/sys-libs/libcxx/libcxx-12.0.0.ebuild
index c5ca6ee892f..3463d022a19 100644
--- a/sys-libs/libcxx/libcxx-12.0.0.ebuild
+++ b/sys-libs/libcxx/libcxx-12.0.0.ebuild
@@ -140,6 +140,7 @@ multilib_src_configure() {
-DLIBCXX_HAS_GCC_S_LIB=${want_gcc_s}
-DLIBCXX_INCLUDE_TESTS=$(usex test)
-DLIBCXX_USE_COMPILER_RT=${want_compiler_rt}
+   -DLIBCXX_HAS_ATOMIC_LIB=${want_gcc_s}
-DCMAKE_SHARED_LINKER_FLAGS="${extra_libs[*]} ${LDFLAGS}"
)
 

diff --git a/sys-libs/libcxx/libcxx-12.0.1..ebuild 
b/sys-libs/libcxx/libcxx-12.0.1..ebuild
index 1f529867fb7..861d92b62c2 100644
--- a/sys-libs/libcxx/libcxx-12.0.1..ebuild
+++ b/sys-libs/libcxx/libcxx-12.0.1..ebuild
@@ -131,6 +131,7 @@ multilib_src_configure() {
-DLIBCXX_HAS_GCC_S_LIB=${want_gcc_s}
-DLIBCXX_INCLUDE_TESTS=$(usex test)
-DLIBCXX_USE_COMPILER_RT=${want_compiler_rt}
+   -DLIBCXX_HAS_ATOMIC_LIB=${want_gcc_s}
-DCMAKE_SHARED_LINKER_FLAGS="${extra_libs[*]} ${LDFLAGS}"
)
 

diff --git a/sys-libs/libcxx/libcxx-12.0.1_rc2.ebuild 
b/sys-libs/libcxx/libcxx-12.0.1_rc2.ebuild
index 1f529867fb7..861d92b62c2 100644
--- a/sys-libs/libcxx/libcxx-12.0.1_rc2.ebuild
+++ b/sys-libs/libcxx/libcxx-12.0.1_rc2.ebuild
@@ -131,6 +131,7 @@ multilib_src_configure() {
-DLIBCXX_HAS_GCC_S_LIB=${want_gcc_s}
-DLIBCXX_INCLUDE_TESTS=$(usex test)
-DLIBCXX_USE_COMPILER_RT=${want_compiler_rt}
+   -DLIBCXX_HAS_ATOMIC_LIB=${want_gcc_s}
-DCMAKE_SHARED_LINKER_FLAGS="${extra_libs[*]} ${LDFLAGS}"
)
 

diff --git a/sys-libs/libcxx/libcxx-13.0.0..ebuild 
b/sys-libs/libcxx/libcxx-13.0.0..ebuild
index 1f529867fb7..861d92b62c2 100644
--- a/sys-libs/libcxx/libcxx-13.0.0..ebuild
+++ b/sys-libs/libcxx/libcxx-13.0.0..ebuild
@@ -131,6 +131,7 @@ multilib_src_configure() {
-DLIBCXX_HAS_GCC_S_LIB=${want_gcc_s}
-DLIBCXX_INCLUDE_TESTS=$(usex test)
-DLIBCXX_USE_COMPILER_RT=${want_compiler_rt}
+   -DLIBCXX_HAS_ATOMIC_LIB=${want_gcc_s}
-DCMAKE_SHARED_LINKER_FLAGS="${extra_libs[*]} ${LDFLAGS}"
)
 



[gentoo-commits] repo/proj/guru:dev commit in: app-emulation/arnold/

2021-07-04 Thread Samuel Bauer
commit: 19054dc81c4cddfd929384c2a137874b71fcf3c4
Author: Samuel Bauer  yahoo  fr>
AuthorDate: Mon Jul  5 01:23:38 2021 +
Commit: Samuel Bauer  yahoo  fr>
CommitDate: Mon Jul  5 01:24:22 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=19054dc8

app-emulation/arnold: wxwidgets eclass does not add x11-libs/wxGTK as a 
dependency

Signed-off-by: Samuel Bauer  yahoo.fr>

 app-emulation/arnold/arnold-20170513.ebuild | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/app-emulation/arnold/arnold-20170513.ebuild 
b/app-emulation/arnold/arnold-20170513.ebuild
index cfd2fa1e7..6704b1763 100644
--- a/app-emulation/arnold/arnold-20170513.ebuild
+++ b/app-emulation/arnold/arnold-20170513.ebuild
@@ -9,26 +9,27 @@ inherit cmake desktop wxwidgets
 
 DESCRIPTION="Amstrad CPC emulator"
 HOMEPAGE="http://www.cpctech.org.uk;
-SRC_URI="https://cpctech.cpc-live.com/arnsrc.zip -> ${P}.zip"
+SRC_URI="http://cpctech.cpc-live.com/arnsrc.zip -> ${P}.zip"
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 IUSE="inkz80"
 
-DEPEND="
+RDEPEND="
media-libs/libsdl2
virtual/opengl
+   x11-libs/wxGTK:${WX_GTK_VER}
 "
-RDEPEND="${DEPEND}"
+DEPEND="${RDEPEND}"
 BDEPEND="app-arch/unzip"
 
-S="${WORKDIR}/src"
+S=${WORKDIR}/src
 
 src_prepare() {
setup-wxwidgets
sed -i "4421s:=.*$:=wxT(\"/usr/share/${PN}/\");:" arngui/arnguiApp.cpp 
|| die
-   # Prevent running at 150% of original speed
+   # Prevent running at 150%
sed -i '390s/2/3/' arngui/sdl2/SDL2PlatformSpecific.cpp || die
cmake_src_prepare
 }



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

2021-07-04 Thread Sam James
commit: a93174fd64579f743baff6d984fad63fdbad7a53
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 04:27:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 04:27:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a93174fd

app-editors/neovim: restore dropped keywords

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

 app-editors/neovim/neovim-0.5.0.ebuild | 2 +-
 app-editors/neovim/neovim-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/neovim/neovim-0.5.0.ebuild 
b/app-editors/neovim/neovim-0.5.0.ebuild
index 317c3fb07b5..99aa872 100644
--- a/app-editors/neovim/neovim-0.5.0.ebuild
+++ b/app-editors/neovim/neovim-0.5.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/neovim/neovim.git;
 else
SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
 fi
 
 LICENSE="Apache-2.0 vim"

diff --git a/app-editors/neovim/neovim-.ebuild 
b/app-editors/neovim/neovim-.ebuild
index 317c3fb07b5..99aa872 100644
--- a/app-editors/neovim/neovim-.ebuild
+++ b/app-editors/neovim/neovim-.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/neovim/neovim.git;
 else
SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~x86 ~x64-macos"
 fi
 
 LICENSE="Apache-2.0 vim"



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

2021-07-04 Thread Sam James
commit: 556a93aa95eb525ae896e1323edbd000ab10d9ac
Author: Jeffrey Lin  icurse  nl>
AuthorDate: Sun Jul  4 01:02:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:31:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=556a93aa

app-editors/neovim: add 0.5.0

Signed-off-by: Jeffrey Lin  icurse.nl>
Closes: https://github.com/gentoo/gentoo/pull/21515
Signed-off-by: Sam James  gentoo.org>

 app-editors/neovim/Manifest|   1 +
 app-editors/neovim/neovim-0.5.0.ebuild | 113 +
 2 files changed, 114 insertions(+)

diff --git a/app-editors/neovim/Manifest b/app-editors/neovim/Manifest
index 7b24b5f8666..001bd9b171c 100644
--- a/app-editors/neovim/Manifest
+++ b/app-editors/neovim/Manifest
@@ -1 +1,2 @@
 DIST neovim-0.4.4.tar.gz 9558246 BLAKE2B 
b1d44898bb1e1ab40a7e1d7fb4448076c991ebe1a0956674548de82fe7a931d9eaffbf35ba03cf9c88466dcd628a55f1d7bf9e7a13f3dad74424d6d653ded60c
 SHA512 
ca5c2fe1784ac7b0d2117948ba2e9ae5d94e36d22ff9e0967047e1e03e605537672d85543897af335103215ad462c86962f25267d352a77d61bc3d1cafb3c183
+DIST neovim-0.5.0.tar.gz 10337976 BLAKE2B 
e7630e96fdd1a159ca68c8f61ed473a7fa7d0c5ebf7485e42c47f314f1a3031ac3f63519f4789d7244b9677f9fa9b2aabbffa1e11d97456255c44348acb814d3
 SHA512 
f6649f804faabb4104d3b28283932e40358c23990961f4ca7b380089318da312e59242746cee06387f4d881dd6514abbfec79c4063482383adfb4106e9e7a3a4

diff --git a/app-editors/neovim/neovim-0.5.0.ebuild 
b/app-editors/neovim/neovim-0.5.0.ebuild
new file mode 100644
index 000..0b1eed9a36f
--- /dev/null
+++ b/app-editors/neovim/neovim-0.5.0.ebuild
@@ -0,0 +1,113 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+LUA_COMPAT=( lua5-{1..2} luajit )
+
+inherit cmake lua-single optfeature xdg
+
+DESCRIPTION="Vim-fork focused on extensibility and agility."
+HOMEPAGE="https://neovim.io;
+
+if [[ ${PV} ==  ]]; then
+   inherit git-r3
+   EGIT_REPO_URI="https://github.com/neovim/neovim.git;
+else
+   SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~x86"
+fi
+
+LICENSE="Apache-2.0 vim"
+SLOT="0"
+IUSE="+lto +nvimpager +tui"
+
+REQUIRED_USE="${LUA_REQUIRED_USE}"
+# Upstream say the test library needs LuaJIT
+# 
https://github.com/neovim/neovim/blob/91109ffda23d0ce61cec245b1f4ffb99e7591b62/CMakeLists.txt#L377
+#REQUIRED_USE="test? ( lua_single_target_luajit )"
+#RESTRICT="!test? ( test )"
+
+# Upstream build scripts invoke the Lua interpreter
+BDEPEND="${LUA_DEPS}
+   dev-util/gperf
+   virtual/libiconv
+   virtual/libintl
+   virtual/pkgconfig
+"
+# TODO: add tests, dev-lua/busted has now got luajit support.
+# bug #584694
+DEPEND="${LUA_DEPS}
+   dev-lua/luv[${LUA_SINGLE_USEDEP}]
+   $(lua_gen_cond_dep '
+   dev-lua/lpeg[${LUA_USEDEP}]
+   dev-lua/mpack[${LUA_USEDEP}]
+   ')
+   $(lua_gen_cond_dep '
+   dev-lua/LuaBitOp[${LUA_USEDEP}]
+   ' lua5-{1,2})
+   dev-libs/libuv:0=
+   >=dev-libs/libvterm-0.1.2
+   dev-libs/msgpack:0=
+   dev-libs/tree-sitter:=
+   tui? (
+   dev-libs/libtermkey
+   >=dev-libs/unibilium-2.0.0:0=
+   )
+"
+RDEPEND="
+   ${DEPEND}
+   app-eselect/eselect-vi
+"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-0.4.4-cmake_lua_version.patch"
+   "${FILESDIR}/${PN}-0.4.4-cmake-release-type.patch"
+   "${FILESDIR}/${PN}-0.4.4-cmake-darwin.patch"
+)
+
+src_prepare() {
+   # use our system vim dir
+   sed -e "/^# define SYS_VIMRC_FILE/s|\$VIM|${EPREFIX}/etc/vim|" \
+   -i src/nvim/globals.h || die
+
+   cmake_src_prepare
+}
+
+src_configure() {
+   # Upstream default to LTO on non-debug builds
+   # Let's expose it as a USE flag because upstream
+   # have preferences for how we should use LTO
+   # if we want it on (not just -flto)
+   # ... but allow turning it off.
+   local mycmakeargs=(
+   -DUSE_BUNDLED=OFF
+   -DENABLE_LTO=$(usex lto)
+   -DFEAT_TUI=$(usex tui)
+   -DPREFER_LUA=$(usex lua_single_target_luajit no 
"$(lua_get_version)")
+   -DLUA_PRG="${ELUA}"
+   -DMIN_LOG_LEVEL=3
+   )
+   cmake_src_configure
+}
+
+src_install() {
+   cmake_src_install
+
+   # install a default configuration file
+   insinto /etc/vim
+   doins "${FILESDIR}"/sysinit.vim
+
+   # conditionally install a symlink for nvimpager
+   if use nvimpager; then
+   dosym ../share/nvim/runtime/macros/less.sh /usr/bin/nvimpager
+   fi
+}
+
+pkg_postinst() {
+   xdg_pkg_postinst
+   optfeature "clipboard support" x11-misc/xsel x11-misc/xclip 
gui-apps/wl-clipboard
+   optfeature "Python plugin support" dev-python/pynvim
+   optfeature "Ruby plugin support" dev-ruby/neovim-ruby-client
+   optfeature "remote/nvr 

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

2021-07-04 Thread Sam James
commit: 85056914f3226aa95a94509a9d7d6274b9f919b5
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 03:44:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:44:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=85056914

app-editors/neovim: drop USE_BUNDLED for now

Doesn't seem to make any difference.

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

 app-editors/neovim/neovim-0.5.0.ebuild | 2 +-
 app-editors/neovim/neovim-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/app-editors/neovim/neovim-0.5.0.ebuild 
b/app-editors/neovim/neovim-0.5.0.ebuild
index 0b1eed9a36f..317c3fb07b5 100644
--- a/app-editors/neovim/neovim-0.5.0.ebuild
+++ b/app-editors/neovim/neovim-0.5.0.ebuild
@@ -80,8 +80,8 @@ src_configure() {
# have preferences for how we should use LTO
# if we want it on (not just -flto)
# ... but allow turning it off.
+   # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now
local mycmakeargs=(
-   -DUSE_BUNDLED=OFF
-DENABLE_LTO=$(usex lto)
-DFEAT_TUI=$(usex tui)
-DPREFER_LUA=$(usex lua_single_target_luajit no 
"$(lua_get_version)")

diff --git a/app-editors/neovim/neovim-.ebuild 
b/app-editors/neovim/neovim-.ebuild
index 0b1eed9a36f..317c3fb07b5 100644
--- a/app-editors/neovim/neovim-.ebuild
+++ b/app-editors/neovim/neovim-.ebuild
@@ -80,8 +80,8 @@ src_configure() {
# have preferences for how we should use LTO
# if we want it on (not just -flto)
# ... but allow turning it off.
+   # TODO: Investigate USE_BUNDLED, doesn't seem to be needed right now
local mycmakeargs=(
-   -DUSE_BUNDLED=OFF
-DENABLE_LTO=$(usex lto)
-DFEAT_TUI=$(usex tui)
-DPREFER_LUA=$(usex lua_single_target_luajit no 
"$(lua_get_version)")



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

2021-07-04 Thread Sam James
commit: 40b1116979f9c8def20e31892d200297a2d7d5e6
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 03:36:08 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:36:08 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b11169

app-editors/neovim: sync live ebuild

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

 app-editors/neovim/neovim-.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-editors/neovim/neovim-.ebuild 
b/app-editors/neovim/neovim-.ebuild
index d8873b59f06..0b1eed9a36f 100644
--- a/app-editors/neovim/neovim-.ebuild
+++ b/app-editors/neovim/neovim-.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]]; then
EGIT_REPO_URI="https://github.com/neovim/neovim.git;
 else
SRC_URI="https://github.com/neovim/neovim/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+   KEYWORDS="~amd64 ~x86"
 fi
 
 LICENSE="Apache-2.0 vim"
@@ -46,12 +46,10 @@ DEPEND="${LUA_DEPS}
$(lua_gen_cond_dep '
dev-lua/LuaBitOp[${LUA_USEDEP}]
' lua5-{1,2})
-   dev-libs/libutf8proc:=
dev-libs/libuv:0=
>=dev-libs/libvterm-0.1.2
dev-libs/msgpack:0=
dev-libs/tree-sitter:=
-   net-libs/libnsl
tui? (
dev-libs/libtermkey
>=dev-libs/unibilium-2.0.0:0=
@@ -65,6 +63,7 @@ RDEPEND="
 PATCHES=(
"${FILESDIR}/${PN}-0.4.4-cmake_lua_version.patch"
"${FILESDIR}/${PN}-0.4.4-cmake-release-type.patch"
+   "${FILESDIR}/${PN}-0.4.4-cmake-darwin.patch"
 )
 
 src_prepare() {
@@ -82,6 +81,7 @@ src_configure() {
# if we want it on (not just -flto)
# ... but allow turning it off.
local mycmakeargs=(
+   -DUSE_BUNDLED=OFF
-DENABLE_LTO=$(usex lto)
-DFEAT_TUI=$(usex tui)
-DPREFER_LUA=$(usex lua_single_target_luajit no 
"$(lua_get_version)")



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

2021-07-04 Thread Sam James
commit: 6f42fae0b5e28e2aa9bc225bfe3982419a683c8d
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 03:25:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:25:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6f42fae0

sys-libs/glibc: Stabilize 2.33-r1 amd64, #792261

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

 sys-libs/glibc/glibc-2.33-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/glibc/glibc-2.33-r1.ebuild 
b/sys-libs/glibc/glibc-2.33-r1.ebuild
index 5131f4bd0ef..c829f65ffb2 100644
--- a/sys-libs/glibc/glibc-2.33-r1.ebuild
+++ b/sys-libs/glibc/glibc-2.33-r1.ebuild
@@ -23,7 +23,7 @@ PATCH_DEV=dilfridge
 if [[ ${PV} == * ]]; then
inherit git-r3
 else
-   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"
SRC_URI="mirror://gnu/glibc/${P}.tar.xz"
SRC_URI+=" 
https://dev.gentoo.org/~${PATCH_DEV}/distfiles/${P}-patches-${PATCH_VER}.tar.xz;
 fi



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

2021-07-04 Thread Sam James
commit: a070103d9cdfe09ca6b3568a8ad83bdfe0549dd2
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 03:24:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:24:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a070103d

www-client/chromium: Stabilize 91.0.4472.114 arm64, #796521

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

 www-client/chromium/chromium-91.0.4472.114.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/www-client/chromium/chromium-91.0.4472.114.ebuild 
b/www-client/chromium/chromium-91.0.4472.114.ebuild
index 986d0856563..ba08b840323 100644
--- a/www-client/chromium/chromium-91.0.4472.114.ebuild
+++ b/www-client/chromium/chromium-91.0.4472.114.ebuild
@@ -24,7 +24,7 @@ 
SRC_URI="https://commondatastorage.googleapis.com/chromium-browser-official/${P}
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 arm64 ~ppc64 ~x86"
 IUSE="component-build cups cpu_flags_arm_neon +hangouts headless 
+js-type-check kerberos official pic +proprietary-codecs pulseaudio screencast 
selinux +suid +system-ffmpeg +system-icu vaapi wayland widevine"
 REQUIRED_USE="
component-build? ( !suid )



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-xscreensaver/

2021-07-04 Thread Sam James
commit: 67274ba85db77391910260af13a4dae08d1371bb
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=67274ba8

sec-policy/selinux-xscreensaver: Unblock ~arm keyword.

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

 .../selinux-xscreensaver/selinux-xscreensaver-2.20200818-r2.ebuild| 4 ++--
 .../selinux-xscreensaver/selinux-xscreensaver-2.20210203-r1.ebuild| 2 +-
 sec-policy/selinux-xscreensaver/selinux-xscreensaver-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20200818-r2.ebuild 
b/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20200818-r2.ebuild
index 7e2edc3eee6..ad06963a158 100644
--- a/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xscreensaver"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi
 DEPEND="${DEPEND}
sec-policy/selinux-xserver

diff --git 
a/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20210203-r1.ebuild 
b/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20210203-r1.ebuild
index f20145b052d..f0d127de7ec 100644
--- a/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-xscreensaver/selinux-xscreensaver-2.20210203-r1.ebuild
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xscreensaver"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi
 DEPEND="${DEPEND}
sec-policy/selinux-xserver

diff --git a/sec-policy/selinux-xscreensaver/selinux-xscreensaver-.ebuild 
b/sec-policy/selinux-xscreensaver/selinux-xscreensaver-.ebuild
index e22075edc06..f0d127de7ec 100644
--- a/sec-policy/selinux-xscreensaver/selinux-xscreensaver-.ebuild
+++ b/sec-policy/selinux-xscreensaver/selinux-xscreensaver-.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"
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xscreensaver"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi
 DEPEND="${DEPEND}
sec-policy/selinux-xserver



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-wireshark/

2021-07-04 Thread Sam James
commit: 50ae83d4cef84eae1b9134d841facc43d23fdb12
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=50ae83d4

sec-policy/selinux-wireshark: Unblock ~arm keyword.

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

 sec-policy/selinux-wireshark/selinux-wireshark-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-wireshark/selinux-wireshark-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-wireshark/selinux-wireshark-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/sec-policy/selinux-wireshark/selinux-wireshark-2.20200818-r2.ebuild 
b/sec-policy/selinux-wireshark/selinux-wireshark-2.20200818-r2.ebuild
index 2aa0044b7c9..22c8ea92417 100644
--- a/sec-policy/selinux-wireshark/selinux-wireshark-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-wireshark/selinux-wireshark-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wireshark"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git 
a/sec-policy/selinux-wireshark/selinux-wireshark-2.20210203-r1.ebuild 
b/sec-policy/selinux-wireshark/selinux-wireshark-2.20210203-r1.ebuild
index 6c14f02f362..85cbd92256a 100644
--- a/sec-policy/selinux-wireshark/selinux-wireshark-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-wireshark/selinux-wireshark-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wireshark"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-wireshark/selinux-wireshark-.ebuild 
b/sec-policy/selinux-wireshark/selinux-wireshark-.ebuild
index 1bcf924bee8..85cbd92256a 100644
--- a/sec-policy/selinux-wireshark/selinux-wireshark-.ebuild
+++ b/sec-policy/selinux-wireshark/selinux-wireshark-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wireshark"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-wm/

2021-07-04 Thread Sam James
commit: 2099a5c64671a9ac050acd75ae1f73b1f25a
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2099

sec-policy/selinux-wm: Unblock ~arm keyword.

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

 sec-policy/selinux-wm/selinux-wm-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-wm/selinux-wm-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-wm/selinux-wm-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-wm/selinux-wm-2.20200818-r2.ebuild 
b/sec-policy/selinux-wm/selinux-wm-2.20200818-r2.ebuild
index 68988d43b0a..d675e623b25 100644
--- a/sec-policy/selinux-wm/selinux-wm-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-wm/selinux-wm-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wm"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-wm/selinux-wm-2.20210203-r1.ebuild 
b/sec-policy/selinux-wm/selinux-wm-2.20210203-r1.ebuild
index f3b67537052..38469afedfd 100644
--- a/sec-policy/selinux-wm/selinux-wm-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-wm/selinux-wm-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wm"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-wm/selinux-wm-.ebuild 
b/sec-policy/selinux-wm/selinux-wm-.ebuild
index 4a9d1c5e4df..38469afedfd 100644
--- a/sec-policy/selinux-wm/selinux-wm-.ebuild
+++ b/sec-policy/selinux-wm/selinux-wm-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wm"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-zabbix/

2021-07-04 Thread Sam James
commit: 5718c5cab679578d6f52056692cdffda10111d5c
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5718c5ca

sec-policy/selinux-zabbix: Unblock ~arm keyword.

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

 sec-policy/selinux-zabbix/selinux-zabbix-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-zabbix/selinux-zabbix-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-zabbix/selinux-zabbix-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-zabbix/selinux-zabbix-2.20200818-r2.ebuild 
b/sec-policy/selinux-zabbix/selinux-zabbix-2.20200818-r2.ebuild
index 6338b2390fc..0d89cd0ec61 100644
--- a/sec-policy/selinux-zabbix/selinux-zabbix-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-zabbix/selinux-zabbix-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for zabbix"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-zabbix/selinux-zabbix-2.20210203-r1.ebuild 
b/sec-policy/selinux-zabbix/selinux-zabbix-2.20210203-r1.ebuild
index dd9ce1c4f49..5709e2a0d79 100644
--- a/sec-policy/selinux-zabbix/selinux-zabbix-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-zabbix/selinux-zabbix-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for zabbix"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-zabbix/selinux-zabbix-.ebuild 
b/sec-policy/selinux-zabbix/selinux-zabbix-.ebuild
index 166beccd9bd..5709e2a0d79 100644
--- a/sec-policy/selinux-zabbix/selinux-zabbix-.ebuild
+++ b/sec-policy/selinux-zabbix/selinux-zabbix-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for zabbix"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-xprint/

2021-07-04 Thread Sam James
commit: 05992d645bb30b8231dd57d950c661e648bcba43
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=05992d64

sec-policy/selinux-xprint: Unblock ~arm keyword.

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

 sec-policy/selinux-xprint/selinux-xprint-2.20200818-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sec-policy/selinux-xprint/selinux-xprint-2.20200818-r2.ebuild 
b/sec-policy/selinux-xprint/selinux-xprint-2.20200818-r2.ebuild
index 79fe0b24866..75568a770a6 100644
--- a/sec-policy/selinux-xprint/selinux-xprint-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-xprint/selinux-xprint-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xprint"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-xen/

2021-07-04 Thread Sam James
commit: f77d81d6024a2431c9dc8f5663e9134aeaba5bbe
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f77d81d6

sec-policy/selinux-xen: Unblock ~arm keyword.

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

 sec-policy/selinux-xen/selinux-xen-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-xen/selinux-xen-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-xen/selinux-xen-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-xen/selinux-xen-2.20200818-r2.ebuild 
b/sec-policy/selinux-xen/selinux-xen-2.20200818-r2.ebuild
index ff2c41c1a7a..227515876ee 100644
--- a/sec-policy/selinux-xen/selinux-xen-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-xen/selinux-xen-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xen"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-xen/selinux-xen-2.20210203-r1.ebuild 
b/sec-policy/selinux-xen/selinux-xen-2.20210203-r1.ebuild
index 793445b30c9..94860d17b7b 100644
--- a/sec-policy/selinux-xen/selinux-xen-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-xen/selinux-xen-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xen"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-xen/selinux-xen-.ebuild 
b/sec-policy/selinux-xen/selinux-xen-.ebuild
index 9bd027ef3bc..94860d17b7b 100644
--- a/sec-policy/selinux-xen/selinux-xen-.ebuild
+++ b/sec-policy/selinux-xen/selinux-xen-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xen"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-xserver/

2021-07-04 Thread Sam James
commit: 3ba172ed5d810b9c99fa8c887c539128eaa58e2f
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3ba172ed

sec-policy/selinux-xserver: Unblock ~arm keyword.

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

 sec-policy/selinux-xserver/selinux-xserver-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-xserver/selinux-xserver-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-xserver/selinux-xserver-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-xserver/selinux-xserver-2.20200818-r2.ebuild 
b/sec-policy/selinux-xserver/selinux-xserver-2.20200818-r2.ebuild
index 5a355b2c406..3f73ec78d67 100644
--- a/sec-policy/selinux-xserver/selinux-xserver-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-xserver/selinux-xserver-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xserver"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-xserver/selinux-xserver-2.20210203-r1.ebuild 
b/sec-policy/selinux-xserver/selinux-xserver-2.20210203-r1.ebuild
index 340882e0aee..a73b20ea7cc 100644
--- a/sec-policy/selinux-xserver/selinux-xserver-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-xserver/selinux-xserver-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xserver"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-xserver/selinux-xserver-.ebuild 
b/sec-policy/selinux-xserver/selinux-xserver-.ebuild
index e8a1d11290e..a73b20ea7cc 100644
--- a/sec-policy/selinux-xserver/selinux-xserver-.ebuild
+++ b/sec-policy/selinux-xserver/selinux-xserver-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xserver"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-ucspitcp/

2021-07-04 Thread Sam James
commit: daaea35dad5a32eecd8e8a3d99574374e23f0246
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:13:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daaea35d

sec-policy/selinux-ucspitcp: Unblock ~arm keyword.

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

 sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-ucspitcp/selinux-ucspitcp-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20200818-r2.ebuild 
b/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20200818-r2.ebuild
index fb7d82368df..478279555b0 100644
--- a/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for ucspitcp"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20210203-r1.ebuild 
b/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20210203-r1.ebuild
index f71f3fc2e07..d304527111f 100644
--- a/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-ucspitcp/selinux-ucspitcp-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for ucspitcp"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-ucspitcp/selinux-ucspitcp-.ebuild 
b/sec-policy/selinux-ucspitcp/selinux-ucspitcp-.ebuild
index afc59e5..d304527111f 100644
--- a/sec-policy/selinux-ucspitcp/selinux-ucspitcp-.ebuild
+++ b/sec-policy/selinux-ucspitcp/selinux-ucspitcp-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for ucspitcp"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



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

2021-07-04 Thread Sam James
commit: 921388a3ba1202d38576a95c2675e6306d718a10
Author: Jonathan Davies  protonmail  com>
AuthorDate: Sun Jul  4 14:56:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=921388a3

app-admin/selint: Added ~arm keyword.

Signed-off-by: Jonathan Davies  protonmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21528
Signed-off-by: Sam James  gentoo.org>

 app-admin/selint/selint-1.1.0.ebuild | 4 ++--
 app-admin/selint/selint-1.2.0.ebuild | 2 +-
 app-admin/selint/selint-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/app-admin/selint/selint-1.1.0.ebuild 
b/app-admin/selint/selint-1.1.0.ebuild
index 76ff35921fc..dadbf3ec6cb 100644
--- a/app-admin/selint/selint-1.1.0.ebuild
+++ b/app-admin/selint/selint-1.1.0.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"
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/TresysTechnology/selint.git;
 else

SRC_URI="https://github.com/TresysTechnology/selint/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 LICENSE="Apache-2.0"

diff --git a/app-admin/selint/selint-1.2.0.ebuild 
b/app-admin/selint/selint-1.2.0.ebuild
index d4b097ca5dd..e7fc31765fa 100644
--- a/app-admin/selint/selint-1.2.0.ebuild
+++ b/app-admin/selint/selint-1.2.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/TresysTechnology/selint.git;
 else

SRC_URI="https://github.com/TresysTechnology/selint/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="amd64 x86"
+   KEYWORDS="amd64 ~arm x86"
 fi
 
 LICENSE="Apache-2.0"

diff --git a/app-admin/selint/selint-.ebuild 
b/app-admin/selint/selint-.ebuild
index 592cb7fbdf8..edf31eb39cb 100644
--- a/app-admin/selint/selint-.ebuild
+++ b/app-admin/selint/selint-.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"
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/TresysTechnology/selint.git;
 else

SRC_URI="https://github.com/TresysTechnology/selint/releases/download/v${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="~amd64 ~arm ~x86"
 fi
 
 LICENSE="Apache-2.0"



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-xfs/

2021-07-04 Thread Sam James
commit: c6f7659fe3385f0b6b7c1eff1839d90b3b70fe1c
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:05:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6f7659f

sec-policy/selinux-xfs: Unblock ~arm keyword.

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

 sec-policy/selinux-xfs/selinux-xfs-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-xfs/selinux-xfs-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-xfs/selinux-xfs-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-xfs/selinux-xfs-2.20200818-r2.ebuild 
b/sec-policy/selinux-xfs/selinux-xfs-2.20200818-r2.ebuild
index 3ea0aeb1be5..4bc810c37a0 100644
--- a/sec-policy/selinux-xfs/selinux-xfs-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-xfs/selinux-xfs-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xfs"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-xfs/selinux-xfs-2.20210203-r1.ebuild 
b/sec-policy/selinux-xfs/selinux-xfs-2.20210203-r1.ebuild
index d6acccbc7f7..7bde1883acb 100644
--- a/sec-policy/selinux-xfs/selinux-xfs-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-xfs/selinux-xfs-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xfs"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-xfs/selinux-xfs-.ebuild 
b/sec-policy/selinux-xfs/selinux-xfs-.ebuild
index b8dea2e046e..7bde1883acb 100644
--- a/sec-policy/selinux-xfs/selinux-xfs-.ebuild
+++ b/sec-policy/selinux-xfs/selinux-xfs-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for xfs"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-wine/

2021-07-04 Thread Sam James
commit: a5a29c7efff6ef4e434a1d2559c69c7ecda6b4e1
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5a29c7e

sec-policy/selinux-wine: Unblock ~arm keyword.

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

 sec-policy/selinux-wine/selinux-wine-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-wine/selinux-wine-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-wine/selinux-wine-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-wine/selinux-wine-2.20200818-r2.ebuild 
b/sec-policy/selinux-wine/selinux-wine-2.20200818-r2.ebuild
index 0bbafc8a05c..756d6db4b89 100644
--- a/sec-policy/selinux-wine/selinux-wine-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-wine/selinux-wine-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wine"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-wine/selinux-wine-2.20210203-r1.ebuild 
b/sec-policy/selinux-wine/selinux-wine-2.20210203-r1.ebuild
index 28c0a5e319d..d869dddfce5 100644
--- a/sec-policy/selinux-wine/selinux-wine-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-wine/selinux-wine-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wine"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-wine/selinux-wine-.ebuild 
b/sec-policy/selinux-wine/selinux-wine-.ebuild
index ddde6edc999..d869dddfce5 100644
--- a/sec-policy/selinux-wine/selinux-wine-.ebuild
+++ b/sec-policy/selinux-wine/selinux-wine-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wine"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-webalizer/

2021-07-04 Thread Sam James
commit: 13ead83ff4253402c0319aba4ee96726363414a1
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=13ead83f

sec-policy/selinux-webalizer: Unblock ~arm keyword.

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

 sec-policy/selinux-webalizer/selinux-webalizer-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-webalizer/selinux-webalizer-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-webalizer/selinux-webalizer-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git 
a/sec-policy/selinux-webalizer/selinux-webalizer-2.20200818-r2.ebuild 
b/sec-policy/selinux-webalizer/selinux-webalizer-2.20200818-r2.ebuild
index 05fb2862345..e243330b911 100644
--- a/sec-policy/selinux-webalizer/selinux-webalizer-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-webalizer/selinux-webalizer-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for webalizer"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi
 
 DEPEND="${DEPEND}

diff --git 
a/sec-policy/selinux-webalizer/selinux-webalizer-2.20210203-r1.ebuild 
b/sec-policy/selinux-webalizer/selinux-webalizer-2.20210203-r1.ebuild
index 9ef5e4a8ebe..a55befb852e 100644
--- a/sec-policy/selinux-webalizer/selinux-webalizer-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-webalizer/selinux-webalizer-2.20210203-r1.ebuild
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for webalizer"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi
 
 DEPEND="${DEPEND}

diff --git a/sec-policy/selinux-webalizer/selinux-webalizer-.ebuild 
b/sec-policy/selinux-webalizer/selinux-webalizer-.ebuild
index 2eb0924d8a0..a55befb852e 100644
--- a/sec-policy/selinux-webalizer/selinux-webalizer-.ebuild
+++ b/sec-policy/selinux-webalizer/selinux-webalizer-.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"
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for webalizer"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi
 
 DEPEND="${DEPEND}



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-vmware/

2021-07-04 Thread Sam James
commit: 787d67bf717945a7fcc16d7ea51a84633743cb35
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=787d67bf

sec-policy/selinux-vmware: Unblock ~arm keyword.

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

 sec-policy/selinux-vmware/selinux-vmware-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-vmware/selinux-vmware-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-vmware/selinux-vmware-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-vmware/selinux-vmware-2.20200818-r2.ebuild 
b/sec-policy/selinux-vmware/selinux-vmware-2.20200818-r2.ebuild
index 7c6160179b8..c1f4afdf186 100644
--- a/sec-policy/selinux-vmware/selinux-vmware-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-vmware/selinux-vmware-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vmware"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi
 DEPEND="${DEPEND}
sec-policy/selinux-xserver

diff --git a/sec-policy/selinux-vmware/selinux-vmware-2.20210203-r1.ebuild 
b/sec-policy/selinux-vmware/selinux-vmware-2.20210203-r1.ebuild
index bbce512a8c4..82d10d7a34a 100644
--- a/sec-policy/selinux-vmware/selinux-vmware-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-vmware/selinux-vmware-2.20210203-r1.ebuild
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vmware"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi
 DEPEND="${DEPEND}
sec-policy/selinux-xserver

diff --git a/sec-policy/selinux-vmware/selinux-vmware-.ebuild 
b/sec-policy/selinux-vmware/selinux-vmware-.ebuild
index 8f6e2fc966a..82d10d7a34a 100644
--- a/sec-policy/selinux-vmware/selinux-vmware-.ebuild
+++ b/sec-policy/selinux-vmware/selinux-vmware-.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"
@@ -11,7 +11,7 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vmware"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi
 DEPEND="${DEPEND}
sec-policy/selinux-xserver



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-watchdog/

2021-07-04 Thread Sam James
commit: 107558ccca77d6bce73e8636d2910fef23721743
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=107558cc

sec-policy/selinux-watchdog: Unblock ~arm keyword.

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

 sec-policy/selinux-watchdog/selinux-watchdog-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-watchdog/selinux-watchdog-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-watchdog/selinux-watchdog-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-watchdog/selinux-watchdog-2.20200818-r2.ebuild 
b/sec-policy/selinux-watchdog/selinux-watchdog-2.20200818-r2.ebuild
index 91ac8b9818b..1ce11e772c5 100644
--- a/sec-policy/selinux-watchdog/selinux-watchdog-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-watchdog/selinux-watchdog-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for watchdog"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-watchdog/selinux-watchdog-2.20210203-r1.ebuild 
b/sec-policy/selinux-watchdog/selinux-watchdog-2.20210203-r1.ebuild
index 3844a19b011..a04deecadb3 100644
--- a/sec-policy/selinux-watchdog/selinux-watchdog-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-watchdog/selinux-watchdog-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for watchdog"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-watchdog/selinux-watchdog-.ebuild 
b/sec-policy/selinux-watchdog/selinux-watchdog-.ebuild
index 9b76517076a..a04deecadb3 100644
--- a/sec-policy/selinux-watchdog/selinux-watchdog-.ebuild
+++ b/sec-policy/selinux-watchdog/selinux-watchdog-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for watchdog"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-vde/

2021-07-04 Thread Sam James
commit: bb68ccd88bb5872f8a2726703f67b9106d44c784
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:03:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bb68ccd8

sec-policy/selinux-vde: Unblock ~arm keyword.

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

 sec-policy/selinux-vde/selinux-vde-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-vde/selinux-vde-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-vde/selinux-vde-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-vde/selinux-vde-2.20200818-r2.ebuild 
b/sec-policy/selinux-vde/selinux-vde-2.20200818-r2.ebuild
index cdc266e47ad..8e0e33457a4 100644
--- a/sec-policy/selinux-vde/selinux-vde-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-vde/selinux-vde-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vde"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-vde/selinux-vde-2.20210203-r1.ebuild 
b/sec-policy/selinux-vde/selinux-vde-2.20210203-r1.ebuild
index f7d13b1ae48..05026fe7c3a 100644
--- a/sec-policy/selinux-vde/selinux-vde-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-vde/selinux-vde-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vde"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-vde/selinux-vde-.ebuild 
b/sec-policy/selinux-vde/selinux-vde-.ebuild
index c352ae5b655..05026fe7c3a 100644
--- a/sec-policy/selinux-vde/selinux-vde-.ebuild
+++ b/sec-policy/selinux-vde/selinux-vde-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vde"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-virt/

2021-07-04 Thread Sam James
commit: d362ef3901876016c94ab8fcbdbba479345247b0
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d362ef39

sec-policy/selinux-virt: Unblock ~arm keyword.

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

 sec-policy/selinux-virt/selinux-virt-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-virt/selinux-virt-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-virt/selinux-virt-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-virt/selinux-virt-2.20200818-r2.ebuild 
b/sec-policy/selinux-virt/selinux-virt-2.20200818-r2.ebuild
index e1f07cc7c48..063aa89a95d 100644
--- a/sec-policy/selinux-virt/selinux-virt-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-virt/selinux-virt-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for virt"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-virt/selinux-virt-2.20210203-r1.ebuild 
b/sec-policy/selinux-virt/selinux-virt-2.20210203-r1.ebuild
index cfdb675f360..eed186415c4 100644
--- a/sec-policy/selinux-virt/selinux-virt-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-virt/selinux-virt-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for virt"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-virt/selinux-virt-.ebuild 
b/sec-policy/selinux-virt/selinux-virt-.ebuild
index 212b7c40b8a..eed186415c4 100644
--- a/sec-policy/selinux-virt/selinux-virt-.ebuild
+++ b/sec-policy/selinux-virt/selinux-virt-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for virt"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-vnstatd/

2021-07-04 Thread Sam James
commit: b9d45f0b1aaa5a7fd4944c7c8ebada67839785d1
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9d45f0b

sec-policy/selinux-vnstatd: Unblock ~arm keyword.

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

 sec-policy/selinux-vnstatd/selinux-vnstatd-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-vnstatd/selinux-vnstatd-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-vnstatd/selinux-vnstatd-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20200818-r2.ebuild 
b/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20200818-r2.ebuild
index 76761a09f5c..0966e8271de 100644
--- a/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vnstatd"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20210203-r1.ebuild 
b/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20210203-r1.ebuild
index 1c0ad2b7413..ebed7151f4f 100644
--- a/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-vnstatd/selinux-vnstatd-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vnstatd"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-vnstatd/selinux-vnstatd-.ebuild 
b/sec-policy/selinux-vnstatd/selinux-vnstatd-.ebuild
index 29b6c095a65..ebed7151f4f 100644
--- a/sec-policy/selinux-vnstatd/selinux-vnstatd-.ebuild
+++ b/sec-policy/selinux-vnstatd/selinux-vnstatd-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vnstatd"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-vpn/

2021-07-04 Thread Sam James
commit: d75c346ffb347e40ccad2dd9f7a4ea1e4e902624
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d75c346f

sec-policy/selinux-vpn: Unblock ~arm keyword.

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

 sec-policy/selinux-vpn/selinux-vpn-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-vpn/selinux-vpn-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-vpn/selinux-vpn-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-vpn/selinux-vpn-2.20200818-r2.ebuild 
b/sec-policy/selinux-vpn/selinux-vpn-2.20200818-r2.ebuild
index fec33dc4e28..e3b99465964 100644
--- a/sec-policy/selinux-vpn/selinux-vpn-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-vpn/selinux-vpn-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vpn"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-vpn/selinux-vpn-2.20210203-r1.ebuild 
b/sec-policy/selinux-vpn/selinux-vpn-2.20210203-r1.ebuild
index b0059221646..c44298433ab 100644
--- a/sec-policy/selinux-vpn/selinux-vpn-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-vpn/selinux-vpn-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vpn"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-vpn/selinux-vpn-.ebuild 
b/sec-policy/selinux-vpn/selinux-vpn-.ebuild
index 070a05219cc..c44298433ab 100644
--- a/sec-policy/selinux-vpn/selinux-vpn-.ebuild
+++ b/sec-policy/selinux-vpn/selinux-vpn-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vpn"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-wireguard/

2021-07-04 Thread Sam James
commit: 398a505ec2d0cbb7cb126f7c3d4bacda47cd1128
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:22:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=398a505e

sec-policy/selinux-wireguard: Unblock ~arm keyword.

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

 sec-policy/selinux-wireguard/selinux-wireguard-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-wireguard/selinux-wireguard-.ebuild  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/sec-policy/selinux-wireguard/selinux-wireguard-2.20210203-r1.ebuild 
b/sec-policy/selinux-wireguard/selinux-wireguard-2.20210203-r1.ebuild
index dad8180b2e9..f3c2e5c6ae1 100644
--- a/sec-policy/selinux-wireguard/selinux-wireguard-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-wireguard/selinux-wireguard-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wireguard"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-wireguard/selinux-wireguard-.ebuild 
b/sec-policy/selinux-wireguard/selinux-wireguard-.ebuild
index dad8180b2e9..f3c2e5c6ae1 100644
--- a/sec-policy/selinux-wireguard/selinux-wireguard-.ebuild
+++ b/sec-policy/selinux-wireguard/selinux-wireguard-.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for wireguard"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-vlock/

2021-07-04 Thread Sam James
commit: 88e6ca94d4320a93d1c6ed0a593d3c6c711ff811
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:04:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88e6ca94

sec-policy/selinux-vlock: Unblock ~arm keyword.

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

 sec-policy/selinux-vlock/selinux-vlock-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-vlock/selinux-vlock-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-vlock/selinux-vlock-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-vlock/selinux-vlock-2.20200818-r2.ebuild 
b/sec-policy/selinux-vlock/selinux-vlock-2.20200818-r2.ebuild
index e90717a7d63..cd9f3514bd2 100644
--- a/sec-policy/selinux-vlock/selinux-vlock-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-vlock/selinux-vlock-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vlock"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-vlock/selinux-vlock-2.20210203-r1.ebuild 
b/sec-policy/selinux-vlock/selinux-vlock-2.20210203-r1.ebuild
index b9e540455df..e1a7ffa7c15 100644
--- a/sec-policy/selinux-vlock/selinux-vlock-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-vlock/selinux-vlock-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vlock"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-vlock/selinux-vlock-.ebuild 
b/sec-policy/selinux-vlock/selinux-vlock-.ebuild
index 6120a58de67..e1a7ffa7c15 100644
--- a/sec-policy/selinux-vlock/selinux-vlock-.ebuild
+++ b/sec-policy/selinux-vlock/selinux-vlock-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vlock"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-vdagent/

2021-07-04 Thread Sam James
commit: 99224198903354f5377d8aa3891fb66800ccd03a
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:03:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=99224198

sec-policy/selinux-vdagent: Unblock ~arm keyword.

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

 sec-policy/selinux-vdagent/selinux-vdagent-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-vdagent/selinux-vdagent-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-vdagent/selinux-vdagent-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-vdagent/selinux-vdagent-2.20200818-r2.ebuild 
b/sec-policy/selinux-vdagent/selinux-vdagent-2.20200818-r2.ebuild
index c7a1dce2a40..374180969bf 100644
--- a/sec-policy/selinux-vdagent/selinux-vdagent-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-vdagent/selinux-vdagent-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vdagent"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-vdagent/selinux-vdagent-2.20210203-r1.ebuild 
b/sec-policy/selinux-vdagent/selinux-vdagent-2.20210203-r1.ebuild
index a6a26285b6f..71803fd966e 100644
--- a/sec-policy/selinux-vdagent/selinux-vdagent-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-vdagent/selinux-vdagent-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vdagent"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-vdagent/selinux-vdagent-.ebuild 
b/sec-policy/selinux-vdagent/selinux-vdagent-.ebuild
index e549d655e16..71803fd966e 100644
--- a/sec-policy/selinux-vdagent/selinux-vdagent-.ebuild
+++ b/sec-policy/selinux-vdagent/selinux-vdagent-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vdagent"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-varnishd/

2021-07-04 Thread Sam James
commit: 2a4df69c6013beb109c6efeb35422a94ac08b2fa
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:03:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a4df69c

sec-policy/selinux-varnishd: Unblock ~arm keyword.

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

 sec-policy/selinux-varnishd/selinux-varnishd-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-varnishd/selinux-varnishd-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-varnishd/selinux-varnishd-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-varnishd/selinux-varnishd-2.20200818-r2.ebuild 
b/sec-policy/selinux-varnishd/selinux-varnishd-2.20200818-r2.ebuild
index 5c7d626d6be..b512486be9e 100644
--- a/sec-policy/selinux-varnishd/selinux-varnishd-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-varnishd/selinux-varnishd-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for varnishd"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-varnishd/selinux-varnishd-2.20210203-r1.ebuild 
b/sec-policy/selinux-varnishd/selinux-varnishd-2.20210203-r1.ebuild
index 61a4e409a86..78d6c6972d9 100644
--- a/sec-policy/selinux-varnishd/selinux-varnishd-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-varnishd/selinux-varnishd-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for varnishd"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-varnishd/selinux-varnishd-.ebuild 
b/sec-policy/selinux-varnishd/selinux-varnishd-.ebuild
index c2a7dea1731..78d6c6972d9 100644
--- a/sec-policy/selinux-varnishd/selinux-varnishd-.ebuild
+++ b/sec-policy/selinux-varnishd/selinux-varnishd-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for varnishd"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-uwimap/

2021-07-04 Thread Sam James
commit: 45d7fa68b132ae20387e256037ef700bfd0004b0
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:03:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45d7fa68

sec-policy/selinux-uwimap: Unblock ~arm keyword.

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

 sec-policy/selinux-uwimap/selinux-uwimap-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-uwimap/selinux-uwimap-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-uwimap/selinux-uwimap-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-uwimap/selinux-uwimap-2.20200818-r2.ebuild 
b/sec-policy/selinux-uwimap/selinux-uwimap-2.20200818-r2.ebuild
index 7655b6b063a..ec150b7e4d5 100644
--- a/sec-policy/selinux-uwimap/selinux-uwimap-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-uwimap/selinux-uwimap-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for uwimap"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-uwimap/selinux-uwimap-2.20210203-r1.ebuild 
b/sec-policy/selinux-uwimap/selinux-uwimap-2.20210203-r1.ebuild
index 2fd7b59c96d..05e69de7080 100644
--- a/sec-policy/selinux-uwimap/selinux-uwimap-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-uwimap/selinux-uwimap-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for uwimap"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-uwimap/selinux-uwimap-.ebuild 
b/sec-policy/selinux-uwimap/selinux-uwimap-.ebuild
index f0c62bf537f..05e69de7080 100644
--- a/sec-policy/selinux-uwimap/selinux-uwimap-.ebuild
+++ b/sec-policy/selinux-uwimap/selinux-uwimap-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for uwimap"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-uwsgi/

2021-07-04 Thread Sam James
commit: e050b5f7a73056cf8399e2a247657457aff6511f
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:03:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e050b5f7

sec-policy/selinux-uwsgi: Unblock ~arm keyword.

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

 sec-policy/selinux-uwsgi/selinux-uwsgi-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-uwsgi/selinux-uwsgi-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-uwsgi/selinux-uwsgi-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20200818-r2.ebuild 
b/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20200818-r2.ebuild
index 02373403413..0d04f671d24 100644
--- a/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for uWSGI"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20210203-r1.ebuild 
b/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20210203-r1.ebuild
index 726dea357ee..204ddfaa712 100644
--- a/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-uwsgi/selinux-uwsgi-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for uWSGI"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-uwsgi/selinux-uwsgi-.ebuild 
b/sec-policy/selinux-uwsgi/selinux-uwsgi-.ebuild
index 15ebcc5fff2..204ddfaa712 100644
--- a/sec-policy/selinux-uwsgi/selinux-uwsgi-.ebuild
+++ b/sec-policy/selinux-uwsgi/selinux-uwsgi-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for uWSGI"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



[gentoo-commits] repo/gentoo:master commit in: sec-policy/selinux-vbetool/

2021-07-04 Thread Sam James
commit: c30bc7d8ddd680bf2b6013a99657af659e75c95d
Author: Jonathan Davies  protonmail  com>
AuthorDate: Mon Jul  5 03:03:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 03:21:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c30bc7d8

sec-policy/selinux-vbetool: Unblock ~arm keyword.

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

 sec-policy/selinux-vbetool/selinux-vbetool-2.20200818-r2.ebuild | 4 ++--
 sec-policy/selinux-vbetool/selinux-vbetool-2.20210203-r1.ebuild | 2 +-
 sec-policy/selinux-vbetool/selinux-vbetool-.ebuild  | 4 ++--
 3 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/sec-policy/selinux-vbetool/selinux-vbetool-2.20200818-r2.ebuild 
b/sec-policy/selinux-vbetool/selinux-vbetool-2.20200818-r2.ebuild
index 3c122d1ad1b..24d4bc67bc4 100644
--- a/sec-policy/selinux-vbetool/selinux-vbetool-2.20200818-r2.ebuild
+++ b/sec-policy/selinux-vbetool/selinux-vbetool-2.20200818-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="7"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vbetool"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="amd64 -arm ~arm64 ~mips x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips x86"
 fi

diff --git a/sec-policy/selinux-vbetool/selinux-vbetool-2.20210203-r1.ebuild 
b/sec-policy/selinux-vbetool/selinux-vbetool-2.20210203-r1.ebuild
index a049089ff8a..9d298b09288 100644
--- a/sec-policy/selinux-vbetool/selinux-vbetool-2.20210203-r1.ebuild
+++ b/sec-policy/selinux-vbetool/selinux-vbetool-2.20210203-r1.ebuild
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vbetool"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi

diff --git a/sec-policy/selinux-vbetool/selinux-vbetool-.ebuild 
b/sec-policy/selinux-vbetool/selinux-vbetool-.ebuild
index a193a4f5825..9d298b09288 100644
--- a/sec-policy/selinux-vbetool/selinux-vbetool-.ebuild
+++ b/sec-policy/selinux-vbetool/selinux-vbetool-.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"
@@ -11,5 +11,5 @@ inherit selinux-policy-2
 DESCRIPTION="SELinux policy for vbetool"
 
 if [[ ${PV} != * ]] ; then
-   KEYWORDS="~amd64 -arm ~arm64 ~mips ~x86"
+   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
 fi



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

2021-07-04 Thread Georgy Yakovlev
commit: f3cebb9e2ab43635b943614d439f3194efd50624
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jul  5 01:41:19 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jul  5 01:41:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f3cebb9e

profiles: add date to kernel mask

it was forgotten
Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 78991c3f9fe..b4d0e1ef486 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,7 +32,7 @@
 
 #--- END OF EXAMPLES ---
 
-# Georgy Yakovlev 
+# Georgy Yakovlev  (2021-07-04)
 # severely broken nfs
 # possibly depper problem due to bug in mm/page_alloc
 # 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ff4b2b4014cbffb3d32b22629252f4dc8616b0fe



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

2021-07-04 Thread Alessandro Barbieri
commit: 4dd5263f945a2ae32f4afb3b9633b10546497b27
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jul  5 01:37:38 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jul  5 01:37:47 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4dd5263f

dev-lang/aldor: fix hardcoded cc

Closes: https://bugs.gentoo.org/800257
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-lang/aldor/aldor-1.2.0_p20190730-r1.ebuild | 7 +--
 1 file changed, 5 insertions(+), 2 deletions(-)

diff --git a/dev-lang/aldor/aldor-1.2.0_p20190730-r1.ebuild 
b/dev-lang/aldor/aldor-1.2.0_p20190730-r1.ebuild
index 563f8536a..10415d8b0 100644
--- a/dev-lang/aldor/aldor-1.2.0_p20190730-r1.ebuild
+++ b/dev-lang/aldor/aldor-1.2.0_p20190730-r1.ebuild
@@ -5,7 +5,7 @@ EAPI="7"
 
 COMMIT="13e5b90eecc79ec6704efb333c4c100187520e80"
 
-inherit autotools elisp-common flag-o-matic java-pkg-opt-2
+inherit autotools elisp-common flag-o-matic java-pkg-opt-2 toolchain-funcs
 
 DESCRIPTION="The Aldor Programming Language"
 HOMEPAGE="http://pippijn.github.io/aldor;
@@ -67,8 +67,11 @@ src_unpack() {
 }
 
 src_prepare() {
+   tc-export CC
#should be conditional with boehm-gc
-   sed -i 's|-L /usr/X11/lib|-L /usr/X11/lib -lgc|' aldor/src/aldor.conf 
|| die
+   sed -e 's|-L /usr/X11/lib|-L /usr/X11/lib -lgc|g' -i 
aldor/src/aldor.conf || die
+   #fix hardcoded cc
+   sed -e "s|cc-name\", \"cc\"|cc-name\", \"${CC}\"|g" -i 
aldor/subcmd/unitools/unicl.c || die
 
default
eautoreconf



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/hypercorn/, dev-python/hypercorn/files/

2021-07-04 Thread Alessandro Barbieri
commit: d60b2ff1e30f2cf31c8879e9854e0aefd1d1922b
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jul  5 01:20:16 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jul  5 01:20:16 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d60b2ff1

dev-python/hypercorn: ebuild maintenance

Closes: https://bugs.gentoo.org/784044
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri  gmail.com>

 .../hypercorn/files/hypercorn-0.11.2-no-coverage.patch |  9 +
 dev-python/hypercorn/hypercorn-0.11.2.ebuild   | 18 ++
 2 files changed, 15 insertions(+), 12 deletions(-)

diff --git a/dev-python/hypercorn/files/hypercorn-0.11.2-no-coverage.patch 
b/dev-python/hypercorn/files/hypercorn-0.11.2-no-coverage.patch
new file mode 100644
index 0..8c3f4210a
--- /dev/null
+++ b/dev-python/hypercorn/files/hypercorn-0.11.2-no-coverage.patch
@@ -0,0 +1,9 @@
+--- a/setup.cfg
 b/setup.cfg
+@@ -43,5 +43,5 @@
+ ignore_missing_imports = True
+ 
+ [tool:pytest]
+-addopts = --no-cov-on-fail --showlocals
++addopts = --showlocals
+ testpaths = tests

diff --git a/dev-python/hypercorn/hypercorn-0.11.2.ebuild 
b/dev-python/hypercorn/hypercorn-0.11.2.ebuild
index 56221e820..181ee3e08 100644
--- a/dev-python/hypercorn/hypercorn-0.11.2.ebuild
+++ b/dev-python/hypercorn/hypercorn-0.11.2.ebuild
@@ -3,20 +3,20 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
 DISTUTILS_USE_SETUPTOOLS=rdepend
-
 DOCS_BUILDER="sphinx"
 DOCS_DEPEND="
dev-python/sphinxcontrib-napoleon
dev-python/pydata-sphinx-theme
 "
 DOCS_DIR="${S}/docs"
+PYTHON_COMPAT=( python3_{8..9} )
 
 inherit distutils-r1 docs optfeature
 
 DESCRIPTION="ASGI Server based on Hyper libraries and inspired by Gunicorn"
 HOMEPAGE="
+   https://pgjones.gitlab.io/hypercorn
https://gitlab.com/pgjones/hypercorn
https://github.com/pgjones/hypercorn
https://pypi.org/project/Hypercorn
@@ -33,29 +33,23 @@ RDEPEND="
dev-python/priority[${PYTHON_USEDEP}]
dev-python/toml[${PYTHON_USEDEP}]
>=dev-python/wsproto-0.14.0[${PYTHON_USEDEP}]
-   $(python_gen_cond_dep 'dev-python/typing-extensions[${PYTHON_USEDEP}]' 
python3_7)
 "
 BDEPEND="
test? (
dev-python/hypothesis[${PYTHON_USEDEP}]
>=dev-python/mock-4[${PYTHON_USEDEP}]
-   

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

2021-07-04 Thread Craig Andrews
commit: 3d624f2c37495585b893baa8e9524f4c1a73b625
Author: Ryan Slawson  gmail  com>
AuthorDate: Mon Jul  5 00:22:04 2021 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jul  5 01:08:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3d624f2c

sys-devel/llvm-roc: add back -DCMAKE_DISABLE_FIND_PACKAGE_CUDA=ON

Signed-off-by: Ryan Slawson  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/21531
Closes: https://bugs.gentoo.org/800554
Signed-off-by: Craig Andrews  gentoo.org>

 sys-devel/llvm-roc/llvm-roc-4.2.0.ebuild | 1 +
 1 file changed, 1 insertion(+)

diff --git a/sys-devel/llvm-roc/llvm-roc-4.2.0.ebuild 
b/sys-devel/llvm-roc/llvm-roc-4.2.0.ebuild
index 473d4458155..b008b6ca513 100644
--- a/sys-devel/llvm-roc/llvm-roc-4.2.0.ebuild
+++ b/sys-devel/llvm-roc/llvm-roc-4.2.0.ebuild
@@ -67,6 +67,7 @@ src_configure() {
 
local mycmakeargs=(
-DCMAKE_INSTALL_PREFIX="${EPREFIX}/usr/lib/llvm/roc"
+   -DCMAKE_DISABLE_FIND_PACKAGE_CUDA=ON
-DLLVM_ENABLE_PROJECTS="${PROJECTS}"
-DLLVM_TARGETS_TO_BUILD="AMDGPU;X86"
-DLLVM_BUILD_DOCS=NO



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-iptvsimple/

2021-07-04 Thread Craig Andrews
commit: 0526cc68418aeb81d8f948294ed966a4f7b1b396
Author: Craig Andrews  gentoo  org>
AuthorDate: Sun Jul  4 23:36:37 2021 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jul  5 01:07:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0526cc68

media-plugins/kodi-pvr-iptvsimple: 7.6.7 version bump

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

 media-plugins/kodi-pvr-iptvsimple/Manifest |  1 +
 .../kodi-pvr-iptvsimple-7.6.7.ebuild   | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/media-plugins/kodi-pvr-iptvsimple/Manifest 
b/media-plugins/kodi-pvr-iptvsimple/Manifest
index 8b9aa90922f..57f24c83632 100644
--- a/media-plugins/kodi-pvr-iptvsimple/Manifest
+++ b/media-plugins/kodi-pvr-iptvsimple/Manifest
@@ -1,2 +1,3 @@
 DIST kodi-pvr-iptvsimple-7.6.5.tar.gz 192388 BLAKE2B 
596622b1058c392656dc27fd0a1b615f9fe1ce12695adc4e26aa5417e5250d6f18fcc3cafaab4d6c53d00c44fb57821fdc976b4efe369e24a3997921606dbeef
 SHA512 
ef16b71cb1adf6d68e74935a12d5ecb8c52c732f5a69e0765558107f356686c83427356bbef3227b6744ea314ef2f1e6c2548ecb1f90a38a521d351048fac43a
 DIST kodi-pvr-iptvsimple-7.6.6.tar.gz 282395 BLAKE2B 
cdb3a98f9e727aad872f91a9f8784a797c0a87f6ce05ec0a21630b3912fc8a5b6548b94fcff58c35c62618c00bcedb8abcf45b7073afcd35dfde576034e75617
 SHA512 
7a927bed2e2121f3949a706cbd0f8085462f66dc8cfe3bfd686364cb8412f7feec53440054839ea2b6ac8bc124a15875112aff906c04c86d5867194e42875c30
+DIST kodi-pvr-iptvsimple-7.6.7.tar.gz 283836 BLAKE2B 
ac9a49ce09dfb02c5f69c57bbcfe2112fe7c68610e702c1690bf07398d53954512650294eb34d82cc3da037b6925beda4bb226ae55526c1a5837a97631b6e0e7
 SHA512 
ba9d70da83cb503f30027b2d57941f84a13b335596d085cc59a1dc61ce05e08735c6dd260fc17ac9175035a5928f211d045a8da462e323f6e9d7ed852eeede95

diff --git a/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-7.6.7.ebuild 
b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-7.6.7.ebuild
new file mode 100644
index 000..36d5b715c65
--- /dev/null
+++ b/media-plugins/kodi-pvr-iptvsimple/kodi-pvr-iptvsimple-7.6.7.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake kodi-addon
+
+DESCRIPTION="Kodi's IPTVSimple client addon"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.iptvsimple;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.iptvsimple.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Matrix"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.iptvsimple/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.iptvsimple-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   dev-libs/pugixml
+   =media-tv/kodi-19*
+   sys-libs/zlib
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "
+
+src_prepare() {
+   [ -d depends ] && rm -rf depends || die
+   cmake_src_prepare
+}



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-demo/

2021-07-04 Thread Craig Andrews
commit: 7b334a9d070e729ea08e41964ea58e5fc3e50f10
Author: Craig Andrews  gentoo  org>
AuthorDate: Sun Jul  4 23:35:58 2021 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Mon Jul  5 01:07:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7b334a9d

media-plugins/kodi-pvr-demo: 7.1.4 version bump

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

 media-plugins/kodi-pvr-demo/Manifest   |  1 +
 .../kodi-pvr-demo/kodi-pvr-demo-7.1.4.ebuild   | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/media-plugins/kodi-pvr-demo/Manifest 
b/media-plugins/kodi-pvr-demo/Manifest
index 72bc4825d16..ebd11c7f941 100644
--- a/media-plugins/kodi-pvr-demo/Manifest
+++ b/media-plugins/kodi-pvr-demo/Manifest
@@ -1 +1,2 @@
 DIST kodi-pvr-demo-7.1.3.tar.gz 42285 BLAKE2B 
c2bb67dc47bb85e26bc4cd34d72d272507bb635b1e6f5d14ce57575b6493448bb362a0ac7e0334852b84e9fe4f0f1df611ec9965c11f05dbd91f9b1a93ef7d22
 SHA512 
faf896f1a531d9bb35c36cd303ec75f66f22030fedc43c1a83a25591d7297e57148bf8adc34d6072370c861b34ee1b9bc037997817cfdd651b069c0057366d2e
+DIST kodi-pvr-demo-7.1.4.tar.gz 47972 BLAKE2B 
3950951573c03da2c6a9f599e2c5122fc208004fd4ad4acf88af2760a5502a087aeba2351c938d60aa54981805dafdd3802c7bd58b8eba8028ff205069b93a31
 SHA512 
7f1468727024cbe627c2e0608e02815877593f23b9592d6caaadf2147dbc48b09f0405db5b67de9277cef362715de68d2099152f5fc9fc137b67bbc34f3a1e87

diff --git a/media-plugins/kodi-pvr-demo/kodi-pvr-demo-7.1.4.ebuild 
b/media-plugins/kodi-pvr-demo/kodi-pvr-demo-7.1.4.ebuild
new file mode 100644
index 000..cb6e25589b8
--- /dev/null
+++ b/media-plugins/kodi-pvr-demo/kodi-pvr-demo-7.1.4.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake kodi-addon
+
+DESCRIPTION="Demo PVR for Kodi"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.demo;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.demo.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Matrix"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.demo/archive/${PV}-${CODENAME}.tar.gz 
-> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.demo-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =media-tv/kodi-19*
+   dev-libs/tinyxml
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "



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

2021-07-04 Thread Alessandro Barbieri
commit: d5b78154dd9e51bba4e0afa9b04f09b2ba80dedc
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jul  5 01:01:19 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jul  5 01:01:19 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=d5b78154

dev-python/webpy: ebuild maintenance

Closes: https://bugs.gentoo.org/788319
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/webpy/webpy-0.62.ebuild | 25 +++--
 1 file changed, 15 insertions(+), 10 deletions(-)

diff --git a/dev-python/webpy/webpy-0.62.ebuild 
b/dev-python/webpy/webpy-0.62.ebuild
index 5adfaa913..083e62602 100644
--- a/dev-python/webpy/webpy-0.62.ebuild
+++ b/dev-python/webpy/webpy-0.62.ebuild
@@ -1,16 +1,17 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI="8"
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1
 
 DESCRIPTION="A web framework for python that is as simple as it is powerful"
 HOMEPAGE="
-   https://webpy.org/
+   https://webpy.org
https://github.com/webpy/webpy
+   https://pypi.org/project/web.py
 "
 SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz -> ${P}.tar.gz"
 
@@ -18,12 +19,7 @@ LICENSE="public-domain"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
 
-RDEPEND="
-   dev-python/cheroot[${PYTHON_USEDEP}]
-"
-BDEPEND="test? (
-   >=dev-python/pytest-4.6.2[${PYTHON_USEDEP}]
-)"
+RDEPEND="dev-python/cheroot[${PYTHON_USEDEP}]"
 
 distutils_enable_tests pytest
 distutils_enable_sphinx docs
@@ -33,3 +29,12 @@ src_prepare() {
rm tests/test_db.py
default
 }
+
+python_test() {
+   #https://github.com/webpy/webpy/issues/712
+   #https://github.com/webpy/webpy/issues/713
+   epytest -vv \
+   --deselect 
tests/test_application.py::ApplicationTest::test_routing \
+   --deselect 
tests/test_session.py::DiskStoreTest::testStoreConcurrent \
+   || die
+}



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

2021-07-04 Thread Sam James
commit: 36493daba681aa32e4fcf1df45030af0a38dcf68
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 00:52:53 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 00:52:53 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=36493dab

sys-apps/portage: Stabilize 3.0.20-r6 ppc, #796503

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

 sys-apps/portage/portage-3.0.20-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-3.0.20-r6.ebuild 
b/sys-apps/portage/portage-3.0.20-r6.ebuild
index b380e6e4a66..1917faa8bba 100644
--- a/sys-apps/portage/portage-3.0.20-r6.ebuild
+++ b/sys-apps/portage/portage-3.0.20-r6.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-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"
 SLOT="0"
 IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux test xattr"
 RESTRICT="!test? ( test )"



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

2021-07-04 Thread Sam James
commit: 71967da8a7c26c9b6744af4ea7ee68dee0d31795
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 00:52:58 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 00:52:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=71967da8

sys-apps/portage: Stabilize 3.0.20-r6 ppc64, #796503

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

 sys-apps/portage/portage-3.0.20-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-3.0.20-r6.ebuild 
b/sys-apps/portage/portage-3.0.20-r6.ebuild
index 1917faa8bba..9cac0509113 100644
--- a/sys-apps/portage/portage-3.0.20-r6.ebuild
+++ b/sys-apps/portage/portage-3.0.20-r6.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-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"
 SLOT="0"
 IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux test xattr"
 RESTRICT="!test? ( test )"



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

2021-07-04 Thread Sam James
commit: 16947c0a7e3da5e9db777f41eb6997b45735ca95
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 00:52:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 00:52:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=16947c0a

sys-apps/portage: Stabilize 3.0.20-r6 arm, #796503

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

 sys-apps/portage/portage-3.0.20-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-3.0.20-r6.ebuild 
b/sys-apps/portage/portage-3.0.20-r6.ebuild
index e0104657fc2..516fb8c107e 100644
--- a/sys-apps/portage/portage-3.0.20-r6.ebuild
+++ b/sys-apps/portage/portage-3.0.20-r6.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-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"
 SLOT="0"
 IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux test xattr"
 RESTRICT="!test? ( test )"



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

2021-07-04 Thread Sam James
commit: 0bcaa4645dcf8b42a68c0f66a00a0a649a0d8636
Author: Sam James  gentoo  org>
AuthorDate: Mon Jul  5 00:52:47 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Mon Jul  5 00:52:47 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bcaa464

sys-apps/portage: Stabilize 3.0.20-r6 arm64, #796503

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

 sys-apps/portage/portage-3.0.20-r6.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/portage/portage-3.0.20-r6.ebuild 
b/sys-apps/portage/portage-3.0.20-r6.ebuild
index 516fb8c107e..b380e6e4a66 100644
--- a/sys-apps/portage/portage-3.0.20-r6.ebuild
+++ b/sys-apps/portage/portage-3.0.20-r6.ebuild
@@ -14,7 +14,7 @@ DESCRIPTION="Portage is the package management and 
distribution system for Gento
 HOMEPAGE="https://wiki.gentoo.org/wiki/Project:Portage;
 
 LICENSE="GPL-2"
-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"
 SLOT="0"
 IUSE="apidoc build doc gentoo-dev +ipc +native-extensions +rsync-verify 
selinux test xattr"
 RESTRICT="!test? ( test )"



[gentoo-commits] repo/proj/guru:dev commit in: dev-python/yara-python/files/, dev-python/yara-python/

2021-07-04 Thread Alessandro Barbieri
commit: 4a5259196038d7dd221e7a927d9ebcf9c5310e6a
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jul  5 00:42:45 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jul  5 00:43:18 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4a525919

dev-python/yara-python: link to libyara.so

Closes: https://bugs.gentoo.org/800260
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri  gmail.com>

 .../yara-python/files/yara-python-4.1.0-system-libyara.patch   | 10 ++
 dev-python/yara-python/yara-python-4.1.0.ebuild|  9 ++---
 2 files changed, 16 insertions(+), 3 deletions(-)

diff --git 
a/dev-python/yara-python/files/yara-python-4.1.0-system-libyara.patch 
b/dev-python/yara-python/files/yara-python-4.1.0-system-libyara.patch
new file mode 100644
index 0..dd2740073
--- /dev/null
+++ b/dev-python/yara-python/files/yara-python-4.1.0-system-libyara.patch
@@ -0,0 +1,10 @@
+--- a/setup.py
 b/setup.py
+@@ -370,5 +370,6 @@
+ 'update': UpdateCommand},
+ ext_modules=[Extension(
+ name='yara',
+-include_dirs=['yara/libyara/include', 'yara/libyara/', '.'],
++include_dirs=['/usr/include', 'yara/libyara/include', 
'yara/libyara/', '.'],
++  libraries=['yara'],
+ sources=['yara-python.c'])])

diff --git a/dev-python/yara-python/yara-python-4.1.0.ebuild 
b/dev-python/yara-python/yara-python-4.1.0.ebuild
index 0f524d839..32a20b842 100644
--- a/dev-python/yara-python/yara-python-4.1.0.ebuild
+++ b/dev-python/yara-python/yara-python-4.1.0.ebuild
@@ -1,11 +1,12 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{8..10} pypy3 )
+#with pypy3 undefined symbol: PyDescr_NewGetSet
+PYTHON_COMPAT=( python3_{8..10} )
 
-inherit distutils-r1 eutils
+inherit distutils-r1
 
 DESCRIPTION="Python interface for a malware identification and classification 
tool"
 HOMEPAGE="https://github.com/VirusTotal/yara-python;
@@ -21,6 +22,8 @@ RDEPEND="
 "
 DEPEND="${RDEPEND}"
 
+PATCHES=( "${FILESDIR}/${P}-system-libyara.patch" )
+
 distutils_enable_tests setup.py
 
 compile_python() {



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

2021-07-04 Thread Alessandro Barbieri
commit: 23977e932ec697c08b0ea2f91ac80f1a4c163209
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul  4 23:53:47 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jul  5 00:43:18 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=23977e93

dev-python/pytest-cython: ebuild maintenance

Closes: https://bugs.gentoo.org/800374
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/pytest-cython/Manifest  |  1 -
 .../pytest-cython/pytest-cython-0.1.0-r2.ebuild| 34 --
 .../pytest-cython/pytest-cython-0.1.1.ebuild   | 10 ++-
 3 files changed, 2 insertions(+), 43 deletions(-)

diff --git a/dev-python/pytest-cython/Manifest 
b/dev-python/pytest-cython/Manifest
index 38d733099..f5da597e9 100644
--- a/dev-python/pytest-cython/Manifest
+++ b/dev-python/pytest-cython/Manifest
@@ -1,2 +1 @@
-DIST pytest-cython-0.1.0.tar.gz 19109 BLAKE2B 
75895992402f36010385e0851cce4532825d374cc9d5af1b45d4dc938070da1f9e8c9901601ac10e3fa9a76fd4f0affd3f0dac6d8857eea88c73cbc1686ce613
 SHA512 
65d8d25f95f2419ae76902cad8f0f4c9b810dbbba80621d301f53d2128dfeb11c4d74e2ac4f1e39f63aadfc1404e9000c0668efbab4793d307f0b90345023771
 DIST pytest-cython-0.1.1.tar.gz 817776 BLAKE2B 
d9b812cefc45153a1ce7abb0b1be2e7fc329b88d89ed48529f62a38c402d74bb164ed6b928f291586f0064820dc52156eacdf161da3a0d65d10f5a15681a17e4
 SHA512 
353a6c3b67df0608b24f24e04ba5d3fa48065d3960834e32bf44f2dfcd6248cb4c86de528c15dbfd20e36811bfb0ae04670f6441afb74bcb7bd1d7af71060463

diff --git a/dev-python/pytest-cython/pytest-cython-0.1.0-r2.ebuild 
b/dev-python/pytest-cython/pytest-cython-0.1.0-r2.ebuild
deleted file mode 100644
index e9a14cf5d..0
--- a/dev-python/pytest-cython/pytest-cython-0.1.0-r2.ebuild
+++ /dev/null
@@ -1,34 +0,0 @@
-# Copyright 1999-2020 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI="7"
-
-PYTHON_COMPAT=( pypy3 python3_{7,8,9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Plugin for testing Cython extension modules"
-HOMEPAGE="https://github.com/lgpage/pytest-cython;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-SLOT="0"
-LICENSE="MIT"
-KEYWORDS="~amd64"
-IUSE="test"
-
-#IDK how to run this: python tests/example-project/setup.py clean build_ext 
--inplace --use-cython
-RESTRICT="test"
-RDEPEND="
-   dev-python/cython[${PYTHON_USEDEP}]
-   dev-python/pytest[${PYTHON_USEDEP}]
-"
-DEPEND="
-   ${RDEPEND}
-"
-
-src_prepare() {
-   sed -i 's|\[pytest\]|\[tool:pytest\]|' setup.cfg || die
-   default
-}
-
-distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme

diff --git a/dev-python/pytest-cython/pytest-cython-0.1.1.ebuild 
b/dev-python/pytest-cython/pytest-cython-0.1.1.ebuild
index 1d8fc289c..69c69fa72 100644
--- a/dev-python/pytest-cython/pytest-cython-0.1.1.ebuild
+++ b/dev-python/pytest-cython/pytest-cython-0.1.1.ebuild
@@ -1,10 +1,9 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI="7"
+EAPI="8"
 
-PYTHON_COMPAT=( pypy3 python3_{8,9} )
-DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( pypy3 python3_{8..10} pypy3 )
 
 inherit distutils-r1
 
@@ -24,11 +23,6 @@ DEPEND="${RDEPEND}"
 distutils_enable_sphinx docs dev-python/sphinx-py3doc-enhanced-theme
 distutils_enable_tests pytest
 
-src_prepare() {
-   sed -i 's|\[pytest\]|\[tool:pytest\]|' setup.cfg || die
-   default
-}
-
 python_test() {
epytest -vv \
--deselect tests/test_pytest_cython.py::test_wrap_c_ext_module \



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

2021-07-04 Thread Alessandro Barbieri
commit: ba9cbbe990b65710f80786222491155b6224f552
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Mon Jul  5 00:00:25 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jul  5 00:43:18 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=ba9cbbe9

dev-python/pypandoc: bump

Closes: https://bugs.gentoo.org/800362
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Alessandro Barbieri  gmail.com>

 dev-python/pypandoc/Manifest |  2 +-
 .../{pypandoc-1.5.ebuild => pypandoc-1.6.3.ebuild}   | 16 
 2 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/dev-python/pypandoc/Manifest b/dev-python/pypandoc/Manifest
index cc22e0eff..28d45ce9a 100644
--- a/dev-python/pypandoc/Manifest
+++ b/dev-python/pypandoc/Manifest
@@ -1 +1 @@
-DIST pypandoc-1.5.tar.gz 26494 BLAKE2B 
f265effc55db8b1f706a4541f18119de2d07ab59ea83f80e6051ae4a4e36128d6b36c51e255c2ed0b0577c1df46284820c97f629fc3b790c301448a6bb39
 SHA512 
511f5f5f7bff8de686c3f74d3756d27a3ae245803e2e9b45abc957acf112b306eff057ce87e8f3b335de00b97d4753de31e9681830d9aa776247ca707683ed13
+DIST pypandoc-1.6.3.tar.gz 25912 BLAKE2B 
341055a519f943b8593720d2797bae2c6bb7b7c60dc73efdfecc432fcdbcb1e7b30af138e62512dfea1da0c24dcba5b387891e005b773cae6c9a008c188a99ff
 SHA512 
74abcd569adfeebfd84e66c7b3e110fccd9200275ecfd32e78c297d4f18637c6dc3328c313c32c38b9b9504f64d24e6b59fdec505a539649a21d7e5434108c24

diff --git a/dev-python/pypandoc/pypandoc-1.5.ebuild 
b/dev-python/pypandoc/pypandoc-1.6.3.ebuild
similarity index 70%
rename from dev-python/pypandoc/pypandoc-1.5.ebuild
rename to dev-python/pypandoc/pypandoc-1.6.3.ebuild
index 1a04fc841..adcfbab97 100644
--- a/dev-python/pypandoc/pypandoc-1.5.ebuild
+++ b/dev-python/pypandoc/pypandoc-1.6.3.ebuild
@@ -1,9 +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
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7..9} )
+DISTUTILS_USE_SETUPTOOLS=rdepend
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
 
 inherit distutils-r1
 
@@ -17,6 +18,7 @@ SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
 LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~amd64"
+IUSE="test"
 
 RDEPEND="
app-text/pandoc
@@ -30,11 +32,9 @@ DEPEND="
dev-python/urllib3[${PYTHON_USEDEP}]
 "
 
-python_test() {
-   # Skip tests. Wants: internet access
-   sed -i -e 's:test_basic_conversion_from_http_url:_&:' tests.py || die
-   # Skip tests. Wants: nonexistent font
-   sed -i -e 's:test_pdf_conversion:_&:' tests.py || die
+PROPERTIES="test_network"
+RESTRICT="test"
 
+python_test() {
"${EPYTHON}" tests.py || die "Tests fail with ${EPYTHON}"
 }



[gentoo-commits] repo/proj/guru:dev commit in: app-editors/imhex/

2021-07-04 Thread Alessandro Barbieri
commit: 4784edff0f79d11063fdd4c0c29250dde9699000
Author: Alessandro Barbieri  gmail  com>
AuthorDate: Sun Jul  4 11:00:22 2021 +
Commit: Alessandro Barbieri  gmail  com>
CommitDate: Mon Jul  5 00:43:18 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=4784edff

app-editors/imhex: add github upstream metadata

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

 app-editors/imhex/metadata.xml | 1 +
 1 file changed, 1 insertion(+)

diff --git a/app-editors/imhex/metadata.xml b/app-editors/imhex/metadata.xml
index 03dbc45fc..85181e952 100644
--- a/app-editors/imhex/metadata.xml
+++ b/app-editors/imhex/metadata.xml
@@ -9,6 +9,7 @@

https://github.com/WerWolv/ImHex/releases
https://github.com/WerWolv/ImHex/issues
+   WerWolv/ImHex


 Features



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

2021-07-04 Thread Georgy Yakovlev
commit: afe67a9ba8860dba7ba0bd547b6b27a450164b3a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jul  5 00:16:36 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jul  5 00:16:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=afe67a9b

profiles: improve kernel mask message

Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 4c6e862664d..78991c3f9fe 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -34,8 +34,10 @@
 
 # Georgy Yakovlev 
 # severely broken nfs
+# possibly depper problem due to bug in mm/page_alloc
 # 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ff4b2b4014cbffb3d32b22629252f4dc8616b0fe
-# feel free to unmask if it works for you
+# feel free to unmask if required, but be aware of
+# possible silent data corruption
 =sys-kernel/gentoo-sources-5.13.0
 =sys-kernel/vanilla-sources-5.13.0
 



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

2021-07-04 Thread Georgy Yakovlev
commit: 825a76a29e443fae726e588302eecc24061133e3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Mon Jul  5 00:06:28 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Mon Jul  5 00:08:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=825a76a2

profiles: mask kernels 5.13.0 due to page_alloc bug

non-maintainer fix due to holiday schedule

breaks nfs completely
Bug: https://bugs.gentoo.org/800551
Signed-off-by: Georgy Yakovlev  gentoo.org>

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

diff --git a/profiles/package.mask b/profiles/package.mask
index 5942b82e540..4c6e862664d 100644
--- a/profiles/package.mask
+++ b/profiles/package.mask
@@ -32,6 +32,13 @@
 
 #--- END OF EXAMPLES ---
 
+# Georgy Yakovlev 
+# severely broken nfs
+# 
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/commit/?id=ff4b2b4014cbffb3d32b22629252f4dc8616b0fe
+# feel free to unmask if it works for you
+=sys-kernel/gentoo-sources-5.13.0
+=sys-kernel/vanilla-sources-5.13.0
+
 # Matt Turner  (2021-07-04)
 # Not used by any package. Has not worked for a very long time
 # as far as I can tell.



[gentoo-commits] repo/gentoo:master commit in: x11-base/xwayland/

2021-07-04 Thread Mike Gilbert
commit: fd470c9ddc59e16a0c7765a04a6f139c00657b76
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jul  4 23:35:34 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jul  4 23:35:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd470c9d

x11-base/xwayland: revbump for openssl dependency

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

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

diff --git a/x11-base/xwayland/xwayland-21.1.1-r1.ebuild 
b/x11-base/xwayland/xwayland-21.1.1-r2.ebuild
similarity index 100%
rename from x11-base/xwayland/xwayland-21.1.1-r1.ebuild
rename to x11-base/xwayland/xwayland-21.1.1-r2.ebuild



[gentoo-commits] repo/gentoo:master commit in: x11-base/xwayland/

2021-07-04 Thread Mike Gilbert
commit: a63e0d6818b8ffc78e55c5c5a8ae9f6c0e44af4e
Author: Mike Gilbert  gentoo  org>
AuthorDate: Sun Jul  4 23:26:57 2021 +
Commit: Mike Gilbert  gentoo  org>
CommitDate: Sun Jul  4 23:30:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a63e0d68

x11-base/xwayland: drop pointless CDEPEND variable

The xorg-server blocker in DEPEND is pointless. Putting it in RDEPEND is
sufficient to avoid file collisions.

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

 x11-base/xwayland/xwayland-21.1.1-r1.ebuild  | 8 ++--
 x11-base/xwayland/xwayland-21.1.1.901.ebuild | 8 ++--
 2 files changed, 4 insertions(+), 12 deletions(-)

diff --git a/x11-base/xwayland/xwayland-21.1.1-r1.ebuild 
b/x11-base/xwayland/xwayland-21.1.1-r1.ebuild
index 7b2b33d787c..06ad6c677a3 100644
--- a/x11-base/xwayland/xwayland-21.1.1-r1.ebuild
+++ b/x11-base/xwayland/xwayland-21.1.1-r1.ebuild
@@ -15,7 +15,7 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux"
 
-CDEPEND="
+DEPEND="
>=x11-libs/pixman-0.27.2
dev-libs/libbsd
>=x11-libs/libXfont2-2.0.1
@@ -38,13 +38,9 @@ CDEPEND="
>=x11-misc/xkeyboard-config-2.4.1-r3
 "
 
-DEPEND="
-   ${CDEPEND}
-   !<=x11-base/xorg-server-1.20.11
-"
-
 RDEPEND="
${DEPEND}
+   !<=x11-base/xorg-server-1.20.11
selinux? ( sec-policy/selinux-xserver )
 "
 BDEPEND="

diff --git a/x11-base/xwayland/xwayland-21.1.1.901.ebuild 
b/x11-base/xwayland/xwayland-21.1.1.901.ebuild
index 5551c688c60..ad2989c660e 100644
--- a/x11-base/xwayland/xwayland-21.1.1.901.ebuild
+++ b/x11-base/xwayland/xwayland-21.1.1.901.ebuild
@@ -15,7 +15,7 @@ LICENSE="MIT"
 SLOT="0"
 KEYWORDS=""
 
-CDEPEND="
+DEPEND="
>=x11-libs/pixman-0.27.2
dev-libs/libbsd
>=x11-libs/libXfont2-2.0.1
@@ -39,13 +39,9 @@ CDEPEND="
>=x11-misc/xkeyboard-config-2.4.1-r3
 "
 
-DEPEND="
-   ${CDEPEND}
-   !<=x11-base/xorg-server-1.20.11
-"
-
 RDEPEND="
${DEPEND}
+   !<=x11-base/xorg-server-1.20.11
selinux? ( sec-policy/selinux-xserver )
 "
 BDEPEND="



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

2021-07-04 Thread Zac Medico
commit: ee944c4fd76af4f7dffb756e9ed0303cb9606112
Author: Thymo van Beers  gmail  com>
AuthorDate: Mon Jun 28 21:56:47 2021 +
Commit: Zac Medico  gentoo  org>
CommitDate: Sun Jul  4 22:59:21 2021 +
URL:https://gitweb.gentoo.org/proj/portage.git/commit/?id=ee944c4f

man/make.conf.5: remove mention of zlib USE flag

Both sys-devel/binutils and sys-devel/gdb are built with system zlib by
default for some time now. This commit removes the mention of USE=zlib to avoid
confusion.

Signed-off-by: Thymo van Beers  gmail.com>
Signed-off-by: Zac Medico  gentoo.org>

 man/make.conf.5 | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/man/make.conf.5 b/man/make.conf.5
index 1c72109ad..db742fdb5 100644
--- a/man/make.conf.5
+++ b/man/make.conf.5
@@ -378,8 +378,7 @@ redundant on\-the\-fly compression.  The resulting file 
will be called
 .TP
 .B compressdebug
 Compress the debug sections in the split debug files with zlib to save
-space.  Make sure you have built both binutils and gdb with USE=zlib
-support for this to work.  See \fBsplitdebug\fR for general split debug
+space.  See \fBsplitdebug\fR for general split debug
 information (upon which this feature depends).
 .TP
 .B config\-protect\-if\-modified



[gentoo-commits] repo/gentoo:master commit in: dev-perl/File-Copy-Recursive-Reduced/

2021-07-04 Thread Andreas K. Hüttel
commit: 425f984f6134d4f4aa17b58cc6b30cfc062e0c42
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 22:43:09 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 22:49:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=425f984f

dev-perl/File-Copy-Recursive-Reduced: New, needed for 
dev-perl/Module-Build-XSUtil

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 .../File-Copy-Recursive-Reduced-0.6.0.ebuild   | 26 ++
 dev-perl/File-Copy-Recursive-Reduced/Manifest  |  1 +
 dev-perl/File-Copy-Recursive-Reduced/metadata.xml  |  8 +++
 3 files changed, 35 insertions(+)

diff --git 
a/dev-perl/File-Copy-Recursive-Reduced/File-Copy-Recursive-Reduced-0.6.0.ebuild 
b/dev-perl/File-Copy-Recursive-Reduced/File-Copy-Recursive-Reduced-0.6.0.ebuild
new file mode 100644
index 000..f77a54fc495
--- /dev/null
+++ 
b/dev-perl/File-Copy-Recursive-Reduced/File-Copy-Recursive-Reduced-0.6.0.ebuild
@@ -0,0 +1,26 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=JKEENAN
+DIST_VERSION=0.006
+inherit perl-module
+
+DESCRIPTION="Recursive copying of files and directories within Perl 5 
toolchain"
+
+SLOT="0"
+KEYWORDS="~amd64"
+
+RDEPEND="
+   virtual/perl-File-Spec
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   dev-perl/Capture-Tiny
+   virtual/perl-File-Temp
+   dev-perl/Path-Tiny
+   >=virtual/perl-Test-Simple-0.440.0
+   )
+"

diff --git a/dev-perl/File-Copy-Recursive-Reduced/Manifest 
b/dev-perl/File-Copy-Recursive-Reduced/Manifest
new file mode 100644
index 000..c9e08343613
--- /dev/null
+++ b/dev-perl/File-Copy-Recursive-Reduced/Manifest
@@ -0,0 +1 @@
+DIST File-Copy-Recursive-Reduced-0.006.tar.gz 25380 BLAKE2B 
7b5f5ad2cb7c104d0d972a3e91dd4053842c41037da69420313dc8ca54989a13c8dc15280f2559a61e511ad9bf42dce59620dabc0fd55aac54bb7f26672f15ca
 SHA512 
7cf888b8c004d9430c87c1cceba25e997cb12974a79c3f4d803b11779abef81f5b686caac4c46a70caadb2eee12a71cb1fb87abfc7d5fec43dc37bbd2ef07694

diff --git a/dev-perl/File-Copy-Recursive-Reduced/metadata.xml 
b/dev-perl/File-Copy-Recursive-Reduced/metadata.xml
new file mode 100644
index 000..2b9a936fc0a
--- /dev/null
+++ b/dev-perl/File-Copy-Recursive-Reduced/metadata.xml
@@ -0,0 +1,8 @@
+
+http://www.gentoo.org/dtd/metadata.dtd;>
+
+  
+p...@gentoo.org
+Gentoo Perl Project
+  
+



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-Build-Tiny/

2021-07-04 Thread Andreas K. Hüttel
commit: de6b606bb22ddf88b9fbd8cdfb41f15deebc90b2
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 22:36:06 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 22:49:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=de6b606b

dev-perl/Module-Build-Tiny: EAPI=8 bump

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 ...y-0.39.0.ebuild => Module-Build-Tiny-0.39.0-r1.ebuild} | 15 +--
 1 file changed, 5 insertions(+), 10 deletions(-)

diff --git a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild 
b/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0-r1.ebuild
similarity index 88%
rename from dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild
rename to dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0-r1.ebuild
index 8f336ae148e..7c8b9a23cae 100644
--- a/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0.ebuild
+++ b/dev-perl/Module-Build-Tiny/Module-Build-Tiny-0.39.0-r1.ebuild
@@ -1,16 +1,15 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=5
-MODULE_AUTHOR=LEONT
-MODULE_VERSION=0.039
+EAPI=8
+
+DIST_AUTHOR=LEONT
+DIST_VERSION=0.039
 inherit perl-module
 
 DESCRIPTION='A tiny replacement for Module::Build'
 SLOT="0"
 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"
-IUSE="test"
-RESTRICT="!test? ( test )"
 
 RDEPEND="
virtual/perl-CPAN-Meta
@@ -28,9 +27,7 @@ RDEPEND="
virtual/perl-podlators
virtual/perl-Test-Harness
 "
-
-DEPEND="
-   ${RDEPEND}
+BDEPEND="${RDEPEND}
test? (
virtual/perl-Data-Dumper
virtual/perl-File-Temp
@@ -40,6 +37,4 @@ DEPEND="
)
 "
 
-SRC_TEST="do parallel"
-
 mytargets="install"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/Module-Build-XSUtil/

2021-07-04 Thread Andreas K. Hüttel
commit: 807110f589c33e6497684706ab724dc3af46bd1a
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 22:46:20 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 22:49:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=807110f5

dev-perl/Module-Build-XSUtil: Version bump 0.19

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Module-Build-XSUtil/Manifest  |  1 +
 .../Module-Build-XSUtil-0.190.0.ebuild | 45 ++
 2 files changed, 46 insertions(+)

diff --git a/dev-perl/Module-Build-XSUtil/Manifest 
b/dev-perl/Module-Build-XSUtil/Manifest
index e3c83ba84a2..2c8979deef8 100644
--- a/dev-perl/Module-Build-XSUtil/Manifest
+++ b/dev-perl/Module-Build-XSUtil/Manifest
@@ -1 +1,2 @@
 DIST Module-Build-XSUtil-0.18.tar.gz 15200 BLAKE2B 
04885b37ba0e9dea8a57269ec8352e525d5149c6ccfc905a075b9901da902f37c5ca1fa77b192aa3026bbfd5ee096cbdfeb5cb12ca3a4a5bf871a0536311f8c1
 SHA512 
ff2b9efd23a91e16ae95e6abc283e9c64e4eca9e1bfde3d6d2b95b052e5bcdf4d00baa6bf07d44dc6ffbf426eb73b2b83b52c60f5cd208862d35d006dec692be
+DIST Module-Build-XSUtil-0.19.tar.gz 15276 BLAKE2B 
3f2d477551c0903449ea0de9e96d8d0ee3e82ce68faf2d11514c0a98103a7d7aef3a7c0c54f1a316a1ed812f2c8d8f4f7146aad9722f459f8f748df914dbe90d
 SHA512 
187f504c3f26d15b96cdc5b682d3487a31cf124475160b7fe5dce727d5d6ec5de5a58d09535adb62a1a95b3030fb62951b2cc0eca860eb03c66a48042cea8819

diff --git a/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild 
b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild
new file mode 100644
index 000..6f075cea6f3
--- /dev/null
+++ b/dev-perl/Module-Build-XSUtil/Module-Build-XSUtil-0.190.0.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=HIDEAKIO
+DIST_VERSION=0.19
+inherit perl-module
+
+DESCRIPTION="A Module::Build class for building XS modules"
+
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE="examples"
+
+RDEPEND="
+   dev-perl/Devel-CheckCompiler
+   virtual/perl-Devel-PPPort
+   virtual/perl-Exporter
+   virtual/perl-ExtUtils-CBuilder
+   virtual/perl-File-Path
+   virtual/perl-XSLoader
+   virtual/perl-parent
+"
+BDEPEND="${RDEPEND}
+   >=dev-perl/Module-Build-0.400.500
+   test? (
+   dev-perl/Capture-Tiny
+   dev-perl/Cwd-Guard
+   >=dev-perl/File-Copy-Recursive-Reduced-0.2.0
+   virtual/perl-File-Spec
+   virtual/perl-File-Temp
+   >=virtual/perl-Test-Simple-0.980.0
+   )
+
+"
+
+src_install() {
+   perl-module_src_install
+   if use examples; then
+   docompress -x usr/share/doc/${PF}/eg/
+   insinto usr/share/doc/${PF}
+   doins -r eg
+   fi
+}



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

2021-07-04 Thread Andreas K. Hüttel
commit: 0d5f2ed6a8ca33d07016c5f296c773cf59fe77ce
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 22:34:26 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 22:49:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d5f2ed6

dev-perl/Module-Build: Version bump 0.4231

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Module-Build/Manifest |  1 +
 .../Module-Build/Module-Build-0.423.100.ebuild | 39 ++
 2 files changed, 40 insertions(+)

diff --git a/dev-perl/Module-Build/Manifest b/dev-perl/Module-Build/Manifest
index 170413b69be..1b172b02bc7 100644
--- a/dev-perl/Module-Build/Manifest
+++ b/dev-perl/Module-Build/Manifest
@@ -1 +1,2 @@
 DIST Module-Build-0.4224.tar.gz 304181 BLAKE2B 
6cb44d1c24f74ebc5c8b0b353b7a7e9ef0d89bd39c45fd610fbac2802ae5630a7dbf61b179719502a419f2afc5e65988fb09f516fc1deb57b751a76aa5275fe8
 SHA512 
c08e84c542a882aa16a682a81cbb7a4860774a3f6a0ec2e720ba9e9bcea76dab331999fee86bf8b92edc08560d7cef4a7c2dfa4e626ab9b22da965e715af531f
+DIST Module-Build-0.4231.tar.gz 303466 BLAKE2B 
f35be09072a2facc505b199dd69cdb2605ab32c34376ef393170dca9d67871bc00cbe25b1fa6dcb925e92724a778ad5ddc3157afb33d18a10648ef1133c83991
 SHA512 
ee1dc18a7df3fe67e7f954d5e1e071aa0a6f5bce6783b768bceb01f071e64ac8be63f410c932c7c16764e5d4f52fc664ce11a12f26f6afc75a26f79883efad70

diff --git a/dev-perl/Module-Build/Module-Build-0.423.100.ebuild 
b/dev-perl/Module-Build/Module-Build-0.423.100.ebuild
new file mode 100644
index 000..03f8de7e63f
--- /dev/null
+++ b/dev-perl/Module-Build/Module-Build-0.423.100.ebuild
@@ -0,0 +1,39 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=LEONT
+DIST_VERSION=0.4231
+inherit perl-module
+
+DESCRIPTION="Build and install Perl modules"
+
+SLOT="0"
+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"
+
+RDEPEND="
+   >=virtual/perl-CPAN-Meta-2.142.60
+   virtual/perl-Data-Dumper
+   >=virtual/perl-ExtUtils-CBuilder-0.270.0
+   virtual/perl-ExtUtils-Install
+   virtual/perl-ExtUtils-Manifest
+   virtual/perl-ExtUtils-MakeMaker
+   >=virtual/perl-ExtUtils-ParseXS-2.210.0
+   >=virtual/perl-File-Spec-0.820.0
+   virtual/perl-Getopt-Long
+   >=virtual/perl-Module-Metadata-1.0.2
+   >=virtual/perl-Perl-OSType-1
+   >=virtual/perl-Test-Harness-3.290.0
+   virtual/perl-Text-ParseWords
+   >=virtual/perl-podlators-2.1.0
+   >=virtual/perl-version-0.870.0
+"
+BDEPEND="${RDEPEND}
+   test? (
+   >=virtual/perl-CPAN-Meta-YAML-0.3.0
+   >=virtual/perl-File-Temp-0.150.0
+   >=virtual/perl-Parse-CPAN-Meta-1.440.100
+   >=virtual/perl-Test-Simple-0.490.0
+   )
+"



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

2021-07-04 Thread Andreas K. Hüttel
commit: 3b336124f262ab5f8e43a0fdc51b50da17271a74
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 22:28:53 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 22:49:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3b336124

dev-perl/Modern-Perl: Version bump 1.20200211

Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas K. Hüttel  gentoo.org>

 dev-perl/Modern-Perl/Manifest  |  1 +
 .../Modern-Perl/Modern-Perl-1.202.2.110.ebuild | 22 ++
 2 files changed, 23 insertions(+)

diff --git a/dev-perl/Modern-Perl/Manifest b/dev-perl/Modern-Perl/Manifest
index a5f654ec0dc..81db7c3d59c 100644
--- a/dev-perl/Modern-Perl/Manifest
+++ b/dev-perl/Modern-Perl/Manifest
@@ -1 +1,2 @@
 DIST Modern-Perl-1.20190727.tar.gz 14826 BLAKE2B 
bd01ecf2b8a47b2805b40c5aff4dbdb9408db51a02108194c4d6c93f77af8bc8032e19ffd9e191bb77143bd3e1911650738ace014873f5d11c5b38541ee82941
 SHA512 
c2e4d51d51340c3412c197ca4e48fee2b786a8f07aca83315be862637cf1bb9c2d294e98e7e51ba5a76eab307aa18f4f739b12030bad35e81292ffed68bcaf09
+DIST Modern-Perl-1.20200211.tar.gz 14856 BLAKE2B 
2abc5f574b0f8032f98a02c9cd85698a13b5266880c432097947136b6109a8f386ea892f3e695f74cb9bf70024db429daef133205d442262d5eb06614b7c7e26
 SHA512 
eb647c1b617ca517dc09a2de7395de3aca19b13e7089214127f86257544e790b5b79d439d0896be88c018f2ece47ca2b853168b65d676c4af034dbcc815619be

diff --git a/dev-perl/Modern-Perl/Modern-Perl-1.202.2.110.ebuild 
b/dev-perl/Modern-Perl/Modern-Perl-1.202.2.110.ebuild
new file mode 100644
index 000..6b296496d48
--- /dev/null
+++ b/dev-perl/Modern-Perl/Modern-Perl-1.202.2.110.ebuild
@@ -0,0 +1,22 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DIST_AUTHOR=CHROMATIC
+DIST_VERSION=1.20200211
+inherit perl-module
+
+DESCRIPTION="enable all of the features of Modern Perl with one import"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   virtual/perl-IO
+"
+BDEPEND="${RDEPEND}
+   virtual/perl-ExtUtils-MakeMaker
+   test? (
+   >=virtual/perl-Test-Simple-0.980.0
+   )
+"



[gentoo-commits] repo/gentoo:master commit in: media-plugins/kodi-pvr-nextpvr/

2021-07-04 Thread Craig Andrews
commit: 305c70fdfd3bd66307593393d8b6772819b639fd
Author: Craig Andrews  gentoo  org>
AuthorDate: Sun Jul  4 22:45:13 2021 +
Commit: Craig Andrews  gentoo  org>
CommitDate: Sun Jul  4 22:45:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=305c70fd

media-plugins/kodi-pvr-nextpvr: 8.2.5 version bump

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

 media-plugins/kodi-pvr-nextpvr/Manifest|  1 +
 .../kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.2.5.ebuild | 37 ++
 2 files changed, 38 insertions(+)

diff --git a/media-plugins/kodi-pvr-nextpvr/Manifest 
b/media-plugins/kodi-pvr-nextpvr/Manifest
index 95bef355a2a..32c0dccace8 100644
--- a/media-plugins/kodi-pvr-nextpvr/Manifest
+++ b/media-plugins/kodi-pvr-nextpvr/Manifest
@@ -1,2 +1,3 @@
 DIST kodi-pvr-nextpvr-8.2.3.tar.gz 150375 BLAKE2B 
56493c4f7cb1a42c5b792934ffe5495b8c8083fb12a262a96f47fcadab53a1acbb3c614bb3c507980860bf2cc0c54be374207bdeaf9bb6478991c299c960081a
 SHA512 
6a0bc9e170726246fb46e6fee6c829c36afd570be98ae53901da7fd8a72c319887d8a179dc9b227b8ef0b1628767b7257ef650bc127598d1e1337328c2aa4842
 DIST kodi-pvr-nextpvr-8.2.4.tar.gz 158037 BLAKE2B 
7696679bc7f4d667df95e674e48d1616aba2588f4e1ed5e5d388520369c9ab16e75748203a18d5f85df4cbb1f1cb7eb8371fd2717bce79ef12edd82b0028ad6d
 SHA512 
e256eb268afeed810e7fe94194762a3f22ba7f24bccb06a4ac137170864d96daae00094fd185354d88baedba34dd54e15c935f4dca6b268b0c74b1e9415ddeeb
+DIST kodi-pvr-nextpvr-8.2.5.tar.gz 158146 BLAKE2B 
2e6060b151b0e16decbab39762facdb7d05ddc8c8d1288894ba53e28d6ebd484799399793482dbd2e7adf1db10b0ad89dc1169a528e5ed362e3835942bcedd8e
 SHA512 
7ff620339c03a7519d2ea01be66a18df7a800ddc7e997fef2826d956565e67b8e5ce95d959409b7a476df39947a0b430de91d7e34d8163718cba0f9f3fd7ed24

diff --git a/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.2.5.ebuild 
b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.2.5.ebuild
new file mode 100644
index 000..f1d5484de0a
--- /dev/null
+++ b/media-plugins/kodi-pvr-nextpvr/kodi-pvr-nextpvr-8.2.5.ebuild
@@ -0,0 +1,37 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit cmake kodi-addon
+
+DESCRIPTION="Kodi's NextPVR client addon"
+HOMEPAGE="https://github.com/kodi-pvr/pvr.nextpvr;
+SRC_URI=""
+
+case ${PV} in
+)
+   SRC_URI=""
+   EGIT_REPO_URI="https://github.com/kodi-pvr/pvr.nextpvr.git;
+   inherit git-r3
+   ;;
+*)
+   CODENAME="Matrix"
+   KEYWORDS="~amd64 ~x86"
+   
SRC_URI="https://github.com/kodi-pvr/pvr.nextpvr/archive/${PV}-${CODENAME}.tar.gz
 -> ${P}.tar.gz"
+   S="${WORKDIR}/pvr.nextpvr-${PV}-${CODENAME}"
+   ;;
+esac
+
+LICENSE="GPL-2"
+SLOT="0"
+IUSE=""
+
+DEPEND="
+   =media-tv/kodi-19*
+   dev-libs/tinyxml2
+   "
+
+RDEPEND="
+   ${DEPEND}
+   "



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

2021-07-04 Thread Sam James
commit: 0c36a1f11fd9a7e08f9ed82eb9ae6293b0b9c82e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c36a1f1

x11-misc/compose-tables: Stabilize 1.7.2 amd64, #797562

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

 x11-misc/compose-tables/compose-tables-1.7.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-misc/compose-tables/compose-tables-1.7.2.ebuild 
b/x11-misc/compose-tables/compose-tables-1.7.2.ebuild
index 80079e52e01..712cf489a8a 100644
--- a/x11-misc/compose-tables/compose-tables-1.7.2.ebuild
+++ b/x11-misc/compose-tables/compose-tables-1.7.2.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="X.Org Compose Key tables from libX11"
 
SRC_URI="${XORG_BASE_INDIVIDUAL_URI}/lib/libX11-${PV}.tar.${XORG_TARBALL_SUFFIX}"
 S="${WORKDIR}/libX11-${PV}/"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 
 # Only needed by configure
 DEPEND="



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

2021-07-04 Thread Sam James
commit: 1e92afcf70a956509826145fd0e97e1d33f38b95
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1e92afcf

x11-libs/libdrm: Stabilize 2.4.106 amd64, #797562

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

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

diff --git a/x11-libs/libdrm/libdrm-2.4.106.ebuild 
b/x11-libs/libdrm/libdrm-2.4.106.ebuild
index 7bfc36e9816..c496d7b4e6b 100644
--- a/x11-libs/libdrm/libdrm-2.4.106.ebuild
+++ b/x11-libs/libdrm/libdrm-2.4.106.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} = * ]]; then
SRC_URI=""
 else
SRC_URI="https://dri.freedesktop.org/libdrm/${P}.tar.xz;
-   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 ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux"
 fi
 
 VIDEO_CARDS="amdgpu exynos freedreno intel nouveau omap radeon tegra vc4 
vivante vmware"



[gentoo-commits] repo/gentoo:master commit in: x11-apps/fonttosfnt/

2021-07-04 Thread Sam James
commit: f5431ff613210835e8004e89ec94c24cd9734bb2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f5431ff6

x11-apps/fonttosfnt: Stabilize 1.2.2 amd64, #797562

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

 x11-apps/fonttosfnt/fonttosfnt-1.2.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-apps/fonttosfnt/fonttosfnt-1.2.2.ebuild 
b/x11-apps/fonttosfnt/fonttosfnt-1.2.2.ebuild
index 7a45f06a562..d39f3e862a8 100644
--- a/x11-apps/fonttosfnt/fonttosfnt-1.2.2.ebuild
+++ b/x11-apps/fonttosfnt/fonttosfnt-1.2.2.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 inherit xorg-3
 
 DESCRIPTION="X.Org fonttosfnt application"
-KEYWORDS="~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86"
+KEYWORDS="amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~s390 sparc ~x86"
 IUSE=""
 RDEPEND="media-libs/freetype:2
x11-libs/libX11



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

2021-07-04 Thread Sam James
commit: 43b14f71b20c23f1fd7b94a4674948e897e0b3c2
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=43b14f71

x11-libs/libX11: Stabilize 1.7.2 amd64, #797562

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

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

diff --git a/x11-libs/libX11/libX11-1.7.2.ebuild 
b/x11-libs/libX11/libX11-1.7.2.ebuild
index dae08e85a57..fb5b6805987 100644
--- a/x11-libs/libX11/libX11-1.7.2.ebuild
+++ b/x11-libs/libX11/libX11-1.7.2.ebuild
@@ -10,7 +10,7 @@ inherit toolchain-funcs xorg-3
 # Note: please bump this with x11-misc/compose-tables
 DESCRIPTION="X.Org X11 library"
 
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos"
 IUSE="ipv6 test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: x11-drivers/xf86-input-libinput/

2021-07-04 Thread Sam James
commit: 54673706ac35f048fab8ed4219a0c8f1b15a95a7
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=54673706

x11-drivers/xf86-input-libinput: Stabilize 1.1.0 amd64, #797562

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

 x11-drivers/xf86-input-libinput/xf86-input-libinput-1.1.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-drivers/xf86-input-libinput/xf86-input-libinput-1.1.0.ebuild 
b/x11-drivers/xf86-input-libinput/xf86-input-libinput-1.1.0.ebuild
index 62863d68f5c..97515fc6714 100644
--- a/x11-drivers/xf86-input-libinput/xf86-input-libinput-1.1.0.ebuild
+++ b/x11-drivers/xf86-input-libinput/xf86-input-libinput-1.1.0.ebuild
@@ -7,7 +7,7 @@ inherit linux-info xorg-3
 
 DESCRIPTION="X.org input driver based on libinput"
 
-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=""
 
 RDEPEND=">=dev-libs/libinput-1.11.0:0="



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

2021-07-04 Thread Sam James
commit: 601246fa9324dd1f571f6fb4e4209013df64b41c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=601246fa

media-libs/mesa: Stabilize 21.1.4 amd64, #797562

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

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

diff --git a/media-libs/mesa/mesa-21.1.4.ebuild 
b/media-libs/mesa/mesa-21.1.4.ebuild
index b67e6c7e47f..5eaf339c5ca 100644
--- a/media-libs/mesa/mesa-21.1.4.ebuild
+++ b/media-libs/mesa/mesa-21.1.4.ebuild
@@ -19,7 +19,7 @@ if [[ ${PV} ==  ]]; then
inherit git-r3
 else
SRC_URI="https://archive.mesa3d.org/${MY_P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 LICENSE="MIT"



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

2021-07-04 Thread Sam James
commit: e9633e245738c1f746cb6cf1c7e833e13ccbe09a
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e9633e24

dev-libs/libinput: Stabilize 1.18.0 amd64, #797562

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

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

diff --git a/dev-libs/libinput/libinput-1.18.0.ebuild 
b/dev-libs/libinput/libinput-1.18.0.ebuild
index 4fee08a9fe7..ccbd8f520e5 100644
--- a/dev-libs/libinput/libinput-1.18.0.ebuild
+++ b/dev-libs/libinput/libinput-1.18.0.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/glu/

2021-07-04 Thread Sam James
commit: 9ba8a64582da372ee67929f579c5cda393df2265
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ba8a645

media-libs/glu: Stabilize 9.0.2 amd64, #797562

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

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

diff --git a/media-libs/glu/glu-9.0.2.ebuild b/media-libs/glu/glu-9.0.2.ebuild
index d6f2fdb03ab..3caca8302a0 100644
--- a/media-libs/glu/glu-9.0.2.ebuild
+++ b/media-libs/glu/glu-9.0.2.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} = * ]]; then
SRC_URI=""
 else
SRC_URI="https://mesa.freedesktop.org/archive/glu/${P}.tar.xz;
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~s390 sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris 
~x86-solaris"
+   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~sparc-solaris ~x64-solaris 
~x86-solaris"
 fi
 
 LICENSE="SGI-B-2.0"



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

2021-07-04 Thread Sam James
commit: 159de179756394bc1d6d2dcf16fa88a12f84bea6
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=159de179

sys-libs/libsepol: Stabilize 3.2 amd64, #797616

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

 sys-libs/libsepol/libsepol-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libsepol/libsepol-3.2.ebuild 
b/sys-libs/libsepol/libsepol-3.2.ebuild
index 0878e192477..e54878f32cc 100644
--- a/sys-libs/libsepol/libsepol-3.2.ebuild
+++ b/sys-libs/libsepol/libsepol-3.2.ebuild
@@ -17,7 +17,7 @@ if [[ ${PV} ==  ]]; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~riscv ~x86"
S="${WORKDIR}/${MY_P}"
 fi
 



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

2021-07-04 Thread Sam James
commit: 723eea6754012501d478d91c6385ea1f0a3bb22d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=723eea67

sys-apps/semodule-utils: Stabilize 3.2 amd64, #797616

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

 sys-apps/semodule-utils/semodule-utils-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/semodule-utils/semodule-utils-3.2.ebuild 
b/sys-apps/semodule-utils/semodule-utils-3.2.ebuild
index 13fc0d86279..68b82402519 100644
--- a/sys-apps/semodule-utils/semodule-utils-3.2.ebuild
+++ b/sys-apps/semodule-utils/semodule-utils-3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~x86"
 fi
 
 DESCRIPTION="SELinux policy module utilities"



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

2021-07-04 Thread Sam James
commit: 8f95759dc7b5dc06c16005689f1de36a51e280cf
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f95759d

sys-apps/selinux-python: Stabilize 3.2 amd64, #797616

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

 sys-apps/selinux-python/selinux-python-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/selinux-python/selinux-python-3.2.ebuild 
b/sys-apps/selinux-python/selinux-python-3.2.ebuild
index def193bf03d..11c4b235138 100644
--- a/sys-apps/selinux-python/selinux-python-3.2.ebuild
+++ b/sys-apps/selinux-python/selinux-python-3.2.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} ==  ]] ; then
S="${WORKDIR}/${P}/${PN#selinux-}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm64 ~mips ~x86"
 fi
 
 LICENSE="GPL-2"



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

2021-07-04 Thread Sam James
commit: e27c527ab3deea4ed98b865b25ffc1f27d912742
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e27c527a

sys-apps/secilc: Stabilize 3.2 amd64, #797616

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

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

diff --git a/sys-apps/secilc/secilc-3.2.ebuild 
b/sys-apps/secilc/secilc-3.2.ebuild
index c7694587c83..9d8b8732a62 100644
--- a/sys-apps/secilc/secilc-3.2.ebuild
+++ b/sys-apps/secilc/secilc-3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} ==  ]]; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~x86"
+   KEYWORDS="amd64 ~x86"
 fi
 
 LICENSE="GPL-2"



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

2021-07-04 Thread Sam James
commit: 6192f8c9de15ea34aefe045ccb8361f18b928951
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6192f8c9

sys-libs/libselinux: Stabilize 3.2 amd64, #797616

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

 sys-libs/libselinux/libselinux-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libselinux/libselinux-3.2.ebuild 
b/sys-libs/libselinux/libselinux-3.2.ebuild
index 8653460938e..8e2e8d12cc5 100644
--- a/sys-libs/libselinux/libselinux-3.2.ebuild
+++ b/sys-libs/libselinux/libselinux-3.2.ebuild
@@ -20,7 +20,7 @@ if [[ ${PV} ==  ]]; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~riscv ~x86"
S="${WORKDIR}/${MY_P}"
 fi
 



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

2021-07-04 Thread Sam James
commit: e1ac75e5d9df516d4b8a103b54d3e260815d37c1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1ac75e5

sys-libs/libsemanage: Stabilize 3.2 amd64, #797616

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

 sys-libs/libsemanage/libsemanage-3.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-libs/libsemanage/libsemanage-3.2.ebuild 
b/sys-libs/libsemanage/libsemanage-3.2.ebuild
index 88db66d921c..18841b5e4d1 100644
--- a/sys-libs/libsemanage/libsemanage-3.2.ebuild
+++ b/sys-libs/libsemanage/libsemanage-3.2.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} ==  ]]; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${MY_PV}/${MY_P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~riscv ~x86"
S="${WORKDIR}/${MY_P}"
 fi
 



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

2021-07-04 Thread Sam James
commit: fd65e7d9b3782059521b052a22a36a830f413e01
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fd65e7d9

sys-apps/mcstrans: Stabilize 3.2 amd64, #797616

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

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

diff --git a/sys-apps/mcstrans/mcstrans-3.2.ebuild 
b/sys-apps/mcstrans/mcstrans-3.2.ebuild
index 631d654a0a3..28ef70cad5b 100644
--- a/sys-apps/mcstrans/mcstrans-3.2.ebuild
+++ b/sys-apps/mcstrans/mcstrans-3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~x86"
 fi
 
 DESCRIPTION="SELinux context translation to human readable names"



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

2021-07-04 Thread Sam James
commit: 7c8b46999df097a437288eecb1cce347d20b842c
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7c8b4699

sys-apps/restorecond: Stabilize 3.2 amd64, #797616

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

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

diff --git a/sys-apps/restorecond/restorecond-3.2.ebuild 
b/sys-apps/restorecond/restorecond-3.2.ebuild
index f3e66897e8c..fe9b6bec869 100644
--- a/sys-apps/restorecond/restorecond-3.2.ebuild
+++ b/sys-apps/restorecond/restorecond-3.2.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} == * ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~x86"
 fi
 
 DESCRIPTION="Daemon to watch for creation and set default SELinux fcontexts"



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

2021-07-04 Thread Sam James
commit: 6e29370e3f53dd16426d43296887deb193468528
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:23 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:23 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6e29370e

app-admin/setools: Stabilize 4.4.0 amd64, #797616

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

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

diff --git a/app-admin/setools/setools-4.4.0.ebuild 
b/app-admin/setools/setools-4.4.0.ebuild
index f6471987e0c..f32a8593093 100644
--- a/app-admin/setools/setools-4.4.0.ebuild
+++ b/app-admin/setools/setools-4.4.0.ebuild
@@ -15,7 +15,7 @@ if [[ ${PV} ==  ]] ; then
EGIT_REPO_URI="https://github.com/SELinuxProject/setools.git;
 else

SRC_URI="https://github.com/SELinuxProject/setools/releases/download/${PV}/${P}.tar.bz2;
-   KEYWORDS="~amd64 ~arm64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~x86"
 fi
 
 LICENSE="GPL-2 LGPL-2.1"



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

2021-07-04 Thread Sam James
commit: f94b3312eb778cc2033b91c47217edf5285a8c1e
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f94b3312

sys-apps/policycoreutils: Stabilize 3.2 amd64, #797616

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

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

diff --git a/sys-apps/policycoreutils/policycoreutils-3.2.ebuild 
b/sys-apps/policycoreutils/policycoreutils-3.2.ebuild
index fcc4708f1b9..57b67b7b57e 100644
--- a/sys-apps/policycoreutils/policycoreutils-3.2.ebuild
+++ b/sys-apps/policycoreutils/policycoreutils-3.2.ebuild
@@ -25,7 +25,7 @@ if [[ ${PV} ==  ]]; then
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz

https://dev.gentoo.org/~perfinion/distfiles/policycoreutils-extra-${EXTRAS_VER}.tar.bz2;
-   KEYWORDS="~amd64 ~arm64 ~mips ~x86"
+   KEYWORDS="amd64 ~arm64 ~mips ~x86"
S1="${WORKDIR}/${P}"
S2="${WORKDIR}/policycoreutils-extra"
S="${S1}"



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

2021-07-04 Thread Sam James
commit: 9d98d49eb4d7b3cccf83874935daaa8a917ad89d
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:19:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:19:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9d98d49e

sys-apps/checkpolicy: Stabilize 3.2 amd64, #797616

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

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

diff --git a/sys-apps/checkpolicy/checkpolicy-3.2.ebuild 
b/sys-apps/checkpolicy/checkpolicy-3.2.ebuild
index 377994434a3..799b7e95e9b 100644
--- a/sys-apps/checkpolicy/checkpolicy-3.2.ebuild
+++ b/sys-apps/checkpolicy/checkpolicy-3.2.ebuild
@@ -14,7 +14,7 @@ if [[ ${PV} ==  ]] ; then
S="${WORKDIR}/${P}/${PN}"
 else

SRC_URI="https://github.com/SELinuxProject/selinux/releases/download/${PV}/${P}.tar.gz;
-   KEYWORDS="~amd64 ~arm ~arm64 ~mips ~riscv ~x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~mips ~riscv ~x86"
 fi
 
 LICENSE="GPL-2"



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

2021-07-04 Thread Sam James
commit: 9ad0ab6495a531d917a4edbd2ee6a985f064ba87
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:17:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:17:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9ad0ab64

sys-fs/cryptsetup: Stabilize 2.3.6 amd64, #800434

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

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

diff --git a/sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild 
b/sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild
index 72a0baf8cb9..da1b12b9528 100644
--- a/sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild
+++ b/sys-fs/cryptsetup/cryptsetup-2.3.6.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://www.kernel.org/pub/linux/utils/${PN}/v$(ver_cut 1-2)/${P/_/-}.t
 LICENSE="GPL-2+"
 SLOT="0/12" # libcryptsetup.so version
 [[ ${PV} != *_rc* ]] && \
-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"
 CRYPTO_BACKENDS="gcrypt kernel nettle +openssl"
 # we don't support nss since it doesn't allow cryptsetup to be built statically
 # and it's missing ripemd160 support so it can't provide full backward 
compatibility



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

2021-07-04 Thread Sam James
commit: 80d451ff130e32384cafd83bd97377ac4bf6b322
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:17:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:17:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=80d451ff

dev-util/cucumber: Stabilize 3.2.0 amd64, #799830

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

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

diff --git a/dev-util/cucumber/cucumber-3.2.0.ebuild 
b/dev-util/cucumber/cucumber-3.2.0.ebuild
index c079d001922..2b34c68d3cb 100644
--- a/dev-util/cucumber/cucumber-3.2.0.ebuild
+++ b/dev-util/cucumber/cucumber-3.2.0.ebuild
@@ -19,7 +19,7 @@ 
SRC_URI="https://github.com/cucumber/cucumber-ruby/archive/v${PV}.tar.gz -> ${P}
 RUBY_S="cucumber-ruby-${PV}"
 LICENSE="Ruby"
 
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc x86"
+KEYWORDS="amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~s390 sparc x86"
 SLOT="0"
 IUSE="examples test"
 



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

2021-07-04 Thread Sam James
commit: 1ec26df44bbe71d9e0fa7b6012435f9752cdc993
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:17:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:17:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1ec26df4

x11-libs/fox: Stabilize 1.7.67 amd64, #800224

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

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

diff --git a/x11-libs/fox/fox-1.7.67.ebuild b/x11-libs/fox/fox-1.7.67.ebuild
index 7b25d4c086b..6b13f28ddb1 100644
--- a/x11-libs/fox/fox-1.7.67.ebuild
+++ b/x11-libs/fox/fox-1.7.67.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.fox-toolkit.org/pub/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="1.7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="+bzip2 +jpeg +opengl +png tiff +truetype +zlib debug doc profile tools"
 
 RDEPEND="



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

2021-07-04 Thread Sam James
commit: c8da833913f0ac1011e4a52a9aa3996e149a0fb1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:17:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:17:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c8da8339

media-gfx/krita: Stabilize 4.4.5 amd64, #798306

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

 media-gfx/krita/krita-4.4.5.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-gfx/krita/krita-4.4.5.ebuild 
b/media-gfx/krita/krita-4.4.5.ebuild
index 9b1b2c73a5e..24eb620839d 100644
--- a/media-gfx/krita/krita-4.4.5.ebuild
+++ b/media-gfx/krita/krita-4.4.5.ebuild
@@ -13,7 +13,7 @@ inherit ecm kde.org python-single-r1
 if [[ ${KDE_BUILD_TYPE} = release ]]; then
SRC_URI="mirror://kde/stable/${PN}/${PV}/${P}.tar.gz

https://dev.gentoo.org/~asturm/distfiles/${PN}-4.2.9-patchset.tar.xz;
-   KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
+   KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
 fi
 
 DESCRIPTION="Free digital painting application. Digital Painting, Creative 
Freedom!"



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

2021-07-04 Thread Sam James
commit: d2aac353aabaebcba40f258e71b541f6439f47b1
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:17:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:17:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d2aac353

media-sound/gogglesmm: Stabilize 1.2.1-r1 amd64, #800224

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

 media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild 
b/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild
index 8c94adf364f..83427de2433 100644
--- a/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild
+++ b/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 x86"
+KEYWORDS="amd64 x86"
 IUSE="+dbus +flac +mad +vorbis +ogg +opus +aac +pulseaudio +opengl nls"
 
 RDEPEND="x11-libs/fox:1.7



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

2021-07-04 Thread Sam James
commit: e848c966ca4df174bc4504b3238b8d3822c1767a
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:16:13 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:16:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e848c966

media-libs/zxing-cpp: Stabilize 1.2.0 x86, #800173

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

 media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild 
b/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild
index c17a77e0c97..05094ad0df2 100644
--- a/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild
+++ b/media-libs/zxing-cpp/zxing-cpp-1.2.0.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/nu-book/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ~ppc64 ~x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 IUSE=""
 
 src_configure() {



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

2021-07-04 Thread Sam James
commit: eca9ab85d5c2536d098211f804fc5b69696afa78
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:16:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:16:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eca9ab85

media-sound/gogglesmm: Stabilize 1.2.1-r1 x86, #800224

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

 media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild 
b/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild
index e5b64d9f625..8c94adf364f 100644
--- a/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild
+++ b/media-sound/gogglesmm/gogglesmm-1.2.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~x86"
+KEYWORDS="~amd64 x86"
 IUSE="+dbus +flac +mad +vorbis +ogg +opus +aac +pulseaudio +opengl nls"
 
 RDEPEND="x11-libs/fox:1.7



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

2021-07-04 Thread Sam James
commit: a6098d924b5fb933b04454d26fe61b06ed5c2c5b
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:16:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:16:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a6098d92

x11-libs/fox: Stabilize 1.7.67 x86, #800224

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

 x11-libs/fox/fox-1.7.67.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-libs/fox/fox-1.7.67.ebuild b/x11-libs/fox/fox-1.7.67.ebuild
index 46ddd5fdb5e..7b25d4c086b 100644
--- a/x11-libs/fox/fox-1.7.67.ebuild
+++ b/x11-libs/fox/fox-1.7.67.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2019 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ SRC_URI="ftp://ftp.fox-toolkit.org/pub/${P}.tar.gz;
 
 LICENSE="LGPL-2.1"
 SLOT="1.7"
-KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc ~x86"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~sparc x86"
 IUSE="+bzip2 +jpeg +opengl +png tiff +truetype +zlib debug doc profile tools"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/redis/

2021-07-04 Thread Sam James
commit: 94533f313cfa522c11db3d9d60ed28a8947f5cf9
Author: Sam James  gentoo  org>
AuthorDate: Sun Jul  4 22:16:09 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Sun Jul  4 22:16:09 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=94533f31

dev-db/redis: Stabilize 6.2.4 x86, #800103

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

 dev-db/redis/redis-6.2.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/redis/redis-6.2.4.ebuild b/dev-db/redis/redis-6.2.4.ebuild
index 74be0c3fb76..7b9596a684a 100644
--- a/dev-db/redis/redis-6.2.4.ebuild
+++ b/dev-db/redis/redis-6.2.4.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://redis.io;
 SRC_URI="https://download.redis.io/releases/${P}.tar.gz;
 
 LICENSE="BSD"
-KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc ~x86 ~amd64-linux 
~x86-linux ~x86-solaris"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 sparc x86 ~amd64-linux 
~x86-linux ~x86-solaris"
 IUSE="+jemalloc ssl systemd tcmalloc test"
 RESTRICT="!test? ( test )"
 SLOT="0"



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

2021-07-04 Thread William Hubbs
commit: 936bf53dda8275e7fcd7174f8f42a507b9e8ab91
Author: William Hubbs  gentoo  org>
AuthorDate: Sun Jul  4 21:53:18 2021 +
Commit: William Hubbs  gentoo  org>
CommitDate: Sun Jul  4 21:53:49 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=936bf53d

app-accessibility/espeakup: fix the upstream git repository

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

 app-accessibility/espeakup/espeakup-0.90.ebuild | 2 +-
 app-accessibility/espeakup/espeakup-.ebuild | 2 +-
 app-accessibility/espeakup/metadata.xml | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/app-accessibility/espeakup/espeakup-0.90.ebuild 
b/app-accessibility/espeakup/espeakup-0.90.ebuild
index fac584f9372..64a9b3f5a8a 100644
--- a/app-accessibility/espeakup/espeakup-0.90.ebuild
+++ b/app-accessibility/espeakup/espeakup-0.90.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/williamh/espeakup.git;
+   EGIT_REPO_URI="https://github.com/linux-speakup/espeakup.git;
inherit git-r3
 else

SRC_URI="https://github.com/linux-speakup/espeakup/archive/v${PV}.tar.gz -> 
${P}.tar.gz"

diff --git a/app-accessibility/espeakup/espeakup-.ebuild 
b/app-accessibility/espeakup/espeakup-.ebuild
index a54813ed5d9..206dd07cd25 100644
--- a/app-accessibility/espeakup/espeakup-.ebuild
+++ b/app-accessibility/espeakup/espeakup-.ebuild
@@ -4,7 +4,7 @@
 EAPI=7
 
 if [[ ${PV} == "" ]] ; then
-   EGIT_REPO_URI="https://github.com/williamh/espeakup.git;
+   EGIT_REPO_URI="https://github.com/linux-speakup/espeakup.git;
inherit git-r3
 else

SRC_URI="https://github.com/linux-speakup/espeakup/archive/v${PV}.tar.gz -> 
${P}.tar.gz"

diff --git a/app-accessibility/espeakup/metadata.xml 
b/app-accessibility/espeakup/metadata.xml
index a8b8f95c43c..e6e23a39c06 100644
--- a/app-accessibility/espeakup/metadata.xml
+++ b/app-accessibility/espeakup/metadata.xml
@@ -13,6 +13,6 @@ Espeakup is a small lightweight connector which makes it 
possible for
 speakup to use espeak as its synthesizer.
   
   
-williamh/espeakup
+linux-speakup/espeakup
   
 



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

2021-07-04 Thread Michał Górny
commit: 49b787afd0a8dc2ba3eb0594d83ec7b93ca942cc
Author: Michał Górny  gentoo  org>
AuthorDate: Sun Jul  4 20:09:45 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Sun Jul  4 21:05:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49b787af

x11-libs/libtinynotify: Remove doc flag

Closes: https://bugs.gentoo.org/800194
Signed-off-by: Michał Górny  gentoo.org>

 x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild | 12 +---
 x11-libs/libtinynotify/libtinynotify-.ebuild  | 13 +
 2 files changed, 10 insertions(+), 15 deletions(-)

diff --git a/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild 
b/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
index b87cfbb96ab..fee73d38bf3 100644
--- a/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
+++ b/x11-libs/libtinynotify/libtinynotify-0.2.1.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 DESCRIPTION="A lightweight implementation of Desktop Notification Spec"
 HOMEPAGE="https://github.com/mgorny/libtinynotify/;
@@ -10,19 +10,17 @@ 
SRC_URI="https://github.com/mgorny/libtinynotify/releases/download/${P}/${P}.tar
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS="~amd64 ~x86"
-IUSE="debug doc static-libs"
+IUSE="debug static-libs"
 
 RDEPEND="sys-apps/dbus:0="
-DEPEND="${RDEPEND}
-   virtual/pkgconfig
-   doc? ( >=dev-util/gtk-doc-1.18 )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 DOCS=( README )
 
 src_configure() {
local myconf=(
$(use_enable debug)
-   $(use_enable doc gtk-doc)
$(use_enable static-libs static)
)
 

diff --git a/x11-libs/libtinynotify/libtinynotify-.ebuild 
b/x11-libs/libtinynotify/libtinynotify-.ebuild
index c2e029412ac..17f57c6cdd0 100644
--- a/x11-libs/libtinynotify/libtinynotify-.ebuild
+++ b/x11-libs/libtinynotify/libtinynotify-.ebuild
@@ -1,7 +1,7 @@
-# Copyright 1999-2017 Gentoo Foundation
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
 EGIT_REPO_URI="https://github.com/mgorny/${PN}.git;
 inherit autotools git-r3
@@ -13,13 +13,11 @@ SRC_URI=""
 LICENSE="BSD"
 SLOT="0"
 KEYWORDS=""
-IUSE="debug doc static-libs"
+IUSE="debug static-libs"
 
 RDEPEND="sys-apps/dbus:0="
-DEPEND="${RDEPEND}
-   >=dev-util/gtk-doc-1.18
-   virtual/pkgconfig
-   doc? ( >=dev-util/gtk-doc-1.18 )"
+DEPEND="${RDEPEND}"
+BDEPEND="virtual/pkgconfig"
 
 src_prepare() {
default
@@ -29,7 +27,6 @@ src_prepare() {
 src_configure() {
local myconf=(
$(use_enable debug)
-   $(use_enable doc gtk-doc)
$(use_enable static-libs static)
)
 



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

2021-07-04 Thread David Seifert
commit: c38262d85ca9aa290326dd7cd6ba8675ce216787
Author: David Seifert  gentoo  org>
AuthorDate: Sun Jul  4 20:59:11 2021 +
Commit: David Seifert  gentoo  org>
CommitDate: Sun Jul  4 20:59:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c38262d8

media-gfx/graphviz: Add USE="webp"

Closes: https://bugs.gentoo.org/794823
Signed-off-by: David Seifert  gentoo.org>

 .../graphviz/{graphviz-2.47.1.ebuild => graphviz-2.47.1-r1.ebuild}| 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-gfx/graphviz/graphviz-2.47.1.ebuild 
b/media-gfx/graphviz/graphviz-2.47.1-r1.ebuild
similarity index 98%
rename from media-gfx/graphviz/graphviz-2.47.1.ebuild
rename to media-gfx/graphviz/graphviz-2.47.1-r1.ebuild
index 2c8ab4b7913..130d70d2a5f 100644
--- a/media-gfx/graphviz/graphviz-2.47.1.ebuild
+++ b/media-gfx/graphviz/graphviz-2.47.1-r1.ebuild
@@ -15,7 +15,7 @@ 
SRC_URI="https://gitlab.com/graphviz/graphviz/-/package_files/9573974/download -
 LICENSE="CPL-1.0"
 SLOT="0"
 KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 sparc 
x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~x64-solaris"
-IUSE="+cairo devil doc examples gtk gts guile java lasi nls pdf perl 
postscript python qt5 ruby svg tcl X"
+IUSE="+cairo devil doc examples gtk gts guile java lasi nls pdf perl 
postscript python qt5 ruby svg tcl webp X"
 
 REQUIRED_USE="
!cairo? ( !X !gtk !postscript !lasi )
@@ -81,6 +81,7 @@ RDEPEND="
ruby? ( dev-lang/ruby:* )
svg? ( gnome-base/librsvg )
tcl? ( >=dev-lang/tcl-8.3:0= )
+   webp? ( media-libs/libwebp:= )
X? (
x11-libs/libX11
x11-libs/libXaw
@@ -202,6 +203,7 @@ src_configure() {
$(use_with pdf poppler)
$(use_with postscript ghostscript)
$(use_with svg rsvg)
+   $(use_with webp)
$(use_with X x)
$(use_with X xaw)
$(use_with X lefty)



[gentoo-commits] proj/kde:master commit in: kde-plasma/drkonqi/files/, kde-plasma/drkonqi/

2021-07-04 Thread Andreas Sturmlechner
commit: cef695de6e4b84bf158dfdc450a0fe3853c02a39
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sun Jul  4 20:50:37 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jul  4 20:50:37 2021 +
URL:https://gitweb.gentoo.org/proj/kde.git/commit/?id=cef695de

kde-plasma/drkonqi: Drop unused DEPEND

Upstream commit 59dceeb53196063c568201d0c567bea7887b1cc4

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

 kde-plasma/drkonqi/drkonqi-5.22.49..ebuild |  3 +-
 kde-plasma/drkonqi/drkonqi-.ebuild |  1 -
 .../drkonqi/files/drkonqi-5.22.3-unused-dep.patch  | 37 ++
 3 files changed, 39 insertions(+), 2 deletions(-)

diff --git a/kde-plasma/drkonqi/drkonqi-5.22.49..ebuild 
b/kde-plasma/drkonqi/drkonqi-5.22.49..ebuild
index 32c20a6429..61f911b5b0 100644
--- a/kde-plasma/drkonqi/drkonqi-5.22.49..ebuild
+++ b/kde-plasma/drkonqi/drkonqi-5.22.49..ebuild
@@ -30,7 +30,6 @@ COMMON_DEPEND="
>=kde-frameworks/kio-${KFMIN}:5
>=kde-frameworks/kjobwidgets-${KFMIN}:5
>=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/kservice-${KFMIN}:5
>=kde-frameworks/kwallet-${KFMIN}:5
>=kde-frameworks/kwayland-${KFMIN}:5
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5
@@ -47,6 +46,8 @@ RDEPEND="${COMMON_DEPEND}
)
 "
 
+PATCHES=( "${FILESDIR}/${PN}-5.22.3-unused-dep.patch" )
+
 src_test() {
# needs network access, bug #698510
local myctestargs=(

diff --git a/kde-plasma/drkonqi/drkonqi-.ebuild 
b/kde-plasma/drkonqi/drkonqi-.ebuild
index 02fd02a44f..2ec227a5a3 100644
--- a/kde-plasma/drkonqi/drkonqi-.ebuild
+++ b/kde-plasma/drkonqi/drkonqi-.ebuild
@@ -30,7 +30,6 @@ COMMON_DEPEND="
>=kde-frameworks/kio-${KFMIN}:5
>=kde-frameworks/kjobwidgets-${KFMIN}:5
>=kde-frameworks/knotifications-${KFMIN}:5
-   >=kde-frameworks/kservice-${KFMIN}:5
>=kde-frameworks/kwallet-${KFMIN}:5
>=kde-frameworks/kwayland-${KFMIN}:5
>=kde-frameworks/kwidgetsaddons-${KFMIN}:5

diff --git a/kde-plasma/drkonqi/files/drkonqi-5.22.3-unused-dep.patch 
b/kde-plasma/drkonqi/files/drkonqi-5.22.3-unused-dep.patch
new file mode 100644
index 00..d34638be71
--- /dev/null
+++ b/kde-plasma/drkonqi/files/drkonqi-5.22.3-unused-dep.patch
@@ -0,0 +1,37 @@
+From 59dceeb53196063c568201d0c567bea7887b1cc4 Mon Sep 17 00:00:00 2001
+From: Nicolas Fella 
+Date: Sat, 3 Jul 2021 20:32:11 +0200
+Subject: [PATCH] Remove unused KService dep
+
+---
+ src/CMakeLists.txt | 1 -
+ src/statusnotifier.cpp | 1 -
+ 2 files changed, 2 deletions(-)
+
+diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt
+index 1c176188..6ec2120e 100644
+--- a/src/CMakeLists.txt
 b/src/CMakeLists.txt
+@@ -96,7 +96,6 @@ target_link_libraries(
+ DrKonqiInternal
+ KF5::I18n
+ KF5::CoreAddons
+-KF5::Service
+ KF5::ConfigWidgets
+ KF5::JobWidgets
+ KF5::KIOCore
+diff --git a/src/statusnotifier.cpp b/src/statusnotifier.cpp
+index 41271874..c5f795c0 100644
+--- a/src/statusnotifier.cpp
 b/src/statusnotifier.cpp
+@@ -17,7 +17,6 @@
+ #include 
+ #include 
+ #include 
+-#include 
+ #include 
+ 
+ #include "crashedapplication.h"
+-- 
+GitLab
+



[gentoo-commits] proj/releng:master commit in: releases/portage/isos/patches/, releases/portage/isos/env/sys-kernel/

2021-07-04 Thread Georgy Yakovlev
commit: 35826178e4096692dd254565c426a0eef8b0cc45
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Sat Jul  3 21:50:27 2021 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Sun Jul  4 20:48:13 2021 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=35826178

releases/portage/isos: add genkernel patch for ppc64

since it's still not fixed in genkernel, we can carry a
local patch.

patch is conditional for ppc64 only, it will affect only ppc64le
iso for now. ppc64 installcd is ppc, not ppc64.

Bug: https://bugs.gentoo.org/796272
Signed-off-by: Georgy Yakovlev  gentoo.org>

 releases/portage/isos/env/sys-kernel/genkernel | 35 
 .../portage/isos/patches/genkernel-ppc64-iso.patch | 47 ++
 2 files changed, 82 insertions(+)

diff --git a/releases/portage/isos/env/sys-kernel/genkernel 
b/releases/portage/isos/env/sys-kernel/genkernel
new file mode 100644
index ..67cb7b05
--- /dev/null
+++ b/releases/portage/isos/env/sys-kernel/genkernel
@@ -0,0 +1,35 @@
+post_src_unpack() {
+   if use ppc64; then
+   einfo "hooked by ${BASH_SOURCE[0]} in ${FUNCNAME[0]}"
+   local patchfile
+   
patchfile="${PORTAGE_CONFIGROOT%/}/etc/portage/patches/genkernel-ppc64-iso.patch"
+   if [[ -f ${patchfile} ]]; then
+   einfo "found genkernel patch for bug 
https://bugs.gentoo.org/796272;
+   cd "${S}" || die
+   eapply "${patchfile}"
+   else
+   ewarn "no genkernel patch found, skipping hook"
+   fi
+   fi
+}
+
+post_pkg_postinst() {
+   einfo "hooked by ${BASH_SOURCE[0]} in ${FUNCNAME[0]}"
+   einfo "cleaning up bug https://bugs.gentoo.org/796272 workarounds"
+   # cleanup after ourselves, we don't want workarounds shipped to users
+   # and don't want updating all the spec files with new removal 
directives.
+   local envfile patchfile
+   envfile="${PORTAGE_CONFIGROOT%/}/etc/portage/env/sys-kernel/genkernel"
+   
patchfile="${PORTAGE_CONFIGROOT%/}/etc/portage/patches/genkernel-ppc64-iso.patch"
+   
+   local _x
+   for _x in "${envfile}" "${patchfile}"; do
+   if [[ -f ${_x} ]]; then
+   rm -vf "${_x}"
+   fi
+   done
+   rmdir -v --ignore-fail-on-non-empty 
"${PORTAGE_CONFIGROOT%/}/etc/portage/env/sys-kernel"
+   rmdir -v --ignore-fail-on-non-empty 
"${PORTAGE_CONFIGROOT%/}/etc/portage/env"
+   rmdir -v --ignore-fail-on-non-empty 
"${PORTAGE_CONFIGROOT%/}/etc/portage/patches"
+}
+   

diff --git a/releases/portage/isos/patches/genkernel-ppc64-iso.patch 
b/releases/portage/isos/patches/genkernel-ppc64-iso.patch
new file mode 100644
index ..61c85942
--- /dev/null
+++ b/releases/portage/isos/patches/genkernel-ppc64-iso.patch
@@ -0,0 +1,47 @@
+From 628e1a30b384a900cf7095cf86441fed7a0300dc Mon Sep 17 00:00:00 2001
+From: Georgy Yakovlev 
+Date: Fri, 14 May 2021 22:05:33 -0700
+Subject: [PATCH] defaults/initrd.scripts: don't skip top level devices with
+ partitions
+
+ppc64 media should be mounted as /dev/sdX, not as /dev/sdX1
+this loop was skipping /dev/sdX if /dev/sdX1 is present.
+
+Bug: https://bugs.gentoo.org/796272
+Signed-off-by: Georgy Yakovlev 
+---
+ defaults/initrd.scripts | 18 --
+ 1 file changed, 18 deletions(-)
+
+diff --git a/defaults/initrd.scripts b/defaults/initrd.scripts
+index 5ec8adb..bfc36cf 100644
+--- a/defaults/initrd.scripts
 b/defaults/initrd.scripts
+@@ -178,24 +178,6 @@ findmediamount() {
+   # Check for a block device to mount
+   if [ -b "${x}" ]
+   then
+-  skip=0
+-  bsn=$(basename "${x}")
+-  #
+-  # If disk and it has at least one partition, 
skip.
+-  # We use /sys/block/${bsn}/${bsn}[0-9]* to make 
sure that we
+-  # don't skip device mapper devices. Even the 
craziest scenario
+-  # deserves a fair chance.
+-  #
+-  # shellcheck disable=SC2045
+-  for part in $(ls 
/sys/block/${bsn}/${bsn}*[0-9]* 2>/dev/null)
+-  do
+-  skip=1
+-  break;
+-  done
+-  if [ ${skip} -eq 1 ]
+-  then
+-  continue
+-  fi
+   good_msg "Attempting to mount media: ${x}" 
${CRYPT_SILENT}
+ 
+   CDROOT_TYPE=$(determine_fs "${x}" 
"${CDROOT_TYPE}")
+-- 
+2.31.1
+



[gentoo-commits] repo/gentoo:master commit in: dev-qt/qtwebengine/

2021-07-04 Thread Andreas Sturmlechner
commit: 393d361644d173d4ea6bf224f4a07ffef9bf
Author: Andreas Sturmlechner  gentoo  org>
AuthorDate: Sat Jul  3 14:45:46 2021 +
Commit: Andreas Sturmlechner  gentoo  org>
CommitDate: Sun Jul  4 20:40:06 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=393d3616

dev-qt/qtwebengine: Drop 5.15.2_p20210521

Overshadowed by 5.15.2_p20210625.

Bug: https://bugs.gentoo.org/800181
Package-Manager: Portage-3.0.20, Repoman-3.0.3
Signed-off-by: Andreas Sturmlechner  gentoo.org>

 dev-qt/qtwebengine/Manifest|   1 -
 .../qtwebengine-5.15.2_p20210521.ebuild| 215 -
 2 files changed, 216 deletions(-)

diff --git a/dev-qt/qtwebengine/Manifest b/dev-qt/qtwebengine/Manifest
index 99cd2facee1..7ee8f9bdba7 100644
--- a/dev-qt/qtwebengine/Manifest
+++ b/dev-qt/qtwebengine/Manifest
@@ -1,4 +1,3 @@
 DIST qtwebengine-5.15.2-chromium87-ppc64le.tar.xz 28536 BLAKE2B 
98f8e01e7026d9df1d30ae453d4394d3c4ad04c0620a2496235d45f5f1080c2280e040826cde7f72d9771bfc80d0c3df56c9dcbe4f763cec432ad56de37d64c5
 SHA512 
c90a76f44a9d720624016fd082ab3036f12e13b9789e869ebaf5e4774afca7d4187faf187f365f696d1a7eda05ca75516556ee9d291cdb3408d57cc4b23e2654
 DIST qtwebengine-5.15.2_p20210421.tar.xz 320142308 BLAKE2B 
1ed6e3daad8e8da7336c1575f524f1474eb043a44a86eebdc2375e9a01dbb21a4bf622b01525c627ff5846bb375b19617ca78f418749d6e4ce53b376da0b8317
 SHA512 
3a57cc8eb1aab086ae2ef69b1b1eaac47827d1f460ff53d5954b0dcb6753cc0e5fb24db490ea186141e6659e26a59862e8096126450a9fde6ed1230c00e4ceaa
-DIST qtwebengine-5.15.2_p20210521.tar.xz 320126348 BLAKE2B 
49a910d19487a720bca751d40bb694536d2ac7002b10de5b949b9bb98baf5f86001e89f522bb05edafc5c050a55f7ac15b6689138cff0912990472735a46bfbc
 SHA512 
f71941667abd1a797442dedb501010cb67512e2df9a818b15ff8901a49987211bddcba80e7cc2a4652db9bf56fc9d969e8fa38de1f3ad112838a1a9c9facde8f
 DIST qtwebengine-5.15.2_p20210625.tar.xz 320144708 BLAKE2B 
cd11e69a34ff0fa07d26262906a12304c39a12575024d61db18bc696284e9c5700090e5bfed217c89d2c8eac49b0ccb7d7ee0ba716ec3a81878de1301566884d
 SHA512 
517a8cdaff684894456db8cfb5cfca412b8764e7035623d8190d9a06f6995742097a53eb67329d12bf8dc0a56372f7d09a54532ba804a5bff245ca8ef042a4e1

diff --git a/dev-qt/qtwebengine/qtwebengine-5.15.2_p20210521.ebuild 
b/dev-qt/qtwebengine/qtwebengine-5.15.2_p20210521.ebuild
deleted file mode 100644
index 4d991de9d35..000
--- a/dev-qt/qtwebengine/qtwebengine-5.15.2_p20210521.ebuild
+++ /dev/null
@@ -1,215 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python2_7 )
-QTVER=$(ver_cut 1-3)
-inherit estack flag-o-matic multiprocessing python-any-r1 qt5-build
-
-DESCRIPTION="Library for rendering dynamic web content in Qt5 C++ and QML 
applications"
-HOMEPAGE="https://www.qt.io/;
-
-if [[ ${QT5_BUILD_TYPE} == release ]]; then
-   KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-   if [[ ${PV} == ${QTVER}_p* ]]; then
-   SRC_URI="https://dev.gentoo.org/~asturm/distfiles/${P}.tar.xz;
-   S="${WORKDIR}/${P}"
-   QT5_BUILD_DIR="${S}_build"
-   fi
-else
-   EGIT_BRANCH="5.15"
-   EGIT_REPO_URI=(
-   "https://code.qt.io/qt/${QT5_MODULE}.git;
-   "https://github.com/qt/${QT5_MODULE}.git;
-   )
-   inherit git-r3
-fi
-
-# patchset based on https://github.com/chromium-ppc64le releases
-SRC_URI+=" ppc64? ( 
https://dev.gentoo.org/~gyakovlev/distfiles/${PN}-5.15.2-chromium87-ppc64le.tar.xz
 )"
-
-IUSE="alsa bindist designer geolocation +jumbo-build kerberos pulseaudio 
+system-ffmpeg +system-icu widgets"
-REQUIRED_USE="designer? ( widgets )"
-
-RDEPEND="
-   app-arch/snappy:=
-   dev-libs/glib:2
-   dev-libs/nspr
-   dev-libs/nss
-   dev-libs/expat
-   dev-libs/libevent:=
-   dev-libs/libxml2[icu]
-   dev-libs/libxslt
-   dev-libs/re2:=
-   ~dev-qt/qtcore-${QTVER}
-   ~dev-qt/qtdeclarative-${QTVER}
-   ~dev-qt/qtgui-${QTVER}
-   ~dev-qt/qtnetwork-${QTVER}
-   ~dev-qt/qtprintsupport-${QTVER}
-   ~dev-qt/qtwebchannel-${QTVER}[qml]
-   media-libs/fontconfig
-   media-libs/freetype
-   media-libs/harfbuzz:=
-   media-libs/lcms:2
-   media-libs/libjpeg-turbo:=
-   media-libs/libpng:0=
-   >=media-libs/libvpx-1.5:=[svc(+)]
-   media-libs/libwebp:=
-   media-libs/mesa[egl,X(+)]
-   media-libs/opus
-   sys-apps/dbus
-   sys-apps/pciutils
-   sys-libs/zlib[minizip]
-   virtual/libudev
-   x11-libs/libdrm
-   x11-libs/libX11
-   x11-libs/libXcomposite
-   x11-libs/libXcursor
-   x11-libs/libXdamage
-   x11-libs/libXext
-   x11-libs/libXfixes
-   x11-libs/libXi
-   x11-libs/libXrandr
-   x11-libs/libXrender
-   x11-libs/libXScrnSaver
-   x11-libs/libXtst
-   alsa? ( media-libs/alsa-lib )
-   designer? ( ~dev-qt/designer-${QTVER} )
-   geolocation? ( 

[gentoo-commits] proj/releng:master commit in: releases/specs/x86/i686/

2021-07-04 Thread Andreas K. Hüttel
commit: bcc8c249ae900c266f4b69e9eb20d39590e77d3e
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 20:35:45 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 20:35:45 2021 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=bcc8c249

x86: remove redundant files

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

 releases/specs/x86/i686/stage2-desktop.spec | 8 
 releases/specs/x86/i686/stage3-desktop.spec | 8 
 2 files changed, 16 deletions(-)

diff --git a/releases/specs/x86/i686/stage2-desktop.spec 
b/releases/specs/x86/i686/stage2-desktop.spec
deleted file mode 100644
index 5a2ea16d..
--- a/releases/specs/x86/i686/stage2-desktop.spec
+++ /dev/null
@@ -1,8 +0,0 @@
-subarch: i686
-target: stage2
-version_stamp: desktop-@TIMESTAMP@
-rel_type: default
-profile: default/linux/x86/17.0/desktop
-snapshot: @TIMESTAMP@
-source_subpath: default/stage1-i686-@TIMESTAMP@
-portage_prefix: releng

diff --git a/releases/specs/x86/i686/stage3-desktop.spec 
b/releases/specs/x86/i686/stage3-desktop.spec
deleted file mode 100644
index 7192a2d2..
--- a/releases/specs/x86/i686/stage3-desktop.spec
+++ /dev/null
@@ -1,8 +0,0 @@
-subarch: i686
-target: stage3
-version_stamp: desktop-@TIMESTAMP@
-rel_type: default
-profile: default/linux/x86/17.0/desktop
-snapshot: @TIMESTAMP@
-source_subpath: default/stage2-i686-desktop-@TIMESTAMP@
-portage_prefix: releng



[gentoo-commits] proj/releng:master commit in: releases/specs/x86/i686/hardened/

2021-07-04 Thread Andreas K. Hüttel
commit: b3cb79b31030233112c9019bc24660472c01302b
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 20:34:12 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 20:34:12 2021 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=b3cb79b3

x86: remove redundant files

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

 releases/specs/x86/i686/hardened/stage2.spec | 10 --
 releases/specs/x86/i686/hardened/stage3.spec |  8 
 2 files changed, 18 deletions(-)

diff --git a/releases/specs/x86/i686/hardened/stage2.spec 
b/releases/specs/x86/i686/hardened/stage2.spec
deleted file mode 100644
index ea9c29a9..
--- a/releases/specs/x86/i686/hardened/stage2.spec
+++ /dev/null
@@ -1,10 +0,0 @@
-subarch: i686
-target: stage2
-version_stamp: hardened-@TIMESTAMP@
-rel_type: hardened
-profile: hardened/linux/x86
-snapshot: @TIMESTAMP@
-source_subpath: hardened/stage1-x86-hardened-@TIMESTAMP@
-chost: i686-pc-linux-gnu
-cflags: -mtune=i686 -O2 -pipe -fforce-addr
-portage_prefix: releng

diff --git a/releases/specs/x86/i686/hardened/stage3.spec 
b/releases/specs/x86/i686/hardened/stage3.spec
deleted file mode 100644
index 43d96226..
--- a/releases/specs/x86/i686/hardened/stage3.spec
+++ /dev/null
@@ -1,8 +0,0 @@
-subarch: i686
-target: stage3
-version_stamp: hardened-@TIMESTAMP@
-rel_type: hardened
-profile: hardened/linux/x86
-snapshot: @TIMESTAMP@
-source_subpath: hardened/stage2-i686-hardened-@TIMESTAMP@
-portage_prefix: releng



[gentoo-commits] proj/releng:master commit in: releases/specs/x86/hardened/, tools/

2021-07-04 Thread Andreas K. Hüttel
commit: 0422a99519805880834ec00ef75fb52a838c2032
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 20:32:28 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 20:32:28 2021 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=0422a995

x86: Move hardened builds from pardalote to demeter

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

 ...incd-stage1.spec => admincd-stage1-openrc.spec} |   4 +-
 ...incd-stage2.spec => admincd-stage2-openrc.spec} |   4 +-
 releases/specs/x86/hardened/installcd-stage1.spec  |  86 --
 .../x86/hardened/installcd-stage2-minimal.spec | 321 -
 .../hardened/{stage1.spec => stage1-openrc.spec}   |   4 +-
 .../hardened/{stage2.spec => stage2-openrc.spec}   |   4 +-
 .../hardened/{stage3.spec => stage3-openrc.spec}   |   4 +-
 tools/catalyst-auto-x86-demeter.conf   |  19 +-
 tools/catalyst-auto-x86.conf   |   8 +-
 9 files changed, 29 insertions(+), 425 deletions(-)

diff --git a/releases/specs/x86/hardened/admincd-stage1.spec 
b/releases/specs/x86/hardened/admincd-stage1-openrc.spec
similarity index 97%
rename from releases/specs/x86/hardened/admincd-stage1.spec
rename to releases/specs/x86/hardened/admincd-stage1-openrc.spec
index 7ce6cbf8..e38a8ccc 100644
--- a/releases/specs/x86/hardened/admincd-stage1.spec
+++ b/releases/specs/x86/hardened/admincd-stage1-openrc.spec
@@ -1,10 +1,10 @@
 subarch: i686
-version_stamp: @TIMESTAMP@
+version_stamp: hardened-openrc-@TIMESTAMP@
 target: livecd-stage1
 rel_type: hardened
 profile: default/linux/x86/17.0/hardened
 snapshot: @TIMESTAMP@
-source_subpath: hardened/stage3-i686-hardened-@TIMESTAMP@
+source_subpath: hardened/stage3-i686-hardened-openrc-@TIMESTAMP@
 compression_mode: pixz_x
 portage_confdir: @REPO_DIR@/releases/portage/isos
 

diff --git a/releases/specs/x86/hardened/admincd-stage2.spec 
b/releases/specs/x86/hardened/admincd-stage2-openrc.spec
similarity index 97%
rename from releases/specs/x86/hardened/admincd-stage2.spec
rename to releases/specs/x86/hardened/admincd-stage2-openrc.spec
index f553cd9b..74867913 100644
--- a/releases/specs/x86/hardened/admincd-stage2.spec
+++ b/releases/specs/x86/hardened/admincd-stage2-openrc.spec
@@ -1,10 +1,10 @@
 subarch: i686
-version_stamp: @TIMESTAMP@
+version_stamp: hardened-openrc-@TIMESTAMP@
 target: livecd-stage2
 rel_type: hardened
 profile: default/linux/x86/17.0/hardened
 snapshot: @TIMESTAMP@
-source_subpath: hardened/livecd-stage1-i686-@TIMESTAMP@
+source_subpath: hardened/livecd-stage1-i686-hardened-openrc-@TIMESTAMP@
 portage_confdir: @REPO_DIR@/releases/portage/isos
 
 livecd/bootargs: dokeymap

diff --git a/releases/specs/x86/hardened/installcd-stage1.spec 
b/releases/specs/x86/hardened/installcd-stage1.spec
deleted file mode 100644
index fa629e5e..
--- a/releases/specs/x86/hardened/installcd-stage1.spec
+++ /dev/null
@@ -1,86 +0,0 @@
-subarch: x86
-version_stamp: hardened-@TIMESTAMP@
-target: livecd-stage1
-rel_type: hardened
-profile: default/linux/x86/17.0/hardened
-snapshot: @TIMESTAMP@
-source_subpath: hardened/stage3-x86-hardened-@TIMESTAMP@
-compression_mode: pixz_x
-livecd/use:
-   -*
-   compile-locales
-   fbcon
-   ipv6
-   livecd
-   modules
-   ncurses
-#  nls
-   pam
-   readline
-   socks5
-   ssl
-#  unicode
-   xml
-
-livecd/packages:
-   app-accessibility/brltty
-   app-admin/hddtemp
-   app-admin/pwgen
-   app-admin/syslog-ng
-   app-arch/unzip
-   app-crypt/gnupg
-   app-editors/mg
-   app-misc/livecd-tools
-   app-misc/screen
-   app-misc/tmux
-   app-portage/mirrorselect
-   app-text/wgetpaste
-   media-gfx/fbgrab
-   net-analyzer/tcptraceroute
-   net-analyzer/traceroute
-   net-dialup/mingetty
-   net-dialup/pptpclient
-   net-dialup/rp-pppoe
-   net-fs/nfs-utils
-   net-irc/irssi
-   net-misc/dhcpcd
-   net-misc/iputils
-   net-misc/ntp
-   net-misc/rdate
-   net-misc/vconfig
-   net-proxy/dante
-   net-proxy/tsocks
-   net-wireless/wireless-tools
-   net-wireless/wpa_supplicant
-   sys-apps/ethtool
-   sys-apps/fxload
-   sys-apps/hdparm
-   sys-apps/iproute2
-   sys-apps/memtester
-   sys-apps/netplug
-   sys-block/parted
-   sys-apps/sdparm
-#  sys-block/partimage
-#  sys-block/qla-fc-firmware
-   sys-firmware/ipw2100-firmware
-   sys-firmware/ipw2200-firmware
-   sys-firmware/zd1201-firmware
-   sys-firmware/zd1211-firmware
-   sys-fs/cryptsetup
-   sys-fs/dmraid
-   sys-fs/dosfstools
-   sys-fs/e2fsprogs
-#  sys-fs/hfsplusutils
-#  sys-fs/hfsutils
-   sys-fs/jfsutils
-   sys-fs/lsscsi
-   sys-fs/lvm2
-#  sys-fs/mac-fdisk
-   sys-fs/mdadm
-#  sys-fs/multipath-tools
-   sys-fs/ntfs3g
-   sys-fs/reiserfsprogs
-   sys-fs/xfsprogs
-   

[gentoo-commits] proj/releng:master commit in: tools/

2021-07-04 Thread Andreas K. Hüttel
commit: 0773a936df93b33003e3fe70e514f50117b09b06
Author: Andreas K. Hüttel  gentoo  org>
AuthorDate: Sun Jul  4 17:23:59 2021 +
Commit: Andreas K. Hüttel  gentoo  org>
CommitDate: Sun Jul  4 17:23:59 2021 +
URL:https://gitweb.gentoo.org/proj/releng.git/commit/?id=0773a936

x86: fix e-mail subject

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

 tools/catalyst-auto-x86-demeter.conf | 1 +
 1 file changed, 1 insertion(+)

diff --git a/tools/catalyst-auto-x86-demeter.conf 
b/tools/catalyst-auto-x86-demeter.conf
index 6f16156f..84c2f985 100644
--- a/tools/catalyst-auto-x86-demeter.conf
+++ b/tools/catalyst-auto-x86-demeter.conf
@@ -7,6 +7,7 @@ host=$(hostname)
 
 ARCH="x86"
 TYPE="auto"
+EMAIL_SUBJECT_PREPEND="[x86-auto]"
 
 SPECS_DIR=${REPO_DIR}/releases/specs/x86
 



  1   2   3   >