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

2021-08-10 Thread Michał Górny
commit: ae730e183fc92fcdb353437508401b0e38aab95c
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:47:02 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:58:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ae730e18

dev-python/virtualenv: Bump to 20.7.2

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

 dev-python/virtualenv/Manifest |  1 +
 dev-python/virtualenv/virtualenv-20.7.2.ebuild | 97 ++
 2 files changed, 98 insertions(+)

diff --git a/dev-python/virtualenv/Manifest b/dev-python/virtualenv/Manifest
index 90d7c98cd9e..0da5e4b2ef6 100644
--- a/dev-python/virtualenv/Manifest
+++ b/dev-python/virtualenv/Manifest
@@ -2,3 +2,4 @@ DIST virtualenv-20.4.7.tar.gz 10625204 BLAKE2B 
1233ea45f771fb425b99c966904e2c544
 DIST virtualenv-20.6.0.tar.gz 8700762 BLAKE2B 
718bbfda175ab4ef0820ba66b480060c0371c54a3e6c622c816d8c30141951c85b4f461fa03f71912a767b8d6a40733ab253062466e38a4a2e18b3169812e6a1
 SHA512 
7eff570f407a4986336d5a34bdcab1621d953aa6900d41962a85a5a44d7b68d378cda4a1bc1ddbfbc468580e051a98c37be17b0a52babbb00166718a987a591c
 DIST virtualenv-20.7.0.tar.gz 8714219 BLAKE2B 
81b5ee144614a7c854e03599270d03454f991520e8381b98ef01b64e91bb7520a3949e5af9710ceb6292be6b7b7e3738ed7a08324b5ada37f8f4941b408fb425
 SHA512 
af0f993045013814d9397419fc9d789a1ad64dc53818cbeceb5146e418a8535f76b74ed36b4b164d6974660be77de91cda244eb70b810c8c9fb522ba1088813a
 DIST virtualenv-20.7.1.tar.gz 8714303 BLAKE2B 
9ba0714fa842a4d4dc07f8a47536ad95f049c7d4149be7d859af55e6f26aef5d61c80399a8e03de183b7e170ac47eab6bee263c5d3df79eac6a00c63cb368873
 SHA512 
4d0127ef38655c6370c874a99dc3a92f2d1e50428496878e64aaf52a944f54fb6fc8397c1b4943c40c7cd5c19ee93cccfab735f38d3dcc202372e1081f0ea23f
+DIST virtualenv-20.7.2.tar.gz 8715517 BLAKE2B 
306de1bb6e4aa1c888c28161abb33f7016da47a82bba7181687b99127998e82a67e24961610bcbea8a3cad8e7f218e7c76d62de26a74e2bbdf163ab76021bc41
 SHA512 
6ae91a0cd5cd4da000d0175762515b1b9af80e273d56293d9d57b3faf63ff72001c8d1b3326c1f9dfcea8a4a157c1f62332a2a02b84e25ac4bd3850b0d39aebc

diff --git a/dev-python/virtualenv/virtualenv-20.7.2.ebuild 
b/dev-python/virtualenv/virtualenv-20.7.2.ebuild
new file mode 100644
index 000..1c6b72d1601
--- /dev/null
+++ b/dev-python/virtualenv/virtualenv-20.7.2.ebuild
@@ -0,0 +1,97 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} pypy3 )
+DISTUTILS_USE_SETUPTOOLS=manual
+
+inherit distutils-r1
+
+DESCRIPTION="Virtual Python Environment builder"
+HOMEPAGE="
+   https://virtualenv.pypa.io/en/stable/
+   https://pypi.org/project/virtualenv/
+   https://github.com/pypa/virtualenv/
+"
+SRC_URI="mirror://pypi/${PN::1}/${PN}/${P}.tar.gz"
+
+LICENSE="MIT"
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~mips ~ppc ~ppc64 ~riscv ~sparc ~x86"
+SLOT="0"
+
+RDEPEND="
+   >=dev-python/backports-entry_points_selectable-1.0.4[${PYTHON_USEDEP}]
+   >=dev-python/distlib-0.3.1[${PYTHON_USEDEP}]
+   >=dev-python/filelock-3[${PYTHON_USEDEP}]
+   >=dev-python/platformdirs-2[${PYTHON_USEDEP}]
+   >=dev-python/setuptools-41[${PYTHON_USEDEP}]
+   >=dev-python/six-1.9.0[${PYTHON_USEDEP}]
+   $(python_gen_cond_dep '
+   >=dev-python/importlib_metadata-0.12[${PYTHON_USEDEP}]
+   ' pypy3)"
+# coverage is used somehow magically in virtualenv, maybe it actually
+# tests something useful
+BDEPEND="
+   dev-python/setuptools_scm[${PYTHON_USEDEP}]
+   test? (
+   dev-python/coverage[${PYTHON_USEDEP}]
+   dev-python/flaky[${PYTHON_USEDEP}]
+   >=dev-python/pip-20.0.2[${PYTHON_USEDEP}]
+   >=dev-python/pytest-freezegun-0.4.1[${PYTHON_USEDEP}]
+   >=dev-python/pytest-mock-2.0.0[${PYTHON_USEDEP}]
+   >=dev-python/pytest-timeout-1.3.4[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]
+   >=dev-python/packaging-20.0[${PYTHON_USEDEP}]
+   )"
+
+# (unpackaged deps)
+#distutils_enable_sphinx docs \
+#  dev-python/sphinx-argparse \
+#  dev-python/sphinx_rtd_theme \
+#  dev-python/towncrier
+distutils_enable_tests pytest
+
+src_configure() {
+   export SETUPTOOLS_SCM_PRETEND_VERSION=${PV}
+}
+
+python_test() {
+   local deselect=(
+   tests/unit/activation/test_xonsh.py
+   
tests/unit/seed/embed/test_bootstrap_link_via_app_data.py::test_seed_link_via_app_data
+   tests/unit/create/test_creator.py::test_cross_major
+   )
+   [[ ${EPYTHON} == pypy3 ]] && deselect+=(
+   
'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-isolated]'
+   
'tests/unit/create/test_creator.py::test_create_no_seed[root-pypy3-posix-copies-global]'
+   
'tests/unit/create/test_creator.py::test_create_no_seed[venv-pypy3-posix-copies-isolated]'
+   

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

2021-08-10 Thread Michał Górny
commit: 57746ad28e7bc9ef31f75a956e1789305fdcd373
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:50:39 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:58:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57746ad2

dev-python/uvloop: Bump to 0.16.0

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

 dev-python/uvloop/Manifest |  1 +
 dev-python/uvloop/uvloop-0.16.0.ebuild | 63 ++
 2 files changed, 64 insertions(+)

diff --git a/dev-python/uvloop/Manifest b/dev-python/uvloop/Manifest
index 178d45eadd3..a58bf8c47e3 100644
--- a/dev-python/uvloop/Manifest
+++ b/dev-python/uvloop/Manifest
@@ -1,2 +1,3 @@
 DIST uvloop-0.15.2.tar.gz 2092589 BLAKE2B 
05c518ba5854fa22fe72a0224856fa0529af0b9432f366b5b1cb0df09a92c787425713fadb85b151363df28800a94ed2a2ad617aaa1c4e854586e49d16f7dd1c
 SHA512 
e398c7ff85da65344a6ab637e9b2f560e9ba61a3be7a3138d546138949359e30bc2e5f8268f1569b73c3881c66d71cf6298038ca1a883be71a33d7ef86d09eed
 DIST uvloop-0.15.3.tar.gz 2094066 BLAKE2B 
77ae4634ee31211dba13f41aede4480d70271e042a30a1268e9ad18f5de2b296b84931fb6b2022d2351f33521a84264f74cbc30caa5ff84b0f429bc9f1d426a0
 SHA512 
5687371a13509bdac0ef7a5ca0f7c78b54d0d9225cbf68cebc6d4fdf3807c2e3346579f5440eb0ff6578088780cc5efb09fba114da0bc0e60ad3f607d9df652f
+DIST uvloop-0.16.0.tar.gz 2129067 BLAKE2B 
8a5a5c760b1036428483d2cf1f509784aa61cb69388720775c9555bdb0ce19341cb58fc051ab6f92066a3478acf729513dafafd79f31115b064bf1d3660479de
 SHA512 
dd6dcec38f7f94dc0cf0123302fd6fe404428196b452a80a8258a207654e3f67e210233be3d649668c22b48390232d0347706b1d87fb50016287142c742b806d

diff --git a/dev-python/uvloop/uvloop-0.16.0.ebuild 
b/dev-python/uvloop/uvloop-0.16.0.ebuild
new file mode 100644
index 000..ba76221f9f0
--- /dev/null
+++ b/dev-python/uvloop/uvloop-0.16.0.ebuild
@@ -0,0 +1,63 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Ultra-fast implementation of asyncio event loop on top of libuv"
+HOMEPAGE="https://github.com/magicstack/uvloop;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~ppc ~ppc64 -riscv ~sparc"
+LICENSE="MIT"
+SLOT="0"
+IUSE="doc examples"
+
+RDEPEND=">=dev-libs/libuv-1.11.0:="
+DEPEND="${RDEPEND}"
+BDEPEND="
+   dev-python/cython[${PYTHON_USEDEP}]
+   doc? (
+   >=dev-python/alabaster-0.6.2[${PYTHON_USEDEP}]
+   dev-python/sphinx[${PYTHON_USEDEP}]
+   )
+   test? (
+   dev-python/aiohttp[${PYTHON_USEDEP}]
+   dev-python/pyopenssl[${PYTHON_USEDEP}]
+   dev-python/psutil[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests setup.py
+
+PATCHES=(
+   "${FILESDIR}"/uvloop-0.15.3-uint64-thread-id.patch
+)
+
+python_prepare_all() {
+   cat <<-EOF >> setup.cfg || die
+   [build_ext]
+   use_system_libuv=1
+   EOF
+
+   # flake8 only
+   rm tests/test_sourcecode.py || die
+   # TODO: broken by cythonize
+   rm tests/test_cython.py || die
+   # force cythonization
+   rm uvloop/loop.c || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_compile_all() {
+   use doc && esetup.py build_ext --inplace build_sphinx
+}
+
+python_install_all() {
+   use examples && dodoc -r examples
+   use doc && local HTML_DOCS=( "${BUILD_DIR}/sphinx/html/." )
+   distutils-r1_python_install_all
+}



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

2021-08-10 Thread Michał Górny
commit: 0d7ded38ffa9bfdc5af1b0e48e6c7c5bbdf65344
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:46:08 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:58:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0d7ded38

dev-python/websocket-client: Bump to 1.2.0

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

 dev-python/websocket-client/Manifest   |  1 +
 .../websocket-client/websocket-client-1.2.0.ebuild | 31 ++
 2 files changed, 32 insertions(+)

diff --git a/dev-python/websocket-client/Manifest 
b/dev-python/websocket-client/Manifest
index fec59476fc4..c0c14e81cf3 100644
--- a/dev-python/websocket-client/Manifest
+++ b/dev-python/websocket-client/Manifest
@@ -1,2 +1,3 @@
 DIST websocket-client-1.1.0.tar.gz 58890 BLAKE2B 
b7557f0847ee4ec31279d98661f2370f32eff35de5ea6207abe4afa6ef7314258da275d823487773722ac717888ca629284ef92870b5880fb385f7fb677506d6
 SHA512 
6f4b963455bdb6a0e0defff92a6b898ee4bdf605c18fef7e25e18e2c72a2ae360d760c2069a0ed330e5dc0f3347f16a9129c405d5c98cd2d56014f8636e7d5b5
 DIST websocket-client-1.1.1.tar.gz 59092 BLAKE2B 
c71e16e427584434781fe407f3185ccfc9fed3e638ef7374752584e35623f56c082ab7a4e7ae01038025e0435b24b567bb9a2abe4da50800f421930c982e4b39
 SHA512 
f4ed98180910068415ed3b66b70091491d6b11098c32abd9bfc0f8e0d4cb5a25df096c9437fb59c66bacff66440f9422b3f67bf43af746019d74b17d7bcba474
+DIST websocket-client-1.2.0.tar.gz 45789 BLAKE2B 
9e6309d8abeff80002a48abf2d0cc25a94b350d0bfbb82796876b932ea173e2c34a325a686f1c89bc3c55da9afe17fa884a194a6294a20d20e01f5f6f6536e54
 SHA512 
a253462aa5b22ee07e47827f29b660d72a6b0986f785c07266acb4f6d226394dacea6557e330f76cd3ce9f2753557ed10b2767b90877b731f52ed27a6de5ab70

diff --git a/dev-python/websocket-client/websocket-client-1.2.0.ebuild 
b/dev-python/websocket-client/websocket-client-1.2.0.ebuild
new file mode 100644
index 000..a0de1e2f73a
--- /dev/null
+++ b/dev-python/websocket-client/websocket-client-1.2.0.ebuild
@@ -0,0 +1,31 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( pypy3 python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="WebSocket client for python with hybi13 support"
+HOMEPAGE="https://github.com/websocket-client/websocket-client;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+IUSE="examples"
+
+BDEPEND="
+   test? (
+   dev-python/python-socks[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests unittest
+
+python_install_all() {
+   if use examples; then
+   docompress -x "/usr/share/doc/${PF}/examples"
+   dodoc -r examples
+   fi
+   distutils-r1_python_install_all
+}



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

2021-08-10 Thread Hans de Graaff
commit: 3bf930fbbf4add926e8a424cff5bba56036d43f6
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug 11 05:45:34 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug 11 05:45:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3bf930fb

app-crypt/xca: fix openssl requirement

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

 app-crypt/xca/xca-2.4.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-crypt/xca/xca-2.4.0.ebuild b/app-crypt/xca/xca-2.4.0.ebuild
index 5ff936d0ae0..f81c1ce1a31 100644
--- a/app-crypt/xca/xca-2.4.0.ebuild
+++ b/app-crypt/xca/xca-2.4.0.ebuild
@@ -19,7 +19,7 @@ RDEPEND="
dev-qt/qtgui:5
dev-qt/qtsql:5[sqlite]
dev-qt/qtwidgets:5
-   dev-libs/openssl:0=[bindist(-)=]
+   >=dev-libs/openssl-1.1.0:0=[bindist(-)=]
doc? ( app-text/linuxdoc-tools )"
 DEPEND="${RDEPEND}
dev-qt/linguist-tools:5"



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

2021-08-10 Thread Hans de Graaff
commit: c1b47ad8819f31fd28cb36df2d908ee546e4ea80
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug 11 05:44:13 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug 11 05:44:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c1b47ad8

app-crypt/xca: add 2.4.0

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

 app-crypt/xca/Manifest |  1 +
 app-crypt/xca/files/xca-2.4.0-bug-733000.patch | 29 +++
 app-crypt/xca/xca-2.4.0.ebuild | 70 ++
 3 files changed, 100 insertions(+)

diff --git a/app-crypt/xca/Manifest b/app-crypt/xca/Manifest
index d08bc8bc9be..cb4d7db3c7a 100644
--- a/app-crypt/xca/Manifest
+++ b/app-crypt/xca/Manifest
@@ -1,2 +1,3 @@
 DIST xca-2.1.2.tar.gz 1086563 BLAKE2B 
d48727fffad16d840633af6e0ee38a279978a5b865eb6f391a3d852a0105817254ea0a4780875f2956e1f7e9931e6930c6ffbe82b117dbf8ad0058ec9d6f5c88
 SHA512 
1f104a22b83b802576b4820b7139971da50f9b3dd70aca8e1199e996bad4379b8681bb31b197b84a3dfa49cef4ae093f6622d15fac9667547ff47af43c1e5f07
 DIST xca-2.3.0.tar.gz 1354154 BLAKE2B 
31a4ac96819e8d2f7e5f623cc343f0cbff18c931ed0699dbe093dcb963c3431a3943c4dcd8f3d727896104c05a565d062b9678169bf2a8d3f7cf7748c311b53b
 SHA512 
35522aa308e1022a739f3255f13fcf63f481000f9b7411027a009a185e33ddceeb5cf9b55406a4899d2393c7e5ace10354ff24b3b2b0c3045d110f679756b0b8
+DIST xca-2.4.0.tar.gz 1778572 BLAKE2B 
2e90ef264dc53019cc37700b37d5eb0c48904ca371ae1ce0cfe2ad61be8765951ea918d356c1f2764e73d846693a66c903cba1381df5d1a588aae8bb45f8c195
 SHA512 
e93e2cf9dc48ed43ee9b51e977f825d81ff08835eb4d77fcbe8f9dc8ce31c77c1da879b48c25ab535717542d1fe84faa6e46c410c116edbee02072040c59667c

diff --git a/app-crypt/xca/files/xca-2.4.0-bug-733000.patch 
b/app-crypt/xca/files/xca-2.4.0-bug-733000.patch
new file mode 100644
index 000..0863c906957
--- /dev/null
+++ b/app-crypt/xca/files/xca-2.4.0-bug-733000.patch
@@ -0,0 +1,29 @@
+--- a/doc/Makefile 2021-05-07 22:40:29.0 +0200
 b/doc/Makefile 2021-08-11 07:29:33.794844656 +0200
+@@ -12,16 +12,12 @@
+ 
+ SPHINX_FILES=$(patsubst %,sphinx/%.rst,$(RST_FILES))
+ 
+-.build-stamp doc: xca.1.gz html/index.html qthelp/xca.qhc
++.build-stamp doc: xca.1 html/index.html qthelp/xca.qhc
+ qthelpfiles=qthelp/*.html qthelp/xca.qhc qthelp/xca.qch
+ .install-stamp: doc
+ 
+ include $(TOPDIR)/Rules.mak
+ 
+-%.1.gz: %.1
+-  @$(PRINT) "  MAN[$(BASENAME)] $@"
+-  gzip -9 <$^ >$@
+-
+ xca.1: xca.1.head xca.1.options xca.1.tail
+   cat $^ > $@
+ 
+@@ -43,7 +39,7 @@
+   $(ENABLE_DOC)install -m 755 -d $(DESTDIR)$(htmldir)
+   $(ENABLE_DOC)install -m 644 $(qthelpfiles) $(DESTDIR)$(htmldir)
+   install -m 755 -d $(DESTDIR)$(mandir)/man1
+-  install -m 644 *.1.gz $(DESTDIR)/$(mandir)/man1
++  install -m 644 *.1 $(DESTDIR)/$(mandir)/man1
+ 
+ app: $(doc)
+   mkdir -p $(APPDIR)/Resources

diff --git a/app-crypt/xca/xca-2.4.0.ebuild b/app-crypt/xca/xca-2.4.0.ebuild
new file mode 100644
index 000..5ff936d0ae0
--- /dev/null
+++ b/app-crypt/xca/xca-2.4.0.ebuild
@@ -0,0 +1,70 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="8"
+
+inherit xdg-utils
+
+DESCRIPTION="A GUI to OpenSSL, RSA public keys, certificates, signing requests 
etc"
+HOMEPAGE="https://hohnstaedt.de/xca/;
+SRC_URI="https://github.com/chris2511/${PN}/releases/download/RELEASE.${PV}/${P}.tar.gz;
+
+LICENSE="BSD"
+SLOT="0"
+KEYWORDS="~amd64 ~ppc ~x86 ~amd64-linux ~x86-linux ~ppc-macos"
+IUSE="bindist doc"
+
+RDEPEND="
+   dev-libs/libltdl:0=
+   dev-qt/qtgui:5
+   dev-qt/qtsql:5[sqlite]
+   dev-qt/qtwidgets:5
+   dev-libs/openssl:0=[bindist(-)=]
+   doc? ( app-text/linuxdoc-tools )"
+DEPEND="${RDEPEND}
+   dev-qt/linguist-tools:5"
+
+PATCHES=(
+   "${FILESDIR}/${PN}-1.0.0-desktop.patch"
+   "${FILESDIR}/${P}-bug-733000.patch"
+)
+
+src_configure() {
+   econf \
+   --with-qt-version=5 \
+   $(use_enable doc) \
+   STRIP=true
+}
+
+src_prepare() {
+   sed '/^CFLAGS/s@-O2 -ggdb@@' -i Local.mak.in || die
+   default
+}
+
+src_compile() {
+   # enforce all to avoid the automatic silent rules
+   emake all
+}
+
+src_install() {
+   default
+
+   insinto /etc/xca
+   doins misc/*.txt
+
+   ewarn "Make a backup copy of your database!"
+   ewarn "Version 2 completely changes the database format to SQL(ite)"
+   ewarn "Don't try to open it with older versions of XCA (< 1.4.0). They 
will corrupt the database."
+}
+
+pkg_postinst() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}
+
+pkg_postrm() {
+   xdg_icon_cache_update
+   xdg_desktop_database_update
+   xdg_mimeinfo_database_update
+}



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

2021-08-10 Thread Hans de Graaff
commit: 1b2b81af6948ac98bc25ea88ea98322c74fc666b
Author: Hans de Graaff  gentoo  org>
AuthorDate: Wed Aug 11 05:23:20 2021 +
Commit: Hans de Graaff  gentoo  org>
CommitDate: Wed Aug 11 05:44:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1b2b81af

app-crypt/xca: become maintainer

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

 app-crypt/xca/metadata.xml | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app-crypt/xca/metadata.xml b/app-crypt/xca/metadata.xml
index 33bb01cf638..99cd99e0f28 100644
--- a/app-crypt/xca/metadata.xml
+++ b/app-crypt/xca/metadata.xml
@@ -1,7 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
+   
+   gra...@gentoo.org
+   
 
 chris2511/xca
 



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

2021-08-10 Thread Michał Górny
commit: 0e447a4b2379ea27ce0dd7a29c559493bca870ec
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:15:40 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:15:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0e447a4b

dev-python/boto3: Bump to 1.18.18

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

 dev-python/boto3/Manifest |  1 +
 dev-python/boto3/boto3-1.18.18.ebuild | 57 +++
 2 files changed, 58 insertions(+)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index ad711e5ac6e..16c76365305 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -10,6 +10,7 @@ DIST boto3-1.18.14.tar.gz 400263 BLAKE2B 
827cf91c151ec03c6bca44967b8b94a5a4f9351
 DIST boto3-1.18.15.tar.gz 400374 BLAKE2B 
2170319480578b9ac7b6c0da9e9a2f256ce907b8e53bc626bf26fd65f3336ec1974d6dd1917f601fe139e859f144fafd198b2578ffb9097508f09dd40cf82313
 SHA512 
f330d8249c9f5749770ba5809f3a4fb524f23fc0545b24182023a3b74f815608bdb9986b434d972a017aa7786b1319705e8702b041174275f84a0266bdb7b857
 DIST boto3-1.18.16.tar.gz 400837 BLAKE2B 
fd3f8118adb4bf83484d084e3d1d5fd3b593dce2a394e6bea35196823cb31e4ecb8649840a2c214aabf245db60cd9974cdb85ab2e79fd103a576d7a9e39f5a8b
 SHA512 
3c967e0d2ccc47e83d47fa84c3ef88f9672d57f9a5d314ec8b7047887ca1bec17a8960ddf3e2ac4db38f947e7432449027cfc4dce3441617b4f18c92734d7b70
 DIST boto3-1.18.17.tar.gz 401136 BLAKE2B 
5b14b44c525ac01be511c41ad3e4d49a0cf89229e5212789e2f6e3d8d61add7ae60df391a64c1ae69cda8e8065b80d405be586655b053d6e860a5ba28e951c0d
 SHA512 
cd3659ec5484a7340c351838932786e2befab6f3be203db94fe3af195a50c757564aad966e37888f8bce14a58151c24fee114881cd9cad44567da95e9b574e8c
+DIST boto3-1.18.18.tar.gz 401335 BLAKE2B 
c5bdccfe065444d726a7115042de4bb4294905da589fe31e7576f99ad53e4c4eea5940909ee39adf2f2dc4457dc049ef5905d2b252339cf00fc772506b0f
 SHA512 
201c97c8c7d5fb7d4dffe050d7dba38a5b9188729be8ca3094f266e42ef3568dec198df24525bf26ea19560657100d63a32fd914917ec55ade6da42f1973bf5d
 DIST boto3-1.18.2.tar.gz 393528 BLAKE2B 
20424f9a8ff013d1d9724f741ad6754747de504fb961688f433eba74ce1d6df7e95d68c45be1e87df1532f99b2fa4d7e8b00671a8ae9a378a4df74764924cdaa
 SHA512 
287a1f24f62fa83fd944632799540257b2f8d6cf3b5d6add57be60e4f49dafd685bb4fcceef37fe907edba00a7f2285d92bd8d381b03e45ac794b22fdcfe8783
 DIST boto3-1.18.3.tar.gz 393645 BLAKE2B 
4967ac751e9ff5a86f6f571961df31d82f6012ade28aa19a038399077bf5a1b968dfa1172995423890b79a2ede54e2c6f6c1937e8ccf21010f17a4d96928df62
 SHA512 
f9c42257f0925fffaeb1a36e4731dc54fee1836c249617444292991d043dbb9b58472f73a806981c9763b569cc7402b378f6e1e0102fe0f995a7754807f19b38
 DIST boto3-1.18.4.tar.gz 394442 BLAKE2B 
e82726143b353b843e915ea78ea2e033077ee495b1d416866f5c231f8bd864372496736d266b2b848ed8afd3134bd865c507291fd2fbdd5cae00a92ce3c5e76d
 SHA512 
b3ba1328476a1c642c6b813afc3879e904bc14da69e062156df0405b3da6d2a15a4a40602f24d0a067a83cc441ce5a5e353dacb84869b0fe24e9984c0dec719f

diff --git a/dev-python/boto3/boto3-1.18.18.ebuild 
b/dev-python/boto3/boto3-1.18.18.ebuild
new file mode 100644
index 000..819e7369111
--- /dev/null
+++ b/dev-python/boto3/boto3-1.18.18.ebuild
@@ -0,0 +1,57 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="The AWS SDK for Python"
+HOMEPAGE="https://github.com/boto/boto3;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/boto3;
+   inherit git-r3
+   BOTOCORE_PV=${PV}
+else
+   SRC_URI="https://github.com/boto/${PN}/archive/${PV}.tar.gz -> 
${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+
+   # botocore is x.(y+3).z
+   BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 3)).$(ver_cut 3-)"
+fi
+
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   >=dev-python/jmespath-0.7.1[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.3.0[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+python_prepare_all() {
+   # don't lock versions to narrow ranges
+   sed -e '/botocore/ d' \
+   -e '/jmespath/ d' \
+   -e '/s3transfer/ d' \
+   -i setup.py || die
+
+   # prevent an infinite loop
+   rm tests/functional/docs/test_smoke.py || die
+
+   distutils-r1_python_prepare_all
+}
+
+python_test() {
+   nosetests -v tests/unit/ tests/functional/ ||
+   die "test failed under ${EPYTHON}"
+}



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

2021-08-10 Thread Michał Górny
commit: 2f30ae60afa1e2a79d3658751238b204f7589800
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:39:39 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:39:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2f30ae60

dev-python/boto3: Remove old

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

 dev-python/boto3/Manifest | 16 --
 dev-python/boto3/boto3-1.18.0.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.1.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.10.ebuild | 57 ---
 dev-python/boto3/boto3-1.18.11.ebuild | 57 ---
 dev-python/boto3/boto3-1.18.12.ebuild | 57 ---
 dev-python/boto3/boto3-1.18.13.ebuild | 57 ---
 dev-python/boto3/boto3-1.18.14.ebuild | 57 ---
 dev-python/boto3/boto3-1.18.16.ebuild | 57 ---
 dev-python/boto3/boto3-1.18.17.ebuild | 57 ---
 dev-python/boto3/boto3-1.18.2.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.3.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.4.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.5.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.6.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.8.ebuild  | 57 ---
 dev-python/boto3/boto3-1.18.9.ebuild  | 57 ---
 17 files changed, 928 deletions(-)

diff --git a/dev-python/boto3/Manifest b/dev-python/boto3/Manifest
index 16c76365305..b584a0c15a0 100644
--- a/dev-python/boto3/Manifest
+++ b/dev-python/boto3/Manifest
@@ -1,21 +1,5 @@
 DIST boto3-1.17.104.tar.gz 387800 BLAKE2B 
928824ab0a0c091fec430c5d86b0c5663f2a98042a76311588463f36f48a6bd9641fd25e07b63ad50afcb3ea9bfea0b5f3304e3c2689a2187198aac04549346c
 SHA512 
477033e623476fa1e2e49cdb788f204ac49230088788cbae3f079de4561e7bbe56bb3b170480592a0ce056fcd2ea0cb3f14b4f5091279f46346465853a191829
 DIST boto3-1.17.112.tar.gz 391748 BLAKE2B 
071eddfe134face48b86985ccd0171e0d8994fc65cd75e26945dfcab29566f42aa965c82b736cc7dd821a920e6903e4c45917af1759214606c2448b46c528cff
 SHA512 
dcee3f4e2dfaf8fcc82ca938a72d654ced7a44f32e3dab43a225d8dcf0b3d20f0699770cfcd8ede840f792d37e124597d096322b88ce54c2e27e109da6e7
-DIST boto3-1.18.0.tar.gz 392345 BLAKE2B 
8d464e038892cd77d7b171c27f41eee31c630ebcadce6677f76ccc270f3f8471d7a8443d174ce1b6ea5cdcfe98973faa42ddda4123ec21d225464515bdcd862d
 SHA512 
ba5af17ae6705bfdea4a9d6bccb18d3f1593980d594be4dbb3049123089ba7d8ecaaed685d8a3181ae50e95b537e7a50fed3be694b4f61d3ba250693ae249f4d
-DIST boto3-1.18.1.tar.gz 392759 BLAKE2B 
bfa0bcfba9a413fbb13b2698f3ef2461cac99a9fddea0fe16d790a0ddab60fcd46b13ac4026536b9f89fb65ff703d61a4f01499423aa54289f17fc0f035ea2d6
 SHA512 
1aca424ff105fe2049c94aeaff306a683dd4eb9ac9b88303ff4857f53ddb4d3f267ef69119f8cbdb8463ab12331b2d89149fd0b10ccd23c4fde9485e63ba0005
-DIST boto3-1.18.10.tar.gz 398199 BLAKE2B 
950b40afd867a8df9f8154e35572f3302c03c686d3299aac100ffd18a82c9e9a6657a4910f89f385dfb742c32e315110fc61bf00d2dc14892c4051eef5c642c8
 SHA512 
0391faf993faf8f4cc28e309f3267acc1beb38229f633f4c409820d45e968b1a93a7c74798ee84aebcd29b4547c9f301decd451e89b65a34297f796e1f839826
-DIST boto3-1.18.11.tar.gz 398542 BLAKE2B 
cecccf462510a6deb55308ea4156ae081d2357480e5d8c160797032c62554ac708f37b38e1cbe26a18e2087a268b392a145d0733400a86e4fca19a5416700ad8
 SHA512 
63cbea62fcd71fee1c53219f6016fe38bd08afdef0c27d918bd078d04803d14ddd4782c0182e304542314df4bcf081d802d1f581b25ccae3327c4df80e40dabe
-DIST boto3-1.18.12.tar.gz 398935 BLAKE2B 
87f8627459908e4ff4bfde7ca7d325a355635c8e7c77cee515d30a443bfaba8474e3637e8facd8fd8c2faab272e6526df92e96c59db4901bd3be44fce24d
 SHA512 
bef678df9f073bb56152e8e56b4341e40aa98120ded26d1794d3e91382a994929150a06eee543d5397f065e66a9dad192b1a30e89f9d430f8a305a6d1e5a99b9
-DIST boto3-1.18.13.tar.gz 399893 BLAKE2B 
3c3e79e2a8ea41a6bf88a2e73926d6e61c9844fe0d373126611e3023d98d9e6a64cf7b537726260ae70fd78fea32f19127d59ddac5d48489be231bfb2a51b693
 SHA512 
14987a472d5dd7eb254fa4fd4e931b43f36afc57b40676c0c2c2400bb24d7a31892d317b2da6d618311b5df91ee4a5c6cd4974ecf90971540c41b4d9632533ff
-DIST boto3-1.18.14.tar.gz 400263 BLAKE2B 
827cf91c151ec03c6bca44967b8b94a5a4f93510ddae67b74dfe17fa800d02d2b139f3a0ecf6958ce24350345dd1f6da3c8dd69d7a5b504fbe79a9e8b587a3c2
 SHA512 
c3c338868ce50976deea02b308d8f9afecfbeac725319b4379391af1f85a6665de2cb59b2cb19a05520f1ff09d5c31bdc06525bd05e5bd2fa499641c4308b240
 DIST boto3-1.18.15.tar.gz 400374 BLAKE2B 
2170319480578b9ac7b6c0da9e9a2f256ce907b8e53bc626bf26fd65f3336ec1974d6dd1917f601fe139e859f144fafd198b2578ffb9097508f09dd40cf82313
 SHA512 

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

2021-08-10 Thread Michał Górny
commit: 1c989a20fd7c863d01f495e23fd3c0c6206176f9
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:38:50 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:38:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1c989a20

app-admin/awscli: Remove old

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

 app-admin/awscli/Manifest  | 16 --
 app-admin/awscli/awscli-1.20.0.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.1.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.10.ebuild | 58 --
 app-admin/awscli/awscli-1.20.11.ebuild | 58 --
 app-admin/awscli/awscli-1.20.12.ebuild | 58 --
 app-admin/awscli/awscli-1.20.13.ebuild | 58 --
 app-admin/awscli/awscli-1.20.14.ebuild | 58 --
 app-admin/awscli/awscli-1.20.16.ebuild | 58 --
 app-admin/awscli/awscli-1.20.17.ebuild | 58 --
 app-admin/awscli/awscli-1.20.2.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.3.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.4.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.5.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.6.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.8.ebuild  | 58 --
 app-admin/awscli/awscli-1.20.9.ebuild  | 58 --
 17 files changed, 944 deletions(-)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index d2ef4b1e912..47ac90d22c4 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -1,21 +1,5 @@
 DIST awscli-1.19.104.tar.gz 2024567 BLAKE2B 
82662ffe6a05dd329210ff84962e1ad37ece63a8f964c3c6bb293f53fea3af151bb088150260b3b279730871b7e962f2c580385b21a56a8bc2f86b437fab92d4
 SHA512 
444e533219e23b5151bab29d2d65deb8de9008b883b08ae553dd322b3f4e96d3836fedabc7be0393303ea146a0b8ad8220d4f4de458bca00303dc0798e543840
 DIST awscli-1.19.112.tar.gz 2028010 BLAKE2B 
c5f973a2a0cf002038cdc46d0760f5e5fad942b1383f21819459d51fd3e3a17617e23d45d284345fac1760a812ffc81842068e8517bb500559a330ea8183968e
 SHA512 
4ad9e960826baa057a2e72ddc2afce1012b766b5f691236435347c3e4ce210ee0b14003c16615262ec707d0c65b7f7f71a15fcf80a0fdfefb21ab6a28cfb1d55
-DIST awscli-1.20.0.tar.gz 2028152 BLAKE2B 
d746335fc3414e773fbf3cb60b68ea1242162c7fb6f9e8222bec1bff992ec08e7239b9279de70551d05a99b2bd2743e8e2b8f65e01655574a542660fbb4a6ad7
 SHA512 
0aa478e9c28afa922958881f2f7795c6925e342964fb171176c81bce1fc4a0529dc9eb2fefaa05b670376781671e1531bbfe5114d0f0a748c964c5ace2c79ee4
-DIST awscli-1.20.1.tar.gz 2028927 BLAKE2B 
bd535f1eba64987c8389c8003b90a1361e95db00a62f13138b35d0f4b6a5130b2e52e38663f4560bf58fe6b86e668ee142a0228001d8cde583d096ce81612264
 SHA512 
b704ff3f482dd2ccfdf78d01ccff214c9cb9f7b12b1af0a7c615b9567a931a8bc47a444dd8f136a958346750a60fb03a084993a7deb0c234448a9889918c97e6
-DIST awscli-1.20.10.tar.gz 2047053 BLAKE2B 
1ad45d2703e82c2be1a2847c2312d7199ef55aa7df33568be890c6ce72e03e05cddafeb1cce5c76a5f363bd397f744f1c229fbd5ea518fc53d24f2711e628207
 SHA512 
9c56ccc0191b319aa7035bce72da9cf1f9e97c9600a202e706244a5eaff419f305c7d68dbcbc96bb622b219efcd56ad6691b149fbf3daf036ebf627987b306f5
-DIST awscli-1.20.11.tar.gz 2047295 BLAKE2B 
d27c2fa2c1f665fe8f691e6d7ddd19a52b0f28e3d648f96f78e5b7f8c58f06252c99e49e739f45e8e70b126d5d3fbcf7f08fb54f837c47c2d3708152496435ec
 SHA512 
d4ae3becbc9fdd863396504c43e4c683827706a7016e73fbd5e412cb8654ec5a3c0e10ee2c4d90455dd5427cfd73fe183d723f43030e4e35916389313dad06d8
-DIST awscli-1.20.12.tar.gz 2047696 BLAKE2B 
d65157579f088e00b7fcb08fd73a5ab9e3ea2bcd7fe4e80734865a4185cb7f7299d9d74f6f59d8bc41e9f4aa71c0f1eda73282fc5e1804c2eb3dcee7f0fcb1a9
 SHA512 
1d5584586a0fa8c47aaf3ee7bff5af320138e7c25ba605fd4b4a4de498ae795ad822ba3079c68ea2ed0cc57f6fbe696f55110ff979c347b2a5e14f8bb9fca4b7
-DIST awscli-1.20.13.tar.gz 2048380 BLAKE2B 
5c469b2b41f7e7aa55f98e4d566f2659cb4a68b18d0e2acba3485ef4622b5763cbe324b1c2e6ef679f7968c2b8ca43aa29d8619fba612bba69cf7f9e7229ee6e
 SHA512 
3e569d14fb34d9ee833c7bfbd83a303b8f95d4b84a1ff8e503063ecc3f434bc5a5e59c6bbfca5134be1c76f06796fde4a9e9647af881bc5f02268c8c90971289
-DIST awscli-1.20.14.tar.gz 2049156 BLAKE2B 
2eed59fbbd11918451d64c76c58838c9d599eee042450211ed88bd25210a32337cd0766dfa1173bc2ae6e1f88f6cbe4995c54ca979b0b068b3b1dd312236de5a
 SHA512 
f12aa5805fcdf5e958c4bb0c1320c412656711255932ff6cbf9ab7c14b85792f04a02bbb1911346fed0508ddfd3e7b5e3b731317921e3545e0e14bfe9b9c7ce7
 DIST awscli-1.20.15.tar.gz 2048948 BLAKE2B 
e7d378c9cb1752f4b7e014578d07fdc5f7bd9c14dc5fa33328a29c8fb9c9fab27f404dbfeea5952c243aeb35b0800c7840303d5f1339512d74cee2e4a5d590a1
 SHA512 

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

2021-08-10 Thread Michał Górny
commit: 872a277e9955ce5cdcb5b74103ed6c53b66a131e
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:15:31 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:15:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=872a277e

dev-python/botocore: Bump to 1.21.18

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

 dev-python/botocore/Manifest|  1 +
 dev-python/botocore/botocore-1.21.18.ebuild | 59 +
 2 files changed, 60 insertions(+)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 299bb673a23..97a4edff1ff 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -10,6 +10,7 @@ DIST botocore-1.21.14.tar.gz 8014362 BLAKE2B 
c201724fd1eae1a9f84e81ff9d23b27eaf7
 DIST botocore-1.21.15.tar.gz 8012673 BLAKE2B 
cdd2b4128e67c85879e85f61265b10c1e5765eebf65333059af56a6a5b1d650a7612c4b569afde2396704015294e74b717c35d49c3e08396b2c603b7d47c632b
 SHA512 
a5916ffa64568b2040d6f76571d9d716d50339fdaaed61f4ff7be92a5dac2c3f967280330fcbd3d6c2e1c1faf7bd6012ce75dd66ff26fde9d830d334a9d7c45a
 DIST botocore-1.21.16.tar.gz 8029528 BLAKE2B 
2253072ebd31cf879fdd329bda82a6fe9698d7aeaf63be23f8c606f4082c09eeae091e7e2b4c62d8663a15bf8958140fcd9afdd4c40f7dece98d05ba8fe8a3c3
 SHA512 
a5f05204b7a3879689549d88ea964d0405516e285910d668451209cc81c72b850c7e65c1359f5df8bbddd094bed6ff22edcf1bb1927866cfa267114366f8bd69
 DIST botocore-1.21.17.tar.gz 8036012 BLAKE2B 
9670d59ba0a9f73d031d31abd90c7c9d1e723a83f2016e59b028576fc9a5679bfb65aa7ef4c7d19cff3b5e21202597b146bfdcb6e51f822dac8c94518e330121
 SHA512 
e88ba8ef38ec781f402c7ff58ffa3b7348b8072d74a1c11ee777139233b0637e07923becf5e8790c38056983ea095b4214dcb4254c53944bea13079ada319504
+DIST botocore-1.21.18.tar.gz 8034404 BLAKE2B 
f28cd392a0ca34bc5baa6316bcc9b040ab7cf429c6b16b1c9cb832d310640a75df21ac22634a565d91eeefcb1476f50487e2e80b52cfbfca1cdb9683e76d801f
 SHA512 
485e3d293684659731061592082582678035ad657fe47cacd9f7608cf09d801bfd73951a3c0de77c65a79e6070638f0b3dddfa357d7f0ddbb773c70334b214b8
 DIST botocore-1.21.2.tar.gz 7960118 BLAKE2B 
11d2845e1846c03591625a95b21ff6fe1acb1448414a5f09de1d427614e927d974fafe5dd5d4f195aeb2f3b86d60822a8c73f1bc532bb45c85be8421f92eedc3
 SHA512 
501f059518026bef10fe933d20a3348b4140cff9ef1af38e17552aea8698179135f5271604e988f53c215e3a13158d7784a49a6b56c0d4db591f99dac9c57ca8
 DIST botocore-1.21.3.tar.gz 7959023 BLAKE2B 
aab15319b9f36c25ee88f2bf0b2efcb6bbffeac1b4e38dcbdfde3a947f702016e77b66c4b125ca2b63614223109fd793da68f9ce1b1d14476cdd6a3fcb10dfce
 SHA512 
5a8ce8f612fd0e1c68a75223dda95673f72159b02a040d1a71920b7e75b3aa9d14589c33a52970182970a353308954e8cd6d5f97d374e0e2ee2cd40e0dce786e
 DIST botocore-1.21.4.tar.gz 7964960 BLAKE2B 
71d55b47633aa658a9dc921375c77230a6ebb89460d9de5a9982d730e03247972476400dbcf292da0a885789860117c1abc9bf803c79547049b242feb8755d15
 SHA512 
4a36e5870d9996973e2258f2e6afeb7381ac94d14075eaa9885f6f89afb87fa5b4461b02ab234b4ecc8e24630434dbb839e8ad30f622de6ffa5402f872f84a97

diff --git a/dev-python/botocore/botocore-1.21.18.ebuild 
b/dev-python/botocore/botocore-1.21.18.ebuild
new file mode 100644
index 000..30e0988848a
--- /dev/null
+++ b/dev-python/botocore/botocore-1.21.18.ebuild
@@ -0,0 +1,59 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Low-level, data-driven core of boto 3"
+HOMEPAGE="https://github.com/boto/botocore;
+LICENSE="Apache-2.0"
+SLOT="0"
+
+if [[ "${PV}" == "" ]]; then
+   EGIT_REPO_URI="https://github.com/boto/botocore;
+   inherit git-r3
+else
+   SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+   KEYWORDS="~amd64 ~arm ~arm64 ~ppc ~ppc64 ~sparc ~x86 ~amd64-linux 
~x86-linux"
+fi
+
+RDEPEND="
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/jmespath[${PYTHON_USEDEP}]
+   dev-python/python-dateutil[${PYTHON_USEDEP}]
+   >=dev-python/urllib3-1.25.4[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   dev-python/jsonschema[${PYTHON_USEDEP}]
+   )
+"
+
+PATCHES=(
+   "${FILESDIR}/1.8.6-tests-pass-all-env-vars-to-cmd-runner.patch"
+)
+
+distutils_enable_sphinx docs/source \
+   'dev-python/guzzle_sphinx_theme'
+distutils_enable_tests nose
+
+src_prepare() {
+   # unpin deps
+   sed -i -e "s:>=.*':':" setup.py || die
+   # very unstable
+   sed -i -e 's:test_stress_test_token_bucket:_&:' \
+   tests/functional/retries/test_bucket.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   # note: suites need to be run separately as one of the unit tests
+   # seems to be leaking mocks and breaking a few functional tests
+   nosetests -v tests/unit ||
+   die "unit tests failed under ${EPYTHON}"
+   nosetests -v tests/functional ||
+   die "functional tests 

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

2021-08-10 Thread Michał Górny
commit: 86c3edae9ccd53d7def6e66e0639d87af7531cf4
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:40:02 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:40:02 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=86c3edae

dev-python/botocore: Remove old

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

 dev-python/botocore/Manifest| 16 
 dev-python/botocore/botocore-1.21.0.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.1.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.10.ebuild | 59 -
 dev-python/botocore/botocore-1.21.11.ebuild | 59 -
 dev-python/botocore/botocore-1.21.12.ebuild | 59 -
 dev-python/botocore/botocore-1.21.13.ebuild | 59 -
 dev-python/botocore/botocore-1.21.14.ebuild | 59 -
 dev-python/botocore/botocore-1.21.16.ebuild | 59 -
 dev-python/botocore/botocore-1.21.17.ebuild | 59 -
 dev-python/botocore/botocore-1.21.2.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.3.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.4.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.5.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.6.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.8.ebuild  | 59 -
 dev-python/botocore/botocore-1.21.9.ebuild  | 59 -
 17 files changed, 960 deletions(-)

diff --git a/dev-python/botocore/Manifest b/dev-python/botocore/Manifest
index 97a4edff1ff..7757b52f377 100644
--- a/dev-python/botocore/Manifest
+++ b/dev-python/botocore/Manifest
@@ -1,21 +1,5 @@
 DIST botocore-1.20.104.tar.gz 7883624 BLAKE2B 
4fb4c6abff5a2c3d3e19b11576e723f15a442b2d49e461a2a4c2bd613e26095ceb87f4b7ceb672f338ea04ad918060bed118f7bc4c184c46cce1d6a9f98d4239
 SHA512 
2201d87ce2e1c8979548698d6a46eb03c0a2026360b178fea895ad6a244efad534d9970d3c6343d50639d25b3b8643db6744658fec14e0fa29fd7c4b45c8e0d8
 DIST botocore-1.20.112.tar.gz 7917776 BLAKE2B 
6a5ebf3d32c505ec2c1fc4cd3d97aa94c76b6206dda6ba28a946dfdc9973073019389c05d1cf09a0eced701fe86a9b8a292835415c0b1ceea75959a3186f65c6
 SHA512 
4b36367ffdd011aeb7654fd5c52c38e95bae4c55e5af85e38b0764140539ad1f8b9d75b0c7fd1009fda8d005ef4b17673b06f85a76b52fcebf05925297b6bbbf
-DIST botocore-1.21.0.tar.gz 790 BLAKE2B 
7e68375d07d858dc2071538c2382d8693df23fea5326938491c492abe55c060d0cdf98698cef9b06dac996a59c907ed780e5baadabbb7c10d5e41efa84c4750c
 SHA512 
e56eea7f3c4f39f51ef1d53dfb42fd5d601167cca7c868b1cf2f291732a8cf90aaa874760f262085439df5726c6b610369a325e863533b593aa708fd901398a1
-DIST botocore-1.21.1.tar.gz 7954248 BLAKE2B 
d6e7a71d6dd90ed0fcf0dbab3182dcdfa4072e65a1f344d44ac30abc829ac6c546a0ebcdee51f61ae65008550acf65052b49530ae3b3a62d81af222e6e8a0929
 SHA512 
86d4b4159a96426e7ab853b06564604fd9729011199ba691f6204a7e5f52d9927b93511b73cfc03b65bce706563c6d50b577d85d0de0e50fb5d877472d8326dc
-DIST botocore-1.21.10.tar.gz 8001298 BLAKE2B 
bbc762302462d9eb5e223245c8dd2430e6f190b643502d3a124e3831f531f014e49bb54bde768fc2dc7313e5b6ca7c78076a74511d724396370d1f699366ab44
 SHA512 
8e3c90d24ce5c6ae76376649c1ec191bdca162adfa8ab1b33903cffa9ccf2d7b306efe36b9d81f53f579170516c91c7c3f47a00d3033f5b691f2495b0ac97b88
-DIST botocore-1.21.11.tar.gz 8003282 BLAKE2B 
a7ada604bef2d5130169b0905acfb1ed51fbbafbb9df29d2ed3e3cbf89b44ded59b0de1baffe46b27b10e854b190517d95a26022cc22145fbeb42c46cdb780ae
 SHA512 
45f66cdbbc66dc74c5aac003eb67569533088486fbd3443077be7d6ecb4fe9b8ba9a9de04b94b44fe02167f7261fc9675b7cfb8973de95510d4401a237416713
-DIST botocore-1.21.12.tar.gz 8003489 BLAKE2B 
39249b2ccbca9cc11b8acaef59064de3f6533a399949eac6c7168feab987f98914e213cfa4e39067c431e65ec04929b68787f971cd3847229668f12c723f8194
 SHA512 
7332026e1fab6bc36627f5d9de21367d99ec307e8ff4591671713e81ad44b0549ce7d4fc04f992fc120ba55c54ebc8b5095ef5e4888bca19e0d2aeea25dbbc0a
-DIST botocore-1.21.13.tar.gz 8006167 BLAKE2B 
7f876b608fa0d24717f010426a553f54aa3c5a661d923b2a11b685f81d14cbf35fb6cef3518992eb00a520b79d79499af39f4fd03086f6caa6c20d256723fc10
 SHA512 
e2a2a51e74c5cc98ebc28a58a6865030ebc810f8fd56ae1e0baac23f815b65f9f1fdde6d9e0771a847d383796213d453463f89382286eb0c762c11e0c682ffc9
-DIST botocore-1.21.14.tar.gz 8014362 BLAKE2B 
c201724fd1eae1a9f84e81ff9d23b27eaf7f38d2a2db1bbf3f1ad7aca37183b56ea752478e78825f5eb5762e649b533be49671acfbbc058cae96bc14121bb336
 SHA512 
eff147209d9526e2b90fae2dfdaf1536ab29714277d8e4ab2e0244cbf1ab3c98aca72e04c5c7659a98464d52a016bcd5601428f860c67737b080e562c36ebb6f
 DIST botocore-1.21.15.tar.gz 8012673 BLAKE2B 
cdd2b4128e67c85879e85f61265b10c1e5765eebf65333059af56a6a5b1d650a7612c4b569afde2396704015294e74b717c35d49c3e08396b2c603b7d47c632b
 SHA512 

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

2021-08-10 Thread Michał Górny
commit: 4220e645f59b7009682feba2c4299724037803fe
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:19:34 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:22:59 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4220e645

dev-python/scikit-build: Bump to 0.12.0

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

 dev-python/scikit-build/Manifest   |  1 +
 dev-python/scikit-build/scikit-build-0.12.0.ebuild | 53 ++
 2 files changed, 54 insertions(+)

diff --git a/dev-python/scikit-build/Manifest b/dev-python/scikit-build/Manifest
index 2670eba2759..9180ab42c1d 100644
--- a/dev-python/scikit-build/Manifest
+++ b/dev-python/scikit-build/Manifest
@@ -1 +1,2 @@
 DIST scikit-build-0.11.1.tar.gz 132025 BLAKE2B 
0f818d8da896695ee0d6b046249e74cbd4ea643bec0515d6ac6ff4276d92430a1dbf81abb3b7c10890538c373225a45cc21b0906de891f1a5390226be914dacd
 SHA512 
030c6cc727d39cbafd2865722de9c45ba2f13461461cf75019b9caf6afd0a776b4f598fa2ce102b5adbc770140ab1de2c33e2bbd3ef03c958ae8849e5fc26cb4
+DIST scikit-build-0.12.0.tar.gz 138053 BLAKE2B 
5007bd070cee14056cbc9cc24a022a39c920ce7fa794a79dcdb707f185529e1ed2442a201593f6df8d2dd9b4ab7a9a1ed209b0bc08f3feae748edd06894f8661
 SHA512 
76be92d8ff96dc230e38dc36a58021399dd8c57b6883dc032fbcd8f01ce42c879c6d557e7a46d48aa9b8bc724270f409f3760824d5810654b53a1aca25ec1cf9

diff --git a/dev-python/scikit-build/scikit-build-0.12.0.ebuild 
b/dev-python/scikit-build/scikit-build-0.12.0.ebuild
new file mode 100644
index 000..18279621e56
--- /dev/null
+++ b/dev-python/scikit-build/scikit-build-0.12.0.ebuild
@@ -0,0 +1,53 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="Improved build system generator for Python C/C++/Fortran/Cython 
extensions"
+HOMEPAGE="https://github.com/scikit-build/scikit-build;
+SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
+
+SLOT="0"
+LICENSE="MIT"
+KEYWORDS="~amd64 ~arm ~arm64 ~hppa ~ppc ~ppc64 ~sparc ~x86"
+
+RDEPEND="
+   dev-python/distro[${PYTHON_USEDEP}]
+   dev-python/packaging[${PYTHON_USEDEP}]
+   dev-python/wheel[${PYTHON_USEDEP}]"
+
+DEPEND="
+   test? (
+   dev-python/cython[${PYTHON_USEDEP}]
+   dev-python/path-py[${PYTHON_USEDEP}]
+   dev-python/pytest-mock[${PYTHON_USEDEP}]
+   dev-python/pytest-virtualenv[${PYTHON_USEDEP}]
+   dev-python/requests[${PYTHON_USEDEP}]
+   dev-python/six[${PYTHON_USEDEP}]
+   dev-python/virtualenv[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_sphinx docs \
+   dev-python/sphinx_rtd_theme \
+   dev-python/sphinx-issues
+distutils_enable_tests pytest
+
+src_prepare() {
+   # not packaged
+   sed -i -e '/cmakedomain/d' docs/conf.py || die
+   distutils-r1_src_prepare
+}
+
+python_test() {
+   local deselect=(
+   # sandbox violations
+   tests/test_hello_cpp.py::test_hello_develop
+   tests/test_issue274_support_default_package_dir.py
+   tests/test_issue274_support_one_package_without_package_dir.py
+   tests/test_issue334_configure_cmakelists_non_cp1252_encoding.py
+   )
+   epytest ${deselect[@]/#/--deselect }
+}



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

2021-08-10 Thread Michał Górny
commit: f84f55b21aaddbe29fc6cf8e0569e7ed222fde78
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:16:45 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:16:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f84f55b2

dev-python/apispec: Bump to 5.1.0

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

 dev-python/apispec/Manifest |  1 +
 dev-python/apispec/apispec-5.1.0.ebuild | 42 +
 2 files changed, 43 insertions(+)

diff --git a/dev-python/apispec/Manifest b/dev-python/apispec/Manifest
index 7a90baebb68..e909ce8e2d4 100644
--- a/dev-python/apispec/Manifest
+++ b/dev-python/apispec/Manifest
@@ -5,3 +5,4 @@ DIST apispec-4.6.0.tar.gz 66147 BLAKE2B 
98127cb2bf938cc1928e13e1169804eea174351a
 DIST apispec-4.7.0.tar.gz 66274 BLAKE2B 
dbb14dd831eddeb9f086643b6182ccc3e529e22ad7e31d1d4dd2dce54edf76c6cf01a74438383df5ccec18cf863334d5cdbd45214791c01632d7f7efa63f7aa3
 SHA512 
53c0a1e6db81439a7c3f8e933cac28003dd8e65986a29aef8a6ec761999c84417902448288d69c5873d12dded2156e79bedc5bd4bd0fd472ea014e65a6c7
 DIST apispec-4.7.1.tar.gz 66356 BLAKE2B 
f78ab7f10c7a10f3d62b4d02e5a33cc1972aea0b33af1c485a11c2c415b2913a4d8151a9aa44de9876fa1ec6ebe02d448fb50dcc573e6a4779265ee07bda0329
 SHA512 
e5ead9a867d9dd18f2fb7509b6ef4afd9ec04cc102f55684a66e8f5ebe1b8e3e4129c62b7fd50f0a337547336375cee612e1bec620fa957f8f90d11968538c8e
 DIST apispec-5.0.0.gh.tar.gz 68795 BLAKE2B 
42b4ea7d825fc94c6ca904df56a900b52ecd3fda78b3079103370c6cb362cea6338251d344c970c0ad0380d8b39931f6fc38f3e71dc4c31ace0763c6e9721f73
 SHA512 
1e3d4c06713081d90d5d8650e7aeedd12248ef9a43ced6681be4e9dbf4563b7390cabf3423ea2c1bfda6900cd193efa4e2cacdac77350fcf2e83cfc30580c98e
+DIST apispec-5.1.0.gh.tar.gz 69990 BLAKE2B 
0fc488abae9657c9996775c460b97b66a782b82012bf3c1bb6a1623600b03c71bc80eb556d60720e00b07551a5c3b44b40f709bffbb05b10603485af9122cd6b
 SHA512 
ebcb6ddc71be541c152f18eaf2462f09c5860b689d34581723dc8f70f4da59966c34ea6f1282be2ea38cb4524af224a96bcfe974f5fcc62bf4939c644aa6df48

diff --git a/dev-python/apispec/apispec-5.1.0.ebuild 
b/dev-python/apispec/apispec-5.1.0.ebuild
new file mode 100644
index 000..9965d2dcdf0
--- /dev/null
+++ b/dev-python/apispec/apispec-5.1.0.ebuild
@@ -0,0 +1,42 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=8
+
+PYTHON_COMPAT=( python3_{8..10} )
+inherit distutils-r1
+
+DESCRIPTION="A pluggable API specification generator."
+HOMEPAGE="https://github.com/marshmallow-code/apispec/;
+SRC_URI="
+   https://github.com/marshmallow-code/apispec/archive/${PV}.tar.gz
+   -> ${P}.gh.tar.gz"
+
+LICENSE="MIT"
+SLOT="0"
+KEYWORDS="~amd64 ~x86"
+
+RDEPEND="
+   >=dev-python/pyyaml-3.10[${PYTHON_USEDEP}]
+"
+BDEPEND="${RDEPEND}
+   test? (
+   dev-python/bottle[${PYTHON_USEDEP}]
+   dev-python/mock[${PYTHON_USEDEP}]
+   >=dev-python/marshmallow-3.13.0[${PYTHON_USEDEP}]
+   )"
+
+distutils_enable_tests pytest
+distutils_enable_sphinx docs \
+   dev-python/sphinx-issues \
+   dev-python/sphinx_rtd_theme
+
+python_test() {
+   local deselect=(
+   # requires unpackaged prance
+   
tests/test_ext_marshmallow_openapi.py::test_openapi_tools_validate_v2
+   
tests/test_ext_marshmallow_openapi.py::test_openapi_tools_validate_v3
+   )
+
+   epytest ${deselect[@]/#/--deselect }
+}



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

2021-08-10 Thread Michał Górny
commit: 3fdf3e74c4c659d239983092f6428f58b9e0fe24
Author: Michał Górny  gentoo  org>
AuthorDate: Wed Aug 11 05:15:51 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:15:51 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3fdf3e74

app-admin/awscli: Bump to 1.20.18

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

 app-admin/awscli/Manifest  |  1 +
 app-admin/awscli/awscli-1.20.18.ebuild | 58 ++
 2 files changed, 59 insertions(+)

diff --git a/app-admin/awscli/Manifest b/app-admin/awscli/Manifest
index 231eb20ed1f..d2ef4b1e912 100644
--- a/app-admin/awscli/Manifest
+++ b/app-admin/awscli/Manifest
@@ -10,6 +10,7 @@ DIST awscli-1.20.14.tar.gz 2049156 BLAKE2B 
2eed59fbbd11918451d64c76c58838c9d599e
 DIST awscli-1.20.15.tar.gz 2048948 BLAKE2B 
e7d378c9cb1752f4b7e014578d07fdc5f7bd9c14dc5fa33328a29c8fb9c9fab27f404dbfeea5952c243aeb35b0800c7840303d5f1339512d74cee2e4a5d590a1
 SHA512 
34c482067c3534737956520e5f6f0b3d30296f6de06969fe3ab43146a3190e36b432ea3642917c91e82659d5e79337add973f3f79216214f6b03b5cd15b363f2
 DIST awscli-1.20.16.tar.gz 2049307 BLAKE2B 
122eb7331a30c02455dd3928fa411e24ab1da9d3d90ff9a9b4279bbf8cb4e454714e56fc0c1b521fe0a447537c6ae8ff1db62e63b49ab5cbb7b212a497748e82
 SHA512 
45973fb775cb7f52f6e220f1e26c4af32f4737963d3cc3e01d4462c75479eeddb2c1f15a8ce645ac698d1d42fdbb81a56a9ff655ff9918b746dce26fb6e0eea7
 DIST awscli-1.20.17.tar.gz 2054619 BLAKE2B 
e6570c2eb40f72a7070c69e391151b73d7110eb9ff00cf30af64ea8adb754e9ae5436a3ac92def059704ab7883624f9809a6c575667cfa069a5eef43604b49b2
 SHA512 
b7ec91dc11a70acc2994a913143f7c9d082df4e691c6916558b255052e7a1b8ec24f803f6795aac4729353611f29fb84bfa99b1e328d07757f6600f9302fac86
+DIST awscli-1.20.18.tar.gz 2054961 BLAKE2B 
0045a45638a6d4b24b876c3fa984ab8cb33eaa18bf1b8f3ceb8eb4faaffcdf3daacd141cfb4b96c56ab406c00742d823d2b772978d4a2f79b2f06a90c45411b3
 SHA512 
24292e57fdc4b95bd79c31fe153ba8dc1869bda842fe9e9d4b66d2bd8e0354e279d95f0dc4d656a359f58fef3a7e76c17ec80398c1f516339af2d27ac88c9b38
 DIST awscli-1.20.2.tar.gz 2029411 BLAKE2B 
dad47f749af3c1e7bbeb291eb92889c7dc9bdc9e81ddb1fd3769897f94ba549123589a2ef8a34b88d8370cc6bb5ad45cc7b9fa06ec474620303a78ec3d64100e
 SHA512 
6384a02a7bd3a8ea38cf46725daa25e7656e12c1f3f6465043efc223a82c605dbc916a26debc214ff6d364e81013e729acac424c535785e8a3b68cfce2f6
 DIST awscli-1.20.3.tar.gz 2029411 BLAKE2B 
6d8573709072ea3955696de0c65a32610446737a216f6c5dd4ecae4cffcb48ecac531cfc598517c037066d066cf0de01510c0740949450ad3a5925af79bd8c16
 SHA512 
2324800964de8b1af4ae39dcee15e8fc2bd5e11a239c245590a86fac6574d80b290fb9d967df82d6fdd412cd8b783fd209780e5e58846a16302fa13c6f3b93fb
 DIST awscli-1.20.4.tar.gz 2043470 BLAKE2B 
58722fe4277a7950665913e8b9ae99de8017cfe8c4974a3524f917533499e830d2eea2ac0994022796b979869468b5f3a767727b4384f78e325e423ed003b1b3
 SHA512 
3066438ac58eb2afb83ae6fef516e09965ceea1e97897e4f5b5760046f28a2f822b16b90c0a9ee6a58c6cdabbfb2f0ce044caf41396093188290e2a7c1e8c4f3

diff --git a/app-admin/awscli/awscli-1.20.18.ebuild 
b/app-admin/awscli/awscli-1.20.18.ebuild
new file mode 100644
index 000..ff429f8d3a3
--- /dev/null
+++ b/app-admin/awscli/awscli-1.20.18.ebuild
@@ -0,0 +1,58 @@
+# Copyright 1999-2021 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="Universal Command Line Environment for AWS"
+HOMEPAGE="https://pypi.org/project/awscli/;
+#SRC_URI="mirror://pypi/${P:0:1}/${PN}/${P}.tar.gz"
+SRC_URI="https://github.com/aws/aws-cli/archive/${PV}.tar.gz -> ${P}.tar.gz"
+S="${WORKDIR}/aws-cli-${PV}"
+
+LICENSE="Apache-2.0"
+SLOT="0"
+KEYWORDS="~amd64 ~arm64 ~x86"
+
+# botocore is x.(y+1).z
+BOTOCORE_PV="$(ver_cut 1).$(( $(ver_cut 2) + 1)).$(ver_cut 3-)"
+RDEPEND="
+   >=dev-python/botocore-${BOTOCORE_PV}[${PYTHON_USEDEP}]
+   dev-python/colorama[${PYTHON_USEDEP}]
+   dev-python/docutils[${PYTHON_USEDEP}]
+   dev-python/rsa[${PYTHON_USEDEP}]
+   >=dev-python/s3transfer-0.4.0[${PYTHON_USEDEP}]
+   dev-python/pyyaml[${PYTHON_USEDEP}]
+"
+BDEPEND="
+   test? (
+   dev-python/mock[${PYTHON_USEDEP}]
+   )
+"
+
+distutils_enable_tests --install nose
+
+PATCHES=(
+   "${FILESDIR}"/awscli-1.19.47-py39.patch
+)
+
+python_test() {
+   distutils_install_for_testing
+   # integration tests require AWS credentials and Internet access
+   nosetests -v tests/{functional,unit} ||
+   die "Tests failed for ${EPYTHON}"
+}
+
+python_install_all() {
+   newbashcomp bin/aws_bash_completer aws
+
+   insinto /usr/share/zsh/site-functions
+   newins bin/aws_zsh_completer.sh _aws
+
+   distutils-r1_python_install_all
+
+   rm "${ED}"/usr/bin/{aws.cmd,aws_bash_completer,aws_zsh_completer.sh} || 
die
+}



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

2021-08-10 Thread Michał Górny
commit: bda955b8fafd16d038e31e18bcf633f2f1018c73
Author: Michał Górny  gentoo  org>
AuthorDate: Tue Aug 10 20:43:41 2021 +
Commit: Michał Górny  gentoo  org>
CommitDate: Wed Aug 11 05:13:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bda955b8

app-admin/eclean-kernel: Bump to 2.99.3

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

 app-admin/eclean-kernel/Manifest   |  1 +
 .../{eclean-kernel-.ebuild => eclean-kernel-2.99.3.ebuild} | 10 --
 app-admin/eclean-kernel/eclean-kernel-.ebuild  |  4 +---
 3 files changed, 6 insertions(+), 9 deletions(-)

diff --git a/app-admin/eclean-kernel/Manifest b/app-admin/eclean-kernel/Manifest
index ebc1541621b..7f41cd6bae9 100644
--- a/app-admin/eclean-kernel/Manifest
+++ b/app-admin/eclean-kernel/Manifest
@@ -2,3 +2,4 @@ DIST eclean-kernel-0.4.3.tar.gz 10650 BLAKE2B 
228d17cfc5bed34e892dd6340498b87cbc
 DIST eclean-kernel-1.99.4.tar.bz2 78909 BLAKE2B 
0cac3a001c3180c57bdf9a63366d9950928690328fd560f984c1d35bcf88712e897462a153bc3f0250e42518798e3407c3533351543ff32bd68ecee2ee5e
 SHA512 
f3263b83b36878104e21fe122eb96a16c5c5a930b062fdd62d6a574db597644222d5a19d7833cbb894a955076b06bcb1a22c94d5f87c2787420dd1de32d0f789
 DIST eclean-kernel-2.99.1.tar.gz 18608 BLAKE2B 
3573df9b90e35fb9ac9ee4f5522daae5e9287ecd8cf612a3b984d2db663bc692e0a0eb05dcbc8ada63c69d43c821a55be11ccc3167a8a0e88f261d86dff173b5
 SHA512 
a9d6ccd6b5fe75f25fdd00f4cee3fe1d1c8be950958a2a28941a634e119a1715471ef129c20e077cc21e3a3925f2b8584b901265183fe75ff18e42d43ca52e14
 DIST eclean-kernel-2.99.2.tar.gz 18743 BLAKE2B 
493a3f54e92821c76dde0228b382dbca0f9e9d69543e0af2269bdcfb736ef7450179d804f1a97b9e7700d812110c5f32b2667724f7c60e3377a8384e557b2f5c
 SHA512 
48bb628be93922698483208471ec76b47615e80b5a7dead108d4f938664c72b080aa3f54f67056ce4b661ef92fff74f93ef842da1e177225793d13f8a3e16032
+DIST eclean-kernel-2.99.3.tar.gz 20031 BLAKE2B 
70830639eb00bde810e29361dec7c7b90f5b85b79b5be865f23cf45254cbf6139ef335fb5bfef08e2512512e57867df62f6468ce8de1da58cc9a4cfa27a26244
 SHA512 
edbe373b81a2eb5c7fca8794f9577c68ab66305e9085cc7535cd5d8a8fdd549b2035cb0b5f3e5a69cc735146c2eef81dc5c1f5284ef255420aca0cda9e518b14

diff --git a/app-admin/eclean-kernel/eclean-kernel-.ebuild 
b/app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild
similarity index 66%
copy from app-admin/eclean-kernel/eclean-kernel-.ebuild
copy to app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild
index 1783d4272cd..f5d2e9c65b8 100644
--- a/app-admin/eclean-kernel/eclean-kernel-.ebuild
+++ b/app-admin/eclean-kernel/eclean-kernel-2.99.3.ebuild
@@ -1,20 +1,18 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-DISTUTILS_USE_SETUPTOOLS=rdepend
 PYTHON_COMPAT=( python3_{7..9} )
-
-inherit distutils-r1 git-r3
+inherit distutils-r1
 
 DESCRIPTION="Remove outdated built kernels"
 HOMEPAGE="https://github.com/mgorny/eclean-kernel/;
-EGIT_REPO_URI="https://github.com/mgorny/eclean-kernel.git;
+SRC_URI="https://github.com/mgorny/eclean-kernel/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
 
 LICENSE="BSD"
 SLOT="0"
-KEYWORDS=""
+KEYWORDS="~amd64 ~x86"
 IUSE=""
 
 RDEPEND="kernel_linux? ( dev-python/pymountboot[${PYTHON_USEDEP}] )"

diff --git a/app-admin/eclean-kernel/eclean-kernel-.ebuild 
b/app-admin/eclean-kernel/eclean-kernel-.ebuild
index 1783d4272cd..65468374c08 100644
--- a/app-admin/eclean-kernel/eclean-kernel-.ebuild
+++ b/app-admin/eclean-kernel/eclean-kernel-.ebuild
@@ -1,11 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
 EAPI=7
 
-DISTUTILS_USE_SETUPTOOLS=rdepend
 PYTHON_COMPAT=( python3_{7..9} )
-
 inherit distutils-r1 git-r3
 
 DESCRIPTION="Remove outdated built kernels"



[gentoo-commits] repo/gentoo:master commit in: dev-perl/MusicBrainz-DiscID/

2021-08-10 Thread Miroslav Šulc
commit: ebe380b88978330a4bdb68f3b781ad67e8536d50
Author: Miroslav Šulc  gentoo  org>
AuthorDate: Wed Aug 11 04:33:58 2021 +
Commit: Miroslav Šulc  gentoo  org>
CommitDate: Wed Aug 11 04:34:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ebe380b8

dev-perl/MusicBrainz-DiscID: removed obsolete 0.40.0

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

 dev-perl/MusicBrainz-DiscID/Manifest   |  1 -
 .../MusicBrainz-DiscID-0.40.0.ebuild   | 32 --
 2 files changed, 33 deletions(-)

diff --git a/dev-perl/MusicBrainz-DiscID/Manifest 
b/dev-perl/MusicBrainz-DiscID/Manifest
index 56cab4347f0..9ab0ec96d52 100644
--- a/dev-perl/MusicBrainz-DiscID/Manifest
+++ b/dev-perl/MusicBrainz-DiscID/Manifest
@@ -1,2 +1 @@
-DIST MusicBrainz-DiscID-0.04.tar.gz 6907 BLAKE2B 
1dc163515af1818816d223da5090dec67cf1102311370de0658d15488d5551207b27f8b817727f3ddad2a64f3f792cf1e094ace460fd3db7d4eb1b06fdeea18d
 SHA512 
ccf93205f3485fa19e22cee079b2615326384513dc773f5d242216b680317d2d35d3a2421e46bc17651d8d7797a4d01bd3c2c0ae603a1d1e550ac2a558163125
 DIST MusicBrainz-DiscID-0.06.tar.gz 6663 BLAKE2B 
b5cb0820a37e30b33c27e2a57a28ae8143b4d60c3299e534dfdbade798afdc56d9905bfda044e5fdc08f77d56c2caece546e3245a17bf4960dd814d96485a210
 SHA512 
85483603c111d39f7e6490808817416612a96a0dc3d20ad432e7bd1e39ca0a21d4044dd4e25ff41eb713e4b0dd97c0cb1c486cb7a2c730369df9b782e61ec483

diff --git a/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.40.0.ebuild 
b/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.40.0.ebuild
deleted file mode 100644
index b014ee59f04..000
--- a/dev-perl/MusicBrainz-DiscID/MusicBrainz-DiscID-0.40.0.ebuild
+++ /dev/null
@@ -1,32 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-DIST_AUTHOR=NJH
-DIST_VERSION=0.04
-DIST_EXAMPLES=("examples/*")
-inherit perl-module
-
-DESCRIPTION="Perl interface for the MusicBrainz libdiscid library"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ppc ppc64 x86"
-IUSE="test"
-RESTRICT="!test? ( test )"
-
-RDEPEND=">=media-libs/libdiscid-0.2.2"
-DEPEND="${RDEPEND}
-   virtual/perl-ExtUtils-MakeMaker
-   virtual/pkgconfig
-   test? (
-   >=virtual/perl-Test-1.0.0
-   virtual/perl-Test-Simple
-   )
-"
-
-src_test() {
-   perl_rm_files t/05pod.t
-   perl-module_src_test
-}



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

2021-08-10 Thread Sam James
commit: c69c125888928ccff77d5e3d0e21b687dce434cd
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 04:21:07 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 04:21:07 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c69c1258

dev-libs/nettle: Stabilize 3.7.3 arm64, #806839

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

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

diff --git a/dev-libs/nettle/nettle-3.7.3.ebuild 
b/dev-libs/nettle/nettle-3.7.3.ebuild
index caf7d60dfcb..88f5f2c3fec 100644
--- a/dev-libs/nettle/nettle-3.7.3.ebuild
+++ b/dev-libs/nettle/nettle-3.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/8-6" # subslot = libnettle - libhogweed soname version
-KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+asm doc +gmp static-libs test cpu_flags_x86_aes cpu_flags_arm_neon 
cpu_flags_x86_sha"
 RESTRICT="!test? ( test )"
 



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

2021-08-10 Thread Sam James
commit: b83dfe0c0a51f32288aa37460210fb8ce9e2b4be
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 04:20:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 04:20:48 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b83dfe0c

dev-libs/nettle: Stabilize 3.7.3 arm, #806839

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

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

diff --git a/dev-libs/nettle/nettle-3.7.3.ebuild 
b/dev-libs/nettle/nettle-3.7.3.ebuild
index b2220afd99a..caf7d60dfcb 100644
--- a/dev-libs/nettle/nettle-3.7.3.ebuild
+++ b/dev-libs/nettle/nettle-3.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/8-6" # subslot = libnettle - libhogweed soname version
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+asm doc +gmp static-libs test cpu_flags_x86_aes cpu_flags_arm_neon 
cpu_flags_x86_sha"
 RESTRICT="!test? ( test )"
 



[gentoo-commits] repo/gentoo:master commit in: www-servers/bozohttpd/

2021-08-10 Thread Sam James
commit: c9432e45d757be5460f2c99557e09fa1f8aff3ad
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 04:18:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 04:18:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c9432e45

www-servers/bozohttpd: fix metadata indentation

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

 www-servers/bozohttpd/metadata.xml | 10 +-
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/www-servers/bozohttpd/metadata.xml 
b/www-servers/bozohttpd/metadata.xml
index c6139216f04..484e7f2589b 100644
--- a/www-servers/bozohttpd/metadata.xml
+++ b/www-servers/bozohttpd/metadata.xml
@@ -1,9 +1,9 @@
 
 http://www.gentoo.org/dtd/metadata.dtd;>
 
-
-
-  bozohttpd is designed to be small, simple and relatively
-  featureless, hopefully increasing its security.
-
+   
+   
+   bozohttpd is designed to be small, simple and relatively
+   featureless, hopefully increasing its security.
+   
 



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

2021-08-10 Thread Sam James
commit: 119c56ae1a46c6cbf5478ee70f39599ddb22fd83
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 04:20:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 04:20:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=119c56ae

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

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

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

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



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

2021-08-10 Thread Sam James
commit: 49f5be6a0255cee2e9d5bf835e8b5b4af3fb5e04
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 04:21:12 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 04:21:12 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=49f5be6a

mail-client/claws-mail: Stabilize 3.18.0 arm64, #805332

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

 mail-client/claws-mail/claws-mail-3.18.0.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mail-client/claws-mail/claws-mail-3.18.0.ebuild 
b/mail-client/claws-mail/claws-mail-3.18.0.ebuild
index 99c9d78b861..61ae58f0fb9 100644
--- a/mail-client/claws-mail/claws-mail-3.18.0.ebuild
+++ b/mail-client/claws-mail/claws-mail-3.18.0.ebuild
@@ -15,7 +15,7 @@ if [[ "${PV}" == * ]] ; then
EGIT_REPO_URI="https://git.claws-mail.org/readonly/claws.git;
 else

SRC_URI="https://www.claws-mail.org/download.php?file=releases/${P}.tar.xz;
-   KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ppc ~ppc64 ~sparc ~x86"
+   KEYWORDS="~alpha amd64 ~arm arm64 ~hppa ppc ~ppc64 ~sparc ~x86"
 fi
 
 SLOT="0"



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

2021-08-10 Thread Sam James
commit: 201afe2bae97330580f3cc56c600ab7d0956fa29
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 03:21:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 03:36:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=201afe2b

app-text/blogc: add 0.20.1

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

 app-text/blogc/Manifest|  1 +
 .../{blogc-.ebuild => blogc-0.20.1.ebuild} | 23 +++---
 app-text/blogc/blogc-.ebuild   | 23 +++---
 3 files changed, 25 insertions(+), 22 deletions(-)

diff --git a/app-text/blogc/Manifest b/app-text/blogc/Manifest
index 0089acec57c..88ffbcc6cdd 100644
--- a/app-text/blogc/Manifest
+++ b/app-text/blogc/Manifest
@@ -1 +1,2 @@
 DIST blogc-0.20.0.tar.xz 347924 BLAKE2B 
faabb51237ff4ba3b431b84394cb8ca6f90f9ed8c1ffbcc841773dc707b9a51694d7a5f3dbe5c573bdd7a16971004551b8ae2c0347273d8c246ae329bd82
 SHA512 
3738eb23341deb755dbfb0d2e98a73fe53f0e38b929606ebb0a3210d0564a626375d5c20ebff220e63be1f61299492da9061db5366d9d53a28f7ff18cff678a5
+DIST blogc-0.20.1.tar.xz 346280 BLAKE2B 
b2cf2c0ac0eaa857d91c75f7bcdf9e6b6ce0132e5a999719f9da3d32c7c336b8557f0e76b13ca02e6a20d67aef5cccedf01b3abe7b77dce6be612501d208eb8e
 SHA512 
0e64e3da70ce52cec148210c14b34cdafb848ae1fbd6160979de47738257a08af236e53e908f256d610ae6680bb554376c049246c32867b64985a637746c

diff --git a/app-text/blogc/blogc-.ebuild 
b/app-text/blogc/blogc-0.20.1.ebuild
similarity index 82%
copy from app-text/blogc/blogc-.ebuild
copy to app-text/blogc/blogc-0.20.1.ebuild
index 3b3a78e46d4..75b89915692 100644
--- a/app-text/blogc/blogc-.ebuild
+++ b/app-text/blogc/blogc-0.20.1.ebuild
@@ -1,20 +1,19 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
+DESCRIPTION="A blog compiler"
+HOMEPAGE="https://blogc.rgm.io/;
 if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/blogc/blogc.git;
inherit git-r3 autotools
+else
+   
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
 fi
 
-DESCRIPTION="A blog compiler"
-HOMEPAGE="https://blogc.rgm.io/;
-
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
 if [[ ${PV} = ** ]]; then
-   SRC_URI=""
-   DEPEND="app-text/ronn"
+   BDEPEND="app-text/ronn"
 else
KEYWORDS="~amd64 ~x86"
 fi
@@ -25,12 +24,12 @@ IUSE="git httpd make test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="git? ( dev-vcs/git )"
-
-DEPEND="${DEPEND}
-   virtual/pkgconfig
+DEPEND="${RDEPEND}
+   test? ( dev-util/cmocka )"
+BDEPEND="virtual/pkgconfig
test? (
git? ( dev-vcs/git )
-   dev-util/cmocka )"
+   )"
 
 src_prepare() {
[[ ${PV} = ** ]] && eautoreconf
@@ -40,11 +39,13 @@ src_prepare() {
 
 src_configure() {
local myconf=""
+
if [[ ${PV} = ** ]]; then
myconf+="--enable-ronn"
else
myconf+="--disable-ronn"
fi
+
econf \
$(use_enable test tests) \
$(use_enable git git-receiver) \

diff --git a/app-text/blogc/blogc-.ebuild b/app-text/blogc/blogc-.ebuild
index 3b3a78e46d4..75b89915692 100644
--- a/app-text/blogc/blogc-.ebuild
+++ b/app-text/blogc/blogc-.ebuild
@@ -1,20 +1,19 @@
 # Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
+EAPI=7
 
+DESCRIPTION="A blog compiler"
+HOMEPAGE="https://blogc.rgm.io/;
 if [[ ${PV} = ** ]]; then
EGIT_REPO_URI="https://github.com/blogc/blogc.git;
inherit git-r3 autotools
+else
+   
SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
 fi
 
-DESCRIPTION="A blog compiler"
-HOMEPAGE="https://blogc.rgm.io/;
-
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
 if [[ ${PV} = ** ]]; then
-   SRC_URI=""
-   DEPEND="app-text/ronn"
+   BDEPEND="app-text/ronn"
 else
KEYWORDS="~amd64 ~x86"
 fi
@@ -25,12 +24,12 @@ IUSE="git httpd make test"
 RESTRICT="!test? ( test )"
 
 RDEPEND="git? ( dev-vcs/git )"
-
-DEPEND="${DEPEND}
-   virtual/pkgconfig
+DEPEND="${RDEPEND}
+   test? ( dev-util/cmocka )"
+BDEPEND="virtual/pkgconfig
test? (
git? ( dev-vcs/git )
-   dev-util/cmocka )"
+   )"
 
 src_prepare() {
[[ ${PV} = ** ]] && eautoreconf
@@ -40,11 +39,13 @@ src_prepare() {
 
 src_configure() {
local myconf=""
+
if [[ ${PV} = ** ]]; then
myconf+="--enable-ronn"
else
myconf+="--disable-ronn"
fi
+
econf \
$(use_enable test tests) \
$(use_enable git git-receiver) \



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

2021-08-10 Thread Sam James
commit: aa335257cf5a7d1d3bf14e2c2198762900b50751
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 03:21:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 03:36:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=aa335257

app-text/blogc: drop 0.20.0

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

 app-text/blogc/Manifest|  1 -
 app-text/blogc/blogc-0.20.0.ebuild | 56 --
 2 files changed, 57 deletions(-)

diff --git a/app-text/blogc/Manifest b/app-text/blogc/Manifest
index 88ffbcc6cdd..c6b4c49b927 100644
--- a/app-text/blogc/Manifest
+++ b/app-text/blogc/Manifest
@@ -1,2 +1 @@
-DIST blogc-0.20.0.tar.xz 347924 BLAKE2B 
faabb51237ff4ba3b431b84394cb8ca6f90f9ed8c1ffbcc841773dc707b9a51694d7a5f3dbe5c573bdd7a16971004551b8ae2c0347273d8c246ae329bd82
 SHA512 
3738eb23341deb755dbfb0d2e98a73fe53f0e38b929606ebb0a3210d0564a626375d5c20ebff220e63be1f61299492da9061db5366d9d53a28f7ff18cff678a5
 DIST blogc-0.20.1.tar.xz 346280 BLAKE2B 
b2cf2c0ac0eaa857d91c75f7bcdf9e6b6ce0132e5a999719f9da3d32c7c336b8557f0e76b13ca02e6a20d67aef5cccedf01b3abe7b77dce6be612501d208eb8e
 SHA512 
0e64e3da70ce52cec148210c14b34cdafb848ae1fbd6160979de47738257a08af236e53e908f256d610ae6680bb554376c049246c32867b64985a637746c

diff --git a/app-text/blogc/blogc-0.20.0.ebuild 
b/app-text/blogc/blogc-0.20.0.ebuild
deleted file mode 100644
index 3b3a78e46d4..000
--- a/app-text/blogc/blogc-0.20.0.ebuild
+++ /dev/null
@@ -1,56 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-if [[ ${PV} = ** ]]; then
-   EGIT_REPO_URI="https://github.com/blogc/blogc.git;
-   inherit git-r3 autotools
-fi
-
-DESCRIPTION="A blog compiler"
-HOMEPAGE="https://blogc.rgm.io/;
-
-SRC_URI="https://github.com/${PN}/${PN}/releases/download/v${PV}/${P}.tar.xz;
-if [[ ${PV} = ** ]]; then
-   SRC_URI=""
-   DEPEND="app-text/ronn"
-else
-   KEYWORDS="~amd64 ~x86"
-fi
-
-LICENSE="BSD"
-SLOT="0"
-IUSE="git httpd make test"
-RESTRICT="!test? ( test )"
-
-RDEPEND="git? ( dev-vcs/git )"
-
-DEPEND="${DEPEND}
-   virtual/pkgconfig
-   test? (
-   git? ( dev-vcs/git )
-   dev-util/cmocka )"
-
-src_prepare() {
-   [[ ${PV} = ** ]] && eautoreconf
-   eapply_user
-   default
-}
-
-src_configure() {
-   local myconf=""
-   if [[ ${PV} = ** ]]; then
-   myconf+="--enable-ronn"
-   else
-   myconf+="--disable-ronn"
-   fi
-   econf \
-   $(use_enable test tests) \
-   $(use_enable git git-receiver) \
-   $(use_enable make make) \
-   $(use_enable httpd runserver) \
-   --disable-make-embedded \
-   --disable-valgrind \
-   ${myconf}
-}



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kgpg/

2021-08-10 Thread Sam James
commit: e12eb3de048e350aaceb13edad753364696bb7ed
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:43 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:43 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e12eb3de

kde-apps/kgpg: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kgpg/kgpg-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kgpg/kgpg-21.04.3.ebuild 
b/kde-apps/kgpg/kgpg-21.04.3.ebuild
index 0e520a5d788..e0de280f35f 100644
--- a/kde-apps/kgpg/kgpg-21.04.3.ebuild
+++ b/kde-apps/kgpg/kgpg-21.04.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/kgpg/ 
https://utils.kde.org/projects/kgpg/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 COMMON_DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kde-apps-meta/

2021-08-10 Thread Sam James
commit: 52588bd8b257abf1ffb054ac21eab11dd26847cb
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=52588bd8

kde-apps/kde-apps-meta: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kde-apps-meta/kde-apps-meta-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kde-apps-meta/kde-apps-meta-21.04.3.ebuild 
b/kde-apps/kde-apps-meta/kde-apps-meta-21.04.3.ebuild
index 5166b2d7309..d6cbbfe7c92 100644
--- a/kde-apps/kde-apps-meta/kde-apps-meta-21.04.3.ebuild
+++ b/kde-apps/kde-apps-meta/kde-apps-meta-21.04.3.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://kde.org/;
 
 LICENSE="metapackage"
 SLOT="5"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE="accessibility +admin +education +games +graphics +multimedia +network 
pim sdk +utils"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kfloppy/

2021-08-10 Thread Sam James
commit: 07e9b33d1657014c625a0331b16761e558dd7b0a
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:42 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:42 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=07e9b33d

kde-apps/kfloppy: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kfloppy/kfloppy-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kfloppy/kfloppy-21.04.3.ebuild 
b/kde-apps/kfloppy/kfloppy-21.04.3.ebuild
index 1ae6db5329a..c5f696d8485 100644
--- a/kde-apps/kfloppy/kfloppy-21.04.3.ebuild
+++ b/kde-apps/kfloppy/kfloppy-21.04.3.ebuild
@@ -14,7 +14,7 @@ https://utils.kde.org/projects/kfloppy/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdeutils-meta/

2021-08-10 Thread Sam James
commit: d749c83cafc54eb9d6d4643f1a6803626edde38d
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d749c83c

kde-apps/kdeutils-meta: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kdeutils-meta/kdeutils-meta-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kdeutils-meta/kdeutils-meta-21.04.3.ebuild 
b/kde-apps/kdeutils-meta/kdeutils-meta-21.04.3.ebuild
index 873839428f6..ba64e719368 100644
--- a/kde-apps/kdeutils-meta/kdeutils-meta-21.04.3.ebuild
+++ b/kde-apps/kdeutils-meta/kdeutils-meta-21.04.3.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://apps.kde.org/utilities/ https://utils.kde.org;
 
 LICENSE="metapackage"
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE="7zip cups floppy gpg lrz rar +webengine"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kimagemapeditor/

2021-08-10 Thread Sam James
commit: c15c9dc40fc9e3420cce450ad277e382a965cc70
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:44 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:44 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c15c9dc4

kde-apps/kimagemapeditor: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kimagemapeditor/kimagemapeditor-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kimagemapeditor/kimagemapeditor-21.04.3.ebuild 
b/kde-apps/kimagemapeditor/kimagemapeditor-21.04.3.ebuild
index 84ed2107aee..3b5ae84646f 100644
--- a/kde-apps/kimagemapeditor/kimagemapeditor-21.04.3.ebuild
+++ b/kde-apps/kimagemapeditor/kimagemapeditor-21.04.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://apps.kde.org/kimagemapeditor/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-08-10 Thread Sam James
commit: 2a238609b10954ff594a1e5769a90d9784b3b65a
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:39 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:39 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2a238609

sys-libs/kpmcore: Stabilize 21.04.3 arm64, #805065

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

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

diff --git a/sys-libs/kpmcore/kpmcore-21.04.3.ebuild 
b/sys-libs/kpmcore/kpmcore-21.04.3.ebuild
index af64abdb788..89b01d630c8 100644
--- a/sys-libs/kpmcore/kpmcore-21.04.3.ebuild
+++ b/sys-libs/kpmcore/kpmcore-21.04.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://apps.kde.org/partitionmanager/;
 
 LICENSE="GPL-3"
 SLOT="5/10"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 IUSE=""
 
 # bug 689468, tests need polkit etc.



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

2021-08-10 Thread Sam James
commit: 0edf8ab47c54e1ef9355176a6cadcc9568369515
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:40 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0edf8ab4

sys-block/partitionmanager: Stabilize 21.04.3 arm64, #805065

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

 sys-block/partitionmanager/partitionmanager-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/partitionmanager/partitionmanager-21.04.3.ebuild 
b/sys-block/partitionmanager/partitionmanager-21.04.3.ebuild
index e1a8543de22..53cfd461770 100644
--- a/sys-block/partitionmanager/partitionmanager-21.04.3.ebuild
+++ b/sys-block/partitionmanager/partitionmanager-21.04.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/partitionmanager/;
 
 LICENSE="GPL-3"
 SLOT="5"
-KEYWORDS="amd64 ~arm ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 ~arm arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



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

2021-08-10 Thread Sam James
commit: 55425ede22c47bab76ab0d887512395c112bdaa4
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=55425ede

kde-misc/markdownpart: Stabilize 21.04.3 arm64, #805065

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

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

diff --git a/kde-misc/markdownpart/markdownpart-21.04.3.ebuild 
b/kde-misc/markdownpart/markdownpart-21.04.3.ebuild
index 96b4ad0c64d..8ec3982ffd3 100644
--- a/kde-misc/markdownpart/markdownpart-21.04.3.ebuild
+++ b/kde-misc/markdownpart/markdownpart-21.04.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://apps.kde.org/markdownpart/;
 
 LICENSE="LGPL-2.1+"
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/yakuake/

2021-08-10 Thread Sam James
commit: 449dc32030bc6d849636adad3944ef02b78c8fdd
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=449dc320

kde-apps/yakuake: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/yakuake/yakuake-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/yakuake/yakuake-21.04.3.ebuild 
b/kde-apps/yakuake/yakuake-21.04.3.ebuild
index 2ded8b73e84..414bfcc99f9 100644
--- a/kde-apps/yakuake/yakuake-21.04.3.ebuild
+++ b/kde-apps/yakuake/yakuake-21.04.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://apps.kde.org/yakuake/;
 
 LICENSE="GPL-2 LGPL-2"
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE="absolute-position X"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/print-manager/

2021-08-10 Thread Sam James
commit: 5445e790eccf102dccbc492f94efd7369d6b1a8e
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5445e790

kde-apps/print-manager: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/print-manager/print-manager-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/print-manager/print-manager-21.04.3.ebuild 
b/kde-apps/print-manager/print-manager-21.04.3.ebuild
index fb528f7454c..16dcf09f0f9 100644
--- a/kde-apps/print-manager/print-manager-21.04.3.ebuild
+++ b/kde-apps/print-manager/print-manager-21.04.3.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Manage print jobs and printers in Plasma"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE="+gtk"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kcharselect/

2021-08-10 Thread Sam James
commit: 7105f28168f7dcc352149f46bea7e7087d6c96be
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:29 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:29 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7105f281

kde-apps/kcharselect: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kcharselect/kcharselect-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kcharselect/kcharselect-21.04.3.ebuild 
b/kde-apps/kcharselect/kcharselect-21.04.3.ebuild
index 909513c8d01..95d8188e5e2 100644
--- a/kde-apps/kcharselect/kcharselect-21.04.3.ebuild
+++ b/kde-apps/kcharselect/kcharselect-21.04.3.ebuild
@@ -14,7 +14,7 @@ https://utils.kde.org/projects/kcharselect/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kteatime/

2021-08-10 Thread Sam James
commit: 7a63c1c76d88d195bd723f95bbd7300a4cef46d3
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:32 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:32 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7a63c1c7

kde-apps/kteatime: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kteatime/kteatime-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kteatime/kteatime-21.04.3.ebuild 
b/kde-apps/kteatime/kteatime-21.04.3.ebuild
index 08ac9b996f6..32aa0d240e9 100644
--- a/kde-apps/kteatime/kteatime-21.04.3.ebuild
+++ b/kde-apps/kteatime/kteatime-21.04.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://apps.kde.org/kteatime/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/filelight/

2021-08-10 Thread Sam James
commit: 490060a27a01145202463b139ebc817745332de2
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:26 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:26 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=490060a2

kde-apps/filelight: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/filelight/filelight-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/filelight/filelight-21.04.3.ebuild 
b/kde-apps/filelight/filelight-21.04.3.ebuild
index 37b3e66dca3..d00603d9f8f 100644
--- a/kde-apps/filelight/filelight-21.04.3.ebuild
+++ b/kde-apps/filelight/filelight-21.04.3.ebuild
@@ -15,7 +15,7 @@ https://utils.kde.org/projects/filelight/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kwalletmanager/

2021-08-10 Thread Sam James
commit: b1bfc169a12e584fc98bf5dcb23e8ebb29e7b863
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b1bfc169

kde-apps/kwalletmanager: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kwalletmanager/kwalletmanager-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kwalletmanager/kwalletmanager-21.04.3.ebuild 
b/kde-apps/kwalletmanager/kwalletmanager-21.04.3.ebuild
index f5324ec9ba9..3510eaa065e 100644
--- a/kde-apps/kwalletmanager/kwalletmanager-21.04.3.ebuild
+++ b/kde-apps/kwalletmanager/kwalletmanager-21.04.3.ebuild
@@ -14,7 +14,7 @@ https://utils.kde.org/projects/kwalletmanager/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/sweeper/

2021-08-10 Thread Sam James
commit: 14364573216a92a25646d08219525202488925c2
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:36 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:36 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=14364573

kde-apps/sweeper: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/sweeper/sweeper-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/sweeper/sweeper-21.04.3.ebuild 
b/kde-apps/sweeper/sweeper-21.04.3.ebuild
index 8c51dc8dc2d..ce52a2c5681 100644
--- a/kde-apps/sweeper/sweeper-21.04.3.ebuild
+++ b/kde-apps/sweeper/sweeper-21.04.3.ebuild
@@ -14,7 +14,7 @@ https://utils.kde.org/projects/sweeper/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/ktimer/

2021-08-10 Thread Sam James
commit: 3cbb87e265599bc6a67c2aee0cb9895279e4158d
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:33 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:33 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=3cbb87e2

kde-apps/ktimer: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/ktimer/ktimer-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/ktimer/ktimer-21.04.3.ebuild 
b/kde-apps/ktimer/ktimer-21.04.3.ebuild
index cbca585701c..7baffc83425 100644
--- a/kde-apps/ktimer/ktimer-21.04.3.ebuild
+++ b/kde-apps/ktimer/ktimer-21.04.3.ebuild
@@ -14,7 +14,7 @@ https://utils.kde.org/projects/ktimer/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdf/

2021-08-10 Thread Sam James
commit: 6c25bd3b4f8f466f91db36db81b2009f24f65ad0
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=6c25bd3b

kde-apps/kdf: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kdf/kdf-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kdf/kdf-21.04.3.ebuild b/kde-apps/kdf/kdf-21.04.3.ebuild
index 0194505bdf4..30c21b48edf 100644
--- a/kde-apps/kdf/kdf-21.04.3.ebuild
+++ b/kde-apps/kdf/kdf-21.04.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://apps.kde.org/kdf/ 
https://utils.kde.org/projects/kdf/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdesdk-meta/

2021-08-10 Thread Sam James
commit: cf5236e84f23d905cde1ca9d2ef33f1bffc07671
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:22 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf5236e8

kde-apps/kdesdk-meta: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kdesdk-meta/kdesdk-meta-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kdesdk-meta/kdesdk-meta-21.04.3.ebuild 
b/kde-apps/kdesdk-meta/kdesdk-meta-21.04.3.ebuild
index 83432c1cfa9..f3dacde7693 100644
--- a/kde-apps/kdesdk-meta/kdesdk-meta-21.04.3.ebuild
+++ b/kde-apps/kdesdk-meta/kdesdk-meta-21.04.3.ebuild
@@ -8,7 +8,7 @@ HOMEPAGE="https://apps.kde.org/development/;
 
 LICENSE="metapackage"
 SLOT="5"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE="cvs git mercurial python ruby subversion"
 
 RDEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kdebugsettings/

2021-08-10 Thread Sam James
commit: bd8667e09ccb52fe88c3d5937d3d95dea933a289
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bd8667e0

kde-apps/kdebugsettings: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kdebugsettings/kdebugsettings-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kdebugsettings/kdebugsettings-21.04.3.ebuild 
b/kde-apps/kdebugsettings/kdebugsettings-21.04.3.ebuild
index aaf611d197f..16a95d3abb9 100644
--- a/kde-apps/kdebugsettings/kdebugsettings-21.04.3.ebuild
+++ b/kde-apps/kdebugsettings/kdebugsettings-21.04.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://apps.kde.org/kdebugsettings/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kcalc/

2021-08-10 Thread Sam James
commit: d4df8c603daeca0224f7d91cbd974cd33a337938
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:28 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:28 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d4df8c60

kde-apps/kcalc: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kcalc/kcalc-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kcalc/kcalc-21.04.3.ebuild 
b/kde-apps/kcalc/kcalc-21.04.3.ebuild
index e3b8ba4f53b..0abf11c9b07 100644
--- a/kde-apps/kcalc/kcalc-21.04.3.ebuild
+++ b/kde-apps/kcalc/kcalc-21.04.3.ebuild
@@ -14,7 +14,7 @@ HOMEPAGE="https://apps.kde.org/kcalc/ 
https://utils.kde.org/projects/kcalc/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: app-cdr/dolphin-plugins-mountiso/

2021-08-10 Thread Sam James
commit: 559745e8045b0d853831c567bbf2952469a5babf
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=559745e8

app-cdr/dolphin-plugins-mountiso: Stabilize 21.04.3 arm64, #805065

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

 .../dolphin-plugins-mountiso/dolphin-plugins-mountiso-21.04.3.ebuild| 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/app-cdr/dolphin-plugins-mountiso/dolphin-plugins-mountiso-21.04.3.ebuild 
b/app-cdr/dolphin-plugins-mountiso/dolphin-plugins-mountiso-21.04.3.ebuild
index c3170080a74..6ac829c5734 100644
--- a/app-cdr/dolphin-plugins-mountiso/dolphin-plugins-mountiso-21.04.3.ebuild
+++ b/app-cdr/dolphin-plugins-mountiso/dolphin-plugins-mountiso-21.04.3.ebuild
@@ -18,7 +18,7 @@ HOMEPAGE="https://apps.kde.org/dolphin_plugins/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kbackup/

2021-08-10 Thread Sam James
commit: 77be075b6168b7fe5c846abd3f38b15252a84aeb
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:27 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:27 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=77be075b

kde-apps/kbackup: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kbackup/kbackup-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kbackup/kbackup-21.04.3.ebuild 
b/kde-apps/kbackup/kbackup-21.04.3.ebuild
index 0a3e25d2fa2..01126c3136c 100644
--- a/kde-apps/kbackup/kbackup-21.04.3.ebuild
+++ b/kde-apps/kbackup/kbackup-21.04.3.ebuild
@@ -13,7 +13,7 @@ HOMEPAGE="https://apps.kde.org/kbackup/;
 
 LICENSE="GPL-2"
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/ark/

2021-08-10 Thread Sam James
commit: 2cabf4f69df5fdee2de3e8b13503273693ae3347
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:25 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:25 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2cabf4f6

kde-apps/ark: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/ark/ark-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/ark/ark-21.04.3.ebuild b/kde-apps/ark/ark-21.04.3.ebuild
index dbe4914e0ad..3d1acd6d263 100644
--- a/kde-apps/ark/ark-21.04.3.ebuild
+++ b/kde-apps/ark/ark-21.04.3.ebuild
@@ -15,7 +15,7 @@ HOMEPAGE="https://apps.kde.org/ark/ 
https://utils.kde.org/projects/ark/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 ~ppc64 x86"
+KEYWORDS="amd64 arm64 ~ppc64 x86"
 IUSE="zip"
 
 BDEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/kross-interpreters/

2021-08-10 Thread Sam James
commit: 768ebcb9705b055ae8f5b2cbf9eed877622de90d
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=768ebcb9

kde-apps/kross-interpreters: Stabilize 21.04.3 arm64, #805065

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

 kde-apps/kross-interpreters/kross-interpreters-21.04.3.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kde-apps/kross-interpreters/kross-interpreters-21.04.3.ebuild 
b/kde-apps/kross-interpreters/kross-interpreters-21.04.3.ebuild
index f3f7fa884a5..a86fd537af9 100644
--- a/kde-apps/kross-interpreters/kross-interpreters-21.04.3.ebuild
+++ b/kde-apps/kross-interpreters/kross-interpreters-21.04.3.ebuild
@@ -12,7 +12,7 @@ DESCRIPTION="Kross interpreter plugins for programming 
languages"
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE=""
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: kde-apps/dolphin-plugins-subversion/

2021-08-10 Thread Sam James
commit: 5e5f49c4b127935522b7f77677203b879d715c9d
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:56:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:56:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e5f49c4

kde-apps/dolphin-plugins-subversion: Stabilize 21.04.3 arm64, #805065

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

 .../dolphin-plugins-subversion-21.04.3.ebuild   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-21.04.3.ebuild 
b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-21.04.3.ebuild
index 28202a7fb68..883156f5fa6 100644
--- 
a/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-21.04.3.ebuild
+++ 
b/kde-apps/dolphin-plugins-subversion/dolphin-plugins-subversion-21.04.3.ebuild
@@ -16,7 +16,7 @@ HOMEPAGE="https://apps.kde.org/dolphin_plugins/;
 
 LICENSE="GPL-2" # TODO: CHECK
 SLOT="5"
-KEYWORDS="amd64 ~arm64 x86"
+KEYWORDS="amd64 arm64 x86"
 IUSE=""
 
 DEPEND="



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

2021-08-10 Thread Sam James
commit: 8d488dcb032a2951aed18ded0254ccda556c48b6
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:37:18 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:37:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d488dcb

sys-libs/libxcrypt: drop 4.4.23, 4.4.23-r2, 4.4.24

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

 sys-libs/libxcrypt/Manifest   |   2 -
 sys-libs/libxcrypt/libxcrypt-4.4.23-r2.ebuild | 211 --
 sys-libs/libxcrypt/libxcrypt-4.4.23.ebuild| 207 -
 sys-libs/libxcrypt/libxcrypt-4.4.24.ebuild| 211 --
 4 files changed, 631 deletions(-)

diff --git a/sys-libs/libxcrypt/Manifest b/sys-libs/libxcrypt/Manifest
index ba026464d54..fe7f2fe9688 100644
--- a/sys-libs/libxcrypt/Manifest
+++ b/sys-libs/libxcrypt/Manifest
@@ -1,4 +1,2 @@
 DIST libxcrypt-4.4.20-autotools.tar.xz 628688 BLAKE2B 
4c23af2a765495758e52c8e95d53d1c1d911fea011375160c4f10e468939734fcc7198cc327fafa4d5c90afa6d4c56dfe6d1b56c2c17bbc015b44cffcd7bcc8b
 SHA512 
5b7504e9d83df12af7d11864e88d1034ed9ce0a837ef061044c5c7fe603d7f3e5613ddf20b30613a7943735120cd058f2117401d59879afcba34ce0e48ae62ee
-DIST libxcrypt-4.4.23-autotools.tar.xz 630204 BLAKE2B 
a1c82906f59f6d0ed8f00de8fecf2c3c20608f0e3422bc0692b290c4eefd536019395e28b380031ae16be4ef37671327aca20dc63ca0367f73c2e85dfa5e3199
 SHA512 
30acea7e643a87d2c032c97ad8ca6c8c445c2e4af66d22906e332311a5b54a6905cc7ca74af7215a2e9ca362e1af2a8a3be8b3e0f0872f42ce0e5ea3e63bad46
-DIST libxcrypt-4.4.24-autotools.tar.xz 635260 BLAKE2B 
b353877144ca976480834bfd51d54bb0f288e5a1d0718d9b04871d5ecc79a4e762bc3a9760b600c0301ea75a5255acef2bb59b22840c373f3f3234c21b031568
 SHA512 
3b867d86df4d14aff4e90975b408eb5478fa4819139ffadef3f32eed5a3518a7a45104a1ea1f4f16c854d7d3f4087b76867000eb5e3217cdf52b9f84cc6f71b0
 DIST libxcrypt-4.4.25-autotools.tar.xz 614652 BLAKE2B 
f0f4fbf92585fdd8d328aaa68811ea15bdf75778363ea4bc46a75fb76bb065f044708446d655356ebbf2834f8b14bac40fbe700b510b09ce101f750667a04298
 SHA512 
30f38a54c8e5cbd31c463223913079f9869d38ed38a2f64c57778ac4cf1b6f557caa527073df54ca8396bb7220807b84afcae2f9790f6604af1561a4b277874e

diff --git a/sys-libs/libxcrypt/libxcrypt-4.4.23-r2.ebuild 
b/sys-libs/libxcrypt/libxcrypt-4.4.23-r2.ebuild
deleted file mode 100644
index 6ca63517d94..000
--- a/sys-libs/libxcrypt/libxcrypt-4.4.23-r2.ebuild
+++ /dev/null
@@ -1,211 +0,0 @@
-# Copyright 2004-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=7
-
-PYTHON_COMPAT=( python3_{8..10} )
-# NEED_BOOTSTRAP is for developers to quickly generate a tarball
-# for publishing to the tree.
-NEED_BOOTSTRAP="no"
-inherit multibuild python-any-r1 multilib-minimal
-
-DESCRIPTION="Extended crypt library for descrypt, md5crypt, bcrypt, and others"
-HOMEPAGE="https://github.com/besser82/libxcrypt;
-if [[ ${NEED_BOOTSTRAP} == "yes" ]] ; then
-   inherit autotools
-   SRC_URI="https://github.com/besser82/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-else
-   
SRC_URI="https://dev.gentoo.org/~sam/distfiles/${CATEGORY}/${PN}/${P}-autotools.tar.xz;
-fi
-
-LICENSE="LGPL-2.1+ public-domain BSD BSD-2"
-SLOT="0/1"
-KEYWORDS="~alpha ~amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ~ppc ~ppc64 ~riscv ~s390 
~sparc ~x86"
-IUSE="+compat split-usr +static-libs system test"
-REQUIRED_USE="split-usr? ( system )"
-RESTRICT="!test? ( test )"
-
-DEPEND="system? (
-   elibc_glibc? (
-   sys-libs/glibc[-crypt(+)]
-   !sys-libs/glibc[crypt(+)]
-   )
-   !sys-libs/musl
-   )
-"
-RDEPEND="${DEPEND}"
-BDEPEND="dev-lang/perl
-   sys-apps/findutils
-   test? ( $(python_gen_any_dep 'dev-python/passlib[${PYTHON_USEDEP}]') )"
-
-python_check_deps() {
-   has_version -b "dev-python/passlib[${PYTHON_USEDEP}]"
-}
-
-pkg_setup() {
-   MULTIBUILD_VARIANTS=(
-   $(usex compat 'xcrypt_compat' '')
-   xcrypt_nocompat
-   )
-
-   use test && python-any-r1_pkg_setup
-}
-
-src_prepare() {
-   default
-
-   # WARNING: Please read on bumping or applying patches!
-   #
-   # There are two circular dependencies to be aware of:
-   # 1)
-   #   if we're bootstrapping configure and makefiles:
-   #   libxcrypt -> automake -> perl -> libxcrypt
-   #
-   #   mitigation:
-   #   toolchain@ manually runs `make dist` after running 
autoconf + `./configure`
-   #   and the ebuild uses that.
-   #   (Don't include the pre-generated Perl artefacts.)
-   #
-   #   solution for future:
-   #   Upstream are working on producing `make dist` tarballs.
-   #   
https://github.com/besser82/libxcrypt/issues/134#issuecomment-871833573
-   #
-   # 2)
-   #   configure *unconditionally* needs Perl at build time to generate
-   #   a 

[gentoo-commits] repo/gentoo:master commit in: media-fonts/joypixels/

2021-08-10 Thread Sam James
commit: a33050e5303c1eca7d3d05315de6eeffafef2de0
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:08:55 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:09:03 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a33050e5

media-fonts/joypixels: update font cache

Got lost when adding README.

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

 .../joypixels/{joypixels-6.5.0.ebuild => joypixels-6.5.0-r1.ebuild}  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/media-fonts/joypixels/joypixels-6.5.0.ebuild 
b/media-fonts/joypixels/joypixels-6.5.0-r1.ebuild
similarity index 98%
rename from media-fonts/joypixels/joypixels-6.5.0.ebuild
rename to media-fonts/joypixels/joypixels-6.5.0-r1.ebuild
index 6c5b197d6a2..81a09018258 100644
--- a/media-fonts/joypixels/joypixels-6.5.0.ebuild
+++ b/media-fonts/joypixels/joypixels-6.5.0-r1.ebuild
@@ -35,4 +35,5 @@ src_install() {
 
 pkg_postinst() {
readme.gentoo_print_elog
+   font_pkg_postinst
 }



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

2021-08-10 Thread Sam James
commit: 082e38c1138a3201390c8239bbab6a4ddb387044
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:04:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=082e38c1

virtual/secret-service: stabilize 0 for amd64, x86 (VirtualKeywordsUpdate)

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

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

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



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

2021-08-10 Thread Sam James
commit: 703bca6cb5ee8d54a29c33e37a818f3d6961b29a
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:23:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:13 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=703bca6c

net-im/dino: [QA] fix updating icon cache

gnome-utils doesn't supply the cache
updating function in newer EAPIs.

(Note the "command not found" error
in the log within the bug.)

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

 net-im/dino/dino-0.2.1.ebuild | 15 +--
 net-im/dino/dino-.ebuild  | 15 +--
 2 files changed, 2 insertions(+), 28 deletions(-)

diff --git a/net-im/dino/dino-0.2.1.ebuild b/net-im/dino/dino-0.2.1.ebuild
index c640a0cc338..bdb86b5b322 100644
--- a/net-im/dino/dino-0.2.1.ebuild
+++ b/net-im/dino/dino-0.2.1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_MAKEFILE_GENERATOR="ninja"
 VALA_MIN_API_VERSION="0.34"
-inherit cmake gnome2-utils vala xdg-utils
+inherit cmake vala xdg
 
 DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala"
 HOMEPAGE="https://dino.im;
@@ -78,16 +78,3 @@ src_configure() {
 src_test() {
"${BUILD_DIR}"/xmpp-vala-test || die
 }
-
-update_caches() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postinst() {
-   update_caches
-}
-
-pkg_postrm() {
-   update_caches
-}

diff --git a/net-im/dino/dino-.ebuild b/net-im/dino/dino-.ebuild
index e0058ccbf6e..0decbb057e1 100644
--- a/net-im/dino/dino-.ebuild
+++ b/net-im/dino/dino-.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 CMAKE_MAKEFILE_GENERATOR="ninja"
 VALA_MIN_API_VERSION="0.34"
-inherit cmake gnome2-utils vala xdg-utils
+inherit cmake vala xdg
 
 DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala"
 HOMEPAGE="https://dino.im;
@@ -80,16 +80,3 @@ src_configure() {
 src_test() {
"${BUILD_DIR}"/xmpp-vala-test || die
 }
-
-update_caches() {
-   gnome2_icon_cache_update
-   xdg_desktop_database_update
-}
-
-pkg_postinst() {
-   update_caches
-}
-
-pkg_postrm() {
-   update_caches
-}



[gentoo-commits] repo/gentoo:master commit in: virtual/perl-Pod-Escapes/

2021-08-10 Thread Sam James
commit: e6e7f078868a416f21e92d5351c3db1f37dd91f1
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:03:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e6e7f078

virtual/perl-Pod-Escapes: stabilize 1.70.0-r8 for hppa (VirtualKeywordsUpdate)

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

 virtual/perl-Pod-Escapes/perl-Pod-Escapes-1.70.0-r8.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/virtual/perl-Pod-Escapes/perl-Pod-Escapes-1.70.0-r8.ebuild 
b/virtual/perl-Pod-Escapes/perl-Pod-Escapes-1.70.0-r8.ebuild
index 7985a50c899..ef2e546544c 100644
--- a/virtual/perl-Pod-Escapes/perl-Pod-Escapes-1.70.0-r8.ebuild
+++ b/virtual/perl-Pod-Escapes/perl-Pod-Escapes-1.70.0-r8.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 DESCRIPTION="Virtual for ${PN#perl-}"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 
 RDEPEND="
|| ( =dev-lang/perl-5.34* =dev-lang/perl-5.32* =dev-lang/perl-5.30* 
~perl-core/${PN#perl-}-${PV} )



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

2021-08-10 Thread Sam James
commit: 1bf94ee45ca93a214be3fa2dda29b1d9fd90e0a9
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:58:59 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1bf94ee4

sys-process/htop: [QA] update caches

We can use xdg-utils unconditionally given it
doesn't introduce a dependency.

(When a package needing xdg-utils is installed,
it'll update all the caches for us.)

Closes: https://bugs.gentoo.org/787470
Thanks-to: Ionen Wolkens  gentoo.org>
Signed-off-by: Sam James  gentoo.org>

 sys-process/htop/htop-3.0.5-r1.ebuild | 12 +++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/sys-process/htop/htop-3.0.5-r1.ebuild 
b/sys-process/htop/htop-3.0.5-r1.ebuild
index 82648c71eff..ef78ad9c82a 100644
--- a/sys-process/htop/htop-3.0.5-r1.ebuild
+++ b/sys-process/htop/htop-3.0.5-r1.ebuild
@@ -5,7 +5,7 @@ EAPI=7
 
 PYTHON_COMPAT=( python3_{7..9} )
 
-inherit autotools linux-info python-any-r1
+inherit autotools linux-info python-any-r1 xdg-utils
 
 DESCRIPTION="interactive process viewer"
 HOMEPAGE="https://htop.dev/ https://github.com/htop-dev/htop;
@@ -65,3 +65,13 @@ src_configure() {
 
econf ${myeconfargs[@]}
 }
+
+pkg_postinst() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}
+
+pkg_postrm() {
+   xdg_desktop_database_update
+   xdg_icon_cache_update
+}



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

2021-08-10 Thread Sam James
commit: 11070dfa0a7c9fcbfd05cd084e8cd03ea9adcf94
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:03:40 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11070dfa

virtual/w3m: keyword 0 for ~riscv (VirtualKeywordsUpdate)

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

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

diff --git a/virtual/w3m/w3m-0.ebuild b/virtual/w3m/w3m-0.ebuild
index 8dcd8f202b0..485e957f4b7 100644
--- a/virtual/w3m/w3m-0.ebuild
+++ b/virtual/w3m/w3m-0.ebuild
@@ -5,7 +5,7 @@ EAPI="6"
 
 DESCRIPTION="Virtual for the w3m web browser"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ppc64 sparc x86 ~amd64-linux 
~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris ~x64-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ppc ppc64 ~riscv sparc x86 
~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris ~sparc64-solaris 
~x64-solaris ~x86-solaris"
 
 RDEPEND="|| (
www-client/w3m



[gentoo-commits] repo/gentoo:master commit in: gui-wm/sway/

2021-08-10 Thread Sam James
commit: cc2914afade28c99745e0336fa778141f3a05c2b
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 02:02:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:18 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cc2914af

gui-wm/sway: fix UnusedLocalUse

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

 gui-wm/sway/metadata.xml | 1 -
 1 file changed, 1 deletion(-)

diff --git a/gui-wm/sway/metadata.xml b/gui-wm/sway/metadata.xml
index c338aedaf70..d807b577f5b 100644
--- a/gui-wm/sway/metadata.xml
+++ b/gui-wm/sway/metadata.xml
@@ -27,7 +27,6 @@


Enable support for rootless session via 
elogind
-   Enable fish completion 
support
Enable support for rootless session via 
sys-auth/seatd
Install 'swaybar': sway's status bar 
component
Install 'swaybg': allows to set a desktop 
background image



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

2021-08-10 Thread Sam James
commit: 995e865328fc3e9682061f2e37cb7f6879a2a9b7
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:28:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=995e8653

net-im/dino: [QA] use test USE flag to control building, not FEATURES

FEATURES isn't defined by PMS, so conditional building of tests
(or conditional dependencie) should be done with a USE flag +
RESTRICT.

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

 net-im/dino/dino-0.2.1.ebuild | 9 -
 net-im/dino/dino-.ebuild  | 9 -
 2 files changed, 8 insertions(+), 10 deletions(-)

diff --git a/net-im/dino/dino-0.2.1.ebuild b/net-im/dino/dino-0.2.1.ebuild
index bdb86b5b322..b9cbc662d43 100644
--- a/net-im/dino/dino-0.2.1.ebuild
+++ b/net-im/dino/dino-0.2.1.ebuild
@@ -9,9 +9,11 @@ inherit cmake vala xdg
 
 DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala"
 HOMEPAGE="https://dino.im;
+
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="+gpg +http +omemo +notification-sound"
+IUSE="+gpg +http +omemo +notification-sound test"
+RESTRICT="!test? ( test )"
 
 MY_REPO_URI="https://github.com/dino/dino;
 if [[ ${PV} == "" ]]; then
@@ -66,12 +68,9 @@ src_configure() {
"-DENABLED_PLUGINS=$(local IFS=";"; echo 
"${enabled_plugins[*]}")"
"-DDISABLED_PLUGINS=$(local IFS=";"; echo 
"${disabled_plugins[*]}")"
"-DVALA_EXECUTABLE=${VALAC}"
+   "-DBUILD_TESTS=$(usex test)"
)
 
-   if has test ${FEATURES}; then
-   mycmakeargs+=("-DBUILD_TESTS=yes")
-   fi
-
cmake_src_configure
 }
 

diff --git a/net-im/dino/dino-.ebuild b/net-im/dino/dino-.ebuild
index 0decbb057e1..408e90c2968 100644
--- a/net-im/dino/dino-.ebuild
+++ b/net-im/dino/dino-.ebuild
@@ -9,9 +9,11 @@ inherit cmake vala xdg
 
 DESCRIPTION="Modern Jabber/XMPP Client using GTK+/Vala"
 HOMEPAGE="https://dino.im;
+
 LICENSE="GPL-3"
 SLOT="0"
-IUSE="+gpg +http +omemo +notification-sound"
+IUSE="+gpg +http +omemo +notification-sound test"
+RESTRICT="!test? ( test )"
 
 MY_REPO_URI="https://github.com/dino/dino;
 if [[ ${PV} == "" ]]; then
@@ -68,12 +70,9 @@ src_configure() {
"-DENABLED_PLUGINS=$(local IFS=";"; echo 
"${enabled_plugins[*]}")"
"-DDISABLED_PLUGINS=$(local IFS=";"; echo 
"${disabled_plugins[*]}")"
"-DVALA_EXECUTABLE=${VALAC}"
+   "-DBUILD_TESTS=$(usex test)"
)
 
-   if has test ${FEATURES}; then
-   mycmakeargs+=("-DBUILD_TESTS=yes")
-   fi
-
cmake_src_configure
 }
 



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

2021-08-10 Thread Sam James
commit: befc46a82002f0817a3d652310b0def17c304598
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:44:48 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=befc46a8

media-sound/pithos: [QA] update icon cache

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

 media-sound/pithos/pithos-1.5.1.ebuild | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/media-sound/pithos/pithos-1.5.1.ebuild 
b/media-sound/pithos/pithos-1.5.1.ebuild
index e2e787a9ca0..3ac4ffed7e6 100644
--- a/media-sound/pithos/pithos-1.5.1.ebuild
+++ b/media-sound/pithos/pithos-1.5.1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 PYTHON_COMPAT=( python3_{7..9} )
-inherit meson gnome2-utils virtualx python-r1
+inherit xdg meson gnome2-utils virtualx python-r1
 
 if [[ ${PV} =~ [9]{4,} ]]; then
inherit git-r3
@@ -69,8 +69,10 @@ src_install() {
 
 pkg_postinst() {
gnome2_schemas_update
+   xdg_pkg_postinst
 }
 
 pkg_postrm() {
gnome2_schemas_update
+   xdg_pkg_postrm
 }



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

2021-08-10 Thread Sam James
commit: d7663f2159b61ebd0592dcfd612e05a646f66d6d
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:49:17 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d7663f21

gnome-extra/synapse: update EAPI 6 -> 7, update caches

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

 gnome-extra/synapse/synapse-0.2.99.4.ebuild | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/gnome-extra/synapse/synapse-0.2.99.4.ebuild 
b/gnome-extra/synapse/synapse-0.2.99.4.ebuild
index 15dea56bdaa..c22812fc523 100644
--- a/gnome-extra/synapse/synapse-0.2.99.4.ebuild
+++ b/gnome-extra/synapse/synapse-0.2.99.4.ebuild
@@ -1,8 +1,9 @@
-# Copyright 1999-2020 Gentoo Authors
+# Copyright 1999-2021 Gentoo Authors
 # Distributed under the terms of the GNU General Public License v2
 
-EAPI=6
-inherit vala
+EAPI=7
+
+inherit vala xdg
 
 DESCRIPTION="A program launcher in the style of GNOME Do"
 HOMEPAGE="https://launchpad.net/synapse-project/;
@@ -29,9 +30,9 @@ RDEPEND="
nls? ( virtual/libintl )
plugins? ( >=net-libs/rest-0.7 )
 "
-DEPEND="
+DEPEND="${RDEPEND}"
+BDEPEND="
$(vala_depend)
-   ${RDEPEND}
nls? ( sys-devel/gettext )
virtual/pkgconfig
 "



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

2021-08-10 Thread Sam James
commit: 795a50c8b29f5433e22b873c1af9cdb07987b079
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:31:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 02:05:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=795a50c8

sys-process/htop: [QA] fix named variable style

See https://projects.gentoo.org/qa/policy-guide/ebuild-format.html#pg0101.

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

 sys-process/htop/htop-3.0.2-r1.ebuild | 2 +-
 sys-process/htop/htop-3.0.4-r2.ebuild | 2 +-
 sys-process/htop/htop-3.0.5-r1.ebuild | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/sys-process/htop/htop-3.0.2-r1.ebuild 
b/sys-process/htop/htop-3.0.2-r1.ebuild
index 183f2f04fbc..13b5c03ad25 100644
--- a/sys-process/htop/htop-3.0.2-r1.ebuild
+++ b/sys-process/htop/htop-3.0.2-r1.ebuild
@@ -46,7 +46,7 @@ src_prepare() {
 }
 
 src_configure() {
-   [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes 
#328971
+   [[ ${CBUILD} != ${CHOST} ]] && export 
ac_cv_file__proc_{meminfo,stat}=yes #328971
 
local myeconfargs=(
# fails to build against recent hwloc versions

diff --git a/sys-process/htop/htop-3.0.4-r2.ebuild 
b/sys-process/htop/htop-3.0.4-r2.ebuild
index 8ce3e79b56e..65e53029fa2 100644
--- a/sys-process/htop/htop-3.0.4-r2.ebuild
+++ b/sys-process/htop/htop-3.0.4-r2.ebuild
@@ -50,7 +50,7 @@ src_prepare() {
 }
 
 src_configure() {
-   [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes 
#328971
+   [[ ${CBUILD} != ${CHOST} ]] && export 
ac_cv_file__proc_{meminfo,stat}=yes #328971
 
local myeconfargs=(
$(use_enable debug)

diff --git a/sys-process/htop/htop-3.0.5-r1.ebuild 
b/sys-process/htop/htop-3.0.5-r1.ebuild
index 61702bf269c..82648c71eff 100644
--- a/sys-process/htop/htop-3.0.5-r1.ebuild
+++ b/sys-process/htop/htop-3.0.5-r1.ebuild
@@ -46,7 +46,7 @@ src_prepare() {
 }
 
 src_configure() {
-   [[ $CBUILD != $CHOST ]] && export ac_cv_file__proc_{meminfo,stat}=yes 
#328971
+   [[ ${CBUILD} != ${CHOST} ]] && export 
ac_cv_file__proc_{meminfo,stat}=yes #328971
 
local myeconfargs=(
$(use_enable debug)



[gentoo-commits] repo/gentoo:master commit in: www-client/firefox-bin/files/, www-client/firefox-bin/

2021-08-10 Thread Thomas Deutschmann
commit: 588170d6f778657a749c680b29e29d9aaf6ec2b5
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Aug 11 01:35:43 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Aug 11 01:38:17 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=588170d6

www-client/firefox-bin: bump to v91.0

Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox-bin/Manifest|  97 +++
 www-client/firefox-bin/files/firefox-bin-r1.sh | 111 +++
 www-client/firefox-bin/firefox-bin-91.0.ebuild | 383 +
 3 files changed, 591 insertions(+)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index 380431d5235..d62704921be 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -283,9 +283,106 @@ DIST firefox-90.0.2-vi.xpi 586903 BLAKE2B 
f1b143163e443d76a213e7c4aa57a5375adf80
 DIST firefox-90.0.2-xh.xpi 430182 BLAKE2B 
d849e34655c8b50abb2ce4d2197cdf8761b27129fe8fedfdaef04221ecd0300ac8a8ae998b07a39d21bf3a3187693e818846c92da0b5e7e3eeda522e536f86e9
 SHA512 
5bd4f80060e5b75f56b3a02489717f58bc39a33785c08bf3e308131f690437ab072860e3cc9cacc00eaa0f58da9cdf02491d75b31909f1d8f8423c1378d60ac6
 DIST firefox-90.0.2-zh-CN.xpi 588311 BLAKE2B 
6656456291738d7b7651e14558a288eec053c1815fec33826e6db4c36058007d9131fb2c2847fda57f8ac75d8b5da9e7c0334db6c9cda0043c8bcb2a84db92c1
 SHA512 
6ee44936371e07a21903565bdacffb593a4a4fd64413bdc1f6998cb406afa11d934eea20e5ad5117468750d3eca53e80aa6afd9ece1c63ad4eae59a459a3b0c5
 DIST firefox-90.0.2-zh-TW.xpi 588723 BLAKE2B 
295e5ebb3f810f1ab8b66f301ee5fcd67d147cc640daabbb12e481baf835a439992fc5e1d1195bcd8b28e91336281b2e94d207d77261ec1297c784fdc3fba5eb
 SHA512 
a6b5747fc3986357f13db401dd93763f370e547e3fae61330108debd981fbc630f6af8003d6146e73cdcc948e4b79fc00614e6a257358155b3cfe0176d2e55de
+DIST firefox-91.0-ach.xpi 465289 BLAKE2B 
5caa3a3103616976d61880b893e48c5d5e425b409702b8cbd327ae1e359fa0341894500351fe24cc73deb8e7228b009e36332642c12d3afa92f9bc79c76c
 SHA512 
42ca4fa331f7a53171717831bc3309782f7cd91ff2a91a7d8169b04efa8896b200cb2937e4365f0413f74cac71c7c5a41085d4716beb9bf39b70f3f1993457c1
+DIST firefox-91.0-af.xpi 433157 BLAKE2B 
054cf19dbe8bead4d2a88ad5e8a2c6ad21569af45a10be1dddf7d44b179017fcb5575fe26063740bdc59b6b411e5decf2658bdc266f6bcb642207abf543bd9e5
 SHA512 
a7d07c25cee103086992e106f1448d6a5f7b614755045e6cc8d7e165a289bc7675034dc85be171a3677739fb9d88c38b5f5cdec58f120a129a022369185f8492
+DIST firefox-91.0-an.xpi 511816 BLAKE2B 
4ded8e0e43194412cd7641af85f238165a6b5a3d0d215ba913665efec8d172f940207320c75b4d38243d9a6a23d9ed9fbf01dd7ca78daf81dd7ebb480d34b396
 SHA512 
4edaa0cb4f24b0bf20be96f95fba5d9cacf29d47cd9f93b95c8a4314bae50901bdd4031277ac596a2a2b5077b52faccd21a73c4db1481c3501671f5c65c13922
+DIST firefox-91.0-ar.xpi 573966 BLAKE2B 
0dca5dced622775462cd0a1995c2c533c0393b93755e3719780a90517d1936e044abef2bc9ae80896fad5db4333aca9649f6e0f7cdb2ee3fd8452e1e57629a4e
 SHA512 
a8fe66283f9817e628443cacec970d817e169ec903e6cab8c360d65adaaefa86f5e511ca4336e02655c27d09f11af9bf02da0fd75c30b8f62ceefce807881aca
+DIST firefox-91.0-ast.xpi 502946 BLAKE2B 
951da964221af2f004595b2ae73cea80dbd9e7941f9e3f1705c32e30eafcfd7a71d75531defe1ac04d2ae6e06f1b725dccdd85cb7b3f434fc1b8e6c02b6f1d49
 SHA512 
170a7f17a70671e7408454536549bb6075076edf322a1b269c2f63b89e52d8734c193aa3a5d853cbec7af45b4c944a298f55c37fa653fcb859411b89f4dfbf07
+DIST firefox-91.0-az.xpi 500890 BLAKE2B 
635160c21c321ff882528882af81518a1c3201aa255b4099f7f388bd690160bec68706c9a533bd1e68b77b6ebc6c5898d09c2d1fb5d79aaa0ffeca43f8627714
 SHA512 
9fc084bb22205cce52c7e900729a781f516daa504a089f454e026c2f1e4bab57aaf66e467a2398a37bcd5b45c4eb17cb17073599ca2031a6fbd02b5139715f7f
+DIST firefox-91.0-be.xpi 630156 BLAKE2B 
8134ec1b2f0a953c370f80f50d61141c8fda8f53cfadc717c6de7a15328952ff9c0d94b6a0b39497ead48892c24c34d615a085a3ac6c4488b6a278fd8af5db52
 SHA512 
78edc9ad3dba1938058ead00d24ea5c0a7fe566e42e42fdcb2c44dcc4dd05175b6660b375515e2261b9cd73f271b630db479b7dafa0566eaab083bfe4145da5b
+DIST firefox-91.0-bg.xpi 585083 BLAKE2B 
4f9c2945e2d06d12d7ea87af65a3a17012f74bc1c2dcab36abff75cff295a7d1497a624d93fd17b5c8c94a776d6e0d47d9b0d66e7b6430ccfd285cd01ec96de8
 SHA512 
bef93bc67062febfbbcfe8e311de1f2f469a035b9a954d2cdd7af1c3c974fa49862636738b787c6ae75af0b300fc3318e31977fa080ffa44ae8f76e24c2b0108
+DIST firefox-91.0-bn.xpi 576492 BLAKE2B 
5b5494475cc9b83c5648fcb947129e4d034783f5408449b4c24ea3800019fbe9351b67540783ed6e6a775059cebac645ae43de1e60a42917af2a7d3be631c3c1
 SHA512 
8a072652885a163ec0d52859222dc517d9c9781326e5c66749ed41cc53989a53924b55ef7c868f9181d603c5f99b342c8f88acd7fb8fcbdd50698fff85d78aef
+DIST firefox-91.0-br.xpi 534798 BLAKE2B 
ff332548e1d18b8542bbbc9b934b3c4bda2e98332781c2f2d7b340f2680bddf83267e91235b63b3f59d07865dc6c15fe07f17412ebd313ec1c9b4bf6750e2968
 SHA512 

[gentoo-commits] repo/gentoo:master commit in: www-client/firefox/, www-client/firefox/files/

2021-08-10 Thread Thomas Deutschmann
commit: 704508d6adb23fef2ce6e14a25166848ff3bcbcb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Aug 11 01:19:37 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Aug 11 01:38:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=704508d6

www-client/firefox: bump to v91.0

Bug: https://bugs.gentoo.org/803950
Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox/Manifest|   98 +++
 www-client/firefox/files/firefox-r1.sh |  116 
 www-client/firefox/firefox-91.0.ebuild | 1148 
 3 files changed, 1362 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 60850bb578b..91ed5378f1c 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -290,3 +290,101 @@ DIST firefox-90.0.2-xh.xpi 430182 BLAKE2B 
d849e34655c8b50abb2ce4d2197cdf8761b271
 DIST firefox-90.0.2-zh-CN.xpi 588311 BLAKE2B 
6656456291738d7b7651e14558a288eec053c1815fec33826e6db4c36058007d9131fb2c2847fda57f8ac75d8b5da9e7c0334db6c9cda0043c8bcb2a84db92c1
 SHA512 
6ee44936371e07a21903565bdacffb593a4a4fd64413bdc1f6998cb406afa11d934eea20e5ad5117468750d3eca53e80aa6afd9ece1c63ad4eae59a459a3b0c5
 DIST firefox-90.0.2-zh-TW.xpi 588723 BLAKE2B 
295e5ebb3f810f1ab8b66f301ee5fcd67d147cc640daabbb12e481baf835a439992fc5e1d1195bcd8b28e91336281b2e94d207d77261ec1297c784fdc3fba5eb
 SHA512 
a6b5747fc3986357f13db401dd93763f370e547e3fae61330108debd981fbc630f6af8003d6146e73cdcc948e4b79fc00614e6a257358155b3cfe0176d2e55de
 DIST firefox-90.0.2.source.tar.xz 380670372 BLAKE2B 
782e548663d3538d834feeea54c9fa54ff5580472b967bb60be331e591b782fff2a6877f2e8db29511ac4b4b3dff847f30dc8f0a8333ece3d4156d6ac10a723d
 SHA512 
4fda0b1e666fb0b1d846708fad2b48a5b53d48e7fc2a5da1f234b5b839c55265b41f6509e6b506d5e8a7455f816dfa5ab538589bc9e83b7e3846f0f72210513e
+DIST firefox-91-patches-01.tar.xz 22352 BLAKE2B 
2761467fed0a288f5ed58a2806eb73a00ae91f35d62284b48adf39898603a1dade82f7fc9a98a6154ee580fa7b010dc4bc2e656e6505bf9e3682c23698d02829
 SHA512 
1149e413af3fea1756754fe7ce6a273b00f07918074e16576d25113408e9c5a99cebb7e3a5195ff8dda343b8249e90b2778186d103a88f117ca7a3ac50ffa968
+DIST firefox-91.0-ach.xpi 465289 BLAKE2B 
5caa3a3103616976d61880b893e48c5d5e425b409702b8cbd327ae1e359fa0341894500351fe24cc73deb8e7228b009e36332642c12d3afa92f9bc79c76c
 SHA512 
42ca4fa331f7a53171717831bc3309782f7cd91ff2a91a7d8169b04efa8896b200cb2937e4365f0413f74cac71c7c5a41085d4716beb9bf39b70f3f1993457c1
+DIST firefox-91.0-af.xpi 433157 BLAKE2B 
054cf19dbe8bead4d2a88ad5e8a2c6ad21569af45a10be1dddf7d44b179017fcb5575fe26063740bdc59b6b411e5decf2658bdc266f6bcb642207abf543bd9e5
 SHA512 
a7d07c25cee103086992e106f1448d6a5f7b614755045e6cc8d7e165a289bc7675034dc85be171a3677739fb9d88c38b5f5cdec58f120a129a022369185f8492
+DIST firefox-91.0-an.xpi 511816 BLAKE2B 
4ded8e0e43194412cd7641af85f238165a6b5a3d0d215ba913665efec8d172f940207320c75b4d38243d9a6a23d9ed9fbf01dd7ca78daf81dd7ebb480d34b396
 SHA512 
4edaa0cb4f24b0bf20be96f95fba5d9cacf29d47cd9f93b95c8a4314bae50901bdd4031277ac596a2a2b5077b52faccd21a73c4db1481c3501671f5c65c13922
+DIST firefox-91.0-ar.xpi 573966 BLAKE2B 
0dca5dced622775462cd0a1995c2c533c0393b93755e3719780a90517d1936e044abef2bc9ae80896fad5db4333aca9649f6e0f7cdb2ee3fd8452e1e57629a4e
 SHA512 
a8fe66283f9817e628443cacec970d817e169ec903e6cab8c360d65adaaefa86f5e511ca4336e02655c27d09f11af9bf02da0fd75c30b8f62ceefce807881aca
+DIST firefox-91.0-ast.xpi 502946 BLAKE2B 
951da964221af2f004595b2ae73cea80dbd9e7941f9e3f1705c32e30eafcfd7a71d75531defe1ac04d2ae6e06f1b725dccdd85cb7b3f434fc1b8e6c02b6f1d49
 SHA512 
170a7f17a70671e7408454536549bb6075076edf322a1b269c2f63b89e52d8734c193aa3a5d853cbec7af45b4c944a298f55c37fa653fcb859411b89f4dfbf07
+DIST firefox-91.0-az.xpi 500890 BLAKE2B 
635160c21c321ff882528882af81518a1c3201aa255b4099f7f388bd690160bec68706c9a533bd1e68b77b6ebc6c5898d09c2d1fb5d79aaa0ffeca43f8627714
 SHA512 
9fc084bb22205cce52c7e900729a781f516daa504a089f454e026c2f1e4bab57aaf66e467a2398a37bcd5b45c4eb17cb17073599ca2031a6fbd02b5139715f7f
+DIST firefox-91.0-be.xpi 630156 BLAKE2B 
8134ec1b2f0a953c370f80f50d61141c8fda8f53cfadc717c6de7a15328952ff9c0d94b6a0b39497ead48892c24c34d615a085a3ac6c4488b6a278fd8af5db52
 SHA512 
78edc9ad3dba1938058ead00d24ea5c0a7fe566e42e42fdcb2c44dcc4dd05175b6660b375515e2261b9cd73f271b630db479b7dafa0566eaab083bfe4145da5b
+DIST firefox-91.0-bg.xpi 585083 BLAKE2B 
4f9c2945e2d06d12d7ea87af65a3a17012f74bc1c2dcab36abff75cff295a7d1497a624d93fd17b5c8c94a776d6e0d47d9b0d66e7b6430ccfd285cd01ec96de8
 SHA512 
bef93bc67062febfbbcfe8e311de1f2f469a035b9a954d2cdd7af1c3c974fa49862636738b787c6ae75af0b300fc3318e31977fa080ffa44ae8f76e24c2b0108
+DIST firefox-91.0-bn.xpi 576492 BLAKE2B 
5b5494475cc9b83c5648fcb947129e4d034783f5408449b4c24ea3800019fbe9351b67540783ed6e6a775059cebac645ae43de1e60a42917af2a7d3be631c3c1
 SHA512 

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

2021-08-10 Thread Thomas Deutschmann
commit: 8bb1336ae5928f95479ff5ae386bb9b93e4dabd9
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Aug 11 01:20:55 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Aug 11 01:38:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8bb1336a

dev-lang/spidermonkey: bump to v78.13.0

Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 dev-lang/spidermonkey/Manifest|   2 +
 dev-lang/spidermonkey/spidermonkey-78.13.0.ebuild | 454 ++
 2 files changed, 456 insertions(+)

diff --git a/dev-lang/spidermonkey/Manifest b/dev-lang/spidermonkey/Manifest
index 62e6fa2f0ed..d9ec47ec0da 100644
--- a/dev-lang/spidermonkey/Manifest
+++ b/dev-lang/spidermonkey/Manifest
@@ -3,9 +3,11 @@ DIST firefox-68.12.0esr.source.tar.xz 313856956 BLAKE2B 
eeaa4acc9fabf15ec1b31317
 DIST firefox-78.10.1esr.source.tar.xz 33960 BLAKE2B 
76f9bae7f9fddbf3ab14293d1ec9e51b173961d0d5e0e1ef98b65328294f520369b89fb300a91d9f502b93215a15c228925a469b7b14ec576c9a9be874a6561a
 SHA512 
a22773d9b3f0dca253805257f358a906769d23f15115e3a8851024f701e27dee45f056f7d34ebf1fcde0a3f91ec299639c2a12556e938a232cdea9e59835fde1
 DIST firefox-78.11.0esr.source.tar.xz 333002576 BLAKE2B 
a8268886f86afb41b86d227f8a8f642674ea9c0a85365acb517c6997099dbddad9779efa772cce645da6443a78d6e94c89a750152386f8dff7bbbf31bf5df129
 SHA512 
d02fc2eda587155b1c54ca12a6c5cde220a29f41f154f1c9b71ae8f966d8cc9439201a5b241e03fc0795b74e2479f7aa5d6b69f70b7639432e5382f321f7a6f4
 DIST firefox-78.12.0esr.source.tar.xz 333737488 BLAKE2B 
775a55511a48f4210807d2648833bca6f95d9f4cd48b5d0de8cf0bf2609590c1615fca7ff855ae3643a25466d131e15dc293e6a57aa05e1d91d2cf819b0b89ca
 SHA512 
646eb803e0d0e541773e3111708c7eaa85e784e4bae6e4a77dcecdc617ee29e2e349c9ef16ae7e663311734dd7491aebd904359124dda62672dbc18bfb608f0a
+DIST firefox-78.13.0esr.source.tar.xz 333506484 BLAKE2B 
1922e2f6b2ada46e581e4eaaa388873d31c6a922e5165ba225eeaccde5c1c6d7369a57ecf8e89371a34f692dca5754a461abb7d1c9bfda9cbc4f021d39549439
 SHA512 
78a5dc8713ab879ebfc3b8fd7a8219844d06f0d897342fdf9a11471633d98e148ff85cf10e561899df4910b94a33b57709b64788df4621a8c0b83eb9a7102cef
 DIST firefox-78esr-patches-13.tar.xz 83664 BLAKE2B 
92250d5bc3821ee1ff032236bd00e01a53e0af4f9e39696a634edb39f0a182bf5ff74b7fc0f107c9c53136c64485c398391e3a857c8b2b904115fd13d17e2a4f
 SHA512 
96739811bea833a6a9cb09075dfe49c6fa7f613e8bd41e1d830d6ae6851ce8e2f5d27c87d0035b6f3a099340dfd7eebe6ecb930ff25079e76cea92a7610293ca
 DIST firefox-78esr-patches-14.tar.xz 82976 BLAKE2B 
08cc3618c8069f4169b7647e7eb699153d558bb89f8a4f1ed74d5ccd339f77119cd8f253df011f0c2f255ad889b65e843171d7559f469788463ca7e9aa2e96aa
 SHA512 
1611c6f9d2c7d586e7b53810c1cfdb2682f5d289b1b019b71694b1ab2d8bbdfe827a73cfaf59f7e4808c0b90409ca4fa57e27655d8cdf0c578ffdbad33659f26
 DIST firefox-78esr-patches-15.tar.xz 65604 BLAKE2B 
86e421e555ffd5f7f201d0f1a1c446c649739c67cdf8dca536efa115e09d9c357ce1551b7270c77e8bfe7dd53e0f3e6386496283879cf5e0c59b3c864951ebb3
 SHA512 
b229e895f083a0404cda1da0d8ae937429d5975ac52ab20e8b15611d9c737381a1076ebfa8c8a127dacac0e12a2a905ffd579facde2d80c6facc911e5739e34b
+DIST firefox-78esr-patches-16.tar.xz 55964 BLAKE2B 
79d3a465c69656bb55ee7c1e9060606464b6404435b92f534db275521ac2343e045feae1fff6166fde9e2599a82cd982b0b2395271b1033f0f784e745e2c6965
 SHA512 
3aa971c726646cbf37a14a0dba6c4ac966b88db655cd8b730c5572543bfbf682991ee7c139889541e4f6936c13f27233dc1837fbdb9ee340b33ebb2cec59b01f
 DIST js185-1.0.0.tar.gz 6164605 BLAKE2B 
76a37f0ceae05d3475853875bd0ce4be6e525e4114816f8f281ea6fc6b60a71060975a0fa1cb843f57ad1e2f842dfb26b24244fa0fd6c20f6ae2ebbe430f70be
 SHA512 
2af7122a7c7007fd7b6668776fe1222515a810b3e43bbf0f76b8f94e1ef406ffd3fb5ccec393021b00274c05b38a77235bc8d6886994c56762fcaf0aa7cf6718
 DIST mozjs-52.9.1pre1.tar.bz2 30178574 BLAKE2B 
0920432b5140e78297a9bcbccb54268d75a223d5e75e4ff90b3b01aab4f7736b4a4e05c47b3a925ff0a74607a0abad3b6583c75d070ef5142009b20ebaf6e4bf
 SHA512 
187b231b246a5ae09e55c0fef77866b316d75f38f4c2e066d5d4325d8da63433027020c929439cab46af3253ac63ab2f780223a8fd2c6ff535b3409bb6c4aa0f
 DIST mozjs-60.5.2.tar.bz2 32816585 BLAKE2B 
45ac4c9646e1275faf60eeedbf486f802cd106583eb7f640fe2243adc7cbb811dced5cefa94426cceca63468b0112be84078ffcef24cb2b8c1a7b6c8173c0d45
 SHA512 
5fb73330e7803bdd524fbe7cfdf4e6b72e85d4b22b0c827400317b5d052d1088d36e558ceac376393089e9d03e658b24e69262851fc04a66bbcda47135423dc0

diff --git a/dev-lang/spidermonkey/spidermonkey-78.13.0.ebuild 
b/dev-lang/spidermonkey/spidermonkey-78.13.0.ebuild
new file mode 100644
index 000..338d24073e2
--- /dev/null
+++ b/dev-lang/spidermonkey/spidermonkey-78.13.0.ebuild
@@ -0,0 +1,454 @@
+# Copyright 1999-2021 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI="7"
+
+# Patch version
+FIREFOX_PATCHSET="firefox-78esr-patches-16.tar.xz"
+SPIDERMONKEY_PATCHSET="spidermonkey-78-patches-04.tar.xz"
+
+LLVM_MAX_SLOT=12
+
+PYTHON_COMPAT=( python3_{7..9} )
+

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

2021-08-10 Thread Thomas Deutschmann
commit: 2455ae1a06f7aee15a687252b887241e642abafb
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Wed Aug 11 01:24:32 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Aug 11 01:38:16 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=2455ae1a

www-client/firefox-bin: bump to v78.13.0 ESR

Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox-bin/Manifest   |  97 +
 www-client/firefox-bin/firefox-bin-78.13.0.ebuild | 418 ++
 2 files changed, 515 insertions(+)

diff --git a/www-client/firefox-bin/Manifest b/www-client/firefox-bin/Manifest
index bdb58362c55..380431d5235 100644
--- a/www-client/firefox-bin/Manifest
+++ b/www-client/firefox-bin/Manifest
@@ -93,6 +93,101 @@ DIST firefox-78.12.0esr-vi.xpi 562863 BLAKE2B 
b0c80866ab862e0d9d43306e897c8b3a06
 DIST firefox-78.12.0esr-xh.xpi 427839 BLAKE2B 
b6cf89388e45ca74b4d3042f9bf30535cd26a42aeda03b03340f2779ec0fe177653f43ffc3a6fad9a3ed98049950ad18b05a76b043d91ddad40f311e065fede2
 SHA512 
c146d9d5140ee3023a749d21bf4645e07f0ceae8f8b9d6ba91dd776c57e69b1c56e402fa3ec2b1d8da4918ee60e82b423c9994737e288d8a799c8c5ab1119116
 DIST firefox-78.12.0esr-zh-CN.xpi 564771 BLAKE2B 
b745ddf8c8ad7686e5ca7142338ef4b2f2e362874d9b087c4f4980f4d9e96f076bb318e0782c8c2404c00e71f585aaa76b26da0e369fb02b9121402b5471fa06
 SHA512 
cb707c11c8c0554e6255e725ab5c68f3b15c2d34d85f84fc6ab4ee7eae83fa91b35be282d592b845f09539ec43d1dde8167bad1eb24b86adbbe236c72854764a
 DIST firefox-78.12.0esr-zh-TW.xpi 564742 BLAKE2B 
3d4b211b35c9aabe2c610b621c175bcfa4fb0f1ba4af607407b9002a475407f53cb8f2e7250a96fa93abd5ee74bd3ee5b0aff01a91e45ca7211fadb2b03e5e1c
 SHA512 
a241c3af98170e0885b63ec0c140fb1ad7749a5bc762b7154b77282d33bbcf7926550182d261e3ac4b0084d4b8d98b30111dc459f3cbf2d9ccdf9f6b811222b5
+DIST firefox-78.13.0esr-ach.xpi 460301 BLAKE2B 
ca4cd3d8d2384de6fd855bb6bf2b6f4a5bae9addb51e7a092eebd8e6f4de1b5cb7f452c58636679e68f58c89ae816eca6108813df8bea4272553602b65a40630
 SHA512 
b93d460f80a2403946c0daa8a083670b3f95cd91d5b9d9620b1ccd71f4a2eeaa6d9ee9acf73517e6efb56b39d8a4058f66e328b058df5c143006d18fae2d647b
+DIST firefox-78.13.0esr-af.xpi 428367 BLAKE2B 
deb1463defa2b2567b7f1ac2e6a12cdbd7b723ce1d1242d55fe34d3422ae52651bce6e785347647b59ab75bd9c8e42ab75fa6bbaf74ca5449844873077a826e6
 SHA512 
777c8f15e6a004e2fe1a48011187fe6d7d7ff2c8372885043e57e646a9c4913ded02695d970cdf0660adbd90840ea791008c342f33eca77b92e8809f1b659c38
+DIST firefox-78.13.0esr-an.xpi 508374 BLAKE2B 
c1c02f6732ea63a2692b2f82540c61a50a661c681f433299acaeca1008be387f489e58fc3e776762e0fda1799b956b503b3b941974bf2f03835c59cc2b724d89
 SHA512 
138363db07e7e2972cfb59ae76134f6604494659b0459596a1af56c37b33d0713c1632e34d239486c7b8adf46bb86aa84e9db3bc9ba428862ab075de76056451
+DIST firefox-78.13.0esr-ar.xpi 560955 BLAKE2B 
2f2250f5cee51a85ebc0d44c5e683594b9cda155a70f6c168185a737495c1f7b1084e5505679aa990eb73aceb186accb786f8f12c9fcbe53bc6d5ab6636c8905
 SHA512 
7bf2a63204528769a443586ce47de9085f151883aca910d3814bc6bd70dc8cfb0ed5c4a96cbed68d15b06fd3d8f256eb4a23be62c2173ea76a8fc7aeac1f2240
+DIST firefox-78.13.0esr-ast.xpi 456379 BLAKE2B 
2590ef002c4db03b5f92f12622700dd78e49692429ee9360bb70ca974e73ca46fc05c5fe7a77af5ac77470ed558461612c0461efa8d75a8aafc510d93aed6ccc
 SHA512 
ac9fe567c893f2f5c4e6091b3f84481c0898b64a09430bd7cfa96b4be1824618a0ba17916e424ebc7a2561f1b7c6ec6de8862d27eaff2c05aa6f2610981283e8
+DIST firefox-78.13.0esr-az.xpi 497445 BLAKE2B 
295eeb81ba639a847094db720a7b2f34a9672f4499b4a079abe957a913d5953f62e3f9186d888c97540814428a80abdcf1550ed15347a471bbce53e51850578e
 SHA512 
80d2ecd9f0d58fc3c3ecf2141f599bae11ea9a754d417316a020b4687baa308a6595c5112927fe48d7af425f876bf647f6eb217cb59902bde76a8ff967465f3e
+DIST firefox-78.13.0esr-be.xpi 608659 BLAKE2B 
df63d42565cb7848711d843ad02a3a6eeebedb08ad59a76c54798314b13905c3f4cf86cce9451766bda8a30b791da37ecaa294ef430b549dcf118126b13222ad
 SHA512 
0bb5a0e882f56cc15749b61f62b6a9039188767a8cbdf4d8e9039ba3a922c1e3b973baa01b9ab26474ee9491acb48ae803e63a95824481dc0a096683b2c670bd
+DIST firefox-78.13.0esr-bg.xpi 553974 BLAKE2B 
b76e7290edf1aa1c87a8b2a0dba09cb091be43484687c96d651a382cb8fe74cc13ed3c728a3ebf74caa90e5a5a24a8cc8dedb7fbaeacdb0583327b9f31fb0747
 SHA512 
e6119e25a36a04a2188d17d6fa5b77760c14353f54b96f7e29ed1381900fb756b2564d6f89175f8d3a68c33a00888c3d0514ac03d61423ca323869e69d8de7e7
+DIST firefox-78.13.0esr-bn.xpi 572607 BLAKE2B 
575dccdfc43d46905e16adc80ed82b00b74a7b83d837c9e839873136e67a961e13a72a0b5d4b8312a3ddd9cc87845a9b4fc61ea6f7308709c21134a3a4ea5acf
 SHA512 
32178259c4df33e5c67cd2e91358f88d2e43dcccb5ad702abe8e4bb06b36b15d767e5a9f67c89010e8a241d0e678a9ba49d82b55721927a83a2bb5b188c7e5a9
+DIST firefox-78.13.0esr-br.xpi 507138 BLAKE2B 
f556789f0afb060aecdf9c0dd18b0944b0ad68d88625df9a7bc0d1f2fe78735e97bc674a3cbcad3b20d50d8c21d4dd4f6ddf847ec38a9487593e9f401d4bf54d
 SHA512 

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

2021-08-10 Thread Thomas Deutschmann
commit: daeb80d270ac8aa5c8a70002e4a2dff5c976e7c7
Author: Thomas Deutschmann  gentoo  org>
AuthorDate: Tue Aug 10 21:48:54 2021 +
Commit: Thomas Deutschmann  gentoo  org>
CommitDate: Wed Aug 11 01:38:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=daeb80d2

www-client/firefox: bump to v78.13.0 ESR

Bug: https://bugs.gentoo.org/803950
Package-Manager: Portage-3.0.21, Repoman-3.0.3
Signed-off-by: Thomas Deutschmann  gentoo.org>

 www-client/firefox/Manifest   |   97 +++
 www-client/firefox/firefox-78.13.0.ebuild | 1187 +
 2 files changed, 1284 insertions(+)

diff --git a/www-client/firefox/Manifest b/www-client/firefox/Manifest
index 94f98a7aeb9..60850bb578b 100644
--- a/www-client/firefox/Manifest
+++ b/www-client/firefox/Manifest
@@ -94,7 +94,104 @@ DIST firefox-78.12.0esr-xh.xpi 427839 BLAKE2B 
b6cf89388e45ca74b4d3042f9bf30535cd
 DIST firefox-78.12.0esr-zh-CN.xpi 564771 BLAKE2B 
b745ddf8c8ad7686e5ca7142338ef4b2f2e362874d9b087c4f4980f4d9e96f076bb318e0782c8c2404c00e71f585aaa76b26da0e369fb02b9121402b5471fa06
 SHA512 
cb707c11c8c0554e6255e725ab5c68f3b15c2d34d85f84fc6ab4ee7eae83fa91b35be282d592b845f09539ec43d1dde8167bad1eb24b86adbbe236c72854764a
 DIST firefox-78.12.0esr-zh-TW.xpi 564742 BLAKE2B 
3d4b211b35c9aabe2c610b621c175bcfa4fb0f1ba4af607407b9002a475407f53cb8f2e7250a96fa93abd5ee74bd3ee5b0aff01a91e45ca7211fadb2b03e5e1c
 SHA512 
a241c3af98170e0885b63ec0c140fb1ad7749a5bc762b7154b77282d33bbcf7926550182d261e3ac4b0084d4b8d98b30111dc459f3cbf2d9ccdf9f6b811222b5
 DIST firefox-78.12.0esr.source.tar.xz 333737488 BLAKE2B 
775a55511a48f4210807d2648833bca6f95d9f4cd48b5d0de8cf0bf2609590c1615fca7ff855ae3643a25466d131e15dc293e6a57aa05e1d91d2cf819b0b89ca
 SHA512 
646eb803e0d0e541773e3111708c7eaa85e784e4bae6e4a77dcecdc617ee29e2e349c9ef16ae7e663311734dd7491aebd904359124dda62672dbc18bfb608f0a
+DIST firefox-78.13.0esr-ach.xpi 460301 BLAKE2B 
ca4cd3d8d2384de6fd855bb6bf2b6f4a5bae9addb51e7a092eebd8e6f4de1b5cb7f452c58636679e68f58c89ae816eca6108813df8bea4272553602b65a40630
 SHA512 
b93d460f80a2403946c0daa8a083670b3f95cd91d5b9d9620b1ccd71f4a2eeaa6d9ee9acf73517e6efb56b39d8a4058f66e328b058df5c143006d18fae2d647b
+DIST firefox-78.13.0esr-af.xpi 428367 BLAKE2B 
deb1463defa2b2567b7f1ac2e6a12cdbd7b723ce1d1242d55fe34d3422ae52651bce6e785347647b59ab75bd9c8e42ab75fa6bbaf74ca5449844873077a826e6
 SHA512 
777c8f15e6a004e2fe1a48011187fe6d7d7ff2c8372885043e57e646a9c4913ded02695d970cdf0660adbd90840ea791008c342f33eca77b92e8809f1b659c38
+DIST firefox-78.13.0esr-an.xpi 508374 BLAKE2B 
c1c02f6732ea63a2692b2f82540c61a50a661c681f433299acaeca1008be387f489e58fc3e776762e0fda1799b956b503b3b941974bf2f03835c59cc2b724d89
 SHA512 
138363db07e7e2972cfb59ae76134f6604494659b0459596a1af56c37b33d0713c1632e34d239486c7b8adf46bb86aa84e9db3bc9ba428862ab075de76056451
+DIST firefox-78.13.0esr-ar.xpi 560955 BLAKE2B 
2f2250f5cee51a85ebc0d44c5e683594b9cda155a70f6c168185a737495c1f7b1084e5505679aa990eb73aceb186accb786f8f12c9fcbe53bc6d5ab6636c8905
 SHA512 
7bf2a63204528769a443586ce47de9085f151883aca910d3814bc6bd70dc8cfb0ed5c4a96cbed68d15b06fd3d8f256eb4a23be62c2173ea76a8fc7aeac1f2240
+DIST firefox-78.13.0esr-ast.xpi 456379 BLAKE2B 
2590ef002c4db03b5f92f12622700dd78e49692429ee9360bb70ca974e73ca46fc05c5fe7a77af5ac77470ed558461612c0461efa8d75a8aafc510d93aed6ccc
 SHA512 
ac9fe567c893f2f5c4e6091b3f84481c0898b64a09430bd7cfa96b4be1824618a0ba17916e424ebc7a2561f1b7c6ec6de8862d27eaff2c05aa6f2610981283e8
+DIST firefox-78.13.0esr-az.xpi 497445 BLAKE2B 
295eeb81ba639a847094db720a7b2f34a9672f4499b4a079abe957a913d5953f62e3f9186d888c97540814428a80abdcf1550ed15347a471bbce53e51850578e
 SHA512 
80d2ecd9f0d58fc3c3ecf2141f599bae11ea9a754d417316a020b4687baa308a6595c5112927fe48d7af425f876bf647f6eb217cb59902bde76a8ff967465f3e
+DIST firefox-78.13.0esr-be.xpi 608659 BLAKE2B 
df63d42565cb7848711d843ad02a3a6eeebedb08ad59a76c54798314b13905c3f4cf86cce9451766bda8a30b791da37ecaa294ef430b549dcf118126b13222ad
 SHA512 
0bb5a0e882f56cc15749b61f62b6a9039188767a8cbdf4d8e9039ba3a922c1e3b973baa01b9ab26474ee9491acb48ae803e63a95824481dc0a096683b2c670bd
+DIST firefox-78.13.0esr-bg.xpi 553974 BLAKE2B 
b76e7290edf1aa1c87a8b2a0dba09cb091be43484687c96d651a382cb8fe74cc13ed3c728a3ebf74caa90e5a5a24a8cc8dedb7fbaeacdb0583327b9f31fb0747
 SHA512 
e6119e25a36a04a2188d17d6fa5b77760c14353f54b96f7e29ed1381900fb756b2564d6f89175f8d3a68c33a00888c3d0514ac03d61423ca323869e69d8de7e7
+DIST firefox-78.13.0esr-bn.xpi 572607 BLAKE2B 
575dccdfc43d46905e16adc80ed82b00b74a7b83d837c9e839873136e67a961e13a72a0b5d4b8312a3ddd9cc87845a9b4fc61ea6f7308709c21134a3a4ea5acf
 SHA512 
32178259c4df33e5c67cd2e91358f88d2e43dcccb5ad702abe8e4bb06b36b15d767e5a9f67c89010e8a241d0e678a9ba49d82b55721927a83a2bb5b188c7e5a9
+DIST firefox-78.13.0esr-br.xpi 507138 BLAKE2B 
f556789f0afb060aecdf9c0dd18b0944b0ad68d88625df9a7bc0d1f2fe78735e97bc674a3cbcad3b20d50d8c21d4dd4f6ddf847ec38a9487593e9f401d4bf54d
 SHA512 

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

2021-08-10 Thread Sam James
commit: 261f895e84d41b2991bd9c766747cd52183c906d
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:15:21 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 01:15:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=261f895e

Revert "media-tv/xmltv: Add missing (r)depend"

Reverting so we can drop the old ebuild in a separate commit.

This reverts commit ffc55f29d83232149165f9f9f9a80bb6a647b60d.

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

 media-tv/xmltv/Manifest|   1 +
 media-tv/xmltv/metadata.xml|   5 +
 media-tv/xmltv/xmltv-0.5.70.ebuild | 182 +
 .../{xmltv-0.6.1-r1.ebuild => xmltv-0.6.1.ebuild}  |   2 -
 4 files changed, 188 insertions(+), 2 deletions(-)

diff --git a/media-tv/xmltv/Manifest b/media-tv/xmltv/Manifest
index e63e390d3ef..09547613c2b 100644
--- a/media-tv/xmltv/Manifest
+++ b/media-tv/xmltv/Manifest
@@ -1 +1,2 @@
+DIST xmltv-0.5.70.tar.bz2 1274164 BLAKE2B 
4a6cbf6bc2f8f113a91fc579afbfc69fc04aec020d386182f6fd78f9f8c18821d0dc09077cccb1ad30e6f0583f958210fbf717d356f1e47dcf785e5a85864dc4
 SHA512 
36dd497dc20d296ca984ad0a1ca19f471c97cac7bfe7c5d4baeaae7faea565c36103bea10e7a7ae813c1cfc35c7ac376299edd2bf01c4c5da981cb5cca13317c
 DIST xmltv-0.6.1.tar.gz 838051 BLAKE2B 
d4011ee31b56096ae275647e0cbd85b11c2edbc3d150208aa619900c9741ac3bed2a1255d778622883b3d24a32ce3b803f5719fdd2273549bafa31ebdcb1a887
 SHA512 
137dad875c6f7f77fb986b4662b411766424676df0a2422f3dc123c8cec4e1dff123ea68577add65c0e5bcf2d0bdf89d7fba0ed423502ec27e2aa82ec6b10bc2

diff --git a/media-tv/xmltv/metadata.xml b/media-tv/xmltv/metadata.xml
index 3d9b2b74ca5..56cd4daa47d 100644
--- a/media-tv/xmltv/metadata.xml
+++ b/media-tv/xmltv/metadata.xml
@@ -14,12 +14,15 @@
Grabber for Switzerland
Denmark tv listing grabber
Latin America digital tv listing 
grabber
+   Spain alternative grabber
Grabber for Europe (xmltv.se / 
dotmedia)
+   EPG grabber for some European 
countries.
include fanart URLs for some European 
countries.
Grabbber for Europe [replaces 
eu-dotmedia and se-tvzon]
Finland tv listing grabber (0.6.1 add ampparit 
telsu)
Grabber for Finland (Swedish)
France tv listing grabber
+   France (Kazer) tv listing grabber
Hungarian tv listing grabber
Israel tv listing grabber
Iceland tv listing grabber
@@ -27,6 +30,8 @@
North America tv listing grabber
North America Direct TV grabber
Grabber for North America 
(TVMedia)
+   Netherlands tv listing grabber [REMOVED 
0.6.1]
+   Norway Gfeed tv listing grabber
Grabber for Portugal (MEO)
Grabber for Portugal (Vodafone)
Sweden tv listing grabber

diff --git a/media-tv/xmltv/xmltv-0.5.70.ebuild 
b/media-tv/xmltv/xmltv-0.5.70.ebuild
new file mode 100644
index 000..73301898cf4
--- /dev/null
+++ b/media-tv/xmltv/xmltv-0.5.70.ebuild
@@ -0,0 +1,182 @@
+# Copyright 1999-2019 Gentoo Authors
+# Distributed under the terms of the GNU General Public License v2
+
+EAPI=6
+
+inherit perl-module
+
+DESCRIPTION="Set of utilities to manage TV listings stored in the XMLTV format"
+HOMEPAGE="http://xmltv.org;
+SRC_URI="mirror://sourceforge/xmltv/${P}.tar.bz2"
+
+LICENSE="GPL-2"
+SLOT="0"
+KEYWORDS="amd64 ~arm ~ppc x86 ~x86-linux"
+
+IUSE="ar ch-search dk dtvla es-laguiatv eu-dotmedia eu-epg fi fi-sv
+fr fr-kazer huro il is it na-dd na-dtv na-tvmedia nl no-gf pt-meo se-swedb
+se-tvzon tr uk-bleb uk-tvguide tv-check tv-combiner tv-pick-cgi zz-sdjson"
+
+RDEPEND=">=dev-perl/libwww-perl-5.65
+   >=dev-perl/XML-Parser-2.34
+   >=dev-perl/XML-Twig-3.10
+   >=dev-perl/Date-Manip-5.42
+   >=dev-perl/XML-Writer-0.6
+   virtual/perl-Memoize
+   virtual/perl-Storable
+   >=dev-perl/Lingua-Preferred-0.2.4
+   >=dev-perl/Term-ProgressBar-2.03
+   virtual/perl-IO-Compress
+   dev-perl/Unicode-String
+   dev-perl/TermReadKey
+   dev-perl/File-Slurp
+   >=dev-lang/perl-5.6.1
+   dev-perl/XML-LibXML
+   dev-perl/XML-TreePP
+"
+DEPEND="${RDEPEND}
+   ar? ( dev-perl/HTML-Tree >=dev-perl/HTML-Parser-3.34 
dev-perl/HTTP-Cookies dev-perl/TimeDate )
+   ch-search? ( dev-perl/HTML-Tree >=dev-perl/HTML-Parser-3.34 )
+   dk? ( dev-perl/JSON dev-perl/IO-stringy dev-perl/DateTime )
+   dtvla? ( dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/TimeDate )
+   es-laguiatv? ( dev-perl/HTML-Tree )
+   eu-dotmedia? ( dev-perl/XML-LibXML dev-perl/IO-stringy 
dev-perl/HTTP-Cache-Transparent )
+   eu-epg? ( dev-perl/Archive-Zip dev-perl/DateTime-Format-Strptime 
>=dev-perl/HTML-Parser-3.34 dev-perl/IO-stringy )
+   fi? ( dev-perl/HTML-Tree )
+   fi-sv? ( 

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

2021-08-10 Thread Sam James
commit: ec7ec5375e0c750dd4e0912a09ade9d969a6dbe6
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:16:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 01:18:22 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ec7ec537

media-tv/xmltv: drop 0.5.70

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

 media-tv/xmltv/Manifest|   1 -
 media-tv/xmltv/metadata.xml|   5 -
 media-tv/xmltv/xmltv-0.5.70.ebuild | 182 -
 3 files changed, 188 deletions(-)

diff --git a/media-tv/xmltv/Manifest b/media-tv/xmltv/Manifest
index 09547613c2b..e63e390d3ef 100644
--- a/media-tv/xmltv/Manifest
+++ b/media-tv/xmltv/Manifest
@@ -1,2 +1 @@
-DIST xmltv-0.5.70.tar.bz2 1274164 BLAKE2B 
4a6cbf6bc2f8f113a91fc579afbfc69fc04aec020d386182f6fd78f9f8c18821d0dc09077cccb1ad30e6f0583f958210fbf717d356f1e47dcf785e5a85864dc4
 SHA512 
36dd497dc20d296ca984ad0a1ca19f471c97cac7bfe7c5d4baeaae7faea565c36103bea10e7a7ae813c1cfc35c7ac376299edd2bf01c4c5da981cb5cca13317c
 DIST xmltv-0.6.1.tar.gz 838051 BLAKE2B 
d4011ee31b56096ae275647e0cbd85b11c2edbc3d150208aa619900c9741ac3bed2a1255d778622883b3d24a32ce3b803f5719fdd2273549bafa31ebdcb1a887
 SHA512 
137dad875c6f7f77fb986b4662b411766424676df0a2422f3dc123c8cec4e1dff123ea68577add65c0e5bcf2d0bdf89d7fba0ed423502ec27e2aa82ec6b10bc2

diff --git a/media-tv/xmltv/metadata.xml b/media-tv/xmltv/metadata.xml
index 56cd4daa47d..3d9b2b74ca5 100644
--- a/media-tv/xmltv/metadata.xml
+++ b/media-tv/xmltv/metadata.xml
@@ -14,15 +14,12 @@
Grabber for Switzerland
Denmark tv listing grabber
Latin America digital tv listing 
grabber
-   Spain alternative grabber
Grabber for Europe (xmltv.se / 
dotmedia)
-   EPG grabber for some European 
countries.
include fanart URLs for some European 
countries.
Grabbber for Europe [replaces 
eu-dotmedia and se-tvzon]
Finland tv listing grabber (0.6.1 add ampparit 
telsu)
Grabber for Finland (Swedish)
France tv listing grabber
-   France (Kazer) tv listing grabber
Hungarian tv listing grabber
Israel tv listing grabber
Iceland tv listing grabber
@@ -30,8 +27,6 @@
North America tv listing grabber
North America Direct TV grabber
Grabber for North America 
(TVMedia)
-   Netherlands tv listing grabber [REMOVED 
0.6.1]
-   Norway Gfeed tv listing grabber
Grabber for Portugal (MEO)
Grabber for Portugal (Vodafone)
Sweden tv listing grabber

diff --git a/media-tv/xmltv/xmltv-0.5.70.ebuild 
b/media-tv/xmltv/xmltv-0.5.70.ebuild
deleted file mode 100644
index 73301898cf4..000
--- a/media-tv/xmltv/xmltv-0.5.70.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit perl-module
-
-DESCRIPTION="Set of utilities to manage TV listings stored in the XMLTV format"
-HOMEPAGE="http://xmltv.org;
-SRC_URI="mirror://sourceforge/xmltv/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86 ~x86-linux"
-
-IUSE="ar ch-search dk dtvla es-laguiatv eu-dotmedia eu-epg fi fi-sv
-fr fr-kazer huro il is it na-dd na-dtv na-tvmedia nl no-gf pt-meo se-swedb
-se-tvzon tr uk-bleb uk-tvguide tv-check tv-combiner tv-pick-cgi zz-sdjson"
-
-RDEPEND=">=dev-perl/libwww-perl-5.65
-   >=dev-perl/XML-Parser-2.34
-   >=dev-perl/XML-Twig-3.10
-   >=dev-perl/Date-Manip-5.42
-   >=dev-perl/XML-Writer-0.6
-   virtual/perl-Memoize
-   virtual/perl-Storable
-   >=dev-perl/Lingua-Preferred-0.2.4
-   >=dev-perl/Term-ProgressBar-2.03
-   virtual/perl-IO-Compress
-   dev-perl/Unicode-String
-   dev-perl/TermReadKey
-   dev-perl/File-Slurp
-   >=dev-lang/perl-5.6.1
-   dev-perl/XML-LibXML
-   dev-perl/XML-TreePP
-"
-DEPEND="${RDEPEND}
-   ar? ( dev-perl/HTML-Tree >=dev-perl/HTML-Parser-3.34 
dev-perl/HTTP-Cookies dev-perl/TimeDate )
-   ch-search? ( dev-perl/HTML-Tree >=dev-perl/HTML-Parser-3.34 )
-   dk? ( dev-perl/JSON dev-perl/IO-stringy dev-perl/DateTime )
-   dtvla? ( dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/TimeDate )
-   es-laguiatv? ( dev-perl/HTML-Tree )
-   eu-dotmedia? ( dev-perl/XML-LibXML dev-perl/IO-stringy 
dev-perl/HTTP-Cache-Transparent )
-   eu-epg? ( dev-perl/Archive-Zip dev-perl/DateTime-Format-Strptime 
>=dev-perl/HTML-Parser-3.34 dev-perl/IO-stringy )
-   fi? ( dev-perl/HTML-Tree )
-   fi-sv? ( dev-perl/IO-stringy dev-perl/HTML-Tree dev-perl/DateTime )
-   fr? ( dev-perl/DateTime-TimeZone dev-perl/HTML-Tree dev-perl/DateTime 
>=dev-perl/HTML-Parser-3.34 )
-   huro? ( dev-perl/HTML-Tree )
-   is? ( dev-perl/XML-DOM dev-perl/XML-LibXSLT 

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

2021-08-10 Thread Sam James
commit: cf421d6187cd066ed690bad73b9055434df31a41
Author: Wilson Michaels  austincustomerrands  com>
AuthorDate: Wed Aug 11 01:17:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 01:18:21 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=cf421d61

media-tv/xmltv: Add missing (r)depend

Closes: https://bugs.gentoo.org/807577
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Wilson Michaels  austincustomerrands.com>
Closes: #21946
Signed-off-by: Sam James  gentoo.org>

 media-tv/xmltv/{xmltv-0.6.1.ebuild => xmltv-0.6.1-r1.ebuild} | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/media-tv/xmltv/xmltv-0.6.1.ebuild 
b/media-tv/xmltv/xmltv-0.6.1-r1.ebuild
similarity index 99%
rename from media-tv/xmltv/xmltv-0.6.1.ebuild
rename to media-tv/xmltv/xmltv-0.6.1-r1.ebuild
index ded091d096e..b88c635fc27 100644
--- a/media-tv/xmltv/xmltv-0.6.1.ebuild
+++ b/media-tv/xmltv/xmltv-0.6.1-r1.ebuild
@@ -155,6 +155,7 @@ RDEPEND="
dev-perl/HTTP-Message
dev-perl/LWP-Protocol-https
dev-perl/Try-Tiny
+   dev-perl/XML-LibXML
)
zz-sdjson-sqlite? (
dev-lang/perl
@@ -169,6 +170,7 @@ RDEPEND="
dev-perl/File-Which
dev-perl/List-MoreUtils
dev-perl/LWP-UserAgent-Determined
+   dev-perl/XML-LibXML
)
tv-check? (
dev-perl/Tk



[gentoo-commits] repo/proj/guru:dev commit in: net-libs/kcgi/

2021-08-10 Thread Anna Vyalkova
commit: f7989067085a38f41fa51792b6e86fb0a06f
Author: Anna (cybertailor) Vyalkova  sysrq  in>
AuthorDate: Tue Aug 10 21:12:13 2021 +
Commit: Anna Vyalkova  sysrq  in>
CommitDate: Tue Aug 10 21:12:13 2021 +
URL:https://gitweb.gentoo.org/repo/proj/guru.git/commit/?id=f7989067

net-libs/kcgi: convert static libraries to shared

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

 net-libs/kcgi/kcgi-0.12.5.ebuild | 68 ++--
 1 file changed, 65 insertions(+), 3 deletions(-)

diff --git a/net-libs/kcgi/kcgi-0.12.5.ebuild b/net-libs/kcgi/kcgi-0.12.5.ebuild
index 79afbe7c8..380808248 100644
--- a/net-libs/kcgi/kcgi-0.12.5.ebuild
+++ b/net-libs/kcgi/kcgi-0.12.5.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=8
 
-inherit multiprocessing toolchain-funcs
+inherit flag-o-matic multilib multiprocessing toolchain-funcs
 
 DESCRIPTION="Minimal CGI library for web applications"
 HOMEPAGE="https://kristaps.bsd.lv/kcgi/;
@@ -32,15 +32,72 @@ DEPEND="${RDEPEND}
 
 PATCHES=( "${FILESDIR}"/${PN}-$(ver_cut 1-2)-ldflags.patch )
 
+_get_version_component_count() {
+   local cnt=( $(ver_rs 1- ' ') )
+   echo ${#cnt[@]} || die
+}
+
+static_to_shared() {
+   local libstatic=${1}
+   shift
+   local libname=$(basename ${libstatic%.a})
+   local soname=${libname}$(get_libname $(ver_cut 1-2))
+   local libdir=$(dirname ${libstatic})
+
+   einfo "Making ${soname} from ${libstatic}"
+   if [[ ${CHOST} == *-darwin* ]] ; then
+   ${LINK:-$(tc-getCC)} ${LDFLAGS}  \
+   -dynamiclib -install_name 
"${EPREFIX}"/usr/lib/"${soname}" \
+   -Wl,-all_load -Wl,${libstatic} \
+   "$@" -o ${libdir}/${soname} || die "${soname} failed"
+   else
+   ${LINK:-$(tc-getCC)} ${LDFLAGS}  \
+   -shared -Wl,-soname=${soname} \
+   -Wl,--whole-archive ${libstatic} -Wl,--no-whole-archive 
\
+   "$@" -o ${libdir}/${soname} || die "${soname} failed"
+
+   if [[ $(_get_version_component_count) -ge 1 ]] ; then
+   ln -s ${soname} ${libdir}/${libname}$(get_libname 
$(ver_cut 1)) || die
+   fi
+
+   ln -s ${soname} ${libdir}/${libname}$(get_libname) || die
+   fi
+}
+
 src_prepare() {
default
 
# disable failing tests
sed -e '/\s*regress\/test-debug-.*/d' -i Makefile || die
+
+   # ld: multiple definition of `dummy'
+   local deselect=( sandbox-{capsicum,darwin,pledge,seccomp-filter}.o )
+   case ${CHOST} in
+   *-linux-*)
+   deselect=( "${deselect[@]/sandbox-seccomp-filter.o}" )
+   ;;
+   *-darwin*)
+   deselect=( "${deselect[@]/sandbox-darwin.o}" )
+   ;;
+   *-freebsd*)
+   deselect=( "${deselect[@]/sandbox-capsicum.o}" )
+   ;;
+   *-openbsd*)
+   deselect=( "${deselect[@]/sandbox-pledge.o}" )
+   ;;
+   esac
+
+   for obj in "${deselect[@]}"; do
+   # elements are not deleted completely from the array
+   if [[ -n "${obj}" ]]; then
+   sed "/${obj}/d" -i Makefile || die
+   fi
+   done
 }
 
 src_configure() {
tc-export CC AR
+   append-cflags -fPIC
 
# note: not an autoconf configure script
conf_args=(
@@ -56,6 +113,12 @@ src_configure() {
 
 src_compile() {
bmake -j$(makeopts_jobs) || die
+
+   static_to_shared libkcgi.a -lz -lmd
+   static_to_shared libkcgihtml.a
+   static_to_shared libkcgijson.a -lm
+   static_to_shared libkcgiregress.a
+   static_to_shared libkcgixml.a
 }
 
 src_test() {
@@ -69,10 +132,9 @@ src_install() {
DATADIR="/usr/share/doc/${PF}/examples" \
install || die
 
-   # kcgi does not install shared libraries
+   dolib.so lib*$(get_libname)*
if ! use static-libs; then
find "${ED}" -name '*.a' -delete || die
-   find "${ED}" -name '*.pc' -delete || die
fi
 
einstalldocs



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

2021-08-10 Thread Sam James
commit: ffc55f29d83232149165f9f9f9a80bb6a647b60d
Author: Wilson Michaels  austincustomerrands  com>
AuthorDate: Tue Aug 10 21:03:16 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 01:08:19 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ffc55f29

media-tv/xmltv: Add missing (r)depend

Closes: https://bugs.gentoo.org/807577
Package-Manager: Portage-3.0.20, Repoman-3.0.2
Signed-off-by: Wilson Michaels  austincustomerrands.com>
Closes: https://github.com/gentoo/gentoo/pull/21946
Signed-off-by: Sam James  gentoo.org>

 media-tv/xmltv/Manifest|   1 -
 media-tv/xmltv/metadata.xml|   5 -
 media-tv/xmltv/xmltv-0.5.70.ebuild | 182 -
 .../{xmltv-0.6.1.ebuild => xmltv-0.6.1-r1.ebuild}  |   2 +
 4 files changed, 2 insertions(+), 188 deletions(-)

diff --git a/media-tv/xmltv/Manifest b/media-tv/xmltv/Manifest
index 09547613c2b..e63e390d3ef 100644
--- a/media-tv/xmltv/Manifest
+++ b/media-tv/xmltv/Manifest
@@ -1,2 +1 @@
-DIST xmltv-0.5.70.tar.bz2 1274164 BLAKE2B 
4a6cbf6bc2f8f113a91fc579afbfc69fc04aec020d386182f6fd78f9f8c18821d0dc09077cccb1ad30e6f0583f958210fbf717d356f1e47dcf785e5a85864dc4
 SHA512 
36dd497dc20d296ca984ad0a1ca19f471c97cac7bfe7c5d4baeaae7faea565c36103bea10e7a7ae813c1cfc35c7ac376299edd2bf01c4c5da981cb5cca13317c
 DIST xmltv-0.6.1.tar.gz 838051 BLAKE2B 
d4011ee31b56096ae275647e0cbd85b11c2edbc3d150208aa619900c9741ac3bed2a1255d778622883b3d24a32ce3b803f5719fdd2273549bafa31ebdcb1a887
 SHA512 
137dad875c6f7f77fb986b4662b411766424676df0a2422f3dc123c8cec4e1dff123ea68577add65c0e5bcf2d0bdf89d7fba0ed423502ec27e2aa82ec6b10bc2

diff --git a/media-tv/xmltv/metadata.xml b/media-tv/xmltv/metadata.xml
index 56cd4daa47d..3d9b2b74ca5 100644
--- a/media-tv/xmltv/metadata.xml
+++ b/media-tv/xmltv/metadata.xml
@@ -14,15 +14,12 @@
Grabber for Switzerland
Denmark tv listing grabber
Latin America digital tv listing 
grabber
-   Spain alternative grabber
Grabber for Europe (xmltv.se / 
dotmedia)
-   EPG grabber for some European 
countries.
include fanart URLs for some European 
countries.
Grabbber for Europe [replaces 
eu-dotmedia and se-tvzon]
Finland tv listing grabber (0.6.1 add ampparit 
telsu)
Grabber for Finland (Swedish)
France tv listing grabber
-   France (Kazer) tv listing grabber
Hungarian tv listing grabber
Israel tv listing grabber
Iceland tv listing grabber
@@ -30,8 +27,6 @@
North America tv listing grabber
North America Direct TV grabber
Grabber for North America 
(TVMedia)
-   Netherlands tv listing grabber [REMOVED 
0.6.1]
-   Norway Gfeed tv listing grabber
Grabber for Portugal (MEO)
Grabber for Portugal (Vodafone)
Sweden tv listing grabber

diff --git a/media-tv/xmltv/xmltv-0.5.70.ebuild 
b/media-tv/xmltv/xmltv-0.5.70.ebuild
deleted file mode 100644
index 73301898cf4..000
--- a/media-tv/xmltv/xmltv-0.5.70.ebuild
+++ /dev/null
@@ -1,182 +0,0 @@
-# Copyright 1999-2019 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=6
-
-inherit perl-module
-
-DESCRIPTION="Set of utilities to manage TV listings stored in the XMLTV format"
-HOMEPAGE="http://xmltv.org;
-SRC_URI="mirror://sourceforge/xmltv/${P}.tar.bz2"
-
-LICENSE="GPL-2"
-SLOT="0"
-KEYWORDS="amd64 ~arm ~ppc x86 ~x86-linux"
-
-IUSE="ar ch-search dk dtvla es-laguiatv eu-dotmedia eu-epg fi fi-sv
-fr fr-kazer huro il is it na-dd na-dtv na-tvmedia nl no-gf pt-meo se-swedb
-se-tvzon tr uk-bleb uk-tvguide tv-check tv-combiner tv-pick-cgi zz-sdjson"
-
-RDEPEND=">=dev-perl/libwww-perl-5.65
-   >=dev-perl/XML-Parser-2.34
-   >=dev-perl/XML-Twig-3.10
-   >=dev-perl/Date-Manip-5.42
-   >=dev-perl/XML-Writer-0.6
-   virtual/perl-Memoize
-   virtual/perl-Storable
-   >=dev-perl/Lingua-Preferred-0.2.4
-   >=dev-perl/Term-ProgressBar-2.03
-   virtual/perl-IO-Compress
-   dev-perl/Unicode-String
-   dev-perl/TermReadKey
-   dev-perl/File-Slurp
-   >=dev-lang/perl-5.6.1
-   dev-perl/XML-LibXML
-   dev-perl/XML-TreePP
-"
-DEPEND="${RDEPEND}
-   ar? ( dev-perl/HTML-Tree >=dev-perl/HTML-Parser-3.34 
dev-perl/HTTP-Cookies dev-perl/TimeDate )
-   ch-search? ( dev-perl/HTML-Tree >=dev-perl/HTML-Parser-3.34 )
-   dk? ( dev-perl/JSON dev-perl/IO-stringy dev-perl/DateTime )
-   dtvla? ( dev-perl/HTML-Tree dev-perl/HTTP-Cookies dev-perl/TimeDate )
-   es-laguiatv? ( dev-perl/HTML-Tree )
-   eu-dotmedia? ( dev-perl/XML-LibXML dev-perl/IO-stringy 
dev-perl/HTTP-Cache-Transparent )
-   eu-epg? ( dev-perl/Archive-Zip dev-perl/DateTime-Format-Strptime 

[gentoo-commits] repo/gentoo:master commit in: net-analyzer/fail2ban/files/, net-analyzer/fail2ban/

2021-08-10 Thread Sam James
commit: 00402f66d1cdf8144ff08f446010cfdbd8d2fe4a
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:00:15 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 01:00:15 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=00402f66

net-analyzer/fail2ban: fix Apache log path

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

 ...l2ban-.ebuild => fail2ban-0.11.2-r1.ebuild} | 12 ++---
 net-analyzer/fail2ban/fail2ban-.ebuild |  6 -
 .../fail2ban-0.11.2-adjust-apache-logs-paths.patch | 29 ++
 3 files changed, 42 insertions(+), 5 deletions(-)

diff --git a/net-analyzer/fail2ban/fail2ban-.ebuild 
b/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild
similarity index 94%
copy from net-analyzer/fail2ban/fail2ban-.ebuild
copy to net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild
index 2ad8f462e23..a858cbe09d2 100644
--- a/net-analyzer/fail2ban/fail2ban-.ebuild
+++ b/net-analyzer/fail2ban/fail2ban-0.11.2-r1.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8,9} )
 DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 distutils-r1 systemd tmpfiles
@@ -31,13 +31,17 @@ RDEPEND="
|| (
dev-python/python-systemd[${PYTHON_USEDEP}]
sys-apps/systemd[python(-),${PYTHON_USEDEP}]
-   )
-   ' 'python*')
+   )' 'python*' )
)
 "
 
 DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt )
 
+PATCHES=(
+   "${FILESDIR}"/${P}-fix-tests-for-2021.patch
+   "${FILESDIR}"/${PN}-0.11.2-adjust-apache-logs-paths.patch
+)
+
 python_prepare_all() {
# Replace /var/run with /run, but not in the top source directory
find . -mindepth 2 -type f -exec \
@@ -94,7 +98,7 @@ pkg_preinst() {
 pkg_postinst() {
tmpfiles_process ${PN}-tmpfiles.conf
 
-   if [[ ${previous_less_than_0_7} == 0 ]] ; then
+   if [[ ${previous_less_than_0_7} = 0 ]] ; then
elog
elog "Configuration files are now in /etc/fail2ban/"
elog "You probably have to manually update your configuration"

diff --git a/net-analyzer/fail2ban/fail2ban-.ebuild 
b/net-analyzer/fail2ban/fail2ban-.ebuild
index 2ad8f462e23..9d117cebef4 100644
--- a/net-analyzer/fail2ban/fail2ban-.ebuild
+++ b/net-analyzer/fail2ban/fail2ban-.ebuild
@@ -3,7 +3,7 @@
 
 EAPI=7
 
-PYTHON_COMPAT=( python3_{7,8,9} )
+PYTHON_COMPAT=( python3_{8,9} )
 DISTUTILS_SINGLE_IMPL=1
 
 inherit bash-completion-r1 distutils-r1 systemd tmpfiles
@@ -38,6 +38,10 @@ RDEPEND="
 
 DOCS=( ChangeLog DEVELOP README.md THANKS TODO doc/run-rootless.txt )
 
+PATCHES=(
+   "${FILESDIR}"/${PN}-0.11.2-adjust-apache-logs-paths.patch
+)
+
 python_prepare_all() {
# Replace /var/run with /run, but not in the top source directory
find . -mindepth 2 -type f -exec \

diff --git 
a/net-analyzer/fail2ban/files/fail2ban-0.11.2-adjust-apache-logs-paths.patch 
b/net-analyzer/fail2ban/files/fail2ban-0.11.2-adjust-apache-logs-paths.patch
new file mode 100644
index 000..3017883f0d5
--- /dev/null
+++ b/net-analyzer/fail2ban/files/fail2ban-0.11.2-adjust-apache-logs-paths.patch
@@ -0,0 +1,29 @@
+From bda9b88e883207b99781352c68610980e23fa62f Mon Sep 17 00:00:00 2001
+From: Sam James 
+Date: Wed, 11 Aug 2021 01:58:05 +0100
+Subject: [PATCH] Adjust Apache log paths for Gentoo
+
+Closes: https://bugs.gentoo.org/805485
+---
+ config/paths-common.conf | 4 ++--
+ 1 file changed, 2 insertions(+), 2 deletions(-)
+
+diff --git a/config/paths-common.conf b/config/paths-common.conf
+index 7383caf..4f4a6e1 100644
+--- a/config/paths-common.conf
 b/config/paths-common.conf
+@@ -36,9 +36,9 @@ sshd_backend = %(default_backend)s
+ dropbear_log = %(syslog_authpriv)s
+ dropbear_backend = %(default_backend)s
+ 
+-apache_error_log = /var/log/apache2/*error.log
++apache_error_log = /var/log/apache2/*error_log
+ 
+-apache_access_log = /var/log/apache2/*access.log
++apache_access_log = /var/log/apache2/*access_log
+ 
+ # from /etc/audit/auditd.conf
+ auditd_log = /var/log/audit/audit.log
+-- 
+2.32.0
+



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

2021-08-10 Thread Sam James
commit: 7e576c6e064a15a803648f96dd299596dc20a8ef
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:51:35 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:51:35 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=7e576c6e

dev-util/diffoscope: fix DISTUTILS_USE_SETUPTOOLS

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

 dev-util/diffoscope/diffoscope-180.ebuild | 1 -
 1 file changed, 1 deletion(-)

diff --git a/dev-util/diffoscope/diffoscope-180.ebuild 
b/dev-util/diffoscope/diffoscope-180.ebuild
index ee2bed80f61..086eecc9529 100644
--- a/dev-util/diffoscope/diffoscope-180.ebuild
+++ b/dev-util/diffoscope/diffoscope-180.ebuild
@@ -5,7 +5,6 @@ EAPI=8
 
 PYTHON_COMPAT=( python3_{8,9,10} )
 PYTHON_REQ_USE="ncurses"
-DISTUTILS_USE_SETUPTOOLS=rdepend
 
 inherit distutils-r1
 



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

2021-08-10 Thread Sam James
commit: e1e0b341779efa3c14e1466a926bce1bb778ea99
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 01:01:10 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 01:01:10 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e1e0b341

dev-util/diffoscope: drop 178, 179

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

 dev-util/diffoscope/Manifest  |   2 -
 dev-util/diffoscope/diffoscope-178.ebuild | 113 --
 dev-util/diffoscope/diffoscope-179.ebuild | 113 --
 3 files changed, 228 deletions(-)

diff --git a/dev-util/diffoscope/Manifest b/dev-util/diffoscope/Manifest
index e069192f5f0..af7d21393a9 100644
--- a/dev-util/diffoscope/Manifest
+++ b/dev-util/diffoscope/Manifest
@@ -1,4 +1,2 @@
 DIST diffoscope-177.tar.gz 1590984 BLAKE2B 
94daf9528c8fd0ad6ed89bdbee7b21352bf33dcef2ae7e526ea3b1036d92b6fecefcb0da46b7eedf7af1c8bd7995e73b8f0a5104c02f4db534f7bcc465c803aa
 SHA512 
674a5cc364927437a79420b0965eb6958bd09df58a1238ea4d953bb2bc0fbdde75e42817370dd3cdab0bcc59551e1cff70db72298087af551d5dfaee57995811
-DIST diffoscope-178.tar.gz 1600094 BLAKE2B 
b40e45748be56e49736a826decfb3a8c3ebd91983755719f2665733ceb6ec4e860265c33b5a3c15bc501abe4efdbecbdf177431bbbc79f1ad758c7deef83e1ae
 SHA512 
706c95f5c04cfe081fed7e3e5ed73579949c948b15eaf0f984fc7d406b74007859f7946c44e4ca13e1210b105ed65ea68fd1f03452a50f161ed27f996f4f2540
-DIST diffoscope-179.tar.gz 1600145 BLAKE2B 
64b7db8ad53980b80b3c563797736032a235d82b57dfb31496cfbd19978734759919482855ac7dadb62573f950294f02987fd9525b00886e56060450df390915
 SHA512 
7c3a73097bda2fd55414e52f557707afd08728c73305b55dc9482aff092a65c9bef33913c5e715ff6257aec6cc67095abfec3e8e23f002d43bf9e77e0d565154
 DIST diffoscope-180.tar.gz 1600542 BLAKE2B 
0cc34106f039e0682b32de284b3ce1be90e8629fb4ba18cffa31d7c970a9d18392060f37b201d4ee9ab3f4f65401684c72edf2d00d56827cbaacbfde0ce81d11
 SHA512 
abf2c514b9f3b074a5b9a6e19f09a474a8ba58e00974a48ebd860cc31547204fb4690224cb752b4248a0674d979bd20c6d4c77ffb912f2b85499d48d90affeb4

diff --git a/dev-util/diffoscope/diffoscope-178.ebuild 
b/dev-util/diffoscope/diffoscope-178.ebuild
deleted file mode 100644
index 11611bcbd1b..000
--- a/dev-util/diffoscope/diffoscope-178.ebuild
+++ /dev/null
@@ -1,113 +0,0 @@
-# Copyright 1999-2021 Gentoo Authors
-# Distributed under the terms of the GNU General Public License v2
-
-EAPI=8
-
-PYTHON_COMPAT=( python3_{8,9,10} )
-PYTHON_REQ_USE="ncurses"
-DISTUTILS_USE_SETUPTOOLS=rdepend
-
-inherit distutils-r1
-
-DESCRIPTION="Will try to get to the bottom of what makes files or directories 
different"
-HOMEPAGE="https://diffoscope.org/ https://pypi.org/project/diffoscope/;
-SRC_URI="mirror://pypi/${PN:0:1}/${PN}/${P}.tar.gz"
-
-LICENSE="GPL-3+"
-SLOT="0"
-KEYWORDS="~amd64 ~arm ~arm64 ~ppc64 ~x86"
-IUSE="acl binutils bzip2 libcaca colord cpio +diff docx dtc e2fsprogs file
-find gettext gif gpg haskell hdf5 hex imagemagick iso java llvm lzma
-mono opendocument pascal pdf postscript R rpm sqlite squashfs
-ssh tar test tcpdump zip zlib zstd"
-
-RESTRICT="!test? ( test )"
-
-# pull in optional tools for tests:
-# img2txt: bug #797688
-# docx2txt: bug #797688
-DEPEND="
-   dev-python/setuptools[${PYTHON_USEDEP}]
-   test? (
-   app-text/docx2txt
-   media-libs/libcaca
-   )
-"
-RDEPEND="dev-python/python-magic[${PYTHON_USEDEP}]
-   dev-python/libarchive-c[${PYTHON_USEDEP}]
-   dev-python/distro[${PYTHON_USEDEP}]
-   acl? ( sys-apps/acl )
-   binutils? ( sys-devel/binutils )
-   bzip2? ( app-arch/bzip2 )
-   libcaca? ( media-libs/libcaca )
-   colord? ( x11-misc/colord )
-   cpio? ( app-arch/cpio )
-   diff? ( sys-apps/diffutils )
-   docx? ( app-text/docx2txt )
-   dtc? ( sys-apps/dtc )
-   e2fsprogs? ( sys-fs/e2fsprogs )
-   file? ( sys-apps/file )
-   find? ( sys-apps/findutils )
-   gettext? ( sys-devel/gettext )
-   gif? ( media-libs/giflib )
-   gpg? ( app-crypt/gnupg )
-   haskell? ( dev-lang/ghc )
-   hdf5? ( sci-libs/hdf5 )
-   hex? ( app-editors/vim-core )
-   imagemagick? ( media-gfx/imagemagick )
-   iso? ( app-cdr/cdrtools )
-   java? ( virtual/jdk )
-   llvm? ( sys-devel/llvm )
-   lzma? ( app-arch/xz-utils )
-   mono? ( dev-lang/mono )
-   opendocument? ( app-text/odt2txt )
-   pascal? ( dev-lang/fpc )
-   pdf? (
-   app-text/pdftk
-   app-text/poppler
-   dev-python/PyPDF2[${PYTHON_USEDEP}]
-   )
-   postscript? ( app-text/ghostscript-gpl )
-   R? ( dev-lang/R )
-   rpm? ( app-arch/rpm )
-   sqlite? ( dev-db/sqlite:3 )
-   squashfs? ( sys-fs/squashfs-tools )
-   ssh? ( net-misc/openssh )
-   tar? ( app-arch/tar )
-   tcpdump? ( net-analyzer/tcpdump )
-   zip? ( app-arch/unzip )
-   zlib? ( app-arch/gzip )
-   zstd? ( app-arch/zstd )
-"
-# Presence if filemagic's magic.py breaks imports
-# of 

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

2021-08-10 Thread Sam James
commit: 8d6f7f253f085acc1d9832041abfa83c8d046294
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:39:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:39:58 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=8d6f7f25

dev-python/babelfish: sync live ebuild to fix build

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

 dev-python/babelfish/babelfish-.ebuild | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dev-python/babelfish/babelfish-.ebuild 
b/dev-python/babelfish/babelfish-.ebuild
index 78c32c6b1e2..ae88fa30c83 100644
--- a/dev-python/babelfish/babelfish-.ebuild
+++ b/dev-python/babelfish/babelfish-.ebuild
@@ -3,6 +3,7 @@
 
 EAPI=7
 
+DISTUTILS_USE_SETUPTOOLS=pyproject.toml
 PYTHON_COMPAT=( python3_{8..10} )
 
 inherit distutils-r1 git-r3
@@ -14,4 +15,4 @@ EGIT_REPO_URI="https://github.com/Diaoul/${PN}.git;
 LICENSE="BSD"
 SLOT="0"
 
-distutils_enable_tests setup.py
+distutils_enable_tests pytest



[gentoo-commits] data/gentoo-news:master commit in: 2021-08-11-oauth2-creds-chromium/

2021-08-10 Thread Jason A. Donenfeld
commit: 0a960c2aadd2b98513ada135c437d8a6701e1f84
Author: Jason A. Donenfeld  gentoo  org>
AuthorDate: Wed Aug 11 00:54:59 2021 +
Commit: Jason A. Donenfeld  gentoo  org>
CommitDate: Wed Aug 11 00:56:46 2021 +
URL:https://gitweb.gentoo.org/data/gentoo-news.git/commit/?id=0a960c2a

2021-08-11-oauth2-creds-chromium: OAuth2 Credentials Removed from Chromium

Bug: https://bugs.gentoo.org/791871
Signed-off-by: Jason A. Donenfeld  gentoo.org>

 .../2021-08-11-oauth2-creds-chromium.en.txt| 44 ++
 1 file changed, 44 insertions(+)

diff --git 
a/2021-08-11-oauth2-creds-chromium/2021-08-11-oauth2-creds-chromium.en.txt 
b/2021-08-11-oauth2-creds-chromium/2021-08-11-oauth2-creds-chromium.en.txt
new file mode 100644
index 000..0d7a8ac
--- /dev/null
+++ b/2021-08-11-oauth2-creds-chromium/2021-08-11-oauth2-creds-chromium.en.txt
@@ -0,0 +1,44 @@
+Title: OAuth2 Credentials Removed from Chromium
+Author: Jason A. Donenfeld 
+Posted: 2021-08-11
+Revision: 1
+News-Item-Format: 2.0
+Display-If-Installed: www-client/chromium
+
+In March of this year, Google announced that OAuth2 credentials would be 
revoked
+for distros shipping Chromium. This was covered in multiple places at the time,
+such as [1,2,3]. Around that time, with 89.0.4389.82, Gentoo removed OAuth2
+credentials from its packages. However, they slipped back in shortly after.
+
+As a result, some users [4] have found that recently Google's SSO does not
+persist between browser sessions; e.g. you have to log back into GMail every
+time you open your browser. This week's changes [5] restore the old behavior
+we had in March, of not shipping Gentoo OAuth2 credentials.
+
+If you find that certain Google services are no longer working, you may wish to
+supply OAuth2 credentials manually, obtained by following the instructions at
+[6]. However, even without supplying such credentials, Google's SSO should now
+be working as expected.
+
+There are now two options for passing these credentials to Chromium via
+
+/etc/chromium/default:
+
+  1. GOOGLE_DEFAULT_CLIENT_ID and GOOGLE_DEFAULT_CLIENT_SECRET environment
+ variables:
+   export GOOGLE_DEFAULT_CLIENT_ID=""
+   export GOOGLE_DEFAULT_CLIENT_SECRET=""
+
+  2. --oauth2-client-id and --oauth2-client-secret= command line switches:
+   CHROMIUM_FLAGS+=" --oauth2-client-id="
+   CHROMIUM_FLAGS+=" --oauth2-client-secret="
+
+Alternatively these environment variables and command line switches may be 
given
+at the command line for ad-hoc testing.
+
+[1] https://archlinux.org/news/chromium-losing-sync-support-in-early-march/
+[2] https://bodhi.fedoraproject.org/updates/FEDORA-2021-48866282e5
+[3] 
https://hackaday.com/2021/01/26/whats-the-deal-with-chromium-on-linux-google-at-odds-with-package-maintainers/
+[4] https://bugs.gentoo.org/791871
+[5] 
https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fce48ef271bbcaee9afdf0481294da167e665a9b
+[6] http://www.chromium.org/developers/how-tos/api-keys



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

2021-08-10 Thread Sam James
commit: 771e98d90261957bee8f97f92fcc5ff9dff65b59
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=771e98d9

sys-block/open-isns: Stabilize 0.101 sparc, #807508

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

 sys-block/open-isns/open-isns-0.101.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/open-isns/open-isns-0.101.ebuild 
b/sys-block/open-isns/open-isns-0.101.ebuild
index 0f8c5edede0..94b56c651ec 100644
--- a/sys-block/open-isns/open-isns-0.101.ebuild
+++ b/sys-block/open-isns/open-isns-0.101.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/open-iscsi/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.g
 
 LICENSE="LGPL-2.1"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug ssl static"
 
 DEPEND="



[gentoo-commits] repo/gentoo:master commit in: net-firewall/nftables/

2021-08-10 Thread Sam James
commit: 0791c66c2427cd9f5ba22e567708a1d04b7f7c49
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:52 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:52 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0791c66c

net-firewall/nftables: Stabilize 0.9.9 sparc, #807466

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

 net-firewall/nftables/nftables-0.9.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-firewall/nftables/nftables-0.9.9.ebuild 
b/net-firewall/nftables/nftables-0.9.9.ebuild
index 672e6789692..d4b3fd8dcff 100644
--- a/net-firewall/nftables/nftables-0.9.9.ebuild
+++ b/net-firewall/nftables/nftables-0.9.9.ebuild
@@ -20,7 +20,7 @@ if [[ ${PV} =~ ^[9]{4,}$ ]]; then
"
 else
SRC_URI="https://netfilter.org/projects/nftables/files/${P}.tar.bz2;
-   KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ~ppc64 ~riscv ~sparc x86"
+   KEYWORDS="amd64 ~arm ~arm64 ~ia64 ppc ~ppc64 ~riscv sparc x86"
 fi
 
 LICENSE="GPL-2"



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

2021-08-10 Thread Sam James
commit: 11600378e045006cd8280902d11042b0d7dff597
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:24 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:24 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11600378

net-misc/lksctp-tools: Stabilize 1.0.19 sparc, #807478

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

 net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild 
b/net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild
index ff70d3c4940..2a0e6401da2 100644
--- a/net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild
+++ b/net-misc/lksctp-tools/lksctp-tools-1.0.19.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/sctp/${PN}/archive/v${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="|| ( GPL-2+ LGPL-2.1 )"
 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="kernel_linux static-libs"
 
 # This is only supposed to work with Linux to begin with.



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

2021-08-10 Thread Sam James
commit: 088e05fe35f89ffead3a85847713f1059ea01880
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:45 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:45 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=088e05fe

dev-libs/libbpf: Stabilize 0.4.0 sparc, #807484

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

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

diff --git a/dev-libs/libbpf/libbpf-0.4.0.ebuild 
b/dev-libs/libbpf/libbpf-0.4.0.ebuild
index 36577ff69ab..51caec1baaf 100644
--- a/dev-libs/libbpf/libbpf-0.4.0.ebuild
+++ b/dev-libs/libbpf/libbpf-0.4.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} =~ [9]{4,} ]]; then
EGIT_REPO_URI="https://github.com/libbpf/libbpf.git;
 else

SRC_URI="https://github.com/libbpf/libbpf/archive/refs/tags/v${PV}.tar.gz -> 
${P}.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"
 fi
 S="${WORKDIR}/${P}/src"
 



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

2021-08-10 Thread Sam James
commit: 422d260a38251e86d8adf17ba10e386752e2df54
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:23:04 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:23:04 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=422d260a

sys-libs/gdbm: Stabilize 1.20 sparc, #807529

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

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

diff --git a/sys-libs/gdbm/gdbm-1.20.ebuild b/sys-libs/gdbm/gdbm-1.20.ebuild
index f495255f49c..b040990ecb8 100644
--- a/sys-libs/gdbm/gdbm-1.20.ebuild
+++ b/sys-libs/gdbm/gdbm-1.20.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/gdbm/${P}.tar.gz"
 
 LICENSE="GPL-3"
 SLOT="0/6" # libgdbm.so version
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc ~x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+berkdb nls +readline static-libs"
 
 DEPEND="



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

2021-08-10 Thread Sam James
commit: fe1360d7e052cd7b2703190e04d756ca447a86b3
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:56 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:56 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=fe1360d7

sys-fs/fuse: Stabilize 3.10.4 sparc, #807523

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

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

diff --git a/sys-fs/fuse/fuse-3.10.4.ebuild b/sys-fs/fuse/fuse-3.10.4.ebuild
index 80f0dfbdee7..d09f647bf35 100644
--- a/sys-fs/fuse/fuse-3.10.4.ebuild
+++ b/sys-fs/fuse/fuse-3.10.4.ebuild
@@ -12,7 +12,7 @@ 
SRC_URI="https://github.com/libfuse/libfuse/releases/download/${P}/${P}.tar.xz;
 
 LICENSE="GPL-2 LGPL-2.1"
 SLOT="3"
-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="+suid test"
 RESTRICT="!test? ( test )"
 



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

2021-08-10 Thread Sam James
commit: 5bc6f36e9cf50a63d0776320a798286fd4a4b821
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5bc6f36e

sys-fs/fuse-common: Stabilize 3.10.4 sparc, #807523

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

 sys-fs/fuse-common/fuse-common-3.10.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-fs/fuse-common/fuse-common-3.10.4.ebuild 
b/sys-fs/fuse-common/fuse-common-3.10.4.ebuild
index d8ed055d4dd..71d67ce3ebc 100644
--- a/sys-fs/fuse-common/fuse-common-3.10.4.ebuild
+++ b/sys-fs/fuse-common/fuse-common-3.10.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/libfuse/libfuse/releases/download/fuse-${PV}/fuse-${
 
 LICENSE="GPL-2 LGPL-2.1"
 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"
 
 BDEPEND="virtual/pkgconfig"
 RDEPEND="!

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

2021-08-10 Thread Sam James
commit: d6a4916575fd7aa1d434be3675c687beafee9e91
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:23:00 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:23:00 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d6a49165

sys-fs/lvm2: Stabilize 2.02.188 sparc, #807526

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

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

diff --git a/sys-fs/lvm2/lvm2-2.02.188.ebuild b/sys-fs/lvm2/lvm2-2.02.188.ebuild
index 276fa8c3c6e..6dc6db3d06a 100644
--- a/sys-fs/lvm2/lvm2-2.02.188.ebuild
+++ b/sys-fs/lvm2/lvm2-2.02.188.ebuild
@@ -11,7 +11,7 @@ SRC_URI="ftp://sourceware.org/pub/lvm2/${PN/lvm/LVM}.${PV}.tgz
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~mips ppc ~ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux"
 IUSE="readline static static-libs systemd lvm2create_initrd sanlock selinux 
+udev +thin device-mapper-only"
 REQUIRED_USE="device-mapper-only? ( !lvm2create_initrd !sanlock !thin )
static? ( !systemd )



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

2021-08-10 Thread Sam James
commit: c3ee1e8e8734b27956b7c6103697d500613e798e
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c3ee1e8e

sys-apps/iproute2: Stabilize 5.13.0 sparc, #807484

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

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

diff --git a/sys-apps/iproute2/iproute2-5.13.0.ebuild 
b/sys-apps/iproute2/iproute2-5.13.0.ebuild
index 42a948e6fee..8738ddc2e83 100644
--- a/sys-apps/iproute2/iproute2-5.13.0.ebuild
+++ b/sys-apps/iproute2/iproute2-5.13.0.ebuild
@@ -10,7 +10,7 @@ if [[ ${PV} == "" ]] ; then
inherit git-r3
 else
SRC_URI="https://www.kernel.org/pub/linux/utils/net/${PN}/${P}.tar.xz;
-   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"
 fi
 
 DESCRIPTION="kernel routing and traffic control utilities"



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

2021-08-10 Thread Sam James
commit: 1dc32777f1975bbcdb870e43166b273e37132ef0
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:30 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:30 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dc32777

sys-apps/kmod: Stabilize 29 sparc, #807496

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

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

diff --git a/sys-apps/kmod/kmod-29.ebuild b/sys-apps/kmod/kmod-29.ebuild
index e30aa849361..597d1a66405 100644
--- a/sys-apps/kmod/kmod-29.ebuild
+++ b/sys-apps/kmod/kmod-29.ebuild
@@ -12,7 +12,7 @@ if [[ ${PV} == * ]]; then
inherit git-r3
 else
SRC_URI="https://www.kernel.org/pub/linux/utils/kernel/kmod/${P}.tar.xz;
-   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"
#inherit libtool
 fi
 



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

2021-08-10 Thread Sam James
commit: 39f14e109a9da536fbb619072c8fbd20bb1ca640
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:37 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:37 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=39f14e10

sys-block/open-iscsi: Stabilize 2.1.4-r1 sparc, #807505

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

 sys-block/open-iscsi/open-iscsi-2.1.4-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/sys-block/open-iscsi/open-iscsi-2.1.4-r1.ebuild 
b/sys-block/open-iscsi/open-iscsi-2.1.4-r1.ebuild
index 30e4344f654..ca96a07af59 100644
--- a/sys-block/open-iscsi/open-iscsi-2.1.4-r1.ebuild
+++ b/sys-block/open-iscsi/open-iscsi-2.1.4-r1.ebuild
@@ -11,7 +11,7 @@ SRC_URI="https://github.com/${PN}/${PN}/archive/${PV}.tar.gz 
-> ${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0/0.2"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 sparc x86"
 IUSE="debug infiniband +tcp rdma systemd"
 
 DEPEND="



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

2021-08-10 Thread Sam James
commit: ed50422608df92988bf270d36b2379d42efe7e1d
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=ed504226

sys-apps/memtester: Stabilize 4.5.1 sparc, #807499

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

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

diff --git a/sys-apps/memtester/memtester-4.5.1.ebuild 
b/sys-apps/memtester/memtester-4.5.1.ebuild
index c8c7a449f91..4f984ccad2b 100644
--- a/sys-apps/memtester/memtester-4.5.1.ebuild
+++ b/sys-apps/memtester/memtester-4.5.1.ebuild
@@ -13,7 +13,7 @@ SRC_URI="
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 ~sparc x86"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~ia64 ~mips ppc ppc64 sparc x86"
 
 src_configure() {
echo "$(tc-getCC) ${CFLAGS} ${CPPFLAGS} -DPOSIX -c" > conf-cc || die



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

2021-08-10 Thread Sam James
commit: f2536a990c8273f79e948521851087cb94cfa1e4
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:05 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:05 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f2536a99

dev-libs/libpcre2: Stabilize 10.37-r2 sparc, #807457

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

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

diff --git a/dev-libs/libpcre2/libpcre2-10.37-r2.ebuild 
b/dev-libs/libpcre2/libpcre2-10.37-r2.ebuild
index f0a54bb4ab3..ceea7b57e9c 100644
--- a/dev-libs/libpcre2/libpcre2-10.37-r2.ebuild
+++ b/dev-libs/libpcre2/libpcre2-10.37-r2.ebuild
@@ -25,7 +25,7 @@ fi
 
 LICENSE="BSD"
 SLOT="0/3" # libpcre2-posix.so version
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="bzip2 +jit libedit +pcre16 pcre32 +readline +recursion-limit static-libs 
unicode zlib"
 REQUIRED_USE="?? ( libedit readline )"
 



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

2021-08-10 Thread Sam James
commit: 53d966c97dfc6ece838ac194d2b8c75bde4ae4c4
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:20 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:20 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=53d966c9

net-libs/libnftnl: Stabilize 1.2.0 sparc, #807475

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

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

diff --git a/net-libs/libnftnl/libnftnl-1.2.0.ebuild 
b/net-libs/libnftnl/libnftnl-1.2.0.ebuild
index c07d508065a..447974529f7 100644
--- a/net-libs/libnftnl/libnftnl-1.2.0.ebuild
+++ b/net-libs/libnftnl/libnftnl-1.2.0.ebuild
@@ -13,7 +13,7 @@ if [[ ${PV} =~ ^[9]{4,}$ ]]; then
EGIT_REPO_URI="https://git.netfilter.org/${PN};
 else
SRC_URI="https://netfilter.org/projects/${PN}/files/${P}.tar.bz2;
-   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
 
 LICENSE="GPL-2"



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

2021-08-10 Thread Sam James
commit: 88dc4fb346773c74b1ed6bc81d48a72e6305ac31
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:11 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:11 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=88dc4fb3

dev-libs/nettle: Stabilize 3.7.3 sparc, #807463

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

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

diff --git a/dev-libs/nettle/nettle-3.7.3.ebuild 
b/dev-libs/nettle/nettle-3.7.3.ebuild
index d6e1642822a..b2220afd99a 100644
--- a/dev-libs/nettle/nettle-3.7.3.ebuild
+++ b/dev-libs/nettle/nettle-3.7.3.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="|| ( LGPL-3 LGPL-2.1 )"
 SLOT="0/8-6" # subslot = libnettle - libhogweed soname version
-KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+asm doc +gmp static-libs test cpu_flags_x86_aes cpu_flags_arm_neon 
cpu_flags_x86_sha"
 RESTRICT="!test? ( test )"
 



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

2021-08-10 Thread Sam James
commit: 5e6ecc5cbfca8486f1d04ba2b573b8d24eb767c1
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:54 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:54 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=5e6ecc5c

net-analyzer/ssldump: Stabilize 1.4 sparc, #807433

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

 net-analyzer/ssldump/ssldump-1.4.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/ssldump/ssldump-1.4.ebuild 
b/net-analyzer/ssldump/ssldump-1.4.ebuild
index 9e2ae3fd1d3..45809ea32b9 100644
--- a/net-analyzer/ssldump/ssldump-1.4.ebuild
+++ b/net-analyzer/ssldump/ssldump-1.4.ebuild
@@ -11,7 +11,7 @@ 
SRC_URI="https://github.com/adulau/${PN}/archive/v${PV}.tar.gz -> ${P}.tar.gz"
 
 LICENSE="openssl"
 SLOT="0"
-KEYWORDS="amd64 ~arm ppc ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
+KEYWORDS="amd64 ~arm ppc sparc x86 ~amd64-linux ~x86-linux ~ppc-macos"
 
 RDEPEND="
dev-libs/json-c:=



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

2021-08-10 Thread Sam James
commit: 04ef2c4221aa7dcd397e7253387b37c91996eb08
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:01 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:01 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=04ef2c42

app-text/recode: Stabilize 3.7.9 sparc, #807445

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

 app-text/recode/recode-3.7.9.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/app-text/recode/recode-3.7.9.ebuild 
b/app-text/recode/recode-3.7.9.ebuild
index 806acbb5a1f..a2c22925674 100644
--- a/app-text/recode/recode-3.7.9.ebuild
+++ b/app-text/recode/recode-3.7.9.ebuild
@@ -14,7 +14,7 @@ 
SRC_URI="https://github.com/rrthomas/recode/releases/download/v${PV}/${P}.tar.gz
 LICENSE="GPL-2"
 # librecode soname version
 SLOT="0/3"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x86-solaris"
 IUSE="nls test"
 RESTRICT="!test? ( test )"
 



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

2021-08-10 Thread Sam James
commit: bc719918dda9f9f59ba2b57f0283812eca15dccf
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:46 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:46 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bc719918

dev-libs/libsodium: Stabilize 1.0.18_p20210617 sparc, #807403

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

 dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild 
b/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild
index ba9fc63655d..95e67f9679c 100644
--- a/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild
+++ b/dev-libs/libsodium/libsodium-1.0.18_p20210617.ebuild
@@ -31,7 +31,7 @@ fi
 
 LICENSE="ISC"
 SLOT="0/23"
-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"
 IUSE="+asm minimal static-libs +urandom"
 
 CPU_USE=( cpu_flags_x86_{aes,sse4_1} )



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

2021-08-10 Thread Sam James
commit: 323dfddfa28164516a0a5c1b34f9f9b9274883f6
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:22:14 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:22:14 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=323dfddf

net-fs/nfs-utils: Stabilize 2.5.4 sparc, #807469

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

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

diff --git a/net-fs/nfs-utils/nfs-utils-2.5.4.ebuild 
b/net-fs/nfs-utils/nfs-utils-2.5.4.ebuild
index 9ea50c15921..49957a786d7 100644
--- a/net-fs/nfs-utils/nfs-utils-2.5.4.ebuild
+++ b/net-fs/nfs-utils/nfs-utils-2.5.4.ebuild
@@ -14,7 +14,7 @@ if [[ "${PV}" = *_rc* ]] ; then
S="${WORKDIR}/${PN}-${PN}-${MY_PV}"
 else
SRC_URI="mirror://sourceforge/nfs/${P}.tar.bz2"
-   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"
 fi
 
 LICENSE="GPL-2"



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

2021-08-10 Thread Sam James
commit: 0f976c7f081fd5bf5820315bab8c3b2747a43135
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:50 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:50 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0f976c7f

net-analyzer/netcat: Stabilize 110.20180111-r1 sparc, #807406

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

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

diff --git a/net-analyzer/netcat/netcat-110.20180111-r1.ebuild 
b/net-analyzer/netcat/netcat-110.20180111-r1.ebuild
index 09e8f5085bb..3a8c40a30ab 100644
--- a/net-analyzer/netcat/netcat-110.20180111-r1.ebuild
+++ b/net-analyzer/netcat/netcat-110.20180111-r1.ebuild
@@ -13,7 +13,7 @@ S="${WORKDIR}/nc110"
 
 LICENSE="netcat"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc64-solaris 
~x64-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~sparc64-solaris 
~x64-solaris"
 IUSE="ipv6 static"
 
 src_prepare() {



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

2021-08-10 Thread Sam James
commit: 9e7cfda6eb8570027b5f063360832c308e18deca
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:57 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:57 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=9e7cfda6

net-analyzer/etherape: Stabilize 0.9.20 sparc, #807436

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

 net-analyzer/etherape/etherape-0.9.20.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-analyzer/etherape/etherape-0.9.20.ebuild 
b/net-analyzer/etherape/etherape-0.9.20.ebuild
index b8329852e19..e1b4495473b 100644
--- a/net-analyzer/etherape/etherape-0.9.20.ebuild
+++ b/net-analyzer/etherape/etherape-0.9.20.ebuild
@@ -9,7 +9,7 @@ SRC_URI="mirror://sourceforge/etherape/${P}.tar.gz"
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="amd64 ~arm64 ppc ppc64 ~sparc x86"
+KEYWORDS="amd64 ~arm64 ppc ppc64 sparc x86"
 
 RDEPEND="
dev-libs/glib:2



[gentoo-commits] repo/gentoo:master commit in: dev-tex/latex2html/

2021-08-10 Thread Sam James
commit: 774e761451632df669fe88d975528225596a5712
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:41 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:41 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=774e7614

dev-tex/latex2html: Stabilize 2021.2 sparc, #807397

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

 dev-tex/latex2html/latex2html-2021.2.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/dev-tex/latex2html/latex2html-2021.2.ebuild 
b/dev-tex/latex2html/latex2html-2021.2.ebuild
index 25367667574..2b1b2b3da5b 100644
--- a/dev-tex/latex2html/latex2html-2021.2.ebuild
+++ b/dev-tex/latex2html/latex2html-2021.2.ebuild
@@ -9,7 +9,7 @@ 
SRC_URI="https://github.com/latex2html/latex2html/archive/v${PV}.tar.gz -> ${P}.
 
 LICENSE="GPL-2"
 SLOT="0"
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
~sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~mips ppc ppc64 ~riscv ~s390 
sparc x86 ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos ~sparc-solaris 
~x64-solaris ~x86-solaris"
 IUSE="gif png"
 
 DEPEND="



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

2021-08-10 Thread Sam James
commit: a2a563ea0b3c2118e07501a292957ab6400d92a3
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:38 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:38 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a2a563ea

net-libs/gnutls: Stabilize 3.7.2 sparc, #807394

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

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

diff --git a/net-libs/gnutls/gnutls-3.7.2.ebuild 
b/net-libs/gnutls/gnutls-3.7.2.ebuild
index 5f290518007..06c7cd032b9 100644
--- a/net-libs/gnutls/gnutls-3.7.2.ebuild
+++ b/net-libs/gnutls/gnutls-3.7.2.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnupg/gnutls/v$(ver_cut 1-2)/${P}.tar.xz"
 
 LICENSE="GPL-3 LGPL-2.1+"
 SLOT="0/30" # libgnutls.so number
-KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 ~sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 ~arm ~arm64 ~hppa ~ia64 ~m68k ~mips ~ppc ppc64 ~riscv 
~s390 sparc ~x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="+cxx dane doc examples guile +idn nls +openssl pkcs11 seccomp sslv2 
sslv3 static-libs test test-full +tls-heartbeat tools valgrind"
 
 REQUIRED_USE="



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

2021-08-10 Thread Sam James
commit: 1dafb486406fba35fe4c9a8c956dd6162ed22867
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:34 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:34 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1dafb486

net-misc/whois: Stabilize 5.5.10-r1 sparc, #807388

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

 net-misc/whois/whois-5.5.10-r1.ebuild | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net-misc/whois/whois-5.5.10-r1.ebuild 
b/net-misc/whois/whois-5.5.10-r1.ebuild
index 4ce4bf50cb1..867217aab0f 100644
--- a/net-misc/whois/whois-5.5.10-r1.ebuild
+++ b/net-misc/whois/whois-5.5.10-r1.ebuild
@@ -14,7 +14,7 @@ if [[ "${PV}" == * ]] ; then
 else
#SRC_URI="mirror://debian/pool/main/w/whois/${MY_P}.tar.xz"
SRC_URI="https://github.com/rfc1036/${PN}/archive/v${PV}.tar.gz -> 
${P}.tar.gz"
-   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 ~sparc x86 ~amd64-linux ~x86-linux"
+   KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 
~s390 sparc x86 ~amd64-linux ~x86-linux"
 fi
 LICENSE="GPL-2"
 SLOT="0"



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

2021-08-10 Thread Sam James
commit: bff7ec003349c129a408baf0269859349a89db3c
Author: Sam James  gentoo  org>
AuthorDate: Wed Aug 11 00:21:31 2021 +
Commit: Sam James  gentoo  org>
CommitDate: Wed Aug 11 00:21:31 2021 +
URL:https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=bff7ec00

dev-libs/libtasn1: Stabilize 4.17.0 sparc, #807385

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

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

diff --git a/dev-libs/libtasn1/libtasn1-4.17.0.ebuild 
b/dev-libs/libtasn1/libtasn1-4.17.0.ebuild
index a07e5dd682d..ee8b828151a 100644
--- a/dev-libs/libtasn1/libtasn1-4.17.0.ebuild
+++ b/dev-libs/libtasn1/libtasn1-4.17.0.ebuild
@@ -11,7 +11,7 @@ SRC_URI="mirror://gnu/${PN}/${P}.tar.gz"
 
 LICENSE="GPL-3 LGPL-2.1"
 SLOT="0/6" # subslot = libtasn1 soname version
-KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 ~sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
+KEYWORDS="~alpha amd64 arm ~arm64 ~hppa ~ia64 ~m68k ~mips ppc ppc64 ~riscv 
~s390 sparc x86 ~x64-cygwin ~amd64-linux ~x86-linux ~ppc-macos ~x64-macos 
~sparc-solaris ~sparc64-solaris ~x64-solaris ~x86-solaris"
 IUSE="doc static-libs test valgrind"
 
 RESTRICT="!test? ( test )"



  1   2   3   4   5   >