[gentoo-commits] repo/gentoo:master commit in: app-eselect/eselect-repository/

2022-01-12 Thread Michał Górny
commit: 44f5f56b96eb529ef552c9c7594fb9fd66ba4ba7
Author: Michał Górny  gentoo  org>
AuthorDate: Thu Jan 13 07:58:23 2022 +
Commit: Michał Górny  gentoo  org>
CommitDate: Thu Jan 13 07:58:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=44f5f56b

app-eselect/eselect-repository: Bump to v12

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

 app-eselect/eselect-repository/Manifest|  1 +
 .../eselect-repository-12.ebuild   | 52 ++
 2 files changed, 53 insertions(+)

diff --git a/app-eselect/eselect-repository/Manifest 
b/app-eselect/eselect-repository/Manifest
index 7ae44f2e4cf5..ec2350a55f23 100644
--- a/app-eselect/eselect-repository/Manifest
+++ b/app-eselect/eselect-repository/Manifest
@@ -1 +1,2 @@
 DIST eselect-repository-11.tar.gz 8554 BLAKE2B 
c7bdd1559c310c492b2c00c7a7cb92d48ad24a69ff4485c1282c67b7dd211360fcda6d96eec2b9e734a1b4745f2a0fe9da1ff20d62bf1174a64b6016097ea634
 SHA512 
31b0b36122e580a018ca66d112cdddfbfe1568030fb9a20440450c17c759bfb872eb7ef99036a3dae14e8384a8f770354fd4cd362ed594408ae9e8dbbc6dea68
+DIST eselect-repository-12.tar.gz 8543 BLAKE2B 
14866156ddfefebaea368c4a13413d79e7858520861ee2b699cb09b339f3bb4b8393af7201b4cb7d6a60d2a48d168a053cc4707e2f56a7a2a11cfb5156cfa83f
 SHA512 
3b98b9bd87fe61c7fb4d314e72c8433b11dd80501cfd226d4a4de25ca6d08e7a14a2497a1700ac64d704368bb8e5ea2ec337d0712097e9e10182a3122a59e388

diff --git a/app-eselect/eselect-repository/eselect-repository-12.ebuild 
b/app-eselect/eselect-repository/eselect-repository-12.ebuild
new file mode 100644
index ..d1183fe43d04
--- /dev/null
+++ b/app-eselect/eselect-repository/eselect-repository-12.ebuild
@@ -0,0 +1,52 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit python-single-r1
+
+DESCRIPTION="Manage repos.conf via eselect"
+HOMEPAGE="https://github.com/mgorny/eselect-repository";
+SRC_URI="https://github.com/mgorny/eselect-repository/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86 ~x64-macos"
+IUSE="test"
+RESTRICT="!test? ( test )"
+REQUIRED_USE=${PYTHON_REQUIRED_USE}
+
+RDEPEND="${PYTHON_DEPS}
+   app-admin/eselect
+   $(python_gen_cond_dep '
+   dev-python/lxml[${PYTHON_USEDEP}]
+   ')
+   net-misc/wget"
+BDEPEND="
+   test? (
+   $(python_gen_cond_dep '
+   dev-python/pytest[${PYTHON_USEDEP}]
+   ')
+   )"
+
+src_compile() {
+   MAKEARGS=(
+   PREFIX="${EPREFIX}/usr"
+   SYSCONFDIR="${EPREFIX}/etc"
+   SHAREDSTATEDIR="${EPREFIX}/var"
+   ESELECTDIR="${EPREFIX}/usr/share/eselect/modules"
+   )
+
+   emake "${MAKEARGS[@]}"
+   python_fix_shebang eselect-repo-helper
+}
+
+src_test() {
+   epytest
+}
+
+src_install() {
+   emake "${MAKEARGS[@]}" DESTDIR="${D}" install
+   einstalldocs
+}



[gentoo-commits] proj/binutils-config:master commit in: src/

2022-01-12 Thread Mike Frysinger
commit: b3d5707738167a15b9a12d73b855d16784f63d05
Author: Joakim Tjernlund  infinera  com>
AuthorDate: Tue Jan  4 09:19:06 2022 +
Commit: Mike Frysinger  gentoo  org>
CommitDate: Thu Jan 13 07:42:52 2022 +
URL:
https://gitweb.gentoo.org/proj/binutils-config.git/commit/?id=b3d57077

binutils-config: skip updating empty env.d files

If the package doesn't have any info or man pages, we won't create
an env.d file, so don't try moving it.

Closes: https://bugs.gentoo.org/796260
Signed-off-by: Joakim Tjernlund  infinera.com>
Signed-off-by: Mike Frysinger  gentoo.org>

 src/binutils-config | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/binutils-config b/src/binutils-config
index 28bb044..8b62868 100755
--- a/src/binutils-config
+++ b/src/binutils-config
@@ -253,7 +253,7 @@ switch_profile() {
rm -f "${ee}"
[[ -d ${ROOT}/${DATAPATH}/man  ]] && echo 
"MANPATH=${DATAPATH}/man"   >> "${ee}"
[[ -d ${ROOT}/${DATAPATH}/info ]] && echo 
"INFOPATH=${DATAPATH}/info" >> "${ee}"
-   mv_if_diff "${ee}" "${e}"
+   [[ -e "${ee}" ]] && mv_if_diff "${ee}" "${e}"
fi
 
local c="${ENV_D}/config-${TARGET}"



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

2022-01-12 Thread Sam James
commit: 8a14437ecd7a889cb1dd85745b224417f718db52
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jan 12 16:02:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 07:18:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8a14437e

sys-apps/systemd-tmpfiles: stable 249.7 for hppa, bug #830978

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

 sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild 
b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild
index 04f6dae5d19d..f9142ca4addc 100644
--- a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild
+++ b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild
@@ -25,7 +25,7 @@ 
SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}-$
 
 LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86"
 IUSE="selinux test"
 RESTRICT="!test? ( test )"
 



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

2022-01-12 Thread Sam James
commit: 34b50a562f9758257ed69767d934aea23118f149
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jan 12 16:03:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 07:18:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=34b50a56

dev-python/furo: stable 2021.10.9 for hppa, bug #830962

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

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

diff --git a/dev-python/furo/furo-2021.10.9.ebuild 
b/dev-python/furo/furo-2021.10.9.ebuild
index fca9998785fc..b782d71bb3ef 100644
--- a/dev-python/furo/furo-2021.10.9.ebuild
+++ b/dev-python/furo/furo-2021.10.9.ebuild
@@ -13,7 +13,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86"
 
 RDEPEND="
dev-python/beautifulsoup4[${PYTHON_USEDEP}]



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

2022-01-12 Thread Sam James
commit: f4310cd1511de850c4fb81c0a84b248723329b00
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jan 12 16:03:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 07:18:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f4310cd1

dev-python/argon2-cffi-bindings: stable 21.2.0 for hppa, bug #830962

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

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

diff --git a/dev-python/argon2-cffi-bindings/argon2-cffi-bindings-21.2.0.ebuild 
b/dev-python/argon2-cffi-bindings/argon2-cffi-bindings-21.2.0.ebuild
index 786cb64d2281..9f261c98b5d5 100644
--- a/dev-python/argon2-cffi-bindings/argon2-cffi-bindings-21.2.0.ebuild
+++ b/dev-python/argon2-cffi-bindings/argon2-cffi-bindings-21.2.0.ebuild
@@ -12,7 +12,7 @@ SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
+KEYWORDS="~amd64 arm arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc ~x86"
 IUSE="cpu_flags_x86_sse2"
 
 DEPEND="app-crypt/argon2:="



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

2022-01-12 Thread Sam James
commit: 52be65bb5c53c29fb156ad178e68bb4b91906035
Author: Rolf Eike Beer  sf-mail  de>
AuthorDate: Wed Jan 12 16:04:29 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 07:18:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52be65bb

dev-python/sphinx-notfound-page: stable 0.8 for hppa, bug #830962

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

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

diff --git a/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.8.ebuild 
b/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.8.ebuild
index ef1abb58d26f..26f0070e5c11 100644
--- a/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.8.ebuild
+++ b/dev-python/sphinx-notfound-page/sphinx-notfound-page-0.8.ebuild
@@ -16,7 +16,7 @@ SRC_URI="
 
 LICENSE="MIT"
 SLOT="0"
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86 
~x64-macos"
+KEYWORDS="amd64 arm arm64 hppa ~ia64 ppc ~ppc64 ~riscv ~s390 ~sparc x86 
~x64-macos"
 
 RDEPEND="dev-python/sphinx[${PYTHON_USEDEP}]"
 



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

2022-01-12 Thread Arthur Zamarin
commit: fc572e7904f787bddecedf82aafc61b43cd1e949
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jan 13 07:13:10 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jan 13 07:13:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fc572e79

dev-python/argparse-manpage: add 2.1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/argparse-manpage/Manifest   |  1 +
 .../argparse-manpage/argparse-manpage-2.1.ebuild   | 27 ++
 2 files changed, 28 insertions(+)

diff --git a/dev-python/argparse-manpage/Manifest 
b/dev-python/argparse-manpage/Manifest
index 5bd14339f3d8..e37dc09dc8ac 100644
--- a/dev-python/argparse-manpage/Manifest
+++ b/dev-python/argparse-manpage/Manifest
@@ -1,2 +1,3 @@
 DIST argparse-manpage-1.5.tar.gz 34290 BLAKE2B 
598a0eb0d4816a764c1ba4093b18e28d7865c9a113db1910793748eb24394636a9e1caad86fef5416933ae5341026048d1e39ce928131a8796a5d66a40e36853
 SHA512 
bfdea19fa62ac029754d6df26c4fb51c18f7fee4fae681c1117253627e724cf1ff1db5196ad0690fd436cebbe403536905f157cb7eae7be50d321c663b491fd0
+DIST argparse-manpage-2.1.tar.gz 39889 BLAKE2B 
9c534b775e59064062d91587e275acf0af343cef864009e290c9a5224e481cd2f7cde87e85b2b0135483d6119e711cd6668d8455315eeb2a28d335c8ef37e3ae
 SHA512 
aed2908bec8f6bee0f8619c6d5cff742fdac0f44ab7f65b8d0c1aa3409ec0335ce763cd2177b2606111b9ba5fe43698b04ace43f9017034cf99a7142eccd9ea0
 DIST argparse-manpage-2.tar.gz 38279 BLAKE2B 
24edcb71aed7731178d24e99a36baf8be2270f6d4da0d884610da294d44313d913f8aa2db381eae77409ec504b18346688d5f7f27257285b7aa92d453b1a58f1
 SHA512 
24854cd5209635e8938716f97cb4eb283152a2a109c554385a78a5145c6e0f38c76a9172d607fb3ffdf610e8d3f7270ed94f6b4612ce731ea9dafe0a1bebebe6

diff --git a/dev-python/argparse-manpage/argparse-manpage-2.1.ebuild 
b/dev-python/argparse-manpage/argparse-manpage-2.1.ebuild
new file mode 100644
index ..5e779edcda9c
--- /dev/null
+++ b/dev-python/argparse-manpage/argparse-manpage-2.1.ebuild
@@ -0,0 +1,27 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Automatically build man-pages for your Python project"
+HOMEPAGE="https://github.com/praiskup/argparse-manpage 
https://pypi.org/project/argparse-manpage/";
+SRC_URI="https://github.com/praiskup/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+
+BDEPEND="
+   test? (
+   dev-python/pip[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+
+python_test() {
+   local -x COLUMNS=80
+   epytest
+}



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

2022-01-12 Thread Arthur Zamarin
commit: 0bc506b27ed205a3936515faaf6aad32e6b89c9a
Author: Arthur Zamarin  gentoo  org>
AuthorDate: Thu Jan 13 07:14:34 2022 +
Commit: Arthur Zamarin  gentoo  org>
CommitDate: Thu Jan 13 07:14:34 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0bc506b2

dev-python/doit: add 0.34.1

Signed-off-by: Arthur Zamarin  gentoo.org>

 dev-python/doit/Manifest   |  1 +
 dev-python/doit/doit-0.34.1.ebuild | 46 ++
 2 files changed, 47 insertions(+)

diff --git a/dev-python/doit/Manifest b/dev-python/doit/Manifest
index b5b14a6d9ecf..3845cad6f498 100644
--- a/dev-python/doit/Manifest
+++ b/dev-python/doit/Manifest
@@ -1 +1,2 @@
 DIST doit-0.33.1.tar.gz 1436620 BLAKE2B 
be294246447d36011274d57b5300b4451847751f228622bcd5a45f91367371ed5dd9c40a2476e558be8137b16fefda4bf6f1795108d0c982990abc62db5560e6
 SHA512 
852efa3b770ec5de7def1fad1167b8cdce1de7435b2ba5e4af43a84c84df0cbf960d8d5c4c9f526f303d19c7536f745c2c7700daaced984ec86fb4202f894170
+DIST doit-0.34.1.tar.gz 1447636 BLAKE2B 
5b798ee2f291aa869bf03c492d0f6f9025e78ef5df95fadeafffdb953c159778dab30f75b0f9be24386748d362f6f380e34735891ed45f3511e819986b5788ca
 SHA512 
ab5f9a56ee96d8b49f23f7d411eb4ee012639618b9604d65f61a2ce1ea1d1b42884277c08fe5ecd4b5097725d20b004457149e51f50a506d3daa9cade7ab858b

diff --git a/dev-python/doit/doit-0.34.1.ebuild 
b/dev-python/doit/doit-0.34.1.ebuild
new file mode 100644
index ..70559ea71051
--- /dev/null
+++ b/dev-python/doit/doit-0.34.1.ebuild
@@ -0,0 +1,46 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit bash-completion-r1 distutils-r1
+
+DESCRIPTION="Automation tool"
+HOMEPAGE="https://pydoit.org/ https://pypi.org/project/doit/";
+SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   dev-python/cloudpickle[${PYTHON_USEDEP}]
+   dev-python/pyinotify[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]"
+DEPEND="
+   test? (
+   $(python_gen_impl_dep sqlite)
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/pyflakes[${PYTHON_USEDEP}]
+   >=dev-python/pytest-5.4[${PYTHON_USEDEP}]
+   )"
+PDEPEND=">=dev-python/doit-py-0.4.0[${PYTHON_USEDEP}]"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx doc dev-python/sphinx_rtd_theme
+
+src_prepare() {
+   default
+   # Replace custom theme with builtin for documentation
+   sed -i -e "s:'press':'sphinx_rtd_theme':" doc/conf.py || die
+   # Disable test failing due to impact on PATH run in a sandbox
+   sed -i -e "s:test_target:_&:" tests/test_cmd_strace.py || die
+}
+
+src_install() {
+   distutils-r1_src_install
+   newbashcomp bash_completion_doit ${PN}
+   insinto /usr/share/zsh/site-functions
+   newins zsh_completion_doit _${PN}
+}



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

2022-01-12 Thread Matt Turner
commit: f9befaacd4dc04da663e16ea6125c618331d040e
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jan 13 07:01:54 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jan 13 07:01:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f9befaac

media-libs/mesa: Version bump to 21.3.4

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

 media-libs/mesa/Manifest   |   1 +
 media-libs/mesa/mesa-21.3.4.ebuild | 552 +
 2 files changed, 553 insertions(+)

diff --git a/media-libs/mesa/Manifest b/media-libs/mesa/Manifest
index 636d0360daf5..bc178009844b 100644
--- a/media-libs/mesa/Manifest
+++ b/media-libs/mesa/Manifest
@@ -1,3 +1,4 @@
 DIST mesa-21.2.6.tar.xz 15868208 BLAKE2B 
aaa6447a2f5a472c2ee2b7d6b12effb79d02804684358fd233aa00bda945c66efa3850931cd9114c51ddd492033b9f66372380395540a11fe40229edfe7ee125
 SHA512 
e65d77e2609cba85bd2cdbd4ba2072729c1556a43defdd24a91e708e3223f84b23657e63a91b16c5729684ea12fe31f45bae88294c572e057f2981a5d6c0f5a0
 DIST mesa-21.3.2.tar.xz 16466760 BLAKE2B 
549d37d365b477b3f991ef0602c94b6df826e32dfac8bf76c19157e01ffca84ce1f0fd8311a04bbdc1a6804f562a075945e2662083a3a663ba78fae0d4853ef6
 SHA512 
35c510cbab70be43bc207720a12fe85b0c010fafa147238f2c22dd873967278f187ee7675a662882ead3598305f1f37804567deb93022a692ca259f563abfdac
 DIST mesa-21.3.3.tar.xz 16476044 BLAKE2B 
04ae7983c82fbd6dafb405ee717df2406607e4fb1f95996abe5390cb1cbdb6385fb8b00ac9982d1bc7dd10fc18eeb1bc08d7147dc00969bd3bcb347a53ca77ec
 SHA512 
0263d75435f8c16d40eba3eae29bf372e8994816718deec153c582a17c4dd6ef1c67b3236ed31e63f98bf4e1089fac5cfafae9fb84d3e1fa919b274f43e7e673
+DIST mesa-21.3.4.tar.xz 16497248 BLAKE2B 
3fe2543bb6286a0d84a247785dbb4b5dd6df905eab748a89854589008d9db5aae6c52e473c58cff8d03694d46d3ce2a2680fddc8c978f898dc9bcdec02ca9b6b
 SHA512 
7aeea3dba0d39f4ac9f23c54aa0e6853d48000f50c4dd484618c28debe705cdd765ae8fafb5ddea0773976f7189849d9128be3f2282fea74394b59019cb786b9

diff --git a/media-libs/mesa/mesa-21.3.4.ebuild 
b/media-libs/mesa/mesa-21.3.4.ebuild
new file mode 100644
index ..7b064418bfbd
--- /dev/null
+++ b/media-libs/mesa/mesa-21.3.4.ebuild
@@ -0,0 +1,552 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+PYTHON_COMPAT=( python3_{7..10} )
+
+inherit llvm meson-multilib python-any-r1 linux-info
+
+MY_P="${P/_/-}"
+
+DESCRIPTION="OpenGL-like graphic library for Linux"
+HOMEPAGE="https://www.mesa3d.org/ https://mesa.freedesktop.org/";
+
+if [[ ${PV} ==  ]]; then
+   EGIT_REPO_URI="https://gitlab.freedesktop.org/mesa/mesa.git";
+   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"
+fi
+
+LICENSE="MIT"
+SLOT="0"
+RESTRICT="
+   !test? ( test )
+"
+
+RADEON_CARDS="r100 r200 r300 r600 radeon radeonsi"
+VIDEO_CARDS="${RADEON_CARDS} crocus freedreno i915 i965 intel iris lima 
nouveau panfrost v3d vc4 virgl vivante vmware"
+for card in ${VIDEO_CARDS}; do
+   IUSE_VIDEO_CARDS+=" video_cards_${card}"
+done
+
+IUSE="${IUSE_VIDEO_CARDS}
+   +classic cpu_flags_x86_sse2 d3d9 debug +gallium gles1 +gles2 +llvm
+   lm-sensors opencl osmesa selinux test unwind vaapi valgrind vdpau vulkan
+   vulkan-overlay wayland +X xa xvmc zink +zstd"
+
+REQUIRED_USE="
+   d3d9?   ( || ( video_cards_iris video_cards_r300 video_cards_r600 
video_cards_radeonsi video_cards_nouveau video_cards_vmware ) )
+   osmesa? ( gallium )
+   vulkan? ( video_cards_radeonsi? ( llvm ) )
+   vulkan-overlay? ( vulkan )
+   video_cards_crocus? ( gallium )
+   video_cards_freedreno?  ( gallium )
+   video_cards_intel?  ( classic )
+   video_cards_i915?   ( || ( classic gallium ) )
+   video_cards_i965?   ( classic )
+   video_cards_iris?   ( gallium )
+   video_cards_lima?   ( gallium )
+   video_cards_nouveau? ( || ( classic gallium ) )
+   video_cards_panfrost? ( gallium )
+   video_cards_radeon? ( || ( classic gallium )
+ gallium? ( x86? ( llvm ) 
amd64? ( llvm ) ) )
+   video_cards_r100?   ( classic )
+   video_cards_r200?   ( classic )
+   video_cards_r300?   ( gallium x86? ( llvm ) amd64? ( llvm ) )
+   video_cards_r600?   ( gallium )
+   video_cards_radeonsi?   ( gallium llvm )
+   video_cards_v3d? ( gallium )
+   video_cards_vc4? ( gallium )
+   video_cards_virgl? ( gallium )
+   video_cards_vivante? ( gallium )
+   video_cards_vmware? ( gallium )
+   xa? ( X )
+   xvmc? ( X )
+   zink? ( gallium vulkan )
+"
+
+LIBDRM_DEPSTRING=">=x11-libs/libdrm-2.4.107"
+RDEPEND="
+   >=dev-libs/expat-2.1.0-r3:=[${MULTILIB_USEDEP}]
+   >=media-libs/libglvnd-1.3.2[X?,${MULTILIB_USEDEP}]
+   >=sys-libs/zlib-1.2.8[${MULTILIB_USEDEP}]
+

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

2022-01-12 Thread Matt Turner
commit: 8f5680914a19b6f8ffdd6e3f6263de1eb1a1cbda
Author: Matt Turner  gentoo  org>
AuthorDate: Thu Jan 13 06:56:34 2022 +
Commit: Matt Turner  gentoo  org>
CommitDate: Thu Jan 13 06:58:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8f568091

net-misc/modemmanager: Add missing test deps

Closes: https://bugs.gentoo.org/831068
Signed-off-by: Matt Turner  gentoo.org>

 net-misc/modemmanager/modemmanager-1.18.4.ebuild | 26 +++-
 1 file changed, 21 insertions(+), 5 deletions(-)

diff --git a/net-misc/modemmanager/modemmanager-1.18.4.ebuild 
b/net-misc/modemmanager/modemmanager-1.18.4.ebuild
index b84f97094ad6..a86bab79aa95 100644
--- a/net-misc/modemmanager/modemmanager-1.18.4.ebuild
+++ b/net-misc/modemmanager/modemmanager-1.18.4.ebuild
@@ -1,10 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
-VALA_USE_DEPEND="vapigen"
-
-inherit gnome2 readme.gentoo-r1 systemd udev vala
+PYTHON_COMPAT=( python3_{8..10} )
+inherit gnome2 python-any-r1 readme.gentoo-r1 systemd udev vala
 
 DESCRIPTION="Modem and mobile broadband management libraries"
 HOMEPAGE="https://www.freedesktop.org/wiki/Software/ModemManager/";
@@ -14,11 +13,12 @@ LICENSE="GPL-2+"
 SLOT="0/1" # subslot = dbus interface version, i.e. N in 
org.freedesktop.ModemManager${N}
 KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ia64 ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
 
-IUSE="elogind +introspection mbim policykit +qmi systemd +udev vala"
+IUSE="elogind +introspection mbim policykit +qmi systemd test +udev vala"
 REQUIRED_USE="
?? ( elogind systemd )
vala? ( introspection )
 "
+RESTRICT="!test? ( test )"
 
 DEPEND="
>=dev-libs/glib-2.56.0:2
@@ -39,11 +39,27 @@ BDEPEND="
>=dev-util/gtk-doc-am-1
>=sys-devel/gettext-0.19.8
virtual/pkgconfig
+   test? (
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep '
+   dev-python/dbus-python[${PYTHON_USEDEP}]
+   dev-python/pygobject:3[${PYTHON_USEDEP}]
+   ')
+   )
vala? ( $(vala_depend) )
 "
 
 S="${WORKDIR}/ModemManager-${PV}"
 
+python_check_deps() {
+   has_version "dev-python/dbus-python[${PYTHON_USEDEP}]" &&
+   has_version "dev-python/pygobject:3[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
 src_prepare() {
DOC_CONTENTS="
If your USB modem shows up only as a storage device when you 
plug it in,



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

2022-01-12 Thread Hans de Graaff
commit: 00c26d342285bb332ef453614b45042cd0eb1f03
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Jan 13 06:48:38 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jan 13 06:57:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00c26d34

dev-ruby/simpleidn: add ruby30

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/simpleidn/simpleidn-0.2.1-r1.ebuild | 31 
 1 file changed, 31 insertions(+)

diff --git a/dev-ruby/simpleidn/simpleidn-0.2.1-r1.ebuild 
b/dev-ruby/simpleidn/simpleidn-0.2.1-r1.ebuild
new file mode 100644
index ..d0cc8bdfd09c
--- /dev/null
+++ b/dev-ruby/simpleidn/simpleidn-0.2.1-r1.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+RUBY_FAKEGEM_EXTRADOC="README.rdoc"
+RUBY_FAKEGEM_EXTRAINSTALL="tables"
+
+RUBY_FAKEGEM_GEMSPEC="simpleidn.gemspec"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Allows easy conversion from punycode ACE to unicode UTF-8 strings 
and vice-versa"
+HOMEPAGE="https://github.com/mmriis/simpleidn";
+SRC_URI="https://github.com/mmriis/simpleidn/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+KEYWORDS="~amd64 ~arm ~x86"
+LICENSE="Apache-2.0"
+SLOT="0"
+IUSE=""
+
+ruby_add_rdepend ">=dev-ruby/unf-0.1.4 =dev-ruby/unf-0.1*"
+
+all_ruby_prepare() {
+   sed -i -e '/simplecov/I s:^:#:' spec/spec_helper.rb || die
+   sed -i -e 's/git ls-files -z/find * -print0/' ${RUBY_FAKEGEM_GEMSPEC} 
|| die
+}



[gentoo-commits] repo/gentoo:master commit in: dev-ruby/ecma-re-validator/

2022-01-12 Thread Hans de Graaff
commit: 360d2038c3b354b20e9ac7c1dceb1203fdcaded9
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Jan 13 06:52:20 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jan 13 06:57:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=360d2038

dev-ruby/ecma-re-validator: add 0.4.0

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-ruby/ecma-re-validator/Manifest|  1 +
 .../ecma-re-validator-0.4.0.ebuild | 25 ++
 2 files changed, 26 insertions(+)

diff --git a/dev-ruby/ecma-re-validator/Manifest 
b/dev-ruby/ecma-re-validator/Manifest
index 3b3329d6007f..00cedf1fedd1 100644
--- a/dev-ruby/ecma-re-validator/Manifest
+++ b/dev-ruby/ecma-re-validator/Manifest
@@ -1 +1,2 @@
 DIST ecma-re-validator-0.3.0.gem 8704 BLAKE2B 
86358302c5f55c03ec5b30b360364cba04eedd9ac89461a3938e6365d118dcf9220b104605e05fe7340ac1b0c542af11ffa0931b6ce61ab4390d3cc68953a4fd
 SHA512 
f1b0cadb3f2a6f9b488095a8bbc1863aeb7d40a9c2b5604fa7217505eea58db29eac9d03bd362a92589e1c277f83d13cb901b7ffc591c49a5cee0d2162b03156
+DIST ecma-re-validator-0.4.0.gem 8704 BLAKE2B 
5dae210ec7409ac2b114203b2e764d1b6cdbc798ee2246588af8455df312fad1c2002e0ef68ceac77cfe293d28d259f5e23314865ec70789e0e09e8f4767c6e9
 SHA512 
2aa8500bf5a487e3278bac58e29fa188c310ef85b5635f9bc3ac0bda6df36cf9533f9715ac716378405d0d1e61081a532aab3d9faed757ee0a4bb5bf2ef2419f

diff --git a/dev-ruby/ecma-re-validator/ecma-re-validator-0.4.0.ebuild 
b/dev-ruby/ecma-re-validator/ecma-re-validator-0.4.0.ebuild
new file mode 100644
index ..7d61c97d30ae
--- /dev/null
+++ b/dev-ruby/ecma-re-validator/ecma-re-validator-0.4.0.ebuild
@@ -0,0 +1,25 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+USE_RUBY="ruby26 ruby27 ruby30"
+
+RUBY_FAKEGEM_EXTRADOC="README.md"
+
+RUBY_FAKEGEM_RECIPE_TEST="rspec3"
+
+inherit ruby-fakegem
+
+DESCRIPTION="Validate a regular expression string against what ECMA-262 can 
actually do"
+HOMEPAGE="https://github.com/gjtorikian/ecma-re-validator";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64"
+IUSE=""
+
+ruby_add_rdepend "dev-ruby/regexp_parser:2"
+
+all_ruby_prepare() {
+   sed -i -e '/bundler/ s:^:#:' spec/spec_helper.rb || die
+}



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

2022-01-12 Thread Hans de Graaff
commit: ea6a1bf6e65dd45503b9127c7a00869b8f1d6430
Author: Hans de Graaff  gentoo  org>
AuthorDate: Thu Jan 13 06:56:35 2022 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Thu Jan 13 06:57:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ea6a1bf6

dev-util/jenkins-bin: add 2.319.2, 2.330

Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Hans de Graaff  gentoo.org>

 dev-util/jenkins-bin/Manifest   |  2 ++
 dev-util/jenkins-bin/jenkins-bin-2.319.2.ebuild | 45 +
 dev-util/jenkins-bin/jenkins-bin-2.330.ebuild   | 45 +
 3 files changed, 92 insertions(+)

diff --git a/dev-util/jenkins-bin/Manifest b/dev-util/jenkins-bin/Manifest
index 5e48176cb3d4..84f6b993bc08 100644
--- a/dev-util/jenkins-bin/Manifest
+++ b/dev-util/jenkins-bin/Manifest
@@ -1,2 +1,4 @@
 DIST jenkins-bin-2.319.1.war 72247484 BLAKE2B 
097ad49049b4594cdab00ed0a4a562e6e83177ce98284e822127adea10c33860217bf703cce5409f1239f3fbad166ed5f7f1df3f36438ec914ce4569e22898d7
 SHA512 
d38fe6566a1b07cef2c2451fe204656fde2a64da0e56eb06083c16ea23716ea285b77979cbee15e7dbf94a5b9b0bd5f867f6ce89e36b6f3d136571bd76f560c3
+DIST jenkins-bin-2.319.2.war 72248203 BLAKE2B 
6271e7b4de8284681911c81ccf48d23b63ae89e65f1b339e4e6380b204e24b7dbe7278b2e70a2bbc6b33e0e6cae0c9d270534f247de4d8e58384feef7363d19d
 SHA512 
f6f0846d9e032b48e85fc20a030baa2d5c500a65c6c909d00852be3324d1b79c31ea8b7ff45ac05299ff9797b17aeb61d094ad425ce5198f6e13aa050007e650
 DIST jenkins-bin-2.323.war 73557779 BLAKE2B 
110336c140ded983e0b01b34ea15acb4a65d1eb6aae078b6ba1ec602d9fcc28c12bccbe90fa87cff3b31d6f835f133ea76f2b15dbe96d39b8c2dc241cd52af0c
 SHA512 
08a72d4cb5558d3ad65845a615d5465cb24e24bdd294d2c52b36c4871a968bde72c0dd67814e7301873aa4a19b4dde14835115508678f5d8356ca262c332b819
+DIST jenkins-bin-2.330.war 73751018 BLAKE2B 
ca8a37f1963fa06cf18c118089a8f07f6c4e90fcbb338eb141fea82a09cfd3a842f14535d029dd24cc1d1371b4c862cd0d65581a11ee00c0dbb46f3a4119dcc9
 SHA512 
ad165f59e16a1fee2f65d4878a767754771085b405e9f553690998c23a6887e2acd998e3e138af146f7e1f840367a67a13ca5df454755f304d2a5d5f248fcb93

diff --git a/dev-util/jenkins-bin/jenkins-bin-2.319.2.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-2.319.2.ebuild
new file mode 100644
index ..28d95fcf653b
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-2.319.2.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="https://jenkins.io/";
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war-stable/${PV}/${PN/-bin/}.war -> 
${P}.war"
+SLOT="lts"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux"
+IUSE=""
+
+DEPEND="acct-group/jenkins
+   acct-user/jenkins"
+
+RDEPEND="acct-group/jenkins
+   acct-user/jenkins
+   media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:0
+   || ( virtual/jre:1.8 virtual/jre:11 )"
+
+S="${WORKDIR}"
+
+src_install() {
+   local JENKINS_DIR=/var/lib/jenkins
+
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r2.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}-r2.init jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd_newunit "${FILESDIR}"/${PN}-r2.service jenkins.service
+
+   fowners jenkins:jenkins /var/log/jenkins ${JENKINS_DIR} 
${JENKINS_DIR}/home ${JENKINS_DIR}/backup
+}

diff --git a/dev-util/jenkins-bin/jenkins-bin-2.330.ebuild 
b/dev-util/jenkins-bin/jenkins-bin-2.330.ebuild
new file mode 100644
index ..78fde83d5d56
--- /dev/null
+++ b/dev-util/jenkins-bin/jenkins-bin-2.330.ebuild
@@ -0,0 +1,45 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd
+
+DESCRIPTION="Extensible continuous integration server"
+HOMEPAGE="https://jenkins.io/";
+LICENSE="MIT"
+SRC_URI="http://mirrors.jenkins-ci.org/war/${PV}/${PN/-bin/}.war -> ${P}.war"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86 ~amd64-linux"
+IUSE=""
+
+DEPEND="acct-group/jenkins
+   acct-user/jenkins"
+
+RDEPEND="acct-group/jenkins
+   acct-user/jenkins
+   media-fonts/dejavu
+   media-libs/freetype
+   !dev-util/jenkins-bin:lts
+   || ( virtual/jre:1.8 virtual/jre:11 )"
+
+S="${WORKDIR}"
+
+src_install() {
+   local JENKINS_DIR=/var/lib/jenkins
+
+   keepdir /var/log/jenkins ${JENKINS_DIR}/backup ${JENKINS_DIR}/home
+
+   insinto /opt/jenkins
+   newins "${DISTDIR}"/${P}.war ${PN/-bin/}.war
+
+   insinto /etc/logrotate.d
+   newins "${FILESDIR}"/${PN}-r2.logrotate ${PN/-bin/}
+
+   newinitd "${FILESDIR}"/${PN}-r2.init jenkins
+   newconfd "${FILESDIR}"/${PN}.confd jenkins
+
+   systemd

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

2022-01-12 Thread Sam James
commit: f67a6b2824be702d6e782250356a11cf5086c4df
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:34 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67a6b28

dev-perl/Mail-AuthenticationResults: Stabilize 2.202.109.150-r1 arm64, #829039

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

 .../Mail-AuthenticationResults-2.202.109.150-r1.ebuild  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.109.150-r1.ebuild
 
b/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.109.150-r1.ebuild
index 5117071e5291..5e4aed308ff4 100644
--- 
a/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.109.150-r1.ebuild
+++ 
b/dev-perl/Mail-AuthenticationResults/Mail-AuthenticationResults-2.202.109.150-r1.ebuild
@@ -10,7 +10,7 @@ inherit perl-module
 DESCRIPTION="Object Oriented Authentication-Results Headers"
 
 SLOT="0"
-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"
 
 RDEPEND="
virtual/perl-Carp



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-installer/

2022-01-12 Thread Sam James
commit: 40b71e90994c410f8f49fe43d85264fbe0327e85
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:27 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:29 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=40b71e90

dev-ml/opam-installer: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam-installer/opam-installer-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-installer/opam-installer-2.0.9.ebuild 
b/dev-ml/opam-installer/opam-installer-2.0.9.ebuild
index affb837429ae..81fe573e074f 100644
--- a/dev-ml/opam-installer/opam-installer-2.0.9.ebuild
+++ b/dev-ml/opam-installer/opam-installer-2.0.9.ebuild
@@ -16,7 +16,7 @@ OPAM_INSTALLER="${S}/opam-installer"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 
 # Cherry-picked from 
https://deb.debian.org/debian/pool/main/o/opam/opam_2.0.8-1.debian.tar.xz
 PATCHES=( "${FILESDIR}/debian-Port-to-Dose3-6.0.1.patch" )



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam/

2022-01-12 Thread Sam James
commit: a24a855a3a30da5dc09ae3ca79261bcc9554b513
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a24a855a

dev-ml/opam: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam/opam-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam/opam-2.0.9.ebuild b/dev-ml/opam/opam-2.0.9.ebuild
index f5a8f125e8db..0fb983bec7d5 100644
--- a/dev-ml/opam/opam-2.0.9.ebuild
+++ b/dev-ml/opam/opam-2.0.9.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV/_/-}"
 
 LICENSE="LGPL-2.1-with-linking-exception"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND="



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

2022-01-12 Thread Sam James
commit: a7e0582d84d9fdcdd510deb76e5a6fc482f0d8ac
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a7e0582d

dev-java/netty-common: Stabilize 4.0.36-r1 arm64, #828557

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

 dev-java/netty-common/netty-common-4.0.36-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-java/netty-common/netty-common-4.0.36-r1.ebuild 
b/dev-java/netty-common/netty-common-4.0.36-r1.ebuild
index 2dd3d32159e4..dadd4d4a6f1e 100644
--- a/dev-java/netty-common/netty-common-4.0.36-r1.ebuild
+++ b/dev-java/netty-common/netty-common-4.0.36-r1.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://netty.io/";
 SRC_URI="https://github.com/${MY_PN}/${MY_PN}/archive/${MY_P}.Final.tar.gz";
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 IUSE="test"
 
 # Same test failures as before the revbump still occur. See 
https://bugs.gentoo.org/827221



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-client/

2022-01-12 Thread Sam James
commit: bafdfc44acb6d76ebdb871f81bf497c87b2cf776
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:25 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bafdfc44

dev-ml/opam-client: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam-client/opam-client-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-client/opam-client-2.0.9.ebuild 
b/dev-ml/opam-client/opam-client-2.0.9.ebuild
index 13de606bd2cf..8b519bf71f8a 100644
--- a/dev-ml/opam-client/opam-client-2.0.9.ebuild
+++ b/dev-ml/opam-client/opam-client-2.0.9.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV/_/-}"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-state/

2022-01-12 Thread Sam James
commit: 0df1ed3d0048de1f8c64243d8ab84ec99bd43b11
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:25 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0df1ed3d

dev-ml/opam-state: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam-state/opam-state-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-state/opam-state-2.0.9.ebuild 
b/dev-ml/opam-state/opam-state-2.0.9.ebuild
index 7778c92fc1ae..dab205640b97 100644
--- a/dev-ml/opam-state/opam-state-2.0.9.ebuild
+++ b/dev-ml/opam-state/opam-state-2.0.9.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV/_/-}"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 IUSE="+ocamlopt"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-format/

2022-01-12 Thread Sam James
commit: 38a8e3a6602138feef31ff2fa6e68072c7cf6563
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=38a8e3a6

dev-ml/opam-format: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam-format/opam-format-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-format/opam-format-2.0.9.ebuild 
b/dev-ml/opam-format/opam-format-2.0.9.ebuild
index 55a297265d4e..757e70bbc0cb 100644
--- a/dev-ml/opam-format/opam-format-2.0.9.ebuild
+++ b/dev-ml/opam-format/opam-format-2.0.9.ebuild
@@ -15,7 +15,7 @@ OPAM_INSTALLER="${S}/opam-installer"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 IUSE="+ocamlopt"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-core/

2022-01-12 Thread Sam James
commit: c7aeaf3cd1b3e799f28a4c3d4529146db900606c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:20 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c7aeaf3c

dev-ml/opam-core: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam-core/opam-core-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-core/opam-core-2.0.9.ebuild 
b/dev-ml/opam-core/opam-core-2.0.9.ebuild
index 70bf7ecfcf6a..9d8bcce46aee 100644
--- a/dev-ml/opam-core/opam-core-2.0.9.ebuild
+++ b/dev-ml/opam-core/opam-core-2.0.9.ebuild
@@ -15,7 +15,7 @@ OPAM_INSTALLER="${S}/opam-installer"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 
 RDEPEND="
dev-ml/ocamlgraph:=



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-repository/

2022-01-12 Thread Sam James
commit: a5dfba4e7a61e547838ab3b31c8eb9c66473a259
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5dfba4e

dev-ml/opam-repository: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam-repository/opam-repository-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-repository/opam-repository-2.0.9.ebuild 
b/dev-ml/opam-repository/opam-repository-2.0.9.ebuild
index 166395456fac..85cfd906d877 100644
--- a/dev-ml/opam-repository/opam-repository-2.0.9.ebuild
+++ b/dev-ml/opam-repository/opam-repository-2.0.9.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV/_/-}"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 IUSE="+ocamlopt"
 RESTRICT="test"
 



[gentoo-commits] repo/gentoo:master commit in: dev-ml/opam-solver/

2022-01-12 Thread Sam James
commit: 0f4e8c816f3c210ac6f98d87865377807aff4a89
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:33:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:34:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f4e8c81

dev-ml/opam-solver: Stabilize 2.0.9 arm64, #817749

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

 dev-ml/opam-solver/opam-solver-2.0.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-ml/opam-solver/opam-solver-2.0.9.ebuild 
b/dev-ml/opam-solver/opam-solver-2.0.9.ebuild
index 1926ca0aebab..64fe23d5a69c 100644
--- a/dev-ml/opam-solver/opam-solver-2.0.9.ebuild
+++ b/dev-ml/opam-solver/opam-solver-2.0.9.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/opam-${PV/_/-}"
 
 LICENSE="LGPL-2.1"
 SLOT="0/${PV}"
-KEYWORDS="amd64 arm ~arm64 ppc ~ppc64 ~x86"
+KEYWORDS="amd64 arm arm64 ppc ~ppc64 ~x86"
 IUSE="+ocamlopt test"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: mail-client/thunderbird/

2022-01-12 Thread Joonas Niilola
commit: 1c03ed06824c778c9cd44087c9f10a16beb1bf39
Author: Joonas Niilola  gentoo  org>
AuthorDate: Thu Jan 13 06:30:37 2022 +
Commit: Joonas Niilola  gentoo  org>
CommitDate: Thu Jan 13 06:30:37 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c03ed06

mail-client/thunderbird: update patch set

 - include a patch to fix build on emulated x86,
src/math_private.h:34:21: error: typedef redefinition with different types 
('__double_t' (aka  'double') vs 'long double')
20:11.84 typedef __double_t  double_t;
20:11.84 ^
20:11.84 /usr/include/math.h:156:21: note: previous definition is here
20:11.84 typedef long double double_t;
20:11.84 ^
20:11.93 1 error generated.

Bug: https://bugs.gentoo.org/816975
Signed-off-by: Joonas Niilola  gentoo.org>

 mail-client/thunderbird/Manifest  | 1 +
 mail-client/thunderbird/thunderbird-91.5.0.ebuild | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)

diff --git a/mail-client/thunderbird/Manifest b/mail-client/thunderbird/Manifest
index 5a31df04988f..ec9e1b3ac34a 100644
--- a/mail-client/thunderbird/Manifest
+++ b/mail-client/thunderbird/Manifest
@@ -1,4 +1,5 @@
 DIST firefox-91esr-patches-03.tar.xz 17204 BLAKE2B 
6ef1aa70708f9e5a5926f712d449bb40c86d449389a5d4c1730ada065d4af252b08cd17eafaee7cc01ea0c50c53b272c38a047760d3cf94ba34375ff77af534c
 SHA512 
2c02a6ba36934f796a7b2d3ded0b68689ce4b21f21396004e829102bcc56e302c89357d18c4f353c62f45865dccde27230cdb016d99c42b3ae12b4e5a6a02e6d
+DIST firefox-91esr-patches-04.tar.xz 17460 BLAKE2B 
305d8b0bc8a4115a76e459afd8bc7987bdde2e76d4564faf664a92a4c6a95c975ce599c5ddde9bdafc3c37ca5c8758e0ef815364d0ce4dd5fd452ddae73a77eb
 SHA512 
6073b31bb898fe61d72435b11deacb5e93a1744227e4704bb3012e0cb363792f3a965d72e7769c4aae3a25f0c81247b287ce145c81bbd0a87470a5438fede11e
 DIST thunderbird-91.4.0-af.xpi 560247 BLAKE2B 
af3a2fc1920244ebd4de83b4f074fbf203ccc59343c74bc7ec2cc3dc3d4e1ca6ac72f821e32be8ec1805dd34ebc20d532791de938ad92a467c7af4e8e1224b7b
 SHA512 
e32b3261ad097a0633fe4a5f36f1d9d8f547f5da737ef84248a439093cc4817d67ee66781552ee63a0cfbb4c6096a155dbd9a348a8033dbc32b2b1ee36cded21
 DIST thunderbird-91.4.0-ar.xpi 660313 BLAKE2B 
70411d5ee7732b1be976e91fb3c7244e5c06c111d3f5eb26fee548d5cfd4b66f97eeaa50d67580e58ea0bff08eee5deaafacf6b5ac6a89ce315c5834c6822e31
 SHA512 
007c9cddb50ef8dbbed6e118b607cd48eb5e93be60953d121adb3d6f0b358d6aed5db9cc17d7236d88f531c93ee84a56be23a98a2b23a5aed58cf8ef58c41fbe
 DIST thunderbird-91.4.0-ast.xpi 577052 BLAKE2B 
3b8b5d0f23080dd8fa894af8e20508d1d6eb8d48b7ddaa8f22a58c54b30557e78a8d8d70499c338219c5b3c759aa2e9ff25c6ed2058d00d6dd032a7be5283634
 SHA512 
2b48118251da81317f3555ce03b1af928a8e6415331b7fdcd64f33ab28f3782f81ad26c21aeebb6a91ae2db37a29329b85b4a2305b794b3c0503487f5bfbf4b0

diff --git a/mail-client/thunderbird/thunderbird-91.5.0.ebuild 
b/mail-client/thunderbird/thunderbird-91.5.0.ebuild
index 07420cb1d217..09a256c7e951 100644
--- a/mail-client/thunderbird/thunderbird-91.5.0.ebuild
+++ b/mail-client/thunderbird/thunderbird-91.5.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI="7"
 
-FIREFOX_PATCHSET="firefox-91esr-patches-03.tar.xz"
+FIREFOX_PATCHSET="firefox-91esr-patches-04.tar.xz"
 
 LLVM_MAX_SLOT=13
 
@@ -48,7 +48,7 @@ if [[ ${PV} == *_rc* ]] ; then
 fi
 
 PATCH_URIS=(
-   
https://dev.gentoo.org/~{polynomial-c,whissi}/mozilla/patchsets/${FIREFOX_PATCHSET}
+   
https://dev.gentoo.org/~{juippis,polynomial-c,whissi}/mozilla/patchsets/${FIREFOX_PATCHSET}
 )
 
 SRC_URI="${MOZ_SRC_BASE_URI}/source/${MOZ_P}.source.tar.xz -> 
${MOZ_P_DISTFILES}.source.tar.xz



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

2022-01-12 Thread Sam James
commit: a141bede5b58ff33d70ee89eddd48ae1831eeca2
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:05:24 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:05:24 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a141bede

dev-util/apitrace: fix IndirectInherits

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

 dev-util/apitrace/apitrace-9.0-r3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-util/apitrace/apitrace-9.0-r3.ebuild 
b/dev-util/apitrace/apitrace-9.0-r3.ebuild
index a150636da799..f558e102537c 100644
--- a/dev-util/apitrace/apitrace-9.0-r3.ebuild
+++ b/dev-util/apitrace/apitrace-9.0-r3.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_ECLASS=cmake
 PYTHON_COMPAT=( python3_{7..10} )
-inherit cmake-multilib python-single-r1
+inherit cmake-multilib multilib python-single-r1
 
 DESCRIPTION="Tool for tracing, analyzing, and debugging graphics APIs"
 HOMEPAGE="https://github.com/apitrace/apitrace";



[gentoo-commits] repo/gentoo:master commit in: dev-util/apitrace/, dev-util/apitrace/files/

2022-01-12 Thread Sam James
commit: 5de9423fbf17e94be54f48d9b5c613c2b8a7fb20
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 05:48:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 05:49:04 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5de9423f

dev-util/apitrace: fix build with glibc-2.34

Closes: https://bugs.gentoo.org/812155
Thanks-to: Mihai Moldovan  ionic.de>
Signed-off-by: Sam James  gentoo.org>

 dev-util/apitrace/apitrace-9.0-r3.ebuild   |  3 ++-
 .../apitrace-9.0-libc-dlopen-glibc-2.34.patch  | 29 ++
 2 files changed, 31 insertions(+), 1 deletion(-)

diff --git a/dev-util/apitrace/apitrace-9.0-r3.ebuild 
b/dev-util/apitrace/apitrace-9.0-r3.ebuild
index 7c0a0190acac..a150636da799 100644
--- a/dev-util/apitrace/apitrace-9.0-r3.ebuild
+++ b/dev-util/apitrace/apitrace-9.0-r3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -40,6 +40,7 @@ PATCHES=(
# TODO: upstream
"${FILESDIR}"/${P}-disable-multiarch.patch
"${FILESDIR}"/${P}-brotli-unbundle.patch
+   "${FILESDIR}"/${P}-libc-dlopen-glibc-2.34.patch
 )
 
 src_prepare() {

diff --git a/dev-util/apitrace/files/apitrace-9.0-libc-dlopen-glibc-2.34.patch 
b/dev-util/apitrace/files/apitrace-9.0-libc-dlopen-glibc-2.34.patch
new file mode 100644
index ..6c1aff4bcb31
--- /dev/null
+++ b/dev-util/apitrace/files/apitrace-9.0-libc-dlopen-glibc-2.34.patch
@@ -0,0 +1,29 @@
+https://github.com/apitrace/apitrace/commit/d28a980802ad48568c87da02d630c8babfe163bb.patch
+https://bugs.gentoo.org/812155
+
+(rebased by sam)
+
+From: Jose Fonseca 
+Date: Wed, 1 Sep 2021 16:34:54 +0100
+Subject: [PATCH] gltrace: Avoid __libc_dlsym and __libc_dlopen_mode on GLIBC
+ 2.34.
+
+These GLIBC_PRIVATE symbols are gone from GLIBC 2.34 due to the merge of
+libdl.so onto libc.so.
+
+This means apitrace can't defend against infinite recursion when
+used with Steam Overlay, but at least it should work otherwise.
+
+Fixes https://github.com/apitrace/apitrace/issues/756
+--- a/wrappers/dlsym.cpp
 b/wrappers/dlsym.cpp
+@@ -34,7 +34,7 @@
+ #include "os.hpp"
+ 
+ 
+-#ifdef __GLIBC__
++#if defined(__GLIBC__) && __GLIBC__ == 2 && __GLIBC_MINOR__ < 34
+ 
+ 
+ #include 
+



[gentoo-commits] repo/gentoo:master commit in: app-crypt/adcli/, app-crypt/adcli/files/

2022-01-12 Thread Sam James
commit: 6b33c454fa3ca9eb1aaddc0ecb20c4ae24133cbf
Author: Henning Schild  hennsch  de>
AuthorDate: Tue Jan 11 10:42:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 05:49:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6b33c454

app-crypt/adcli: fix musl linking bug

apply a patch which has been merged upstream

Closes: https://bugs.gentoo.org/830325
Signed-off-by: Henning Schild  hennsch.de>
Closes: https://github.com/gentoo/gentoo/pull/23739
Signed-off-by: Sam James  gentoo.org>

 app-crypt/adcli/adcli-0.9.1-r1.ebuild  |  3 ++-
 9.1-library-include-endian.h-for-le32toh.patch | 28 ++
 2 files changed, 30 insertions(+), 1 deletion(-)

diff --git a/app-crypt/adcli/adcli-0.9.1-r1.ebuild 
b/app-crypt/adcli/adcli-0.9.1-r1.ebuild
index 5224249d5001..f353d5f60544 100644
--- a/app-crypt/adcli/adcli-0.9.1-r1.ebuild
+++ b/app-crypt/adcli/adcli-0.9.1-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 2021 Gentoo Authors
+# Copyright 2021-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -27,6 +27,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/${P}-glibc-2.34-resolv.patch
+   "${FILESDIR}"/${P}-library-include-endian.h-for-le32toh.patch
 )
 
 src_prepare() {

diff --git 
a/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch 
b/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch
new file mode 100644
index ..246ccd990f12
--- /dev/null
+++ 
b/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch
@@ -0,0 +1,28 @@
+From dfbaa1b7f7cde281e23464ceb24699d4686651ab Mon Sep 17 00:00:00 2001
+From: Henning Schild 
+Date: Tue, 11 Jan 2022 08:22:55 +0100
+Subject: [PATCH] library: include endian.h for le32toh
+
+upstream commit 938065a751c0876eb837a27f8c1443fc7d0d2551
+
+linking against musl libc we need to include that specifically, actually
+also according to "man 3 endian".
+---
+ library/adutil.c | 1 +
+ 1 file changed, 1 insertion(+)
+
+diff --git a/library/adutil.c b/library/adutil.c
+index 9b0c47f3b7e9..4bb06a3a7588 100644
+--- a/library/adutil.c
 b/library/adutil.c
+@@ -29,6 +29,7 @@
+ 
+ #include 
+ #include 
++#include 
+ #include 
+ #include 
+ #include 
+-- 
+2.34.1
+



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

2022-01-12 Thread Sam James
commit: 6d880864919836b43c8f1c230631b0d1f58f180f
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 05:49:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 05:50:20 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6d880864

app-crypt/adcli: add patch references

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

 .../adcli-0.9.1-library-include-endian.h-for-le32toh.patch  | 13 +++--
 1 file changed, 3 insertions(+), 10 deletions(-)

diff --git 
a/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch 
b/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch
index 246ccd990f12..b901796d8d6c 100644
--- 
a/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch
+++ 
b/app-crypt/adcli/files/adcli-0.9.1-library-include-endian.h-for-le32toh.patch
@@ -1,4 +1,6 @@
-From dfbaa1b7f7cde281e23464ceb24699d4686651ab Mon Sep 17 00:00:00 2001
+https://bugs.gentoo.org/830325
+https://gitlab.freedesktop.org/realmd/adcli/-/merge_requests/47
+
 From: Henning Schild 
 Date: Tue, 11 Jan 2022 08:22:55 +0100
 Subject: [PATCH] library: include endian.h for le32toh
@@ -7,12 +9,6 @@ upstream commit 938065a751c0876eb837a27f8c1443fc7d0d2551
 
 linking against musl libc we need to include that specifically, actually
 also according to "man 3 endian".

- library/adutil.c | 1 +
- 1 file changed, 1 insertion(+)
-
-diff --git a/library/adutil.c b/library/adutil.c
-index 9b0c47f3b7e9..4bb06a3a7588 100644
 --- a/library/adutil.c
 +++ b/library/adutil.c
 @@ -29,6 +29,7 @@
@@ -23,6 +19,3 @@ index 9b0c47f3b7e9..4bb06a3a7588 100644
  #include 
  #include 
  #include 
--- 
-2.34.1
-



[gentoo-commits] repo/gentoo:master commit in: media-libs/phat/, media-libs/phat/files/

2022-01-12 Thread Sam James
commit: 832c88a650fc794fd5105723656f8dee55488cf8
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 06:02:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 06:02:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=832c88a6

media-libs/phat: update EAPI 6 -> 8, build with lld

Was underlinking libm for e.g. exp().

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

 .../phat/files/phat-0.4.1-libm-underlinking.patch  | 16 
 media-libs/phat/phat-0.4.1-r2.ebuild   | 43 ++
 2 files changed, 59 insertions(+)

diff --git a/media-libs/phat/files/phat-0.4.1-libm-underlinking.patch 
b/media-libs/phat/files/phat-0.4.1-libm-underlinking.patch
new file mode 100644
index ..f6e55b9fa18b
--- /dev/null
+++ b/media-libs/phat/files/phat-0.4.1-libm-underlinking.patch
@@ -0,0 +1,16 @@
+From: Sam James 
+Date: Thu, 13 Jan 2022 06:00:11 +
+Subject: [PATCH] Fix underlinking against libm
+
+Bug: https://bugs.gentoo.org/740162
+--- a/configure.ac
 b/configure.ac
+@@ -47,6 +47,8 @@ GTK_DOC_CHECK(1.0)
+ # misc checks
+ PKG_CHECK_MODULES(MISC, libgnomecanvas-2.0 x11)
+ 
++AC_SEARCH_LIBS(exp, m)
++
+ # set compilation flags
+ CFLAGS="$CFLAGS $GTK_CFLAGS $MISC_CFLAGS -Wall"
+ LIBS="$LIBS $GTK_LIBS $MISC_LIBS"

diff --git a/media-libs/phat/phat-0.4.1-r2.ebuild 
b/media-libs/phat/phat-0.4.1-r2.ebuild
new file mode 100644
index ..206b47e5d396
--- /dev/null
+++ b/media-libs/phat/phat-0.4.1-r2.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools
+
+DESCRIPTION="PHAT is a collection of GTK+ widgets geared toward pro-audio apps"
+HOMEPAGE="https://sourceforge.net/projects/phat.berlios/";
+SRC_URI="mirror://sourceforge/phat.berlios/${P}.tar.gz"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~sparc ~x86"
+IUSE="debug"
+
+RDEPEND="gnome-base/libgnomecanvas
+   x11-libs/gtk+:2
+   x11-libs/libX11"
+DEPEND="${RDEPEND}"
+BDEPEND="dev-util/gtk-doc
+   virtual/pkgconfig"
+
+PATCHES=(
+   "${FILESDIR}/${P}-underlinking.patch"
+   "${FILESDIR}/${P}-libm-underlinking.patch"
+)
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   econf $(use_enable debug)
+}
+
+src_install() {
+   default
+
+   find "${ED}" -name '*.la' -delete || die
+}



[gentoo-commits] repo/gentoo:master commit in: app-forensics/chkrootkit/

2022-01-12 Thread Sam James
commit: e0b5d87f903b7c55b3d1f37c93ec0fa09c7fe937
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 05:35:42 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 05:35:42 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e0b5d87f

app-forensics/chkrootkit: fix systemd notice

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

 app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild | 14 --
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild 
b/app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild
index 03cfffb6ef30..0bfac68e7a96 100644
--- a/app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild
+++ b/app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild
@@ -15,11 +15,9 @@ SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${GENTOO_PATC
 LICENSE="BSD-2"
 SLOT="0"
 KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
-IUSE="+cron systemd"
+IUSE="+cron"
 
-DEPEND="systemd? ( sys-apps/systemd )"
-RDEPEND="${DEPEND}
-   cron? ( virtual/cron )"
+RDEPEND="cron? ( virtual/cron )"
 
 PATCHES=(
"${WORKDIR}/${GENTOO_PATCH}"
@@ -29,6 +27,7 @@ PATCHES=(
 
 src_prepare() {
default
+
sed -e 's:/var/adm/:/var/log/:g' \
-i chklastlog.c || die
 }
@@ -45,21 +44,24 @@ src_install() {
exeinto /etc/cron.weekly
newexe "${FILESDIR}"/${PN}.cron ${PN}
fi
+
systemd_dounit "${FILESDIR}/${PN}.timer" "${FILESDIR}/${PN}.service"
 }
 
 pkg_postinst() {
if use cron ; then
elog
-   elog "Edit /etc/cron.weekly/chkrootkit to activate chkrootkit!"
+   elog "Edit ${EROOT}/etc/cron.weekly/chkrootkit to activate 
chkrootkit!"
elog
fi
-   if use systemd ; then
+
+   if systemd_is_booted || has_version sys-apps/systemd ; then
elog
elog "To enable the systemd timer, run the following command:"
elog "   systemctl enable --now chkrootkit.timer"
elog
fi
+
elog
elog "Some applications, such as portsentry, will cause chkrootkit"
elog "to produce false positives.  Read the chkrootkit FAQ at"



[gentoo-commits] repo/gentoo:master commit in: app-forensics/chkrootkit/files/, app-forensics/chkrootkit/

2022-01-12 Thread Sam James
commit: b21a05c2b87f78dcbf0f0e75cf6eeb58fda58fb4
Author: Martin Dummer  gmx  net>
AuthorDate: Wed Jan 12 21:17:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 05:02:27 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b21a05c2

app-forensics/chkrootkit: add systemd timer, new maintainer

Closes: https://bugs.gentoo.org/773280
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Martin Dummer  gmx.net>
Closes: https://github.com/gentoo/gentoo/pull/23765
Signed-off-by: Sam James  gentoo.org>

 app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild | 68 ++
 app-forensics/chkrootkit/files/chkrootkit.service  |  7 +++
 app-forensics/chkrootkit/files/chkrootkit.timer| 11 
 app-forensics/chkrootkit/metadata.xml  |  9 ++-
 4 files changed, 94 insertions(+), 1 deletion(-)

diff --git a/app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild 
b/app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild
new file mode 100644
index ..03cfffb6ef30
--- /dev/null
+++ b/app-forensics/chkrootkit/chkrootkit-0.55-r1.ebuild
@@ -0,0 +1,68 @@
+# Copyright 2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit systemd toolchain-funcs
+
+GENTOO_PATCH="${PN}-0.55-gentoo.patch"
+
+DESCRIPTION="Tool to locally check for signs of a rootkit"
+HOMEPAGE="http://www.chkrootkit.org/";
+SRC_URI="ftp://ftp.pangeia.com.br/pub/seg/pac/${P}.tar.gz";
+SRC_URI+=" 
https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${GENTOO_PATCH}.bz2";
+
+LICENSE="BSD-2"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86"
+IUSE="+cron systemd"
+
+DEPEND="systemd? ( sys-apps/systemd )"
+RDEPEND="${DEPEND}
+   cron? ( virtual/cron )"
+
+PATCHES=(
+   "${WORKDIR}/${GENTOO_PATCH}"
+   "${FILESDIR}/${P}-fcntl_h.patch"
+   "${FILESDIR}/${P}-limits_h.patch"
+)
+
+src_prepare() {
+   default
+   sed -e 's:/var/adm/:/var/log/:g' \
+   -i chklastlog.c || die
+}
+
+src_compile() {
+   emake CC="$(tc-getCC)" STRIP=true sense
+}
+
+src_install() {
+   dosbin chkdirs chklastlog chkproc chkrootkit chkwtmp chkutmp ifpromisc 
strings-static
+   dodoc ACKNOWLEDGMENTS README*
+
+   if use cron ; then
+   exeinto /etc/cron.weekly
+   newexe "${FILESDIR}"/${PN}.cron ${PN}
+   fi
+   systemd_dounit "${FILESDIR}/${PN}.timer" "${FILESDIR}/${PN}.service"
+}
+
+pkg_postinst() {
+   if use cron ; then
+   elog
+   elog "Edit /etc/cron.weekly/chkrootkit to activate chkrootkit!"
+   elog
+   fi
+   if use systemd ; then
+   elog
+   elog "To enable the systemd timer, run the following command:"
+   elog "   systemctl enable --now chkrootkit.timer"
+   elog
+   fi
+   elog
+   elog "Some applications, such as portsentry, will cause chkrootkit"
+   elog "to produce false positives.  Read the chkrootkit FAQ at"
+   elog "http://www.chkrootkit.org/ for more information."
+   elog
+}

diff --git a/app-forensics/chkrootkit/files/chkrootkit.service 
b/app-forensics/chkrootkit/files/chkrootkit.service
new file mode 100644
index ..a4de628cae4a
--- /dev/null
+++ b/app-forensics/chkrootkit/files/chkrootkit.service
@@ -0,0 +1,7 @@
+[Unit]
+Description=local check for signs of a rootkit
+
+[Service]
+Type=oneshot
+ExecStart=/usr/sbin/chkrootkit -q
+SyslogIdentifier=chkrootkit

diff --git a/app-forensics/chkrootkit/files/chkrootkit.timer 
b/app-forensics/chkrootkit/files/chkrootkit.timer
new file mode 100644
index ..0a6c0e5f5c4a
--- /dev/null
+++ b/app-forensics/chkrootkit/files/chkrootkit.timer
@@ -0,0 +1,11 @@
+[Unit]
+Description=Periodic check for signs of a rootkit
+
+[Timer]
+# Run on Sunday at 3:20am, to avoid running afoul of DST changes
+OnCalendar=Sun *-*-* 03:20:00
+RandomizedDelaySec=120
+Persistent=true
+
+[Install]
+WantedBy=timers.target

diff --git a/app-forensics/chkrootkit/metadata.xml 
b/app-forensics/chkrootkit/metadata.xml
index 8326effd8407..d84e1696a8f4 100644
--- a/app-forensics/chkrootkit/metadata.xml
+++ b/app-forensics/chkrootkit/metadata.xml
@@ -1,7 +1,14 @@
 
 https://www.gentoo.org/dtd/metadata.dtd";>
 
-   
+   
+   martin.dum...@gmx.net
+   Martin Dummer
+   
+   
+   proxy-ma...@gentoo.org
+   Proxy Maintainers
+   

Install cron script for weekly rootkit 
scans




[gentoo-commits] repo/gentoo:master commit in: sys-process/atop/

2022-01-12 Thread Sam James
commit: 9601aad7b27d5f5971b9c5f47e0bd38ddf2c9724
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 05:31:10 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 05:31:10 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9601aad7

sys-process/atop: add note re upstreamed OpenRC init scripts

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

 sys-process/atop/atop-2.7.1.ebuild | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/sys-process/atop/atop-2.7.1.ebuild 
b/sys-process/atop/atop-2.7.1.ebuild
index 4e4a270b83e0..1adcbe0d802e 100644
--- a/sys-process/atop/atop-2.7.1.ebuild
+++ b/sys-process/atop/atop-2.7.1.ebuild
@@ -93,6 +93,8 @@ src_install() {
# useless -${PV} copies ?
rm "${ED}"/usr/bin/atop*-${PV} || die
 
+   # Note: in the next release (> 2.7.1), switch to upstream files
+   # (ours are now upstreamed)
newinitd "${FILESDIR}"/${PN}.rc-r2 ${PN}
newinitd "${FILESDIR}"/atopacct.rc atopacct
 



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

2022-01-12 Thread Sam James
commit: 62a9747eedbe3e523fba58b02e234d19f6ea9011
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:44:57 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:44:57 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=62a9747e

sys-apps/systemd-tmpfiles: Stabilize 249.7 arm, #830978

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

 sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild 
b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild
index a4607472c8fd..04f6dae5d19d 100644
--- a/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild
+++ b/sys-apps/systemd-tmpfiles/systemd-tmpfiles-249.7.ebuild
@@ -25,7 +25,7 @@ 
SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${PV}.tar.gz -> ${MY_PN}-$
 
 LICENSE="BSD-2 GPL-2 LGPL-2.1 MIT public-domain"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
+KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86"
 IUSE="selinux test"
 RESTRICT="!test? ( test )"
 



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

2022-01-12 Thread Sam James
commit: f67566dcf077a2d67a3de2b377d938a3362c3368
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:44:01 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:44:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f67566dc

profiles/arch/sparc: mask broken systemd versions on sparc

Some 250.x versions were affected too but too awkward
to try specify this in the mask. Latest version is fine.

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

 profiles/arch/sparc/package.mask | 6 ++
 1 file changed, 6 insertions(+)

diff --git a/profiles/arch/sparc/package.mask b/profiles/arch/sparc/package.mask
index 6a4f874db264..8c6f66119902 100644
--- a/profiles/arch/sparc/package.mask
+++ b/profiles/arch/sparc/package.mask
@@ -1,6 +1,12 @@
 # Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
+# Sam James  (2022-01-13)
+# Unaligned access causes SIGBUS on sparc in NSS module.
+# Newer versions fixed. Please upgrade ASAP!
+# bug #830275
+ (2014-11-17)
 # Mask sys-devel/kgcc64 since >=gcc-4.4 can build 64bit kernels
 sys-devel/kgcc64



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

2022-01-12 Thread Sam James
commit: e7014e9de8945c3e42410e66ba3987162997c83c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:42:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:42:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e7014e9d

sys-boot/systemd-boot: add 249.9

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

 sys-boot/systemd-boot/Manifest  |   1 +
 sys-boot/systemd-boot/systemd-boot-249.9.ebuild | 130 
 2 files changed, 131 insertions(+)

diff --git a/sys-boot/systemd-boot/Manifest b/sys-boot/systemd-boot/Manifest
index ec8fbe294598..be45979e19b1 100644
--- a/sys-boot/systemd-boot/Manifest
+++ b/sys-boot/systemd-boot/Manifest
@@ -1 +1,2 @@
 DIST systemd-stable-249.6.tar.gz 10599611 BLAKE2B 
9c0cbaa4319f2ce9a78dbe820d1b6df5191e6c632e2eac9f71f9ff9817564d9b3fc177d2aec0c0daea8ac33bbdc2066ad68a8967cf8857f4af3668b9a3e7d3bf
 SHA512 
7a7791dfe4923c00987b924adcb1cd08c4d17af2b17b4c6c6c701856c6810cfda61f06821c39787339fc05293853c0ea61b9973fcf4495c7bf4f8054ecfae66f
+DIST systemd-stable-249.9.tar.gz 10613893 BLAKE2B 
fc7a14fa3b0cc3d05fa9f20fde2efedd3ef0f011d9dce53b0a418994b4257cf753b228cf98f749fb2028d81db55ef30a6e3d9b138d86239cad4fc730d845f9e2
 SHA512 
ce57bc6c522082e55649fc1886c4dc818c89607e175df2c92feffe288dbd38757f36b30abeebe153f5be6b664a49d729405040a952473cb2133a2e39cf9cc164

diff --git a/sys-boot/systemd-boot/systemd-boot-249.9.ebuild 
b/sys-boot/systemd-boot/systemd-boot-249.9.ebuild
new file mode 100644
index ..143c5280b8d8
--- /dev/null
+++ b/sys-boot/systemd-boot/systemd-boot-249.9.ebuild
@@ -0,0 +1,130 @@
+# Copyright 2016-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8..10} )
+
+inherit meson python-any-r1 toolchain-funcs
+
+DESCRIPTION="UEFI boot manager from systemd (formerly gummiboot)"
+HOMEPAGE="https://www.freedesktop.org/wiki/Software/systemd/systemd-boot/";
+if [[ ${PV} == *.* ]]; then
+   
SRC_URI="https://github.com/systemd/systemd-stable/archive/v${PV}.tar.gz -> 
systemd-stable-${PV}.tar.gz"
+   S="${WORKDIR}/systemd-stable-${PV}"
+else
+   SRC_URI="https://github.com/systemd/systemd/archive/v${PV}.tar.gz -> 
systemd-${PV}.tar.gz"
+   S="${WORKDIR}/systemd-${PV}"
+fi
+
+LICENSE="GPL-2 LGPL-2.1 MIT public-domain"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64"
+IUSE=""
+RESTRICT="test"
+
+BDEPEND="
+   app-text/docbook-xml-dtd:4.2
+   app-text/docbook-xml-dtd:4.5
+   app-text/docbook-xsl-stylesheets
+   dev-libs/libxslt:0
+   sys-devel/gettext
+   dev-util/gperf
+   virtual/pkgconfig
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep 'dev-python/jinja[${PYTHON_USEDEP}]')
+"
+
+python_check_deps() {
+   has_version -b "dev-python/jinja[${PYTHON_USEDEP}]"
+}
+
+COMMON_DEPEND="
+   >=sys-apps/util-linux-2.30
+"
+DEPEND="${COMMON_DEPEND}
+   >=sys-boot/gnu-efi-3.0.2
+   sys-libs/libcap
+"
+RDEPEND="${COMMON_DEPEND}
+   !sys-apps/systemd
+"
+
+QA_FLAGS_IGNORED="usr/lib/systemd/boot/efi/.*"
+QA_EXECSTACK="usr/lib/systemd/boot/efi/*"
+
+PATCHES=(
+   "${FILESDIR}/249-libshared-static.patch"
+)
+
+src_configure() {
+   # https://bugs.gentoo.org/725794
+   tc-export OBJCOPY
+
+   local emesonargs=(
+   -Dblkid=true
+   -Defi=true
+   -Dgnu-efi=true
+   -Defi-cc="$(tc-getCC)"
+   -Defi-ld="$(tc-getLD)"
+   -Defi-libdir="/usr/$(get_libdir)"
+   -Dsplit-usr=true
+   -Drootprefix="${EPREFIX:-/}"
+
+   -Dacl=false
+   -Dapparmor=false
+   -Daudit=false
+   -Dbzip2=false
+   -Delfutils=false
+   -Dgcrypt=false
+   -Dgnutls=false
+   -Dkmod=false
+   -Dlibcryptsetup=false
+   -Dlibcurl=false
+   -Dlibidn=false
+   -Dlibidn2=false
+   -Dlibiptc=false
+   -Dlz4=false
+   -Dmicrohttpd=false
+   -Dpam=false
+   -Dqrencode=false
+   -Dseccomp=false
+   -Dselinux=false
+   -Dxkbcommon=false
+   -Dxz=false
+   )
+   meson_src_configure
+}
+
+set_efi_arch() {
+   case "$(tc-arch)" in
+   amd64) efi_arch=x64 ;;
+   arm)   efi_arch=arm ;;
+   arm64) efi_arch=aa64 ;;
+   x86)   efi_arch=x86 ;;
+   esac
+}
+
+src_compile() {
+   local efi_arch
+   set_efi_arch
+   local targets=(
+   bootctl
+   man/bootctl.1
+   man/kernel-install.8
+   src/boot/efi/linux${efi_arch}.{efi,elf}.stub
+   src/boot/efi/systemd-boot${efi_arch}.efi
+   )
+   meson_src_compile "${targets[@]}"
+}
+
+src_install() {
+   local efi_arch
+   set_efi_arch
+   dobin "${BUILD_DIR}"/bootctl src/kernel-install/kernel-inst

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

2022-01-12 Thread Sam James
commit: 96f366eb472811b53683bf66895629324e16261e
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:40:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:40:00 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=96f366eb

sys-apps/systemd: Stabilize 249.9 arm64, #830976

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

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

diff --git a/sys-apps/systemd/systemd-249.9.ebuild 
b/sys-apps/systemd/systemd-249.9.ebuild
index 504b61b632f7..f10dc8e0b344 100644
--- a/sys-apps/systemd/systemd-249.9.ebuild
+++ b/sys-apps/systemd/systemd-249.9.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
+   KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2022-01-12 Thread Zac Medico
commit: d4b29f0c9489bbeddeff88ec2a8b445b9859fb68
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jan 13 04:16:48 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jan 13 04:23:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4b29f0c

sys-apps/flatpak: Bump to version 1.10.6

Bug: https://bugs.gentoo.org/831087
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/flatpak/Manifest  |   1 +
 sys-apps/flatpak/flatpak-1.10.6.ebuild | 102 +
 2 files changed, 103 insertions(+)

diff --git a/sys-apps/flatpak/Manifest b/sys-apps/flatpak/Manifest
index c2d0e21e310a..c970a9f7b09b 100644
--- a/sys-apps/flatpak/Manifest
+++ b/sys-apps/flatpak/Manifest
@@ -1,2 +1,3 @@
 DIST flatpak-1.10.5.tar.xz 1511032 BLAKE2B 
704ce0b5828728f1bb438dca2c1cd0b84277547fbb08400fe11abf243f5d9b5a6219c79188b362174f2a61eea42ae548d4279646838f3de3e4e75b8782f3dabe
 SHA512 
8c2e365ce442a092c15178a8b39daecf21bfe162078c9a323e68d53194413f174e329812dd01d8da6bbfba3b0087aeb4d92a44067df3f6fa0253e33014d138ae
+DIST flatpak-1.10.6.tar.xz 1517800 BLAKE2B 
517251ff75fe8f44ed5a7d2b69301ceb801265854c3570d5349da3e3bac0f4f416163226db0b518e3e2b67427ccb57f9e47b6ed5a6d8ea6a86af146e779a3525
 SHA512 
a6fd46eaaea8510c74671b365e633cd782a02ad05c54ff107226573eae2e9bd9b2ed76dbed401383e784d9530079c80beebb9d8512738815a16cabbe278c
 DIST flatpak-1.12.2.tar.xz 1541068 BLAKE2B 
78162c9ccf0b7b18e69c2594865999fc052a507b255b855f3879cdac0c86dbfcabc6a282f0a4de548d3e85142b0b3c8c26d21825f35e6a2f25ebc1aa13ff2b8b
 SHA512 
4887fe540a821f2c8539fbe1fd89b1cc350126a6fa90c1acf070e08db0de1073406a061f5483bc7a7ef9b07f73409beb7bc02d055d4b3ae1c33ba5c318e11b6f

diff --git a/sys-apps/flatpak/flatpak-1.10.6.ebuild 
b/sys-apps/flatpak/flatpak-1.10.6.ebuild
new file mode 100644
index ..91ad5e3ebdae
--- /dev/null
+++ b/sys-apps/flatpak/flatpak-1.10.6.ebuild
@@ -0,0 +1,102 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8,9,10} )
+
+inherit autotools linux-info python-any-r1
+
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz";
+DESCRIPTION="Linux application sandboxing and distribution framework"
+HOMEPAGE="https://flatpak.org/";
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="doc gtk kde introspection policykit seccomp systemd"
+RESTRICT+=" test"
+
+RDEPEND="
+   acct-group/flatpak
+   acct-user/flatpak
+   >=app-arch/libarchive-2.8:=
+   app-arch/zstd:=
+   >=app-crypt/gpgme-1.1.8:=
+   >=dev-libs/appstream-glib-0.5.10:=
+   >=dev-libs/glib-2.56:2=
+   >=dev-libs/libxml2-2.4:=
+   dev-libs/json-glib:=
+   dev-libs/libassuan:=
+   >=dev-util/ostree-2020.8:=[gpg(+)]
+   || (
+   dev-util/ostree[curl]
+   dev-util/ostree[soup]
+   )
+   >=gnome-base/dconf-0.26:=
+   >=net-libs/libsoup-2.4:=
+   sys-apps/bubblewrap
+   sys-apps/dbus
+   >=sys-fs/fuse-2.9.9:0=
+   sys-apps/xdg-dbus-proxy
+   x11-apps/xauth
+   x11-libs/gdk-pixbuf:2=
+   x11-libs/libXau:=
+   policykit? ( >=sys-auth/polkit-0.98:= )
+   seccomp? ( sys-libs/libseccomp:= )
+   systemd? ( sys-apps/systemd:= )
+"
+
+DEPEND="${RDEPEND}"
+# pyparsing version pinned for https://bugs.gentoo.org/825230
+BDEPEND="
+   >=sys-devel/automake-1.13.4
+   >=sys-devel/gettext-0.18.2
+   virtual/pkgconfig
+   dev-util/gdbus-codegen
+   sys-devel/bison
+   introspection? ( >=dev-libs/gobject-introspection-1.40 )
+   doc? (
+   >=dev-util/gtk-doc-1.20
+   dev-libs/libxslt
+   )
+   $(python_gen_any_dep '

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

2022-01-12 Thread Zac Medico
commit: 6dc15d73c44f4a3fdd7cc2847c75bdc61d2781eb
Author: Zac Medico  gentoo  org>
AuthorDate: Thu Jan 13 04:22:38 2022 +
Commit: Zac Medico  gentoo  org>
CommitDate: Thu Jan 13 04:23:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc15d73

sys-apps/flatpak: Bump to version 1.12.3

Bug: https://bugs.gentoo.org/8310
Package-Manager: Portage-3.0.30, Repoman-3.0.3
Signed-off-by: Zac Medico  gentoo.org>

 sys-apps/flatpak/Manifest  |   1 +
 sys-apps/flatpak/flatpak-1.12.3.ebuild | 102 +
 2 files changed, 103 insertions(+)

diff --git a/sys-apps/flatpak/Manifest b/sys-apps/flatpak/Manifest
index c970a9f7b09b..dbbd0d6a40ba 100644
--- a/sys-apps/flatpak/Manifest
+++ b/sys-apps/flatpak/Manifest
@@ -1,3 +1,4 @@
 DIST flatpak-1.10.5.tar.xz 1511032 BLAKE2B 
704ce0b5828728f1bb438dca2c1cd0b84277547fbb08400fe11abf243f5d9b5a6219c79188b362174f2a61eea42ae548d4279646838f3de3e4e75b8782f3dabe
 SHA512 
8c2e365ce442a092c15178a8b39daecf21bfe162078c9a323e68d53194413f174e329812dd01d8da6bbfba3b0087aeb4d92a44067df3f6fa0253e33014d138ae
 DIST flatpak-1.10.6.tar.xz 1517800 BLAKE2B 
517251ff75fe8f44ed5a7d2b69301ceb801265854c3570d5349da3e3bac0f4f416163226db0b518e3e2b67427ccb57f9e47b6ed5a6d8ea6a86af146e779a3525
 SHA512 
a6fd46eaaea8510c74671b365e633cd782a02ad05c54ff107226573eae2e9bd9b2ed76dbed401383e784d9530079c80beebb9d8512738815a16cabbe278c
 DIST flatpak-1.12.2.tar.xz 1541068 BLAKE2B 
78162c9ccf0b7b18e69c2594865999fc052a507b255b855f3879cdac0c86dbfcabc6a282f0a4de548d3e85142b0b3c8c26d21825f35e6a2f25ebc1aa13ff2b8b
 SHA512 
4887fe540a821f2c8539fbe1fd89b1cc350126a6fa90c1acf070e08db0de1073406a061f5483bc7a7ef9b07f73409beb7bc02d055d4b3ae1c33ba5c318e11b6f
+DIST flatpak-1.12.3.tar.xz 1555340 BLAKE2B 
512b3f6abfb06d242aedad2c27c9870750254a9d0a376739f8885bbf1740b649e2a41f2c079532b049fcce8b58529572ea35e930437ed6b62194a73bcbb6
 SHA512 
2f39665457b4c3b99e32ebc88cf5b70202dba6118887617d3d7faa20f688f3f3fc14e343b70c0d11eb15ee743a68d07078e6cda14fd91aa10ca375797cfc95bc

diff --git a/sys-apps/flatpak/flatpak-1.12.3.ebuild 
b/sys-apps/flatpak/flatpak-1.12.3.ebuild
new file mode 100644
index ..fcab58d20289
--- /dev/null
+++ b/sys-apps/flatpak/flatpak-1.12.3.ebuild
@@ -0,0 +1,102 @@
+# Copyright 2020-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+PYTHON_COMPAT=( python3_{8,9,10} )
+
+inherit autotools linux-info python-any-r1
+
+SRC_URI="https://github.com/${PN}/${PN}/releases/download/${PV}/${P}.tar.xz";
+DESCRIPTION="Linux application sandboxing and distribution framework"
+HOMEPAGE="https://flatpak.org/";
+
+LICENSE="LGPL-2.1+"
+SLOT="0"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~riscv ~x86"
+IUSE="doc gtk kde introspection policykit seccomp systemd"
+RESTRICT+=" test"
+
+RDEPEND="
+   acct-group/flatpak
+   acct-user/flatpak
+   >=app-arch/libarchive-2.8:=
+   app-arch/zstd:=
+   >=app-crypt/gpgme-1.1.8:=
+   >=dev-libs/appstream-glib-0.5.10:=
+   >=dev-libs/glib-2.56:2=
+   >=dev-libs/libxml2-2.4:=
+   dev-libs/json-glib:=
+   dev-libs/libassuan:=
+   >=dev-util/ostree-2020.8:=[gpg(+)]
+   || (
+   dev-util/ostree[curl]
+   dev-util/ostree[soup]
+   )
+   >=gnome-base/dconf-0.26:=
+   >=net-libs/libsoup-2.4:=
+   sys-apps/bubblewrap
+   sys-apps/dbus
+   >=sys-fs/fuse-2.9.9:0=
+   sys-apps/xdg-dbus-proxy
+   x11-apps/xauth
+   x11-libs/gdk-pixbuf:2=
+   x11-libs/libXau:=
+   policykit? ( >=sys-auth/polkit-0.98:= )
+   seccomp? ( sys-libs/libseccomp:= )
+   systemd? ( sys-apps/systemd:= )
+"
+
+DEPEND="${RDEPEND}"
+# pyparsing version pinned for https://bugs.gentoo.org/825230
+BDEPEND="
+   >=sys-devel/automake-1.13.4
+   >=sys-devel/gettext-0.18.2
+   virtual/pkgconfig
+   dev-util/gdbus-codegen
+   sys-devel/bison
+   introspection? ( >=dev-libs/gobject-introspection-1.40 )
+   doc? (
+   >=dev-util/gtk-doc-1.20
+   dev-libs/libxslt
+   )
+   $(python_gen_any_dep 'dev-python/pyparsing[${PYTHON_USEDEP}]')
+"
+
+PDEPEND="
+   gtk? ( sys-apps/xdg-desktop-portal-gtk )
+   kde? ( kde-plasma/xdg-desktop-portal-kde )
+"
+
+python_check_deps() {
+   has_version -b "dev-python/pyparsing[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   local CONFIG_CHECK="~USER_NS"
+   linux-info_pkg_setup
+   python-any-r1_pkg_setup
+}
+
+src_prepare() {
+   default
+   # This line fails because locales are in /usr/lib/locale/locale-archive.
+   sed -i 's:^cp -r /usr/lib/locale/C.*:#\0:' tests/make-test-runtime.sh 
|| die
+}
+
+src_configure() {
+   local myeconfargs=(
+   --enable-sandboxed-triggers
+   --enable-xauth
+   --localstatedir="${EPREFIX}"/var
+   --with-system-bubblewrap
+   --with-system-dbus-proxy
+   $(use_enable doc document

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

2022-01-12 Thread Sam James
commit: d0f38bae1e780b278041c07533d71cd29d71f205
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:20:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:20:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d0f38bae

www-client/chromium: Stabilize 97.0.4692.71-r1 amd64, #830974

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

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

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



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

2022-01-12 Thread Sam James
commit: 7145ff5499d77d948c910bea6cab1790840d9b02
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:33 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7145ff54

dev-db/mariadb: Stabilize 10.5.13 amd64, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.5.13.ebuild 
b/dev-db/mariadb/mariadb-10.5.13.ebuild
index 734f09465b6c..66de9c3394eb 100644
--- a/dev-db/mariadb/mariadb-10.5.13.ebuild
+++ b/dev-db/mariadb/mariadb-10.5.13.ebuild
@@ -31,7 +31,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv ~s390 
~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris 
~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2022-01-12 Thread Sam James
commit: 79e42d2f95d5e78928d17f6a6b57d800181da181
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:32 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=79e42d2f

dev-db/mariadb: Stabilize 10.4.22 amd64, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.4.22.ebuild 
b/dev-db/mariadb/mariadb-10.4.22.ebuild
index ac7be47958fc..82083040b163 100644
--- a/dev-db/mariadb/mariadb-10.4.22.ebuild
+++ b/dev-db/mariadb/mariadb-10.4.22.ebuild
@@ -32,7 +32,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2022-01-12 Thread Sam James
commit: 9425a3178aeadc0ec43ee4dc8425ffb98301b7b0
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:30 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:30 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9425a317

dev-db/mariadb: Stabilize 10.2.41 amd64, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.2.41.ebuild 
b/dev-db/mariadb/mariadb-10.2.41.ebuild
index 9de20d36185a..f3f2b3b57e27 100644
--- a/dev-db/mariadb/mariadb-10.2.41.ebuild
+++ b/dev-db/mariadb/mariadb-10.2.41.ebuild
@@ -32,7 +32,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2022-01-12 Thread Sam James
commit: 7ad004452a58f75911b99cad4cf0533eff5d78a0
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:15 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:15 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7ad00445

dev-db/mysql: Stabilize 8.0.27 x86, #822258

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

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

diff --git a/dev-db/mysql/mysql-8.0.27.ebuild b/dev-db/mysql/mysql-8.0.27.ebuild
index 719593938690..bb140baf5ef2 100644
--- a/dev-db/mysql/mysql-8.0.27.ebuild
+++ b/dev-db/mysql/mysql-8.0.27.ebuild
@@ -37,7 +37,7 @@ REQUIRED_USE="?? ( tcmalloc jemalloc )
tcmalloc? ( server )"
 
 # -ppc, -riscv for bug #761715
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips -ppc ~ppc64 -riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips -ppc ~ppc64 -riscv ~s390 ~sparc 
x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c++/

2022-01-12 Thread Sam James
commit: 26e62ab3857450ecc1bd75e6e88b8c444870dc99
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26e62ab3

dev-db/mysql-connector-c++: Stabilize 8.0.27 x86, #822258

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

 dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild 
b/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
index 4d9220b1fb7a..f9457c31b7d3 100644
--- a/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
+++ b/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://dev.mysql.com/get/Downloads/${URI_DIR}/${P}-src.tar.gz";
 LICENSE="Artistic GPL-2"
 SLOT="0"
 # -ppc, -sparc for bug #711940
-KEYWORDS="amd64 arm ~arm64 -ppc ~ppc64 -sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 -ppc ~ppc64 -sparc x86"
 IUSE="+legacy"
 
 RDEPEND="



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

2022-01-12 Thread Sam James
commit: af0b41ca9a906eb2a04da03d279af87050f9f2ec
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:31 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:31 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=af0b41ca

dev-db/mariadb: Stabilize 10.3.32 amd64, #829392

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

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

diff --git a/dev-db/mariadb/mariadb-10.3.32.ebuild 
b/dev-db/mariadb/mariadb-10.3.32.ebuild
index c6657a92d659..cd11555f93a0 100644
--- a/dev-db/mariadb/mariadb-10.3.32.ebuild
+++ b/dev-db/mariadb/mariadb-10.3.32.ebuild
@@ -32,7 +32,7 @@ REQUIRED_USE="jdbc? ( extraengine server !static )
?? ( tcmalloc jemalloc )
static? ( yassl !pam )"
 
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c++/

2022-01-12 Thread Sam James
commit: b1be80807447b5f58917104a477074606bb80e00
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:09 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1be8080

dev-db/mysql-connector-c++: Stabilize 8.0.27 amd64, #822258

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

 dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild 
b/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
index 40a977f2aa3a..4d9220b1fb7a 100644
--- a/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
+++ b/dev-db/mysql-connector-c++/mysql-connector-c++-8.0.27.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://dev.mysql.com/get/Downloads/${URI_DIR}/${P}-src.tar.gz";
 LICENSE="Artistic GPL-2"
 SLOT="0"
 # -ppc, -sparc for bug #711940
-KEYWORDS="~amd64 arm ~arm64 -ppc ~ppc64 -sparc ~x86"
+KEYWORDS="amd64 arm ~arm64 -ppc ~ppc64 -sparc ~x86"
 IUSE="+legacy"
 
 RDEPEND="



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

2022-01-12 Thread Sam James
commit: 768375da4eb2d568cdaa9333d16296df783a53f0
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:14 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768375da

dev-db/mysql: Stabilize 5.7.36-r1 x86, #822258

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

 dev-db/mysql/mysql-5.7.36-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql/mysql-5.7.36-r1.ebuild 
b/dev-db/mysql/mysql-5.7.36-r1.ebuild
index 21a9c3921876..17090aef5a0e 100644
--- a/dev-db/mysql/mysql-5.7.36-r1.ebuild
+++ b/dev-db/mysql/mysql-5.7.36-r1.ebuild
@@ -27,7 +27,7 @@ RESTRICT="!test? ( test )"
 
 REQUIRED_USE="?? ( tcmalloc jemalloc )"
 
-KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c/

2022-01-12 Thread Sam James
commit: 74fe1abcc961f665a2fb5faea5cfe49075a4ec8c
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:13 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:13 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74fe1abc

dev-db/mysql-connector-c: Stabilize 8.0.27 x86, #822258

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

 dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild 
b/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
index 5c443d33925d..7aee9e8d3573 100644
--- a/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
+++ b/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.mysql.com/get/Downloads/MySQL-$(ver_cut 
1-2)/mysql-boost-${PV}.tar.gz"
-   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"
 
S="${WORKDIR}/mysql-${PV}"
 fi



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

2022-01-12 Thread Sam James
commit: dc102fa51058c9526f007e5c83aaeb20a79db9e3
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:06 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dc102fa5

dev-db/mysql: Stabilize 5.7.36-r1 amd64, #822258

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

 dev-db/mysql/mysql-5.7.36-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql/mysql-5.7.36-r1.ebuild 
b/dev-db/mysql/mysql-5.7.36-r1.ebuild
index 3e7e8e6cabe4..21a9c3921876 100644
--- a/dev-db/mysql/mysql-5.7.36-r1.ebuild
+++ b/dev-db/mysql/mysql-5.7.36-r1.ebuild
@@ -27,7 +27,7 @@ RESTRICT="!test? ( test )"
 
 REQUIRED_USE="?? ( tcmalloc jemalloc )"
 
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~s390 ~sparc ~x86 
~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2022-01-12 Thread Sam James
commit: f28387e20e1c371c434fdad502c9618a91c8f1ea
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:16 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:16 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f28387e2

dev-db/myodbc: Stabilize 8.0.27 x86, #822258

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

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

diff --git a/dev-db/myodbc/myodbc-8.0.27.ebuild 
b/dev-db/myodbc/myodbc-8.0.27.ebuild
index 5e3222dedb05..21745e0ba5ee 100644
--- a/dev-db/myodbc/myodbc-8.0.27.ebuild
+++ b/dev-db/myodbc/myodbc-8.0.27.ebuild
@@ -17,7 +17,7 @@ 
SRC_URI="https://dev.mysql.com/get/Downloads/Connector-ODBC/${MAJOR}/${MY_P}.tar
 
 LICENSE="GPL-2"
 SLOT="${MAJOR}"
-KEYWORDS="amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc x86"
 IUSE=""
 
 RDEPEND="



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

2022-01-12 Thread Sam James
commit: 0c666bff0e750db193211f882ce6f2721d92f6e5
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:07 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:07 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0c666bff

dev-db/mysql: Stabilize 8.0.27 amd64, #822258

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

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

diff --git a/dev-db/mysql/mysql-8.0.27.ebuild b/dev-db/mysql/mysql-8.0.27.ebuild
index 98b5f88fcf4f..719593938690 100644
--- a/dev-db/mysql/mysql-8.0.27.ebuild
+++ b/dev-db/mysql/mysql-8.0.27.ebuild
@@ -37,7 +37,7 @@ REQUIRED_USE="?? ( tcmalloc jemalloc )
tcmalloc? ( server )"
 
 # -ppc, -riscv for bug #761715
-KEYWORDS="~amd64 arm arm64 ~hppa ~ia64 ~mips -ppc ~ppc64 -riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
+KEYWORDS="amd64 arm arm64 ~hppa ~ia64 ~mips -ppc ~ppc64 -riscv ~s390 ~sparc 
~x86 ~amd64-linux ~x86-linux ~x64-macos ~x64-solaris ~x86-solaris"
 
 # Shorten the path because the socket path length must be shorter than 107 
chars
 # and we will run a mysql server during test phase



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

2022-01-12 Thread Sam James
commit: e55d8a7bf6d8ec99a3a0b7b8f0cdfc734b7fc6d2
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e55d8a7b

dev-db/myodbc: Stabilize 8.0.27 amd64, #822258

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

 dev-db/myodbc/myodbc-8.0.27.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-db/myodbc/myodbc-8.0.27.ebuild 
b/dev-db/myodbc/myodbc-8.0.27.ebuild
index 49e7ed8c3c63..5e3222dedb05 100644
--- a/dev-db/myodbc/myodbc-8.0.27.ebuild
+++ b/dev-db/myodbc/myodbc-8.0.27.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -17,7 +17,7 @@ 
SRC_URI="https://dev.mysql.com/get/Downloads/Connector-ODBC/${MAJOR}/${MY_P}.tar
 
 LICENSE="GPL-2"
 SLOT="${MAJOR}"
-KEYWORDS="~amd64 ~ppc ~x86"
+KEYWORDS="amd64 ~ppc ~x86"
 IUSE=""
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: dev-db/mysql-connector-c/

2022-01-12 Thread Sam James
commit: aa1e1be8064cc75acdaf201f26b719f2ce69cd97
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:18:05 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:18:05 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa1e1be8

dev-db/mysql-connector-c: Stabilize 8.0.27 amd64, #822258

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

 dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild 
b/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
index ff3060ae0c32..5c443d33925d 100644
--- a/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
+++ b/dev-db/mysql-connector-c/mysql-connector-c-8.0.27.ebuild
@@ -18,7 +18,7 @@ if [[ ${PV} == "" ]]; then
inherit git-r3
 else
SRC_URI="https://dev.mysql.com/get/Downloads/MySQL-$(ver_cut 
1-2)/mysql-boost-${PV}.tar.gz"
-   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"
 
S="${WORKDIR}/mysql-${PV}"
 fi



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

2022-01-12 Thread Sam James
commit: 9bd5a134c0bec7f8d012be263ecbec9816cfbd01
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:17:21 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:17:21 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9bd5a134

sys-apps/systemd: Stabilize 249.9 amd64, #830976

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

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

diff --git a/sys-apps/systemd/systemd-249.9.ebuild 
b/sys-apps/systemd/systemd-249.9.ebuild
index 73214eadcf63..504b61b632f7 100644
--- a/sys-apps/systemd/systemd-249.9.ebuild
+++ b/sys-apps/systemd/systemd-249.9.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2022-01-12 Thread Sam James
commit: 9969fcc9dbbfc15def832b3aa1392caf6bdcf743
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:17:18 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:17:18 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9969fcc9

sys-apps/systemd: Stabilize 249.9 arm, #830976

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

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

diff --git a/sys-apps/systemd/systemd-249.9.ebuild 
b/sys-apps/systemd/systemd-249.9.ebuild
index e082da92d3e8..73214eadcf63 100644
--- a/sys-apps/systemd/systemd-249.9.ebuild
+++ b/sys-apps/systemd/systemd-249.9.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
+   KEYWORDS="~alpha ~amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2022-01-12 Thread Sam James
commit: 0f8fc0b9f1a1248ca8fa274c51e1ed9ac3dd5442
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:15:41 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:15:41 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f8fc0b9

sys-apps/systemd: Stabilize 249.9 sparc, #830976

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

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

diff --git a/sys-apps/systemd/systemd-249.9.ebuild 
b/sys-apps/systemd/systemd-249.9.ebuild
index 3ef2a742c107..cfc78064ff55 100644
--- a/sys-apps/systemd/systemd-249.9.ebuild
+++ b/sys-apps/systemd/systemd-249.9.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv ~sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv sparc ~x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



[gentoo-commits] repo/gentoo:master commit in: dev-python/google-api-python-client/

2022-01-12 Thread Sam James
commit: dec24002dafb82f27345726ae4a9821a821854a5
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:15:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:15:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=dec24002

dev-python/google-api-python-client: Stabilize 2.34.0 ALLARCHES, #831094

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

 .../google-api-python-client/google-api-python-client-2.34.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/dev-python/google-api-python-client/google-api-python-client-2.34.0.ebuild 
b/dev-python/google-api-python-client/google-api-python-client-2.34.0.ebuild
index b7db8f42faf4..ee4279a8e2a4 100644
--- a/dev-python/google-api-python-client/google-api-python-client-2.34.0.ebuild
+++ b/dev-python/google-api-python-client/google-api-python-client-2.34.0.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/googleapis/google-api-python-client/archive/v${PV}.t
 
 LICENSE="Apache-2.0"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~x86"
+KEYWORDS="amd64 ~arm ~arm64 x86"
 
 RDEPEND="
>=dev-python/httplib2-0.15[${PYTHON_USEDEP}]



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

2022-01-12 Thread Sam James
commit: b0bb702ef09e2793dd864df5f1a0f65360156ffe
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:15:51 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:15:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b0bb702e

sys-apps/systemd: Stabilize 249.9 x86, #830976

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

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

diff --git a/sys-apps/systemd/systemd-249.9.ebuild 
b/sys-apps/systemd/systemd-249.9.ebuild
index 0966aca2f756..e082da92d3e8 100644
--- a/sys-apps/systemd/systemd-249.9.ebuild
+++ b/sys-apps/systemd/systemd-249.9.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2022-01-12 Thread Sam James
commit: cbf8a0753ab630df4f25aef2ad225848735693c1
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:15:47 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:15:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cbf8a075

sys-apps/systemd: Stabilize 249.9 ppc, #830976

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

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

diff --git a/sys-apps/systemd/systemd-249.9.ebuild 
b/sys-apps/systemd/systemd-249.9.ebuild
index 2e97bdb0e12a..0966aca2f756 100644
--- a/sys-apps/systemd/systemd-249.9.ebuild
+++ b/sys-apps/systemd/systemd-249.9.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv 
sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv 
sparc ~x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2022-01-12 Thread Sam James
commit: 982406f7d925fdb813e521a28dd7958c9a714f0f
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 04:15:44 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 04:15:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=982406f7

sys-apps/systemd: Stabilize 249.9 ppc64, #830976

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

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

diff --git a/sys-apps/systemd/systemd-249.9.ebuild 
b/sys-apps/systemd/systemd-249.9.ebuild
index cfc78064ff55..2e97bdb0e12a 100644
--- a/sys-apps/systemd/systemd-249.9.ebuild
+++ b/sys-apps/systemd/systemd-249.9.ebuild
@@ -20,7 +20,7 @@ else
MY_P=${MY_PN}-${MY_PV}
S=${WORKDIR}/${MY_P}

SRC_URI="https://github.com/systemd/${MY_PN}/archive/v${MY_PV}/${MY_P}.tar.gz";
-   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 
~riscv sparc ~x86"
+   KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ppc64 ~riscv 
sparc ~x86"
 fi
 
 inherit bash-completion-r1 linux-info meson-multilib pam python-any-r1 systemd 
toolchain-funcs udev usr-ldscript



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

2022-01-12 Thread Georgy Yakovlev
commit: 9fe3b79ff9e4b89e3729e99e1a221cef78b4c29a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 04:11:04 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 04:11:58 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9fe3b79f

x11-terms/alacritty: add 0.10.0_rc3, drop 0.10.0_rc2

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

 x11-terms/alacritty/Manifest  | 19 +++
 ...-0.10.0_rc2.ebuild => alacritty-0.10.0_rc3.ebuild} | 18 ++
 2 files changed, 21 insertions(+), 16 deletions(-)

diff --git a/x11-terms/alacritty/Manifest b/x11-terms/alacritty/Manifest
index a9a5089e1d0e..6ad5d974e001 100644
--- a/x11-terms/alacritty/Manifest
+++ b/x11-terms/alacritty/Manifest
@@ -1,6 +1,6 @@
 DIST ab_glyph_rasterizer-0.1.4.crate 6641 BLAKE2B 
fc70a45030d969f8af31d1bc3f83069acc014b33cde31817063ab1d40f8caebe12f3896b6a249620a8f2a2d0adc149fcc402f2af25b31ebe223ad0779028d843
 SHA512 
a942a3b0848386677ed5c651034b001c0e24c7bd101be6a25bfed815310f3a530c8cb9e67e96ea3c36f4d7f09731552f734d5e73f705e3e8f2bf40d5151a7a91
 DIST adler32-1.2.0.crate 6411 BLAKE2B 
51d44ccfd774158687b8244e83377e40ff896364e3d41e9015665131cc2a176d4ca0ab5a84df027dec0869ee735ee36f5687a06c1d2341de666070cdbab89483
 SHA512 
8ed72612fb78e213fc92963fdae0508ef26988656c939e6c9cddccbe2658d4a956a8ae934d9658262a8b2687dc446b3f1ee7614128b440487c81e606526dfda3
-DIST alacritty-0.10.0_rc2.tar.gz 1437473 BLAKE2B 
bf61bb1e5d5da3847d2068f51f662315ce1c5a45916ab97275a7b928c9b4602d44996a8663f227ff81640e3564ab6bf190e25b7788b9cdb7286b87adbce2c9fb
 SHA512 
0a72d9239436e303e6fe0604c088174ac3dd4a848f1a48d7ee71acba6afe2e61d0ad6997d400bab404ceff8deee25b8519ab482769f15eab7e52febdabedee39
+DIST alacritty-0.10.0_rc3.tar.gz 1437710 BLAKE2B 
2fed26fc2c70f18d499b9482fc877af7c49b93fdaf683558fb3a8b2eaa50d32fac7f1ca64a23b7510230480a78fd1317b9aadb495af34dca8bfa6bd5cfd86ead
 SHA512 
81361cc9580bedd134c0c965aafaf065fc853165802bdb247f4701c3a943dd8f2d2b4228666e70818ccc12fe8a4539b12399b1fe68feb1312315bf00f9fbb759
 DIST alacritty-0.9.0.tar.gz 1422571 BLAKE2B 
0b9531b92e57e36f86ae2a855c9dca4d3789e21b2ade9df2d22d32b9cf0967748df2acd1c79a1defba4d9eac21b2477550b799e5ffc4f9cb1444793ae9ca36e4
 SHA512 
17b53a1f98e8435a3ab120e39040c591d96a05d793b78030732f5624e2b717ab6a06c8de67fb25c6a502f3f3064f08a2a3c64cf7a1b7f3f7fda699e7fd95f931
 DIST andrew-0.3.1.crate 14030 BLAKE2B 
5224eb5a5ad5ba7dd07259a98b8dc04f92154dcc7b5a53c89b4f7fd3c1a12d834093350ce9f7cd69a935d70cff50c0fbc68305eea9f918b334ec1a6e9e979ae2
 SHA512 
c4fc8903d4c2542c91e7f099d5d9d2b9179ade3f4c3e83ccd8027b06cb582ef700777cf440a07c2478311c1b7c2f7ca64d53fb390f9f5753dcb32491003db8d3
 DIST android_glue-0.2.3.crate 1572 BLAKE2B 
8404cc69af7d1c9e851e67a69b5b18195388b50924b6a8afc7203bc5101babe9ae007724e552a929947fa9c639eb8ae13cdae0aedbc2d54b0b8d48373f15b7a3
 SHA512 
16ff1f0e1f50cd120dfbe57d45ebac1725fa75447c964a5b05a1a0565b13b0bc3b6c153edb4a50083ef5d802a889c9f9007e2e21a58dc408f9fb12e9437bd01b
@@ -97,6 +97,7 @@ DIST instant-0.1.10.crate 5218 BLAKE2B 
1e4203d235006ca922134c715781a5bda5a932f67
 DIST instant-0.1.12.crate 6128 BLAKE2B 
728923f757c1ee4e4a7afb90e460eed81392068961240a538e5c6468e15a0b6491f590fb5f6cc46e6d78901ca232351f65abb9f2f230d8f4983c5e58c4011902
 SHA512 
fae494c00111c51c840f9dd6a10febe403e27ebb933dd16633a213e9c20f2bc11adeb431c71f8a6713bf88f270a010941e15d83df294e658791934f83a5d2407
 DIST iovec-0.1.4.crate 8720 BLAKE2B 
aa1b4cd98ebe47901c0959cf1d8eb2586a803d0453e2a8bdd5c63442b32886dbcb37650aa218c748fd45c9fe3a7fdf20569eae5b19716487b139caae1526da4c
 SHA512 
e23fcaac239807daea20ddcf2cdd4fb858ba1aa970ce6248f70f0fba5bff7ebdb27247c0997ac0ff2791178f86ff9657e473d8f64b86c644763e5b3474edd158
 DIST itoa-0.4.7.crate 12099 BLAKE2B 
0e4ffbaad504565056f74c3ef560a87eff321a0da6d7a2c8fa35813c207713c22d77080c3b830fefbb21370dd29cfbc6a2807044485b38ac1e0c9c1de3ccebc5
 SHA512 
c61eb50aa00591af28698b45c528c36bd92088f7cd2f453cf686a1824f4656292638bebc468cf67f903473a5045f22777af623cc0515ef3bf25146b89a7c454f
+DIST itoa-0.4.8.crate 11926 BLAKE2B 
e5a648b490908d0ffa3a0832342ad11264eb4357939bb39aad014aed3938bb60e82703b7e31929a458525061e9bc40539d33753bdbd722a03b6804e57dd1f70c
 SHA512 
6911d269ff3ed7350e4f0dcfc6e9e0d70e25833e1e7cfcc57d5b8aff1f47b8be4f2e9baf1b92e5517cff63492be489b6d29b48dd9bb642e428acaa431216b68e
 DIST itoa-1.0.1.crate 11059 BLAKE2B 
5a2e22ab891ec883a90f652c88f924113252765579c03c783e43210fb2604e9e3ccbd4c1571087791be07bb99c4e85c7f85253be831b3ea883bc0ac18a927980
 SHA512 
8e7bc1e9bf4fc06871b9fe20caad4e0af965477d724f4c8d0e2a3a4d87aedf99f92e4e583a6440ce574d0fb43fc9d6a2e80add52a2f64210c6aa3b402e424295
 DIST jni-sys-0.3.0.crate 10232 BLAKE2B 
dd6334daa6db9fae6cf1b31b9c13f09f9dc3f6a0e227bf6779880a6e197189d91583cd463b9876125cf892ffa5f8417dcc51aa010cdb8c99bb4f969990e969b1
 SHA512 
1e47582ed4dcf608ffd218549f1eef5ee3c87a89e28c65eeb5bba801edd6cabc0f095e213e8df606e050a57608653a59ced6f01a8bc76a5eb32ba1a337a63321
 DIST js-sys-0.3.55.crate 70499 BLAKE2B 
6108d6bf4be72dc93db5

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

2022-01-12 Thread Sam James
commit: 150de0a45c940a2ada48942cf69d15bf7c1ed2df
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 03:56:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 03:56:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=150de0a4

sci-libs/netcdf-fortran: fix UnusedInherits

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

 sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild 
b/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild
index 49803dfd5170..2e163ea93b82 100644
--- a/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild
+++ b/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild
@@ -5,7 +5,7 @@ EAPI=8
 
 FORTRAN_STANDARD="77 90"
 
-inherit autotools fortran-2 flag-o-matic
+inherit autotools fortran-2
 
 DESCRIPTION="Scientific library and interface for array oriented data access"
 HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/";



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

2022-01-12 Thread Sam James
commit: c10ce89a8b65d0927d26c77dacd7d54e297ed7d7
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 03:53:49 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 03:56:01 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c10ce89a

sci-libs/netcdf-fortran: add 4.5.4

Drops Fortran flag workaround:
https://github.com/Unidata/netcdf-fortran/commit/846ec7ac1d1eb552d319ce51fd70b832f6fcb347

Bug: https://github.com/Unidata/netcdf-fortran/pull/316
Bug: https://bugs.gentoo.org/723274
Signed-off-by: Sam James  gentoo.org>

 sci-libs/netcdf-fortran/Manifest   |  1 +
 .../netcdf-fortran/netcdf-fortran-4.5.4.ebuild | 43 ++
 2 files changed, 44 insertions(+)

diff --git a/sci-libs/netcdf-fortran/Manifest b/sci-libs/netcdf-fortran/Manifest
index 5f10215d3ab5..3555cb2afe78 100644
--- a/sci-libs/netcdf-fortran/Manifest
+++ b/sci-libs/netcdf-fortran/Manifest
@@ -1 +1,2 @@
 DIST netcdf-fortran-4.5.3.tar.gz 1805683 BLAKE2B 
f32a36a77872e039a0c03a1f1ccdbb00761309dc7d255a1203b0a1971464e75d87f56230f28a5d5928ca3e7e388f52c4622836c2cea3d35b286161b8044e375b
 SHA512 
fe4b2f6f8c44bf4fdeebe3cbd57ee44ccee15a70075428bb68f0d33b70f9291b68b542965634a27fb4be5a59c756d672a3d264f2628391861edb98a244e072b4
+DIST netcdf-fortran-4.5.4.tar.gz 2011867 BLAKE2B 
bc98522be63c705193a22ce877c41abdc064a05afab2186891d8a0bbe9da8f0ba3f7eae6610e8b4e006b26ad8e3ea5fd8d57349054949a38f3a2fd9dfefb85c5
 SHA512 
a704f6483f2c8b8bf2353615a3e4b784294bd790588cfc13193c617e776e330edb17fa16da69e1a0b6c767308992321e01399ba2067c32f6ae6b3cb9ff72c3ee

diff --git a/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild 
b/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild
new file mode 100644
index ..49803dfd5170
--- /dev/null
+++ b/sci-libs/netcdf-fortran/netcdf-fortran-4.5.4.ebuild
@@ -0,0 +1,43 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+FORTRAN_STANDARD="77 90"
+
+inherit autotools fortran-2 flag-o-matic
+
+DESCRIPTION="Scientific library and interface for array oriented data access"
+HOMEPAGE="https://www.unidata.ucar.edu/software/netcdf/";
+SRC_URI="https://github.com/Unidata/netcdf-fortran/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="UCAR-Unidata"
+SLOT="0/7"
+KEYWORDS="~amd64 ~x86 ~amd64-linux ~x86-linux"
+IUSE="doc examples static-libs"
+
+RDEPEND="sci-libs/netcdf"
+DEPEND="${RDEPEND}
+   dev-lang/cfortran"
+BDEPEND="doc? ( app-doc/doxygen )"
+
+src_prepare() {
+   default
+
+   eautoreconf
+}
+
+src_configure() {
+   econf \
+   --disable-valgrind \
+   --with-temp-large="${T}" \
+   --disable-dot \
+   $(use_enable doc doxygen) \
+   $(use_enable static-libs static)
+}
+
+src_install() {
+   default
+   use examples && dodoc -r examples
+   find "${ED}" -name '*.la' -delete || die
+}



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

2022-01-12 Thread Georgy Yakovlev
commit: b9cc983bd63988cf2b6c988196dd181e84a27ad5
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 02:50:36 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:50:36 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b9cc983b

sys-apps/keyutils: Stabilize 1.6.3 ppc64, #789837

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

 sys-apps/keyutils/keyutils-1.6.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/sys-apps/keyutils/keyutils-1.6.3.ebuild 
b/sys-apps/keyutils/keyutils-1.6.3.ebuild
index d32b3b91f411..99217d63b428 100644
--- a/sys-apps/keyutils/keyutils-1.6.3.ebuild
+++ b/sys-apps/keyutils/keyutils-1.6.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://git.kernel.org/pub/scm/linux/kernel/git/dhowells/keyutils.git/s
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="0/1.9"
-KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha ~amd64 ~arm arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
 IUSE="static static-libs test"
 RESTRICT="!test? ( test )"
 



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

2022-01-12 Thread Georgy Yakovlev
commit: 0540f5526f5cb8b69ad2010b6f7e4630f892845b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 02:31:51 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:31:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0540f552

cargo.eclass: really fix typo

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

 eclass/cargo.eclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass
index b910bda6a735..18afd10fa0ed 100644
--- a/eclass/cargo.eclass
+++ b/eclass/cargo.eclass
@@ -6,7 +6,7 @@
 # r...@gentoo.org
 # @AUTHOR:
 # Doug Goldstein 
-# Georgy Yakovlev 
+# Georgy Yakovlev 
 # @SUPPORTED_EAPIS: 7 8
 # @BLURB: common functions and variables for cargo builds
 



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

2022-01-12 Thread Georgy Yakovlev
commit: 5b34e0b3520ed5064147860bedf181b2d05934e1
Author: Alexey Zapparov  zapparov  com>
AuthorDate: Thu Jan 13 01:39:52 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:27:51 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5b34e0b3

app-admin/yadm: add 3.1.1

Co-Authored-By: Georgy Yakovlev  gentoo.org>
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Signed-off-by: Alexey Zapparov  zapparov.com>
Closes: https://github.com/gentoo/gentoo/pull/23723
Signed-off-by: Georgy Yakovlev  gentoo.org>

 app-admin/yadm/Manifest  |  1 +
 app-admin/yadm/yadm-3.1.1.ebuild | 88 
 2 files changed, 89 insertions(+)

diff --git a/app-admin/yadm/Manifest b/app-admin/yadm/Manifest
index 2a3b64f3cdf2..6478b98da09f 100644
--- a/app-admin/yadm/Manifest
+++ b/app-admin/yadm/Manifest
@@ -1 +1,2 @@
 DIST yadm-2.4.0.tar.gz 96877 BLAKE2B 
462a5816e106c4502007ff34ab338904e14a9851ebcfc7ff79a32a8b11fbbe3e0b7e6538ed6b489ab67e2205c84b2250749e3091c77fa663886dc9792078a576
 SHA512 
43e16a9502f9dd9f6c6dba3bb5403bb048244a406d44cb42a96a43e62bf7342efd5f302304dbedede61423546787fc929f378d68da9031207e70239ec4e265ce
+DIST yadm-3.1.1.tar.gz 106890 BLAKE2B 
c85bfdaf15da8e88aea8e1b41af5396111fe95922f38c9709d09d76b6cb515d4aff99f0caaa225baf36bc408f6efe7f53e7b2febd45c78acf2b5f3c897b87290
 SHA512 
6be40ff6b1130be93649bb533d63ddc2dad626bb3022392863b600b31eef2529df443a9eb24915979bef2d1ea4ef04124668723ffb0ce0f86727f481a3997c74

diff --git a/app-admin/yadm/yadm-3.1.1.ebuild b/app-admin/yadm/yadm-3.1.1.ebuild
new file mode 100644
index ..b2d7cb882037
--- /dev/null
+++ b/app-admin/yadm/yadm-3.1.1.ebuild
@@ -0,0 +1,88 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit bash-completion-r1 python-any-r1 python-utils-r1
+
+DESCRIPTION="Git based tool for managing dotfiles"
+HOMEPAGE="https://github.com/TheLocehiliosan/yadm";
+SRC_URI="https://github.com/TheLocehiliosan/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+
+LICENSE="GPL-3+"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc64 ~x86"
+IUSE="test"
+
+RESTRICT="!test? ( test )"
+
+RDEPEND="
+   app-shells/bash
+   app-crypt/gnupg
+   dev-vcs/git
+"
+
+BDEPEND="
+   test? (
+   ${RDEPEND}
+   ${PYTHON_DEPS}
+   $(python_gen_any_dep '
+   dev-python/pytest[${PYTHON_USEDEP}]
+   ')
+   dev-tcltk/expect
+   )
+"
+
+python_check_deps() {
+   has_version -b "dev-python/pytest[${PYTHON_USEDEP}]"
+}
+
+pkg_setup() {
+   use test && python-any-r1_pkg_setup
+}
+
+src_compile() {
+   emake "${PN}.md"
+}
+
+src_test() {
+   # prevent system config having influence on tests
+   local -x GIT_CONFIG_NOSYSTEM=1
+
+   # prevent git branch warning, it confuses tests
+   local -x GIT_CONFIG_GLOBAL="${HOME}/.gitconfig"
+   git config --global init.defaultBranch master || die "setting default 
branch name failed"
+
+   # un-hardcode path to tmp, otherwise encryption tests fail
+   sed -i "s@^cache_dir = /tmp@cache_dir = ${TMPDIR}@" pytest.ini || die
+
+   local EPYTEST_DESELECT=(
+   test/test_alt.py # requires envtpl, not packaged
+   test/test_compat_jinja.py # ditto
+   test/test_unit_template_j2.py # ditto
+   test/test_syntax.py # needs new yamllint, not packaged yet
+   test/test_upgrade.py::test_upgrade # needs old version of yadm
+   test/test_compat_alt.py # tests obsolete features, broken
+   test/test_unit_template_esh.py # requires esh, not packaged
+   
test/test_encryption.py::test_symmetric_encrypt[clean-encrypt_exists-bad_phrase]
 # hangs in sandbox
+   
test/test_encryption.py::test_symmetric_encrypt[overwrite-encrypt_exists-bad_phrase]
 # ditto
+   )
+
+   epytest
+}
+
+src_install() {
+   einstalldocs
+
+   dobin "${PN}"
+   doman "${PN}.1"
+
+   dobashcomp completion/bash/yadm
+
+   insinto /usr/share/zsh/site-functions
+   doins completion/zsh/_${PN}
+
+   insinto /usr/share/fish/vendor_completions.d
+   doins completion/fish/${PN}.fish
+}



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

2022-01-12 Thread Sam James
commit: a4b0bccf2b723c9677f716c113461ed6fa8c98c0
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 02:26:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 02:26:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a4b0bccf

x11-apps/luit: add 20220111

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

 x11-apps/luit/Manifest |  1 +
 x11-apps/luit/luit-20220111.ebuild | 21 +
 2 files changed, 22 insertions(+)

diff --git a/x11-apps/luit/Manifest b/x11-apps/luit/Manifest
index b2fdd0bd365f..ed468697f11b 100644
--- a/x11-apps/luit/Manifest
+++ b/x11-apps/luit/Manifest
@@ -1,2 +1,3 @@
 DIST luit-20190106.tgz 190866 BLAKE2B 
44098a00cade37aacdd7e67e1dae68157b652458b8a059de3dc56be9cc79ffba2ba861d403ab65de640853e0aec38c7d8d67febb5b6ae852a25430d2988c3661
 SHA512 
4324ff2793635e12e7fc0df2d7c5cdeb6241591105d0cfaf40a0da06a08764f08c5ef5f6fc19bc0e5d1f4b34b90e14b7aa393a0e613f5e096c6f91c90988215b
 DIST luit-20210218.tgz 202363 BLAKE2B 
a7eb88c567125e66b6f257f5f1365cc20cf30a37ec4d172c9d6396f3aebf0e5e505af604df109eebde195dc5152afe50e6ac82f485f3309c852d1dca7cae5f27
 SHA512 
92bfdfd5b03c73803caaf3ffb1eb92660c6c97c30b7d716454df1b5007af9cf7f75d8f255841a87f8fe266c33bff9af6c1195eb13e5160b7787a3a9e693b21e8
+DIST luit-20220111.tgz 206011 BLAKE2B 
030f4c734b1b63c7f51f4e601445522a318b9b0cb3d291d9a392c8aac12315088115e513d368977c3a4536c580f033b78ab575ae4d6d4e8439c53fad6f5cd5e0
 SHA512 
c3e0e2e7e9da5ca1176f61b1aa050e6a525af1e4c924d9685ae0684657e549093677240cc3f74517dcb12821f7c447e5b4f5306f37d1ddefc9fc7bf1971eee28

diff --git a/x11-apps/luit/luit-20220111.ebuild 
b/x11-apps/luit/luit-20220111.ebuild
new file mode 100644
index ..75c2f4c403da
--- /dev/null
+++ b/x11-apps/luit/luit-20220111.ebuild
@@ -0,0 +1,21 @@
+# Copyright 2019-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+DESCRIPTION="Locale and ISO 2022 support for Unicode terminals"
+HOMEPAGE="https://invisible-island.net/luit/";
+SRC_URI="https://invisible-mirror.net/archives/${PN}/${P}.tgz";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+
+DEPEND="sys-libs/zlib
+   virtual/libiconv"
+RDEPEND="${DEPEND}"
+BDEPEND="sys-apps/groff"
+
+src_configure() {
+   econf --disable-fontenc --enable-iconv
+}



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

2022-01-12 Thread Sam James
commit: ec1c94573b6a26e8644025cdfc4cb631ad1c0b35
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 02:15:38 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 02:15:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec1c9457

x11-terms/xterm: add 370

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

 x11-terms/xterm/Manifest |  1 +
 x11-terms/xterm/xterm-370.ebuild | 99 
 2 files changed, 100 insertions(+)

diff --git a/x11-terms/xterm/Manifest b/x11-terms/xterm/Manifest
index aafe202c6a0a..e4f4411385e1 100644
--- a/x11-terms/xterm/Manifest
+++ b/x11-terms/xterm/Manifest
@@ -2,3 +2,4 @@ DIST xterm-366.tgz 1445992 BLAKE2B 
4724851b84ae0682b39e5f1b070ba9f04c627511aa20a
 DIST xterm-367.tgz 1448562 BLAKE2B 
29b38ba3b48c843ecbf22d209a05afb4e9a6d52cf8f14efa18ed5dd02b26cc11c107bfb17260cb62f68fc318cb08e5147b5f12e8779ca63151c7b712ada60b7e
 SHA512 
86fd6ed4e4aa0201349edd67d8bf00d3b93a19640307372011f9bdcd26fdb453267d1ab092a0639902e419b00c175d793b196884b6e65e546650e1b83a4461c4
 DIST xterm-368.tgz 1451700 BLAKE2B 
3fe939b8248e8839ba8b73b0971ab380e5f6528f51bd1993cc26d53755177fd5537cdbf2044f7fedad20663b3a7b42bc7f8b1c138233d44eb91472840f8448e1
 SHA512 
ea2f27722795c47a406cf4956ecdd05bae19aee621a0183aa167d188a90767a859ce41c6d1b1352b5ebd94d920360d3f26248ec0bb2068c253583d460baeafda
 DIST xterm-369.tgz 1461310 BLAKE2B 
0b807b07c71af39df6b38b16b45f8f24a77e00bf41243c1109cf25c7ff448729b0ed64d62a99e954e0939e4f8ac6298afdc61b4098cf489eadbef55940e0f277
 SHA512 
b574e75e8bc7918f6e637534a39ebbc72cfbc74e4ff3e2b914962722b9c6e60adee49d74ebe1e778bcb35556e04098baa4465d1694fde61fbcca6434e6e706a7
+DIST xterm-370.tgz 1500208 BLAKE2B 
973cda2511e761be64332746f004ed9ea716c8f5b7065cef2ef60d789e6186138b671920f23135b5c66d3226ce17c1d195db456350c94f5f0973e29610896b1a
 SHA512 
24f1836c4f5aec175c45db77e9bc829b45ee2c93cf12c20252b22bee470392ef0637cfbbb6e90074b1c038ac023f74a4fb713bbd4abf2b5b86d064667caf38dd

diff --git a/x11-terms/xterm/xterm-370.ebuild b/x11-terms/xterm/xterm-370.ebuild
new file mode 100644
index ..57e07cc5fdd8
--- /dev/null
+++ b/x11-terms/xterm/xterm-370.ebuild
@@ -0,0 +1,99 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=7
+
+inherit desktop flag-o-matic toolchain-funcs
+
+DESCRIPTION="Terminal Emulator for X Windows"
+HOMEPAGE="https://invisible-island.net/xterm/";
+SRC_URI="ftp://ftp.invisible-island.net/${PN}/${P}.tgz";
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ~ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+IUSE="+openpty sixel toolbar truetype unicode Xaw3d xinerama"
+
+BDEPEND="virtual/pkgconfig
+   x11-base/xorg-proto"
+DEPEND="
+   kernel_linux? ( sys-libs/libutempter )
+   media-libs/fontconfig:1.0
+   >=sys-libs/ncurses-5.7-r7:0=
+   x11-apps/xmessage
+   x11-libs/libICE
+   x11-libs/libX11
+   x11-libs/libXaw
+   x11-libs/libXft
+   x11-libs/libxkbfile
+   x11-libs/libXmu
+   x11-libs/libXrender
+   x11-libs/libXt
+   unicode? ( x11-apps/luit )
+   Xaw3d? ( x11-libs/libXaw3d )
+   xinerama? ( x11-libs/libXinerama )"
+RDEPEND="${DEPEND}
+   media-fonts/font-misc-misc
+   x11-apps/rgb"
+
+DOCS=( README{,.i18n} ctlseqs.txt )
+
+pkg_setup() {
+   DEFAULTS_DIR="${EPREFIX}"/usr/share/X11/app-defaults
+}
+
+src_configure() {
+   # 454736
+   # Workaround for ncurses[tinfo] until upstream fixes their buildsystem 
using
+   # something sane like pkg-config or ncurses5-config and stops guessing 
libs
+   # Everything gets linked against ncurses anyways, so don't shout
+   append-libs $($(tc-getPKG_CONFIG) --libs ncurses)
+
+   local myeconfargs=(
+   --disable-full-tgetent
+   --disable-imake
+   --disable-setgid
+   --disable-setuid
+   --enable-256-color
+   --enable-broken-osc
+   --enable-broken-st
+   --enable-dabbrev
+   --enable-exec-xterm
+   --enable-i18n
+   --enable-load-vt-fonts
+   --enable-logging
+   --enable-screen-dumps
+   --enable-warnings
+   --enable-wide-chars
+   --libdir="${EPREFIX}"/etc
+   --with-app-defaults="${DEFAULTS_DIR}"
+   --with-utempter
+   --with-x
+   $(use_enable openpty)
+   $(use_enable sixel sixel-graphics)
+   $(use_enable toolbar)
+   $(use_enable truetype freetype)
+   $(use_enable unicode luit)
+   $(use_enable unicode mini-luit)
+   $(use_with Xaw3d)
+   $(use_with xinerama)
+   )
+   econf "${myeconfargs[@]}"
+}
+
+src_install() {
+   default

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

2022-01-12 Thread Georgy Yakovlev
commit: b5c3ead947fd4ca409651b15cae6807a3363f87a
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 02:06:50 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:06:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b5c3ead9

cargo.eclass: fix typo in email address

Thanks-to: Alexey Zapparov alexey  zapparov.com
Signed-off-by: Georgy Yakovlev  gentoo.org>

 eclass/cargo.eclass | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/eclass/cargo.eclass b/eclass/cargo.eclass
index 938511e410fc..b910bda6a735 100644
--- a/eclass/cargo.eclass
+++ b/eclass/cargo.eclass
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 # @ECLASS: cargo.eclass
@@ -6,7 +6,7 @@
 # r...@gentoo.org
 # @AUTHOR:
 # Doug Goldstein 
-# Georgy Yakovlev 
+# Georgy Yakovlev 
 # @SUPPORTED_EAPIS: 7 8
 # @BLURB: common functions and variables for cargo builds
 



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

2022-01-12 Thread Georgy Yakovlev
commit: 74654ee2e00ed52bb27bdec04a8b0f736cd2c7f0
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 02:03:35 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:03:35 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74654ee2

gnome-extra/gnome-logs: keyword 3.36.0 for ~arm64

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

 gnome-extra/gnome-logs/gnome-logs-3.36.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/gnome-extra/gnome-logs/gnome-logs-3.36.0.ebuild 
b/gnome-extra/gnome-logs/gnome-logs-3.36.0.ebuild
index 590e0e654263..f6ec67a9021e 100644
--- a/gnome-extra/gnome-logs/gnome-logs-3.36.0.ebuild
+++ b/gnome-extra/gnome-logs/gnome-logs-3.36.0.ebuild
@@ -10,7 +10,7 @@ HOMEPAGE="https://wiki.gnome.org/Apps/Logs";
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 
 RDEPEND="
gnome-base/gsettings-desktop-schemas



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

2022-01-12 Thread Georgy Yakovlev
commit: 42b21bc9be2bfd062d9b057c8d7f638ea3a9dd96
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 02:04:09 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:04:09 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=42b21bc9

gnome-extra/gnome-shell-extension-appindicator: keyword 41 for ~arm64

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

 .../gnome-shell-extension-appindicator-41.ebuild| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-41.ebuild
 
b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-41.ebuild
index 5075012f96a7..4e4f2439fc7d 100644
--- 
a/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-41.ebuild
+++ 
b/gnome-extra/gnome-shell-extension-appindicator/gnome-shell-extension-appindicator-41.ebuild
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/ubuntu/gnome-shell-extension-appindicator/archive/v$
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 IUSE=""
 
 RDEPEND="



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

2022-01-12 Thread Georgy Yakovlev
commit: cb9f0090e63ce9cf82f545e5037704f4607b1d6d
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:58:39 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cb9f0090

media-gfx/simple-scan: keyword 40.7 for ~arm64

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

 media-gfx/simple-scan/simple-scan-40.7.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-gfx/simple-scan/simple-scan-40.7.ebuild 
b/media-gfx/simple-scan/simple-scan-40.7.ebuild
index 6647ed0c63da..6f4df2c8cd69 100644
--- a/media-gfx/simple-scan/simple-scan-40.7.ebuild
+++ b/media-gfx/simple-scan/simple-scan-40.7.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/simple-scan";
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~x86"
 IUSE="colord webp"
 
 DEPEND="



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

2022-01-12 Thread Georgy Yakovlev
commit: 7bcd815542b4eba16fe1be492b3775d8fa59265b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:52:30 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7bcd8155

x11-terms/guake: keyword 3.8.1 for ~arm64

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

 x11-terms/guake/guake-3.8.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-terms/guake/guake-3.8.1.ebuild 
b/x11-terms/guake/guake-3.8.1.ebuild
index 613937b6d325..c7b0ddb9600b 100644
--- a/x11-terms/guake/guake-3.8.1.ebuild
+++ b/x11-terms/guake/guake-3.8.1.ebuild
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/Guake/guake/archive/refs/tags/${PV}.tar.gz -> ${P}.t
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 arm ~ppc64 x86"
+KEYWORDS="amd64 arm ~arm64 ~ppc64 x86"
 IUSE="utempter"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-news/liferea/

2022-01-12 Thread Georgy Yakovlev
commit: 8180bc2dd1f11c605f22a5c39fa3bb469c7c6ff3
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:59:18 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:48 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8180bc2d

net-news/liferea: keyword 1.12.9-r2 for ~arm64

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

 net-news/liferea/liferea-1.12.9-r2.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/net-news/liferea/liferea-1.12.9-r2.ebuild 
b/net-news/liferea/liferea-1.12.9-r2.ebuild
index 6788102f8dcb..f0c1e4c89e53 100644
--- a/net-news/liferea/liferea-1.12.9-r2.ebuild
+++ b/net-news/liferea/liferea-1.12.9-r2.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -13,7 +13,7 @@ 
SRC_URI="https://github.com/lwindolf/${PN}/releases/download/v${PV}/${P}.tar.bz2
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~arm ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
 IUSE=""
 REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 



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

2022-01-12 Thread Georgy Yakovlev
commit: 0f40dba00178add2cc47e93ad140c099e0faf4c9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:56:38 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f40dba0

profiles/arch/arm64: mask media-sound/rhythmbox[upnv-av]

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

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

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 8b586440290b..80b153ee31db 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -324,6 +324,7 @@ sys-libs/libblockdev dmraid
 
 # Mart Raudsepp  (2018-02-13)
 # USE=upnp-av requires net-misc/dleyna-server that is not keyworded yet.
+media-sound/rhythmbox upnp-av
 >=media-plugins/grilo-plugins-0.3.5 upnp-av
 
 # Mart Raudsepp  (2018-02-13)



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

2022-01-12 Thread Georgy Yakovlev
commit: d72968f9f428576d6569169fa61eb001bd58a96e
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:57:04 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:47 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d72968f9

media-sound/rhythmbox: keyword 3.4.4 for ~arm64

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

 media-sound/rhythmbox/rhythmbox-3.4.4.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild 
b/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild
index 49b5d725a857..32ae7e137c3a 100644
--- a/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild
+++ b/media-sound/rhythmbox/rhythmbox-3.4.4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -23,7 +23,7 @@ REQUIRED_USE="
python? ( ${PYTHON_REQUIRED_USE} )
 "
 
-KEYWORDS="~alpha amd64 ~arm ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~ppc ~ppc64 ~riscv ~sparc x86"
 
 COMMON_DEPEND="
>=dev-libs/glib-2.38:2



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

2022-01-12 Thread Georgy Yakovlev
commit: ae7d1125f7ecd2a38634e80cc254927916186a5c
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:53:11 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae7d1125

media-video/celluloid: keyword 0.21 for ~arm64

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

 media-video/celluloid/celluloid-0.21.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-video/celluloid/celluloid-0.21.ebuild 
b/media-video/celluloid/celluloid-0.21.ebuild
index 6a771a6e23fc..6427cae1f4e7 100644
--- a/media-video/celluloid/celluloid-0.21.ebuild
+++ b/media-video/celluloid/celluloid-0.21.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/celluloid-player/celluloid/releases/download/v${PV}/
 
 LICENSE="GPL-3+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64"
+KEYWORDS="~amd64 ~arm64 ~ppc64"
 
 RDEPEND=">=dev-libs/glib-2.44
>=x11-libs/gtk+-3.22.23:3



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

2022-01-12 Thread Georgy Yakovlev
commit: bd1b66a847783b9db14630ca5ebe394e8ecc5f94
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:50:47 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd1b66a8

x11-themes/kvantum: keyword 1.0.0 for ~arm64

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

 x11-themes/kvantum/kvantum-1.0.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/x11-themes/kvantum/kvantum-1.0.0.ebuild 
b/x11-themes/kvantum/kvantum-1.0.0.ebuild
index a69c1c66f34e..7957aee545fc 100644
--- a/x11-themes/kvantum/kvantum-1.0.0.ebuild
+++ b/x11-themes/kvantum/kvantum-1.0.0.ebuild
@@ -12,7 +12,7 @@ S="${WORKDIR}/${PN^}-${PV}/${PN^}"
 
 LICENSE="GPL-3"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~x86"
 IUSE=""
 
 DEPEND="



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

2022-01-12 Thread Georgy Yakovlev
commit: acb6dbf6e5a46a3a745298ecabfff0bdb3be45c9
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:49:45 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:43 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=acb6dbf6

dev-libs/libgit2-glib: keyword 1.0.0.1 for ~arm64

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

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

diff --git a/dev-libs/libgit2-glib/libgit2-glib-1.0.0.1.ebuild 
b/dev-libs/libgit2-glib/libgit2-glib-1.0.0.1.ebuild
index f15d0e8014ec..72d8c26339c1 100644
--- a/dev-libs/libgit2-glib/libgit2-glib-1.0.0.1.ebuild
+++ b/dev-libs/libgit2-glib/libgit2-glib-1.0.0.1.ebuild
@@ -12,7 +12,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/Libgit2-glib";
 
 LICENSE="LGPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
 IUSE="gtk-doc python +ssh +vala"
 REQUIRED_USE="python? ( ${PYTHON_REQUIRED_USE} )"
 



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

2022-01-12 Thread Georgy Yakovlev
commit: 5bdd4eb115d637d847605672bc65c630d8641cf4
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:49:12 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bdd4eb1

app-editors/gedit-plugins: keyword 40.1 for ~arm64

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

 app-editors/gedit-plugins/gedit-plugins-40.1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-editors/gedit-plugins/gedit-plugins-40.1.ebuild 
b/app-editors/gedit-plugins/gedit-plugins-40.1.ebuild
index 663c00d14205..d056232a64b2 100644
--- a/app-editors/gedit-plugins/gedit-plugins-40.1.ebuild
+++ b/app-editors/gedit-plugins/gedit-plugins-40.1.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Collection of extra plugins for the gedit Text 
Editor"
 HOMEPAGE="https://wiki.gnome.org/Apps/Gedit/ShippedPlugins";
 
 LICENSE="GPL-2+"
-KEYWORDS="amd64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
 SLOT="0"
 
 IUSE="charmap git +python terminal vala"



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

2022-01-12 Thread Georgy Yakovlev
commit: 26bbfc8b8a51926135d9368c80cf5821a6bf7367
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:52:02 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:45 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=26bbfc8b

x11-themes/adwaita-qt: keyword 1.4.1 for ~arm64

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

 x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild 
b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
index 7e7d6a0e61ef..b02503632d0a 100644
--- a/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
+++ b/x11-themes/adwaita-qt/adwaita-qt-1.4.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -10,7 +10,7 @@ 
SRC_URI="https://github.com/FedoraQt/${PN}/archive/${PV}/${P}.tar.gz";
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 IUSE="gnome"
 
 DEPEND="



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

2022-01-12 Thread Georgy Yakovlev
commit: 2951c3fa38376e06b26b52ee36fba8380c5aac26
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:51:45 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 02:00:44 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2951c3fa

x11-themes/QGnomePlatform: keyword 0.8.3 for ~arm64

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

 x11-themes/QGnomePlatform/QGnomePlatform-0.8.3.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/x11-themes/QGnomePlatform/QGnomePlatform-0.8.3.ebuild 
b/x11-themes/QGnomePlatform/QGnomePlatform-0.8.3.ebuild
index a9bef5d0521e..b82f63167572 100644
--- a/x11-themes/QGnomePlatform/QGnomePlatform-0.8.3.ebuild
+++ b/x11-themes/QGnomePlatform/QGnomePlatform-0.8.3.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -8,7 +8,7 @@ DESCRIPTION="A Qt Platform Theme aimed to accommodate GNOME 
settings"
 HOMEPAGE="https://github.com/FedoraQt/QGnomePlatform";
 SRC_URI="https://github.com/FedoraQt/QGnomePlatform/archive/${PV}.tar.gz -> 
${P}.tar.gz"
 
-KEYWORDS="amd64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 x86"
 LICENSE="LGPL-2.1"
 SLOT="0"
 IUSE=""



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

2022-01-12 Thread Rick Farina
commit: 01cc9d0ae4d7d2f7ff9cc822584105411701e739
Author: Rick Farina  gentoo  org>
AuthorDate: Thu Jan 13 01:49:47 2022 +
Commit: Rick Farina  gentoo  org>
CommitDate: Thu Jan 13 01:53:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=01cc9d0a

net-wireless/lorcon: bump python to 3.10

update EAPI 7 -> 8

Signed-off-by: Rick Farina  gentoo.org>

 net-wireless/lorcon/lorcon-0.0_p20200214.ebuild | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/net-wireless/lorcon/lorcon-0.0_p20200214.ebuild 
b/net-wireless/lorcon/lorcon-0.0_p20200214.ebuild
index db239c00f95b..1446bc1840cd 100644
--- a/net-wireless/lorcon/lorcon-0.0_p20200214.ebuild
+++ b/net-wireless/lorcon/lorcon-0.0_p20200214.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8,9})
+PYTHON_COMPAT=( python3_{7,8,9,10})
 DISTUTILS_OPTIONAL=1
 
 inherit distutils-r1



[gentoo-commits] repo/gentoo:master commit in: net-wireless/aircrack-ng/

2022-01-12 Thread Rick Farina
commit: 6dc130e32572caff65a9d364f14aeb596d85f43c
Author: Rick Farina  gentoo  org>
AuthorDate: Thu Jan 13 01:51:00 2022 +
Commit: Rick Farina  gentoo  org>
CommitDate: Thu Jan 13 01:53:50 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6dc130e3

net-wireless/aircrack-ng: bump python to 3.10

bump eapi to 8
add a missing dep for live ebuild

Signed-off-by: Rick Farina  gentoo.org>

 net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild | 4 ++--
 net-wireless/aircrack-ng/aircrack-ng-.ebuild | 5 +++--
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild 
b/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild
index 6e2b86e4ec30..8019d52bc0a4 100644
--- a/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild
+++ b/net-wireless/aircrack-ng/aircrack-ng-1.6_p20200722-r1.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2022 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_{7,8,9,10} )
 DISTUTILS_OPTIONAL=1
 
 inherit toolchain-funcs distutils-r1 flag-o-matic autotools

diff --git a/net-wireless/aircrack-ng/aircrack-ng-.ebuild 
b/net-wireless/aircrack-ng/aircrack-ng-.ebuild
index 6ca26f493d03..e3aaf11f7fc8 100644
--- a/net-wireless/aircrack-ng/aircrack-ng-.ebuild
+++ b/net-wireless/aircrack-ng/aircrack-ng-.ebuild
@@ -1,9 +1,9 @@
 # Copyright 1999-2022 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_{7,8,9,10} )
 DISTUTILS_OPTIONAL=1
 
 inherit toolchain-funcs distutils-r1 flag-o-matic autotools
@@ -27,6 +27,7 @@ IUSE="+airdrop-ng +airgraph-ng +netlink +pcre +sqlite 
+experimental"
 
 DEPEND="net-libs/libpcap
sys-apps/hwloc:0=
+   dev-libs/libbsd
dev-libs/openssl:0=
netlink? ( dev-libs/libnl:3 )
pcre? ( dev-libs/libpcre )



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

2022-01-12 Thread Rick Farina
commit: 04cbe2c6bc590088e1bdd333cae85fd0f054df3e
Author: Rick Farina  gentoo  org>
AuthorDate: Thu Jan 13 01:41:34 2022 +
Commit: Rick Farina  gentoo  org>
CommitDate: Thu Jan 13 01:53:49 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04cbe2c6

net-wireless/lorcon: add python 3.10

bump eapi to 8

Signed-off-by: Rick Farina  gentoo.org>

 net-wireless/lorcon/lorcon-2020.06.06.ebuild | 6 +++---
 net-wireless/lorcon/lorcon-.ebuild   | 6 +++---
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/net-wireless/lorcon/lorcon-2020.06.06.ebuild 
b/net-wireless/lorcon/lorcon-2020.06.06.ebuild
index 20a4da501628..c9b4f070b6aa 100644
--- a/net-wireless/lorcon/lorcon-2020.06.06.ebuild
+++ b/net-wireless/lorcon/lorcon-2020.06.06.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8,9})
+PYTHON_COMPAT=( python3_{7,8,9,10})
 DISTUTILS_OPTIONAL=1
 
 inherit distutils-r1

diff --git a/net-wireless/lorcon/lorcon-.ebuild 
b/net-wireless/lorcon/lorcon-.ebuild
index 4a69d22d8690..80f35a3d8ffd 100644
--- a/net-wireless/lorcon/lorcon-.ebuild
+++ b/net-wireless/lorcon/lorcon-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=7
+EAPI=8
 
-PYTHON_COMPAT=( python3_{7,8,9})
+PYTHON_COMPAT=( python3_{7,8,9,10})
 DISTUTILS_OPTIONAL=1
 
 inherit distutils-r1



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

2022-01-12 Thread Sam James
commit: 20d19f16f0a1b911dedaed17592e596aa2aea3f6
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 01:46:17 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 01:46:17 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=20d19f16

dev-python/google-auth: add upper-bound on cachetools

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

 .../{google-auth-2.3.3.ebuild => google-auth-2.3.3-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/google-auth/google-auth-2.3.3.ebuild 
b/dev-python/google-auth/google-auth-2.3.3-r1.ebuild
similarity index 94%
rename from dev-python/google-auth/google-auth-2.3.3.ebuild
rename to dev-python/google-auth/google-auth-2.3.3-r1.ebuild
index 616a33ae31c4..03004f5afbc6 100644
--- a/dev-python/google-auth/google-auth-2.3.3.ebuild
+++ b/dev-python/google-auth/google-auth-2.3.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -19,7 +19,7 @@ SLOT="0"
 KEYWORDS="amd64 ~arm ~arm64 x86"
 
 RDEPEND="
-   >=dev-python/cachetools-2.0.0[${PYTHON_USEDEP}]
+   =dev-python/pyasn1-0.1.7[${PYTHON_USEDEP}]
>=dev-python/pyasn1-modules-0.2.1[${PYTHON_USEDEP}]



[gentoo-commits] repo/gentoo:master commit in: dev-lang/mono/files/, dev-lang/mono/

2022-01-12 Thread Sam James
commit: be02856a46e00bbb861fd3c651cac42c2b7697d0
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 01:41:45 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 01:42:08 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=be02856a

dev-lang/mono: fix automagic ccache usage

This is for users to enable, not for build systems to do it based
on whether ccache is installed (which leads to sandbox issues anyway).

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

 .../mono-6.12.0.122-disable-automagic-ccache.patch | 22 ++
 dev-lang/mono/mono-6.12.0.122.ebuild   |  3 ++-
 2 files changed, 24 insertions(+), 1 deletion(-)

diff --git a/dev-lang/mono/files/mono-6.12.0.122-disable-automagic-ccache.patch 
b/dev-lang/mono/files/mono-6.12.0.122-disable-automagic-ccache.patch
new file mode 100644
index ..b92592f6ea32
--- /dev/null
+++ b/dev-lang/mono/files/mono-6.12.0.122-disable-automagic-ccache.patch
@@ -0,0 +1,22 @@
+https://bugs.gentoo.org/831079
+--- a/mono/btls/CMakeLists.txt
 b/mono/btls/CMakeLists.txt
+@@ -12,11 +12,6 @@ endif()
+ enable_language(C)
+ enable_language(CXX)
+ 
+-find_program(CCACHE_PROGRAM ccache)
+-if(CCACHE_PROGRAM)
+-set_property(GLOBAL PROPERTY RULE_LAUNCH_COMPILE "${CCACHE_PROGRAM}")
+-endif()
+-
+ if (MSVC OR CYGWIN)
+   set(BTLS_HOST_WIN32 1)
+ endif ()
+@@ -129,4 +124,4 @@ endif ()
+ 
+ if (CYGWIN)
+   target_link_libraries (mono-btls-shared wsock32 ws2_32)
+-endif ()
+\ No newline at end of file
++endif ()

diff --git a/dev-lang/mono/mono-6.12.0.122.ebuild 
b/dev-lang/mono/mono-6.12.0.122.ebuild
index 449d4aebe3b2..97ee904ee535 100644
--- a/dev-lang/mono/mono-6.12.0.122.ebuild
+++ b/dev-lang/mono/mono-6.12.0.122.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -36,6 +36,7 @@ BDEPEND="
 
 PATCHES=(
"${FILESDIR}"/${PN}-5.12-try-catch.patch
+   "${FILESDIR}"/${PN}-6.12.0.122-disable-automagic-ccache.patch
 )
 
 pkg_pretend() {



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

2022-01-12 Thread Georgy Yakovlev
commit: 4affa172278ad093bae8e55247c587144fb0df9b
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:25:08 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 01:26:06 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4affa172

profiles/arch/arm64: unmask gnome[classic]

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

 profiles/arch/arm64/package.use.mask | 4 
 1 file changed, 4 deletions(-)

diff --git a/profiles/arch/arm64/package.use.mask 
b/profiles/arch/arm64/package.use.mask
index 8cba9766d5b3..8b586440290b 100644
--- a/profiles/arch/arm64/package.use.mask
+++ b/profiles/arch/arm64/package.use.mask
@@ -402,10 +402,6 @@ app-office/gnumeric libgda
 # Missing keywords, bug #492820
 net-im/telepathy-connection-managers sipe
 
-# Pacho Ramos  (2013-10-31)
-# Missing keywords, bug #478254
-gnome-base/gnome classic
-
 # Sergey Popov  (2013-09-06)
 # sci-libs/hdf does not build properly on arm
 dev-perl/PDL   hdf



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

2022-01-12 Thread Sam James
commit: 557e00d429f1249c6a15bc56181f369f087a8545
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 01:11:22 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 01:25:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=557e00d4

sci-libs/opencascade: block eselect-opencascade

We're no longer pursuing slotted OCC. Please emerge --depclean it
if you have it installed (eselect-opencascade).

Deslotting of OCC was already completed.

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

 sci-libs/opencascade/opencascade-7.5.2-r4.ebuild | 1 +
 sci-libs/opencascade/opencascade-7.5.3-r5.ebuild | 1 +
 sci-libs/opencascade/opencascade-7.6.0-r1.ebuild | 1 +
 3 files changed, 3 insertions(+)

diff --git a/sci-libs/opencascade/opencascade-7.5.2-r4.ebuild 
b/sci-libs/opencascade/opencascade-7.5.2-r4.ebuild
index 7f662a01ff3a..98fad573f3a8 100644
--- a/sci-libs/opencascade/opencascade-7.5.2-r4.ebuild
+++ b/sci-libs/opencascade/opencascade-7.5.2-r4.ebuild
@@ -25,6 +25,7 @@ REQUIRED_USE="?? ( optimize tbb )"
 RESTRICT="test"
 
 RDEPEND="
+   !app-eselect/eselect-opencascade
dev-lang/tcl:=
dev-lang/tk:=
dev-tcltk/itcl

diff --git a/sci-libs/opencascade/opencascade-7.5.3-r5.ebuild 
b/sci-libs/opencascade/opencascade-7.5.3-r5.ebuild
index 6c9825a5afde..55ca127b2053 100644
--- a/sci-libs/opencascade/opencascade-7.5.3-r5.ebuild
+++ b/sci-libs/opencascade/opencascade-7.5.3-r5.ebuild
@@ -25,6 +25,7 @@ REQUIRED_USE="?? ( optimize tbb )"
 RESTRICT="test"
 
 RDEPEND="
+   !app-eselect/eselect-opencascade
dev-lang/tcl:=
dev-lang/tk:=
dev-tcltk/itcl

diff --git a/sci-libs/opencascade/opencascade-7.6.0-r1.ebuild 
b/sci-libs/opencascade/opencascade-7.6.0-r1.ebuild
index 4791baa0fb60..2c03ea0ead25 100644
--- a/sci-libs/opencascade/opencascade-7.6.0-r1.ebuild
+++ b/sci-libs/opencascade/opencascade-7.6.0-r1.ebuild
@@ -25,6 +25,7 @@ REQUIRED_USE="?? ( optimize tbb )"
 RESTRICT="test"
 
 RDEPEND="
+   !app-eselect/eselect-opencascade
dev-lang/tcl:=
dev-lang/tk:=
dev-tcltk/itcl



[gentoo-commits] repo/gentoo:master commit in: sci-libs/opencascade/, sci-libs/opencascade/files/

2022-01-12 Thread Sam James
commit: 4db0fd6113765ff6f6865e47bdbe8f4f2495e4f4
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 01:07:53 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 01:25:32 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4db0fd61

sci-libs/opencascade: fix installed environment file for non-slotted

We're no longer using slotted OCC but I don't think we fully
completed the version. I was initially going to wait but
upon reflection, I think this is the only way forward
that makes sense (updating the env.in to reflect
the earlier changes).

The old/outdated env file results in build failures
in e.g. kicad.

(Also, change ESYSROOT -> EPREFIX for the env file
as the env file is for the end result system.)

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

 sci-libs/opencascade/files/opencascade.env.in  | 32 +++---
 ...7.5.2-r3.ebuild => opencascade-7.5.2-r4.ebuild} |  5 ++--
 ...7.5.3-r4.ebuild => opencascade-7.5.3-r5.ebuild} |  5 ++--
 ...de-7.6.0.ebuild => opencascade-7.6.0-r1.ebuild} |  5 ++--
 4 files changed, 22 insertions(+), 25 deletions(-)

diff --git a/sci-libs/opencascade/files/opencascade.env.in 
b/sci-libs/opencascade/files/opencascade.env.in
index d7148c241f11..28006d724806 100644
--- a/sci-libs/opencascade/files/opencascade.env.in
+++ b/sci-libs/opencascade/files/opencascade.env.in
@@ -10,8 +10,8 @@
 
 # define the root directory of Open CASCADE Technology (needed)
 CASROOT="VAR_CASROOT"
-PATH="VAR_CASROOT/lib/opencascade-VAR_PV/bin"
-LDPATH="VAR_CASROOT/lib/opencascade-VAR_PV"
+PATH="VAR_CASROOT/lib/opencascade/bin"
+LDPATH="VAR_CASROOT/lib/opencascade"
 
 #
 # The MMGT_* variables are used to determine how memory management will work
@@ -79,21 +79,21 @@ LDPATH="VAR_CASROOT/lib/opencascade-VAR_PV"
 
 # The following CSF_* variables define various directories and files where
 # OCCT is looking for resources.
-CSF_GraphicShr="VAR_CASROOT/lib/opencascade-VAR_PV/libTKOpenGl.so"
-CSF_MIGRATION_TYPES="VAR_CASROOT/share/opencascade-VAR_PV/resources/StdResource/MigrationSheet.txt"
-CSF_MDTVTexturesDirectory="VAR_CASROOT/share/opencascade-VAR_PV/resources/Textures"
-CSF_PluginDefaults="VAR_CASROOT/share/opencascade-VAR_PV/resources/StdResource"
-CSF_StandardDefaults="VAR_CASROOT/share/opencascade-VAR_PV/resources/StdResource"
-CSF_StandardLiteDefaults="VAR_CASROOT/share/opencascade-VAR_PV/resources/StdResource"
-CSF_XCAFDefaults="VAR_CASROOT/share/opencascade-VAR_PV/resources/StdResource"
-CSF_XmlOcafResource="VAR_CASROOT/share/opencascade-VAR_PV/resources/XmlOcafResource"
+CSF_GraphicShr="VAR_CASROOT/lib/opencascade/libTKOpenGl.so"
+CSF_MIGRATION_TYPES="VAR_CASROOT/share/opencascade/resources/StdResource/MigrationSheet.txt"
+CSF_MDTVTexturesDirectory="VAR_CASROOT/share/opencascade/resources/Textures"
+CSF_PluginDefaults="VAR_CASROOT/share/opencascade/resources/StdResource"
+CSF_StandardDefaults="VAR_CASROOT/share/opencascade/resources/StdResource"
+CSF_StandardLiteDefaults="VAR_CASROOT/share/opencascade/resources/StdResource"
+CSF_XCAFDefaults="VAR_CASROOT/share/opencascade/resources/StdResource"
+CSF_XmlOcafResource="VAR_CASROOT/share/opencascade/resources/XmlOcafResource"
 # The below values might be optional.
-CSF_IGESDefaults="VAR_CASROOT/share/opencascade-VAR_PV/resources/XSTEPResource"
-CSF_ShadersDirectory="VAR_CASROOT/share/opencascade-VAR_PV/resources/Shaders"
-CSF_SHMessage="VAR_CASROOT/share/opencascade-VAR_PV/resources/SHMessage"
-CSF_STEPDefaults="VAR_CASROOT/share/opencascade-VAR_PV/resources/XSTEPResource"
-CSF_UnitsDefinition="VAR_CASROOT/share/opencascade-VAR_PV/resources/UnitsAPI/Units.dat"
-CSF_XSMessage="VAR_CASROOT/share/opencascade-VAR_PV/resources/XSMessage"
+CSF_IGESDefaults="VAR_CASROOT/share/opencascade/resources/XSTEPResource"
+CSF_ShadersDirectory="VAR_CASROOT/share/opencascade/resources/Shaders"
+CSF_SHMessage="VAR_CASROOT/share/opencascade/resources/SHMessage"
+CSF_STEPDefaults="VAR_CASROOT/share/opencascade/resources/XSTEPResource"
+CSF_UnitsDefinition="VAR_CASROOT/share/opencascade/resources/UnitsAPI/Units.dat"
+CSF_XSMessage="VAR_CASROOT/share/opencascade/resources/XSMessage"
 
 # TODO: check those
 # they were defined in the original ebuild but the directories and files

diff --git a/sci-libs/opencascade/opencascade-7.5.2-r3.ebuild 
b/sci-libs/opencascade/opencascade-7.5.2-r4.ebuild
similarity index 97%
rename from sci-libs/opencascade/opencascade-7.5.2-r3.ebuild
rename to sci-libs/opencascade/opencascade-7.5.2-r4.ebuild
index 080f7888f0bd..7f662a01ff3a 100644
--- a/sci-libs/opencascade/opencascade-7.5.2-r3.ebuild
+++ b/sci-libs/opencascade/opencascade-7.5.2-r4.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -135,8 +135,7 @@ src_con

[gentoo-commits] repo/gentoo:master commit in: sci-electronics/kicad/

2022-01-12 Thread Sam James
commit: bac5491e45dc70a01f435bb99718876aee7b7d95
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 01:25:00 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 01:25:33 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bac5491e

sci-electronics/kicad: add missing i18n files

kicad-i18n is now merged into sci-electronics/kicad (changed upstream).

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

 sci-electronics/kicad/{kicad-6.0.0.ebuild => kicad-6.0.0-r1.ebuild} | 5 +
 sci-electronics/kicad/kicad-.ebuild | 5 +
 2 files changed, 10 insertions(+)

diff --git a/sci-electronics/kicad/kicad-6.0.0.ebuild 
b/sci-electronics/kicad/kicad-6.0.0-r1.ebuild
similarity index 96%
rename from sci-electronics/kicad/kicad-6.0.0.ebuild
rename to sci-electronics/kicad/kicad-6.0.0-r1.ebuild
index 12fedf2f808e..ff3a92646a7e 100644
--- a/sci-electronics/kicad/kicad-6.0.0.ebuild
+++ b/sci-electronics/kicad/kicad-6.0.0-r1.ebuild
@@ -35,6 +35,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 # Contains bundled pybind but it's patched for wx
 # See 
https://gitlab.com/kicad/code/kicad/-/commit/74e4370a9b146b21883d6a2d1df46c7a10bd0424
 COMMON_DEPEND="
+   !sci-electronics/kicad-i18n
>=dev-libs/boost-1.61:=[context,nls]
media-libs/freeglut
media-libs/glew:0=
@@ -94,6 +95,10 @@ src_configure() {
 
-DKICAD_SCRIPTING_WXPYTHON=ON
 
+   # Merged from separate -i18n package, bug #830274
+   -DKICAD_BUILD_I18N=ON
+   -DKICAD_I18N_UNIX_STRICT_PATH=ON
+
-DPYTHON_DEST="$(python_get_sitedir)"
-DPYTHON_EXECUTABLE="${PYTHON}"
-DPYTHON_INCLUDE_DIR="$(python_get_includedir)"

diff --git a/sci-electronics/kicad/kicad-.ebuild 
b/sci-electronics/kicad/kicad-.ebuild
index 12fedf2f808e..ff3a92646a7e 100644
--- a/sci-electronics/kicad/kicad-.ebuild
+++ b/sci-electronics/kicad/kicad-.ebuild
@@ -35,6 +35,7 @@ REQUIRED_USE="${PYTHON_REQUIRED_USE}"
 # Contains bundled pybind but it's patched for wx
 # See 
https://gitlab.com/kicad/code/kicad/-/commit/74e4370a9b146b21883d6a2d1df46c7a10bd0424
 COMMON_DEPEND="
+   !sci-electronics/kicad-i18n
>=dev-libs/boost-1.61:=[context,nls]
media-libs/freeglut
media-libs/glew:0=
@@ -94,6 +95,10 @@ src_configure() {
 
-DKICAD_SCRIPTING_WXPYTHON=ON
 
+   # Merged from separate -i18n package, bug #830274
+   -DKICAD_BUILD_I18N=ON
+   -DKICAD_I18N_UNIX_STRICT_PATH=ON
+
-DPYTHON_DEST="$(python_get_sitedir)"
-DPYTHON_EXECUTABLE="${PYTHON}"
-DPYTHON_INCLUDE_DIR="$(python_get_includedir)"



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

2022-01-12 Thread Georgy Yakovlev
commit: eb8945a0e733d5966e31aa9c765119738818e681
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:19:19 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 01:22:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=eb8945a0

app-eselect/eselect-gnome-shell-extensions: keyword 20180306 for ~arm64

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

 .../eselect-gnome-shell-extensions-20180306.ebuild| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
 
b/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
index ec5282603d2d..62d61a4009f7 100644
--- 
a/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
+++ 
b/app-eselect/eselect-gnome-shell-extensions/eselect-gnome-shell-extensions-20180306.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=6
@@ -9,7 +9,7 @@ SRC_URI="https://dev.gentoo.org/~leio/distfiles/${P}.tar.xz";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="amd64 ~ppc64 ~riscv x86"
+KEYWORDS="amd64 ~arm64 ~ppc64 ~riscv x86"
 
 # gnome-shell schemas are used in pkg_postinst
 COMMON_DEPEND="app-admin/eselect



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

2022-01-12 Thread Georgy Yakovlev
commit: 468e740def5460e7f1e7cfed77804c263426c761
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:22:00 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 01:22:39 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=468e740d

gnome-base/gnome-menus: keyword 3.36.0 for ~arm64

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

 gnome-base/gnome-menus/gnome-menus-3.36.0.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/gnome-base/gnome-menus/gnome-menus-3.36.0.ebuild 
b/gnome-base/gnome-menus/gnome-menus-3.36.0.ebuild
index c6e06f47930e..0f664abf97e9 100644
--- a/gnome-base/gnome-menus/gnome-menus-3.36.0.ebuild
+++ b/gnome-base/gnome-menus/gnome-menus-3.36.0.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI="6"
@@ -10,7 +10,7 @@ HOMEPAGE="https://gitlab.gnome.org/GNOME/gnome-menus";
 
 LICENSE="GPL-2+ LGPL-2+"
 SLOT="3"
-KEYWORDS="~alpha amd64 ~arm ~ia64 ppc ~ppc64 ~riscv ~sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ~ppc64 ~riscv ~sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x86-solaris"
 
 IUSE="+introspection test"
 RESTRICT="!test? ( test )"



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

2022-01-12 Thread Georgy Yakovlev
commit: a2ace2429d1d8643b6d5769db7ac71c717cb4f65
Author: Georgy Yakovlev  gentoo  org>
AuthorDate: Thu Jan 13 01:18:51 2022 +
Commit: Georgy Yakovlev  gentoo  org>
CommitDate: Thu Jan 13 01:22:40 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2ace242

gnome-extra/gnome-shell-extensions: keyword 41.1 for ~arm64

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

 gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.1.ebuild | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.1.ebuild 
b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.1.ebuild
index 673f611f2d02..aea37b082f55 100644
--- a/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.1.ebuild
+++ b/gnome-extra/gnome-shell-extensions/gnome-shell-extensions-41.1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -9,7 +9,7 @@ HOMEPAGE="https://wiki.gnome.org/Projects/GnomeShell/Extensions";
 
 LICENSE="GPL-2+"
 SLOT="0"
-KEYWORDS="~amd64 ~ppc64 ~riscv ~x86"
+KEYWORDS="~amd64 ~arm64 ~ppc64 ~riscv ~x86"
 
 DEPEND="
>=dev-libs/glib-2.26:2



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

2022-01-12 Thread Louis Sautier
commit: 233b933d3cfb81a07af8f4602949df9bef35550f
Author: Tom Gillespie  gmail  com>
AuthorDate: Wed Jan 12 20:48:57 2022 +
Commit: Louis Sautier  gentoo  org>
CommitDate: Thu Jan 13 01:04:14 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=233b933d

dev-python/kombu: fix amqp min version

a runtime error is produced because kombu requirements lists amqp-5.0.9
as the min version instead of amqp-5.0.6

revbump so the change will propagate

Signed-off-by: Tom Gillespie  gmail.com>
Closes: https://github.com/gentoo/gentoo/pull/23764
Signed-off-by: Louis Sautier  gentoo.org>

 dev-python/kombu/{kombu-5.2.3.ebuild => kombu-5.2.3-r1.ebuild} | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/dev-python/kombu/kombu-5.2.3.ebuild 
b/dev-python/kombu/kombu-5.2.3-r1.ebuild
similarity index 96%
rename from dev-python/kombu/kombu-5.2.3.ebuild
rename to dev-python/kombu/kombu-5.2.3-r1.ebuild
index 22dee35e6bf5..73c428029253 100644
--- a/dev-python/kombu/kombu-5.2.3.ebuild
+++ b/dev-python/kombu/kombu-5.2.3-r1.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=8
@@ -16,7 +16,7 @@ KEYWORDS="~amd64 ~arm64 ~x86"
 IUSE="examples"
 
 RDEPEND="
-   >=dev-python/py-amqp-5.0.6[${PYTHON_USEDEP}]
+   >=dev-python/py-amqp-5.0.9[${PYTHON_USEDEP}]


[gentoo-commits] repo/gentoo:master commit in: sci-mathematics/gimps/

2022-01-12 Thread Sam James
commit: 1d443df41addfdaf3ec29240d79f630a5be7edec
Author: PPed72  iol  it>
AuthorDate: Tue Jan 11 09:36:08 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 01:02:46 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1d443df4

sci-mathematics/gimps: add 32 bit binary

Signed-off-by: Paolo Pedroni  iol.it>
Closes: https://bugs.gentoo.org/830996
Package-Manager: Portage-3.0.28, Repoman-3.0.3
Closes: https://github.com/gentoo/gentoo/pull/23738
Signed-off-by: Sam James  gentoo.org>

 sci-mathematics/gimps/Manifest| 1 +
 sci-mathematics/gimps/gimps-30.7.9.ebuild | 5 +++--
 2 files changed, 4 insertions(+), 2 deletions(-)

diff --git a/sci-mathematics/gimps/Manifest b/sci-mathematics/gimps/Manifest
index c2cb5e746786..a90c60e47b57 100644
--- a/sci-mathematics/gimps/Manifest
+++ b/sci-mathematics/gimps/Manifest
@@ -1,3 +1,4 @@
+DIST gimps-30.7.9.linux32.tar.gz 5966449 BLAKE2B 
b31b93417857d338e5e7454e1466bd881422fef51ce0cecb9f7991f7dd19526fcfc01283e0ed871859e32aa4672492fe222bdacd2e06b55ef8401a2169c1846a
 SHA512 
0491f7ec80953b8a86c75b6cc58532130dd51c6abd28617c87208da22a1fb4a1d2f4bea15bf6bd5de3a6706f5b8dcaa5a4cf7bcd39a47f5db0ee4ec74c41cfbd
 DIST gimps-30.7.9.linux64.tar.gz 7100830 BLAKE2B 
8ebae083d26309f7c624e38c943e3bb0c7fe40a538840970dc222ed33ba5eaa9a5c0767b822682921eaae27f839c1eca5c0204b2c135748002e5d072744afe25
 SHA512 
5e6f3fbcc50b9b91fda7b286392bb17e58fd8d55a8386f27e206c63c560993da9713513d5eb4355e8e934f2e8703b39fc96f3c6f01058b729330f3526d37479b
 DIST p95v303b6.linux32.tar.gz 5702312 BLAKE2B 
728c8b8e7e2b5187dc8126bccc5e2c165fbfbc0900d6c35517cd21b78e5292df143641e3766cc0146918062039b1eecab568f9b278f64b1b9197ee2f775603b9
 SHA512 
3e06fb77be07334949ece3ae152bdf5491f0b7f8e33e0e8ed2af3c34332841975a9514d1993ed2355abfa4e09f93e42093d02f96dc30c3471ae9f974cc2de11a
 DIST p95v303b6.linux64.tar.gz 7046127 BLAKE2B 
9cde9c2670203071cfc463434a47c8123064cb232bfeb25d8767cad2c25ea75b395e2ec135b7b4a6dc9616e9d6b05ead371e1083274a82468f62a0e1de93c98f
 SHA512 
6d6ded9a1724993d42adee28d400b0337835c52a4ce42271e62efb37134adfc6f017f55475860fbc1224e377a227ef8547b8852a35c082c37e996f4a1c1b570c

diff --git a/sci-mathematics/gimps/gimps-30.7.9.ebuild 
b/sci-mathematics/gimps/gimps-30.7.9.ebuild
index f1cf70e083a8..33b432fb3b2f 100644
--- a/sci-mathematics/gimps/gimps-30.7.9.ebuild
+++ b/sci-mathematics/gimps/gimps-30.7.9.ebuild
@@ -1,4 +1,4 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
@@ -16,12 +16,13 @@ MY_PV=$(ver_rs 2 'b' )
 
 SRC_URI="
amd64? ( 
https://www.mersenne.org/ftp_root/gimps/p95v${MY_PV/./}.linux64.tar.gz -> 
${P}.linux64.tar.gz )
+   x86? ( 
https://www.mersenne.org/ftp_root/gimps/p95v${MY_PV/./}.linux32.tar.gz -> 
${P}.linux32.tar.gz )
"
 
 SLOT="0"
 LICENSE="GIMPS"
 RESTRICT="mirror bindist"
-KEYWORDS="-* ~amd64"
+KEYWORDS="-* ~amd64 ~x86"
 
 # Since there are no statically linked binaries for this version of mprime,
 # and no static binaries for amd64 in general, we use the dynamically linked



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

2022-01-12 Thread Sam James
commit: 3120e503cd505039303220cdb2fdad2ebb8d125b
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 01:00:23 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 01:00:23 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3120e503

sys-apps/iproute2: tidy up a bit

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

 sys-apps/iproute2/iproute2-5.16.0.ebuild | 24 
 sys-apps/iproute2/iproute2-.ebuild   | 26 +-
 2 files changed, 25 insertions(+), 25 deletions(-)

diff --git a/sys-apps/iproute2/iproute2-5.16.0.ebuild 
b/sys-apps/iproute2/iproute2-5.16.0.ebuild
index c8e64f6852ee..c26a054ac839 100644
--- a/sys-apps/iproute2/iproute2-5.16.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.16.0.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-inherit toolchain-funcs flag-o-matic multilib
+inherit toolchain-funcs
 
 if [[ ${PV} == "" ]] ; then

EGIT_REPO_URI="https://git.kernel.org/pub/scm/linux/kernel/git/shemminger/iproute2.git";
@@ -46,8 +46,8 @@ BDEPEND="
 "
 
 PATCHES=(
-   "${FILESDIR}"/${PN}-3.1.0-mtu.patch #291907
-   "${FILESDIR}"/${PN}-5.12.0-configure-nomagic.patch # bug 643722
+   "${FILESDIR}"/${PN}-3.1.0-mtu.patch # bug #291907
+   "${FILESDIR}"/${PN}-5.12.0-configure-nomagic.patch # bug #643722
#"${FILESDIR}"/${PN}-5.1.0-portability.patch
"${FILESDIR}"/${PN}-5.7.0-mix-signal.h-include.patch
 )
@@ -60,7 +60,7 @@ doecho() {
 src_prepare() {
if ! use ipv6 ; then
PATCHES+=(
-   "${FILESDIR}"/${PN}-4.20.0-no-ipv6.patch #326849
+   "${FILESDIR}"/${PN}-4.20.0-no-ipv6.patch # bug #326849
)
fi
 
@@ -85,7 +85,7 @@ src_prepare() {
-e "/^DBM_INCLUDE/s:=.*:=${T}:" \
Makefile || die
 
-   # build against system headers
+   # Build against system headers
rm -r include/netinet || die #include/linux 
include/ip{,6}tables{,_common}.h include/libiptc
sed -i 's:TCPI_OPT_ECN_SEEN:16:' misc/ss.c || die
 
@@ -99,12 +99,12 @@ src_configure() {
 
# This sure is ugly.  Should probably move into toolchain-funcs at some 
point.
local setns
-   pushd "${T}" >/dev/null
+   pushd "${T}" >/dev/null || die
printf '#include \nint main(){return setns(0, 0);}\n' > test.c
${CC} ${CFLAGS} ${CPPFLAGS} -D_GNU_SOURCE ${LDFLAGS} test.c >&/dev/null 
&& setns=y || setns=n
echo 'int main(){return 0;}' > test.c
${CC} ${CFLAGS} ${CPPFLAGS} ${LDFLAGS} test.c -lresolv >&/dev/null || 
sed -i '/^LDLIBS/s:-lresolv::' "${S}"/Makefile
-   popd >/dev/null
+   popd >/dev/null || die
 
# run "configure" script first which will create "config.mk"...
# Using econf breaks since 5.14.0 
(a9c3d70d902a0473ee5c13336317006a52ce8242)
@@ -116,7 +116,7 @@ src_configure() {
TC_CONFIG_ATM := $(usex atm y n)
TC_CONFIG_XT  := $(usex iptables y n)
TC_CONFIG_NO_XT := $(usex iptables n y)
-   # We've locked in recent enough kernel headers #549948
+   # We've locked in recent enough kernel headers, bug #549948
TC_CONFIG_IPSET := y
HAVE_BERKELEY_DB := $(usex berkdb y n)
HAVE_CAP  := $(usex caps y n)
@@ -124,7 +124,7 @@ src_configure() {
HAVE_ELF  := $(usex elf y n)
HAVE_SELINUX  := $(usex selinux y n)
IP_CONFIG_SETNS := ${setns}
-   # Use correct iptables dir, #144265 #293709
+   # Use correct iptables dir, bug #144265, bug #293709
IPT_LIB_DIR   := $(use iptables && ${PKG_CONFIG} xtables 
--variable=xtlibdir)
HAVE_LIBBSD   := $(usex libbsd y n)
EOF
@@ -154,19 +154,19 @@ src_install() {
install
 
dodir /bin
-   mv "${ED}"/{s,}bin/ip || die #330115
+   mv "${ED}"/{s,}bin/ip || die # bug #330115
 
dolib.a lib/libnetlink.a
insinto /usr/include
doins include/libnetlink.h
# This local header pulls in a lot of linux headers it
# doesn't directly need.  Delete this header that requires
-   # linux-headers-3.8 until that goes stable.  #467716
+   # linux-headers-3.8 until that goes stable. # bug #467716
sed -i '/linux\/netconf.h/d' "${ED}"/usr/include/libnetlink.h || die
 
if use berkdb ; then
keepdir /var/lib/arpd
-   # bug 47482, arpd doesn't need to be in /sbin
+   # bug #47482, arpd doesn't need to be in /sbin
dodir /usr/bin
mv "${ED}"/sbin/arpd "${ED}"/usr/bin/ || die
elif [[ -d "${ED}"/var/lib/arpd ]]; then

diff --git a/sys-apps/iproute2/iproute2-.ebuild 
b/sys-apps/iproute2/iproute2-.ebuild
index 367b3541cbfe..c26a054ac839 100644
--- a/sys-apps/iproute2/iproute2-.ebuild
+++ b/sys-apps/iproute2/iproute2-.ebuild
@@ -1,9 +1,9 @@
-# Copyright 1999-2021 Gentoo Authors
+# Copyright 1999-2022 Gentoo Authors
 # Distributed under the terms of t

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

2022-01-12 Thread Sam James
commit: c6ba9d2147901d91b4ac72641d4e1201bf66
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 00:57:26 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 00:57:26 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c6ba9d21

media-libs/sdl2-ttf: fix harfbuzz dependency

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

 .../sdl2-ttf/{sdl2-ttf-2.0.18.ebuild => sdl2-ttf-2.0.18-r1.ebuild}| 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/media-libs/sdl2-ttf/sdl2-ttf-2.0.18.ebuild 
b/media-libs/sdl2-ttf/sdl2-ttf-2.0.18-r1.ebuild
similarity index 90%
rename from media-libs/sdl2-ttf/sdl2-ttf-2.0.18.ebuild
rename to media-libs/sdl2-ttf/sdl2-ttf-2.0.18-r1.ebuild
index 5168ee743f7a..03b5545aa54b 100644
--- a/media-libs/sdl2-ttf/sdl2-ttf-2.0.18.ebuild
+++ b/media-libs/sdl2-ttf/sdl2-ttf-2.0.18-r1.ebuild
@@ -19,9 +19,9 @@ IUSE="+harfbuzz static-libs X"
 # On bumps, check external/ for versions of bundled freetype + harfbuzz
 # to crank up the dep bounds.
 RDEPEND=">=media-libs/libsdl2-2.0.12[${MULTILIB_USEDEP}]
-   >=media-libs/harfbuzz-2.8.0:=[${MULTILIB_USEDEP}]
-   >=media-libs/freetype-2.10.4[${MULTILIB_USEDEP}]
+   >=media-libs/freetype-2.10.4[harfbuzz?,${MULTILIB_USEDEP}]
virtual/opengl[${MULTILIB_USEDEP}]
+   harfbuzz? ( >=media-libs/harfbuzz-2.8.0:=[${MULTILIB_USEDEP}] )
X? ( >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}] )"
 DEPEND="${RDEPEND}"
 BDEPEND="virtual/pkgconfig"



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

2022-01-12 Thread Sam James
commit: 4d6f28d5ffa4c9bd8ae3a4e51d120341225bbdff
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 00:56:54 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 00:56:54 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4d6f28d5

media-libs/sdl2-ttf: describe USE=harfbuzz

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

 media-libs/sdl2-ttf/metadata.xml | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/media-libs/sdl2-ttf/metadata.xml b/media-libs/sdl2-ttf/metadata.xml
index 6197c78e46e1..d09642a95cf8 100644
--- a/media-libs/sdl2-ttf/metadata.xml
+++ b/media-libs/sdl2-ttf/metadata.xml
@@ -12,4 +12,7 @@
example string for a given
TrueType font file.

+   
+   Use media-libs/harfbuzz for 
enhanced font rendering
+   
 



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

2022-01-12 Thread Sam James
commit: 1136cd96c96aaf42799c21949040ad791196
Author: Sam James  gentoo  org>
AuthorDate: Thu Jan 13 00:52:58 2022 +
Commit: Sam James  gentoo  org>
CommitDate: Thu Jan 13 00:54:28 2022 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1136

media-libs/libsdl2: add 2.0.20

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

 media-libs/libsdl2/Manifest  |   1 +
 media-libs/libsdl2/libsdl2-2.0.20.ebuild | 230 +++
 2 files changed, 231 insertions(+)

diff --git a/media-libs/libsdl2/Manifest b/media-libs/libsdl2/Manifest
index f599232c7629..4743e406742c 100644
--- a/media-libs/libsdl2/Manifest
+++ b/media-libs/libsdl2/Manifest
@@ -1 +1,2 @@
 DIST SDL2-2.0.16.tar.gz 7227262 BLAKE2B 
b17c531bc51157c7e64c6ea457342f0707f3f069f0cc096bcd658acc9d70c52416427d9e84bb18f36abe2d6e85095f1704ce6e7bba9e45a9766d78cbe93a5d17
 SHA512 
ec75ef8526792650c2647b78bb0244f973774418aeae33a2182d90ce696b30acb652f8be9c2012a16c1c5d5622f7630ff2e1eadae27ea3dc78ab47730cf5e62f
+DIST SDL2-2.0.20.tar.gz 7207221 BLAKE2B 
03c6d462674aeb90559003e9f4c74f66833e193d2de3f3975f1e1684c5bdccb5c1b3c64c22c822777a63ee218d87fd04ff047b012d8db30a1565dafa34161623
 SHA512 
4889949eaa674948bdb0a01bb2a842a0943b15b08ff27ec0079b0fd4f79d071ffb32488a5a51c12ad7c74ed5fe73b608cdf6336a44c95dae8a0fb3f47d0f01de

diff --git a/media-libs/libsdl2/libsdl2-2.0.20.ebuild 
b/media-libs/libsdl2/libsdl2-2.0.20.ebuild
new file mode 100644
index ..0e22bf102de2
--- /dev/null
+++ b/media-libs/libsdl2/libsdl2-2.0.20.ebuild
@@ -0,0 +1,230 @@
+# Copyright 1999-2022 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+inherit autotools flag-o-matic multilib-minimal
+
+MY_P="SDL2-${PV}"
+DESCRIPTION="Simple Direct Media Layer"
+HOMEPAGE="https://www.libsdl.org/";
+SRC_URI="https://www.libsdl.org/release/${MY_P}.tar.gz";
+
+LICENSE="ZLIB"
+SLOT="0"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~ppc ~ppc64 ~riscv ~sparc ~x86"
+
+IUSE="alsa aqua cpu_flags_ppc_altivec cpu_flags_x86_3dnow cpu_flags_x86_mmx 
cpu_flags_x86_sse cpu_flags_x86_sse2 custom-cflags dbus doc fcitx4 gles1 gles2 
haptic ibus jack +joystick kms libsamplerate nas opengl oss pipewire pulseaudio 
sndio +sound static-libs +threads udev +video video_cards_vc4 vulkan wayland X 
xinerama xscreensaver"
+REQUIRED_USE="
+   alsa? ( sound )
+   fcitx4? ( dbus )
+   gles1? ( video )
+   gles2? ( video )
+   haptic? ( joystick )
+   ibus? ( dbus )
+   jack? ( sound )
+   nas? ( sound )
+   opengl? ( video )
+   pulseaudio? ( sound )
+   sndio? ( sound )
+   vulkan? ( video )
+   wayland? ( gles2 )
+   xinerama? ( X )
+   xscreensaver? ( X )"
+
+CDEPEND="
+   alsa? ( >=media-libs/alsa-lib-1.0.27.2[${MULTILIB_USEDEP}] )
+   dbus? ( >=sys-apps/dbus-1.6.18-r1[${MULTILIB_USEDEP}] )
+   fcitx4? ( app-i18n/fcitx:4 )
+   gles1? ( media-libs/mesa[${MULTILIB_USEDEP},gles1] )
+   gles2? ( >=media-libs/mesa-9.1.6[${MULTILIB_USEDEP},gles2] )
+   ibus? ( app-i18n/ibus )
+   jack? ( virtual/jack[${MULTILIB_USEDEP}] )
+   kms? (
+   >=x11-libs/libdrm-2.4.82[${MULTILIB_USEDEP}]
+   >=media-libs/mesa-9.0.0[${MULTILIB_USEDEP},gbm(+)]
+   )
+   libsamplerate? ( media-libs/libsamplerate[${MULTILIB_USEDEP}] )
+   nas? (
+   >=media-libs/nas-1.9.4[${MULTILIB_USEDEP}]
+   >=x11-libs/libXt-1.1.4[${MULTILIB_USEDEP}]
+   )
+   opengl? (
+   >=virtual/opengl-7.0-r1[${MULTILIB_USEDEP}]
+   >=virtual/glu-9.0-r1[${MULTILIB_USEDEP}]
+   )
+   pipewire? ( media-video/pipewire:=[${MULTILIB_USEDEP}] )
+   pulseaudio? ( >=media-sound/pulseaudio-2.1-r1[${MULTILIB_USEDEP}] )
+   sndio? ( media-sound/sndio:=[${MULTILIB_USEDEP}] )
+   udev? ( >=virtual/libudev-208:=[${MULTILIB_USEDEP}] )
+   wayland? (
+   >=dev-libs/wayland-1.0.6[${MULTILIB_USEDEP}]
+   >=media-libs/mesa-9.1.6[${MULTILIB_USEDEP},egl(+),gles2,wayland]
+   >=x11-libs/libxkbcommon-0.2.0[${MULTILIB_USEDEP}]
+   )
+   X? (
+   >=x11-libs/libX11-1.6.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXcursor-1.1.14[${MULTILIB_USEDEP}]
+   >=x11-libs/libXext-1.3.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXi-1.7.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXrandr-1.4.2[${MULTILIB_USEDEP}]
+   >=x11-libs/libXxf86vm-1.1.3[${MULTILIB_USEDEP}]
+   xinerama? ( >=x11-libs/libXinerama-1.1.3[${MULTILIB_USEDEP}] )
+   xscreensaver? ( 
>=x11-libs/libXScrnSaver-1.2.2-r1[${MULTILIB_USEDEP}] )
+   )"
+RDEPEND="${CDEPEND}
+   vulkan? ( media-libs/vulkan-loader )"
+DEPEND="${CDEPEND}
+   ibus? ( dev-libs/glib:2[${MULTILIB_USEDEP}] )
+   vulkan? ( dev-util/vulkan-headers )
+   X? ( x11-base/xorg-proto )
+"
+BDEPEND="
+   virtual/pkgconfig
+   doc? (
+  

  1   2   3   >